% 1. Title of Database: ISOLET (Isolated Letter Speech Recognition)
%
% 2. Sources:
%   (a) Creators: Ron Cole and Mark Fanty
%       Department of Computer Science and Engineering,
%       Oregon Graduate Institute, Beaverton, OR 97006.
%       cole@cse.ogi.edu, fanty@cse.ogi.edu
%   (b) Donor: Tom Dietterich
%       Department of Computer Science
%       Oregon State University, Corvallis, OR 97331
%       tgd@cs.orst.edu
%   (c) September 12, 1994
%
% 3. Past Usage:
%   (a) Fanty, M., Cole, R. (1991).  Spoken letter recognition.  In
%       Lippman, R. P., Moody, J., and Touretzky, D. S. (Eds).
%       Advances in Neural Information Processing Systems 3.  San
%       Mateo, CA: Morgan Kaufmann.
%
%       Goal: Predict which letter-name was spoken--a simple
%       classification task.  95.9% correct classification using
%       the OPT backpropagation implementation.  Training on
%       isolet1+2+3+4, testing on isolet5.  Network architecture: 56
%       hidden units, 26 output units (one-per-class).
%
%   (b) Dietterich, T. G., Bakiri, G. (1991)  Error-correcting
%       output codes: A general method for improving multiclass
%       inductive learning programs.  Proceedings of the Ninth
%       National Conference on Artificial Intelligence (AAAI-91),
%       Anaheim, CA: AAAI Press.
%
%       Goal: same as above. 95.83% correct using OPT
%       backpropagation.  (Architecture: 78 hidden units, 26 output
%       units, one-per-class).
%       96.73% correct using a 30-bit error-correcting output code with
%       OPT (Architecture: 156 hidden units, 30 output units).
%
%   (c) Dietterich, T. G., Bakiri, G. (1994) Solving Multiclass
%       Learning Problems via Error-Correcting Output Codes.
%       Submitted.  Available as URL
%       ftp://ftp.cs.orst.edu/pub/tgd/papers/tr-ecoc.ps.gz
%
%       Supporting data not published in that paper:
%
%        Algorithm and configuration      errors    %error  %correct
%        Opt 30-bit ECOC                     51       3.27     96.73
%        Opt 62-bit ECOC                     63       4.04     95.96
%        Opt OPC                             65       4.17     95.83
%        C4.5 107-bit ECOC soft pruned      103       6.61     93.39
%        C4.5 92-bit ECOC soft pruned       107       6.86     93.14
%        C4.5 45-bit ECOC soft pruned       109       6.99     93.01
%        C4.5 107-bit ECOC soft raw         116       7.44     92.56
%        C4.5 92-bit ECOC soft raw          118       7.57     92.43
%        C4.5 107-bit ECOC hard pruned      126       8.08     91.91
%        C4.5 92-bit ECOC hard pruned       127       8.15     91.85
%        C4.5 62-bit ECOC soft pruned       131       8.40     91.60
%        C4.5 30-bit ECOC soft pruned       134       8.60     91.40
%        C4.5 62-bit ECOC soft raw          134       8.60     91.40
%        C4.5 77-bit ECOC hard pruned       138       8.85     91.15
%        C4.5 45-bit ECOC soft raw          145       9.30     90.70
%        C4.5 62-bit ECOC hard pruned       164       9.88     90.12
%        C4.5 45-bit ECOC hard pruned       155       9.94     90.06
%        C4.5 30-bit ECOC soft raw          175      11.23     88.77
%        C4.5 30-bit ECOC hard pruned       185      11.87     88.13
%        C4.5 multiclass soft pruned        239      15.33     84.67
%        C4.5 multiclass soft raw           248      15.91     84.09
%        C4.5 multiclass hard pruned        254      16.29     83.71
%        C4.5 15-bit ECOC soft pruned       259      16.61     83.39
%        C4.5 multiclass hard raw           264      16.93     83.07
%        C4.5 OPC soft pruned               296      18.99     81.01
%        C4.5 15-bit ECOC soft raw          321      20.59     79.41
%        C4.5 107-bit ECOC hard raw         334      21.42     78.58
%        C4.5 92-bit ECOC hard raw          349      22.39     77.61
%        C4.5 OPC soft raw                  379      24.31     75.69
%        C4.5 15-bit ECOC hard pruned       383      24.57     75.43
%        C4.5 77-bit ECOC hard raw          424      27.20     72.80
%        C4.5 OPC hard pruned               437      28.03     71.97
%        C4.5 62-bit ECOC hard raw          463      29.70     70.30
%        C4.5 OPC hard raw                  519      33.29     66.71
%        C4.5 45-bit ECOC hard raw          568      36.43     63.57
%        C4.5 30-bit ECOC hard raw          617      43.04     56.96
%        C4.5 15-bit ECOC hard raw          991      63.57     36.43
%
%        Legend:  OPT = conjugate-gradient implementation of backprop.
%        C4.5 = Quinlan's C4.5 system, Release 1.
%        OPC = one-per-class representation
%        ECOC = error-correcting output code
%        raw = unpruned decision trees
%        pruned = pruned decision trees (CF=0.25)
%        hard = default trees
%        soft = trees with softened thresholds.
%        multiclass = one tree to do all 26-way classifications.
%
% 4. Relevant Information Paragraph:
%     This data set was generated as follows.
%     150 subjects spoke the name of each letter of the alphabet twice.
%     Hence, we have 52 training examples from each speaker.
%     The speakers are grouped into sets of 30 speakers each, and are
%    referred to as isolet1, isolet2, isolet3, isolet4, and isolet5.
%     The data appears in isolet1+2+3+4.data in sequential order, first
%     the speakers from isolet1, then isolet2, and so on.  The test
%     set, isolet5, is a separate file.
%
%     You will note that 3 examples are missing.  I believe they were
%     dropped due to difficulties in recording.
%
%     I believe this is a good domain for a noisy, perceptual task.  It
%     is also a very good domain for testing the scaling abilities of
%     algorithms. For example, C4.5 on this domain is slower than
%     backpropagation!
%
%     I have formatted the data for C4.5 and provided a C4.5-style
%     names file as well.
%
% 5. Number of Instances
%     isolet1+2+3+4.data.Z:  6238
%     isolet5.data.Z:        1559
%
% 6. Number of Attributes       617 plus 1 for the class
%     All attributes are continuous, real-valued attributes scaled into the
%     range -1.0 to 1.0.  
%
% 7. For Each Attribute: (please give both acronym and full name if both exist)
%    The features are described in the paper by Cole and Fanty cited
%     above.  The features include spectral coefficients; contour
%     features, sonorant features, pre-sonorant features, and
%     post-sonorant features.  Exact order of appearance of the
%     features is not known.
%
% 8. Missing Attribute Values: none
%
% 9. Class Distribution:
%     Class       isolet1+2+3+4:    isolet5:
%       1  A         240               60
%       2  B         240               60
%       3  C         240               60
%       4  D         240               60
%       5  E         240               60
%       6  F         238               60
%       7  G         240               60
%       8  H         240               60
%       9  I         240               60
%      10  J         240               60
%      11  K         240               60
%      12  L         240               60
%      13  M         240               59
%      14  N         240               60
%      15  O         240               60
%      16  P         240               60
%      17  Q         240               60
%      18  R         240               60
%      19  S         240               60
%      20  T         240               60
%      21  U         240               60
%      22  V         240               60
%      23  W         240               60
%      24  X         240               60
%      25  Y         240               60
%      26  Z         240               60
%

@relation isolet

@attribute f1 numeric
@attribute f2 numeric
@attribute f3 numeric
@attribute f4 numeric
@attribute f5 numeric
@attribute f6 numeric
@attribute f7 numeric
@attribute f8 numeric
@attribute f9 numeric
@attribute f10 numeric
@attribute f11 numeric
@attribute f12 numeric
@attribute f13 numeric
@attribute f14 numeric
@attribute f15 numeric
@attribute f16 numeric
@attribute f17 numeric
@attribute f18 numeric
@attribute f19 numeric
@attribute f20 numeric
@attribute f21 numeric
@attribute f22 numeric
@attribute f23 numeric
@attribute f24 numeric
@attribute f25 numeric
@attribute f26 numeric
@attribute f27 numeric
@attribute f28 numeric
@attribute f29 numeric
@attribute f30 numeric
@attribute f31 numeric
@attribute f32 numeric
@attribute f33 numeric
@attribute f34 numeric
@attribute f35 numeric
@attribute f36 numeric
@attribute f37 numeric
@attribute f38 numeric
@attribute f39 numeric
@attribute f40 numeric
@attribute f41 numeric
@attribute f42 numeric
@attribute f43 numeric
@attribute f44 numeric
@attribute f45 numeric
@attribute f46 numeric
@attribute f47 numeric
@attribute f48 numeric
@attribute f49 numeric
@attribute f50 numeric
@attribute f51 numeric
@attribute f52 numeric
@attribute f53 numeric
@attribute f54 numeric
@attribute f55 numeric
@attribute f56 numeric
@attribute f57 numeric
@attribute f58 numeric
@attribute f59 numeric
@attribute f60 numeric
@attribute f61 numeric
@attribute f62 numeric
@attribute f63 numeric
@attribute f64 numeric
@attribute f65 numeric
@attribute f66 numeric
@attribute f67 numeric
@attribute f68 numeric
@attribute f69 numeric
@attribute f70 numeric
@attribute f71 numeric
@attribute f72 numeric
@attribute f73 numeric
@attribute f74 numeric
@attribute f75 numeric
@attribute f76 numeric
@attribute f77 numeric
@attribute f78 numeric
@attribute f79 numeric
@attribute f80 numeric
@attribute f81 numeric
@attribute f82 numeric
@attribute f83 numeric
@attribute f84 numeric
@attribute f85 numeric
@attribute f86 numeric
@attribute f87 numeric
@attribute f88 numeric
@attribute f89 numeric
@attribute f90 numeric
@attribute f91 numeric
@attribute f92 numeric
@attribute f93 numeric
@attribute f94 numeric
@attribute f95 numeric
@attribute f96 numeric
@attribute f97 numeric
@attribute f98 numeric
@attribute f99 numeric
@attribute f100 numeric
@attribute f101 numeric
@attribute f102 numeric
@attribute f103 numeric
@attribute f104 numeric
@attribute f105 numeric
@attribute f106 numeric
@attribute f107 numeric
@attribute f108 numeric
@attribute f109 numeric
@attribute f110 numeric
@attribute f111 numeric
@attribute f112 numeric
@attribute f113 numeric
@attribute f114 numeric
@attribute f115 numeric
@attribute f116 numeric
@attribute f117 numeric
@attribute f118 numeric
@attribute f119 numeric
@attribute f120 numeric
@attribute f121 numeric
@attribute f122 numeric
@attribute f123 numeric
@attribute f124 numeric
@attribute f125 numeric
@attribute f126 numeric
@attribute f127 numeric
@attribute f128 numeric
@attribute f129 numeric
@attribute f130 numeric
@attribute f131 numeric
@attribute f132 numeric
@attribute f133 numeric
@attribute f134 numeric
@attribute f135 numeric
@attribute f136 numeric
@attribute f137 numeric
@attribute f138 numeric
@attribute f139 numeric
@attribute f140 numeric
@attribute f141 numeric
@attribute f142 numeric
@attribute f143 numeric
@attribute f144 numeric
@attribute f145 numeric
@attribute f146 numeric
@attribute f147 numeric
@attribute f148 numeric
@attribute f149 numeric
@attribute f150 numeric
@attribute f151 numeric
@attribute f152 numeric
@attribute f153 numeric
@attribute f154 numeric
@attribute f155 numeric
@attribute f156 numeric
@attribute f157 numeric
@attribute f158 numeric
@attribute f159 numeric
@attribute f160 numeric
@attribute f161 numeric
@attribute f162 numeric
@attribute f163 numeric
@attribute f164 numeric
@attribute f165 numeric
@attribute f166 numeric
@attribute f167 numeric
@attribute f168 numeric
@attribute f169 numeric
@attribute f170 numeric
@attribute f171 numeric
@attribute f172 numeric
@attribute f173 numeric
@attribute f174 numeric
@attribute f175 numeric
@attribute f176 numeric
@attribute f177 numeric
@attribute f178 numeric
@attribute f179 numeric
@attribute f180 numeric
@attribute f181 numeric
@attribute f182 numeric
@attribute f183 numeric
@attribute f184 numeric
@attribute f185 numeric
@attribute f186 numeric
@attribute f187 numeric
@attribute f188 numeric
@attribute f189 numeric
@attribute f190 numeric
@attribute f191 numeric
@attribute f192 numeric
@attribute f193 numeric
@attribute f194 numeric
@attribute f195 numeric
@attribute f196 numeric
@attribute f197 numeric
@attribute f198 numeric
@attribute f199 numeric
@attribute f200 numeric
@attribute f201 numeric
@attribute f202 numeric
@attribute f203 numeric
@attribute f204 numeric
@attribute f205 numeric
@attribute f206 numeric
@attribute f207 numeric
@attribute f208 numeric
@attribute f209 numeric
@attribute f210 numeric
@attribute f211 numeric
@attribute f212 numeric
@attribute f213 numeric
@attribute f214 numeric
@attribute f215 numeric
@attribute f216 numeric
@attribute f217 numeric
@attribute f218 numeric
@attribute f219 numeric
@attribute f220 numeric
@attribute f221 numeric
@attribute f222 numeric
@attribute f223 numeric
@attribute f224 numeric
@attribute f225 numeric
@attribute f226 numeric
@attribute f227 numeric
@attribute f228 numeric
@attribute f229 numeric
@attribute f230 numeric
@attribute f231 numeric
@attribute f232 numeric
@attribute f233 numeric
@attribute f234 numeric
@attribute f235 numeric
@attribute f236 numeric
@attribute f237 numeric
@attribute f238 numeric
@attribute f239 numeric
@attribute f240 numeric
@attribute f241 numeric
@attribute f242 numeric
@attribute f243 numeric
@attribute f244 numeric
@attribute f245 numeric
@attribute f246 numeric
@attribute f247 numeric
@attribute f248 numeric
@attribute f249 numeric
@attribute f250 numeric
@attribute f251 numeric
@attribute f252 numeric
@attribute f253 numeric
@attribute f254 numeric
@attribute f255 numeric
@attribute f256 numeric
@attribute f257 numeric
@attribute f258 numeric
@attribute f259 numeric
@attribute f260 numeric
@attribute f261 numeric
@attribute f262 numeric
@attribute f263 numeric
@attribute f264 numeric
@attribute f265 numeric
@attribute f266 numeric
@attribute f267 numeric
@attribute f268 numeric
@attribute f269 numeric
@attribute f270 numeric
@attribute f271 numeric
@attribute f272 numeric
@attribute f273 numeric
@attribute f274 numeric
@attribute f275 numeric
@attribute f276 numeric
@attribute f277 numeric
@attribute f278 numeric
@attribute f279 numeric
@attribute f280 numeric
@attribute f281 numeric
@attribute f282 numeric
@attribute f283 numeric
@attribute f284 numeric
@attribute f285 numeric
@attribute f286 numeric
@attribute f287 numeric
@attribute f288 numeric
@attribute f289 numeric
@attribute f290 numeric
@attribute f291 numeric
@attribute f292 numeric
@attribute f293 numeric
@attribute f294 numeric
@attribute f295 numeric
@attribute f296 numeric
@attribute f297 numeric
@attribute f298 numeric
@attribute f299 numeric
@attribute f300 numeric
@attribute f301 numeric
@attribute f302 numeric
@attribute f303 numeric
@attribute f304 numeric
@attribute f305 numeric
@attribute f306 numeric
@attribute f307 numeric
@attribute f308 numeric
@attribute f309 numeric
@attribute f310 numeric
@attribute f311 numeric
@attribute f312 numeric
@attribute f313 numeric
@attribute f314 numeric
@attribute f315 numeric
@attribute f316 numeric
@attribute f317 numeric
@attribute f318 numeric
@attribute f319 numeric
@attribute f320 numeric
@attribute f321 numeric
@attribute f322 numeric
@attribute f323 numeric
@attribute f324 numeric
@attribute f325 numeric
@attribute f326 numeric
@attribute f327 numeric
@attribute f328 numeric
@attribute f329 numeric
@attribute f330 numeric
@attribute f331 numeric
@attribute f332 numeric
@attribute f333 numeric
@attribute f334 numeric
@attribute f335 numeric
@attribute f336 numeric
@attribute f337 numeric
@attribute f338 numeric
@attribute f339 numeric
@attribute f340 numeric
@attribute f341 numeric
@attribute f342 numeric
@attribute f343 numeric
@attribute f344 numeric
@attribute f345 numeric
@attribute f346 numeric
@attribute f347 numeric
@attribute f348 numeric
@attribute f349 numeric
@attribute f350 numeric
@attribute f351 numeric
@attribute f352 numeric
@attribute f353 numeric
@attribute f354 numeric
@attribute f355 numeric
@attribute f356 numeric
@attribute f357 numeric
@attribute f358 numeric
@attribute f359 numeric
@attribute f360 numeric
@attribute f361 numeric
@attribute f362 numeric
@attribute f363 numeric
@attribute f364 numeric
@attribute f365 numeric
@attribute f366 numeric
@attribute f367 numeric
@attribute f368 numeric
@attribute f369 numeric
@attribute f370 numeric
@attribute f371 numeric
@attribute f372 numeric
@attribute f373 numeric
@attribute f374 numeric
@attribute f375 numeric
@attribute f376 numeric
@attribute f377 numeric
@attribute f378 numeric
@attribute f379 numeric
@attribute f380 numeric
@attribute f381 numeric
@attribute f382 numeric
@attribute f383 numeric
@attribute f384 numeric
@attribute f385 numeric
@attribute f386 numeric
@attribute f387 numeric
@attribute f388 numeric
@attribute f389 numeric
@attribute f390 numeric
@attribute f391 numeric
@attribute f392 numeric
@attribute f393 numeric
@attribute f394 numeric
@attribute f395 numeric
@attribute f396 numeric
@attribute f397 numeric
@attribute f398 numeric
@attribute f399 numeric
@attribute f400 numeric
@attribute f401 numeric
@attribute f402 numeric
@attribute f403 numeric
@attribute f404 numeric
@attribute f405 numeric
@attribute f406 numeric
@attribute f407 numeric
@attribute f408 numeric
@attribute f409 numeric
@attribute f410 numeric
@attribute f411 numeric
@attribute f412 numeric
@attribute f413 numeric
@attribute f414 numeric
@attribute f415 numeric
@attribute f416 numeric
@attribute f417 numeric
@attribute f418 numeric
@attribute f419 numeric
@attribute f420 numeric
@attribute f421 numeric
@attribute f422 numeric
@attribute f423 numeric
@attribute f424 numeric
@attribute f425 numeric
@attribute f426 numeric
@attribute f427 numeric
@attribute f428 numeric
@attribute f429 numeric
@attribute f430 numeric
@attribute f431 numeric
@attribute f432 numeric
@attribute f433 numeric
@attribute f434 numeric
@attribute f435 numeric
@attribute f436 numeric
@attribute f437 numeric
@attribute f438 numeric
@attribute f439 numeric
@attribute f440 numeric
@attribute f441 numeric
@attribute f442 numeric
@attribute f443 numeric
@attribute f444 numeric
@attribute f445 numeric
@attribute f446 numeric
@attribute f447 numeric
@attribute f448 numeric
@attribute f449 numeric
@attribute f450 numeric
@attribute f451 numeric
@attribute f452 numeric
@attribute f453 numeric
@attribute f454 numeric
@attribute f455 numeric
@attribute f456 numeric
@attribute f457 numeric
@attribute f458 numeric
@attribute f459 numeric
@attribute f460 numeric
@attribute f461 numeric
@attribute f462 numeric
@attribute f463 numeric
@attribute f464 numeric
@attribute f465 numeric
@attribute f466 numeric
@attribute f467 numeric
@attribute f468 numeric
@attribute f469 numeric
@attribute f470 numeric
@attribute f471 numeric
@attribute f472 numeric
@attribute f473 numeric
@attribute f474 numeric
@attribute f475 numeric
@attribute f476 numeric
@attribute f477 numeric
@attribute f478 numeric
@attribute f479 numeric
@attribute f480 numeric
@attribute f481 numeric
@attribute f482 numeric
@attribute f483 numeric
@attribute f484 numeric
@attribute f485 numeric
@attribute f486 numeric
@attribute f487 numeric
@attribute f488 numeric
@attribute f489 numeric
@attribute f490 numeric
@attribute f491 numeric
@attribute f492 numeric
@attribute f493 numeric
@attribute f494 numeric
@attribute f495 numeric
@attribute f496 numeric
@attribute f497 numeric
@attribute f498 numeric
@attribute f499 numeric
@attribute f500 numeric
@attribute f501 numeric
@attribute f502 numeric
@attribute f503 numeric
@attribute f504 numeric
@attribute f505 numeric
@attribute f506 numeric
@attribute f507 numeric
@attribute f508 numeric
@attribute f509 numeric
@attribute f510 numeric
@attribute f511 numeric
@attribute f512 numeric
@attribute f513 numeric
@attribute f514 numeric
@attribute f515 numeric
@attribute f516 numeric
@attribute f517 numeric
@attribute f518 numeric
@attribute f519 numeric
@attribute f520 numeric
@attribute f521 numeric
@attribute f522 numeric
@attribute f523 numeric
@attribute f524 numeric
@attribute f525 numeric
@attribute f526 numeric
@attribute f527 numeric
@attribute f528 numeric
@attribute f529 numeric
@attribute f530 numeric
@attribute f531 numeric
@attribute f532 numeric
@attribute f533 numeric
@attribute f534 numeric
@attribute f535 numeric
@attribute f536 numeric
@attribute f537 numeric
@attribute f538 numeric
@attribute f539 numeric
@attribute f540 numeric
@attribute f541 numeric
@attribute f542 numeric
@attribute f543 numeric
@attribute f544 numeric
@attribute f545 numeric
@attribute f546 numeric
@attribute f547 numeric
@attribute f548 numeric
@attribute f549 numeric
@attribute f550 numeric
@attribute f551 numeric
@attribute f552 numeric
@attribute f553 numeric
@attribute f554 numeric
@attribute f555 numeric
@attribute f556 numeric
@attribute f557 numeric
@attribute f558 numeric
@attribute f559 numeric
@attribute f560 numeric
@attribute f561 numeric
@attribute f562 numeric
@attribute f563 numeric
@attribute f564 numeric
@attribute f565 numeric
@attribute f566 numeric
@attribute f567 numeric
@attribute f568 numeric
@attribute f569 numeric
@attribute f570 numeric
@attribute f571 numeric
@attribute f572 numeric
@attribute f573 numeric
@attribute f574 numeric
@attribute f575 numeric
@attribute f576 numeric
@attribute f577 numeric
@attribute f578 numeric
@attribute f579 numeric
@attribute f580 numeric
@attribute f581 numeric
@attribute f582 numeric
@attribute f583 numeric
@attribute f584 numeric
@attribute f585 numeric
@attribute f586 numeric
@attribute f587 numeric
@attribute f588 numeric
@attribute f589 numeric
@attribute f590 numeric
@attribute f591 numeric
@attribute f592 numeric
@attribute f593 numeric
@attribute f594 numeric
@attribute f595 numeric
@attribute f596 numeric
@attribute f597 numeric
@attribute f598 numeric
@attribute f599 numeric
@attribute f600 numeric
@attribute f601 numeric
@attribute f602 numeric
@attribute f603 numeric
@attribute f604 numeric
@attribute f605 numeric
@attribute f606 numeric
@attribute f607 numeric
@attribute f608 numeric
@attribute f609 numeric
@attribute f610 numeric
@attribute f611 numeric
@attribute f612 numeric
@attribute f613 numeric
@attribute f614 numeric
@attribute f615 numeric
@attribute f616 numeric
@attribute f617 numeric
@attribute class {'1','2','3','4','5','6','7','8','9','10','11','12','13','14','15','16','17','18','19','20','21','22','23','24','25','26'}

@data
-0.4394,-0.093,0.1718,0.462,0.6226,0.4704,0.3578,0.0478,-0.1184,-0.231,-0.2958,-0.2704,-0.262,-0.217,-0.0874,-0.0564,0.0254,0.0958,0.4226,0.6648,0.9184,0.9718,0.9324,0.707,0.6986,0.755,0.8816,1,0.938,0.845,0.7268,0.5578,-0.433,-0.1982,0.127,0.3666,0.4496,0.4258,0.2646,-0.0368,-0.07,-0.229,-0.2622,-0.3428,-0.191,-0.2242,-0.153,0.0344,0.108,0.146,0.338,0.6726,0.822,1,0.7912,0.656,0.6466,0.6916,0.6252,0.694,0.6986,0.5848,0.478,0.3334,-0.3872,-0.129,0.1656,0.4394,0.5228,0.3534,0.163,-0.0692,-0.1186,-0.1734,-0.2074,-0.4028,-0.283,-0.3846,-0.2698,-0.1656,0.017,0.0612,0.1604,0.5958,0.7654,1,0.807,0.7574,0.7314,0.7184,0.6376,0.6532,0.4472,0.335,0.309,0.0144,-0.3698,-0.0616,0.2408,0.5882,0.6806,0.196,0.0252,0.0644,-0.2212,-0.283,-0.2942,-0.5994,-0.3838,-0.4566,-0.6834,-0.4034,-0.2352,-0.1456,-0.0896,0.395,0.5798,0.8768,1,0.9888,0.8712,0.9608,0.9104,1,0.703,0.6134,0.535,0.367,-0.2942,0.0028,0.308,0.5178,0.6458,0.109,-0.188,-0.1444,-0.4414,-0.4468,-0.3896,-0.5286,-0.5832,-0.6268,-0.5504,-0.4904,-0.4578,-0.406,-0.2344,0.079,0.3324,0.703,0.9456,1,0.981,0.9836,0.9892,0.91,0.6758,0.5994,0.515,0.466,0.007,0.584,0.3812,0.458,0.07,-0.1084,-0.5944,-0.514,-0.6468,-0.8252,-0.8006,-0.6538,-0.6994,-0.7518,-0.4336,-0.5174,-0.4896,-0.493,-0.4896,-0.0034,0.3146,0.8216,0.8426,0.8812,0.8916,1,0.8356,0.556,0.3042,0.1258,0.0734,-0.0874,-0.4728,0.6218,0.2952,-0.3696,-0.5014,-0.4958,-0.4842,-0.381,-0.639,-0.4498,-0.3008,-0.2952,-0.3352,-0.5014,-0.2608,-0.169,-0.232,-0.0372,0.232,0.49,0.6446,0.4958,0.404,0.7078,1,0.914,0.5816,-0.318,-0.4098,-0.381,-0.3008,-0.1862,-0.4222,-0.1112,0.1556,0.3778,0.5556,0.5556,0.2888,0.0222,-0.0222,-0.2444,-0.2,-0.2444,-0.1556,-0.1556,-0.1556,-0.0222,0.0666,0.1556,0.4666,0.7334,0.8666,0.9556,0.8666,0.7334,0.8222,0.9112,0.9112,1,1,0.9112,0.8222,0.7334,-0.5428,-0.1428,0.0858,0.3142,0.4858,0.6,0.1428,-0.1428,-0.3714,-0.4286,-0.8286,-0.6,-0.4858,-0.4286,-0.3714,-0.3714,-0.4286,-0.4858,-0.2,0.1428,0.4858,0.4858,0.7142,0.6,0.6572,0.8286,0.8286,0.9428,0.9428,1,0.8858,0.7142,-0.2658,0.0632,0.2912,0.2912,0.1392,-0.038,-0.4936,-0.3924,-0.6962,-0.8482,-0.7974,-0.6962,-0.6202,-0.6456,-0.5444,-0.6456,-0.2912,-0.3924,-0.3164,0.038,0.1392,0.6202,0.8988,1,0.8228,0.8228,0.5444,0.1898,0.3418,0.1646,0.114,0.114,-1,-1,-1,-1,-1,-1,-0.895,-0.865,-0.91,-0.85,-0.385,0.91,0.95,0.905,0.85,0.865,0.89,0.8,0.51,0.26,-0.09,-0.635,-0.89,-0.905,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8842,-0.8092,-0.811,-0.1482,-0.4174,0.6814,0.7224,0.8842,0.6286,0.5094,0.4958,0.3152,0.1226,-0.334,-0.5758,-0.804,-0.9028,-0.925,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.76,-0.15,0.01,0.26,0.1432,-0.525,-0.4218,-0.4718,-0.4384,-0.5518,-0.6484,-0.6186,-0.5216,-0.5294,-0.7448,-0.6278,-0.8534,-0.9268,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3428,-0.4,-0.5714,-0.3714,1,1,-1,-1,-0.9142,-0.9714,-0.9714,-0.9714,-0.5428,-0.5142,-0.8286,-0.1714,-0.6572,-0.5428,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,0.9696,0.5646,1,1,1,1,0.9998,0.9946,0.9772,0.9804,1,0.9264,-0.4934,0.4942,-0.4122,0.627,0.6422,0.603,0.6934,-0.75,-0.4824,-0.5464,-0.3738,-0.3482,-0.1948,-0.1694,-0.1694,-0.099,-0.3418,-0.1374,0.1502,0.0798,0.1758,0.3802,0.706,0.7252,0.5272,0.508,0.3802,0.0926,0.2908,0.361,-0.0734,0.016,-0.214,0.1054,0.1694,0.5016,0.7444,0.8274,1,0.7252,-0.5644,-0.5958,-0.3596,-0.1234,-0.2494,-0.2914,-0.1706,-0.1864,-0.328,0.0604,0.4016,0.4278,0.1864,0.5328,0.6326,0.6482,0.3754,0.3544,0.5854,0.1864,0.8162,0.6536,-0.1286,-0.0132,0.0446,0.2808,0.4804,0.7008,0.7952,0.9212,1,0.5224,-0.6836,-0.5,-0.1174,-0.1938,-0.4082,-0.352,-0.3826,-0.403,-0.1326,0.4234,0.9898,0.9898,0.7806,0.7858,1,0.8674,0.6836,0.5408,0.4796,0.1224,0.8164,0.5816,-0.3572,-0.0408,0.2448,0.1582,0.3316,0.6888,0.8572,0.8622,0.898,0.546,-0.891,-1,1,-1,-1,-1,-1,0.1334,-1,-0.077,0.0512,0.2564,0.5642,0.4872,0.077,0.4358,0.7436,0.5128,0.6666,0.641,0.6154,1,0.8206,0.641,0.359,0.6924,0.4358,0.1538,0.4616,0.6154,0.3334,0.3334,0.4102,0.2052,0.3846,0.359,0.5898,0.3334,0.641,0.5898,-0.4872,'1'
-0.4348,-0.1198,0.2474,0.4036,0.5026,0.6328,0.4948,0.0338,-0.052,-0.1302,-0.0964,-0.2084,-0.0494,-0.0494,-0.2942,0.0704,0.0546,0.1302,0.5652,0.6848,0.776,0.9558,0.8542,0.7474,0.6094,0.7708,0.8282,1,0.9974,0.948,0.7422,0.5678,-0.2196,0.109,0.5892,0.8768,1,0.9936,0.7852,0.3712,0.1786,0.1248,0.1026,-0.229,-0.1628,-0.2418,-0.2922,-0.1374,-0.0964,0.0268,0.4944,0.7914,0.921,0.9432,0.7662,0.7978,0.5576,0.7884,0.8042,0.94,0.7726,0.7252,0.6588,0.2322,-0.2582,0.058,0.4178,0.7716,0.856,0.8028,0.5524,0.2456,0.0766,-0.014,-0.0798,-0.3584,-0.2488,-0.3708,-0.3552,-0.158,-0.2018,0.086,0.374,0.7652,0.903,1,0.831,0.7026,0.5962,0.6056,0.4804,0.6432,0.565,0.4804,0.4586,0.2708,-0.3278,-0.0492,0.2214,0.5846,0.6448,0.552,0.2596,0.1148,0.0356,-0.1448,-0.276,-0.3006,-0.235,-0.3306,-0.3416,-0.2022,-0.041,0.0546,0.2158,0.623,0.9754,1,0.7732,0.6312,0.6066,0.7404,0.9344,0.806,0.8306,0.6558,0.4808,0.3716,-0.35,-0.0622,0.195,0.5906,0.6792,0.3278,0.1092,-0.09,-0.1812,-0.3582,-0.4164,-0.4356,-0.4578,-0.455,-0.3942,-0.3582,-0.2392,-0.2006,0.0236,0.5214,0.8092,1,0.7704,0.6238,0.7234,0.8036,0.8368,0.8478,0.6128,0.5104,0.4662,0.2532,-0.268,0.1054,0.3946,0.485,0.6838,0.2138,-0.0422,-0.3886,-0.512,-0.6416,-0.6144,-0.503,-0.4668,-0.488,-0.5452,-0.4308,-0.238,-0.0784,0.2108,0.5422,0.991,0.9638,0.985,0.9278,1,0.9368,0.771,0.5844,0.5692,0.4488,0.3524,0.3734,0.0372,0.851,0.4522,0.5212,0.3882,0.1702,-0.4414,-0.4308,-0.4628,-0.649,-0.5586,-0.3404,-0.0426,-0.1756,0.032,-0.0054,0.282,0.3776,0.367,0.601,0.7446,0.5852,0.5744,0.9362,1,0.9574,0.2872,0.2554,-0.0212,0.1596,0.149,0.383,-0.2666,0.5334,0.3334,0.4,0.3334,0.6,0.4666,-0.4666,-0.0666,-0.2,0,0.1334,-0.1334,-0.1334,-0.3334,-0.1334,0.0666,0.2,-0.0666,0.1334,0.5334,0.6666,0.4,0.0666,0.4,0.6,0.6,0.9334,0.6666,1,0.7334,0.2666,-0.6586,-0.3658,-0.0732,0.122,0.122,0.4146,0.2682,-0.4634,-0.1708,-0.317,-0.4146,-0.2196,-0.3658,-0.4634,-0.1708,-0.2682,0.0732,0.3658,0.4634,0.8048,1,0.9024,0.4146,0.8536,0.8536,0.5122,0.9024,1,0.8536,0.756,0.6098,0.561,-0.3,0.1,0.4334,0.7334,0.9,0.3,0.0666,-0.1334,-0.3666,-0.6,-0.8666,-0.5334,-0.2334,-0.3666,-0.9,-0.4334,-0.3,-0.3334,-0.0666,0.4,0.7666,1,0.9666,0.9666,0.9334,0.8666,0.9,0.8,0.7666,0.4666,0.4666,0.3666,-1,-1,-1,-1,-1,-1,-0.8992,-0.874,-0.9144,-0.9144,-0.859,0.607,0.9144,0.9546,0.859,0.7834,0.7482,0.7682,0.8488,0.6926,0.3552,-0.2846,-0.8488,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9446,-0.9388,-0.9284,-0.8994,-0.8856,0.5772,-0.1474,-0.1208,-0.2098,-0.182,-0.0734,6e-04,-0.1322,-0.1692,-0.4662,-0.7654,-0.9296,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.8534,-0.6934,-0.3134,-0.3068,-0.295,-0.6118,-0.6934,-0.6524,-0.6,-0.5724,-0.6094,-0.7262,-0.68,-0.7108,-0.9232,-0.9268,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.0572,-0.6286,-0.3714,-0.7714,1,1,-0.2858,-1,-1,-1,-1,-1,-0.8,-0.6572,0,0.0858,-0.7714,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.7654,0.8502,0.8348,0.8326,0.824,0.8124,0.812,0.8132,0.7864,0.83,0.82,-0.4666,0.5294,-0.888,-0.4038,0.5968,0.8648,0.888,1,0.0878,0.1464,0.1046,0.523,0.431,0.3556,0.5564,0.749,0.6402,0.5564,0.3306,0.5398,0.6988,0.5482,1,0.9498,0.7992,0.5732,0.5398,0.6066,0.523,0.3222,0.5564,0.5482,0.4728,0.3138,0.5732,0.5482,0.3054,0.3892,0.3306,-0.0126,-0.1074,-0.088,0.153,0.1074,-0.0814,-0.0032,0.2378,0.2378,0.1336,0.531,0.57,0.5048,0.4854,0.8176,0.9022,1,0.798,0.4984,0.4398,0.798,0.7004,0.1662,0.2704,0.2248,0.355,0.2312,0.5636,0.4398,0.6808,0.7068,0.5244,0.0944,-0.474,-0.4508,-0.37,-0.0232,-0.2948,-0.2602,0.0924,0.133,-0.2024,0.0116,0.4566,0.3642,0.289,0.6648,0.9826,0.6764,0.607,0.445,0.37,1,0.9596,-0.1446,-0.185,-0.0752,0.0578,-0.156,0.3122,0.4046,0.474,0.7456,0.7456,0.1734,-0.963,1,-1,-1,-1,-1,-1,-1,-1,0.0228,-0.091,0.2728,0.8636,0.75,0.4318,0.7272,0.659,0.409,0.7728,1,0.7272,0.4772,0.4772,0.4772,0.659,0.1818,0.4318,0.3864,0.841,0.8864,0.25,0.2272,0,0.2954,0.2046,0.4772,0.0454,0.2046,0.4318,0.4546,-0.091,'1'
-0.233,0.2124,0.5014,0.5222,-0.3422,-0.584,-0.7168,-0.6342,-0.8614,-0.8318,-0.7228,-0.6312,-0.4986,-0.708,-0.6666,-0.5428,-0.413,-0.3776,-0.0472,0.1356,0.6136,0.8024,1,0.9794,0.9352,0.8732,0.944,0.9588,0.6962,0.4838,0.3982,0.2064,-0.327,0.0134,0.362,0.3218,-0.4558,-0.8096,-0.7748,-0.7238,-0.8392,-0.9544,-0.9088,-0.6462,-0.6434,-0.614,-0.7024,-0.6702,-0.6194,-0.4344,-0.4076,-0.2574,0.1636,0.3994,0.7024,0.9008,0.8686,0.7614,0.9088,1,0.992,0.8632,0.6756,0.4102,-0.4166,-0.1528,0.2346,0.1832,-0.4282,-0.776,-0.846,-0.8134,-0.8554,-0.8204,-0.7526,-0.7036,-0.6382,-0.6126,-0.6196,-0.545,-0.5122,-0.6196,-0.3908,-0.3372,-0.1178,0.3676,0.678,0.8716,0.7852,0.7526,0.8134,1,0.9604,0.8226,0.573,0.5192,-0.4292,-0.1532,0.1996,0.1484,-0.406,-0.6984,-0.7958,-0.7216,-0.9328,-0.8492,-0.7958,-0.7424,-0.7308,-0.652,-0.6194,-0.6148,-0.5498,-0.5452,-0.4292,-0.3526,-0.065,0.3202,0.5962,0.9096,0.8004,0.8028,0.8886,0.9792,1,0.7726,0.6102,0.4942,-0.317,-0.0208,0.2754,0.2362,-0.4786,-0.7528,-0.7258,-0.6646,-0.7724,-0.694,-0.6744,-0.6402,-0.6598,-0.6696,-0.5986,-0.6818,-0.5618,-0.5276,-0.4688,-0.344,0.055,0.295,0.5152,1,0.9854,0.7308,0.885,0.88,0.9388,0.7478,0.7258,0.4444,-0.2506,0.1634,0.3542,0.376,-0.4496,-0.6076,-0.6702,-0.654,-0.8446,-0.7194,-0.684,-0.7574,-0.7684,-0.8366,-0.6594,-0.6104,-0.692,-0.6702,-0.6404,-0.436,-0.237,0.1716,0.5668,0.7792,0.9238,0.842,0.7548,1,0.9674,0.8474,0.673,0.5886,-0.1506,0.5914,0.4802,0.6954,-0.0358,-0.5304,-0.5484,-0.4552,-0.8028,-0.7348,-0.6666,-0.6882,-0.742,-0.975,-0.6846,-0.7348,-0.656,-0.613,-0.7562,-0.38,0.025,0.3118,0.7706,0.8888,0.9964,0.9176,0.914,1,0.9462,0.681,0.466,0.4266,-0.1282,0.2308,0.4872,0.3846,-0.2308,-0.4358,-0.3846,-0.3846,-0.6924,-0.4872,-0.5384,-0.4872,-0.1282,-0.1794,-0.3846,0.077,0.0256,-0.077,0.1794,0.6924,1,0.6924,0.641,0.9488,0.6924,0.3846,0.2308,0.0256,0.1794,-0.3334,0.077,0.0256,-0.3,0.05,0.3,0.35,-0.3,-0.35,-0.55,-0.5,-0.55,-0.75,-0.7,-0.65,-0.7,-0.65,-0.65,-0.6,-0.7,-0.35,0.05,0.15,0.8,0.75,0.9,0.8,0.8,1,0.75,0.55,0.5,0.3,0.35,0.1,-0.1764,0.0392,0.3726,0.3334,-0.196,-0.549,-0.5882,-0.4902,-0.3726,-0.3726,-0.3922,-0.5294,-0.2156,-0.255,-0.451,-0.2156,-0.196,-0.4118,-0.0196,0,0.098,0.4902,0.7844,0.9216,0.8628,0.8628,0.9216,1,0.9608,0.9412,0.6666,0.5882,-1,-1,-1,-1,-1,-1,-1,-1,-0.8008,-0.8174,-0.2738,0.8796,0.8216,0.5602,0.5478,0.4688,0.4356,0.3568,0.3652,0.3568,0.1868,-0.058,-0.5104,-0.8424,-0.9046,-0.9088,-0.9378,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.861,-0.869,-0.1062,0.5988,0.3902,0.4816,0.6484,0.8034,0.8988,0.718,0.3128,0.13,-0.0408,-0.3128,-0.6782,-0.8034,-0.8352,-0.8074,-0.9066,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.8734,-0.6068,-0.4084,-0.4634,-0.2662,-0.2308,-0.1632,-0.1308,-0.214,-0.2878,-0.457,-0.6294,-0.8154,-0.8534,-0.44,-0.3068,-0.4468,-0.9234,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,-0.9142,-0.9714,-0.9714,-0.9142,-1,-0.9142,-0.9714,-0.9714,-0.8572,0.4,-0.0572,-0.6,-0.7428,-0.4858,-0.4286,-1,-1,-1,-1,-1,-1,-0.3504,-0.3592,-0.3746,-0.3802,-0.3676,-0.4006,-0.3938,-0.4374,-0.4316,-0.3986,1,1,1,1,1,1,1,1,1,1,-0.52,0.5412,0.1202,0.1698,0.6306,0.7458,0.6802,0.5666,0.2654,0.3878,0.4286,0.2654,0.347,0.4286,0.8368,0.8776,0.9184,1,0.9184,0.9184,0.9184,0.8368,0.8368,0.9184,0.9184,0.7552,0.7142,0.7142,0.8776,0.7552,0.8368,0.6734,0.796,0.6326,0.7552,0.7552,0.6734,0.7142,0.4286,0.0612,0.0476,0.0952,-0.119,-0.1666,-0.1428,-0.0952,0.262,0.4048,0.5476,1,0.7858,0.5,0.6428,0.5,0.381,0.7142,1,0.5952,0.1666,0.1904,0.5952,0.4524,0.4762,0.3096,0.4286,0.0714,-0.0476,0.1904,0.1904,0.4048,0.0714,-0.0238,0.2858,0.551,0.4082,-0.0816,-0.4082,-0.0612,-0.0408,0.0408,0.4694,0.8164,0.9592,1,0.9796,0.5918,0.4082,0.3674,0.8572,0.7552,0.1224,0.204,0.3878,0.2448,0.2448,0.1836,0.2858,0.204,0.1632,0.102,0.1632,0.102,-0.1224,-0.1224,0.9424,-1,-1,1,-0.8,-1,-0.6,-0.8334,-1,-0.4286,-0.254,-0.365,-0.0952,-0.0794,0.0318,-0.2064,0.0634,0.1112,0.1746,0.238,0.1904,0.508,0.5396,0.0318,-0.0158,0.7142,1,0.4126,-0.0794,-0.0476,0,0.0952,-0.1112,-0.0476,-0.1746,0.0318,-0.0476,0.1112,0.254,0.1588,-0.4762,'2'
-0.3808,-0.0096,0.2602,0.2554,-0.429,-0.6746,-0.6868,-0.665,-0.841,-0.9614,-0.7374,-0.7084,-0.6772,-0.6338,-0.6482,-0.624,-0.3976,-0.5662,-0.2168,0.0458,0.3832,0.6168,0.8988,1,0.9156,0.8796,0.9132,0.7132,0.759,0.7278,0.5856,0.506,-0.371,-0.0868,0.4114,0.3438,-0.1816,-0.5964,-0.6888,-0.6686,-0.6348,-0.7204,-0.7452,-0.7452,-0.5828,-0.5852,-0.443,-0.5896,-0.7632,-0.6212,-0.5084,-0.1996,-0.0214,0.1816,0.601,0.788,0.8466,0.8624,0.788,0.9526,1,0.8106,0.7362,0.6776,-0.4668,-0.1906,0.2784,0.1606,-0.2248,-0.5846,-0.7088,-0.681,-0.6532,-0.8094,-0.7452,-0.7474,-0.6916,-0.7066,-0.6746,-0.7666,-0.6038,-0.6232,-0.6168,-0.2634,-0.122,0.1134,0.4412,0.7774,0.788,0.8158,0.6596,0.8286,1,0.7558,0.5738,0.6252,-0.493,-0.2596,0.1338,0.0224,-0.211,-0.639,-0.7748,-0.718,-0.7626,-0.856,-0.6998,-0.6754,-0.6632,-0.6816,-0.6876,-0.7364,-0.6754,-0.6896,-0.5254,-0.2576,-0.071,0.1502,0.4564,0.8986,0.9026,0.9006,0.7688,0.9066,1,0.7364,0.5944,0.57,-0.4934,-0.2534,0.0584,-0.04,-0.1836,-0.7394,-0.799,-0.678,-0.7846,-0.6902,-0.6882,-0.7948,-0.7456,-0.8626,-0.8544,-0.7006,-0.6924,-0.6512,-0.5794,-0.3948,-0.0502,0.12,0.4216,0.879,1,0.8708,0.8912,0.9466,0.922,0.7334,0.721,0.5528,-0.38,-0.0318,0.2206,0.174,-0.2426,-0.6716,-0.7378,-0.6888,-0.799,-0.7892,-0.7966,-0.62,-0.5392,-0.7058,-0.75,-0.7426,-0.7084,-0.7598,-0.6128,-0.549,-0.147,0.0148,0.3824,0.7156,0.848,1,0.9436,0.9068,0.9068,0.7892,0.5956,0.4584,-0.6088,-0.1476,-0.358,-0.5018,-0.9298,-0.8488,-0.4502,-0.369,-0.7638,-0.7676,-0.6532,-0.5646,-0.5572,-0.62,-0.6126,-0.5388,-0.4096,-0.4244,-0.3542,-0.273,0.1328,0.4686,0.7084,1,0.9078,0.7158,0.8118,0.8598,0.8154,0.476,0.3948,0.3136,-0.282,0.1282,-0.1282,0.1282,-0.077,-0.4358,-0.3846,-0.1282,-0.282,-0.5898,-0.641,-0.077,-0.077,-0.4872,-0.641,-0.1794,0.3846,0.3846,0.641,0.4872,1,0.7948,0.641,0.641,0.5898,0.5898,0.6924,0.641,0.4872,0.641,0.5384,0.6924,-0.16,0.04,0.24,0.28,-0.28,-0.4,-0.4,-0.28,-0.56,-0.4,-0.36,-0.4,-0.48,-0.44,-0.44,-0.32,-0.04,-0.08,0.08,0.52,0.52,0.68,0.92,1,0.88,0.56,0.76,0.4,0.28,0.6,0.4,0.44,-0.3696,-0.1086,0.1304,0.0434,-0.0652,-0.5,-0.4348,-0.4348,-0.4348,-0.5218,-0.587,-0.7392,-0.4782,-0.5652,-0.6522,-0.5,-0.413,-0.3914,-0.7174,-0.3478,0.1304,0.2392,0.4566,0.8696,0.9566,0.9566,0.8696,0.8696,1,0.8478,0.6956,0.6304,-1,-1,-1,-1,-1,-1,-1,-1,-0.7576,-0.8304,-0.4788,0.6788,0.8848,0.9152,0.8122,0.5516,0.503,0.406,0.2666,0.2546,-0.0304,-0.6728,-0.903,-0.8848,-0.8848,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8932,-0.9152,0.0166,0.197,0.105,0.1086,0.059,0.164,0.3922,0.7734,0.256,-0.2044,-0.501,-0.7772,-0.8674,-0.884,-0.8508,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.94,-0.7234,-0.24,-0.29,-0.313,-0.3472,-0.1974,-0.1228,-0.1214,-0.2414,-0.3588,-0.428,-0.4148,-0.7268,-0.81,-0.6968,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7428,0.8,1,1,-0.8858,-0.9428,-1,-1,-0.9428,-0.9428,-0.8572,-0.9428,-0.4572,-0.4572,-0.4858,-0.9142,-0.4858,-1,-1,-1,-1,-1,-1,-1,-1,-0.2442,-0.2488,-0.2954,-0.2754,-0.2536,-0.2704,-0.2712,-0.248,-0.24,-0.1816,1,1,1,1,1,1,1,1,1,1,-0.4666,0.7764,0.5378,-0.1068,0.022,0.3186,0.4402,0.5166,0.0588,0.0588,0.1764,0.353,0.5882,0.4706,0.8824,0.8824,1,0.9412,0.9412,0.9412,0.8236,0.7058,0.7648,0.7648,0.5882,0.7648,0.5882,0.5882,0.5294,0.5294,0.4118,0.5294,0.1764,0.2942,0.353,0.2942,0.2352,0.2942,0.2352,-0.4118,-0.4286,-0.011,-0.033,-0.1648,0.077,0.4286,0.6484,0.8902,1,0.912,0.7142,0.5824,0.6704,0.4506,0.4506,0.4506,0.6044,0.4726,0.3626,0.2968,0.2968,0.2528,0.1648,0.2088,-0.033,-0.1428,-0.011,0.1648,0.1648,0.1428,0.055,-0.2088,0.3458,0.4018,0.1962,-0.0094,0.1028,0.1962,0.271,0.215,0.57,0.9626,1,0.8504,0.8318,0.7758,0.3644,0.4018,0.7384,0.458,0.1962,0.458,0.4766,0.4206,0.4206,0.3644,0.2336,0.3458,0.215,0.3272,0.1962,0.1588,0.271,0.0654,1,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.2374,-0.5396,0.1798,0.2086,0.0792,0.036,0.3238,0.3956,0.41,0.2662,0.5252,0.367,0.9136,1,0.41,0.1224,0.5252,0.4388,0.0216,-0.0792,0.3812,0.2806,0.0648,-0.0504,-0.036,-0.1224,0.1366,0.295,0.0792,-0.0072,0.0936,-0.151,'2'
-0.3412,0.0946,0.6082,0.6216,-0.1622,-0.3784,-0.4324,-0.4358,-0.4966,-0.5406,-0.5472,-0.544,-0.4494,-0.2332,-0.2332,-0.1148,0.0068,0.0778,0.4864,0.9054,0.956,0.7602,0.777,0.7636,0.8818,1,0.9426,0.7162,0.5472,0.4122,0.277,0.2364,-0.4684,-0.1394,0.421,0.4316,-0.3106,-0.5448,-0.5132,-0.6368,-0.75,-0.6736,-0.7158,-0.529,-0.4132,-0.5264,-0.4868,-0.3316,-0.1526,-0.1552,-0.0368,0.3552,0.471,0.8158,0.7816,0.8526,0.8132,0.8342,1,0.7842,0.6868,0.5578,0.4316,0.4474,-0.4814,-0.1596,0.3564,0.3484,-0.3138,-0.5452,-0.609,-0.601,-0.6942,-0.6596,-0.6622,-0.6968,-0.6702,-0.5744,-0.5904,-0.5186,-0.2926,-0.375,-0.2368,0.1702,0.391,0.5772,1,0.9894,0.8244,0.9388,0.9548,0.9228,0.8006,0.8086,0.6436,0.5212,-0.4448,-0.1048,0.391,0.3882,-0.374,-0.5808,-0.5496,-0.5382,-0.7394,-0.7138,-0.6912,-0.694,-0.6742,-0.5496,-0.6544,-0.626,-0.306,-0.3712,-0.4476,0.051,0.1814,0.405,0.8612,0.8838,1,0.8896,0.9462,1,0.8668,0.8328,0.7224,0.626,-0.4006,-0.0284,0.3978,0.4232,-0.2244,-0.4204,-0.5994,-0.5624,-0.7018,-0.784,-0.8836,-0.8978,-0.679,-0.7386,-0.5426,-0.5398,-0.591,-0.517,-0.341,-0.159,0.0398,0.2302,0.5312,0.8268,0.7556,0.8182,1,0.8694,0.7272,0.7074,0.679,0.5768,-0.172,0.3824,0.4924,0.626,0.015,-0.212,-0.5126,-0.4792,-0.6828,-0.803,-0.8964,-0.6528,-0.5692,-0.763,-0.7062,-0.6662,-0.4724,-0.586,-0.5358,-0.192,-0.025,0.212,0.6126,0.8398,0.9732,1,0.9666,0.9632,0.7964,0.6328,0.4792,0.4224,-0.126,1,0.8096,0.5182,0.0476,-0.283,-0.4846,-0.3726,-0.5966,-0.675,-0.804,-0.619,-0.6582,-0.7592,-0.5294,-0.6134,-0.3446,-0.3894,-0.4398,0.0644,0.154,0.6526,0.5294,0.5462,0.6918,0.5798,0.5854,0.4398,0.1372,0.0756,-0.1204,-0.0644,-0.081,0.6756,0.6216,0.5136,0.4594,0.081,0.1892,0.081,-0.1892,-0.3514,-0.6756,-0.2972,-0.2972,0.027,-0.1352,0.2432,0.1892,0.5676,0.8918,1,0.8378,0.7298,0.8378,0.6756,0.7298,1,1,0.7838,0.5676,0.4594,0.081,-0.2432,-0.2558,0.3024,0.628,0.5814,0.0698,-0.2094,-0.5348,-0.3954,-0.0698,-0.0698,-0.1628,-0.1628,-0.1628,-0.2558,-0.0232,0.0232,0.2094,0.3488,0.4418,0.9534,1,0.6744,0.5814,0.6744,0.6744,1,1,0.5348,0.3954,0.2558,0.1628,0.0698,-0.068,0.301,0.4952,0.534,0.1068,0.068,-0.3786,-0.2816,-0.301,-0.3398,-0.8834,-0.3398,-0.3592,-0.3204,-0.5728,-0.2428,-0.2234,-0.3204,-0.165,-0.0292,0.1456,0.301,0.6894,0.8446,0.9418,0.9806,1,0.8834,0.767,0.8252,0.7088,0.67,-0.9138,-0.9256,-0.8982,-0.9256,-0.9178,-0.9218,-0.9218,-0.91,-0.9334,-0.9138,-0.8356,0.6712,0.9022,0.8122,0.5772,0.452,0.4442,0.4638,0.409,0.4012,0.2838,-0.362,-0.726,-0.9138,-0.9138,-0.9412,-1,-1,-1,-1,-1,-1,-1,-0.2898,-0.4356,-0.3568,-0.3066,-0.3032,-0.1574,0.1088,0.1274,-0.3366,-0.3216,-0.814,0.1876,0.5712,0.7856,0.6466,0.7102,0.4222,0.2362,0.1106,0.0084,-0.278,-0.6214,-0.8224,-0.8928,-0.9128,-0.9162,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.4734,-0.74,-0.636,-0.442,-0.3546,-0.2438,-0.422,-0.362,-0.311,-0.491,-0.8092,-0.8456,-0.68,-0.6734,-0.7934,-0.9,-1,-1,-1,-1,-1,-1,-1,-0.9142,-0.8572,-0.8858,-0.9714,-0.9714,-0.7714,-0.6858,-0.7428,0,1,1,1,-0.7142,-1,-1,-1,-1,-1,-0.9714,-0.8,-0.5714,0.0858,-0.8572,-0.8858,-0.8858,-0.7142,-1,-1,-1,-1,-1,-1,-1,0.0414,-0.0028,0.0154,0.0166,0.0116,2e-04,-0.0172,-0.0368,-0.0552,-0.0956,0.7848,0.8384,0.8352,0.8622,0.8974,0.9388,1,1,1,1,-0.5734,0.2706,-0.856,-0.3216,0.1274,0.3618,0.34,-0.2916,-0.69,-0.6534,-0.65,-0.245,-0.3266,-0.3634,-0.3466,-0.3184,0.1116,0.0116,-0.005,-0.09,0.39,0.3484,0.1284,0.0484,0.11,0.385,0.835,0.93,0.4084,0.61,0.6934,0.8,0.8684,1,0.7566,0.6134,0.5084,0.555,0.535,0.0766,-0.7624,-0.7578,-0.5578,-0.3684,-0.4662,-0.4316,-0.4016,-0.3474,0.024,-0.1444,-0.0918,-0.0948,0.0902,0.2466,0.1594,0.185,0.1278,0.1548,0.4978,0.6512,0.4346,0.567,0.7894,0.9338,0.9894,1,1,0.6706,0.57,0.7804,0.8196,0.6662,-0.8,-0.8102,-0.7338,-0.4602,-0.5706,-0.5898,-0.5264,-0.6044,-0.1236,-0.1794,-0.1956,-0.3088,0.1632,0.1382,-0.1882,-0.228,-0.2456,0.0662,0.3764,0.6382,0.2558,0.0852,0.1824,0.428,0.5588,0.9898,1,0.5368,0.3442,0.4676,0.453,-0.0602,-0.9096,-1,1,-1,-1,-1,-1,1,-1,0.25,0.5,0.0624,0.3438,0.25,0.25,0.625,0.25,0.5312,0.4376,0.4688,0.5626,0.5938,0.3438,0.5626,0.25,1,0.9376,0.3438,0.2812,-0.0312,0.4376,0.2812,0.1562,0.3124,0.25,-0.0938,0.1562,0.3124,0.3124,0.2188,-0.25,'3'
-0.4634,0.0306,0.3546,0.4448,-0.1022,-0.4184,-0.6388,-0.437,-0.4396,-0.6654,-0.7424,-0.4926,-0.2988,-0.3546,-0.4476,-0.3732,-0.1872,-0.0412,0.312,0.5112,0.6548,0.6946,0.6866,0.6334,0.7768,1,0.9974,0.761,0.583,0.5936,0.5006,0.4502,-0.4662,-0.1504,0.329,0.318,-0.1546,-0.4118,-0.658,-0.586,-0.7058,-0.7648,-0.804,-0.586,-0.549,-0.6754,-0.647,-0.4662,-0.3986,-0.3268,-0.1786,0.0284,0.4052,0.6732,0.8932,0.9216,0.8104,0.9042,0.9716,1,0.841,0.7538,0.695,0.5948,-0.5266,-0.285,0.136,0.0976,-0.134,-0.4864,-0.561,-0.6778,-0.72,-0.7886,-0.7764,-0.6254,-0.5932,-0.583,-0.563,-0.5408,-0.4744,-0.422,-0.156,-0.0896,0.152,0.5348,0.72,1,0.861,0.8408,0.9778,0.9174,0.9356,0.8348,0.724,0.7382,-0.529,-0.2442,0.1114,0.0728,-0.1414,-0.4926,-0.651,-0.591,-0.7624,-0.8736,-0.7966,-0.6252,-0.561,-0.636,-0.6638,-0.6018,-0.5546,-0.6232,-0.3448,-0.2376,-0.0108,0.3362,0.5718,1,0.9164,0.773,0.91,0.8972,0.865,0.8266,0.7366,0.6938,-0.4838,-0.1204,0.2056,0.1954,-0.2656,-0.5062,-0.767,-0.7168,-0.812,-0.9148,-0.777,-0.802,-0.7994,-0.7368,-0.7168,-0.7142,-0.8922,-0.7468,-0.7744,-0.5038,-0.1804,0.0276,0.4712,0.6992,1,0.7794,0.6416,0.8746,0.7142,0.5264,0.5814,0.4988,-0.3014,0.3048,0.2774,0.3732,-0.2158,-0.3596,-0.5342,-0.4658,-0.911,-0.815,-0.8732,-0.5068,-0.5684,-0.8082,-0.5308,-0.5514,-0.685,-0.7294,-0.6952,-0.3732,0.1096,0.3184,0.6198,0.8458,0.8904,1,0.8116,0.709,0.4828,0.3768,0.2226,0.3014,-0.601,0.2606,-0.0586,-0.6224,-0.7872,-0.5958,-0.3032,-0.1968,-0.6542,-0.782,-0.532,-0.3086,-0.3458,-0.3564,0.0532,-0.2074,-0.0904,-0.0478,-0.0054,0.1436,0.218,0.1968,0.2446,0.5744,0.899,1,0.4628,0.016,-0.1702,-0.0054,0.1224,0.5106,-0.52,0.76,0.68,0.2,0.04,-0.44,0.12,0.12,0.04,-0.12,-0.2,-0.04,0.28,-0.12,-0.12,-0.44,0.04,1,1,0.92,0.6,0.84,0.36,0.6,0.76,1,1,0.52,0.04,0.6,0.92,0.6,-0.2,0.24,0.4,0.52,0.2,-0.04,-0.04,-0.12,-0.12,-0.44,-0.32,-0.24,-0.08,0.04,-0.2,-0.04,0.28,0.24,0.44,0.68,0.68,0.48,0.36,0.64,0.84,1,1,0.64,0.64,0.52,0.44,0.28,-0.4832,-0.236,0.0786,0.0562,-0.191,-0.4606,-0.573,-0.4832,-0.6854,-0.7752,-0.8426,-0.6404,-0.618,-0.8876,-0.5956,-0.5506,-0.4606,-0.4158,-0.4158,-0.4382,0.0112,0.1236,0.4382,0.9326,1,0.4832,0.7978,0.9102,0.663,0.6404,0.7752,0.573,-0.8738,-0.903,-0.898,-0.9126,-0.8786,-0.9174,-0.9174,-0.898,-0.903,-0.8932,-0.864,0.4612,0.8884,0.7378,0.4126,0.2282,0.1504,0.034,0.0098,-0.136,-0.3398,-0.7282,-0.898,-0.8884,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6668,-0.5966,-0.5826,-0.4984,-0.2686,-0.3962,-0.4704,-0.5354,-0.5036,-0.2686,-0.4972,-0.289,0.1946,0.4436,0.8162,0.8928,0.3912,-0.2086,-0.5048,-0.6566,-0.7434,-0.8788,-0.9324,-0.931,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.96,1,1,1,1,1,1,1,1,1,0.6066,-0.7308,-0.6708,-0.6508,-0.317,-0.3324,-0.2108,-0.1786,-0.34,-0.4258,-0.6644,-0.6944,-0.9,-0.94,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5142,-0.6572,-0.8,-0.8,-0.8,-0.8,-0.7428,-0.7428,-0.5428,-0.0858,1,1,-0.7428,-0.9714,-0.9428,-0.8858,-0.8858,-0.8286,-0.9142,-0.8286,-0.4572,-0.4286,-0.8572,-0.6858,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.017,-0.0318,-0.044,-0.0612,-0.0426,-0.058,-0.0478,-0.0428,0.0116,-0.0066,0.863,0.9082,0.9358,0.9848,0.9982,1,1,1,1,1,-0.5334,0.6,-0.5112,-0.6822,-0.4562,-0.3466,-0.1002,-0.2334,-0.5962,-0.7214,-0.5274,-0.1358,-0.2416,-0.3528,-0.1112,-0.1588,-0.1094,-0.1022,-0.2204,-0.12,0.097,-0.007,-0.1182,0.1128,0.194,0.2116,0.4462,0.5732,0.5696,0.5732,0.672,0.7408,0.8518,0.7142,1,0.7936,0.5274,0.7108,0.5008,0.2028,-0.8262,-0.7824,-0.76,-0.504,-0.5544,-0.5212,-0.4908,-0.4562,-0.114,-0.2732,-0.2334,-0.3156,-0.0716,-0.0756,-0.2214,-0.1392,0.081,0.3648,0.573,0.679,0.374,0.5,0.5702,0.7228,0.6924,0.5902,1,0.7282,0.2812,0.3926,0.5504,0.3912,-0.7808,-0.7868,-0.7148,-0.497,-0.5058,-0.5,-0.4308,-0.4148,0.0692,0.0192,-0.1662,-0.2206,0.15,0.2692,-0.0574,0.0692,0.1986,0.403,0.6264,0.8986,0.6648,0.6206,0.8764,0.7794,0.697,0.7838,1,0.5324,0.5382,0.803,0.7882,0.5014,-0.8264,-1,1,-1,-1,-1,-1,1,-1,0.1326,0.253,0.3976,0.6868,0.5904,0.494,1,0.6868,0.759,0.976,0.976,0.494,0.9278,0.6144,0.735,0.8796,0.5662,0.6868,0.8072,0.8072,0.4698,0.3976,0.3734,0.6626,0.735,0.3734,0.6626,0.3012,0.1808,0.229,0.6144,0.3254,'3'
-0.3364,-0.0102,0.2132,0.2018,-0.6146,-0.838,-0.813,-0.724,-0.8062,-0.8996,-0.7766,-0.8108,-0.7538,-0.781,-0.715,-0.6784,-0.6124,-0.4436,-0.3888,-0.1928,0.4254,0.4824,0.6374,0.6966,0.7902,0.7126,0.8678,1,0.7286,0.5712,0.4596,0.3454,-0.3444,-0.0432,0.2226,0.185,-0.557,-0.774,-0.8294,-0.783,-0.9358,-0.8538,-0.6922,-0.7254,-0.7674,-0.9026,-0.7696,-0.8006,-0.65,-0.4706,-0.4994,-0.351,0.1472,0.3576,0.5416,0.98,0.958,0.8716,0.9136,0.896,1,0.763,0.7386,0.5438,-0.4066,-0.139,0.139,0.0976,-0.5146,-0.7988,-0.832,-0.8278,-0.8424,-0.836,-0.7428,-0.8382,-0.7926,-0.7572,-0.8486,-0.8818,-0.72,-0.5208,-0.5456,-0.4088,0.0518,0.2448,0.3984,0.8838,0.8132,0.8858,0.9024,0.8568,1,0.7884,0.7468,0.6204,-0.375,-0.068,0.1864,0.147,-0.4232,-0.8136,-0.7894,-0.7324,-0.829,-0.818,-0.7676,-0.9188,-0.7894,-0.8048,-0.693,-0.6754,-0.5416,-0.6008,-0.6074,-0.432,-0.0088,0.2192,0.3926,0.9386,0.9144,0.9758,0.9298,0.9036,1,0.8114,0.7808,0.6184,-0.2746,0.1004,0.3774,0.3628,-0.3504,-0.6324,-0.6814,-0.6642,-0.8652,-0.9852,-0.8848,-0.8652,-0.7942,-0.7034,-0.652,-0.647,-0.6764,-0.7426,-0.6838,-0.5956,-0.1128,0.022,0.4486,0.8358,0.9264,1,0.9094,0.9094,0.978,0.848,0.6814,0.4902,-0.082,0.459,0.541,0.6558,-0.052,-0.1912,-0.7432,-0.6202,-0.7296,-0.7514,-0.7104,-0.7514,-0.4972,-0.5164,-0.7786,-0.8388,-0.8306,-0.6066,-0.6312,-0.164,0.1092,0.3114,0.7132,0.8716,0.8798,0.9126,1,0.9316,0.8416,0.5902,0.4154,0.3552,-0.2742,0.4928,0.2824,0.1298,-0.1422,-0.134,-0.4226,-0.3114,-0.4062,-0.703,-0.6824,-0.4886,-0.3732,-0.2908,-0.3814,-0.2866,-0.1176,0.0556,0.3856,0.3896,0.4804,0.5752,0.303,0.5958,0.9422,1,0.7526,0.1422,-0.031,0.0722,0.1382,0.0268,-0.0834,0.2916,0.3334,0.3334,-0.0416,-0.5,-0.2084,-0.25,-0.4584,-0.5834,-0.3334,-0.5,-0.3334,-0.25,-0.2084,-0.4166,-0.2084,-0.0416,0,0.5,0.625,0.5,0.625,0.625,0.7916,0.75,0.9166,1,0.7916,0.375,0.4166,0.5834,-0.2972,0.1352,0.2972,0.2432,-0.6216,-0.7298,-0.7298,-0.6756,-0.7838,-0.8378,-0.6756,-0.6216,-0.8918,-0.7838,-0.8378,-0.5136,-0.4594,-0.5676,-0.4594,-0.2432,0.7298,0.8378,0.4594,0.8378,0.8378,0.946,0.8918,1,0.7838,0.5136,0.1892,0.1352,-0.0256,0.3846,0.5898,0.6154,0,-0.1794,-0.5898,-0.4102,-0.3334,-0.7948,-0.4872,-0.2564,-0.077,-0.282,-0.4358,-0.8718,-0.3334,-0.282,-0.4102,-0.2308,0.1026,0.0512,0.5642,1,0.8206,0.9488,1,0.923,0.923,0.7692,0.6154,0.5384,-1,-1,-1,-1,-1,-1,-1,-0.8984,-0.8838,-0.5108,-0.2978,0.8256,0.9032,0.7724,0.7482,0.782,0.7384,0.6514,0.7336,0.8984,0.448,-0.4576,-0.9226,-0.9226,-0.8984,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.925,-0.9128,0.5414,0.4734,0.2712,0.5118,0.503,0.7542,0.8884,0.6774,0.2468,0.0184,-0.0044,-0.2746,-0.7262,-0.8936,-0.8832,-0.904,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.9668,0.5832,0.95,-0.223,-0.1572,-0.2658,-0.223,-0.1458,-0.1958,-0.3174,-0.4586,-0.472,-0.6468,-0.716,-0.6468,-0.84,-0.82,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,-0.5428,-1,-1,-1,-1,-1,-1,-0.8858,0.4572,0.1714,-0.8572,-0.9142,-0.9714,-1,-1,-1,-1,-1,-1,-1,-1,-0.641,-0.6166,-0.5864,-0.589,-0.586,-0.6058,-0.593,-0.5854,-0.5422,-0.3864,1,1,1,1,1,1,1,1,1,1,-0.5334,0.7294,0.3706,0.1456,0.1612,0.3234,0.3148,1,-0.7094,-0.5196,-0.1284,0.0056,0.028,-0.2738,-0.229,-0.162,-0.1844,0.3184,0.3744,0.3632,0.3296,0.5866,0.5196,0.5418,0.3184,0.4302,0.5196,0.6202,0.6202,0.7542,0.6536,0.7094,1,0.9442,0.81,0.676,0.5978,0.7318,0.3854,-0.1174,-0.6354,-0.5834,-0.7604,-0.5312,-0.5938,-0.5624,-0.4688,-0.5416,-0.5938,-0.302,-0.052,-0.1354,0.1354,0.25,-0.0834,-0.0104,0.0624,0.25,0.4166,0.375,0.7188,0.802,0.875,0.948,1,0.875,0.823,0.6354,0.6876,0.7292,0.4688,0.3334,0.0104,0.073,-0.1146,-0.5312,-0.5624,-0.375,-0.4792,-0.6354,-0.3334,-0.0938,0.3334,0.3124,0.4792,0.5416,0.427,0.2396,0.2916,0.552,0.448,0.5104,0.5938,1,1,0.802,0.7396,0.7188,0.5834,0.448,0.5834,0.5104,0.4062,0.25,1,-1,-1,1,-1,-1,-1,-0.6,-1,-0.2456,-0.1578,-0.1228,0.193,0.1578,0.1052,0.5088,0.5264,0.5964,0.4736,0.6666,0.614,1,0.4562,0.2106,0.2982,0.4562,0.7192,0.4562,0.0526,-0.1404,0.2456,0.0176,0.0526,-0.0702,-0.035,0.0702,0.1578,0.193,0.4562,0.4562,-0.386,'4'
-0.4798,-0.158,0.1764,0.182,-0.6378,-0.84,-0.728,-0.6654,-0.7978,-0.7904,-0.8088,-0.728,-0.6324,-0.6692,-0.66,-0.5404,-0.522,-0.4044,-0.3236,-0.0992,0.2922,0.5202,0.7408,0.7684,0.6894,0.6894,0.715,0.886,1,0.9872,0.8162,0.7078,-0.531,-0.273,0.0418,0.0068,-0.5076,-0.8124,-0.7588,-0.7036,-0.8962,-0.8124,-0.8308,-0.7572,-0.7454,-0.6868,-0.7638,-0.6398,-0.5528,-0.5428,-0.4138,-0.2882,-0.0788,0.2596,0.4372,0.7738,0.7538,0.675,0.588,0.6834,0.7872,1,0.9162,0.747,-0.5416,-0.2974,0.0116,-0.0332,-0.402,-0.726,-0.8306,-0.7674,-0.8604,-0.7658,-0.7542,-0.7924,-0.6778,-0.6262,-0.613,-0.6428,-0.5564,-0.6396,-0.47,-0.3986,-0.0564,0.1362,0.3338,0.6496,0.6976,0.7408,0.6396,0.7492,0.794,1,0.8554,0.8936,-0.519,-0.2714,0.0584,0.0104,-0.3384,-0.6666,-0.8248,-0.7646,-0.854,-0.8522,-0.8024,-0.6856,-0.658,-0.6392,-0.7474,-0.6736,-0.586,-0.6324,-0.5378,-0.4348,-0.0946,0.031,0.1272,0.5516,0.6358,0.7354,0.6238,0.6494,0.7474,1,0.9106,0.8178,-0.3998,-0.0274,0.356,0.3362,-0.2836,-0.6496,-0.8028,-0.7962,-0.8488,-0.8554,-0.8838,-0.8642,-0.7042,-0.7416,-0.678,-0.6692,-0.656,-0.6824,-0.6648,-0.5422,-0.183,0.0186,0.2574,0.7372,0.8686,0.8292,0.7788,0.7898,0.943,1,0.9606,0.7832,-0.3518,0.1658,0.4422,0.5126,-0.3492,-0.5252,-0.696,-0.6482,-0.8794,-0.897,-0.814,-0.6508,-0.6408,-0.7864,-0.5604,-0.6056,-0.8066,-0.7964,-0.6332,-0.5704,-0.2738,0.0478,0.5628,0.8216,0.8592,1,0.9674,0.8768,0.917,0.5654,0.5628,0.5778,-0.6666,0.0432,-0.2356,-0.2614,-0.6006,-0.5288,-0.4798,-0.365,-0.5834,-0.6868,-0.5804,-0.6294,-0.4942,-0.6064,-0.3678,-0.3534,-0.3966,-0.4196,-0.4426,-0.1724,0.0748,0.3592,0.273,0.5574,0.9368,1,0.5632,0.2184,-0.0862,-0.1178,-0.1034,-0.1666,-0.4166,0,0.0834,0.0834,-0.25,-0.4166,-0.3334,-0.4166,-0.25,-0.3334,-0.75,-0.4584,-0.2916,-0.375,-0.2916,-0.25,-0.5,-0.0834,0.1666,0.4584,0.7916,0.8334,0.75,0.7084,0.625,0.7916,0.9584,1,1,0.9166,0.7916,0.7084,-0.1786,0.0714,0.25,0.2858,-0.3572,-0.5,-0.25,-0.25,-0.5358,-0.3572,-0.2858,-0.3572,-0.5,-0.4642,-0.5358,-0.2858,-0.3214,0,0.0714,0.2142,0.3572,0.7858,0.7858,0.6786,0.75,0.7142,0.8572,0.8572,1,0.8214,0.7858,0.6072,-0.2554,-0.0212,0.2978,0.2554,-0.1276,-0.532,-0.532,-0.2766,-0.4042,-0.4894,-0.8724,-0.8086,-0.4256,-0.4256,-0.2978,-0.4256,-0.5106,-0.532,-0.468,-0.3192,0.1276,0.0852,0.2766,0.7022,0.6808,0.8298,0.7022,0.7234,0.9574,1,1,0.7872,-1,-1,-1,-1,-1,-1,-1,-0.8878,-0.8816,-0.813,-0.595,0.7072,0.8878,0.6698,0.6012,0.5764,0.5514,0.5078,0.4766,0.3894,0.1652,-0.514,-0.8318,-0.8692,-0.8816,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9332,-0.9302,-0.201,0.1326,0.382,0.6584,0.8474,0.8158,0.7062,0.3836,-0.0262,-0.4154,-0.463,-0.4028,-0.7776,-0.9062,-0.9158,-0.9142,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.9734,-0.1368,1,-0.0488,0.0924,0.06,0.0612,0.0574,-0.0438,-0.3226,-0.3814,-0.4164,-0.4096,-0.5884,-0.7668,-0.84,-0.9068,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,1,-1,-0.9142,-1,-1,-1,-0.9142,-0.9142,-1,-0.3428,-0.1142,-1,-0.9714,-0.8286,-1,-1,-1,-1,-1,-1,-1,-1,-0.3588,-0.3488,-0.3516,-0.3406,-0.3602,-0.3726,-0.3592,-0.3326,-0.2984,-0.2226,1,1,1,1,1,1,1,1,1,1,-0.5334,0.9764,0.1008,-0.0706,0.2676,0.3852,0.3662,1,-0.9238,-0.619,-0.3904,-0.1238,-0.0858,0.0858,0.162,0.181,0.162,0.638,0.7714,0.7904,0.638,0.8476,0.7334,0.8476,0.619,0.6952,0.6,0.9048,0.8858,0.8666,0.981,0.7524,0.8666,0.8476,1,0.7904,0.8096,0.6572,0.0476,-0.3714,-0.8592,-0.819,-0.799,-0.6784,-0.4674,-0.5678,-0.5176,-0.4674,-0.417,-0.206,0.0654,-0.005,0.1356,0.5276,0.3066,0.2462,0.3468,0.4272,0.618,0.5678,0.799,0.7788,0.9296,0.8392,0.8392,0.6282,0.7588,0.9698,1,0.9096,0.8794,0.5478,-0.2784,-0.1772,-0.6076,-0.6202,-0.5696,-0.5822,-0.2278,-0.4936,-0.2784,-0.1392,0.4178,0.367,0.2152,0.5696,0.4178,0.2784,0.3164,0.1772,0.8734,0.7974,0.7216,0.924,0.7848,0.9494,0.8608,0.9746,0.7342,1,0.886,0.6582,0.6708,0.4936,0.598,-1,-1,1,-1,-1,-1,-0.6334,-1,-0.2658,0.0126,0.2912,0.2152,0.2152,0.0886,0.2658,0.924,0.6202,0.2406,0.6202,0.4684,1,0.6202,0.4178,0.519,0.8734,0.8988,0.6708,0.3924,0.2152,0.114,0.2406,0.2912,-0.1646,0.114,0.0126,-0.038,0.0886,0.2912,0.367,0.1646,'4'
-0.3928,0.0424,0.2166,0.2124,-0.4564,-0.62,-0.7112,-0.6602,-0.6942,-0.792,-0.8026,-0.6666,-0.6114,-0.7262,-0.7304,-0.7644,-0.7962,-0.6986,-0.7388,-0.6582,-0.3864,-0.2676,-0.1804,0.4586,0.8174,0.8832,0.6964,0.605,0.5988,0.5732,1,0.9916,-0.1976,0.2056,0.2848,0.3334,-0.4366,-0.6008,-0.7608,-0.696,-0.7832,-0.7224,-0.7426,-0.7122,-0.6414,-0.692,-0.7264,-0.6514,-0.5624,-0.6068,-0.4934,-0.467,-0.4164,-0.0274,0.1936,0.5502,0.85,1,0.7548,0.546,0.69,0.769,0.842,0.9108,-0.1522,0.2202,0.472,0.4634,-0.4764,-0.7876,-0.6934,-0.6342,-0.8642,-0.8598,-0.8314,-0.597,-0.5422,-0.7108,-0.6758,-0.7984,-0.5882,-0.6386,-0.6496,-0.5422,-0.3232,-0.1698,0.3582,0.6144,0.8314,0.9168,0.9212,0.689,0.7634,0.7984,0.9694,1,-0.2278,0.1196,0.332,0.3302,-0.5638,-0.8302,-0.7954,-0.7414,-0.8784,-0.9286,-0.7626,-0.6138,-0.5792,-0.7452,-0.7182,-0.7316,-0.722,-0.7356,-0.6756,-0.5096,-0.3244,-0.1024,0.2858,0.5,0.8012,0.7142,0.7664,0.7182,0.7394,0.8244,1,0.888,-0.1724,0.2744,0.451,0.5106,-0.351,-0.6382,-0.6702,-0.6554,-0.7766,-0.8852,-0.966,-0.8298,-0.7724,-0.8852,-0.7894,-0.7618,-0.732,-0.734,-0.6872,-0.5766,-0.2468,0.0192,0.2574,0.532,0.9574,0.9808,0.6914,0.6978,0.7702,0.9702,0.9532,1,-0.0628,0.6876,0.5474,0.572,0.1784,-0.636,-0.599,-0.6556,-0.7344,-0.8548,-0.8254,-0.6162,-0.6876,-0.7908,-0.7196,-0.7244,-0.7442,-0.7048,-0.7688,-0.5154,-0.2398,0.1686,0.3678,0.695,0.8524,1,0.9508,0.8966,0.8622,0.8228,0.6286,0.6114,-0.2206,1,0.8012,0.0816,-0.3122,-0.3956,-0.3638,-0.2246,-0.7814,-0.7852,-0.5388,-0.2922,-0.2644,-0.2524,-0.2804,-0.3042,-0.3162,-0.2326,-0.1172,0.2246,0.3798,0.3678,0.1292,0.5706,0.833,0.8688,0.5746,0.1928,0.0178,-0.181,-0.2286,0.0854,-0.12,0.2,0.48,0.28,0,-0.2,-0.28,-0.32,-0.16,-0.32,-0.12,-0.12,-0.12,-0.12,-0.24,-0.24,-0.28,-0.44,0,-0.12,0.12,0.2,0.24,0.72,0.84,0.88,0.84,0.8,0.8,0.68,1,0.88,-0.4894,-0.0212,0.149,-0.0212,-0.2766,-0.3192,-0.5744,-0.4894,-0.4894,-0.532,-0.7446,-0.617,-0.617,-0.532,-0.4468,-0.9148,-0.6596,-0.617,-0.6596,-0.7022,-0.5744,-0.4894,-0.149,0.4894,0.617,0.4894,0.4468,0.4042,0.532,0.532,0.7872,1,0.0574,0.3564,0.5862,0.5862,-0.1494,-0.4022,-0.2184,-0.2414,-0.7012,-0.5632,-0.2874,-0.3104,-0.2874,-0.3334,-0.3104,-0.2644,-0.1724,-0.1264,-0.3334,-0.3564,-0.1494,0.1494,0.4482,0.5172,0.954,0.862,0.839,0.816,0.7472,0.885,0.977,1,-1,-1,-1,-1,-1,-1,-1,-0.926,-0.9074,-0.4954,-0.1666,0.088,0.375,0.6296,0.8518,0.875,0.8704,0.9306,0.8982,0.7916,0.5602,-0.4538,-0.9398,-0.9166,-0.8982,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8958,-0.8684,0.0644,0.0782,0.4568,0.4924,0.668,0.6104,0.8272,0.8272,0.8326,0.6214,0.4294,0.2538,-0.5528,-0.8492,-0.8464,-0.8382,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.9268,-0.5534,-0.4334,-0.0176,-0.1788,-0.3288,-0.3814,-0.2688,-0.3564,-0.4038,-0.4702,-0.6342,-0.7742,-0.7248,-0.82,-0.72,-0.6968,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,-0.4,-0.2858,-0.8286,-1,-0.9142,-1,-1,-1,-1,-0.7714,0.4,-0.6,-0.7142,-0.9428,-0.4858,-1,-1,-1,-1,-1,-1,-1,-1,-0.2212,-0.2344,-0.2314,-0.2552,-0.3042,-0.3192,-0.3676,-0.4078,-0.4788,-0.4182,0.9824,1,1,1,1,1,1,1,1,0.9892,-0.56,0.9882,-0.0014,0.1468,0.2702,0.3992,0.5858,-0.4666,-0.1556,0.0074,-0.126,-0.3038,-0.4814,-0.7038,-0.363,-0.5852,-0.5852,-0.5112,-0.3038,0.2148,0.8074,0.7778,0.4074,0.7334,0.9556,1,0.8074,0.8962,0.8814,0.2296,0.0222,0.0074,-0.0222,0.2,0.437,0.3778,0.1556,0.3186,0.3778,0.126,0.077,0.3076,-0.123,0.0308,-0.1076,0.0154,0.1384,-0.1538,-0.123,-0.077,-0.123,0.2616,0.9538,0.7692,0.3846,0.9538,1,0.8308,0.6,0.723,0.7076,0.123,0,0.0616,0.077,0.1384,0.3076,0.3692,0.1384,0.277,0.5384,0.3076,0.2728,0.5524,-0.091,-0.1888,-0.021,-0.1328,0.091,-0.3706,-0.049,0.035,-0.021,0.3006,0.8742,0.916,0.5384,0.7902,1,0.916,0.7762,0.7202,0.6224,0.1608,0.091,0.1468,0.2028,0.3286,0.3986,0.4686,0.4826,0.5244,0.3286,0.1748,1,-1,-1,1,-0.8,-1,-1,-0.7,-1,-0.2076,-0.0754,-0.5472,0.2264,0.132,0.1886,0.3018,0.5472,0.151,-0.3208,0.434,0.1132,0.3584,0.0754,0.434,0.3774,0.4716,0.6038,0.585,0.415,0.3962,0.6982,0.8868,0.8868,0.8868,0.6792,0.6038,0.2264,0.7924,1,0.9246,0.5284,'5'
-0.5494,-0.094,0.2868,0.2964,-0.5326,-0.7204,-0.7518,-0.7398,-0.8482,-0.8386,-0.8988,-0.7734,-0.6338,-0.682,-0.6168,-0.629,-0.6626,-0.6,-0.6458,-0.5422,-0.453,-0.1566,0.1638,0.7084,0.8868,0.7542,0.612,0.576,0.7374,0.9952,1,0.9446,-0.5662,-0.2712,0.1146,0.1254,-0.6782,-0.8168,-0.7974,-0.7688,-0.7546,-0.7226,-0.8258,-0.7706,-0.76,-0.808,-0.6658,-0.6,-0.6018,-0.6498,-0.6,-0.4826,-0.3582,-0.0774,0.3192,0.5306,0.8968,0.7706,0.4684,0.4738,0.7494,0.888,1,0.9644,-0.5486,-0.2454,0.0954,0.1098,-0.5968,-0.7556,-0.8358,-0.7842,-0.8198,-0.8306,-0.8198,-0.7734,-0.752,-0.7644,-0.7288,-0.7466,-0.629,-0.6628,-0.604,-0.4058,-0.3096,-0.0152,0.3916,0.5326,0.9322,0.8306,0.4594,0.6824,0.7912,0.9376,1,0.9678,-0.5326,-0.2346,0.0758,0.0776,-0.5326,-0.7018,-0.7384,-0.8606,-0.7698,-0.742,-0.7558,-0.7524,-0.714,-0.667,-0.674,-0.7018,-0.5624,-0.5728,-0.681,-0.2764,-0.252,0.027,0.4786,0.5588,0.9616,0.8658,0.5972,0.7612,0.8308,1,0.9912,0.9948,-0.4244,0.0102,0.331,0.3812,-0.2628,-0.4426,-0.7838,-0.7246,-0.8134,-0.9044,-0.7566,-0.827,-0.7246,-0.6518,-0.6406,-0.6222,-0.7748,-0.6928,-0.7498,-0.4358,-0.3266,-0.0626,0.3402,0.702,1,0.9726,0.6928,0.7792,0.8452,0.9818,0.925,0.8522,-0.417,0.2712,0.1778,0.376,-0.2682,-0.3412,-0.6938,-0.5744,-0.6852,-0.79,-0.7084,-0.653,-0.5422,-0.5276,-0.554,-0.519,-0.6326,-0.7346,-0.5482,-0.1282,0.1254,0.551,0.583,0.7872,0.9184,1,0.7434,0.8104,0.618,0.4928,0.3674,0.2158,-0.5444,0.4582,0.1544,-0.4734,-0.6608,-0.757,-0.433,-0.4076,-0.3722,-0.2506,-0.2962,-0.038,0.0836,0.1392,0.1594,0.2406,0.124,0.0582,0.2406,0.5038,0.4632,0.3468,0.4482,0.6506,1,0.9494,0.7974,-0.043,-0.0886,0.0278,-0.0178,0.4532,-0.2682,0.6098,0.561,0.317,0.2196,-0.2682,0.0732,0.1708,0.0732,-0.1708,-0.1708,-0.3658,-0.2682,-0.5122,-0.2682,-0.2682,-0.0244,-0.0732,-0.122,0.0244,0.0732,0.0244,0.1708,0.561,0.7074,0.7074,0.6098,0.756,0.756,0.9512,0.9512,1,-0.0714,0.2858,0.5358,0.5358,0.0714,0.0714,0.1786,0.1786,-0.2858,-0.0714,-0.0358,-0.5714,0,-0.0358,0.0714,0.0714,0.0358,0.0714,0,0.1786,0.3214,0.5,0.5,0.8214,0.9286,1,0.6786,0.7142,0.8572,0.8572,0.8572,0.6786,-0.054,0.3514,0.6486,0.7028,0.081,-0.027,-0.6216,-0.2972,-0.5406,-0.7028,-0.3514,-0.5136,-0.6216,-0.4324,-0.4054,-0.5136,-0.6486,-0.6486,-0.6756,-0.4864,-0.1082,0.1082,0.5136,0.946,1,0.946,0.946,1,0.8918,0.919,0.973,0.8378,-1,-1,-1,-1,-1,-1,-1,-0.8518,-0.8788,-0.8452,-0.6094,0.1986,0.7104,0.798,0.825,0.8316,0.8922,0.8114,0.7038,0.394,-0.3064,-0.724,-0.8922,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9326,-0.942,-0.9192,-0.8814,-0.4612,-0.2472,0.1462,0.2512,0.4128,0.7952,0.1232,-0.4154,-0.534,-0.7346,-0.903,-0.9462,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.9334,-0.8468,-0.8,-0.2254,-0.0668,0.0426,0.008,-0.064,0.08,-0.0308,-0.408,-0.3988,-0.6514,-0.7576,-0.98,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5428,-0.9142,-0.9142,0.5428,1,-0.6572,-0.8858,-0.9428,-0.7142,-0.8858,-0.7428,-0.6572,-0.5714,1,-0.8858,-0.9714,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.1712,-0.1832,-0.2266,-0.2468,-0.263,-0.2582,-0.2838,-0.2776,-0.3152,-0.234,0.918,0.929,0.9304,0.964,1,1,1,1,1,0.9778,-0.5734,0.8588,-0.8856,-0.7118,-0.499,-0.503,-0.3158,-0.3834,-0.1096,0,0.3014,0.8494,0.7672,0.5754,0.7672,0.6438,0.411,0.6028,0.685,0.3698,0.452,0.7534,0.6712,1,0.5754,0.411,0.4246,0.3014,0.5754,0.6576,0.6576,0.411,0.3562,0.1918,0.2602,0.5068,0.0958,0.2602,0.3424,-0.2602,-0.1568,-0.1892,0.373,0.6864,0.3946,0.4918,0.4162,0.654,-0.0378,0.3838,0.4378,0.4486,0.8378,0.8918,0.6108,0.7838,0.881,0.5676,-0.0162,0.7622,0.7514,0.4378,0.2432,0.2648,0.1568,0.6432,1,0.654,0.427,0.9676,0.8054,0.4594,0.0336,0.4118,0.395,0.4034,0.4454,0.4034,0.6302,0.7142,0.4958,0.4454,0.3782,0.7142,0.9832,0.7142,0.7732,1,0.9832,0.6218,0.3698,0.7142,0.6386,0.4958,0.4706,0.0924,0.2436,0.6218,0.916,0.9496,0.8908,0.8824,0.9832,0.605,-0.9892,1,-1,-1,-1,-1,-1,-1,-1,0.2258,0.3226,0.2904,0.5484,0.3548,0.5484,0.5162,0.6452,0.9354,0.7096,1,0.7742,0.7742,0.8064,0.258,0.5806,0.2258,0.387,0.5484,0.4194,0.5806,0.4194,0.2258,0.613,0.613,0.613,0.3226,0.613,0.2904,0.5484,0.5162,0.3548,'5'
-0.3646,0.0904,0.2374,0.3044,0.6188,0.7592,0.9264,0.6522,0.6054,0.2442,0.224,0.3312,0.378,0.4448,0.7258,0.8596,0.9866,0.6388,0.5384,0.3444,0.3178,0.4114,0.4716,0.4382,0.525,1,0.98,0.7792,0.7124,0.6856,0.5586,0.485,-0.3914,-0.0086,0.2348,0.2986,0.4666,0.5884,0.7566,0.6406,0.6348,0.426,0.2986,0.4144,0.5536,0.5014,0.7392,0.9478,1,0.5536,0.3972,0.4376,0.455,0.4782,0.3682,0.3102,0.3624,0.5246,0.5304,0.4318,0.3914,0.3508,0.2928,0.2928,-0.356,-0.0536,0.2342,0.2342,0.2342,0.6244,0.6586,0.717,0.5464,0.4048,0.361,0.2292,0.3414,0.6,0.8732,1,0.7268,0.5854,0.4536,0.4098,0.4196,0.317,0.5366,0.6098,0.7756,0.761,0.8196,0.561,0.439,0.4048,0.3658,0.3464,-0.3838,-0.1002,0.203,0.1736,0.154,0.599,0.5746,0.6822,0.423,0.3986,0.3888,0.3644,0.4376,0.648,0.9854,0.9706,0.555,0.3838,0.374,0.3448,0.4034,0.4328,0.5208,0.7898,0.8534,1,0.8436,0.5746,0.6528,0.5158,0.6284,0.5256,-0.3006,0,0.3316,0.316,0.3782,0.798,0.7668,0.7306,0.5804,0.5906,0.4974,0.5078,0.6684,0.9068,0.715,0.627,0.6218,0.4612,0.2228,0.3626,0.2488,0.3368,0.57,0.8912,1,0.798,0.7306,0.5906,0.316,0.3056,0.4818,0.3264,-0.2778,0.1666,0.4568,0.5124,0.7038,0.858,0.9814,0.5802,0.5124,0.568,0.4814,0.568,0.7778,0.7962,0.5802,0.1914,0.253,0.3024,0.1604,0.2962,0.3148,0.3518,0.6728,0.8334,1,0.8024,0.7038,0.2962,0.3272,0.3272,0.3086,0.3642,-0.125,0.5348,0.3334,0.0624,0.7152,0.7362,0.618,0.5348,0.257,0.0556,0.0764,0.0972,0.4376,0.3264,0.2708,0.0694,-0.0138,-0.1388,-0.0348,0.0764,0.0556,0.2638,0.2916,0.8888,1,0.6736,0.257,-0.1042,0.007,0.007,0.3124,0.1736,-0.2244,0.102,0.1836,0.2244,0.5102,0.6326,0.7142,0.6326,0.3878,-0.0612,-0.0204,0.1428,0.0612,0.1836,0.3878,0.347,0.6326,0.6326,0.4286,0.0612,0.4694,0.4694,0.4694,0.7142,0.8368,1,0.9592,0.7142,0.6326,0.6734,0.5918,0.5102,-0.5,0,0.1666,0.3334,0.5,0.8334,0.9444,0.6112,0.6666,0.3334,0.2778,0.3888,0.3888,0.5556,0.7222,1,1,0.5,0.4444,0.2222,0.1112,0.3334,0.3334,0.3888,0.4444,0.9444,0.8334,0.7222,0.6666,0.6112,0.6112,0.4444,-0.4736,-0.1052,0.2106,0.2106,0.2632,0.7368,0.6842,0.6578,0.5526,0.5,0.421,0.4474,0.5526,0.8684,0.6052,0.5,0.5264,0.3158,0.1316,0.2894,0.1052,0.2368,0.421,0.8948,1,0.7368,0.579,0.5526,0.2106,0.2368,0.3948,0.2368,-1,-1,-1,-1,-1,-1,-0.6008,-0.7966,-0.8694,-0.8502,-0.6968,0.309,0.5854,0.643,0.643,0.7198,0.7736,0.808,0.8618,0.95,0.7504,0.1286,-0.6506,-0.8656,-0.8886,-0.8772,-0.8964,-0.9078,-0.8848,-0.9194,-0.9118,-0.9156,-0.8618,-1,-1,-1,-1,-1,-1,-0.6848,-0.5558,-0.88,-0.5576,-0.8532,-0.0962,0.0792,0.1312,0.3892,0.5682,0.914,0.5872,0.305,0.0774,-0.0838,-0.57,-0.8584,-0.855,-0.846,-0.8056,-0.8154,-0.82,-0.836,-0.8244,-0.846,-0.88,-0.7976,-1,-1,-1,-1,-1,-1,-0.6408,-0.3134,0.05,-0.3834,-0.61,-0.82,-0.728,-0.716,-0.708,-0.676,-0.6268,-0.5868,-0.7834,-0.85,-0.7868,-0.8868,-0.6768,-0.17,0.0266,-0.03,-0.0034,0.0866,0.04,0.1332,0.1232,0.0232,-0.0868,-1,-1,-1,-1,-1,-1,0.6,0.1428,-0.1714,-0.6,1,1,0.7428,-0.9428,-0.8572,-0.8858,-0.9142,-0.6286,-0.4572,-0.4286,1,1,0.2572,-0.0572,-0.6858,-0.9714,-0.8858,-0.8286,-1,-0.7714,-0.7142,-0.8572,-0.7714,1,1,1,1,1,1,1,1,1,1,0.0406,0.0406,-0.0436,-0.118,-0.2996,-0.3832,-0.4452,-0.3982,-0.1982,-0.1166,-1,-0.4,-0.871,-0.3676,-0.0174,0.0398,0.1268,0.2334,-0.5772,-0.309,-0.317,-0.0488,-0.4066,-0.4552,-0.3658,-0.1382,-0.2196,0.3902,0.3902,0.1056,0.2358,0.6178,0.5528,0.504,0.3902,0.4796,0.2196,0.1788,0.3252,-0.057,-0.2926,-0.0244,-0.1138,0.0406,0.309,0.5204,0.5366,1,0.7724,0.1952,-0.7,-0.65,-0.45,-0.1358,-0.3,-0.2214,-0.2214,0.0858,0.2928,0.3714,0.4858,0.2642,0.5,0.7928,0.7286,0.7214,0.5072,0.4286,0.2428,0.3358,0.4,-0.0858,-0.1428,0.0142,-0.1428,0.0572,0.4142,0.5786,0.7,1,0.8214,0.2142,-0.0522,0.1244,-0.0282,0.1004,0.1326,-0.2208,-0.1968,0.02,0.245,0.3092,0.3414,0.3574,0.6144,0.7188,0.9518,0.759,0.5742,0.6224,0.6626,0.6706,0.7108,-0.261,-0.1084,0.1406,0.237,0.3816,0.5262,0.6386,0.9116,1,1,0.0522,-0.296,-1,-1,1,-1,-1,-0.8,-0.2334,-1,-0.3014,-0.3424,-0.137,0.137,0.137,0.3288,0.3424,0.2876,0.315,0.315,0.315,0.2192,0.411,0.4384,0.548,0.5342,0.5754,0.3972,0.5754,0.685,0.5206,0.7672,0.7672,0.9178,1,0.8082,0.822,0.7672,0.7534,0.6986,0.4932,-0.0548,'6'
-0.6926,-0.3318,-0.1414,-0.1512,0.0098,0.2926,0.244,0.3074,-0.0098,-0.0536,-0.0634,-0.3464,0.0342,0,0.0682,0.117,0.4878,0.517,0.5952,0.5952,0.5658,0.4342,0.5902,0.6488,0.8146,0.8634,1,0.9512,0.8,0.722,0.7658,0.722,-0.5126,-0.1408,0.2362,0.2614,0.2562,0.618,0.6934,0.7236,0.603,0.2262,0.2764,0.2362,-0.0402,0.392,0.412,0.4774,0.9246,1,0.7336,0.6382,0.3768,0.4674,0.4422,0.4874,0.593,0.6634,0.9146,0.9598,0.9096,0.7236,0.7186,0.6232,-0.4688,-0.0786,0.2738,0.2738,0.328,0.6748,0.691,1,0.8212,0.3116,0.393,0.2574,0.2032,0.523,0.6422,0.8536,0.9838,0.9838,0.5556,0.29,0.2574,0.2738,0.4038,0.5338,0.4634,0.8158,0.9838,0.756,0.7616,0.8428,0.729,0.6206,-0.4706,-0.1358,0.1448,0.1358,0.2172,0.552,0.7104,0.9412,0.715,0.2624,0.4434,0.3122,0.353,0.647,0.9322,1,0.5928,0.466,0.3258,0.0226,0.0272,0.104,0.2942,0.4162,0.6018,0.8462,0.8236,0.647,0.4524,0.4752,0.0724,0.2714,-0.4286,-0.0492,0.2068,0.2068,0.2956,0.67,0.6896,1,0.7586,0.4286,0.4088,0.4088,0.527,0.8522,0.7636,0.8226,0.2068,0.0886,0.005,-0.2168,-0.3202,-0.0986,0.197,0.2562,0.5222,0.6158,0.6798,0.4334,0.2858,0.2316,-0.0344,-0.0444,-0.3374,0.241,0.3856,0.5,0.8072,0.7228,1,0.9096,0.9096,0.6144,0.506,0.6868,0.9156,0.8674,0.7952,0.4036,0.3012,0.0722,-0.0662,0.0844,0.006,0.1988,0.3614,0.4278,0.5904,0.5844,0.3374,0.3314,0.4036,0.512,0.4698,0.5362,-0.1642,0.781,0.403,0.413,0.8806,0.7014,0.4826,0.1144,0.005,0.1542,0.015,0.4428,0.4726,0.2538,0.3334,-0.1442,-0.2636,-0.3034,-0.6816,-0.2636,-0.1044,0.0746,0.612,1,0.8606,0.5522,0.0348,-0.1044,0.0248,-0.2538,-0.0746,0.2736,-0.5862,0.3794,0.2414,0.1724,0.0344,0.1034,0.3104,0.4482,0.1724,0.0344,-0.1034,-0.2414,0.1034,-0.2414,0.0344,-0.3104,0.5172,0.3794,0.6552,0.5862,0.5862,0.5172,0.7932,0.5172,1,0.5862,0.7932,0.4482,0.5172,0.862,0.862,0.7932,-0.6842,-0.4736,-0.3158,-0.2632,0.3158,0.421,0.1052,0.1578,0,-0.2632,0,-0.6842,0.0526,0.2106,-0.2106,0.3158,0.4736,0.8948,0.9474,0.7368,0.8422,0.7894,0.5264,0.8422,0.8948,0.7368,1,0.8948,0.7894,0.4736,0.4736,0.7368,-0.4936,-0.1392,0.114,0.114,0.2406,0.519,0.7722,0.9494,0.7468,0.3164,0.4178,0.4178,0.4684,0.6708,0.9746,1,0.5696,0.519,0.1898,0.1392,0.0886,-0.2912,0.2406,0.367,0.5444,0.8228,0.7468,0.6202,0.4178,0.4178,-0.114,0.114,-1,-1,-1,-1,-1,-1,-0.8676,-0.853,-0.8898,-0.853,-0.7868,0.3898,0.7352,0.853,0.9412,0.9486,0.8824,0.897,0.875,0.897,0.6398,-0.0882,-0.7206,-0.6102,-0.5514,-0.6986,-0.6692,-0.6912,-0.7574,-0.8088,-0.7206,-0.7648,-0.8088,-1,-1,-1,-1,-1,-1,-0.9424,-0.9394,-0.9376,-0.9346,-0.9226,-0.0506,0.7104,-0.1072,-0.136,-0.1052,-0.004,-0.0932,-0.238,-0.374,-0.5972,-0.8264,-0.8928,-0.8234,-0.8234,-0.8374,-0.8066,-0.7966,-0.7986,-0.7798,-0.7838,-0.7986,-0.8374,-1,-1,-1,-1,-1,-1,-0.9268,-0.7068,-0.71,-0.51,-0.5,-0.2934,-0.0868,-0.3568,-0.4744,-0.4316,-0.4344,-0.5372,-0.5886,-0.6486,-0.603,-0.723,-0.16,-0.1768,-0.0368,-0.4,0.4132,0.4,0.6466,0.3966,0.6932,0.5166,0.3266,-1,-1,-1,-1,-1,-1,-0.2286,-0.7142,-0.8858,-0.9142,1,1,1,0.6572,-0.7428,-0.8858,-0.6,-0.7714,-0.8,-0.6286,0.8286,0.3714,0.5428,-0.3428,-0.9714,-0.7142,-0.7142,-1,-1,-0.9142,-0.8572,-0.9142,-0.3142,1,1,1,1,1,1,1,1,1,1,0.6588,0.6302,0.6276,0.608,0.5814,0.5588,0.4456,0.3524,0.1588,-0.1268,-0.5734,-0.247,-0.9246,-0.5902,0.0754,0.5664,0.9196,1,-0.0606,-0.2804,0.3258,0.303,0.3636,0.2728,0.4016,0.1516,0.1894,0.1818,0.3182,0.4318,0.7196,1,0.7728,0.8788,0.6516,0.659,0.4016,0.1516,0.5,0.4394,0.2272,0.6516,0.3258,0.2954,0.3182,0.3484,0.3712,0.6364,0.5682,-0.0076,-0.154,-0.3574,-0.2,0.154,0.1476,0.141,0.3312,0.2132,0.2722,0.4754,0.4886,0.482,0.5476,0.9476,1,0.8426,0.9344,0.882,0.882,0.423,0.6066,0.5934,0.1672,0.318,0.095,0.1214,0.0622,0.305,0.5934,0.6918,0.7704,0.2394,-0.663,-0.633,-0.4082,-0.4158,-0.2884,-0.4982,-0.0636,0.146,-0.0562,0.236,0.3184,0.266,0.4382,0.7678,0.678,0.4606,0.5206,0.9476,0.7978,0.2584,0.7828,0.7154,-0.2584,-0.236,-0.0712,-0.1986,-0.206,0.2958,0.7678,1,0.8352,0.191,-0.9484,1,-1,-1,-1,-1,-1,-1,-1,-0.6826,-0.5556,-0.4286,0.0476,-0.0318,0.2222,0.1588,0.3334,0.4604,-0.0476,0.1746,0.381,0.5238,0.5556,0.5874,0.238,0.6826,0.4286,0.4444,0.1904,0.6666,0.8572,0.8572,0.746,0.8888,0.746,0.6984,0.8254,1,0.9842,0.5238,0.1746,'6'
-0.2532,0.167,0.347,0.3734,-0.257,-0.726,-0.8086,-0.636,-0.7748,-0.8536,-0.8386,-0.7748,-0.7712,-0.6586,-0.576,-0.6172,-0.4934,-0.212,0.0056,0.2082,0.4222,0.561,0.4746,0.4934,0.5872,0.756,0.9438,1,0.9812,0.955,0.7036,0.726,-0.2876,0.0302,0.582,0.4816,-0.0268,-0.5752,-0.6856,-0.6688,-0.7892,-0.6956,-0.7024,-0.7458,-0.5786,-0.6054,-0.6454,-0.4348,-0.4682,-0.4314,-0.0334,0.2342,0.5016,0.7056,0.6956,0.6288,0.6622,0.7592,0.8428,1,0.913,0.7692,0.689,0.6688,-0.4194,-0.1612,0.3072,0.2146,-0.0884,-0.5344,-0.6998,-0.7138,-0.7224,-0.8346,-0.8148,-0.6774,-0.6044,-0.6466,-0.7166,-0.5036,-0.4586,-0.4026,-0.035,0.2426,0.4754,0.77,0.8316,0.8204,0.8092,0.8514,0.913,1,0.8794,0.784,0.7138,0.5344,-0.4492,-0.2166,0.1524,0.0508,-0.147,-0.5134,-0.6712,-0.7006,-0.5882,-0.8396,-0.7808,-0.722,-0.6578,-0.623,-0.591,-0.6684,-0.3048,-0.3396,-0.2352,0.2032,0.4812,0.6418,0.9438,0.8128,0.8128,0.9278,1,0.9438,0.877,0.8236,0.7058,0.714,-0.4148,-0.1372,0.255,0.1674,-0.08,-0.5204,-0.6772,-0.7948,-0.7134,-0.8522,-0.9034,-0.9518,-0.8884,-0.6682,-0.5716,-0.5656,-0.3756,-0.3002,-0.2488,0.2006,0.3394,0.6742,1,0.988,0.7526,0.8914,0.7978,0.632,0.5476,0.469,0.4328,0.463,-0.1128,0.421,0.5338,0.6052,0.109,-0.0714,-0.7106,-0.673,-0.6616,-0.624,-0.6428,-0.5752,-0.6616,-0.624,-0.5864,-0.4436,-0.2482,-0.1954,-0.079,0.406,0.6204,0.891,0.9474,0.97,1,0.9812,0.6692,0.4548,0.297,0.2594,0.233,0.406,-0.1508,1,0.8436,0.3072,-0.3184,-0.1676,-0.5866,-0.4748,-0.6312,-0.81,-0.7988,-0.4804,-0.2626,-0.296,-0.1118,-0.1508,-0.3072,-0.2794,0.2178,0.3352,0.162,0.285,0.324,0.5698,0.6704,0.5364,0.2122,-0.486,-0.4636,-0.1564,-0.134,0.2514,-0.098,0.255,0.0196,0.1764,-0.098,-0.4118,-0.5294,-0.2156,-0.255,-0.6078,-0.6078,-0.3726,-0.2942,-0.0196,0.0588,0.0196,-0.2156,-0.0588,0.1372,0.2942,0.3726,0.1764,0.3726,0.6862,0.6078,0.6862,0.9608,1,0.804,0.7648,0.6862,0.6862,-0.2858,0,0.0476,0.0952,-0.3334,-0.5714,-0.762,-0.3334,-0.4286,-0.619,-0.5714,-0.4762,-0.6666,-0.619,-0.619,-0.5238,-0.2858,-0.238,0.0952,-0.0476,0.381,0.7142,0.6666,0.1428,0.5714,0.762,1,0.8096,0.8572,0.8096,0.6666,0.238,-0.2706,0.0118,0.3412,0.247,0.0588,-0.3412,-0.4588,-0.6236,-0.553,-0.7176,-0.647,-0.9294,-0.8352,-0.4824,-0.4352,-0.3882,-0.3882,-0.2,-0.0824,0.1294,0.4588,0.7176,0.8824,1,0.7176,0.7412,0.8352,0.6236,0.3176,0.4352,0.2706,0.2,-1,-1,-1,-0.9044,-0.9204,-0.769,-0.9004,-0.8884,-0.8804,-0.9244,-0.8208,0.3188,0.7052,0.9044,0.8884,0.6772,0.4382,0.3546,0.2988,0.3746,0.227,-0.3706,-0.8406,-0.8884,-0.9244,-0.9004,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9544,-0.9554,-0.5132,0.4402,-0.0066,0.5388,-0.2904,-0.4374,-0.3908,-0.3548,-0.2058,0.0864,0.6062,0.5578,0.205,-0.3472,-0.5238,-0.5654,-0.8216,-0.9402,-0.8976,-0.7694,-0.9526,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.86,-0.9268,-0.2834,1,0.88,0.7732,0.6432,0.5666,-0.372,-0.57,-0.522,-0.3656,-0.3256,-0.2746,-0.2238,-0.36,-0.511,-0.6182,-0.8292,-0.84,-0.88,-0.7068,-0.82,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,-0.2,-0.1714,-0.1714,0.2572,0.5142,-0.4286,-0.7714,-0.8572,-0.7714,-0.9714,-0.8572,0,-0.5142,1,0.9714,-0.8572,-0.3428,-0.2858,-0.2,-1,-1,-1,-1,-1,-1,-1,-0.5022,-0.5264,-0.5196,-0.5124,-0.4676,-0.4772,-0.4392,-0.381,-0.2974,-0.2804,0.9494,0.9308,0.9634,0.9546,0.9702,0.9766,1,1,1,0.8966,-0.48,0.2706,-0.3984,-0.519,-0.3672,-0.3852,-0.3378,1,-0.921,-0.7708,-0.7194,-0.743,-0.5416,-0.5376,-0.5138,-0.4822,-0.3242,-0.245,0.0712,0.1106,0.1028,0.423,0.5968,0.672,0.7312,0.7786,0.8458,1,0.8418,0.8024,0.8894,0.834,0.7944,0.7944,0.8418,0.8932,0.8972,0.8814,0.5928,0.3478,-0.9054,-0.7958,-0.8072,-0.8638,-0.7656,-0.671,-0.6522,-0.3422,-0.1342,0.1228,0.2362,0.4216,0.569,0.845,0.8186,0.8526,1,0.8714,0.8828,0.8904,0.7278,0.9622,0.8488,0.898,0.6144,0.501,0.7316,0.724,0.5086,0.5954,0.2438,0.0888,-0.6972,-0.618,-0.6216,-0.6288,-0.5028,-0.5388,-0.3586,-0.2684,-0.0918,0.1352,0.3874,0.5352,0.737,0.9784,1,0.8666,0.964,0.6972,0.7946,0.7118,0.8018,0.9064,0.7694,0.8846,0.7046,0.7622,0.6432,0.618,0.463,0.4738,0.301,-0.1244,0.7818,-1,-1,1,-1,-1,-1,0.1334,-1,-0.396,-0.208,-0.302,-0.3558,-0.208,-0.3422,-0.0336,0.0604,-0.0336,0.0872,0.0738,0.114,0.047,0.0738,0.141,0.2752,0.7182,0.9464,1,0.9464,0.7852,0.7182,0.7046,0.5302,0.2886,0.2618,0.1276,-0.0738,0.2618,0.3288,0.1276,-0.1812,'7'
-0.403,-0.1284,0.2986,0.2358,-0.9134,-0.7552,-0.7642,-0.7134,-0.7014,-0.794,-0.8268,-0.7552,-0.6986,-0.6806,-0.4508,-0.4746,-0.388,-0.003,0.2268,0.5014,0.8298,0.7164,0.3014,0.591,0.6626,0.7582,0.985,1,0.9522,0.9642,0.985,0.9014,-0.3988,-0.085,0.4194,0.4106,-0.61,-0.6158,-0.654,-0.8388,-0.5924,-0.6042,-0.8944,-0.5982,-0.5778,-0.6628,-0.437,-0.4222,-0.393,-0.0352,0.003,0.3402,0.915,0.9912,0.5836,0.8504,0.9296,0.6568,0.9178,1,0.569,0.6452,0.739,0.5044,-0.3844,-0.093,0.5166,0.4714,-0.5406,-0.6126,-0.6936,-0.7118,-0.5826,-0.6726,-0.8168,-0.6456,-0.6006,-0.5436,-0.4504,-0.4984,-0.3934,-0.1712,-0.036,0.2582,0.6906,0.7898,0.8168,0.919,0.8138,0.6486,1,0.8588,0.4564,0.6516,0.5226,0.4204,-0.39,-0.0588,0.514,0.452,-0.288,-0.418,-0.5386,-0.743,-0.5046,-0.6532,-0.8482,-0.6006,-0.6812,-0.709,-0.6284,-0.5108,-0.5078,-0.3344,-0.099,0.1826,0.4334,0.9318,0.9412,1,0.8452,0.8576,0.9474,0.6068,0.5448,0.5232,0.4922,0.421,-0.4092,-0.1064,0.3944,0.3734,-0.2114,-0.4182,-0.5862,-0.5982,-0.811,-0.7992,-0.6732,-0.7452,-0.6042,-0.5742,-0.5832,-0.5322,-0.4062,-0.3764,-0.2204,0.0764,0.3734,0.7182,0.934,1,0.916,0.814,0.85,0.6882,0.5172,0.5322,0.5262,0.4962,-0.202,0.343,0.4584,0.5738,-0.0128,-0.3462,-0.6026,-0.6218,-0.5642,-0.8366,-0.8142,-0.5802,-0.5674,-0.6058,-0.4648,-0.6314,-0.5866,-0.609,-0.25,-0.1538,0.2052,0.5994,0.7756,1,0.9968,0.8398,0.7308,0.5866,0.3334,0.3622,0.3558,0.25,-0.2226,1,0.7868,0.812,0.3166,-0.3856,-0.5674,-0.467,-0.3606,-0.4858,-0.5548,-0.3668,-0.373,-0.3542,-0.0972,-0.2664,-0.1912,-0.1474,-0.6364,-0.091,0.185,0.3542,0.2414,0.5172,0.7742,0.699,0.3606,0.1098,-0.1536,-0.0658,-0.1098,-0.0972,-0.2308,-0.0384,0.2692,0.2308,-0.7308,-0.3076,-0.2692,-0.423,-0.423,-0.5384,-0.6154,-0.6538,-0.5,-0.423,-0.2692,-0.1538,-0.1154,0.2308,0.1924,0.6538,0.7308,0.423,0.2692,0.3846,0.6154,0.7308,0.8076,1,0.8076,0.9616,0.9616,0.8462,-0.3462,0.0384,0.2308,0.1538,-0.6154,-0.3462,-0.5384,-0.5384,-0.6154,-0.5384,-0.5384,-0.5384,-0.5,-0.3846,-0.2308,-0.3462,-0.3076,0.0384,0.3076,0.6154,0.6538,0.5,0.4616,0.5,0.4616,0.6538,0.8076,1,1,1,1,0.7692,-0.1294,0.2706,0.5764,0.6,0.0352,-0.1058,-0.5764,-0.4588,-0.5294,-0.6706,-0.4824,-0.5294,-0.5764,-0.4118,-0.1294,-0.247,-0.4824,-0.4588,-0.153,0.0824,0.4588,0.7648,0.9294,1,0.8352,0.953,0.7412,0.7648,0.5764,0.5764,0.6236,0.4352,-1,-1,-0.8574,-0.9288,-0.91,-0.8912,-0.9062,-0.8836,-0.9174,-0.6398,-0.1144,0.3358,0.7074,0.9288,0.9136,0.7824,0.6698,0.5046,0.4296,0.4934,0.2834,-0.5684,-0.8348,-0.9288,-0.925,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.908,-0.9376,-0.636,-0.5056,0.6148,0.8328,1,1,0.507,0.7734,0.5638,0.5254,0.3016,0.1458,0.1488,0.1968,0.1332,-0.1728,-0.3498,-0.7946,-0.908,-0.939,-0.9362,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.804,-0.9668,-0.8534,0.1866,0.8232,1,0.8366,0.81,0.48,0.006,-0.262,-0.404,-0.538,-0.48,-0.34,-0.266,-0.3038,-0.5674,-0.831,-0.8838,-0.7368,-0.9268,-0.9268,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2858,0,1,1,1,-0.0286,-0.9142,-0.0286,0.0572,-0.0286,0.0858,-0.8858,-0.9714,-1,-1,-0.9714,-0.7428,-0.7142,0.2,0.2572,-0.9714,-0.9142,-0.3142,-1,-1,-1,-1,-1,-1,-1,-1,-0.397,-0.452,-0.4454,-0.4394,-0.4308,-0.443,-0.4186,-0.4262,-0.3888,-0.2678,1,1,1,1,1,1,1,1,1,1,-0.52,0.2236,0.558,0.6104,0.7946,0.7904,0.7026,0.1334,-0.5492,-0.5176,-0.2112,-0.1654,-0.2218,-0.0986,-0.0246,-0.074,-0.0212,0.1056,0.3064,0.2852,0.4578,0.676,0.6796,0.7288,0.926,0.8698,0.7922,1,0.9788,0.9366,0.8346,0.919,0.926,0.8416,0.9154,0.8838,0.683,0.6654,0.4718,0.0634,-0.8644,-0.7982,-0.759,-0.6808,-0.735,-0.524,-0.515,-0.4458,-0.1716,0.0422,0.1356,0.3464,0.5362,0.7832,0.756,0.765,1,0.7802,0.9096,0.9246,0.8314,0.9246,0.8946,0.9006,0.982,0.8524,0.8284,0.6716,0.6656,0.5572,0.479,0.3192,-0.3648,-0.2872,-0.5506,-0.6452,-0.7128,-0.6622,-0.6182,-0.2736,-0.1554,0.1892,0.3682,0.5338,0.8514,1,0.9966,0.9392,0.9494,0.6722,0.7094,0.6182,0.7602,0.902,0.946,0.9392,0.8784,0.777,0.6858,0.6722,0.527,0.581,0.4594,0.1014,0.847,-1,-1,1,-0.4,-1,-1,0.3,-1,0.3866,0.7066,0.52,0.6534,0.5466,0.1734,0.6266,1,0.6266,0.4934,0.8134,0.5734,0.5466,0.7866,0.5466,0.7066,0.5466,0.2266,0.0666,0.3066,0.04,0.3066,0.28,0.4666,0.52,0.6266,0.3866,0.4666,0.4134,0.5466,0.2,-0.36,'7'
-0.3216,0.186,0.1248,0.3654,0.488,0.4618,-0.1816,-0.0854,-0.2516,-0.453,-0.4354,-0.5098,-0.5318,-0.3086,-0.221,-0.2866,-0.0722,-0.0766,0.0154,0.453,0.5362,0.7592,0.9344,0.9388,0.8468,0.965,0.9562,0.9868,1,0.9168,0.9518,0.6936,-0.3468,-0.0364,0.2044,0.2116,0.4088,0.0766,-0.1606,-0.2518,-0.3868,-0.4344,-0.449,-0.5036,-0.4744,-0.3906,-0.2774,-0.303,-0.2846,-0.0364,0.0364,0.2408,0.5328,0.7262,1,0.865,0.7336,0.8504,0.8066,0.8868,0.9636,0.9052,0.7116,0.6314,-0.3876,-0.0658,0.1666,0.1434,0.221,-0.2132,-0.4342,-0.5038,-0.5504,-0.5348,-0.6512,-0.5272,-0.4922,-0.624,-0.4652,-0.5582,-0.4418,-0.376,-0.1976,0.0194,0.3372,0.5776,0.8024,0.8178,0.81,0.907,0.9108,0.8838,1,0.7714,0.6706,0.5504,-0.3802,-0.0262,0.151,0.159,0.0744,-0.3722,-0.505,-0.493,-0.4486,-0.6218,-0.7546,-0.7868,-0.8028,-0.7746,-0.6378,-0.4648,-0.513,-0.4688,-0.348,-0.0824,0.183,0.3682,0.7264,0.8994,0.9236,0.9034,0.9034,1,0.9476,0.8954,0.7102,0.6258,-0.4694,-0.0416,0.0416,0.2316,0.204,-0.3504,-0.6158,-0.6158,-0.6118,-0.9684,-0.7188,-0.7188,-0.6792,-0.7268,-0.6476,-0.5882,-0.4534,-0.4614,-0.2436,-0.101,0.3386,0.5366,0.8772,1,0.9326,0.8416,0.9248,0.9486,0.7386,0.5722,0.509,0.5128,-0.5144,0.149,0.226,0.2548,0.173,-0.476,-0.7884,-0.9086,-0.8318,-0.7884,-0.7884,-0.601,-0.5914,-0.7068,-0.649,-0.7164,-0.673,-0.7404,-0.3076,-0.1442,0.1876,0.726,0.8174,0.9326,0.8124,0.875,1,0.9376,0.7356,0.5432,0.4376,0.4038,-0.4734,0.9716,1,0.146,-0.1602,-0.4092,-0.8362,-0.459,-0.5302,-0.4234,-0.2242,-0.0106,-0.1104,-0.1104,0.1388,0.146,-0.1602,-0.2598,-0.5232,-0.331,0.0036,-0.0106,0.0604,0.2598,0.2954,0.3238,0.3666,0.0178,-0.1958,-0.146,-0.1316,0.0036,-0.4468,0.149,0.1064,0.0638,-0.0638,0.0212,-0.234,-0.3618,-0.617,-0.3192,-0.2766,-0.3618,-0.4042,-0.2766,-0.0638,-0.0638,-0.1064,0.1064,0.234,0.3618,0.617,0.7872,0.9148,0.9148,0.7872,0.9148,1,1,1,1,0.8724,0.7872,-0.2196,0.3658,0.2196,0.5122,0.6586,0.6586,0.317,0.0732,-0.122,-0.1708,-0.317,-0.6098,-0.6098,0.0244,-0.0732,-0.0732,0.0732,-0.122,0.2682,0.4634,0.6098,0.6098,0.4146,0.4634,0.8048,0.6586,0.6586,0.8048,1,1,0.9512,0.8048,-0.2708,0.0208,0.1458,0.3124,0.2708,-0.2084,-0.3542,-0.3542,-0.4584,-0.8542,-0.4166,-0.375,-0.3334,-0.4792,-0.375,-0.25,-0.1876,-0.2916,-0.1876,-0.0208,0.4792,0.6042,0.7708,1,0.9792,0.8334,0.9792,0.9584,0.7084,0.7084,0.5416,0.4792,-1,-1,-1,-1,-1,-1,-0.9168,-0.9212,-0.9212,-0.9256,-0.6368,0.2822,0.593,0.3786,0.3042,0.2736,0.4704,0.9474,0.5448,0.2254,0.0022,-0.4224,-0.7986,-0.895,-0.8994,-0.8994,-0.908,-0.9038,-0.895,-0.8294,-0.8862,-0.838,-0.8644,-1,-1,-1,-1,-1,-1,-0.9342,-0.929,-0.9078,-0.8526,-0.7828,0.214,0.4958,0.2904,0.3272,0.2758,0.3298,0.8592,0.268,-0.21,-0.3904,-0.784,-0.9092,-0.925,-0.9448,-0.9368,-0.942,-0.9408,-0.9382,-0.3812,1,1,1,-1,-1,-1,-1,-1,-1,-0.9268,-0.9134,-0.7334,-0.2134,-0.4534,-0.5026,-0.3326,-0.3576,-0.3176,-0.3076,-0.3576,-0.35,-0.4126,-0.5476,-0.6156,-0.8668,-0.8634,-0.8668,-0.9468,-0.96,-0.94,-0.92,-0.8868,-0.1768,0.9966,1,0.9066,-1,-1,-1,-1,-1,-1,-0.7428,-0.2572,0.1142,-0.3714,1,1,-0.8,-0.9714,-0.8858,-0.9714,-0.9142,-0.8858,-0.3142,-0.5428,1,0.7714,-0.8858,-0.8572,-0.9714,-1,-1,-1,1,1,1,0.2286,-0.8,0.5654,0.5818,0.5976,0.6024,0.6258,0.6178,0.592,0.5262,0.3912,0.1284,1,1,1,1,1,1,1,1,1,1,-0.4934,-0.0588,-0.7682,-0.1928,0.0178,0.5458,0.48,-0.2834,-0.5286,-0.4286,-0.4858,-0.2142,-0.2428,0.0428,-0.1,-0.0572,0.0286,0,0.4858,0.6714,0.5572,1,0.8428,0.9572,0.7858,0.7,0.3714,0.2714,0.5286,0.5142,0.0428,-0.2714,-0.4858,-0.1714,0.1286,0.6858,0.9428,0.5858,0.6858,-0.1286,-0.3948,-0.329,-0.1974,-0.329,-0.421,-0.0264,-0.0264,-0.0658,-0.0922,0.079,0.4606,0.5394,0.829,0.921,0.8948,0.671,0.8684,0.8158,0.4474,0.2894,0.7236,0.5264,0.0132,-0.3026,-0.1184,0,0.1842,0.6448,0.7764,1,0.9474,0.75,0.0052,0.202,0.0674,-0.0052,-0.2436,-0.2746,0.026,-0.0984,-0.0052,0.0778,0.316,0.6374,0.5752,0.741,1,0.969,0.917,0.8756,0.6166,0.2642,0.3472,0.4612,-0.0984,-0.057,-0.1296,-0.0466,0.0052,0.5752,0.741,0.9274,0.9274,0.7512,-0.8446,-1,1,-1,-1,-1,-1,-0.4666,1,-0.8556,-0.6222,-0.6556,-0.3888,-0.3666,-0.3888,-0.4778,-0.3444,-0.2334,-0.2,-0.0222,0.3888,0.5334,0.6778,0.4222,0.7888,0.8112,0.8556,0.9334,1,1,0.8556,0.9444,0.8222,0.9778,0.8444,0.7666,0.7888,0.8,0.6556,0.5778,0.3,'8'
-0.5368,-0.2516,0.1448,0.1848,0.3184,0.1982,0.1046,-0.2472,-0.3898,-0.3364,-0.3364,-0.4076,-0.4298,-0.3274,-0.2204,-0.2294,-0.2384,-0.0112,0.0734,0.372,0.7684,0.9064,0.9376,0.9956,0.9376,0.8218,1,0.9376,0.9554,0.9644,0.8218,0.6036,-0.4762,-0.2372,0.1464,0.2618,0.3856,0.1464,0.064,-0.1752,-0.2742,-0.369,-0.3114,-0.4804,-0.398,-0.3072,-0.4186,-0.2124,-0.101,-0.2372,0.2412,0.3444,0.497,0.9092,1,0.6784,0.8762,0.9052,0.732,0.8846,0.9052,0.6824,0.6908,0.699,-0.4978,-0.2402,0.1704,0.2008,0.31,-0.0174,-0.1004,-0.5022,-0.4104,-0.5022,-0.4628,-0.4498,-0.489,-0.4104,-0.5938,-0.3318,-0.2532,-0.31,0.1222,0.2052,0.214,0.786,0.8516,0.5896,0.9126,0.9868,0.5938,0.9432,1,0.6288,0.751,0.8034,-0.4704,-0.1918,0.2558,0.1872,0.1278,-0.1142,-0.1964,-0.6118,-0.5252,-0.685,-0.6986,-0.6392,-0.5526,-0.4704,-0.7306,-0.4338,-0.3882,-0.5022,-0.0274,0.0274,0.0548,0.5982,0.6438,0.7442,0.959,1,0.5936,0.9132,0.9452,0.6164,0.6804,0.7032,-0.4352,-0.1298,0.3682,0.3306,-0.159,-0.2888,-0.3306,-0.615,-0.5774,-0.6528,-0.5482,-0.6988,-0.5398,-0.498,-0.657,-0.6276,-0.4184,-0.5648,-0.364,-0.1338,-0.0168,0.3766,0.5524,0.7824,0.9832,1,0.8578,0.9246,0.7532,0.6444,0.6402,0.3934,-0.5224,-0.1898,0.3944,0.4158,-0.4712,-0.6248,-0.7014,-0.5692,-0.7314,-0.8508,-0.8082,-0.7654,-0.7612,-0.5566,-0.5394,-0.4882,-0.5522,-0.5182,-0.211,-0.275,-0.0448,0.5438,0.5138,0.7142,0.9488,1,0.9488,0.902,0.7484,0.6844,0.6034,0.4372,-0.6086,-0.0704,0.529,0.578,-0.5046,-0.688,-0.6024,-0.529,-0.7492,-0.7982,-0.682,-0.7004,-0.627,-0.6636,-0.5964,-0.6574,-0.5046,-0.4434,-0.1438,-0.0764,0.3516,0.4984,0.6574,0.841,0.9266,1,0.8532,0.5412,0.364,0.2478,0.0276,0.0582,-0.577,-0.2308,0.0384,-0.0384,0.1154,0.1538,0.0384,-0.2308,-0.3076,-0.3462,-0.4616,-0.3846,-0.5,-0.2308,-0.1538,-0.3846,0,0.0384,0.077,0.423,0.6154,0.5384,0.7692,0.923,0.6538,0.9616,0.923,0.6154,0.8846,1,0.7308,0.577,-0.6326,-0.3878,-0.0612,0.102,0.0612,0.0612,0.0204,-0.5102,-0.4286,-0.3878,-0.4694,-0.551,-0.5102,-0.5918,-0.3878,-0.347,-0.347,-0.0612,-0.0204,0.1428,0.551,0.796,0.7552,0.6326,0.796,0.6326,0.8368,1,0.796,0.7552,0.8776,0.4694,-0.5,-0.1364,0.2272,0.159,0.2046,-0.0682,-0.1364,-0.8864,-0.3864,-0.4772,-0.75,-0.4772,-0.5682,-0.4772,-0.7272,-0.3182,-0.2272,-0.409,0.0454,0.1364,0.0682,0.6818,0.7728,0.591,0.8864,1,0.6364,0.8636,0.9546,0.6818,0.7046,0.75,-1,-1,-1,-1,-1,-0.8954,-0.9144,-0.9002,-0.8812,-0.259,-0.1592,0.4252,0.8908,0.962,0.9382,0.5676,0.4394,0.468,0.6248,0.715,0.4346,-0.1022,-0.8194,-0.791,-0.867,-0.8908,-0.9192,-0.9334,-0.9192,-0.9334,-0.905,-0.905,-0.8954,-1,-1,-1,-1,-1,-0.949,-0.9454,-0.942,-0.9278,0.7026,1,0.833,0.7926,0.7228,0.647,0.2986,0.103,-0.0048,-0.1908,-0.0924,-0.192,-0.6268,-0.8768,-0.9242,-0.9384,-0.9454,-0.949,-0.9526,-0.9432,-0.9538,-0.6162,0.3046,1,-1,-1,-1,-1,-1,-0.9198,-0.9068,-0.79,-0.7968,-0.3134,-0.0468,0.0166,-0.1034,-0.1868,-0.21,-0.22,-0.3116,-0.1286,-0.2,-0.24,-0.3544,-0.6,-0.7334,-0.85,-0.8968,-0.9168,-0.9234,-0.9468,-0.9068,-0.96,-0.7768,1,1,-1,-1,-1,-1,-1,0.2,-0.8858,-0.8286,1,1,1,-0.5142,-0.6572,-0.7714,-0.9714,-0.7714,-0.8572,-0.8286,-0.7714,-0.9142,1,1,1,-0.5142,-0.8858,-1,-0.8858,-0.9714,-1,0.2,1,1,1,0.9194,0.9078,0.9046,0.9152,0.9096,0.9092,0.8992,0.8658,0.736,0.3578,1,1,1,1,1,1,1,1,1,1,-0.52,-0.2588,1,0.853,0.8104,0.9774,0.7406,0.1916,-0.2778,0.0556,0.213,-0.0278,-0.0926,-0.1666,-0.1388,-0.0092,0.0186,0.3148,0.9444,1,0.75,0.7686,0.9444,0.9538,0.537,0.4166,0.2962,0.1482,0.1852,-0.0926,-0.2962,-0.6112,-0.287,-0.426,-0.2038,0.074,0.0926,0.0834,0.2592,0.0278,-0.5232,-0.186,-0.0466,-0.2094,-0.4534,-0.628,-0.3838,-0.2674,-0.1512,0.2094,0.9302,1,0.7442,0.8256,0.8604,0.8488,0.5814,0.5116,0.407,0.1976,0.407,0.1976,-0.3256,-0.686,-0.4186,-0.279,-0.0698,0.0232,0.0698,0.1628,0.3954,0.0582,-0.4052,0.0154,0.077,0.0666,-0.3642,-0.4154,-0.2924,-0.2512,-0.1282,0.323,0.5076,0.918,0.7846,0.8872,1,0.8666,0.7538,0.7128,0.6,0.4564,0.2718,0.2102,-0.4564,-0.5384,-0.3436,-0.3538,-0.1898,0.0462,0.118,0.1282,0.3948,0.1488,1,-1,-1,1,-0.6,-1,-1,-0.6,1,-0.742,-0.729,-0.5484,-0.3162,-0.4322,-0.5226,-0.4838,-0.3162,-0.3936,-0.2258,-0.1484,0.0452,0.071,0.2774,0.213,0.342,0.613,0.7162,0.7806,0.8322,0.6646,0.7678,0.7678,0.7806,0.858,0.8968,0.8322,0.8322,1,0.7936,0.6646,-0.2,'8'
-0.455,-0.1044,-0.0924,-0.03,0.1068,0.3782,0.8248,0.9856,1,0.964,0.9784,0.7624,0.6566,0.3134,0.1116,0.0612,0.0708,-0.1956,-0.2364,-0.15,-0.21,-0.2316,-0.114,0.2148,0.4478,0.6158,0.5942,0.5462,0.3134,0.0252,-0.0756,0.3566,-0.4764,-0.2414,-0.133,-0.1104,-0.0306,0.2168,0.6094,0.636,0.6666,0.9284,0.9652,1,0.7158,0.4234,0.3088,0.135,-0.0102,-0.0082,-0.0962,-0.1738,-0.1698,-0.133,-0.0408,0.1022,0.178,0.3742,0.593,0.5828,0.3988,0.1226,-0.0838,0.133,-0.4032,-0.1352,-0.1936,-0.1464,-0.0158,0.2726,0.6194,0.6442,0.8154,0.8852,0.8514,1,0.9144,0.8446,0.5788,0.2792,0.1532,0.0698,-0.018,-0.027,-0.0112,0.0248,0.099,0.1644,0.3672,0.5472,0.7838,0.75,0.572,0.3536,0.2028,0.045,-0.387,-0.1224,-0.2128,-0.065,0.0386,0.4532,0.6384,0.6824,0.742,0.72,0.7266,0.6516,0.87,0.8676,1,0.8016,0.7354,0.4752,0.345,0.2988,0.3628,0.4288,0.4884,0.57,0.7288,0.8898,0.9736,0.9404,0.828,0.6494,0.4488,0.3076,-0.4108,-0.158,-0.1866,-0.0846,0.0398,0.372,0.5046,0.584,0.319,0.207,0.2232,0.215,0.1968,0.2538,0.4148,0.6188,0.6656,0.7636,0.6616,0.6044,0.5514,0.5046,0.5922,0.7228,0.8288,0.9714,1,0.9124,0.7818,0.7004,0.5638,0.4434,-0.3416,0.117,-0.0192,0.0556,0.3734,0.2644,0.194,-0.0262,-0.1556,-0.2508,-0.3212,-0.4392,-0.278,-0.244,-0.1556,-0.0942,0.1192,0.3644,0.6276,0.8138,0.8048,0.68,0.6096,0.782,0.891,1,0.848,0.6458,0.4484,0.3508,0.3508,0.3916,-0.54,0.164,-0.152,-0.436,-0.464,-0.38,-0.344,-0.256,-0.504,-0.58,-0.636,-0.448,-0.48,-0.364,-0.216,-0.252,-0.124,0.02,0.452,0.6,0.66,0.588,0.644,0.728,1,0.932,0.66,0.308,0.064,0.076,0.044,0.164,-0.0222,0.3334,0.2888,0.2888,0.5556,0.6,0.7334,0.7778,0.9112,1,0.9556,0.7778,0.2444,0.2888,-0.1112,-0.0222,-0.0222,-0.0222,-0.2,-0.0222,-0.2,-0.0222,-0.0666,0.1112,0.6,0.6444,0.3778,-0.1556,-0.3778,-0.2,0.4222,0.6,-0.5758,-0.2122,-0.2122,-0.2728,-0.091,0.3334,0.8182,1,1,0.8788,1,0.8182,0.0304,0.091,-0.091,-0.2122,-0.1516,-0.3334,-0.5152,-0.5152,-0.6364,-0.4546,0.2122,0.3334,0.697,0.697,0.8788,0.6364,0.5152,0.2728,-0.2122,0.4546,-0.5454,-0.2954,-0.2728,-0.341,-0.2954,0,0.4318,0.4772,0.5682,0.6364,0.8864,1,0.659,0.2728,0.1818,0,-0.2046,-0.159,-0.1136,-0.1818,-0.25,-0.25,-0.0682,-0.2728,0.1364,0.4772,0.7046,0.6136,0.1818,0.2272,0.0454,-0.1818,-1,-1,-1,-1,-1,-1,-0.8782,-0.859,-0.8654,-0.8782,-0.8142,0.3654,0.8718,0.8654,0.3076,0.468,0.468,0.673,0.6282,0.8334,0.2436,-0.5834,-0.8718,-0.859,-0.8782,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9584,-0.9516,-0.96,-0.9524,-0.9372,-0.1304,0.4858,0.858,0.247,0.4568,0.2834,0.2266,0.026,-0.2852,-0.6924,-0.8972,-0.9498,-0.9508,-0.9592,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8994,-0.7868,-0.9334,-0.7168,-0.5568,-0.65,-0.5658,-0.5672,-0.5386,-0.4772,-0.43,-0.383,-0.3716,-0.44,-0.6654,-0.5854,-0.8368,-0.8034,-0.9268,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3714,-0.6572,-0.9428,-0.7714,1,1,-0.9142,-0.5428,-0.4858,-0.8,-1,-0.9142,-0.8858,-0.4572,0.3428,-0.7142,-0.7714,-0.9714,-0.8,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.0318,-0.0438,-0.0712,-0.1418,-0.2742,-0.3506,-0.363,-0.3898,-0.4514,0.0596,-0.4934,0.7294,-0.9406,-0.723,-0.1696,-0.3158,0.0276,-0.2584,-0.0614,0.1174,0.2402,0.7318,0.8548,0.5084,0.7988,0.877,0.4414,0.419,0.5308,0.7206,1,0.8436,0.6202,0.9106,0.933,0.933,0.8548,0.5642,0.6312,0.6648,0.5196,0.7206,0.676,0.7094,0.7318,0.4748,0.8324,0.8548,0.4972,0.095,-0.064,-0.12,-0.088,-0.04,-0.016,0.288,0.192,0.848,0.408,0.304,0.168,0.36,0.48,0.552,0.424,0.44,0.592,0.768,0.2,0.136,0.32,0.168,0.2,0.408,-0.048,0.264,0.288,0.536,0.568,1,0.432,-0.208,-0.3934,-0.2432,-0.4894,-0.033,0.1412,0.1592,0.2072,0.2372,0.1172,0.069,-0.1352,0.1352,0.3514,0.1952,0.057,0.3754,0.5076,0.6276,0.093,-0.087,-0.051,-0.045,-0.033,-0.2312,-0.021,-0.1772,-0.027,0.4234,1,0.8498,0.2912,-0.2972,-0.9712,1,-1,-1,-1,-1,-1,-1,-1,0.0118,0.2706,0.1058,0.2,0.4588,0.3412,0.953,1,0.3648,0.7882,0.647,0.247,0.8824,0.3412,0.4824,0.3648,0.553,0.6706,0.6,0.6942,0.8118,0.6942,0.4588,0.4588,0.4824,0.3412,0.2236,0.4118,0.5294,0.6942,0.6,0.3648,'9'
-0.4804,-0.1238,0.0792,0.1114,0.07,0.4096,0.445,0.7326,0.8448,0.9616,1,0.9278,0.5726,0.3236,0.2406,-0.1268,-0.0054,-0.0054,-0.3698,-0.3174,-0.2682,-0.4696,-0.1268,0.0468,0.0514,0.3358,0.7478,0.834,0.6156,0.6434,0.5664,0.4342,-0.454,-0.1892,-0.0068,-0.0412,0.0396,0.3732,0.4182,0.5302,0.6994,0.8864,1,0.7398,0.6336,0.3492,0.0336,-0.071,0.0396,-0.267,-0.3434,-0.2656,-0.5034,-0.4884,-0.4406,-0.2476,-0.083,0.0306,0.3926,0.484,0.5362,0.3882,0.3194,0.1952,-0.3828,-0.1154,0.0088,-0.0018,0.1118,0.5122,0.3882,0.4528,0.6994,0.8252,0.8252,1,0.7028,0.472,0.2954,-0.0542,-0.1766,-0.2396,-0.4406,-0.5158,-0.6294,-0.5542,-0.5034,-0.3584,-0.1364,0.0384,0.3252,0.4878,0.3742,0.1678,0.1346,0.0646,-0.3484,-0.0648,0.016,0.046,0.23,0.5738,0.4348,0.4874,0.7164,0.5944,0.5436,0.5718,0.5718,0.891,1,0.4066,0.1888,0.1418,-0.3164,-0.2846,-0.2714,-0.155,-0.3428,-0.0046,0.1154,0.0084,0.4084,0.461,0.076,0.1324,0.123,-0.1248,-0.1498,0.2384,0.3724,0.3964,0.5474,0.9904,0.8108,0.8826,0.7054,0.4276,0.2742,0.2598,-0.0658,0.4324,0.7246,0.4276,0.7604,1,0.5904,0.4276,0.497,0.4204,0.2742,0.4276,0.885,0.7532,0.7294,0.9784,0.715,0.4276,0.5736,0.279,-0.2818,0.1038,0.2364,0.2206,0.4738,0.371,0.3472,-0.0108,-0.1236,-0.1196,-0.3194,-0.2978,-0.1336,-0.1534,-0.1434,0.0504,0.1118,0.369,0.7824,0.8952,0.81,0.6518,0.8062,0.8496,0.913,1,0.9348,0.6242,0.5154,0.4698,0.4144,0.4362,-0.4558,0.3296,0.08,-0.1444,0.0462,0.0294,-0.4922,-0.697,-0.582,-0.6886,-0.6662,-0.7138,-0.3156,-0.366,-0.4446,-0.4558,-0.3576,-0.2202,0.223,0.6158,0.627,0.6606,0.6802,0.7924,1,0.986,0.3884,-0.035,-0.2678,-0.2174,-0.251,-0.0716,-0.9048,-0.0952,-0.1904,-0.1904,-0.1428,0.0952,0.381,0.4762,0.3334,0.8096,1,0.8096,0.2858,-0.1428,-0.0952,-0.7142,-0.2858,-0.3334,-0.5238,-0.4286,-0.3334,-0.5238,-0.238,-0.238,-0.0952,0.1428,0.4286,0.6666,0.4286,0.381,0.4286,0.5238,-0.5348,-0.1162,-0.0698,0.0698,0.1628,0.2558,0.3954,0.5814,0.5348,0.814,0.814,0.3954,0.1628,0.0698,-0.1162,-0.0232,-0.0698,-0.1628,-0.2094,-0.3024,-0.628,-0.2558,-0.2094,0.1162,0.1628,0.2558,0.907,1,0.6744,0.721,0.5348,0.4884,-0.322,0.1186,0.2204,0.1864,0.3898,0.7288,0.5932,0.5932,0.322,0.1526,-0.2204,-0.1186,-0.322,-0.2882,0.2204,0.0848,0.4576,0.8984,0.695,0.322,0.322,0.3898,0.356,0.1186,1,0.9322,0.6272,0.7628,0.5594,0.4576,0.1864,0.322,-1,-1,-1,-1,-1,-1,-1,-0.9042,-0.8986,-0.876,-0.4366,0.6732,0.8874,0.8422,0.8478,0.6958,0.6958,0.6732,0.662,0.6732,0.3634,-0.4986,-0.8648,-0.876,-0.8592,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9616,-0.9588,-0.9482,-0.737,0.6198,0.745,0.424,0.4552,-0.17,-0.1038,-0.3372,-0.4008,-0.33,-0.5922,-0.855,-0.941,-0.9454,-0.9534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.9,-0.7668,-0.6534,-0.41,-0.4924,-0.5468,-0.5512,-0.6146,-0.7222,-0.7716,-0.6812,-0.4022,-0.519,-0.5706,-0.74,-0.8934,-0.9068,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7142,-0.8572,-0.2858,1,1,-0.6858,-0.8286,-0.8572,-0.9142,-0.9428,-0.8572,-0.7428,-0.7714,-0.3714,-0.3142,-0.6858,-0.8286,-0.2572,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.2172,-0.2282,-0.248,-0.2612,-0.2856,-0.3218,-0.4164,-0.5198,-0.632,-0.1772,-0.48,1,-0.771,0.026,0.509,0.314,0.6852,0.3416,0.0336,0.0336,0.1276,0.7584,0.9328,0.208,0.651,0.906,0.8658,0.396,0.7316,0.5034,0.745,0.7046,0.7852,1,0.6778,0.4228,0.6242,0.4362,0.2886,0.3154,0.4094,0.5704,-0.1276,0.4094,0.1812,0.839,0.5302,0.047,-0.0738,-0.7046,-0.2418,-0.2748,-0.066,0.3406,0.1538,0.066,0.2198,0.3736,0.3846,0.3956,0.3076,0.044,0.5274,0.7362,0.5714,0.6374,1,0.2418,0.5934,0.1428,0.5604,0.2528,0.2418,0.1868,0.1428,-0.022,0.066,0.044,0.077,0.2968,0.1978,-0.2638,-0.1584,0.1402,0.5022,0.7104,0.448,0.6018,0.6742,0.3666,0.285,0.0316,0.285,0.258,0.5114,1,0.9366,0.7648,0.9458,0.3666,0.7286,0.5476,0.2036,0.0588,-0.104,-0.0498,0.0226,0.095,0.2218,0.3846,0.1584,0.4842,0.2398,-0.1132,-0.9856,1,-1,-1,-1,-1,-1,-1,-1,-0.234,-0.0638,0.2128,0.2128,0.234,0.234,0.2766,0.617,0.617,0.3404,0.5106,0.532,1,0.6596,0.4042,0.5744,0.6596,0.1276,0.149,0.383,0.6382,0.6382,0.2554,0.2766,0.2554,0.1914,0.2978,0.2978,-0.0638,0.0212,0.1276,-0.234,'9'
-0.3368,0.0026,0.5802,0.4706,0.2514,-0.091,-0.361,-0.3664,-0.2326,-0.4866,-0.5,-0.4332,-0.254,-0.2406,-0.1632,-0.0454,0.2352,0.377,0.5802,0.8556,0.7834,0.5562,0.4332,0.5134,0.6284,0.8396,1,0.9572,0.853,0.7032,0.7006,0.5668,-0.5012,-0.2278,-0.0024,0.4772,0.4484,0.4604,0.0048,-0.0432,-0.0432,-0.2182,-0.1894,-0.1486,-0.0864,0.0648,0.2062,0.343,0.4316,0.6402,1,0.8944,0.8298,0.729,0.578,0.614,0.7578,0.8848,0.8752,0.8538,0.705,0.6258,0.5276,0.4916,-0.552,-0.3052,-0.0948,0.2068,0.5314,0.6182,0.2274,0.1018,0.0194,-0.0148,-0.0582,0.0126,0.0674,0.1108,0.2182,0.3898,0.664,0.7486,0.9178,0.9498,0.8812,0.7302,0.7646,0.8102,0.92,0.9818,1,0.8514,0.7828,0.8058,0.7188,0.552,-0.551,-0.3298,-0.1172,0.1366,0.4946,0.5792,0.1996,0.0738,-0.0304,-0.063,-0.1172,-0.065,0.0022,0.0456,0.1258,0.3146,0.5444,0.653,0.8352,0.8612,0.8156,0.718,0.7202,0.82,0.8806,0.9544,1,0.8222,0.783,0.8416,0.7462,0.6138,-0.4104,-0.216,0.0092,0.2978,0.4146,0.4964,0.173,0.0788,0.0276,-0.0318,-0.1362,-0.134,-0.0154,0.0604,0.1198,0.261,0.4554,0.6008,0.8116,0.8894,0.9078,0.7114,0.7646,0.8772,0.912,1,0.996,0.9284,0.8178,0.779,0.783,0.7278,-0.353,-0.0532,0.1148,0.5602,0.6218,0.2578,-0.0308,-0.2858,-0.3138,-0.4482,-0.5966,-0.5014,-0.3138,-0.238,-0.1736,-0.1372,0.0364,0.224,0.4958,0.846,1,0.9496,0.6946,0.8768,0.9468,0.9944,0.8852,0.79,0.6274,0.5854,0.5826,0.4874,-0.0686,0.7554,0.4506,0.3734,-0.0858,-0.236,-0.369,-0.3176,-0.6052,-0.7424,-0.7554,-0.588,-0.3906,-0.352,-0.4078,-0.661,-0.5836,-0.4378,0.206,0.4248,0.6052,0.94,0.9098,0.9958,1,0.8154,0.6696,0.043,0.103,0.3004,0.3434,0.0858,-0.1304,0.174,0.5652,0.5218,-0.087,-0.3044,-0.4348,-0.087,0,-0.4348,-0.7392,-0.4348,-0.2174,-0.1304,-0.3044,-0.3044,0.0434,0,0.6522,0.7392,0.5218,0.6956,0.4782,0.7392,0.7826,0.8696,1,0.913,0.5652,0.826,0.7392,0.8696,-0.3334,0.2222,0.6112,0.5,-0.3334,-0.6112,-0.7778,-0.5,-0.2778,-0.4444,-0.7222,-0.4444,-0.2778,-0.4444,-0.1666,-0.1666,-0.0556,0.3334,0.4444,0.4444,0.5556,0.4444,0,0.0556,0.1666,0.2778,0.9444,1,0.6666,0.7222,0.7778,0.3334,-0.3542,-0.1458,0.0416,0.3334,0.3334,0.4166,0.1666,0.0416,0.0208,-0.1042,-0.1876,-0.1666,-0.0624,0.0624,0.0834,0.1666,0.4166,0.5416,0.75,0.8542,0.8958,0.7084,0.7708,0.8958,0.9584,1,0.9376,0.9166,0.8124,0.7084,0.75,0.7292,-1,-1,-1,-0.611,-0.7142,-0.8024,-0.839,-0.8996,-0.8996,-0.8602,-0.4528,0.544,0.7842,0.4772,0.313,0.2918,0.3162,0.2614,0.0548,-0.0364,-0.2006,-0.5076,-0.9058,-0.9392,-0.9362,-0.9484,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8628,-0.891,-0.9176,-0.8344,-0.027,-0.1058,-0.1258,-0.3492,-0.2448,0.7382,0.4426,0.5816,0.7886,0.8682,0.8206,0.4234,-0.048,-0.6202,-0.7858,-0.9002,-0.936,-0.9378,-0.9432,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9454,-0.94,-0.8868,-0.8268,1,1,1,0.4932,-0.6432,-0.5154,-0.4216,-0.48,-0.5062,-0.5032,-0.4986,-0.3894,-0.4544,-0.7172,-0.583,-0.3668,-0.62,-0.7734,-0.7068,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6286,-0.8572,-0.2,1,1,-0.3714,-0.5428,1,1,0.1142,-0.7714,-1,-1,-1,-1,-0.9428,0.1142,-0.1428,-0.4,-0.4572,-0.8,-0.8,-0.3142,-1,-1,-1,-1,-1,-1,-1,-0.0834,-0.0024,0.0688,0.1278,0.227,0.3402,0.4888,0.6724,0.8862,0.7804,0.7978,0.813,0.8034,0.8124,0.7868,0.7582,0.7218,0.7256,0.7692,0.791,-0.3866,0.6,-0.372,-0.352,-0.3694,-0.2696,-0.2512,1,-0.6866,-0.7128,-0.7754,-0.4152,-0.551,-0.4986,-0.4516,-0.436,-0.201,-0.0182,-0.0392,-0.0026,0.1906,0.457,0.4464,0.4464,0.4046,0.7442,0.8068,0.8746,0.8798,0.8904,0.9738,0.9268,0.8746,0.8016,0.9322,1,0.9216,0.906,0.739,0.4726,-0.8418,-0.7256,-0.614,-0.5488,-0.6094,-0.5348,-0.5162,-0.4418,-0.4604,-0.0744,0.1162,0.093,0.428,0.6698,0.5628,0.5256,0.693,0.7582,0.907,0.879,0.8466,0.9162,0.9396,0.9396,1,0.921,0.9302,0.7674,0.7302,0.7582,0.5674,0.3534,-0.2494,-0.1958,-0.4262,-0.4102,-0.5604,-0.6408,-0.6032,-0.4048,-0.26,0.1528,0.3458,0.3888,0.4262,0.5388,0.6246,0.6676,0.8446,0.8498,0.9302,1,0.9034,0.8176,0.8606,0.7908,0.9678,0.866,0.7748,0.7372,0.6568,0.8338,0.5924,0.3404,0.1534,-1,-1,1,-0.4,-0.8,-1,-0.1334,-1,-0.3954,-0.3334,-0.0542,-0.0232,-0.1162,-0.0232,-0.0852,-0.0542,-0.1938,0.3954,1,0.5658,0.5814,0.3644,0.2094,0.3644,0.2868,0.3644,0.5348,0.0542,-0.0542,-0.1782,-0.0852,-0.1162,0.0388,0.0698,-0.1472,0.0388,0.2558,0.1162,0.1008,-0.3644,'10'
-0.588,-0.2028,0.1304,0.2278,0.2132,-0.1822,-0.296,-0.3084,-0.7722,-0.4224,-0.5052,-0.4638,-0.3272,-0.2216,-0.1904,-0.2132,0.0144,0.3788,0.5962,0.5922,0.5694,0.528,0.4554,0.6232,0.7288,0.9254,1,0.9814,0.9856,0.8862,0.6978,0.7018,-0.4902,-0.2642,0.03,0.3036,0.5274,0.6892,0.3222,0.1524,0.1668,-0.0508,-0.0424,0.0342,0.1358,-0.0114,0.374,0.3264,0.488,0.8902,0.8134,0.8176,0.917,0.6602,0.7492,0.7824,0.7638,1,1,0.8072,0.8736,0.7616,0.5088,0.5502,-0.5416,-0.3192,-0.1236,0.1932,0.6742,0.8224,0.409,0.3618,0.355,-0.0786,0.0292,-0.0404,0.045,0.218,0.2292,0.4832,0.5686,0.791,1,0.9394,0.7932,0.7146,0.7326,0.7124,0.7078,0.7168,0.6292,0.7102,0.636,0.3394,0.2696,0.0472,-0.5488,-0.3162,-0.2116,0.2162,0.6348,0.779,0.4512,0.2884,0.3046,-0.0348,-0.0744,-0.2302,-0.072,0.1604,0.0954,0.414,0.4906,0.7162,1,0.9534,0.693,0.7604,0.6582,0.7094,0.828,0.8418,0.7582,0.7302,0.5186,0.3954,0.293,0.0162,-0.4082,-0.0846,0.0058,0.551,0.6588,0.8776,0.4198,0.2594,0.1778,-0.309,-0.411,-0.4402,-0.3002,-0.379,-0.2916,-0.2448,-0.2654,0.2216,0.376,0.6472,0.6502,0.5686,0.5744,0.7114,0.8688,1,0.9096,0.796,0.6706,0.3906,0.309,0.2624,-0.3632,-0.0068,0.0748,0.4884,0.6244,0.287,0.0966,0.0096,-0.5238,-0.6136,-0.5946,-0.5292,-0.5346,-0.6244,-0.6462,-0.3742,-0.3034,-0.0286,0.3632,0.8014,0.8912,0.8884,0.7768,0.8776,0.981,1,0.9266,0.5674,0.3714,0.3904,0.1946,0.0748,-0.3784,0.2432,0.0034,0.0912,0.3142,0.1082,-0.3614,-0.3818,-0.5878,-0.679,-0.5472,-0.5236,-0.4898,-0.3886,-0.3176,-0.304,-0.179,-0.1048,0.3378,0.7602,0.7602,0.8412,0.473,0.7264,0.8784,1,0.7568,0.4358,0.2534,0.223,0.0034,0.0304,-0.132,0.3208,0.0944,0.3584,0.2076,-0.0188,-0.0188,-0.0566,-0.6604,-0.2076,-0.3208,-0.3962,0.0566,-0.0188,-0.0566,0.0566,0.0566,0.283,0.5094,0.5094,0.585,0.3962,0.5472,0.5472,0.5472,0.7736,0.8114,1,0.9246,0.7736,0.6226,0.8868,-0.0612,0.3062,0.347,0.4694,0.347,-0.1836,-0.2654,-0.3062,-0.3878,-0.1836,-0.4286,-0.2244,0.1428,-0.0612,-0.0612,-0.1428,-0.0204,0.0612,0.551,0.2654,0.347,0.4694,0.5102,0.2244,0.5918,0.7552,0.8368,1,1,0.8368,0.8776,0.5918,-0.5714,-0.3142,-0.3428,0.2,0.5714,0.7714,0.4,0.2858,0.2858,-0.3142,-0.2,-0.3142,-0.2,0.0286,0.0286,0.3428,0.3714,0.4858,1,0.9142,0.4572,0.6858,0.4,0.6572,0.8286,0.6572,0.8572,0.8286,0.3714,0.4,0.2,-0.1142,-1,-1,-1,-1,-0.8892,-0.9024,-0.9424,-0.898,-0.9246,-0.9114,-0.8182,0.3702,0.4812,0.286,0.326,0.184,0.153,-0.0422,-0.2196,-0.1796,-0.3082,-0.4944,-0.734,-0.867,-0.9024,-0.9024,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9396,-0.9456,-0.3926,0.7882,0.0744,-0.4096,-0.5728,0.107,0.6746,0.3466,0.1422,-0.0526,-0.0176,-0.331,-0.5136,-0.5172,-0.585,-0.735,-0.8742,-0.8282,-0.8644,-0.9274,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.94,0.18,1,1,0.97,0.7666,-0.19,-0.1872,-0.3014,-0.48,-0.592,-0.7454,-0.7988,-0.747,-0.5868,-0.456,-0.4988,-0.6134,-0.4468,-0.6334,-0.7134,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,-0.0858,-0.2858,1,1,-0.7142,-0.8572,-0.8,-1,-0.9428,-0.6858,-0.8858,-0.9714,-0.7428,-0.4286,-0.5142,-0.4858,0,-0.0572,-1,-1,-1,-1,-1,-1,-1,0.3572,0.4144,0.4696,0.562,0.6426,0.71,0.799,0.961,1,1,0.8352,0.8488,0.8588,0.8394,0.8342,0.8002,0.75,0.6724,0.6124,0.6734,-0.4266,0.8,-0.6286,-0.4676,-0.3018,0.1578,0.4362,1,-0.7528,-0.8092,-0.8092,-0.5662,-0.5488,-0.462,-0.3796,-0.2972,-0.2712,-0.384,-0.115,0.076,0.141,0.3362,0.4664,0.4664,0.7224,0.731,0.8352,0.8786,0.8308,0.8438,0.8872,0.7396,0.8048,0.9132,0.9784,1,0.9176,0.9176,0.6138,0.397,-0.7524,-0.7878,-0.7996,-0.4852,-0.5756,-0.6582,-0.4106,-0.4184,-0.3634,-0.4184,-0.1198,-0.0766,0.163,0.4302,0.442,0.442,0.6542,0.7328,0.831,0.776,0.607,0.666,0.7956,0.6268,0.7878,0.78,0.7918,0.8664,1,0.78,0.7288,0.3714,-0.7136,-0.6074,-0.5982,-0.3534,-0.5012,-0.3672,-0.3488,-0.2748,-0.0808,-0.0532,0.0624,0.3256,0.3026,0.6212,0.7182,0.6952,0.7968,1,0.7644,0.7136,0.746,0.7322,0.7322,0.8892,0.8198,0.7506,0.7506,0.7368,0.6304,0.552,0.4966,0.2424,0.9698,-1,-1,1,-1,-1,-1,0,-1,-0.5042,-0.372,-0.405,-0.157,-0.3554,-0.091,-0.1074,0.2066,0.2892,0.3058,0.2066,0.6034,0.752,0.4546,-0.2066,0.438,0.8182,0.471,0.1074,0.4214,0.9008,1,0.8182,0.7024,0.5702,0.471,0.6694,0.8348,0.8182,0.686,0.438,-0.124,'10'
-0.256,0.391,0.263,0.4948,0.7854,0.8132,0.346,0.218,0.083,-0.1418,-0.2214,-0.2734,-0.225,-0.263,-0.1004,-0.1558,0.0276,0.218,0.4014,0.5916,0.7682,1,0.8028,0.7578,0.7786,0.8236,0.8582,0.6748,0.5952,0.6608,0.443,0.2526,-0.3896,-0.0436,0.37,0.4486,0.7158,0.578,0.5584,0.2518,0.159,0.1112,0.0126,-0.1336,0.0126,0.173,0.1336,0.263,0.3136,0.4796,0.8284,0.8538,0.789,0.8846,0.851,0.73,0.834,0.8818,1,0.9296,0.7244,0.6822,0.5724,0.277,-0.5618,-0.3144,0.1262,0.2896,0.3788,0.5842,0.4258,0.0816,-0.0768,-0.0322,-0.047,-0.1534,-0.0496,0.0074,0.0966,0.1584,0.3614,0.49,0.7252,0.8762,0.906,0.7946,0.6114,0.8044,0.891,0.891,0.9678,1,0.8316,0.7648,0.7054,0.5346,-0.5692,-0.3502,0.076,0.2858,0.3342,0.44,0.2258,0.0414,-0.0968,-0.1336,-0.129,-0.0622,-0.053,0.0346,0.0484,0.0646,0.3756,0.424,0.6636,0.9586,0.8548,0.7996,0.705,0.848,0.8594,0.9678,1,0.9378,0.8778,0.818,0.7028,0.6682,-0.6144,-0.3364,0.0818,0.3552,0.4158,0.1518,-0.0234,-0.1286,-0.2172,-0.3084,-0.2828,-0.187,-0.1962,-0.1308,-0.0678,-0.0444,0.2102,0.2172,0.3972,0.8598,0.8294,0.8412,0.757,0.7804,0.8482,1,0.8972,0.8902,0.7944,0.7314,0.708,0.6262,-0.559,-0.2478,0.354,0.2892,0.4086,-0.035,-0.201,-0.4268,-0.3722,-0.4604,-0.4474,-0.3566,-0.4138,-0.4346,-0.2918,-0.2374,-0.1284,-0.0272,0.297,0.5824,0.7898,0.904,0.93,0.917,1,0.9482,0.93,0.764,0.6032,0.6006,0.5876,0.4812,-0.5568,0.0746,0.145,0.302,-0.255,-0.345,-0.3922,-0.3412,-0.8118,-0.5764,-0.5608,-0.7294,-0.7294,-0.8078,-0.5648,-0.4746,-0.455,-0.396,-0.2628,0.2314,0.7176,0.8862,0.8706,0.8746,0.9334,1,0.6196,0.2706,0.1058,0.0156,-0.1176,-0.1882,-0.1764,0.5294,0.4118,0.0588,0.1176,0.1764,0.2352,0.1764,-0.4118,-0.4118,-0.4118,-0.2942,-0.2352,-0.7058,-0.1176,-0.1176,-0.4118,-0.2942,0.353,0.4118,0.2942,0.8236,0.9412,0.8824,0.5882,0.8824,1,0.8236,0.647,0.4706,0.2942,0.0588,0.25,0.85,0.8,0.75,0.85,0.8,0.25,0.35,0.2,0.05,-0.4,0.05,0.1,-0.8,-0.2,-0.2,0.15,0.6,0.55,0.65,0.85,1,0.75,0.6,0.85,1,0.75,0.3,0.7,0.8,0.7,0.1,-0.6,-0.2444,0.2222,0.3334,0.4222,-0.0666,-0.1556,-0.4222,-0.2666,-0.4222,-0.4888,-0.3334,-0.3556,-0.3334,-0.1556,-0.1556,-0.1112,0.0444,0.3334,0.6444,0.7778,1,0.9556,0.8444,1,0.9778,0.9112,0.8666,0.8444,0.7112,0.7556,0.6666,-1,-1,-0.9394,-0.9232,-0.8788,-0.6404,-0.709,-0.7818,-0.7858,-0.8384,-0.6122,0.1676,0.8424,0.8102,0.4464,0.3576,0.3656,0.5394,0.604,0.2202,-0.0384,-0.5556,-0.899,-0.9192,-0.907,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9598,-0.956,-0.8416,-0.2104,-0.4342,-0.5242,-0.5748,-0.794,-0.7236,-0.5186,-0.11,-0.0032,0.3086,0.5906,0.807,0.9214,0.6656,0.0576,-0.599,-0.8304,-0.9298,-0.9362,-0.941,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,-0.9334,-0.86,0.6932,0.75,0.5866,0.4632,0.1066,-0.12,-0.6674,-0.6164,-0.4982,-0.4528,-0.465,-0.3768,-0.3934,-0.36,-0.3934,-0.5818,-0.5184,-0.5868,-0.72,-0.8468,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5142,-0.4572,1,1,-0.6,-0.5714,0.0286,-0.0858,-0.2858,0.1714,0.0858,-0.9142,-0.9142,-1,-1,-1,-0.9714,-0.2,-0.1428,-0.0572,-0.5428,-0.8286,-0.8286,-1,-1,-1,-1,-1,-1,-1,-1,0.785,0.806,0.828,0.847,0.8708,0.9058,0.9502,0.9982,1,0.8714,0.7372,0.7294,0.739,0.7558,0.7602,0.7724,0.7658,0.7738,0.8334,0.9212,-0.4666,0.3882,-0.7246,-0.5954,-0.6234,-0.527,-0.3612,0.3166,-0.886,-0.4472,-0.3756,-0.1984,-0.2068,-0.2996,-0.3882,-0.3882,-0.2448,-0.2026,-0.0886,0.1224,0.3292,0.3756,0.7552,0.8692,0.9114,0.7638,0.6624,0.6752,0.7594,0.806,0.886,0.7216,0.8482,0.9156,1,0.595,0.5992,0.713,0.4978,0.3924,-0.6952,-0.3866,-0.3568,-0.2974,-0.3308,-0.3978,-0.1748,-0.1486,-0.0446,0.249,0.2862,0.606,0.5874,0.9516,1,0.7956,0.762,0.8402,0.907,0.7546,0.777,0.6952,0.7806,0.8142,0.7324,0.751,0.7212,0.7398,0.6542,0.6394,0.461,0.2566,-0.7228,-0.4966,-0.3302,-0.261,-0.3764,-0.418,-0.2332,-0.2656,-0.3118,0.2794,0.8984,1,0.6998,0.769,0.8014,0.492,0.4642,0.4042,0.5104,0.575,0.6906,0.455,0.1964,0.0532,0.1548,0.0162,0.1316,0.5058,0.5796,0.4688,0.709,0.381,0.317,-1,-1,1,-1,-1,-1,0.2666,-1,-0.5472,-0.0754,-0.2264,-0.0754,-0.1886,-0.0188,-0.0566,-0.1886,0.0188,0.2076,0.6604,0.6226,1,0.8302,0.1698,0.132,-0.2452,0.0754,0.0754,0.1132,0.151,-0.3396,-0.0566,0.0378,0.0944,0.0188,-0.2642,-0.3774,0.0754,0.5284,0.5094,-0.3018,'11'
-0.3896,0.1042,0.319,0.4478,0.8252,0.7576,0.5982,0.319,0.23,0.0184,-0.0062,-0.0674,-0.1472,-0.0398,0.0122,0.0798,0.1688,0.2914,0.6226,0.8866,1,0.9478,0.7914,0.8712,0.9326,0.8742,0.9694,0.905,0.6042,0.5398,0.497,0.2516,-0.5758,-0.3468,0.0168,0.1628,0.349,0.6408,0.5242,-0.0146,0.1066,0.0594,0.082,0.0012,0.091,0.0796,0.2234,0.3378,0.4612,0.679,0.9664,0.9528,0.8564,0.8272,0.8316,0.8922,0.9888,1,0.9394,0.9686,0.8474,0.7688,0.67,0.441,-0.6738,-0.455,-0.1936,-0.0294,0.4448,0.5846,0.2604,-0.07,-0.0374,0.07,-0.1226,-0.1004,0.0212,0.1448,0.0274,0.2522,0.4144,0.536,0.9514,0.9858,0.7386,0.6352,0.7426,0.844,0.8886,0.998,1,0.846,0.8136,0.769,0.6738,0.4488,-0.5792,-0.417,-0.2114,-0.0018,0.3924,0.4774,0.1056,-0.0434,-0.0548,-0.0472,-0.1982,-0.0472,-0.066,0.0566,0.0246,0.2038,0.3132,0.5094,0.8226,0.7982,0.8094,0.6716,0.7396,0.849,0.9114,1,0.9208,0.8416,0.7906,0.7812,0.685,0.6076,-0.644,-0.431,-0.2318,0.0936,0.1592,0.3864,-0.0164,-0.3138,-0.3138,-0.2904,-0.534,-0.3748,-0.2552,-0.1148,-0.2622,0.007,0.157,0.2366,0.6652,0.7634,0.9228,0.7588,0.747,0.8454,0.9368,1,0.9392,0.8244,0.616,0.6932,0.651,0.466,-0.5284,-0.2302,-0.0056,0.25,0.3694,0.091,-0.142,-0.4204,-0.4432,-0.5056,-0.571,-0.5482,-0.3778,-0.4148,-0.3296,-0.2756,-0.142,0.017,0.3068,0.7642,0.7358,0.6676,0.696,0.6818,0.8978,1,0.6846,0.4374,0.3552,0.1676,0.1506,0.1932,-0.1724,0.8344,0.2552,0.269,0.1794,0.138,-0.1104,0.0758,-0.469,-0.7586,-0.8068,-0.2828,-0.0414,0,0.3724,-0.062,-0.2,-0.0276,0.2344,0.1862,-0.069,-0.469,0.2482,0.5932,1,0.7862,0.2138,-0.2276,-0.2482,-0.138,-0.0138,-0.0276,0.1112,0.6444,0.5556,0.6444,0.6,0.6,0.5556,0.4666,0.1112,0.1112,0.0222,-0.4222,-0.5556,-0.2,0.0222,0.0666,0.1556,0.1112,0.3778,0.6444,0.8666,0.9112,0.8222,0.9112,1,0.9556,0.8222,0.6888,0.3334,0.5112,0.4222,0.4666,-0.4118,0.1176,0.2352,0.4706,0.7648,0.7648,0.2352,0.2352,0.1176,-0.2942,-0.4706,-0.2942,-0.4118,-0.4118,-0.5882,-0.647,-0.1764,0.1176,0.2352,0.647,1,0.9412,0.2942,0.647,0.7058,0.647,0.7058,0.7648,0.5882,0.4706,0.2942,-0.0588,-0.6202,-0.367,-0.1392,0.1392,0.1898,0.2152,-0.0632,-0.5696,-0.443,-0.2912,-0.2912,-0.443,-0.3924,-0.4684,-0.3924,-0.1898,-0.0126,0.114,0.2152,0.8228,0.9494,0.8988,0.7974,0.8228,0.924,1,0.7216,0.7468,0.595,0.443,0.3924,0.4178,-1,-0.922,-0.9074,-0.8488,-0.8048,-0.8292,-0.8488,-0.8146,-0.8146,-0.8586,-0.7464,0.6342,0.6586,0.6878,0.844,0.7952,0.5024,0.244,-0.0292,-0.1512,-0.322,-0.639,-0.8732,-0.8926,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9756,-0.9736,-0.8866,-0.761,-0.6232,-0.7152,-0.7114,-0.8384,-0.8834,-0.8544,-0.5742,-0.079,0.5182,0.5852,0.8944,0.7404,0.1324,-0.2824,-0.5922,-0.8538,-0.9304,-0.964,-0.9684,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9798,-0.98,-0.82,0.74,0.77,0.8566,0.5766,0.31,0.0066,0.1332,-0.6684,-0.4284,-0.28,-0.2934,-0.3068,-0.3108,-0.254,-0.3786,-0.334,-0.8586,-0.8248,-0.9134,-0.94,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2286,-0.6,1,1,-0.1714,-0.7428,0.5142,0.9142,-0.2572,0.0858,0.6,-0.1142,-0.8572,-1,-1,-1,-0.9142,-0.9142,0.4,0.6858,-0.8,-0.7428,-0.8858,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.997,1,1,1,1,1,1,1,1,1,0.8406,0.8162,0.8204,0.8042,0.8296,0.8346,0.8342,0.8472,0.877,0.75,-0.4134,0.5058,-0.8524,-0.7816,-0.6342,-0.5182,-0.4854,-0.8584,-0.7102,-0.5512,-0.523,-0.378,-0.424,-0.3462,-0.0742,-0.2474,-0.1838,-0.2332,-0.0212,0.2792,0.3392,0.7632,0.9328,0.947,0.9612,0.7102,0.795,0.9258,0.954,1,0.9434,0.894,0.8622,0.9364,0.8374,0.7386,0.7138,0.735,0.6326,0.417,-0.7404,-0.5952,-0.3726,-0.3322,-0.4132,-0.4806,-0.393,-0.2984,-0.1736,-0.0726,0.1838,0.5784,0.484,0.9292,1,0.9392,0.8178,0.6964,0.764,0.8078,0.7572,0.6594,0.7572,0.8146,0.6392,0.8246,0.7032,0.683,0.656,0.7134,0.6662,0.221,-0.6238,-0.4934,-0.2514,-0.3222,-0.3446,-0.4302,-0.229,-0.2142,-0.2774,0.1806,0.918,1,0.7504,0.7952,0.6686,0.337,0.1248,0.27,0.3482,0.445,0.8324,0.5344,0.1174,-0.0316,0.136,0.0094,0.121,0.162,0.3632,0.3446,0.6126,0.2998,-0.5014,-1,1,-1,-1,-1,-1,0.5,-1,0.5076,0.6616,0.6924,0.5384,0.6308,0.723,0.723,1,0.2308,0.5692,0.5692,0.5692,0.877,0.6616,0.477,0.4462,0.6,0.3538,0.5076,0.2616,0.323,0.723,0.5692,0.7846,0.477,0.5076,0.6924,0.3846,0.3538,0.5692,0.6308,0.477,'11'
-0.3384,0.1034,0.226,0.3206,0.7114,0.6372,0.6808,0.3026,0.1468,-0.0932,-0.1776,-0.0728,0.0652,0.1238,0.2414,0.3002,0.5684,0.8722,0.9132,0.6372,0.3564,0.3768,0.364,0.479,0.6246,0.8928,1,0.9694,0.8288,0.8264,0.7038,0.6832,-0.3248,0.0254,0.2142,0.2442,0.4678,0.6198,0.6982,0.6798,0.5668,0.1798,0.2512,0.1958,0.3986,0.5968,0.659,0.9308,0.7442,0.5922,0.3964,0.2788,0.2466,0.2166,0.2004,0.47,0.606,0.7972,1,0.9378,0.7834,0.7328,0.6982,0.682,-0.3612,-0.058,0.1566,0.1566,0.3232,0.649,0.8434,1,0.5934,0.6364,0.7954,0.707,0.8156,0.9444,0.4344,0.2602,0.3914,-0.058,0.0858,0.197,-0.0984,0.0556,0.1162,0.2248,0.4242,0.5,0.8612,0.841,0.5252,0.553,0.5176,0.5454,-0.3482,-0.0576,0.157,0.2304,0.343,0.767,0.8874,0.945,0.8194,1,0.9922,0.3298,0.157,0.1362,-0.1596,-0.1362,-0.1806,-0.4634,-0.2382,-0.309,-0.665,-0.5026,-0.513,-0.6414,-0.2514,-0.2906,0.0916,0.5236,0.4634,0.1308,0.1884,0.2592,-0.3032,-0.0156,0.1876,0.4246,0.6474,0.9352,0.9182,0.8928,1,0.526,0.337,0.0662,-0.23,-0.3654,-0.3342,-0.543,-0.4724,-0.4894,-0.6954,-0.5204,-0.6136,-0.732,-0.8872,-0.7546,-0.6192,-0.4246,-0.227,0.1734,0.4302,0.3174,0.182,0.213,-0.2052,0.1666,0.4584,0.8108,1,0.7692,0.7884,0.9456,0.3782,0,-0.1892,-0.5032,-0.5544,-0.5416,-0.6186,-0.718,-0.7276,-0.7692,-0.8462,-0.9294,-0.782,-0.8174,-0.75,-0.8334,-0.7532,-0.673,-0.5642,-0.5192,-0.1154,-0.0416,-0.2436,-0.1858,-0.1528,0.5462,0.3334,0.2962,1,0.6342,0.574,0.338,0.1806,-0.6806,-0.7038,-0.6852,-0.426,-0.5,-0.662,-0.5462,-0.4444,-0.588,-0.8102,-0.6388,-0.4862,-0.5046,-0.5186,-0.7962,-0.6574,-0.3056,-0.3888,-0.6574,-0.7408,-0.1388,-0.1898,-0.1666,-0.5,-0.1,-0.3,-0.2,0.15,0.25,0.1,-0.35,-0.45,-0.6,-0.5,-0.55,-0.4,-0.45,-0.55,-0.55,-0.25,0.5,1,0.9,0.4,-0.15,0.05,0.2,0.45,0.6,0.85,0.95,0.65,0.5,0.35,0.35,-0.4706,0,0,0.1764,0.353,0.353,0.4118,-0.4706,-0.4706,-0.7058,-0.5294,-0.353,-0.4118,-0.0588,-0.0588,-0.2942,0.0588,0.353,0.5882,0,-0.5882,-0.1176,-0.2352,-0.4706,0.0588,0.353,1,0.9412,0.353,0.1764,0.4118,0.4118,-0.5,-0.1842,0,-0.0526,0.1578,0.5264,0.7106,0.921,0.5,0.4736,0.6842,0.5264,0.7632,1,0.6052,0.1842,0.3684,-0.1316,-0.0264,0.1316,-0.0526,0.0264,0.1578,0.3948,0.3948,0.6316,0.921,0.9474,0.2632,0.579,0.5526,0.3684,-1,-1,-1,-1,-1,-1,-0.3074,-0.7156,-0.8394,-0.899,-0.4724,0.5826,0.922,0.9174,0.6926,0.734,0.8532,0.8762,0.7386,0.6238,0.1056,-0.4174,-0.8074,-0.9036,-0.922,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7942,-0.8824,-0.8918,-0.8788,-0.706,0.0136,0.558,0.7236,0.8624,0.645,0.4898,0.3698,0.1782,-0.2122,-0.5884,-0.7918,-0.9154,-0.92,-0.9436,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8682,-0.7948,-0.5282,-0.3682,-0.1882,-0.4682,-0.4632,-0.3614,-0.4754,-0.7092,-0.7084,-0.6832,-0.757,-0.7878,-0.837,-0.8278,-0.7068,-0.7934,-0.86,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6572,-0.6572,-0.8572,-0.3714,1,1,-0.6572,-0.7714,-0.4858,-0.5714,-0.6858,-0.6,-0.8572,-0.6,-0.9428,-0.7142,-0.7428,-0.8858,-0.7142,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.512,0.5156,0.4958,0.4738,0.4606,0.3864,0.2882,0.0854,-0.0596,-0.2432,-0.4934,0.5412,-0.7248,-0.2758,-0.1346,-0.0288,0.2404,-0.5834,-0.2738,-0.2514,-0.4302,0.0726,-0.0502,0.1956,0.1174,0.1062,0.162,0.4414,0.4748,0.4526,0.609,0.8436,0.8882,0.7318,0.4636,0.7766,0.7766,0.4078,0.743,0.2626,-0.3632,0.162,0.2178,0.3408,0.3072,0.419,0.877,1,0.8324,0.6536,-0.5048,-0.3786,-0.4368,-0.1942,-0.3884,-0.3106,-0.2234,-0.0874,-0.1456,0.3884,0.3496,0.3884,0.3592,0.6504,0.6408,0.4466,0.3884,0.6504,0.67,0.4758,0.5632,0.1844,-0.1942,-0.0874,-0.1166,-0.0388,0.4854,0.7282,1,0.6894,0.6894,0.3496,0.0102,0.1616,-0.1314,0.0404,-0.2424,-0.202,-0.4546,-0.101,0.1818,0.7878,0.7778,0.3232,0.5656,1,0.9696,0.7676,0.5758,0.7878,0.4848,0.6566,0.6566,-0.0202,-0.2424,-0.0708,0.293,0.3334,0.3636,0.4444,0.909,0.9394,0.899,0.303,-0.946,-1,1,-1,-0.8,-1,-1,-0.4,-1,-0.591,-0.3864,-0.1136,-0.2046,0.341,0.341,0.0682,0.0228,-0.1136,0.0682,-0.1364,0,-0.0454,-0.25,0.2728,0.5454,1,0.7272,0.3182,0.1136,0.2728,0.1136,0.2954,0.841,0.3864,-0.1136,0.3636,0.3182,0.2272,0.4546,-0.25,-0.5228,'12'
-0.481,-0.1146,0.2654,0.289,0.5102,0.5514,0.618,0.236,0.0696,-0.0324,-0.003,-0.0166,-0.3066,0.191,0.2066,-0.0206,0.3556,0.4986,0.6612,0.853,0.951,0.7414,0.7316,0.6944,0.7864,0.8922,0.9726,1,0.998,0.8432,0.7532,0.8022,-0.2958,0.077,0.4626,0.454,0.48,0.987,1,0.7422,0.4366,0.4562,0.3434,0.168,0.2394,0.5298,0.5514,0.571,0.8614,0.7184,0.4822,0.3542,0.311,0.4322,0.3412,0.3586,0.571,0.6858,0.8374,0.8764,0.8114,0.6252,0.6014,0.5948,-0.3946,-0.1022,0.186,0.178,0.3272,0.8058,0.8998,1,0.6176,0.6216,0.6872,0.728,0.6564,0.7158,0.2802,0.1166,0.1452,-0.1104,-0.139,-0.1288,-0.139,-0.1002,-0.0266,0.1002,0.1984,0.2904,0.4028,0.4274,0.2658,0.1226,0.049,0.1636,-0.4166,-0.148,0.1038,0.2906,0.5488,0.872,0.9748,0.9728,0.66,1,0.9244,0.5404,0.0284,-0.0388,-0.0158,-0.318,-0.3934,-0.381,-0.3934,-0.5634,-0.576,-0.658,-0.5614,-0.5592,-0.509,-0.469,-0.129,0.1228,0.192,0.0052,-0.127,-0.1332,-0.3296,-0.0182,0.2864,0.6228,0.75,1,0.891,0.95,0.8682,0.6386,0.4136,-0.184,-0.3954,-0.559,-0.4772,-0.584,-0.6364,-0.5432,-0.5568,-0.616,-0.734,-0.784,-0.684,-0.675,-0.6682,-0.6204,-0.6046,-0.2046,-0.0068,-0.0022,-0.0818,-0.1682,-0.19,0.2654,0.5308,0.729,1,0.9134,0.8826,0.6928,0.2906,0.1174,-0.4554,-0.5446,-0.5336,-0.5978,-0.433,-0.5614,-0.7262,-0.69,-0.7234,-0.7346,-0.6872,-0.757,-0.7738,-0.609,-0.5308,-0.4554,-0.771,-0.5224,-0.1844,0.2068,0.2682,0.1284,-0.0314,1,0.5654,0.6806,0.7016,0.7802,0.5864,0.3142,0.335,0.0158,-0.309,-0.5078,-0.3194,-0.3036,-0.0942,-0.1256,-0.1728,-0.1624,-0.6336,-0.5078,-0.4136,-0.5236,-0.5392,-0.3612,-0.2146,-0.2198,-0.7906,-0.8062,-0.2984,0.555,0.335,0.2252,-0.6744,-0.2558,-0.0698,0.2558,0.5348,0.4884,0.3024,0.0232,-0.2094,-0.2094,-0.721,-0.4418,-0.3954,-0.1628,-0.3024,-0.1162,-0.3954,0.1162,-0.0232,0.1628,0.3488,0.4418,0.4884,0.5348,0.6744,0.814,0.907,0.9534,0.907,0.9534,1,0.907,-0.6956,-0.174,0.087,0.3044,0.2608,-0.1304,0.3044,0.2608,0.174,-0.1304,-0.2174,0,0,-0.174,0.0434,0.174,0.174,0.1304,0.6522,0.826,0.8696,0.6522,0.6086,0.5652,0.6956,0.913,0.9566,0.7826,0.7392,1,0.9566,0.4348,-0.4594,-0.1082,0.2162,0.2162,0.3514,0.7568,0.8378,1,0.6756,0.4864,0.4324,0.4324,0.5406,0.6486,0.5946,0.5136,0.3784,0.054,-0.1082,-0.054,0.054,0.081,-0.1622,0.2162,0.2972,0.5406,0.3784,0.2972,-0.054,0.3244,0.1622,0.081,-1,-1,-1,-1,-1,-1,-0.917,-0.9354,-0.94,-0.9078,-0.2672,0.7004,0.871,0.7972,0.6452,0.6958,0.8342,0.6544,0.6636,0.4378,0.0276,-0.507,-0.894,-0.9032,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.958,-0.9558,-0.9474,-0.9138,0.0488,0.527,0.1424,0.1078,0.194,0.2654,0.3432,0.029,-0.196,-0.465,-0.6858,-0.8476,-0.9464,-0.9442,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9798,-0.9468,-0.86,-0.5134,-0.18,-0.2068,-0.568,-0.5438,-0.6238,-0.64,-0.7438,-0.7238,-0.815,-0.8476,-0.8788,-0.8464,-0.88,-0.9368,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.1714,-0.6,-0.5428,1,1,1,-0.6,-0.6286,-0.5142,-0.8286,-0.9142,-0.9142,-0.9714,-0.8572,-0.7714,-0.6858,-0.8572,-0.8572,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.6494,0.6346,0.632,0.6022,0.5916,0.5454,0.3798,0.1142,-0.1864,-0.331,-0.4934,0.9294,0.2686,0.3926,0.2012,0.6868,1,0.6084,-0.6666,-0.1666,0.2916,0.2084,0.0416,-0.0834,-0.0834,-0.0416,0.125,0.5416,0.6666,0.5834,0.7916,0.9166,0.9584,1,0.875,0.7084,0.5834,0.375,0.3334,0.1666,-0.2084,-0.4584,-0.25,-0.2084,-0.3334,-0.0834,0.0416,0.0416,0.0834,-0.4584,-0.674,-0.0434,0.1086,0.1086,0,-0.413,-0.3696,-0.0218,0.0652,0.4782,0.674,0.6304,0.6956,0.7608,1,0.8044,0.6086,0.8044,0.7174,0.5218,0.5434,0.4566,-0.413,-0.5,-0.2174,-0.2174,-0.2392,0.0434,0.0434,0.1086,0.2392,0,-0.2674,0.0694,0.1882,0.208,-0.0298,-0.2674,-0.0496,-0.0496,0.208,0.802,0.901,0.703,0.7426,1,0.9208,0.8416,0.604,0.7426,0.6238,0.505,0.5248,0.406,-0.1684,-0.2872,-0.2278,-0.1288,-0.1288,0.0298,0.2872,0.307,0.3664,0.1684,0.5324,-1,-1,1,-1,-1,-1,-0.8334,-1,0.077,0.323,0.1692,-0.0462,0.2308,0.6308,0.9692,0.6308,0.723,0.077,0.477,0.077,0.1384,-0.0462,0.5076,0.877,1,0.6616,-0.1384,0.323,0.5692,0.4462,0.477,0.1384,0.3538,0.0462,0.477,0.3538,-0.1692,0.2616,0.077,-0.323,'12'
-0.2116,0.2024,0.4222,0.4596,0.7216,0.5954,0.434,0.069,0.0036,-0.2234,-0.055,-0.0854,-0.1064,-0.0854,-0.1158,-0.2654,-0.172,0.0316,0.6796,0.745,0.731,0.6188,0.593,0.4246,0.4012,0.5812,0.9416,1,0.9252,0.8316,0.8316,0.5462,-0.1012,0.3426,0.5702,0.5702,0.6882,0.5084,0.5112,0.3174,0.045,0.0506,0.3512,0.191,0.2808,0.4242,0.4016,0.5224,0.6854,0.587,0.5646,0.4074,0.3988,0.2078,0.2838,0.382,0.323,0.4832,0.7612,1,0.9776,0.8062,0.559,0.604,-0.2708,0.0756,0.2586,0.222,0.4024,0.4976,0.4414,0.3122,0.144,0.1,0.2196,0.5952,0.6464,0.8366,1,0.956,0.4854,0.1708,0.0122,-0.2488,-0.4464,-0.483,-0.4318,-0.1048,0.0682,0.3902,0.5756,0.522,0.3292,0.2048,0.061,0.1976,0.0912,0.6214,0.7522,0.704,0.8554,0.6524,0.58,0.487,0.7488,0.7418,0.9552,1,0.9586,0.7728,0.766,0.797,0.2426,-0.074,-0.0568,-0.1498,-0.2426,-0.2358,-0.4698,-0.0602,0.3838,0.5904,0.3288,0.339,0.5146,0.4768,0.611,0.7452,0.3202,1,0.945,0.9686,0.3006,-0.116,-0.7486,-0.5482,0.4382,0.5914,0.8586,0.6582,-0.2024,0.5914,0.5128,-0.1552,-0.3164,-0.3398,-0.721,-0.218,-0.1316,-0.277,-0.0334,0.2298,-0.4852,-0.6896,-0.7524,-0.5246,-0.556,-0.108,0.45,0.552,0.2644,1,0.678,0.8136,-0.0542,-0.2,-0.7728,-0.2644,-0.1016,0.5118,0.295,-0.244,-0.1762,-0.1424,-0.4204,-0.2474,-0.3424,-0.5424,-0.6306,-0.4848,-0.4204,-0.461,-0.478,-0.478,-0.5424,-0.7424,-0.9254,-0.9152,-0.5186,-0.2542,0.1118,0.2406,0.099,1,0.785,0.4096,-0.1844,-0.7816,-0.5222,-0.3344,-0.1434,-0.2798,-0.1194,-0.413,-0.43,-0.1366,-0.3754,-0.4334,-0.6144,-0.5222,-0.6758,-0.4506,-0.1126,-0.4164,-0.546,-0.6518,-0.471,-0.6552,-0.7646,-0.8226,-0.5972,-0.4506,-0.1808,-0.082,-0.2592,0.1112,0.2222,0.2222,0.3704,0.2222,0.4074,0.1482,-0.2222,-0.037,-0.1112,-0.3334,0.037,0.074,-0.1852,0,0.1112,0.037,0.6296,0.7038,0.7038,0.7038,0.6666,0.6666,0.6666,0.926,0.926,1,0.8888,0.963,0.8888,0.8518,-0.1666,0.1,0.3334,0.3334,0.4,0.3666,0.4,-0.0666,-0.0666,0,-0.2,-0.1,0.1,0.0666,0,0.2334,0.2666,0.2666,0.6,0.8666,0.8,0.8,0.8,0.7666,0.5666,0.8334,0.9334,0.9666,0.8,1,0.9,0.7334,-0.0666,0.5556,0.5556,0.6444,1,0.6888,0.6,-0.0222,0.6,0.5556,0.7334,0.4222,0.4222,0.3334,0.6,0.6,-0.0222,-0.1112,-0.1556,-0.3778,-0.0666,-0.1112,-0.7334,-0.5112,-0.0222,0.4666,-0.0222,0.0222,0.1556,0.3334,0.4666,0.4222,-1,-1,-1,-1,-1,-0.882,-0.9082,-0.8952,-0.8472,-0.4848,-0.1834,0.7642,0.8778,0.7074,0.7554,0.8864,0.8254,0.834,0.8034,0.8952,0.882,0.1966,-0.7948,-0.8952,-0.917,-0.9082,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.882,-0.9448,-0.9244,-0.896,-0.4496,0.184,0.3484,6e-04,-0.043,0.3418,0.2816,-0.0686,-0.3342,-0.3662,-0.3586,-0.365,-0.5998,-0.9114,-0.932,-0.9448,-0.841,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7534,-0.8734,-0.7934,-0.6034,-0.33,-0.2568,-0.3734,-0.588,-0.5414,-0.4334,-0.572,-0.8334,-0.8214,-0.8774,-0.8614,-0.8748,-0.8628,-0.9268,-0.7868,-0.9468,-0.54,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6286,-0.7142,-0.7428,0.4572,1,1,0.6286,-0.9142,-0.7142,-0.7714,-0.7142,-0.0858,-0.8,-1,-0.9428,-0.7714,-0.2286,-0.2286,-0.8858,-0.0572,0.5714,-1,-1,-1,-1,-1,-1,-1,0.8852,0.8766,0.858,0.853,0.8362,0.8094,0.7984,0.8216,0.8838,0.214,0.6504,0.6152,0.5586,0.567,0.5168,0.4694,0.319,0.078,-0.2314,-0.4224,-0.5466,0.8236,0.5126,0.4586,1,0.4304,0.0186,-0.2,-0.125,0.0834,0.125,0.0416,-0.1666,-0.3334,-0.2084,-0.0834,0.2084,0.4166,0.625,0.5834,0.6666,0.9166,1,0.9584,0.7084,0.4584,0.375,0,-0.0416,-0.4166,-0.5416,-0.3334,-0.125,-0.125,0.0416,0.1666,0.0416,0.1666,0.2084,0.0416,-0.3138,0,0.098,0.1764,-0.1568,-0.2746,-0.2156,-0.2746,-0.0392,0.4706,0.7254,0.647,0.745,0.8628,1,0.7648,0.6078,0.6862,0.6274,0.1764,0.098,-0.3726,-0.6078,-0.255,-0.1568,-0.255,-0.1176,0.098,0.0784,0.2352,0,-0.1176,-0.179,-0.0106,0.4106,0.2632,-0.0316,-0.2632,-0.0948,-0.1158,0.0948,0.6842,0.8106,0.7264,0.8526,1,1,0.979,0.7052,0.7474,0.7264,0.4106,0.3894,-0.4526,-0.2632,0.0316,0.0106,-0.179,0.0948,0.3052,0.4316,0.3052,0.221,-0.1158,1,-1,-1,1,-0.8,-1,-1,-0.8334,-1,-0.0656,-0.2116,-0.0802,0.124,-0.0072,0.2554,0.3138,0.416,0.124,0.3284,0.2116,0.343,0.3284,0.1678,0.2554,0.6204,0.562,0.5474,0.781,0.7226,0.7372,0.5328,0.8394,1,0.8832,0.9708,0.9124,0.781,0.8686,0.7664,0.4598,0.27,'13'
-0.5672,-0.2202,0.022,0.0734,0.1058,0.1516,0.224,-0.1058,-0.1898,-0.102,-0.3156,-0.348,-0.2068,-0.0486,-0.022,-0.0352,0.1954,0.3098,0.6378,0.6434,0.6758,0.5386,0.4642,0.6454,0.6472,0.7388,1,0.96,0.796,0.7922,0.7274,0.512,-0.3832,-0.0408,0.2244,0.2132,0.4308,0.415,0.4082,0.4648,0.2336,0.1542,0.068,-0.0566,-0.0226,0.2064,0.4558,0.5874,0.8866,0.7552,0.8412,0.5192,0.2064,0.186,0.1904,0.4376,0.619,0.7278,0.9614,1,0.8504,0.7688,0.635,0.703,-0.3404,-0.0284,0.097,0.2648,0.416,0.5296,0.6052,0.7164,0.4444,0.3878,0.4776,0.461,0.6832,0.7328,1,0.7684,0.5082,0.0118,-0.1654,-0.3428,-0.1726,-0.2836,-0.454,-0.1584,0.1608,0.338,0.532,0.364,0.2624,0.2742,0.182,0.3356,-0.2076,0.1448,0.2296,0.4918,0.6394,0.6858,0.8852,1,0.5792,0.6584,0.7268,0.9208,0.6804,0.6174,0.6748,0.4234,-0.1202,-0.1912,-0.358,-0.3552,-0.194,-0.4072,-0.5356,-0.3114,-0.1968,0.4398,0.6284,0.306,0.2214,0.3224,0.317,0.5574,0.0708,0.5858,0.5448,0.4366,0.5522,-0.1754,-0.112,0.041,0.8134,0.7686,1,0.403,0.2126,0.1604,0.2238,0.0634,-0.2126,-0.4962,-0.4402,-0.056,0.3022,0.194,0.0074,0.0486,0.0112,-0.5598,-0.5522,-0.4888,-0.3208,0.306,0.7164,0.9402,0.1614,0.8994,0.543,0.61,0.153,-0.2286,-0.7274,-0.6058,-0.0566,0.0986,0.304,0.1154,-0.0818,0.1446,0.1362,-0.5932,-0.2202,-0.3542,-0.2244,-0.0566,0.2746,0.2872,0.1362,0.1656,-0.002,-0.4592,-0.5974,-0.4716,-0.4758,0.0944,0.434,1,-0.1014,1,0.6474,0.1062,-0.6812,-0.6086,-0.826,-0.6038,-0.6086,-0.4058,-0.3334,-0.5218,-0.0386,-0.116,-0.1836,-0.4976,-0.3768,-0.3478,-0.5458,-0.2416,-0.0676,0.0772,-0.2512,-0.4058,-0.1256,-0.1884,-0.5266,-0.657,-0.6908,-0.3816,-0.1498,0.4542,-0.7058,0.0588,0.0588,-0.1764,-0.2942,-0.1764,-0.1764,-0.1176,-0.1764,-0.2942,-0.2942,-0.353,-0.5294,-0.5882,-0.4706,-0.1764,-0.0588,0.1764,0.4118,0.5294,0.7648,0.7058,0.7058,0.647,0.7648,0.647,0.7058,0.9412,1,0.8824,0.7648,0.7058,-0.5714,-0.3214,0.0358,0.0714,0.1786,0.1786,0.2142,-0.0358,-0.0358,-0.1072,-0.1428,-0.1428,-0.3214,0.0358,0.1072,0.0714,0.2858,0.4642,0.4642,0.8214,0.8928,0.75,0.6428,0.7142,0.6428,0.9286,1,0.8214,0.8572,0.8928,0.6072,0.6786,0,0.4286,0.4286,0.8572,0.9642,0.7858,0.8928,1,0.6786,0.8928,0.8572,0.7858,0.3928,0.3928,0.6786,0.2858,-0.1786,-0.0714,-0.1072,-0.2142,-0.3928,-0.0714,-0.25,-0.2142,0.25,-0.1428,0.1428,-0.0714,0.0714,0.3928,0.2858,0.6428,-1,-1,-1,-1,-1,-1,-0.8344,-0.8598,-0.8344,-0.8726,-0.8026,0.7324,0.9618,0.7834,0.7262,0.6496,0.6688,0.414,0.363,0.3758,0.1656,-0.3312,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9594,-0.9536,-0.9426,-0.9442,-0.6562,0.3292,-0.0334,-0.3654,-0.303,-0.406,-0.4584,-0.679,-0.7118,-0.7466,-0.8022,-0.8918,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9692,-0.8934,-0.76,-0.7,-0.1834,-0.053,-0.0472,-0.293,-0.392,-0.52,-0.6376,-0.7742,-0.6982,-0.8448,-0.8916,-0.9156,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3142,-0.8858,-0.8286,-0.0572,1,1,-0.7142,-0.5142,-0.6286,-0.8858,-0.5714,-0.2572,-0.9428,-0.8572,-0.9428,-0.7142,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.5848,0.835,0.8578,0.8764,0.8708,0.8428,0.7866,0.6366,0.3696,-0.0586,-0.2568,-0.5066,0.7882,-0.5632,-0.2886,0.7946,0.684,0.106,0.3,0.0052,0.1322,0.0794,0.5978,0.4814,0.4498,0.5768,0.8412,0.2486,0.365,0.3968,0.619,0.8836,0.8096,0.7038,0.6296,1,0.947,0.8202,0.4708,0.6614,0.5132,0.5344,0.3862,0.2276,0.3228,0.4074,0.1958,0.1852,0.344,0.3968,0.2486,-0.3282,-0.081,-0.197,0.1814,-0.0502,0.0424,0.166,0.058,-0.081,0.027,0.112,0.2972,0.6912,0.8302,0.7142,0.583,0.776,1,0.8688,0.6138,0.1428,-0.0348,0.0502,-0.0734,0.1814,0.3128,-0.0038,0.1274,0.251,0.1584,0.2972,0.166,-0.726,-0.5852,-0.363,0.0518,-0.0814,-0.3038,-0.437,-0.3186,-0.363,0.3334,0.437,0.2148,0.3778,0.7482,0.7334,0.6,0.7704,0.9926,1,0.5482,0.4074,0.037,-0.1556,-0.4,-0.0518,0.0444,-0.4074,-0.1852,0.326,0.6814,0.5778,0.0888,-0.9916,1,-1,-1,-1,-1,-1,-1,-1,0.5834,0.6388,0,0.8612,0.6944,0.4722,0.4722,0.8612,0.5834,0.3612,0.75,1,0.8056,0.3612,0.5556,0.3888,0.6666,0.4444,0.3056,0.4722,0.1944,-0.0556,0.5834,0.3056,0.0278,0.3056,0.3334,0.1666,0.25,0.3334,-0.3612,-0.75,'13'
-0.516,-0.212,0.1686,0.1976,0.1562,-0.0176,-0.0362,-0.0672,-0.154,-0.636,-0.4106,-0.4478,-0.547,-0.6546,-0.5118,-0.3422,-0.396,-0.2968,-0.0776,0.0652,0.514,0.8386,0.8552,0.6318,0.6028,0.6752,0.6526,0.6442,0.9504,1,0.8552,0.6504,-0.482,-0.2318,0.0946,0.0576,0.1622,0.1186,0.0534,-0.1012,-0.3232,-0.2492,-0.1404,-0.482,-0.3994,-0.3428,-0.5952,-0.4102,-0.3862,-0.1622,0.0968,0.3232,0.7388,0.728,0.654,0.728,0.63,0.6452,0.789,0.7824,0.9674,1,0.8064,0.802,-0.4108,-0.166,0.1136,0.246,0.3434,0.3858,0.221,-0.0512,0.0936,-0.0986,-0.131,-0.3008,-0.2134,-0.3058,-0.191,0.1786,0.2834,0.6454,0.6954,0.5032,0.3308,0.4432,0.3034,0.2884,0.3558,0.5606,0.643,0.7554,1,0.8976,0.5956,0.7428,-0.265,0.0632,0.2512,0.5624,0.641,0.5794,0.412,0.3812,0.135,0.0462,-0.0872,-0.2376,0.0462,0.2616,0.7436,1,0.918,0.853,0.4324,0.176,-0.0052,-0.1282,-0.4256,-0.1146,-0.0872,0.0872,0.4428,0.7026,0.812,0.7676,0.6308,0.6136,0.1026,0.5804,0.5758,0.7544,0.8884,0.4688,0.134,0.1562,-0.009,-0.2054,-0.3036,-0.4956,0.0804,0.884,1,0.5358,0.2858,0.3036,-0.1474,0.1608,0.1206,-0.2544,-0.3392,-0.3482,-0.2098,-0.1964,-0.0492,0.1964,0.4688,0.3258,0.134,-0.3214,0.3474,1,0.878,0.756,0.9628,0.427,0.2096,-0.3634,-0.1672,-0.358,-0.5014,-0.581,-0.1884,0.0026,0.39,0.1406,-0.1352,-0.5544,-0.4058,-0.1884,-0.0716,-0.0504,-0.1246,-0.3316,-0.1512,-0.114,-0.1352,0.0716,0.0716,-0.2466,-0.549,-0.6286,0.1272,1,0.5948,0.4234,0.1064,-0.0962,-0.0598,-0.091,-0.309,-0.2,-0.091,-0.278,0.2832,0.8338,0.8234,0.5896,-0.1532,-0.091,-0.1428,-0.0598,-0.1324,-0.2988,-0.5532,-0.2832,0.1324,0.2832,0.3766,0.6156,0.5896,0.2884,0.1012,0.174,-0.491,-0.2,0.2,0.1636,0.2,0.091,-0.1272,0.0182,-0.1272,-0.4546,-0.4182,-0.4182,-0.4546,-0.3818,-0.1636,-0.0546,-0.1636,-0.0546,0.1272,0.2364,0.709,0.8546,0.709,0.709,0.7818,0.709,0.7818,0.7818,0.891,1,1,0.6,-0.5472,-0.3208,0.0944,0.1698,0.1698,0.0944,-0.2076,-0.1698,-0.283,-0.5472,-0.3584,-0.5094,-0.5094,-0.7736,-0.3208,-0.2452,-0.283,-0.283,-0.0944,0.132,0.283,0.8114,0.7358,0.6226,0.5472,0.5094,0.6226,0.5472,0.6982,1,0.849,0.3962,0.1186,0.4576,0.4916,0.7966,0.8644,0.5932,0.2542,0.2542,0.2204,0.017,-0.017,-0.2882,0.2542,0.9662,1,0.661,0.322,0.2204,0.1864,0.3898,0.356,-0.1186,-0.7288,-0.661,-0.0848,-0.1526,0.017,0.3898,0.5932,0.3898,0.356,0.3898,-1,-1,-1,-1,-1,-0.908,-0.931,-0.8942,-0.9126,-0.8758,-0.0344,0.669,0.9586,0.7656,0.7334,0.623,0.4574,0.269,-0.0114,0.0344,0.0758,-0.2368,-0.8988,-0.8804,-0.9034,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.958,-0.958,-0.958,-0.9522,-0.9328,0.231,0.612,0.772,0.6336,0.309,-0.2192,-0.4406,-0.5526,-0.7232,-0.727,-0.7174,-0.7456,-0.9406,-0.9406,-0.9416,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9394,-0.9468,-0.8668,-0.8934,-0.6468,-0.1734,0.0816,0.0932,0.0816,-0.005,-0.3134,-0.4934,-0.665,-0.8462,-0.7832,-0.8108,-0.6278,-0.72,-0.8134,-0.8934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2572,-0.9142,-1,-0.6,1,1,1,-0.8286,-0.8,-0.3142,-0.0572,-0.8858,0.6286,0.2286,-1,0.0286,0.2572,0.0858,-0.9428,-0.8572,-1,-1,-1,-1,-1,-1,-1,-1,0.8074,0.8156,0.8196,0.8302,0.8344,0.8434,0.8582,0.8856,0.9306,0.6256,1,1,1,1,1,1,1,0.9748,0.6106,0.0346,-0.4666,0.4824,0.3664,0.5828,0.5272,0.5448,0.6588,1,-0.6,-0.32,0.24,-0.32,-0.24,-0.52,-0.2,-0.28,-0.08,0.2,0.72,0.88,0.8,0.8,1,0.96,0.96,0.8,0.76,0.56,0.24,-0.04,-0.36,-0.08,-0.04,0.08,0.28,0.28,0.28,0.32,0.28,-0.28,-0.1172,0.2252,0.2612,-0.027,-0.1352,-0.3154,-0.2792,-0.2252,-0.3334,0.081,0.8378,0.982,0.6936,0.7298,1,1,0.8198,0.6576,0.6216,0.5316,0.4774,0.009,-0.3694,-0.1172,0.009,0.1712,0.2792,0.2792,0.2972,0.3694,0.5856,0.3154,-0.327,0.1154,0.2692,-0.077,-0.2692,-0.3462,-0.3076,-0.1538,-0.3076,0.1346,0.7692,0.9038,0.7692,0.7884,1,0.9424,0.9808,0.75,0.75,0.673,0.3846,0.0576,-0.2884,-0.1538,0.0576,0.1924,0.327,0.3076,0.3654,0.4038,0.3462,0.0962,1,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.1316,0.1052,-0.3422,0.6316,0.4736,0.421,0.8422,1,0.6578,0.5526,0.079,0.3684,0.4474,0.9474,0.8422,0.579,0.8948,0.7368,0.3948,0.6316,0.6578,0.1052,0.3684,0.2632,0.0526,0.1316,0.3158,0.3158,0.5,0.3948,0.3684,0.1578,'14'
-0.533,-0.0868,0.1838,0.2394,0.4428,0.2694,-0.015,-0.2924,-0.422,-0.5654,-0.6232,-0.6024,-0.519,-0.6232,-0.4728,-0.489,-0.5422,-0.355,0.0104,0.1654,0.6184,0.755,0.7248,0.5028,0.5422,0.6208,0.6856,0.718,0.9492,1,0.9284,0.7456,-0.406,0.0148,0.2574,0.2648,0.5396,0.1486,0.0916,-0.0966,-0.0198,-0.0222,-0.042,-0.3094,-0.2722,-0.3392,-0.4134,-0.3788,-0.3614,-0.24,0.01,0.3712,0.2798,0.198,-0.005,-0.0916,0.0644,0.0718,0.4406,0.6138,1,0.901,0.7822,0.6262,-0.3166,0.0966,0.2424,0.4146,0.6742,0.412,0.3774,0.6132,0.3034,0.2264,0.441,0.314,0.2,0.2582,0.404,0.5576,0.796,0.9814,0.894,0.502,0.2874,0.2292,-0.004,0.0066,0.004,0.065,0.5258,0.706,1,0.9258,0.9152,0.6,-0.4692,-0.1786,-0.0692,0.1942,0.3482,0.2196,0.159,0.276,0.0634,0.1318,0.2312,0.1668,0.1882,0.278,0.5942,0.9142,1,0.401,0.1864,0.2526,0.0712,-0.0908,-0.198,-0.0634,0.0518,0.1258,0.3034,0.6332,0.6996,0.7912,0.6332,0.4088,-0.1784,0.2782,0.2268,0.4122,0.6776,0.2354,0.1356,-0.1298,0.1184,0.0442,0.0984,-0.2068,0.0956,0.361,1,0.8972,0.5634,0.1584,0.1242,0.204,0.321,0.2982,-0.3694,-0.2524,-0.2868,-0.2126,0.0128,0.1698,0.438,0.4722,0.2838,0.144,0.1674,1,0.8242,0.9038,0.8662,0.4518,0.5564,-0.1506,-0.0754,0.1674,-0.159,-0.339,-0.4686,0.2678,0.887,0.9624,0.4938,0.251,0.1214,0.4394,0.385,0.3934,0.2134,0.0628,0.2176,0.0754,0.0544,0.1842,0.3892,0.3096,-0.2092,-0.2762,-0.2402,0.9804,0.5392,0.4216,0.3088,0.2794,-0.103,-0.1176,-0.0784,-0.505,-0.2598,-0.2352,-0.2696,0.3186,0.7304,0.7402,0.348,-0.0196,-0.1176,0.098,-0.103,-0.1666,-0.0588,-0.098,0.0588,0.0736,-0.049,0.505,0.8334,1,0.7352,0.3236,-0.72,-0.4,-0.04,0.12,0.12,0.04,-0.2,-0.4,-0.32,-0.4,-0.68,-0.52,-0.4,-0.4,-0.44,-0.52,-0.52,-0.48,-0.08,-0.04,0.64,0.8,0.72,0.64,0.64,0.6,0.92,0.96,0.92,1,1,0.72,-0.7022,-0.3618,-0.1914,-0.1914,0.0212,-0.0638,-0.532,-0.8298,-0.7446,-0.7872,-0.7872,-0.7022,-0.617,-0.6596,-0.7022,-0.7022,-0.6596,-0.6596,-0.1914,0.0212,0.4894,0.4468,0.7446,0.7022,0.617,0.7446,0.7872,0.9148,0.8724,1,0.8724,0.617,0.3,0.65,0.5,0.825,0.975,0.6,0.425,0.275,0.575,0.525,0.525,0.25,0.675,0.8,1,0.925,0.9,0.575,0.55,0.675,0.8,0.75,0.15,0.2,0.075,0.1,0.375,0.525,0.75,0.9,0.875,0.675,-1,-1,-1,-1,-1,-1,-0.8174,-0.8572,-0.8334,-0.8096,-0.0318,0.508,0.6666,0.5396,0.5318,0.635,0.8572,0.8412,0.4762,0.4444,0.254,-0.246,-0.627,-0.6904,-0.8492,-0.865,-0.8492,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9252,-0.9236,-0.9078,-0.8998,-0.0342,0.1552,-0.3158,-0.3748,-0.3954,-0.125,0.2028,-0.1934,-0.5784,-0.6324,-0.6642,-0.7646,-0.879,-0.8822,-0.9094,-0.9078,-0.9188,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9372,-0.9482,-0.9014,-0.6814,-0.1714,-0.4552,-0.709,-0.6128,-0.6664,-0.5544,-0.505,-0.66,-0.839,-0.8472,-0.8318,-0.7154,-0.6934,-0.8034,-0.8234,-0.92,-0.9,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3714,-0.8858,-0.6858,1,1,0.4572,-0.8858,-0.9714,-0.8858,-0.8286,-1,0.1142,0.3142,-0.9714,-0.1142,-0.5428,-0.9428,-1,-0.9714,-0.9714,-0.5428,-1,-1,-1,-1,-1,-1,0.7684,0.7666,0.7672,0.7554,0.7322,0.7216,0.7458,0.7858,0.9068,0.6926,1,0.9786,0.9416,0.8932,0.8296,0.738,0.6446,0.4382,0.0114,-0.265,-0.52,1,0.2076,0.3366,0.7964,0.5466,-0.2316,0.0334,-0.2916,-0.0416,0,-0.125,-0.375,-0.375,-0.4166,-0.4584,-0.25,-0.1666,0.5416,0.6666,0.5,0.8334,1,0.8334,0.5834,0.3334,-0.0834,0.1666,0.25,-0.2916,-0.4584,-0.375,-0.4584,-0.4584,0.0416,-0.0416,0.125,0.2084,0.0416,-0.125,-0.6566,-0.1718,0.091,-0.2122,-0.4546,-0.4546,-0.596,-0.5556,-0.495,-0.2728,0.6768,0.697,0.6162,0.7778,1,0.9394,0.697,0.3738,0.1516,0.1718,0.3536,-0.2526,-0.4546,-0.5152,-0.6162,-0.5152,-0.091,0.091,0.091,-0.091,-0.1314,-0.2324,-0.2156,-0.0392,0.0784,-0.255,-0.2352,-0.3922,-0.3922,-0.3922,-0.451,-0.098,0.6078,0.6862,0.5686,0.7648,0.9216,1,0.6078,0.4118,0.3726,0.3334,0.5098,-0.1764,-0.5098,-0.451,-0.3922,-0.1372,-0.0588,0.1176,0.1568,0.0784,0.353,0.1176,0.5942,-1,-1,1,-0.8,-1,-1,-0.8334,-1,0.3846,0.4286,0.2308,0.5604,0.4946,0.3186,0.5824,0.6924,0.4726,0.5604,0.4286,0.2088,0.2528,0.5384,0.978,0.8682,1,0.5384,0.6264,0.5164,0.4286,0.6044,0.2748,0.5164,0.2748,0.1648,0.3626,0.2968,0.4506,0.2748,-0.055,-0.8462,'14'
-0.3656,0.0296,0.316,0.5526,0.903,0.9574,0.9834,0.8556,0.9314,0.9692,0.3822,-0.0888,-0.2284,-0.3586,-0.3656,-0.335,-0.3396,-0.3184,-0.342,-0.3562,-0.3538,-0.155,-0.0604,0.2402,0.9314,1,0.6498,0.4296,0.6,0.7514,0.768,0.7776,-0.3044,0.0354,0.398,0.7012,0.918,0.9156,0.9064,0.9042,0.8974,0.911,0.2452,0.0444,-0.1198,-0.1106,-0.1722,-0.2498,-0.122,-0.1698,-0.2384,-0.081,-0.049,-0.1494,0.2634,0.5348,0.9294,0.959,0.854,0.6054,0.7194,0.9156,0.9338,1,-0.3162,0.0062,0.4188,0.8486,1,0.8192,0.8316,0.9512,0.8926,0.7362,0.099,-0.1136,-0.2698,-0.3578,-0.4212,-0.514,-0.4482,-0.4872,-0.5384,-0.5018,-0.3456,-0.3724,-0.0452,0.3114,0.9242,0.939,0.5458,0.3822,0.3724,0.5702,0.6582,0.6606,-0.3068,-0.018,0.4296,0.8532,1,0.5258,0.8748,0.9784,0.4754,0.3212,-0.0108,-0.3502,-0.5042,-0.4994,-0.5114,-0.6702,-0.6678,-0.5908,-0.6944,-0.6774,-0.5524,-0.6944,-0.2394,0.0132,0.55,0.5138,0.1022,-0.0398,-0.0686,0.1046,0.3622,0.2876,-0.2312,0.1866,0.6072,0.7604,1,0.5934,0.6518,0.8636,0.4792,-0.259,-0.5154,-0.6992,-0.6602,-0.6156,-0.674,-0.7994,-0.7354,-0.6602,-0.819,-0.83,-0.7048,-0.6992,-0.61,-0.2618,0.0056,-0.0696,-0.4374,-0.4262,-0.5126,-0.2758,-0.209,0.0168,0.0146,0.7436,0.8352,1,0.7728,0.652,0.729,0.5128,0.1356,-0.3004,-0.7728,-0.663,-0.4762,-0.5422,-0.4982,-0.619,-0.8498,-0.8792,-0.8498,-0.8534,-0.6336,-0.6924,-0.6484,-0.2234,-0.0402,-0.0036,-0.315,-0.6228,-0.6336,-0.3882,-0.304,0.1282,-0.2838,0.9682,0.7294,-0.2308,-0.549,-0.4324,0.4694,0.4694,1,0.9734,0.2998,-0.1034,0.061,-0.1194,-0.2308,-0.2466,-0.358,-0.2626,-0.4112,-0.3846,-0.2148,-0.4058,-0.4006,-0.077,0.6816,0.565,0.321,-0.3368,-0.74,-0.3156,-0.1194,0.305,-0.3334,0.6112,0.6666,0.7778,0.9444,0.6666,1,0.5556,0.8888,0.6112,0.4444,0.3334,-0.0556,-0.0556,-0.1112,-0.2778,-0.2222,0.1112,-0.1112,-0.2222,-0.2222,-0.2222,-0.2778,0.1666,0.4444,0.4444,0.4444,0.3888,0.3334,0.4444,0.3334,0.2778,-0.3846,-0.077,-0.1282,0.4358,0.9488,0.9488,0.7436,0.6924,0.8974,1,0.282,-0.5384,-0.6924,-0.4358,-0.7948,-0.6924,-0.641,-0.7436,-0.6924,-0.4358,-0.3334,-0.3334,-0.5384,0.3846,0.5384,0.7436,0.6924,0.1282,0.5898,0.6924,0.7436,0.641,-0.175,0.1,0.5,0.85,1,0.5,0.925,1,0.45,0.075,-0.1,-0.7,-0.4,-0.35,-0.4,-0.5,-0.575,-0.475,-1,-0.8,-0.425,-0.35,-0.15,-0.15,0.375,0.4,-0.15,-0.25,-0.2,-0.125,-0.1,0.05,-1,-1,-1,-1,-1,-1,-0.9246,-0.9442,-0.9526,-0.9302,-0.891,0.6956,0.9442,0.7178,0.852,0.947,0.8826,0.5838,0.1284,-0.0894,-0.2906,-0.7626,-0.9358,-0.9414,-0.9554,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9514,-0.9442,-0.9416,-0.9308,-0.9218,0.584,0.77,0.5948,0.4528,0.2076,0.0592,-0.1266,-0.4682,-0.6146,-0.7026,-0.8778,-0.9354,-0.9532,-0.9568,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9058,-0.7534,-0.7,-0.54,-0.2268,-0.6986,-0.7486,-0.6772,-0.66,-0.7386,-0.7858,-0.7858,-0.8272,-0.8044,-0.7958,-0.7386,-0.7268,-0.9734,-0.7868,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4286,-0.8572,-0.9714,-0.9714,1,1,-0.9428,-1,-0.8,-0.9428,-0.9714,-0.5142,-0.9714,-0.9428,-0.7142,-0.6572,-0.8286,-0.9142,-0.5142,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.8298,0.847,0.8754,0.9404,0.9646,1,1,1,1,0.5822,-0.52,0.6942,-0.9254,-0.4214,0.3836,1,0.806,0.475,-0.1986,-0.0786,-0.0636,0.266,0.1386,0.1986,0.1012,0.1236,0.2284,0.1836,0.3484,0.3334,0.648,0.4756,0.3558,0.5956,0.8426,0.5806,0.3782,0.4008,0.0486,0.0562,0.4232,0.4232,0.2134,0.2734,0.3108,0.4232,1,0.6404,0.1386,-0.5806,-0.2106,-0.2818,-0.1514,0.276,0.1038,-0.003,0.371,0.1158,0.092,-0.009,0.092,0.1454,0.4124,0.4066,0.2404,0.7448,0.721,0.2106,0.4184,0.1988,0.2344,-0.0268,0.0268,-0.009,-0.0446,0.003,0.4956,0.8338,0.9762,1,0.4006,-0.359,-0.3952,-0.2048,-0.2926,-0.278,-0.122,-0.2926,-0.2634,-0.0926,-0.2342,-0.2878,-0.0878,-0.2146,0.1464,0.1268,-0.117,0.4586,0.5318,0.1414,0.0048,-0.0488,-0.0536,-0.3756,-0.2878,-0.3902,-0.2048,-0.1122,0.3074,0.722,1,0.4878,0.0244,-0.7708,-0.9838,1,-1,-1,-1,-1,-1,-1,-1,-0.2858,0,0.6666,0.6904,0.7858,1,0.762,0.4286,0.238,0.1904,0.4286,0.6666,0.5952,0.6904,0.4762,0.5,0.6666,0.262,0.3334,0.7858,0.881,0.4048,0.3572,0.1904,0.238,0.381,0.4762,0.5952,0.5714,0.8096,0.3334,-0.4762,'15'
-0.5154,-0.174,0.314,0.5392,0.8566,0.9488,0.7884,0.7508,0.8464,1,0.7542,0.1366,0.0922,-0.0888,-0.14,-0.314,-0.2082,-0.1706,-0.4062,-0.198,-0.0444,-0.0274,0.4574,0.8704,0.9966,0.7986,0.5358,0.5598,0.512,0.7064,0.6724,0.8054,-0.4376,-0.0954,0.352,0.7172,0.7828,1,0.8552,0.7664,0.7532,0.7532,0.4836,-0.1842,-0.0592,-0.2434,-0.3158,-0.3256,-0.3388,-0.5328,-0.3816,-0.2532,-0.3914,-0.079,0.1448,0.6282,0.727,0.5264,0.375,0.181,0.4474,0.5,0.4704,0.5592,-0.51,-0.0872,0.1778,0.7046,0.6712,0.7214,0.5974,1,0.886,0.2652,-0.198,-0.2752,-0.4194,-0.7214,-0.5,-0.708,-0.7684,-0.7718,-0.6946,-0.6108,-0.5838,-0.5536,-0.2316,0.3524,0.3692,0.2316,0.1946,0.1074,0.3322,0.386,0.292,0.3524,-0.4184,0.024,0.4262,1,0.9322,0.4742,0.753,0.773,0.7172,-0.243,-0.3746,-0.6374,-0.6972,-0.7212,-0.6056,-0.6374,-0.757,-0.8128,-0.7012,-0.761,-0.6454,-0.773,-0.522,-0.0598,0.1036,0.1872,0.0358,-0.231,-0.1554,-0.0996,0.1634,0.1792,-0.2948,0.0036,0.386,1,0.9964,0.379,0.9754,0.8036,-0.3824,-0.2386,-0.4982,-0.4912,-0.4422,-0.6596,-0.621,-0.6982,-0.9684,-0.8246,-0.7334,-0.6246,-0.614,-0.7192,-0.5228,-0.207,0.3192,0.179,-0.3264,-0.2526,-0.3192,0.0456,0.035,0.3192,-0.332,0.0784,0.4004,0.8792,1,0.2474,0.489,0.4728,-0.5734,-0.6298,-0.8108,-0.654,-0.6218,-0.6136,-0.5774,-0.662,-0.7344,-0.7184,-0.8752,-0.7424,-0.7546,-0.7706,-0.7868,-0.5332,-0.3038,-0.2434,-0.2716,-0.6862,-0.6258,-0.3602,-0.3118,-0.1308,0.1972,1,0.5306,0.619,0.5578,0.4694,0.7278,0.0204,0.0408,-0.4014,-0.6666,-0.6122,-0.2926,-0.483,-0.2176,-0.1972,-0.5442,-0.2518,-0.2176,-0.5646,-0.7552,-0.7892,-0.4014,-0.4694,-0.204,-0.0544,-0.4762,-0.5102,-0.6054,-0.4422,-0.5578,-0.3742,-0.0164,0.246,0.4098,0.7378,0.8688,0.9016,0.9016,0.836,0.8032,0.8688,0.836,0.541,0.377,0.1476,0.3442,0.1476,0.2132,0.246,0.2786,0.2786,0.4098,0.4098,0.5738,0.9672,0.9016,0.8688,0.4754,0.836,0.7704,0.9344,1,0.9016,-0.1904,0.2858,0.619,0.762,0.9048,0.762,1,1,0.9048,1,0.4762,0.4286,0.3334,0.3334,0.0476,-0.3334,0,0.0476,-0.0476,-0.1904,0,0.0476,0.5238,1,0.9524,0.4762,0.4762,0.619,0.5714,0.619,0.5714,0.3334,-0.4706,0.0294,0.2942,0.8236,0.8824,1,0.8236,0.7648,0.853,0.7648,0.2352,-0.147,-0.0588,-0.2058,-0.2058,-0.2058,-0.5,-0.6764,-0.2648,-0.2942,-0.2942,0,0.0882,0.7942,1,0.5,0.1764,0.4118,0.647,0.5882,0.5294,0.4412,-1,-1,-1,-1,-1,-1,-1,-1,-0.9022,-0.907,-0.1638,0.5648,0.5942,0.6674,0.6772,0.9414,0.912,0.7848,0.4426,0.1736,-0.0366,-0.33,-0.6674,-0.7556,-0.8092,-0.8534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9022,-0.9022,-0.0896,0.774,0.8168,0.668,0.5886,0.5866,0.2362,0.1772,0.002,-0.2566,-0.4542,-0.6742,-0.8066,-0.8248,-0.8492,-0.8676,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.9534,-0.7568,-0.6346,-0.6382,-0.7582,-0.8146,-0.702,-0.771,-0.811,-0.8728,-0.8874,-0.8874,-0.8868,-0.9068,-0.8434,-0.83,-0.8,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,0.8286,1,1,-0.9714,-0.7714,-0.9142,-0.8572,-0.7714,-0.8,-0.9142,-0.9142,-0.3428,-0.9142,-0.8286,-0.8572,-0.9428,-0.7428,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.6728,0.661,0.6588,0.6856,0.6674,0.6238,0.6074,0.6062,0.5682,0.2784,-0.4,0.3176,0.1508,0.501,0.6538,0.9064,0.9348,0.2166,0.2972,0.5676,0.7298,0.7298,0.7838,0.6756,0.5136,0.4054,0.2432,0.081,0.1352,0.3514,0.5676,0.5136,0.5136,0.7298,0.6756,0.2432,0.3514,0.3514,0.1352,0.1892,-0.4054,-0.027,-0.1352,0.081,-0.1892,0.5136,0.7838,1,0.5676,-0.081,-0.0588,0.153,1,0.9294,0.9764,1,0.247,0.153,0.0588,0.0118,0.2,0.5294,0.953,0.7176,0.7412,0.8588,0.7882,0.0118,0.4588,0.3412,0.1294,0.0588,-0.247,-0.153,-0.3648,-0.247,-0.153,0.2236,0.4118,0.5294,0.0588,-0.4118,0.0666,0.5334,0.6222,0.8888,0.8222,0.8222,0.3556,0.2888,0.0222,0.2,0.3778,0.7112,1,0.8222,0.8888,0.9778,0.9556,0.8666,0.8444,0.6,0.4222,0.3112,-0.2666,-0.3556,-0.6222,-0.1112,0.2,0.6,0.6666,0.7112,0.3556,-0.2222,0.8738,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.0962,0.1154,0.0962,0.2308,0.25,0.6924,0.2692,0.2884,0.2308,0.0384,0.1538,0.2884,0.327,0.173,0.2116,0.1346,0.3654,0.3462,0.3462,0.923,1,0.173,0.0192,0.1154,0.0962,0,-0.2308,-0.173,0.2116,0.1924,0.4038,0.1346,'15'
-0.3098,0.2158,0.3686,0.4566,-0.0484,-0.4362,-0.812,-0.5712,-0.4538,-0.8532,-0.718,-0.5302,-0.6916,-0.6828,-0.489,-0.5124,-0.5124,-0.4186,-0.2864,0.0308,0.3274,0.4684,0.8268,0.9706,0.906,0.721,0.8032,0.9412,1,0.6798,0.6212,0.3216,-0.3532,0.009,0.3428,0.3842,-0.3144,-0.4878,-0.6456,-0.5188,-0.612,-0.8422,-0.718,-0.6456,-0.5782,-0.6792,-0.6274,-0.6404,-0.661,-0.5886,-0.3196,-0.1514,0.1488,0.4204,0.6378,1,0.9068,0.6222,0.824,0.793,0.7258,0.5292,0.4928,0.3144,-0.1896,0.1836,0.6034,0.6094,-0.1428,-0.382,-0.6268,-0.5102,-0.6268,-0.8046,-0.8542,-0.5976,-0.5422,-0.726,-0.6764,-0.6298,-0.6356,-0.5686,-0.4228,-0.1604,-0.0728,0.2654,0.7464,0.8134,0.9738,0.8338,0.8804,1,0.9068,0.726,0.5714,0.5102,-0.2898,0.137,0.539,0.57,-0.2742,-0.4954,-0.7384,-0.6854,-0.7538,-0.8412,-0.866,-0.7352,-0.62,-0.7664,-0.7384,-0.8162,-0.8194,-0.81,-0.5452,-0.3302,-0.1152,0.271,0.5482,0.866,0.9128,1,0.9408,0.9284,0.8038,0.6106,0.5576,0.377,-0.3146,0.1254,0.3786,0.4654,-0.1764,-0.4962,-0.6086,-0.5498,-0.8542,-0.8952,-0.6906,-0.5448,-0.693,-0.7852,-0.7136,-0.665,-0.6266,-0.693,-0.6394,-0.33,-0.0256,0.1382,0.5346,0.803,1,0.8516,0.7468,0.7596,0.6318,0.4118,0.3478,0.1816,-0.1894,0.4626,0.4302,0.674,0.3098,-0.3656,-0.4302,-0.3686,-0.7798,-0.8062,-0.7914,-0.7328,-0.63,-0.6976,-0.6212,-0.6328,-0.6418,-0.4948,-0.4832,-0.2306,0.066,0.3538,0.6534,0.953,0.9736,0.9706,1,0.9854,0.6476,0.4948,0.3656,0.2688,-0.277,0.7524,0.666,0.5088,0.3242,-0.171,-0.3634,-0.3438,-0.615,-0.9018,-0.7878,-0.5166,-0.5364,-0.6502,-0.6386,-0.7014,-0.7328,-0.4578,-0.2102,0.0138,0.2652,0.2888,0.2298,0.3596,0.5678,1,0.7878,0.112,-0.1788,-0.0884,-0.0216,-0.1906,0.1428,0.7142,0.6572,0.4858,-0.0858,-0.1428,-0.2,-0.2572,-0.2,-0.6572,-0.5428,-0.1428,-0.3714,-0.4858,0.0286,0.0286,-0.2572,-0.3142,0.0286,0.0286,0.2,0.1428,0.4286,1,0.8858,0.0858,0.3142,0.6,0.7714,0.7142,0.4286,0.4858,0,0.4546,0.3182,0.5454,0.1818,-0.2728,-0.5,-0.409,-0.3182,-0.409,-0.2728,-0.3182,-0.6364,-0.4546,-0.3636,-0.3182,-0.6364,-0.4546,-0.1364,-0.1818,0.3636,0.3182,0.6818,0.7728,1,0.5,0.5,1,1,0.7272,0.591,0,-0.0666,0.2762,0.5048,0.5238,0.0476,-0.1428,-0.4096,-0.4096,-0.3904,-0.6762,-0.638,-0.4286,-0.2572,-0.4286,-0.4858,-0.4476,-0.3524,-0.2572,-0.1238,0.0858,0.2572,0.4858,0.7524,1,0.9048,0.7142,0.8286,0.7904,0.7904,0.619,0.6,0.4096,-1,-1,-0.9002,-0.9194,-0.6776,1,0.0172,-0.7198,-0.8234,-0.8694,-0.8426,0.5586,0.95,0.7312,0.7774,0.6008,0.5892,0.6622,0.6738,0.6546,0.6468,-0.1632,-0.8618,-0.9118,-0.9194,-0.9232,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9104,-0.9122,-0.3766,1,0.3538,-0.2152,-0.259,-0.5452,-0.7576,0.1818,0.9562,0.5734,0.2976,0.122,0.136,0.317,0.2906,0.2538,-0.0166,-0.4926,-0.8736,-0.8982,-0.9104,-0.9192,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8998,-0.94,-0.87,-0.6734,0.0166,0.2432,0.4232,0.5132,-0.04,-0.5546,-0.2638,-0.291,-0.5018,-0.5884,-0.5318,-0.3918,-0.415,-0.6734,-0.8518,-0.76,-0.6668,-0.75,-0.8834,-0.8668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3714,0.1714,1,1,-0.4,-0.3714,-0.3142,0.2286,0.2,0.9142,-0.8572,-0.8572,-0.9714,-0.9714,-1,-1,-0.9714,-0.7142,-0.4,0,-0.1428,-0.9714,-0.9142,-0.7142,-1,-1,-1,-1,-1,-1,-1,-0.3488,-0.3518,-0.347,-0.3304,-0.3034,-0.2862,-0.2652,-0.2746,-0.272,-0.2038,0.9928,1,1,1,1,1,1,1,1,1,-0.6,0.4,-0.7788,-0.5242,0.1202,0.259,0.561,-0.2416,0.306,-0.0508,-0.0442,-0.0442,-0.1424,-0.054,0.2046,0.365,0.7708,0.9968,1,0.7938,0.8266,0.9148,0.6432,0.4894,0.7316,0.7906,0.712,0.5974,0.8298,0.8724,0.725,0.5842,0.581,0.5352,0.4828,0.4992,0.4174,0.3028,0.162,-0.0638,-0.4314,-0.3834,-0.3322,-0.0638,-0.0894,-0.1406,-0.2588,0.016,0.0608,0.4504,0.623,0.754,0.5496,1,0.8434,0.5208,0.5654,0.6646,0.7252,0.5878,0.722,0.853,0.7732,0.7668,0.5878,0.4536,0.3578,0.4824,0.492,0.492,0.0926,-0.131,-0.4526,-0.2154,-0.2044,-0.0292,-0.084,-0.2154,-0.0912,-0.1132,-0.051,0.0182,0.427,0.7262,0.7664,0.7408,1,0.5328,0.5438,0.4344,0.3832,0.7446,0.6898,0.7628,0.6824,0.6314,0.4234,0.3686,0.4452,0.5072,0.4964,0.4198,0.2408,0.051,1,-1,-1,1,-1,-1,-1,0.3,-1,0.1326,0.3494,0.3254,0.3734,0.4216,0.3254,0.6386,0.5904,0.5662,0.4216,0.4458,0.6386,0.8796,0.8072,0.4698,0.3254,1,0.4216,0.4216,0.4216,0.3254,0.3734,0.3494,-0.012,0.2772,0.3494,0.494,0.6386,0.494,0.1808,0.3734,-0.3976,'16'
-0.3762,0.0632,0.2266,0.3142,-0.206,-0.4752,-0.7284,-0.5858,-0.6156,-0.7032,-0.7538,-0.6892,-0.5628,-0.6432,-0.687,-0.6708,-0.5466,-0.5258,-0.3994,-0.222,0.0264,0.2636,0.6088,0.8642,0.9218,0.8274,0.825,0.9494,1,0.9218,0.6456,0.6294,-0.4864,-0.2102,0.1614,0.1478,-0.2666,-0.539,-0.825,-0.6576,-0.8308,-0.7724,-0.7802,-0.7102,-0.609,-0.6264,-0.533,-0.5486,-0.6148,-0.5408,-0.5194,-0.2802,0.0466,0.1732,0.4864,0.9124,1,0.786,0.8288,0.9378,0.9534,0.8618,0.786,0.6478,-0.448,-0.1732,0.167,0.114,-0.1324,-0.501,-0.6946,-0.6802,-0.8126,-0.8066,-0.672,-0.725,-0.7556,-0.7964,-0.6008,-0.7006,-0.6354,-0.5702,-0.3728,-0.3116,0.0428,0.3096,0.499,0.835,0.9186,1,0.9084,0.9186,0.9756,0.7678,0.6578,0.5886,-0.4208,-0.117,0.165,0.1366,-0.165,-0.5234,-0.67,-0.6416,-0.906,-0.965,-0.858,-0.7902,-0.7464,-0.6984,-0.705,-0.7136,-0.7092,-0.7158,-0.5148,-0.318,0.047,0.1454,0.399,0.9738,1,0.8928,0.8316,0.8776,0.812,0.6328,0.541,0.4274,-0.3796,-0.0136,0.2364,0.2478,-0.2228,-0.4522,-0.8364,-0.7204,-0.7614,-0.7954,-0.8614,-0.7682,-0.659,-0.7704,-0.6546,-0.6296,-0.6478,-0.6818,-0.5478,-0.3932,-0.1204,0.2046,0.4068,0.666,1,0.8478,0.866,0.7272,0.6068,0.4954,0.3364,0.2728,-0.3044,0.197,0.3248,0.404,-0.312,-0.468,-0.8976,-0.78,-0.821,-0.8184,-0.8798,-0.7008,-0.6548,-0.8338,-0.5448,-0.5934,-0.693,-0.6292,-0.6854,-0.6112,-0.4092,0.0538,0.4424,0.9002,0.9104,0.8414,1,0.8618,0.5856,0.3504,0.1586,0.1228,-0.3416,0.6932,0.4888,0.497,-0.0594,-0.7138,-0.7342,-0.7832,-0.7586,-0.771,-0.6688,-0.6114,-0.4478,-0.5378,-0.2148,-0.3742,-0.6196,-0.5502,-0.2966,0.0184,0.501,0.5296,0.4314,0.6728,0.6768,0.8896,1,0.7956,0.2066,-0.1534,-0.1206,-0.1084,0.4042,0.7446,0.617,0.6596,0.2766,-0.0638,0.234,0.2766,0.2766,0.0212,0.149,0.3192,0.2766,0.1064,0.234,0.3618,0.3618,0.2766,0.3618,0.4894,0.4042,0.4042,0.7022,0.4894,0.7872,0.6596,0.6596,0.8724,1,0.9148,0.7022,0.7022,0.0204,0.3878,0.1836,0.4694,0.102,-0.3062,-0.3062,-0.4286,-0.2244,-0.2244,-0.1836,-0.3878,-0.2244,-0.347,-0.102,-0.2654,-0.2654,-0.3062,-0.2654,-0.102,0.0612,0.102,0.347,0.8776,1,0.6734,0.551,0.796,0.5918,0.796,0.551,0.551,-0.3034,0.0786,0.2584,0.2584,-0.1686,-0.3258,-0.618,-0.573,-0.8876,-0.7978,-0.7752,-0.4832,-0.3708,-0.6404,-0.4606,-0.5056,-0.573,-0.528,-0.4158,-0.4606,-0.4158,0.3034,0.4832,0.6854,0.573,0.5956,1,0.9102,0.3708,0.3034,0.3034,0.3034,-1,-1,-0.887,-0.887,-0.2526,1,-0.6182,-0.8334,-0.8764,-0.844,-0.801,0.6182,0.9462,0.7634,0.613,0.4892,0.4354,0.4946,0.5484,0.4784,0.2474,-0.3924,-0.8334,-0.8656,-0.8978,-0.9032,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9378,-0.9392,-0.4434,-0.0984,-0.5136,-0.5466,-0.6934,-0.8004,-0.8414,-0.1712,0.819,0.6972,0.3126,0.22,-0.1408,-0.2532,-0.3232,-0.4264,-0.573,-0.778,-0.8968,-0.9128,-0.889,-0.844,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.93,-0.9168,-0.56,-0.6268,0.0366,0.49,0.4932,0.1166,-0.0768,-0.4558,-0.0358,-0.1058,-0.1772,-0.2858,-0.22,-0.2472,-0.209,-0.313,-0.5868,-0.7174,-0.68,-0.6,-0.75,-0.73,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,0.9428,-0.2,-0.4572,-0.6286,-0.4858,-0.2572,1,-0.7142,-0.9714,-1,-0.9428,-1,-1,-1,-0.8858,-0.7428,-0.5714,-0.8286,-0.8572,-0.7428,-0.1142,-1,-1,-1,-1,-1,-1,-1,-0.2406,-0.2366,-0.2172,-0.2238,-0.1846,-0.1638,-0.1944,-0.1884,-0.188,-0.2606,1,1,1,1,1,1,1,1,1,1,-0.5466,0.7176,-0.8678,-0.7396,-0.388,-0.2598,0.0284,-0.7916,0.0232,-0.091,-0.1302,-0.016,-0.0802,0.0696,0.2656,0.4296,0.7682,1,0.9894,0.8324,0.9038,0.968,0.8004,0.5828,0.8574,0.8646,0.5188,0.4688,0.7006,0.8824,0.5972,0.565,0.4224,0.3654,0.3512,0.4866,0.4402,0.4118,0.2014,-0.0338,-0.5422,-0.5284,-0.3116,-0.253,-0.1944,-0.284,-0.2048,-0.3322,-0.136,0.0706,0.4182,0.9104,0.7624,1,0.9656,0.6524,0.6248,0.7142,0.728,0.5146,0.766,0.9174,0.8416,0.6696,0.494,0.2392,0.2806,0.37,0.2496,0.2634,0.16,-0.0636,-0.4824,-0.2464,-0.2796,-0.0394,-0.1428,-0.263,-0.2422,-0.0476,-0.1346,0.0974,0.2878,0.3872,0.913,0.677,1,0.8054,0.5362,0.4742,0.7142,0.677,0.7516,0.8468,0.7722,0.5734,0.4866,0.561,0.4906,0.5032,0.296,0.3664,0.3416,0.0186,0.261,-1,-1,1,-1,-1,-1,0.4,-1,-0.1958,0.0516,-0.3196,0.0722,0.0928,0.2578,-0.0104,0.0104,0.0722,0.4226,0.4846,0.2164,0.567,0.567,0.1752,-0.0104,0.732,1,0.8762,0.732,0.6288,0.567,0.402,0.1752,0.0722,0.2578,0.402,0.3608,0.2372,-0.0928,0.0928,-0.3608,'16'
-0.3176,0.0996,0.3048,0.3744,-0.3492,-0.6208,-0.6998,-0.643,-0.7884,-0.763,-0.6936,-0.5608,-0.4724,-0.3744,-0.2828,-0.226,-0.0868,0.1058,0.447,0.823,0.8452,0.8578,0.6966,0.8958,1,0.9842,0.8704,0.9304,0.8768,0.8642,0.9526,0.8672,-0.3678,-0.0382,0.4088,0.4332,-0.387,-0.6376,-0.564,-0.6076,-0.6158,-0.5694,-0.5614,-0.4524,-0.3216,-0.2616,-0.3052,-0.1008,0.0762,0.278,0.575,0.9346,1,0.7412,0.891,0.9946,0.6948,0.594,0.4714,0.496,0.5178,0.7276,0.7466,0.7874,-0.409,-0.0736,0.538,0.52,-0.342,-0.507,-0.5278,-0.538,-0.5252,-0.489,-0.3238,-0.329,-0.2206,-0.0504,0.0658,0.2774,0.4812,0.76,0.7806,0.8812,0.9484,1,0.5896,0.4322,0.2878,0.2232,0.1794,0.298,0.4838,0.5664,0.68,0.7238,-0.3702,0.0204,0.7288,0.6794,0.105,-0.2158,-0.2886,-0.2508,-0.2712,-0.1546,-0.0408,0.0758,0.4082,0.484,0.4928,0.4898,0.5744,0.3674,0.653,0.7406,1,0.8688,0.516,0.1896,0.1662,0.2508,0.172,0.3586,0.4286,0.7142,0.7842,0.8542,-0.2852,0.1856,1,0.9794,0.4674,0.1718,0.1444,0.0482,0.3128,0.5086,0.6494,0.4914,0.3162,0.1478,0.0482,0.0894,-0.0996,0.0688,0.165,0.4674,0.7594,0.8488,0.3712,0.11,0.1202,0.0274,-0.0274,0.1616,0.5052,0.5292,0.6702,0.653,-0.3202,0.2086,0.8956,1,0.5864,0.446,0.1618,0.6402,0.6834,0.4352,0.1116,-0.2122,-0.4676,-0.4352,-0.4136,-0.5252,-0.59,-0.4064,-0.3598,-0.1906,-0.0288,0.2338,0.2662,-0.1402,-0.2698,-0.3022,-0.169,-0.0072,0.1224,0.2518,0.3058,0.223,-0.238,0.6508,0.5794,1,0.7342,0.3612,0.4762,0.627,0.6548,0.5396,-0.115,-0.4604,-0.4842,-0.512,-0.4604,-0.5874,-0.4564,-0.508,-0.619,-0.5238,-0.2818,-0.115,0.0436,0.1032,-0.0952,-0.1786,-0.254,-0.0436,-0.008,0.2738,0.369,0.1388,-0.1666,0.1666,0.3334,0.2916,-0.25,-0.5,-0.4584,-0.4584,-0.4584,-0.4584,-0.375,-0.5834,-0.4584,-0.2916,-0.25,-0.2916,-0.0834,-0.0416,0.4166,0.6666,0.75,0.625,0.5834,0.5834,0.5834,0.9584,1,0.8334,0.7916,0.8334,0.7916,0.6666,-0.074,0.3334,0.4444,0.4074,0.037,-0.3334,-0.4074,-0.3334,-0.3334,-0.3334,-0.7038,-0.2222,-0.2222,-0.1482,0,0.1112,0.1482,0.1852,0.5926,0.8148,0.8888,0.8888,0.7408,0.8148,1,0.963,1,1,0.926,0.926,1,0.963,-0.4062,0.25,0.9688,0.875,0.375,0.0312,-0.1562,-0.0938,-0.0624,0.2188,0.375,0.6562,0.5312,0.6562,0.1876,0.125,0.1876,0.0938,0.5624,0.75,1,0.9062,0.5312,0.25,0.0624,0.2812,0.125,0.2812,0.5312,0.8438,0.7812,0.9376,-0.9612,-0.8866,-0.9374,-0.9254,-0.9402,-0.9164,-0.9224,-0.9044,-0.9014,-0.9492,-0.5344,0.188,0.3044,0.609,0.8836,0.988,0.8926,0.6626,0.4508,0.3702,0.2866,0.1344,-0.6896,-0.8986,-0.8926,-0.8866,-0.9314,-1,-1,-1,-1,-1,-1,-0.9502,-0.188,-0.2876,-0.1968,0.2292,0.1794,0.2278,-0.0112,-0.1382,-0.5392,-0.5654,0.2764,0.543,0.7982,0.9378,0.7174,0.2342,0.0112,-0.1968,-0.2292,-0.1458,-0.3736,-0.8206,-0.7198,-0.7982,-0.8282,-0.7622,-1,-1,-1,-1,-1,-1,-0.94,-0.14,0.9666,0.99,0.9732,0.8466,0.91,0.8866,0.7532,0.6632,-0.0168,-0.334,-0.18,-0.248,-0.4,-0.6328,-0.7982,-0.9128,-0.9728,-0.9456,-0.8764,-0.9256,-0.7768,-0.1934,-0.4768,-0.5834,-0.34,-1,-1,-1,-1,-1,-1,1,1,1,-0.2858,-0.8858,-0.8858,-0.8858,-0.7714,0.0858,0.7142,1,1,-0.9714,-0.8858,-0.8858,-0.8572,-0.7714,-0.4286,-0.5714,-0.6858,-0.5428,0.2286,0.7714,0.7714,-0.2286,-0.5142,-0.3428,-1,-1,-1,-1,-1,-1,-0.2312,-0.2658,-0.29,-0.3006,-0.2824,-0.253,-0.2674,-0.2658,-0.1554,0.2236,0.9962,1,1,1,0.9916,0.9674,0.9094,0.7808,0.4506,0.1802,-0.5334,0.2588,-0.645,-0.0934,0.2142,0.4072,0.5516,-0.3334,-0.7528,-0.6928,-0.573,-0.3584,-0.4682,-0.3732,-0.4008,-0.3358,-0.3558,-0.4232,-0.2134,0.0088,0.2908,0.7578,0.7902,0.8128,0.7678,0.7428,0.92,0.8328,0.9876,0.97,1,0.8352,0.7652,0.7778,0.8128,0.8228,0.8152,0.7454,0.603,0.3208,-0.8218,-0.788,-0.6394,-0.455,-0.5144,-0.474,-0.3956,-0.508,-0.4422,-0.317,-0.2514,0.0646,0.1856,0.6542,0.9534,0.947,0.7794,0.8048,0.8748,0.9576,0.966,1,0.9004,0.9088,0.8134,0.7942,0.8728,0.8134,0.7942,0.7752,0.597,0.2428,-0.7002,-0.659,-0.4994,-0.277,-0.3422,-0.4898,-0.3156,-0.335,-0.2576,-0.0592,0.081,0.2504,0.6082,0.9396,0.9734,0.6808,0.6856,0.7074,0.7146,0.879,1,0.9372,0.9154,0.5986,0.4534,0.676,0.6228,0.6494,0.6252,0.4366,0.4582,0.2794,1,-1,1,-1,-1,-1,-1,1,-1,-0.6638,-0.1596,-0.1092,-0.0252,0.1092,0.2774,0.395,-0.1092,-0.126,-0.042,0.5798,0.7816,0.9664,0.8824,0.6302,0.916,0.6638,-0.0756,0.1596,0.9832,0.8656,0.3782,0.4286,1,0.9328,-0.1764,-0.042,0.0756,-0.2268,0.3614,0.395,-0.1596,'17'
-0.279,0.2374,0.4154,0.5134,-0.0178,-0.3858,-0.7656,-0.6736,-0.733,-0.7092,-0.724,-0.5816,-0.543,-0.4748,-0.359,-0.4866,-0.2998,-0.2612,-0.0148,0.4066,0.736,1,0.8546,0.7448,0.9614,0.917,0.6142,0.4836,0.4896,0.4066,0.3738,0.3146,-0.3136,0.0492,0.6202,0.654,0.0324,-0.2012,-0.5134,-0.3952,-0.505,-0.5922,-0.4852,-0.4824,-0.3868,-0.3192,-0.2376,-0.1168,0.1504,0.4514,0.8088,0.7862,0.9156,0.9972,0.9804,1,0.744,0.609,0.412,0.3362,0.398,0.4318,0.4936,0.488,-0.2594,0.1438,0.7782,0.7688,0.2188,-0.075,-0.2656,-0.4656,-0.4218,-0.4126,-0.3062,-0.175,-0.1218,0.0688,0.5,0.5718,0.7156,0.5844,0.5562,0.5374,0.6374,0.775,1,0.9156,0.3032,0.2968,0.2782,0.2124,0.3656,0.3688,0.5656,0.5874,-0.124,0.287,1,0.9728,0.4466,0.0764,-0.0798,-0.1918,-0.107,-0.0798,0.2394,0.5552,0.5348,0.6196,0.3514,0.2836,0.09,-0.073,0.005,0.1544,0.2768,0.4194,0.742,0.6162,0.2598,0.0832,0.0152,0.168,0.2258,0.2156,0.4906,0.4974,-0.0524,0.425,1,0.9856,0.6022,0.2514,-0.067,0.2152,0.3382,0.3634,0.5986,0.3382,-0.2442,-0.2766,-0.3454,-0.3056,-0.472,-0.5804,-0.4358,-0.566,-0.4936,-0.3056,0.1934,0.2044,-0.0308,-0.2368,-0.1972,-0.3924,-0.2152,-0.103,0.056,0.1066,0.0544,0.6576,0.9106,1,0.6926,0.4748,0.249,0.4824,0.3268,-0.1362,-0.4358,-0.467,-0.5798,-0.4708,-0.5058,-0.716,-0.572,-0.5526,-0.8872,-0.6264,-0.502,-0.7082,-0.4436,-0.3852,-0.2958,-0.323,-0.4124,-0.5408,-0.5526,-0.5058,-0.2452,-0.1478,-0.02,1,0.78,0.64,0.02,-0.135,-0.235,-0.265,0.105,-0.085,-0.475,-0.565,-0.33,-0.3,-0.38,-0.645,-0.39,-0.56,-0.535,-0.615,-0.475,-0.445,-0.64,-0.5,-0.13,-0.335,-0.78,-0.6,-0.6,-0.75,-0.55,-0.405,0.1904,0.762,0.7142,0.4762,0.381,-0.1428,-0.762,-0.381,-0.2858,-0.0952,-0.3334,0.0952,0.1428,-0.0952,0,-0.0952,-0.0952,0.0476,0,0.4762,0.5714,0.8572,1,0.9048,0.8572,0.8572,0.7142,0.9524,0.7142,0.619,0.619,0.5238,-0.2,0.25,0.3,0.5,-0.05,-0.35,-0.35,-0.3,-0.65,-0.45,-0.35,-0.4,-0.5,-0.4,-0.65,-0.9,-0.3,-0.45,-0.15,0.1,0.25,1,1,0.5,0.55,0.8,0.65,0.35,0.15,-0.15,0,-0.25,-0.1034,0.4482,1,0.9656,0.4482,0.138,-0.138,0.069,0.069,0.3448,0.6896,0.4482,0.4828,0.069,-0.069,-0.0344,0,0,-0.138,-0.0344,-0.0344,0.1724,0.5172,0.5518,0.2068,0.0344,-0.069,0.2414,0.1034,0.1034,0.3448,0.4482,-0.9038,-0.914,-0.9348,-0.914,-0.9312,-0.9176,-0.9106,-0.9312,-0.9106,-0.9416,-0.787,0.3506,0.7354,0.8626,0.8556,0.835,0.7286,0.567,0.347,0.158,0.0068,-0.3642,-0.8522,-0.8866,-0.9244,-0.9312,-1,-1,-1,-1,-1,-1,-1,-0.7048,-0.5508,-0.0902,0.3552,0.3308,0.8402,0.3928,0.1804,-0.1052,-0.4474,-0.6692,0.1954,0.889,0.7482,0.5714,0.265,0.2274,0.017,-0.1354,-0.2312,-0.3364,-0.5846,-0.8552,-0.8102,-0.7952,-0.9098,-1,-1,-1,-1,-1,-1,-1,-0.7534,0.44,0.9366,0.99,0.9332,0.9266,0.81,0.84,0.66,0.5432,0.07,-0.562,-0.1856,-0.4918,-0.7168,-0.8568,-0.855,-0.8334,-0.8368,-0.8284,-0.8418,-0.8934,-0.7334,-0.74,-0.86,-0.9134,-1,-1,-1,-1,-1,-1,-1,1,1,1,-0.2286,-0.9428,-0.9428,-0.8,-0.5428,-0.3428,0.2572,0.9428,1,-0.4572,-0.8572,-0.8572,-0.8858,-0.8572,-0.7428,-0.8858,-0.8858,-0.8286,-0.5142,-0.8,-0.8,-0.7428,-0.7428,-1,-1,-1,-1,-1,-1,-1,-0.3518,-0.3292,-0.3284,-0.3332,-0.316,-0.2688,-0.211,-0.13,-0.0326,0.0944,1,0.9874,0.9646,0.962,0.9558,0.9376,0.8678,0.7092,0.339,0.0666,-0.56,0.4118,-0.7518,-0.3458,0.0734,0.25,0.5676,-0.675,-0.7938,-0.7276,-0.6736,-0.5754,-0.573,-0.519,-0.4184,-0.357,-0.4062,-0.4504,-0.2516,-0.0258,0.1852,0.3202,0.6932,0.7596,0.6122,0.6196,0.5976,0.8234,1,1,0.9878,0.8258,0.816,0.7178,0.6932,0.6736,0.5706,0.497,0.5214,0.0208,-0.7678,-0.7756,-0.617,-0.4932,-0.5474,-0.4912,-0.4082,-0.3714,-0.3424,-0.3036,-0.0522,0.1276,0.1548,0.5958,0.7504,0.737,0.735,0.7776,0.7272,0.8724,0.9556,1,0.94,0.6616,0.5802,0.5668,0.65,0.5416,0.4952,0.412,0.354,0.089,-0.5502,-0.565,-0.4094,-0.2794,-0.339,-0.2686,-0.2666,-0.1514,-0.3006,-0.1364,0.2538,0.3732,0.4372,0.7122,0.7548,0.7206,0.7164,0.8806,0.6034,0.7334,1,0.953,0.644,0.452,0.3156,0.243,0.4926,0.5138,0.4264,0.403,0.2964,-0.2068,0.2744,-1,1,-1,-1,-1,-1,1,-1,-0.1596,0.1428,0.0756,0.3278,0.4118,0.3446,0.5294,0.4454,0.647,0.7648,1,0.8824,0.7984,0.6806,0.2606,0.3278,0.479,0.563,0.5126,0.479,0.0756,-0.1428,0.1596,0.1596,0.1932,0.395,-0.0756,0.3446,0.2268,0.3278,-0.1764,-0.311,'17'
-0.4244,-0.0186,0.0166,0.0042,0.2506,0.3686,0.7432,1,0.9254,0.9544,0.4844,0.3272,0.0952,-0.089,-0.178,-0.1656,-0.4266,-0.4306,-0.501,-0.5196,-0.586,-0.5072,-0.1262,0.174,0.3644,0.3644,0.3458,0.3872,0.4078,0.1884,-0.0042,0.0662,-0.367,-0.0746,0.012,0.0888,0.242,0.502,0.7802,0.9254,1,0.9194,0.7984,0.3104,0.1694,0.0726,-0.238,-0.2884,-0.3166,-0.5262,-0.4658,-0.4678,-0.5624,-0.4314,-0.1876,0.0806,-0.004,-0.1088,-0.119,-0.0262,-0.0646,-0.4638,-0.2178,-0.2298,-0.4134,-0.1654,-0.0884,0.073,0.1576,0.502,0.7174,0.75,0.7308,1,0.9866,0.5634,0.2634,0.1924,0.0038,-0.098,-0.225,-0.275,-0.25,-0.277,-0.098,0.0942,0.2384,0.198,0,-0.077,-0.1442,-0.2634,-0.5788,-0.8346,-0.6462,-0.698,-0.3688,-0.1092,-0.0398,0.1276,0.4136,0.6752,0.853,0.8264,0.7202,0.814,0.8998,1,0.953,0.7936,0.5648,0.4504,0.426,0.3912,0.4628,0.526,0.4668,0.524,0.234,0.1522,0.1502,0.1358,0.1032,0.0378,-0.2176,-0.5486,-0.6996,-0.7548,-0.4236,-0.1664,-0.0794,0.1354,0.2688,0.5938,0.7156,0.735,0.3656,0.528,0.4836,0.5184,1,0.9206,0.7524,0.7852,0.706,0.735,0.4854,0.2882,0.091,0.056,-0.0716,-0.0832,-0.0368,0.0348,0.0078,0.1296,0.1954,0.0464,-0.3018,-0.6518,-0.3062,0.0538,0.1174,0.2448,0.438,0.5082,0.4818,0.5258,0.28,0.192,0.2996,0.4314,0.8178,1,0.877,0.7804,0.7892,0.618,0.0362,-0.0846,-0.1196,-0.2052,-0.258,-0.2886,-0.1964,-0.2382,-0.089,0.012,0.0076,-0.1964,-0.3568,-0.5478,-0.1292,0.7522,0.4584,0.1398,0.462,0.4832,0.1964,0.1858,0.0408,-0.2424,0.0654,0.4478,0.7734,0.9788,0.9788,1,0.8054,0.2,-0.3132,-0.3452,-0.2284,-0.2884,-0.2778,-0.2,-0.1256,-0.2284,-0.108,-0.2672,-0.4902,-0.423,-0.515,-0.5008,0.4,0.8,0.7,0.35,0.25,0.4,0.9,1,0.9,0.8,0.65,0.45,0.35,0.1,0.25,0.1,-0.3,0.15,0.3,0.35,0.5,0.55,0.55,0.55,0.55,0.9,0.65,0.6,0.65,0.8,0.45,0.75,-0.44,-0.2,-0.08,-0.32,0.24,0.24,0.76,0.76,1,0.96,0.36,0.32,-0.12,-0.08,-0.44,-0.28,-0.44,-0.28,-0.48,-0.2,-0.32,-0.4,-0.4,0.32,0.48,0.32,0.56,0.68,0.76,0.72,0.32,0.28,-0.3086,-0.037,0.0124,0.1112,0.4074,0.679,0.8518,0.8272,0.7284,0.8024,0.9012,1,1,0.8024,0.5802,0.4814,0.4814,0.3828,0.432,0.679,0.5062,0.5556,0.284,0.2098,0.2098,0.1358,0.2592,0.2098,-0.1112,-0.3086,-0.358,-0.8272,-1,-1,-1,-1,-0.8784,-0.8346,-0.674,-0.6642,-0.4794,-0.4648,-0.163,0.494,0.489,0.5962,0.708,0.7956,0.8784,0.9318,0.6886,0.4502,0.3772,-0.2116,-0.8588,-0.893,-0.893,-0.8686,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.926,-0.7902,-0.474,-0.2544,-0.5044,-0.2968,0.451,0.176,0.2336,0.4946,0.7968,0.8044,0.7696,0.4706,-0.012,-0.451,-0.7022,-0.9218,-0.9304,-0.9348,-0.9304,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8868,-0.8668,-0.72,-0.7768,-0.61,-0.59,-0.5034,-0.6308,-0.68,-0.6638,-0.5714,-0.6614,-0.68,-0.5814,-0.6204,-0.5372,-0.7672,-0.7808,-0.8608,-0.8076,-0.7876,-0.8008,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,-0.6286,-0.2,1,-0.8858,-0.8572,-1,-0.1428,-0.9428,-0.9714,-0.9714,-0.9714,-0.9428,-1,-1,-0.7142,-0.7142,0.1142,-0.9428,-1,-1,-0.7714,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.2452,0.2474,0.2234,0.173,0.1376,0.0794,-0.028,-0.1482,-0.3948,-0.9812,-0.4666,0.9412,-0.2076,-0.6566,0.7228,0.6804,0.6478,-0.75,0.1678,0.4306,0.3868,0.9562,0.6934,0.4818,0.9124,0.4014,0.9198,0.5766,0.8176,0.781,0.8906,0.9344,0.4818,0.6424,0.4598,0.343,0.4234,0.3868,0.5766,0.6204,0.562,0.3942,0.1678,0.3212,0.4598,0.2408,0.5694,0.8102,0.1606,-0.4088,0.038,0.3334,0.5,1,0.9904,0.9762,0.6572,0.2286,0.038,0.0428,0.4762,0.4714,0.7048,0.5428,0.7858,0.8142,0.2952,0.1572,0.0238,-0.1762,-0.1,-0.0524,-0.081,-0.0048,-0.0476,-0.1096,0.2238,0.6096,0.3048,0.038,-0.2428,-0.7286,-0.169,0.0434,0.3204,0.868,1,0.8422,0.2624,0.0434,-0.0338,-0.0016,0.0596,0.359,0.7552,0.7004,0.9324,0.7746,0.3366,-0.0724,-0.2658,-0.2592,-0.1724,-0.314,-0.3044,-0.256,-0.3044,-0.14,0.1466,0.2496,0.1272,0.1948,-0.1498,-0.8294,-0.963,1,-1,-1,-1,-0.8,-1,-1,-1,-0.2414,-0.1034,0.1494,0.4022,0.3334,0.4712,0.6782,0.6552,0.7472,0.4712,0.3794,0.5172,0.7012,0.4712,0.6092,0.4252,0.4712,1,0.977,0.1724,0.3104,0.3104,0.0114,-0.0344,0.0574,0.1034,0.0574,-0.0574,0.0344,0.1494,-0.1264,-0.2414,'18'
-0.5984,-0.2426,-0.1252,-0.0934,0.0178,0.3082,0.5646,0.847,0.9602,1,0.658,0.3876,0.2068,0.0656,-0.0816,-0.0974,-0.0656,-0.1988,-0.2068,-0.1868,-0.4174,-0.2206,-0.0218,0.4234,0.5944,0.5288,0.3638,0.35,0.4354,0.3578,0.1192,-0.348,-0.5206,-0.2364,-0.1562,-0.063,0.0498,0.397,0.655,0.7246,1,0.9458,0.9652,0.41,0.1778,0.1128,-0.0368,-0.0456,-0.1302,-0.102,-0.1822,-0.2886,-0.3124,-0.3818,0.0868,0.4186,0.7658,0.666,0.5336,0.5792,0.653,0.6334,0.1344,-0.2342,-0.5144,-0.2656,-0.2538,-0.1016,-0.0148,0.2932,0.5084,0.5222,0.7118,1,0.9822,0.4828,0.1432,0.0878,0.084,-0.08,-0.0424,0.0208,-0.153,-0.2202,-0.2122,-0.1648,0.3426,0.5716,0.6722,0.467,0.4492,0.544,0.4234,0.2576,-0.0998,-0.5518,-0.5362,-0.3112,-0.2798,-0.0428,0.0968,0.3462,0.6582,0.6512,0.7088,0.857,0.9232,1,0.5484,0.3548,0.3932,0.17,0.2014,0.1612,0.2432,0.2538,0.538,0.6198,0.5136,0.4334,0.4386,0.4036,0.5432,0.524,0.5484,0.1752,-0.013,-0.3688,-0.504,-0.2578,-0.2046,0.0646,0.1904,0.504,0.775,0.7768,0.5182,0.6882,0.86,1,0.9734,0.869,0.745,0.6068,0.7236,0.7502,0.7714,0.6244,0.426,0.38,0.2312,0.2206,0.3038,0.364,0.4632,0.5978,0.6988,0.4792,0.2188,-0.1532,-0.4328,-0.1208,-0.154,0.08,0.2574,0.3762,0.3372,0.4114,0.2884,0.3606,0.5166,0.846,0.8928,1,0.6726,0.7564,0.811,0.655,0.234,-0.0332,-0.0818,-0.1442,-0.2242,-0.267,-0.2086,-0.1442,-0.0584,0.2398,0.2652,-0.1014,-0.3158,-0.4562,-0.3944,0.3724,0.0092,-0.2918,-0.0458,0.0532,-0.0312,0.1706,0.1156,0.101,0.3578,0.545,0.8788,0.7762,0.8496,1,0.9816,0.2698,-0.5744,-0.5522,-0.4056,-0.4056,-0.3944,-0.5192,-0.3212,-0.3872,-0.4568,-0.288,-0.3982,-0.8018,-0.8788,-0.934,-0.3334,-0.0256,-0.1282,0.1282,0.2308,0.3334,0.641,0.8974,0.6924,1,0.5898,0.4872,-0.077,-0.3334,0.2308,0.1794,0.077,0.0256,-0.3334,-0.3334,-0.2308,-0.077,-0.0256,0.2308,0.282,0.4358,0.3846,0.4358,0.3334,0.3846,0.2308,-0.5898,-0.6666,-0.3334,-0.1904,-0.1428,-0.1904,0.238,0.238,0.8096,0.9524,1,0.6666,0.4286,0.2858,0.0952,-0.0952,0,-0.0952,-0.238,-0.238,-0.238,-0.381,-0.238,-0.0952,0.5238,0.619,0.5238,0.2858,0.381,0.381,0.4286,0.238,-0.1904,-0.605,-0.3086,-0.2592,0.0618,0.2098,0.358,0.2346,0.4074,0.284,0.3086,0.4074,0.8024,0.9506,1,0.5802,0.7038,0.753,0.6296,0.4074,0.0864,0.0124,-0.1358,-0.0864,-0.1852,-0.037,-0.0618,0.037,0.4074,0.3828,-0.1112,-0.284,-0.284,-1,-1,-1,-1,-1,-1,-0.8288,-0.8562,-0.5548,-0.6918,-0.589,0.2054,0.2534,0.185,0.1918,0.322,0.7398,0.8904,0.822,0.5,0.1096,-0.3836,-0.815,-0.8356,-0.822,-0.8356,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9518,-0.9588,-0.6106,-0.884,-0.8368,-0.0472,-0.2546,-0.3816,-0.2164,0.1494,0.7846,0.8318,0.7778,0.0246,-0.5172,-0.8338,-0.9272,-0.9204,-0.9292,-0.9342,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.84,-0.9334,-0.7768,-0.6634,-0.7534,-0.5714,-0.6676,-0.6188,-0.5514,-0.5464,-0.6914,-0.6526,-0.5664,-0.5578,-0.6306,-0.7012,-0.7668,-0.6468,-0.78,-0.7468,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,-0.4286,0.2,-0.6572,1,1,-1,-1,-0.9142,-0.8858,-0.9714,-1,-0.8286,-0.5714,-0.5428,-0.6286,-0.8572,-1,-1,-0.1142,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.1642,0.191,0.222,0.2266,0.2598,0.2876,0.2864,0.2856,0.3306,-0.5006,-0.4666,0.9882,-0.8652,-0.5988,-0.0836,0.0884,0.0796,-0.3416,-0.0884,0.0974,0.5486,0.6814,1,0.9646,0.2832,0.2832,0.2566,0.0974,0.1858,0.469,0.5486,0.416,0.6548,0.584,0.1682,0.2124,-0.0796,-0.053,0,0,0.0442,-0.2124,-0.2212,-0.0796,0.2036,0.3716,0.292,0.053,-0.1682,-0.531,0.3334,0.5556,0.3472,0.4584,0.75,0.6806,0.5,0.3056,0.0972,0.25,0.3888,0.4028,0.5694,0.4444,0.7084,0.7222,0.3472,0,0.1666,0.1806,0.4584,0.25,0.1944,0.1806,0.375,0.0278,0.2222,0.8194,1,0.3056,0.125,-0.0556,0.2096,0.4372,0.2694,0.8922,1,0.7724,0.2216,0.1258,0.2096,0.0898,0.2336,0.4492,0.6048,0.3772,0.7126,0.6168,-0.1498,-0.1378,-0.2694,-0.03,0.042,0.1138,-0.1378,-0.2934,-0.0778,-0.2096,0.4252,0.8444,0.8562,0.2096,0.0898,-0.2336,0.0168,-1,-1,1,-1,-1,-1,-0.4666,-1,-0.2708,0.0208,-0.0208,-0.0416,0.2084,0.2292,0.7084,0.9376,1,0.3542,0.2708,0.3124,0.5,0.375,0,0.1666,0.2292,0.25,0.1042,0,0.0834,0.0416,0.2084,0.0624,-0.0208,0.1458,-0.1876,-0.125,0.0624,0.2708,-0.3542,-0.6876,'18'
-0.6026,-0.1354,-0.0874,-0.0568,0.4628,0.5458,0.3712,0.2052,0.0132,-0.1834,-0.166,-0.179,-0.2008,-0.0874,-0.0394,-0.035,0.0568,0.297,0.4672,0.8864,0.8996,0.7248,0.572,0.5808,0.7816,0.7816,0.9476,1,0.9302,0.9126,0.8296,0.6376,-0.4362,-0.081,0.1082,0.1622,0.4634,0.7066,0.8108,0.4826,0.332,0.197,0.0656,0.1004,0.1738,0.2046,0.336,0.4942,0.5676,0.7684,0.8918,0.9306,0.7028,0.61,0.583,0.7414,0.7606,0.888,0.9034,1,0.9382,0.8764,0.803,0.6756,-0.3912,-0.0628,0.166,0.1846,0.369,0.7048,0.7712,0.7676,0.6494,0.4464,0.2916,0.2214,0.3616,0.4392,0.4392,0.6274,0.963,1,0.856,0.7344,0.69,0.727,0.6752,0.7306,0.856,0.856,0.9372,0.8192,0.8746,0.834,0.7232,0.6346,-0.4628,-0.1766,0.0388,0.0354,0.1802,0.4982,0.53,0.728,0.5336,0.318,0.2402,0.2474,0.2862,0.4522,0.675,0.735,1,0.8692,0.477,0.4522,0.3674,0.4204,0.5266,0.4982,0.6608,0.7668,0.742,0.7138,0.477,0.4416,0.4876,0.3958,-0.3492,0,0.2026,0.2026,0.4182,0.7716,0.7802,0.9656,0.6724,0.3794,0.3836,0.4354,0.5,0.7888,0.9914,1,0.8146,0.6508,0.3146,0.3706,0.2716,0.2026,0.513,0.4612,0.5344,0.8578,0.8146,0.3232,0.1896,0.0776,0.112,-0.0302,-0.1574,0.3898,0.3704,0.4964,0.8886,0.8306,0.7578,0.5448,0.661,0.5108,0.443,0.54,0.695,0.8886,1,0.8886,0.3996,0.259,-0.075,-0.0122,0.1332,0.0218,0.2154,0.293,0.3268,0.54,0.6852,0.69,0.3996,0.322,0.2542,-0.0072,-0.0074,1,0.7926,0.274,0.637,0.726,0.2296,0.2,0.0518,-0.0222,-0.037,0.3186,0.7704,0.726,0.7778,0.4814,-0.0222,0.0148,0.1186,0.2296,0.1334,-0.074,-0.0888,0.126,0.4666,0.674,0.6814,0.6222,0.237,0.0296,0.3112,0.1334,-0.7058,0.4118,0.4706,-0.0588,0.5294,0.4706,0.2352,0.0588,-0.0588,-0.0588,-0.0588,-0.1764,-0.1176,0.0588,-0.5882,-0.4118,-0.2942,0.2352,-0.0588,0.7058,0.5882,0.5294,0.5882,0.647,0.7058,0.8236,0.647,1,1,0.8824,0.8824,0.5294,-0.814,-0.628,-0.3954,-0.2558,0.3954,0.4884,0.1162,-0.628,-0.2558,-0.2558,-0.3954,-0.3488,-0.4884,-0.4418,-0.1628,0.0232,0.0698,-0.0698,0.3024,0.8604,0.9534,0.8604,0.4884,0.1162,0.628,0.814,0.9534,1,0.6744,0.721,0.7674,0.721,-0.2666,-0.0222,0.2,0.2444,0.4,0.7556,0.8,0.9778,0.6666,0.4888,0.4666,0.4888,0.5112,0.6888,0.9778,0.9556,1,0.7556,0.5112,0.4888,0.3778,0.4,0.6222,0.4888,0.5556,0.9334,0.8,0.5556,0.4222,0.4444,0.4888,0.2444,-1,-1,-1,-1,-1,-1,-0.919,-0.915,-0.9352,-0.9028,-0.8906,0.2268,0.8582,0.9392,0.9068,0.834,0.6438,0.5748,0.5668,0.6114,0.3604,-0.2024,-0.7652,-0.8906,-0.915,-0.915,-0.8948,-0.9028,-0.911,-0.911,-0.8906,-0.919,-0.911,-1,-1,-1,-1,-1,-1,-0.9638,-0.962,-0.9426,-0.925,-0.8996,0.1126,0.5706,0.8616,0.5706,0.596,0.7494,0.3986,-0.0156,-0.1134,-0.5124,-0.773,-0.8406,-0.7892,-0.8034,-0.7892,-0.725,-0.6954,-0.5934,-0.6542,-0.6576,-0.6828,-0.6222,-1,-1,-1,-1,-1,-1,-0.9652,-0.88,-0.8168,-0.4568,-0.26,-0.2972,-0.4886,-0.4972,-0.5572,-0.4972,-0.56,-0.5926,-0.655,-0.59,-0.7,-0.9126,0.1366,0.7232,0.7066,0.9166,0.9932,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-0.6,-0.5142,-0.5142,-0.6858,1,1,1,-0.8286,-0.9142,-1,-0.8572,-0.2858,-0.5714,-0.3142,0.8,0.5714,1,0.0858,-0.7714,-0.8572,-0.8858,-0.8,-0.8286,-0.9714,-1,-1,-0.8858,1,1,1,1,1,1,1,1,1,1,0.7934,0.7768,0.762,0.732,0.7472,0.7322,0.7052,0.651,0.551,0.0278,-0.56,-0.153,-0.887,-0.5066,0.17,0.5512,0.5606,0.7416,0.0322,0.0506,0.2812,0.4194,0.2996,0.5116,0.5484,0.3456,0.3732,0.493,1,0.5484,0.5668,0.705,0.742,0.8156,0.8064,0.6866,0.3548,0.3088,0.447,0.4194,0.3918,0.493,0.5024,0.2904,0.53,0.401,0.576,0.4378,0.4838,-0.1428,-0.2474,-0.362,-0.4982,0.4838,0.362,0.2616,0.2832,0.233,0.0824,0.2974,0.5914,0.4408,0.663,0.656,0.957,0.8638,0.7348,0.656,0.5842,0.3906,0.6774,0.3118,0.19,-0.018,0.1756,0.448,0.6416,0.5914,0.7778,1,0.7562,0.3692,-0.6232,-0.5822,-0.3014,-0.137,-0.2808,-0.3014,-0.1506,-0.2192,-0.1986,0.0616,0.3972,0.185,0.3494,1,0.9932,0.5136,0.4726,0.685,0.7192,0.2398,0.4316,0.2466,-0.274,0.0068,0.185,0.274,0.5,0.9246,0.959,0.9316,0.8836,0.3082,-0.9882,1,-1,-1,-1,-1,-1,-1,-1,-0.7674,-0.5968,-0.3488,-0.3954,-0.3954,-0.3334,-0.1938,-0.4108,-0.2714,-0.3024,-0.3954,-0.0852,-0.1318,0.0852,-0.0232,0.0852,0.0852,0.4108,0.814,0.5814,0.4728,0.7984,0.752,0.7054,0.969,0.7984,0.5814,0.5348,0.876,1,0.9224,0.5658,'19'
-0.8796,-0.213,-0.1712,0.0046,0.2084,0.2592,0.125,-0.2038,-0.3288,-0.3334,-0.5602,-0.3842,-0.2592,-0.162,-0.2454,-0.0648,0.074,0.0232,0.3888,0.8102,0.75,0.676,0.6342,0.4676,0.7314,0.787,0.8056,1,0.9444,0.8658,0.8334,0.7038,-0.5138,-0.1028,0.1344,0.1976,0.498,0.4862,0.6324,0.2412,0.0712,0.0672,-0.087,0,-0.0554,-0.1344,-0.0316,0.083,0.2252,0.585,0.8064,0.917,0.7392,0.7114,0.3558,0.257,0.4308,0.7392,0.8498,1,0.7866,0.751,0.419,0.2292,-0.4212,-0.0368,0.2916,0.3174,0.3866,0.879,0.9568,0.6026,0.447,0.5248,0.2614,0.2354,0.4082,0.1664,0.2742,0.5162,0.7106,0.6976,0.9654,0.7884,0.6286,0.8272,0.6976,0.2916,0.7322,0.7192,1,0.81,0.6804,0.7062,0.7062,0.4384,-0.3952,-0.0552,0.298,0.2848,0.3554,0.8632,0.8498,0.8896,0.6778,0.6688,0.4172,0.5806,0.585,0.554,0.9868,1,0.9338,0.7572,0.7396,0.329,0.638,0.713,0.563,0.8278,0.9426,0.9294,0.7396,0.6866,0.5232,0.351,0.3686,0.245,-0.514,-0.2232,0.0956,0.0796,0.2192,0.6852,0.6614,0.7768,0.506,0.4104,0.4144,0.49,0.5738,0.6812,1,0.8606,0.6772,0.3626,0.2868,0.3746,0.275,0.2908,0.3864,0.502,0.6216,0.6734,0.5816,0.4702,0.267,0.1752,0.0876,-0.0678,-0.444,-0.0328,0.257,0.2664,0.5094,0.9346,0.9486,0.701,0.5468,0.5794,0.4532,0.6496,0.8318,1,0.9486,0.7944,0.5468,0.4112,0.2898,0.4252,0.4018,0.3926,0.528,0.6588,0.729,0.8458,0.7102,0.6262,0.3084,0.2336,0.1262,0.0094,-0.2252,0.5232,0.212,0.1788,0.9272,0.8742,0.4636,0.212,0.3178,0.1656,0.0662,0.3576,0.6622,0.8544,0.437,0.212,0.0132,-0.1524,-0.245,-0.2516,0.053,0.2052,0.0794,0.3444,0.4172,0.7218,1,0.7748,0.351,0.212,-0.0398,0.1854,-0.6756,0.1352,0.027,0.1892,0.1352,0.1352,-0.027,0.081,-0.1352,0.081,-0.1892,-0.2432,-0.081,0.2432,0.081,0.2432,0.2972,0.2432,0.6216,0.8378,0.8378,0.6756,0.7838,0.6216,0.8378,0.8378,0.6756,1,0.6216,0.7298,0.4054,0.2972,-0.2778,0,-0.1112,-0.3334,0.5,0.5,0.2778,-0.0556,-0.2222,-0.5556,-0.7778,-0.0556,0.0556,0,-0.1112,-0.2222,-0.0556,-0.0556,0,0.8888,0.9444,0.6666,0.4444,0.5,0.7222,0.7222,0.7778,0.7778,0.9444,1,1,0.9444,-0.3176,0.0118,0.3412,0.3648,0.4352,0.9294,1,0.5764,0.4352,0.5764,0.2942,0.2706,0.4824,0.2236,0.2706,0.553,0.6706,0.647,1,0.8352,0.6706,0.8824,0.7882,0.2942,0.5294,0.647,1,0.8118,0.7882,0.7648,0.647,0.4352,-1,-1,-1,-1,-1,-1,-0.8758,-0.923,-0.8994,-0.9054,-0.864,-0.065,0.6628,0.787,0.8816,0.9822,0.8994,0.858,0.8284,0.7514,0.645,-0.065,-0.7278,-0.864,-0.8816,-0.8462,-0.8698,-0.8758,-0.8994,-0.8698,-0.8934,-0.8876,-0.8934,-1,-1,-1,-1,-1,-1,-0.96,-0.9628,-0.961,-0.9444,-0.9326,-0.3884,0.6962,-0.1588,-0.0836,-0.0298,0.1118,0.365,0.273,-0.0708,-0.3982,-0.744,-0.6844,-0.6766,-0.7226,-0.658,-0.6902,-0.5632,-0.5614,-0.6014,-0.4088,-0.3972,-0.404,-1,-1,-1,-1,-1,-1,-0.9138,-0.98,-0.8668,-0.8334,-0.5734,-0.3172,-0.203,-0.343,-0.5326,-0.3326,-0.4876,-0.555,-0.565,-0.6226,-0.65,-0.595,0.9466,1,0.87,0.9866,0.91,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-0.0858,-0.9428,-0.7714,-0.6858,0.5428,1,1,-0.4572,-0.8286,-0.8572,-0.8286,-0.8572,-0.9714,-0.8286,1,1,1,-0.8286,-0.9714,-0.9714,-0.8286,-0.8,-0.7428,-0.9714,-0.6858,-0.8286,-0.9142,0.8364,0.8752,0.9094,0.9854,1,1,1,1,1,1,0.6404,0.6402,0.657,0.6686,0.6786,0.6486,0.6572,0.5688,0.4322,0.0146,-0.56,-0.1176,-0.9336,-0.657,-0.1852,-0.2614,0.955,-0.1334,0.0744,0.1596,-0.117,0.7234,0.5,0.0532,0.734,0.9468,0.5,0.734,0.649,0.6914,0.8618,0.6914,0.7446,0.617,0.4788,1,0.9788,0.4468,0.6064,0.7872,0.6276,0.5,0.4894,0.5532,0.532,0.3724,0.266,0.617,0.734,-0.1276,-0.0854,-0.1658,-0.2964,0.1658,0.1356,0.387,0.5276,0.9396,0.4572,0.4372,0.5076,0.4272,0.397,0.8994,1,0.9598,0.598,0.8392,0.8894,0.2764,0.1256,0.7688,0.4774,0.3668,0.3568,0.2462,0.1156,0.2664,0.5778,0.8292,0.5076,-0.1256,-0.431,-0.5482,-0.3974,0.2636,0.0628,-0.364,0.2468,-0.046,0.1214,-0.046,0.5146,0.272,0.138,0.5146,0.615,0.6652,0.6652,0.7072,0.8996,0.5398,0.113,0.523,0.498,-0.2804,0.0126,0.0292,0.0042,0.364,0.6318,0.8076,1,0.6486,-0.996,1,-1,-1,-1,-1,-1,-1,-1,-0.6646,-0.6516,-0.4968,-0.3162,-0.4968,-0.458,-0.1612,-0.1354,-0.0968,-0.3162,-0.1612,-0.329,-0.0968,0.187,0.1612,0.3032,0.3806,0.587,0.8452,0.6904,0.7936,0.9096,0.8322,0.8968,0.9484,1,0.9226,0.9612,0.871,0.8322,0.9096,0.4838,'19'
-0.2424,0.4094,0.2872,0.446,0.1608,-0.3402,-0.4786,-0.4624,-0.4704,-0.5764,-0.4908,-0.5682,-0.3972,-0.4378,-0.389,-0.2708,-0.3198,-0.2546,-0.002,0.1894,0.4746,0.5478,0.947,0.939,0.8126,0.6742,0.8126,0.9714,1,0.8818,0.7312,0.4582,-0.4488,-0.0274,0.02,0.177,-0.0848,-0.4314,-0.5536,-0.5936,-0.5462,-0.6584,-0.5736,-0.566,-0.5112,-0.4564,-0.4688,-0.2892,-0.379,-0.2094,-0.01,0.0748,0.3242,0.4114,0.6982,0.7108,0.8354,0.7432,0.8154,0.96,1,0.9252,0.8404,0.6084,-0.459,-0.087,0.0502,0.1578,-0.1824,-0.4712,-0.5594,-0.6524,-0.552,-0.5986,-0.5594,-0.508,-0.5544,-0.4394,-0.4638,-0.3708,-0.2314,-0.2216,-0.1064,-0.0012,0.153,0.4248,0.4908,0.8482,0.8384,0.7748,0.787,0.9046,0.9756,1,0.8066,0.7478,-0.4766,-0.1042,0.1302,0.2318,-0.1796,-0.4636,-0.7162,-0.7318,-0.6406,-0.677,-0.7006,-0.6458,-0.5808,-0.4584,-0.5468,-0.5364,-0.302,-0.3776,-0.2344,0.0104,0.0364,0.362,0.5286,0.7032,0.8124,0.875,0.836,0.7942,1,0.8282,0.9192,0.7032,-0.3988,0.0256,0.2394,0.3418,-0.114,-0.3362,-0.6666,-0.6324,-0.5556,-0.7806,-0.7664,-0.5926,-0.6696,-0.4958,-0.3732,-0.379,-0.396,-0.4274,-0.2962,-0.0912,-0.0284,0.3874,0.51,0.7436,0.8974,0.963,0.8348,0.8062,1,0.8206,0.8462,0.621,-0.262,0.4314,0.3024,0.5162,0.1452,-0.613,-0.6008,-0.629,-0.7096,-0.8428,-0.7944,-0.8306,-0.613,-0.742,-0.504,-0.621,-0.6532,-0.7338,-0.5846,-0.3508,-0.012,-0.0242,0.4032,0.8226,0.9638,0.8346,0.9436,0.9314,1,0.875,0.6008,0.492,-0.688,0.3688,0.2128,0.0212,-0.468,-0.7802,-0.454,-0.3758,-0.7518,-0.7872,-0.6524,-0.5816,-0.4326,-0.461,-0.539,-0.773,-0.4256,-0.39,-0.1844,0.454,0.844,1,0.9148,0.5958,0.8086,0.7092,0.8368,0.8936,0.7022,0.1064,0.0852,0.0852,0.2728,0.8636,0.7728,0.5,0.5,0.1364,0.1364,0.1364,-0.1818,0.3182,0.3636,0.1818,-0.1364,-0.091,0.1364,0.1818,0.1818,0.1364,0.5,0.6818,0.591,0.5454,0.9546,0.909,0.5454,0.4546,0.8182,0.9546,1,1,0.8182,0.6364,0.3024,0.814,0.5814,0.814,0.5348,0.1162,0.1162,0.0698,0.0698,0.0698,-0.0698,-0.1162,0.0698,-0.0698,-0.0698,0.3024,0.3488,0.1162,-0.0698,0.5348,0.3488,0.907,0.8604,0.9534,0.6744,0.907,0.721,0.8604,0.9534,1,0.721,0.6744,-0.3418,0.1392,0.2152,0.3924,-0.0126,-0.595,-0.6962,-0.7468,-0.6708,-0.7468,-0.7468,-0.8228,-0.5444,-0.7216,-0.5444,-0.3924,-0.4936,-0.367,-0.5696,-0.2406,-0.0632,0.1898,0.3164,0.8228,0.7974,0.8988,0.8482,1,0.7722,0.8988,0.6962,0.6456,-1,-1,-0.9166,-0.9444,-0.7256,-0.7654,-0.8768,-0.8608,-0.8688,-0.8568,-0.7734,0.5746,0.837,0.9602,0.829,0.7852,0.9166,0.7774,0.5626,0.3836,-0.177,-0.7496,-0.9046,-0.9006,-0.9086,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9662,-0.9694,-0.1528,0.0016,0.7544,0.6532,-0.0468,-0.4974,-0.8074,-0.5556,0.3476,0.9072,0.9018,0.69,0.5924,0.2702,-0.2264,-0.525,-0.7322,-0.9194,-0.9578,-0.931,-0.9332,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8934,-0.9134,0.7032,1,1,1,1,0.7866,0.38,-0.6756,-0.1424,0.0888,0.0532,0.06,-0.0178,-0.028,-0.234,-0.53,-0.784,-0.6,-0.7668,-0.76,-0.84,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,-0.1428,0,0.3142,1,1,0.9714,0.6286,-0.8,-1,-0.8858,-1,-1,-0.6,-0.4286,0.0286,-0.5428,-0.6858,-0.8858,-0.5428,-1,-1,-1,-1,-1,-1,-1,-1,-0.1096,-0.1068,-0.124,-0.1376,-0.1358,-0.1108,-0.0752,-0.0606,-0.0596,-0.0962,1,1,1,1,1,1,1,1,1,1,-0.6666,0.1058,-0.8182,-0.7858,-0.6248,-0.4736,-0.1344,-0.7334,-0.9364,-0.682,-0.63,-0.555,-0.5346,-0.5404,-0.526,-0.5086,-0.4942,-0.3498,-0.2024,-0.2024,-0.1676,0.0492,0.0404,0.026,0.2284,0.292,0.4856,0.4884,0.3498,0.4884,0.7168,0.8294,0.971,1,0.7254,0.682,0.6676,0.656,0.5982,0.2168,-0.9388,-0.8852,-0.6786,-0.5816,-0.5562,-0.5484,-0.5102,-0.4592,-0.3036,-0.1072,0.1352,0.1174,0.0408,0.4846,0.472,0.0586,0.204,0.352,0.6326,0.671,0.5918,0.6148,0.7806,0.977,1,0.8086,0.6506,0.6812,0.4974,0.3316,0.3928,0.148,-0.7544,-0.4484,-0.459,-0.3558,-0.4092,-0.3914,-0.4092,-0.2242,0.0214,0.2776,0.612,0.7508,0.3808,0.7686,0.8506,0.3986,0.4342,0.6192,0.943,1,0.758,0.8576,0.8434,0.694,0.6086,0.6442,0.4412,0.3238,0.3452,0.484,0.5944,0.2384,0.0116,-1,-1,1,-1,-1,-1,0.3666,-1,-0.3028,-0.0642,-0.0092,-0.0642,-0.1192,0.0642,-0.0092,0.5596,0.7982,0.5046,0.4862,0.5412,0.578,0.0458,0.2294,0.5964,0.7064,0.9266,1,0.8166,0.3394,0.3394,0.3762,0.1376,0.0826,0.2844,0.0642,0.0092,-0.1744,0.0826,0.0642,-0.5964,'20'
-0.5926,-0.0874,0.1376,0.283,-0.172,-0.5502,-0.656,-0.5926,-0.7936,-0.6032,-0.5952,-0.5794,-0.5396,-0.5292,-0.492,-0.5292,-0.574,-0.5292,-0.328,-0.1296,0.0106,0.4022,0.6932,0.918,0.881,0.701,0.7884,0.9576,1,0.8624,0.6746,0.3942,-0.6548,-0.3162,0.0526,0.1126,-0.5134,-0.6956,-0.762,-0.8114,-0.8822,-0.7234,-0.6764,-0.6312,-0.5906,-0.6312,-0.612,-0.5156,-0.5112,-0.6464,-0.2926,-0.1704,0.1276,0.2926,0.5498,0.9206,1,0.7664,0.775,0.985,0.9378,0.9658,0.7964,0.6784,-0.608,-0.2802,0.1296,0.1672,-0.5548,-0.659,-0.7498,-0.6256,-0.7896,-0.7962,-0.588,-0.5946,-0.7674,-0.6256,-0.5924,-0.5682,-0.639,-0.6124,-0.3576,-0.3134,-0.1472,0.3644,0.5858,0.876,0.7808,0.825,0.8826,0.8672,1,0.8672,0.8428,0.6612,-0.6,-0.261,0.182,0.2022,-0.5684,-0.7176,-0.8012,-0.704,-0.8034,-0.8532,-0.8418,-0.7424,-0.6,-0.6724,-0.6406,-0.6316,-0.609,-0.5616,-0.4372,-0.148,-0.0056,0.331,0.7152,0.9412,0.835,0.8824,0.8848,0.8938,1,0.8758,0.8192,0.6588,-0.5934,-0.2416,0.176,0.2154,-0.5148,-0.6438,-0.7968,-0.7552,-0.8514,-0.7748,-0.7968,-0.764,-0.705,-0.7136,-0.6546,-0.6394,-0.6678,-0.5278,-0.4886,-0.1868,0.1038,0.4514,0.5214,0.9476,0.8602,1,0.954,0.952,0.801,0.6218,0.7072,0.495,-0.5236,-0.0324,0.3236,0.4382,-0.453,-0.5794,-0.6706,-0.603,-0.7442,-0.7882,-0.803,-0.6352,-0.6148,-0.7264,-0.7442,-0.747,-0.703,-0.6676,-0.503,-0.3912,-0.0676,0.3324,0.8352,0.9294,0.8294,1,0.9824,0.9882,0.5706,0.297,0.3412,0.2442,-0.5876,0.4794,0.2886,0.2216,-0.103,-0.531,-0.567,-0.4484,-0.7732,-0.964,-0.598,-0.3866,-0.299,-0.4794,-0.366,-0.3454,-0.464,-0.4226,-0.1494,0.1958,0.567,0.7062,0.7628,0.9588,1,0.969,0.9382,0.7886,0.3608,0.3814,0.0516,0.031,-0.2,0.3714,0.2572,0.3142,0.1428,-0.3142,-0.1428,-0.0286,-0.6,-0.1428,-0.0286,-0.3714,-0.3142,-0.1428,0.0286,-0.2,-0.4858,-0.3142,-0.0286,0.1428,0.2572,0.3142,0.2,0.5428,0.6572,0.4286,0.7142,0.7714,0.8858,1,0.6,0.4858,-0.2632,0.2106,0.1578,0.4736,0,-0.421,-0.3158,-0.3158,-0.5264,-0.421,-0.3684,-0.2106,-0.1052,-0.3158,-0.3684,-0.3158,-0.6316,-0.5264,-0.2632,-0.1578,0.2106,0.1578,0.7894,0.8948,0.8422,0.1578,0.2106,1,0.8948,0.579,0.3684,0.2106,-0.4584,-0.1458,0.25,0.2916,-0.3958,-0.6666,-0.5624,-0.5416,-0.8542,-0.6876,-0.5,-0.4376,-0.625,-0.4584,-0.4166,-0.6042,-0.5416,-0.3958,-0.4166,-0.1042,0.2084,0.5208,0.625,0.9584,0.8958,0.9792,0.9792,1,0.7292,0.6042,0.6876,0.5,-0.892,-0.8202,-0.7626,-0.7554,-0.7842,-0.8274,-0.8058,-0.6834,-0.6188,-0.7842,-0.7554,0.41,0.813,0.5828,0.705,0.8992,0.8562,0.9064,0.7554,0.3884,0.0072,-0.4028,-0.7698,-0.8418,-0.8274,-0.8776,-1,-1,-1,-1,-1,-1,-1,-0.9504,-0.4684,1,0.8514,0.8364,0.8048,0.7762,0.2868,-0.1952,-0.6652,-0.8198,-0.3018,0.7238,0.8888,0.452,0.419,0.407,0.3948,0.042,-0.4834,-0.6786,-0.8048,-0.9114,-0.9234,-0.8618,-0.7972,-1,-1,-1,-1,-1,-1,-1,-1,0.2266,1,1,1,1,0.8432,0.81,0.6332,0.3532,-0.1634,-0.414,0.0952,0.0968,-0.2232,-0.1816,-0.134,-0.1078,-0.0924,-0.277,-0.5524,-0.6448,-0.7534,-0.8068,-0.8668,-0.8068,-1,-1,-1,-1,-1,-1,-1,1,1,1,-0.7142,-0.8572,-0.8572,-0.7714,-0.3714,0.6858,1,1,0.1142,-0.4286,-1,-1,-1,-1,-0.9428,-0.8858,-0.6,-0.6286,0.1428,-0.4,-0.9714,-0.7714,0,-1,-1,-1,-1,-1,-1,-1,-0.0084,-0.0222,-0.01,-0.0478,-0.0532,-0.0432,-0.0722,-0.1074,-0.1208,-0.1156,1,1,1,1,1,1,1,1,1,1,-0.5866,0.5648,-0.8244,-0.7102,-0.5556,-0.437,-0.1052,-0.7666,-0.7958,-0.732,-0.6082,-0.5072,-0.5052,-0.433,-0.501,-0.4144,-0.3216,-0.2372,0.0412,-0.0082,0.0104,0.2824,0.4268,0.3072,0.4928,0.5814,0.7628,0.7444,0.8288,0.8372,0.9114,1,0.969,0.7752,0.5712,0.5506,0.497,0.4908,0.3712,0.202,-0.84,-0.7886,-0.6482,-0.5494,-0.5434,-0.4348,-0.3676,-0.336,-0.1028,0.0276,0.4506,0.4348,0.2252,0.6778,0.7708,0.411,0.4724,0.751,0.8478,0.9408,1,0.9684,0.996,0.8874,0.8004,0.8024,0.6778,0.6086,0.4664,0.4782,0.3084,-0.0356,-0.675,-0.5744,-0.4862,-0.2896,-0.3098,-0.2746,-0.2368,-0.2216,0.0202,0.1688,0.4282,0.8086,0.607,0.7732,0.9824,0.6246,0.4282,0.5642,1,0.9748,0.6802,0.7556,0.8136,0.6146,0.5138,0.4308,0.476,0.3854,0.4408,0.4232,0.3602,0.204,1,-1,1,-1,-1,-1,-1,1,-1,-0.3016,-0.3492,-0.2064,-0.0634,-0.1904,0.0634,-0.0476,0.1588,0.3174,0.5556,0.8412,0.9842,1,0.5874,0.254,0.238,0.4126,0.4762,0.508,0.2698,0.1428,-0.0318,-0.0158,0.0318,0.1904,0.1746,0.0952,-0.0634,0.1428,0.0476,-0.0318,-0.3492,'20'
-0.1836,0.2302,0.148,0.1178,-0.4028,-0.8136,-0.4986,-0.4466,-0.789,-0.9068,-0.8904,-0.8356,-0.5506,-0.5864,-0.5918,-0.6,-0.5316,-0.3864,-0.3124,-0.0164,0.5096,0.7808,0.9206,0.5534,0.7178,0.822,1,0.959,0.8192,0.7836,0.7014,0.8,-0.359,-0.0588,0.1582,0.1238,-0.4362,-0.8174,-0.858,-0.8052,-0.9026,-0.929,-0.8904,-0.6654,-0.72,-0.6694,-0.5112,-0.4158,-0.2962,-0.211,0.221,0.3996,0.8336,0.8256,0.927,1,0.9066,0.6268,0.434,0.3306,0.3874,0.3956,0.361,0.4848,-0.19,0.2058,0.6754,0.62,-0.1688,-0.591,-0.7942,-0.6518,-0.6122,-0.6966,-0.554,-0.43,-0.1846,-0.0026,0.0898,0.5726,0.723,0.657,0.6042,0.467,0.7572,0.8338,1,0.9366,0.8232,0.496,0.3166,0.2216,0.2638,0.3906,0.3984,0.5646,-0.035,0.4268,1,0.9332,0.3662,-0.3376,-0.4522,-0.6942,-0.2516,-0.1434,0.0414,0.2516,0.5064,0.6338,0.3726,0.1496,-0.086,0.035,-0.1656,-0.2166,-0.0192,0.2738,0.4394,0.5128,0.2834,-0.1274,-0.242,-0.4044,-0.328,0.0796,0.2484,0.363,0.0614,0.5654,1,0.9464,0.4834,0.0204,-0.0772,0.159,0.3764,0.3638,-0.0992,-0.5024,-0.5464,-0.4898,-0.6882,-0.7606,-0.6314,-0.537,-0.8048,-0.8488,-0.7196,-0.5748,-0.5338,-0.2378,-0.2662,-0.6724,-0.6504,-0.6032,-0.5874,-0.559,-0.4582,-0.2032,0.0014,0.6154,0.8808,1,0.4188,0.2996,0.4932,0.0284,-0.4038,-0.7854,-0.7704,-0.6602,-0.678,-0.7884,-0.6692,-0.69,-0.6722,-0.687,-0.833,-0.8898,-0.544,-0.6006,-0.6542,-0.6424,-0.5022,-0.4218,-0.7884,-0.7616,-0.699,-0.6572,-0.6274,-0.3502,0.1316,1,0.6778,0.5246,0.2692,0.1552,0.3046,0.3792,0.4696,0.2652,0.2534,-0.163,-0.218,-0.171,-0.1394,-0.1552,-0.4656,-0.2848,-0.4538,-0.5284,-0.1238,-0.163,-0.1944,0.3046,0.391,0.171,-0.1828,-0.4264,-0.336,-0.2102,-0.0374,0.1042,0.3914,1,0.5652,0.4782,-0.4782,-0.1304,-0.0434,-0.0434,-0.3044,0.0434,0.0434,0.3044,0.4782,0.3044,-0.913,0.0434,0.2174,0.0434,0.0434,0.2174,0.1304,-0.3044,-0.3914,0.1304,0.3914,0.5652,0.6522,0.6522,0.4782,0.7392,0.826,0.826,0.1282,0.4358,0.077,0.2308,-0.0256,-0.1282,-0.077,-0.0256,-0.5898,-0.5898,-0.641,-0.4358,-0.3334,-0.5384,-0.1794,-0.077,-0.1794,-0.077,-0.1794,0.1282,0.4872,0.4358,0.7436,0.641,0.5384,0.7436,0.7436,0.9488,0.8462,1,0.8974,0.6924,0.1612,0.5162,1,0.9354,0.5162,0.0322,-0.0968,-0.3548,0.0646,0.2904,0.387,0.8064,0.5484,0.387,0.2258,-0.0322,-0.387,-0.1612,-0.1936,-0.0968,-0.387,0.1936,0.2904,0.4516,0.0968,0.129,0,-0.2258,-0.1612,0.129,0.387,0.613,-1,-1,-1,-1,-1,-1,-1,-1,-0.9162,-0.9162,-0.8324,-0.1924,0.261,0.6228,0.8896,0.962,0.8666,0.661,0.501,0.4058,0.421,-0.3752,-0.8552,-0.9048,-0.9086,-0.92,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.904,-0.9158,-0.8668,-0.3766,0.3632,0.8602,0.3968,0.2738,0.0498,-0.1592,-0.2452,-0.2552,-0.2148,-0.6444,-0.8804,-0.8838,-0.9006,-0.9106,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9,-0.9468,-0.8068,-0.676,-0.3134,-0.128,-0.492,-0.692,-0.7974,-0.8214,-0.8214,-0.8228,-0.8188,-0.82,-0.9468,-0.8134,-0.78,-0.86,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,-0.9428,-0.1714,1,-0.7428,-0.7714,-0.8858,-0.8286,-0.6858,-0.7714,-0.7714,-1,-0.6286,-0.4,-0.9142,-1,-0.9428,-0.8572,-1,-1,-1,-1,-1,-1,-1,-0.3244,-0.3342,-0.3724,-0.3804,-0.3828,-0.4368,-0.4692,-0.483,-0.4306,-0.086,0.812,0.8666,0.8516,0.8542,0.9304,0.9658,0.964,0.8952,0.5078,0.1298,-0.5334,0.847,-0.8584,-0.732,-0.5888,-0.4676,-0.2788,-0.75,-0.2804,-0.256,-0.3292,0.683,0.3658,0.0366,0.1708,0.3902,0.244,0.1952,0.5,0.1464,0.1708,0.3292,0.744,0.8536,0.2926,0.5732,0.9024,1,0.0854,0,0.0854,-0.1586,0.0122,-0.378,0.6952,0.5732,0.5122,0.1098,-0.122,-0.3902,-0.0202,0.101,-0.1112,0.505,0.2626,0.0506,0.4142,0.5152,0.2526,0.2222,0.4344,0.404,0.4142,0.495,0.5454,0.697,0.707,0.5858,0.5556,0.798,0.3132,0.1818,0.2526,0.3636,0.192,0.394,0.606,1,0.7676,0.4646,0.3334,0.0606,-0.0918,0.0242,-0.14,0.4106,0.2658,0.0724,0.3236,0.2464,0.1788,0.0822,0.285,0.343,0.401,0.4106,0.6426,0.6136,0.6908,0.5072,0.5846,0.7584,0.0628,-0.0048,0.2078,0.0532,-0.0822,0.0628,0.4106,0.9324,1,0.3334,-0.1208,-0.2464,-0.9562,1,-1,-1,-1,-1,-1,-1,-1,-0.253,0.1326,0.012,0.4216,0.4458,0.6144,0.6144,0.4698,0.494,0.2048,0.6386,0.6144,0.735,0.4458,0.3254,0.6626,1,0.2772,0.3734,0.518,0.8072,0.4698,0.3494,-0.0362,0.0602,-0.0844,-0.3012,-0.229,0.3494,0.4458,0.229,-0.5422,'21'
-0.2844,0.0396,0.0974,0.0472,-0.8342,-0.9228,-0.8514,-0.8842,-0.8824,-0.9498,-0.8862,-0.6934,-0.6934,-0.732,-0.757,-0.811,-0.784,-0.4908,-0.57,-0.3154,0.2016,0.5256,0.6412,0.8572,0.755,0.6354,1,0.8766,0.8052,0.9286,0.7994,0.755,-0.2948,-0.0042,0.2626,0.2184,-0.5752,-0.7044,-0.7672,-0.7774,-0.7978,-0.8844,-0.9388,-0.616,-0.7248,-0.7808,-0.6006,-0.6806,-0.5328,-0.1928,-0.0518,0.2234,0.6636,0.876,1,0.8624,0.7758,0.7078,0.39,0.3016,0.3016,0.3746,0.3016,0.441,-0.235,0.1044,0.7218,0.6376,-0.0958,-0.4204,-0.57,-0.7282,-0.4858,-0.6818,-0.6838,-0.4394,-0.433,-0.2414,-0.0032,0.2076,0.2202,0.3698,0.3972,0.3004,0.2518,0.705,0.8378,1,0.6438,0.2876,0.0116,0.1338,-0.0116,0.0558,0.2856,0.2414,-0.1278,0.2412,1,0.8478,0.3342,-0.2078,-0.4116,-0.4116,-0.249,-0.107,0.0864,0.2438,0.311,0.2646,0.3368,-0.3704,-0.4012,-0.378,-0.4684,-0.44,-0.2646,-0.102,0.3084,0.4684,0.6388,0.0322,-0.2438,-0.2284,-0.3084,-0.0812,-0.089,-0.12,-0.0646,0.3692,1,0.8922,0.523,-0.132,-0.124,-0.0026,0.1968,0.2912,0.31,-0.3936,-0.4124,-0.5014,-0.6522,-0.8788,-0.8652,-0.7224,-0.884,-0.876,-0.6442,-0.5984,-0.5014,-0.2912,0.0512,-0.1106,-0.6146,-0.496,-0.6604,-0.69,-0.4852,-0.461,0.0212,0.5876,1,0.9346,0.7708,0.113,0.2308,0.5384,0.0868,-0.437,-0.653,-0.7414,-0.6006,-0.6596,-0.6694,-0.7676,-0.82,-0.7086,-0.8854,-0.9116,-0.676,-0.6498,-0.6596,-0.3944,-0.031,-0.0474,-0.378,-0.6824,-0.8494,-0.6202,-0.46,-0.5516,0.1596,1,0.5886,0.5602,0.688,0.5602,-0.234,0.2766,0.3652,0.7022,0.5886,-0.0284,-0.0886,-0.0886,-0.2802,-0.4114,-0.4148,-0.383,-0.7624,-0.6064,-0.3688,-0.1774,-0.0248,0.4788,0.649,0.3014,-0.1028,-0.1206,-0.2446,-0.1632,0.1276,0.4114,-0.125,0.1666,0.1666,0.1666,-0.4584,-0.5834,-0.375,-0.2916,-0.4584,-0.5416,-0.2084,-0.1666,-0.25,-0.2084,-0.2916,-0.2916,-0.2916,-0.125,-0.1666,-0.0834,0.2084,0.4584,0.8334,0.625,0.5,0.5834,0.875,0.7916,0.8334,1,1,0.7916,0.0188,0.3208,0.283,0.2076,-0.434,-0.3208,-0.283,-0.3208,-0.283,-0.3208,-0.4716,-0.434,-0.3208,-0.132,-0.0566,-0.0566,-0.0566,0.0188,-0.2452,-0.132,0.3584,0.5472,0.7358,0.8868,0.7736,0.6604,0.8868,0.8868,0.8868,1,0.9622,0.8114,-0.1272,0.2364,1,0.8182,0.3818,-0.2728,-0.3454,-0.2,0.0182,-0.1636,0.2364,0.491,0.8182,0.3818,0.3454,-0.2364,-0.2,-0.1272,-0.4546,-0.309,-0.0546,0.1272,0.4546,0.7818,0.709,-0.2364,-0.3454,-0.4546,-0.309,-0.0546,-0.1272,-0.0546,-1,-1,-1,-1,-1,-0.938,-0.941,-0.6928,-0.3856,-0.4328,-0.4002,-0.3206,-0.031,0.3738,0.7962,0.9586,0.6662,0.359,0.1048,-0.164,-0.0842,-0.5332,-0.8818,-0.9084,-0.9556,-0.9438,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9096,-0.8986,-0.7266,-0.4516,-0.2832,-0.1764,0.0118,0.276,0.7882,0.685,0.5058,0.276,-0.0316,-0.267,-0.4082,-0.3032,-0.5692,-0.8064,-0.848,-0.8552,-0.8696,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8268,-0.91,-0.7568,-0.6934,-0.0934,-0.1368,-0.3096,-0.266,-0.19,-0.6178,-0.83,-0.9612,-0.959,-0.96,-0.9146,-0.9146,-0.8312,-0.7368,-0.6268,-0.64,-0.8134,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7142,0.5714,0.6572,0.0286,-0.9428,-0.9142,-0.8858,-0.9142,-0.8286,-0.8,-0.6572,-0.7428,-0.9714,-0.9428,-0.7714,-0.4858,-0.8286,-0.9428,-0.9428,-0.8858,-1,-1,-1,-1,-1,-1,-1,-0.6362,-0.6372,-0.6298,-0.6518,-0.658,-0.6762,-0.6514,-0.6262,-0.445,-0.1448,0.9994,1,1,1,1,1,1,0.989,0.6168,0.2904,-0.48,1,-0.142,-0.1312,-0.0082,0.095,0.1132,-0.9334,0.437,0.647,-0.1512,-0.2774,-0.2016,-0.2522,0.0168,-0.1092,-0.0168,-0.1176,0.1848,0.689,0.5378,0.5294,0.8656,1,0.8908,0.6806,0.647,0.7478,0.2184,0.2522,0.1932,0.1848,0.3446,0.3698,0.6218,0.4958,0.521,0.6134,0.3782,0.1932,0.2146,0.307,-0.0034,-0.241,-0.3268,-0.4786,-0.34,-0.2278,-0.1816,-0.2344,0.4126,0.7756,0.637,0.637,0.9802,0.8944,0.9538,0.7558,0.703,1,0.5116,-0.0364,-0.043,0.0694,0.0364,0.1354,0.6304,0.6634,0.5908,0.6172,0.0562,-0.2608,0.1852,0.3086,-0.0062,-0.247,-0.2962,-0.3272,-0.1358,-0.0926,-0.3396,-0.0988,0.3642,0.6112,0.7592,0.8518,0.9382,1,0.8888,0.7408,0.716,0.9136,0.6544,-0.1172,-0.105,0.0246,0.1112,0.179,0.7346,0.6728,0.3518,0.3272,0.1728,0.037,-0.5656,-1,-1,1,0.8,-1,-1,-0.3334,-1,-0.077,0.1328,0.035,0.1888,0.091,0.3426,0.6504,0.4966,0.3286,0.2868,0.5384,0.4126,0.4546,0.2868,0.2868,0.3426,0.3146,0.2168,0.4966,0.5944,1,0.93,0.3006,0.4126,0.1048,0.2728,0.2868,0.063,0.1748,0.2728,0.3286,-0.1188,'21'
-0.093,0.6112,1,0.9436,0.6778,-0.2956,-0.0664,0.0432,-0.4784,-0.5614,-0.4418,-0.3688,0.1828,0.5946,0.8372,0.6778,0.4252,-0.2358,-0.2458,-0.0698,0.176,0.5182,0.5448,0.6146,0.2126,0.0266,-0.329,-0.6046,-0.4784,-0.4152,-0.2692,-0.03,-0.0556,0.463,0.363,0.0666,-0.2962,-0.663,-0.2186,-0.0926,-0.626,-0.6334,-0.4962,-0.3038,-0.3,-0.4592,-0.174,0.0112,0.0334,0,-0.0592,0.1148,-0.0334,0.1926,0.6112,1,0.6408,0.1962,0.1334,-0.0556,-0.0074,0.0592,-0.0592,0.1888,-0.289,0.0706,0.5154,0.418,-0.14,-0.6822,-0.722,-0.6684,-0.7358,-0.7676,-0.7716,-0.6922,-0.5194,-0.565,-0.4598,-0.436,-0.2512,-0.0348,0.1678,0.3844,0.6206,0.6306,0.8152,1,0.8848,0.6186,0.3844,0.3228,0.0744,-0.0526,-0.0168,0.013,-0.2416,0.0812,0.5642,0.4622,-0.021,-0.5424,-0.7102,-0.7702,-0.9216,-0.7576,-0.732,-0.8596,-0.7338,-0.7702,-0.7502,-0.7266,-0.7192,-0.681,-0.4804,-0.4568,-0.1122,0.2142,0.5642,0.9216,1,0.6828,0.7284,0.7684,0.568,0.4166,0.2708,0.1176,-0.2874,0.0204,0.4184,0.3078,-0.0238,-0.5222,-0.6802,-0.699,-0.9166,-0.881,-0.8622,-0.8248,-0.796,-0.8606,-0.7704,-0.8044,-0.8436,-0.7704,-0.6394,-0.512,-0.3436,-0.0154,0.3486,0.687,1,0.8198,0.585,0.7466,0.602,0.5306,0.4336,0.2704,-0.2892,0.0442,0.415,0.3554,-0.1548,-0.6258,-0.8436,-0.7636,-0.852,-0.7772,-0.7432,-0.835,-0.7704,-0.881,-0.8266,-0.813,-0.8452,-0.8368,-0.8112,-0.5426,-0.2074,-0.0544,0.3504,0.7024,1,1,0.8776,0.9524,0.8962,0.8418,0.721,0.6004,-0.1468,0.36,0.276,0.2936,-0.3894,-0.6008,-0.685,-0.6674,-0.7866,-0.8924,-0.8062,-0.8024,-0.7808,-0.7788,-0.6302,-0.724,-0.7808,-0.7886,-0.681,-0.2876,-0.0254,0.3386,0.5676,0.7592,0.9316,1,0.8552,0.6948,0.3698,0.2682,0.1976,0.1448,-0.04,1,0.92,0.92,0.76,-0.28,-0.04,0.28,0.12,-0.04,-0.04,-0.28,-0.04,0.6,0.84,0.12,0.44,0.44,-0.04,0.04,-0.04,0.12,0.28,-0.04,-0.04,0.04,-0.52,-0.6,-0.36,-0.28,-0.12,-0.12,0.0624,0.6876,0.5624,0.6876,0.5624,0.6876,0.25,0.5624,-0.25,0.0624,0.25,0.1876,0.625,1,1,0.3124,0.25,0.1876,0,0.5,0.4376,0.25,-0.25,0.375,0.4376,0.6876,0.3124,-0.1876,-0.3124,-0.375,0.25,0.25,-0.3334,0.0526,0.2632,0.0176,-0.0176,-0.7894,-0.3334,-0.2632,-0.4386,-0.614,-0.579,-0.4736,-0.3684,-0.4736,-0.0878,-0.0176,0.1578,0.4386,0.5088,0.6492,0.614,0.579,0.6492,1,0.8596,0.2632,0.1228,0.0878,-0.0176,0.0176,0.1578,0.228,-1,-1,-1,-1,-1,-1,-1,-0.8984,-0.9152,-0.928,-0.7796,-0.161,-0.3856,-0.606,-0.1526,0.8474,0.5338,0.5254,0.6906,0.6738,0.5594,0.0084,-0.6992,-0.894,-0.894,-0.8898,-0.9194,-0.9068,-0.9238,-0.9068,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8746,-0.898,-0.8824,-0.804,-0.3386,-0.4666,-0.6522,-0.2418,0.7542,0.396,0.3648,0.6706,0.7804,0.5922,-0.0902,-0.6522,-0.7386,-0.783,-0.8092,-0.8432,-0.851,-0.851,-0.8746,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9398,-0.96,-0.8734,-0.8834,-0.717,-0.69,-0.622,-0.5248,-0.6154,-0.6916,-0.7696,-0.5706,-0.4896,-0.463,-0.643,-0.67,-0.3734,-0.62,-0.62,-0.8068,-0.8,-0.8868,-0.9668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3142,-1,-0.9714,-0.0286,0.0286,-0.8286,-0.6572,-0.6,-0.7428,-1,-0.9714,-0.9142,-1,-0.8572,-0.4858,-0.5714,-0.9142,-0.8572,-0.9142,-0.8858,-1,-1,-1,-1,-1,-1,0.1082,0.117,0.1348,0.1308,0.1264,0.095,0.052,-0.0042,-0.137,-0.2412,-0.5564,-0.5912,-0.557,-0.4924,-0.4024,-0.3272,-0.251,-0.1136,0.238,0.6868,-0.4934,1,-0.83,-0.451,-0.3046,-0.281,-0.3072,-1,0.1142,0.1714,0.2,0.8142,0.7286,0.8572,0.6428,0.4142,1,0.5572,0.8286,0.5858,0.8714,0.6858,0.5286,0.6714,0.5428,0.0572,0.3,0.6858,0.3714,0.5428,0.4858,0.6,0.6142,0.5858,0.6286,0.5286,0.1572,0.4,0.1858,-0.3142,0.0638,0.1774,-0.2056,0.7164,0.688,0.929,0.5178,0.532,0.844,0.4468,0.8724,0.7872,0.546,0.461,0.7872,0.4326,0.4468,0.4468,0.4042,0.688,0.6738,0.5886,0.4894,0.6596,0.8156,0.6312,0.617,0.2482,0.4468,0.2908,0.3334,-0.305,0.1794,0.3744,0.5794,0.8872,0.6924,0.7334,1,0.8872,0.7334,0.6,0.6718,0.6718,0.8564,0.8462,0.6616,0.8872,0.5794,0.3642,0.4872,0.4666,0.518,0.5282,0.5076,0.3334,0.4872,0.6718,0.6,0.3436,0.1898,0.2206,-0.1076,-0.4666,-0.9478,1,-1,-1,-1,-1,-1,-1,-1,-0.4666,-0.2,-0.2,0.181,0.0858,0.1428,-0.0666,0.3334,0.5238,0.8476,0.7334,0.6572,1,0.8096,0.4476,0.2952,0.4096,0.6572,0.5428,0.4858,0.3714,-0.0286,-0.181,-0.0286,0.0286,0.1428,-0.0096,0.0666,-0.0286,0.0476,0.4286,0.0476,'22'
-0.4244,0.0856,0.102,-0.0428,-0.1644,-0.9244,-0.5922,-0.4178,-0.6678,-0.7402,-0.5592,-0.2928,-0.2994,-0.0526,0.181,-0.0296,0.0954,0.2138,0.5098,0.056,0.375,0.6546,1,0.9112,0.6448,0.4836,0.227,-0.1348,-0.0032,-0.1218,-0.2368,-0.1382,-0.4894,-0.1854,0.074,-0.078,-0.1124,-0.8744,-0.4874,-0.4772,-0.7792,-0.7426,-0.7002,-0.6474,-0.3536,-0.4346,-0.3596,-0.2056,0.1854,0.2644,0.5136,0.4204,0.4832,0.542,0.8116,0.9554,1,0.469,0.236,0.236,0.23,0.2178,0.2118,0.3334,-0.4462,-0.1546,0.1874,0.1356,-0.3082,-0.7114,-0.6816,-0.6078,-0.6784,-0.691,-0.702,-0.575,-0.5796,-0.5764,-0.5122,-0.5152,-0.4432,-0.3066,-0.1326,0.1044,0.5262,0.7992,0.9466,0.9984,0.9074,1,0.887,0.8542,0.8808,0.8306,0.7632,0.6848,-0.5054,-0.2582,0.0528,-0.0108,-0.2422,-0.7108,-0.6326,-0.5734,-0.7064,-0.7788,-0.7772,-0.689,-0.7484,-0.6718,-0.4896,-0.6702,-0.6862,-0.5792,-0.4346,-0.4968,-0.1584,0.3262,0.6356,0.7368,0.6254,0.5792,0.6384,0.6298,0.958,1,0.8206,0.653,-0.512,-0.2602,0.1414,0.082,-0.1472,-0.5658,-0.6606,-0.836,-0.7836,-0.8472,-0.843,-0.676,-0.6974,-0.744,-0.6974,-0.6718,-0.645,-0.6718,-0.478,-0.3254,-0.1358,0.3578,0.679,0.8402,0.7228,0.6478,0.6944,0.7864,0.8896,1,0.8162,0.7128,-0.3964,-0.0536,0.3392,0.2732,-0.0214,-0.5036,-0.7108,-0.7482,-0.841,-0.85,-0.8124,-0.7286,-0.5464,-0.7232,-0.8446,-0.7376,-0.55,-0.5142,-0.5624,-0.4018,-0.1018,0.2608,0.5822,0.9732,0.891,0.891,0.9268,0.9572,0.9732,1,0.7876,0.6446,-0.3916,0.1292,0.151,0.2056,-0.5536,-0.7592,-0.6696,-0.5624,-0.8928,-0.9496,-0.8534,-0.6892,-0.6586,-0.7308,-0.674,-0.895,-0.7724,-0.79,-0.8074,-0.5054,-0.3522,-0.1094,0.4246,0.7418,0.8096,0.6302,0.7506,1,0.8796,0.6324,0.3172,0.2998,0.4166,0.75,0.6666,0.5834,0.5,0.3334,0.5,0.5,0.25,-0.0834,0.25,0.4166,-0.0834,0.6666,1,0.8334,-0.25,0.3334,-0.25,-0.0834,0.1666,0.4166,0.3334,0.3334,0.25,0.1666,0.25,0.0834,-0.0834,0.25,0.5,0.25,0.579,0.7368,0.8422,0.6316,0.4736,0.3684,0.4736,0.6842,0.6316,0.3684,0.3684,0.579,0.421,0.3684,0.3684,0.6842,1,1,0.8948,0.6316,0.1578,0.6316,0.8422,0.7368,0.6316,0.8948,0.8422,0.6316,0.6316,0.4736,0.579,0.1578,-0.4772,-0.2272,0.1364,0.0682,-0.2272,-0.6818,-0.5454,-0.4772,-0.7728,-0.4772,-0.4318,-0.4318,-0.4318,-0.4318,-0.3636,-0.2728,-0.2272,-0.1364,0.1136,0.6364,0.7954,0.841,0.7954,0.8636,1,0.9318,0.4318,0.5228,0.4546,0.4318,0.4318,0.5228,-1,-1,-1,-1,-1,-1,-1,-1,-0.8498,-0.8566,-0.6656,-0.4744,-0.4062,-0.0784,0.6382,0.5632,0.5222,0.802,0.8498,0.604,0.331,-0.099,-0.6518,-0.7338,-0.8908,-0.8704,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9232,-0.9074,-0.8464,-0.7754,-0.7064,-0.4562,0.4858,0.6866,0.395,0.673,0.6986,-0.003,-0.3458,-0.5508,-0.8226,-0.7912,-0.8818,-0.8896,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9594,-0.91,-0.81,-0.584,-0.458,-0.351,-0.151,-0.13,-0.425,-0.4478,-0.3734,-0.302,-0.4382,-0.5524,-0.7668,-0.4734,-0.7268,-0.82,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2858,-1,-0.8572,-0.3428,-0.8,-0.6858,-0.4286,-0.8572,-0.9428,-1,-1,-1,-0.8572,-0.1142,-0.3142,-0.7142,-0.6286,-0.8,-1,-1,-1,-1,-1,-1,-1,0.1528,0.1282,0.073,-0.011,-0.008,0.0358,0.05,-0.0014,-0.052,-0.0844,0.036,0.0766,0.1156,0.1268,0.1542,0.212,0.2778,0.4434,0.7176,0.904,-0.5066,1,-0.8384,-0.801,-0.803,-0.7912,-0.795,-1,0.2136,0.094,0.3162,0.9488,0.8462,0.6582,0.7264,0.829,0.7436,0.829,0.7264,0.7778,0.983,0.8462,0.4018,0.624,0.624,0.453,0.6582,0.453,0.6752,0.8974,0.812,0.5726,0.641,0.3676,0.2308,0.7264,0.5556,0.3162,0.2308,-0.077,0.0646,0.2742,0.0322,1,0.8226,0.7096,0.9032,0.6936,0.242,0.6936,0.4516,0.9194,0.613,0.6452,0.3064,0.6452,0.4032,0.4194,0.5968,0.1936,0.629,0.387,0.6936,0.2904,0.129,0.3064,0.613,0.1936,-0.0162,0.3388,0.242,-0.4678,0.5504,0.721,0.4108,1,0.8294,0.1008,0.907,0.4264,0.628,0.4728,0.5814,0.9224,0.969,0.4728,0.3488,0.4264,0.4108,0.1938,0.2094,0.5348,0.6434,0.5038,0.4574,0.2404,0.3024,0.4884,0.3798,0.6124,0.4108,0.5194,0.4728,-0.5504,-0.9802,1,-1,-1,-1,-1,-1,-1,-1,-0.1604,-0.037,-0.7038,0.1852,-0.0124,0.1358,0.1358,-0.1604,-0.0124,0.0124,1,0.4074,0.3828,0.9012,0.3086,0.0864,0.3334,0.5802,0.5308,0.5802,0.3086,0.4568,0.8024,0.753,0.605,0.5556,0.9012,0.9754,0.8518,0.7778,0.9012,0.4074,'22'
-0.2562,0.1016,0.565,0.7138,0.8926,1,0.7176,0.71,0.5368,0.548,0.6026,0.6082,0.7232,0.8268,0.9792,0.6968,0.6328,0.5688,0.3408,0.2938,0.2956,0.307,0.5048,0.663,0.7006,0.5782,0.4764,0.4106,0.1978,0.324,0.3108,0.4614,-0.0224,0.4426,0.5238,0.731,0.7648,0.5406,0.7254,0.8852,1,0.8264,0.661,0.1708,-0.0364,-0.084,0.042,-0.5126,-0.1148,-0.112,-0.297,-0.2578,0.028,0.2044,0.1904,0.0952,0.1512,0.0364,-0.1064,-0.2184,-0.2296,-0.0504,0.1148,0.2662,-0.2052,0.1382,0.5914,0.8882,1,0.311,0.6992,0.7094,0.9552,0.565,-0.0548,-0.4308,-0.567,-0.624,-0.691,-0.7866,-0.8638,-0.8536,-0.935,-0.8922,-0.687,-0.6708,-0.6464,-0.4918,-0.3272,-0.0956,-0.2052,-0.4776,-0.437,-0.4004,-0.3008,-0.1016,0.1294,0.6106,1,0.8804,0.936,-0.1432,0.0292,0.0126,-0.4186,-0.2406,-0.107,-0.2962,-0.082,-0.2656,-0.3796,-0.1906,-0.4048,-0.3074,-0.2128,-0.1934,0.0598,0.1934,0.2128,0.6662,0.655,0.1878,-0.0208,-0.274,-0.4102,-0.363,-0.491,-0.3852,-0.1782,0.1858,0.5306,0.4368,0.184,-0.4004,-0.5364,-0.4636,-0.726,-0.9808,-0.862,-0.6322,-0.475,-0.4426,-0.5996,-0.6016,-0.4348,-0.2108,0.1092,0.5,0.7472,0.6322,0.5614,0.7338,1,0.8602,0.4348,0.0842,0.0114,0.1072,0.1302,-0.0172,-0.0102,0.5432,0.9696,0.929,0.7918,0.2742,-0.5736,-0.5456,-0.4264,-0.4036,-0.4162,-0.297,-0.3578,-0.3832,-0.4264,-0.1066,-0.0102,0,0.1498,0.1928,0.528,0.429,0.8478,1,0.594,0.1218,0.1092,0.2056,0.3198,0.368,0.528,0.7588,-0.0138,1,0.659,0.2474,-0.1612,-0.1828,-0.2904,-0.1858,-0.1152,-0.0692,-0.109,-0.1552,-0.364,-0.4962,-0.407,-0.444,-0.3978,-0.5514,-0.5454,-0.5638,-0.4716,-0.3886,-0.3764,-0.3856,-0.2136,-0.2934,-0.4686,-0.3886,-0.4194,-0.1122,0.0016,0.1182,-0.3794,0.1724,0.7932,0.931,0.5862,0.2414,-0.1724,-0.1034,-0.1724,-0.3104,-0.1724,-0.1724,-0.1724,0.3104,0.4482,0.7242,0.7242,0.5172,-0.2414,-0.3104,-0.2414,-0.1724,0.2414,0.4482,0.7932,1,0.7242,0.2414,0.1724,-0.1724,0.1034,0.2414,-0.3846,0.3076,0.8462,0.5384,1,0.6154,0.077,-0.4616,-0.3076,-0.077,0,-0.077,0.2308,0.3076,0.8462,0.6924,1,0.6154,0.4616,0,0.077,-0.3846,-0.2308,0,0.5384,0.7692,0.6154,0.4616,0,0.1538,0.1538,0.1538,0.129,0.4838,0.8064,0.7742,0.9354,0.4838,0.5806,0.742,1,0.5162,-0.1612,-0.5162,-0.258,0.0322,-0.1612,-0.0322,-0.3548,-0.3226,-0.3226,0.0968,0.0646,-0.3548,-0.3226,-0.5806,-0.7096,0,0.0322,0,-0.0968,0.1612,0.0968,0.258,-1,-0.9294,-0.8628,-0.5294,-0.8942,-0.796,-0.5058,-0.6628,-0.7726,-0.847,-0.5764,0.6352,0.5804,-0.3294,0.098,0.455,-0.0706,-0.0862,0.047,0.0156,-0.1254,-0.455,-0.9216,-0.9254,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9288,-0.917,-0.7778,-0.9244,-0.8786,-0.7762,-0.837,-0.8844,-0.6296,0.1526,0.3288,0.6756,-0.6,-0.3896,-0.1392,-0.5526,-0.5318,-0.4266,-0.4904,-0.6,-0.7482,-0.9288,-0.926,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.9068,-0.8734,-0.8534,-0.77,-0.8834,-0.86,-0.8534,-0.6834,0.8232,-0.682,-0.7106,-0.883,-0.86,-0.8668,-0.8282,-0.5974,-0.6374,-0.7574,-0.832,-0.841,-0.8668,-0.8934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,-0.6858,-0.7428,-0.8858,-0.6858,-0.6858,-0.8286,-0.1714,1,1,1,0.4286,1,-0.2858,-0.7142,-0.5714,-0.9142,-0.9142,-0.5714,-0.8572,-0.6,-0.5428,-0.9714,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,0.9762,0.9096,0.8794,0.3756,-0.668,-0.7094,-0.6786,-0.6198,-0.472,-0.3492,-0.348,-0.3366,-0.2238,0.0118,-0.4666,1,0.314,-0.2918,-0.1392,0.1512,0.4296,1,-0.5384,-0.2968,-0.1868,-0.099,0.077,0.099,0.1648,0.099,0.4506,0.4066,0.4066,0.3626,0.6264,0.6484,0.5384,0.5824,0.7142,0.7362,0.8242,0.934,0.934,1,0.956,0.956,0.7142,0.7582,0.7362,0.7582,0.8242,0.7142,0.5384,0.2748,-0.7888,-0.5634,-0.6198,-0.5634,-0.3522,-0.3662,-0.3802,-0.4366,0.0846,-0.3098,-0.4084,-0.2394,0.2254,0.183,0.155,0.2254,0.493,0.7184,0.6056,0.338,0.5916,0.7606,0.8592,0.9296,1,0.817,0.8592,0.9154,0.7324,0.6902,0.6478,0.4788,-0.026,0.0782,-0.0608,-0.3392,-0.374,-0.7044,-0.3392,-0.4086,0.2348,0.1826,-0.1478,-0.3392,0.7218,0.774,0.0086,0.2174,0.0608,0.7218,0.9478,0.9304,0.6174,0.8434,1,0.7218,0.5826,0.8086,0.826,0.8608,0.7392,0.7392,0.826,0.6522,0.7304,-1,-1,1,-1,-0.6,-1,-0.7334,-1,-0.013,0.039,0.1428,0.6884,0.6104,0.7922,0.7402,0.3766,0.6624,0.6884,0.5844,0.5064,0.4806,0.4806,0.4806,0.6884,0.2728,0.1948,0.5844,0.6104,0.013,0.3246,0.1428,0.7402,0.7142,0.2468,0.5324,0.3506,0.974,1,0.7142,0.4546,'23'
-0.1854,0.2124,0.6642,0.743,1,0.8384,0.714,0.3348,0.1958,0.1358,0.084,0.2746,0.2622,0.4716,0.4238,0.4134,0.3284,0.0716,-0.057,-0.03,0.0094,0.0218,0.173,0.3866,0.4322,0.401,0.3016,0.2124,0.0818,0.0902,0.1626,0.1854,-0.1952,0.1644,0.5812,0.8706,1,0.5856,0.6228,0.6644,0.8246,0.9276,0.9298,0.215,0.125,-0.1074,-0.1908,-0.3838,-0.3356,-0.3334,-0.3356,-0.3048,-0.1074,0.1754,0.285,0.3838,0.2764,0.1578,-0.0132,0.0614,0.0856,0.2938,0.3948,0.3552,-0.2862,0.0432,0.5502,0.869,1,0.3728,0.6494,0.6832,0.9472,0.7276,0.4192,-0.0476,-0.3158,-0.3812,-0.2312,-0.624,-0.529,-0.4318,-0.5882,-0.358,-0.2946,-0.341,0.1594,0.3348,0.6262,0.47,0.434,0.284,0.3686,0.4804,0.584,0.5374,-0.23,0.1226,0.6434,0.8238,1,0.4266,0.2036,0.3292,0.5482,0.4184,0.2868,0.238,0.08,-0.0416,0.2422,0.0862,-0.0436,0.0638,-0.1064,-0.0638,0.2198,0.23,0.4488,0.7892,0.6596,0.6454,0.5866,0.4124,0.4388,0.6008,0.5906,0.613,-0.3874,-0.1024,0.3038,0.2286,0.2236,-0.2154,-0.389,-0.4922,-0.5742,-0.7018,-0.6756,-0.4546,-0.5774,-0.443,-0.2022,-0.1154,0.1416,0.3726,0.692,0.7036,0.6872,0.756,0.8674,1,0.6806,0.5364,0.4628,0.394,0.366,0.4382,0.5512,0.5742,-0.042,0.4066,0.757,0.7056,0.9042,0.3738,-0.229,-0.1636,-0.0958,-0.1822,-0.0842,0.1074,0.2968,0.2546,0.2126,0.2524,0.507,0.5724,0.3294,0.5842,0.813,0.9158,0.8574,0.7664,0.7196,0.5374,0.4602,0.5186,0.6706,0.7734,0.965,1,0.1314,1,0.6568,0.3786,0.5178,0.3972,-0.2272,-0.3106,0.3014,0.3602,-0.054,-0.1994,-0.2148,-0.3602,-0.187,-0.4776,-0.4188,-0.456,-0.6012,-0.527,-0.3786,-0.3602,-0.4158,-0.4034,-0.0788,-0.153,-0.4806,-0.425,-0.5086,-0.3602,-0.1314,-0.0386,0.1764,0.5294,1,0.8824,0.9412,0.647,0,-0.2352,-0.1764,-0.2352,-0.2352,0.0588,0.0588,-0.0588,-0.5882,0.4118,0.5294,-0.2942,-0.2352,-0.2352,-0.4706,0.1176,0.1764,-0.2352,-0.0588,0.4706,0.353,0.1176,0.2942,0.4118,0.1764,0.4118,0.0526,0.3684,0.8422,0.9474,1,0.579,0.3684,0.1052,0,-0.1052,-0.0526,0,0,0.2106,0.2106,0.579,0.7368,0.421,0,-0.0526,0.1578,0.1578,-0.2106,0.579,0.5264,0.0526,0.2106,0.3158,-0.1052,0.1578,0.2632,0.3684,-0.2122,0.1212,0.6666,0.8788,1,0.3334,0.1212,0.1818,0.1212,0.091,0.2122,0.7272,0.7576,0.4546,0.4848,0.303,0.0606,0.0606,-0.1516,-0.091,0.3334,0.3636,0.606,0.9696,0.7878,0.6364,0.606,0.3334,0.3636,0.606,0.5454,0.606,-1,-1,-1,-1,-1,-1,-0.9218,-0.6812,-0.6724,-0.7914,-0.5072,0.4522,0.458,0.2086,-0.0174,0.9014,0.5566,0.1652,0.0434,-0.1188,-0.3246,-0.4464,-0.5826,-0.7536,-0.8986,-0.945,-0.8348,-0.687,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9254,-0.8134,-0.815,-0.8694,-0.2826,0.0646,0.485,0.0358,-0.1362,0.9038,0.4576,0.3428,0.4276,-0.241,-0.548,-0.6658,-0.746,-0.759,-0.9054,-0.9312,-0.8852,-0.815,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.9068,-0.94,-0.9268,-0.3468,-0.8244,-0.797,-0.8486,-0.8558,-0.837,-0.8906,-0.6074,-0.498,-0.72,-0.826,-0.874,-0.8734,-0.52,-0.8268,-0.9334,-0.7868,-0.91,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,-0.7714,-0.9142,1,1,1,-0.5428,-0.3428,-0.5142,-0.7428,-0.2286,-0.6286,-0.7714,-0.4572,-0.2572,-0.6572,-0.4858,-0.2572,-0.2572,-1,-0.8,-0.4,-1,-1,-1,-1,-1,0.7694,0.8104,0.8532,0.9018,0.9482,0.9892,0.9716,0.9282,0.9648,0.5946,-0.1918,-0.2888,-0.3388,-0.3744,-0.3252,-0.2714,-0.1954,-0.0602,0.2106,0.171,-0.52,1,-0.1434,-0.3214,-0.122,0.023,0.1664,1,-0.2808,-0.191,-0.2808,-0.3708,-0.1686,-0.0112,-0.1012,-0.1236,0.3258,0.3034,0.3258,0.3258,0.5056,0.528,0.5956,0.573,0.573,0.573,0.6854,0.8652,0.9326,1,0.9102,0.8202,0.663,0.5056,0.663,0.528,0.4832,0.2808,0.1236,-0.1236,-0.1494,0.0114,-0.0574,-0.1034,-0.1954,-0.3564,-0.3104,-0.1724,0.3104,0.0804,-0.2644,-0.0574,0.2874,0.1494,0.4252,0.3104,0.4022,0.4022,0.7472,0.977,1,0.7472,0.862,0.931,0.862,0.7242,0.7472,0.7012,0.7012,0.7702,0.6092,0.2414,0.2968,0.6484,0.5384,0.011,0.011,-0.033,0.011,0.077,0.2968,-0.1208,-0.1868,0.055,0.5384,0.4946,0.2748,0.3406,0.4946,0.7582,1,0.8242,0.7362,0.7582,0.3846,0.7142,0.5604,0.4946,0.3846,0.3846,0.6704,0.6924,0.6044,0.4506,0.7648,-1,-1,1,-0.8,0.4,0,-0.8,-1,0.1214,0.2336,-0.271,-0.1028,-0.2898,-0.1214,-0.1214,-0.2898,-0.0094,-0.0654,0.1588,0.1776,-0.1214,-0.1028,-0.028,0.1962,0.271,0.458,0.5888,0.4766,0.4206,0.5888,0.8878,1,0.9252,0.8692,0.4392,0.0468,0.6822,0.757,0.5514,0.215,'23'
-0.4722,-0.093,-0.249,-0.1078,0.2714,0.368,0.658,0.5986,0.3308,0.1672,0.1078,-0.026,0.026,0.2566,0.3012,0.4722,0.8066,0.8588,0.8216,0.5092,0.554,0.6356,0.487,0.6802,0.6208,0.7918,1,0.8588,0.7546,0.7174,0.7026,0.7398,-0.4044,-0.1348,0.0156,0.022,0.3416,0.4546,0.7178,0.6426,0.5988,0.3228,0.1348,0.1598,0.1598,0.21,0.3668,0.6866,0.7742,0.8746,0.7554,0.5298,0.511,0.6552,0.536,0.6176,0.9686,0.9874,1,0.906,0.9122,0.8684,0.7806,0.8432,-0.4328,-0.1702,0.0388,0.015,0.1582,0.4508,0.6358,0.6,0.4686,0.3374,0.2776,0.2298,0.2896,0.391,0.4986,0.7612,0.988,0.9224,0.6238,0.5762,0.5582,0.582,0.6776,0.7194,0.8508,0.9582,1,0.9044,0.7612,0.8268,0.7732,0.8208,-0.5136,-0.2486,-0.0378,-0.0432,-0.0162,0.3784,0.3622,0.5298,0.3514,0.3244,0.0972,0.2,0.2216,0.2432,0.5514,0.654,0.9568,0.8594,0.6054,0.5244,0.4972,0.5514,0.6756,0.6918,0.7892,1,0.946,0.7622,0.8054,0.7784,0.7244,0.8486,-0.537,-0.2014,0.0536,0.0672,0.0536,0.49,0.5034,0.5504,0.3558,0.2818,0.1678,0.094,0.141,0.1342,0.51,0.792,0.9262,0.8724,0.5704,0.5168,0.443,0.5838,0.698,0.651,0.8322,1,0.8994,0.698,0.6912,0.6242,0.6846,0.8926,-0.6382,-0.0992,-0.0426,-0.1844,0.4114,0.4042,0.4398,0.3758,0.0922,0.0568,0.0284,0.007,0.0638,0.0922,0.2908,0.5886,0.9148,0.9148,0.7944,0.546,0.7376,0.7588,0.9148,1,0.9148,0.8298,0.695,0.5248,0.4042,0.546,0.546,0.773,-0.7176,-0.1764,0.0196,0.1686,0.1372,0.0196,0.1216,-0.1372,-0.3334,-0.255,-0.404,-0.3648,-0.1922,-0.4352,-0.0824,0.1058,0.4274,0.6628,0.945,1,0.898,0.6628,0.7334,0.4824,0.2706,-0.098,0.0824,-0.0118,0.0352,0.004,0.1058,0.1922,-0.5136,-0.1352,-0.3514,-0.2432,0.2972,0.4594,0.6216,0.4594,0.5136,0.3514,0.3514,0.2972,0.2432,0.3514,0.6216,0.8378,1,0.8918,0.8918,0.7298,0.7298,0.7298,0.5676,0.2432,0.6216,0.7298,0.8378,0.7838,0.5136,0.6216,0.6216,0.5136,-0.4166,-0.1666,-0.2084,-0.2916,0.0834,0.1666,0.6666,0.5834,0.3334,0.2916,-0.0416,0.0416,-0.0834,0.3334,0.2916,0.4166,0.875,0.7916,0.8334,0.5416,0.5416,0.625,0.2916,0.75,0.5416,0.75,1,0.7916,0.8334,0.625,0.8334,0.75,-0.6086,-0.2826,-0.1304,-0.3044,0.3044,0.4348,0.6304,0.5652,0.2174,0.1522,0.0652,0.087,0.0652,0.174,0.413,0.674,0.8478,0.8478,0.6522,0.3478,0.5434,0.4782,0.8478,0.8044,1,0.9566,0.6956,0.674,0.5652,0.674,0.587,0.9566,-1,-1,-1,-1,-1,-0.8962,-0.9212,-0.8756,-0.888,-0.9212,-0.6058,0.2366,0.6514,0.8672,0.7552,0.834,0.6348,0.5768,0.8382,0.8092,0.1536,-0.2116,-0.8464,-0.8838,-0.9004,-0.9128,-0.9128,-0.9336,-0.8464,-0.834,-0.9254,-0.9088,-0.9004,-1,-1,-1,-1,-1,-0.9754,-0.979,-0.646,-0.952,-0.9406,-0.5642,-0.1728,0.134,0.241,0.4398,0.7396,0.9514,0.8502,0.4092,0.1652,-0.4838,-0.7218,-0.9524,-0.9586,-0.976,-0.977,-0.9786,-0.978,-0.8896,-0.822,-0.8604,-0.7136,-0.6338,-1,-1,-1,-1,-1,-0.9534,-0.94,-0.34,-0.1934,-0.2268,-0.1868,-0.385,-0.18,-0.2,-0.17,-0.19,-0.1,-0.045,-0.232,-0.232,-0.364,-0.364,-0.7668,-0.76,-0.8934,-0.94,-0.96,-0.9334,-0.92,0.5,0.8132,1,1,-1,-1,-1,-1,-1,-0.8572,1,1,-0.6286,1,1,1,-0.3142,-0.7714,-0.8286,-0.6858,-0.8,-0.5714,0.0286,0.2858,1,1,1,-0.7142,-0.6572,-1,-1,-0.4,1,1,0.6,0.3714,-0.6858,1,1,1,1,1,1,1,1,1,1,0.2508,0.2664,0.2554,0.2554,0.3636,0.4054,0.4324,0.4454,0.4714,0.407,-0.64,-0.553,-0.3304,-0.4588,0.0768,0.153,0.248,0.3084,-0.6626,-0.486,-0.2772,-0.1326,-0.3172,-0.245,-0.0442,-0.1004,0.261,0.6224,0.7108,0.518,0.767,0.9278,0.7912,0.8956,0.8634,1,0.8634,0.751,0.4538,-0.0442,-0.0282,0.012,-0.3414,-0.478,-0.261,-0.3254,0.237,0.4216,0.486,0.245,-0.5278,-0.6138,-0.4248,-0.4078,-0.5364,-0.3562,-0.073,-0.0214,0.0902,0.6824,0.545,0.339,0.6052,0.4164,0.5278,0.7596,0.897,0.9484,1,0.957,0.8884,0.631,0.03,0.2018,-0.2274,0.0816,0.2962,0.1502,0.5536,0.8798,0.6996,0.2704,-0.557,-0.2342,-0.1646,-0.0316,0.0316,-0.1962,-0.038,0.1456,0.6962,0.6898,0.6392,0.6772,0.867,0.943,0.962,0.8734,1,1,0.9684,0.8608,0.7278,0.3354,0.076,0.1456,-0.3164,-0.2974,-0.1456,0,0.1076,0.5696,0.6012,0.3544,0.2092,-1,-1,1,-1,-1,-1,-0.1666,1,-0.6914,-0.8148,-0.3704,-0.5926,-0.284,-0.0494,-0.0246,0.0124,-0.0494,0.0246,0.0988,-0.0864,0.3704,0.2346,0.0246,0.037,0.0246,0.1976,0.5186,0.247,0.4938,0.642,0.6666,0.9136,0.8518,0.4938,0.6666,0.7902,0.8024,1,0.8766,0.7038,'24'
-0.632,-0.136,-0.152,-0.104,0.176,0.368,0.368,0.312,-0.048,-0.104,-0.176,-0.096,-0.088,-0.168,0.016,0.24,0.456,0.616,0.928,0.872,0.648,0.6,0.608,0.608,0.76,0.848,1,0.92,0.672,0.544,0.648,0.608,-0.542,-0.3226,0.0194,0.058,0.2968,0.5032,0.6968,0.6194,0.0064,0.142,0.187,0.1032,-0.0452,0.3226,0.4258,0.3936,0.7548,0.8646,0.987,0.6646,0.6452,0.7484,0.7548,0.6258,0.9678,1,0.942,0.7612,0.8452,0.8322,0.5742,0.7354,-0.4214,-0.1142,0.25,0.2072,0.3,0.7858,0.7072,0.7928,0.15,0.3,0.3928,-0.0358,0.3,0.4,0.2714,0.6,0.8358,1,0.7858,0.5858,0.6786,0.7214,0.5572,0.6072,0.9428,0.9214,0.8142,0.85,0.7858,0.5286,0.5428,0.4928,-0.376,-0.0076,0.3534,0.3458,0.4136,0.782,0.782,0.7518,0.4586,0.376,0.2406,0.1804,0.2632,0.2106,0.5112,0.6316,1,0.8796,0.7444,0.2106,0.2482,0.436,0.406,0.3984,0.3834,0.767,0.7594,0.421,0.3008,0.1128,0.1428,0.0376,-0.364,0.0036,0.3004,0.3286,0.4276,0.7244,0.7314,0.7738,0.6114,0.371,0.1872,0.1024,0.2084,0.0248,0.5266,0.7032,1,0.9506,0.5478,0.6326,0.7102,0.5902,0.3992,0.6254,0.9506,0.8446,0.781,0.258,0.2226,0.1308,-0.0036,0.1802,-0.5374,-0.0896,0.1568,0.2238,0.5,0.6044,0.7238,0.5074,0.4626,0.209,0.1418,0.194,0.194,0.194,0.3284,0.694,0.6344,0.8956,0.6568,0.709,0.5448,0.3582,0.6568,1,1,0.8284,0.6716,0.694,0.4552,0.388,0.3358,0.5,-0.7248,-0.2294,0.0918,0.1376,0.4678,0.2752,0.2478,0.0092,-0.11,-0.2294,-0.2294,-0.1834,-0.3944,-0.156,0.0458,0.101,0.3028,0.7156,0.6056,0.7248,0.7982,0.789,1,0.9816,0.945,0.5412,0.3944,0.1376,-0.0276,0.1926,0.3394,0.211,-0.5882,-0.2942,-0.4118,-0.1764,-0.1764,0,0,0.1764,0,-0.0588,-0.0588,-0.1764,0,0.0588,0.0588,0.2352,0.5882,0.7648,0.8824,0.8236,0.7058,0.5882,0.647,0.7058,0.8236,0.9412,1,0.9412,0.8236,0.7648,0.7058,0.7058,-0.6,-0.25,-0.15,-0.3,0.1,0.55,0.6,0.1,0.1,-0.2,-0.25,-0.25,-0.15,-0.25,-0.1,0.15,0.55,0.75,0.85,0.85,0.65,0.7,0.6,0.6,1,1,1,0.95,0.65,0.6,0.65,0.6,-0.5,-0.0834,0.2222,0.2222,0.2778,0.7778,0.6388,0.75,0.1944,0.1944,0.3056,-0.0556,0.25,0.4166,0.0556,0.6944,0.8888,0.8888,0.6388,0.6388,0.4444,0.8056,0.5834,0.5834,1,0.9444,0.9444,0.9722,0.8056,0.6112,0.5278,0.4722,-1,-1,-1,-1,-1,-1,-0.8976,-0.9284,-0.8926,-0.8722,-0.3452,0.2226,0.5652,0.8516,0.9846,0.9336,0.8006,0.7852,0.6624,0.5806,0.289,-0.289,-0.7954,-0.8824,-0.9028,-0.8976,-0.9028,-0.8824,-0.9028,-0.8772,-0.7392,-0.9028,-0.8722,-1,-1,-1,-1,-1,-1,-0.9552,-0.9552,-0.9492,-0.9392,-0.5788,-0.099,0.4764,0.99,0.6734,0.2404,0.0334,-0.095,-0.0124,-0.0304,0.093,-0.6246,-0.9204,-0.9184,-0.9562,-0.9552,-0.9542,-0.9304,-0.9104,-0.9502,-0.6804,-0.8258,-0.5798,-1,-1,-1,-1,-1,-1,-0.94,-0.9668,-0.7934,-0.69,-0.5568,-0.43,-0.31,-0.185,-0.2,-0.32,-0.585,-0.528,-0.576,-0.488,-0.32,-0.588,-0.8768,-0.8734,-0.8734,-0.9,-0.94,-0.8,-0.72,-0.9534,-0.2368,0.2566,0.98,-1,-1,-1,-1,-1,-1,-0.6858,-0.8858,-0.7142,-0.3428,1,1,1,0.1428,-0.5142,-0.0286,-0.1428,-0.8286,-0.7428,-0.5142,1,1,1,-0.9142,-0.7714,-0.9428,-0.8572,0.1428,-0.0858,1,1,0.9142,1,1,1,1,1,1,1,1,1,1,1,0.6594,0.6534,0.5808,0.5742,0.5778,0.5212,0.508,0.4586,0.3458,0.3322,-0.6,-0.5412,-0.3948,-0.3868,0.118,0.5958,1,0.0334,0.4666,0.8,0.6,0.9334,0.4,0.6,0.3334,0.5334,0.7334,0.8,1,1,0.8666,0.7334,1,0.5334,0.3334,0.4666,0.7334,0.2666,0.1334,0.3334,-0.2666,-0.5334,0.0666,0.2666,0.3334,0.2666,0.8,0.8666,0.8666,0.4,-0.2422,0.1368,0.621,0.6842,0.4526,0.2422,0.1578,0.2422,0.8106,1,0.8106,0.7052,0.8948,0.8736,0.8316,0.7474,0.6842,0.5578,0.2422,-0.0106,0.2422,0.2,-0.3052,-0.4526,-0.2632,-0.0106,-0.0948,-0.221,-0.179,0.0526,0.4526,-0.0736,0.1212,0.2424,0.4848,0.3636,-0.0606,0.2122,0.1516,-0.1212,0.4242,0.8484,0.6666,0.4242,0.8182,1,0.4546,0.5758,0.7878,0.8484,0.8484,0.3334,0.4848,0.2122,-0.0606,-0.1516,0.303,-0.0304,-0.0606,0.0304,0.303,0.4848,0.5454,0.303,0.0234,-1,-1,1,-1,-1,-1,-0.8334,1,-0.8658,-0.8256,-0.557,-0.557,-0.3422,0.1276,0.2752,0.0738,0.0738,0.1276,-0.047,-0.1006,0.0872,0.0336,0.0202,-0.0202,-0.1006,0.0604,0.4094,0.1678,0.3288,0.5704,0.7986,1,0.8926,0.2484,0.4766,0.4766,0.5034,0.4496,0.3692,0.2484,'24'
-0.2538,0.1388,0.655,0.885,0.9214,1,0.7644,0.7784,0.4614,0.1108,-0.0266,-0.4614,-0.3016,-0.4474,-0.3884,-0.3352,-0.554,-0.554,-0.4614,-0.6242,-0.6242,-0.6382,-0.5036,-0.0406,0.3914,0.4782,0.38,0.6044,0.6578,0.7952,0.6326,0.2202,-0.4204,-0.2102,0.0628,0.1964,0.6954,0.8408,0.719,0.9568,1,0.7054,0.3752,0.273,0.0334,-0.0844,-0.0276,-0.0688,-0.2868,-0.1454,-0.2318,-0.1532,-0.0492,-0.2712,0.1828,0.2928,0.5304,0.5384,0.4892,0.4852,0.607,0.5638,0.503,0.2612,-0.5836,-0.3534,-0.1452,-0.077,0.3894,0.5036,0.6576,0.8638,0.8338,0.6976,1,0.8598,0.2932,0.3974,0.1192,0.015,0.015,-0.083,-0.005,-0.065,-0.045,0.061,0.2732,0.4674,0.5456,0.6536,0.4774,0.4094,0.4874,0.3214,0.1492,0.4994,-0.595,-0.3486,-0.167,-0.071,0.3444,0.4258,0.549,1,0.954,0.593,0.8142,0.9604,0.927,0.9082,0.359,0.3466,0.3006,0.1566,0.1022,0.0814,0.0856,0.2004,0.2986,0.5762,0.7704,0.9248,0.7286,0.7516,0.7766,0.5408,0.2172,0.2066,-0.4742,-0.2542,-0.0254,0.0144,0.3268,0.4236,0.5666,0.7624,0.7008,0.516,0.285,0.5622,0.5402,0.7316,0.8658,0.7382,0.6062,0.3004,0.2652,0.3004,0.3202,0.4148,0.3796,0.582,0.8328,1,0.9428,0.9406,0.912,0.7118,0.527,0.3796,-0.3556,-0.147,0.0616,0.145,0.5246,0.5996,0.6892,0.4516,0.1554,0.2846,-0.1386,0.22,0.1888,0.2034,0.441,0.4202,0.7226,0.7706,0.633,0.5934,0.608,0.633,0.5286,0.6684,0.8998,1,0.8916,0.8394,0.7956,0.5662,0.6538,0.5058,-0.3568,0.1228,0.117,0.3596,0.4048,0.371,0.2102,-0.148,-0.2524,-0.2524,-0.4386,-0.4076,-0.3314,-0.1988,-0.134,0.0606,0.3512,0.622,0.7912,0.6502,0.622,0.6078,0.5684,0.8364,0.89,1,0.7772,0.526,0.4866,0.3146,0.354,0.1848,0.238,0.7142,0.619,1,0.9048,0.619,0.3334,0.3334,0.0476,-0.0476,-0.0476,-0.1904,-0.0476,-0.0476,0.0952,-0.0952,-0.2858,-0.1428,-0.0476,0.0952,0,-0.3334,-0.0476,-0.1904,0.0476,0,0.1904,0.0952,0.4286,0.4286,0.1904,-0.0952,-0.0256,0.282,1,1,0.8974,1,0.8974,0.4872,0.282,-0.077,-0.2308,-0.6924,-0.282,-0.2308,-0.4872,-0.1794,-0.1282,-0.6924,-0.3846,-0.3846,-0.3846,-0.3846,-0.7436,0.0256,0.1282,0.282,0.3334,0.5384,0.5898,0.6924,0.5898,-0.077,-0.5444,-0.3164,-0.0886,-0.0632,0.2152,0.3164,0.4178,0.7974,0.7468,0.4684,0.367,0.5444,0.595,0.8734,0.8988,0.8734,0.3924,0.1898,0.2912,0.4178,0.0886,0.4936,0.5444,0.443,0.924,0.924,0.9494,1,0.8482,0.8734,0.2912,0.4936,-1,-1,-1,-1,-1,-1,-1,-1,-0.9346,-0.9284,-0.7258,0.6262,0.7976,0.6324,0.1994,0.1402,0.0186,-0.1994,-0.3302,-0.299,-0.2804,-0.3052,-0.8006,-0.9346,-0.947,-0.9284,-0.944,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9694,-0.9666,-0.921,-0.3592,0.1984,0.6252,0.416,0.882,0.8934,0.0548,-0.416,-0.3784,-0.5456,-0.6942,-0.9018,-0.9182,-0.951,-0.9552,-0.9688,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9934,-0.88,-0.9,-0.8372,-0.6216,-0.6086,-0.5516,-0.3958,-0.4472,-0.4944,-0.38,-0.4188,-0.4708,-0.504,-0.3368,-0.2068,-0.7,-0.8334,-0.94,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2286,-0.8286,0.6,1,-0.2286,-0.5428,-0.7428,-1,-0.8572,-0.8286,-0.7142,-0.9714,-0.7714,1,-0.6858,-0.3142,0.0572,-0.7428,-0.3428,-1,-1,-1,-1,-1,-1,0.9724,1,1,1,1,1,1,1,1,1,0.389,0.4122,0.459,0.4976,0.569,0.6012,0.607,0.5312,0.4004,0.3124,-0.4,0.7412,-0.9338,-0.734,-0.4716,-0.4594,-0.2916,-0.6584,0.0088,0.115,0.3628,0.6814,0.292,0.593,0.7168,0.6284,0.3806,0.1858,0.9824,0.8762,1,0.5222,0.2212,0.3628,0.4514,0.3274,0.115,0.7522,0.5398,0.6638,0.7346,0.2566,0.5752,0.2744,0.5752,-0.0088,0.1682,0.2212,0.115,-0.7522,0.277,0.4308,0.677,1,0.723,0.7076,0.877,0.677,0.877,0.9076,0.8308,0.5384,0.8308,0.677,0.5692,0.7538,0.6924,0.2462,0.4308,0.5538,0.877,0.7384,0.6154,0.1692,0.4616,0.523,0.6924,0.4308,0.4154,0.323,0.3538,-0.277,0.5572,0.832,0.4352,0.4352,0.542,0.023,0.374,1,0.4656,0.2062,0.5268,0.481,0.71,0.313,0.252,0.3436,0.4198,0.3894,0.4046,0.4198,0.313,0.4504,0.313,0.2062,0.3436,0.1146,0.4352,0.2062,0.084,0.145,0.2672,-0.2978,-0.9844,1,-1,-1,-1,-1,-1,-1,-1,-0.3914,-0.3218,-0.1304,-0.2696,-0.1826,-0.1826,0.113,0.0956,0.3044,0.6696,0.9304,0.9652,1,0.3218,0.1478,0.3044,0.2174,0.3044,0.4782,-0.0608,0.026,0.3218,0.0956,0.374,0.2,0.1478,0.6,0.774,0.374,0.3566,0.1478,-0.7392,'25'
-0.3322,0.1474,1,0.9352,0.3938,0.799,0.6662,0.4814,-0.1572,-0.2998,-0.5688,-0.4004,-0.449,-0.6466,-0.4262,-0.5236,-0.6304,-0.6272,-0.4652,-0.3646,-0.3614,-0.543,-0.585,-0.368,0.0534,0.128,-0.3808,-0.2902,-0.1636,0.248,0.1994,0.1928,-0.4384,-0.135,0.2234,0.6344,0.7634,0.9188,0.9952,1,0.5556,0.1732,-0.0704,-0.178,-0.3644,-0.3262,-0.2688,-0.4672,-0.5054,-0.491,-0.5006,-0.5938,-0.644,-0.6296,-0.577,-0.037,0.08,0.19,0.3022,0.2784,0.049,0.5938,0.4982,-0.4026,-0.6004,-0.385,-0.261,-0.065,0.3638,0.5732,0.8506,0.806,0.7982,1,0.8642,0.451,0.0864,-0.0806,-0.1794,-0.1774,-0.1388,-0.2376,-0.2318,-0.3792,-0.2938,-0.3172,-0.0864,0.1542,0.3016,0.4626,0.5616,0.292,0.1134,0.127,-0.1562,0.2492,-0.6098,-0.4076,-0.3816,-0.1342,0.1968,0.3572,0.3902,0.7108,0.7788,0.7996,1,0.9738,0.3484,0.2282,0.094,-0.0574,-0.0156,-0.1794,-0.2456,-0.2682,-0.425,-0.4286,-0.2874,-0.1376,0.122,0.3728,0.54,0.608,0.399,0.256,-0.0592,0.1342,-0.5386,-0.3302,-0.3784,0.0078,0.3204,0.4594,0.3514,0.9884,1,0.7972,0.9556,0.9228,0.9846,0.6814,0.4074,0.2606,0.2818,0.0676,-0.0308,-0.0752,-0.1776,-0.28,-0.11,0.0618,0.2182,0.5232,0.8108,0.8688,0.7472,0.5502,0.3842,0.0424,-0.6144,-0.4056,-0.4438,-0.1204,0.253,0.3936,0.2068,0.8734,0.8654,0.5662,0.502,0.7048,0.8012,1,0.7028,0.6286,0.488,0.1888,0.0602,0.016,0.0502,0.0984,0.1566,0.263,0.4298,0.6184,0.8674,0.8996,0.6948,0.5402,0.4318,0.1124,-0.5644,-0.3334,-0.4236,-0.0056,0.3356,0.4896,0.4016,0.7294,0.7118,0.3752,0.2168,0.1904,0.3268,0.5776,0.8196,0.967,1,0.6964,0.3466,0.285,0.395,0.3378,0.4016,0.5886,0.7382,0.8966,0.9428,0.9384,0.7492,0.637,0.4896,0.318,0.091,0.6364,1,0.9394,0.5152,0.8788,0.697,0.5152,0.394,0.091,-0.2122,-0.2728,-0.0304,-0.2122,-0.2122,0.1516,0.2122,0.2122,-0.394,-0.0304,0.091,0.0304,0.4546,0.2728,0.394,0.2728,-0.697,-0.0304,0.2122,0.6364,0.4546,0.1516,0.1176,0.4706,1,0.9412,0.5882,0.7058,0.4706,0.5882,0.0588,0.1176,-0.0588,0.0588,0.0588,0.1176,-0.2352,-0.0588,0,0.0588,0.0588,-0.1764,0.1176,0.1764,0.1176,0.1176,0.2942,0.4706,0.1176,-0.1176,-0.1764,0.1176,-0.0588,0.2942,-0.595,-0.3164,-0.2152,0.0126,0.367,0.6456,1,0.9746,0.7468,0.8734,0.7468,0.0632,0.0632,-0.3418,-0.2406,-0.2152,-0.038,-0.038,-0.0886,-0.0126,0.2406,0.2658,0.2658,0.2912,0.367,0.4684,0.443,0.3418,0.2406,0.114,0.1392,0.038,-1,-1,-1,-1,-1,-1,-1,-0.8816,-0.7928,-0.8106,-0.6036,0.2248,0.4734,0.6568,0.5208,0.3372,0.1776,0.1776,0.0296,-0.0474,-0.0296,-0.148,-0.29,-0.2662,-0.2426,-0.2782,-0.2486,-0.219,-0.2958,-0.4378,-0.4498,-0.6924,-0.8224,-1,-1,-1,-1,-1,-1,-1,-0.9388,-0.9282,-0.9282,-0.8764,-0.6462,-0.4774,0.1422,0.6304,0.6662,0.774,0.8484,0.661,0.5372,0.2832,-0.0744,-0.395,-0.4348,-0.5186,-0.5492,-0.5054,-0.5612,-0.4788,-0.7752,-0.7446,-0.8524,-0.8696,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.9068,-0.92,-0.9268,-0.8326,-0.83,-0.7138,-0.5688,-0.5714,-0.535,-0.5814,-0.6226,-0.706,-0.8696,-0.653,-0.5468,-0.5234,-0.6034,-0.5734,-0.6,-0.6768,-0.51,-0.7168,-0.6034,-0.6534,-0.5934,-1,-1,-1,-1,-1,-1,-1,-0.9142,-0.9714,-1,-0.2572,-0.3714,-0.8858,-0.5428,-0.3714,-0.9714,-1,-1,-1,-1,-1,-0.8572,-1,-1,-1,-1,-0.9714,-0.8572,-0.5142,-0.6572,-0.6572,-0.6858,-0.8572,0.8362,0.8484,0.8668,0.8954,0.9372,0.9978,1,1,1,1,-0.0094,-0.0282,-0.0548,-0.0276,-0.012,0.0362,0.1156,0.1538,0.1122,-0.164,-0.4266,0.9882,-0.8696,-0.766,-0.7048,-0.6118,-0.613,-1,0.047,-0.1544,0.1812,0.8926,0.7046,0.49,0.5436,0.5436,0.7584,0.5838,0.5302,0.7852,0.4094,0.5974,0.3558,0.5704,0.0604,-0.0068,0.5704,0.4094,0.6376,0.4228,0.4766,0.812,0.2618,0.557,0.3692,0.5974,0.208,0.5302,-0.114,-0.812,-0.0294,0.4216,0.7746,0.804,0.5784,0.6274,0.6176,0.9216,0.7648,0.9804,0.647,0.4902,0.7352,0.5882,0.7648,0.647,0.598,0.7058,0.4706,0.5784,0.5196,0.8334,0.6862,0.8138,0.8726,0.7254,0.6078,0.5098,0.4804,0.2254,0.1568,-0.4706,0.1924,0.4742,0.4084,0.8122,0.6808,0.568,0.7652,1,0.2582,0.2864,0.5212,0.8686,0.5306,0.6244,0.3522,0.3146,0.0328,0.4178,0.3896,0.2582,0.3052,0.3802,0.3802,0.2582,0.3428,0.3334,0.2676,0.0892,0.1924,0.23,-0.0422,-0.3616,-0.9654,1,-1,-1,-1,-1,1,-1,-1,0.0178,0.0358,0.0892,-0.2322,-0.6608,-0.3572,-0.125,-0.3392,0.1072,0.375,0.9286,0.7858,1,0.9108,0.6608,0.4642,0.3392,0.1608,0.2678,0.7858,0.8036,-0.0178,-0.4286,0.125,0.0178,-0.0178,0.1608,0.2858,0.3214,0.5178,0.4822,0.4464,'25'
-0.3978,-0.1384,0.2616,0.1604,-0.3758,-0.7934,-0.7186,-0.6088,-0.5868,-0.5252,-0.5604,-0.4638,-0.266,-0.3758,-0.2352,-0.0902,0.1296,0.5516,0.8022,0.6528,0.5076,0.6528,0.7274,0.978,1,0.8374,0.4198,0.4682,0.411,0.4946,0.666,0.6176,-0.4308,-0.126,0.3292,0.2968,-0.683,-0.7764,-0.809,-0.7196,-0.6544,-0.6708,-0.7318,-0.4674,-0.5162,-0.5732,-0.2196,-0.2318,-0.2926,0.122,0.3334,0.5406,0.9796,1,0.5448,0.9308,0.9552,0.8902,0.683,0.6992,0.4878,0.6626,0.687,0.691,-0.4184,-0.1434,0.3006,0.2652,-0.7014,-0.8192,-0.831,-0.7288,-0.6582,-0.721,-0.8074,-0.5166,-0.5874,-0.6268,-0.497,-0.3674,-0.2652,-0.1788,0.108,0.2298,0.6896,0.831,0.9646,0.7054,0.8742,1,0.8586,0.7328,0.7996,0.6818,0.7132,0.8114,-0.4098,-0.1188,0.3156,0.2172,-0.664,-0.705,-0.7582,-0.7828,-0.7214,-0.7296,-0.795,-0.7172,-0.5656,-0.5942,-0.5492,-0.4344,-0.414,-0.2254,-0.0942,0.0082,0.3648,0.754,0.9222,0.877,0.8074,0.7992,0.9632,1,0.918,0.8524,0.9304,0.8812,-0.5096,-0.1628,0.1754,-0.074,-0.7802,-0.7506,-0.9112,-0.666,-0.649,-0.8394,-0.7716,-0.7464,-0.573,-0.6956,-0.5138,-0.5392,-0.6448,-0.3826,-0.3868,-0.0614,0.0318,0.6364,0.945,0.983,0.797,0.8012,0.8942,1,0.89,0.9112,0.8858,0.8646,-0.5654,-0.1754,0.0766,-0.1902,-0.368,-0.4568,-0.8222,-0.7334,-0.7876,-0.6988,-0.9062,-0.8222,-0.5506,-0.679,-0.674,-0.763,-0.5902,-0.4568,-0.6544,-0.353,-0.0666,0.5604,0.8962,0.921,1,0.921,0.9112,0.921,0.8716,0.605,0.674,0.6396,0.0416,0.382,-0.0764,0.2848,0.0764,-0.4652,-0.1528,-0.0416,-0.7292,-0.9098,-0.507,-0.2638,-0.1458,-0.3194,-0.4862,-0.4862,-0.2708,-0.1388,-0.4306,-0.1528,0.2362,0.5138,0.882,1,0.9166,0.757,0.6876,0.4722,0.257,0.118,0.0138,-0.0348,-0.2972,-0.027,0.2432,-0.081,-0.081,-0.7298,-0.6216,-0.7838,-0.5676,-0.3514,-0.4054,-0.1892,-0.1892,-0.5136,-0.081,0.081,0.4054,0.7298,0.8378,0.5676,0.5676,0.6216,0.7298,1,0.8378,0.946,0.6756,0.3514,0.5676,0.4594,0.7298,0.4594,-0.132,0.0566,0.3962,0.3584,-0.0188,-0.4716,-0.283,-0.3208,-0.3584,-0.283,-0.3962,-0.1698,0.0566,-0.1698,-0.0188,0.0566,0.3962,0.7736,0.9622,0.8868,0.3962,0.6226,0.849,0.9622,1,0.849,0.5094,0.6226,0.5094,0.6982,0.7736,0.7358,-0.3878,-0.1632,0.2244,0.0612,-0.7346,-0.5918,-0.7552,-0.5102,-0.4694,-0.5714,-0.5102,-0.4694,-0.4286,-0.6734,-0.5102,-0.4898,-0.3878,-0.2244,-0.3878,0.1224,0.102,0.5714,1,0.9796,0.5918,0.7756,0.796,0.8368,0.8572,0.7552,0.8572,0.796,-0.4874,-0.577,-0.6272,-0.663,-0.6702,-0.6846,-0.7026,-0.6308,-0.6094,-0.4874,-0.19,0.2796,0.8316,0.9856,0.8352,0.6094,0.3512,0.0036,-0.2688,-0.4768,-0.5412,-0.6058,-0.7706,-0.8494,-0.8996,-0.9212,-1,-1,-1,-1,-1,-1,-1,-0.732,-0.7784,-0.7946,-0.782,-0.7634,-0.7758,-0.7646,-0.777,-0.7382,-0.5342,-0.1672,0.3412,0.6768,0.8786,0.9536,0.816,0.6192,0.1772,-0.2698,-0.4276,-0.6844,-0.8058,-0.8974,-0.9212,-0.9298,-0.8974,-1,-1,-1,-1,-1,-1,-1,-0.7014,-0.7414,-0.7282,-0.4214,-0.4282,-0.2914,0.0152,-0.2314,-0.1348,0.1152,0.2552,-0.093,-0.072,-0.0516,0.0228,-0.1572,-0.1344,-0.0972,-0.1258,-0.2426,-0.4226,-0.7226,-0.8534,-0.8268,-0.8934,-0.7934,-1,-1,-1,-1,-1,-1,-1,-0.4286,-0.9142,-0.9142,-0.9714,-0.9428,-0.7714,-0.9142,-0.8572,-0.2,0.3428,0.3714,0.0858,0.1142,-0.8286,-0.8858,-0.9142,-0.9142,-0.7714,-0.8572,-0.2858,0.4572,1,-0.5428,-1,-1,-0.6286,-1,-1,-1,-1,-1,-1,-1,-0.2594,-0.2594,-0.2878,-0.2976,-0.3454,-0.3714,-0.3798,-0.4012,-0.4694,-0.3224,0.6882,0.6882,0.7222,0.7126,0.7674,0.8272,0.8658,0.9164,1,0.9724,-0.4666,-0.1764,-0.1296,0.1584,0.2824,0.6268,0.648,-1,0.1142,0.0118,-0.1418,-0.0276,-0.1338,-0.3188,-0.0866,0.2204,0.2322,0.0236,-0.0826,-0.067,0.3898,0.0552,-0.0472,-0.1574,0,0.2598,0.4606,0.4528,0.5394,0.8268,0.8818,0.8346,0.7756,0.7048,0.5472,0.685,0.9292,1,0.9292,0.4528,-0.0384,-0.1298,-0.2394,-0.51,-0.4662,-0.3162,-0.2286,0.1042,0.1444,-0.053,0.0164,-0.075,0.0786,0.0202,-0.2286,-0.075,0.031,0.1628,0.4478,0.4076,0.203,0.382,0.4552,0.7478,0.9598,1,0.426,0.5284,0.6928,0.777,0.7038,0.4442,-0.2412,-0.1124,-0.2228,-0.6648,-0.709,-0.6796,-0.418,0.0718,0.3738,0.348,0.1676,0.4548,0.5764,0.1124,0.0682,0.105,0.2118,0.1786,0.6428,0.4622,0.3664,0.5064,0.6758,0.8454,0.908,1,0.5174,0.5728,0.8784,0.908,0.9558,0.7458,-0.9274,-1,1,-1,1,0.6,-1,0.6334,-1,-0.04,0.1466,0.2534,0.3334,0.28,0.3066,0.36,0.5466,0.6534,0.68,0.4666,0.4934,0.76,0.7066,0.4934,0.6,0.7066,1,0.8934,0.8134,0.8134,0.68,0.6266,0.4666,0.28,0.3066,0.28,0.3066,0.4134,0.1734,0.1734,-0.28,'26'
-0.5526,-0.2762,0.286,0.1834,-0.4646,-0.8606,-0.687,-0.582,-0.7042,-0.8264,-0.7066,-0.577,-0.643,-0.5086,-0.3888,-0.3448,-0.1882,0.1466,0.357,0.4548,0.7212,0.6822,0.4988,0.78,0.9194,1,0.8948,0.797,0.7114,0.6382,0.6528,0.5942,-0.562,-0.3004,0.2064,0.1606,-0.5206,-0.7294,-0.7178,-0.6698,-0.7936,-0.899,-0.7684,-0.6262,-0.6972,-0.656,-0.516,-0.5712,-0.5894,-0.3394,-0.2454,0.0114,0.4082,0.6858,0.8464,0.8854,0.7248,0.812,1,0.961,0.922,0.851,0.695,0.6652,-0.584,-0.334,0.1416,0.0642,-0.5066,-0.8694,-0.6726,-0.6372,-0.697,-0.9336,-0.6704,-0.5576,-0.6924,-0.7036,-0.584,-0.6682,-0.5464,-0.4602,-0.4204,-0.1172,0.0884,0.3872,0.8452,0.8806,0.7986,0.8274,0.812,0.9668,1,0.9558,0.8518,0.7014,-0.5888,-0.3408,0.1262,0.0436,-0.553,-0.8794,-0.8168,-0.8256,-0.6582,-0.8034,-0.7744,-0.6336,-0.696,-0.6804,-0.667,-0.6446,-0.6558,-0.6514,-0.5084,-0.2112,0.0502,0.2582,0.6716,0.7832,0.933,0.7832,0.8548,0.9732,1,0.904,0.8972,0.685,-0.5372,-0.2252,0.2126,0.1396,-0.4188,-0.7862,-0.6528,-0.7082,-0.8038,-0.6982,-0.6126,-0.6378,-0.6528,-0.6276,-0.6554,-0.7886,-0.8868,-0.9018,-0.5472,-0.4038,-0.1724,0.2704,0.7006,0.8894,0.8868,0.834,0.8012,1,0.9246,0.8616,0.6956,0.615,-0.3698,0.0582,0.3458,0.2842,-0.2636,-0.6952,-0.5514,-0.476,-0.6986,-0.6884,-0.6816,-0.4794,-0.4384,-0.5342,-0.572,-0.726,-0.5274,-0.4794,-0.5994,-0.3356,-0.1164,0.0308,0.6164,0.9006,0.9726,1,0.9658,0.8528,0.7876,0.6096,0.411,0.2774,-0.4162,0.6358,0.2024,0.1098,-0.2138,-0.2312,-0.0462,0.0232,-0.6878,-0.5722,-0.4972,-0.393,-0.2544,-0.4278,-0.0462,-0.3816,-0.2486,-0.2138,-0.0868,-0.0116,0.1676,0.3006,0.0058,0.5954,0.815,1,0.6936,0.3468,-0.1388,-0.0116,-0.0636,0.1214,-0.2,-0.04,0.36,0.32,0.04,-0.28,-0.16,-0.12,-0.2,-0.28,-0.12,0.04,-0.16,0.12,0.12,-0.04,0.2,0.76,0.88,0.68,0.64,0.48,0.4,0.84,0.96,1,0.68,0.68,0.64,0.6,0.64,0.52,-0.6,-0.15,0.05,-0.15,-0.3,-0.65,-0.65,-0.55,-0.65,-0.65,-0.5,-0.4,-0.5,-0.7,-0.25,-0.15,0,0.35,0.4,0.45,0.4,0.35,0.4,0.7,1,1,0.45,0.65,0.65,0.7,0.85,0.85,-0.5056,-0.2808,0.191,0.1236,-0.3932,-0.5506,-0.573,-0.528,-0.5956,-0.7078,-0.6404,-0.618,-0.7078,-0.5956,-0.4606,-0.3932,-0.4832,-0.4382,-0.3034,0.0112,0.1686,0.5506,0.8202,1,0.7078,0.7978,0.9102,0.9776,0.7978,0.8652,0.7528,0.5506,-0.3172,-0.3724,-0.3932,-0.4896,-0.5172,-0.538,-0.5586,-0.5242,-0.4966,-0.4344,-0.2414,0.4206,0.9172,0.6552,0.5242,0.538,0.4414,0.4206,0.2552,-0.0068,-0.2414,-0.5104,-0.8276,-0.8344,-0.8552,-1,-1,-1,-1,-1,-1,-1,-1,-0.6726,-0.6824,-0.7138,-0.7314,-0.6922,-0.651,-0.5412,-0.6196,-0.3078,0.1392,0.245,0.3432,0.755,0.7432,0.6432,0.7608,0.7058,0.3078,-0.2412,-0.545,-0.6844,-0.7862,-0.8942,-0.8922,-0.904,-1,-1,-1,-1,-1,-1,-1,-1,-0.8438,-0.7738,-0.5306,-0.5272,-0.1972,0.0594,0.1794,0.0994,0.4262,0.6362,0.6128,-0.1626,-0.34,-0.2954,-0.297,-0.2048,-0.053,-0.1472,-0.3472,-0.5558,-0.51,-0.693,-0.8734,-0.9,-0.9068,-1,-1,-1,-1,-1,-1,-1,-1,-0.6572,-0.9714,-1,-1,-0.8572,-0.9142,-1,-0.7428,-0.1142,0.0286,-0.3142,1,-0.3714,-0.9714,-0.9428,-0.9714,-0.9714,-0.9428,-0.9428,-0.7714,-0.6858,-0.6286,-0.8572,-0.9428,-0.5714,-1,-1,-1,-1,-1,-1,-1,-1,-0.1258,-0.1332,-0.1546,-0.1584,-0.1582,-0.2038,-0.218,-0.2052,-0.2212,-0.1282,0.9706,0.9954,0.9776,1,1,1,1,1,1,1,-0.4934,0.6352,0.1176,0.645,0.4588,0.1804,0.2078,-0.3834,0.0158,0.0316,-0.0158,-0.019,-0.2018,-0.2492,-0.1452,0.3596,0.3092,-0.0032,-0.123,-0.0852,0.5488,0.448,-0.0852,-0.0474,-0.1324,-0.1578,0.287,0.552,0.1262,0.366,0.4258,0.6182,0.5772,1,0.7192,0.8422,0.9652,0.8296,0.4764,0.101,-0.34,-0.3574,-0.3574,-0.4322,-0.4812,-0.5706,-0.343,-0.1816,0.2594,-0.1988,-0.147,-0.1296,0.0288,-0.0518,-0.2104,-0.2392,-0.1528,-0.0346,0.2046,0.6224,0.4524,0.6744,0.5792,0.4466,0.6426,1,0.902,0.4322,0.559,0.6312,0.5244,0.2132,-0.4788,-0.2536,-0.3522,-0.7042,-0.631,-0.5802,-0.5268,-0.3634,0.2056,0.0508,-0.2564,0.1098,0.383,0.2536,0.0846,0.0704,0.2338,0.2846,0.6,0.6816,0.645,0.7916,0.7634,0.7718,0.9268,1,0.876,0.7972,0.938,0.9154,0.924,0.6564,-0.9764,-1,1,-1,1,1,-1,0.8666,-1,0.2,0.6308,0.2924,1,0.7846,0.323,0.877,0.9384,0.6924,0.4154,0.8462,0.6616,0.9384,0.9692,0.5384,0.723,0.2,0.5384,0.7846,0.8154,0.7538,0.5076,0.477,0.5692,0.477,0.6308,0.5076,0.8154,0.4462,0.477,0.2924,0.077,'26'
0.0362,0.751,0.7188,1,0.9358,0.984,0.8072,0.4338,0.229,0.2088,-0.008,0.0602,-0.1726,-0.1326,-0.1726,-0.1366,0.0804,0.1888,0.7912,0.8514,0.8314,0.8112,0.3976,0.3012,0.265,0.4618,0.5824,0.4016,0.2932,0.1768,0.1928,0.016,0.0132,0.6572,0.6422,1,0.8154,0.9624,0.676,0.4426,0.0772,0.1526,-0.0696,-0.0434,-0.4086,-0.4426,-0.1902,-0.2316,0.1224,0.2204,0.5292,0.6308,0.7966,0.533,0.371,0.1752,0.2468,0.4312,0.45,0.3822,0.3522,-0.0848,-0.1186,-0.292,-0.0154,0.6168,0.7126,1,0.7816,0.862,0.4522,0.3832,0.0306,0.0422,-0.115,-0.184,-0.5288,-0.5938,-0.6206,-0.4292,-0.2568,0.0614,0.1456,0.7432,0.774,0.6896,0.6322,0.4368,0.2874,0.1456,0.0652,0.1916,-0.0652,0.0192,-0.0842,-0.0728,-0.0598,0.539,0.7314,1,0.7858,0.6334,0.2196,0.2632,-0.0598,-0.0636,-0.1688,-0.2522,-0.2776,-0.441,-0.6152,-0.7168,-0.873,-0.187,-0.0708,0.5898,0.5898,0.8258,0.7568,0.7024,0.5572,0.4338,0.216,0.1434,-0.0672,-0.0164,0.1506,0.1506,-0.1118,0.4672,0.681,1,0.8388,0.2764,0.056,0.0098,-0.319,-0.2664,-0.3618,-0.306,-0.2994,-0.296,-0.3586,-0.3948,-0.398,-0.375,-0.171,0.148,0.398,0.5822,0.6678,0.6184,0.6612,0.569,0.5,0.227,0.1908,-0.125,-0.1184,0.0098,-0.1022,0.7296,0.7538,1,0.993,0.1162,-0.0642,-0.3796,-0.4766,-0.6568,-0.6014,-0.3796,-0.2652,-0.175,-0.1854,-0.2374,-0.2132,-0.1786,0.0086,0.1716,0.494,0.6048,0.5182,0.5806,0.6326,0.695,0.5182,0.3344,0.2756,0.1646,0.1196,0.2202,-0.696,0.8158,1,0.4776,0.5118,0.3618,-0.4048,-0.499,-0.5032,-0.4904,-0.606,-0.4732,-0.5332,-0.5546,-0.516,-0.5204,-0.3748,-0.4432,-0.2592,-0.015,0.379,0.5546,0.6916,0.7516,0.5846,0.4604,0.486,0.2848,-0.0836,-0.0064,-0.0836,-0.1178,-0.3062,0.4694,0.5102,0.347,0.7552,0.7552,0.5102,0.1836,0.347,0.2654,0.3062,0.2654,0.2654,0.2244,0.1836,0.1428,0.3062,0.5102,0.8368,1,1,0.9184,0.8368,0.8776,0.8776,0.8776,0.8368,0.6326,0.4286,0.0612,-0.0612,0.0204,0.1538,0.7692,0.6538,1,0.8462,0.923,0.8462,0.5,0.077,0.2692,-0.0384,0.1538,-0.1924,0,-0.1924,-0.0384,0.1538,0.2308,0.8076,0.923,0.7308,0.7692,0.423,0.3462,0.077,0.423,0.5384,0.5384,0.4616,0.3462,0.3846,0.077,-0.0962,0.5192,0.5384,1,0.8846,0.1538,-0.0962,-0.077,-0.2116,-0.3654,-0.5192,-0.327,-0.423,-0.1924,-0.3462,-0.0576,-0.173,-0.0576,-0.173,0.1346,0.327,0.5576,0.6346,0.8076,0.75,0.8462,0.4038,0.0962,0.0962,0.1924,0.077,0.1924,-1,-1,-1,-1,-1,-1,-1,-1,-0.9862,-0.9886,-0.8882,0.5436,0.7568,0.7722,0.7276,0.7252,0.8444,0.961,0.9352,0.6158,-0.0118,-0.4998,-0.7162,-0.867,-0.97,-0.9748,-0.97,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9784,-0.9744,-0.864,0.5696,0.7352,0.8092,0.7598,0.7034,0.8162,0.9596,0.864,0.5456,-0.0948,-0.5622,-0.7182,-0.8338,-0.8856,-0.869,-0.901,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.9,-0.76,-0.75,-0.7926,-0.8076,-0.8026,-0.815,-0.815,-0.85,-0.8976,-0.88,-0.9668,-0.9424,-0.8368,-0.66,-0.1934,0.0132,-0.04,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,-0.0572,1,1,-1,-1,-0.8858,-0.8572,-0.9714,-0.9142,-0.8286,-0.6858,-0.0858,-0.6858,-0.7142,-0.4858,-0.6572,-0.7428,-0.5428,-1,-1,-1,-1,-1,-1,0.7818,0.7808,0.7736,0.7736,0.7678,0.771,0.7722,0.7646,0.7356,0.5188,0.605,0.5882,0.5646,0.5362,0.5352,0.5278,0.5054,0.4886,0.548,0.7304,-0.7334,-0.0588,-0.9016,0.0868,0.5656,0.6868,0.676,1,0.1364,0.409,0.2424,0.409,0.6818,0.5304,0.606,0.697,0.7122,0.7122,0.7122,0.4242,0.6212,0.5,0.4696,0.9546,0.6364,0.1516,0.7122,0.3484,0.7424,0.4696,0.3788,0.6666,0.606,0.5454,0.409,0.2122,0.0606,0.2878,0.0152,-0.3334,0.128,-0.1744,0.279,0.2558,0.3256,0.593,0.8024,0.907,1,0.5116,0.8256,0.7326,0.6628,0.3838,0.4302,0.6396,0.4768,0.2674,0.2558,0.3954,0.4186,0.3024,0.3954,0.7442,0.4768,0.4302,0.5814,0.4534,0.372,0.1976,0.3604,-0.2442,-0.0526,0.2632,0.1368,0.0106,0.0948,0.2842,0.4422,0.2736,0.6,0.8632,1,0.4316,0.5368,0.7474,0.7264,0.779,0.7264,0.7474,0.5368,0.2422,0.421,0.579,0.5578,0.4632,0.2526,0.0842,0.2526,0.0736,-0.0422,0.2632,0.1052,-0.3368,-0.9944,1,-1,-1,-1,-1,-1,-1,-1,-0.6324,-0.4412,-0.25,-0.0736,0.0148,-0.103,0.1176,-0.0148,0.1176,1,1,0.5148,0.8236,0.8824,0.5148,0.5736,0.4706,0.1764,0.1618,0.0588,0.147,0.5,0.3824,0.2206,0.5882,0.4412,-0.147,-0.0148,0.0294,-0.0148,-0.3676,-0.7942,'1'
0.022,0.674,0.6082,0.9122,0.768,1,0.7932,0.5204,0.1786,0.1568,-0.1974,-0.094,-0.3134,-0.279,0.0188,0,0.301,0.2978,0.6458,0.5706,0.2916,0.2352,0.1786,0.3606,0.373,0.4138,0.4106,0.2038,0.1348,-0.1756,-0.2352,-0.1474,-0.0016,0.6442,0.5948,0.9078,0.8024,1,0.6772,0.6014,0.107,0.117,-0.1828,-0.196,-0.4004,-0.5058,-0.1664,-0.0676,0.1796,0.308,0.4958,0.486,0.598,0.2718,0.107,0.4234,0.407,0.631,0.5684,0.2652,0.1434,0.0346,0.0478,-0.0676,0.0272,0.678,0.678,1,0.8238,0.983,0.5864,0.5424,0.0372,0.0576,-0.1458,-0.1966,-0.0848,-0.2102,-0.4916,-0.2882,-0.1186,0.383,0.4916,0.7152,0.7694,0.4204,0.3796,0.3594,0.2678,0.278,0.3186,0.3932,0.1084,0.2136,0.2338,0.295,-0.0016,0.6378,0.6944,1,0.77,0.7732,0.3638,0.389,-0.093,-0.0804,-0.2566,-0.3196,-0.244,-0.3796,-0.348,-0.4048,-0.2536,-0.0142,0.0898,0.6756,0.704,0.6158,0.5716,0.5496,0.4236,0.389,0.2504,0.3166,0.1338,0.2566,0.2536,0.3166,-0.0748,0.562,0.6164,1,0.8858,0.347,0.1972,0.0122,-0.1972,-0.3796,-0.5538,-0.4558,-0.3224,-0.1972,-0.1946,-0.2164,-0.3524,-0.3034,0.0422,0.3714,0.6626,0.6218,0.581,0.5346,0.6082,0.6462,0.5674,0.2136,-0.0694,-0.0448,-0.0368,0.2218,-0.3494,0.877,1,0.7092,0.817,0.5202,0.0224,-0.0704,-0.4002,-0.4122,-0.5412,-0.5442,-0.2564,-0.0434,0.0344,0.0464,0.0614,0.1454,0.3464,0.5862,0.7152,0.829,0.817,0.916,0.973,0.919,0.7722,0.4152,0.3614,0.3224,0.3554,0.4752,-0.9876,0.5086,1,0.8764,0.221,0.459,0.2302,-0.3818,-0.2334,-0.422,-0.728,-0.7064,-0.7032,-0.5426,-0.5146,-0.425,-0.3972,-0.2798,-0.0974,0.286,0.6414,0.7466,0.8022,0.7898,0.6724,0.762,0.799,0.5826,0.3014,0.2798,0.153,0.3446,0,0.6666,0.6666,0.9524,0.9048,1,0.8096,0.2858,0.1904,0.1428,-0.0952,0.0476,0.0476,0.1428,0.238,0.238,0.238,0.381,0.762,0.762,0.6666,0.5238,0.381,0.3334,0.3334,0.1428,0.1428,0.1904,0.2858,0,-0.1904,-0.0952,0.0666,0.6888,0.6444,0.9112,0.9112,1,0.7778,0.5112,0.3334,0.0666,-0.2888,-0.1556,-0.6444,-0.5112,-0.0222,-0.0222,0.3334,0.2888,0.3778,0.7778,0.6,0.2888,0.2,0.3334,0.2888,0.5112,0.2888,0.1556,-0.0222,-0.1112,-0.0666,0.1112,-0.2706,0.7176,0.7882,0.9058,1,0.4588,0.2,0.0352,-0.3412,-0.2706,-0.6,-0.247,0.2,0.1764,0.1058,0.2,0.1294,0.2942,0.3648,0.8352,0.8352,0.7412,0.8824,0.8588,0.9294,0.8824,0.8118,0.5764,0.4824,0.3176,0.4352,0.3648,-1,-1,-1,-1,-1,-1,-1,-1,-0.9866,-0.9874,-0.3878,0.4598,0.6556,0.628,0.5426,0.4898,0.5988,0.7662,0.944,0.154,-0.1666,-0.286,-0.6438,-0.9432,-0.9732,-0.9802,-0.9724,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9748,-0.9754,0.0084,0.656,0.798,0.7194,0.582,0.5112,0.5426,0.7144,0.9192,0.1156,-0.1706,-0.2862,-0.6616,-0.88,-0.8664,-0.8934,-0.9288,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.94,-0.8068,-0.7778,-0.804,-0.772,-0.774,-0.784,-0.802,-0.802,-0.864,-0.908,-0.868,-0.96,-0.8234,-0.2068,-0.1268,-0.2368,-0.4434,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,-0.8572,-0.8858,-1,-1,-0.9428,-0.7714,-0.7142,-0.5714,-0.7428,-0.4,-0.1142,-0.1714,-0.8572,-0.2286,-0.2858,-1,-1,-1,-1,-1,-1,0.8212,0.826,0.8292,0.8318,0.8382,0.8404,0.8402,0.8348,0.8024,0.6528,0.4696,0.4684,0.477,0.4536,0.4452,0.475,0.4672,0.4502,0.5172,0.6478,-0.7466,0.1648,0.4876,0.5068,0.6812,0.6914,0.7682,1,-0.1052,0.0526,0.2632,0.3684,0.3684,0.3684,0.3158,0.579,0.5264,0.7368,0.8422,0.9474,1,0.9474,1,0.9474,0.8422,0.7894,0.6842,0.5264,0.421,0.1052,0.2106,0.1052,-0.0526,0.0526,0,-0.3684,-0.1052,-0.1052,-0.1052,-0.2632,0.2978,0.4198,0.6336,0.6336,0.542,0.2366,0.252,0.3894,0.4046,0.7558,0.8168,0.8778,1,0.9848,0.771,0.7862,0.9084,0.9084,0.6642,0.4504,0.4198,0.4198,0.4046,-0.0076,-0.0688,-0.2672,-0.313,-0.084,0.1604,0.2366,0.1604,-0.3282,0.6346,0.8846,1,0.8846,0.3846,0.2308,0.2692,0.2692,0.2692,0.5192,0.4808,0.6346,0.827,0.6924,0.3076,0.327,0.3462,0.6346,0.2884,0.0384,0,0.0384,0.1154,-0.2884,-0.4424,-0.4038,-0.4424,-0.4038,-0.4424,-0.0576,-0.2116,-0.4424,1,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.5136,-0.1892,-0.2702,-0.0136,0,-0.0946,-0.1216,-0.0406,0.081,0.8918,1,0.5406,0.6486,0.581,0.527,0.5,0.446,-0.1486,0.3514,0.2972,0.1622,0.473,0.3784,0.1216,0.2162,-0.027,-0.1352,-0.1756,-0.473,-0.3648,-0.3648,-0.4864,'1'
0.2234,1,0.934,0.7564,0.604,-0.0254,-0.3148,-0.3858,-0.6192,-0.5736,-0.6548,-0.6498,-0.5432,-0.67,-0.5786,-0.6498,-0.7412,-0.7106,-0.4366,0.0558,0.269,0.7158,0.797,0.8122,0.873,0.9746,0.9086,0.6396,0.406,0.4112,0.2336,0.3808,0.1872,0.7854,0.6622,0.7534,0.4658,-0.0914,-0.4338,-0.4704,-0.7032,-0.7442,-0.7672,-0.6804,-0.516,-0.7306,-0.726,-0.7762,-0.7854,-0.8264,-0.4156,-0.105,0.201,0.3608,0.9042,1,0.7488,0.7306,0.6622,0.589,0.7398,0.5068,-0.0548,0.3926,0.1464,0.7668,0.6476,0.7966,0.4442,-0.1464,-0.6378,-0.7022,-0.9156,-0.9058,-0.8462,-0.5584,-0.454,-0.5484,-0.5632,-0.6228,-0.6774,-0.8312,-0.588,-0.454,0.0472,0.2606,1,0.9454,0.737,0.5384,0.6972,0.6724,0.7766,0.1712,-0.0422,0.1316,0.2316,0.9292,0.7766,0.9892,0.6404,-0.0354,-0.4168,-0.406,-0.8202,-0.902,-0.7276,-0.5858,-0.455,-0.5858,-0.515,-0.5096,-0.5694,-0.4386,-0.5968,-0.4224,-0.4224,-0.1662,0.7984,0.831,0.7766,0.7058,0.9182,0.782,1,0.613,0.5858,0.4332,0.2268,0.9762,0.8998,1,0.7852,0.0548,-0.2744,-0.2744,-0.6468,-0.8806,-0.9428,-0.7756,-0.5132,-0.5466,-0.2888,-0.3986,-0.327,-0.3748,-0.2028,-0.1742,0.1456,0.4606,0.8042,0.7136,0.58,0.6706,0.7804,0.7614,0.661,0.5752,0.4464,0.3842,0.0426,0.991,1,0.7078,0.7078,-0.0338,-0.0562,-0.6134,-0.4876,-0.6764,-0.5866,-0.6764,-0.4248,-0.4426,-0.3484,-0.3124,-0.3304,-0.4158,-0.218,-0.0696,0.1686,0.3708,0.7304,0.7842,0.5146,0.5776,0.609,0.555,0.3932,0.2808,0.3124,0.3618,-0.4798,0.8508,1,0.4244,0.194,-0.015,0.0534,-0.0576,-0.4926,-0.467,-0.6076,-0.5224,-0.4712,-0.4158,-0.4372,-0.548,-0.4498,-0.5948,-0.2196,-0.0022,0.4116,0.5906,0.565,0.6034,0.4542,0.5224,0.5266,0.4968,0.548,0.2538,0.3006,0.3092,0.1904,1,1,0.5714,0.4762,-0.1428,-0.0476,-0.1904,-0.238,-0.4286,-0.4762,-0.4286,-0.381,-0.619,-0.5238,-0.4286,-0.381,-0.381,-0.2858,0.238,0.5238,0.4762,0,0.619,0.8096,0.8096,0.8096,0.4762,0.4762,0.2858,0.0952,0.1428,0.3454,0.8546,0.8546,0.7818,0.6728,0.309,0.091,0.0182,-0.309,-0.1272,-0.1272,-0.091,-0.0182,-0.091,-0.091,-0.0546,-0.2728,-0.2728,0.0546,0.309,0.5272,0.8546,1,0.8182,0.9636,0.8546,1,0.7454,0.309,0.5272,0.4546,0.7818,0.2702,0.8918,0.6756,0.946,0.6216,-0.027,-0.4324,-0.4594,-0.3784,-0.5136,-0.5946,-0.7568,-0.5676,-0.5406,-0.4054,-0.3784,-0.5136,-0.5676,-0.3784,-0.2162,-0.5406,0,0.8108,0.8108,0.7568,0.7028,0.919,0.7568,1,0.6486,0.5136,0.3244,-1,-1,-1,-1,-1,-1,-1,-0.9818,-0.9806,-0.9748,-0.4494,0.9144,0.7602,0.6664,0.5866,0.4552,0.3592,0.293,0.1776,0.085,0.3022,-0.0828,-0.5946,-0.904,-0.9566,-0.9634,-0.9726,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9638,-0.9572,-0.9414,-0.409,0.932,0.8324,0.7822,0.744,0.5692,0.4296,0.2954,0.1642,0.0758,0.2816,-0.128,-0.5692,-0.7758,-0.8214,-0.8586,-0.8948,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9296,-0.9268,-0.9668,-0.7,-0.863,-0.8858,-0.883,-0.8944,-0.8858,-0.883,-0.9058,-0.9744,-0.99,-0.9876,-0.9776,-0.7968,-0.0968,-0.2168,-0.23,-0.4034,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3428,-0.9714,1,1,1,-0.5714,-0.8286,-0.9714,-0.9142,-0.8858,-0.8858,-0.8858,-0.8286,-0.6572,-0.5428,-0.4,-0.2,-0.6858,-0.7428,-0.5142,-1,-1,-1,-1,-1,-1,-0.1266,-0.1266,-0.1936,-0.18,-0.232,-0.2642,-0.2916,-0.3182,-0.3724,-0.194,1,1,1,1,1,1,1,1,1,1,-0.72,-0.1764,-0.4826,0.625,0.9748,0.9488,0.8372,-0.075,0.2258,0,0.1936,0.0322,0.258,0.5806,0.7742,0.9032,1,0.9354,0.8388,0.9354,0.613,0.4838,0.5484,0.5484,0.742,0.4516,0.5484,0.5162,0.5162,0.4194,0.742,0.6452,0.1612,0.5484,0.4838,-0.129,0.258,0.4838,0.3226,-0.5162,0.5814,0.3954,0.186,-0.1162,0.279,-0.0698,0.1628,0.372,0.6976,1,0.8838,0.7906,0.9302,0.5582,0.372,0.4418,0.4884,0.372,0.1162,0.4186,0.5116,0.0698,0.3024,0.1162,0,0.093,-0.0232,0,-0.2326,0.0698,0.1162,-0.6046,0.5748,0.8426,0.1968,-0.0866,-0.0078,-0.2126,-0.1654,0.0708,0.1338,0.433,0.811,0.7796,1,0.748,0.5434,0.3386,0.8426,0.2914,0.0552,0.2284,0.244,-0.1496,-0.496,-0.433,-0.2598,-0.2126,-0.1968,-0.4174,-0.2914,0.0236,0.2284,-0.5118,1,-1,-1,1,-1,-1,-0.8,-0.7666,-1,-0.5536,-0.3036,-0.3928,-0.2858,-0.2142,-0.1608,-0.3392,-0.4286,-0.3214,0.3392,0.8928,1,0.875,0.9642,0.9108,0.4108,0.6964,0.2322,0.25,0.4822,0.6964,0.5892,0.0536,0,-0.3214,-0.4108,-0.5358,-0.1786,-0.3928,-0.3214,-0.5178,-0.5536,'2'
0.208,1,0.9758,0.8424,0.7374,0.099,-0.0506,-0.2646,-0.491,-0.499,-0.3898,-0.1758,-0.2162,-0.1676,-0.499,-0.4142,-0.499,-0.4344,-0.1434,0.208,0.9516,0.9676,0.9232,0.907,0.9516,0.8788,0.7212,0.6848,0.3212,0.2484,0.4384,0.4182,0.0524,0.7042,0.6254,0.7528,0.5768,0.015,-0.251,-0.427,-0.5918,-0.4982,-0.528,-0.4944,-0.2472,-0.2808,-0.322,-0.4194,-0.427,-0.5692,-0.367,-0.3932,-0.0712,0.8202,1,0.6966,0.7828,0.7978,0.8314,0.588,0.5918,0.472,0.3932,-0.0112,0.1022,0.7912,0.6868,0.8456,0.6034,0.0314,-0.382,-0.7412,-0.57,-0.5658,-0.6994,-0.7328,-0.2484,-0.382,-0.403,-0.595,-0.5616,-0.808,-0.7328,-0.4488,-0.094,0.7078,0.716,1,0.904,0.8162,0.5908,0.7704,0.4948,0.5532,0.144,0.073,0.1186,0.8128,0.7172,0.8752,0.6424,0.0978,-0.3098,-0.8378,-0.5884,-0.5718,-0.7214,-0.6466,-0.2142,-0.3556,-0.3638,-0.4636,-0.2724,-0.6092,-0.5136,-0.0562,-0.027,0.156,0.5758,1,0.9002,0.6756,0.7422,0.975,0.684,0.4802,0.5468,0.63,0.2236,1,0.9368,0.962,0.8102,0.173,-0.0506,-0.5992,-0.7258,-0.5908,-0.8102,-0.595,-0.3292,-0.1476,-0.3038,-0.2278,-0.2912,-0.2194,-0.0718,-0.135,0.1646,0.4136,0.7932,0.979,0.9832,0.8608,0.7426,0.865,0.8734,0.6414,0.5696,0.6708,-0.0444,0.9318,1,0.3482,0.273,-0.2184,-0.1296,-0.4676,-0.6076,-0.7236,-0.7064,-0.4676,-0.4062,-0.3448,-0.4778,-0.5052,-0.3994,-0.3788,-0.2696,-0.2218,-0.0376,0.4608,0.8088,0.9078,0.843,0.6656,0.6996,0.7168,0.5802,0.3106,0.1912,0.2286,-0.957,0.7496,1,0.6752,-0.2838,-0.2408,-0.4324,-0.2486,-0.4952,-0.726,-0.6282,-0.589,-0.5226,-0.6008,-0.6516,-0.6282,-0.7026,-0.6674,-0.6046,-0.409,-0.0764,0.2212,0.3816,0.5382,0.4756,0.4324,0.4482,0.3464,0.413,0.1468,0.1232,0.2094,0.24,0.96,1,0.64,0.52,0.04,-0.12,-0.2,-0.24,-0.72,-0.4,0,0.04,-0.2,-0.16,-0.24,-0.08,-0.2,0.08,0.2,0.64,0.68,0.36,0.64,0.64,0.56,0.36,0.4,-0.04,-0.36,0.16,0.32,0.098,0.6862,0.6862,0.6078,0.5686,0.1372,-0.0196,-0.1372,-0.255,-0.3726,-0.4118,-0.098,-0.255,-0.2156,-0.255,-0.255,-0.5294,-0.0588,0.1764,0.3726,0.8432,1,0.7648,0.3726,0.647,0.6862,0.5294,0.5294,0.3726,0.3726,0.2942,0.4902,0.055,0.7802,0.7802,0.4726,0.4506,-0.099,-0.2308,-0.6264,-0.5164,-0.5384,-0.4946,-0.2968,-0.3626,-0.2528,-0.2528,-0.3626,-0.2308,-0.2748,-0.2748,-0.1648,-0.077,0.4286,0.5384,1,0.978,0.6704,0.7362,0.8022,0.7802,0.3846,0.4506,0.099,-1,-1,-1,-1,-1,-1,-1,-0.9796,-0.9764,-0.9108,-0.4912,0.895,0.8444,0.8624,0.833,0.7248,0.6662,0.5838,0.5138,0.3728,0.4134,-0.0074,-0.7214,-0.9504,-0.9606,-0.9514,-0.9448,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9618,-0.965,-0.8424,-0.4954,0.6742,0.8708,0.948,0.8228,0.7132,0.6464,0.4928,0.3864,0.2134,0.2084,-0.1662,-0.7074,-0.8082,-0.8156,-0.8432,-0.892,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9624,-0.9234,-0.8234,-0.5968,-0.895,-0.8976,-0.8326,-0.8476,-0.9026,-0.8976,-0.9378,-0.9378,-0.9778,-0.9756,-0.9624,-0.6268,-0.09,-0.0634,-0.23,-0.4734,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5142,-0.6572,1,1,1,-0.0572,-0.9142,-0.9714,-1,-0.9142,-0.9142,-0.7714,-0.7142,-0.6858,-0.2858,-0.2572,-0.5142,-0.7714,-0.4858,-0.4,-1,-1,-1,-1,-1,-1,0.0108,0.0074,0.0102,0.017,0.02,0.0266,0.0188,-0.0422,-0.118,-0.1112,0.712,0.686,0.6966,0.7808,0.8186,0.8396,0.9256,0.9506,0.9616,0.9604,-0.7466,-0.0236,-0.6116,0.275,0.675,0.7944,0.8066,-0.2666,0.203,0.609,0.609,0.594,0.624,0.8196,0.7744,1,0.985,0.9098,0.8948,0.6692,0.8046,0.639,0.3834,0.579,0.6542,0.5188,0.594,0.579,0.7294,0.4436,0.4436,0.3082,0.3684,0.3684,0.3234,0.3984,0.3534,0.4286,0.2632,0.0828,0.339,0.5762,0.4068,-0.0848,-0.0678,-0.0338,0.305,0.7118,1,0.8644,0.7118,0.7458,0.661,0.4746,0.339,0.5084,0.339,0.339,0.2882,0.5762,0.5594,0.2372,0.017,0.1356,0.1016,-0.1016,-0.0338,-0.017,-0.0848,-0.1526,-0.1356,-0.4746,0.5666,0.85,0.0834,-0.2166,-0.35,-0.1334,-0.1334,-0.15,-0.15,0.7334,1,0.75,0.8834,0.4,0.1834,0.35,0.3,0.2,-0.0666,0.1834,0.3166,0.3,-0.1666,-0.2,-0.2666,-0.2166,-0.0834,-0.4834,-0.4334,-0.4166,-0.3834,-0.9,0.0434,-1,-1,1,-1,-1,-1,-0.7,-1,-0.6936,-0.4054,-0.063,-0.045,0.027,-0.1172,0.2072,0.045,0.1892,0.4774,1,0.946,0.946,0.928,0.7298,0.7658,0.7298,0.1532,0.2072,0.4414,0.2972,0.982,0.6936,0.2972,0.3334,0.027,0.009,-0.009,-0.4234,-0.2252,-0.063,-0.5316,'2'
0.002,0.8828,0.9232,0.7132,0.7172,0.1556,0.0788,-0.309,-0.4344,-0.5434,-0.5596,-0.2526,-0.1556,-0.297,-0.1112,-0.095,-0.0586,-0.1556,0.0424,0.3656,0.5112,0.3696,0.3454,0.4868,0.7334,0.9272,1,0.7576,0.3616,0.2848,0.3414,0.3172,0.0984,0.8426,0.8268,0.811,0.7402,0.3268,0.2402,-0.3938,-0.4724,-0.6338,-0.5118,-0.1378,-0.2874,-0.13,-0.256,-0.0512,-0.193,0.0158,-0.0552,0.2796,0.1456,0.4764,0.4606,0.7598,0.689,1,0.8188,0.8544,0.6614,0.5788,0.4646,0.6772,0.2098,1,0.9508,0.942,0.8124,0.3214,0.1562,-0.3884,-0.5758,-0.8304,-0.616,-0.3928,-0.2768,-0.0982,-0.1652,-0.0044,-0.1518,-0.0268,0.2232,0.308,0.2232,0.2858,0.5536,0.634,0.8794,0.9108,0.8258,0.8258,0.5358,0.5,0.5714,0.5134,0.2224,1,0.9506,0.9102,0.7752,0.209,0.0112,-0.5192,-0.6674,-0.7618,-0.627,-0.4382,-0.3258,-0.182,-0.2944,-0.1866,-0.2764,-0.182,0.0652,0.1236,0.0562,0.1506,0.6494,0.654,0.928,0.9192,0.8426,0.7932,0.5102,0.4382,0.4248,0.3034,0.0958,0.9954,1,0.7534,0.7078,0.0366,0.0182,-0.7124,-0.9498,-0.863,-0.7808,-0.5708,-0.6118,-0.5114,-0.5206,-0.178,-0.2054,-0.3288,-0.306,-0.1278,-0.0594,0.306,0.6028,0.8356,0.79,0.7168,0.7032,0.4338,0.306,0.1826,0.169,0.1918,-0.4406,0.8766,1,0.3656,0.348,0.0484,-0.3656,-0.4406,-0.696,-0.9384,-0.555,-0.4626,-0.392,-0.6608,-0.467,-0.37,-0.3172,-0.348,-0.1982,-0.1234,-0.1322,0.0704,0.5948,0.6036,0.37,0.5066,0.4494,0.445,0.2908,0.1718,0.0352,-0.0176,-0.9244,0.6134,1,0.8068,-0.0714,0.1386,-0.269,-0.2984,-0.2564,-0.542,-0.5294,-0.584,-0.4118,-0.4118,-0.5966,-0.3908,-0.5798,-0.5378,-0.1092,0.105,0.2184,0.4874,0.5924,0.3782,0.5756,0.6386,0.668,0.5462,0.3782,0.0336,0.168,0.1764,-0.2572,0.8858,1,0.4858,0.5428,-0.1428,-0.4858,-0.3714,-0.6,-0.6,-0.5428,-0.6572,-0.6572,-0.6572,-0.2,-0.1428,-0.2572,-0.0286,0.3714,0.4858,0.1428,-0.2572,-0.5428,0.3142,0.6572,0.9428,1,0.7142,-0.0286,0.2572,0.1428,-0.2572,0.0434,0.8696,0.8696,0.7826,0.7392,0.174,0.2608,-0.087,-0.2608,-0.5218,-0.5652,-0.087,0.087,0,0.087,0.0434,-0.1304,-0.3044,0.2608,0.3478,0.6956,0.7392,0.6522,0.6522,0.8696,1,0.9566,0.6522,0.174,-0.087,0.3044,0.4782,0.1294,0.8588,0.8352,0.8352,0.7412,0.3412,0.2236,-0.3176,-0.4118,-0.5764,-0.3882,-0.1294,-0.3412,-0.0352,-0.1764,-0.1058,-0.2706,0.0352,0.0824,0.247,0.3176,0.4824,0.3882,0.647,0.8352,1,0.9058,0.953,0.6,0.647,0.647,0.7648,-0.9548,-0.9406,-0.9416,-0.9428,-0.9372,-0.9526,-0.9494,-0.934,-0.9372,-0.912,-0.8448,0.726,0.5918,0.4522,0.3554,0.297,0.2222,0.109,-0.01,-0.054,-0.165,-0.264,-0.6172,-0.9494,-0.9692,-0.9702,-0.9724,-1,-1,-1,-1,-1,-1,-0.8434,-0.7024,-0.6706,-0.541,-0.4162,-0.135,-0.2934,-0.3134,-0.131,-0.4912,-0.661,0.785,0.93,0.7062,0.5478,0.4192,0.3538,0.2098,0.035,-0.0168,-0.0572,-0.1704,-0.566,-0.8176,-0.853,-0.8876,-0.9146,-1,-1,-1,-1,-1,-1,-0.3668,0.0532,0.4732,0.87,0.69,0.86,1,1,1,0.7832,0,-0.8516,-0.8916,-0.8886,-0.9086,-0.9876,-0.9426,-0.955,-0.98,-0.96,-0.9426,-0.9326,-0.8334,-0.1934,-0.2434,-0.4234,-0.66,-1,-1,-1,-1,-1,-1,1,1,-0.1142,-0.5714,-0.6858,-0.8286,-0.8858,-0.9142,-0.6286,1,1,1,-0.2858,-0.8572,-0.8572,-0.9428,-1,-0.9142,-0.8572,-0.6858,-0.6858,-0.7714,-0.3428,-0.2858,-0.6572,-0.8286,-0.4858,-1,-1,-1,-1,-1,-1,0.1022,0.1198,0.1318,0.1534,0.1588,0.1754,0.1782,0.1668,0.1148,0.0616,0.7048,0.781,0.8744,0.9204,0.9746,0.9768,1,1,1,0.9386,-0.7866,-0.1294,-0.759,0.0562,0.9722,0.9636,0.9836,-0.1834,-0.4452,-0.1306,-0.0304,0.1212,0.1632,0.2518,0.2098,0.8578,0.8764,0.6924,0.6248,0.5222,0.4126,0.669,0.5548,0.5128,0.6666,0.6806,0.6386,0.7552,0.725,0.8298,0.9628,1,0.7762,0.9814,0.9488,0.7902,0.296,0.2424,0.2214,-0.1656,-0.852,-0.635,-0.2784,-0.2888,-0.2388,-0.1532,-0.2262,0.3388,0.439,0.3702,0.3994,0.5392,0.585,0.6768,0.7142,0.608,0.6142,0.8832,0.9688,0.781,0.7352,0.9186,0.758,0.7018,0.7998,0.9082,0.9834,1,0.6184,0.3618,0.2784,-0.0282,-0.534,-0.0918,-0.078,-0.2222,-0.1728,-0.1174,-0.0662,0.1096,0.4866,0.536,0.4532,0.3938,0.5598,0.6288,0.6248,0.546,0.5064,0.8362,1,0.773,0.688,0.767,0.8382,0.8894,0.8756,0.927,0.9882,0.8716,0.6406,0.301,0.1826,-0.234,-0.8118,-1,1,-1,-1,-1,-0.8,1,-1,-0.2048,0.0844,-0.1326,0.1084,0.0964,-0.012,0,0.0722,0.253,0.5302,1,0.9638,0.9278,0.9518,0.482,0.3012,0.5302,0.1686,0.1204,0.229,0.0964,0.3132,0.229,0.3374,0.024,0,-0.1686,-0.012,-0.1204,0,0.0362,-0.1326,'3'
0.1346,0.9904,1,0.774,0.7116,0.1682,0.101,-0.4278,-0.476,-0.3846,-0.4616,-0.2068,-0.3124,-0.1154,-0.3414,-0.274,-0.3414,-0.1826,-0.0914,0.2884,0.5288,0.8318,0.7356,0.6876,0.6924,0.9326,0.9086,0.8028,0.476,0.2308,0.0722,0.202,0.0944,0.7736,0.7358,0.7946,0.6898,0.2578,0.107,-0.5766,-0.585,-0.3626,-0.4716,-0.283,-0.3962,-0.2536,-0.1992,-0.0776,-0.3082,-0.2076,-0.3292,-0.2536,0.2368,0.3878,0.7778,0.8238,0.8868,0.8784,1,0.9916,0.6268,0.5682,0.371,0.2956,0.0886,0.7806,0.7216,0.8396,0.6836,0.1772,-0.0548,-0.6414,-0.633,-0.5316,-0.6034,-0.5358,-0.346,-0.2954,-0.1518,-0.1604,-0.1772,-0.211,-0.1984,-0.3038,-0.0422,0.422,0.7342,0.6456,0.7848,0.8524,1,0.73,0.8228,0.5358,0.5864,0.4978,0.1324,0.8482,0.783,0.8742,0.7094,0.154,-0.0932,-0.7658,-0.7354,-0.64,-0.6052,-0.5402,-0.2582,-0.2408,-0.0672,-0.102,-0.1496,-0.2278,-0.0412,-0.219,0.1626,0.3362,0.5792,0.8264,1,0.8656,1,0.6702,0.7788,0.5662,0.5922,0.514,0.191,1,0.9776,0.9146,0.8158,0.245,0.1012,-0.7528,-0.8338,-0.6044,-0.7304,-0.3708,-0.3842,-0.1012,-0.2674,-0.236,-0.3662,-0.1776,-0.191,0.0382,0.173,0.3574,0.7798,0.9102,0.7842,0.7932,0.7888,0.7888,0.5596,0.5102,0.5056,0.4966,-0.052,0.9504,1,0.553,0.5802,-0.2416,-0.3138,-0.6976,-0.6344,-0.8466,-0.6524,-0.4356,-0.2732,-0.4176,-0.2054,-0.359,-0.4176,-0.395,-0.1242,-0.237,-0.0474,0.1828,0.4944,0.7246,0.7426,0.7336,0.6118,0.4854,0.2144,0.3454,0.2144,0.1286,-0.4108,0.866,1,0.3794,0.067,-0.2142,-0.1518,-0.2768,-0.4598,-0.4508,-0.5892,-0.5358,-0.5044,-0.3482,-0.3706,-0.4508,-0.4956,-0.5268,-0.2902,-0.241,0.1428,0.3794,0.5044,0.6696,0.509,0.6964,0.692,0.2322,0.1964,0.0044,-0.0714,-0.0848,0.1818,0.9546,1,0.5454,0.4546,-0.091,-0.2728,-0.2272,-0.4546,-0.3182,-0.3636,-0.2272,-0.1818,-0.1364,-0.4546,-0.1818,-0.1818,-0.1818,0.409,0.4546,0.3636,0.5454,0.409,0.0454,0.5,0.7272,0.8182,0.2728,-0.1364,-0.0454,-0.1818,-0.091,0.2094,0.9534,0.9534,0.814,0.7674,0.2094,0.2094,-0.4418,-0.2094,-0.3024,-0.2558,0.0232,0.0232,-0.1162,-0.3954,-0.907,-0.3488,0.1628,0.3024,0.5814,0.814,1,0.907,0.6744,0.5814,0.6744,0.628,0.5348,0.6744,0.4884,0.628,0.721,-0.0124,0.679,0.6296,0.7284,0.5802,0.1112,-0.0124,-0.5556,-0.7038,-0.5308,-0.3828,-0.284,-0.5802,-0.432,-0.3334,-0.2592,-0.2592,-0.2346,-0.7284,-0.4814,-0.3334,0.2098,0.753,0.679,0.8518,0.7778,1,0.9012,0.6544,0.5062,0.5556,0.4074,-0.9196,-0.9334,-0.923,-0.9368,-0.9218,-0.9506,-0.9276,-0.9356,-0.9264,-0.9368,-0.885,0.7126,0.8034,0.7426,0.6126,0.5586,0.4954,0.3758,0.284,0.1666,0.1564,-0.0368,-0.7092,-0.9426,-0.9724,-0.977,-0.9678,-1,-1,-1,-1,-1,-1,-0.6642,-0.4556,0.0512,0.3184,0.29,-0.1016,-0.0594,-0.0046,-0.2398,-0.4684,-0.7584,0.6148,0.967,0.947,0.699,0.6724,0.592,0.4272,0.3166,0.1236,0.0632,-0.097,-0.6742,-0.8628,-0.8546,-0.8756,-0.9066,-1,-1,-1,-1,-1,-1,0.3132,1,1,1,1,1,1,1,1,1,0.2132,-0.8172,-0.8916,-0.943,-0.9116,-0.883,-0.8944,-0.9076,-0.93,-0.9826,-0.9876,-0.975,-0.8434,-0.3868,-0.25,-0.2968,-0.5468,-1,-1,-1,-1,-1,-1,1,0.2286,-0.4,-0.6572,-0.8572,-1,-0.9428,-0.8286,-0.3142,1,1,1,0.2,-0.7714,-0.9142,-1,-1,-0.8858,-0.8572,-0.8572,-0.8858,-0.5714,-0.5142,-0.6,-0.8572,-0.8,-0.2858,-1,-1,-1,-1,-1,-1,-0.1422,-0.1204,-0.0884,-0.055,-0.0428,-0.0092,0.0134,0.0226,-0.0164,-0.0584,0.7784,0.7906,0.8026,0.8406,0.8984,0.905,0.953,1,1,1,-0.7734,-0.153,-0.7804,-0.2544,0.8418,0.9066,0.9606,-0.2666,-0.5878,-0.2844,-0.1928,-0.1354,0.0478,-0.0554,0.0306,0.4924,0.5324,0.4236,0.3816,0.3988,0.477,0.5076,0.4904,0.4352,0.4026,0.7386,0.7386,0.5744,0.6946,0.769,0.8436,1,0.855,0.7672,0.8034,0.6718,0.3492,0.271,0.166,-0.1394,-0.9112,-0.6552,-0.518,-0.344,-0.3656,-0.2502,-0.2352,-0.0076,-0.0042,-0.0426,0.041,0.1482,0.2804,0.3004,0.1916,0.2318,0.272,0.3372,0.5314,0.4678,0.5062,0.61,0.6804,0.8344,0.8846,1,1,0.9682,0.6066,0.5732,0.4946,0.18,-0.6176,-0.293,-0.2912,-0.3202,-0.349,-0.2714,-0.2372,0.1,0.2786,0.3652,0.1704,0.0928,0.468,0.5456,0.3868,0.2822,0.2606,0.4626,0.5708,0.542,0.6736,0.7512,0.8232,0.7872,0.8412,0.8576,1,0.8594,0.5384,0.412,0.2894,0.156,-0.795,-1,1,-1,-1,-1,-1,1,-1,-0.5038,-0.3024,-0.0232,-0.0232,-0.2094,-0.1938,-0.0388,-0.0698,0.0852,0.752,0.8294,0.6124,0.876,1,0.4264,0.5038,0.5504,0.2094,0.1472,0.3178,0.1628,0.3488,0.2558,0.3798,-0.0078,-0.1938,-0.2714,-0.3334,-0.5038,-0.2714,-0.3178,-0.5814,'3'
0.1626,1,0.9732,0.706,0.5768,-0.069,-0.2606,-0.4388,-0.568,-0.4522,-0.715,-0.6614,-0.706,-0.6614,-0.5056,-0.5858,-0.7594,-0.6436,-0.2918,-0.0868,0.47,0.5858,0.7728,0.6482,0.5278,0.4032,0.6614,0.4788,0.5368,0.118,0.1092,0.2428,0.0906,0.7914,0.7204,0.7678,0.5906,-0.1024,-0.378,-0.4686,-0.7678,-0.6732,-0.63,-0.5906,-0.5158,-0.5394,-0.6418,-0.7008,-0.7716,-0.5708,-0.3228,0.0158,0.2756,0.7756,1,0.7284,0.7008,0.5434,0.6142,0.2638,0.0314,0.3662,0.3228,0.4922,0.214,1,0.8838,0.9906,0.721,-0.2372,-0.5116,-0.4046,-0.6418,-0.6604,-0.7256,-0.772,-0.5906,-0.7534,-0.7906,-0.8652,-0.7814,-0.3628,-0.2232,0.1348,0.1768,0.9348,0.8838,0.7954,0.6838,0.5024,0.5116,0.7814,0.4884,0.6604,0.4976,0.5814,0.113,0.82,0.728,0.8076,0.5858,-0.1506,-0.4854,-0.6026,-0.7448,-0.7072,-0.6904,-0.7112,-0.502,-0.6276,-0.477,-0.5606,-0.5774,-0.6276,-0.5858,0.0334,0.1256,0.7698,0.7908,1,0.9206,0.7406,0.6108,0.3054,0.1338,0.2092,0.1716,0.3348,0.1848,0.9532,0.8896,0.8854,0.7282,0.0106,-0.223,-0.6306,-0.792,-0.8598,-0.7368,-0.639,-0.3504,-0.3122,-0.431,-0.3674,-0.4394,-0.465,-0.4522,-0.346,-0.0488,0.5542,0.8938,0.9746,1,0.9024,0.949,0.6008,0.5372,0.1464,0.0192,-0.1252,0.002,0.9758,1,0.4808,0.493,-0.2998,-0.2878,-0.5936,-0.6298,-0.6498,-0.7948,-0.5856,-0.4768,-0.4728,-0.4568,-0.5614,-0.4246,-0.4286,-0.4648,-0.2194,0.155,0.5694,0.831,0.8068,0.67,0.6942,0.678,0.348,0.1428,0.1308,-0.0182,0.0906,-0.7546,0.8004,1,0.5884,0.0396,-0.0728,-0.2308,-0.1892,-0.6674,-0.5884,-0.659,-0.659,-0.6716,-0.58,-0.5468,-0.6216,-0.5634,-0.5426,-0.4262,-0.239,-0.0602,0.2058,0.4012,0.5676,0.393,0.3514,0.264,0.1434,-0.0728,-0.185,-0.2266,-0.1226,0.1708,1,1,0.6098,0.2682,-0.0732,-0.1708,-0.2682,-0.122,-0.122,-0.1708,-0.122,-0.122,-0.4146,-0.317,-0.8536,-0.2196,-0.122,-0.1708,0.1708,0.317,0.561,0.2682,0.4146,0.2196,0.3658,0.6098,0.8048,0.9024,0.2682,0.3658,0.2682,0.347,0.9592,1,0.6734,0.6326,0.1836,0.1428,0.0612,-0.0612,-0.3062,-0.4286,-0.6326,-0.3062,-0.3878,-0.0612,-0.0612,-0.1428,-0.1836,0.102,0.0204,0.4694,0.4694,0.551,0.347,0.551,0.5102,0.7552,0.7142,0.5918,0.4286,0.3062,0.2654,0.0724,0.7972,0.6812,0.7972,0.5652,-0.2754,-0.5072,-0.5362,-0.913,-0.855,-0.6232,-0.7102,-0.5942,-0.6232,-0.3914,-0.5652,-0.4782,-0.6812,-0.7682,0.0724,0.1304,0.7972,0.7682,1,0.913,0.7682,0.6522,0.2754,0.1014,0.2464,0.1594,0.2174,-1,-1,-1,-1,-1,-1,-1,-0.9776,-0.9798,-0.8934,-0.6486,0.7314,0.7218,0.6426,0.6686,0.723,0.626,0.4414,0.2746,0.2082,0.3172,-0.0782,-0.6828,-0.9456,-0.9538,-0.968,-0.9656,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9586,-0.9564,-0.1114,-0.1384,0.689,0.9544,0.8838,0.775,0.7958,0.8206,0.6444,0.408,0.3064,0.2898,-0.0824,-0.5832,-0.8518,-0.8392,-0.8912,-0.9326,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.9,-0.62,-0.05,-0.8,-0.875,-0.8326,-0.8826,-0.8776,-0.8726,-0.88,-0.9026,-0.88,-0.92,-0.9046,-0.5934,-0.18,-0.19,-0.3668,-0.6934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,1,-0.6286,-0.8858,-0.9142,-1,-0.6,-0.7142,-0.9428,-0.8286,-0.7142,-0.7428,-0.4286,-0.5428,-0.5428,-0.4286,0.1428,-1,-1,-1,-1,-1,-1,-0.2766,-0.269,-0.2464,-0.2254,-0.1914,-0.1984,-0.186,-0.2292,-0.2254,-0.1836,0.8,0.8368,0.8522,0.8562,0.8972,0.937,0.933,0.9308,0.9632,0.9582,-0.7466,-0.047,-0.3106,-0.073,0.8776,0.8538,0.9472,1,-0.3908,-0.0464,0.1126,0.1524,0.245,0.1788,0.245,0.2582,0.1788,0.6556,0.6954,0.4834,0.788,0.6954,0.6556,0.7218,0.7218,0.9338,0.8676,1,0.8278,0.7218,0.788,0.5496,0.5364,0.5894,0.6424,0.6292,0.3378,0.298,0.1126,-0.4834,-0.0858,0.3286,0.2286,-0.1858,-0.0858,-0.0428,-0.1286,-0.1714,-0.1286,0.3572,0.8,0.6142,0.5286,0.9286,0.6858,0.6142,0.6858,1,0.9572,0.7,0.7,0.5142,0.5142,0.5,0.5428,0.5428,0.3572,0.4714,0.2428,0.2858,0.2286,-0.1142,0.1532,0.343,-0.2262,-0.124,-0.1532,-0.1678,-0.0948,-0.0802,-0.051,0.0656,0.708,0.6934,0.4014,0.9416,1,0.3722,0.6058,0.489,0.3722,0.781,0.6204,0.6788,0.197,0.1532,0.2262,0.2992,0.4014,0.2554,0.1094,-0.0072,0.0072,-0.124,1,-1,-1,1,-1,-1,-0.8,-0.7,-1,-0.4774,-0.2612,-0.1352,-0.2432,-0.1352,0.081,-0.1172,0.045,0.1172,1,0.928,0.7478,0.8198,0.6216,0.3334,0.3874,0.4414,-0.045,0.1712,0.3874,0.4414,0.1352,0.009,0.4594,0.4414,-0.063,-0.063,-0.2432,-0.3694,-0.3334,-0.4054,-0.946,'4'
0.1888,1,0.9602,0.7534,0.5706,0.1372,-0.0418,-0.4076,-0.5826,-0.4314,-0.515,-0.3916,-0.3678,-0.4036,-0.2088,-0.1968,-0.2406,-0.2564,-0.2008,-0.2008,0.1968,0.4832,0.5666,0.4314,0.499,0.7574,0.7654,0.9522,0.9244,0.7216,0.658,0.7138,0.157,0.8846,0.7852,0.8808,0.65,0.1968,-0.1928,-0.4434,-0.7972,-0.7296,-0.7256,-0.7496,-0.3042,-0.3956,-0.1212,-0.2922,-0.2286,-0.2446,-0.0458,0.0934,0.2128,0.6064,0.654,0.8966,0.8768,0.34,0.5268,1,0.845,0.7376,0.5984,0.8092,0.0282,0.6074,0.5374,0.6006,0.3844,0.015,-0.4176,-0.3478,-0.7504,-0.7504,-0.8302,-0.8236,-0.4742,-0.584,-0.371,-0.4742,-0.3078,-0.3144,-0.258,0.1214,0.1114,0.4876,0.594,1,0.8602,0.6074,0.564,0.7004,0.4342,0.4942,0.4144,0.4242,-0.0434,0.528,0.435,0.528,0.329,-0.0176,-0.4158,-0.3644,-0.65,-0.6662,-0.9166,-0.7784,-0.4638,-0.5794,-0.419,-0.4446,-0.3354,-0.3098,-0.2584,0.0914,0.0722,0.4382,0.7078,1,0.8362,0.541,0.5634,0.663,0.4254,0.4736,0.4028,0.3868,0.0054,0.666,0.5656,0.6912,0.4794,0.0952,-0.2926,-0.2746,-0.5728,-0.5656,-0.7486,-0.781,-0.5728,-0.6768,-0.4722,-0.6552,-0.4794,-0.447,-0.2854,-0.0126,0.0556,0.4362,0.5332,1,0.9354,0.702,0.6768,0.8744,0.72,0.605,0.605,0.7056,0.081,0.8784,0.8716,0.571,0.5304,0.1386,0.081,-0.4594,-0.6452,-0.5642,-0.6892,-0.6892,-0.5506,-0.5034,-0.5406,-0.6452,-0.5304,-0.3378,-0.206,0.071,0.4088,0.5034,0.8244,0.9696,1,0.973,0.8682,0.821,0.7398,0.6858,0.5202,0.5202,-0.628,0.8294,1,0.512,-0.1024,-0.355,-0.355,-0.3584,-0.7064,-0.802,-0.6518,-0.6076,-0.645,-0.6928,-0.645,-0.6348,-0.611,-0.5358,-0.2252,0.0238,0.041,0.5358,0.7474,0.7236,0.7236,0.6006,0.5598,0.4948,0.372,0.3754,0.1946,0.355,0.2222,1,1,0.3888,0.2222,-0.1112,-0.2222,-0.5,-0.4444,-0.2778,-0.1666,-0.0556,-0.3334,-0.2222,-0.0556,-0.2778,-0.2778,0,-0.2222,-0.3334,0.3888,0.6112,0.5,0.1666,0.4444,0.6112,0.4444,0.6112,0.6112,0.3888,0.2222,0.5556,0.2,1,1,0.8858,0.6,0.1428,0.0286,-0.3142,-0.4858,-0.6572,-0.5428,-0.3714,-0.8286,-0.6572,-0.8286,-0.3142,-0.3714,-0.2,-0.1428,0.1428,0.4286,0.6572,0.5428,0.3142,0.4286,0.6572,0.8858,0.9428,0.6572,0.7714,0.6,0.6572,0.24,0.76,0.66,0.78,0.58,0.36,-0.04,0.08,-0.16,-0.2,-0.4,-0.5,-0.3,-0.3,-0.1,-0.3,-0.1,0.1,0.14,0.24,0.28,0.74,0.72,1,0.86,1,0.72,0.92,0.78,0.86,0.8,0.8,-1,-1,-1,-1,-1,-1,-1,-0.9874,-0.9864,-0.9432,-0.8194,0.6336,0.4946,0.4584,0.334,0.25,0.3078,0.2446,0.158,0.1562,0.2536,0.027,-0.7906,-0.9486,-0.9566,-0.9638,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9708,-0.9676,-0.579,-0.1538,0.74,0.8404,0.7458,0.6454,0.6388,0.7514,0.7182,0.5546,0.5028,0.438,0.1214,-0.698,-0.8388,-0.809,-0.8332,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.98,-0.78,0.26,-0.8468,-0.8378,-0.8712,-0.7978,-0.72,-0.7712,-0.8312,-0.7868,-0.8468,-0.9512,-0.9712,-0.51,-0.16,-0.1268,-0.05,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3142,0.6858,1,1,1,-0.4858,-0.9428,-0.9428,-1,-1,-0.9142,-0.9428,-0.8572,-0.6286,-0.3428,-0.3142,-0.6,-0.8572,-0.6286,-1,-1,-1,-1,-1,-1,-1,-0.092,-0.0962,-0.078,-0.0712,-0.0618,-0.0506,-0.054,-0.0698,-0.0556,-0.024,0.8704,0.9418,0.916,0.9154,0.8736,0.8886,0.9068,0.9462,1,1,-0.7334,0.047,-0.2008,-0.166,0.9724,0.8882,0.8632,1,-0.5208,-0.0834,0.1042,0.1458,0.2084,0.3124,0.3124,0.2708,0.4792,0.5208,0.4792,0.4792,0.6876,0.6458,0.625,0.7292,0.8542,0.8958,1,1,0.9792,0.9376,0.8124,0.6458,0.7292,0.5,0.5208,0.5416,0.375,0.3124,0.1458,-0.625,-0.4388,-0.0936,-0.108,0.0648,-0.036,-0.1942,-0.3956,-0.0216,0.3238,0.7698,0.6978,0.2086,0.669,0.741,0.6116,0.6402,1,0.9856,0.9568,0.8848,0.8992,0.8848,0.9424,0.6546,0.813,0.669,0.5828,0.8562,0.813,0.7266,0.3956,0.1224,-0.132,0.4528,0.2264,0.151,-0.2264,0.0188,-0.0754,0.1886,0.1698,0.4716,0.4716,0.566,0.7736,0.8114,0.7358,0.8868,0.717,0.9434,0.6792,0.9434,0.9434,1,0.6604,0.6416,0.3396,0.4716,0.5284,0.3962,0.4906,0.415,0.5472,0.3208,1,-1,-1,1,-1,-1,-1,-0.7334,-1,-0.4722,-0.5834,-0.2362,0.0834,0.0834,-0.1528,0.0416,0.0556,0.2362,1,1,0.5138,0.6112,0.8472,0.5556,0.5972,0.5,0.1806,0.2638,0.2084,0.5278,0.5,0.0556,0.0834,0.2222,0.0972,-0.0416,0.0138,-0.2222,-0.0416,-0.1666,-0.4722,'4'
0.0616,0.7376,0.658,0.7336,0.5188,0.0854,-0.2326,-0.4116,-0.8568,-0.8568,-0.7256,-0.682,-0.2684,-0.332,-0.34,-0.4394,-0.2366,-0.4274,-0.34,-0.2326,0.0696,0.5268,0.8012,1,0.984,0.8808,0.8688,0.9244,0.825,0.5626,0.503,0.4036,0.1094,0.7262,0.635,0.6788,0.4782,0.1022,-0.2408,-0.5912,-0.7336,-0.7008,-0.6314,-0.6606,-0.4964,-0.562,-0.2664,-0.3906,-0.2446,-0.3868,-0.27,0.1862,0.2372,0.3248,0.77,1,0.9416,0.6898,0.7554,0.8248,0.646,0.3868,0.3138,0.3322,-0.019,0.603,0.5076,0.5648,0.3436,0,-0.4236,-0.458,-0.6604,-0.6564,-0.855,-0.9274,-0.8778,-0.7938,-0.6106,-0.6832,-0.5802,-0.7252,-0.645,0.0726,0.0802,0.3854,0.5726,1,0.8664,0.6642,0.7176,0.9312,0.5114,0.3778,0.2824,0.252,0.1208,0.8374,0.7458,0.7792,0.5708,0.0792,-0.2708,-0.2458,-0.6,-0.5334,-0.8166,-0.825,-0.6958,-0.6958,-0.6124,-0.6834,-0.6876,-0.5916,-0.3334,-0.2876,-0.0792,0.4792,0.6584,0.9416,1,0.8626,0.9458,0.7708,0.8166,0.5542,0.525,0.5376,0.2086,1,0.9686,0.8386,0.748,0.2598,0.1378,-0.1142,-0.2678,-0.4056,-0.559,-0.4724,-0.4488,-0.3464,-0.504,-0.3504,-0.4016,-0.311,-0.2638,-0.1062,0.1536,0.3228,0.689,0.7796,0.8898,0.9566,0.8504,0.7952,0.6456,0.563,0.5906,0.5354,-0.1934,0.9256,1,0.2936,0.394,-0.171,-0.2194,-0.6022,-0.5168,-0.6618,-0.6356,-0.658,-0.5018,-0.5092,-0.5836,-0.591,-0.4832,-0.5576,-0.2304,-0.0408,0.1264,0.6208,0.8364,0.8066,0.8104,0.8438,0.8252,0.6914,0.409,0.3308,0.3494,0.3198,-0.8448,0.7798,1,0.657,0.3682,0.3574,-0.1516,0.047,-0.2382,-0.3898,-0.4044,-0.4008,-0.3502,-0.5342,-0.473,-0.4296,-0.296,-0.2744,0.1192,0.592,0.7762,0.7184,0.6318,0.538,0.7436,0.9676,0.8086,0.6028,0.462,0.1336,0.2346,0.3032,0.1162,0.721,0.628,0.7674,0.628,0.2558,0.0232,-0.2094,-0.4418,-0.4884,-0.4418,-0.3954,-0.1162,-0.0232,-0.1162,-0.1162,-0.0698,-0.0698,-0.0698,0.0698,0.4418,0.1162,0.7674,1,0.9534,0.5814,0.7674,0.8604,0.814,0.1162,0.721,0.628,0.1304,0.6956,0.6956,0.6956,0.5218,0.2174,-0.2608,-0.174,-0.5218,-0.4782,-0.6956,-0.5218,-0.2174,-0.3044,-0.0434,-0.1304,0,-0.174,0.087,-0.174,0.0434,0.4782,0.6522,0.7392,0.8696,1,1,0.9566,0.913,0.7392,0.6522,0.4348,0.091,0.659,0.591,0.6136,0.3864,0.159,-0.341,-0.3182,-0.4772,-0.4772,-0.6818,-0.7954,-0.5,-0.5228,-0.5454,-0.4546,-0.6364,-0.75,-0.591,0.1364,0.1136,0.341,0.7046,0.9318,0.841,0.909,0.8864,1,0.5,0.5454,0.4546,0.341,-1,-1,-1,-1,-1,-1,-1,-1,-0.9826,-0.9826,-0.1434,0.5554,0.61,0.6994,0.5868,0.3848,0.3732,0.2908,0.2896,0.3662,0.3476,-0.0552,-0.6958,-0.9164,-0.9188,-0.8944,-0.9362,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9628,-0.962,0.0748,0.7116,0.8792,0.94,0.94,0.5906,0.5954,0.3994,0.365,0.3564,0.4316,0.0204,-0.5374,-0.702,-0.7678,-0.782,-0.8154,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.9934,-0.7,-0.885,-0.83,-0.78,-0.7126,-0.8126,-0.8476,-0.9134,-0.9868,-0.989,-0.9468,-0.9334,-0.4168,-0.06,-0.0768,-0.2,-0.36,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,-1,-0.9428,-0.9142,-0.7428,-1,-1,-1,-0.8,-0.5142,-0.3714,-0.2286,-0.2858,-0.7142,-0.7142,-0.0858,-1,-1,-1,-1,-1,-1,-0.0126,-0.0224,-0.023,-0.0284,-0.0278,-0.0378,-0.0696,-0.0906,-0.063,0.0298,1,1,1,1,1,1,1,1,1,1,-0.76,-0.0236,0.4954,0.84,0.603,0.7468,0.8068,1,-0.12,0,-0.16,0.12,0.12,0.08,0.08,0,-0.12,0.48,0.8,0.96,0.96,0.84,0.72,0.88,1,1,1,0.84,0.6,0.52,0.44,0.04,-0.04,-0.04,-0.2,-0.16,0.08,-0.12,-0.08,-0.32,0.2632,0.3984,0.3384,-0.0376,-0.0526,-0.0076,0.0526,-0.0076,-0.0676,0.233,0.564,1,0.9548,0.5488,0.579,0.564,0.6542,0.8948,0.8646,0.5038,0.3834,0.3534,0.4888,0.233,-0.218,-0.3534,-0.5338,-0.2782,0.0226,0.2632,0.218,-0.5338,0.7414,1,0.8448,0.2932,0.138,-0.1206,0.0518,0.0862,-0.0344,0.3104,0.4656,0.9656,1,0.9482,0.8794,0.8104,0.8104,0.7932,0.862,0.7242,0.5518,0.4828,0.4828,0.2758,-0.2586,-0.138,-0.1034,-0.1552,-0.0862,0.3966,0.2932,-0.1206,1,-1,-1,1,-1,-1,-0.6,-0.8334,-1,-0.6568,-0.0896,-0.1344,0.0448,0.0448,0.1194,0.209,0.0896,0.6418,0.791,0.8508,0.3732,1,0.9254,0.7014,0.5672,0.5224,0.2538,0.2986,0.2388,0.3582,0.4328,0.4626,0.4626,0.2538,0.0896,-0.0298,-0.0598,0.0598,0.2538,0.0896,-0.1642,'5'
0.0824,0.9882,1,0.6784,0.4784,-0.0902,-0.3254,-0.298,-0.4392,-0.804,-0.596,-0.3608,-0.4666,-0.3922,-0.4432,-0.3882,-0.5764,-0.6118,-0.6,-0.4392,-0.3844,0.1098,0.5098,0.6196,0.6,0.6862,0.6902,0.698,0.6196,0.655,0.4862,0.4196,0.124,0.829,0.7486,0.6964,0.4974,-0.0436,-0.3404,-0.6544,-0.9406,-0.8534,-0.7102,-0.6964,-0.48,-0.5288,-0.5044,-0.5428,-0.5602,-0.6928,-0.6894,-0.6788,-0.5114,0.2322,0.3856,0.9406,1,0.801,0.7766,0.9302,0.8674,0.7418,0.6336,0.5044,0.2702,0.9764,0.8462,0.925,0.6016,0.1204,-0.3964,-0.3768,-0.7358,-0.8462,-0.7988,-0.7594,-0.574,-0.4636,-0.353,-0.2938,-0.2978,-0.286,-0.2308,-0.0138,0.0966,0.2308,0.6646,0.8264,0.9764,1,0.9802,0.8778,0.933,0.7752,0.6568,0.574,0.077,0.6684,0.5316,0.6924,0.347,-0.029,-0.3162,-0.371,-0.576,-0.7264,-0.7676,-0.7402,-0.73,-0.73,-0.7368,-0.6752,-0.7334,-0.5624,-0.2616,-0.118,0.217,0.2752,0.812,0.7676,1,0.8018,0.9282,0.8598,0.9248,0.7504,0.7128,0.6548,0.05,0.6802,0.6026,0.6672,0.4636,0.0146,-0.3764,-0.37,-0.6414,-0.5962,-0.9774,-0.8676,-0.7092,-0.706,-0.5638,-0.6382,-0.525,-0.412,-0.2536,-0.1212,0.0436,0.4022,0.748,1,0.971,0.7448,0.8772,0.8998,0.8126,0.693,0.5864,0.5962,-0.0774,0.7492,0.7648,0.517,0.5108,0,0.0124,-0.3374,-0.3312,-0.678,-0.709,-0.6532,-0.5758,-0.6254,-0.6346,-0.5386,-0.616,-0.3778,-0.1176,0.0402,0.161,0.452,0.8916,1,0.7554,0.6688,0.8576,0.966,0.7524,0.4736,0.4552,0.647,-0.7398,0.8082,1,0.6162,0.1804,0.109,-0.148,-0.0178,-0.3268,-0.496,-0.4764,-0.6552,-0.4992,-0.4406,-0.4146,-0.317,-0.304,-0.0276,0.2196,0.6098,0.8178,0.717,0.7626,0.6976,0.7658,0.7788,0.717,0.457,0.3822,0.2748,0.2422,0.3692,-0.2122,0.8788,1,0.4546,-0.2728,-0.091,-0.2122,-0.2122,-0.394,-0.5152,-0.1516,-0.091,-0.3334,-0.1516,-0.1516,-0.2728,-0.2728,-0.5758,-0.3334,-0.5152,-0.6364,-0.1516,0.2728,0.394,-0.2122,-0.0304,0.3334,0.2728,-0.091,0.1516,0.0304,0.0304,0.2654,0.9592,1,0.796,0.5918,-0.0204,-0.0204,-0.0204,-0.0204,-0.5918,-0.3878,0.0204,-0.0204,-0.0612,0.0204,-0.0612,-0.4286,-0.1836,0.0204,0.0204,-0.1836,0.1836,0.5918,0.5918,0.3062,0.4694,0.3878,0.6326,0.7552,0.6326,0.796,0.7142,0.3044,1,0.913,0.942,0.6232,0.1594,-0.3624,-0.3914,-0.6522,-0.826,-0.6812,-0.7102,-0.4202,-0.3334,-0.3334,-0.3334,-0.4492,-0.1304,-0.2754,0.1014,0.1304,0.3334,0.7972,0.913,0.5652,0.6522,0.4492,0.4782,0.7392,0.6232,0.5652,0.6812,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9786,-0.9674,0.5332,0.454,0.5456,0.4784,0.2486,0.1174,0.1988,0.268,0.2242,0.3656,0.2222,-0.7326,-0.9462,-0.9472,-0.9472,-0.9644,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.9448,0.5448,0.6472,0.8048,0.6686,0.4896,0.47,0.5876,0.7132,0.5616,0.5974,0.4592,-0.6116,-0.738,-0.7808,-0.821,-0.8994,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.8868,-0.8712,-0.8712,-0.8556,-0.9068,-0.86,-0.8668,-0.772,-0.828,-0.842,-0.9,-0.922,-0.54,-0.08,-0.11,-0.2968,-0.56,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6572,1,1,-0.6286,-0.7428,-0.7714,-0.6858,-1,-0.8858,-1,-0.8572,-0.6858,0.0286,-0.2,-0.3142,-0.4858,-0.3428,-0.4,-1,-1,-1,-1,-1,-1,-0.1374,-0.1446,-0.1314,-0.1416,-0.145,-0.1736,-0.1842,-0.2276,-0.2152,-0.0748,0.8486,0.8496,0.8752,0.8826,0.8756,0.9154,1,1,1,1,-0.7066,0.1058,-0.9528,-0.4146,0.9742,0.6142,0.5278,0.2416,0.0428,0.2478,0.5898,0.7094,0.5726,0.5726,0.5898,0.7948,1,0.5042,0.5384,0.4872,0.7948,0.5898,0.3676,0.3334,0.1624,0.6582,0.453,0.3846,0.5556,0.5726,0.6068,0.7436,0.282,0.7436,0.5726,0.6752,0.3504,0.5898,-0.077,-0.282,0.1594,0.2174,0.5362,0.6522,0.4928,0.4058,0.4638,1,0.9566,0.5072,0.8986,0.6666,0.8116,0.4492,0.7536,0.8696,0.913,0.7682,0.4638,0.5362,0.3188,0.3188,0.5942,0.5652,0.6666,0.3768,0.5362,0.3044,0.1884,0.0434,0.174,-0.3188,-0.1152,-0.091,-0.0424,0.3576,0.1758,0.2242,0.394,0.1758,0.5152,0.3576,0.5516,0.8182,0.9152,0.806,0.6848,0.794,0.6242,1,0.709,0.5758,0.4666,0.2728,0.406,0.6242,0.3818,0.4182,0.4546,0.1636,0.0788,0.406,0.3212,-0.1516,-0.984,1,-1,-1,-1,-1,-0.8,-1,-1,-0.4706,-0.2058,0.147,0.0736,0.1912,0.0588,0.3088,0.1764,0.75,0.9706,0.9852,0.6912,1,0.9558,0.8236,0.5442,0.5588,0.0588,0.3382,0.3382,0.397,0.4412,0.2942,0.2942,0.2058,-0.0148,0.2794,0.1324,-0.2352,-0.2352,0.103,-0.0294,'5'
0.0956,0.8426,0.7978,0.8202,0.7304,1,0.8426,0.6742,0.4326,0.0898,-0.028,-0.0562,-0.1574,0.0168,0.2304,0.3034,0.6348,0.5168,0.354,0.3932,0.2416,0.2808,0.3034,0.2022,0.2472,0.191,0.1292,0.0674,-0.0112,-0.2472,-0.1854,-0.118,-0.0128,0.599,0.5168,0.635,0.779,0.964,0.8766,1,0.5784,0.4088,0.0592,0.0694,-0.0952,0.1106,0.491,0.6092,0.8304,0.6246,0.2134,0.239,0.2956,0.1312,0.162,0.347,0.3264,0.5064,0.4036,0.1208,-0.0488,-0.0386,-0.0078,0.0128,-0.1034,0.4434,0.3546,0.4778,0.6354,0.7734,0.936,1,0.4384,0.3498,0.128,0.0296,-0.2808,0.3252,0.4926,0.6552,0.739,0.2316,0.1134,-0.0148,-0.064,0.2512,0.1674,0.3596,0.1922,0.33,0.0296,0.0986,-0.1428,-0.1626,-0.1922,-0.1822,-0.1238,0.4238,0.3476,0.4858,0.6286,0.7858,0.9238,1,0.5,0.3714,0.1762,0.138,0.062,0.2286,0.4238,0.2096,0.3666,0.0666,0.081,0.0238,0.0666,0.1904,0.1476,0.2142,0.1334,0.262,0.0096,0.1096,-0.1048,0.0142,-0.1,-0.019,-0.1052,0.512,0.4594,0.6602,0.7272,1,0.8278,0.9474,0.7272,0.4498,0.421,0.5454,0.665,0.7512,0.5168,0.488,0.1292,-0.1532,-0.0526,-0.0334,0.2536,0.2584,0.4784,0.5024,0.5454,0.2918,-0.0096,-0.0096,0.0144,0,0.0574,0.2822,-0.2566,0.4778,0.5044,0.6504,0.6682,0.9824,1,0.5266,0.4824,0.1592,0.2478,0.4912,0.6284,0.6416,0.5266,0.2832,0.0796,-0.1238,-0.1592,-0.2478,-0.2124,-0.1106,0.2522,0.5044,0.4514,0.261,0.23,0.0796,0.0576,-0.031,0.031,0.0354,-0.2676,0.879,1,0.5222,0.6688,0.6114,0.7708,0.6434,0.344,0.172,0.4012,0.5732,0.7134,0.7962,0.4268,0.242,-0.1082,-0.2102,-0.3758,-0.3566,-0.0636,0.1338,0.242,0.4012,0.3376,0.0636,0.0318,-0.1146,-0.1274,-0.242,0.0892,0.0382,0.081,1,1,0.8918,0.7838,0.4594,0.5136,0.5136,0.1892,-0.2972,-0.3514,-0.1892,-0.1892,0.027,0.1352,0.2432,0.8378,0.8378,0.6756,0.7298,0.5136,0.4594,0.5136,0.2972,-0.027,-0.1892,-0.2432,0.081,0.027,-0.3514,0.027,-0.081,-0.0698,0.5814,0.5348,0.628,0.4418,1,0.8604,0.628,0.4418,0.0698,-0.0698,-0.0698,-0.2558,0.0698,0.1162,0.2558,0.4418,0.4884,0.0698,0.1628,0.0232,0.2094,0.2094,0.2094,0.1162,0.2094,0.0698,0.2094,0.0232,-0.4418,-0.721,-0.3954,-0.1764,0.4314,0.4314,0.647,0.5686,1,0.9216,0.745,0.6666,0.3726,0.2942,0.5686,0.4902,0.8432,0.7058,0.3726,0.2156,-0.1764,-0.2352,-0.3138,-0.1568,0.1568,0.4314,0.7058,0.5686,0.2156,0.1372,0.1568,0.098,-0.3138,0.0196,0,-1,-1,-1,-1,-1,-1,-1,-1,-0.9798,-0.9798,-0.6096,0.6604,0.9428,0.9756,0.8106,0.692,0.6138,0.6116,0.6804,0.6784,0.4158,-0.0338,-0.801,-0.8762,-0.8318,-0.8994,-0.8836,-0.9068,-0.9132,-0.9174,-0.9068,-0.9186,-0.9164,-1,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.9702,-0.3308,0.3762,0.7368,0.8784,0.8882,0.8668,0.8576,0.8272,0.8292,0.9448,0.386,-0.245,-0.783,-0.781,-0.7108,-0.7244,-0.6556,-0.6328,-0.7148,-0.7784,-0.7946,-0.8428,-0.881,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.9068,-0.6034,-0.844,-0.724,-0.716,-0.71,-0.71,-0.71,-0.7068,-0.7,-0.68,-0.7434,-0.8134,-0.5068,-0.24,-0.0534,0.0832,0.11,0.1066,-0.04,0.16,0.1132,-0.1,-0.5534,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,-0.3142,-0.6286,-1,-0.9428,-0.7714,-0.7714,-0.7428,-0.4,0.1714,1,1,0.7428,-0.6858,-0.8572,-0.9142,-0.8286,-0.7428,-0.8858,-0.4,1,1,0.6658,0.7074,0.7074,0.7586,0.7782,0.8166,0.8648,0.9322,0.9978,1,-0.1754,-0.2056,-0.2056,-0.1462,-0.1598,-0.1458,-0.129,-0.176,-0.1706,-0.3902,-0.7466,-0.3764,-0.234,0.076,0.5842,0.7492,0.755,0.775,-0.0886,0.114,0.519,0.4684,0.2658,0.2152,0.2152,0.5444,0.8988,1,0.7722,0.9494,0.9494,0.924,0.6962,0.4936,0.5696,0.6202,-0.0886,-0.1392,-0.038,0.1898,0.2658,-0.2152,-0.443,-0.367,-0.3418,-0.3164,-0.3924,-0.2658,-0.2912,-0.4178,0.115,0.2744,0.5576,0.6814,0.5398,0.3098,0.5752,0.7346,0.947,1,0.8054,0.9116,0.9116,0.8584,0.823,0.6814,0.7522,0.77,0.5576,0.3628,0.292,0.2744,0.3098,0.292,0.2212,-0.1682,-0.2212,-0.1504,-0.0442,0.0088,-0.0796,-0.2744,0.6458,0.8334,0.6876,0.5624,0.0834,0.0624,0.0416,0.375,1,0.8334,0.5834,0.5624,0.5624,0.4584,0.3542,0.4584,0.4792,0.5416,0.2084,0,-0.1458,0.25,0.2708,0.2292,0.1458,-0.3124,-0.25,-0.3124,-0.0834,0.0834,-0.1666,-0.4792,0.358,-1,-1,1,-1,-1,-0.8,-0.8,-1,-0.5126,-0.2774,0.0756,0.2436,0.4454,0.3782,0.4622,0.7142,0.731,0.6974,0.1596,0.4286,0.6302,0.6302,0.5798,0.5462,0.8152,0.6974,0.2268,0.4958,0.5966,0.6134,0.6302,0.7478,0.6302,0.7816,1,0.6638,0.8152,0.731,0.5294,0.2606,'6'
-0.082,0.541,0.4918,0.6502,0.7378,1,0.8744,0.4864,0.3006,0.235,0.0656,0.0438,-0.0984,0.0164,0.0874,0.3826,0.47,0.4536,0.3334,0.1968,0.164,0.2132,0.3388,0.3006,0.5356,0.541,0.4316,0.246,0.224,-0.071,0.0218,0.2132,-0.1214,0.4212,0.3386,0.5866,0.8346,1,0.7778,0.7158,0.3644,0.4212,0.2042,0.199,0.1732,0.1214,0.1008,0.1938,0.447,0.3282,0.1938,0.0904,0.1422,-0.0284,0.0026,0.1782,0.1782,0.3902,0.2868,0.0026,-0.044,0.0078,-0.1112,0.0646,-0.1428,0.3864,0.3302,0.5832,0.8548,1,0.733,0.8174,0.4098,0.4098,0.2132,0.1522,0.363,0.199,-0.0772,0.5598,0.658,0.2132,-0.1008,0.1756,0.1662,0.0304,0.0024,0.3536,0.246,0.3256,0.0118,-0.0492,-0.1334,-0.0538,0.0726,0.0352,-0.1822,0.3498,0.3892,0.596,0.8916,1,0.9458,0.9704,0.3498,0.3104,0.271,0.1478,0.2956,0.5172,0.6108,0.4876,0.3892,0.005,-0.1182,-0.2562,-0.1478,0.1428,0.3152,0.4188,0.3498,0.3794,0.0936,0.0492,-0.3646,-0.3252,-0.2562,-0.1724,-0.185,0.349,0.363,0.6018,0.8688,1,0.8266,0.9298,0.4566,0.2834,0.2552,0.2178,0.3162,0.5316,0.658,0.4754,0.3864,0.1896,0.1148,-0.007,0.0866,0.0024,0.3396,0.452,0.3114,0.2834,0.2318,0.068,-0.1008,-0.1428,-0.3068,-0.1008,-0.2212,0.5576,0.576,0.659,0.6636,0.9954,1,0.5162,0.4332,0.2488,0.3272,0.4838,0.6036,0.659,0.7188,0.5438,0.2672,0.1244,-0.0092,-0.0876,0.1106,0.0552,0.3594,0.5668,0.5484,0.3318,0.0922,0.0138,-0.1844,-0.106,-0.1428,-0.1198,-0.5904,0.8314,1,0.4036,0.6686,0.512,0.9638,0.988,0.2832,0.3976,0.3434,0.6326,0.6928,0.747,0.7048,0.1506,-0.0602,-0.0844,-0.0422,0.0302,0.1204,0.2048,0.3976,0.5722,0.5964,0.241,0.0482,-0.1566,-0.1686,-0.1084,0.1204,0.2228,0,0.625,0.5416,0.7084,0.6666,1,0.9584,0.6666,0.3334,0.3334,-0.0834,0.125,-0.25,-0.3334,-0.0416,0.4166,0.5,0.2916,0.25,0.2916,0.125,0.2916,0.4584,0.4166,0.375,0.4584,0.4584,0.4166,0.375,0.3334,0.3334,0.375,-0.08,0.44,0.36,0.6,0.68,1,0.92,0.48,0.2,0.2,0.08,0.24,0.24,0.28,0.36,0.64,0.44,0.68,0.56,0.48,0.36,0.52,0.4,0.4,0.76,0.68,0.28,0.48,0.44,0.24,0.32,0.36,-0.191,0.3708,0.3932,0.573,0.8876,1,0.7752,0.8876,0.4158,0.3708,0.236,0.2134,0.3708,0.2808,0.3034,0.573,0.618,0.1012,-0.0562,-0.0562,-0.1012,0.146,0.0338,0.2584,0.3034,0.4606,0.146,-0.1012,-0.1012,-0.1236,0.0338,0.0562,-1,-1,-1,-1,-1,-1,-1,-1,-0.9824,-0.9872,-0.4452,0.5846,0.902,0.9776,0.9626,0.855,0.6708,0.4954,0.3622,0.2444,0.084,-0.2308,-0.7098,-0.9132,-0.9234,-0.9498,-0.949,-0.9586,-0.9538,-0.9658,-0.9562,-0.9602,-0.9562,-1,-1,-1,-1,-1,-1,-1,-1,-0.9756,-0.9786,-0.4018,0.5322,0.893,0.9288,0.9282,0.9112,0.6962,0.6016,0.5068,0.4208,-0.0024,-0.3364,-0.7172,-0.8842,-0.8848,-0.8858,-0.857,-0.8682,-0.7758,-0.8266,-0.8374,-0.837,-0.8892,-1,-1,-1,-1,-1,-1,-1,-1,-0.8868,-0.96,-0.8434,-0.72,-0.712,-0.752,-0.76,-0.756,-0.7568,-0.7668,-0.75,-0.7168,-0.8434,-0.9234,-0.8568,-0.29,-0.1234,0.0266,-0.0568,0.0466,0.0732,0.1766,0.0866,-0.0068,0.09,-1,-1,-1,-1,-1,-1,-1,-1,-0.6858,1,1,1,-0.7142,-0.7428,-0.8572,-0.6572,-0.8,-0.8572,-0.8572,-0.7142,0.0572,0.5428,1,1,-0.3714,-0.8572,-0.8,-0.4858,-0.4858,-0.8,-0.8572,-0.5428,-0.4858,0.9442,0.9442,0.9546,0.962,0.9804,0.994,1,1,1,1,0.2064,0.2064,0.2412,0.2202,0.1606,0.112,0.042,-0.0502,-0.2226,-0.4292,-0.7334,-0.4,-0.121,0.2128,0.6382,0.8222,0.9854,1,0.1764,0.647,0.8236,0.8236,0.8236,0.7058,0.8824,1,0.8824,0.9412,0.7058,0.7058,0.7058,0.8236,0.8824,0.5882,0.647,0.4706,0.4706,0.4706,0.4118,0.2352,0.353,0.4118,0.5294,0.2942,0.4706,0.5294,0.2352,0.353,-0.2942,-0.2942,0.2766,0.4468,0.9788,1,0.383,0.4042,0.2554,0.851,0.9788,0.766,0.617,0.5744,0.9362,0.9362,0.532,0.5744,0.4042,0.468,0.234,-0.0426,0.0426,0.1702,0.0638,0.149,0.0426,-0.4894,-0.3618,-0.2978,-0.4042,-0.2978,-0.4468,-0.5958,0.7292,0.9792,0.9584,1,0.6042,0.3124,0.2084,0.2916,0.625,0.7084,0.4166,0.3334,0.8124,0.6876,0.4792,0.5,0.4584,0.3542,0.1458,0.0208,-0.0416,0.0208,-0.0416,0,-0.1666,-0.3542,-0.25,-0.3334,-0.2708,-0.375,-0.0624,-0.3334,0.6904,-1,-1,1,-1,-1,-0.8,-0.8334,-1,-0.5162,-0.4354,0.0322,0.129,0.1936,0.5,0.4354,0.4354,0.8064,0.742,0.742,0.9194,0.887,0.7742,0.6774,0.7904,0.9194,0.7742,0.613,0.8064,0.5806,1,0.9032,0.7096,0.6612,0.5968,0.9194,0.9678,0.613,0.7742,0.2904,0.129,'6'
0.0342,0.9872,0.9958,0.718,0.6324,0.1538,0.0642,-0.3462,-0.4102,-0.5982,-0.6196,-0.3548,-0.4444,-0.2864,-0.423,-0.0982,-0.1794,-0.047,0.2522,0.453,0.7394,1,0.7522,0.5042,0.5556,0.8548,0.7394,0.8418,0.6282,0.5256,0.6752,0.8676,0.1264,0.8616,0.8142,0.8972,0.755,0.2964,0.0988,-0.3596,-0.589,-0.743,-0.589,-0.411,-0.2806,-0.1502,-0.2766,-0.1858,-0.1422,-0.087,0.1068,0.1186,0.589,0.668,1,0.9446,0.664,0.7352,0.8182,0.7748,0.6838,0.589,0.6562,0.6562,0.1188,0.831,0.7546,0.8752,0.6902,0.1388,-0.1308,-0.501,-0.654,-0.6418,-0.5694,-0.4688,-0.32,-0.2998,-0.4084,-0.4044,-0.4486,-0.3158,-0.4246,-0.1428,0.1912,0.5896,0.827,0.831,0.8752,1,0.5774,0.674,0.3682,0.4608,0.2474,0.2516,0.136,0.921,0.8422,0.9912,0.7938,0.1974,-0.0702,-0.535,-0.7106,-0.9342,-0.7106,-0.6974,-0.3992,-0.4868,-0.3378,-0.3464,-0.2632,-0.3158,-0.193,-0.2808,-0.0264,0.6404,0.9036,0.8422,1,0.8202,0.943,0.5964,0.5878,0.3684,0.3904,0.4606,0.077,1,0.9916,0.792,0.7588,0.0978,0.0562,-0.738,-0.738,-0.7796,-0.8462,-0.6174,-0.4096,-0.4512,-0.3306,-0.4636,-0.447,-0.2848,-0.2308,0.0312,0.16,0.3222,0.8004,0.867,0.7672,0.7962,0.6882,0.4968,0.397,0.3888,0.4636,0.447,-0.5656,0.8606,1,0.4344,0.3934,0.1148,-0.2828,-0.414,-0.668,-0.5246,-0.7582,-0.6926,-0.418,-0.3934,-0.5122,-0.5902,-0.5368,-0.4508,-0.2378,-0.1066,-0.0614,0.545,0.5368,0.5778,0.668,0.6394,0.504,0.0164,-0.0286,-0.0246,0.0082,0.254,-0.9166,0.6984,1,0.7142,0.3134,0.3888,-0.0436,0.2778,0.0556,-0.5238,-0.492,-0.6388,-0.4326,-0.3612,-0.4404,-0.4802,-0.5158,-0.0318,0.119,0.4842,0.6468,0.7818,0.9008,0.8532,0.762,0.7024,0.6112,0.3888,0.2302,0.1826,0.3412,0.3254,0.0638,0.9148,1,0.7022,0.149,-0.1914,-0.234,-0.1914,-0.1914,-0.4894,-0.234,-0.3618,-0.4042,-0.3618,-0.7872,-0.0212,0.1914,-0.0212,0.3618,0.532,0.2766,0.4468,0.1914,0.3618,0.4894,0.7872,1,0.9148,0.3192,0.4042,0.5744,0.532,0.2,0.9112,0.8666,0.7778,0.7334,0.3334,0.2888,-0.0222,-0.1112,-0.4666,-0.3778,0.0222,-0.1112,-0.0666,-0.0666,0.0666,-0.1112,0.1556,0.4666,0.5112,0.4666,0.8222,0.8666,0.4222,0.6444,0.9112,0.7778,0.9112,0.6888,0.6888,0.6444,1,0.1904,0.8572,0.8096,0.9048,0.762,0.2858,0,-0.1904,-0.5476,-0.4048,-0.4048,-0.3096,-0.0952,-0.0238,-0.0714,-0.1428,-0.238,-0.238,0.1428,-0.0238,0.5952,0.6428,1,0.9286,0.0952,0.6904,0.8334,0.7142,0.7858,0.6666,0.6904,0.6666,-1,-1,-1,-0.973,-0.964,-0.976,-0.9686,-0.9102,-0.9208,-0.9492,-0.8624,0.6918,0.5048,0.5392,0.6454,0.5392,0.3074,0.1594,0.1908,0.4226,0.3374,-0.1772,-0.7248,-0.9446,-0.9342,-0.9312,-0.9342,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9396,-0.9344,-0.6822,-0.6652,-0.4866,-0.1412,1,0.0506,0.7716,0.8162,0.9094,0.958,0.8332,0.5574,0.3526,0.2738,0.497,0.4446,-0.023,-0.438,-0.5522,-0.6442,-0.7084,-0.8056,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8934,-0.88,-0.9268,-0.8134,-0.8068,0.55,0.82,0.39,-0.825,-0.89,-0.875,-0.8876,-0.8576,-0.875,-0.8926,-0.889,-0.9156,-0.9734,-0.86,-0.36,-0.0234,-0.0234,-0.1334,-0.3168,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4286,-0.3714,0.2286,-0.1428,1,1,1,1,1,-0.5142,-0.8572,-0.9142,-0.9428,-0.8858,-1,-1,-0.8286,-0.7428,-0.4286,-0.0858,-0.6,-0.8,-0.5428,-0.2858,-1,-1,-1,-1,-1,-1,0.0188,0.0322,0.033,0.061,0.0654,0.0924,0.085,0.0634,0.0244,0.0892,0.8034,0.8152,0.847,0.8716,0.9064,0.946,0.9298,0.9706,1,0.9566,-0.7734,-0.0352,-0.2882,0.22,0.9738,0.7072,0.82,1,-0.7924,-0.4464,-0.3564,-0.2802,-0.1626,-0.0866,-0.0726,-0.045,-0.0726,0.2872,0.4326,0.3218,0.5916,0.7024,0.834,0.8408,1,0.917,0.8686,0.7508,0.6402,0.6124,0.4602,0.481,0.3634,0.564,0.5432,0.5986,0.5986,0.4326,0.1004,-0.4878,-0.8296,-0.7794,-0.5588,-0.5488,-0.5338,-0.5388,-0.3032,-0.193,0.0126,0.0726,0.233,0.3334,0.5588,0.7594,0.4786,0.6592,1,0.98,0.7244,0.7344,0.7594,0.7294,0.6892,0.7092,0.7244,0.7192,0.6842,0.609,0.5588,0.5538,0.4736,0.2732,-0.5658,-0.1866,-0.364,-0.315,-0.1804,-0.162,0.0092,0.0764,0.107,0.37,0.8042,0.4496,0.8776,1,0.9572,0.8654,0.9266,0.8654,0.7676,0.6208,0.6086,0.6698,0.6942,0.688,0.5352,0.7432,0.7064,0.5596,0.4312,0.3456,0.4312,0.2294,1,-1,-1,1,-1,-1,-1,-0.3,-1,-0.7206,-0.4852,-0.3236,-0.0148,-0.103,-0.2794,-0.1912,-0.0148,0.5294,0.7794,0.8088,0.6912,1,0.853,0.4852,0.4706,0.4118,0.147,0.0736,0.25,0.1324,0.2648,0.1764,0.1618,0.2794,0.2058,-0.2942,-0.3382,-0.4412,-0.4706,-0.5442,-0.897,'7'
0.0322,0.7782,0.758,0.5162,0.4354,0,-0.0524,-0.5524,-0.6088,-0.6048,-0.4678,-0.3306,-0.4314,-0.3346,-0.2056,-0.0806,-0.246,-0.25,-0.0604,0.0928,0.6654,0.6774,0.6008,0.6492,0.9032,1,0.8992,0.8588,0.7096,0.6976,0.6048,0.5766,0.06,0.724,0.66,0.728,0.568,0.204,-0.04,-0.364,-0.676,-0.556,-0.448,-0.364,-0.232,-0.22,-0.048,-0.08,-0.136,-0.22,-0.184,-0.096,0.112,0.54,0.756,0.556,0.74,0.872,1,0.64,0.704,0.72,0.76,0.784,0.0544,0.7406,0.636,0.8076,0.5524,0.1548,-0.1758,-0.1088,-0.615,-0.6234,-0.7322,-0.7406,-0.5356,-0.5104,-0.343,-0.2218,-0.092,-0.0334,-0.0126,0.3766,0.41,0.9038,0.8996,0.954,0.7866,1,0.6988,0.6946,0.5774,0.6108,0.5984,0.59,-0.01,0.6198,0.5128,0.699,0.4416,0.0496,-0.2278,-0.1882,-0.493,-0.5564,-0.691,-0.79,-0.8654,-0.7386,-0.592,-0.5842,-0.5406,-0.5446,-0.3624,0.0732,0.109,0.6356,0.798,0.9486,0.901,1,0.7466,0.7504,0.4732,0.41,0.4574,0.4574,0.094,0.8038,0.7244,0.858,0.6534,0.1774,-0.1566,-0.1524,-0.5616,-0.453,-0.5032,-0.4948,-0.4822,-0.5366,-0.4406,-0.5282,-0.5574,-0.5992,-0.474,-0.0898,0.1148,0.7662,0.8872,0.9416,1,0.9082,0.8872,0.6158,0.4906,0.4948,0.453,0.5866,0.002,0.8846,0.8926,0.6382,0.6222,-0.002,-0.0258,-0.4552,-0.487,-0.825,-0.8092,-0.662,-0.6422,-0.6262,-0.5864,-0.6302,-0.4354,-0.4116,-0.2246,-0.0536,0.4474,0.5586,0.9046,1,0.7614,0.7176,0.5944,0.5428,0.3122,0.1212,0.2008,0.34,-0.5418,0.8326,1,0.4184,0.1116,-0.1036,-0.2152,-0.3228,-0.6574,-0.6254,-0.7212,-0.6694,-0.6334,-0.482,-0.4104,-0.4542,-0.49,-0.4462,-0.1832,0.0318,0.1952,0.5258,0.6294,0.5896,0.6056,0.3586,0.3824,0.3228,0.1474,0.0836,-0.02,-0.008,-0.2,0.7,0.75,0,-0.1,-0.4,-0.5,-0.55,-0.55,-0.65,-0.75,-0.4,-0.35,-0.85,-0.7,-0.05,0.1,0,0.15,0.2,0.3,0.05,0.5,0.6,0.65,0.95,0.9,1,0.7,0.6,0.55,0.5,0.1064,0.7022,0.617,0.6596,0.4894,0.1064,0.0638,-0.4468,-0.532,-0.4042,-0.3618,-0.1914,-0.2766,-0.3192,-0.1064,-0.1064,-0.2766,-0.149,-0.1064,0.1914,0.8724,0.9148,0.532,0.617,0.9574,1,0.8298,0.532,0.7022,0.7022,0.617,0.4468,0.012,0.6386,0.5662,0.6868,0.4458,0.1326,-0.1326,-0.1084,-0.4698,-0.5422,-0.5422,-0.6144,-0.759,-0.3254,-0.229,-0.1084,-0.0362,0.1084,0.012,0.4458,0.3976,0.759,0.8554,1,0.759,0.9036,0.5662,0.6626,0.494,0.4216,0.4698,0.4458,-1,-1,-1,-1,-0.9684,-0.9684,-0.9016,-0.9356,-0.8474,-0.8814,-0.8032,0.8536,0.8372,0.8246,0.7072,0.489,0.4234,0.3602,0.3362,0.2656,0.4738,0.2214,-0.605,-0.9154,-0.9444,-0.9672,-0.9672,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.954,-0.9586,-0.1584,0.1806,1,0.5112,0.0344,0.73,0.9504,0.9026,0.762,0.7344,0.7116,0.447,0.3394,0.2256,0.3036,0.0408,-0.6214,-0.8374,-0.8604,-0.8796,-0.9256,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.88,-0.9268,-0.62,0.7366,0.8432,0.7332,0.3932,-0.75,-0.875,-0.8926,-0.8526,-0.7626,-0.7976,-0.8626,-0.89,-0.89,-0.8876,-0.869,-0.69,-0.1468,-0.2,-0.2134,-0.5468,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7142,1,1,1,0.9714,1,1,1,-0.4572,-0.9428,-0.8572,-0.8286,-0.9142,-0.9428,-0.9142,-0.9142,-0.4858,-0.4858,-0.6,-0.6572,-0.7428,-0.5714,0.4286,-1,-1,-1,-1,-1,-1,-0.1294,-0.1084,-0.0656,-0.0576,-0.0282,0.0042,0.0098,0.0492,0.083,0.0716,0.8896,0.8872,0.9346,0.9646,0.972,0.9534,1,1,1,1,-0.7334,-0.0706,0.0216,0.2054,0.762,0.9128,1,1,-0.8186,-0.6802,-0.4988,-0.5084,-0.2888,-0.284,-0.117,-0.0596,-0.0024,0.2506,0.1886,0.3556,0.6802,0.7566,0.6992,0.8186,0.9474,1,0.9952,0.8616,0.8998,0.8424,0.6898,0.7996,0.58,0.7136,0.7614,0.79,0.7662,0.6182,0.3748,0.0692,-0.8778,-0.6294,-0.6084,-0.3978,-0.381,-0.4442,-0.2674,-0.1916,-0.0022,0.3094,0.3642,0.3894,0.6378,0.8232,0.6168,0.819,0.9874,1,0.8442,0.8022,0.8948,0.8442,0.8022,0.7768,0.7852,0.8022,0.7178,0.6842,0.6506,0.7222,0.5916,0.1958,-0.4646,-0.3496,-0.4248,-0.5088,-0.6106,-0.447,-0.1682,-0.0132,0.1062,0.3098,0.6194,0.469,0.8584,1,0.8274,0.7346,0.792,0.8584,0.6726,0.6238,0.6328,0.584,0.5,0.4336,0.4248,0.469,0.553,0.4956,0.3496,0.3982,0.208,-0.3142,1,-1,-1,1,-1,-1,-0.6,-0.1,-1,-0.7018,-0.1578,-0.2456,0.0702,-0.0878,-0.1228,0.0176,-0.035,-0.1228,0.5264,0.9824,1,0.7544,0.386,0.2106,0.3684,0.5438,0.3334,0.2808,0.4912,0.4386,0.6316,0.0702,0.2456,-0.2106,-0.4386,-0.4912,-0.4036,-0.4036,-0.5614,-0.4036,-0.5264,'7'
-0.0616,0.5954,0.7302,1,0.8652,0.9238,0.4898,0.2668,-0.0674,-0.1144,-0.1848,-0.2316,-0.1788,-0.214,-0.1496,0.0616,0.0498,0.4838,0.8006,0.9882,0.7888,0.4546,0.4722,0.4194,0.7302,0.6422,0.6246,0.4194,0.3256,0.2258,0.2492,0.5014,-0.0484,0.5516,0.8,1,0.9152,0.9696,0.3636,0.297,0.0484,-0.1576,-0.097,-0.2,-0.1516,-0.109,-0.1818,-0.006,-0.0546,0.1516,0.4666,0.5212,0.7576,0.709,0.594,0.4788,0.3454,0.3818,0.3272,0.0424,-0.1636,-0.1516,-0.0424,0.1696,-0.0396,0.5198,0.8136,1,0.6498,0.661,0.2146,0.13,-0.0452,-0.2316,-0.2486,-0.2656,-0.2204,-0.2598,-0.3502,-0.2882,-0.2486,-0.2486,0.1356,0.2768,0.548,0.661,0.6328,0.5594,0.4406,0.4576,0.3502,0.209,0.1526,0.226,0.1808,0.1808,-0.033,0.5368,0.7812,1,0.7302,0.3536,0.0076,-0.1044,-0.2722,-0.313,-0.43,-0.4504,-0.2926,-0.3536,-0.4148,-0.486,-0.4148,-0.1502,0.0992,0.1908,0.5268,0.8118,0.8016,0.5522,0.491,0.6234,0.5064,0.201,0.2978,0.313,0.2366,0.1908,-0.1128,0.5898,0.5794,1,0.882,0.0872,-0.0462,-0.5692,-0.5692,-0.718,-0.6924,-0.5538,-0.3128,-0.2564,-0.3026,-0.3128,-0.2616,-0.2308,0.0154,0.2154,0.4102,0.518,0.5948,0.6102,0.4924,0.477,0.2974,0.3488,0.3026,0.1334,0.1692,0.2052,-0.256,0.9084,1,0.7736,0.8976,0.2884,0.186,-0.2022,-0.4178,-0.6712,-0.8168,-0.585,-0.4448,-0.407,-0.2884,-0.2884,-0.283,-0.0296,0.0782,0.4178,0.5364,0.8976,0.9568,0.8436,0.7358,0.6604,0.6928,0.5148,0.4394,0.3262,0.3962,0.4016,-0.8774,0.773,1,0.4846,0.2392,0.135,-0.6688,-0.595,-0.6994,-0.5644,-0.6504,-0.6258,-0.5828,-0.4786,-0.362,-0.4846,-0.3804,-0.454,-0.4786,-0.276,0.3866,0.6134,0.4724,0.3558,0.4786,0.4356,0.5154,0.3496,0.2086,0.1596,0.0614,0.4172,-0.2308,0.2692,0.3076,0.6538,0.6154,0.6154,0.3846,0.1538,-0.1154,-0.077,-0.1924,-0.0384,-0.0384,0.0384,-0.0384,0.2308,0.2692,0.577,0.8462,1,1,0.8462,0.8462,0.8846,0.9616,0.9616,0.923,0.8076,0.6924,0.6154,0.6924,0.6924,0,0.6,0.7,1,0.9,1,0.4,0.4,-0.05,-0.15,-0.2,-0.4,-0.15,-0.25,-0.1,0,-0.1,0.35,0.55,0.75,0.35,-0.25,0.3,0.25,0.6,0.6,0.3,0.1,0.25,0.05,0.05,0.5,0.0322,0.5268,0.8064,1,0.742,0.3334,-0.1828,-0.1612,-0.2258,-0.2044,-0.4194,-0.4194,-0.2904,-0.3978,-0.3764,-0.6774,-0.742,-0.2904,0.0322,0.1612,0.656,0.957,0.785,0.5698,0.4194,0.4838,0.5268,0.1612,0.2044,0.2258,0.3118,0.1612,-1,-1,-1,-1,-1,-1,-1,-1,-0.9854,-0.9824,-0.4694,0.445,0.5716,0.6894,0.7244,0.9192,0.9912,0.7828,0.3008,-0.1276,-0.185,-0.481,-0.9678,-0.9844,-0.9864,-0.9874,-0.9688,-0.9854,-0.9834,-0.9824,-0.9814,-0.9522,-0.9436,-1,-1,-1,-1,-1,-1,-1,-1,-0.977,-0.9776,-0.2998,0.608,0.2878,0.3878,0.3578,0.4958,0.758,0.3906,-0.036,-0.3332,-0.3734,-0.6396,-0.969,-0.9748,-0.9794,-0.9794,-0.7918,-0.9472,-0.8488,-0.6424,-0.5452,-0.2802,0.378,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.9668,-0.8168,-0.736,-0.8,-0.7668,-0.7834,-0.7934,-0.79,-0.8034,-0.8134,-0.8334,-0.7668,-0.8068,-0.9668,-0.8868,-0.9934,-0.9868,-0.56,-0.5268,0.3,0.6732,0.6632,0.5966,0.58,-1,-1,-1,-1,-1,-1,-1,-1,-0.7142,1,1,1,-0.7428,-0.9714,-0.9142,-0.8858,-0.6572,-0.6858,-0.8286,-0.8572,1,1,1,-0.9714,-0.9428,1,1,0.5142,1,1,-0.1714,-0.3428,-0.5428,0.7362,0.733,0.7356,0.7388,0.7372,0.7372,0.7368,0.7252,0.6512,0.4142,0.752,0.7218,0.686,0.6694,0.6816,0.679,0.6178,0.5982,0.6992,0.739,-0.72,-0.353,-0.1998,0.8488,0.4136,0.2464,0.3296,1,-0.0638,0.4042,0.532,0.617,0.4468,0.4042,0.532,0.617,0.7872,0.8724,0.9148,1,0.9148,0.9148,0.8298,0.7872,0.8298,0.7446,0.617,0.6596,0.4042,0.4042,0.2766,0.1064,0.1914,0.149,0.1064,0.0212,-0.1064,-0.234,-0.234,-0.4468,0.312,0.504,0.76,0.584,0.344,0.296,0.328,0.472,0.552,1,1,0.824,0.904,0.84,0.712,0.712,0.808,0.728,0.52,0.456,0.44,0.376,0.312,0.2,0.296,-0.04,-0.008,-0.168,-0.504,-0.088,-0.12,-0.424,0.5052,0.732,1,0.6494,0.2164,0.1546,0.1546,0.2578,0.4226,0.8762,0.9382,0.7526,0.7938,0.7526,0.6288,0.5464,0.7114,0.567,0.464,0.4846,0.3814,0.0928,-0.0104,-0.1958,-0.1134,-0.2372,-0.3196,-0.3608,-0.5258,-0.464,-0.4432,-0.5876,1,-1,-1,1,-1,-1,-1,-0.8334,1,-0.3476,-0.2942,-0.0802,-0.1444,-0.2086,-0.0696,-0.0696,0.1016,0.091,0.3262,0.4652,0.4974,0.786,0.861,0.647,0.8824,0.9786,0.968,0.9038,0.9358,0.7006,0.8288,0.861,0.7006,0.9572,1,0.786,0.786,0.4974,0.5188,0.508,0.3262,'8'
-0.1398,0.4766,0.6944,0.8756,0.9534,1,0.5906,0.3626,0.1036,-0.0622,-0.0518,-0.0778,-0.1348,-0.031,-0.0414,-0.0362,-0.145,0.1762,0.4094,0.5026,0.8186,0.7202,0.5854,0.5492,0.5388,0.741,0.7202,0.658,0.4352,0.2746,0.285,0.3782,-0.1272,0.4234,0.735,0.9012,0.9792,1,0.361,0.2572,-0.0338,-0.278,-0.2416,-0.1792,-0.2,-0.2572,-0.4026,-0.2988,-0.4286,-0.2832,0.2728,0.5376,0.9012,0.7766,0.7454,0.4442,0.4182,0.9064,0.8182,0.013,-0.0286,-0.0442,0.3922,0.4026,-0.0578,0.4894,0.8264,1,0.821,0.821,0.3422,0.2052,-0.1474,-0.3736,-0.3052,-0.2632,-0.3316,-0.2158,-0.4052,-0.3736,-0.379,-0.3158,0.1684,0.4316,0.7,0.7526,0.8578,0.4,0.3894,0.721,0.5684,0.3526,0.221,0.1684,0.421,0.3316,-0.124,0.4026,0.843,1,0.5342,0.524,0.195,0.0836,-0.281,-0.4632,-0.3772,-0.286,-0.3114,-0.3316,-0.4076,-0.2152,-0.4178,-0.4784,-0.119,0.0278,0.362,0.5494,0.6354,0.7772,0.7518,0.762,0.6708,0.4784,0.2608,0.2254,0.1544,0.1392,-0.1116,0.4888,0.6958,1,0.8094,0.2576,0.1076,-0.1562,-0.3468,-0.4726,-0.4362,-0.5294,-0.5862,-0.3914,-0.4118,-0.2252,-0.2008,-0.071,0.2048,0.4078,0.566,0.6632,0.8296,0.8216,0.7404,0.6754,0.6998,0.501,0.351,0.2982,0.221,0.355,-0.2828,0.7374,0.9394,1,0.8888,0.3384,0.106,-0.3838,-0.4798,-0.5606,-0.5354,-0.5152,-0.5758,-0.4646,-0.4192,-0.3586,-0.2474,-0.1262,0.0758,0.2626,0.4798,0.7172,0.8888,0.8282,0.808,0.7122,0.8182,0.6616,0.4142,0.4142,0.3636,0.399,-0.49,0.8074,1,0.6034,0.1954,0.0708,-0.3088,-0.2692,-0.5808,-0.3314,-0.4164,-0.456,-0.4164,-0.3542,-0.3542,-0.2124,-0.2464,-0.3484,-0.1502,-0.0198,0.3824,0.4618,0.5354,0.3484,0.3484,0.558,0.626,0.5864,0.541,0.4164,0.4504,0.541,-0.2122,0.6364,0.7576,0.8788,0.5152,1,1,0.6364,-0.091,0.0304,0.0304,-0.4546,0.0304,0.091,-0.091,-0.091,0.091,0.1516,0.2122,0.8182,1,0.8788,0.5758,0.4546,0.1516,0.8182,0.8182,0.8788,0.6364,0.697,0.4546,0.6364,-0.1708,0.3658,0.561,0.756,1,0.9512,0.0732,0.2196,0.2682,-0.0732,-0.122,-0.0244,-0.1708,-0.2682,0.0244,0.0732,-0.3658,0.0732,0.2682,0.5122,0.8048,0.8048,0.561,0.3658,0.2196,0.7074,0.6586,0.4634,0.5122,0.1708,-0.0244,0.2682,-0.238,0.6666,0.6904,1,0.9762,0.238,0.1904,-0.1666,-0.381,-0.381,-0.262,-0.381,-0.5,-0.4048,-0.3572,-0.1428,-0.2142,0.0238,0.262,0.5,0.381,0.5952,0.8096,0.6666,0.9762,0.8334,0.6428,0.5714,0.4048,0.3096,0.5952,0.5476,-1,-1,-1,-1,-1,-1,-1,-1,-0.9816,-0.99,-0.925,0.43,0.8884,0.7516,0.715,0.7666,0.9674,0.9076,0.6234,0.3642,0.0416,-0.4866,-0.9734,-0.9866,-0.9892,-0.9884,-0.9584,-0.9792,-0.975,-0.9766,-0.955,-0.9424,-0.9358,-1,-1,-1,-1,-1,-1,-1,-1,-0.9776,-0.9786,-0.8854,0.4118,0.9282,0.766,0.6176,0.5468,0.6124,0.5864,0.4988,0.1108,-0.2108,-0.6244,-0.9692,-0.9776,-0.977,-0.9782,-0.7134,-0.688,-0.38,0.0264,-0.0034,-0.2004,-0.145,-1,-1,-1,-1,-1,-1,-1,-1,-0.9156,-0.96,-0.95,-0.7868,-0.71,-0.7634,-0.81,-0.823,-0.8258,-0.7772,-0.7716,-0.7972,-0.8144,-0.7516,-0.96,-0.9068,-0.8868,-0.9334,-0.5434,0.4066,0.5966,0.52,0.6032,0.4132,0.3466,-1,-1,-1,-1,-1,-1,-1,-1,-0.2,-0.8286,1,1,0.4572,-0.9428,-1,-0.9714,-0.9714,-0.7428,-0.8858,-0.4572,0.9142,1,1,-0.9428,-0.8572,0.2572,1,1,1,-0.2858,-0.7142,-0.7142,-0.2286,0.8898,0.8908,0.8858,0.8838,0.8698,0.8636,0.8464,0.8226,0.7556,0.5266,0.6332,0.6194,0.646,0.6358,0.693,0.7502,0.7808,0.8014,0.8426,0.8568,-0.68,-0.2588,-0.9766,-0.0768,0.4998,0.9282,0.912,1,0.2898,0.2174,0.7102,0.6232,0.4058,0.5798,0.826,0.8986,0.9856,0.7102,0.913,0.5652,0.7972,0.5218,0.4928,0.8986,0.8696,0.884,0.6666,0.5218,0.4348,0.7102,0.942,0.8406,0.6666,0.6956,0.5798,0.7392,0.3478,0.3044,0.1884,-0.1014,0.1818,-0.091,0.2878,0.8788,0.697,0.5454,0.9242,0.7576,1,0.697,0.4394,0.6516,0.5454,0.4696,0.5304,0.3484,0.894,0.7272,0.5758,0.4242,0.6818,0.4242,0.5758,0.6666,0.6212,0.4546,0.1516,0.3636,0.2122,0.2272,0.1666,-0.303,0.2086,-0.0216,0.3238,0.4676,0.3238,0.741,1,0.741,0.8418,0.5684,0.669,0.4532,0.1654,0.5972,0.482,0.5828,0.7698,0.6546,0.6402,0.4244,0.741,0.7266,0.6116,0.8274,0.7554,0.482,0.482,0.367,0.0936,0.4532,-0.0216,-0.367,-0.9948,1,-1,-1,-1,-1,-1,-1,1,-0.6548,-0.5834,-0.4286,-0.4048,-0.4762,-0.4404,-0.1548,0.0596,0.25,0.2262,0.4286,0.881,0.9286,0.9404,1,0.7024,0.8928,0.762,0.8572,0.8214,0.6786,0.7142,0.619,0.762,0.6666,0.762,0.8096,0.619,0.6666,0.6786,0.619,0.25,'8'
-0.2488,0.2248,0.3122,0.442,0.6772,0.6712,1,0.8944,0.834,0.7044,0.7496,0.828,0.7678,0.2942,0.086,-0.2066,-0.3966,-0.3666,-0.1312,-0.1132,0.0226,0.1432,0.3574,0.2398,-0.0528,-0.276,-0.2248,0.0378,0.0588,-0.0408,-0.1674,-0.448,-0.172,0.3288,0.2954,0.5092,0.606,0.7362,0.9566,1,0.9966,0.7228,0.7462,0.9032,0.8498,0.4558,0.0684,-0.152,-0.3156,-0.3456,-0.1854,-0.1118,-0.0084,0.212,0.252,0.015,-0.1954,-0.3288,-0.2922,-0.1486,0.1086,0.045,-0.1652,-0.5426,-0.3124,0.1546,0.1892,0.2712,0.366,0.6846,0.8012,1,0.8076,0.5742,0.5048,0.5078,0.3218,0.3124,0.1042,-0.1324,-0.2682,-0.306,-0.1892,-0.0252,0.0378,0.347,0.3912,0.1388,-0.0348,-0.2146,-0.2114,-0.0852,-0.0536,-0.0032,-0.2146,-0.4258,-0.211,0.2914,0.2914,0.4558,0.636,0.7004,0.9388,1,0.707,0.4622,0.3236,0.4492,0.4848,0.6844,0.5878,0.5524,0.1788,0.0242,0.0274,0.1562,0.2078,0.298,0.388,0.3076,0.0692,-0.1112,-0.2754,-0.2818,-0.1884,-0.2238,-0.2624,-0.607,-0.1022,0.452,0.4334,0.6284,0.938,1,0.9102,0.8298,0.26,0.0928,0.0186,0.192,0.26,0.2756,0.2942,0.4272,0.3312,0.4954,0.3808,0.3282,0.2538,0.2384,0.1518,0.2352,0.2136,0.1456,0,0.0682,-0.0248,-0.0248,-0.0154,0.0216,0.0796,0.8408,0.8128,0.9656,0.8534,1,0.8534,0.3916,0.195,-0.1294,-0.2168,0.0296,0.0514,0.0764,0.014,0.0046,-0.011,0.1326,0.4758,0.5788,0.716,0.582,0.6818,0.56,0.5008,0.4758,0.6132,0.3728,0.3728,0.273,0.1856,0.3104,-0.3446,0.8958,1,0.805,1,0.5596,0.6068,0.3512,-0.1866,-0.2606,-0.358,-0.2034,-0.2572,-0.2268,-0.2908,-0.4252,-0.3848,-0.116,0.1194,0.2638,0.8454,0.9798,0.8756,0.7648,0.6874,0.7714,0.6404,0.3446,0.4924,0.4824,0.3714,0.2974,-0.1818,0.2272,0.3636,0.4546,0.7728,0.909,1,0.909,0.909,0.7272,0.6364,0.8636,0.7272,0.4546,-0.1818,-0.2272,-0.1818,-0.591,-0.0454,0.1364,0,0.0454,0.4546,0.5454,0.3182,-0.091,0.2272,0.3182,0.1818,-0.409,-0.1818,-0.1818,-0.132,0.283,0.283,0.4716,0.6982,0.7736,1,0.9622,0.6604,0.6226,0.6982,0.6604,0.6604,0.2076,0.0188,-0.0566,-0.3208,-0.1698,-0.0566,-0.0944,0.2452,0.132,0.0944,0.1698,0.2076,-0.2452,-0.0944,-0.0188,0.1698,0.1698,-0.0566,-0.6604,-0.0256,0.641,0.641,0.8206,0.7436,1,0.7948,0.4358,0.2052,0.1538,-0.1282,-0.1794,0.0512,-0.0512,-0.1538,0.0256,-0.1282,0.1282,0.6666,0.5384,0.3334,0.4616,0.6924,0.4102,0.3076,0.8206,0.8462,0.4358,0.3076,0.2564,0.2308,-0.0512,-1,-1,-1,-1,-1,-1,-1,-1,-0.984,-0.9742,-0.405,0.7444,0.5586,0.4272,0.517,0.6288,0.7,0.6976,0.9176,0.7112,0.5918,0.137,-0.7406,-0.957,-0.9594,-0.9582,-0.9644,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9618,-0.9782,-0.3734,0.0958,0.282,-0.155,-0.0126,0.0612,-0.0308,-0.1834,-0.198,-0.3274,-0.4134,-0.5956,-0.8948,-0.9386,-0.9556,-0.9602,-0.9732,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8134,-0.8668,-0.82,-0.76,-0.7224,-0.702,-0.7,-0.708,-0.716,-0.76,-0.788,-0.854,-0.94,-0.862,-0.4834,-0.1968,-0.3034,-0.4568,-0.8,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,-0.7428,-0.9714,-0.9714,-0.8858,-0.6286,-0.8,-0.6858,-0.5142,-0.6858,-0.0286,0,-0.4858,-0.9142,-0.4858,-0.3428,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.7024,-0.667,-0.6954,-0.7622,-0.8348,-0.9058,-0.8842,-0.8308,-0.8006,-0.3678,-0.68,0.153,-0.1632,0.152,0.0798,0.099,0.6984,1,0,0.3044,0.6956,0.8696,0.9566,1,0.9566,0.913,0.7392,0.826,0.913,1,1,0.9566,0.913,0.7392,0.7392,0.5652,0.3914,0.4348,0.4782,0.2608,0.2608,0.2608,0,-0.0434,0.087,0.0434,0.0434,0.2608,0.2174,-0.5652,0.0656,0.3114,0.6558,1,0.9836,0.9672,0.9672,0.754,0.5082,0.6558,0.7214,0.9836,0.8196,0.8032,0.8524,0.623,0.3114,0.0984,0.0492,0.1804,-0.0492,0.164,0.1804,0.2622,0.2786,-0.082,-0.2296,-0.3606,-0.2622,-0.4426,-0.3442,-0.5574,0.4528,0.585,0.7358,1,0.9812,0.9246,0.849,0.5472,0.2642,0.3018,0.3584,0.8114,0.717,0.5094,0.5284,0.1886,-0.3018,-0.3396,-0.5472,-0.3018,-0.3962,-0.3018,-0.3208,0.151,0.1698,-0.3396,-0.3396,-0.415,-0.6982,-0.6982,-0.5284,-0.6226,1,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.4516,-0.4032,-0.1936,0.2904,0.4194,-0.0162,0.0968,0,0.129,0.8226,0.9032,1,0.7904,0.742,0.5968,0.3226,0.5162,0.371,0.5322,0.2258,0.1612,0.1452,-0.1452,0.3548,0.1452,0.371,0.2096,-0.0484,-0.0322,0.0322,-0.0646,-0.4032,'9'
-0.1922,0.3414,0.2632,0.4884,0.525,0.6474,0.9388,1,0.6696,0.6132,0.667,0.6084,0.2534,-0.0502,0.0746,-0.038,-0.0428,-0.4002,-0.4026,-0.087,-0.1456,-0.0746,0.0062,0.038,-0.0844,-0.104,-0.2802,-0.3366,-0.3488,-0.3048,-0.2386,-0.2632,-0.1622,0.3308,0.2658,0.4526,0.6134,0.6706,1,0.9636,0.9066,0.7692,0.5564,0.4838,0.5538,0.3566,0.3488,0.144,0.0272,-0.253,-0.3982,-0.419,0.0402,0.0998,0.406,0.336,-0.2582,-0.4164,-0.4708,-0.432,-0.3618,-0.253,-0.271,-0.2296,-0.1648,0.3212,0.2738,0.4218,0.5866,0.595,0.9526,0.8268,1,0.6984,0.338,0.715,0.6648,0.6872,0.5028,0.204,-0.2458,-0.324,-0.3632,0,0.2346,0.4302,0.5112,0.1592,-0.19,-0.4526,-0.5056,-0.31,-0.1816,-0.1062,0.0308,-0.053,-0.1764,0.2948,0.3032,0.433,0.5768,0.6276,1,0.828,0.8816,0.4668,0.3004,0.4076,0.5656,0.7744,0.56,0.6446,0.2356,0.1678,-0.3682,0.0126,0.1198,0.4894,0.4782,0.2016,0.0438,-0.1764,-0.34,-0.512,-0.4696,-0.227,-0.0578,-0.148,-0.118,0.4214,0.3764,0.5758,0.8398,0.896,1,0.941,0.3708,0.2332,0.0956,-0.1208,-0.0056,0.1826,0.2978,0.4972,0.3932,0.6068,0.4016,0.2162,0.3118,0.2022,0.3398,0.2444,0.0506,-0.1096,-0.0562,-0.2304,-0.1516,-0.2162,-0.1068,-0.0366,-0.0128,0.8026,0.7998,1,0.957,0.8512,0.7712,0.382,0.1244,-0.0014,-0.0644,-0.0214,0.1188,0.1616,0.0702,0.133,-0.033,0.1674,0.3792,0.6852,0.751,0.8484,0.8684,0.9198,0.957,0.754,0.588,0.3048,0.2132,0.3506,0.3476,0.4164,-0.8254,0.706,1,0.7148,0.869,0.8748,0.3886,0.3916,0.1558,-0.1966,-0.3624,-0.3276,-0.2722,-0.2954,-0.278,-0.2752,-0.2168,-0.1848,0.1586,0.38,0.5836,0.7118,0.703,0.674,0.6564,0.6274,0.5226,0.5458,0.4788,0.1732,0.2082,0.2082,-0.102,0.4286,0.3062,0.6326,0.4286,0.7552,0.9592,1,0.8776,0.5918,0.796,0.796,0.347,0.2244,0.347,0.2654,0.0204,0.0204,-0.0612,0.102,0.1836,0.102,0.3062,0.3062,0.2244,0.102,-0.0204,-0.3878,-0.0204,-0.0204,-0.0612,-0.0612,-0.1764,0.2942,0.1372,0.4902,0.451,0.6078,0.9216,1,0.647,0.4902,0.6862,0.6078,0.4118,0.2942,0.1372,0.0196,0.0588,-0.2942,-0.4118,-0.098,-0.1372,0.098,0.255,0.255,-0.0588,0.0196,-0.1764,-0.098,-0.255,-0.1764,-0.2156,-0.2156,-0.0786,0.4606,0.3484,0.618,0.9102,1,0.7752,0.7978,0.3708,0.3034,0.2134,0.0786,0.146,-0.0338,0.1012,0.236,0.3034,0.6854,0.663,0.3932,0.3258,0.3034,0.191,0.3258,0.0562,-0.3484,0.2584,0.1236,0.2134,0.146,0.3034,0.2808,-1,-1,-1,-1,-1,-1,-1,-1,-0.9822,-0.9902,-0.5334,0.192,0.411,0.4838,0.4892,0.5096,0.568,0.7526,0.9192,0.6524,0.1698,-0.1938,-0.6088,-0.9104,-0.9752,-0.969,-0.9698,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.981,-0.9828,-0.2126,0.4228,0.6762,0.674,0.6352,0.7786,0.816,0.8642,0.5482,0.3384,-0.1454,-0.4308,-0.7276,-0.8904,-0.913,-0.9382,-0.9598,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.94,-0.7768,-0.716,-0.671,-0.6328,-0.6364,-0.6474,-0.662,-0.7256,-0.7238,-0.7764,-0.8492,-0.8474,-0.7786,-0.3018,-0.0686,-0.2286,-0.4552,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.3142,1,1,1,-0.8,-0.9714,-0.9142,-0.8858,-0.7714,-0.7142,-0.4286,-0.5428,-0.4,-0.0286,-0.2572,-0.2286,-0.6858,-0.6572,-0.3142,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.6386,-0.6408,-0.6162,-0.62,-0.687,-0.7492,-0.8054,-0.8464,-0.921,-0.4292,-0.6666,0.2942,0.2014,0.085,0.393,0.5332,0.6432,1,-0.238,0.0952,0.7142,0.8572,0.7142,0.9524,1,0.762,0.619,0.762,0.619,0.8572,0.9048,0.8096,0.619,0.9048,0.9048,0.5714,0.5238,0.5714,0.4286,0,0.0476,0.0476,-0.1904,-0.1904,-0.1904,-0.238,-0.3334,-0.238,-0.619,-0.7142,0.2,0.3392,0.7218,1,0.9826,0.9652,1,0.7392,0.4086,0.4956,0.4956,0.8434,0.774,0.4608,0.5478,0.7392,0.687,0.2174,0.374,0.5652,0.426,-0.1304,0.2522,0.3392,0.0434,-0.4608,-0.3914,-0.6174,-0.513,-0.3566,-0.513,-0.6522,0.604,0.8812,0.8416,0.8812,1,0.8218,0.6238,0.3862,0.1684,0.1684,0.406,0.5248,0.1882,0.208,0.1486,-0.0892,-0.0496,-0.0892,-0.3466,0.01,0.0298,-0.3268,-0.3664,0.109,-0.109,-0.208,-0.505,-0.307,-0.2674,-0.2278,-0.406,-0.6634,1,-1,-1,1,-1,-1,-0.6,-0.8334,-1,-0.3582,-0.1492,-0.1194,0.2388,-0.1194,0.2538,0.3134,0.209,0.1642,1,1,0.7762,0.6268,0.5522,0.582,0.582,0.388,0.1642,0.3732,0.418,0.418,0.4626,0.6268,0.6268,0.4776,0.1044,0.1194,-0.015,0.1492,0.2836,-0.1642,-0.418,'9'
-0.0304,0.628,0.653,1,0.8998,0.3668,0.1162,0.17,-0.0948,-0.1556,-0.2272,-0.2094,-0.4132,-0.4634,-0.2058,-0.306,-0.0876,0.1842,0.467,0.467,0.4776,0.2808,0.2988,0.1878,0.3024,0.1592,0.1484,0.1806,0.1628,0.17,0.2058,0.2522,0.0272,0.645,0.7788,1,0.8246,0.9206,0.666,0.6368,0.1524,0.002,-0.1232,-0.3068,-0.1816,-0.357,-0.2902,0.19,0.0354,0.2526,0.57,0.7536,0.4572,0.286,0.023,0.2568,0.3402,0.1816,0.1064,0.0354,0.1566,0.0898,0.1232,0.1064,-0.1202,0.4108,0.6008,0.7714,0.9612,1,0.628,0.5194,0.1666,-0.1202,-0.1976,-0.0078,-0.0426,-0.4418,-0.31,-0.1124,0.0776,0.1706,0.5426,0.4534,0.0814,0,-0.128,0.0776,0.0852,0.155,0.0348,-0.0504,-0.1512,-0.0852,-0.0466,-0.0232,-0.112,0.4208,0.6024,0.7568,0.9922,1,0.5792,0.471,0.0888,-0.1854,-0.1738,-0.058,-0.0888,-0.61,-0.4402,-0.2664,-0.1738,-0.0464,0.5598,0.525,0.1738,0.0424,0.1082,0.3012,0.3012,0.22,0.1274,-0.0232,-0.1042,-0.0154,-0.2394,-0.2432,-0.01,0.6072,0.7836,1,0.8878,0.9438,0.519,0.455,0.0742,-0.1302,-0.2264,-0.2224,-0.1584,-0.8276,-0.6312,-0.2626,-0.1784,0.026,0.471,0.5512,0.1864,0.2024,0.3066,0.3426,0.3588,0.2786,0.2906,0.1944,0.1544,-0.0902,-0.1624,0.1102,-0.062,0.5478,0.6918,1,0.8024,0.4304,0.1222,0.072,-0.2864,-0.2764,-0.4572,-0.4238,-0.283,-0.3334,-0.5176,-0.4808,-0.4472,-0.1222,-0.072,0.3602,0.6114,0.6148,0.4942,0.5376,0.4974,0.417,0.2998,0.0586,-0.0284,-0.052,-0.0016,0.196,-0.1782,0.786,0.837,0.932,1,0.2802,-0.0254,-0.3276,-0.365,-0.6298,-0.6434,-0.3616,-0.2666,-0.219,-0.1816,-0.1544,-0.1816,-0.0424,0.1544,0.219,0.5042,0.6978,0.691,0.674,0.725,0.725,0.6028,0.3446,0.2122,0.1952,0.1816,0.1646,0.122,1,1,0.9512,0.9512,0.317,-0.0732,-0.0244,0.0244,-0.0732,-0.4634,-0.4146,-0.3658,-0.2196,-0.2196,-0.0732,-0.0244,-0.0244,0.2196,0.4146,0.317,0.4146,0.317,0.317,0.5122,0.2196,0.317,0.317,0.1708,0.317,0.317,0.317,0.1112,0.6296,0.5926,1,0.963,0.4444,0.1852,0.1852,0.074,0.037,-0.1112,-0.037,-0.4074,-0.5926,-0.4074,-0.1852,0.1112,0.4074,0.6296,0.6666,0.4814,0.2962,0.4074,0.4074,0.5186,0.4074,0.4074,0.4074,0.2962,0.2592,0.2962,0.3704,0.0256,0.6154,0.7692,1,0.6924,0.7948,0.4358,0.4102,0.0512,-0.077,-0.282,-0.1538,-0.077,-0.7948,-1,-0.4872,-0.4102,0.0512,0.2052,0.3076,-0.1026,0.2564,0.641,0.5642,0.641,0.282,-0.077,0.2564,0.359,0.2564,0.2052,0.3076,-1,-1,-1,-1,-1,-0.9872,-0.99,-0.9754,-0.9456,-0.9614,-0.8782,0.6272,0.4076,0.1256,0.129,0.1672,0.0886,0.0424,0.0582,0.1858,0.2292,-0.2484,-0.6992,-0.9064,-0.9784,-0.9812,-0.9796,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9812,-0.9802,-0.8544,-0.3728,-0.3728,-0.7124,0.6064,0.4186,0.2272,0.3174,0.3974,0.2594,0.153,0.0518,0.201,0.2946,-0.2284,-0.6954,-0.853,-0.876,-0.884,-0.893,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.9734,-0.9134,0.6332,0.7,-0.05,-0.7576,-0.8076,-0.8026,-0.71,-0.7076,-0.689,-0.7846,-0.94,-0.9312,-0.9046,-0.94,-0.9434,-0.3534,-0.09,-0.0968,-0.13,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.1714,-0.1142,1,1,1,1,1,-0.6286,-0.8572,-0.9428,-0.9428,-0.9714,-1,-0.7714,-0.6,-0.4286,-0.4858,-0.2,-0.0572,-0.6858,-0.9142,-0.5142,-1,-1,-1,-1,-1,-1,0.3326,0.368,0.3952,0.4412,0.4768,0.5276,0.5936,0.6734,0.77,0.662,0.4908,0.4464,0.4062,0.3566,0.3102,0.2688,0.2518,0.2112,0.1834,0.3894,-0.68,-0.0118,-0.791,-0.3008,0.6962,1,0.6608,1,-0.5634,-0.3592,-0.162,-0.0916,-0.0422,0.014,0.014,0.0704,0.3802,0.2816,0.4154,0.4578,0.6268,0.6268,0.831,0.9366,0.838,0.9508,1,0.9084,0.7254,0.7536,0.7888,0.6338,0.6126,0.7958,0.6478,0.5634,0.5564,0.4508,0.2324,-0.183,-0.8876,-0.8224,-0.5798,-0.6214,-0.4556,-0.4734,-0.4082,-0.219,0.142,0.2072,0.3196,0.4024,0.6982,0.7514,0.6508,0.8758,1,0.8698,0.8284,0.7928,0.5976,0.568,0.6628,0.6804,0.6036,0.8876,0.8166,0.574,0.7042,0.781,0.4024,0.0414,-0.0186,0.216,0.1666,0.0864,0.0246,-0.074,0.074,0,0.3704,0.5494,0.5062,0.5864,0.9876,1,0.7038,0.7654,0.6604,0.4382,0.4198,0.4568,0.5556,0.4382,0.2902,0.216,0.1604,0.3024,0.3518,0.3456,0.1728,0,-0.0802,-0.6604,0.5188,-1,-1,1,-1,-1,-0.6,-0.3334,-1,-0.564,-0.3234,-0.3384,0.0676,-0.0076,-0.0226,-0.2932,-0.3082,-0.0526,0.609,1,0.639,0.6842,0.5038,0.4286,0.3534,0.6692,0.2932,0.203,0.2482,0.173,0.203,0.1278,0.2932,0.3082,-0.203,-0.218,-0.0828,0.0076,-0.218,-0.4736,-0.7444,'10'
0.0226,0.717,0.7548,1,0.9246,0.5736,0.3208,0.2226,0.0642,0.0754,-0.132,-0.0982,-0.2264,-0.4302,-0.0716,-0.0906,0.1472,0.5018,0.649,0.6982,0.6604,0.4452,0.566,0.668,0.8114,0.8566,0.6452,0.4114,0.3358,0.3584,0.434,0.5962,-0.1316,0.4018,0.5496,0.7442,0.9064,1,0.4378,0.2324,0.1316,-0.0018,0.0198,0.027,0.1388,-0.2288,-0.1496,0.0666,0.445,0.6864,0.6,0.5568,0.3766,0.4198,0.6144,0.6072,0.8162,0.7406,0.337,0.2504,0.081,0.2576,0.4306,0.51,-0.2076,0.2488,0.3928,0.5334,0.9794,1,0.4682,0.3482,0.132,-0.0394,0.0086,0.0464,-0.012,0.012,-0.091,0.1458,0.2658,0.5198,0.5678,0.5712,0.4374,0.4236,0.5368,0.6226,0.6364,0.4786,0.3584,0.0772,-0.0704,0.1046,0.2864,0.2762,-0.2118,0.267,0.4144,0.536,1,0.989,0.558,0.3812,0.035,-0.0902,-0.1454,-0.0498,-0.0608,-0.0534,-0.1786,-0.0902,0.1124,0.3738,0.3186,0.3812,0.3554,0.315,0.3592,0.5544,0.5212,0.3518,0.1012,0.024,-0.186,-0.0498,0.175,0.1676,-0.1086,0.4108,0.5736,0.7404,1,0.9768,0.4458,0.252,-0.0388,-0.2132,-0.217,-0.0466,-0.0658,-0.1162,-0.1512,0.0272,-0.1666,0.1086,0.372,0.5078,0.531,0.3838,0.4612,0.6318,0.7132,0.5814,0.3798,0.0776,-0.1318,0.0426,0.217,0.1822,-0.023,0.5978,0.7072,1,0.7954,0.6614,0.238,0.044,-0.2416,-0.2346,-0.3474,-0.3722,-0.231,-0.284,-0.284,-0.2664,-0.3016,-0.3052,-0.2522,0.0758,0.3086,0.4992,0.552,0.605,0.5838,0.4426,0.365,0.2592,-0.0052,-0.1464,0.157,0.2134,0.0016,0.8172,0.8402,0.9968,1,0.3442,0.3704,-0.0864,-0.1974,-0.3606,-0.3834,-0.4094,-0.3214,-0.266,-0.217,-0.1942,-0.217,-0.044,-0.0604,0.3148,0.6346,0.8532,0.7324,0.7978,0.8564,0.7554,0.677,0.3182,0.204,0.044,0.2332,0.292,-0.1052,0.8422,0.8422,0.2106,0.4736,0.1052,0,0,-0.1052,-0.1578,-0.6842,-0.2632,-0.1578,-0.3684,-0.0526,-0.3684,-0.1578,0.421,0.7894,1,0.7368,-0.1578,0.3684,0.4736,0.3158,0.9474,0.6316,0.7894,0.8422,0.421,0.1578,0.6316,0,0.6086,0.5652,1,0.913,0.4348,0.2174,0.174,-0.1304,-0.0434,-0.1304,0,-0.174,-0.6956,-0.3478,-0.3478,0.1304,0.3044,0.3914,0.5652,0.5652,0.174,0.4348,0.5652,0.7826,0.7392,0.5652,0.3914,0.2608,0.5218,0.6086,0.4348,-0.0136,0.5616,0.8356,1,0.8904,0.863,0.3424,0.2054,-0.1506,-0.3424,-0.3698,-0.2328,-0.2328,-0.1506,-0.315,-0.2876,-0.589,-0.178,-0.1232,0.1232,0.4794,0.5342,0.5342,0.452,0.5068,0.5068,0.452,0.2328,-0.0136,-0.3972,0.1232,0.2054,-1,-1,-1,-1,-1,-0.9852,-0.9844,-0.9878,-0.9514,-0.938,-0.95,0.5146,0.6166,0.4532,0.5666,0.5728,0.5006,0.4034,0.3122,0.3472,0.541,0.103,-0.7334,-0.944,-0.973,-0.9844,-0.9866,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9762,-0.9776,-0.8914,-0.5648,-0.2862,-0.3644,0.3664,0.571,0.6758,0.9222,0.861,0.7294,0.5848,0.3954,0.2368,0.4622,0.0284,-0.712,-0.8486,-0.9074,-0.9174,-0.9644,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9116,-0.8734,-0.8134,-0.39,0.6566,0.5332,-0.7276,-0.79,-0.675,-0.675,-0.7226,-0.7676,-0.7624,-0.7948,-0.93,-0.8856,-0.89,-0.7756,-0.179,-0.2656,-0.3022,-0.8522,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.1714,-0.6,1,1,1,1,1,-0.1714,-0.9428,-0.9714,-0.9142,-0.7714,-1,-0.3142,-0.1142,-0.3142,0,0.1142,-0.2572,-0.7714,-0.2858,-0.2858,-1,-1,-1,-1,-1,-1,0.4346,0.4556,0.4726,0.5078,0.5386,0.5806,0.646,0.7338,0.8368,0.744,0.553,0.5312,0.5206,0.5326,0.5156,0.5012,0.456,0.406,0.3672,0.5028,-0.68,-0.0236,-0.4694,-0.5302,0.4594,0.8002,0.6422,1,-0.541,-0.377,-0.2704,-0.2622,-0.1476,0.0492,0.0574,0.1312,0.205,0.3442,0.3524,0.3934,0.4672,0.7214,0.8688,0.795,1,0.7704,0.9262,0.9016,0.705,0.5574,0.4754,0.5246,0.4016,0.541,0.3524,0.4754,0.6804,0.5984,0.4426,0.0246,-0.8588,-0.7176,-0.5608,-0.6784,-0.655,-0.5294,-0.4196,-0.2392,-0.098,0.3412,0.2078,0.4432,0.702,0.7568,0.6156,0.8588,0.9922,1,0.851,0.7412,0.8196,0.7568,0.7334,0.6236,0.5372,0.6,0.7804,0.8824,0.8196,0.851,0.6236,0.2314,-0.7464,-0.6808,-0.3616,-0.568,-0.3708,-0.5118,-0.4836,-0.2018,0.0234,0.4648,0.5118,0.1924,0.7276,1,0.7276,0.5212,0.6338,0.6996,0.568,0.5492,0.5212,0.23,0.2676,0.3896,0.2958,0.2676,0.3428,0.5024,0.446,0.4272,0.399,0.0704,0.3004,-1,-1,1,-1,-1,-0.6,-0.5,-1,-0.3948,0.1184,0.1448,0.0526,0.1184,-0.0658,-0.1052,0.1578,0.1052,0.6448,0.8816,1,0.9342,0.8552,0.4606,0.4474,0.5,0.421,0.1184,0.1316,0.0526,0.171,0.1578,0.1184,0.2236,-0.0658,-0.0394,-0.25,-0.2368,0.0922,-0.1578,-0.3026,'10'
0.0534,0.8978,0.92,0.9556,0.9466,0.9956,1,0.3912,0.3112,-0.0666,-0.08,0.0088,0.0444,0.12,0.1378,0.4,0.52,0.8934,0.9022,0.8756,0.7912,0.6934,0.7288,0.7734,0.8266,0.6178,0.5244,0.3512,0.4044,0.3112,0.2712,0.3378,-0.0496,0.5602,0.5212,0.766,0.7022,1,0.8404,0.546,0.3476,0.1666,0.0106,0.149,-0.1914,-0.2164,0.1276,0.2164,0.5142,0.578,0.656,0.6632,0.2978,0.266,0.5496,0.5178,0.4256,0.3546,0.3086,0.2128,0.2908,0.1666,0.2128,0.078,-0.054,0.5714,0.5174,0.7644,0.803,1,0.7528,0.6178,0.2626,0.2008,-0.0386,0,-0.6526,-0.359,0.2316,0.1776,0.5136,0.4826,0.8262,0.6756,0.1352,0.2934,0.444,0.6564,0.776,0.4016,0.4556,0.139,0.1506,-0.085,-0.085,-0.0694,0.0382,0.7102,0.6418,0.9598,0.8108,1,0.7706,0.5734,0.2314,0.2032,-0.006,0.0824,-0.4608,-0.4004,0.1428,0.1228,0.4286,0.3642,0.843,0.7424,0.3522,0.34,0.5654,0.6298,0.8108,0.5372,0.4406,0.3158,0.4246,0.2234,0.2756,0.171,0,0.6568,0.6162,1,0.8966,0.69,0.5572,0.2656,0.0996,-0.037,-0.2288,-0.0406,-0.2804,-0.2472,-0.3026,-0.1992,0.0258,0.1328,0.4798,0.5756,0.6274,0.6974,0.583,0.6346,0.642,0.642,0.2878,0.0848,0.1586,0.1108,0.3248,0.2988,-0.18,0.6292,0.647,0.9786,1,0.3012,0.1444,-0.3262,-0.2478,-0.5188,-0.4224,-0.3548,-0.173,-0.2762,-0.098,-0.18,-0.0268,-0.009,0.2442,0.319,0.5116,0.5864,0.3548,0.4866,0.5472,0.533,0.3904,0.319,0.2942,0.1836,0.237,0.1622,-0.4562,0.863,1,0.4946,0.546,0.3234,0.105,-0.015,-0.4604,-0.379,-0.4904,-0.2934,-0.2292,-0.272,-0.4048,-0.3362,-0.272,-0.2034,0.0706,0.3362,0.7002,0.6788,0.606,0.6188,0.7088,0.6316,0.4776,0.2334,0.2034,0.2462,-0.1006,0.0878,0,0.85,0.9,0.7,0.7,0.45,0.2,-0.05,-0.6,-0.75,-0.05,0.05,0.05,-0.05,-0.05,0.1,0.7,0.8,0.95,1,0.7,0.55,0.7,0.75,0.55,0.45,0.55,-0.05,0.25,0,0,0.15,-0.0222,0.8222,0.8666,0.8666,0.9112,0.9112,1,0.6,0.2888,-0.1112,0.0222,-0.0222,0.0666,0.2,0.3778,0.4666,0.6,0.6888,0.8222,0.6444,0.6888,0.4222,0.7334,0.7334,0.9112,0.7778,0.4666,0.3334,0.2444,0.1556,0.2444,0.4222,-0.1,0.6,0.6,1,0.98,0.44,0.34,0.04,-0.02,-0.2,-0.24,-0.22,-0.2,-0.16,-0.14,-0.08,-0.04,0.08,0.1,0.4,0.42,0.44,0.54,0.84,0.92,0.58,0.58,0.24,0.34,-0.02,0.16,0,-1,-1,-1,-0.983,-0.984,-0.8324,-0.8046,-0.6692,-0.725,-0.8334,-0.8088,0.2674,0.4576,0.5194,0.4958,0.4484,0.4764,0.583,0.8258,0.9272,0.2284,-0.1734,-0.7936,-0.9644,-0.9686,-0.9712,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9732,-0.978,-0.1976,-0.4292,-0.6454,-0.6544,-0.729,-0.6878,0.2848,0.662,0.7684,0.7666,0.6842,0.6036,0.6084,0.7762,0.8716,0.1468,-0.2692,-0.794,-0.8824,-0.9116,-0.9296,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.88,-0.9968,-0.4734,-0.11,-0.49,-0.47,-0.16,-0.1968,-0.8316,-0.7858,-0.8,-0.8,-0.8058,-0.8026,-0.8456,-0.8534,-0.8384,-0.8908,-0.9358,-0.5242,-0.2208,-0.3542,-0.4408,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,0.9428,0.5142,-0.7714,-0.8286,0.4572,1,-0.5714,-0.9142,-0.8572,-1,-0.9142,-0.8286,-0.8286,-0.5428,-0.2572,0.0572,-0.0572,-0.5142,-0.7714,-0.6572,-1,-1,-1,-1,-1,-1,-1,0.707,0.7288,0.7424,0.753,0.7806,0.8054,0.831,0.8606,0.8668,0.6878,0.2566,0.264,0.2584,0.285,0.285,0.2474,0.2388,0.2248,0.2622,0.4764,-0.7734,-0.1412,-0.7552,-0.215,0.3636,0.529,0.6448,1,0.0396,0.1526,0.3672,0.1714,0.307,0.3108,0.4012,0.499,0.45,0.6308,0.9812,1,0.9774,0.8268,0.6346,0.5178,0.7364,0.725,0.6798,0.7062,0.8192,0.887,0.7476,0.4048,0.42,0.2956,0.273,0.3634,0.2204,0.2204,0.2128,-0.0998,0.2866,0.2008,0.1346,0.2358,0.1228,0.0566,0.2164,0.154,0.4152,0.8636,1,0.692,0.7504,0.618,0.345,0.4074,0.7388,0.3724,0.2124,0.1424,0.2592,0.3528,0.3412,0.1346,-0.1034,-0.1424,0.0098,-0.0058,0.0058,0.0214,-0.228,-0.5478,0.0462,0.0986,0.1468,0.4124,0.2556,0.344,0.3682,0.3682,0.5694,0.9518,0.7988,0.9758,1,0.7988,0.4406,0.5774,0.5856,0.513,0.2152,0.1872,0.2194,0.4124,0.328,0.0986,-0.155,-0.348,-0.32,-0.324,-0.2516,-0.155,-0.2756,-0.658,1,-1,-1,1,-1,-1,-1,0.1334,-1,-0.568,-0.472,-0.184,-0.04,0.072,0.072,0.024,0.12,0.136,0.68,0.984,0.856,1,1,0.232,0.136,0.424,0.376,-0.392,0.136,0.056,0.024,0.168,0.184,-0.008,-0.2,-0.328,-0.344,-0.376,-0.056,-0.12,-0.488,'11'
-0.0062,0.8044,0.7964,0.939,0.8982,1,0.9552,0.3972,0.2586,0.051,-0.055,0.108,0.0306,0.0468,-0.0672,0.0712,0.2668,0.4664,0.6782,0.8044,0.6334,0.662,0.666,0.7148,0.5356,0.6334,0.5194,0.2506,0.283,0.3156,0.3402,0.4908,-0.0956,0.454,0.4018,0.7148,0.8296,1,0.7634,0.4782,0.2208,0.2974,0.0574,0.0608,0.0504,0.0122,-0.4018,-0.1444,0.1686,0.4434,0.6486,0.4644,0.3008,0.346,0.44,0.5444,0.5966,0.186,-0.0296,0.1234,0.1408,0.2592,0.2,0.3182,-0.1722,0.3406,0.3992,0.608,0.8902,1,0.5458,0.4542,0.2528,0.2014,-0.0256,-0.1648,0.0184,-0.26,-0.3882,-0.1466,-0.0952,0.4542,0.4212,0.5092,0.3736,0.3076,0.3664,0.4946,0.1356,0.1466,-0.088,-0.0622,0.1832,0.1026,0.2272,0.1428,-0.125,0.4054,0.5228,0.7348,0.909,1,0.4546,0.394,0.216,0.125,-0.0228,-0.1022,0.0682,-0.1478,-0.0606,-0.4054,-0.1818,0.2614,0.4508,0.7462,0.5834,0.2878,0.4848,0.5416,0.591,0.572,0.019,-0.106,-0.034,0.0304,0.1818,0.5114,-0.0386,0.5908,0.7298,1,0.803,0.942,0.4864,0.3514,0.0386,0.0154,-0.1158,-0.2046,-0.0888,-0.251,-0.054,-0.3244,-0.2896,-0.0966,0.1468,0.6872,0.6602,0.6448,0.5676,0.7182,0.8302,0.8648,0.3784,0.1814,-0.0116,0.1042,0.2934,0.3706,-0.1564,0.6436,0.6706,1,0.99,0.4454,0.21,-0.21,-0.2638,-0.553,-0.6268,-0.3512,-0.2034,-0.1394,-0.0958,-0.0118,-0.1126,-0.0622,-0.0084,0.2572,0.4218,0.5462,0.61,0.6268,0.7042,0.6606,0.4622,0.1194,0.042,-0.0992,0.0118,0.1126,-0.9098,0.7568,1,0.6902,0.6236,0.5844,0.0274,0.1254,-0.1254,-0.455,-0.5334,-0.455,-0.3098,-0.2156,-0.2862,-0.1334,-0.1764,-0.2706,-0.102,0,0.4666,0.5334,0.5138,0.647,0.753,0.7138,0.5412,0.0588,-0.1372,0.0666,0.0902,0.2746,0.1162,0.9534,1,0.814,0.814,0.628,0.5348,0.1162,0.0698,-0.1162,-0.0232,0.1628,0.0232,0.3024,0.3488,0.3488,0.628,0.721,0.6744,0.721,0.721,0.8604,0.9534,0.6744,0.4418,0.5348,0.6744,0.4418,0.3954,0.3954,0.2558,0.5348,0.1482,0.7778,0.7778,0.926,0.926,0.963,1,0.5556,0.4814,0.074,0.1852,0.1112,0.1112,0.1852,0.2592,0.2222,0.3334,0.4814,0.5926,0.8888,0.8148,0.6666,0.6296,0.6666,0.7038,0.5926,0.7038,0.4074,0.4814,0.4444,0.3704,0.6296,-0.0886,0.5444,0.6962,1,0.7216,0.7468,0.3164,0.2152,-0.2152,-0.1392,-0.3418,-0.3164,-0.3418,-0.3164,-0.1646,-0.2658,-0.2912,-0.3924,-0.2912,0.4684,0.6202,0.5696,0.7216,0.7722,0.7468,0.7974,0.6962,0.1646,-0.2406,0.1646,0.0886,0.2912,-1,-1,-1,-1,-0.9844,-0.9834,-0.8062,-0.7528,-0.807,-0.8364,-0.7914,0.5012,0.696,0.8512,0.9532,0.989,0.8998,0.7584,0.673,0.8484,0.2916,-0.152,-0.6334,-0.9422,-0.9742,-0.978,-0.9788,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9776,-0.9786,-0.7388,-0.6318,-0.7402,-0.7596,-0.7712,0.1686,0.5866,0.7742,0.8966,0.9492,0.8194,0.538,0.2792,0.4178,-0.0672,-0.41,-0.714,-0.896,-0.9208,-0.9412,-0.9696,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9434,-0.98,-0.7034,0.2,-0.1168,-0.1868,-0.18,-0.803,-0.7676,-0.7126,-0.7176,-0.7176,-0.7326,-0.8676,-0.8976,-0.8576,-0.935,-0.905,-0.7134,-0.1534,-0.1234,-0.3468,-0.9268,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5142,1,1,1,1,0.2286,0.3142,0.9714,-0.4572,-0.8858,-0.8572,-0.8,-1,-0.8286,-0.7714,-0.6858,-0.5428,-0.4286,-0.0858,-0.1428,-0.6572,0.1714,0.0858,-1,-1,-1,-1,-1,-1,0.7474,0.7664,0.7816,0.8032,0.8204,0.839,0.8636,0.9016,0.9212,0.7696,0.438,0.4542,0.4718,0.469,0.4246,0.3934,0.3354,0.2984,0.2726,0.4756,-0.72,-0.0942,-0.7794,-0.397,0.2838,0.4268,0.549,1,0.039,0.4142,0.5286,0.2448,0.199,0.1808,0.2952,0.3364,0.3592,0.5882,0.8582,0.8032,0.9268,0.9406,0.8536,0.707,0.8628,0.8124,0.8764,1,0.9954,0.968,0.8124,0.6568,0.6934,0.6248,0.4828,0.4966,0.3272,0.286,0.0618,-0.2082,-0.0282,0.122,0.2724,0.4508,0.3192,0.1126,0.1738,0.2442,0.4508,0.6808,0.9812,1,0.953,0.709,0.615,0.6292,0.9342,0.4414,0.2442,0.3522,0.4272,0.4976,0.4038,0.2112,0.1408,0.0846,0.1032,0.277,0.3098,0.2582,0.0658,-0.0986,-0.0994,0.1676,0.3508,0.5706,0.2774,0.0628,0.1308,0.0838,0.466,0.8168,0.9058,0.8324,1,0.7854,0.4764,0.4346,0.7278,0.6336,0.246,0.1938,0.0472,0.2828,0.1832,0.1832,-0.0994,-0.178,-0.3822,-0.1832,-0.157,-0.3142,-0.309,-0.5602,-0.0576,-1,-1,1,-1,-1,-0.8,-0.1,-1,-0.4852,-0.103,-0.2058,-0.0588,-0.25,-0.2058,-0.1176,-0.0148,-0.2058,0.5442,1,0.7648,0.8824,0.6324,0.4264,0.397,0.5736,0.4852,0.0588,0.1618,0.147,0.103,0.1764,0.1912,0.1324,-0.1324,0.0736,-0.103,-0.147,-0.0736,-0.4412,-0.8236,'11'
0.0038,0.7004,0.6304,0.8132,0.7744,1,0.8678,0.6654,0.3814,0.1946,-0.0078,0.0156,-0.0156,0.354,0.6576,0.5486,0.4358,0.1946,0.039,-0.0038,0.0466,0.0116,0.0116,0.074,-0.0622,-0.144,-0.0078,-0.0234,0.0312,-0.0894,-0.2178,0.0466,-0.0556,0.5332,0.4326,0.6984,0.8564,1,0.8384,0.9066,0.4722,0.447,0.0844,-0.0162,0.0198,0.4686,0.6446,0.4398,0.5512,0.1418,0.1778,-0.0342,-0.0736,0.0198,0.0736,0.271,0.1024,0.009,-0.1886,-0.167,-0.5152,-0.4902,-0.3536,-0.2818,-0.0946,0.4842,0.473,0.692,0.8702,0.974,1,1,0.5548,0.4472,0.2468,0.0612,0.1392,0.4916,0.5584,0.2654,0.232,0.0612,-0.065,-0.0612,-0.3024,-0.2244,0.0426,0.2208,0.2096,0.217,-0.0278,-0.1466,-0.0612,-0.332,-0.2654,-0.2244,-0.0964,0.4572,0.4822,0.6822,0.9108,1,0.9322,0.9392,0.6392,0.5642,0.5572,0.4108,0.525,0.1642,-0.1964,-0.2072,-0.2322,-0.2642,-0.3536,-0.1714,-0.3858,-0.2,-0.3892,-0.1,-0.0858,-0.1572,0.0322,-0.0964,0.0036,-0.3178,-0.4036,-0.4322,-0.1136,0.4794,0.4322,0.7666,0.7224,1,0.8202,0.7318,0.5206,0.6498,0.5048,0.53,0.2114,0.0788,-0.1798,-0.1924,-0.4258,-0.5488,-0.5868,-0.5174,-0.41,-0.3502,-0.2114,0.0914,0.2996,0.243,0.0568,-0.0978,-0.1672,-0.3186,-0.2744,-0.1324,-0.212,0.6264,0.6734,0.9372,1,0.7362,0.8368,0.4788,0.4662,0.3564,0.0676,-0.2748,-0.2748,-0.2748,-0.2936,-0.3156,-0.3344,-0.4128,-0.3972,-0.3626,-0.2872,-0.2558,-0.1366,0.0236,0.2056,0.2434,0.1554,0.0486,-0.1302,-0.2654,-0.237,-0.0958,-0.7088,0.7088,0.9052,0.5614,1,0.9192,0.4948,0.5824,0.3228,0.4386,0.2036,-0.2316,-0.1684,-0.379,-0.5368,-0.6562,-0.6176,-0.6176,-0.6842,-0.5122,-0.5192,-0.4842,-0.3964,-0.365,-0.2492,-0.1158,-0.0808,-0.1018,-0.2808,-0.5192,-0.4948,-0.2,0.2272,1,1,0.909,0.9546,0.9546,0.7272,0.8182,0.6818,0.2728,0.2728,-0.409,0.1818,0.6818,0.8182,0.7728,0.6364,0.0454,0.2728,0.1818,0.2728,0.2272,-0.2272,-0.0454,0.0454,0.0454,0.409,0.3182,0.3636,0.3182,-0.0454,0.091,-0.091,0.5454,0.5,0.6818,0.8182,1,0.8636,0.5454,0.3636,0.1818,0.0454,0.091,-0.2272,-0.1818,0.591,0.591,0,-0.1364,-0.409,-0.1818,-0.0454,-0.0454,-0.091,-0.0454,-0.0454,-0.1818,-0.1818,-0.2728,-0.2272,-0.5454,-0.2728,0,-0.1158,0.6632,0.6842,1,1,1,1,0.5368,0.621,0.4736,0.4316,-0.2,0.0106,-0.1158,-0.0526,-0.2,-0.1368,-0.3264,-0.2632,-0.621,-0.0316,-0.0948,0.0316,-0.0948,0.221,0.1578,0.0316,-0.0106,-0.1368,-0.2632,-0.2422,0.1158,-1,-1,-1,-1,-1,-1,-1,-0.9846,-0.9854,-0.9734,-0.5824,0.531,0.6212,0.6598,0.6418,0.6212,0.7234,0.9502,0.866,0.714,0.8308,-0.0104,-0.707,-0.8892,-0.9424,-0.9622,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9826,-0.9778,-0.9462,-0.4702,0.3358,0.3914,0.4684,0.5042,0.5732,0.6178,0.9254,0.7954,0.4716,0.5926,-0.2844,-0.7692,-0.8766,-0.9066,-0.9144,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9628,-0.94,-0.8668,-0.6368,-0.74,-0.6926,-0.71,-0.7176,-0.72,-0.72,-0.7776,-0.8424,-0.8912,-0.889,-0.9712,-0.98,-0.69,-0.66,-0.64,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4286,-0.8286,1,1,1,-0.3428,-0.7142,-0.8858,-0.7714,-0.7428,-0.7428,-0.7142,-0.4858,-0.0858,-0.1142,-0.3714,-0.4286,-0.8858,-0.9714,-1,-1,-1,-1,-1,-1,-1,0.8716,0.865,0.8768,0.9044,0.9196,0.937,0.96,0.9854,1,0.9938,-0.6876,-0.6848,-0.6992,-0.6978,-0.6848,-0.6766,-0.6692,-0.6914,-0.6492,-0.3112,-0.72,-0.0352,-0.3662,-0.0154,0.391,0.478,0.3818,0.125,-0.2464,-0.0724,0.6522,0.7102,0.4202,0.1884,0.6232,0.826,0.826,0.6812,0.855,0.6812,0.826,1,0.7972,0.7102,0.826,0.826,0.5362,-0.0144,0.0144,0.0144,-0.5362,-0.1304,-0.3334,-0.3624,-0.3914,-0.1304,-0.3334,-0.4202,-0.0724,-0.4202,-0.0186,0.1852,0.7592,0.9814,0.5556,0.2222,0.5186,0.963,1,0.7222,0.7592,0.7962,0.7038,0.9074,0.7778,0.5556,0.5556,0.4814,0.2962,0.1852,0,-0.037,-0.2962,0.1482,-0.4074,-0.426,-0.3704,-0.3334,-0.1852,-0.1852,-0.3148,-0.5,0.6082,0.7972,0.8648,1,0.554,0.3918,0.3918,0.6622,0.7432,0.6216,0.3244,0.581,0.6082,0.7838,0.6216,0.3378,0.4054,0.473,0.1486,0.0946,0.0676,-0.2028,-0.0136,-0.0676,-0.1756,-0.2162,-0.2432,-0.2162,-0.1486,-0.1082,-0.3244,-0.7162,0.3798,-1,-1,1,-0.8,-1,-0.8,-0.7334,-1,0.0526,-0.0176,0.228,0.4736,1,0.7544,0.5964,0.2456,0.2106,-0.1052,0.1754,-0.2106,-0.0176,0.1228,0.1228,0.228,0.3508,0.1052,0.2106,-0.0702,0.1754,0.5264,0.3684,0.2106,0.2982,0.4736,0.614,-0.0702,0.0176,-0.0878,-0.2456,-0.4386,'12'
-0.0074,0.6144,0.5666,0.8146,0.734,1,0.8684,0.6412,0.408,0.1868,-0.0702,-0.0464,0.145,0.2884,0.4828,0.5516,0.3124,0.2736,0.0732,0.0732,-0.0074,-0.0642,0.0672,0.2616,0.4828,0.423,0.4948,0.3424,0.1808,0.0822,0.2018,0.2706,-0.0848,0.5,0.4304,0.6606,0.8272,1,0.7878,0.8818,0.406,0.3394,-0.009,-0.0424,-0.0696,0.303,0.6242,0.491,0.4546,0.1728,0.0758,-0.2484,-0.2666,-0.1606,-0.0152,0.306,0.3758,0.5394,0.4334,0.0878,-0.0696,-0.0788,-0.1364,-0.106,-0.1018,0.4538,0.3766,0.5896,0.818,0.929,0.9784,1,0.4074,0.3456,0.1018,-0.0494,-0.0896,0.3704,0.4352,0.2686,0.2746,0.037,-0.0586,-0.1018,-0.2346,-0.284,-0.2006,-0.1636,0.253,0.2624,-0.0186,-0.037,-0.1698,-0.253,-0.324,-0.253,-0.1348,0.3802,0.3384,0.536,0.7544,0.8264,1,0.976,0.4192,0.3144,0.2634,0.1886,0.1228,0.027,0.018,-0.027,-0.1108,-0.1916,-0.3652,-0.2934,-0.3562,-0.2874,-0.1258,-0.0598,0.039,-0.0688,-0.1916,-0.2574,-0.2156,-0.3892,-0.4312,-0.461,-0.0714,0.5058,0.42,0.6942,0.8486,1,0.8914,0.9514,0.5914,0.5886,0.5686,0.4972,0.2342,-0.0542,-0.2858,-0.3828,-0.4372,-0.5028,-0.4628,-0.5114,-0.3742,-0.2228,-0.0886,0.0086,0.06,0.0342,-0.1286,-0.2628,-0.2886,-0.2686,-0.3342,-0.2172,-0.2696,0.7682,0.8434,0.887,1,0.7798,0.6928,0.4,0.3362,0.3334,0.287,0.1682,0.1508,0.084,0.0202,-0.1246,-0.2608,-0.3826,-0.3798,-0.4028,-0.2812,-0.3218,-0.2348,0.026,0.2898,0.3884,0.2116,-0.1276,-0.0608,-0.1044,-0.1218,0.0928,-0.821,0.5654,1,0.8306,0.802,0.9904,0.556,0.5654,0.6198,0.3226,0.1342,0.0352,-0.1438,-0.3322,-0.4536,-0.5336,-0.5654,-0.5464,-0.5654,-0.5048,-0.4856,-0.687,-0.7156,-0.6102,-0.4282,-0.2332,-0.131,-0.0608,-0.1854,-0.4504,-0.6422,-0.294,0,0.6086,0.5652,0.8696,0.8696,1,0.8696,0.5218,0.3914,0.3044,0,0.087,0.3044,0.3478,0.3044,0.2174,0.1304,0.1304,0.0434,-0.0434,-0.3914,0,0.1304,0.2608,0.2608,-0.0434,0.2608,0.4348,0.4348,0.3914,0.4348,0.4348,-0.0232,0.628,0.5348,0.8604,0.8604,1,0.9534,0.5814,0.4418,0.0232,0.1162,0.2558,0.2094,0.5348,0.4418,0.4884,0.4418,0.2094,0.0698,0.1628,0.0232,0.0698,0.0232,0.2558,0.721,0.6744,0.4418,0.3488,0.0232,0.2094,0.0232,0.2558,-0.0344,0.7702,0.816,0.908,0.931,0.954,1,0.4942,0.5632,0.6092,0.7242,0.3104,0.4482,0.1264,0.1954,-0.1264,-0.3564,-0.4712,-0.5862,-0.3334,-0.0804,-0.1034,0.1724,0.1724,0.5862,0.5402,0.0344,-0.1034,-0.0344,-0.0114,-0.2184,-0.0344,-1,-1,-1,-1,-1,-1,-1,-1,-0.9816,-0.9824,-0.307,0.685,0.971,0.9334,0.6842,0.5192,0.5482,0.6008,0.6018,0.2062,0.1728,-0.2658,-0.7754,-0.9658,-0.9676,-0.9754,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9742,-0.9746,-0.3218,0.4776,0.8476,0.7836,0.5774,0.5606,0.646,0.6236,0.5174,-0.0234,-0.063,-0.4136,-0.8212,-0.941,-0.9488,-0.9484,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.9334,-0.8534,-0.84,-0.749,-0.752,-0.752,-0.764,-0.774,-0.772,-0.7866,-0.8782,-0.8782,-0.9342,-0.9156,-0.7722,-0.6422,-0.7222,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,-0.8858,-0.8858,-0.5428,-0.6286,-0.6858,-0.7428,-0.6,-0.2,-0.5714,-0.1142,0.0286,-0.3142,-0.9428,-0.8286,-1,-1,-1,-1,-1,-1,-1,0.904,0.9148,0.9206,0.9272,0.9494,0.9628,0.9812,1,1,1,-0.0352,-0.0876,-0.0964,-0.1038,-0.1818,-0.163,-0.1554,-0.11,-0.2696,-0.2678,-0.72,0.153,-0.01,0.272,0.4414,0.4856,0.7586,1,0.238,0.5238,0.619,0.7142,0.762,0.6666,0.7142,0.762,0.762,0.5238,0.619,0.7142,0.9524,0.9524,1,0.9048,0.9048,0.8572,0.5714,0.6666,0.5238,0.7142,0.381,0.4286,0.5238,0.5238,0.381,0.2858,0.238,0.0952,0.1428,-0.0476,0.26,0.52,0.82,0.78,0.4,0.38,0.42,0.74,0.7,0.44,0.42,0.66,1,0.94,0.78,0.78,0.68,0.62,0.28,0.3,0.3,0.16,0.18,0.26,-0.2,-0.56,-0.3,-0.36,-0.08,-0.02,-0.3,-0.82,0.6482,0.8704,0.9814,1,0.574,0.426,0.537,0.3888,0.4814,0.426,0.3518,0.537,0.3334,0.7592,0.4814,0.4814,0.5186,0.3518,0.1482,0.0556,-0.037,-0.0926,-0.0186,0.2592,-0.1112,-0.2222,-0.2222,-0.2962,-0.1296,0.0926,-0.1482,-0.2592,1,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.4406,-0.0508,0.2034,0.5594,0.2372,0.305,0.322,0.2372,0.1694,0.1864,0.2372,-0.0678,0.1186,0.1016,0.0678,-0.0508,-0.0848,0.1016,0.2712,0.2204,0.5424,1,0.305,0.2882,0.1016,0.1864,0.0678,0.0678,-0.2882,-0.1016,-0.2542,-0.678,'12'
0.0326,0.697,0.6678,0.746,0.658,1,0.8632,0.531,0.355,0.241,0.0326,0.039,-0.039,0.101,-0.0554,0.0684,0.3746,0.518,0.4918,0.544,0.5016,0.5928,0.5276,0.5538,0.6808,0.6222,0.342,0.2834,0.3778,0.355,0.5048,0.4364,0.007,0.6436,0.571,0.5778,0.7924,1,0.7302,0.5606,0.1314,0.1696,-0.1072,-0.1142,0.18,0.1212,0.1972,0.1764,0.4326,0.3494,0.3494,0.301,0.3426,0.3218,0.3668,0.5018,0.5122,0.4672,0.4014,0.3598,0.2352,0.4602,0.429,0.5224,0.0018,0.6366,0.5266,0.534,0.8458,1,0.5634,0.622,0.2074,0.178,0.0276,0.2074,0.4936,0.4348,0.5854,0.3028,0.2808,-0.156,-0.244,0.1192,0.0532,0.1964,0.3394,0.5266,0.2844,0.3358,-0.1412,-0.0678,0.0678,0.123,0.4238,0.3358,0,0.6132,0.4928,0.4964,0.7554,0.8796,0.697,0.719,0.4636,0.3942,0.4306,0.8212,1,0.6752,0.6496,0.0364,-0.4234,-0.6788,-0.5218,-0.1532,-0.2774,-0.051,0.3358,0.4598,0.0072,0.0146,-0.4598,-0.3722,-0.0036,0.1862,0.354,0.0912,-0.0206,0.6026,0.5294,0.558,0.8188,1,0.6916,0.7552,0.38,0.4244,0.4944,0.4532,0.5612,0.488,0.2306,0.116,-0.043,-0.2114,-0.4086,-0.5484,-0.574,-0.5898,-0.2274,0.078,0.1638,0.132,-0.1542,-0.167,-0.151,-0.0238,-0.1066,-0.3354,-0.45,0.8978,1,0.4302,0.3124,0.2102,0.5206,0.3006,0.2574,0.171,0.0294,-0.0806,-0.1278,-0.0452,-0.0334,-0.0884,0.0058,-0.222,-0.2612,-0.226,-0.3674,-0.446,-0.1944,0.0412,-0.167,-0.4538,-0.5246,-0.3124,-0.0412,0.1356,0.2024,-0.218,-0.9586,0.5442,1,0.7966,-0.6272,-0.7476,-0.3936,-0.2656,-0.3748,-0.45,-0.1902,-0.2016,-0.3898,-0.533,-0.6008,-0.6422,-0.469,-0.435,-0.5782,-0.3936,-0.3898,-0.4086,-0.4388,-0.4012,-0.4576,-0.7326,-0.8758,-0.597,-0.5368,-0.2392,-0.435,-0.3408,0,0.65,0.6,0.75,0.7,1,0.8,0.5,0.2,0.25,0.1,-0.1,-0.1,0.05,-0.3,-0.15,0.35,0.6,0.7,0.7,0.5,0.3,0.15,0.45,0.65,0.6,0.45,0.45,0.55,0.3,0.4,0.55,-0.05,0.7,0.7,0.75,0.75,1,0.9,0.5,0.35,0.2,0,0,-0.1,0.05,-0.05,0.2,0.25,0.6,0.7,0.85,0.5,0.65,0.65,0.75,0.55,0.55,0.05,0.1,0.55,0.6,0.5,0.65,0.037,0.8272,0.8272,0.9012,0.8518,1,1,0.4568,0.4814,0.3334,0.3828,-0.1852,0.0124,0.1852,0.2592,0.1852,0.3086,-0.0864,-0.037,-0.0618,-0.0124,-0.3828,-0.358,-0.0864,-0.0124,-0.2346,-0.284,-0.284,-0.0124,0.358,0.3334,0.0124,-1,-1,-1,-1,-1,-1,-1,-1,-0.9838,-0.9828,-0.3098,0.7574,0.9442,0.913,0.7348,0.489,0.4858,0.461,0.3612,-0.3548,-0.461,-0.3914,-0.7606,-0.9624,-0.97,-0.97,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.962,-0.9662,-0.0892,0.7328,0.9612,0.8238,0.6496,0.443,0.6292,0.5622,0.3634,-0.4712,-0.6094,-0.534,-0.8054,-0.9408,-0.9154,-0.8942,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.9468,-0.75,-0.7068,-0.7112,-0.7424,-0.7578,-0.7446,-0.7268,-0.7046,-0.8134,-0.969,-0.976,-0.94,-0.8968,-0.8134,-0.5734,-0.41,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,-0.7428,-0.8286,-0.5428,-0.7714,-0.7428,-0.6,0.3428,0.4572,-0.7428,-0.6572,-0.5428,-0.6572,-0.5428,-0.7714,-1,-1,-1,-1,-1,-1,-1,0.8346,0.8366,0.842,0.8384,0.845,0.8454,0.8604,0.8718,0.8824,0.714,0.384,0.3666,0.3588,0.4118,0.4182,0.3806,0.2918,0.1796,-0.1248,-0.389,-0.72,0.0706,0.3296,0.4656,0.6898,0.878,0.9098,1,-0.4042,0.0212,0.149,0.2766,0.234,0.149,0.2766,0.5744,0.7872,0.8298,0.8298,0.9148,1,1,0.9574,0.9574,0.9148,0.8298,0.7446,0.7872,0.7872,0.7022,0.532,0.3192,-0.149,0.1064,-0.0212,0.0212,-0.234,0.1064,-0.1064,-0.2766,0.0794,0.3492,0.6032,0.5874,0.2858,0.0794,0.1904,0.3492,0.8096,0.8412,0.762,0.7302,0.9524,1,0.7936,0.873,0.9048,0.5874,0.6666,0.6984,0.8254,0.7142,0.6508,-0.0318,0,0.0158,-0.508,-0.3174,-0.1746,0.127,0.1112,-0.254,0.6436,0.8812,0.9406,1,0.4456,0.3466,0.2872,0.2674,0.4852,0.7426,0.6436,0.5644,0.9208,0.7624,0.6436,0.604,0.5446,0.406,0.2278,0.3466,0.5644,0.4852,0.307,0.0892,-0.3268,-0.406,-0.3664,-0.3664,-0.4852,-0.0298,0.01,-0.1684,1,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.617,-0.234,-0.0638,0.2128,0.7234,0.6382,0.766,0.851,-0.0426,0.0426,-0.4042,-0.2978,-0.1914,0.1702,0.4894,0.3404,0.234,0.383,0.5744,-0.0426,0.1276,0.9148,1,0.383,0.2978,-0.4256,-0.0638,-0.2978,-0.5106,-0.5744,-0.6596,-0.7022,'13'
-0.064,0.5432,0.5042,0.585,0.7438,1,0.8608,0.3956,0.2144,0.326,0.103,0.2396,0.1922,0.1894,0.2172,0.2674,0.3398,0.5154,0.5766,0.5598,0.3872,0.3594,0.5988,0.6434,0.791,0.6658,0.674,0.5098,0.2506,0.4568,0.5432,0.5404,-0.1206,0.4442,0.3374,0.4656,0.8718,1,0.6,0.6122,0.4076,0.3558,0.1816,0.0962,0.3038,0.3038,0.4138,0.3068,0.255,0.2916,0.1756,0.1542,0.0992,0.252,0.4474,0.6092,0.6794,0.7832,0.5542,0.2184,0.029,0.2428,0.4656,0.4352,-0.0954,0.4506,0.3256,0.4736,0.852,0.921,0.852,0.8124,0.556,0.3882,0.3124,0.5428,0.6282,0.7632,0.7468,1,0.8422,0.2598,0.1282,0.2106,-0.0066,0.0526,0.523,0.4144,0.5986,0.4868,0.6382,0.3124,0.329,0.3848,0.319,0.1842,-0.0898,0.4682,0.3442,0.4748,0.8042,0.8826,0.889,0.8662,0.6476,0.5138,0.5628,0.9152,1,0.8402,0.8532,0.367,0.3018,-0.0114,-0.2104,-0.5236,-0.2332,-0.1648,0.2138,0.217,0.5792,0.4518,0.1126,0.0996,0.2006,0.0474,0.0278,-0.0832,0.2104,0.988,0.8918,0.8838,0.964,1,0.7516,0.98,0.7074,0.7796,0.7716,0.7996,0.7596,0.6754,0.475,0.3788,0.2986,0.1062,0.042,-0.1584,0.0622,0.01,-0.014,0.2666,0.2826,0.2946,0.03,0.046,0.491,0.535,0.2866,0.046,-0.3958,0.9062,1,0.3124,0.2188,-0.25,0.0764,0.2084,0.1944,0.0694,0.0624,0.007,-0.0452,0.0452,0.1216,0.0694,0.0972,-0.0208,-0.2638,0.1006,0.1632,0.0174,0.1528,0.1006,-0.2778,-0.4756,-0.2744,-0.198,0.132,0.243,0.1042,0.1528,-0.9304,0.5918,1,0.8102,-0.6044,-0.6012,-0.4684,-0.0792,-0.076,-0.2216,0.0664,-0.0728,-0.0918,-0.0696,-0.0664,-0.0886,-0.2658,-0.5284,-0.2406,0.0822,0.1614,-0.057,0.0728,0.0348,-0.2974,-0.3576,-0.4746,-0.4494,-0.2784,-0.1076,-0.0032,-0.193,-0.3024,0.4418,0.4884,0.3954,0.5814,0.5814,0.3954,0.3488,-0.1162,0.0698,-0.1162,0.0232,-0.2094,-0.0698,-0.0232,0.1162,0.3954,0.7674,0.721,0.721,0.3488,0.3024,0.4418,0.4418,1,0.9534,0.6744,0.5814,0.3954,0.3954,0.5348,0.4884,-0.1304,0.4782,0.4348,0.5218,0.6086,1,0.913,0.2174,0.174,0.2608,0.1304,0.174,0.1304,0.2174,-0.0434,0.0434,0.4348,0.3914,0.7392,0.7392,0.5652,0.4782,0.5218,0.6956,0.7826,0.6522,0.7392,0.6956,0.3478,0.5218,0.7392,0.7392,0.2132,1,0.9344,0.8032,0.7704,0.9344,0.7704,0.705,0.5082,0.705,0.4426,0.3442,0.6066,0.6394,0.1148,0.1476,0.2786,0.246,0.1804,0.082,0.4098,0.1476,0.0164,-0.0164,0.0492,-0.1804,-0.1804,-0.082,0.1804,0.2786,0.4426,0.2132,-1,-1,-1,-1,-1,-1,-1,-1,-0.983,-0.9854,-0.702,0.6876,0.9744,0.889,0.6356,0.4742,0.5074,0.5996,-0.02,-0.376,-0.4298,-0.3854,-0.7592,-0.965,-0.9624,-0.9514,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9786,-0.9786,-0.5822,0.65,0.9582,0.6996,0.4996,0.4746,0.5892,0.5734,-0.222,-0.6232,-0.6398,-0.6124,-0.833,-0.9466,-0.9536,-0.9322,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.9668,-0.6234,-0.689,-0.6978,-0.72,-0.692,-0.62,-0.644,-0.702,-0.932,-0.986,-0.97,-0.944,-0.8834,-0.61,-0.5968,-0.7468,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,-0.7142,-0.8,-0.6286,-0.7142,-0.6858,0.6858,1,-0.8,-0.6858,-0.6,-0.2286,-0.6,-0.9714,-0.7714,-1,-1,-1,-1,-1,-1,-1,0.9022,0.911,0.917,0.9304,0.9422,0.9612,0.97,0.9914,1,0.6958,0.4964,0.4892,0.4628,0.443,0.4168,0.3456,0.3186,0.2022,-0.159,-0.3898,-0.7066,0.1412,-0.561,0.2016,0.6696,0.8138,0.9764,1,-0.0256,0.282,0.5384,0.5384,0.3334,0.1282,0.077,0.4358,0.7436,0.8974,0.9488,1,0.9488,0.9488,0.8462,0.7436,0.8462,0.6924,0.4872,0.5384,0.5384,0.3334,0.3334,0.5898,0.5384,0.5898,0.5898,0.3846,0.282,0.077,0.0256,-0.3846,0.098,0.3138,0.6078,0.6078,0.1372,-0.0392,0.0196,0.1568,0.7058,0.7648,0.7254,0.745,1,1,0.6666,0.804,0.8236,0.196,0.0588,0.1764,0.1176,0.196,0.0588,-0.1372,-0.255,-0.255,-0.2746,-0.3334,-0.2352,-0.255,-0.1764,-0.6862,0.3846,0.6538,0.4038,0.3654,0.2884,0.2308,0.2692,0.4616,0.8076,0.8462,0.827,0.8654,1,0.9616,0.7692,0.6924,0.6924,0.4808,0.173,0.2308,0.327,0.423,0.2884,0,-0.2308,-0.5192,-0.5,-0.2884,-0.423,-0.2692,-0.2308,-0.4038,0.5716,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.3208,0.132,0.0944,0.2452,0.132,0.4906,0.8302,0.5472,0.3018,0.6982,0.6982,0.566,0.3396,0.3208,0.4528,0.4906,0.5284,0.2076,0.8302,0.6604,0.0944,1,0.6416,0.6038,0.4906,0.3208,0.283,0.2452,0.0566,0.151,0.0944,-0.7736,'13'
-0.082,0.5116,0.459,0.5766,0.7466,1,0.8392,0.5394,0.2582,0.2642,0.119,0.1622,-0.0046,0.0294,-0.2982,-0.0602,0.4282,0.4064,0.524,0.4096,0.082,0.116,0.252,0.252,0.357,0.524,0.5858,0.4004,0.3694,0.252,0.2426,0.2148,-0.0448,0.5464,0.4504,0.5272,0.8562,1,0.6326,0.6964,0.31,0.294,0.1214,0.0352,0.1884,0.0192,0.067,-0.2012,0.0766,0.7188,0.7284,0.46,0.4058,0.2588,0.1884,0.3226,0.444,0.54,0.198,0.2652,0.3068,0.2524,0.4472,0.3354,-0.0726,0.511,0.3726,0.5244,0.9156,1,0.6964,0.6662,0.3154,0.177,0.0994,0.1704,0.2782,0.2446,0.2512,0.2006,0.1366,0.2614,0.3254,0.4772,0.3052,0.3592,0.4198,0.376,0.5682,0.4198,0.4368,0.1704,0.0186,0.312,0.3288,0.538,-0.1044,0.435,0.313,0.4992,0.9422,1,0.6148,0.5794,0.2616,0.1268,0.0208,0.1718,0.2584,0.3354,0.3258,0.618,0.5314,0.6566,0.3772,-0.1492,0.0016,-0.0176,0.3516,0.2776,0.4736,0.7432,0.8684,0.4638,0.3322,0.0594,0.1524,0.4318,0.1602,0.914,0.8086,0.9062,0.8632,0.9922,0.539,0.2812,-0.1524,-0.1524,-0.3828,-0.1718,0.2852,0.543,0.836,1,0.7812,0.3672,0.336,0.1992,0.1406,-0.2852,-0.1796,0.1758,0.5586,0.746,0.7734,0.5898,0.3554,0.3242,0.3008,0.3594,-0.3132,0.9094,1,0.4,0.5736,0.083,-0.185,-0.385,-0.5962,-0.6226,-0.6302,-0.6716,-0.2792,0.3434,0.4264,0.385,0.3548,0.1886,0.0038,0.166,0.1358,0.0944,0,0.0038,-0.0226,-0.0754,-0.049,-0.3812,-0.6944,-0.7018,-0.4452,-0.0452,-0.866,0.613,1,0.7624,-0.3754,-0.4022,-0.3142,-0.1724,-0.2796,-0.41,-0.3602,-0.6974,-0.0422,0.2108,0.2874,-0.0154,-0.1034,-0.1878,-0.069,-0.0038,0.0536,-0.0996,-0.1916,-0.2796,-0.1992,-0.0652,-0.0344,-0.3716,-0.5862,-0.6514,-0.5786,-0.1226,0.074,0.5926,0.5186,0.7038,0.7038,1,0.963,0.5926,0.1852,0.4074,0.2962,0.4074,0.2592,0.2962,0.1852,0.2962,0.4814,0.3704,0.6666,0.6296,0.4814,0.4444,0.5926,0.4444,0.5556,0.7778,0.8148,0.6296,0.3334,0.4444,0.5926,0.4814,-0.0384,0.5,0.423,0.6154,0.6924,1,0.8846,0.5384,0.3076,0.3462,0.1924,0.3076,0.0384,0.1538,-0.3846,-0.0384,0.5384,0.5384,0.3462,0.3462,0.3462,0.2692,0.3462,0.3462,0.423,0.3076,0.6154,0.4616,0.423,0.3462,0.423,0.4616,0.1352,0.7568,0.6216,0.7568,0.7838,1,0.4864,0.3244,-0.2162,-0.1622,-0.7028,-0.2162,0.2432,0.4054,0.6756,0.7838,0.8648,0.2162,0.3514,0.2702,0.2432,-0.5136,-0.3784,0.2702,0.4324,0.7838,0.5136,0.4594,0.4594,0.5946,0.5946,0.5946,-1,-1,-1,-1,-1,-1,-1,-1,-0.983,-0.986,-0.3088,0.8894,0.9342,0.8686,0.7102,0.6304,0.6474,0.7232,0.012,-0.3018,-0.3994,-0.6146,-0.9154,-0.977,-0.978,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,-0.9714,-0.0162,0.9134,0.8236,0.826,0.6646,0.5978,0.626,0.707,-0.0262,-0.4806,-0.5686,-0.7256,-0.922,-0.962,-0.9588,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.9668,-0.8434,-0.7112,-0.7024,-0.7224,-0.72,-0.72,-0.72,-0.722,-0.888,-0.922,-0.902,-0.862,-0.8734,-0.8634,-0.7568,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,-0.7428,-0.8572,-0.9428,-0.8572,-0.2572,0.4,1,-0.3428,-0.4572,-0.5714,-0.5142,-0.8572,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.98,0.9812,0.9856,0.9828,0.9746,0.9802,0.9838,0.9848,0.988,0.6692,0.3066,0.3008,0.2998,0.3018,0.2916,0.2614,0.1974,0.1304,0.1276,-0.1118,-0.7066,0.1058,0.5306,0.538,0.99,0.972,0.9252,1,0.1818,0.5454,0.591,0.7272,0.6818,0.7272,0.591,0.8182,0.909,1,0.9546,0.909,0.909,1,0.8182,0.9546,0.7728,0.7728,0.7272,0.7272,0.8182,0.7272,0.6364,0.4546,0.409,0.1818,0.3636,0.1364,0.2272,0.091,0.1364,-0.409,0.376,0.584,0.744,0.76,0.472,0.44,0.44,0.488,0.968,1,0.84,0.712,0.856,0.856,0.776,0.712,0.728,0.648,0.44,0.664,0.856,0.856,0.76,0.36,0.04,-0.072,-0.168,-0.248,-0.104,0.2,0.232,-0.008,0.6116,0.8058,0.9418,1,0.4368,0.4758,0.4758,0.5146,0.9224,0.7282,0.7088,0.8252,0.8834,0.6504,0.5146,0.5922,0.631,0.5728,0.2816,0.3398,0.631,0.6116,0.5922,0.4174,-0.4758,-0.3592,-0.398,-0.3204,-0.3786,-0.0292,0.2428,0.068,1,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.2444,-0.1112,0.0666,0.3112,0.2222,0.3556,0.5778,1,0.7112,0.6444,0.7778,0.4666,0.4666,0.5556,0.4222,0.4666,0.7334,0.5778,0.9334,0.5778,0.3334,0.4222,0.5778,0.4666,0.5112,0.4888,0.2222,0.1112,0.2666,0.4444,-0.0444,-0.5334,'14'
-0.1218,0.4714,0.4126,0.6358,0.862,1,0.7886,0.5566,0.2188,0.1894,0.0102,-0.119,0.1218,0.0544,0.2658,0.1072,0.345,0.8884,0.9794,0.533,0.4566,0.4538,0.4038,0.5184,0.5154,0.4654,0.4068,0.5066,0.1954,0.298,0.4744,0.5712,-0.1474,0.3966,0.3172,0.5184,0.8754,1,0.5864,0.6118,0.3172,0.255,0.0198,-0.0396,0.1416,-0.0198,0.0794,0.119,0.1644,0.6998,0.626,0.51,0.374,0.323,0.153,0.238,0.2322,0.2946,0.4192,0.3768,0.0992,0.1104,0.2804,0.2946,-0.102,0.439,0.3542,0.5468,0.915,1,0.7308,0.711,0.3512,0.238,0.1416,0.1502,0.2634,0.1388,0.1614,0.1784,0.3144,0.6346,0.4816,0.4872,0.4022,0.4618,0.4306,0.408,0.4646,0.4362,0.4788,0.255,-0.068,0.2606,0.2804,0.4164,-0.099,0.4436,0.327,0.5278,0.9186,1,0.6472,0.6472,0.1994,0.1208,0.0638,0.0448,0.213,0.2348,0.3162,0.707,0.688,0.4546,0.2754,0.3242,0.1614,0.2294,0.2564,0.3216,0.753,0.734,0.6418,0.5414,0.2212,0.0664,0.0828,0.2022,0.155,0.95,0.9124,1,0.8968,0.9124,0.7684,0.3396,0.205,-0.2082,-0.3176,-0.1236,0.2332,0.5054,0.8342,0.9406,0.8904,0.5462,0.4178,0.4742,0.3052,0.0736,0.0234,0.0328,0.2864,0.7058,0.7246,0.5712,0.3428,0.1486,0.3302,0.4272,-0.6672,0.8578,1,0.3968,0.6776,0.2686,0.2028,0.1058,-0.3692,-0.48,-0.532,-0.5806,-0.4246,0.0642,0.1854,0.137,-0.1266,-0.1438,-0.0364,0.1092,0.2028,0.3484,0.2374,0.2306,0.2512,0.4246,0.4488,0.0572,-0.3656,-0.5564,-0.3796,-0.0642,-0.8808,0.6866,1,0.743,-0.1818,-0.0532,-0.2822,-0.0094,-0.1786,-0.2884,-0.1912,-0.3636,0.0126,0.1944,0.2602,0.232,0.0846,0.047,0.0126,0.1128,0.254,0.0344,0.0878,-0.047,-0.1442,-0.0032,0.0626,0.0062,-0.3606,-0.5142,-0.3574,-0.2068,-0.4286,0.1428,0.238,0.238,0.1428,0.4762,0.619,0.4762,0.1428,-0.1428,-0.1904,-0.3334,-0.1428,0.1428,0.381,0.4286,0.5238,0.8572,0.9048,0.6666,0.3334,0.238,0.6666,0.8096,0.9524,1,0.8572,0.4286,-0.1904,0.1904,0.5238,0.619,-0.1818,0.3636,0.409,0.5454,0.8182,0.909,0.6364,0.2728,-0.1364,0,0,-0.5454,-0.0454,0.2272,0.2728,0.091,0.3636,0.9546,1,0.7272,0.3636,0.5454,0.5,0.409,0.7728,0.909,0.7272,0.3182,0.4546,0.4546,0.2272,0.6364,0.1012,0.7304,0.663,0.8426,0.6854,1,0.7978,0.4832,0.2808,-0.1012,-0.3034,-0.0562,0.3034,0.4606,0.8652,0.9326,0.8426,0.8652,0.5956,0.618,0.191,0.146,-0.0112,-0.0112,0.191,0.6404,0.8876,0.7078,0.3034,0.1236,0.528,0.5506,-1,-1,-1,-1,-1,-1,-1,-1,-0.9852,-0.987,-0.967,0.4808,0.9148,0.9556,0.8314,0.6496,0.6156,0.5166,-0.1252,-0.454,-0.4826,-0.554,-0.846,-0.9678,-0.974,-0.9678,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.9816,-0.8184,0.6628,0.96,0.8624,0.6264,0.5078,0.5252,0.6398,-0.299,-0.5946,-0.6232,-0.7002,-0.8788,-0.9482,-0.9558,-0.9518,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.9668,-0.9168,-0.616,-0.716,-0.72,-0.718,-0.722,-0.7038,-0.642,-0.8874,-0.862,-0.8764,-0.88,-0.77,-0.5434,-0.3968,-0.4934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2,-0.6,1,1,-0.9142,-1,-0.9142,-0.9428,-0.5428,0.7142,0.5714,-0.6572,-0.6,-0.5142,-0.6858,-0.7142,-0.9714,-0.6572,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.766,0.2112,0.1822,0.1558,0.1052,0.1026,0.118,0.0972,0.1012,0.1802,0.0366,-0.7066,0.2588,-0.977,0.1716,0.6156,0.7988,0.9292,1,0.1008,0.0388,0.2094,0.5194,0.0232,0.1628,0.4884,1,0.628,0.4108,0.2714,0.3798,0.5504,0.2558,0.4264,0.659,0.1782,0.4728,0.3644,0.3798,0.5038,0.5038,0.3178,0.2714,0.3334,0.5814,0.628,0.3488,0.5194,0.1782,0.0698,-0.3644,0.1788,0.0464,0.1656,0.3908,0.404,0.7218,0.735,0.6822,1,0.5364,0.5496,0.404,0.51,0.1258,0.4438,0.5762,0.4966,0.7086,0.563,0.6292,0.351,0.5232,0.0994,0.4702,0.4172,0.4438,0.1788,0.3774,0.51,0.4304,0.245,-0.2848,-0.0744,-0.1404,0.438,0.8016,0.4214,0.5868,0.19,0.8512,1,0.5042,0.2396,0.7024,0.8016,0.372,0.5702,0.405,0.5868,0.3058,0.124,0.6034,0.4876,0.2728,0.4876,0.5206,0.7356,-0.0248,-0.0578,-0.2232,0.0744,0.0082,-0.2892,-0.7024,-0.9918,1,-1,-1,-1,-1,-1,-1,-1,-0.35,0.1334,0.05,0.35,0.0666,0.0166,0.4834,1,0.4666,0.6166,0.6666,0.2666,0.3666,0.3334,-0.0166,0.4,0.5,0.3,0.4834,0.3,0.15,0.5166,0.2666,0.7,0.6334,0.5334,0.1666,0.1334,-0.0666,0.1666,0.0166,-0.4,'14'
-0.1834,0.3176,0.4516,0.578,1,0.996,0.7554,0.6174,0.6332,0.4438,0.5424,0.9684,0.8896,0.6686,0.4082,0.215,0.0532,-0.0138,-0.065,0.0808,0.2742,0.3136,0.503,0.4556,0.2348,0.002,-0.1204,-0.0848,-0.1518,-0.0414,0.3018,0.2662,-0.1854,0.2836,0.44,0.571,1,0.9782,0.811,0.6254,0.6328,0.5818,0.5782,0.9018,0.749,0.4182,0.0654,0.0146,0.0728,-0.029,-0.269,0.011,0.0836,0.4654,0.4072,0,-0.1964,-0.1128,-0.4254,-0.4472,-0.3746,-0.1746,-0.091,0.04,-0.214,0.2316,0.435,0.5474,1,0.9684,0.628,0.4422,0.5474,0.607,0.593,0.6878,0.5508,-0.1158,-0.3474,-0.3228,-0.1438,-0.2596,-0.2772,-0.1368,-0.0632,0.028,0.0808,-0.0736,-0.2736,-0.1684,-0.1684,-0.1964,-0.0456,-0.0702,0.035,0.0878,-0.1862,0.27,0.5364,0.657,1,0.9562,0.5292,0.4744,0.5912,0.7664,0.7446,0.3832,0.2372,-0.0986,-0.4124,-0.657,-0.3832,-0.4744,-0.3394,-0.303,-0.1314,0.2372,0.1788,-0.124,-0.303,-0.646,-0.3212,-0.3284,-0.2336,-0.2008,-0.0802,0.1058,-0.0112,0.588,0.7266,1,0.794,0.854,0.5394,0.5918,0.8314,0.824,0.5918,0.3632,0.0338,-0.0412,-0.2996,-0.4644,-0.8128,-0.6404,-0.4944,-0.146,0.1236,0.337,0.3596,0.1424,-0.3034,-0.5356,-0.7416,-0.5468,-0.3146,-0.1836,0.045,0.2808,-0.2,0.629,0.6742,0.9646,1,0.4612,0.4484,0.571,0.6096,0.442,0.071,-0.2194,-0.1322,-0.2452,-0.387,-0.4806,-0.6064,-0.642,-0.7032,-0.3968,-0.3354,0.0388,0.0904,-0.0936,-0.4484,-0.6484,-0.6452,-0.6226,-0.5742,-0.3516,-0.1194,-0.2322,-0.8412,0.7556,1,0.6252,0.7678,0.7312,0.5968,0.7842,0.2708,0.1446,0.108,-0.3564,-0.222,-0.4338,-0.3442,-0.4256,-0.6294,-0.7394,-0.7148,-0.7882,-0.5152,-0.5112,-0.5724,-0.5764,-0.4746,-0.5112,-0.7842,-0.6578,-0.6456,-0.3604,-0.3808,-0.3564,-0.1364,0.3636,0.3182,0.591,0.8636,1,0.8636,0.5454,0.6364,0.5,0.4546,0.6818,0.909,0.8182,0.409,0.2728,0.2272,0.1364,0.1818,0.091,0.5,0.6818,0.591,0.409,0.409,0.2728,0.0454,0,0,-0.2728,0.2728,0.4546,-0.1666,0.25,0.375,0.5834,0.9584,1,0.75,0.6666,0.5834,0.5416,0.6666,0.9166,0.8334,0.7084,0.625,0.2916,0.0834,0.0834,0.1666,0.125,0.5,0.5834,0.4166,0.4584,0.3334,0.0834,-0.0834,0.0834,0.0834,0,0.4584,0.5416,0.0682,0.591,0.8182,1,0.75,0.909,0.6136,0.6136,0.841,0.7272,0.6364,0.4772,0.25,-0.0454,-0.0682,-0.4546,-0.7954,-0.4318,-0.1136,0.0682,0.2728,0.409,0.2954,0.2954,-0.341,-0.409,-0.909,-0.3182,-0.159,0,-0.0228,0.4318,-1,-1,-1,-1,-1,-1,-1,-1,-0.991,-0.9898,-0.67,0.4598,0.5062,0.6392,0.8042,0.9708,0.8308,0.4582,0.3524,0.3916,0.024,-0.57,-0.7898,-0.9564,-0.9766,-0.9808,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9864,-0.9854,-0.5854,0.8256,0.795,0.8262,0.85,0.9632,0.8344,0.473,0.192,0.166,-0.2044,-0.6614,-0.8112,-0.9364,-0.9522,-0.9486,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9068,-0.9134,-0.75,-0.7376,-0.7326,-0.735,-0.7226,-0.735,-0.7576,-0.8976,-0.9276,-0.9026,-0.9512,-0.9734,-0.92,-0.8,-0.7968,-0.7234,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,-0.6286,-0.8572,-0.8286,-0.9428,-0.8858,-0.4858,-0.4286,-0.3714,-0.1428,-0.4572,-0.2286,-0.2572,-0.8858,-0.9428,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.958,-0.8234,-0.8664,-0.8904,-0.906,-0.9278,-0.9508,-0.934,-0.8806,-0.8048,-0.6534,-0.6666,-0.0588,-0.4828,0.3584,0.923,0.8892,0.8668,1,0.0212,0.1914,0.532,0.9148,0.9574,0.8724,0.6596,0.8724,0.8724,0.7872,0.6596,1,1,0.8724,0.617,0.9148,0.9574,0.9148,0.5744,0.4042,0.3618,0.4042,0.4042,-0.0638,0.0638,0.0212,-0.0212,-0.149,0.149,-0.1064,-0.234,-0.234,0.2478,0.3578,0.7432,0.8716,0.7798,0.8166,0.8166,0.8716,0.688,0.5964,0.8532,1,0.9816,0.6698,0.3944,0.9082,0.8348,0.688,0.4496,0.2478,-0.1744,0.3212,0.3028,-0.1192,-0.3762,-0.266,-0.4496,-0.2844,-0.0642,-0.0276,-0.0458,-0.2478,0.579,0.7684,0.8106,0.9368,0.7264,0.7894,1,0.8526,0.3894,0.1578,0.5578,0.6422,0.5578,0.2,0.2422,0.5578,0.579,0.0948,0.3684,0.2842,-0.3052,0.0736,0.0736,-0.221,-0.5578,-0.3894,-0.4948,-0.4948,-0.579,-0.5578,-0.1578,-0.2,0.9662,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.2916,-0.2916,0.2708,1,0.9792,0.5834,0.9166,0.4584,0.3958,0.625,0.8334,0.2084,0.25,0.1042,0.7292,0.875,0.5416,0.4376,0.6666,0.4792,0.6042,0.6042,0.7708,0.4376,0.3958,-0.1042,-0.0416,0.0624,0,-0.0208,-0.0624,-0.6874,'15'
-0.0652,0.5296,0.4658,0.6844,0.8362,1,0.7512,0.8058,0.4598,0.5022,0.0288,0.2534,0.7026,0.6084,0.0592,-0.0652,-0.0198,-0.1988,-0.39,-0.3596,-0.123,0.2564,0.308,0.2656,0.2474,-0.2382,-0.3506,-0.3292,-0.1532,-0.0166,0.0046,0.0592,-0.0982,0.4602,0.4018,0.632,0.8712,1,0.822,0.865,0.5982,0.5552,0.3036,0.2056,0.4478,0.2424,0.1166,0.0736,0.135,-0.2944,-0.3128,-0.3588,-0.1472,0.0522,0.2852,0.3742,0.0674,-0.1042,-0.2792,-0.3804,-0.3128,-0.2362,-0.1196,-0.0552,-0.116,0.4294,0.4514,0.6552,0.9184,1,0.7492,0.743,0.5736,0.4702,0.5518,0.3448,0.2634,-0.254,-0.3794,-0.0658,-0.116,-0.1504,-0.3198,-0.2916,-0.2352,-0.0032,0.5424,0.5142,0.0126,-0.1474,-0.2164,-0.2664,-0.1286,-0.1504,-0.1128,-0.1944,-0.0956,0.432,0.5556,0.7408,0.9538,1,0.716,0.6544,0.5556,0.6328,0.7932,0.3704,0.2562,-0.3456,-0.6388,-0.4414,-0.4538,-0.2592,-0.3118,-0.247,-0.1914,0.1142,0.5308,0.3858,-0.0648,-0.3364,-0.2686,-0.3456,-0.3334,0.1234,-0.0278,-0.1112,0.0178,0.6704,0.6802,1,0.803,0.9256,0.5768,0.6284,0.7576,0.7674,0.6188,0.4474,0.063,-0.189,-0.4216,-0.5316,-0.6188,-0.6382,-0.4572,-0.3022,0.0306,0.2214,0.4346,0.3894,-0.0566,-0.3442,-0.538,-0.5348,-0.3408,-0.0178,0.176,0.008,-0.2866,0.7632,0.845,0.8772,1,0.5936,0.5964,0.4064,0.541,0.465,0.1726,-0.0936,-0.0556,-0.1608,-0.2954,-0.4854,-0.4796,-0.6052,-0.6228,-0.459,-0.4094,0.0058,0.1638,0.1228,-0.1432,-0.2866,-0.4094,-0.3976,-0.2954,-0.0264,-0.0264,-0.3684,-0.8426,0.6128,1,0.8276,0.537,0.7156,0.3798,0.7822,0.8064,0.1134,-0.059,-0.1164,-0.401,-0.3676,-0.3494,-0.419,-0.4886,-0.5462,-0.4432,-0.3978,-0.422,-0.41,-0.4644,-0.3314,-0.2556,-0.3072,-0.5976,-0.525,-0.404,-0.2376,-0.2436,-0.3434,-0.087,0.4782,0.3478,0.6522,0.6956,1,0.8696,0.5652,0.4782,0.5652,0.3044,0.5218,0.6086,0.3914,-0.1304,-0.174,0.0434,0,-0.3478,-0.3914,0.174,0.3478,0.3478,0.4348,0.3478,-0.3044,-0.174,-0.174,0,0.1304,0.087,-0.2608,-0.1162,0.4884,0.3954,0.628,0.7674,1,0.7674,0.814,0.3024,0.3954,-0.1628,0.3488,0.7674,0.6744,0.1162,-0.3024,-0.1628,-0.3488,-0.2094,-0.2094,0.0232,0.3954,0.5348,0.0232,0.1628,-0.2558,-0.3954,-0.2558,-0.2094,0.1162,0.2094,0.3024,-0.1428,0.7142,0.738,1,1,0.6666,0.5952,0.238,0.7142,0.6428,0.4524,-0.0476,0.1428,-0.2858,-0.0714,-0.5,-0.5238,-0.5476,-0.738,-0.4286,-0.1904,0.2142,0.6666,0.5476,-0.0952,-0.1666,-0.4762,-0.4762,-0.3096,-0.0952,0.238,0.1666,-1,-1,-1,-1,-1,-1,-0.986,-0.9854,-0.9898,-0.989,-0.4094,0.6702,0.9266,0.95,0.8846,0.7892,0.69,0.519,0.4138,0.278,-0.0482,-0.5056,-0.8502,-0.9772,-0.9838,-0.9714,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.981,-0.978,-0.9832,-0.9574,-0.276,0.5914,0.8664,0.8976,0.7882,0.7258,0.607,0.3774,0.1398,-0.0176,-0.2966,-0.5956,-0.888,-0.9582,-0.9672,-0.96,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.8534,-0.9468,-0.5134,-0.64,-0.7112,-0.718,-0.718,-0.72,-0.72,-0.73,-0.81,-0.802,-0.896,-0.968,-0.962,-0.91,-0.76,-0.7368,-0.8868,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4286,-0.8858,-0.6572,1,1,1,-0.8858,-0.8572,-0.9142,-0.8572,-1,-0.8286,-0.7428,-0.4858,-0.3428,-0.2858,-0.3142,-0.4,-0.9714,-0.8,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.937,-0.7482,-0.7772,-0.7662,-0.773,-0.758,-0.7658,-0.7254,-0.6344,-0.471,-0.3462,-0.7066,0.1648,0.0384,0.3884,0.5788,0.6184,0.7518,1,0.32,0.72,0.92,1,1,0.96,1,0.92,0.72,0.72,0.8,0.76,0.76,0.6,0.64,0.56,0.6,0.6,0.6,0.48,0.56,0.52,0.52,0.24,0.36,0.56,0.36,0.36,0.48,0.56,0.52,0.08,0.215,0.4766,0.8504,0.8504,0.7758,0.6636,1,0.6636,0.4392,0.3084,0.4018,0.6822,0.3272,0.3458,0.271,0.2336,0.3272,-0.1028,-0.1402,-0.1402,0.028,0.3084,0.3458,0.215,-0.5514,-0.3644,-0.5328,-0.4018,-0.4766,-0.3832,-0.3832,-0.813,0.5762,0.7796,0.8474,1,0.6272,0.6102,0.983,0.7628,0.1694,0.1864,0.322,0.5084,0.339,0.1526,0.1016,0.1526,0.1694,0,-0.2542,-0.1526,-0.1016,0,0.1186,-0.0678,-0.322,-0.322,-0.305,-0.4238,-0.5424,-0.339,-0.4068,-0.7966,1,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.421,-0.6578,0.3422,0.8948,0.7368,0.579,0.8684,0.4736,0.2368,0.0264,0.2632,0.1052,0.3948,0.2894,0.3948,0.6316,0.5526,0.6316,0.6316,0.1578,0.3158,1,0.8684,0.2894,-0.0264,0.2368,0.2894,-0.079,-0.0264,-0.3948,-0.1842,-0.2632,'15'
0.0878,0.961,1,0.5166,0.5126,0.037,-0.0604,-0.3178,-0.3216,-0.497,-0.345,-0.31,-0.2398,-0.267,-0.1618,-0.3294,-0.2944,-0.4114,-0.3412,-0.1462,0.041,0.3138,0.692,0.5478,0.7232,0.6608,0.848,0.8246,0.727,0.657,0.4658,0.4114,0.1212,0.841,0.822,0.6554,0.5872,0.2272,0.1402,-0.2348,-0.3334,-0.4054,-0.481,-0.1326,-0.2916,-0.1326,-0.2576,-0.1818,-0.3106,-0.3446,-0.428,-0.4394,-0.0568,0.2576,0.3446,0.7538,0.6136,0.8182,0.75,1,0.8258,0.8068,0.6742,0.644,0.1038,0.8092,0.7552,0.7262,0.5892,0.1078,-0.083,-0.3984,-0.5934,-0.4564,-0.6266,-0.502,-0.3402,-0.2532,-0.3858,-0.3402,-0.5478,-0.5352,-0.6804,-0.39,0.0374,0.0498,0.5518,0.7676,0.8922,0.7386,1,0.8258,0.863,0.6266,0.5352,0.444,0.1006,0.8028,0.7278,0.791,0.6134,0.1084,-0.1638,-0.4754,-0.6056,-0.507,-0.5108,-0.4636,-0.3768,-0.3846,-0.3806,-0.4162,-0.4162,-0.5384,-0.2228,-0.3688,-0.2662,0.3964,0.574,0.7712,0.9014,0.929,1,0.854,0.8658,0.6174,0.5898,0.3176,0.1168,0.8638,0.8016,0.7822,0.6536,0.1518,-0.0194,-0.4552,-0.6654,-0.5564,-0.6382,-0.5176,-0.5758,-0.4046,-0.3074,-0.2958,-0.3852,-0.2996,-0.214,-0.1478,0.0234,0.3112,0.8132,0.7898,0.9416,0.9378,1,0.821,0.6964,0.5058,0.4242,0.3036,-0.25,0.923,1,0.373,0.377,-0.1038,-0.2116,-0.4884,-0.6538,-0.7346,-0.8808,-0.7924,-0.6384,-0.4616,-0.3154,-0.3154,-0.4,-0.377,-0.3192,-0.1924,0.0924,0.177,0.7076,0.7346,0.7076,0.7538,0.7692,0.5616,0.35,0.2154,0.2154,0.227,-0.8318,0.6062,1,0.824,-0.0746,0.0784,-0.3078,-0.3652,-0.3154,-0.6062,-0.6674,-0.6674,-0.652,-0.6788,-0.3384,-0.476,-0.4952,-0.4646,-0.434,-0.1548,-0.0058,0.3766,0.5756,0.5296,0.3194,0.3422,0.3422,0.216,0.1052,0.0096,0.0326,-0.0172,0.4062,0.9688,1,0.5938,0.5624,0.0624,-0.0624,0.0624,0,0.0938,0.0938,0.0624,0.1876,0.2812,0.3124,0.2812,0,0.1876,0.2812,0.3124,0.4062,0.875,0.9376,0.7188,0.6876,0.75,0.6562,0.75,0.6876,0.5624,0.5312,0.4376,0.2758,0.9656,1,0.6206,0.6552,0.2758,0.2758,0.1724,0.0344,-0.138,-0.1034,0,0.1034,-0.0344,0,0.0344,-0.138,-0.2068,-0.0344,0.3448,0.5172,0.5862,0.8966,0.8966,0.8276,0.7932,0.8966,0.7932,0.6896,0.6206,0.6552,0.6206,0.0362,0.9278,0.9278,0.5662,0.5662,0.012,-0.012,-0.3976,-0.5662,-0.735,-0.8796,-0.759,-0.6144,-0.4698,-0.229,-0.2048,-0.1084,-0.2772,-0.1326,-0.253,0.0844,0.012,0.8072,0.735,0.8314,0.8796,0.976,1,0.5904,0.5662,0.4216,0.518,-1,-1,-1,-1,-1,-0.9846,-0.9862,-0.8616,-0.6358,-0.8696,-0.8696,0.6538,0.3508,0.2986,0.2806,0.1886,0.134,0.1178,0.046,0.0078,0.2268,-0.3092,-0.6448,-0.9528,-0.9764,-0.9706,-0.9756,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9694,-0.968,-0.8102,-0.326,-0.555,-0.7196,0.6754,0.5606,0.5642,0.6098,0.393,0.3188,0.3216,0.2154,0.032,0.234,-0.239,-0.587,-0.8644,-0.8688,-0.8958,-0.95,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.966,-0.98,-0.87,-0.1834,0.1566,-0.0434,-0.8776,-0.8576,-0.8276,-0.855,-0.9026,-0.86,-0.8476,-0.855,-0.885,-0.8676,-0.8426,-0.7234,-0.0134,-0.0168,-0.2468,-0.6234,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4572,-0.0572,1,1,1,1,1,-0.2286,-0.8286,-0.7428,-0.8286,-0.8286,-1,-0.7714,-0.5428,-0.6858,-0.7428,-0.0858,-0.1714,-0.6286,0,0.2,-1,-1,-1,-1,-1,-1,0.0216,0.0352,0.0348,0.0354,0.0466,0.066,0.0878,0.0842,0.0402,0.0344,1,1,1,0.9952,1,1,1,1,1,1,-0.7734,-0.0824,-0.7574,-0.1106,1,0.6876,0.557,1,0.126,0.4622,0.3614,0.311,0.1092,0.3278,0.4286,0.9328,1,0.9496,0.7142,0.4874,0.7564,0.5714,0.2858,0.5798,0.4202,0.5966,0.0504,0.168,0.3446,0.2942,0.2522,0.353,0.3194,0.2606,0.168,0.084,0.1176,0.2774,0.1428,-0.5882,-0.1326,0.0408,0.097,-0.0052,0.2092,0.1174,0.0918,0.1938,0.449,0.6276,1,0.9796,1,0.9694,0.8418,0.7346,0.7858,0.602,0.546,0.8622,0.8776,0.7704,0.6836,0.6378,0.5612,0.4592,0.2654,0.1582,0.1734,0.097,0.2142,-0.2704,-0.0316,0.2608,-0.0258,-0.106,-0.0028,-0.0602,0.0716,0.1634,-0.0028,0.381,0.9484,1,0.9714,0.9198,0.9598,0.7422,0.788,0.8968,0.3638,0.7478,0.9026,0.6046,0.2436,0.1634,0.232,0.318,0.0086,-0.066,-0.0544,0.1518,0.1002,-0.4786,-0.127,-1,-1,1,-1,-1,-0.8,-0.2334,-1,-0.4766,-0.208,-0.1544,0.1678,-0.0738,-0.1544,-0.0202,0.1276,0.0604,0.839,1,0.7316,0.6644,0.745,0.4766,0.396,0.463,-0.1544,0.5974,0.5436,0.3558,0.2752,0.1812,0.0336,-0.2752,-0.0872,-0.114,-0.396,-0.208,-0.141,-0.0738,-0.1812,'16'
0.1688,1,0.9822,0.7512,0.6666,-0.0312,-0.0978,-0.2444,-0.4088,-0.5112,-0.4356,-0.2756,-0.64,-0.6488,-0.6844,-0.6578,-0.4312,-0.3288,-0.0222,0.1378,0.3156,0.5734,0.6578,0.6578,0.4356,0.5112,0.5912,0.5956,0.5022,0.5288,0.3512,0.4266,0.1506,0.8922,0.8202,1,0.8426,0.1102,-0.1236,-0.2674,-0.555,-0.4382,-0.3662,-0.3034,-0.3528,-0.3214,-0.5102,-0.5596,-0.6808,-0.7752,-0.2898,-0.0606,0.3574,0.672,0.8922,0.7528,0.8338,0.8112,0.9596,0.8966,0.7168,0.3618,0.3888,0.4158,0.0954,0.781,0.6836,0.9188,0.712,-0.002,-0.355,-0.351,-0.6958,-0.6552,-0.4402,-0.4848,-0.3346,-0.432,-0.2658,-0.4362,-0.3794,-0.5334,-0.428,-0.286,-0.144,0.428,0.5618,0.8296,0.785,0.854,0.7768,1,0.8094,0.639,0.359,0.497,0.0952,0.7928,0.6872,1,0.7716,0.0486,-0.3616,-0.2812,-0.8224,-0.8478,-0.6026,-0.666,-0.315,-0.4208,-0.4122,-0.4884,-0.332,-0.2474,-0.1544,0.0232,0.1502,0.7378,0.7252,0.835,0.6998,0.7674,0.6576,0.8182,0.4292,0.4926,0.5814,0.611,0.118,0.8386,0.7722,1,0.793,0.0724,-0.2422,-0.3788,-0.7682,-0.8386,-0.6398,-0.6438,-0.3954,-0.4286,-0.3416,-0.4078,-0.3084,-0.2256,-0.118,0.2008,0.3168,0.7018,0.9586,0.9172,0.826,0.7226,0.764,0.586,0.4616,0.3954,0.2796,0.4368,0.01,0.984,1,0.6272,0.6754,0.014,0.038,-0.5592,-0.6594,-0.6874,-0.7716,-0.6192,-0.5952,-0.3186,-0.1904,-0.2586,-0.2826,-0.2464,0.0902,0.2464,0.483,0.6714,0.9398,0.9238,0.6714,0.8838,0.9158,0.7516,0.5512,0.3346,0.459,0.455,-0.7456,0.7694,1,0.6342,-0.002,-0.0616,-0.3916,-0.2326,-0.503,-0.5468,-0.5428,-0.7574,-0.5666,-0.6858,-0.7216,-0.5984,-0.6222,-0.5468,-0.324,0.2166,0.2008,0.3718,0.5428,0.511,0.6222,0.6144,0.5506,0.3916,0.157,0.157,0.0696,0.2048,0.4222,1,1,0.6888,0.4666,-0.0222,-0.1556,-0.0222,-0.5112,-0.8222,-0.2888,-0.0222,-0.2444,-0.3334,-0.0666,0.0222,0.1556,0.0666,0.0666,0.4666,0.5556,0.5556,0.5112,0.5112,0.7778,0.6444,0.5112,0.2888,0.5556,0.3778,0.5112,0.6,0.077,0.9488,1,0.4358,0.4872,-0.0256,0.0256,-0.282,-0.7436,-0.6924,-0.4872,-0.5384,-0.9488,-0.7436,-0.6924,-0.7436,-0.3334,-0.2308,-0.1794,0.1282,0.077,0.5898,0.6924,0.5384,0.282,0.6924,0.6924,0.3334,0.3846,0.2308,0.2308,0.4872,0.1352,0.8378,0.6756,1,0.7838,-0.027,-0.4324,-0.2702,-0.5946,-0.6216,-0.4054,-0.4864,-0.2702,-0.4054,-0.1622,-0.4054,-0.2702,-0.4594,-0.2972,-0.1622,0,0.6486,0.7028,0.5946,0.5406,0.8918,0.6216,0.973,0.7028,0.7028,0.7028,0.8108,-1,-1,-1,-1,-0.9696,-0.9696,-0.71,-0.7974,-0.8544,-0.8834,-0.8592,0.568,0.7962,0.864,0.9442,0.9854,0.9418,0.8848,0.7816,0.6056,0.6056,0.2864,-0.7512,-0.9576,-0.9588,-0.9696,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9586,-0.9542,-0.3284,-0.4746,-0.63,-0.7942,-0.8012,0.2852,0.6846,0.8902,0.9758,0.9118,0.8384,0.7658,0.694,0.4616,0.4106,0.109,-0.726,-0.8738,-0.904,-0.9404,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.9068,-0.3968,0.15,0.2366,-0.0834,-0.2168,-0.88,-0.89,-0.8326,-0.8326,-0.8526,-0.825,-0.805,-0.86,-0.925,-0.96,-0.9378,-0.54,-0.2534,-0.36,-0.7934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,0.9714,0.3714,0.4,-0.0286,1,-0.0858,-0.7714,-0.9714,-0.8858,-0.9714,-1,-0.9714,-0.7714,-0.7142,-0.0572,0.0858,-0.5714,-0.7428,-0.1142,-1,-1,-1,-1,-1,-1,-1,-0.1246,-0.1012,-0.0654,-0.0512,-0.037,-0.016,-0.015,-0.0196,-0.0244,-0.0018,0.8296,0.7716,0.7764,0.765,0.7808,0.8118,0.885,0.9642,1,1,-0.7466,-0.0706,-0.8392,-0.4468,0.4338,0.5454,0.6594,1,-0.1112,0.2408,0.2638,0.2732,0.1064,0.2038,0.162,0.6436,0.7732,1,0.8612,0.7638,0.8888,0.8796,0.6806,0.5788,0.7686,0.588,0.6436,0.4908,0.6296,0.6898,0.6158,0.5232,0.4768,0.4398,0.537,0.3796,0.338,0.2824,0.2686,0.0092,-0.091,0.0606,0.0866,0.0086,-0.039,-0.0432,-0.0476,0.0086,0.065,0.3896,0.9826,0.974,0.7402,1,0.7142,0.6364,0.9826,0.8874,0.4718,0.7532,0.9308,0.8918,0.407,0.4156,0.2468,0.2424,0.4026,0.4026,0.1558,0.0952,0.065,-0.1342,-0.017,0.1064,-0.017,-0.0426,-0.0852,-0.051,-0.1234,-0.2042,-0.0808,0.1618,0.851,1,0.7574,0.9064,0.8468,0.583,0.766,0.6808,0.4468,0.332,0.4468,0.3702,0.2128,0.149,-0.0212,-0.1276,-0.1148,-0.1022,-0.0936,0.1702,0.1958,-0.251,0.6664,-1,-1,1,-1,-1,-1,0.0334,-1,-0.6078,-0.4902,-0.451,-0.2156,-0.255,-0.196,-0.3334,-0.0392,-0.1372,0.7058,1,0.7648,0.6862,0.7648,0.4314,0.4118,0.2352,-0.0588,0.4118,0.098,0.2942,0.4314,0.1372,0.1764,-0.255,-0.2942,-0.451,-0.196,-0.0392,-0.3138,-0.1764,-0.8236,'16'
0.0852,0.963,1,0.6296,0.6408,-0.0296,0.0222,-0.363,-0.326,-0.474,-0.326,-0.326,-0.2074,-0.3704,-0.4556,-0.4814,-0.4888,-0.0518,0.137,0.563,0.8962,0.774,0.763,0.6074,0.7592,0.6852,0.4592,0.3592,0.3334,0.3186,0.3926,0.4482,0.1134,0.7996,0.7866,0.8292,0.78,0.087,0.0148,-0.2216,-0.294,-0.1462,-0.2282,0.0148,-0.0706,-0.064,-0.1462,-0.261,-0.3596,-0.0542,0.4844,0.908,0.7964,0.849,0.7372,1,0.8752,0.4516,0.3234,0.11,0.018,0.2184,0.202,0.5008,0.1004,0.748,0.7288,1,0.933,0.094,-0.0112,-0.1706,-0.2728,-0.1196,-0.2248,0.1196,0.008,0.311,0.161,0.26,0.1068,0.1642,0.228,0.4578,0.6396,0.8342,0.6556,0.6172,0.4226,0.2504,0.0558,-0.0782,-0.3206,-0.2536,0.1866,0.3556,-0.0394,0.6094,0.5938,1,0.9496,-0.0898,-0.1118,-0.096,-0.178,-0.0866,0.011,0.3228,0.263,0.4016,0.3228,0.3134,0.178,-0.1906,-0.326,-0.1276,0.0582,0.4016,0.2882,0.1496,0.0174,-0.0708,-0.1968,-0.2378,-0.3732,-0.3826,-0.1874,0.052,-0.0366,0.6778,0.681,1,0.9776,-0.0048,-0.2792,-0.043,-0.0334,0.209,0.1706,0.2312,0.2248,-0.1132,-0.0782,-0.378,-0.3684,-0.5948,-0.5152,-0.429,-0.2886,-0.0176,-0.0366,-0.3014,-0.3078,-0.362,-0.3972,-0.5024,-0.5024,-0.5918,-0.3238,-0.1962,-0.6062,0.8558,1,0.5166,0.6648,0.4192,0.0526,0.0254,0.1774,-0.0176,-0.3022,-0.4736,-0.5166,-0.5594,-0.6608,-0.6608,-0.7504,-0.7504,-0.7192,-0.6492,-0.5868,-0.306,-0.2632,-0.5166,-0.6492,-0.575,-0.7038,-0.657,-0.4502,-0.349,-0.3684,-0.6726,-0.968,0.6674,1,0.7676,0.3466,0.483,0.1262,0.7596,0.6714,-0.1904,-0.1904,-0.3588,-0.2946,-0.3186,-0.5512,-0.507,-0.6272,-0.6874,-0.6272,-0.483,-0.4348,-0.523,-0.5552,-0.6554,-0.7234,-0.6594,-0.7154,-0.6914,-0.511,-0.527,-0.519,-0.5632,0.1914,0.9574,1,0.6596,0.4042,-0.3192,-0.3618,-0.3192,-0.149,-0.532,-0.4468,-0.5744,-0.1064,-0.0638,-0.4468,-0.2766,-0.234,-0.1064,0.0638,0.2766,0.7446,0.8724,0.7022,0.3192,0.5744,0.4894,0.532,0.3618,0.4468,0.3618,0.149,0.3192,0.2452,0.9622,1,0.6982,0.6982,0.2452,0.3208,0.0566,0.0944,-0.283,-0.0944,-0.132,-0.0188,-0.0566,-0.2452,-0.0566,0.2076,0.132,0.4716,0.5472,0.9622,0.8868,0.7358,0.6604,0.6604,0.8114,0.6226,0.6982,0.585,0.6982,0.6604,0.7736,-0.087,0.6304,0.6304,1,0.9782,0.0434,-0.1522,-0.0652,-0.1304,0.2608,0.2392,0.0652,0.087,-0.1522,-0.1086,-0.5218,-0.5434,-0.587,-0.5218,-0.3478,-0.326,-0.174,-0.1304,-0.4566,-0.3914,-0.4566,-0.4348,-0.6086,-0.5,-0.7826,-0.3696,-0.2826,-1,-1,-0.9828,-0.9874,-0.7544,-0.691,-0.9178,-0.8818,-0.9006,-0.9288,-0.8404,0.489,0.399,0.4672,0.5594,0.7198,0.9264,0.978,0.6408,0.025,-0.0266,-0.4522,-0.788,-0.9648,-0.9632,-0.9586,-0.9514,-1,-1,-1,-1,-1,-1,-1,-1,-0.9564,-0.9754,0.1244,0.0244,-0.3528,-0.3862,-0.5924,-0.7796,-0.826,0.3156,0.3028,0.4534,0.5682,0.5842,0.8094,0.9678,0.532,-0.126,-0.1536,-0.4804,-0.753,-0.9174,-0.8908,-0.88,-0.8892,-1,-1,-1,-1,-1,-1,-1,-1,-0.7868,-0.98,-0.5734,0.59,0.7966,0.69,0.5432,0.2432,-0.39,-0.8476,-0.82,-0.82,-0.84,-0.7926,-0.79,-0.79,-0.89,-0.9824,-0.9624,-0.9356,-0.8668,-0.6734,-0.5934,-0.5134,-0.5734,-1,-1,-1,-1,-1,-1,-1,-1,-0.1142,1,1,1,0.4,-0.5428,1,1,1,1,-0.8,-0.8286,-0.7428,-0.7142,-0.6572,-0.6,-0.4,-0.5142,-0.8572,-0.8,-0.2858,-0.3428,-0.6286,-0.8286,-0.4286,-1,-1,-1,-1,-1,-1,0.0356,0.0372,0.0472,0.0274,0.0292,0.0362,0.0532,0.0756,0.1022,0.2524,0.7752,0.768,0.7804,0.744,0.704,0.6978,0.6762,0.5942,0.2276,-0.1834,-0.8134,-0.047,-0.8416,-0.2254,0.4678,0.3776,0.2862,-0.5584,-0.18,0.2154,0.1592,0.1032,0.0088,0.0738,0.2006,0.1946,0.2478,0.351,0.4042,0.5428,0.7168,0.882,1,0.9764,0.9794,0.8672,0.941,0.938,0.8584,0.8496,0.8702,0.6136,0.6638,0.6402,0.5664,0.469,0.2154,0.1858,-0.053,-0.3274,-0.276,-0.2318,-0.237,-0.1848,-0.2188,-0.1848,-0.198,-0.1484,-0.1536,-0.0104,0.2864,0.3646,0.3046,0.7318,0.8802,0.8126,0.7838,0.763,0.737,0.8958,1,0.9714,0.776,0.638,0.6172,0.6068,0.625,0.5364,0.1016,0.2006,0.052,-0.177,-0.0176,0.3816,0.2262,-0.166,-0.1696,-0.0494,0.1626,0.0706,0.0176,0.4346,0.993,1,0.8728,0.9646,0.8904,0.8374,0.8234,0.8056,0.636,0.9116,0.954,0.8092,0.5054,0.2686,0.212,0.1626,0.325,0.212,0.0318,0.007,-0.113,-0.417,1,-1,-1,1,-1,-1,-1,0.3666,-1,-0.4108,-0.0852,0.3334,0.3024,0.4108,1,1,0.721,0.3334,0.4884,0.6124,-0.0232,0.1782,0.3488,0.6124,0.6744,0.0388,0.0388,0.4264,0.1938,0.2248,0.2714,0.1938,0.1318,0.4574,0.3488,0.1162,-0.1318,-0.1782,-0.1008,-0.1782,-0.6434,'17'
0.179,0.965,0.965,0.895,0.8678,0.323,0.3036,-0.4164,-0.4396,-0.249,-0.2802,-0.109,-0.1322,-0.074,-0.0818,-0.1712,-0.2062,0.0506,0.2646,0.825,0.856,0.7938,0.8016,0.9766,1,0.8678,0.8054,0.2918,0.1868,0.4086,0.5604,0.7626,0.1182,0.8032,0.7678,1,0.8818,0.13,-0.0118,-0.5826,-0.441,-0.244,-0.3976,-0.2126,-0.2008,-0.0708,-0.3032,-0.193,-0.3228,-0.189,0.5866,0.6536,0.874,0.8976,0.9646,0.9686,0.8308,0.807,0.2086,-0.0276,0.3622,0.2834,0.6732,0.6024,0.0036,0.6214,0.5956,1,0.8714,-0.0404,-0.2464,-0.4448,-0.342,-0.2058,-0.3786,-0.3052,-0.0992,-0.0514,-0.1434,-0.136,-0.1508,0.2426,0.6986,0.5956,0.7868,0.6618,0.8676,0.6912,0.4448,0.2206,-0.1066,-0.033,0.103,0.272,0.3824,0.5074,-0.118,0.4496,0.6548,1,0.877,-0.0974,-0.2786,-0.1316,-0.33,-0.2102,-0.241,-0.1624,-0.0804,-0.0462,-0.029,-0.0462,0.0018,-0.1042,0.2924,0.1966,0.453,0.412,0.6068,0.4222,0.029,-0.1864,-0.5898,-0.2718,-0.159,0.094,0.159,0.1932,-0.1134,0.47,0.62,1,0.9,0.1366,-0.04,-0.0166,-0.1966,-0.0834,-0.0134,0.1234,0.26,0.3366,0.09,0.1266,-0.3166,-0.3866,-0.1166,-0.0434,0.2966,0.3066,0.16,0.1466,-0.1866,-0.21,-0.6634,-0.62,-0.42,-0.0934,0.1266,0,-0.1714,0.7642,0.8072,0.9608,1,0.2286,-0.1464,-0.1642,-0.0322,0.1,0.2178,0.275,0.2178,-0.1,-0.2286,-0.4322,-0.4786,-0.5928,-0.6072,-0.2322,-0.1536,0.2786,0.3286,-0.075,-0.1928,-0.25,-0.3786,-0.5,-0.3392,-0.2928,-0.2392,-0.2428,-0.8462,0.7554,1,0.708,0.2544,0.2702,0.2702,0.5226,0.3728,0.4596,0.3136,-0.2624,-0.2228,-0.3334,-0.4082,-0.4122,-0.645,-0.645,-0.6134,-0.503,-0.4872,-0.3964,-0.2978,-0.4754,-0.5306,-0.4754,-0.6094,-0.57,-0.5108,-0.144,-0.1558,-0.4044,0.3794,0.9656,1,0.8276,0.8276,0.4482,0.5172,0.1034,0.138,0.0344,0.069,0.1724,0.2414,0.1034,0.069,-0.0344,0.1724,0.3104,0.5172,0.8276,0.9656,0.8966,0.8966,0.7932,0.7932,0.931,0.931,0.5862,0.7586,0.6896,0.7932,0.7586,0.0256,0.8974,0.8974,0.7948,0.7436,0.1794,0.1794,-0.7948,-0.6924,-0.5384,-0.5384,-0.1282,-0.1282,-0.1794,-0.282,-0.3846,-0.6924,0.0256,0.0256,0.7436,0.8974,0.641,0.7436,0.9488,1,0.3846,0.2308,-0.5384,-0.077,0.641,0.7436,0.5384,0,0.5892,0.5892,1,0.9464,0.0178,-0.0178,0.0178,-0.0358,0.125,0.2858,0.625,0.5358,0.0892,0.0536,-0.125,-0.1786,-0.3214,-0.3392,0.0892,0.1964,0.5714,0.5,0,0.0358,-0.0892,-0.1072,-0.7142,-0.1608,-0.0536,0.0178,0.1072,-1,-0.9916,-0.994,-0.9524,-0.8534,-0.8876,-0.923,-0.9436,-0.9458,-0.9574,-0.43,-0.0824,-0.0564,0.0388,0.238,0.5678,0.922,0.9734,0.792,0.1976,-0.285,-0.575,-0.8588,-0.98,-0.9868,-0.9846,-1,-1,-1,-1,-1,-1,-1,-1,-0.9816,-0.9836,-0.8382,-0.3904,-0.51,-0.5556,-0.6996,-0.7786,-0.903,-0.5002,-0.1158,0.0112,0.1016,0.272,0.6482,0.9344,0.9546,0.8622,0.2462,-0.339,-0.6126,-0.864,-0.9438,-0.9528,-0.9606,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.9868,-0.8068,0.36,0.77,0.7966,0.7632,0.35,-0.05,-0.7334,-0.8658,-0.8716,-0.7076,-0.7076,-0.7476,-0.8176,-0.8976,-0.89,-0.905,-0.9776,-0.94,-0.8834,-0.7668,-0.7434,-0.7834,-1,-1,-1,-1,-1,-1,-1,-1,-0.6858,0.2572,1,1,-0.1142,-0.6572,0.7428,1,1,1,1,-0.6,-0.6,-0.7142,-0.8858,-0.7714,-0.7428,-0.4,0.1714,0.1142,-0.4,-0.3428,-0.6286,-0.8858,-0.8572,-1,-1,-1,-1,-1,-1,-1,0.2162,0.2006,0.1926,0.1852,0.161,0.1416,0.1094,0.0812,0.0916,0.2518,0.7674,0.7494,0.7284,0.7288,0.6776,0.7118,0.7224,0.6588,0.4556,-0.0332,-0.7734,-0.1058,-0.3806,-0.1476,-0.1206,-0.0648,0.0052,-0.4166,-0.1888,-0.0094,0.0254,0.0148,-0.0334,0.0308,0.1138,0.1138,0.1058,0.1112,0.1968,0.4646,0.7108,0.8608,0.9786,0.9384,0.8688,0.8554,0.9544,1,0.9866,0.8714,0.7484,0.5636,0.5262,0.5368,0.4726,0.3788,0.2396,0.0496,-0.063,-0.3038,-0.353,-0.1808,-0.1168,-0.1686,-0.1784,-0.1784,-0.075,-0.0996,-0.1808,0.0308,0.4146,0.3506,0.3506,0.6778,0.754,0.6506,0.7146,0.5916,0.8254,0.9902,1,0.818,0.6458,0.6458,0.5966,0.5768,0.4022,0.2324,0.1464,0.0726,-0.08,-0.2792,0.318,0.6558,0.3442,0.1476,0.023,-0.1082,0.1214,0.2,0.1902,0.6066,0.964,0.846,0.9214,1,0.9672,0.7442,0.8722,0.823,0.6688,0.9016,0.905,0.5606,0.4098,-0.082,-0.023,-0.059,-0.0196,-0.1868,-0.2032,-0.2394,-0.3704,-0.5574,0.2956,-1,1,-1,-0.6,-1,-1,0.5,-1,-0.1268,0.1408,0.1268,0.7042,1,0.4366,0.2958,0.3944,0.2254,0.2536,0.4366,0.1268,0.2254,0.1126,0.1972,0.4084,0.4226,0.3802,0.4788,0.2676,0.169,0.1268,-0.0282,0.169,0.0986,0.0986,0.1268,-0.0282,-0.0422,0.0564,0.0564,-0.155,'17'
-0.1994,0.3122,0.2408,0.447,0.5544,0.6726,0.9532,1,0.6038,0.5654,0.4498,0.359,0.3012,0.0014,-0.084,-0.2628,-0.2518,-0.172,-0.1746,-0.0894,-0.0372,0.1802,0.183,-0.0096,-0.1856,-0.2628,-0.238,-0.0178,-0.0096,-0.1444,-0.4774,-0.6148,-0.2064,0.2664,0.232,0.404,0.5186,0.5616,1,0.9512,0.533,0.381,0.0402,0.0258,-0.1662,-0.341,-0.3124,-0.1662,-0.3008,-0.2006,-0.2264,-0.1978,-0.275,0.086,0.0716,-0.1948,-0.2608,-0.2292,-0.2292,0.0144,-0.0144,-0.4756,-0.5846,-0.6934,-0.1988,0.2952,0.25,0.4246,0.5964,0.6536,1,0.9488,0.6386,0.485,0.3374,0.1174,-0.1054,-0.232,-0.3222,-0.25,-0.4156,-0.3254,-0.1838,-0.0482,0.0844,0.2168,0.0692,-0.1716,-0.4728,-0.3796,-0.2138,0.0904,0.0722,-0.3704,-0.5572,-0.7832,-0.2192,0.274,0.2602,0.441,0.6466,0.715,1,0.9644,0.4028,0.3096,0.4958,0.441,0.5206,0.0958,-0.1232,-0.485,-0.463,-0.3068,0.0384,0.1206,0.1452,0.1452,-0.2328,-0.285,-0.263,-0.3726,-0.2548,-0.3808,-0.4,-0.652,-0.6302,-0.852,-0.1322,0.3912,0.4366,0.6302,0.8918,0.9716,1,0.9858,0.4736,0.3656,0.3712,0.818,0.9516,0.5874,0.4254,0.0298,0.0698,0.1238,0.0668,-0.1978,-0.2404,-0.3086,-0.357,-0.357,-0.4082,-0.414,-0.2888,-0.4196,-0.613,-0.8294,-0.946,-0.8236,-0.147,0.6376,0.6234,0.8688,0.8232,1,0.943,0.535,0.261,0.0814,0.0014,0.3922,0.6176,0.7546,0.826,0.7718,0.612,0.4436,0.1584,-0.1326,-0.2582,-0.4694,-0.6176,-0.515,-0.5492,-0.3952,-0.4436,-0.5406,-0.7832,-0.7888,-0.7146,-0.632,-0.6856,0.7424,0.9666,0.6488,0.816,0.709,0.4648,0.5452,0.1538,-0.0334,-0.0168,0.0802,0.3378,0.5352,0.8964,1,0.7692,0.6086,0.2108,-0.127,-0.2474,-0.4448,-0.5652,-0.592,-0.6722,-0.5986,-0.6422,-0.5886,-0.6856,-0.7158,-0.5652,-0.612,-0.149,0.4042,0.4042,0.4894,0.4894,0.8724,0.7872,1,0.8724,0.7446,0.7446,0.6596,0.4468,-0.0638,-0.0638,-0.149,-0.149,-0.234,-0.0212,0.1064,0.1914,0.149,-0.0212,0.0638,-0.1914,-0.2766,-0.149,0.1914,0.234,0.0638,-0.3192,-0.4042,-0.3192,0.1914,0.234,0.3618,0.4894,0.617,0.9148,1,0.6596,0.4042,0.4894,0.4468,0.2766,0.1914,-0.1914,-0.3618,-0.1914,-0.234,-0.1914,-0.532,0.0212,0.4042,0.3618,0.1064,-0.1064,-0.149,-0.234,-0.1064,-0.4894,-0.532,-0.7446,-0.7872,-0.0192,0.5192,0.5192,0.75,0.8076,1,0.827,0.673,0.5192,0.327,0.25,0.5384,0.8654,0.9616,0.7116,0.6924,0.5384,0.5192,0.0962,0.1924,-0.0576,-0.4038,-0.423,-0.3462,-0.2116,-0.2308,-0.2884,-0.3846,-0.6154,-0.6154,-0.7116,-0.5192,-1,-1,-1,-1,-1,-1,-1,-0.9784,-0.9824,-0.962,-0.0428,0.9214,0.8916,0.8156,0.783,0.8346,0.863,0.8862,0.9472,0.8196,0.6516,0.1838,-0.882,-0.9606,-0.958,-0.9716,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9808,-0.9762,-0.9752,0.1748,0.8964,0.7388,0.5878,0.4984,0.4732,0.4656,0.442,0.3208,0.1136,-0.0374,-0.3864,-0.8848,-0.9132,-0.9368,-0.9686,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9794,-0.92,-0.78,-0.68,-0.72,-0.732,-0.734,-0.724,-0.72,-0.734,-0.73,-0.724,-0.716,-0.738,-0.728,-0.5168,-0.4,-0.5034,-0.8468,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2858,-0.8,1,1,0.7714,-0.8572,-0.9714,-0.9428,-0.7714,-0.7714,-0.9142,-0.7428,-0.6572,-0.6572,0.5142,0.3142,-0.9428,-0.4858,-0.5428,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.5278,-0.5404,-0.5542,-0.5918,-0.509,-0.4926,-0.4164,-0.378,-0.3988,-0.9476,-0.7066,0.1648,0.058,0.5732,1,0.8854,0.8384,1,-0.0218,0.3044,0.7392,1,1,0.9782,0.913,0.6086,0.413,0.5,0.7392,0.7826,0.6086,0.5434,0.587,0.4566,0.1304,0.0434,-0.0218,0.0434,0,0,0.087,0.0434,-0.0434,-0.0218,-0.0434,-0.1522,-0.326,-0.1522,-0.2392,-0.6086,0.0322,0.1398,0.5914,1,0.8064,0.871,0.828,0.3764,0.0108,0.1612,0.5698,0.871,0.3334,0.2044,0.4408,0.3118,-0.0538,-0.2044,-0.1182,0.0322,0.0322,0.0968,-0.2258,-0.0108,-0.0322,-0.1828,0.0322,-0.0538,0.1182,0.1828,0.0108,-0.3978,0.5058,0.6552,0.7702,1,0.9196,0.816,0.6782,0.161,0.1724,0.2758,0.6666,0.7472,0.3104,0.1724,0.3448,0.2874,-0.161,-0.2988,-0.2758,-0.0344,-0.046,0.0574,0.0344,0.0114,-0.023,0.0114,0.0344,-0.023,0,-0.023,-0.0574,-0.2298,1,-1,-1,1,-1,-1,-1,-0.7666,-1,-0.2966,-0.0896,-0.0344,0.5034,0.3104,0.1448,0.4206,0.7104,1,0.5586,0.4896,-0.0482,0.0068,-0.0344,0.0068,0.131,-0.0068,-0.1034,-0.0482,-0.2552,0.0482,-0.062,-0.0896,-0.1034,-0.0206,-0.1724,-0.1862,-0.2414,-0.1586,-0.2828,-0.2828,-0.3104,'18'
-0.1652,0.4112,0.3764,0.4708,0.5578,0.759,0.8782,1,0.7888,0.605,0.5802,0.518,0.1826,-0.0136,-0.0956,-0.1354,-0.3864,-0.3392,-0.205,-0.1652,0.0882,0.1602,0.1056,-0.2596,-0.364,-0.3416,-0.2994,-0.036,-0.0708,-0.2596,-0.5204,-0.5752,-0.2192,0.2732,0.1888,0.3412,0.5592,0.6694,0.9578,1,0.606,0.5638,0.4044,0.3012,-0.048,-0.1982,-0.0974,-0.4186,-0.3928,-0.374,-0.381,-0.2802,-0.1278,0.0622,-0.1066,-0.3482,-0.4584,-0.3506,-0.2662,-0.2192,-0.116,-0.1348,-0.517,-0.7304,-0.2378,0.2428,0.2104,0.3748,0.574,0.6414,1,0.975,0.6438,0.5342,0.6288,0.4172,-0.2278,-0.2852,-0.2826,-0.3674,-0.447,-0.3326,-0.2004,-0.056,0.056,0.1034,-0.4122,-0.5044,-0.6314,-0.6588,-0.579,-0.1682,-0.0734,-0.4372,-0.5144,-0.8954,-0.2472,0.2396,0.2422,0.4078,0.616,0.6838,1,0.9674,0.4982,0.3702,0.5382,0.32,0.2898,-0.1442,-0.1518,-0.3426,-0.3878,-0.32,0.1442,0.2496,-0.054,-0.0112,-0.4102,-0.4454,-0.5684,-0.5558,-0.4002,-0.463,-0.5784,-0.5558,-0.5834,-0.8846,-0.1748,0.3508,0.3404,0.5348,0.7844,0.8712,1,0.9816,0.4296,0.3456,0.3746,0.5506,0.6898,0.3298,0.1484,-0.1668,0.025,0.0932,-0.0854,-0.1512,-0.3746,-0.2904,-0.6216,-0.5638,-0.7056,-0.6846,-0.5952,-0.6032,-0.7056,-0.8686,-0.8764,-0.8792,-0.1672,0.4814,0.4524,0.7508,0.7598,1,0.899,0.578,0.2502,0.1358,0.1896,0.4208,0.6948,0.8338,0.8564,0.7328,0.6768,0.5354,0.147,-0.0774,-0.2054,-0.349,-0.5264,-0.4612,-0.5354,-0.4748,-0.4838,-0.4838,-0.542,-0.6924,-0.4344,-0.266,-0.6494,0.6766,0.837,0.5516,0.924,0.7364,0.606,0.5978,0.0598,-0.125,0.1658,0.2282,0.5164,0.7962,0.9972,1,0.837,0.587,0.1712,-0.163,-0.182,-0.3152,-0.5028,-0.5816,-0.5978,-0.4892,-0.4918,-0.5842,-0.6278,-0.5652,-0.3778,-0.481,0.2,0.95,1,0.75,0.85,0.8,0.8,0.95,1,0.75,0.9,0.45,0.5,0.55,0,-0.25,-0.2,-0.25,0.25,0.3,0.55,0.25,0.45,0.25,0.1,0,-0.15,0.05,-0.1,0,-0.4,-0.25,-0.1112,0.4444,0.3704,0.5556,0.4814,0.8518,0.926,1,0.8518,0.7408,0.6296,0.7408,0.5556,0.1852,0,0.037,-0.1112,-0.1112,-0.1852,0,0,0.1482,0.1112,0.1112,-0.1112,-0.2222,0.1852,0.1482,0.037,-0.074,-0.074,-0.2962,-0.2392,0.3478,0.3696,0.6086,0.8044,1,0.7392,0.674,0.4348,0.3914,0.326,0.4348,0.8478,0.8478,0.7392,0.6956,0.6304,0.5434,-0.2174,-0.326,-0.3914,-0.4566,-0.826,-0.587,-0.4348,-0.5,-0.3914,-0.587,-0.587,-0.8044,-0.6956,-0.5218,-1,-1,-1,-1,-1,-1,-1,-1,-0.982,-0.978,-0.7404,0.6536,0.97,0.9122,0.7444,0.6166,0.5716,0.6496,0.8312,0.8892,0.4958,0.0504,-0.7444,-0.956,-0.963,-0.972,-0.97,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9438,-0.9836,-0.497,0.5268,0.9828,0.7626,0.488,0.3676,0.3662,0.371,0.2804,0.3354,-0.0186,-0.4044,-0.8396,-0.8868,-0.919,-0.9514,-0.9656,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.81,-0.9268,-0.8068,-0.72,-0.7092,-0.6982,-0.642,-0.6546,-0.7146,-0.722,-0.7182,-0.642,-0.6638,-0.8,-0.5368,-0.2968,-0.2534,-0.3934,-0.7,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,-0.8572,-1,-0.9714,-0.8858,-0.8286,-0.8572,-0.8286,-0.5428,-0.6572,-0.0286,-0.2,-0.4572,-0.6572,-0.5714,-0.4858,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.6676,-0.6478,-0.6742,-0.6628,-0.6094,-0.6214,-0.5948,-0.6268,-0.6424,-1,-0.7066,0.3058,-0.238,-0.2286,0.528,0.6172,0.9176,0.825,0.0638,0.4042,0.7872,0.9148,1,1,0.9574,0.8724,0.7446,0.8298,0.8724,0.8298,0.8298,0.7872,0.5744,0.5744,0.4042,0.4042,0.1064,0.234,0.3192,0.1914,0.1914,0.2766,-0.1914,0.149,0.1914,0.1914,0.149,0.149,0.0638,-0.0638,0.0962,0.274,0.6296,0.9704,0.8962,1,0.926,0.6444,0.5852,0.6148,0.8666,0.8074,0.6296,0.6444,0.7186,0.3778,0.2592,0.1112,0.2888,0.2296,-0.0518,0.037,0.2592,0.0518,-0.037,-0.1852,-0.1408,-0.0666,-0.3778,-0.0814,-0.363,-0.4814,0.2872,0.3862,0.4852,1,0.9406,0.7624,0.7426,0.3466,0.3466,0.307,0.7822,0.7228,0.3268,0.4258,0.4654,0.0298,-0.109,-0.1288,-0.2278,-0.1288,-0.1486,-0.208,0.3664,0.307,-0.1882,-0.1882,-0.1684,-0.406,-0.4852,-0.4456,-0.5248,-0.6436,0.7808,-1,-1,1,-1,-1,-0.8,-0.8334,-1,-0.2392,-0.0674,0.0798,0.4478,0.2638,0.276,0.595,1,0.8528,0.3252,0.3866,0.1534,0.1534,-0.0184,-0.0306,0.497,0.3988,0.2884,0.3128,0.1902,-0.0062,0.0306,0.178,0.227,0.3006,0.0062,0.1534,-0.1534,-0.0674,-0.0674,-0.1902,-0.3988,'18'
-0.1838,0.3556,0.3222,0.5848,0.7184,1,0.8854,0.5656,0.3556,0.3366,0.198,0.2936,0.1218,0.1742,0.3126,0.3556,0.6516,0.6658,0.2362,0.1694,-0.0214,-0.0978,-0.284,-0.389,0.0502,0.241,0.1838,-0.0072,0.0836,0.0978,0.1838,0.0454,-0.1072,0.4114,0.3266,0.581,0.8354,1,0.7506,0.8104,0.3916,0.4264,0.3118,0.3216,0.197,0.182,0.3068,0.636,0.8354,0.6458,0.4564,0.3616,0.3916,0.0624,-0.0124,0.1322,0.3516,0.6558,0.606,0.3018,0.3168,0.3566,0.192,0.3216,-0.1934,0.3396,0.283,0.5188,0.849,1,0.7264,0.8066,0.349,0.3444,0.2264,0.1462,0.1416,0.0142,0.1462,0.316,0.4482,0.132,0.0896,0.0236,0.0236,0.0708,0.0188,0.165,0.2028,0.2264,0.085,0.1556,0.066,0.0896,0.1274,0.1084,-0.1652,0.3624,0.289,0.5366,0.8578,1,0.711,0.6788,0.234,0.2294,0.1056,0.0826,0.188,0.0872,0.2202,0.1238,0.3486,0.0964,-0.3074,-0.2568,-0.2614,-0.0504,-0.0046,0.2614,0.3944,0.5734,0.4542,0.1468,-0.0138,0.023,0.0872,0.1744,-0.1824,0.4638,0.4462,0.6616,0.6176,1,0.9296,0.4374,0.345,0.099,0.0462,0.2132,0.1648,0.3802,0.4286,0.5296,0.4418,0.288,0.1208,0.1032,-0.178,-0.0242,0.2264,0.3714,0.5208,0.5736,0.5472,0.2968,0.033,-0.055,-0.0726,0.0198,-0.3508,0.801,0.911,0.8062,1,0.8168,1,0.801,0.199,0.1466,0.0314,0.1676,0.4922,0.487,0.5916,0.6858,0.6178,0.1466,0.1832,0.1256,0.0052,-0.0732,0.2252,0.4502,0.513,0.6858,0.6702,0.3926,0.3926,0.1048,0.11,0.2774,-0.8444,0.7166,1,0.7556,0.9556,0.9888,0.6056,0.7278,0.5334,0.2278,0.25,0.0666,0.4888,0.3612,0.7222,0.7666,0.5056,0.1056,0.2056,0.2334,0.0778,-0.05,0.2056,0.1834,0.2944,0.5278,0.6778,0.5222,0.1778,0.1666,0.2334,0.2612,-0.1482,0.3704,0.3334,0.6296,0.5556,1,0.926,0.4444,0.1852,0.3704,0.1482,0.2592,0.074,0.2962,0.1852,0.4074,0.5556,0.6666,0.4444,0.2592,0.2592,0,-0.037,-0.2962,-0.1852,0.3704,0.3334,-0.074,0.1482,0.037,0.2962,0.1112,-0.28,0.24,0.24,0.52,0.68,1,0.84,0.52,0.32,0.24,0.16,0.24,0,0.04,0.28,0.36,0.56,0.6,0.12,0.12,-0.2,-0.28,-0.48,-0.52,-0.16,0.04,0,-0.08,0.04,0,0.04,0.04,-0.1314,0.394,0.2728,0.5556,0.8384,1,0.798,0.8384,0.4142,0.4142,0.3132,0.2526,0.0708,0.0304,0.192,0.6768,0.7778,0.495,0.293,0.1516,0.192,-0.1112,-0.0708,0.1112,0.2728,0.4748,0.3334,0.293,0.192,0.3334,0.1314,0.192,-1,-1,-1,-1,-1,-1,-1,-1,-0.9906,-0.9912,-0.4984,0.8482,0.943,0.8372,0.6874,0.478,0.2862,0.2102,0.097,-0.038,0.1186,-0.2122,-0.7376,-0.9492,-0.943,-0.9492,-0.937,-0.9268,-0.9472,-0.956,-0.96,-0.9606,-0.9634,-1,-1,-1,-1,-1,-1,-1,-1,-0.9844,-0.9864,-0.448,0.6222,0.8156,0.576,0.3732,0.209,0.074,0.0052,-0.0668,-0.2344,-0.2246,-0.427,-0.8132,-0.9012,-0.778,-0.5966,-0.5928,-0.6108,-0.6572,-0.7014,-0.6734,-0.5634,-0.6788,-1,-1,-1,-1,-1,-1,-1,-1,-0.9134,-0.9334,-0.6934,-0.72,-0.684,-0.7,-0.716,-0.716,-0.72,-0.7068,-0.6734,-0.76,-0.7668,-0.82,-0.6268,-0.2568,0.5932,1,1,1,1,1,0.9766,1,0.8766,-1,-1,-1,-1,-1,-1,-1,-1,-0.7142,1,1,1,-0.4858,-0.8,-0.4572,-0.7428,-0.8572,-0.9142,-0.8858,-0.6858,-0.6858,0.5428,0.4,1,1,0.6286,-0.7714,-0.9142,-0.6858,-0.7428,-0.7428,-0.8572,-0.7142,1,1,1,1,1,1,1,1,1,1,-0.824,-0.824,-0.7956,-0.7858,-0.571,-0.515,-0.5194,-0.474,-0.3288,-0.2828,-0.7466,-0.4,-0.3196,0.3932,0.7238,0.698,0.9892,1,-0.1304,0.3478,0.6086,0.6956,0.6086,0.4782,0.5652,0.7826,0.913,0.913,0.826,0.7826,0.913,1,0.913,0.826,0.826,0.8696,0.7826,0.6522,0.6522,0.4782,0.3044,0.174,0.0434,0.0434,-0.087,0.087,-0.087,-0.2174,-0.2174,-0.6522,0.2786,0.459,0.6722,0.6558,0.5574,0.377,0.623,0.754,1,0.9016,0.8524,0.7214,0.836,1,0.7704,0.7868,0.8032,0.8524,0.6886,0.5902,0.4918,0.4754,0.4426,0.1968,-0.0164,-0.1148,-0.2786,-0.1312,-0.164,0.0492,-0.082,-0.2296,0.5254,0.7118,0.8814,1,0.6102,0.3728,0.5084,0.5762,0.8984,0.695,0.3898,0.2372,0.678,0.678,0.4238,0.4576,0.5084,0.5594,0.4238,0.1694,0.0678,0,0.0508,0.0338,-0.1186,-0.322,-0.3728,-0.339,-0.2882,-0.0848,-0.1694,-0.305,0.5732,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.853,-0.6324,-0.6618,-0.3236,-0.3676,-0.4558,-0.147,0.103,0.0588,-0.147,0.2352,-0.103,-0.0736,0.2058,0.2058,0.4412,0.4118,0.4118,0.6324,0.8088,0.9706,0.9852,0.9118,0.7648,0.8088,1,0.9118,0.8236,0.4852,0.5,0.103,-0.0294,'19'
-0.0072,0.6182,0.6038,0.7422,0.7136,1,0.9046,0.5084,0.3604,0.2268,0.0072,-0.0692,0.0692,0.1122,0.179,0.1694,0.4606,0.556,0.3604,0.2554,0.1456,0.0644,0.16,0.2268,0.3508,0.3078,0.4034,0.4034,0.241,0.198,0.1646,0.0358,-0.1174,0.4508,0.3756,0.6526,0.8028,1,0.784,0.6338,0.2442,0.2254,-0.014,-0.0282,-0.155,-0.0752,0.3334,0.3662,0.6808,0.5024,0.1878,0.1456,0.1924,0.3756,0.4508,0.2488,0.3944,0.5212,0.3662,0.4084,0.23,0.2254,0.1362,0.324,-0.1106,0.4134,0.3798,0.6154,0.8654,1,0.8174,0.8654,0.274,0.1586,0.1346,0.0722,0.0866,0.0914,0.2212,0.2788,0.423,0.3942,0.3318,0.1154,0.1154,0.3846,0.2788,0.3414,0.3222,0.452,0.4472,0.375,0.2452,0.1972,0.0962,0.1346,-0.1474,0.4108,0.384,0.6116,0.8794,1,0.8706,0.9108,0.2678,0.1608,0.0938,0.0446,0.2276,0.192,0.3482,0.375,0.4598,0.259,0.2634,-0.0178,0.0446,0.1742,0.1876,0.3036,0.4152,0.4956,0.3124,0.1294,0.0492,-0.0402,-0.0224,0.125,-0.0992,0.4366,0.3968,0.635,0.8134,1,0.8254,0.738,0.4524,0.2142,0.0714,0.1388,0.3334,0.4206,0.5834,0.619,0.5556,0.385,0.1072,0.1072,-0.0238,-0.0318,-0.0556,0.135,0.3968,0.4604,0.3888,0.3334,0.1032,0.1032,-0.0358,-0.0516,-0.1554,0.6798,0.703,0.8098,0.833,1,1,0.3178,0.1786,-0.2018,-0.0812,0.4106,0.5592,0.6658,0.8144,0.819,0.6334,0.2714,0.072,-0.1322,-0.2854,0.1368,0.188,0.239,0.3364,0.4292,0.5824,0.4988,0.2064,0.0812,-0.007,0.2204,-0.3202,0.8818,1,0.468,0.66,0.5124,0.7734,0.7438,0.3004,0.271,0.2216,0.3842,0.3202,0.5714,0.5666,0.5566,0.5518,0.2168,0.0738,0.202,0.33,0.2414,0.271,0.2118,0.473,0.803,0.739,0.5862,0.4828,0.2464,0.271,0.3744,0,0.8,0.8,0.8,0.85,0.9,1,0.6,0.3,0.05,0.05,-0.1,0.05,-0.05,-0.1,0.1,0.05,0.4,0.3,-0.45,0.1,0.05,-0.2,0.1,0.15,0.3,0.3,0.45,0,0.15,0.2,-0.1,-0.1112,0.5112,0.5112,0.6444,0.7334,1,0.8666,0.5112,0.3334,0.1556,0.0222,-0.0222,-0.1112,0.0222,0.1556,0.2444,0.4666,0.5556,0.4222,0.4222,-0.3334,0.0222,0.2444,0.0666,0.4666,0.2,0.2888,0.2444,0.2888,-0.0222,0.2,0.2888,-0.1546,0.5258,0.5052,0.7114,0.6494,1,0.9588,0.4846,0.3814,-0.0928,-0.0104,0.4226,0.3608,0.6288,0.5464,0.835,0.8144,0.1958,0.1958,-0.464,-0.402,0.1134,0.0722,0.3402,0.3196,0.5052,0.6082,0.4432,0.3196,0.1752,0.134,-0.134,-1,-1,-1,-1,-1,-1,-1,-1,-0.9838,-0.9804,-0.4678,0.5814,0.9266,0.9696,0.9276,0.8524,0.7746,0.7666,0.67,0.3516,0.1056,-0.1154,-0.7468,-0.9356,-0.9382,-0.9258,-0.9392,-0.9428,-0.9338,-0.915,-0.9428,-0.9392,-0.949,-1,-1,-1,-1,-1,-1,-1,-1,-0.9776,-0.9734,-0.2296,0.434,0.8704,0.9932,0.8924,0.8228,0.6948,0.7492,0.676,0.307,0.0338,-0.3254,-0.7862,-0.8234,-0.6844,-0.582,-0.5176,-0.5846,-0.6306,-0.6916,-0.7168,-0.7324,-0.7126,-1,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.8468,-0.6968,-0.7568,-0.71,-0.6868,-0.7034,-0.6934,-0.7168,-0.7168,-0.7134,-0.7,-0.8,-0.8658,-0.6734,0.2066,0.7466,0.8132,0.7432,0.7566,0.7032,0.62,0.7266,0.7,0.62,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,-0.3714,-0.8858,-1,-1,-0.8858,-0.7142,-0.7142,-0.5142,-0.1428,0.5428,1,1,1,-0.7142,-0.9142,-0.9428,-0.8858,-0.8572,-0.9428,-1,-0.8286,0.8628,0.8792,0.8932,0.8964,0.9068,0.9218,0.9456,0.9868,1,0.9948,0.0272,0.009,0.0148,0.0176,0.039,0.046,0.0868,0.1096,0.0752,-0.1708,-0.7466,-0.3294,-0.0244,0.1294,0.5292,0.7414,0.9048,1,0.2,0.36,0.64,0.68,0.4,0.4,0.44,0.72,0.96,0.92,0.8,0.8,0.96,1,0.76,0.8,0.84,0.88,0.68,0.68,0.6,0.52,0.4,0.04,-0.2,-0.28,-0.24,-0.44,-0.48,-0.32,-0.52,-0.56,0.3,0.4572,0.7428,0.7428,0.4286,0.3428,0.5,0.6,0.9572,0.8858,0.7286,0.7572,0.9858,1,0.7,0.6428,0.7142,0.7858,0.5142,0.5,0.5572,0.5,0.5,0.0572,0.2572,0.2142,0.0572,-0.4,0.0428,0.1142,0.0428,-0.2142,0.76,1,0.96,0.86,0.56,0.2,0.12,0.46,0.72,0.42,0.18,0.34,0.66,0.68,0.54,0.22,0.5,0.44,0.1,0.04,0.12,-0.04,0.14,-0.12,-0.12,-0.26,-0.4,-0.34,-0.22,-0.14,-0.2,-0.34,0.898,-1,-1,1,-1,-1,-0.6,-0.8334,-1,-0.8418,-0.5108,-0.2662,-0.1366,-0.2518,-0.1654,-0.1654,0.2662,0.0792,0.0936,0.1798,0.3094,0.295,0.6546,0.5684,0.4244,0.4532,0.7842,0.6116,0.5684,0.928,1,0.9136,0.9424,0.7986,0.7698,0.6116,0.554,0.0936,0.0072,0.1654,-0.4676,'19'
-0.0504,0.9496,1,0.3854,0.3486,-0.2018,-0.2386,-0.399,-0.422,-0.6926,-0.6422,-0.5596,-0.5366,-0.5596,-0.5138,-0.6376,-0.6698,-0.734,-0.5964,-0.0918,0.0872,0.7202,0.9358,0.6468,0.7432,0.5918,0.7156,0.4634,0.4862,0.3348,0.211,0.0046,0.1006,0.7342,0.7172,0.5672,0.506,0.0698,-0.012,-0.2368,-0.3288,-0.4412,-0.506,-0.3152,-0.448,-0.2402,-0.3936,-0.3254,-0.431,-0.5332,-0.2674,-0.0086,0.2028,0.4548,0.7854,1,0.8194,0.6934,0.5878,0.6422,0.4582,0.0698,0.0664,0.1108,0.0258,0.7108,0.6594,0.5882,0.4614,-0.1446,-0.3188,-0.505,-0.7108,-0.608,-0.7148,-0.5564,-0.5288,-0.41,-0.6872,-0.6158,-0.8258,-0.8654,-0.4178,-0.406,0.2238,0.3862,1,0.9684,0.7426,0.6396,0.5604,0.4218,0.0178,-0.1128,0.0376,0.105,0.1034,0.8146,0.7456,0.7328,0.5776,-0.0818,-0.3146,-0.5172,-0.7758,-0.6982,-0.5518,-0.5,-0.487,-0.4656,-0.6206,-0.6164,-0.763,-0.8318,-0.7112,-0.2068,0.1682,0.612,0.8966,0.7544,1,0.694,0.7112,0.3018,-0.181,0.0172,0.0776,0.3362,0.1054,0.8102,0.768,0.7552,0.6118,-0.0042,-0.2152,-0.616,-0.7638,-0.6666,-0.6118,-0.4556,-0.4262,-0.3418,-0.578,-0.5274,-0.6202,-0.6034,-0.6118,-0.4556,0.1476,0.4346,0.9578,0.8482,1,0.8566,0.7216,0.481,-0.0676,-0.2574,-0.0506,0.1012,0.006,0.9722,1,0.4654,0.493,-0.2872,-0.2674,-0.5366,-0.6476,-0.7624,-0.699,-0.3504,-0.3544,-0.3584,-0.4178,-0.406,-0.5882,-0.7306,-0.5762,-0.2436,0.006,0.3702,0.6634,0.8496,0.7664,0.7148,0.5644,0.4258,0.2356,-0.0496,0.0456,0.0614,-1,0.7346,1,0.7306,-0.0694,0.01,-0.4258,-0.3426,-0.5842,-0.493,-0.4534,-0.4892,-0.5486,-0.5446,-0.5288,-0.4496,-0.501,-0.4892,-0.5842,-0.3346,-0.204,-0.0178,0.093,0.208,0.1842,0.4496,0.4496,0.2712,-0.0218,-0.2634,-0.2832,-0.1762,-0.1334,0.9334,1,0.4,0.0666,-0.4,-0.3334,-0.2666,-0.4666,-0.6,-0.5334,-0.7334,-0.8666,-0.5334,-0.2,-0.3334,-0.5334,-0.4666,-0.8,-0.1334,0.4,0.5334,0.9334,0.5334,0.7334,0.7334,0.9334,0.5334,0.2666,0.6,0.4,0.3334,0,0.909,1,0.5454,0.3182,-0.091,-0.1818,-0.3182,-0.2728,-0.5,-0.591,-0.6818,-0.4546,-0.3636,-0.3182,-0.3636,-0.7272,-0.6818,-0.2728,-0.4546,-0.2272,0.5,0.591,0,0.0454,0.3182,0.5,0.3636,0,0.091,0,-0.2728,0.0516,0.6702,0.5876,0.5464,0.4226,-0.0928,-0.2164,-0.464,-0.5876,-0.464,-0.5258,-0.4226,-0.299,-0.2372,-0.567,-0.6082,-0.7732,-0.7526,-0.567,-0.3608,0.2578,0.2784,0.9794,1,0.6494,0.6082,0.567,0.5052,0.134,0.0928,0.0104,-0.0104,-1,-1,-1,-0.9792,-0.9842,-0.9208,-0.7952,-0.7904,-0.8724,-0.901,-0.901,0.5756,0.3778,0.267,0.2088,0.1514,0.1434,0.1098,0.0652,0.0484,0.175,-0.1958,-0.7152,-0.9684,-0.9664,-0.9762,-0.9812,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9622,-0.9676,-0.5286,0.7,0.9568,0.4334,-0.0984,-0.638,0.5896,0.5958,0.5752,0.4934,0.3148,0.3112,0.3166,0.2654,0.1586,0.2294,-0.1568,-0.6704,-0.8788,-0.8626,-0.8994,-0.9426,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-1,-0.63,1,0.92,0.5766,0.5032,0.1766,-0.8258,-0.8486,-0.8226,-0.86,-0.89,-0.8926,-0.8926,-0.89,-0.8876,-0.88,-0.8726,-0.5868,-0.1734,-0.1068,-0.32,-0.7868,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,1,1,1,-0.0858,0.4572,1,1,1,0.2572,-0.8286,-0.4,-0.6572,-1,-1,-0.8858,-0.6286,-0.6286,-0.4286,-0.2572,-0.4572,-0.7428,-0.1714,-0.1714,-1,-1,-1,-1,-1,-1,-0.2308,-0.2012,-0.193,-0.1378,-0.1008,-0.0452,-0.0242,-0.0378,-0.0902,-0.077,0.9654,0.9614,0.9052,0.9338,0.9776,1,1,1,1,0.9814,-0.7734,-0.1058,-0.6696,-0.366,0.8724,0.8536,0.604,1,-0.756,-0.2804,-0.2318,-0.0934,-0.1748,-0.2276,-0.1504,-0.183,0.0448,0.0366,0.1422,0.0082,0.191,0.4756,0.3292,0.3822,0.6138,0.7276,0.8902,0.7926,0.8536,1,0.8658,0.9878,0.9146,0.8658,0.752,0.7114,0.561,0.3374,0.244,-0.065,-0.6712,-0.5908,-0.4494,-0.3844,-0.3804,-0.35,-0.3614,-0.1778,-0.0592,0.2964,0.4914,0.2734,0.499,0.9542,0.9924,0.4302,0.6978,1,0.9886,0.7018,0.8624,0.977,0.8356,0.717,0.7094,0.7476,0.74,0.7552,0.6482,0.5756,0.3766,0.2046,-0.3702,-0.1602,-0.2028,-0.032,-0.089,-0.2278,-0.121,-0.1958,0.025,0.1992,0.5944,0.8754,0.4804,1,0.911,0.669,0.6868,0.6868,0.5908,0.7224,0.8256,0.7188,0.548,0.4128,0.2812,0.2918,0.2456,0.2846,0.1174,0.1814,-0.0142,-0.4056,0.7242,-1,-1,1,-1,-1,-1,0.1334,-1,-0.5468,-0.375,-0.125,0.0624,0.0468,-0.1094,0.2188,0.2032,-0.0468,0.4844,1,0.7344,0.6718,0.7656,0.3282,0.5624,0.6094,0.0468,0.1562,0.3126,0.1876,0.6406,-0.0156,0.0624,0.0782,-0.0782,-0.5938,-0.1094,-0.1562,-0.2344,-0.375,-0.375,'20'
0.0548,0.9738,1,0.6236,0.5318,-0.011,-0.1072,-0.4486,-0.5492,-0.6062,-0.5142,-0.4354,-0.466,-0.348,-0.348,-0.3698,-0.5054,-0.383,-0.4354,-0.348,-0.2386,0.3566,0.6718,0.7856,0.79,0.6806,0.8774,0.8818,0.8336,0.8862,0.6456,0.4836,0.125,0.8428,0.7822,0.8468,0.6814,0.1694,-0.0846,-0.4274,-0.7258,-0.75,-0.5202,-0.4314,-0.383,-0.3588,-0.1774,-0.2298,-0.238,-0.3266,-0.0806,-0.1774,0.0888,0.1612,0.4838,0.6532,0.9112,0.871,1,0.8912,1,0.7782,0.7944,0.6976,0.1368,0.8316,0.739,0.8358,0.6084,0.0316,-0.4064,-0.499,-0.819,-0.8022,-0.6674,-0.6968,-0.3936,-0.5368,-0.4948,-0.5706,-0.3852,-0.3052,-0.179,-0.099,-0.0484,0.3516,0.4822,1,0.9158,0.819,0.659,0.8442,0.5622,0.579,0.4148,0.5032,0.1686,0.804,0.7098,0.8078,0.5726,0.0666,-0.3922,-0.5058,-0.7922,-0.7922,-0.5844,-0.604,-0.4666,-0.4352,-0.2236,-0.3764,-0.302,-0.3648,-0.3098,0.0628,0.0392,0.3412,0.6862,1,0.745,0.7254,0.6432,0.7294,0.4236,0.4314,0.3568,0.2706,0.1092,0.8236,0.7142,0.8026,0.5798,0.0042,-0.353,-0.563,-0.8782,-0.937,-0.7478,-0.7142,-0.563,-0.5042,-0.3404,-0.4328,-0.3782,-0.3026,-0.2142,-0.063,0.0504,0.29,0.7142,1,0.916,0.7142,0.6638,0.6596,0.4538,0.3488,0.2606,0.21,0.0162,0.9798,1,0.4838,0.492,-0.2662,-0.3186,-0.621,-0.8146,-0.6936,-0.6976,-0.3912,-0.3226,-0.4516,-0.3548,-0.4194,-0.488,-0.5322,-0.363,-0.3468,-0.1734,0.2782,0.7218,0.8548,0.762,0.7702,0.7944,0.5888,0.1976,0.1774,0.0928,0.1492,-0.7012,0.8128,1,0.5378,-0.1594,-0.2908,-0.1792,-0.1554,-0.6454,-0.7212,-0.6772,-0.757,-0.6812,-0.6294,-0.506,-0.6016,-0.5618,-0.5618,-0.5896,-0.2868,-0.1274,0.247,0.522,0.51,0.3984,0.3706,0.3546,0.3466,0.2032,-0.1236,-0.1274,-0.0598,0.1176,0.8824,1,0.4706,-0.353,-0.353,-0.4706,-0.4706,-0.353,-0.4118,-0.353,-0.4118,-0.0588,-0.2352,-0.0588,-0.2942,-0.2942,-0.353,-0.2942,-0.4118,0.1764,0.7058,0.5294,0.8236,0.7648,0.5882,0.7058,0.1764,0.7058,0.7058,0.7058,0.5882,0.087,0.913,1,0.6956,0.4782,-0.1304,0,-0.174,-0.174,-0.3914,-0.3914,-0.3914,-0.3044,-0.3478,-0.2608,-0.2174,-0.5652,-0.3044,-0.2174,-0.2608,0.087,0.174,0.5218,0.6956,0.6086,0.7392,0.6522,0.826,0.7392,0.6086,0.5218,0.2608,0.1058,0.8118,0.8118,0.6236,0.553,-0.0352,-0.1058,-0.7648,-0.6942,-0.4352,-0.5764,-0.3882,-0.3648,-0.4824,-0.4824,-0.4352,-0.4118,-0.2236,-0.153,-0.2706,0.1058,0.153,0.9058,1,0.7648,0.7648,0.4352,0.2236,0.0352,0.0118,0.0588,0.2236,-1,-1,-1,-0.9808,-0.9846,-0.97,-0.847,-0.6686,-0.8598,-0.879,-0.879,0.512,0.2272,0.1798,0.208,0.1898,0.1506,0.0752,0.0588,0.0368,0.0914,-0.006,-0.6842,-0.9208,-0.9718,-0.9608,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9596,-0.9674,-0.8858,0.0972,0.7994,0.407,0.1454,-0.4134,0.5616,0.5236,0.4174,0.4332,0.3888,0.3366,0.2722,0.2168,0.1058,0.082,-0.0274,-0.6068,-0.8138,-0.8002,-0.744,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9598,-0.9734,-0.9068,0.8466,1,0.99,0.7032,0.3766,-0.7676,-0.8426,-0.7976,-0.8,-0.7976,-0.8326,-0.84,-0.9026,-0.9756,-0.9868,-0.9734,-0.7868,-0.1468,-0.1034,-0.0134,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5714,-0.5714,1,1,1,-0.4858,1,1,1,-0.4572,-0.9428,-0.9714,-0.9714,-1,-1,-0.9714,-0.8572,-0.8572,-0.6572,-0.4572,-0.3142,-0.6572,-0.8286,-1,-1,-1,-1,-1,-1,-1,-0.3108,-0.2698,-0.2344,-0.168,-0.1366,-0.0988,-0.084,-0.0804,-0.1444,-0.144,0.9398,1,0.9908,0.993,1,1,1,1,1,1,-0.7334,-0.047,-0.4888,-0.4174,0.9714,0.7202,0.5576,1,-0.8158,-0.3992,-0.3158,-0.3378,-0.2632,-0.2764,-0.3684,-0.2588,-0.1666,0.1316,0.1536,0.0482,0.3202,0.4298,0.3026,0.171,0.4298,0.478,0.7894,0.6666,0.978,0.9736,1,0.943,0.9166,0.921,0.8684,0.5658,0.7106,0.6754,0.4386,-0.0132,-0.7892,-0.7162,-0.5268,-0.458,-0.3592,-0.4108,-0.4322,-0.4236,-0.3548,-0.114,0.286,0.0538,0.2388,0.686,0.6344,0.3592,0.6,0.7806,0.8624,0.7678,1,0.9784,0.8494,0.8838,0.8064,0.729,0.5182,0.5268,0.5354,0.656,0.4624,0.1698,-0.5698,-0.271,-0.3824,-0.3506,-0.2828,-0.1792,-0.1474,-0.0518,-0.012,0.0438,0.4224,0.5298,0.3228,0.8326,0.9362,0.522,0.5698,0.8366,0.7012,0.729,1,0.9362,0.769,0.6176,0.6614,0.3626,0.2788,0.3386,0.275,0.2192,0.4462,0.275,0.273,-1,-1,1,-1,-1,-0.6,0.0334,-1,-0.1764,0.0148,0.0588,0.103,-0.0736,0.1764,0.3088,0.4118,0.397,1,0.9558,0.603,0.7352,0.9264,0.6176,0.8676,0.7352,0.4118,0.4852,0.5294,0.5736,0.8382,0.397,0.5882,0.2794,0.25,-0.0148,0.2794,0.1618,0.0588,-0.0588,-0.1912,'20'
0.2552,1,0.9054,0.502,0.2182,-0.3004,-0.5474,-0.465,-0.6748,-0.753,-0.7614,-0.8806,-0.7284,-0.6544,-0.6626,-0.8766,-0.7078,-0.461,-0.2182,-0.0576,0.5556,0.646,0.3168,0.2592,0.1194,-0.0864,0.2552,0.4898,0.6544,0.4938,0.3704,0.4568,0.0704,0.7062,0.6136,0.8632,0.4768,-0.163,-0.5372,-0.5614,-0.7142,-0.8712,-0.6902,-0.666,-0.6016,-0.8068,-0.8108,-0.9154,-0.5856,-0.3602,0.3158,0.4366,1,0.9758,0.513,0.3924,0.5412,0.3038,0.4366,0.4044,0.4124,0.5332,0.497,0.8552,-0.0912,0.4598,0.796,1,0.6494,-0.306,-0.4884,-0.56,-0.5098,-0.6672,-0.5278,-0.3882,-0.3524,-0.56,-0.653,-0.8498,-0.2486,-0.059,0.7316,0.7496,0.721,0.6602,0.7746,0.5922,0.4276,0.0232,-0.3202,-0.0518,-0.1092,0.2022,0.4026,0.5742,-0.1574,0.3508,0.8098,1,0.6722,-0.105,-0.2296,-0.2852,-0.2852,-0.4852,-0.341,-0.1902,-0.1442,-0.0754,-0.1312,-0.1606,0.0394,0.0754,0.246,0.3082,0.5082,0.459,0.5836,0.4066,-0.0656,-0.4032,-0.541,-0.423,-0.4196,-0.1114,0.1574,0.2984,-0.1372,0.4052,0.7504,1,0.8028,0.0848,-0.2266,-0.2882,-0.3406,-0.3282,-0.0724,0.131,0.3036,0.359,0.2728,0.057,-0.0416,-0.2634,-0.1618,-0.1802,0.1864,0.1988,0.0878,-0.0354,-0.3466,-0.3652,-0.3036,-0.4052,-0.3528,-0.1372,-0.0262,-0.094,-0.0254,0.6792,0.6762,1,0.958,0.2114,0.1514,-0.0134,0.0044,-0.0314,0.0254,0.0614,0.0704,-0.1304,-0.1574,-0.2924,-0.3104,-0.2984,-0.2594,-0.0944,0.0374,0.1274,-0.0374,-0.1754,-0.2594,-0.3974,-0.3764,-0.2984,-0.1754,-0.0764,-0.1724,-0.2414,-0.332,0.8962,1,0.5436,0.7514,0.3692,0.6624,0.5992,0.4694,0.3358,-0.3172,-0.2876,-0.2022,-0.0798,-0.3804,-0.4768,-0.5696,-0.5956,-0.5474,-0.4656,-0.2468,-0.2802,-0.499,-0.4138,-0.5844,-0.5548,-0.6474,-0.4656,-0.5214,-0.4768,-0.5622,-0.3544,0.3044,1,1,0.2608,0.0434,-0.2174,-0.2174,-0.087,-0.2174,-0.3044,-0.3914,-0.4348,-0.3478,-0.4348,-0.2608,-0.3044,-0.087,-0.0434,-0.087,-0.2174,0,-0.0434,-0.2174,-0.0434,-0.087,0.087,-0.0434,0.3478,0.0434,0.2608,0.0434,-0.087,0.4468,1,0.9148,0.5744,0.4042,0.0212,-0.0638,-0.1064,-0.149,-0.4042,-0.8724,-0.4042,-0.149,-0.149,-0.234,-0.3192,-0.2766,0.149,0.149,0.0212,0.4042,0.5744,0.532,0.234,0.617,0.617,0.7022,0.7022,0.8298,0.7022,0.234,0.532,-0.1288,0.4654,0.604,1,0.8812,0.1882,-0.01,-0.4456,-0.604,-0.2872,0.0496,0.109,0.1486,0.2476,-0.0694,0.0694,-0.2278,-0.1486,0.0496,0.0298,0.307,0.2872,0.0892,-0.109,-0.1486,-0.2872,-0.1288,-0.1486,-0.4456,-0.0892,0.2278,0.0892,-1,-1,-1,-1,-1,-1,-1,-1,-0.9922,-0.9892,-0.8958,-0.581,-0.4434,-0.1068,0.377,0.8324,0.9936,0.9174,0.7038,0.1084,-0.3652,-0.6896,-0.9046,-0.9774,-0.9808,-0.9872,-0.9848,-0.9798,-0.9784,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9834,-0.983,-0.9076,-0.6418,-0.471,-0.063,0.4122,0.8606,0.9626,0.8564,0.752,0.0642,-0.4432,-0.7092,-0.8864,-0.9542,-0.9594,-0.9516,-0.9594,-0.9594,-0.9626,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9328,-0.9068,-0.83,-0.8912,-0.9024,-0.7756,-0.8224,-0.809,-0.8178,-0.8178,-0.849,-0.8824,-0.9668,-0.969,-0.91,-0.7434,-0.6468,-0.6734,-0.6334,-0.8168,-0.7234,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4286,-0.6572,0.8858,1,-0.2858,-0.6286,-0.8572,-0.8572,-0.6286,-0.6,-0.2858,0.2286,-0.2572,-0.4858,-0.4858,-0.6,-0.9142,-0.9428,-0.9142,-0.9714,-0.8,-1,-1,-1,-1,-0.6702,-0.634,-0.6482,-0.6276,-0.606,-0.5714,-0.5092,-0.4226,-0.3114,0.0688,0.641,0.6024,0.6228,0.6622,0.6676,0.7084,0.7588,0.6972,0.4756,-0.1026,-0.7066,0.047,-0.9118,-0.7156,-0.6406,-0.6246,-0.5796,-0.6666,0.238,0.0748,0.2926,1,0.796,0.8504,0.796,0.6734,0.6734,0.8368,0.7688,0.7278,0.9456,0.9456,0.687,0.4014,0.932,0.9728,0.7278,0.6598,0.6326,0.5238,0.619,0.6462,0.6598,0.5238,0.551,0.4694,0.3334,0.5238,0.1972,-0.2926,0.1938,0.0698,0.1472,0.938,0.5814,0.4728,0.5968,0.5968,0.6434,0.845,0.7054,1,1,0.3488,0.7054,0.6744,0.938,0.9224,0.6124,0.5814,0.5348,0.5504,0.8914,0.7674,0.7674,0.7674,0.6124,0.5814,0.3178,0.4574,0.1008,-0.1628,0.6062,1,0.0052,0.285,0.2538,0.1296,0.4094,0.2954,0.202,0.3886,0.5648,0.5026,0.3576,0.6374,0.7512,0.2746,0.6062,0.399,0.399,0.4818,0.1398,0.1502,0.202,0.2746,0.2332,0.1502,0.2332,0.0362,0.1296,-0.202,-0.5026,-0.6476,-0.9924,1,-1,-1,-1,-1,-1,-1,-1,-0.08,0.1,0.18,0.32,0.78,0.82,1,0.74,0.32,0.36,0.3,0.26,0.56,0.3,0.54,0.34,0.44,0.54,0.2,0.3,0.42,0.32,0.04,0.2,0.24,0.6,0.62,0.24,0.36,0.26,-0.04,-0.56,'21'
0.214,1,0.9378,0.6148,0.4786,-0.2684,-0.4552,-0.4552,-0.7004,-0.568,-0.747,-0.6888,-0.7976,-0.891,-0.6536,-0.6498,-0.4046,-0.428,0.0156,0.2218,0.5914,0.5836,0.1906,0.0038,0.1284,0.6614,0.8444,0.5992,0.6926,0.4436,0.4824,0.2684,0.1576,0.8842,0.7844,0.9242,0.6926,-0.1498,-0.4012,-0.2734,-0.4172,-0.3572,-0.549,-0.5848,-0.453,-0.5528,-0.6806,-0.453,-0.2016,0.1378,0.3094,0.9042,1,0.6886,0.6526,0.4172,0.4452,0.7446,0.6646,0.5928,0.4212,0.4092,0.497,0.5728,-0.0106,0.5936,0.6396,0.887,0.6466,-0.1202,-0.5512,-0.6572,-0.3992,-0.477,-0.53,-0.5088,-0.2756,-0.3286,-0.205,-0.3462,-0.325,0.0106,0.2968,0.781,0.6608,0.7208,0.848,1,0.6042,0.3004,-0.0318,-0.1448,-0.1378,-0.1732,0.166,0.4452,-0.0622,0.5218,0.736,1,0.7858,-0.1086,-0.4504,-0.5776,-0.3634,-0.3634,-0.3882,-0.3572,-0.0714,0.028,0.1926,0.2204,0.3944,0.1242,0.031,0.2392,0.2546,0.6118,0.4938,0.267,0.1056,0.0218,-0.2268,-0.2546,-0.354,-0.3602,0.1956,0.2268,-0.0366,0.5842,0.6208,1,0.896,0.0168,-0.1264,-0.3708,-0.368,-0.1714,0.1376,0.2668,0.3848,0.3904,0.3426,0.0534,-0.0168,-0.191,-0.4102,-0.2838,-0.059,0.205,0.1938,-0.073,-0.0702,-0.264,-0.3904,-0.3484,-0.3792,-0.2584,-0.045,-0.0758,-0.3212,0.8842,1,0.5994,0.7582,0.3874,-0.1754,-0.3046,-0.043,0.2152,0.159,0.0728,-0.0364,-0.1524,-0.3212,-0.3974,-0.4834,-0.51,-0.6158,-0.6192,-0.51,-0.3212,-0.2848,-0.5298,-0.5794,-0.5332,-0.563,-0.4966,-0.3576,-0.245,-0.3378,-0.3344,-0.854,0.579,1,0.8302,0.2734,0.4466,0.0866,0.7522,0.7792,0.1206,-0.1748,-0.236,-0.4602,-0.3548,-0.5076,-0.623,-0.5654,-0.7012,-0.7012,-0.6264,-0.5994,-0.6842,-0.6096,-0.5008,-0.4228,-0.6028,-0.7894,-0.613,-0.6298,-0.3888,-0.511,-0.657,0.3192,1,1,0.4468,0.3618,0.0638,0.0212,-0.4042,-0.2766,-0.4894,-0.5744,-0.4042,-0.3192,-0.532,-0.4468,-0.4042,-0.532,-0.4894,-0.2766,-0.0212,0.0638,0.532,0.4894,0.149,-0.0638,0.3618,0.532,0.5744,0.617,0.0638,0.0212,0.1064,0.25,1,0.9,0.65,0.55,-0.15,-0.45,-0.45,-0.65,-0.45,-0.65,-0.85,-0.65,-0.6,-0.25,-0.3,-0.2,-0.15,0.2,0.2,0.75,0.75,0.1,0.1,0.55,0.5,0.9,0.65,0.8,0.5,0.6,0.45,-0.04,0.54,0.6,1,0.86,-0.02,-0.14,-0.28,-0.22,-0.1,0.08,0.2,0.62,0.64,0.3,0.18,-0.02,-0.1,-0.52,-0.28,0.08,0.08,0.36,0.2,-0.02,-0.32,-0.32,-0.24,-0.16,-0.3,-0.02,-0.12,-1,-1,-1,-1,-1,-1,-0.9856,-0.9868,-0.9822,-0.9678,-0.6608,0.108,0.2682,0.4874,0.6298,0.7424,0.9038,0.9822,0.5336,-0.0546,-0.2016,-0.4848,-0.8254,-0.9776,-0.9776,-0.9756,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.974,-0.9658,-0.9628,-0.9502,-0.7272,-0.076,0.1078,0.4188,0.6652,0.7404,0.7488,0.9442,0.4442,-0.1514,-0.3308,-0.5102,-0.8172,-0.9404,-0.9476,-0.9428,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.74,-0.6268,-0.4534,-0.7868,-0.8912,-0.8912,-0.8624,-0.7046,-0.7156,-0.8068,-0.8846,-0.8956,-0.98,-0.956,-0.942,-0.8634,-0.7668,-0.58,-0.62,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,-0.8,-0.8,-0.4858,0.9714,1,-0.5714,-0.5142,-0.6858,-0.5428,-0.7142,-0.2572,-0.2286,-0.3428,-0.6286,-0.4286,-0.0286,-0.3714,-0.8572,-0.8286,-1,-1,-1,-1,-1,-1,-1,-0.4092,-0.3958,-0.378,-0.353,-0.3156,-0.2888,-0.2648,-0.2308,-0.2186,0.0566,0.8752,0.842,0.8094,0.8508,0.8666,0.8544,0.8362,0.7892,0.623,-0.0214,-0.7466,0.0824,-0.7208,-0.2164,-0.077,-0.054,-0.0012,-0.725,-0.325,-0.075,-0.2876,-0.3126,-0.025,0.1,0.15,0.125,0.1624,-0.025,0.1,0.85,0.6876,0.775,1,0.7,0.5624,0.525,0.4,0.725,0.5374,0.2124,-0.0126,0.0624,-0.0876,0.0624,0.125,-0.275,-0.1126,-0.0876,-0.2876,-0.6,0.087,0.3304,-0.1218,-0.0608,0,0.2174,0.1392,0.0956,0.2522,0.2434,0.5826,0.8,0.6782,0.687,1,0.8782,0.5304,0.5478,0.3392,0.5914,0.6782,0.4086,0.2782,0.2522,-0.1304,0.0522,0.1914,0.1914,0.0782,0.1218,-0.2522,-0.4782,0.8188,1,0.3914,-0.029,-0.0434,0.0072,0.0724,0.0798,-0.0144,0.145,0.3044,0.558,0.6304,0.6594,0.5798,0.5362,0.6232,0.7536,0.471,0.5072,0.558,0.2174,0.1812,-0.0144,-0.058,-0.058,0.0434,0.1304,0.0218,0.116,-0.1594,-0.4566,-0.9784,-1,1,-1,-0.8,-1,-1,-0.4334,-1,-0.5862,-0.0804,0.0574,0.5172,0.5862,0.954,1,0.7472,0.1724,0.4942,0.862,0.6552,0.4252,-0.2184,0.1954,0.3564,0.4252,0.2414,0.5402,0.5632,0.0114,-0.0574,-0.0804,-0.2874,-0.0804,0.1264,0.1264,0.1494,-0.0804,-0.0804,-0.5172,-0.5402,'21'
0.1064,1,0.9958,0.7494,0.6994,0.1274,0.048,-0.4406,-0.478,-0.6116,-0.5282,-0.1984,-0.3194,-0.165,-0.24,-0.002,-0.0438,0.0188,0.3402,0.57,0.5366,0.6242,0.5408,0.8872,0.858,0.4572,0.3946,0.2192,-0.0648,0.0104,-0.0146,0.1356,0.0888,0.7336,0.6876,0.7796,0.6514,0.1678,-0.023,-0.4704,-0.6612,-0.5624,-0.3684,-0.2336,-0.2632,-0.181,-0.2236,-0.1842,-0.444,-0.4474,-0.3718,-0.1382,0.25,0.6448,0.7664,0.6876,0.829,0.9276,1,0.7664,0.6908,0.3914,0.3388,0.0856,0.1248,0.8336,0.7306,0.8614,0.6316,-0.006,-0.39,-0.5524,-0.8138,-0.7862,-0.6158,-0.6752,-0.3702,-0.4892,-0.291,-0.493,-0.493,-0.6,-0.4694,-0.4218,-0.3466,0.3504,0.5802,0.9802,0.8812,0.8258,0.7426,1,0.7782,0.6476,0.3466,0.3624,0.1788,0.8664,0.7564,0.8506,0.5914,-0.1042,-0.5992,-0.8272,-0.8036,-0.8114,-0.7406,-0.8036,-0.4734,-0.666,-0.5324,-0.6896,-0.5442,-0.6856,-0.7288,-0.4342,-0.2456,0.163,0.5952,1,0.7918,0.6582,0.666,0.776,0.332,0.3516,0.171,0.0806,0.1942,0.951,0.861,0.9304,0.7138,-0.0674,-0.411,-0.7056,-0.861,-0.7914,-0.771,-0.8118,-0.5746,-0.5992,-0.4234,-0.5378,-0.546,-0.6278,-0.5788,-0.4684,-0.2352,0.2516,0.501,1,0.9182,0.7546,0.6974,0.7506,0.6278,0.5132,0.1902,0.1534,0.0092,0.9708,1,0.5868,0.6344,-0.0932,-0.1774,-0.6124,-0.9342,-0.7368,-0.6892,-0.5612,-0.3346,-0.2944,-0.3456,-0.4332,-0.499,-0.3382,-0.148,0.0092,0.1664,0.426,0.7478,0.967,0.9414,0.6782,0.7514,0.766,0.4442,0.4114,0.0968,0.3272,-0.7662,0.774,1,0.5978,-0.0076,-0.046,-0.5594,-0.4368,-0.6704,-0.6514,-0.682,-0.728,-0.751,-0.8008,-0.567,-0.5708,-0.6206,-0.5938,-0.3296,0.1264,0.2528,0.433,0.6704,0.6704,0.6284,0.4828,0.475,0.4252,0.1302,0.2452,0.2796,0.2068,0.1,0.95,1,0.45,0.3,-0.35,-0.05,-0.2,-0.4,-0.95,-0.25,-0.2,-0.35,-0.2,0,0.2,0.2,0.45,0.3,0.1,0.15,0.3,0.4,0.25,0.4,0.3,0.25,0.05,0.05,-0.05,0,0.15,0.1578,1,1,0.7894,0.7894,0.0526,0.0526,-0.1578,-0.1578,-0.6316,-0.4736,-0.0526,-0.2106,-0.1052,-0.3684,-0.1578,-0.1052,0.4736,0.6842,0.7894,0.6316,0.4736,0.579,0.7894,0.579,0.0526,-0.2106,0,-0.2106,0.2106,0.2632,0.421,0.0882,0.853,0.6764,0.853,0.6176,-0.147,-0.5294,-0.5882,-0.853,-0.8824,-0.8824,-0.7942,-0.4706,-0.4706,-0.2648,-0.4118,-0.6176,-0.5294,-0.4706,-0.4706,-0.3236,0.1764,0.3824,1,0.853,0.7058,0.853,1,0.6176,0.7352,0.4412,0.4412,-1,-1,-1,-1,-1,-0.9778,-0.97,-0.9668,-0.9756,-0.9568,-0.818,0.4398,0.9534,0.9446,0.7914,0.5508,0.3178,0.2702,0.3056,0.2412,0.2934,-0.016,-0.6982,-0.9468,-0.939,-0.9446,-0.9346,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9686,-0.9584,-0.9504,-0.9222,-0.8262,-0.768,0.2634,0.893,0.9418,0.7948,0.4206,0.1658,0.1518,0.1722,0.0724,0.1856,-0.1384,-0.6886,-0.7948,-0.7806,-0.8042,-0.8986,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9934,-0.8934,-0.86,-0.5234,-0.1168,-0.4434,-0.885,-0.875,-0.8468,-0.88,-0.8912,-0.9024,-0.9246,-0.9624,-0.9468,-0.9512,-0.949,-0.7134,-0.0768,-0.16,-0.2768,-0.5668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6286,-0.7714,-0.3714,1,1,0.2572,1,0.7142,-0.4572,-0.7714,-0.6858,-0.8,-1,-0.8286,-0.8572,-0.6858,-0.6572,-0.3142,-0.2858,-0.8,-0.3142,0.0572,-1,-1,-1,-1,-1,-1,-0.1116,-0.0904,-0.063,-0.041,0.0096,0.0336,0.0224,-0.008,-0.1246,-0.1842,0.3536,0.3744,0.4182,0.4522,0.5216,0.6404,0.7214,0.838,0.9612,0.9842,-0.7334,0.0236,-0.8114,-0.3192,0.239,0.5826,0.7814,-0.65,-0.2796,-0.292,-0.1304,0.2546,0.1428,0.2546,0.3168,0.9628,0.9752,0.7764,0.6024,0.7888,0.7268,1,0.6274,0.6274,0.7018,0.4658,0.3044,0.4782,0.6024,0.5156,0.5032,0.9378,0.9254,0.7142,0.8012,0.59,0.5156,0.1056,0.1304,-0.1926,-0.5,-0.0834,-0.0916,-0.0334,-0.0334,-0.05,0.25,1,0.9416,0.8334,0.625,0.5166,0.5834,0.5,0.3416,0.575,0.775,0.65,0.5,0.675,0.5916,0.5584,0.575,0.6084,0.2,0.175,0.2584,0.2584,0.525,0.55,0.3,-0.15,0.3148,0.5834,0.2222,0.3148,0.3518,0.1296,0.324,0.8148,1,0.824,0.6018,0.6482,0.6296,0.4444,0.324,0.4074,0.7222,0.426,0.4352,0.3704,0.4814,0.4444,0.4814,0.3796,0.2962,0.1574,0.176,0.574,0.6574,0.7686,0.5092,0.3334,-0.8726,-1,-1,1,-1,-1,-1,-0.4334,-1,-0.2106,0,0,0.3422,0.2368,0.0526,0.2106,0.171,0.2632,0.8422,0.921,0.75,0.9342,1,0.9078,0.7368,0.8026,0.579,0.3684,0.5922,0.5132,0.6974,0.3026,0.5132,0.1578,-0.0264,-0.0132,0.1842,0.1052,0.1052,0.0526,-0.329,'22'
0.1476,1,0.9328,0.4804,0.3122,-0.5664,-0.4804,-0.413,-0.4804,-0.3794,-0.4392,-0.4468,-0.3794,-0.0692,0.1962,0.514,0.514,0.3532,0.3158,0.1514,0.2224,0.1664,0.2822,0.3794,0.1814,0.0542,-0.099,0.129,0.0094,0.0318,-0.0504,0.2262,0.2308,1,0.912,1,0.7728,-0.1904,-0.3186,-0.3956,-0.4872,-0.3882,-0.3114,-0.3076,-0.4212,-0.3554,-0.2234,-0.1538,-0.0732,0.2014,0.5092,0.5604,0.7436,0.4982,0.5714,0.7802,0.8168,0.4102,0.326,0.033,-0.0512,0.1136,0.099,0.2564,0.1248,0.82,0.7378,1,0.782,0.1406,-0.2606,-0.3776,-0.8988,-0.8326,-0.4976,-0.4976,-0.3396,-0.4344,-0.2322,-0.4092,-0.3712,-0.583,-0.368,0.0048,0.3112,0.7598,0.8736,0.8958,0.88,0.94,0.9368,0.9304,0.5956,0.3712,0.289,0.2922,0.1826,0.8514,0.735,1,0.735,0.1858,-0.3312,-0.286,-0.8836,-0.8836,-0.6962,-0.622,-0.3926,-0.4022,-0.2472,-0.218,-0.1568,-0.1406,-0.1568,0.2214,0.357,0.6768,0.7706,0.903,0.6996,0.803,0.6768,0.6996,0.6898,0.6122,0.5638,0.4152,0.1764,0.8986,0.781,1,0.7582,0.1308,-0.379,-0.317,-0.817,-0.9444,-0.621,-0.621,-0.3464,-0.4738,-0.183,-0.2876,-0.2254,-0.2352,-0.1046,0.196,0.255,0.6536,0.7418,1,0.8888,0.6078,0.5098,0.6176,0.5228,0.4248,0.4608,0.4804,0.0904,0.994,1,0.6928,0.6808,-0.0482,-0.0904,-0.6204,-0.7078,-0.7168,-0.6326,-0.4698,-0.4608,-0.4036,-0.229,-0.0994,-0.229,-0.1778,-0.1144,0.1356,0.4246,0.6416,0.8976,0.9216,0.732,0.7078,0.5754,0.5844,0.521,0.506,0.3494,0.241,-0.8884,0.7798,1,0.6418,0.1102,0.025,-0.113,-0.025,-0.3304,-0.492,-0.486,-0.7592,-0.63,-0.5478,-0.586,-0.4772,-0.5742,-0.2628,-0.1512,0.0572,0.4302,0.5448,0.8208,0.8678,0.6886,0.815,0.9354,0.7738,0.6418,0.4772,0.348,0.3804,0.1352,1,1,0.3514,0.1892,-0.4054,-0.7838,-0.5676,-0.2432,-0.081,-0.2972,0.081,0.1352,0.4054,0.4054,0.4054,0.5136,0.1352,0.2432,-0.027,0.4594,0.2432,0.5676,0.4054,-0.2432,-0.1352,-0.3514,0.081,-0.027,-0.1352,-0.2432,-0.1892,0.0286,1,1,0.4286,0.4858,-0.5428,-0.5428,-0.3714,-0.8286,-0.4858,-0.5428,-0.4286,-0.5428,-0.2,0.0858,0.8286,0.8286,0.1428,0.3142,0.1428,0.3714,0.3714,0.1428,0.2,-0.0858,-0.1428,-0.4286,0.0286,0.0858,0.0858,0.2,0.4858,0.0588,0.6942,0.6706,0.8352,0.6942,0.0588,-0.2236,-0.4588,-0.5764,-0.4824,-0.4118,-0.3176,-0.247,-0.2,-0.247,-0.247,-0.553,-0.247,0.2236,0.5058,1,0.953,0.6942,0.6942,0.9764,0.8118,0.5058,0.1764,-0.247,0.0588,0.1294,0.4352,-1,-1,-1,-1,-1,-1,-1,-0.9882,-0.9866,-0.9682,-0.8026,-0.378,-0.117,0.6588,0.8404,0.5536,0.2902,0.1872,0.1614,0.0794,0.0326,-0.2342,-0.6522,-0.9306,-0.9632,-0.9698,-0.9624,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9768,-0.9756,-0.962,-0.8268,-0.4594,-0.236,0.5764,0.9468,0.6002,0.2408,0.1606,0.1202,0.0028,-0.0792,-0.2348,-0.6376,-0.8634,-0.8544,-0.8708,-0.9058,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.94,-0.7668,-0.8734,-0.89,-0.88,-0.828,-0.68,-0.7764,-0.7692,-0.751,-0.9,-0.9764,-0.9382,-0.94,-0.7634,-0.1568,-0.0768,0,-0.2868,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,-0.9142,-0.4,1,1,-0.6,1,-0.2858,-0.5142,-0.9428,-1,-0.9714,-0.7428,-0.7142,-0.5714,-0.2,-0.2858,-0.6286,-0.6858,-0.5428,-1,-1,-1,-1,-1,-1,-0.597,-0.5566,-0.5328,-0.4854,-0.492,-0.452,-0.3796,-0.2724,-0.1946,-0.0898,-0.2608,-0.1902,-0.1706,-0.1442,-0.091,-0.0482,0.072,0.3454,0.5896,0.8364,-0.7334,0.2588,-0.82,-0.6076,-0.4754,-0.3988,-0.4148,-0.475,0.1272,0.0546,0.1878,0.7576,0.6606,0.6,0.6848,0.9152,1,0.7212,0.7696,0.8788,0.806,0.8546,0.6364,0.5758,0.6484,0.6848,0.709,0.6848,0.9516,0.4304,0.709,0.6484,0.5878,0.7334,0.394,0.3696,0.5516,0.406,0.3454,-0.709,0.0488,-0.0122,0.0976,0.6586,0.5732,1,1,0.9146,0.9634,0.4878,0.9634,0.8536,0.7196,0.5854,0.3536,0.756,0.7074,0.3902,0.5366,0.3536,0.6708,0.5366,0.756,0.561,0.5854,0.5732,0.5488,0.5122,0.256,-0.0366,0.0732,-0.3048,0.7242,1,0.2344,0.2276,0.1172,0.2138,0.4206,0.5724,0.469,0.3932,0.3104,0.7794,0.5172,0.5242,0.4,0.4482,0.3794,0.3724,0.469,0.2276,0.2758,0.5586,0.4758,0.5724,0.5034,0.7656,0.6828,0.5586,0.462,0.4896,0.138,-0.6828,-0.9938,1,-1,-1,-1,-1,-0.4,-1,-1,-0.3094,-0.0216,0.108,0.4964,0.3812,0.2806,0.2518,0.2374,0.3238,0.7698,0.7266,0.6546,0.6402,0.8418,1,1,0.7554,0.482,0.4676,0.5972,0.6546,0.5972,0.41,0.3812,0.3526,0.6116,0.3526,0.1654,0.0792,0.4388,-0.2662,-0.3812,'22'
-0.0746,0.613,0.6026,0.9058,0.8484,1,0.613,0.383,0.1974,0.187,0.1686,0.2942,0.4406,0.5478,0.587,0.3882,0.234,-0.119,-0.1608,-0.1164,-0.0876,0.051,0.187,0.4066,0.6104,0.6026,0.2156,-0.0718,-0.145,-0.1424,0.1112,0.2784,0.0094,0.6782,0.7792,1,0.5994,0.634,0.1672,0.1262,-0.1452,-0.0978,0.1546,0.3438,0.3438,0.4416,0.4038,-0.1198,-0.246,-0.6182,-0.5362,-0.47,-0.5078,-0.3912,0.0662,-0.1072,-0.3124,-0.3754,-0.5332,-0.6688,-0.6466,-0.4858,-0.41,-0.366,-0.0614,0.6318,0.8872,1,0.7744,0.1344,-0.1244,-0.2538,-0.5522,-0.5058,-0.6286,-0.1808,-0.0614,0.0714,0.0116,-0.058,-0.1642,-0.3366,-0.3764,-0.4096,-0.1178,0.0646,0.1112,-0.3532,-0.4958,-0.4494,-0.486,-0.5158,-0.6318,-0.3898,-0.383,-0.4528,-0.2868,0.5688,1,0.8574,0.4814,-0.1928,-0.261,-0.4198,-0.6628,-0.8574,-0.987,-0.6012,-0.624,-0.5624,-0.7536,-0.6272,-0.65,-0.4748,-0.0924,0.1378,0.491,0.585,0.5656,0.5916,0.5494,0.5008,0.2674,0.1312,-0.0924,-0.2188,-0.073,0.1832,-0.172,0.6402,1,0.914,0.6688,-0.0254,-0.3122,-0.6528,-0.7198,-0.828,-0.895,-0.7834,-0.691,-0.672,-0.8312,-0.9808,-0.93,-0.6942,-0.3886,0.0382,0.4522,0.5828,0.4236,0.5764,0.4586,0.57,0.5,0.2484,-0.1528,-0.0764,-0.0956,0.3184,-0.1298,0.6402,0.6554,1,1,0.18,0.0578,-0.47,-0.5616,-0.385,-0.326,-0.2716,-0.1538,-0.1298,-0.025,0.1276,0.2716,0.2584,0.2846,0.2758,0.3282,0.228,0.108,0.2082,0.132,-0.0208,0.012,-0.0208,0.0884,0.2694,0.361,0.326,-0.5488,0.8478,1,0.5648,0.9226,0.701,0.4552,0.3832,-0.1054,-0.0654,0.012,0.3324,0.247,0.279,0.4526,0.223,-0.028,-0.2016,0.0174,0.052,0.1856,0.2096,0.1428,0.2016,0.1562,-0.1348,-0.1134,-0.279,-0.1162,0.2978,0.3404,0.0654,0.1428,0.9428,1,0.8858,0.8286,0.5428,-0.4286,-0.2572,-0.6572,-0.6572,-0.4286,-0.0858,-0.3142,-0.3714,0.0858,0.0858,0.0858,0.2572,-0.2,-0.0286,0.0286,-0.0286,-0.4286,0.0286,0.4858,0.6,0.2,-0.5428,-0.0858,0.2,0.3714,0.3142,0.0196,0.647,0.5686,0.9608,1,0.804,0.804,0.451,0.3726,0.3334,0.2156,0.451,0.3726,0.451,0.3334,0.3334,0.4902,0.3726,0.3726,0.2942,0.255,0.3334,0.3334,0.3334,0.451,0.2942,-0.0196,0.2942,0.4902,0.3726,0.3726,0.3726,-0.2,0.8462,1,0.9076,0.7538,0.4462,0.0154,-0.2,-0.323,-0.3538,-0.1384,-0.0154,0.3538,0.2924,0.5692,0.3846,-0.2,-0.7846,-0.5076,-0.2308,0.0154,0.2616,0.4154,0.2,0.0462,-0.2616,-0.3846,-0.5384,-0.4154,-0.323,-0.3538,-0.4154,-1,-1,-1,-1,-1,-1,-1,-1,-0.9858,-0.9858,-0.7016,0.6724,0.744,-0.0854,-0.4106,0.3998,0.2872,0.1062,0.4206,0.8824,0.5514,-0.3748,-0.814,-0.9708,-0.9742,-0.9774,-0.9742,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9782,-0.975,-0.2718,0.5052,0.8674,-0.287,-0.5654,0.147,0.0618,-0.1756,0.0524,0.5836,0.331,-0.499,-0.8284,-0.921,-0.9204,-0.9334,-0.948,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9,-0.94,-0.1768,-0.7784,-0.7368,-0.815,-0.8718,-0.8134,-0.8318,-0.8318,-0.82,-0.8862,-0.8848,-0.9754,-0.8468,-0.6268,-0.63,-0.6,-0.6634,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,0.8286,1,1,1,-0.3142,-0.8572,-0.5428,-0.4858,0.4,0.6858,-0.4,-0.4858,-0.9428,-0.8858,-0.2572,-1,-1,-1,-1,-1,-1,0.6684,0.7072,0.7224,0.7562,0.7744,0.7716,0.6646,0.4828,0.3934,0.3192,-0.2302,-0.2624,-0.2892,-0.37,-0.437,-0.5744,-0.6402,-0.6468,-0.4354,-0.1212,-0.5866,0.4706,-0.34,-0.3996,0.5488,0.5406,0.7828,1,-0.0652,0.3044,0.413,0.4782,0.5434,0.5434,0.587,0.587,0.674,0.6522,0.6086,0.587,0.7174,0.8044,0.913,0.9348,0.9566,1,0.9348,0.8478,0.8044,0.7392,0.7174,0.3914,0.3914,0.1956,0.2174,0.4566,0.5218,0.4566,0.2174,-0.174,-0.0082,0.3554,0.2728,0.2232,0.19,0.3884,0.3388,0.6528,0.752,0.3058,0.3554,0.5538,0.8512,0.8016,0.8348,1,0.9174,0.9834,0.8678,0.8348,0.752,0.6364,0.7852,0.5206,0.6034,0.6198,0.5868,0.4214,0.5206,0.5206,0.4214,0.1404,-0.077,0.3334,0.3846,-0.0598,-0.2136,-0.1624,0.0086,0.5726,0.7094,0.2308,-0.1452,0.282,1,0.983,0.3504,0.5042,0.8462,0.9488,0.829,0.7094,0.47,0.5384,0.6582,0.6068,0.077,0.0428,0.1966,-0.0256,-0.3162,-0.0086,0.3162,0.1452,1,-1,-1,1,-1,-1,-1,-0.7666,-1,-0.398,-0.0874,-0.0098,0.4174,0.2428,0.6894,0.8446,1,0.0874,0.4758,0.4368,0.1068,0.3204,0.4564,0.301,0.5534,0.1456,0.5728,0.67,0.5146,0.2234,0.1844,0.301,0.4564,0.4952,0.5922,0.398,0.2622,0.1844,-0.1068,-0.068,-0.3204,'23'
-0.0608,0.584,0.5352,0.837,0.9392,1,0.7348,0.3018,0.36,0.365,0.1022,0.1046,0.4258,0.6132,0.7372,0.5644,0.4258,0.197,0.0316,0.0924,0.1824,0.292,0.197,0.4794,0.6034,0.5864,0.2262,0.2482,0.1532,0.0486,0.4744,0.5378,0.013,0.6374,0.7468,0.9424,0.9454,1,0.3986,0.3008,0.3986,0.269,0.3238,0.4474,0.6058,0.4792,0.505,0.0216,-0.2,-0.1598,-0.1742,-0.0158,0.1338,0.2892,0.292,0.3094,0.1108,-0.108,-0.2288,-0.292,-0.1224,0.0188,0.1828,0.1166,0.1588,1,0.8756,0.892,0.6302,0.0606,-0.2078,-0.2374,-0.3356,-0.2766,-0.1816,-0.0704,0.0802,-0.041,-0.0082,-0.2046,-0.4174,-0.342,-0.329,-0.2832,-0.1554,-0.113,-0.0932,-0.3028,-0.437,-0.522,-0.6366,-0.604,-0.496,-0.5482,-0.1718,-0.185,-0.0744,0.5166,0.7228,1,0.8006,-0.2462,-0.6106,-0.6426,-0.7732,-0.78,-0.473,-0.4982,-0.2714,-0.3746,-0.1958,-0.1706,0.0172,-0.0882,0.1134,0.4662,0.5486,0.3974,0.402,0.7458,0.7136,0.3746,0.283,-0.1822,-0.276,-0.2028,0.1088,0.244,0.0734,0.7594,0.6912,1,0.8254,-0.3038,-0.5114,-0.686,-0.8202,-0.9468,-0.4886,-0.4608,-0.2228,-0.2304,-0.481,-0.5038,-0.3544,-0.4254,-0.2532,0.324,0.5924,0.676,0.7848,0.476,0.519,0.5342,0.4886,0.1088,0.0178,0.1342,0.2708,0.4734,-0.0808,0.7178,0.727,1,0.9886,0.0444,-0.2606,-0.6974,-0.752,-0.8522,-0.6952,-0.1672,-0.1058,0.0056,0.0648,-0.099,-0.0512,0.0672,0.2788,0.4426,0.5176,0.6268,0.6018,0.7566,0.711,0.6632,0.4904,0.281,0.19,0.124,0.0648,0.2424,-0.6494,0.8158,1,0.5914,0.9622,0.8184,0.0518,0.1576,-0.2384,-0.2636,-0.2384,-0.0946,0.2484,0.5158,0.5082,0.5662,0.4728,0.1298,0.1148,-0.0064,0.1374,0.2586,0.4476,0.5006,0.3468,-0.0694,-0.1576,-0.319,-0.3266,-0.377,0.135,0.1324,0,0.9,0.95,0.95,1,0.35,0.05,0.15,-0.05,0,-0.6,0,0.15,0.1,0.35,0.35,0.35,0.3,0.3,-0.15,-0.05,0.05,-0.1,0.1,0.7,0.7,0.15,0.4,0.15,0.3,0.35,0.4,-0.0698,0.628,0.5814,0.9534,0.9534,1,0.907,0.3024,0.0698,0.3954,0.2094,-0.0698,0.3024,0.5348,0.6744,0.721,0.4884,0.2094,0.3024,0.4418,0.3954,0.3954,0.3488,0.7674,0.907,0.814,0.628,0.6744,0.3954,0.0698,0.5348,0.6744,0.0448,0.7014,0.9104,1,0.403,0.2836,0.1044,0.0448,-0.0448,0.1642,0.3732,0.194,0.194,-0.194,-0.3732,-0.5224,-0.5224,-0.4626,-0.5224,-0.4626,-0.2238,0.0448,0.1044,-0.5224,-0.3134,-0.7314,-0.6418,-0.4926,-0.5224,-0.3732,-0.2238,-0.3432,-1,-1,-1,-1,-1,-1,-1,-1,-0.9888,-0.9874,-0.6678,0.529,0.8466,0.4386,-0.6854,0.4744,0.7526,0.0602,-0.1122,0.096,0.1472,-0.1472,-0.5642,-0.8788,-0.9768,-0.9796,-0.9748,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9824,-0.9824,-0.3368,0.4238,0.9416,0.3084,-0.7796,0.1396,0.419,-0.1586,-0.3104,-0.0856,-0.0316,-0.3,-0.6632,-0.8832,-0.9412,-0.9434,-0.9446,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.96,-0.1534,-0.78,-0.6418,-0.7818,-0.8968,-0.8368,-0.8,-0.7448,-0.7662,-0.76,-0.8186,-0.9294,-0.9668,-0.76,-0.5934,-0.5768,-0.5734,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,-0.5142,1,1,1,-0.2858,-0.8572,-0.7714,-0.5142,-0.2572,-0.3714,0,0.0858,-0.7142,-0.8572,-0.8858,-1,-1,-1,-1,-1,-1,0.7474,0.7806,0.8132,0.8376,0.871,0.8772,0.8278,0.5572,0.3624,0.2056,-0.2044,-0.2896,-0.3484,-0.3874,-0.455,-0.4962,-0.5648,-0.5774,-0.4798,-0.0794,-0.7466,0.5058,-0.3574,-0.2138,0.3566,0.4584,0.6852,1,-0.284,0.1112,0.1604,0.0864,0.2346,0.2592,0.3086,0.2098,0.4814,0.4814,0.5802,0.6544,0.8272,0.926,0.9754,1,0.9754,0.926,0.8518,0.8518,0.5062,0.5062,0.3828,0.3334,0.2098,0.0864,-0.1112,-0.1604,-0.1604,-0.0618,-0.2346,-0.5802,-0.18,0.16,0.14,-0.2,-0.18,-0.02,0.02,0.08,0.28,0.24,0.32,0.4,0.64,0.52,0.66,0.82,0.98,0.92,0.94,1,0.44,0.64,0.54,0.64,0.48,0.64,0.32,0.16,0.16,0.28,0.1,-0.06,0.2812,0.5312,0.6718,-0.0624,-0.2188,-0.3594,-0.0782,0.0468,0.4688,0.0312,-0.0468,-0.0312,0.5782,0.6406,0.4376,0.5938,0.5312,0.5156,1,0.9062,0.2188,0.3124,0.2968,0.5468,0.4376,0.0782,0.0312,-0.1876,-0.2344,-0.0782,0.4218,0.2656,0.4194,-1,-1,1,-1,-1,-0.6,-0.7666,-1,-0.2,-0.0728,0.3818,0.3636,0.3454,0.9454,1,0.7818,0.0546,0.3818,0.3636,0.0182,0.2182,0.091,0.3454,0.5818,0.5272,0.4546,0.5454,0.5454,0.3818,0.1272,0.1454,0.2,0.2182,0.2364,0.1818,-0.0182,-0.0546,0.0546,-0.091,-0.7454,'23'
-0.283,0.3812,0.4264,0.6,0.8868,1,0.917,0.5774,0.2604,0.2528,0.1622,0.1698,0.2982,0.4566,0.5094,0.5698,0.6528,0.6604,0.6378,0.5018,0.3886,0.4566,0.351,0.3812,0.5246,0.5622,0.3812,0.4416,0.2226,0.2528,0.1698,0.2982,-0.3104,0.1586,0.3242,0.4896,0.9242,0.9862,0.8138,0.7724,0.4276,0.2758,0.3242,0.2552,0.3104,0.531,0.538,0.8966,0.8344,1,0.7794,0.6276,0.5862,0.5932,0.6414,0.5518,0.7586,0.6,0.7172,0.4966,0.5172,0.5518,0.4896,0.5724,-0.2926,0.1428,0.3198,0.4694,0.8504,0.8844,0.8572,0.7824,0.4694,0.2926,0.2926,0.3198,0.3334,0.619,0.653,0.898,0.8776,1,0.6326,0.6394,0.6122,0.5646,0.6462,0.6666,0.7824,0.6734,0.6802,0.5782,0.517,0.5238,0.4898,0.619,-0.3066,0.1118,0.3124,0.4498,0.8452,0.8682,0.8568,0.788,0.467,0.2952,0.2836,0.2894,0.2952,0.5988,0.679,0.874,0.9084,1,0.6332,0.6218,0.5588,0.5014,0.6962,0.725,0.7936,0.6276,0.616,0.5702,0.467,0.4842,0.5186,0.5874,-0.2238,0.2022,0.3638,0.5364,0.9514,1,0.7358,0.7142,0.504,0.3908,0.2938,0.1968,0.3424,0.4124,0.5094,0.8114,0.7682,0.7736,0.6388,0.5688,0.4824,0.4716,0.5526,0.5796,0.6118,0.5364,0.4824,0.3638,0.31,0.3584,0.38,0.4124,-0.3602,0.2422,0.3914,0.7392,0.8386,1,0.733,0.292,0.0372,0.1242,0.0062,0.0994,0.236,0.2732,0.4162,0.41,0.795,0.7516,0.6832,0.6024,0.6708,0.6398,0.6398,0.4968,0.2982,0.2298,0.2174,0.1678,0.2174,0.354,0.385,0.2608,-0.3766,0.5062,0.5864,0.8518,0.8766,0.5494,0.426,0.1358,-0.037,-0.1976,-0.2222,-0.0618,0.0432,0.216,0.2716,0.4506,0.537,0.7346,0.895,1,0.821,0.6666,0.432,0.2592,0.247,0.2222,0.105,0.253,0.3148,0.4136,0.426,0.4506,-0.4054,0.6756,0.8378,0.7838,0.946,0.8378,1,0.4594,0.2432,0.1352,0.1892,0.2972,0.4594,0.5136,0.5676,0.4594,0.6216,0.3514,0.5676,0.4594,0.6216,0.3514,0.4594,0.3514,0.4054,0.4054,0.3514,0.3514,0.2432,0.081,-0.081,0.027,-0.3076,0.1538,0.2692,0.4616,0.8462,1,0.8076,0.6538,0.3846,0.3462,0.3076,0.1924,0.1924,0.4616,0.577,0.6924,0.7692,0.7692,0.7308,0.5,0.3846,0.5384,0.423,0.423,0.6538,0.7308,0.5384,0.577,0.3076,0.3076,0.5384,0.423,-0.1636,0.2364,0.4182,0.5818,0.9818,1,0.8,0.7636,0.6,0.4546,0.3818,0.3272,0.3818,0.6,0.5636,0.8728,0.7818,0.891,0.6182,0.6728,0.6,0.6,0.6182,0.6,0.7818,0.509,0.6182,0.4364,0.4182,0.509,0.4364,0.509,-1,-1,-1,-1,-1,-1,-1,-1,-0.9836,-0.987,-0.8274,0.5006,0.9176,0.6644,0.6332,0.6384,0.577,0.5162,0.4954,0.3594,0.0082,-0.101,-0.8404,-0.98,-0.9826,-0.9836,-0.9844,-0.7192,-0.8638,-0.9532,-0.9488,-0.967,-0.9758,-1,-1,-1,-1,-1,-1,-1,-1,-0.9826,-0.9854,-0.903,0.22,0.8668,0.8628,0.8614,0.9854,0.9124,0.6266,0.2194,0.0664,-0.2054,-0.4074,-0.9156,-0.9822,-0.984,-0.9834,-0.986,-0.7036,-0.7608,-0.8508,-0.8394,-0.8506,-0.8818,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.94,-0.8368,-0.815,-0.705,-0.665,-0.57,-0.57,-0.68,-0.73,-0.73,-0.69,-0.716,-0.784,-0.8834,-0.9134,-0.8534,-0.96,-0.98,-0.6434,-0.1634,0.5,0.33,0.23,0.2,-1,-1,-1,-1,-1,-1,-1,-1,-0.5714,-0.4,1,1,1,-0.2,-1,-1,-0.8,0.1714,0.2572,-0.3428,1,1,1,0.2286,-0.8858,-0.8858,1,1,1,0.2,-0.9142,-0.9428,-1,1,1,1,1,1,1,1,1,1,1,-0.4016,-0.3356,-0.3356,-0.2716,-0.2254,-0.1998,-0.198,-0.1772,-0.183,-0.228,-0.7466,-0.5764,-0.929,-0.405,0.7566,0.8714,0.863,1,-0.0076,-0.2932,0.4586,0.4586,0.3534,0.3984,1,0.7594,0.4286,0.5488,0.5488,0.3234,0.4286,0.188,0.4888,0.3384,0.1578,0.203,0.0978,-0.188,0.4586,0.4136,0.3384,0.4436,0.3984,0.2632,0.624,0.4736,0.0978,-0.0076,0.3684,-0.3984,0.1812,0.0604,0.6778,0.651,0.396,0.6778,0.812,0.7718,0.396,0.7718,0.463,0.6644,1,0.651,0.6778,0.6644,0.8524,0.4362,0.6242,0.7046,0.6778,0.7986,0.4228,0.49,0.7316,0.745,0.6778,0.6108,0.0872,0.2886,0.1678,-0.3826,0.0844,0.6626,0.518,0.3734,0.1686,0.4096,0.771,0.4216,0.747,0.9278,0.5662,0.5784,1,0.747,0.482,0.9156,0.5904,0.6144,0.3374,0.2892,0.5662,0.4216,0.253,0.2892,0.0482,0.3012,0.265,0.0722,0.3254,0.1084,0.1204,-0.2892,-0.9902,1,-1,-1,-1,-1,-1,-1,1,-0.8102,-0.4598,-0.2408,0.0072,-0.0802,0.2262,0.3284,0.2408,0.4014,0.3576,0.416,0.5328,0.6058,0.4744,0.5036,0.3284,0.2554,0.4452,0.3576,0.3576,0.6058,0.5474,0.5036,0.5036,0.562,0.5182,0.781,1,0.6642,0.3868,0.27,-0.124,'24'
-0.1222,0.4984,0.4852,0.7162,0.9076,1,0.7294,0.7492,0.3796,0.3598,0.1288,0.109,0.2014,0.0958,0.1684,0.2938,0.5182,0.5446,0.6172,0.0892,0.0958,0.0562,0.0892,0.208,0.0892,0.2674,0.2938,-0.0232,-0.1684,-0.0628,-0.1684,-0.1222,-0.141,0.3794,0.4044,0.6238,0.8872,1,0.8558,0.862,0.467,0.4106,0.1222,0.0658,0.2164,0.1222,0.21,0.3918,0.3982,0.6112,0.4796,0.3292,0.21,0.1286,0.185,0.3104,0.4608,0.536,0.21,0.0846,0.091,0.0408,0.0344,0.1034,-0.1312,0.4062,0.4126,0.625,0.875,1,0.875,0.925,0.5126,0.4562,0.2,0.1062,0.2438,0.1812,0.3126,0.5438,0.5938,0.5126,0.525,0.2126,0.1876,0.2438,0.2312,0.325,0.475,0.5562,0.4126,0.275,-0.0938,-0.05,-0.025,-0.0188,-0.149,0.4104,0.3556,0.6292,0.8358,1,0.7872,0.8542,0.4772,0.4346,0.1732,0.1794,0.2766,0.2218,0.2218,0.301,0.4408,0.465,0.3434,0.2098,0.1854,0.0578,0.2948,0.2948,0.5016,0.4772,0.2644,-0.0396,0.1064,0.0882,0.076,0.0212,-0.2,0.455,0.4376,0.687,0.6406,1,0.9246,0.5826,0.4956,0.1652,0.0666,0.1826,0.1884,0.3972,0.3914,0.3972,0.6406,0.6522,0.426,0.3682,0.0608,-0.0086,0.3334,0.542,0.6638,0.5942,0.3682,0.2406,0.1014,0.084,0.0028,0.0956,-0.195,0.6666,0.7106,0.8364,0.912,0.912,1,0.434,0.3018,-0.0188,-0.0818,-0.1698,0.2642,0.2704,0.6038,0.6038,0.6226,0.6666,0.566,0.4088,0.3396,0.4214,0.5346,0.6416,0.5346,0.415,0.2452,0.2138,0.1762,0.2076,0.2202,0.2202,-0.343,0.8412,1,0.7618,0.9494,0.5162,0.7618,0.5668,0.0324,-0.0614,-0.3068,0.0398,-0.0324,0.1046,0.1408,0.343,0.4584,0.6246,0.7472,0.6896,0.6896,0.6824,0.6824,0.6824,0.2274,0.1696,-0.083,-0.2058,-0.1624,-0.2852,-0.0614,0.1336,-0.1052,0.5264,0.579,0.7894,1,1,1,0.7894,0.3684,0.3684,0.0526,0,0.2106,0.0526,0.0526,0.2106,0.4736,0.7368,0.6842,0.421,0.3158,0.1578,0.0526,0.1578,0.1052,-0.0526,0.2632,-0.0526,0,0.0526,0.1578,0.2106,-0.1914,0.4042,0.3618,0.6596,0.8724,1,0.8298,0.6596,0.3192,0.3192,0.149,0.1064,0.234,0.0638,0.1914,0.3618,0.5744,0.5744,0.617,0.3192,0.0212,0.0638,-0.0212,0.234,0.0638,0.2766,0.1914,0.0212,0.0212,-0.0212,-0.3192,-0.149,-0.2474,0.5054,0.5484,0.742,0.785,0.9354,1,0.3764,0.4194,-0.0538,-0.1828,-0.0968,0.0752,0.3334,0.5914,0.6344,0.914,0.785,0.5914,0.5268,-0.0538,0.0108,0.3978,0.4838,0.613,0.5914,0.2258,0.2904,0.2258,0.3764,0.1828,0.1828,-1,-1,-1,-1,-1,-1,-1,-1,-0.9836,-0.9826,-0.5382,0.7868,0.9708,0.9782,0.9928,0.9198,0.8498,0.7122,0.5256,0.225,0.1476,-0.1466,-0.9518,-0.9808,-0.9826,-0.9882,-0.9872,-0.714,-0.9052,-0.96,-0.9664,-0.9508,-0.9572,-1,-1,-1,-1,-1,-1,-1,-1,-0.9792,-0.9824,-0.4504,0.3568,0.5144,0.8208,0.6106,0.5858,0.4672,0.4512,0.2976,0.1082,-0.1638,-0.4354,-0.9484,-0.9774,-0.9774,-0.9796,-0.973,-0.5752,-0.7324,-0.645,-0.5802,-0.578,-0.6362,-1,-1,-1,-1,-1,-1,-1,-1,-0.9068,-0.9734,-0.6134,-0.73,-0.715,-0.72,-0.715,-0.72,-0.728,-0.704,-0.676,-0.656,-0.756,-0.6,-0.7334,-0.8534,-0.94,-0.9334,-0.8,-0.58,0.45,1,0.97,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,-0.6286,-0.8,-1,-1,-1,-0.8286,-0.6286,-0.2286,0.8572,1,1,-0.0286,-0.8572,-0.7714,1,1,1,0.7714,-0.8,-0.9428,-0.8286,0.9892,0.9892,0.9992,1,1,1,1,1,1,1,-0.3886,-0.3886,-0.4408,-0.4358,-0.4746,-0.4324,-0.2382,-0.2676,-0.2254,-0.2196,-0.7466,-0.5294,-0.34,0.1086,0.4954,0.4954,0.7608,1,-0.3402,0.2164,0.6082,0.4846,0.402,0.4432,0.4432,0.6702,0.9176,0.9382,0.8556,0.9176,1,0.9794,0.8556,0.7938,0.835,0.8556,0.6702,0.5464,0.4226,0.2578,0.1752,0.2372,0.031,0.0516,-0.0928,-0.0722,-0.031,-0.134,-0.0928,-0.6494,0.109,0.4,0.709,0.8182,0.509,0.2364,0.4364,0.509,0.9636,0.8546,0.6182,0.8364,1,1,0.709,0.6364,0.7636,0.8364,0.6182,0.4546,0.3818,0.4546,0.491,0.3818,0.0546,-0.3272,-0.5818,-0.4546,-0.291,-0.1636,-0.109,-0.3818,0.5652,0.7566,0.7218,0.826,0.5478,0.3044,0.3392,0.3392,0.8086,0.7044,0.7218,0.774,1,0.9478,0.6174,0.513,0.5304,0.4608,0.4434,0.2174,0.0956,0.3218,0.426,0.2,0.0086,0.026,-0.3914,-0.2696,-0.2348,-0.1478,-0.0434,-0.2522,0.2114,-1,-1,1,-1,-1,-1,-0.8,1,-0.8758,-0.469,-0.3108,-0.1978,-0.3446,-0.3446,-0.2994,0.0508,-0.1074,0.2204,0.096,0.0734,0.1752,0.0734,0.0396,0.1412,0.3334,0.4124,0.5142,0.661,0.6498,1,0.8984,0.6272,0.5594,0.8532,0.7966,0.6046,0.3898,0.3672,0.209,0.0508,'24'
0.007,0.699,0.616,0.9758,1,0.9966,0.8616,0.8824,0.7198,0.6748,-0.2698,-0.5432,-0.5086,-0.5916,-0.5468,-0.5848,-0.5848,-0.8582,-0.8062,-0.7958,-0.5052,-0.2388,-0.2872,-0.4568,-0.4636,-0.5432,-0.6782,-0.4636,-0.3114,-0.384,-0.6782,-0.8686,-0.24,0.2018,0.2048,0.3314,0.5876,0.6494,1,0.888,0.7142,0.4256,0.3196,-0.0368,-0.1222,-0.24,-0.461,-0.3668,-0.8174,-0.7998,-0.841,-0.5818,-0.3902,-0.1222,-0.0634,-0.5612,-0.676,-0.782,-0.782,-0.5788,-0.2696,-0.293,-0.57,-0.735,-0.2186,0.2312,0.2154,0.327,0.5152,0.6906,0.9554,0.9044,1,0.748,0.7066,0.5248,0.2982,0.0366,-0.1578,-0.2154,-0.7352,-0.5312,-0.4258,-0.177,-0.1004,0.142,-0.0494,-0.5694,-0.4514,-0.4864,-0.413,-0.3588,-0.2632,-0.598,-0.614,-0.8022,-0.2576,0.1626,0.1798,0.2776,0.4014,0.5224,0.7382,0.931,1,0.4762,0.3928,0.5712,0.3582,0.3526,0.0792,0.0014,-0.1654,-0.4532,-0.41,0.013,0.1684,0.3612,0.082,-0.272,-0.7468,-0.7036,-0.6576,-0.5108,-0.4532,-0.508,-0.5626,-0.79,-0.1788,0.3,0.3152,0.4516,0.606,0.609,1,0.8364,0.8666,0.5122,0.4182,0.4454,0.4728,0.7304,0.5758,0.6878,0.3576,0.2728,0.1758,0.0484,0.0304,0.2152,0.1424,-0.1334,-0.2516,-0.2636,-0.4546,-0.3818,-0.3878,-0.2454,-0.1788,-0.3818,-0.0604,0.5376,0.4344,0.6966,0.8174,1,0.7762,0.7614,0.2666,0.2548,0.0486,-0.0456,-0.081,-0.1252,-0.1664,0.3254,0.405,0.4462,0.4522,0.4992,0.4462,0.4698,0.3108,0.2254,0.2018,0.187,-0.0162,-0.0368,0.0428,0.0044,0.0692,0.1164,-0.1318,0.8852,0.9472,0.8946,1,0.6,0.6868,0.2248,-0.0604,-0.3086,-0.2806,-0.0946,-0.1504,-0.1348,-0.0914,-0.0976,-0.0604,0.1782,0.324,0.5504,0.7426,0.7954,0.724,0.7488,0.7396,0.6992,0.5534,0.141,0.1628,0.0574,0.141,0.3954,0.1666,0.875,0.8334,1,0.9584,0.1666,0.4166,0.3334,0,0.0834,-0.4584,-0.1666,-0.0834,-0.1666,-0.25,-0.25,-0.5,-0.3334,-0.25,-0.375,-0.375,-0.4584,-0.5,-0.3334,-0.25,-0.2916,-0.2916,-0.25,-0.25,-0.1666,-0.1666,-0.4166,0.2538,0.7014,0.612,1,0.9702,0.8806,0.7314,0.8508,0.7014,0.4926,0.2238,0.0448,-0.194,-0.0448,-0.0448,0.015,-0.0746,-0.3432,-0.1642,-0.1642,-0.1344,0.1344,0.2238,0.0746,-0.0448,-0.1044,-0.1344,-0.2538,-0.1642,-0.2538,-0.2238,-0.4328,-0.0588,0.4824,0.4118,0.6236,0.9058,0.9764,1,1,0.4118,0.3176,0.2,0.0118,0.0352,-0.0588,0.1294,0.6942,0.6942,0.647,0.553,0.5294,0.4588,0.6236,0.2942,0.2236,0.0824,0.0588,-0.0352,-0.0352,0.2,-0.0824,-0.1058,-0.3412,-1,-1,-1,-1,-1,-1,-1,-0.976,-0.975,-0.9716,-0.7946,0.67,0.7722,0.5144,0.4086,0.2376,0.1138,0.18,0.3872,0.6322,0.4198,0.0408,-0.6948,-0.9356,-0.97,-0.97,-0.9786,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.971,-0.9688,-0.9702,-0.8742,0.1676,0.8488,0.778,0.7546,0.52,0.4182,0.4004,0.4506,0.2794,0.0514,-0.3062,-0.794,-0.8976,-0.92,-0.9184,-0.9546,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.88,-0.8734,-0.8868,-0.9534,-0.9024,-0.838,-0.84,-0.814,-0.766,-0.764,-0.766,-0.824,-0.834,-0.826,-0.932,-0.87,-0.3268,-0.0934,-0.31,-0.53,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,-1,-0.7142,1,1,-0.0572,-0.7428,-0.9428,-0.8858,-0.8,-0.5714,-0.5714,-0.1714,-0.3428,-0.1428,-0.1714,-0.5142,-0.8,-0.7714,-0.2572,-1,-1,-1,-1,-1,-1,0.7934,0.8368,0.8622,0.9076,0.9652,1,1,1,1,1,-0.1362,-0.109,-0.111,-0.162,-0.2576,-0.3074,-0.3874,-0.4508,-0.6232,-0.522,-0.6534,0.1648,-0.8846,-0.4674,0.3612,0.286,0.4004,-0.4084,0.0334,0.11,0.6172,0.8182,0.8182,0.579,0.4832,0.5312,0.6746,0.5886,0.5216,0.8086,0.8564,0.8756,1,0.9138,0.7704,0.7224,0.6076,0.8278,0.78,0.7894,0.4832,0.6556,0.4736,0.4354,0.4832,0.4162,0.311,0.5886,0.4354,-0.0526,-0.0594,0.0396,0.7128,1,0.7326,0.4356,0.4654,0.8712,0.8218,0.6336,0.5446,0.5842,0.594,0.4258,0.5644,0.6336,0.6436,0.8416,0.5544,0.4356,0.7524,0.495,0.5148,0.5742,0.3664,0.2674,0.2674,0.2376,0.4554,0.4158,0.3564,-0.1882,0.6666,0.9916,0.8666,1,0.8584,0.4166,0.625,0.4834,0.5334,0.4416,0.5416,0.5334,0.3666,0.2916,0.6334,0.6916,0.2834,0.2334,0.2416,0.4916,0.325,0.7166,0.575,0.5416,0.5666,0.35,0.55,0.375,0.0416,0.2166,0.1,-0.0666,-0.9802,1,-1,-1,-1,-1,-0.6,-1,-1,-0.5,-0.1718,-0.2812,0.0938,0.125,-0.2188,-0.0624,0.0624,0.0312,0.75,1,0.7188,0.875,0.7656,0.5938,0.4532,0.1876,0.2188,0.2344,0.3126,-0.0156,0.0782,0.1094,0.2812,0.2344,-0.0156,-0.4062,-0.0624,0.125,0.1094,-0.2656,-0.3438,'25'
0.031,0.7462,0.6874,1,0.8204,0.8762,0.6564,0.7182,0.3622,0.0402,-0.418,-0.6812,-0.808,-0.7462,-0.836,-0.808,-0.7306,-0.712,-0.74,-0.8112,-0.8514,-0.7152,-0.551,-0.3436,-0.452,-0.678,-0.8236,-0.774,-0.5326,-0.4552,-0.6594,-0.7894,-0.1948,0.281,0.3568,0.5112,0.7516,0.8014,1,0.932,0.7516,0.5504,0.2392,-0.1974,-0.5006,-0.4588,-0.5424,-0.749,-0.6156,-0.579,-0.519,-0.5424,-0.5216,-0.268,-0.1164,-0.3176,-0.438,-0.438,-0.4222,-0.4902,-0.1922,-0.1006,-0.2706,-0.5242,-0.2326,0.222,0.2826,0.414,0.5978,0.5978,1,0.8686,0.8056,0.7372,0.8002,0.2194,-0.0722,-0.3614,-0.5032,-0.3902,-0.314,-0.335,-0.3508,-0.4086,-0.2668,0.117,0.1774,-0.2772,-0.5164,-0.5086,-0.3982,-0.322,-0.0276,-0.0302,-0.4192,-0.5978,-0.222,0.2302,0.2866,0.4212,0.58,0.5936,0.965,0.8358,1,0.7416,0.7712,0.6366,0.5532,-0.0418,-0.0848,-0.0148,-0.0256,-0.0768,-0.2248,-0.0418,0.0848,0.214,0.2194,-0.2678,-0.4104,-0.3808,-0.3028,-0.2598,0.0174,-0.0336,-0.284,-0.4804,-0.2294,0.2216,0.2836,0.4226,0.6238,0.6366,1,0.8918,0.7784,0.5206,0.5284,0.6418,0.6186,0.6288,0.5,0.3092,0.1546,0.116,0.165,0.1702,0.3686,0.3248,0.3118,-0.0232,-0.0774,-0.3762,-0.3686,-0.1804,-0.049,-0.0128,0.0798,0.0284,-0.1146,0.4368,0.3532,0.6276,0.8424,1,0.8042,0.661,0.2172,0.2338,0.0238,0.117,0.222,0.2744,0.2626,0.5202,0.5466,0.4224,0.3866,0.4296,0.4152,0.4558,0.4964,0.5704,0.3914,0.315,0.2696,0.284,0.086,0.031,0.093,0.1242,-0.299,0.8498,0.936,0.6356,0.808,0.6856,0.8052,0.4688,-0.1322,-0.171,-0.2518,-0.0432,-0.0542,0.0458,0.1182,0.0208,0.1432,0.3574,0.5188,0.7414,0.733,0.8888,0.847,0.8498,1,0.9138,0.8916,0.4938,0.4938,0.1794,0.2824,0.4158,0.2766,0.9148,0.9148,1,0.9574,0.234,0.2766,0.234,-0.0638,-0.149,0.0212,-0.149,-0.4894,-0.3192,-0.3618,-0.0638,-0.149,-0.1914,-0.4042,-0.149,-0.234,-0.234,-0.1914,0.1064,0.0212,-0.1914,-0.2766,-0.3618,-0.234,-0.1064,-0.234,-0.4042,0.2,0.7818,0.7454,1,0.9636,0.8182,0.8182,0.6,0.5272,-0.0546,-0.309,-0.4182,-0.491,-0.309,-0.4182,-0.4182,-0.1636,-0.2,-0.3454,-0.3818,-0.309,-0.4546,-0.3454,-0.4182,-0.2,-0.2728,-0.3818,-0.4182,-0.2364,-0.1636,-0.309,-0.2364,-0.1208,0.3626,0.3406,0.5604,0.8682,0.978,1,0.956,0.3846,0.2968,0.1428,0.2308,0.3626,0.3626,0.3846,0.7802,0.7582,0.1868,0.3626,0.5164,0.6044,0.6264,0.5384,0.5824,0.033,0.055,0.1208,-0.055,0.099,0.033,0.1208,0.2968,-1,-1,-1,-1,-1,-1,-1,-1,-0.9824,-0.9746,-0.8302,0.3336,0.5726,0.528,0.4466,0.3292,0.3494,0.4886,0.6944,0.8836,0.415,-0.1638,-0.6664,-0.9256,-0.9764,-0.9712,-0.9738,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9756,-0.9748,-0.8984,-0.1152,0.3888,0.6676,0.7176,0.5806,0.7226,0.9104,0.8262,0.703,0.1468,-0.386,-0.7456,-0.8758,-0.8812,-0.9136,-0.9414,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.9234,-0.85,-0.8582,-0.7838,-0.7746,-0.6946,-0.6892,-0.6928,-0.6946,-0.7546,-0.8146,-0.7964,-0.962,-0.82,-0.1934,-0.1534,-0.1734,-0.2834,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,-0.6572,0.8,1,-0.3714,-0.3714,-0.9142,-1,-0.6572,-0.5714,-0.4858,-0.4572,-0.4286,-0.0286,-0.0858,-0.2572,-0.6858,-0.6858,-0.2286,-1,-1,-1,-1,-1,-1,0.7002,0.7206,0.755,0.788,0.8374,0.8984,0.9698,1,1,1,-0.2202,-0.1932,-0.102,-0.0726,-0.0598,0.0168,-0.011,-0.01,-0.2112,-0.2218,-0.6666,0.3058,-0.9114,-0.5842,-0.1654,0.0558,0.0234,-0.825,-0.056,0.088,0.296,0.824,0.712,0.744,0.936,0.456,0.6,0.52,0.664,0.712,0.696,0.312,0.152,0.904,0.904,0.84,0.952,0.424,0.904,0.744,0.536,1,0.856,0.856,0.376,1,0.984,1,0.648,-0.296,0.3202,0.3986,0.634,0.9346,0.8562,0.634,0.6732,0.7778,0.9478,0.7386,0.6994,0.647,0.7516,0.8824,0.6994,0.8432,0.8954,0.804,0.2288,0.438,0.6994,0.5686,0.647,0.9478,0.6862,0.817,0.6078,0.3594,0.6078,0.5032,0.0718,-0.8432,0.598,1,0.6666,0.8628,0.647,0.3138,0.245,0.4804,0.4118,0.2156,0.5588,0.3236,0.3922,0.245,0.2352,0.1764,0.2746,0.147,0.4706,0.1372,0.3628,0.304,0.2648,0.1666,0.402,0.1666,0.1372,0.1372,-0.0588,0.1764,-0.049,-0.4118,-0.9804,1,-1,-1,-1,-1,-0.6,-1,-1,-0.5488,-0.188,-0.2782,-0.0526,0.0076,-0.0376,0.0226,0.2932,0.2482,0.5038,0.7142,0.8046,1,0.9548,0.3984,0.5188,0.3384,0.1428,0.1128,0.1578,0.0226,0.0526,0.0376,-0.0526,0.579,0.5338,0.1428,-0.2482,-0.188,0.0526,-0.1128,-0.5488,'25'
0.1992,0.9602,0.8924,1,0.8088,0.0638,-0.1554,-0.3148,-0.5258,-0.4184,-0.3666,-0.3188,-0.2828,-0.2868,-0.1594,-0.2192,-0.1872,0.016,0.4144,0.3028,0.4702,0.3148,0.494,0.3546,0.5498,0.7092,0.8168,0.4382,0.239,0.1752,0.1434,0.1196,0.1296,0.822,0.7254,0.9922,0.7678,0.1876,-0.2108,-0.3268,-0.8762,-0.9922,-0.5552,-0.6712,-0.234,-0.3114,-0.0638,-0.2418,-0.1218,-0.2108,-0.0716,0.091,0.1722,0.532,0.497,0.7562,0.7254,1,0.942,0.8878,0.6866,0.528,0.4082,0.532,0.1276,0.756,0.6488,0.8484,0.5934,0.0536,-0.4824,-0.4566,-0.878,-0.9668,-0.6894,-0.8078,-0.5822,-0.4528,-0.2866,-0.305,-0.2348,-0.1312,-0.135,0.3086,0.3346,0.7116,0.8078,1,0.7302,0.8336,0.4454,0.4048,0.0868,0.013,-0.1646,-0.2644,0.0178,0.6188,0.525,0.6768,0.4572,-0.034,-0.4604,-0.4862,-0.6382,-0.6316,-0.8966,-0.845,-0.5508,-0.6866,-0.5736,-0.5476,-0.412,-0.3796,-0.3248,0.134,0.1632,0.6802,0.6478,1,0.8416,0.8804,0.651,0.7254,0.3634,0.3602,0.2794,0.2762,0.0642,0.7398,0.6772,0.7726,0.6014,0.0906,-0.15,-0.3476,-0.6408,-0.608,-0.8122,-0.7958,-0.6474,-0.6244,-0.7958,-0.7496,-0.4564,-0.42,-0.229,-0.196,0.1004,0.6936,0.9604,0.9078,0.7924,0.9176,1,0.8484,0.7068,0.542,0.575,0.6178,-0.0366,0.8538,0.8704,0.578,0.5814,-0.093,-0.1096,-0.5914,-0.6212,-0.8638,-0.6578,-0.6112,-0.608,-0.6312,-0.5748,-0.6246,-0.6644,-0.3024,-0.2326,0.0366,0.3256,0.7276,0.9202,1,0.9468,0.9402,0.8936,0.7608,0.608,0.5582,0.4352,0.5316,-0.9526,0.7554,1,0.6314,0.1022,0.062,-0.4854,-0.3322,-0.584,-0.8832,-0.7336,-0.719,-0.6752,-0.7226,-0.5584,-0.5912,-0.6278,-0.4708,-0.2482,0.084,0.4744,0.5256,0.7408,0.6606,0.573,0.7262,0.6314,0.4234,0.3212,0.1094,0.2372,0.208,0.3618,1,0.9574,0.7872,0.7022,-0.0638,-0.1914,-0.1064,0.0212,-0.1914,-0.1914,-0.2766,0.1064,0.1064,0.3192,0.3192,0.4468,0.8724,0.8724,0.234,0.2766,0.1914,0.5744,0.4042,0.4894,0.5744,0.4894,0.532,0.4042,0.6596,0.532,0.5744,0.2,0.9,0.8,0.9,0.7,0,-0.4,-0.1,-0.35,-0.1,-0.25,-0.35,-0.6,-0.8,-0.35,-0.25,0.25,0.6,1,0.9,0.45,0.45,0.1,0.2,0.3,0.7,0.7,0.35,0.15,0,0,0.25,0.4414,0.91,0.8558,1,0.8198,0.4774,0.063,0.1532,-0.3154,-0.4594,-0.1532,-0.081,0.2072,0.1352,0.2972,0.2252,0.3334,0.3694,0.4054,0.6756,0.7118,0.928,0.8918,0.8918,0.8558,0.7838,0.7838,0.7838,0.4594,0.4234,0.6036,0.6396,-1,-0.9864,-0.973,-0.947,-0.7826,-0.6118,-0.5744,-0.5702,-0.614,-0.7148,-0.5162,0.4328,0.9678,0.7524,0.589,0.46,0.3444,0.258,0.1228,0.0718,-0.0604,-0.204,-0.6618,-0.9334,-0.9708,-0.9604,-0.9636,-0.972,-0.9678,-0.9698,-1,-1,-1,-1,-0.968,-0.9606,-0.9192,-0.7954,-0.6192,-0.588,-0.561,-0.5478,-0.5552,-0.4932,0.264,0.9068,0.6184,0.4606,0.3404,0.341,0.3302,0.1736,0.0754,-0.1286,-0.301,-0.6782,-0.8318,-0.8552,-0.885,-0.9054,-0.9322,-0.9454,-0.9484,-1,-1,-1,-1,-0.9734,-0.8668,-0.65,-0.5934,-0.86,-0.7968,-0.7734,-0.4534,0.0266,-0.4,-0.8956,-0.7712,-0.8178,-0.7978,-0.8446,-0.9068,-0.829,-0.8178,-0.85,-0.968,-0.954,-0.8468,-0.22,-0.1334,-0.03,-0.42,-0.55,-0.8534,-0.9168,-1,-1,-1,-1,-0.7142,0.0286,0.6,0.5714,-0.1428,-0.7714,-0.7142,-0.6,-0.7714,0.6572,1,0.8572,-0.3428,-0.6286,-0.8,-0.8,-0.8572,-0.8286,-0.8,-0.7714,-0.4858,-0.4858,-0.4858,-0.7714,-0.7428,-0.7714,-0.5428,-0.4858,-0.8286,-1,-1,-1,-0.131,-0.1148,-0.0958,-0.0668,-0.032,-0.0232,-0.0196,-0.0476,-0.0988,-0.044,0.5274,0.5416,0.5798,0.6722,0.7202,0.7654,0.8592,0.9006,0.9374,1,-0.7334,0.0824,-0.4874,-0.2624,0.1526,0.529,0.7706,-0.3834,-0.0282,0.1074,-0.3786,-0.7628,-0.4916,-0.322,-0.2204,0.0282,0.0622,-0.0056,0.0508,-0.0056,0.1526,0.0282,0.1526,-0.017,0.2994,0.13,0.2768,0.2656,0.2768,0.3898,0.3898,0.096,0.548,0.5706,0.6384,1,0.8306,0.8758,0.661,0.4238,0.03,0.1736,-0.6646,-0.5568,-0.545,-0.3294,-0.2216,-0.1378,0.1616,-0.1258,0.018,-0.0658,0.0778,0.3772,0.4252,0.2096,0.2336,0.1138,0.509,0.1856,0.1018,0.6168,0.461,0.3652,0.3414,0.5808,0.7366,1,0.533,0.5568,0.485,0.3652,0.4834,0.6822,0.1258,-0.404,-0.51,-0.7616,-0.2318,0.0464,0.2052,0.3112,-0.0066,0.0464,0.245,0.5364,0.4834,0.404,0.1524,0.563,0.8278,0.4966,0.4438,0.51,0.6292,0.2848,0.51,0.6688,1,0.8676,0.563,0.5762,0.6822,0.4966,-0.9272,-1,-1,1,0.4,1,-0.6,-0.6,-1,-0.2052,0.0332,-0.1258,0.2582,0.2186,-0.0332,0.2186,0.2582,0.4304,0.8014,0.8146,0.3642,0.9072,1,0.8146,0.6026,0.6688,0.457,0.7748,0.7748,0.6556,0.6026,0.3908,0.6424,0.3642,0.3774,0.2186,-0.0332,-0.086,0.0332,-0.1258,-0.2186,'26'
0.187,1,0.9096,0.9828,0.772,-0.2344,-0.4494,-0.372,-0.544,-0.4796,-0.4924,-0.4796,-0.4194,-0.385,-0.2646,0.058,0.4064,0.4838,0.5054,0.3032,0.0838,0.2474,0.3032,0.256,0.4108,0.6216,0.6172,0.2474,0.0408,0.144,0.0882,0.0882,0.0962,0.7714,0.6914,1,0.8186,0.0926,-0.1688,-0.401,-0.695,-0.6442,-0.3974,-0.3648,-0.2124,-0.245,-0.401,-0.4774,-0.4156,-0.4374,-0.078,0.1252,0.4482,0.6334,0.735,0.7496,0.8584,0.9346,0.9528,0.7242,0.2886,0.2088,0.1578,0.2776,0.1064,0.795,0.7098,1,0.7718,0.118,-0.2766,-0.4236,-0.6712,-0.6518,-0.6596,-0.617,-0.1644,-0.292,-0.2148,-0.443,-0.238,-0.1914,-0.0676,0.1838,0.207,0.6208,0.7098,0.617,0.5744,0.8994,0.7138,0.737,0.4468,0.5552,0.4042,0.5088,0.1936,0.8972,0.8102,1,0.7826,0.1542,-0.2608,-0.3914,-0.917,-0.7866,-0.6442,-0.6798,-0.1778,-0.3084,-0.087,-0.2886,-0.2846,-0.1976,-0.0396,0.1028,0.1818,0.4782,0.494,0.9802,0.925,0.7906,0.672,0.8578,0.6522,0.6404,0.423,0.589,0.1284,0.8882,0.8398,0.918,0.7802,0.1322,-0.0316,-0.5196,-0.702,-0.7318,-0.5494,-0.4786,-0.445,-0.3818,-0.404,-0.2364,-0.2364,-0.1136,0.0578,0.1806,0.46,0.7766,0.9852,1,0.8026,0.8436,0.7616,0.4228,0.2068,0.2142,0.203,0.4116,-0.1378,0.836,0.8848,0.5568,0.6404,0.0088,-0.1274,-0.487,-0.5916,-0.7626,-0.7626,-0.5428,-0.3334,-0.3718,-0.2322,-0.3298,-0.2496,-0.1134,0.1414,0.3404,0.5812,0.8918,1,0.9268,0.9406,0.9302,0.9616,0.7034,0.5148,0.4102,0.2636,0.2566,-0.92,0.7496,0.9686,0.593,0.36,0.2696,-0.2104,-0.0852,-0.4818,-0.5896,-0.5166,-0.5966,-0.5618,-0.6556,-0.687,-0.7008,-0.5374,-0.3148,-0.1618,0.3286,0.746,0.8296,0.9374,0.8296,0.8818,1,0.8644,0.6208,0.447,0.2522,0.1166,0.28,0.2222,1,0.9444,0.8334,0.7778,0.0556,-0.2222,0.0556,-0.2222,-0.1112,-0.1666,-0.2778,-0.4444,0.0556,0.0556,0.2778,0.8334,0.9444,0.5556,0.6112,0.3888,0.7778,0.6666,0.5556,0.6112,0.1666,0.5556,0.4444,0.1666,0.6666,0.8888,0.7778,0.2,1,0.8858,0.9428,0.7142,-0.2,-0.2572,-0.2572,-0.6,-0.7142,-0.4858,-0.3142,-0.0858,-0.0286,-0.3714,0.2572,0.7714,0.4286,0.6,0.3714,-0.0858,0.3142,0.4286,0.3714,0.5428,0.9428,0.6,0.3142,0.3142,-0.0286,0.0858,-0.0286,-0.1,0.55,0.425,0.8,0.6,-0.1,-0.35,-0.525,-0.775,-0.8,-0.625,-0.65,-0.4,-0.475,-0.55,-0.55,-0.625,-0.65,-0.4,-0.575,-0.35,0.4,0.5,0.675,0.65,1,0.925,0.6,0.575,0.2,0.125,0.175,-1,-0.9832,-0.978,-0.9268,-0.5236,-0.2916,-0.301,-0.3208,-0.3208,-0.3364,-0.3082,-0.0156,0.7136,0.953,0.7096,0.513,0.3846,0.2884,0.1934,0.1358,-0.0084,-0.1672,-0.7136,-0.9602,-0.978,-0.975,-0.9624,-1,-1,-1,-1,-1,-1,-1,-0.9676,-0.9536,-0.9,-0.5724,-0.3724,-0.3642,-0.3054,-0.2436,-0.2362,-0.1656,-0.0494,0.5188,0.947,0.5858,0.3642,0.2626,0.1618,0.2178,0.1384,0.0052,-0.1574,-0.7006,-0.8322,-0.8476,-0.8794,-0.8992,-1,-1,-1,-1,-1,-1,-1,-0.9488,-0.8754,-0.592,-0.812,-0.9354,-0.8854,-0.8554,-0.5654,-0.5754,-0.6054,-0.7332,-0.842,-0.6754,-0.6754,-0.7404,-0.8268,-0.8624,-0.8668,-0.9068,-0.8912,-0.9312,-0.5168,-0.0868,-0.11,-0.19,-0.28,-1,-1,-1,-1,-1,-1,-1,-0.8572,-0.6858,1,1,0.5428,-0.3714,-0.7142,-0.7714,-0.9142,-0.7428,0.7428,1,-0.2,-0.8572,-1,-0.9142,-0.8572,-0.8286,-0.8858,-0.7714,-0.3428,-0.0858,-0.3428,-0.8,-0.7428,-0.3714,-1,-1,-1,-1,-1,-1,-0.1316,-0.1932,-0.1972,-0.2002,-0.1774,-0.1458,-0.101,-0.098,-0.0766,0.0114,0.3538,0.3546,0.3738,0.396,0.4406,0.515,0.6574,0.7962,0.8534,0.9308,-0.7466,0.047,-0.1398,-0.0934,-0.0588,-0.0544,0.1324,-1,0.3654,0.51,0.3092,-0.2852,-0.3494,-0.2048,-0.012,0.3494,0.0682,0.2048,0.229,0.237,0.3896,0.269,0.4136,0.3414,0.0682,0.51,0.5662,0.5742,0.494,0.6064,0.743,0.6706,0.735,0.8956,1,0.8714,0.51,0.3734,0.0844,-0.0362,0.4196,0.5804,0.3776,-0.2938,-0.3076,-0.1538,-0.1678,0.2518,0.2518,0.1608,0.1748,0.1258,0.4196,0.4336,0.2658,0.5244,0.3986,0.6154,0.7762,0.5874,0.6994,0.6924,0.7202,0.7692,0.7902,1,0.944,0.923,0.5384,0.4126,0.1188,-0.1398,0.4304,0.5828,0.4106,-0.192,-0.2782,-0.2582,-0.4304,0.3178,0.3576,0.245,0.298,0.1258,0.298,0.4238,0.3842,0.404,0.3378,0.6754,0.8676,0.5298,0.6754,0.7484,0.8874,0.9404,0.8874,0.894,1,0.7948,0.4504,0.3112,0.2384,-0.106,-0.8102,-1,1,-1,1,1,-1,-0.4334,-1,-0.3082,-0.2202,-0.2704,0.044,0.0692,0.0188,0.044,0.1194,0.2452,0.8238,0.912,0.8238,0.8994,1,0.4466,0.7232,0.6982,0.4214,0.4214,0.5346,0.4088,0.3208,0.1446,0.2328,0.585,0.2956,0.0944,-0.0566,-0.0566,-0.1572,-0.2578,-0.6982,'26'
-0.91,-0.387,-0.3066,0.2048,0.1928,0.6852,0.5644,0.2782,0.181,0.2072,0.077,0.2946,0.1314,0.3444,0.155,0.4486,0.7444,0.9598,0.7136,0.903,0.8106,0.974,0.832,1,0.6686,0.4792,0.1622,0.2876,-0.0462,-0.181,-0.323,-0.2118,-0.9506,-0.2202,-0.2382,0.1438,0.0854,0.4382,0.3686,0.1574,0.0876,0.0314,-0.0426,0.1752,0.1034,0.2652,0.1888,0.3078,0.245,0.8764,0.7956,1,0.937,0.9146,0.836,0.8584,0.7866,0.4764,0.409,0.3596,0.3102,-0.1146,-0.173,-0.263,-0.9446,-0.388,-0.16,0.162,-0.0448,0.066,-0.0746,-0.2004,-0.241,-0.1728,-0.2666,-0.1748,-0.209,-0.2004,-0.1236,-0.0746,0.1108,0.3114,0.5756,0.678,0.7612,0.7506,0.9318,1,0.7634,0.6098,0.2794,0.2132,0.1556,0.0128,-0.0448,-0.2878,-0.9028,-0.637,0.1862,0.2208,0.0034,-0.1584,-0.2138,-0.2948,-0.355,-0.3872,-0.3156,-0.355,-0.355,-0.318,-0.2716,-0.2972,-0.1746,0.0266,0.3434,0.7872,0.9076,0.8104,0.933,1,0.8774,0.7156,0.4012,0.3202,0.267,0.1076,0.1746,0.1284,-0.8822,-0.4712,0.3848,0.3404,-0.3142,-0.3142,-0.4058,-0.5026,-0.6362,-0.6702,-0.7172,-0.5994,-0.6048,-0.4974,-0.4372,-0.4896,-0.4842,-0.3246,-0.1204,0.3638,0.8508,0.8298,0.7748,1,0.9476,0.767,0.377,0.0392,0.0576,-0.0158,0.0184,-0.2094,-0.8768,-0.1982,0.6576,0.5526,-0.6216,-0.6486,-0.7118,-0.6246,-0.5556,-0.5916,-0.5166,-0.5196,-0.5016,-0.5376,-0.6396,-0.6066,-0.5046,-0.3424,-0.3424,0.2762,0.4894,0.6606,0.8408,1,0.8468,0.6546,0.4864,0.06,-0.057,-0.087,-0.1922,-0.3364,-0.8638,-0.362,0.5878,0.4802,-0.62,-0.6452,-0.4982,-0.3764,-0.5232,-0.62,-0.4838,-0.5162,-0.5664,-0.62,-0.466,-0.5592,-0.5376,-0.3298,-0.405,-0.0896,0.4408,0.7598,0.8352,1,0.9856,0.5628,0.1398,-0.0646,-0.1004,-0.1542,-0.0752,-0.258,-0.8824,-0.647,-0.353,-0.2352,-0.0588,0.353,0.4706,0.1764,0.1176,0.2352,0.1764,-0.1764,0.2942,0.4118,0.2942,0.4706,0.7648,0.7648,0.5294,0.8824,1,0.8236,0.7058,0.7648,0.7058,0.4706,0.2942,0.1176,0.0588,-0.0588,-0.1176,0.1764,-0.8888,-0.7222,-0.1112,0.1112,0.2222,0.4444,0.2222,0,-0.0556,0,0.1666,0,-0.2222,0.3334,0.1666,-0.1666,0.8334,0.8888,0.8334,0.7778,1,0.8334,0.7778,0.8334,0.7778,0.2222,0.1666,0.0556,0,-0.2222,-0.2778,-0.4444,-0.75,-0.475,0.25,0.3,0.2,0.025,-0.2,-0.325,-0.2,-0.2,-0.1,-0.1,-0.125,-0.075,-0.05,-0.025,0.025,0.15,0.525,0.825,1,0.9,0.8,0.925,0.775,0.775,0.325,0.425,0.45,0.4,0.35,0.225,-1,-1,-1,-1,-1,-1,-1,-1,-0.7232,-0.7358,-0.7232,0.7232,0.4716,0.4592,0.5724,0.522,0.346,0.3334,0.2328,0.346,0.2956,-0.1698,-0.673,-0.5974,-0.7358,-0.6856,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9168,-0.907,-0.5218,0.2392,0.0358,-0.0358,-0.0126,-0.0842,-0.3302,-0.4908,-0.578,-0.6186,-0.6786,-0.7522,-0.8722,-0.8742,-0.8742,-0.8394,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.94,-0.64,-0.308,-0.2854,-0.244,-0.18,-0.2508,-0.336,-0.5108,-0.54,-0.6588,-0.6676,-0.6626,-0.7934,-0.94,-0.7868,-0.4534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,0.8858,1,1,-0.8858,-0.9714,-0.8572,-0.9428,-0.7428,-0.8286,-0.8286,-0.9428,-1,-0.6572,-0.6858,-0.8286,-0.7428,-0.8,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.865,-0.0554,-0.0352,-0.0016,0.033,0.0662,0.0708,0.0864,0.1884,0.3906,0.561,-0.6,0.8588,-0.6282,-0.1656,0.7134,0.3184,0.0706,-0.0584,-0.5172,-0.2874,-0.1954,-0.1264,-0.1034,-0.1494,-0.0574,0.2874,0.6322,0.6552,0.816,0.862,0.7012,0.4252,0.2414,0.1954,0.7242,0.954,1,0.908,0.885,0.862,0.7932,0.6552,0.4942,0.1724,-0.3104,-0.2874,0.0344,0.1264,-0.0114,-0.4942,-0.0618,0.0124,0.4814,0.2592,0.284,0.1604,0.1604,0.3086,0.926,0.9506,0.753,0.9754,0.6544,0.4568,0.1604,0.3828,0.5802,0.8518,1,0.679,0.8272,0.926,0.9012,0.5308,0.3828,0.432,0.1604,0.1852,0.2592,0.6296,0.5556,0.1112,-0.1228,-0.1228,0.0526,0.3158,0.2632,-0.1228,0.3684,0.3508,0.5438,0.5614,0.807,0.5964,0.4386,0.1754,0.2982,0.0702,0.7368,0.6316,1,0.7544,0.5088,0.4386,0.6316,0.772,0.6666,0.3508,0.2808,-0.1228,-0.0878,0.4036,0.2982,0.0176,1,-1,-1,1,-1,-1,-1,-0.7666,-1,-0.4386,-0.228,-0.1404,-0.0878,-0.0176,-0.0702,-0.5088,-0.0526,0.1052,0.2632,0.228,0.7368,0.614,0.579,1,0.8596,0.5964,0.772,0.2632,0,-0.1578,-0.1228,-0.2632,0,-0.2808,-0.4736,-0.3508,-0.386,-0.421,-0.228,-0.386,-0.5614,'1'
-0.9832,-0.4854,-0.3556,-0.1214,0.205,0.3284,0.1882,0.2364,0.2218,0.1758,0.1402,0.0126,0.2532,0.0754,0.1924,0.3828,0.4582,0.7846,0.8138,1,0.9164,0.9498,0.7532,0.8662,0.5962,0.6422,0.3076,0.3494,0.2154,0.136,0.0334,-0.1528,-0.9956,-0.3644,-0.2172,0.1114,-0.1416,0.0444,0.0682,0.159,0.1914,0.2086,0.04,-0.0248,0.1914,0.0248,0.1936,0.2432,0.4292,0.6476,0.7622,0.6172,0.641,0.8444,0.7816,1,0.8552,0.6216,0.3882,0.1156,0.079,0.174,0.0962,0.1222,-0.9978,-0.4256,0.1396,0.3252,-0.2044,-0.1888,0.1576,0.0436,-0.0012,-0.2336,-0.323,-0.1284,-0.0882,-0.0972,-0.171,-0.1062,-0.1732,-0.0212,0.4972,0.8906,0.9174,0.9576,1,0.9866,0.7878,0.3698,0.1554,0.209,0.3364,0.504,0.553,0.4056,-0.9148,-0.4868,0.4546,0.45,-0.4914,-0.282,-0.2452,-0.2612,-0.3832,-0.4592,-0.443,-0.3716,-0.2888,-0.3164,-0.3556,-0.4706,-0.6502,-0.2682,0.0242,0.657,0.8734,1,0.7238,0.6502,0.6892,0.4914,0.427,0.321,0.3948,0.4062,0.5328,0.3142,-0.9018,-0.366,0.5906,0.5696,-0.6164,-0.5088,-0.5438,-0.5134,-0.4878,-0.4526,-0.7264,-0.5626,-0.5088,-0.4784,-0.4666,-0.5954,-0.6584,-0.5486,-0.1976,0.4316,0.8058,1,0.4878,0.593,0.7824,0.579,0.5346,0.3192,0.179,0.2468,0.4246,0.1906,-0.8582,-0.3054,0.8466,0.8206,-0.6642,-0.4762,-0.5166,-0.6296,-0.4646,-0.4876,-0.5976,-0.4704,-0.4124,-0.4182,-0.4558,-0.369,-0.5918,-0.4588,-0.1404,0.4212,0.8986,1,0.3778,0.8524,0.974,0.9566,0.7396,0.34,0.0738,0.204,0.453,-0.2244,-0.753,-0.2698,0.873,0.8872,-0.5132,-0.2698,-0.4038,-0.5556,-0.418,-0.418,-0.3156,-0.4356,-0.3052,-0.3298,-0.358,-0.5838,-0.4392,-0.351,-0.0476,0.559,0.6402,0.813,1,0.9576,0.7636,0.5098,0.1076,-0.1816,0.0194,0.0794,0.0124,-0.1394,-0.9556,-0.4222,-0.1112,-0.0222,0.3334,0.3334,0.0222,0.1112,0.0666,0.0222,-0.0222,0.0222,0.2,0.2,0.2,0.2888,0.4222,0.7334,0.8666,0.8666,0.8666,0.9556,1,0.9556,0.7778,0.6888,0.5112,0.4222,0.4666,0.4666,0.4222,0.1112,-0.814,-0.4418,-0.2094,0.0698,0.3488,0.4418,0.2094,0.0698,0.2094,0.1628,0.1628,0.1628,0.2558,0.3024,0.3024,0.2558,0.1162,0.5814,1,1,0.721,0.6744,0.8604,0.7674,0.721,0.3954,0.3024,0.1628,0.2558,0.4884,0.4884,0.0698,-1,-0.3684,-0.2894,-0.1052,-0.3948,-0.2894,0.1052,0.1316,-0.0264,-0.1052,-0.2368,-0.1316,0.0526,-0.1316,-0.079,0.0264,0,0.1316,0.3422,0.8158,0.6578,0.8158,0.9474,1,0.6578,0.5526,0.0264,-0.0526,0.1578,0.2632,0.4474,0.1316,-1,-1,-1,-1,-1,-1,-1,-1,-0.753,-0.8352,-0.447,0.4352,0.1764,0.2352,0.3412,0.847,0.4,0.6236,0.6,0.4352,0.2352,-0.1412,-0.6588,-0.753,-0.7176,-0.7764,-0.7648,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.9474,-0.6304,0.1926,-0.2204,-0.3148,-0.3736,-0.4416,-0.5808,-0.6194,-0.6288,-0.6938,-0.754,-0.8082,-0.8592,-0.8716,-0.8422,-0.8438,-0.8252,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-1,-0.6134,-0.0718,-0.0484,-0.1742,-0.2884,-0.4106,-0.6012,-0.8012,-0.879,-0.8696,-0.919,-0.8284,-0.8268,-0.6468,-0.4734,-0.3334,-0.3268,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,1,1,1,-0.9142,-0.9428,-0.8,-1,-0.9428,-1,-0.9714,-0.9714,-0.9142,-0.6858,-0.8,-0.8,-0.8858,-0.7428,-0.2858,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.7966,0.3552,0.3508,0.3382,0.316,0.3272,0.3356,0.3448,0.3812,0.4644,0.5156,-0.56,1,-0.5654,0.4756,0.3194,0.0658,0.0518,0.9666,-0.4736,-0.2106,-0.1052,0.2632,0.1578,0.2106,0.2632,0.0526,0.7368,0.8422,0.8948,1,0.8948,0.579,0.421,0.421,0.3684,0.7894,0.8948,0.9474,0.6316,0.1578,0.3684,0.5264,0.4736,0.5264,0.5264,0.0526,-0.1052,-0.0526,-0.0526,-0.421,-0.2874,0.0114,0.3334,0.3104,0.1954,0.0344,0.1724,0.2644,0.4022,0.7472,0.6092,0.977,0.7702,0.3104,0.3334,0.2874,0.3794,0.7012,0.977,1,0.4482,0.1264,0.1724,0.5402,0.5862,0.5632,0.4712,0.4482,-0.1034,-0.0114,0.0804,-0.2184,-0.4588,0.0588,0.3412,0.2706,0.2236,0.2706,0.0588,0.2236,0.5764,0.8824,0.9764,1,0.9294,0.6236,0.5058,0.3412,0.4588,0.6706,0.9294,1,0.6236,0.3648,0.247,0.4118,0.553,0.5058,0.4824,-0.0352,-0.5764,-0.1764,-0.3176,-0.5058,1,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.6756,-0.5316,-0.3694,-0.4414,-0.027,-0.3154,0.099,-0.1172,0.081,-0.027,0.1352,0.2432,0.1172,0.6216,0.6936,0.7658,1,0.982,0.1712,-0.045,-0.045,0.1172,-0.2612,-0.3874,-0.2072,-0.2252,-0.4954,-0.3154,-0.4774,-0.4594,-0.3874,-0.6216,'1'
-0.8064,-0.1644,-0.2044,0.2228,0.0814,-0.4962,-0.5238,-0.318,-0.4532,-0.2904,-0.4348,-0.2904,-0.4378,-0.318,-0.1736,-0.1674,0.1244,0.192,0.745,0.7328,0.788,0.7666,1,0.9416,0.8924,0.7572,0.3426,0.192,0.3302,0.3702,0.358,0.4716,-0.891,-0.076,-0.0646,-0.122,-0.1736,-0.2998,-0.34,-0.4462,-0.4692,-0.383,-0.3802,-0.2856,-0.2626,-0.2884,-0.2454,-0.4376,-0.4032,0.0358,0.274,0.8508,0.9312,0.8394,0.914,0.954,1,0.7992,0.452,0.2942,0.1908,0.165,0.383,0.5494,-0.9296,0.0544,0.113,-0.492,-0.3744,-0.4038,-0.254,-0.674,-0.4626,-0.7356,-0.4744,-0.6652,-0.3686,-0.4626,-0.307,-0.3656,-0.6006,-0.536,0.163,0.2658,0.7856,1,0.7416,0.9794,0.818,0.8942,0.7416,0.3832,0.2864,0.1336,0.1336,0.3362,-0.96,0.0632,0.1032,-0.3406,-0.3036,-0.436,-0.3406,-0.7072,-0.664,-0.8028,-0.7842,-0.8182,-0.7258,-0.5562,-0.4576,-0.6456,-0.6548,-0.5808,-0.1834,-0.0416,0.3498,0.6734,0.923,1,0.9384,0.8182,0.55,0.2634,0.208,-0.0724,-0.0016,0.2942,-0.8518,-0.1684,-0.2122,0.0034,-0.33,-0.404,-0.4512,-0.5656,-0.5858,-0.4916,-0.7038,-0.6262,-0.596,-0.5454,-0.367,-0.6398,-0.643,-0.5622,-0.3974,-0.175,0.4916,0.8822,1,0.8686,0.8822,0.9024,0.5488,0.0942,0.0506,0.037,0.0472,0.0708,-0.9298,-0.365,0.5876,0.5298,-0.7774,-0.765,-0.6948,-0.6412,-0.8722,-0.7444,-0.7278,-0.5134,-0.6164,-0.3526,-0.4268,-0.6866,-0.534,-0.6494,-0.5134,-0.2288,0.0516,0.633,1,0.934,0.8268,0.7814,0.534,0.134,0.0886,0.1052,0.336,0.4186,-0.9248,-0.3494,0.457,0.3548,-0.801,-0.2904,-0.7634,-0.801,-0.758,-0.715,-0.5968,-0.6452,-0.7258,-0.1936,-0.0806,-0.5376,-0.5054,-0.5376,-0.742,-0.6774,0.3656,0.613,1,0.7366,0.5538,0.5162,0.1774,-0.2526,-0.156,-0.1506,-0.086,0.1666,-0.2778,-0.1666,-0.1112,0.1112,-0.1112,-0.7778,-0.5,-0.1666,-0.4444,-0.1666,-0.5,-0.1666,-0.2222,-0.1666,0.0556,0.0556,0.5,0.6666,0.2222,0.5,0.6666,0.6666,1,0.9444,0.3888,0.3334,0.2222,-0.0556,0.6112,0.6112,0.1112,0.1666,-0.5,-0.2728,-0.091,0.2272,0.091,-0.3636,-0.409,-0.2272,-0.3182,-0.2272,-0.3182,-0.2272,-0.1818,-0.2728,-0.091,-0.1818,0.1364,0.1364,0.4546,0.4546,0.7728,0.5454,1,0.8182,0.7272,0.3636,0.2728,0.091,0.1818,0.5,0.5,0.6364,-0.7932,-0.1034,-0.0804,-0.4022,-0.4482,-0.3104,-0.2874,-0.6092,-0.6092,-0.5402,-0.4942,-0.4712,-0.3334,-0.5862,-0.4712,-0.5632,-0.5862,-0.1494,0.1034,0.6552,0.908,0.6782,0.885,0.6552,1,0.839,0.3104,0.1494,0.1034,0.0574,0.2874,0.2644,-1,-1,-1,-1,-1,-1,-1,-1,-0.8788,-0.8922,-0.3872,0.4208,0.0034,-0.091,0.0034,0.0304,-0.0572,-0.34,-0.293,-0.2188,-0.4208,-0.542,-0.542,-0.468,-0.3334,-0.2526,-0.1448,-0.1314,-0.2794,-0.5488,-0.697,-0.7374,-0.8586,-1,-1,-1,-1,-1,-1,-1,-1,-0.8696,-0.8904,-0.2386,0.6622,0.6266,0.7748,0.3778,0.1586,0.1614,-0.1288,-0.1674,-0.36,-0.594,-0.686,-0.6948,-0.6296,-0.5112,-0.4934,-0.4548,-0.434,-0.52,-0.6534,-0.7512,-0.6948,-0.677,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.96,-0.7968,-0.2292,0.0018,-0.102,-0.1346,-0.1618,0.0116,0.0866,-0.1134,-0.5068,-0.7034,-0.7568,-0.8568,-0.74,-0.65,-0.69,-0.7734,-0.7434,-0.7068,-0.4868,-0.5068,-0.4334,-0.2668,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,-0.6572,-0.2572,-0.5428,-0.7142,-0.6572,-1,-0.8,-0.3714,-0.2286,-1,-1,-0.7428,-0.7428,-1,-0.9428,-0.9142,-0.9142,-0.8,-0.7714,-0.6858,-0.8,0.3874,0.4066,0.3852,0.425,0.4542,0.4378,0.4634,0.4484,0.4298,0.3168,0.5558,0.5982,0.6406,0.6446,0.6242,0.6252,0.7058,0.7464,0.8382,0.7478,-0.8666,0.3882,-0.0844,0.4134,0.674,0.7274,0.6592,0.725,-0.12,0.08,0.2,0.16,0.2,-0.08,0.52,0.64,0.48,0.44,0.16,0.64,0.76,0.8,0.64,0.84,0.88,0.84,0.72,0.72,0.96,1,0.96,0.88,0.64,0.52,0.68,0.68,0.68,0.6,0.36,0,-0.038,0.1898,-0.0126,-0.0632,0.0886,0.0126,0.1898,0.7468,0.6708,0.0126,0.1392,0.367,0.4178,0.7216,0.6202,0.8988,0.7216,0.595,0.6962,1,0.924,0.7722,0.7974,0.6456,0.4936,0.1898,0.4178,0.6202,0.4936,0.4684,0.4178,-0.038,0.4772,0.659,0.3864,0.3182,0.3182,0.25,0.341,0.5228,0.5682,0.6818,0.7046,1,0.6818,0.7272,0.6364,0.5454,0.4546,0.7728,0.909,1,0.7954,0.5,0.3864,0.5228,0.341,0.4546,0.841,0.9546,1,0.8636,0,0.0228,0.5408,-1,-1,1,-1,-1,1,-0.8334,-1,-0.4526,-0.6,-0.0736,0.1368,0.1368,0.0316,0.2422,0.2632,0.5158,0.0526,-0.1578,0.7894,0.5368,0.2632,0.8526,0.8948,1,0.9158,0.6842,0.7684,0.4316,-0.1578,-0.179,0.0526,0.3264,0.2632,0.0526,-0.1368,-0.0106,-0.3052,-0.6422,-0.8106,'2'
-0.9042,0.0684,-0.0136,-0.0342,-0.315,-0.5206,-0.6028,-0.5068,-0.7054,-0.6164,-0.6918,-0.6096,-0.6232,-0.6576,-0.322,-0.411,-0.178,0.3082,0.7328,0.5754,0.7124,0.7398,0.959,0.8424,1,0.4384,0.1438,-0.4042,-0.3562,0.1506,0.1164,0.548,-0.4722,0.1382,0.0886,0.0762,-0.0762,-0.2494,-0.3568,-0.2248,-0.3526,-0.2742,-0.2742,-0.1876,-0.4886,-0.4062,-0.336,-0.3402,-0.0226,-0.0226,0.5134,0.464,0.7856,0.7072,0.5836,0.6824,1,0.835,0.3896,0.1712,0.1958,0.1918,0.336,0.4186,-0.801,-0.09,-0.1328,-0.1422,-0.2844,-0.2654,-0.4454,-0.545,-0.635,-0.4502,-0.5972,-0.4598,-0.6162,-0.5356,-0.474,-0.5118,-0.4502,-0.365,0.2938,0.3508,0.9574,1,0.4834,0.4928,0.673,0.6492,0.2274,0.1658,0.1658,0.071,0.3508,0.218,-0.7376,-0.05,-0.0916,-0.4126,-0.5124,-0.375,-0.5,-0.5458,-0.6334,-0.5042,-0.6458,-0.5208,-0.65,-0.5334,-0.7334,-0.7126,-0.6708,-0.6042,0.0084,0.1792,0.8542,1,0.5624,0.5916,0.5666,0.6792,0.1916,0.2084,0.0376,0.1166,0.1584,0.2084,-0.747,0.0122,-0.0462,-0.2116,-0.3576,-0.421,-0.601,-0.7178,-0.7178,-0.6204,-0.7908,-0.6546,-0.6788,-0.815,-0.7178,-0.747,-0.6496,-0.5718,0.0218,0.0462,0.7956,0.815,0.9514,0.8686,1,0.854,0.6254,0.455,0.309,0.236,0.5086,0.416,-0.8446,-0.2136,-0.3496,-0.3884,-0.5436,-0.403,-0.4514,-0.4612,-0.4758,-0.5292,-0.6554,-0.6796,-0.7136,-0.7816,-0.5098,-0.665,-0.6456,-0.602,-0.2864,-0.0098,0.4952,0.9418,1,0.9174,0.8834,0.8738,0.7136,0.4612,0.3058,0.4272,0.5098,0.597,-0.8398,-0.3436,-0.0594,0.0698,-0.571,-0.5452,-0.5918,-0.6176,-0.664,-0.752,-0.9432,-0.5658,-0.5658,-0.6072,-0.6228,-0.54,-0.5038,-0.6744,-0.2714,-0.044,0.3954,0.9484,1,0.9534,0.9276,0.9794,0.7106,0.5348,0.4832,0.5452,0.5556,0.664,-0.2728,0.591,0.591,0.2272,0.1364,0.1818,0.2272,0.1818,0.2728,0.091,0.091,0.3182,0.3182,0.091,0.2272,0.3182,0.4546,0.7728,0.909,0.7272,0.909,0.7728,1,0.909,0.7728,0.5454,0.591,0.5,0.4546,0.409,0.7272,0.6364,-0.5,0.1112,0.0556,0.0556,-0.1112,-0.2778,-0.5,-0.2778,-0.3334,-0.2222,-0.5,-0.5556,-0.3334,-0.5,-0.3334,-0.3888,0.0556,0.1666,0.9444,0.8334,0.6112,0.6666,1,0.7778,0.6666,0.4444,0.1112,-0.1112,-0.1112,0.1666,0.2222,0.5,-0.7858,-0.0714,-0.1428,-0.2858,-0.4524,-0.4048,-0.5,-0.381,-0.5238,-0.5238,-0.619,-0.5476,-0.6666,-0.5238,-0.7858,-0.738,-0.6428,-0.5476,0.0476,0.1904,0.8572,1,0.619,0.5238,0.4524,0.5476,0.238,0.1428,-0.0476,-0.0238,0.238,0.1904,-0.8794,-0.8104,-0.75,-0.569,-0.5862,-0.5776,-0.6466,-0.7156,-0.75,-0.819,-0.3534,0.6034,0.5344,0.2932,0.0948,0.0604,0.112,0.1206,-0.0776,-0.3448,-0.1638,-0.2844,-0.4656,-0.5172,-0.6552,-0.569,-0.5948,-0.6896,-0.7758,-0.7844,-0.8448,-0.862,-0.8276,-0.838,-0.7732,-0.7454,-0.662,-0.676,-0.6666,-0.6898,-0.7592,-0.7454,-0.7732,-0.162,0.8334,0.9538,0.6388,0.4676,0.463,0.6712,0.6204,0.3148,0.5186,0.6436,0.2638,-0.1342,-0.4166,-0.588,-0.6112,-0.6712,-0.7268,-0.7638,-0.7638,-0.7686,-0.7824,-0.7038,-0.9934,-0.9134,-0.9134,-0.8234,-0.81,-0.8068,-0.8268,-0.8368,-0.8168,-0.9468,-0.7,-0.3458,-0.3372,-0.2316,-0.223,-0.2116,-0.183,-0.12,-0.045,-0.0426,-0.1676,-0.22,-0.17,-0.3234,-0.5268,-0.7234,-0.77,-0.9068,-0.92,-0.8868,-0.9534,-0.8068,-0.8668,-1,-0.9428,-0.9142,-0.9142,-0.8858,-1,-1,-1,-0.9428,0.6,1,1,-0.8286,-0.7142,-0.8,-0.7714,-0.7428,-0.8,-0.8572,-0.9714,-1,-0.7428,-0.6858,-0.5714,-0.4286,-0.6286,-0.8572,-1,-1,-0.9428,-0.9428,-0.9428,-0.8572,0.1254,0.114,0.1278,0.1622,0.1996,0.2362,0.2586,0.2584,0.2994,0.2936,0.4462,0.4252,0.4408,0.497,0.5464,0.6072,0.6368,0.7032,0.7476,0.8442,-0.7866,-0.1648,-0.0232,0.4954,0.875,0.9028,0.926,0.175,-0.0526,-0.3684,0.0526,0.3684,0.4736,0.421,0.3684,0.6316,0.5264,0.579,0.6316,0.7894,0.6842,0.6316,0.8422,1,0.8948,0.7894,0.6842,0.8948,1,1,0.8948,0.8948,0.6842,0.8422,0.8422,0.7894,0.5264,0.421,0.1052,-0.2106,0.077,-0.359,0.0256,0.1282,0.0512,0.2052,0.1282,0.4358,0.4616,0.3846,0.4872,0.5898,0.5384,0.3846,0.8462,0.9488,0.923,0.641,0.5128,0.8974,1,0.7436,0.718,0.4616,0.5384,0.5642,0.641,0.5642,0.4616,0.4102,0.0512,-0.4872,0.0698,-0.1162,-0.1396,0.0466,-0.2094,-0.0698,-0.3024,-0.093,0.5582,0.6046,0.1162,0.4884,0.3488,0.2558,0.1396,0.814,0.814,0.2558,0.4884,0.8604,1,0.2558,0.1396,0.186,0.2094,0.5582,0.4186,0.2094,0.4884,0.4652,0.0232,-0.372,0.8148,-1,-1,1,-1,-0.8,-1,-0.8334,-1,-0.2344,0.0156,-0.1876,0,-0.1406,-0.1718,-0.2188,-0.0624,-0.3282,-0.0938,0.7344,0.9062,0.8438,0.6406,0.375,0.6094,1,0.625,-0.0624,0.6406,0.6094,0.4062,0.0468,-0.1406,-0.1406,0.1094,0.0156,0.3124,0.2032,-0.1406,-0.6094,-0.7344,'2'
-0.961,0.1922,0.3298,-0.2988,-0.2416,-0.548,-0.2832,-0.3896,-0.1376,-0.148,-0.3454,-0.2156,-0.2988,-0.052,-0.1974,-0.039,-0.0494,0.6312,0.7324,0.5012,0.8234,0.6884,1,0.9246,0.4026,0.3168,-0.0416,0.0338,-0.2182,0.0442,-0.0234,0.2572,-0.9394,0.0522,0.1796,-0.284,-0.3924,-0.5532,-0.3612,-0.3946,-0.4592,-0.382,-0.6116,-0.357,-0.5032,-0.407,-0.4384,-0.474,-0.382,-0.2066,0.167,0.2004,0.9812,1,0.4676,0.6242,0.4406,0.81,0.7036,0.4008,0.4258,0.286,0.4614,0.2506,-0.9616,-0.0608,-0.0074,-0.4058,-0.3972,-0.5528,-0.493,-0.6848,-0.5336,-0.5932,-0.6698,-0.574,-0.5676,-0.474,-0.444,-0.491,-0.5058,-0.2482,-0.1694,0.2546,0.5292,0.919,1,0.8338,0.8084,0.8744,0.8146,0.6144,0.5464,0.542,0.6208,0.7658,-0.9954,-0.4888,-0.0574,0.0856,-0.4022,-0.7726,-0.7022,-0.6014,-0.6342,-0.6576,-0.7022,-0.6412,-0.5334,-0.578,-0.5686,-0.5732,-0.5616,-0.5732,-0.2826,0.0808,0.4748,0.7866,0.939,0.8852,0.9438,1,0.9086,0.6108,0.6366,0.5428,0.6412,0.782,-0.9062,-0.4042,0.4152,0.36,-0.7682,-0.7766,-0.8152,-0.5752,-0.6414,-0.7214,-0.5862,-0.4924,-0.5118,-0.4814,-0.5338,-0.5144,-0.5642,-0.509,-0.4648,-0.1806,0.3296,0.8456,1,0.8538,0.7904,0.7324,0.7876,0.622,0.382,0.4014,0.5366,0.7766,-0.8746,-0.232,0.5612,0.4514,-0.7054,-0.6082,-0.7836,-0.7554,-0.7492,-0.6364,-0.6206,-0.5988,-0.4358,-0.417,-0.3636,-0.58,-0.4984,-0.4922,-0.7304,-0.232,0.1348,0.627,0.9342,0.9656,0.812,1,0.9718,0.3292,0.138,0.1818,0.3542,0.8308,-0.8696,-0.1898,0.8182,0.6956,-0.668,-0.4584,-0.5336,-0.4546,-0.5692,-0.6324,-0.66,-0.5454,-0.332,-0.3834,-0.1186,-0.2964,-0.3084,-0.3202,-0.2608,-0.1186,0.585,0.925,0.925,0.9288,1,0.6996,0.3518,-0.083,-0.0988,0.0632,0.4426,0.8894,-0.5,0.7142,0.9286,0.2142,0.1428,-0.5714,0.0714,0.2858,0,0,0.5,0.6428,0.5714,0.6428,0.6428,0.7142,0.8572,0.8572,1,0.6428,0.8572,0.6428,0.7858,0.6428,0.1428,0.3572,0.2142,0.4286,0.3572,0.1428,0.2858,0.2142,-0.9444,0,0.1666,-0.0556,0,-0.5,-0.1112,-0.1666,0.0556,-0.1112,-0.3334,-0.3888,0.0556,0.1666,-0.1666,0.0556,0.5,0.8888,0.8334,0.2222,0.4444,0.8334,1,0.7778,0.3888,0.2778,-0.1112,-0.1112,-0.3334,-0.1666,0,0.1666,-0.8636,0.0454,0.1818,-0.3182,-0.4318,-0.4546,-0.3182,-0.3864,-0.3864,-0.2954,-0.4772,-0.2728,-0.4546,-0.5,-0.4318,-0.4318,-0.2728,-0.2954,0.1136,0.159,1,1,0.591,0.7272,0.5228,1,0.8636,0.5682,0.591,0.4318,0.591,0.341,-0.854,-0.8454,-0.854,-0.8712,-0.8454,-0.8626,-0.8198,-0.8284,-0.7682,-0.8026,-0.6566,0.4248,0.9056,0.8112,0.5794,-0.0128,0.0558,0.1244,-0.03,-0.073,-0.0816,-0.2274,-0.4764,-0.5966,-0.6996,-0.7682,-0.7682,-0.794,-0.794,-0.854,-0.8454,-0.854,-1,-0.759,-0.7546,-0.6148,-0.705,-0.7906,-0.7882,-0.732,-0.599,-0.3582,-0.3648,-0.581,0.027,0.3852,0.5968,0.7184,0.732,0.464,-0.0744,-0.5068,-0.563,-0.6082,-0.6418,-0.7636,-0.8018,-0.8018,-0.8424,-0.8086,-0.7996,-0.7928,-0.8244,-0.8852,-0.9032,-1,0.0932,0.0066,0.44,0.2666,-0.1034,0.17,0.2532,0.7732,0.9766,1,0.3732,-0.3524,-0.2986,-0.3158,-0.3372,-0.173,-0.2458,-0.3516,-0.5944,-0.6744,-0.6016,-0.6816,-0.5568,-0.6534,-0.72,-0.64,-0.4534,-0.6,-0.36,-0.7,-0.82,-0.96,-1,-1,-0.7428,-0.6572,-0.3714,-0.8286,-0.8572,-0.7428,0.0572,0.1714,0.5714,0.6286,1,-0.3142,-0.4,-0.4,-0.9428,-1,-0.8286,-0.8,-0.9428,-0.9428,-0.9428,-0.8858,-0.9428,-0.9142,-0.8858,-0.6858,-0.8572,-0.8286,-0.8286,-0.6858,-0.7428,-1,0.3952,0.3906,0.3842,0.3634,0.3668,0.3418,0.3498,0.2968,0.287,0.23,0.061,0.0792,0.172,0.2306,0.2852,0.376,0.4886,0.6166,0.8016,0.8108,-0.6266,0.6706,-0.581,-0.4932,-0.1194,0.0136,0.268,-0.7584,-0.4856,-0.797,-0.2252,-0.203,-0.2494,-0.1612,-0.128,0.0376,0.0706,-0.0816,0.128,0.0464,-0.0066,0.053,0.159,0.1192,0.1788,0.3664,0.0684,0.1788,0.329,0.446,0.4238,0.4194,0.4238,0.51,0.6114,0.8234,0.8698,0.7086,1,0.7572,-0.4788,-0.524,-0.3392,-0.1838,-0.296,-0.2212,-0.1878,0.1112,-0.058,-0.1544,-0.0974,-0.0462,0.0068,-0.0324,0.0422,0.0678,0.005,0.058,0.1838,0.2704,0.412,0.41,0.5458,0.5418,0.5418,0.528,0.7346,0.937,1,0.7818,0.8388,0.4258,-0.6252,-0.5398,-0.499,-0.2816,-0.202,-0.231,-0.1534,0.1554,0.0932,-0.0214,0.0834,0.1282,0.2564,0.231,0.1786,0.2524,0.4816,0.5378,0.268,0.4912,0.5748,0.5962,0.9398,0.9708,0.668,0.6582,0.9786,1,0.9826,0.8038,0.835,0.6214,-0.955,-1,1,-1,-1,-1,-1,1,-1,-0.398,-0.1844,0.1456,0.1844,0.0486,-0.2816,0.1068,0.1844,0.301,0.2038,0.2428,0.7088,0.8252,0.3786,0.6894,0.864,1,0.9612,0.5728,0.1844,0.0874,0.1844,0.2428,0.068,-0.165,-0.3398,-0.1262,-0.2428,-0.4174,-0.2234,0.068,-0.1068,'3'
-0.5492,0.7524,0.7524,-0.1936,-0.1428,-0.1492,-0.1048,-0.1302,-0.2634,-0.5682,-0.7842,-0.162,-0.2634,-0.4096,-0.2064,0.0794,0.0666,0.9238,0.892,0.8032,0.7842,0.8604,0.8286,1,0.7842,-0.092,-0.1366,0.035,0.0286,0.2762,0.3904,0.4666,-0.729,0.1474,0.1274,-0.4024,-0.498,-0.2948,-0.3746,-0.478,-0.5338,-0.7132,-0.6892,-0.259,-0.3306,-0.4342,-0.4742,-0.4262,-0.4622,-0.0678,0.0996,0.8406,0.7928,0.6574,0.5856,1,0.9482,0.0278,-0.0558,0.1036,0.0278,0.231,0.1514,0.5378,-0.7468,0.0788,0.0496,-0.4568,-0.5302,-0.2954,-0.4166,-0.5192,-0.666,-0.7652,-0.7688,-0.5634,-0.6294,-0.5816,-0.6036,-0.6256,-0.699,-0.5706,0.0606,0.4642,0.6294,1,0.7908,0.8606,0.6844,0.6514,0.4312,0.3432,0.1816,0.2698,0.2918,0.5854,-0.7176,0.002,-0.0974,-0.1452,-0.344,-0.5428,-0.7654,-0.6222,-0.7058,-0.8808,-0.7496,-0.67,-0.5746,-0.5904,-0.4354,-0.5864,-0.6104,-0.5586,-0.0816,0.2088,0.841,1,0.7892,0.65,0.9086,0.8608,0.5228,0.3758,0.332,0.3082,0.5904,0.7256,-0.6582,0.0644,0.255,0.4342,-0.311,-0.5686,-0.591,-0.6414,-0.6862,-0.8152,-0.7086,-0.507,-0.563,-0.6022,-0.7254,-0.675,-0.6638,-0.5854,-0.5686,-0.2998,0.4566,0.9272,0.8544,0.6582,0.86,1,0.6806,0.3446,0.042,0.1876,0.3838,0.5798,-0.7558,-0.186,0.4128,0.3954,-0.6512,-0.5116,-0.7152,-0.6628,-0.6976,-0.721,-0.7558,-0.6686,-0.3488,-0.5058,-0.2152,-0.407,-0.686,-0.4768,-0.529,-0.3198,0.5174,1,0.907,0.6454,0.7616,0.6686,0.221,-0.2094,-0.1802,0.0872,0.3256,0.2848,-0.8804,0.2992,0.4444,0.0684,-0.6666,-0.6838,-0.3932,-0.4872,-0.547,-0.376,-0.6154,-0.5982,-0.2992,0.0854,0.3932,-0.171,-0.4188,-0.5982,-0.5042,-0.4018,0.4102,0.923,0.8548,0.9316,1,0.829,0.2906,-0.017,0.0598,0.1196,0.4274,0.7094,0.4546,0.9546,1,0.5,0.2728,0.091,0.5454,0.4546,0.3636,0.3636,0.0454,0.3636,0.3182,0.4546,0.4546,0.4546,0.5,0.591,0.5454,0.5,0.6818,0.3636,0.3636,0.7272,0.909,0.8182,0.5,0.7272,0.7728,0.909,0.8636,0.409,-0.25,0.625,0.625,-0.0624,-0.125,0.1876,0.1876,-0.4376,-0.25,-0.5,-0.3124,-0.25,-0.0624,-0.4376,-0.125,-0.125,0.25,0.4376,0.75,0.5,0.5624,0.4376,1,0.875,-0.1876,-0.125,0.1876,-0.0624,0,-0.0624,0.5,0.4376,-0.6586,0.0732,0.0244,-0.244,-0.3414,-0.2926,-0.4634,-0.3414,-0.5366,-0.6098,-0.4146,-0.3414,-0.7318,-0.8048,-0.7074,-0.561,-0.3658,-0.2196,0.122,0.3414,0.8292,1,0.6098,0.683,0.6586,0.8292,0.439,0.4146,0.244,0.317,0.5122,0.5854,-0.6512,-0.6162,-0.7674,-0.779,-0.8024,-0.7326,-0.721,-0.7906,-0.6512,-0.6162,-0.6512,0.7674,0.721,0.7674,0.6396,0.6162,0.3256,0.128,0.2674,-0.0698,-0.1396,-0.3024,-0.4768,-0.3604,-0.593,-0.6744,-0.7094,-0.7674,-1,-1,-1,-1,-1,-0.4988,-0.4452,-0.2796,-0.3064,-0.3288,-0.2886,-0.1544,-0.1544,-0.1364,-0.548,-0.7226,0.1454,0.4676,0.5392,0.83,0.9106,0.5884,0.029,-0.2394,-0.3288,-0.396,-0.5436,-0.6868,-0.6152,-0.727,-0.745,-0.7674,-0.7898,-1,-1,-1,-1,-1,-0.3534,-0.0868,0.6666,0.61,0.5232,0.6032,0.6966,0.8266,0.5,0.1,-0.8168,-0.6446,-0.3378,-0.2778,-0.0756,-0.1668,-0.1868,-0.2312,-0.442,-0.432,-0.6,-0.584,-0.7334,-0.7334,-0.9,-0.8468,-0.8334,-0.9,-1,-1,-1,-1,-1,1,-0.5714,-0.6572,-0.8858,-1,-0.9428,-0.9428,-0.9714,0.3714,1,0.5428,1,-0.2858,-0.9428,-0.8858,-0.7428,-0.8858,-0.8572,-0.7714,-0.9428,-0.9428,-0.8858,-1,-0.9428,-0.9142,-0.8572,-0.9142,-0.9142,-1,-1,-1,-1,-1,0.1842,0.1864,0.1574,0.165,0.1584,0.185,0.1846,0.1778,0.1518,0.0996,-0.0802,-0.041,-0.0064,-0.0012,0.0596,0.1358,0.2226,0.392,0.5854,0.5396,-0.6934,0.0942,-0.7404,-0.4318,0.2438,0.2484,0.3826,-0.675,-0.6426,-0.618,-0.2988,-0.2496,-0.2714,-0.3834,-0.1268,-0.004,-0.105,-0.0724,-0.165,-0.0724,-0.0314,-0.0096,0.1896,0.1624,0.3998,0.3698,0.3206,0.6562,0.6316,0.4898,0.307,0.4298,0.4706,0.5116,0.6862,0.9754,1,0.577,0.5908,0.2224,-0.5746,-0.4866,-0.4156,-0.304,-0.2094,-0.1472,-0.1236,0.0182,-0.0848,-0.0376,0.0248,0.1472,0.0934,0.0956,0.0548,0.1472,0.465,0.5468,0.4522,0.6176,0.6628,0.6886,0.4178,0.5038,0.6112,0.7164,0.7788,0.9742,1,0.7444,0.682,0.523,-0.6124,-0.6068,-0.3286,-0.368,-0.295,-0.1854,-0.0338,-0.028,0.1882,0.0786,-0.0056,0.2304,0.278,0.132,-0.0422,0.1124,0.5758,0.6826,0.3426,0.5394,0.5056,0.7276,0.868,0.8792,0.6516,0.3904,0.5422,1,0.6854,0.559,0.7106,0.2838,-0.3646,-1,1,-1,-1,-1,-1,1,-1,0.236,0.3484,0.0338,0.0112,0.0562,-0.236,0.0786,0.2584,0.2584,0.3932,0.3708,0.2808,0.618,0.528,0.4158,0.573,1,0.6854,-0.0562,0.5956,0.5056,0.3484,-0.0338,-0.1012,-0.0562,-0.1236,0.2134,-0.0786,-0.3708,-0.4158,-0.4832,-0.7304,'3'
-0.6772,-0.0366,-0.1246,-0.044,-0.2444,-0.56,-0.5966,-0.511,-0.5232,-0.4914,-0.4866,-0.4718,-0.4548,-0.5208,-0.3472,-0.3912,-0.3618,-0.0586,0.1492,0.6284,0.7628,0.5378,0.6186,0.9316,1,0.6504,0.5696,0.1418,0.0586,0.0904,0.2592,0.5404,-0.8398,-0.087,-0.1282,-0.1808,-0.302,-0.5058,-0.6408,-0.4942,-0.6384,-0.5972,-0.746,-0.563,-0.627,-0.5126,-0.6018,-0.5286,-0.4874,-0.3616,0.0114,0.1876,0.7392,0.8902,0.6292,0.6888,0.9016,1,0.6248,0.4852,0.3844,0.4462,0.3798,0.54,-0.7512,0.0334,-0.0024,-0.1508,-0.256,-0.3374,-0.4808,-0.5838,-0.689,-0.6316,-0.6124,-0.3326,-0.4498,-0.6004,-0.5862,-0.6316,-0.5192,-0.3636,-0.1818,0.201,0.677,1,0.9784,0.945,0.7776,0.9186,0.8182,0.5814,0.488,0.6914,0.6316,0.8876,-0.8002,-0.29,-0.1794,-0.0446,-0.5572,-0.6438,-0.7546,-0.7858,-0.7496,-0.805,-0.6872,-0.6774,-0.6968,-0.6606,-0.5404,-0.5452,-0.6366,-0.6102,-0.3598,0.03,0.396,0.7448,0.976,0.9518,0.7882,1,0.959,0.6702,0.5788,0.6174,0.5884,0.8194,-0.9888,-0.4476,0.286,0.1994,-0.774,-0.6094,-0.71,-0.682,-0.6262,-0.682,-0.6988,-0.8186,-0.6792,-0.5984,-0.4338,-0.5704,-0.6346,-0.5872,-0.4616,-0.2358,0.1966,0.7824,0.9972,1,0.9052,0.788,0.7016,0.4672,0.4868,0.5174,0.6402,0.8912,-0.9516,-0.4152,0.3728,0.2424,-0.903,-0.5122,-0.6424,-0.7696,-0.991,-0.7606,-0.8424,-0.8,-0.597,-0.609,-0.5696,-0.5152,-0.6636,-0.6788,-0.5848,-0.294,-0.003,0.4212,0.9788,1,0.503,0.7424,0.691,0.309,0.5636,0.4606,0.5394,0.8576,-0.9558,-0.2788,0.708,0.5576,-0.6592,-0.3362,-0.5266,-0.4824,-0.6992,-0.8762,-0.6992,-0.8452,-0.4116,-0.416,-0.2212,-0.4336,-0.385,-0.4646,-0.4514,-0.469,0.1726,0.9514,1,0.8274,0.9646,0.916,0.6682,0.261,0.0884,0.0354,0.1062,0.6238,-0.2592,0.3334,0.4074,-0.1852,-0.2592,-0.4814,-0.3334,-0.6296,-0.2592,-0.2592,-0.3334,-0.2592,-0.1112,-0.037,-0.1112,0.037,-0.1112,0.2592,0.4074,0.7038,0.6296,0.2592,0.7778,0.4814,1,0.7778,0.3334,-0.1852,0.3334,0.037,0.5556,1,-0.5264,0.0526,0.0526,0.2106,0,-0.421,-0.3684,-0.3158,-0.1052,-0.2106,-0.3684,-0.3684,-0.0526,-0.3684,-0.2632,-0.6316,-0.3158,0.1052,0.3158,0.6842,0.6842,0.4736,0.3684,1,0.8422,0.579,0.3158,0,-0.1578,0.1052,0.2106,0.1578,-0.9488,-0.5642,0.0512,0.0256,-0.7436,-0.6666,-0.6924,-0.718,-0.5128,-0.6154,-0.6924,-0.9488,-0.641,-0.4358,-0.641,-0.6154,-0.8462,-0.5898,-0.5642,-0.359,0.282,0.6666,1,0.8462,0.5898,0.7692,0.5898,0.1026,0.3334,0.4358,0.4616,0.7692,-1,-1,-1,-1,-1,-1,-1,-0.6642,-0.7664,-0.6058,-0.3722,0.6788,0.8686,0.4744,0.9124,0.7664,0.6204,0.6642,0.5474,0.4598,0.3138,0.0656,-0.5328,-0.5036,-0.635,-0.7664,-0.7226,-0.635,-0.7372,-0.7372,-0.781,-0.8102,-1,-1,-1,-1,-1,-1,-1,-1,-0.8306,-0.8456,-0.0508,0.9662,0.1488,0.4652,0.371,0.2542,0.6498,0.6384,0.533,-0.1564,-0.2242,-0.4238,-0.5518,-0.7326,-0.71,-0.7326,-0.7176,-0.7212,-0.725,-0.774,-0.7628,-0.8342,-0.8568,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.94,-0.56,0.8932,-0.1386,-0.0516,-0.0372,-0.172,-0.084,-0.0908,-0.24,-0.444,-0.504,-0.4934,-0.6134,-0.6268,-0.6334,-0.5634,-0.4368,-0.5468,-0.74,-0.7934,-0.7068,-0.96,-0.98,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,1,1,1,1,-0.7714,-0.8286,-0.9142,-0.9428,-1,-0.8858,-0.8858,-1,-0.8858,-0.7714,-0.7428,-0.8572,-0.8,-0.9142,-0.9428,-0.9142,-0.9428,-0.8858,-0.8286,-0.8,-1,0.0822,0.0948,0.1246,0.1342,0.1466,0.1732,0.166,0.1804,0.1574,0.1738,0.6942,0.7418,0.7752,0.8286,0.8452,0.8846,0.9178,0.951,0.9532,0.8824,-0.64,0.7882,1,0.243,-0.096,0.2052,0.1864,1,-0.6728,-0.4546,-0.6546,-0.309,0.0182,0.2,0.0182,-0.1454,0.3272,0.3272,0.4546,0.5272,0.6728,0.6546,0.6546,0.709,0.8,0.9272,0.8364,0.8364,0.8364,0.9636,1,0.7272,0.4182,0.1818,0.2,-0.1272,-0.1818,0,-0.2182,-0.5272,-0.8612,-0.7222,-0.4584,-0.4444,-0.3194,-0.3056,-0.2778,-0.2222,0.0138,0.0694,0.0556,0.2638,0.4028,0.1528,0.2778,0.1388,0.4722,0.5,0.5278,0.8056,1,1,0.8888,0.8194,0.375,0.3472,0.4722,0.0138,0.25,0.1528,-0.1388,-0.5278,-0.4434,-0.5304,-0.4956,-0.3392,-0.3826,-0.3652,-0.2782,-0.2956,-0.1044,0.0696,-0.174,0.087,0.2608,0.0696,-0.0522,0.1392,0.4782,0.3914,0.3218,0.4782,0.7044,0.9826,1,0.574,0.3566,0.3304,0.3044,0.2348,0.0956,-0.1044,-0.026,-0.0348,1,-1,-1,1,-1,-1,-1,-0.6666,1,-0.2478,-0.156,0.1376,0.1376,-0.0826,0.2478,0.1926,0.3212,0.2844,0.3028,0.5046,0.7798,0.8348,0.633,0.5046,0.9266,1,0.89,0.8348,0.633,0.0642,0.0642,-0.0276,-0.1926,-0.0642,0.0458,-0.0092,-0.1926,-0.156,-0.156,-0.266,-0.578,'4'
-0.8672,-0.3452,0.239,0.2772,-0.407,-0.6696,-0.6372,-0.531,-0.531,-0.711,-0.6224,-0.6696,-0.593,-0.5398,-0.354,-0.4808,-0.4484,-0.3038,0.3008,0.6018,0.8644,1,0.7434,0.7492,0.77,0.593,0.4808,0.3098,0.1858,0.3688,0.351,0.4602,-0.9392,-0.5508,0.136,0.1994,-0.5614,-0.6804,-0.5958,-0.704,-0.683,-0.7754,-0.8072,-0.7306,-0.5138,-0.4742,-0.469,-0.5218,-0.5376,-0.5932,0.0198,0.1704,0.7094,0.8652,1,0.8732,0.8838,0.8336,0.6512,0.58,0.5456,0.5112,0.7174,0.7886,-0.9408,-0.6098,0.0222,0.0814,-0.5852,-0.6494,-0.726,-0.716,-0.7308,-0.7284,-0.795,-0.684,-0.553,-0.5976,-0.4962,-0.5038,-0.4666,-0.5604,-0.1654,-0.0938,0.3828,0.7852,1,0.8396,0.832,0.8666,0.6888,0.5186,0.4988,0.558,0.7754,0.9186,-0.9864,-0.4746,-0.0698,0.0642,-0.554,-0.7182,-0.7538,-0.803,-0.6798,-0.6416,-0.6662,-0.688,-0.647,-0.6224,-0.554,-0.6634,-0.6088,-0.5732,-0.305,-0.0232,0.45,0.773,0.9098,0.9288,1,0.97,0.8632,0.6662,0.5102,0.5596,0.773,0.9234,-0.7962,-0.0224,-0.1538,-0.2816,-0.6062,-0.5234,-0.8272,-0.8446,-0.8722,-0.848,-0.7652,-0.7168,-0.6442,-0.6132,-0.3368,-0.5164,-0.6442,-0.6234,-0.3886,-0.1986,0.2642,0.6892,0.9344,0.9966,1,0.9206,0.7858,0.4922,0.4404,0.4058,0.5336,0.6892,-0.9304,0.2434,0.2392,-0.4478,-0.5542,-0.7956,-0.5788,-0.6074,-0.9428,-0.5992,-0.7096,-0.542,-0.4928,-0.4806,-0.4274,-0.5582,-0.6646,-0.5788,-0.5746,-0.4438,0.2392,0.3824,0.9304,1,0.8936,0.8692,0.2352,0.1412,0.2066,0.0798,0.2516,0.5788,-0.816,0.6084,0.835,-0.2784,-0.4622,-0.5048,-0.684,-0.5802,-0.6274,-0.6556,-0.6226,-0.3962,-0.2594,-0.3584,-0.2924,-0.3962,-0.349,-0.2924,-0.151,0.1982,0.7122,1,0.7972,0.9716,0.783,0.599,0.5048,0.0566,-0.0188,0.2312,0.4764,0.151,-0.1516,0.1516,0.2122,-0.3334,-0.394,-0.7576,-0.091,-0.0304,-0.1516,-0.5152,-0.1516,-0.091,-0.091,-0.2122,0.0304,-0.091,-0.1516,0.091,0.8182,1,0.3334,0.394,0.6364,0.697,0.2122,0.2122,0.3334,-0.1516,0.2122,0.2728,0.1516,0.5152,-0.5334,-0.1334,0.3334,0.4,-0.1334,-0.5334,-0.4,-0.4,-0.4,-0.4666,-0.4666,-0.6666,-0.2,-0.1334,-0.0666,-0.1334,-0.4,0.0666,0.0666,1,0.8,0.8666,0.5334,0.8,1,0.8666,0.4,0.2,0.3334,0.1334,-0.0666,0.3334,-0.4858,0.0572,0,-0.1714,-0.5714,-0.3714,-0.2858,-0.4,-0.9428,-0.6858,-0.4572,-0.6286,-0.4286,-0.4,-0.0286,-0.2286,-0.4286,-0.3142,-0.1428,-0.1428,-0.2572,0.6,0.6572,0.9714,0.7142,1,0.5714,0.7428,0.1714,0.2286,0.8,0.7428,-0.8244,-0.7162,-0.6216,-0.5136,-0.5676,-0.6082,-0.6082,-0.6486,-0.6622,-0.6622,-0.6216,0.5946,0.7432,0.3648,0.2838,0.1892,0.1216,0.1622,0.081,-0.054,0.2298,0.027,-0.7432,-0.7162,-0.7838,-0.7432,-0.7432,-0.7972,-1,-1,-1,-1,-1,-0.8754,-0.862,-0.8384,-0.8148,-0.8014,-0.825,-0.835,-0.8182,-0.8452,-0.34,-0.1516,-0.0134,0.5286,0.2122,0.4276,0.6666,0.6464,-0.1144,-0.4108,-0.5792,-0.431,-0.6228,-0.825,-0.8148,-0.835,-0.825,-0.8418,-0.862,-1,-1,-1,-1,-1,-0.9684,-0.9468,-0.9268,-0.8934,-0.8268,-0.86,-0.88,-0.9,-0.94,-0.4668,0.5666,-0.3524,-0.1678,-0.1878,-0.1954,0.04,0.0568,-0.1458,-0.3186,-0.4572,-0.6072,-0.823,-0.9,-0.82,-0.8334,-0.9334,-0.9334,-0.9668,-1,-1,-1,-1,-1,-0.3142,-0.9142,-0.8572,-0.9142,-0.8858,-0.9714,-0.9428,-0.9428,0.6286,1,1,1,-0.8572,-0.8858,-1,-1,-0.9428,-0.8572,-0.8,-0.8858,-0.2572,-0.3142,-0.8,-1,-0.9714,-1,-0.8858,-0.6,-1,-1,-1,-1,-1,0.0752,0.1208,0.1158,0.1116,0.1304,0.1286,0.16,0.1436,0.1902,0.1008,0.6376,0.669,0.6856,0.6784,0.686,0.711,0.809,0.8838,0.9284,0.781,-0.6534,0.6236,-0.1886,-0.5354,-0.3232,0.0404,0.2188,0.85,-0.647,-0.451,-0.196,-0.3138,-0.255,-0.2352,-0.0588,-0.098,-0.0588,0.0196,0.0784,0.2352,0.3138,0.1568,0.3922,0.5882,0.6078,0.6078,0.5098,0.6862,0.7648,0.9412,1,0.7844,0.8236,0.7648,0.745,0.5882,0.549,0.5686,0.3138,-0.1372,-0.7142,-0.6326,-0.5646,-0.4966,-0.483,-0.3062,-0.1972,-0.2654,-0.0476,0.0884,0.0204,-0.102,0.0476,0.1564,0.1156,0.3198,0.3742,0.3062,0.483,0.6462,0.6734,0.932,1,0.4694,0.5918,0.415,0.5102,0.5374,0.5102,0.483,0.3062,-0.1156,-0.0634,-0.1428,-0.1746,-0.0476,-0.2858,-0.1746,-0.0158,0.365,0.2064,0.635,0.619,0.0634,0.5396,0.254,0.238,0.3492,0.7778,0.6826,0.8572,1,0.8888,0.873,0.9682,0.9366,0.5556,0.619,0.635,0.6984,0.619,0.5556,0.2858,0.0318,0.5016,-1,-1,1,-1,-1,-1,-0.7334,-1,-0.0112,0.3034,0.5056,0.4832,0.0112,0.573,0.6854,0.3932,0.4158,0.8652,0.6404,0.618,0.8202,0.8426,0.7078,1,0.6854,0.8652,0.7978,0.7078,0.3708,0.236,0.1012,0.3932,0.2134,0.3258,0.0786,0.0786,-0.0338,-0.0338,0.1236,-0.1012,'4'
-0.883,-0.2362,-0.269,0.0042,-0.189,-0.5586,-0.6694,-0.7084,-0.651,-0.5894,-0.7104,-0.5976,-0.692,-0.499,-0.5154,-0.538,-0.618,-0.5052,-0.2238,0.074,0.6324,0.887,0.8974,0.926,0.8748,0.9692,0.805,0.7864,0.6878,0.7022,0.8562,1,-0.8382,-0.0208,-0.0088,-0.3762,-0.4038,-0.4156,-0.4196,-0.771,-0.7572,-0.5794,-0.536,-0.467,-0.4432,-0.5814,-0.4532,-0.5972,-0.619,-0.542,-0.3662,0.0858,0.4058,0.7788,1,0.9428,0.8026,0.7828,0.6684,0.623,0.534,0.5636,0.6742,0.7848,-0.8638,-0.1182,-0.1182,-0.4854,-0.5156,-0.4664,-0.4758,-0.6972,-0.788,-0.8656,-0.8278,-0.735,-0.6878,-0.6614,-0.5554,-0.701,-0.667,-0.5876,-0.368,-0.0048,0.37,0.6272,1,0.9698,0.7484,0.7388,0.6216,0.5478,0.4248,0.457,0.5724,0.6424,-0.8976,-0.4504,-0.1704,-0.0784,-0.6572,-0.5862,-0.7116,-0.7952,-0.6824,-0.6866,-0.7242,-0.7096,-0.7032,-0.6552,-0.5402,-0.6218,-0.6928,-0.626,-0.4608,-0.1516,0.325,0.6908,1,0.9938,0.8432,0.8934,0.8432,0.5402,0.5382,0.534,0.628,0.8496,-0.9258,-0.531,0.1364,0.0468,-0.8212,-0.6794,-0.7514,-0.7558,-0.8168,-0.8146,-0.7492,-0.7622,-0.7514,-0.7382,-0.699,-0.8822,-0.758,-0.662,-0.5202,-0.3174,0.1494,0.5748,1,0.9694,0.856,0.856,0.7644,0.4308,0.4482,0.4372,0.6052,0.8276,-0.9898,-0.5062,0.0592,-0.0552,-0.8756,-0.6266,-0.7428,-0.8306,-0.749,-0.8428,-0.8756,-0.8102,-0.6878,-0.7244,-0.7428,-0.7244,-0.6938,-0.7184,-0.6122,-0.4122,0.202,0.5572,1,0.8346,0.5816,0.6572,0.4244,0.2244,0.349,0.3142,0.4224,0.5572,-0.9416,-0.3518,0.5698,0.4624,-0.702,-0.6344,-0.6436,-0.533,-0.7696,-0.6682,-0.7174,-0.5668,-0.4746,-0.401,-0.2504,-0.4778,-0.6528,-0.5792,-0.3426,0.2288,0.6436,0.7604,0.9016,0.9386,1,0.7634,0.5484,0.1674,0.189,0.1612,0.5116,0.702,-0.6888,-0.4222,0.1112,0.2444,-0.0222,-0.3334,-0.5112,-0.3334,-0.3778,-0.5112,-0.5112,-0.3778,-0.3778,-0.3334,-0.3778,-0.3334,-0.8222,-0.2888,-0.1556,0.2444,0.4222,1,0.9556,0.8222,0.9112,0.7778,0.6444,0.6444,0.8222,0.8222,0.7334,0.9112,-0.75,-0.2084,-0.125,0.125,-0.0416,-0.3334,-0.5,-0.7916,-0.4166,-0.3334,-0.5834,-0.2916,-0.375,-0.2916,-0.0416,-0.125,-0.1666,-0.375,-0.25,0.2084,0.625,0.75,0.7916,0.875,1,1,0.8334,0.6666,0.7916,0.7084,0.9584,0.9584,-1,-0.1304,-0.087,-0.6304,-0.6304,-0.5652,-0.587,-0.8044,-0.6956,-0.6956,-0.674,-0.6956,-0.6304,-0.5,-0.413,-0.5434,-0.4782,-0.587,-0.5,0.087,0.2392,0.7608,1,0.8478,0.6956,0.5434,0.7608,0.6304,0.4782,0.3478,0.5652,0.5652,-1,-1,-1,-1,-1,-1,-1,-1,-0.866,-0.8436,-0.3744,0.3854,0.6312,0.6536,0.5754,0.2178,0.0726,0.1844,0.2514,0.1732,0.3296,0.2068,-0.4078,-0.5754,-0.419,-0.6202,-0.6984,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9384,-0.9316,-0.3766,0.395,0.065,0.0866,0.2166,0.1,-0.0466,-0.305,-0.3884,-0.4334,-0.51,-0.6484,-0.825,-0.815,-0.7366,-0.75,-0.735,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9868,-0.9868,-0.27,0.2224,0.1674,0.0736,0.065,0.2186,0.1324,-0.2588,-0.3788,-0.4314,-0.633,-0.799,-0.8768,-0.73,-0.46,-0.26,-0.26,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,-0.6572,-0.7714,-0.7428,-0.8858,-1,-0.9142,-0.9428,-1,-0.8,-0.5428,-0.6,-0.5714,-0.7142,-0.8572,-0.7142,-1,-1,-1,-1,-1,-1,0.247,0.2726,0.2566,0.2378,0.2332,0.2324,0.2268,0.2378,0.2478,0.2006,1,1,1,1,1,1,1,1,1,1,-0.6266,0.9764,-0.2316,-0.1866,-0.07,0.2884,0.7616,1,-0.5744,-0.234,-0.234,-0.3192,-0.3192,-0.3192,-0.3192,-0.234,-0.0638,-0.0638,0.7022,0.9148,0.7872,0.7022,0.7446,0.6596,1,1,0.617,0.4042,0.4042,0.4894,0.532,0.4042,-0.2766,-0.234,-0.0212,-0.0212,-0.234,-0.149,-0.3618,-0.617,-0.567,-0.0104,0.0104,-0.5258,-0.567,-0.402,-0.6288,-0.2578,-0.1752,-0.1752,0.4226,1,0.8556,0.8144,0.6288,0.7938,0.9588,0.9176,0.5876,0.2578,0.402,0.6702,0.6082,0.5258,-0.1752,-0.3814,0.1752,0.1546,-0.0104,0.031,-0.1752,-0.7114,-0.5834,0.125,0.0624,-0.4584,-0.4584,-0.3124,-0.3334,-0.375,-0.2708,-0.375,0.6042,1,0.75,0.5834,0.6876,0.625,0.6876,0.9376,0.6042,0.1458,0.2292,0.5208,0.6666,0.5208,-0.1666,-0.3334,0.1042,0.125,-0.0834,0.0208,-0.0208,-0.25,0.3634,-1,-1,1,-0.8,-1,-1,-0.8334,-1,-0.5374,-0.4926,-0.2238,-0.1194,0.0448,-0.194,-0.2538,-0.0598,-0.1642,-0.194,0.0746,0.3134,0.403,0.1642,0.5224,0.6418,1,0.7762,0.3732,0.015,0.0746,-0.2836,-0.2686,-0.2538,-0.0896,-0.1194,-0.3432,-0.2986,-0.5522,-0.3432,-0.3134,-0.612,'5'
-0.7954,-0.142,-0.227,-0.1394,-0.397,-0.6786,-0.8008,-0.7476,-0.7636,-0.7184,-0.7184,-0.5538,-0.6414,-0.6122,-0.6016,-0.66,-0.8566,-0.6494,-0.4608,-0.2006,0.3334,0.7318,1,0.8618,0.4262,0.6334,0.7796,0.6626,0.4582,0.5458,0.6042,0.66,-0.913,0.0962,0.0434,-0.1802,-0.295,-0.4628,-0.59,-0.851,-0.7454,-0.7578,-0.7796,-0.8074,-0.6802,-0.6646,-0.6832,-0.6894,-0.5838,-0.6274,-0.4504,-0.3168,0.7018,0.9038,0.8106,0.9658,0.8416,1,0.7174,0.4844,0.385,0.5186,0.4782,0.5094,-0.9236,-0.0412,-0.1206,-0.1294,-0.3324,-0.5382,-0.7882,-0.697,-0.847,-0.9118,-0.8648,-0.7852,-0.7412,-0.5764,-0.4176,-0.5824,-0.7382,-0.7264,-0.5558,-0.5058,0.3352,0.7324,0.9794,1,0.7264,0.7676,0.7176,0.4412,0.2736,0.3824,0.4206,0.4824,-0.9458,-0.4526,0.0166,0.0736,-0.621,-0.615,-0.6602,-0.7804,-0.7594,-0.7384,-0.8016,-0.6962,-0.7954,-0.4406,-0.3714,-0.4978,-0.573,-0.582,-0.4978,-0.3804,0.185,0.7234,1,0.985,0.8948,0.973,0.7774,0.4676,0.203,0.3384,0.3684,0.5338,-0.8032,-0.5094,0.2812,0.175,-0.5938,-0.6468,-0.8376,-0.8156,-0.6438,-0.7438,-0.6594,-0.6188,-0.4406,-0.3656,-0.3188,-0.4718,-0.4188,-0.3938,-0.4594,-0.3656,0.1188,0.8188,0.8,1,0.9438,0.8032,0.6968,0.2438,0.2594,0.3532,0.3844,0.4844,-0.7964,-0.372,0.4808,0.365,-0.7368,-0.4526,-0.7052,-0.6386,-0.7474,-0.7474,-0.5824,-0.6106,-0.3508,-0.2632,-0.4036,-0.3264,-0.3894,-0.2808,-0.4,-0.4246,0.1018,0.8036,0.9264,1,0.9158,0.7754,0.607,0.1438,0.0808,0.2632,0.421,0.4666,-0.796,0.0312,0.439,0.4108,-0.9376,-0.2012,-0.5638,-0.3314,-0.405,-0.4278,-0.6488,-0.524,-0.2748,0.1274,0.1728,-0.0424,-0.0594,-0.2238,-0.3712,-0.2804,0.3598,0.9944,0.9206,1,0.9264,0.592,0.3144,0.456,0.2918,0.3372,0.3598,0.7168,-0.4762,-0.2858,0,0.0952,-0.2858,-0.4286,-0.8572,-0.5238,-0.381,-0.381,-0.5238,-0.3334,-0.4762,-0.238,-0.1904,-0.238,-0.1904,-0.4762,-0.381,-0.1428,0.5238,0.9048,1,0.8096,0.3334,0.9524,0.9524,0.619,0.6666,0.762,0.5238,0.762,-0.5384,-0.2308,-0.1794,-0.1282,-0.5898,-0.4358,-0.4872,-0.4872,-0.5898,-0.6924,-0.5898,-0.282,-0.2308,-0.4358,-0.5384,-0.3334,-0.5384,-0.4872,-0.4872,0.0256,0.5898,0.9488,0.9488,1,0.8974,0.7948,0.9488,1,0.6924,0.8462,0.7948,0.5898,-0.6666,0.1666,0.1388,0.0556,0,-0.2778,-0.4722,-0.4166,-0.4166,-0.5556,-0.7778,-0.7778,-0.5,-0.1112,-0.2222,-0.3056,-0.25,-0.4444,-0.3334,-0.5,0.5556,0.8612,0.6388,0.8334,0.8056,1,0.6944,0.4444,0.4722,0.6666,0.4722,0.6112,-1,-1,-1,-1,-1,-0.6834,-0.6666,-0.65,-0.6666,-0.65,0.0666,0.5666,0.6834,0.55,0.5166,0.3,0.2,0.1,0.15,0.2166,0,-0.2,-0.45,-0.5834,-0.5166,-0.7334,-0.7334,-0.7,-0.7,-0.6834,-0.75,-0.7334,-1,-1,-1,-1,-1,-1,-0.872,-0.8484,-0.734,-0.559,-0.6464,0.1178,0.5454,-0.091,-0.192,-0.229,-0.2526,-0.3064,-0.5218,-0.5454,-0.5758,-0.6398,-0.7172,-0.7508,-0.7644,-0.6464,-0.724,-0.7172,-0.761,-0.7878,-0.8014,-0.8452,-0.8552,-1,-1,-1,-1,-1,-1,-0.9734,-0.9068,-0.7334,-0.49,-0.4834,-0.3168,0.1542,-0.1016,-0.193,-0.2358,-0.16,-0.2054,-0.4734,-0.6854,-0.5868,-0.5548,-0.6268,-0.6268,-0.5334,-0.24,-0.18,-0.44,-0.6268,-0.72,-0.8134,-0.96,-0.9068,-1,-1,-1,-1,-1,-1,-0.9142,-0.2286,-0.2286,-0.4286,-0.6286,1,1,-0.6,-0.4286,-0.7428,-0.8572,-0.8858,-0.9428,-1,-1,-0.9428,-0.9428,-0.8858,-0.7142,-0.5428,-0.8286,-0.8858,-0.8286,-0.8286,-0.8,-0.8572,-0.7428,-1,0.0124,0.0088,-0.0108,-0.0238,-0.0232,-0.0286,-0.0268,4e-04,0.0544,0.1034,0.995,0.9888,0.96,0.9386,0.9334,0.935,0.923,0.8944,0.8844,0.702,-0.5466,0.7648,0.2794,0.5354,1,0.7004,0.3536,-0.3584,-0.1034,0.1724,0.138,0.069,0.069,-0.0344,0.069,0.1724,-0.1034,0.2068,0.6896,0.7586,0.7586,0.7586,0.7242,0.8276,1,1,0.7242,0.7242,0.8276,0.7586,0.3448,-0.0344,0.069,0.0344,0.2068,0.069,0,-0.1034,-0.5518,-0.5862,-0.1826,0.1826,0.0434,0.0086,-0.2,-0.1652,-0.1652,0.0434,0.113,-0.1652,0.687,0.7044,0.513,0.6,0.513,0.6348,1,0.8608,0.5652,0.6174,0.6696,0.6696,0.2,-0.1652,-0.113,-0.0956,-0.1652,-0.026,-0.1304,-0.1304,-0.4434,-0.4608,-0.2884,0.0576,-0.0576,-0.3846,-0.327,-0.4038,-0.3462,-0.2116,-0.25,-0.0384,0.5962,0.75,0.577,0.7308,0.5384,0.6924,1,0.9616,0.673,0.673,0.827,0.6346,0.0384,-0.5384,-0.3654,-0.173,-0.1924,-0.0384,-0.2308,-0.1154,-0.327,-0.673,1,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.3676,-0.5214,-0.0428,0.0256,-0.3334,-0.094,0.1112,0.094,0.3334,0.3676,0.1624,0.5726,0.4358,0.2992,0.5898,0.7948,0.8974,0.9146,1,0.094,-0.094,0.1452,0.0256,-0.0256,0.0086,-0.1966,0.094,0.0598,0.1452,-0.4018,-0.265,-0.453,'5'
-0.9472,-0.3782,-0.3608,-0.1026,0.2434,0.5602,0.4604,0.4076,0.2258,0.349,0.1496,0.2728,0.302,0.4018,0.3314,0.39,0.7712,0.824,0.7302,0.8006,0.9238,0.83,1,0.9414,0.6246,0.4546,0.044,-0.0382,0.0498,-0.0322,0.0206,0.044,-0.9188,-0.2,-0.229,0.1304,0.3334,0.9362,0.855,0.8666,0.7566,0.6348,0.5362,0.6522,0.5362,0.774,0.6638,0.855,0.7624,0.9942,0.826,0.8608,0.7508,1,0.8608,0.7044,0.571,0.1884,0.055,-0.026,-0.1188,-0.142,-0.1246,0.374,-0.9212,-0.1944,-0.1606,0.0198,0.0704,0.9718,1,0.8366,0.9098,0.5774,0.6788,0.6282,0.7746,0.7916,0.9662,0.7014,0.7578,0.4536,0.6056,0.4704,0.7578,0.6564,0.9212,0.7464,0.3464,0.2282,-0.2112,-0.1606,-0.2676,-0.262,-0.0816,0.076,-0.9432,-0.3556,-0.3298,-0.1958,-0.165,0.6288,0.701,0.7628,0.8454,0.4896,0.603,0.5206,0.6804,0.8042,1,0.7164,0.2938,0.0824,0.3144,0.2114,0.5258,0.469,0.5516,0.5,-0.0722,-0.0824,-0.4124,-0.335,-0.5618,-0.2268,0.2938,0.397,-0.962,-0.3604,-0.4364,-0.1436,0.2304,0.626,0.8212,1,0.9458,0.6748,0.5772,0.7128,0.7398,0.8266,0.8102,0.4796,0.0732,0.046,0.057,0.3008,0.4472,0.626,0.6476,0.355,0.1166,-0.1056,-0.4038,-0.5068,-0.1654,0.3496,0.5664,0.4906,-0.9766,-0.6734,-0.1896,-0.207,0.2594,0.5976,0.86,0.9068,0.9184,0.6384,0.7376,0.8776,1,0.8892,0.516,0.1836,-0.032,-0.0204,0.172,0.4344,0.6326,0.6326,0.3352,0.0146,-0.1778,-0.3878,-0.2244,0.0262,0.2244,0.4636,0.6034,0.796,-0.9004,-0.5232,-0.1246,-0.3024,0.395,0.9004,0.9218,0.8648,0.6512,0.58,0.758,0.9572,1,0.694,0.4164,-0.0534,-0.3168,-0.2242,-0.1672,0.3736,0.4662,0.2384,-0.3808,-0.452,-0.388,-0.5374,0.1174,0.5374,0.5658,0.6654,0.758,0.8648,-0.9488,-0.282,-0.1794,-0.5384,-0.282,0.077,0.282,0.0256,-0.1282,0.0256,-0.1282,0.077,-0.077,0.1282,-0.2308,0.077,0.3846,0.4358,0.3846,0.5384,0.5898,0.5898,1,0.8462,0.5898,0.5384,0.1282,0.1794,0.2308,-0.3334,-0.077,-0.077,-0.8378,-0.2972,-0.3514,0.1892,0.3514,0.7298,0.5136,0.4594,0.2432,0.4054,0.027,0.3514,0.2432,0.5676,0.2432,0.4594,0.5676,0.8378,0.8918,1,0.8918,0.8378,1,0.8918,0.7298,0.6216,0.027,0.1352,0.2432,-0.027,0.081,-0.2972,-0.7142,-0.055,-0.055,0.055,0.3186,1,1,0.8462,0.8902,0.6044,0.6924,0.6924,0.7802,0.7362,0.8682,0.8022,0.934,0.6704,0.6704,0.5604,0.7362,0.7582,1,0.8242,0.5164,0.4066,-0.1428,-0.1648,-0.077,-0.1428,0.011,0.1428,-1,-1,-1,-1,-1,-1,-1,-1,-0.799,-0.7894,-0.7224,0.3684,0.866,0.5694,0.9044,0.665,0.3206,0.3492,0.3684,0.2918,0.0048,-0.2344,-0.598,-0.6364,-0.7224,-0.7704,-0.7894,-0.7894,-0.799,-0.732,-0.8182,-0.7608,-0.8086,-1,-1,-1,-1,-1,-1,-1,-1,-0.9152,-0.9102,-0.47,0.5964,0.711,0.6446,0.814,0.8472,0.7906,0.7076,0.618,0.628,-0.0132,-0.4436,-0.779,-0.877,-0.902,-0.902,-0.8954,-0.9136,-0.8936,-0.877,-0.9036,-0.892,-0.9102,-1,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.9134,-0.53,-0.1568,-0.53,-0.3368,-0.4868,-0.4768,-0.46,-0.5768,-0.46,-0.35,-0.36,-0.37,-0.74,-0.74,-0.8068,-0.8668,-0.52,-0.6134,-0.72,-0.58,-0.7934,-0.7468,-0.7534,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,-0.3142,-0.9142,-0.7428,-0.7714,-0.7428,-0.8572,-0.8858,-0.0572,0.2,1,1,-0.6572,-0.6286,-0.8,-0.9428,-0.9714,-0.9714,-0.9428,-0.9714,-0.9428,-0.9428,1,1,1,1,1,1,1,1,1,1,0.0468,-0.024,-0.0598,-0.126,-0.2368,-0.3262,-0.3802,-0.4838,-0.6612,-0.8334,-0.56,-0.3412,-0.5266,0.1744,0.726,0.7642,0.6694,0.5916,-0.6296,-0.358,-0.358,-0.284,-0.2592,-0.0124,0.037,0.2098,0.5556,0.679,0.8272,0.9012,0.7284,0.3828,0.3334,0.2346,0.6544,0.9754,1,0.9012,0.8272,0.8766,0.7778,0.6296,0.3828,0.0864,-0.2346,-0.3828,-0.284,-0.3334,-0.2592,-0.6296,-0.2406,0.038,0.1646,-0.038,0.0126,0.0886,0.2152,0.443,0.443,0.6202,0.595,1,0.3924,0.443,-0.1646,-0.0126,0.3418,0.6708,0.5696,0.4936,0.6708,0.8734,0.595,0.4178,0.367,0.2912,0.0886,0.038,0.2152,0.1646,-0.0632,-0.3418,-0.6266,-0.4134,-0.1466,0.0666,0.12,0.0934,0.2,0.1466,0.6534,0.8666,0.84,0.9466,0.9734,0.6534,0.4934,0.2534,0.5466,0.92,1,0.8666,0.84,0.84,0.8934,0.7866,0.5734,0.36,0.0934,-0.12,-0.3334,-0.28,-0.0666,-0.44,0.5482,-1,-1,1,-1,-1,-1,-0.8,-1,-0.2156,-0.0196,-0.2942,-0.0392,0.0392,0.1176,0.2746,0.4706,0.4118,0.0784,0.098,0.1372,0.353,0.2746,0.3138,0.6078,0.745,0.647,0.4706,0.6274,0.6666,0.6862,0.804,0.6274,0.902,0.7844,0.647,0.5098,1,0.7844,0.3138,-0.5294,'6'
-0.9732,-0.208,-0.2484,0.1208,0.4094,0.7584,0.5168,0.6442,0.3422,0.396,0.2148,0.3624,0.3288,0.463,0.1476,0.3422,0.9262,0.9598,0.8994,0.9932,0.9664,1,0.9732,0.9464,0.7316,0.6778,0.4698,0.349,0.396,0.3892,0.4564,0.396,-0.9736,-0.2106,-0.2264,0.079,0.2052,0.7,0.5736,0.7052,0.5368,0.3736,0.2106,0.2316,0.0422,0.2,0.3368,0.5842,0.8,1,0.6842,0.6632,0.5894,0.7684,0.7632,0.9158,0.5894,0.5578,0.121,0.121,-0.0158,0.0526,0.0474,0.179,-0.7556,0.0056,-0.034,0.0738,0.1194,0.6876,0.5738,1,0.8466,0.483,0.3068,0.3012,0.108,0.5056,0.6478,0.9488,0.7046,0.4318,0.2898,0.267,0.5796,0.8238,0.6306,0.858,0.5114,0.392,0,-0.3068,-0.0568,0.0796,0.1534,0.3296,-0.7772,-0.0628,-0.1372,0.0228,0.3428,0.6228,0.7942,1,0.52,0.0172,0.2972,0.3486,0.4628,0.4514,0.9486,0.8514,0.0858,-0.0514,-0.3258,-0.2572,0.2286,0.2572,0.3086,0.24,-0.0286,-0.04,-0.1428,-0.1142,-0.0742,-0.1428,-0.1142,-0.3486,-0.7022,-0.0882,-0.2522,-0.1976,0.301,0.4042,1,0.8784,0.5076,0.307,0.4104,0.6534,0.6778,0.9696,0.7386,0.0092,-0.2888,-0.6838,-0.2402,-0.3314,-0.0882,-0.1306,0.1306,0.1914,-0.1428,-0.1306,-0.1914,-0.5136,-0.3738,-0.3252,-0.617,-0.5866,-0.4742,0.2192,0.012,-0.0358,0.6096,0.6812,1,0.7132,0.753,0.3706,0.3864,0.506,0.5936,0.522,0.2828,0.0278,-0.3864,-0.5776,-0.4104,-0.498,0.3068,0.7928,0.6892,-0.02,-0.1156,-0.1554,-0.737,-0.5618,-0.1634,-0.1076,-0.4422,-0.4024,-0.875,-0.591,-0.9886,-0.716,-0.375,-0.1136,0.159,0,-0.1136,-0.159,0.2046,0.3522,0.125,0.25,0.3296,0.2046,-0.341,-0.5114,-0.659,-0.625,0.0568,0.534,0.216,0,-0.159,-0.3068,-0.6818,0.0454,0.7386,1,0.5796,0.3068,-0.7714,-0.2,-0.1428,-0.0286,0.2572,0.6,0.6572,0.4286,0.2572,0.0858,0.3142,0.2572,0.2572,0.3142,0.2,0.3142,0.5428,0.8286,0.6,0.9428,0.8286,1,1,0.5428,0.5428,0.0858,0.3714,0.2,0.3142,0.3142,0.1428,0.2572,-0.7298,-0.3514,-0.4594,0.081,0.1892,0.6216,0.4594,0.4594,0.1892,0.2432,-0.027,0.2972,0.081,0.2972,-0.027,0.1892,0.5676,0.7298,0.6756,0.7298,0.946,1,0.4054,0.2432,0.6216,0.7298,-0.027,0.027,0.3514,0.3514,0.4054,0.2972,-0.8904,-0.0684,-0.0958,0.0136,0.3424,0.6438,0.7534,1,0.726,0.0684,0.178,0.2876,0.3424,0.3972,0.9452,0.9452,0.2876,0.0684,-0.0684,0.1232,0.2602,0.2876,0.452,0.3424,0.0136,-0.041,-0.041,-0.2328,-0.0958,-0.1506,-0.0958,-0.5068,-1,-1,-1,-1,-1,-1,-1,-1,-0.7688,-0.792,-0.6648,0.5838,0.7804,0.8728,0.8728,0.9306,0.9076,0.4682,0.711,0.63,0.1098,-0.6416,-0.7804,-0.815,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9032,-0.8984,-0.4286,0.69,0.9612,0.8524,0.7724,0.6416,0.494,0.2154,0.2324,-0.121,-0.4746,-0.816,-0.8716,-0.8548,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.96,-0.5968,-0.2768,-0.1168,-0.2868,-0.51,-0.56,-0.66,-0.5134,-0.6134,-0.5316,-0.6544,-0.8316,-0.9734,-0.8934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,0.8286,1,1,-0.4286,-0.8572,-0.8,-0.5142,-0.2858,-0.4,-0.6286,-0.0858,-0.0572,0,-0.7428,-0.4572,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.1162,0.107,0.1282,0.098,0.0896,0.0628,0.0332,-0.0532,-0.2596,-0.4976,-0.7066,-0.3058,-0.3438,0.2446,0.787,0.8644,1,0.3584,-0.5264,-0.4736,-0.421,-0.1052,0.2632,0.0526,-0.1052,0.421,0.6316,0.8948,0.8422,1,0.8422,0.579,0.5264,0.579,0.4736,0.1052,0.6842,0.8422,0.7894,0.6316,0.2632,0.2106,-0.1052,-0.0526,0.2106,0.2106,0.1578,0.3158,0.3158,-0.7368,-0.2706,-0.3176,-0.1058,0.1294,0.2942,0.153,-0.0824,0.3176,0.6942,1,0.8824,0.9294,0.8118,0.553,0.2236,0.5764,0.3412,0.153,0.7176,0.8118,0.7176,0.4352,0.3176,0.2706,-0.0352,0.0118,0.3412,0.3882,0.3176,0.647,0.5764,0.0824,-0.475,-0.15,0.15,0.375,0.375,0.275,0.375,0.25,0.625,0.925,0.875,1,0.9,0.6,0.55,0.6,0.45,0.2,0.475,0.925,0.975,0.625,0.35,-0.025,-0.175,-0.05,0.45,0.425,0.45,0.45,0.3,0,1,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.1868,-0.1868,0.2528,0.1208,0.2748,0.3626,0.6044,0.2308,0.1868,0.1428,0.3626,0.6924,0.4726,0.3626,0.6264,0.4506,0.8682,0.6704,0.6044,0.5384,0.7362,0.8022,0.8022,0.6924,0.6264,0.956,0.4726,1,0.8242,0.3186,0.2308,0.1428,'6'
-0.8294,-0.2682,-0.1688,0.1012,-0.1368,-0.627,-0.5134,-0.46,-0.3784,-0.4068,-0.357,-0.4706,-0.3144,-0.4494,-0.2682,-0.35,-0.2788,0.0764,0.3534,1,0.9538,0.7016,0.5596,0.7726,0.5986,0.7798,0.4672,0.5382,0.524,0.5098,0.6554,0.563,-0.852,-0.2994,-0.0986,0.1184,-0.1908,-0.5394,-0.523,-0.4968,-0.3652,-0.4606,-0.5066,-0.5296,-0.3552,-0.227,-0.1874,-0.319,-0.3422,-0.0428,0.3618,0.6348,0.9078,1,0.8718,0.8652,0.9704,0.8454,0.5164,0.3816,0.4376,0.5822,0.6316,0.6842,-0.9222,-0.6466,0.248,0.342,-0.2902,-0.5106,-0.5202,-0.5202,-0.5106,-0.517,-0.543,-0.4522,-0.4262,-0.3906,-0.436,-0.423,-0.2512,-0.2382,0.0372,0.5106,0.7796,1,1,0.8768,0.9902,0.932,0.598,0.4878,0.449,0.53,0.6986,0.7602,-0.8808,-0.4562,0.214,0.1508,-0.5264,-0.5578,-0.6632,-0.5894,-0.7298,-0.6,-0.5754,-0.5158,-0.5052,-0.4456,-0.4176,-0.4246,-0.4632,-0.4492,-0.0562,0.3192,0.7158,1,0.965,0.8736,0.8772,0.8702,0.3614,0.221,0.2036,0.4912,0.5754,0.7578,-0.8848,-0.1382,0.2304,0.083,-0.6498,-0.6176,-0.7236,-0.7282,-0.7188,-0.6728,-0.6958,-0.4976,-0.5622,-0.6682,-0.4792,-0.4838,-0.3456,-0.295,-0.2212,0.189,0.705,1,0.954,0.8756,0.8618,0.8342,0.387,0.1244,0.0876,0.152,0.2396,0.4286,-0.8568,-0.2348,0.2304,0.226,-0.4988,-0.5124,-0.3512,-0.2706,-0.7226,-0.7898,-0.669,-0.4854,-0.5302,-0.4586,-0.4004,-0.4586,-0.3378,-0.4272,-0.1812,0.4944,0.7404,1,0.9822,0.8926,0.8748,0.6554,0.2528,0.1812,0.1096,0.2976,0.4408,0.4854,-0.8062,-0.3024,0.628,0.5892,-0.5348,-0.1396,-0.2714,-0.4186,-0.6976,-0.4962,-0.4884,0,-0.0542,-0.4032,-0.1472,-0.155,-0.3954,-0.5658,-0.31,0.1396,0.9612,0.8992,0.9534,1,0.7132,0.5426,-0.2558,-0.2094,-0.1162,0.1318,0.2404,-0.0852,-0.5348,-0.0698,0.0698,0.3024,0.1628,-0.4418,-0.1628,-0.1162,-0.2094,-0.2558,-0.0232,-0.2558,-0.0698,-0.3488,-0.1162,-0.1628,-0.0232,0.2558,0.4884,1,0.9534,0.7674,0.7674,0.7674,0.8604,1,0.5348,0.6744,0.6744,0.628,0.4418,0.3954,-0.2,0.1,0.2334,0.3334,0.2,-0.2334,-0.0666,-0.0334,0.0334,-0.0334,0.0334,-0.1334,0.0666,0.0334,0.1,0.1,0.1,0.3666,0.4666,1,0.9666,0.6666,0.5666,0.7666,0.6666,0.8,0.5334,0.6334,0.6334,0.6334,0.7334,0.7,-0.6666,-0.2052,0.3076,0.2308,-0.1282,-0.2052,-0.1538,-0.1794,-0.5128,-0.8206,-0.718,-0.5128,-0.3076,-0.359,-0.359,-0.3334,-0.359,-0.359,-0.1282,0.282,0.8206,1,0.7692,0.7692,0.923,0.8974,0.359,0.077,0.2564,0.282,0.4872,0.7948,-1,-1,-0.8266,-0.7858,-0.796,-0.847,-0.8266,-0.7448,-0.7552,-0.6836,0.1836,0.5,0.602,0.4286,0.5816,0.6224,0.398,0.0306,-0.0102,0.0918,-0.1326,-0.3776,-0.7552,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9198,-0.9042,-0.7526,-0.2196,1,1,1,0.0278,-0.1104,0.204,0.5206,0.786,0.8574,0.6276,0.0904,-0.0078,-0.3178,-0.2664,-0.534,-0.777,-0.884,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9558,-0.9334,-0.9,-0.14,0.6932,0.6332,0.7132,0.5732,0.08,-0.0046,0.0222,0.0488,0.0222,-0.0624,-0.3178,-0.484,-0.428,-0.442,-0.604,-0.78,-0.9,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5714,-0.4572,1,1,1,-0.2572,-0.0572,1,1,-0.6,-0.9714,-0.9428,-1,-0.8,-0.7142,-0.6,-0.8572,-0.7714,-0.5714,-0.7142,-0.7714,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.4004,0.3812,0.3892,0.3668,0.3568,0.3542,0.4026,0.4374,0.432,0.3814,0.8722,0.8626,0.8786,0.8854,0.9062,0.8838,0.9028,0.914,0.9416,0.7816,-0.5734,0.1058,-0.1304,-0.0724,0.0926,0.3958,0.4492,1,-0.5978,-0.7708,-0.4392,-0.3968,-0.4462,-0.4286,-0.3898,-0.2098,-0.1358,-0.1076,0.2064,0.3334,0.5556,0.8554,1,0.7918,0.753,0.6966,0.7178,0.7566,0.7566,0.7814,0.6684,0.5626,0.538,0.4392,0.411,0.3262,0.1958,0.097,0.044,-0.2734,-0.7466,-0.76,-0.6614,-0.608,-0.5894,-0.544,-0.336,-0.36,-0.1386,0.0746,0.1706,0.464,0.4986,0.6534,0.976,1,0.712,0.7014,0.6186,0.7226,0.7466,0.7814,0.7706,0.672,0.616,0.5066,0.5174,0.5094,0.3894,0.2346,0.2294,0.0346,-0.4338,-0.1024,-0.0316,-0.1694,-0.2178,-0.2738,-0.0354,0.0316,0.1582,0.5084,0.7244,0.8808,0.9554,0.7468,0.8696,1,0.7504,0.7878,0.9144,0.9068,0.866,0.6276,0.5494,0.6238,0.6052,0.6202,0.6908,0.553,0.527,0.4116,0.229,-0.0502,1,-1,-1,1,-0.6,-1,-1,0.2666,-1,-0.2334,-0.2334,0.4,0.2666,0.1334,0.0334,0.1334,0.3666,0.3666,0.3666,0.8,1,0.8666,0.8666,0.4334,0.7666,0.1666,0.1,0.6,0.4,0.4334,0.3,0.1334,0.2666,-0.1,0.2666,0.1666,0.2,-0.0334,0.2,-0.0334,-0.5666,'7'
-0.7976,0.0328,-0.003,-0.0714,-0.2024,-0.494,-0.5268,-0.4524,-0.613,-0.4136,-0.5684,-0.259,-0.3096,-0.4048,-0.4584,-0.2798,-0.3154,0.0834,0.4494,0.6756,0.5506,0.5982,0.7262,0.9316,0.8602,0.8602,0.7024,0.6012,0.6102,0.8512,0.872,1,-0.8362,0.0286,0.0342,-0.187,-0.2032,-0.4734,-0.4762,-0.5908,-0.599,-0.6616,-0.6426,-0.4024,-0.3396,-0.6152,-0.4516,-0.6262,-0.547,-0.2906,-0.1514,0.3916,0.5662,0.6754,0.8554,0.768,1,0.7462,0.7762,0.4788,0.4024,0.3834,0.4542,0.4762,-0.9216,-0.0822,-0.072,-0.2414,-0.2668,-0.5878,-0.6056,-0.5576,-0.5398,-0.7902,-0.7674,-0.6536,-0.5954,-0.5424,-0.5146,-0.6764,-0.5802,-0.325,-0.1758,0.2542,0.651,0.6992,0.8686,0.7446,1,0.9696,0.5904,0.4614,0.6232,0.598,0.469,0.474,-0.9444,-0.4484,-0.2074,-0.059,-0.4832,-0.6176,-0.7034,-0.6894,-0.7242,-0.7612,-0.7034,-0.6686,-0.548,-0.5366,-0.5156,-0.5644,-0.613,-0.5156,-0.205,0.1078,0.5874,0.7706,1,0.9398,0.9304,0.9004,0.7636,0.6292,0.5644,0.5666,0.664,0.8772,-0.9066,-0.4134,0.2426,0.192,-0.7174,-0.816,-0.68,-0.616,-0.6506,-0.6986,-0.8,-0.5654,-0.6186,-0.6,-0.5014,-0.5014,-0.528,-0.472,-0.336,-0.056,0.464,0.84,1,0.8534,0.7414,0.9226,0.664,0.472,0.2934,0.3414,0.2666,0.5546,-0.8506,-0.4862,0.309,0.243,-0.4792,-0.4652,-0.5278,-0.4444,-0.5382,-0.6458,-0.566,-0.4688,-0.5348,-0.3646,-0.3264,-0.6562,-0.493,-0.4514,-0.5798,-0.1354,0.4098,0.8888,1,0.9098,0.7188,0.743,0.2744,0.0278,-0.0834,-0.0694,-0.0174,0.1876,-0.893,-0.3322,0.1846,0.2362,-0.5314,-0.583,-0.5092,-0.3654,-0.7084,-0.7048,-0.631,-0.6826,-0.6014,-0.4354,-0.2768,-0.4686,-0.3394,-0.2694,-0.0848,0.5608,1,0.9742,0.9668,0.952,0.6532,0.4686,0.0442,-0.1328,-0.118,-0.1476,-0.0628,0.1698,-0.6522,-0.2174,-0.2174,-0.5218,-0.6086,-0.5652,-0.5652,-0.4782,-0.6956,-0.6086,-0.8696,-0.5218,-0.5218,-0.3044,-0.3478,-0.174,-0.2174,0.0434,0.2608,0.2608,-0.174,-0.1304,0.174,0.5218,0.5218,0.174,0.3044,0.3478,0.4348,0.7392,0.6086,1,-0.3044,0.174,0.1304,-0.087,-0.174,-0.6956,-0.2174,-0.2608,-0.3914,-0.3044,-0.3478,-0.3044,-0.3044,-0.2174,-0.174,-0.2174,-0.087,0.5218,0.7392,0.5652,0.7392,0.6522,0.6086,0.7826,1,0.7392,0.5652,0.2608,0.3914,0.6956,0.7392,1,-0.7318,-0.317,0.2926,0.2682,-0.6342,-0.5122,-0.3902,-0.439,-0.561,-0.6098,-0.6342,-0.6098,-0.4146,-0.5122,-0.561,-0.244,-0.244,-0.2682,-0.244,-0.0488,0.439,0.8292,0.9756,0.8536,0.9268,1,0.6342,0.561,0.2926,0.4878,0.3902,0.5366,-1,-1,-1,-0.7298,-0.7702,-0.7972,-0.7568,-0.7702,-0.6892,-0.7432,-0.581,0.3648,0.7028,0.8244,0.5946,0.5,0.5676,0.6892,0.2838,-0.027,0.0676,0.0676,-0.5676,-0.6486,-0.6486,-0.7028,-0.7702,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9164,-0.9124,-0.5886,-0.668,1,1,0.9838,0.5478,-0.1996,-0.0142,-0.0978,-0.106,0.2464,0.8432,0.2098,-0.5458,-0.7108,-0.4908,-0.5948,-0.8594,-0.8594,-0.8066,-0.831,-0.8716,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.9468,-0.7668,0.11,0.6366,0.7832,0.6432,0.66,0.2292,0.2968,0.0706,-0.0078,0.1138,-0.1124,-0.26,-0.514,-0.6616,-0.64,-0.6358,-0.75,-0.6968,-0.52,-0.66,-0.84,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,0.2858,1,1,1,-0.3428,-0.5142,0.5142,0.4858,-0.7428,-0.6858,-0.8,-0.8858,-0.9428,-0.2286,0.4572,-0.9714,0.1428,0,-0.8,-0.7428,-0.8572,-0.8286,-0.4,-1,-1,-1,-1,-1,-1,0.2312,0.2794,0.2794,0.2778,0.271,0.2592,0.2374,0.1836,0.2268,0.2824,0.889,0.926,0.925,0.9114,0.8866,0.8846,0.931,0.9142,0.9676,0.862,-0.72,0.5882,0.3218,0.055,-0.273,-0.3544,-0.169,0.5,-0.385,-0.51,-0.225,-0.24,-0.185,0,0.165,-0.09,0.125,0.145,0.335,0.46,0.52,0.76,0.915,0.96,1,0.92,0.89,0.825,0.715,0.795,0.795,0.685,0.525,0.46,0.395,0.21,0.395,0.46,0.305,-0.07,-0.6944,-0.6566,-0.5244,-0.4992,-0.5716,-0.559,-0.3732,-0.3386,-0.1308,0.0236,0.2284,0.5654,0.4834,0.8078,0.9434,0.9212,0.8204,0.8394,0.9338,0.9024,1,0.8488,0.833,0.874,0.6346,0.493,0.5056,0.4582,0.4394,0.5434,0.3952,0.263,-0.7714,-0.7278,-0.61,-0.4824,-0.59,-0.3848,-0.3344,-0.1194,-0.1462,0.0924,0.2504,0.6034,0.711,0.4016,0.7882,1,0.8824,0.7512,0.8858,0.758,0.768,0.7512,0.6974,0.684,0.563,0.4756,0.4554,0.3412,0.2404,0.2436,0.2068,-0.0152,0.2098,-1,-1,1,-1,-1,-1,0.1666,-1,-0.2028,-0.0434,0.1304,0.1304,-0.087,0.0434,0.2028,0.2754,0.4202,0.2318,0.1304,0.5072,0.4348,0.2318,1,0.942,0.7536,0.913,0.7682,0.5508,0.087,-0.029,0.058,0.087,0.116,-0.2318,-0.2318,-0.2174,-0.0724,-0.087,-0.1304,-0.4348,'7'
-0.9214,-0.4888,-0.1686,0.2192,0.2078,-0.0168,-0.2416,-0.1798,-0.1292,-0.1516,-0.146,-0.2472,-0.1012,-0.0562,0.0898,-0.0618,0.1686,0.354,0.736,1,0.9832,0.8708,0.9438,0.854,0.663,0.2416,0.236,0.2134,-0.0562,0.191,0.0842,-0.0224,-0.9272,-0.369,-0.0826,0.267,0.0776,-0.2282,-0.267,-0.1408,-0.1942,-0.102,-0.165,-0.1456,-0.0922,-0.1262,0.0146,-0.097,0.0098,0.2816,0.5048,0.8156,1,0.6602,0.7718,0.6456,0.7038,0.2622,0.2476,0.1554,0.1214,0.0728,-0.0534,-0.2282,-0.9488,-0.2332,0.2844,0.655,0.3866,-0.3226,-0.2652,-0.1118,-0.2652,-0.278,-0.3802,-0.3802,-0.1694,-0.3482,-0.1694,-0.3354,-0.246,0.1566,0.3546,0.7956,0.9488,0.8466,0.9552,1,0.968,0.4186,0.1374,0.2716,0.0416,0.1566,-0.048,-0.3354,-0.9586,-0.3254,0.4556,0.6628,0.1124,-0.6804,-0.4792,-0.4674,-0.361,-0.4674,-0.4556,-0.3196,-0.3196,-0.2604,-0.2958,-0.3076,-0.3314,-0.1598,0.0296,0.432,0.8402,1,0.9704,0.9586,0.8876,0.5622,0.213,0.0592,0.148,-0.0532,0.0356,-0.2782,-0.8708,-0.5072,0.3206,0.354,-0.3492,-0.5072,-0.5742,-0.4736,-0.5886,-0.5646,-0.598,-0.6028,-0.3732,-0.402,-0.3924,-0.4066,-0.4784,-0.311,0.0574,0.4498,0.8134,0.8182,1,0.8852,0.689,0.335,0.043,0.0814,0.0382,0.0478,0.0288,-0.1436,-0.8684,-0.3684,-0.0632,-0.1106,-0.5,-0.4106,-0.621,-0.9632,-0.5842,-0.6474,-0.6526,-0.4422,-0.5526,-0.4526,-0.4052,-0.521,-0.3474,-0.2052,-0.0158,0.7052,1,0.9316,0.9158,0.7264,0.4632,0.1264,0.0842,-0.0368,-0.1578,-0.0632,-0.121,-0.1948,-0.68,-0.15,0.21,0.35,-0.2,0.08,0.09,0,-0.46,-0.63,-0.19,-0.21,-0.14,-0.08,0.11,-0.18,-0.17,0.23,0.23,0.78,0.96,1,0.96,0.59,0.59,0.22,-0.23,-0.06,-0.32,-0.13,-0.3,0.24,-0.7242,-0.1724,-0.3104,0.3104,0.7242,0.5862,0.3104,0.1034,0.0344,-0.1724,-0.2414,-0.6552,0.1034,0.2414,-0.1034,0.2414,-0.1724,0.4482,0.5172,1,0.862,0.931,1,0.7932,0.6552,0.4482,0.3104,0.3104,-0.6552,0.1034,-0.1034,0.1034,-0.7242,-0.0344,0.4482,0.7242,0.862,0.4482,0.3104,0.0344,0.0344,0.1034,0.1724,-0.2414,-0.1034,-0.3794,0.1034,-0.2414,0.0344,0.1724,0.931,1,0.5172,0.6552,0.3794,0.6552,0.5862,0.1724,-0.1724,-0.2414,0.0344,0.5172,0.1034,0.1724,-0.8612,-0.4166,0.2222,0.2222,-0.5834,-0.4444,-0.4444,-0.6666,-0.6388,-0.75,-0.6112,-0.8612,-0.4166,-0.4166,-0.1944,-0.3334,-0.4166,-0.25,0.0834,0.5834,0.8334,1,0.9444,0.9444,0.5556,0.25,0.2222,0.1944,0.1388,-0.0278,-0.1112,0.0556,-1,-1,-1,-1,-1,-1,-1,-1,-0.82,-0.75,-0.33,0.21,0.16,0.37,0.66,0.59,0.47,0.83,0.18,-0.05,-0.46,-0.56,-0.76,-0.75,-0.75,-0.77,-0.85,-0.82,-0.86,-0.8,-0.81,-0.8,-0.79,-1,-1,-1,-1,-1,-1,-1,-1,-0.8922,-0.858,-0.2386,0.8212,0.486,0.1506,-0.0134,-0.2068,-0.2876,-0.0796,-0.1774,-0.055,-0.4932,-0.8066,-0.8824,-0.88,-0.8752,-0.8776,-0.907,-0.8948,-0.9046,-0.8922,-0.8922,-0.885,-0.885,-1,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.9468,-0.6634,-0.3434,-0.1534,-0.13,-0.4572,-0.5172,-0.44,-0.4744,-0.3716,-0.3344,-0.4058,-0.8086,-0.8868,-0.94,-0.9,-0.9068,-0.96,-0.92,-1,-0.9734,-0.9668,-0.9534,-0.92,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,0.8858,1,1,-0.6,-0.9714,-0.8286,-0.8858,-1,-0.9142,-0.8,-0.5428,1,0.0858,-0.7428,-0.9428,-1,-0.9142,-0.9714,-1,-1,-1,-0.9428,-0.8286,-0.4,1,1,1,1,1,1,1,1,0.7852,0.6528,0.4042,0.4206,0.4394,0.4378,0.486,0.4716,0.4624,0.4742,0.565,0.4852,-0.6666,-0.247,-0.1334,0.4296,1,0.7894,0.3904,-0.2334,0.05,0.2,0.3166,0.1834,0.8,0.5666,0.9834,0.6834,0.7834,0.2166,0.7166,0.6666,0.6834,0.7666,0.4166,0.7166,0.7166,0.35,0.5,0.05,0,0.5834,0.3834,0.3334,0.2834,0.2334,0.35,0.3834,0.15,0.15,0.15,-0.6334,0.3184,0.3632,1,0.9776,0.7318,0.6536,0.933,0.7206,0.6312,0.6984,0.877,0.8212,0.7878,0.5308,0.7094,0.6984,0.7094,0.4078,0.4636,0.5754,0.5084,0.352,0.3296,0.4414,0.5196,0.5308,0.3966,0.285,0.4078,0.3072,0.0726,-0.3184,-0.2698,0.4366,0.238,0.3334,0.3096,0.1112,0.365,0.3016,0.5794,0.9206,1,0.873,0.8968,0.4206,0.2778,0.1032,0.3572,0.738,0.762,0.6428,0.619,0.0396,0.0556,0.2064,0.262,0.3174,0.1588,-0.246,-0.127,-0.1666,-0.1508,-0.3572,-0.9706,1,-1,-1,-1,-1,-1,-1,1,0,0.4286,0.8572,0.6786,0.5358,0.5,1,0.7142,0.5714,0.75,0.7142,0.75,0.8572,0.8214,0.8214,0.7858,0.9286,0.3928,0.3928,0.6072,0.6428,0.3928,0.75,0.6428,0.8214,0.2142,0.4286,0.2142,0.6786,0.3572,-0.0714,-0.4286,'8'
-0.9948,-0.3334,-0.2512,-0.0924,-0.0206,-0.1334,-0.2154,-0.1642,-0.2512,-0.3744,-0.3488,-0.2358,-0.241,-0.241,-0.3128,-0.3128,-0.1436,0.2924,0.641,0.7538,0.718,0.7744,0.9436,1,0.7744,0.7128,0.4308,0.3642,0.2358,0.4718,0.441,0.4512,-0.9448,-0.212,-0.2074,0.1382,0.1198,-0.0092,-0.0276,-0.0506,-0.0368,-0.1982,-0.1566,-0.1106,-0.0646,-0.189,-0.1336,-0.2672,-0.1658,0.3964,0.6036,0.7926,1,0.848,0.9448,0.8894,0.8618,0.6912,0.4424,0.3732,0.4746,0.4194,0.4608,0.4562,-0.9608,-0.087,-0.026,0.0914,0.1652,-0.3434,-0.1914,-0.4478,-0.2174,-0.4304,-0.1956,-0.326,-0.1086,-0.1914,-0.2086,-0.1956,-0.087,0.0174,0.5608,0.7044,0.7914,1,0.8,0.9218,0.774,0.3914,0.3174,0.0956,0.1218,0.313,0.4086,0.2956,-0.9904,0.0508,0.1138,-0.259,-0.201,-0.2882,-0.1476,-0.5594,-0.4092,-0.69,-0.351,-0.5594,-0.172,-0.3076,-0.3268,-0.3898,-0.3318,-0.2154,0.3754,0.4674,0.7578,1,0.7336,0.7966,0.6416,0.3608,0.138,-0.0992,-0.1138,0.0412,0.0848,0.1428,-0.78,-0.0574,-0.1052,-0.0956,-0.201,-0.4832,-0.4736,-0.5934,-0.5312,-0.5264,-0.6268,-0.4498,-0.4354,-0.445,-0.4114,-0.4498,-0.579,-0.2154,0.11,0.3492,0.6412,0.9474,1,0.9378,0.8278,0.5454,0.2918,0.1196,0.1818,0.2154,0.2536,0.4258,-0.8414,-0.4266,0.063,0.0862,-0.4638,-0.613,-0.5524,-0.5618,-0.5338,-0.7156,-0.711,-0.725,-0.6504,-0.5618,-0.4172,-0.4872,-0.571,-0.4638,-0.1422,0.2354,0.7622,0.8974,1,0.9534,0.8508,0.5944,0.2774,0.0442,0.268,0.3054,0.3752,0.669,-0.899,-0.2996,0.1336,-0.0902,-0.704,-0.704,-0.4152,-0.8268,-0.74,-0.8556,-0.6174,-0.538,-0.6318,-0.5162,-0.2708,-0.3936,-0.444,-0.278,-0.0324,0.148,0.6896,0.9134,1,0.9856,0.6606,0.3936,0.3212,-0.0252,0.112,-0.0398,0.379,0.8628,-0.625,-0.0834,0.0416,0.0416,0,0,0.0834,0.0416,-0.2084,-0.25,-0.2084,-0.125,-0.2084,-0.2916,-0.4584,-0.3334,-0.0416,0.3334,0.375,0.7084,0.875,0.7916,0.8334,1,0.9584,0.5834,0.6666,0.6666,0.3334,0.5834,0.6666,0.625,-1,-0.4762,-0.1428,0.0952,0.1428,0.0476,-0.0952,-0.0476,0,-0.1904,-0.0476,0,-0.0476,0.0952,0.0476,-0.0952,0.0476,0.4286,0.8096,0.8572,0.8572,0.9524,1,0.9524,0.762,0.6666,0.5238,0.4286,0.4286,0.5238,0.5238,0.5714,-0.8636,-0.2272,-0.159,0.091,0.1364,-0.409,-0.2954,-0.5228,-0.2728,-0.5,-0.1364,-0.341,-0.0228,-0.1136,-0.1136,-0.1818,0.0228,0.091,0.5,0.6364,0.8864,1,0.6818,0.8182,0.659,0.341,0.2728,0.159,0.1818,0.4546,0.5,0.4318,-1,-1,-1,-1,-1,-1,-0.8172,-0.7942,-0.8172,-0.7714,-0.6914,0.4742,0.8972,0.6914,0.8742,0.76,0.7028,0.4858,0.5658,0.7258,0.3258,-0.2114,-0.6914,-0.76,-0.7828,-0.7828,-0.8514,-0.8286,-0.8172,-0.8058,-0.76,-0.84,-0.7714,-1,-1,-1,-1,-1,-1,-0.934,-0.934,-0.8242,-0.7938,-0.596,0.202,0.8072,0.4472,0.3644,-0.2054,-0.317,-0.3424,-0.0888,-0.0464,-0.3086,-0.7684,-0.9088,-0.9222,-0.9324,-0.9408,-0.9374,-0.9358,-0.9408,-0.934,-0.924,-0.9392,-0.9324,-1,-1,-1,-1,-1,-1,-0.9664,-1,-0.9068,-0.72,-0.5734,-0.0768,0.1432,0.1,0.0142,-0.1772,-0.2658,-0.1516,-0.0058,-0.0772,-0.183,-0.5686,-0.8534,-0.88,-0.9868,-0.9734,-0.94,-1,-1,-1,-0.9668,-0.9668,-0.9534,-1,-1,-1,-1,-1,-1,-0.2286,-0.4286,0.1142,-0.4,1,1,0.0858,-0.8572,-0.3714,-0.4572,-0.8572,-0.8286,-0.8286,-0.8286,1,1,0.1142,-0.9142,-1,-1,-0.9714,-0.8572,-1,-1,-0.9714,-0.9142,-0.9428,1,1,1,1,1,1,1,0.9824,0.8826,0.5946,0.7612,0.7758,0.7658,0.7576,0.7452,0.7522,0.7592,0.7036,0.6602,0.6992,-0.88,-0.2352,-0.6264,-0.4032,0.3356,0.9104,0.743,-0.1334,-0.5588,-0.3236,-0.2942,-0.2942,-0.2058,-0.2942,-0.4412,-0.4412,0.2352,0.5882,0.853,0.8824,0.9412,0.647,0.5,0.6764,0.7352,0.3824,0.4706,0.7942,1,0.7648,0.5588,0.353,0.4706,0.3236,-0.1176,-0.3824,-0.3824,-0.2352,-0.2058,-0.647,-0.3802,-0.3522,-0.0986,-0.0422,-0.0986,-0.183,-0.014,0.0422,0.2394,0.8592,0.7464,0.9436,0.6902,0.493,0.2394,0.5492,0.7464,0.324,0.2958,0.7464,1,0.493,0.5212,0.5212,0.1268,0.5212,-0.2112,-0.324,0.0422,-0.0422,0.183,0.0986,-0.5644,-0.2278,-0.2476,-0.1288,-0.109,-0.1288,-0.1288,-0.0694,0.0694,0.4852,0.7228,0.8416,0.802,0.4654,0.6238,0.6436,0.5248,-0.0694,0.2674,0.9406,1,0.9208,0.3268,0.1882,0.109,0.2872,-0.0496,-0.307,-0.2476,-0.2476,-0.0496,-0.2476,0.0246,-1,-1,1,-1,-1,-1,-0.7666,1,-0.1294,0.2,0.3176,0.3412,0.4588,0.0352,0.4588,0.4824,0.5764,0.2236,0.647,0.8352,1,0.0588,0.2942,0.2236,-0.3648,-0.2,0.0824,0.3882,0.2,0.3648,0.1764,-0.2236,0.1764,0.153,0.0588,-0.1764,-0.1294,-0.247,-0.1764,-0.3882,'8'
-0.958,-0.4784,-0.4878,-0.3084,-0.1594,-0.0594,0.2666,0.4878,1,0.9512,0.8486,0.8044,0.823,0.6764,0.4854,0.2154,0.0804,0.0804,0.1246,0.262,0.2246,0.0408,-0.1012,-0.4854,-0.1642,-0.0338,0.199,0.2456,0.4388,0.4412,0.5576,0.4366,-0.877,-0.3388,-0.4014,-0.2784,0.0324,0.2692,0.4292,0.594,0.877,1,0.8446,0.9212,0.8004,0.833,0.348,0.2924,0.1578,0.109,0.1694,0.1368,0.3272,0.188,-0.2692,-0.406,-0.4338,-0.1624,-0.0232,0.3388,0.427,0.4988,0.5546,0.5104,-0.9798,-0.3694,-0.4426,-0.1828,0.1198,0.319,0.604,0.7326,0.8108,0.8688,0.8134,0.831,1,0.9848,0.7504,0.4804,0.2912,0.2384,0.198,0.4174,0.5234,0.2434,-0.145,-0.377,-0.5234,-0.3114,-0.0492,0.3442,0.4098,0.493,0.5838,0.604,-0.9294,-0.5264,-0.053,0.0618,0.3794,0.5736,0.7942,0.7824,0.7912,0.5148,0.4736,0.6824,0.753,0.9118,1,0.8882,0.6882,0.4736,0.4382,0.6558,0.7618,0.6058,0.203,0.0588,-0.1882,-0.4352,-0.3088,0.0324,0.447,0.747,0.8558,0.9176,-0.895,-0.478,-0.1594,-0.0712,0.3966,0.6272,0.6034,0.4338,0.261,0.2,0.2136,0.2882,0.417,0.505,0.6474,0.7864,0.8372,0.8576,0.5898,0.8882,1,0.9424,0.5458,0.095,-0.0712,-0.2712,-0.4576,-0.4678,0.0814,0.6204,0.756,0.9594,-0.8572,-0.2276,-0.0264,0.1958,0.2276,0.1746,0.0688,-0.0794,-0.0106,-0.0688,-0.1376,-0.1588,-0.0634,-0.127,-0.0212,-0.0846,0.201,0.5238,0.5186,0.7408,0.9682,1,0.9048,0.545,0.2804,-0.2222,-0.6402,-0.6296,-0.3334,0.2858,0.5502,0.8042,-0.7848,-0.2178,0.0972,0.1286,0.0394,-0.2914,-0.3754,-0.5644,-0.6798,-0.7796,-0.5538,-0.223,-0.2704,-0.1916,-0.1916,-0.4016,-0.3228,-0.286,-0.0236,0.6116,0.958,1,0.9212,0.4068,0.2598,-0.2336,-0.2336,-0.265,-0.643,-0.202,0.3124,0.475,-0.8776,-0.4694,-0.4694,-0.2244,-0.1836,0.0204,0.3062,0.551,0.796,0.8776,0.9184,1,0.8368,0.796,0.3062,0.347,0.2654,0.2654,0.3062,0.3878,0.4694,0.3062,-0.0612,-0.3062,-0.1428,0.1836,0.3878,0.551,0.6326,0.6326,0.7142,0.5918,-0.9574,-0.5744,-0.4894,-0.234,-0.1914,-0.0212,0.3618,0.617,0.8724,0.7022,0.9574,1,0.8298,0.3618,0.5744,0.2766,-0.1064,0.234,0.3192,-0.0212,0.0638,0.149,0.149,-0.3192,0.0212,0.2766,0.1914,0.1914,0.4894,0.6596,0.5744,0.532,-0.7188,-0.2812,-0.0312,-0.1562,0.4688,0.5,0.5938,-0.0938,0,-0.0624,-0.0938,0.0624,0.1562,0.2812,0.3124,0.4688,0.8124,1,0.625,0.7188,0.5938,0.75,0.4688,-0.125,-0.2812,-0.0312,-0.25,-0.875,-0.2188,0.5938,0.5938,0.5938,-1,-1,-1,-1,-1,-1,-1,-1,-0.683,-0.7926,-0.1952,0.3292,0.4268,0.8658,0.7926,0.7682,0.7926,0.5366,0.2074,-0.1342,-0.244,-0.2682,-0.5732,-0.5854,-0.7926,-0.744,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9388,-0.9376,0.087,0.8446,0.7858,0.8556,0.749,0.3758,0.0036,-0.1542,-0.4444,-0.776,-0.8494,-0.8544,-0.9144,-0.9156,-0.9376,-0.9192,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8868,-0.9334,-0.66,-0.4884,-0.5068,-0.4534,-0.485,-0.365,-0.4918,-0.4218,-0.645,-0.6684,-0.7218,-0.7724,-0.8068,-0.8334,-0.9468,-0.7334,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,-1,-1,-1,-0.9428,-0.8572,-0.8858,0.0572,-0.6858,-0.9142,-0.9142,-0.8572,-0.8,-0.8286,-0.7714,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8546,-0.64,0.447,0.4848,0.8078,0.8458,0.874,0.787,1,-0.1904,0.0476,0.381,0.6666,0.9048,1,1,0.8572,0.3334,0.5238,0.4762,0.1904,0.3334,0.6666,0.8096,0.8572,0.9048,0.619,0.6666,0.6666,0.4286,0.1428,0.1428,0.0476,0.3334,0.5714,0.5714,0.5238,0,0.1904,0.1428,-0.2858,-0.4392,-0.1776,0.0654,0.514,0.813,0.8878,1,0.4766,0.3084,0.458,0.5328,0.1776,0.1028,0.7196,0.813,0.813,0.7944,0.5328,0.6822,0.7196,0.757,0.3458,0.1402,0.1776,0.3272,0.4018,0.5328,0.4392,0.0654,-0.0654,-0.0654,-0.8318,-0.3162,-0.0256,0.0428,0.3334,0.8974,0.9146,1,0.641,0.3504,0.453,0.5898,0.265,0.1112,0.5726,0.6752,0.7606,0.7606,0.624,0.47,0.3846,0.4872,0.282,0.1112,0.4188,0.4872,0.5042,0.7606,0.7264,0.3334,0.3676,0.3676,-0.1112,1,-1,-1,1,-1,-1,-1,-0.8334,-1,0.0338,-0.191,0.2134,0.3258,0.236,0.2584,0.3484,0.191,0.0786,0.5956,0.7752,0.9776,1,0.618,0.7528,0.7078,0.6854,0.8652,0.7078,0.236,0.3708,0.2134,0.2134,0.3258,0.3708,0.2584,0.2134,0.4158,0.3932,0.0786,0.0338,-0.2808,'9'
-0.887,-0.64,-0.4206,-0.28,-0.017,0.1412,0.506,0.5884,0.8708,0.8498,1,0.8902,0.808,0.4398,0.2398,0.0992,0.017,-0.059,0.159,0.188,0.2994,0.364,0.3108,-0.0428,-0.1978,-0.293,-0.0638,0.3188,0.6206,0.7902,0.7384,0.8224,-0.927,-0.5774,-0.6208,-0.3224,0.0024,0.2868,0.2976,0.5074,0.8352,1,0.8384,0.9736,0.6908,0.7762,0.324,0.2292,0.0412,0.0738,0.3862,0.3768,0.5494,0.484,0.1422,0.052,-0.425,-0.4996,-0.1592,0.2074,0.5074,0.5152,0.6254,0.526,-0.8866,-0.525,-0.4134,-0.175,0.244,0.4216,0.6236,0.6844,0.8932,0.885,0.7222,0.7782,0.9606,1,0.903,0.8686,0.6548,0.5546,0.673,0.7156,0.793,0.8242,0.5184,0.2556,0.0978,0.0206,-0.2292,-0.124,0.1142,0.3968,0.673,0.7534,-0.881,-0.6226,0.1584,0.1362,0.0756,0.5056,0.4652,0.3198,0.0656,0.0374,0.005,0.0978,0.2472,0.4006,0.5076,0.6166,0.7074,0.7558,0.9092,1,0.8366,0.9234,0.8204,0.566,0.2392,0.1908,-0.0232,-0.1524,-0.338,-0.2714,-0.001,0.445,-0.8844,-0.3726,0.3426,0.2506,-0.1478,-0.2976,-0.454,-0.4346,-0.7024,-0.6188,-0.5246,-0.4818,-0.2484,-0.2056,-0.2356,-0.3426,-0.2762,-0.0172,0.6402,0.6616,0.833,0.7388,0.8052,1,0.6616,0.576,-0.0386,-0.3276,-0.394,-0.2506,-0.2012,-0.212,-0.8668,-0.2722,0.572,0.4768,-0.5766,-0.6362,-0.7052,-0.6124,-0.7812,-0.7312,-0.6932,-0.4268,-0.3888,-0.4054,-0.5124,-0.522,-0.4958,-0.2984,0.013,0.2128,0.5672,0.962,0.9596,1,0.7052,0.239,-0.277,-0.2486,-0.2438,-0.289,-0.346,-0.4412,-0.8366,-0.5706,0.5738,0.5224,-0.609,-0.4358,-0.5352,-0.4456,-0.532,-0.5544,-0.5544,-0.2532,-0.1538,-0.3526,-0.2788,-0.4134,-0.343,-0.4904,-0.4294,0.0128,0.7916,0.8012,0.9872,1,0.7852,0.0096,-0.423,-0.2916,-0.391,-0.3044,-0.4776,-0.1794,-0.5636,-0.309,-0.309,-0.2364,-0.0546,-0.0182,0.3818,0.4182,0.5636,0.7454,1,0.9636,0.6364,0.4182,0.309,0.1272,0.0182,0.0182,0.2,0.2,0.4182,0.5272,0.491,0.1636,0.1272,0.0182,0.1636,0.4182,0.7454,0.8182,0.891,0.9272,-0.8636,-0.6364,-0.3636,-0.409,0,0.1818,0.0454,0.4546,0.591,0.6818,0.7272,0.8636,0.5454,0.3182,-0.091,-0.409,-0.3636,-0.3636,-0.0454,-0.1364,-0.0454,0.409,0.3636,-0.3636,-0.4546,-0.8636,-0.2728,0.0454,0.6818,0.7272,0.7728,1,-0.8824,-0.647,-0.0588,0.0824,0.2706,0.3176,0.6236,0.5294,0.647,0.4352,0.3882,0.5294,0.5058,0.5764,0.8824,0.7412,0.7648,0.5764,0.5294,0.6706,0.7176,1,0.7648,0.5294,0.2,0.1058,-0.1294,-0.4352,-0.4118,0.0588,0.4352,0.7882,-1,-1,-1,-1,-1,-1,-1,-1,-0.7162,-0.7972,-0.3514,0.3378,0.3514,0.3784,0.5946,0.7028,0.5136,0.3514,0.3648,0.4054,0.2432,-0.2568,-0.6216,-0.7162,-0.7028,-0.7162,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9588,-0.9538,-0.4586,0.566,0.4166,0.4026,0.5008,0.1458,-0.4286,-0.6852,-0.7464,-0.7934,-0.8346,-0.8958,-0.8918,-0.9348,-0.9338,-0.9288,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.94,-0.6368,-0.4212,-0.4478,-0.4424,-0.2978,-0.249,-0.56,-0.5646,-0.6534,-0.6486,-0.7686,-0.7412,-0.94,-0.8868,-0.8334,-0.78,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,-0.8572,-0.9142,-0.6286,-0.2858,-0.5714,-0.8286,-0.9428,-0.9142,-0.9714,-0.9428,-0.7714,-0.8,-0.9428,-0.7714,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3996,-0.5334,1,-0.3142,0.0978,0.965,1,0.4878,1,-0.5,-0.1364,0.2272,0.591,0.8636,1,0.7272,0.3636,0.1818,0.0454,0.2728,0.1818,0.091,0.2728,0.6818,0.8182,0.7272,0.5,0.3636,0.2728,0.1818,0.1364,0.1364,0.1364,0.3636,0.4546,0.409,0.1818,0.1364,0,-0.3636,-0.7272,-0.4716,-0.2452,0.132,0.6416,0.8114,1,0.868,0.283,0,0.1886,0.2642,0.3396,-0.0754,0.1886,0.6416,0.8114,0.717,0.6038,0.2642,0.3584,0.1886,0.1698,0.1698,0.1886,0.3396,0.434,0.415,0.2076,-0.0566,0,-0.3018,-0.6604,-0.5384,-0.423,0.0384,0.577,0.8076,1,0.8462,0.2308,-0.0192,0.0192,0.25,0.1924,-0.0576,0.1154,0.5962,0.7116,0.5,0.4424,0.2308,0.2884,-0.1538,-0.0384,0.0192,0.1154,0.2116,0.3076,0.25,0.1346,-0.3462,-0.2308,-0.4808,-0.8462,1,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.3044,-0.0652,0.1522,0.1304,0.2608,0.0218,0.2826,0.2826,0.6304,0.6522,0.7174,0.9348,0.6304,0.4566,0.587,0.674,1,0.7174,0.413,0,-0.2392,0.2174,0.1304,0.1956,0,0.0218,0.0434,0.087,-0.2826,-0.1956,-0.1086,-0.4566,'9'
-0.7432,0.0582,0.0366,0.4006,0.3426,0.101,-0.0244,0.1314,-0.0582,0.0336,-0.1132,0.1774,0.0336,0.0642,-0.049,0.2232,0.6698,0.945,0.7798,0.4404,0.4588,0.6666,0.7952,1,0.7156,0.5718,0.2906,0.3058,0.104,0.1284,0.0184,-0.0306,-0.8582,-0.1378,-0.1568,0.135,0.0668,0.6534,0.5608,0.5798,0.4706,0.3206,0.1842,0.528,0.3888,0.5826,0.4462,0.6508,0.6316,1,0.8282,0.6754,0.5416,0.779,0.6562,0.7272,0.547,0.3478,0.1788,0.2252,0.116,-0.0968,-0.2496,-0.0096,-0.9858,-0.0972,-0.0858,0.0628,0.0542,0.9314,0.9314,0.5914,0.62,0.1914,0.2458,0.4628,0.5428,0.54,0.6486,0.5086,0.6458,0.8172,1,0.6,0.8,0.5542,0.5772,0.3228,0.54,0.2772,0.06,-0.0686,0.1458,-0.0428,-0.3114,-0.1714,-0.9192,-0.1104,-0.1354,0.2598,0.1354,0.605,0.4432,0.4526,0.2908,0.1632,0.0358,0.1976,0.1508,0.2846,0.322,0.2908,0.437,0.888,1,0.8724,0.8352,0.636,0.5864,0.5086,0.5396,0.2286,0.0948,-0.0234,0.0948,-0.042,-0.1198,-0.266,-0.8796,-0.3512,0.194,0.3444,-0.0034,-0.0368,0.1906,0.077,0.0568,-0.224,-0.2274,-0.087,-0.0334,0.0168,-0.0134,-0.1806,-0.1138,0.1706,0.525,0.8662,1,0.9498,0.9398,0.8628,0.408,0.2576,-0.1872,-0.1404,-0.0904,-0.0536,-0.0468,-0.1806,-0.972,-0.496,0.496,0.448,-0.044,-0.024,-0.076,-0.18,-0.416,-0.452,-0.476,-0.288,-0.248,-0.292,-0.372,-0.428,-0.268,-0.02,0.208,0.584,0.804,0.732,1,0.932,0.932,0.18,-0.116,-0.42,-0.36,-0.128,-0.088,-0.124,-0.8716,-0.3806,0.4956,0.469,-0.553,-0.1858,-0.2832,-0.3938,-0.447,-0.593,-0.6592,-0.4868,-0.553,-0.5132,-0.3318,-0.3806,-0.5796,-0.6372,-0.5576,0.1018,0.6638,0.8318,0.8806,1,0.5442,0.0132,-0.292,-0.0884,-0.1328,-0.2788,-0.3806,-0.1416,-0.5122,0.2682,0.317,0.122,-0.122,-0.2196,-0.317,-0.3658,-0.6586,-0.2682,-0.317,-0.0732,-0.0732,-0.1708,-0.2196,-0.0732,0.2682,0.6098,0.7074,0.6098,0.6098,0.756,0.9512,1,0.9024,0.3658,0.4146,0.122,0.0732,0.6098,0.561,0.4146,-0.434,0.283,0.3584,0.5472,0.5094,0.132,0.0188,0.132,0.132,0.132,-0.0566,0.283,0.0944,0.132,-0.0188,0.3584,0.585,0.8868,0.7736,0.5472,0.3208,0.5094,0.849,1,0.7736,0.6604,0.4716,0.585,0.3584,0.2452,0.283,0.1698,-0.7804,0,0,0.0488,0.317,0.9756,0.9756,0.7318,0.7318,0.3414,0.3414,0.5854,0.6342,0.7318,0.756,0.756,0.8048,0.9512,1,0.8048,0.878,0.5854,0.7318,0.6342,0.7074,0.2926,0.2926,0.2926,0.4146,0.0732,-0.0244,0.122,-1,-1,-1,-1,-1,-0.8726,-0.8884,-0.8248,-0.8326,-0.7848,-0.6892,0.5298,0.6016,0.4342,0.4422,0.2988,0.1872,0.0278,0.1792,-0.0678,-0.1714,-0.4024,-0.4582,-0.5698,-0.6414,-0.6812,-0.8168,-0.7768,-0.7848,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.915,-0.915,0.2,1,1,0.2712,0.0414,0.6414,0.9196,0.8114,0.5794,0.3126,0.0368,-0.177,-0.4206,-0.554,-0.6736,-0.7518,-0.7678,-0.7886,-0.816,-0.8506,-0.8552,-0.8368,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.9568,-0.2168,0.7432,0.74,0.4932,-0.315,-0.28,-0.2334,-0.3534,-0.2918,-0.18,-0.3484,-0.5722,-0.589,-0.804,-0.669,-0.7356,-0.6722,-0.7056,-0.7956,-0.829,-0.919,-0.7456,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,0.8,1,1,-0.5142,-0.6858,-0.7714,-0.8572,-0.8858,-0.7714,-0.8858,-0.8286,-0.8572,-0.9428,-1,-1,-0.9714,-0.9142,-0.9428,-0.8572,-0.1142,-1,-1,-1,-1,0.7008,0.7378,0.8026,0.8636,0.9624,1,1,1,1,1,0.4452,0.4348,0.3704,0.2746,0.1788,0.0728,-0.0572,-0.2284,-0.3324,-0.0576,-0.7866,0.4352,0.1058,-0.246,-0.223,0.0758,0.3264,1,-0.601,-0.5684,-0.5136,-0.2622,-0.142,-0.1748,-0.1148,-0.164,-0.0874,0.0438,0.1968,0.4426,0.5028,0.7214,0.8744,0.9726,1,0.8416,0.765,0.7104,0.7432,0.7322,0.776,0.6994,0.53,0.399,0.3826,0.2022,0.235,0.1148,0.0874,-0.1858,-0.822,-0.733,-0.6822,-0.6228,-0.5594,-0.572,-0.4916,-0.3898,-0.1228,-0.0974,0.0128,0.2924,0.3008,0.5466,0.5848,1,0.8984,0.6694,0.75,0.733,0.6906,0.805,0.7924,0.4916,0.5042,0.3984,0.4068,0.2712,0.322,0.4916,0.1738,0.0254,-0.6932,-0.5516,-0.475,-0.5222,-0.5752,-0.3274,-0.115,-0.0266,0.1858,0.2154,0.292,0.7404,0.7582,0.5988,0.8584,0.9646,0.8526,0.705,0.7758,1,0.9764,0.6224,0.8998,0.6638,0.6992,0.6224,0.5752,0.4868,0.652,0.652,0.3334,0.0914,1,-1,-1,1,-1,-1,-1,-0.2334,-1,-0.25,0.075,-0.025,-0.025,-0.25,0.15,0.025,0.1,0.225,0.225,0.4,0.55,0.725,0.325,0.725,1,0.875,0.7,0.85,0.025,0.1,0.125,-0.05,-0.15,0.05,-0.05,-0.025,0.225,0.15,0,-0.125,-0.525,'10'
-0.6276,0.3046,0.2616,0.5476,0.4646,0.5384,0.3662,0.2984,0.1046,-0.0216,-0.1138,0.0862,-0.1046,0.1076,0.1908,0.3384,0.8616,1,0.8092,0.8246,0.843,1,0.9538,0.963,0.5138,0.5508,0.4,0.3754,0.4308,0.52,0.4892,0.3292,-0.6592,0.1246,0.047,0.4128,0.3822,0.748,0.4876,0.5208,0.1884,0.2022,0.0886,0.2272,0.1718,0.2604,0.3324,0.3628,0.9862,0.9722,1,0.953,0.8504,0.7424,0.8614,0.712,0.5512,0.3518,0.2438,0.0222,0.2216,0.241,0.3408,-0.0222,-0.6542,0.023,-0.026,0.2968,0.3688,0.5418,0.4756,0.539,0.2796,0.2392,0.0518,0.0058,0.317,0.2248,0.2392,0.3488,0.5534,0.853,1,0.8818,0.7926,0.7234,0.6772,0.7522,0.6484,0.4668,0.2594,0.2882,0.2968,0.4756,0.4034,0.1844,-0.617,-0.0986,0.2282,0.3226,0.402,0.2578,0.346,0.1192,0.1076,-0.3078,-0.405,-0.184,-0.025,-0.0634,0.0014,-0.0132,0.0456,0.3814,0.8556,0.8616,0.7142,0.9116,0.9618,1,0.6818,0.3608,0.2076,0.1488,0.1812,0.4816,0.5228,0.3814,-0.6968,-0.2362,0.6536,0.6378,0.1182,0.2284,0.2086,-0.1456,-0.504,-0.4488,-0.8504,-0.315,-0.2402,-0.2638,-0.256,-0.3464,-0.5236,0.193,0.433,1,0.7322,0.8308,0.8976,0.8662,0.9094,0.6574,0.504,0.2952,0.1024,0.4094,0.5394,0.6574,-0.7884,-0.3368,0.5274,0.4568,-0.679,-0.1322,-0.2522,-0.298,-0.6508,-0.6826,-0.7708,-0.3298,-0.4004,-0.4356,-0.2874,-0.4498,-0.538,-0.3122,0.3334,0.5662,0.672,0.6262,0.5062,1,0.8978,0.559,0.2452,0.1428,-0.3086,-0.1958,0.2628,0.5026,-0.884,-0.1546,0.9516,0.913,-0.8792,-0.2464,-0.3574,-0.43,-0.831,-0.8454,-0.744,-0.6618,-0.7488,-0.5458,-0.343,-0.5266,-0.3914,-0.2078,-0.1112,0.3044,0.7294,0.884,0.9516,1,0.942,0.2802,0.0386,-0.058,-0.343,0.0918,0.227,0.512,-0.091,0.9394,1,0.394,0.6364,0.6364,0.1516,0.4546,0.4546,-0.1516,0.394,0.394,0.394,0.5152,0.6364,0.697,0.9394,0.7576,0.9394,0.9394,0.6364,1,0.697,0.9394,0.394,0.697,0.5152,0.1516,0.697,0.8182,0.6364,0.4546,-0.7436,0.1282,0.1282,0.4358,0.4872,0.2308,0.077,-0.3846,-0.2308,-0.2308,-0.2308,-0.1282,-0.077,-0.077,-0.1282,-0.0256,0.3846,0.5384,0.6924,0.4358,0.4358,0.7948,1,0.6924,0.2308,0.2308,0.4358,0.1794,-0.1282,0.641,0.6924,0.4358,-0.661,-0.1526,0.4238,0.4916,0.4916,0.2882,0.2542,0.1864,0.1186,-0.3898,-0.1186,-0.1186,-0.2204,-0.356,-0.356,-0.1186,0.0508,0.3898,1,1,0.8644,0.8644,0.9322,0.8644,0.7288,0.5254,0.356,0.2542,0.1186,0.5932,0.5932,0.1864,-1,-1,-1,-0.9,-0.9,-0.9072,-0.8572,-0.8786,-0.8714,-0.8572,-0.8358,0.65,0.6572,0.45,0.3286,0.2142,0.2786,-0.0786,-0.1286,-0.1714,-0.2572,-0.2786,-0.5286,-0.6642,-0.8286,-0.8858,-0.8358,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8836,-0.899,-0.5602,0.7232,1,0.78,-0.6456,-0.8396,0.335,0.8422,0.8008,0.5136,0.4774,0.2808,-0.2884,-0.4412,-0.4386,-0.5602,-0.586,-0.7232,-0.7646,-0.868,-0.8576,-0.837,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9,-0.98,-0.56,0.45,0.6332,0.5566,-0.3068,-0.72,-0.5324,-0.454,-0.4186,-0.293,-0.3816,-0.5986,-0.5458,-0.6944,-0.6916,-0.7686,-0.8316,-0.72,-0.7268,-0.94,-0.9068,-0.8068,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,0.5142,1,1,1,1,1,0.5714,1,-0.8858,-0.9428,-0.9714,-0.8858,-0.7142,-0.8572,-1,-1,-0.9714,-0.8858,-0.9714,-0.8286,-0.8858,-0.7142,-0.0286,-1,-1,-1,-1,-1,-1,0.848,0.8666,0.8958,0.9294,0.9674,1,1,1,1,0.8566,0.224,0.2032,0.191,0.1802,0.1742,0.1084,0.0578,0.0076,0.055,0.2784,-0.6266,0.6588,-0.8422,-0.6482,0.335,0.4902,0.5886,0.625,-0.5962,-0.6116,-0.5844,-0.5456,-0.4174,-0.2932,-0.2428,-0.2622,-0.2234,-0.0174,0.0524,0.2078,0.165,0.4214,0.9068,1,0.7748,0.6582,0.5612,0.5962,0.5418,0.6234,0.4174,0.3708,0.4058,0.3048,0.1456,0.0058,-0.0796,-0.0292,-0.134,-0.5068,-0.6662,-0.8028,-0.7012,-0.4786,-0.5548,-0.4214,-0.3768,-0.3704,-0.1638,0.0206,0.1606,0.31,0.2624,0.5484,0.6852,1,0.9872,0.895,0.6916,0.6502,0.558,0.612,0.6438,0.504,0.5294,0.5104,0.3926,0.2656,0.2368,0.256,0.1702,0.0144,-0.3472,-0.3354,-0.4184,0.0446,-0.1158,0.1216,0.2344,0.359,0.4124,0.5668,0.2582,0.8576,0.7804,0.5906,0.632,0.8576,0.822,0.7032,1,0.8042,0.5668,0.2344,0.1632,0.1928,0.5548,0.5728,0.4006,0.5014,0.537,0.1098,-0.2106,-0.5192,1,-1,-1,1,-1,-1,-1,0.2,-1,-0.2054,0.041,-0.1506,0.2328,0.2054,0.0684,0.041,0.2876,0.041,0.452,0.2876,0.8356,0.5616,0.315,0.9178,1,0.9178,0.5342,0.452,0.3424,0.041,0.0136,-0.178,0.1506,0.2602,0.0684,0.2054,0.041,-0.0684,-0.2602,-0.2876,-0.5342,'10'
-0.93,0.166,0.2786,0.1934,0.379,0.6074,0.8874,0.5616,0.2664,0.0928,0.315,0.242,0.6042,0.6468,0.5768,0.6774,0.86,1,0.7442,0.7504,0.863,0.9482,0.729,0.5068,0.315,0.1416,0.1538,0.1142,0.1598,-0.1628,-0.0106,0.3456,-0.8808,-0.0852,-0.0048,0.0364,0.1558,0.326,0.528,0.2092,0.292,0.107,0.2846,0.202,0.3722,0.3722,0.4768,0.5766,0.7566,0.9636,0.6764,0.9344,0.7566,1,0.9148,0.3966,0.399,0.1752,0.2798,0.0608,0.2628,0.0268,0.2336,0.107,-0.9646,-0.3208,-0.3608,0.1816,0.1038,0.0872,0.0142,-0.0708,-0.1226,-0.2334,-0.2736,-0.1438,-0.0542,-0.066,0.0236,-0.0118,0.2476,0.5048,0.8184,0.849,1,0.9482,0.7736,0.6202,0.3278,0.25,0.0566,0.0236,0.0212,0.007,0.0212,0.0142,-0.997,-0.5522,0.2312,0.408,-0.193,-0.4904,-0.1752,-0.4168,-0.3344,-0.5494,-0.4846,-0.4934,-0.3874,-0.3196,-0.3048,-0.3344,-0.193,0.1164,0.3048,0.7084,1,0.9706,0.9294,0.841,0.6082,0.2548,0.022,-0.1192,0.0104,0.022,0.2164,0.2754,-0.8802,-0.5848,0.3012,0.3158,-0.4416,-0.4182,-0.4094,-0.4094,-0.576,-0.693,-0.5322,-0.614,-0.5116,-0.4854,-0.465,-0.4884,-0.5,-0.2954,-0.0644,0.573,0.8772,1,0.927,0.8362,0.6608,0.383,0.2106,0.0614,0.1316,0.1578,0.228,0.4416,-0.862,-0.6276,0.252,0.2648,-0.5826,-0.5152,-0.4542,-0.5248,-0.7464,-0.7946,-0.7528,-0.5826,-0.5248,-0.4286,-0.3386,-0.5826,-0.6694,-0.6404,-0.4414,0.3194,0.6084,0.8812,0.939,1,0.663,0.4446,0.0048,-0.2102,-0.2392,-0.1396,0.0594,-0.008,-0.8068,-0.3842,0.173,0.173,-0.4022,-0.573,-0.537,-0.573,-0.7124,-0.6674,-0.627,-0.573,-0.537,-0.4338,-0.2314,-0.3618,-0.3618,-0.5506,-0.5102,-0.0338,0.9102,0.9506,1,0.8876,0.8248,0.4472,-0.3078,-0.2988,-0.2808,-0.1102,-0.0338,-0.0966,-0.8378,0.2972,0.4054,0.4054,0.5136,0.5676,0.7838,0.6216,0.1892,0.1352,0.3514,0.3514,0.4594,0.6216,0.7298,0.7298,0.8918,1,1,1,0.8918,0.4054,0.8378,0.6216,0.4594,0.4054,0.081,0.1892,0.4594,0.5136,0.1892,0.6756,-0.7648,0.1176,0.2942,0.1764,0.4706,0.353,0.8236,0.7058,0.0588,-0.2352,0.2352,0.2352,0.1764,0.4118,-0.1764,0.2942,0.5294,0.5882,0.647,0.8236,1,0.647,0.5882,0.2352,0,0.0588,0.0588,0.0588,-0.2352,0,0,0.7058,-0.7978,-0.2584,-0.1012,0.2808,0.1686,-0.1012,-0.146,0.0112,-0.2134,-0.0338,-0.1686,-0.0562,-0.146,-0.0112,-0.146,-0.0338,0.2808,0.3034,0.7978,0.8876,1,0.9776,0.618,0.5956,0.4382,0.3932,0.0338,-0.0338,0.1686,0.0786,0.1236,-0.0112,-1,-0.75,-0.7638,-0.75,-0.6112,-0.0972,-0.4166,0.25,-0.2362,-0.4862,-0.4306,0.6112,0.6806,0.6666,0.5556,0.6388,0.6806,0.2778,0.2362,0.1944,-0.1388,-0.3194,-0.6806,-0.5972,-0.7638,-0.7222,-1,-1,-1,-1,-1,-1,-1,-1,-0.8928,-0.8766,-0.2976,0.2466,-0.0858,-0.6514,-0.4746,-0.5362,-0.6166,-0.748,-0.0644,0.4612,0.6756,0.8686,0.252,-0.2198,-0.3244,-0.4638,-0.4798,-0.6676,-0.7588,-0.8526,-0.831,-0.8498,-0.858,-1,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.94,-0.7868,-0.0868,-0.0068,-0.1934,-0.26,-0.2168,-0.2768,-0.8,-0.3294,-0.234,-0.1544,-0.093,-0.2786,-0.4416,-0.47,-0.4358,-0.4044,-0.603,-0.5858,-0.78,-0.7134,-0.84,-0.9068,-1,-1,-1,-1,-1,-1,-1,-1,-0.5428,0.9714,1,1,-0.1142,0,-0.4,-0.7714,-0.6858,0.5142,1,-0.7714,-0.7428,-0.7714,-0.7428,-1,-1,-0.9714,-0.8286,-0.6858,-0.8,-0.7714,-0.8858,-0.9142,-0.8858,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.916,-0.5092,-0.5068,-0.5328,-0.5266,-0.502,-0.5056,-0.4596,-0.3686,-0.1068,0.1814,-0.6666,0.6706,-0.7588,-0.421,-0.0402,-0.008,-0.0376,-0.8166,-0.6124,-0.3346,-0.159,-0.2358,-0.2138,0.031,0.1078,0.3308,0.2542,0.4844,1,0.9414,0.7514,0.5466,0.6966,0.5466,0.5796,0.7258,0.7586,0.8282,0.7148,0.6308,0.499,0.3054,0.2394,0.755,0.7294,0.5356,0.4844,0.5686,0.5028,0.2578,-0.1774,-0.4918,-0.2578,-0.181,-0.1882,-0.1846,0.0202,0.1188,0.2542,0.415,0.7222,0.8866,0.5028,0.4332,0.733,0.733,0.9122,1,0.532,0.5758,0.5356,0.4808,0.1736,0.3272,0.181,-0.0238,0.192,0.2578,0.3016,0.3712,0.2432,-0.2176,-0.3016,-0.3828,-0.3262,-0.2064,-0.2064,-0.1922,-0.1006,0.0406,0.2664,0.4992,0.5978,0.4956,0.2874,0.2664,0.492,0.5768,0.8272,1,0.3404,0.2734,0.2946,0.1182,-0.037,-0.0158,0.1182,-0.1604,-0.1428,-0.0934,0.104,-0.1182,-0.351,-0.753,1,-1,1,-1,-1,-1,-1,0.5334,-1,-0.3,0.26,0.22,0.12,0.1,0.22,0.26,0.1,0.14,-0.14,0.36,0.62,0.76,0.36,0.98,0.92,1,0.38,0.26,0.1,0.14,0.06,-0.4,0.18,0.28,0.24,0.14,0.12,-0.38,-0.42,-0.58,-0.48,'11'
-0.9088,-0.0842,-0.0596,-0.365,-0.2772,0.0562,0.2,-0.179,-0.1088,-0.565,-0.3404,-0.6036,0.021,-0.1438,-0.0596,-0.1964,0.365,0.4176,0.8842,0.8632,0.9474,1,0.5018,0.2772,-0.0596,0.0666,-0.2456,-0.0948,-0.2772,0.0632,0.5404,0.7334,-0.9152,-0.0812,-0.0578,0.1024,0.1142,0.4958,0.536,0.1872,0.2438,-0.046,0.0554,0.0672,0.1826,-0.0036,0.1872,0.2438,0.47,0.7056,1,0.748,0.7102,0.5878,0.3592,0.2296,0.2156,0.0954,0.1118,0.0154,-0.152,-0.2084,0.0836,0.2956,-0.7854,-0.0278,-0.0834,0.253,0.0994,0.4544,0.245,0.2132,0.0226,0.0596,-0.0966,0.0332,0.0358,0.139,0.1338,0.2768,0.4676,0.8544,0.947,1,0.8278,0.939,0.8782,0.735,0.5814,0.4358,0.2504,0.1788,0.0014,-0.1284,-0.2318,0.0092,-0.7264,-0.212,0.108,0.2504,-0.0232,-0.0752,0.1464,0.0068,-0.0396,-0.3652,-0.398,-0.2448,-0.201,-0.1874,-0.16,-0.0862,-0.0342,0.2586,0.71,0.937,0.9616,1,0.9808,0.9234,0.4692,0.2176,0.0862,-0.0342,0.037,0.2722,0.1902,0.1492,-0.9112,-0.553,0.1834,0.1978,-0.2436,-0.2006,-0.149,-0.2866,-0.4584,-0.6074,-0.5042,-0.573,-0.4872,-0.3954,-0.447,-0.5042,-0.5272,-0.192,0.1548,0.6992,0.7508,1,0.808,0.9312,0.49,0.1806,0.0114,-0.02,-0.0028,0.0888,0.1118,0.063,-0.9914,-0.5266,0.29,0.2612,-0.7028,-0.3766,-0.3824,-0.6392,-0.8182,-0.7836,-0.7604,-0.567,-0.5556,-0.5008,-0.5296,-0.5296,-0.648,-0.466,-0.316,0.2034,0.8442,1,0.746,0.6422,0.645,0.114,-0.1486,-0.2582,-0.1082,-0.1314,-0.0764,0.0852,-0.8522,-0.39,0.475,0.4676,-0.5638,-0.3974,-0.4344,-0.5564,-0.83,-0.9926,-0.475,-0.4602,-0.4602,-0.3826,-0.231,-0.4122,-0.549,-0.3124,-0.4972,-0.061,0.7708,1,0.7376,0.745,0.4048,-0.0278,-0.172,-0.4528,-0.0758,-0.1386,-0.109,-0.3604,0.25,0.1666,0.2084,0.0416,0.125,0.2084,0.4584,0.4166,0.125,0.0416,0.2084,0.125,0.2084,0.2084,0.0834,0,0.5,0.75,0.75,0.5,0.9166,0.8334,0.875,0.75,0.625,0.4584,0.4166,0.5,0.3334,0.75,1,0.875,0.1304,0.1304,0.0434,-0.3044,-0.1304,0.1304,0.2174,0.174,0.0434,0.174,0.174,0.1304,0.2174,0.174,0.2174,0.087,0.4348,0.5652,0.6522,0.5652,0.7392,0.7392,0.6956,0.5652,0.174,0.3478,-0.0434,0.1304,0.6522,0.7392,0.9566,1,-0.8372,-0.1628,-0.1628,0.0232,0,0.4652,0.4652,0.1396,0.1628,-0.0232,0.0232,0.0698,0.1162,0.0232,0.0698,0.372,0.4418,0.8838,1,0.6046,0.5582,0.279,0.3024,0.093,0.2558,-0.0698,0.0698,-0.1396,-0.1162,-0.5348,-0.372,0.0698,-1,-1,-1,-0.868,-0.8172,-0.8274,-0.6954,-0.7158,-0.665,-0.269,0.0558,0.2386,0.594,0.6954,0.7158,0.7564,0.594,0.4822,0.1878,0.137,0.0762,-0.198,-0.533,-0.6346,-0.7056,-0.7462,-0.8274,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.921,-0.91,-0.4994,-0.5104,-0.4622,-0.6444,-0.64,-0.4972,-0.3194,0.55,0.9188,0.7278,0.4204,0.1636,-0.1372,-0.3326,-0.4688,-0.5894,-0.6992,-0.7958,-0.8178,-0.8244,-0.798,-0.752,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.9468,-0.46,0.26,0.3132,-0.0434,-0.04,-0.37,-0.3862,-0.2878,-0.26,-0.2186,-0.18,-0.413,-0.5558,-0.6058,-0.72,-0.893,-0.85,-0.7668,-0.7634,-0.8068,-0.57,-0.2868,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,0.8,-0.4858,0.1714,-0.4286,-0.8858,0.4286,-0.3714,-0.7714,-0.8286,-0.8,-0.8286,-0.8286,-1,-0.9142,-0.9142,-0.9428,-0.8,-0.8286,-0.6858,-0.7428,-0.7428,-1,-1,-1,-1,-1,-1,0.767,0.8218,0.8542,0.9152,0.9516,1,1,1,1,0.8458,-0.0266,-0.0758,-0.1008,-0.1618,-0.2048,-0.2458,-0.2378,-0.2132,-0.0626,0.1834,-0.6134,0.6352,-0.4906,-0.5806,-0.5938,-0.5104,-0.0516,0.1834,-0.592,-0.5622,-0.2886,-0.2388,-0.0696,-0.01,0.0896,0.0548,0.1492,0.4776,0.9452,1,0.816,0.5522,0.5522,0.7164,0.8358,0.8706,0.796,0.7712,0.8408,0.6716,0.5722,0.388,0.3384,0.4478,0.2786,0.388,0.3284,0.1044,0.3184,-0.1442,-0.4912,-0.3246,-0.2106,-0.2764,-0.2236,-0.0964,0.0438,-0.0482,0.1886,0.522,0.6666,0.807,0.6228,0.6052,0.5176,0.9166,1,0.8596,0.7106,0.7544,0.7236,0.7456,0.5834,0.443,0.3422,0.3816,0.5132,0.215,0.1272,0.1974,0.4122,0.0746,-0.1416,-0.3496,-0.3274,-0.177,-0.1106,-0.323,-0.3098,-0.1018,0.1106,0.447,0.739,0.739,0.5486,0.3806,0.5576,0.9734,1,0.8982,0.7876,0.5752,0.3982,0.1106,-0.0576,-0.1548,0.1194,0.3054,0.208,0.0354,-0.292,-0.2434,-0.2788,-0.761,-0.2974,-1,-1,1,-1,-1,-1,0.1666,1,-0.4964,-0.4676,-0.3094,-0.0072,-0.2086,-0.295,-0.2086,0.1366,-0.0216,-0.036,0.295,0.4964,0.3956,0.1942,0.6546,1,0.6978,0.5396,0.554,0.3382,-0.0792,-0.1798,-0.0936,-0.2662,-0.3094,-0.4532,-0.4964,-0.295,-0.2374,-0.4532,-0.4676,-0.8562,'11'
-0.9274,-0.2452,-0.2426,0.1232,0.2762,0.5046,0.2426,0.1854,0.1726,0.2192,0.0844,0.074,0.3126,0.2426,0.437,0.3566,0.502,0.432,0.489,0.4526,0.5668,0.8962,1,0.5772,0.4008,0.0714,-0.0688,-0.0168,-0.0766,-0.253,-0.0714,0.3592,-0.9552,-0.2216,-0.256,0.2322,0.3958,0.9788,0.8364,1,0.8258,0.7176,0.5066,0.7968,0.6676,0.9948,0.9842,0.9788,0.8892,0.6358,0.4142,0.4802,0.496,0.6544,0.6886,0.4802,0.306,-0.0448,-0.1504,-0.1214,-0.211,-0.1002,0.2322,0.715,-0.9632,-0.302,-0.3524,-0.0218,0.1848,0.5316,0.7244,1,0.8208,0.6188,0.7544,0.899,0.6486,0.7498,0.5338,0.1664,0.015,-0.0494,-0.0356,0.1526,0.1572,0.155,0.0654,0.0516,-0.1252,-0.3456,-0.5384,-0.6832,-0.4398,-0.0678,0.263,0.6028,-0.9416,-0.6176,0.0066,0.081,0.4688,0.8274,1,0.9336,0.8858,0.9468,0.846,0.7662,0.5246,0.182,0.0412,-0.2032,-0.352,-0.397,-0.3042,-0.3334,-0.2484,-0.0864,0.3094,0.3944,0.0544,-0.3014,-0.6734,-0.5856,-0.1926,0.3466,0.7344,0.7716,-0.8648,-0.583,0.0958,0.0564,0.1324,0.8198,0.7324,0.862,1,0.893,0.183,-0.138,-0.2112,-0.2422,-0.6282,-0.5436,-0.3944,-0.569,-0.6536,-0.555,-0.4902,-0.3296,-0.0592,-0.0788,-0.1662,-0.6478,-0.6788,-0.5774,-0.0732,0.7014,0.7042,0.8394,-0.7392,-0.5438,0.3344,0.2452,0.362,1,0.8078,0.7462,0.4168,0.2042,-0.1972,-0.3654,-0.5198,-0.5368,-0.3756,-0.482,-0.3482,-0.5094,-0.6432,-0.6398,-0.3208,-0.1836,-0.5368,-0.3276,-0.4546,-0.657,-0.8148,-0.235,0.139,0.4752,0.7428,0.7874,-0.766,-0.4148,0.3032,0.2978,0.7022,1,0.899,0.5852,0.0212,-0.1808,-0.2606,-0.2446,-0.4628,-0.4734,-0.4362,-0.3404,-0.149,-0.0958,-0.234,-0.3882,-0.4362,-0.383,-0.5426,-0.2234,-0.25,-0.3032,-0.2712,-0.367,-0.101,0.0744,-0.0478,0.7446,-0.8572,0,0,0.2142,0.2858,0.5714,0.7142,0.5714,0.2142,-0.1428,0.0714,0.2142,0.5,0.5714,0.5714,0.5714,0.7858,0.9286,1,0.9286,0.7142,1,0.9286,1,1,0.5714,0.0714,0.5,0.6428,0.6428,0.3572,0.8572,-0.6154,-0.1538,0.0384,0.2308,0.4616,0.4616,0.2692,0.2692,0.1924,0.1924,0.1154,0.1924,0.1924,0.1924,0.3076,0.3846,0.4616,0.7308,0.6538,0.6154,0.423,0.6924,1,0.923,0.5,0.1924,0,0,-0.1538,-0.1154,-0.0384,0.4616,-0.9104,-0.6418,-0.0746,-0.1044,0.0746,0.8208,0.8508,0.7314,1,0.9702,0.3134,0.0448,-0.403,-0.015,-0.2238,-0.612,-0.5522,-0.6716,-0.7014,-0.8508,-0.5522,-0.3432,0.0746,-0.0448,-0.194,-0.9702,-0.7314,-0.582,-0.3134,0.582,0.6418,0.791,-1,-1,-1,-1,-1,-1,-1,-1,-0.8298,-0.766,-0.7234,0.4042,0.6596,0.6596,0.5958,0.766,0.6382,0.3936,-0.0958,-0.1808,-0.2554,-0.5,-0.7446,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9484,-0.9258,-0.8136,0.0378,-0.0818,0.391,0.7666,0.5152,0.2666,0,-0.509,-0.6696,-0.7804,-0.853,-0.9196,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.98,-0.7,-0.2272,-0.2144,-0.3816,-0.4358,-0.49,-0.6044,-0.6516,-0.653,-0.6858,-0.7744,-0.8614,-0.96,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,0,1,1,-0.6,-0.5142,-0.5142,-0.8572,-1,-0.4858,-0.6286,-0.8286,-0.8572,-0.9142,-0.5142,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.2464,-0.263,-0.276,-0.3136,-0.363,-0.4572,-0.6102,-0.7754,-0.8616,-0.6246,-0.5866,0.7058,-0.7804,-0.4106,0.4954,-0.0546,-0.0348,0.2166,-0.3432,-0.3432,0.2238,0.3134,0.4328,0.2238,0.3732,0.5522,0.791,0.8806,0.9702,1,0.791,0.4626,0.3732,0.4328,0.4328,0.7612,0.8508,0.791,0.8208,0.7014,0.5522,0.3134,-0.1344,0.4328,0.1344,0.1044,0.1044,0.0746,-0.2538,-0.582,-0.1734,-0.1734,0.2266,0.1734,-0.12,-0.04,0.1734,0.3066,0.6,0.8934,0.4666,1,0.6534,0.44,0.1466,0.36,0.4934,0.6534,1,0.8134,0.7334,0.36,0.2266,0.2266,-0.0666,0.1466,0.44,0.28,0.0666,-0.3066,-0.04,-0.3066,0,0.3334,0.2222,0.2666,0.3556,0.1334,0.3334,0.3556,0.5778,0.6444,0.5778,0.6,0.5334,0.3334,0.4444,0.3778,0.5334,0.6666,0.8666,1,0.9778,0.8,0.6666,0.4444,0.2222,0.5334,0.5778,0.4222,0.3778,0.3778,0.3556,0.2,1,-1,-1,1,-1,-1,-1,-0.8,-1,0.1384,0.5076,0.6924,0.8462,0.7538,0.6308,0.6616,0.8154,0.7846,0.8154,1,0.9076,0.5384,0.323,0.5076,0.9384,0.5384,-0.1692,0.1384,0.5384,0.5384,0.723,0.477,0.5692,0.6308,0.6924,0.9384,0.477,0.477,0.7846,0.477,-0.4462,'12'
-0.8806,-0.2176,-0.3172,-0.1266,0.394,0.5504,0.4054,0.4594,0.1608,0.1436,0.084,0.0554,0.3058,0.1266,0.2916,0.2176,0.2944,0.687,0.6472,0.9318,0.7838,1,0.855,0.7724,0.5904,0.616,0.246,0.249,0.1778,0.155,0.2604,0.1722,-0.7998,-0.0732,-0.1748,0.0284,0.45,0.71,0.8266,1,0.423,0.3274,0.426,0.429,0.728,0.6352,0.8894,0.6592,-0.0254,0.2316,0.4858,0.6084,0.7818,0.7578,0.8594,0.5666,0.3632,0.3632,0.2826,0.0524,-0.0494,-0.3452,-0.3662,-0.435,-0.979,-0.3518,-0.4566,-0.231,0.1602,0.3254,0.9266,1,0.4882,0.4672,0.8582,0.7428,0.979,0.7506,0.3648,0.0656,-0.5906,-0.3518,-0.105,0.1496,0.1286,0.336,0.3176,0.0708,-0.021,0.0656,-0.0498,-0.1602,-0.3412,-0.735,-0.6194,-0.307,-0.9694,-0.6722,-0.2334,-0.075,0.3222,0.5112,0.8528,0.7,0.775,1,0.9334,0.4556,0.3056,0.1056,-0.3138,-0.5222,-0.775,-0.6334,-0.3944,-0.3194,-0.35,-0.4306,-0.1056,0.1916,0.175,-0.1388,-0.2834,-0.4722,-0.5944,-0.675,-0.1806,-0.0222,-0.85,-0.783,0.0016,0.059,0.3812,0.8438,0.9426,0.8884,0.7958,1,0.4258,0.1324,-0.0048,-0.1578,-0.4418,-0.5534,-0.7512,-0.5406,-0.5854,-0.5534,-0.413,-0.4768,-0.228,0.2408,0.2154,0.1068,-0.394,-0.5438,-0.6364,-0.2822,-0.2792,-0.1452,-0.7916,-0.7778,0.2176,0.2546,0.6436,1,1,0.426,0.2778,0.2546,-0.3704,-0.5092,-0.338,-0.2222,0.0416,-0.2176,-0.3564,-0.3936,-0.5046,-0.5232,-0.4352,-0.412,-0.5138,-0.0972,-0.1296,-0.2038,-0.4444,-0.412,-0.2916,-0.2222,-0.5046,-0.5926,-0.767,-0.6098,0.7832,0.7398,0.5664,1,0.9186,-0.0732,-0.1328,-0.1708,-0.794,-0.6476,-0.1112,-0.0082,0.225,0.0028,-0.3712,-0.3984,-0.5122,-0.4364,-0.485,-0.3712,-0.2792,-0.1598,-0.0786,0.3876,0.084,-0.4254,-0.2792,-0.3712,-0.3496,-0.6098,-0.8604,-0.4418,-0.2094,0.0698,0.4884,0.3954,0.3024,0.2094,0.2558,0.1628,0.1162,0.1162,0.2094,0.1628,0.0698,0.3954,0.4884,0.814,0.721,0.814,0.8604,1,0.907,0.907,0.5814,0.5348,0.3954,0.2094,0.3024,0.4884,0.2558,0.3954,-0.4616,0,0.0384,0.1924,0.2692,0.4616,0.3462,0.4616,0.3462,0.3462,0.3076,0.2308,0.3846,0.3076,0.423,0.5,0.5,0.7308,0.8076,0.6154,0.7692,1,0.923,0.8846,0.7692,0.6154,0.5384,0.3846,0.3846,0.4616,0.577,0.577,-0.6962,-0.3164,-0.443,-0.0886,0.2912,0.519,0.8734,1,0.5444,0.2406,0.7216,0.6962,0.9494,0.8482,0.6202,0.443,-0.2152,-0.1392,0.114,0.2658,0.4178,0.4936,0.6202,0.0886,-0.038,0.1392,0.0632,-0.0126,-0.1392,-0.7974,-0.5696,-0.4178,-1,-1,-1,-1,-1,-1,-1,-1,-0.788,-0.8014,-0.2716,0.5232,0.6158,0.7218,0.4702,0.4834,0.6688,0.351,0.1656,-0.1258,-0.1524,-0.0994,-0.2582,-0.404,-0.3908,-0.2052,0.086,0.2582,-0.139,-0.5496,-0.7086,-0.7748,-0.7484,-1,-1,-1,-1,-1,-1,-1,-1,-0.913,-0.9242,-0.3044,0.3868,-0.0412,0.2196,0.4738,0.5118,0.282,-0.1036,-0.4158,-0.6768,-0.7236,-0.7436,-0.7882,-0.8372,-0.8238,-0.7882,-0.6656,-0.4984,-0.5384,-0.7392,-0.728,-0.7458,-0.6454,-1,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.9868,-0.5134,-0.1816,-0.2678,-0.5062,-0.4754,-0.5386,-0.56,-0.5154,-0.663,-0.843,-0.8886,-0.8944,-0.8234,-0.7068,-0.73,-0.6934,-0.7434,-0.7268,-0.49,-0.36,-0.3368,-0.0734,-0.0868,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,1,1,1,-0.7428,-0.5142,-0.6572,-0.7714,-0.8286,-0.8572,-0.8286,-0.8,-1,-1,-0.9714,-1,-0.9714,-0.9714,-0.8,-0.5428,-0.6,-0.4572,-0.6286,-0.9142,-1,1,1,1,1,1,1,1,1,1,1,0.1522,0.13,0.111,0.1226,0.1404,0.0946,-0.0282,-0.2468,-0.3444,-0.2772,-0.64,0.6118,-0.3356,1,0.4738,0.3356,0.1818,1,0.0476,0.0476,0.381,0.4286,0.1428,0.238,0.5238,0.5238,0.4762,0.4762,0.4286,0.5714,0.4762,0.4762,0.5714,0.6666,0.6666,0.8096,0.9524,1,0.8572,0.8096,0.6666,0.4762,0.1904,0.4286,0,0.4762,0.4286,0.1428,0.238,0,-0.4368,-0.2234,0.1068,0.068,0.1068,0.0098,0.0292,0.0486,0.2428,0.4758,0.2428,0.1068,0.3398,0.3204,0.3398,0.4564,0.301,0.67,0.9224,1,0.8834,0.7476,0.6116,0.2428,-0.2816,-0.2038,0.1844,0.3204,0.4368,0.068,-0.0292,-0.534,-0.3104,-0.0804,0.4712,0.4712,0.3564,0.3104,0.2644,0.3104,0.7702,1,1,1,0.862,0.4942,0.6552,0.6552,0.4712,0.5862,0.908,0.862,0.862,0.5862,0.4252,0.0804,-0.3334,-0.5402,0.0804,0.3564,0.2414,-0.0114,0.0344,-0.2414,1,-1,-1,1,-1,-1,-0.8,-0.8334,1,-0.3566,-0.3566,-0.2588,0.3006,0.3846,-0.007,0.3426,0.2728,-0.035,0.021,-0.077,0.5664,0.5104,0.2868,0.7622,1,0.7902,0.3986,0.2168,0.2448,0.1468,0.077,-0.063,0.1468,0.2168,0.1888,0.3146,0.2728,-0.1048,-0.3286,-0.4546,-0.6784,'12'
-0.6834,0.3278,0.2944,-0.4778,0.225,1,0.8862,0.8778,0.75,0.5694,0.4056,0.5584,0.4278,0.7,0.5362,0.8084,0.5944,0.5,0.3194,0.4944,0.2972,0.3362,0.3306,0.6888,0.4666,0.4028,0.1862,0.0362,0.0778,0.4278,0.2334,-0.175,-0.6494,0.0318,-0.103,0.0012,0.3926,0.54,0.6214,0.6824,0.8322,0.8094,0.718,0.8984,1,0.7458,0.1512,0.075,-0.136,-0.052,0.113,0.0242,-0.3062,-0.3088,-0.0292,0.1462,0.1842,0.0344,-0.1054,0.0012,0.141,0.0266,-0.3114,-0.0266,-0.3978,0.3348,0.9368,1,0.1074,0.5158,0.7348,0.7768,0.6674,0.5622,0.2506,0.1368,0.1916,-0.1158,-0.2884,-0.2632,-0.1916,-0.0822,-0.0022,0.0822,0.1578,-0.12,0.0778,-0.0022,-0.1242,-0.4694,-0.4316,-0.2506,-0.3178,-0.7306,-0.7136,-0.5958,-0.3502,0.283,1,0.9874,-0.6982,0.107,0.0818,0.3836,0.3794,0.4382,-0.0818,-0.0986,0.002,-0.2578,-0.044,-0.1362,-0.216,-0.3082,-0.2202,0.1572,0.1278,0.2368,0.6226,0.5556,0.0104,-0.6436,-0.5514,-0.4676,-0.3794,-0.8532,-0.9162,-0.6772,-0.344,0.2088,1,0.9006,-0.825,-0.3598,-0.177,0.0974,0.1014,-0.0218,-0.1292,-0.01,-0.1014,-0.4116,-0.4632,-0.5348,-0.5586,-0.324,-0.0894,0.0854,0.34,0.1848,-0.2206,-0.3002,-0.4354,-0.5666,-0.5188,-0.6262,-0.5388,-0.6422,-0.9204,-0.6978,-0.2336,0.415,1,0.932,-0.542,-0.3514,-0.2834,-0.3198,-0.0976,-0.1656,-0.365,-0.0114,-0.0476,-0.3334,-0.3288,-0.3288,-0.0612,-0.2064,-0.1792,-0.0522,0.084,-0.0566,-0.2834,-0.1156,-0.3198,-0.3922,-0.6326,-0.5374,-0.3334,-0.474,-0.5736,-0.279,-0.7024,-0.2166,0.0876,0.0512,-0.2694,0.6198,0.5438,0.0842,0.5802,0.5636,0.7224,0.9074,1,0.0214,-0.4148,-0.5868,-0.59,-0.4578,-0.3918,-0.405,-0.514,-0.2958,-0.0314,-0.21,-0.309,-0.5504,-0.5372,-0.4182,-0.1404,-0.2232,-0.1272,0.2958,-0.9376,0.25,0.25,-0.375,-0.125,0.625,0.5,0.3124,0.1876,0.3124,0.1876,0,-0.0624,0.0624,-0.1876,0.3124,0.6876,1,0.8124,0.375,0.1876,0.125,0.25,0.8124,0.625,0.3124,0.1876,0.0624,0.0624,0.1876,0.1876,-0.0624,-0.3714,0.5428,0.4858,-0.0858,0.3142,0.9428,0.8858,0.6572,0.5428,0.5428,0.4286,0.3714,0.4286,0.6,0.5428,0.6,0.4286,1,0.9428,0.7714,0.7714,0.6572,0.2572,0.7714,0.7714,0.6,0.4286,0.3714,0.2572,0.7142,0.5428,-0.3142,-0.5438,0.0526,0.579,0.7192,0.614,0.5438,0.7544,0.8246,0.8948,1,0.7544,0.193,0.0878,-0.0526,-0.4386,-0.4036,-0.4386,0.0878,0.1228,-0.0176,-0.1578,-0.614,0.0526,0.2982,0.3334,-0.2632,-0.4736,-0.3334,-0.2632,-0.8596,-0.6842,-0.7544,-1,-1,-1,-0.8424,-0.8326,-0.4876,0.4778,0.6748,0.468,0.261,0.2316,0.6748,0.9014,0.537,0.5862,0.202,0.1724,0.3104,0.1922,0.0344,0.0738,-0.2118,-0.537,-0.606,-0.7142,-0.8128,-0.8226,-0.8226,-0.8128,-0.8226,-0.7832,-1,-1,-1,-1,-1,-0.888,-0.8822,-0.243,0.302,0.2106,0.0486,0.0722,0.2312,0.4756,0.8734,0.7496,-0.0398,-0.4846,-0.5022,-0.514,-0.5406,-0.6142,-0.3638,-0.3844,-0.6348,-0.6702,-0.7054,-0.7556,-0.7556,-0.782,-0.8262,-0.8498,-0.8322,-1,-1,-1,-1,-1,-0.98,-0.9534,-0.6868,-0.08,-0.0668,-0.2434,-0.37,-0.3468,-0.3534,-0.3028,-0.5068,-0.728,-0.8588,-0.8976,-0.9764,-0.9476,-0.8476,-0.6964,-0.4988,-0.5268,-0.5034,-0.5468,-0.4568,-0.5568,-0.7034,-0.8268,-0.94,-0.88,-1,-1,-1,-1,-1,-0.8,0.8,1,1,-0.8858,-0.6286,-0.3714,-0.4286,-0.6572,-0.6572,-0.0858,0.1428,-0.8858,-1,-1,-1,-1,0.3142,-0.7714,-0.7428,-0.7428,-0.9714,-0.9714,-0.9142,-0.9428,-0.9428,-0.9142,-0.4858,-1,-1,1,1,1,1,1,1,1,1,1,0.767,-0.447,-0.4848,-0.5194,-0.573,-0.6672,-0.7608,-0.7976,-0.7304,-0.6292,-0.5532,-0.56,0.9058,0.243,0.2312,0.2902,0.5406,0.5994,0.9666,-0.0798,0.2244,0.2472,-0.0152,-0.0418,-0.1406,-0.019,0.0418,0.0228,0.4866,0.9164,0.905,1,0.7034,0.4486,0.7224,0.7642,0.4562,0.479,0.8326,0.8136,0.6046,0.5096,0.3498,0.1406,-0.213,0.4486,0.502,0.384,0.365,0.1826,-0.133,0.0694,0.2464,0.2842,-0.0064,-0.0948,-0.301,-0.3264,-0.0736,-0.1622,0.4864,1,0.6422,0.6716,0.3726,0.221,0.3348,0.499,0.0484,0.541,0.8316,0.621,0.4778,0.4442,0.1874,-0.2548,-0.2926,0.5452,0.541,0.3894,0.4148,0.0652,-0.1074,0.1146,0.3242,0.4136,0.499,0.3088,0.068,0.0834,0.2816,0.3242,0.6234,0.6932,1,0.8874,0.4524,0.3748,0.398,0.2504,0.635,0.7826,0.9534,0.8524,0.697,0.5728,0.1106,-0.165,-0.3126,-0.0174,0.2932,0.3708,0.3514,0.0874,-0.1728,1,-1,-1,1,1,-1,-1,0.1334,-1,-0.4712,-0.3564,-0.2874,-0.1034,0.3104,0.4252,0.908,0.5402,-0.0114,-0.0574,-0.0344,0.3104,0.1724,0.4712,0.977,0.6782,1,0.1954,-0.0804,0.0574,-0.1494,0.4022,0.4022,0.0804,-0.3334,-0.2184,0.1954,0.1724,-0.1954,-0.1264,0.1034,-0.1034,'13'
-0.8164,-0.0292,-0.0376,0.1682,-0.0432,-0.185,-0.3268,-0.21,-0.5048,-0.3824,-0.466,-0.4408,-0.3046,-0.2462,-0.3324,-0.3964,-0.2574,-0.1322,0.3796,0.3824,0.7886,0.719,0.975,0.9722,1,0.669,0.4214,0.0542,0.1266,0.3964,0.4882,0.4576,-0.8096,0.091,0.0188,0.114,0.2554,0.7576,0.5642,0.9308,0.6104,0.5152,0.2294,0.4084,0.5874,0.7172,0.7288,0.8008,0.293,0.3132,-0.0938,-0.088,0.5556,0.5556,1,0.9192,0.697,0.5786,-0.0764,-0.1458,0.192,0.342,0.6594,0.3622,-0.4016,0.668,0.4222,0.668,0.0942,0.2622,0.8278,0.7704,1,0.6968,0.877,0.6434,0.7992,0.3688,0.123,-0.1558,-0.373,-0.2828,-0.0328,0.295,0.418,0.3156,0.2008,0.1148,-0.0696,-0.5368,-0.4468,-0.4344,-0.4016,-0.332,-0.6352,-0.627,-0.504,0.2738,0.8174,1,-0.2222,-0.004,0.3572,0.3134,0.377,0.1666,-0.0396,0.123,-0.0714,-0.135,-0.369,-0.4246,-0.488,-0.627,-0.131,0.369,0.5952,0.7104,0.3452,0.2302,-0.5,-0.4366,-0.4642,-0.4126,-0.3532,-0.5238,-0.5,-0.6866,-0.5618,0.18,0.8958,1,-0.4708,-0.167,0.0282,0.115,-0.0238,-0.0022,-0.0412,-0.0282,-0.2278,-0.2928,-0.2842,-0.5836,-0.6442,-0.4968,0.3188,0.371,0.7528,0.4578,0.2452,-0.2104,-0.358,-0.5488,-0.653,-0.7224,-0.2712,-0.3882,-0.64,-0.8742,-0.6768,0.1048,0.9082,1,-0.489,-0.0656,0.1222,-0.1266,-0.3188,-0.0918,-0.131,-0.1528,-0.3232,-0.393,-0.2532,-0.5502,-0.4498,-0.4148,0.1746,0.1834,0.7642,0.3842,0.2532,-0.4192,-0.3318,-0.4542,-0.6812,-0.476,-0.345,-0.5982,-0.7554,-0.8384,-0.874,-0.0992,0.845,1,-0.3704,0.259,0.4334,0.1476,-0.0218,0.2784,0.2154,0.2832,0.0508,-0.1574,-0.1138,-0.477,-0.5012,-0.448,0.264,0.1912,0.5012,0.2204,-0.0556,-0.0606,0.0024,-0.2882,-0.6126,-0.6272,-0.5206,-0.4818,-0.7966,-0.5448,-0.45,0.05,0.05,-0.25,-0.2,-0.4,-0.4,-0.85,-0.6,-0.35,-0.45,-0.65,-0.15,-0.2,-0.2,-0.25,-0.25,-0.1,0.4,0.5,0.65,0.6,0.7,1,0.75,0.8,0.8,0.45,0.35,0.55,0.6,0.7,-0.12,0.32,0.4,0.32,0.28,0.16,0.12,0.2,0.08,0,0.08,-0.04,0.16,0,0.04,0.08,0.12,0.12,0.44,0.64,0.8,0.64,1,0.96,0.96,0.84,0.56,0.56,0.4,0.52,0.52,0.68,-0.4358,0.1794,0.1026,0.2052,0.2052,0.359,0.6924,0.7436,0.7692,0.7692,1,0.923,0.8206,0.6924,0.3846,0.282,-0.359,-0.2052,-0.2308,0.0512,0.0512,0.1282,0.1282,0.5128,0.4872,-0.2052,-0.3334,-0.282,-0.1538,0.077,-0.1282,-0.1794,-1,-1,-1,-1,-1,-1,-1,-0.7436,-0.7948,-0.6924,-0.3076,0.5898,0.3846,0.7436,0.641,0.8462,0.718,0.3974,0.3462,0.2564,0.1794,0.0128,-0.4488,-0.3846,-0.4872,-0.5898,-0.7564,-0.782,-0.6924,-0.7564,-0.7564,-0.718,-0.7948,-1,-1,-1,-1,-1,-1,-1,-0.845,-0.8598,-0.7528,-0.048,0.2842,0.1586,0.8302,0.2066,-0.2584,-0.2804,-0.4464,-0.4798,-0.4944,-0.5276,-0.4464,-0.5018,-0.5682,-0.631,-0.6606,-0.738,-0.7454,-0.7122,-0.797,-0.7934,-0.8082,-0.8524,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.9534,-0.7268,-0.1034,-0.2588,-0.308,-0.408,-0.6428,-0.7348,-0.7854,-0.9338,-0.9738,-0.8976,-0.8238,-0.7238,-0.5868,-0.5434,-0.53,-0.7,-0.6334,-0.6868,-0.6534,-0.8468,-0.8868,-0.9068,-0.9268,-1,-1,-1,-1,-1,-1,-1,-0.6,-0.6858,1,1,-0.4858,-0.4,-0.4286,0.3428,-0.8286,-1,-1,-1,-1,-1,-0.4286,-0.8,-0.9428,-0.9714,-0.8572,-0.8,-0.8858,-0.8858,-0.8,-0.8572,-1,-0.9714,0.4566,0.473,0.5422,0.6308,0.736,0.8676,1,1,0.9454,0.7146,0.8076,0.775,0.7378,0.7104,0.6192,0.4766,0.2934,0.0166,-0.1464,-0.2268,-0.6266,0.8824,0.0628,0.2436,0.7786,0.262,0.0036,-0.3416,-0.1148,0.1804,0.246,0.1476,0.1476,0.0164,0.1804,0.246,0.0492,0.4426,0.9672,1,0.9672,0.836,0.6722,0.7704,0.9672,0.9016,0.6394,0.836,0.8032,0.6394,0.5082,0.3114,0.2132,0.3442,0.4098,0.2132,0.6066,0.5738,0.3114,0.0164,-0.2858,0.1836,-0.0204,-0.1836,-0.1224,-0.2654,-0.0612,-0.0816,-0.0408,0.2654,1,0.9388,0.8572,0.5918,0.3674,0.4898,0.898,0.7346,0.5306,0.7142,0.5306,0.204,0,-0.0408,-0.102,0.1224,0.2654,0.0816,0.3674,0.4286,0.0612,-0.1836,0,0.2222,0.1482,-0.1666,-0.1666,-0.1666,0.0556,0.1666,0.1112,0.3704,0.8148,1,0.9814,0.7778,0.4444,0.7222,0.926,0.7592,0.7222,0.963,0.8704,0.3518,0.3334,0.1482,0.1296,0.3148,0.3888,0.037,0.6112,0.574,0.3888,-0.2778,1,-1,-1,1,-1,-1,-0.6,-0.8334,-1,-0.2292,-0.1458,-0.1876,0.0834,0.375,0.625,1,0.7084,0.2916,0.3334,0.2292,0.0416,0.375,0.2292,0.2708,0.375,0.6666,0.5834,0.2916,0.1458,0.2084,0.4376,0.4792,0.1666,-0.1042,-0.3334,0.1458,0.4376,0.5416,0.2084,-0.1876,-0.375,'13'
-0.5052,0.2894,0.1684,0.5764,0.2868,0.1948,-0.2684,-0.2394,-0.0236,-0.0158,-0.421,-0.4526,-0.0632,-0.2974,-0.2526,-0.4078,-0.279,0.4106,0.5106,0.8764,0.85,0.9132,0.8106,1,0.8264,0.5894,0.4448,0.2448,0.2422,0.35,0.2342,0.4868,-0.5914,0.221,0.134,0.267,0.4916,0.8136,0.5044,0.502,0.1674,0.3026,0.0192,0.0804,0.2132,0.2132,0.3282,0.2234,0.7804,0.6194,0.6858,0.4406,0.6704,0.3512,0.3384,0.8136,1,0.456,0.5326,0.3512,0.3716,0.6066,0.576,0.0702,-0.4094,0.3694,0.2268,0.4978,0.5664,0.6576,0.7004,0.6262,0.863,0.6206,0.5606,0.6776,0.8202,1,0.9744,0.6176,0.3866,0.3866,0.4436,0.2724,-0.0272,0.0756,0.6006,0.8288,0.9002,0.7918,0.4266,0.2982,0.3496,0.4208,0.3124,0.184,-0.1792,0.5376,0.946,1,-0.0174,0.4182,0.6184,-0.1446,-0.2986,-0.1676,-0.0982,0.2602,0.7804,0.5452,0.0752,0.0444,-0.1754,-0.0674,0.3294,0.422,0.5722,0.499,0.4258,0.3642,0.0752,-0.1946,-0.5606,-0.7032,-0.553,-0.5068,-0.3872,-0.5568,-0.0878,0.456,1,0.9768,-0.3598,0.2438,0.2006,-0.4694,-0.4992,-0.6684,-0.393,0.0382,0.0382,0.1542,0.0912,-0.0548,-0.3532,0.0514,0.1674,0.3466,0.5754,0.685,0.7612,0.5258,-0.1344,-0.3864,-0.5092,-0.655,-0.6816,-0.685,-0.675,-0.685,0.0184,0.4954,1,0.9542,-0.5352,0.211,0.156,-0.373,-0.6788,-0.7094,-0.4892,-0.1988,-0.2416,-0.0152,0.0856,-0.049,-0.1224,0.1132,0.101,0.2538,0.425,0.4618,-0.052,0.0704,0.0918,-0.1804,-0.3058,-0.4556,-0.416,-0.6024,-0.734,-0.6698,-0.045,0.4724,1,0.9432,-0.5926,0.202,0.1186,-0.6762,-0.656,-0.5994,-0.4258,-0.0684,-0.0818,-0.162,-0.3022,-0.3856,-0.1018,0.1586,0.0918,0.0752,0.5326,0.5358,0.2788,-0.0584,-0.4056,-0.389,-0.3856,-0.6762,-0.6762,-0.7996,-0.8598,-0.616,-0.6316,0.1578,0,0.3158,0.1578,-0.2106,-0.4736,-0.421,0.0526,0.0526,-0.3684,-0.579,-0.3158,-0.2106,-0.2632,-0.421,-0.3684,0.0526,0.3684,0.7368,0.7894,1,0.7894,0.9474,0.7368,0.579,0.3158,0.421,0.4736,0.4736,0.3158,0.2632,-0.6112,0.2222,0.1666,0.3888,0.1666,-0.2778,-0.3334,-0.2778,-0.0556,-0.0556,-0.2222,-0.2222,-0.1112,-0.1666,-0.1666,-0.2222,-0.0556,0.2778,0.3334,0.7778,0.6112,0.8334,0.8888,1,0.7222,0.2778,0.3888,0.3888,0.1666,0.1666,0.2778,0.4444,-0.4238,0.1526,0.3898,0.4238,-0.017,0.3898,0.5254,-0.017,-0.1186,0.1864,0.1526,0.2204,1,0.8984,-0.2882,-0.2542,-0.2204,-0.5254,-0.0848,-0.0848,0.2542,0.1526,-0.2882,-0.1186,-0.0848,-0.356,-0.6272,-0.5254,-0.356,-0.017,0.322,0.0848,-1,-1,-1,-1,-1,-1,-1,-0.8666,-0.8488,-0.3778,0.4488,0.7334,0.7334,0.6444,0.7066,0.5912,0.5556,0.4578,0.4934,0.4756,0.4488,0.3244,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8394,-0.8546,0.0364,0.6788,0.4226,0.5756,0.8202,0.847,0.5908,-0.044,-0.1472,-0.1778,-0.197,-0.2198,-0.2582,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.9268,-0.34,-0.1234,-0.5264,-0.5514,-0.4476,-0.6038,-0.7126,-0.8026,-0.8738,-0.9064,-0.9164,-0.959,-0.9118,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,0.6858,-0.7428,-0.7714,-0.8,-0.8286,-0.1428,-0.0286,-1,-1,-1,-1,-0.2286,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.3332,0.3606,0.3994,0.4564,0.5328,0.6392,0.7822,0.8924,0.9006,0.456,0.5704,0.5702,0.565,0.5648,0.55,0.5148,0.4174,0.2094,-0.0598,-0.221,-0.5866,0.9764,0.6674,0.4378,0.2964,0.3728,0.4188,0.4916,-0.4782,-0.0808,-0.118,-0.1056,-0.1552,-0.2174,-0.1678,0.3168,0.031,0.3788,0.7516,0.8386,0.9504,0.6274,0.59,0.826,1,0.6646,0.1304,0.4782,0.677,0.4534,0.2796,0.3664,0.0186,0.0434,0.3914,0.2796,0.1304,-0.0684,-0.1428,-0.2796,0.0654,0.2562,0.2864,-0.005,-0.1356,-0.0954,-0.0654,-0.0654,-0.1458,0.3768,1,0.9598,0.8894,0.6884,0.6282,0.8292,0.8392,0.6784,0.2462,0.588,0.618,0.4874,0.417,0.1458,0.196,-0.0252,0.417,0.4572,0.0754,-0.0452,-0.1356,-0.417,0.0938,0.375,0.3854,-0.2708,0.0624,-0.1354,-0.0312,-0.2084,0.0208,0.698,1,0.9584,0.8334,0.6354,0.5208,0.625,0.6146,0.3334,-0.1562,0.375,0.4376,0.198,0.1458,0,0.0104,-0.1458,0.323,0.323,0.0938,-0.198,-0.177,-0.4376,0.3996,-1,-1,1,-0.2,-1,-1,-0.6,-1,0.7682,1,0.5362,0.7102,0.1304,0.3914,0.4782,0.3624,0.4492,0.5942,0.6812,0.7392,0.3044,0.3914,0.1304,0.1594,-0.1304,0.1014,0.3624,0.3044,0.3044,0.0144,0.0144,0.0724,0.1884,0.2174,0.2464,0.4782,0.2174,0.3334,-0.3624,-0.2754,'14'
-0.714,0.1774,0.1088,-0.0094,-0.1938,-0.3192,-0.5342,-0.468,-0.61,-0.435,-0.7352,-0.7588,-0.4728,-0.39,-0.4042,-0.546,-0.6242,-0.4326,0.1892,0.3948,0.9126,0.773,1,0.8274,0.7494,0.5366,-0.0426,-0.0024,0.1774,0.3026,0.4586,0.3758,-0.77,0.058,-0.0208,0.1106,0.1786,0.5554,0.288,0.4458,0.0602,0.1786,-0.0866,0.0142,-0.0142,0.0428,0.3604,0.3516,0.586,0.4918,0.7458,0.6122,0.494,0.5202,0.9256,0.8882,1,0.6626,0.1566,-0.0186,0.1698,0.4698,0.5532,-0.0032,-0.4298,0.4388,0.4418,0.7254,0.2568,0.3224,0.8388,0.6418,0.3014,0.1522,0.2986,0.7732,0.8328,0.9792,0.9104,0.612,0.5402,0.194,0.4,0.5254,0.4598,0.6806,0.9642,1,0.7074,0.2208,-0.1762,-0.206,-0.0866,-0.0776,-0.009,0.1672,-0.3784,0.3366,0.8904,1,-0.269,-0.1626,0.066,-0.4782,-0.8004,-0.8616,-0.3688,-0.2142,0.4042,0.2046,-0.1336,-0.2496,-0.3334,-0.2496,0.6232,0.7166,0.5524,0.3236,0.0596,0.124,-0.0434,-0.5588,-0.5748,-0.6618,-0.884,-0.9292,-0.8294,-0.6296,-0.2574,0.3158,0.962,1,-0.345,-0.1228,-0.1082,-0.5176,-0.5936,-0.541,-0.4006,-0.0994,0.073,0.1578,0.0906,-0.0644,-0.2778,-0.0526,0.5438,0.31,0.1286,0.0438,0.1024,0.3654,-0.0614,-0.2836,-0.541,-0.6432,-0.8596,-0.579,-0.5964,-0.5204,-0.5038,0.2576,0.9318,1,-0.6704,-0.4622,-0.572,-0.8484,-0.8296,-0.7046,-0.3598,-0.4772,-0.3598,0.0606,0.0834,-0.5114,-0.553,-0.3068,0.25,-0.019,0.1666,-0.0682,-0.0872,-0.1554,-0.2386,-0.394,-0.7728,-0.9432,-0.678,-0.75,-0.606,-0.6288,-0.602,0.4898,0.4694,0.6072,-0.0766,0.0562,0.2756,0.1582,0.153,-0.102,-0.0766,0,0.449,0.1836,0.4592,0.3062,-0.3776,-0.2908,0.2296,0.1632,-0.0052,0.0816,0.546,0.7398,0.4898,-0.1582,-0.148,-0.398,-0.1888,0.0408,0.7908,1,-0.3714,0.4858,0.5428,0.0286,-0.2572,0.0858,0.0858,-0.3142,0.0286,0.0858,0.0286,0.0286,0.0286,0.1428,0.1428,-0.0858,-0.0858,0.0858,0.0286,0.3714,0.3142,0.3714,0.9428,1,0.8286,0.5428,0.4286,0.3142,0.1428,0.0858,0.2,0.6,-0.1818,0.409,0.3182,0.3182,0.091,0.0454,0,0.0454,0.0454,0.1364,0.0454,-0.5,0,0.0454,-0.1818,0,0.1818,0.2728,0.3182,0.409,0.5454,0.6818,0.909,1,1,0.6818,0.5454,0.4546,0.3636,0.4546,0.2272,0.3182,-0.5384,0.1076,0.0462,0.2924,0.323,0.3846,0.5076,0.3538,0.2616,0.0462,0.0462,0.6,0.5384,1,0.877,0.2924,-0.0462,-0.2308,0.1692,0.077,-0.2924,-0.2924,0.2,0.077,0.077,-0.323,-0.2,-0.1076,-0.077,0.0154,0.1692,0.077,-1,-1,-1,-1,-1,-1,-1,-0.7966,-0.8532,-0.7514,-0.7176,0.2768,0.4802,0.4802,0.5142,0.8532,0.4916,0.4124,0.322,0.1752,0.1186,-0.2656,-0.6498,-0.7062,-0.7854,-0.7854,-0.8532,-0.7854,-0.8418,-0.8532,-0.8418,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8348,-0.8474,-0.6568,-0.75,-0.072,0.3306,0.856,0.6652,0.0636,-0.2076,-0.2882,-0.3516,-0.411,-0.4238,-0.4662,-0.6272,-0.6864,-0.6694,-0.6992,-0.6992,-0.6992,-0.767,-0.8306,-0.8348,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.98,-0.74,-0.8334,-0.4712,-0.379,-0.3916,-0.5222,-0.8128,-0.8444,-0.9558,-0.9454,-0.9286,-0.7832,-0.5958,-0.5468,-0.54,-0.4668,-0.5934,-0.4568,-0.6168,-0.86,-0.9668,-0.96,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5142,-0.8286,-0.4286,-0.5428,0.7714,-0.8286,-0.6858,0.1428,0.1428,-1,-0.9714,-1,-1,0.0286,-0.3142,-0.9142,-0.9142,-0.9428,-1,-0.9714,-0.8286,-0.9142,-0.6858,-0.3428,-1,-1,0.0724,0.1528,0.2086,0.2566,0.369,0.5066,0.707,0.8654,0.7506,0.4524,0.5682,0.5578,0.5272,0.5352,0.5146,0.4822,0.411,0.2044,-0.0756,-0.253,-0.6,1,-0.7754,-0.445,-0.0254,-0.1272,-0.1102,-0.9,-0.2336,0.0654,0.1588,0.0468,0.1028,-0.0468,0.3084,0.215,-0.1588,0.1776,0.9066,1,0.8692,0.7758,0.4954,0.4954,0.8878,0.7944,0.3272,0.4954,0.1962,0.3272,-0.0468,0.1402,-0.028,0.0654,0.2524,0.2524,0.2336,0.0468,-0.0842,-0.5514,-0.1182,0.2044,0.3548,0.3978,0.0968,0.1612,0.5914,0.6774,0.0108,0.1828,1,0.8924,0.4194,0.4624,0.3118,0.4838,0.4624,0.2258,0.1612,0.2258,0.1612,0.5484,0.2904,0.3334,-0.0538,0.5698,0.656,0.0968,0.2904,0.2474,0.0752,-0.1182,0.0152,0.3788,0.2424,0.0152,0.1818,0.2272,0.3788,0.606,0.1212,0.5758,0.7272,0.894,1,0.5304,0.4242,-0.0304,0.4696,0.5152,0.197,0.1212,0.5304,0.3182,0.2424,0.409,0.2878,0.3636,0.6818,0.4848,0.5454,0.6212,0.1666,-0.2576,-0.305,-1,-1,1,-1,-1,-1,-0.6666,-1,-0.3762,-0.4678,-0.3394,-0.156,0.0276,-0.0276,0.3028,0.4496,0.0276,0.0458,-0.0276,0.101,0.523,0.266,0.7982,0.7064,1,0.8166,0.3762,0.3028,0.1926,-0.2294,0.0458,-0.0092,-0.3028,-0.0458,-0.3028,-0.3212,-0.3212,-0.211,-0.0826,-0.633,'14'
-0.9896,-0.4078,-0.4244,0.0476,0.1884,0.6314,0.5446,0.6108,0.6854,1,0.911,0.3168,0.2464,0.0082,-0.058,-0.4554,-0.4554,-0.2608,-0.296,-0.0062,0.0994,0.3726,0.3044,-0.118,-0.2174,-0.41,-0.4078,-0.3602,-0.3934,-0.3748,0.1284,0.4782,-0.9696,-0.1584,-0.1172,0.1692,0.2126,0.7072,0.7658,0.8938,1,0.6876,0.7072,0.2886,0.256,-0.0086,-0.1584,-0.347,-0.3622,-0.3948,-0.063,-0.1042,0.2322,0.269,0.0044,-0.0932,-0.488,-0.4924,-0.603,-0.6096,-0.2972,-0.1344,-0.0824,0.3536,-0.9594,-0.1386,-0.1296,0.2356,0.2176,0.6348,0.6414,0.9888,1,0.486,0.2942,-0.0462,-0.0732,-0.3732,-0.4882,-0.6438,-0.5422,-0.5378,-0.2852,-0.2988,-0.0574,-0.0574,-0.2176,-0.3348,-0.7994,-0.7068,-0.7768,-0.8084,-0.3844,-0.053,-0.0756,0.1094,-0.8726,-0.3758,0.2016,0.3316,0.6436,0.6332,0.9012,1,0.844,0.394,-0.1808,-0.3264,-0.3654,-0.5708,-0.615,-0.6776,-0.6332,-0.5006,-0.5422,-0.5058,-0.316,-0.212,-0.2406,-0.4304,-0.4954,-0.7348,-0.7842,-0.7166,-0.0248,0.2822,0.2536,0.2666,-0.9474,-0.3684,0.3436,0.4736,0.5882,0.5202,0.9784,1,0.3406,-0.1578,-0.291,-0.5696,-0.61,-0.5572,-0.5696,-0.7802,-0.6688,-0.551,-0.6842,-0.5108,-0.421,-0.5046,-0.4086,-0.4148,-0.5016,-0.6904,-0.6532,-0.192,0.1394,0.356,0.4706,0.5572,-0.8208,-0.2908,0.235,0.3546,0.522,0.7888,1,0.7848,-0.016,-0.4702,-0.6176,-0.506,-0.498,-0.1992,-0.0678,-0.3904,-0.2948,-0.5258,-0.3904,-0.263,-0.3506,-0.3346,-0.4302,-0.49,-0.3028,-0.506,-0.6972,-0.0876,-0.0598,-0.1156,-0.1872,-0.1354,-0.7692,-0.1846,0.1642,0.2358,0.3076,0.9128,1,0.4666,-0.3538,-0.4206,-0.5692,-0.6102,-0.2616,-0.118,-0.0718,-0.4512,-0.0616,-0.1076,-0.7026,-0.5282,-0.2974,-0.277,-0.2206,-0.1538,-0.1846,-0.4616,-0.3948,-0.359,-0.3026,-0.0206,0.0052,-0.0052,-0.8948,-0.4736,-0.4736,0.1052,0,0.8422,0.8422,0.579,0.6316,0.9474,1,0.421,0.3158,0,0.1578,-0.0526,-0.2106,-0.2106,-0.1578,-0.2632,0.3158,0.2632,0.3158,0.1052,0,-0.1052,-0.1052,-0.1052,-0.3158,-0.3684,0.4736,0.579,-0.909,-0.3636,-0.2272,0.091,0.0454,0.8182,0.7728,0.5,0.4546,1,0.909,0.409,0.3182,0.091,0.091,-0.3636,-0.3182,-0.3636,-0.1364,0.1364,0.1818,0.4546,0.5,-0.091,-0.091,-0.1818,-0.3182,-0.3636,-0.3182,-0.5,-0.0454,0.7272,-0.5774,-0.2112,0.3522,0.2958,0.3522,0.4648,1,0.9718,0.4648,0.155,0.014,-0.5212,-0.5492,-0.493,-0.3522,-0.493,-0.5492,-0.662,-0.7746,-0.2958,-0.324,-0.4366,-0.4648,-0.324,-0.493,-0.493,-0.3802,0.155,0.2676,0.3522,0.5492,0.5212,-1,-1,-1,-1,-1,-1,-1,-1,-0.8892,-0.8824,-0.3772,0.5916,0.5156,0.4394,0.384,0.6262,0.6748,0.3356,-0.0796,-0.2456,-0.4118,-0.564,-0.8546,-0.8478,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9542,-0.9542,-0.1876,0.5426,0.6066,0.1708,0.0586,-0.0754,-0.2202,-0.4484,-0.6668,-0.7332,-0.8178,-0.8612,-0.9444,-0.9252,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.96,-0.27,-0.3358,-0.4716,-0.5316,-0.5716,-0.5686,-0.6086,-0.6544,-0.7548,-0.7814,-0.8414,-0.8388,-0.92,-0.8668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,-0.2,-0.7142,-0.8858,-0.9428,-0.9428,-0.8,-0.7714,-0.9142,-0.8858,-0.8286,-0.8286,0.6858,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.4894,-0.512,-0.5204,-0.5206,-0.5448,-0.5852,-0.6406,-0.6506,-0.617,-0.4534,-0.5334,0.7412,-0.1876,-0.16,0.108,0.9252,0.895,1,-0.6,-0.2706,0.2706,0.3648,0.3412,0.5058,0.2942,0.0352,-0.1764,0.0352,0.2236,0.0588,0.0824,0.0588,0.0118,0.6,0.9058,0.8588,0.7412,1,0.9058,0.4588,0.0352,0.1764,0.0588,-0.1058,0.2706,0.3412,0.2236,-0.1058,-0.2,-0.4352,-0.62,-0.54,0.46,0.44,0.44,0.56,-0.1,-0.14,-0.24,-0.26,0.3,0.28,-0.1,-0.2,0.04,0.68,0.96,0.88,0.64,0.94,1,-0.02,-0.3,-0.02,0.04,-0.3,0.38,0.56,0.36,-0.22,-0.08,-0.22,-0.6978,-0.2662,0.0936,0.4532,0.6258,0.5108,0.223,-0.0936,-0.2806,-0.0648,0.3238,0.4244,0.1224,0.036,0.0648,0.5252,1,0.9136,0.669,0.8706,0.8706,0.5828,0.0504,0.223,0.2806,-0.1942,0.3094,0.669,0.6402,0.108,0.0216,-0.3238,0.6246,-1,-1,1,-1,-1,-1,-0.7666,-1,-0.1428,-0.1428,0.1746,0.4604,0.4604,0.3334,0.5556,0.4286,0.3968,0.7142,0.9048,0.6826,0.7142,0.492,0.5556,0.4604,0.5874,0.5238,0.619,0.9048,1,0.9682,0.6826,0.746,0.8412,0.9682,0.9048,0.2698,0.5556,0.4604,0.1112,-0.4286,'15'
-0.7836,0.0366,-0.0092,0.2226,0.1798,0.5214,0.4054,0.6798,0.7714,1,0.6068,-0.2318,-0.4756,-0.5732,-0.5702,-0.6586,-0.6798,-0.7866,-0.6524,-0.6524,-0.0092,-0.0976,-0.0214,-0.1068,-0.5214,-0.561,-0.369,-0.3842,-0.314,-0.5274,-0.7866,-0.6342,-0.6576,0.3288,0.2124,0.541,0.4144,0.8048,0.7054,1,0.7466,0.952,0.2534,-0.274,-0.5034,-0.4828,-0.678,-0.7398,-0.7636,-0.5206,-0.452,-0.5548,-0.0446,-0.2158,-0.1712,-0.3458,-0.6816,-0.6816,-0.541,-0.3562,-0.1576,-0.4692,-0.8014,-0.7706,-0.5282,0.242,0.1172,0.4672,0.2938,0.4946,0.9208,1,0.449,0.4246,-0.3456,-0.4246,-0.3912,-0.6074,-0.4156,-0.4338,-0.589,-0.513,-0.6622,-0.6256,-0.3334,-0.2328,-0.3182,-0.4582,-0.6804,-0.5252,-0.4216,-0.4642,-0.4582,-0.452,-0.8112,-0.6378,-0.5654,0,0.4314,0.5368,0.3068,0.754,1,0.5782,0.4154,-0.3004,-0.6294,-0.5624,-0.5208,-0.639,-0.4856,-0.6486,-0.69,-0.7796,-0.7124,-0.687,-0.6198,-0.671,-0.6614,-0.5592,-0.6294,-0.5974,-0.5624,-0.5208,-0.5496,-0.8306,-0.7252,-0.607,-0.7096,-0.1612,0.7276,0.6774,0.3226,1,0.9068,0.2652,-0.2652,-0.6594,-0.6846,-0.5986,-0.6702,-0.6236,-0.5268,-0.5734,-0.466,-0.742,-0.8028,-0.871,-0.706,-0.7492,-0.5628,-0.4588,-0.5878,-0.5878,-0.5484,-0.681,-0.7096,-0.982,-0.8028,-0.5556,-0.4248,-0.1296,1,0.8756,0.2642,0.969,0.7668,-0.2538,-0.6114,-0.9586,-0.8756,-0.5336,-0.5078,-0.5026,-0.4094,-0.5596,-0.513,-0.5182,-0.4248,-0.741,-0.5648,-0.4818,-0.4508,-0.3108,-0.4922,-0.4766,-0.684,-0.7254,-0.741,-0.6944,-0.6218,-0.6944,-0.3862,0.6068,0.7724,0.7794,0.6138,0.8276,1,0.4068,-0.0482,-0.8,-0.4758,-0.3932,-0.0966,-0.1242,-0.0276,-0.2138,-0.0758,-0.3034,-0.531,-0.6896,-0.2414,-0.1242,-0.1724,0.0206,-0.2344,-0.4482,-0.5518,-0.469,-0.3724,-0.3932,-0.4276,-0.1242,0,0.7142,0.8572,0.5,0.4286,0.5,0.9286,0.9286,0.9286,1,0.6428,0.5,0.6428,0.6428,0.3572,0.4286,0.3572,0.1428,-0.5714,-0.2858,0.2858,0,0.3572,0.1428,0.2142,0.2858,0.2858,0.7142,0.6428,0.5714,0.5714,0.1428,-0.3658,0.0732,-0.0732,0.2682,0.4146,0.6098,0.5122,0.6098,0.8536,1,0.7074,0.2682,0.0244,0.0244,-0.2196,-0.1708,-0.561,-0.317,-0.1708,-0.317,0.122,0.2196,0.3658,0.0732,-0.0732,-0.0732,0.122,-0.2196,-0.2682,-0.4146,-0.561,-0.4146,-0.2238,0.2836,0.8208,0.7612,0.612,1,0.9104,0.3134,-0.015,-0.1344,-0.0746,-0.6418,0.015,0.1642,0.2538,0.194,0.1642,-0.2538,-0.403,-0.1642,-0.015,-0.3732,-0.2238,0.0448,0.015,-0.1044,0.015,-0.3732,-0.4626,-0.6418,-0.403,-0.5224,-1,-1,-1,-1,-1,-1,-1,-1,-0.8384,-0.8384,-0.7272,0.3636,0.4646,0.394,0.5152,0.5556,0.909,0.6364,0.495,0.3132,0.1414,-0.091,-0.4848,-0.697,-0.6768,-0.505,-0.606,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8354,-0.8398,-0.5282,0.7142,0.394,0.2034,0.2122,0.2988,0.3982,0.1386,-0.0866,-0.2814,-0.3506,-0.4458,-0.6148,-0.7186,-0.7446,-0.6624,-0.7056,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-1,-0.86,-0.6232,-0.7,-0.78,-0.7672,-0.7172,-0.7716,-0.7186,-0.8058,-0.8844,-0.8486,-0.8458,-0.84,-0.66,-0.9068,-0.6268,-0.89,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,-0.6858,-0.2572,0.7142,-0.9142,-1,-1,-0.9142,-0.9428,-0.9714,-0.8858,-1,-1,-0.8572,-0.8286,-0.9428,-0.9714,-0.9428,-0.6572,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.0178,-0.0092,-0.0172,-0.0426,-0.093,-0.1134,-0.1612,-0.1586,-0.2028,-0.264,-0.6,0.6824,-0.3982,-0.2988,0.7446,0.9568,0.9134,-0.9166,0.28,-0.13,0.3,0.5,0.55,0.62,0.76,0.91,0.72,0.54,1,0.8,0.65,0.7,0.48,0.46,0.65,0.65,0.74,0.59,0.46,0.47,0.61,0.58,0.59,0.24,0.49,0.43,0.45,0.27,0.22,-0.24,0.0756,-0.21,0.8824,0.7478,0.21,0.5798,0.8656,0.7478,0.5966,0.7816,0.2942,0.731,0.5798,0.5462,0.6302,0.5126,0.5294,0.4286,0.2436,0.0924,0.6134,0.479,0.0924,0.4286,0.4454,0.3278,0.4118,0.042,0.2436,0.2606,0.1092,-0.1596,0.0106,-0.0526,0.4632,0.4316,1,0.8632,0.6316,0.5684,0.6106,0.2422,0.7684,0.8,0.8316,0.621,0.2526,0.1578,0.5052,0.5368,0.6106,0.3578,0.4106,0.4316,0.6948,0.7894,0.1368,0.4422,0.1052,0.3368,0.1368,0.0632,-0.0736,-0.5578,-0.9654,1,-1,-1,-1,-1,-1,-1,1,-0.4706,-0.1176,-0.1176,0.1764,0.2942,0.5588,0.4706,0.3236,0.1764,0.353,0.5,0.3824,0.2942,0.4118,0.147,0.5588,1,0.4118,0.4706,0.6176,0.1176,-0.2058,0.1764,0.2352,0.0294,0.1176,0.0294,0.1176,0.0294,0.0588,-0.4118,-0.5588,'15'
-0.1702,0.0212,0.4042,0.383,0,0.149,0.234,-0.0638,0.0638,0.0638,0.3618,0.468,0.1702,0.0852,0.1276,0.1914,0.2978,0.0852,-0.0426,0.1064,0.0426,-0.0638,0.3404,0.8086,0.8724,0.7234,0.383,0.3618,0.468,0.8298,1,0.617,-0.3086,0.1112,0.1604,0.1358,-0.0618,0.3086,-0.0618,-0.5308,0.1358,0.037,-0.3828,-0.2346,-0.1358,0.0124,-0.7038,-0.679,0.1852,0.2346,0.1604,-0.0618,0.1358,0.3828,0.432,0.4568,0.8272,1,0.5802,0.4814,0.605,0.5308,0.5556,0.5062,-0.2812,-0.1876,0.125,0.0938,0.125,0.125,-0.125,-0.75,-0.6874,0.2188,-0.0938,-0.0312,0.0312,-0.125,0.1562,0.125,0.3438,0.4688,0.4062,0.3124,0.75,0.8438,0.9688,0.7812,1,1,0.7812,0.4376,0.6562,0.4062,0.1876,0.75,-0.282,-0.5128,0.1282,0.2564,-0.718,-0.5128,-0.8206,-0.4358,-0.0512,0.077,0.1538,0.077,0.2564,0.3334,0.3846,0.0512,0.1538,0.2564,-0.4102,0.1794,0.1282,0.5128,0.641,0.4358,1,0.9744,0.923,0.2564,0.0512,0.4358,0.4872,0.077,-0.4572,0,-0.0286,-0.0286,0,0.1428,-0.2858,-0.3714,-0.4286,-0.2572,-0.3428,-0.0858,0.2572,0.1142,-0.1428,0.2,0.2572,-0.0286,0.1428,0.0858,0.4572,1,0.7714,0.3428,-0.0572,0.5428,0.4,0.0286,0.2858,0.6286,0.9428,0.6286,-0.3846,-0.1538,-0.4616,-0.282,-0.1282,-0.0512,0.0256,0.2052,-0.2564,-0.1282,-0.4102,-0.4616,-0.5642,-0.2308,-0.6154,-0.2564,0.0256,0.0512,0.0256,0.0512,0.2564,0.7692,0.5898,0.8718,1,0.6924,0.2308,0.4872,0.282,0.718,0.5384,0.5384,-0.2786,-0.377,-0.5082,-0.5082,-0.541,0.0492,0.4754,0.4754,-0.377,0.1148,0.5082,0.377,0.2786,0.3114,0.6066,0.4098,0.2132,0.2786,0.0164,-0.1148,0.246,0.8032,0.8688,1,0.9672,0.6722,0.377,0.705,0.4754,0.7704,0.6722,0.6394,-0.037,-0.1112,0.3334,0.4074,0.037,0.037,0.3334,0.2592,0.1112,-0.1112,0.3334,0.5556,0.3334,0.1852,0.3334,0.2592,0.2592,-0.1852,-0.1112,-0.037,-0.037,-0.6296,0.4814,0.7778,0.926,0.8518,0.4074,0.4074,0.4074,0.6296,1,0.7778,-0.081,0.3514,0.1892,0.4054,0.5136,0.5136,-0.081,-0.081,0.3514,0.2972,0.027,0.081,-0.1352,0.1352,-0.081,-0.3514,0.2432,0.3514,0.4594,0.2432,0.081,0.5136,0.5676,0.3514,0.7298,1,0.8378,0.5676,0.7838,0.5676,0.7298,0.7838,-0.6956,-0.174,-0.3914,-0.6086,-0.5218,-0.2608,-0.174,0.0434,-0.087,0,-0.4782,0,0,-0.6086,-0.5652,-0.3478,0.0434,-0.3478,-0.174,0,-0.0434,0.913,0.7392,0.7392,0.4348,0.3478,0.0434,0.087,0.174,1,0.9566,0.3044,1,1,1,1,1,1,1,1,1,1,1,0.6522,0.913,0.9566,0.6522,0.3478,0.174,0.4782,0.5218,0.174,0.1304,-0.087,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.9334,0.8,0.4666,0.7112,1,0.7334,0.6444,0.6,0.4888,0.4888,0.3778,0.2888,0.4444,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3,-0.2534,-0.3534,-0.49,-0.4368,-0.67,-0.6434,-0.7134,-0.6668,-0.58,-0.6668,-0.76,-0.68,-0.57,-0.57,-0.74,-0.78,-0.81,-0.59,-0.66,-0.92,-0.98,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,-0.9142,-0.9428,-0.9142,-0.9714,-0.8572,-0.8286,-1,-0.9714,-0.9142,-0.9714,-0.9714,-0.9714,-0.9428,-1,-0.9714,-1,-0.9428,-0.9142,-0.7714,-0.7714,-0.4286,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.6624,0.6624,0.6624,0.6598,0.6598,0.469,0.357,0.396,0.4032,0.4596,0.008,0.008,0.008,0.1688,0.1688,0.2762,0.2926,0.2304,0.3146,0.2368,1,-0.8706,0.8,0.5778,1,0.7112,0.6,-1,0.084,0.5006,-0.2738,0.1114,0.0082,-0.0784,-0.0482,-0.0358,0.0248,0.4594,1,0.835,0.8996,0.6244,0.5076,0.619,0.7016,0.1678,0.6534,0.8156,0.7826,0.6864,0.5928,0.4236,0.1664,-0.3976,-0.0426,0.3054,0.2544,0.4594,0.3768,-0.1032,-0.0726,0.156,-0.1706,-0.1814,-0.2312,-0.262,-0.2594,-0.2084,-0.0658,0.3266,0.8198,1,0.9704,0.8064,0.5484,0.8078,0.8656,0.6612,0.6196,0.8212,0.7232,0.6694,0.5228,0.2298,-0.1452,-0.4302,0.008,0.0296,-0.0914,0.207,0.1492,-0.4112,-0.1802,0.4166,0.0958,-0.119,-0.1604,-0.2034,-0.1422,-0.0776,-0.1042,-0.01,0.729,0.9702,1,0.8826,0.4992,0.8166,0.9884,0.7108,0.3422,0.8034,0.7686,0.5586,0.3702,0.038,-0.39,-0.291,-0.2248,-0.21,-0.1438,0,-0.0728,-0.7206,1,1,-1,-1,1,-1,-1,1,-1,-0.2758,-0.2414,-0.3104,0.2758,0.138,0.3794,0.2758,0.4138,0.2758,0.1724,0.2758,0.9656,1,0.3104,0.3794,0.4828,0.2414,0.4138,0.4482,0.5518,0.5518,0.2414,0.069,0.2414,-0.2758,-0.0344,0.1724,0.2068,-0.3794,-0.6206,0.2068,0,'16'
-0.995,0.371,0.4938,-0.253,-0.5824,-0.5332,-0.145,-0.2776,-0.484,-0.4448,-0.4202,-0.312,-0.5184,-0.366,-0.5036,-0.4988,-0.5332,0.1008,0.1794,0.7542,1,0.7542,0.6756,0.548,0.8084,0.774,0.0516,0.3218,0.1254,0.4644,0.317,0.5332,-0.9632,0.2204,0.3346,-0.3388,-0.6,-0.5756,-0.1714,-0.3266,-0.2448,-0.253,-0.5388,-0.4122,-0.4612,-0.3552,-0.4572,-0.4408,-0.4816,0.0816,0.1224,0.7714,0.9714,0.6448,0.8734,0.7062,1,0.9918,0.404,0.5102,0.3428,0.6082,0.347,0.8122,-0.9514,0.2716,0.3774,-0.4438,-0.8454,-0.6204,-0.3246,-0.5496,-0.3908,-0.4878,-0.638,-0.563,-0.4438,-0.4482,-0.4922,-0.479,-0.6248,-0.351,-0.2804,0.2052,0.3378,0.9426,1,0.5762,0.7572,0.6026,0.4614,0.1964,0.3378,0.2626,0.4216,0.3952,-0.8632,0.2972,0.3254,-0.75,-0.934,-0.4386,-0.4198,-0.618,-0.6556,-0.75,-0.717,-0.6084,-0.5284,-0.4576,-0.4482,-0.7216,-0.8018,-0.651,-0.283,-0.1132,0.618,1,0.9386,0.651,0.434,0.6416,0.467,0.2878,0.0896,0.2972,0.2736,0.533,-0.737,0.0302,-0.0776,-0.237,-0.3836,-0.181,-0.3922,-0.3794,-0.5818,-0.6896,-0.7802,-0.6336,-0.4914,-0.4008,-0.4268,-0.5818,-0.5862,-0.4742,-0.2198,0.0948,0.6508,0.9138,1,0.944,0.75,0.6768,0.6034,0.513,0.3448,0.3276,0.513,0.6206,-0.7762,-0.3064,-0.0782,0.056,-0.5838,-0.6958,-0.6332,-0.8344,-0.6958,-0.7718,-0.7584,-0.727,-0.7046,-0.7674,-0.6824,-0.6152,-0.6466,-0.7136,-0.2706,-0.0156,0.481,0.9418,1,0.9418,0.8702,0.906,0.7404,0.5392,0.4586,0.5392,0.6196,0.812,-0.9192,-0.4494,-0.0506,-0.0252,-0.9344,-0.7576,-0.6414,-0.6464,-0.7778,-0.909,-0.8434,-0.7222,-0.5556,-0.4696,-0.5252,-0.6464,-0.5506,-0.6364,-0.5606,-0.2778,0.2626,0.7172,0.9596,1,0.9444,0.7324,0.3888,0.106,0.096,0.1516,0.4344,0.4646,-0.2122,0.8788,0.9394,0.2728,0.091,0.394,0.2728,0.2122,0.0304,0.2728,0.4546,0.2122,0.6364,0.394,-0.2728,0.1516,-0.1516,0.2122,0.5758,0.697,1,0.697,0.7576,0.7576,0.8182,0.6364,-0.2122,0.5758,0.697,0.697,0.697,0.5758,-0.4594,0.4594,0.5676,0.027,-0.6756,-0.4054,0.027,-0.027,-0.1352,-0.2432,-0.1352,-0.1352,-0.3514,-0.1352,-0.2432,-0.6216,-0.7838,0.2432,0.2432,0.7838,1,0.946,0.8918,0.946,0.946,0.8378,0.1892,0.4594,0.3514,0.6756,0.5136,0.6216,-0.5218,0.3044,0.3914,-0.2174,-0.3696,-0.3914,-0.1956,-0.3696,-0.2174,-0.3044,-0.913,-0.3914,-0.1522,-0.087,0.087,-0.1522,-0.087,0.0434,0.1522,0.3914,0.674,1,0.913,0.5218,0.413,0.4566,0.5,0.1304,0.2392,0.1304,0.5434,0.4348,-1,-1,-1,-1,-0.7962,-0.1018,1,0.9166,-0.2408,-0.6574,-0.7222,0.6112,0.824,0.787,0.713,0.537,0.3426,-0.0278,-0.2038,-0.1204,-0.2408,-0.3888,-0.4538,-0.4352,-0.3518,-0.3148,-0.287,-0.6018,-0.7408,-0.7686,-0.8518,-0.787,-1,-1,-1,-1,-1,-0.8358,-0.3544,1,0.1008,-0.3806,-0.556,-0.694,0.1082,0.8022,0.7724,0.3284,0.1902,-0.082,-0.1902,-0.0448,0.2126,0.0374,-0.4552,-0.597,-0.6156,-0.5746,-0.5746,-0.5672,-0.7126,-0.765,-0.7986,-0.8246,-0.806,-1,-1,-1,-1,-1,-0.94,-0.9168,-0.95,-0.7868,-0.4,-0.4268,-0.6668,-0.5926,-0.3376,-0.3426,-0.35,-0.3134,-0.3934,-0.3956,-0.1624,-0.1446,-0.1556,-0.2824,-0.41,-0.54,-0.63,-0.6534,-0.5268,-0.7068,-0.7968,-0.83,-0.9168,-0.7568,-1,-1,-1,-1,-1,-0.1714,0.8286,0.0858,-0.6,-0.6,-0.8,-0.3142,1,-0.1714,-0.6286,-0.6572,-0.6286,-0.9142,-1,-0.9142,-1,-0.6286,-0.4,-0.7714,-1,-1,-0.9428,-0.9142,-0.8572,-0.9428,-1,-1,-0.4858,-1,0.3414,0.321,0.3214,0.3266,0.3534,0.3308,0.3364,0.3056,0.216,0.2414,0.5492,0.579,0.6006,0.6068,0.6136,0.674,0.7332,0.7912,0.7766,0.819,-0.8266,0,-0.7276,-0.5708,0.1754,0.4626,0.6194,-0.65,0.9372,0.5086,0.2228,0.3428,0.4914,0.3714,0.6458,0.6172,0.7658,0.8228,0.7142,0.7772,0.6514,0.4514,0.5372,0.6972,0.7486,0.6228,0.6914,0.8572,0.8,1,0.8286,0.8628,0.7714,0.7486,0.7886,0.7542,0.4972,0.4972,0.3772,-0.0628,0.1442,-0.0786,0.1834,0.1398,0.0262,0.0742,0.1572,0.1528,0.358,0.4628,0.5808,0.6986,0.4672,0.31,0.4324,0.6768,1,0.904,0.7248,0.5938,0.5372,0.6944,0.5634,0.4324,0.166,0.524,0.6158,0.1878,0.179,0.083,0.035,-0.2838,-0.1186,-0.1006,-0.1678,-0.0738,-0.132,-0.0202,0.1544,0.1186,0.1364,0.566,0.6644,0.5974,0.4854,0.2394,0.123,0.5884,1,0.821,0.8524,0.8478,0.6958,0.4272,0.3288,0.2438,0.0022,0.405,0.5392,0.2438,0.4004,0.3602,0.0246,-0.4138,1,-1,-1,1,-1,-1,-1,0.1666,-1,0.0322,0.3064,0.0484,0.0484,0.0162,0.0806,0.0484,0.2096,0.0646,0.0162,0.5646,1,0.6774,0.242,0.2904,0.2904,0.871,0.8388,-0.0322,0.3064,0.3388,-0.3388,-0.2258,-0.129,-0.2258,0.258,0.1452,0.0484,0.0484,-0.1612,-0.3548,-0.6612,'16'
-0.8746,0.18,0.283,-0.389,-0.6366,-0.479,-0.2958,-0.463,-0.3602,-0.4438,-0.418,-0.4406,-0.389,-0.2572,-0.5144,-0.3312,-0.2412,0.2668,0.3794,1,0.9486,0.6848,0.8296,0.434,0.5274,0.3086,0.2058,0.0932,0.357,0.3248,0.0676,0.1544,-0.9152,0.0674,0.1746,-0.3142,-0.5512,-0.6434,-0.217,-0.2992,-0.434,-0.409,-0.4638,-0.2892,-0.4564,-0.0872,-0.202,0.01,0.0424,0.596,0.7282,0.6882,1,0.8604,0.2942,0.3068,0.0598,0.1946,0.0174,0.3292,0.1996,0.399,0.394,0.374,-0.9848,0.2432,0.3648,-0.2218,-0.0122,-0.2918,0.0912,-0.1094,-0.313,-0.3526,-0.1762,-0.0972,-0.0182,0.237,0.2098,0.5836,0.4468,0.5228,0.6382,0.6534,1,0.9544,0.386,0.2462,0.0212,0.0942,0.0516,0.228,0.2462,0.3678,0.3496,0.5776,-0.5676,0.5764,0.5022,0.7162,0.5546,0.1834,0.0394,0.0786,-0.0698,0.1398,0.3712,0.5676,0.6114,0.4978,0.3014,-0.0612,0.0306,0.2314,0.5022,0.8428,1,1,0.4848,0.1136,0.1004,-0.0394,-0.0132,0.179,0.4498,0.4586,0.214,0.4324,-0.403,0.3006,0.8124,1,0.1642,-0.241,0.1172,0.1472,0.3092,0.6504,0.548,0.211,0.0788,-0.305,-0.3134,-0.484,-0.5522,-0.4626,-0.3134,-0.1684,0.3432,0.2494,0.0746,-0.2878,-0.2196,-0.4116,-0.5054,-0.194,-0.2622,-0.0874,-0.3476,-0.0704,-0.5908,-0.0792,1,0.9694,-0.1304,0.3248,0.2942,0.2174,0.8824,0.867,-0.0076,-0.1816,-0.5498,-0.6522,-0.4118,-0.5396,-0.6062,-0.5704,-0.6214,-0.468,-0.509,-0.2276,-0.156,-0.4168,-0.3554,-0.5498,-0.8466,-0.5346,-0.3914,-0.3504,-0.7494,-0.2378,-0.6686,-0.1382,1,0.9614,-0.3314,0.21,0.1104,0.2596,-0.1878,-0.2652,-0.4918,-0.2984,-0.6188,-0.4144,-0.3536,-0.5746,-0.5028,-0.7238,-0.674,-0.8232,-0.757,-0.536,-0.3978,-0.3204,-0.0718,-0.674,-0.6354,-0.779,-0.989,-0.3868,-0.569,-0.4254,-0.2,0.5334,0.5334,0.2666,0.0666,0.1334,-0.0666,0.1334,0.1334,0,0.2,0.1334,0.0666,0.0666,0.0666,-0.4666,-0.6,-0.1334,0.3334,0.4,0.2666,0.2666,1,1,0.5334,0.6666,0.6,0.2,0.3334,0.2,0.2666,0.4,-0.7074,0.3658,0.4146,-0.2682,-0.3658,-0.3658,-0.122,-0.3658,-0.0244,-0.0732,-0.2196,-0.2682,-0.4634,-0.317,-0.4634,-0.2196,-0.2682,0.317,0.4634,0.9512,0.9512,0.8536,1,0.8048,0.756,0.5122,0.3658,0.2196,0.561,0.561,0.2682,0.2682,-0.8426,0.0562,0.1686,-0.2808,-0.3932,-0.5956,-0.1686,-0.2134,-0.573,-0.4832,-0.4832,-0.2134,-0.4158,-0.0338,-0.0786,0.1236,0.191,0.6404,0.8652,0.6404,1,0.9776,0.0338,0.1012,-0.146,0.191,0.0338,0.3484,0.3258,0.3034,0.4606,0.3708,-0.8364,-0.8438,-0.8736,-0.8066,-0.8736,-0.829,-0.725,-0.6728,-0.71,-0.725,-0.762,0.3382,0.6432,0.658,0.539,0.5242,0.2936,0.6208,0.8142,0.3382,0.0112,-0.2044,-0.4722,-0.4944,-0.5986,-0.7174,-0.7844,-1,-1,-1,-1,-1,-1,-0.9084,-0.9018,-0.7426,-0.5028,-0.241,-0.518,-0.326,-0.3042,-0.4286,-0.7012,-0.8124,-0.0448,0.5748,0.9106,0.747,0.156,-0.18,-0.23,-0.2366,-0.4002,-0.6074,-0.7012,-0.7732,-0.7622,-0.8212,-0.8756,-0.8778,-1,-1,-1,-1,-1,-1,-0.9496,-0.9868,-0.9068,-0.6568,0.38,0.5866,0.6166,0.62,0.4532,-0.02,-0.66,-0.36,-0.151,-0.0674,0.1472,-0.291,-0.4038,-0.6782,-0.751,-0.8168,-0.8018,-0.83,-0.8134,-0.7534,-0.8134,-0.9634,-0.8834,-1,-1,-1,-1,-1,-1,-0.5142,-0.4572,1,0.6858,0.5714,-0.6572,-0.8572,-0.9428,-0.0286,0.6,0.2572,1,-0.4572,-0.2286,-0.5714,-0.5714,-0.6286,-0.7428,-0.9142,-0.7428,-0.7714,-1,-0.8858,-1,-1,-0.8858,0,-1,-1,-1,-1,-1,-1,0.3068,0.325,0.3164,0.2996,0.3098,0.3018,0.3456,0.4216,0.5094,0.5352,0.5442,0.5616,0.5674,0.562,0.5582,0.5228,0.4284,0.2724,0.0334,-0.1522,-0.7734,0.3412,-0.8298,-0.7296,-0.121,0.1472,0.2628,-0.4334,-0.288,-0.291,-0.195,-0.1702,-0.1362,-0.0278,0.0216,0.1424,0.1208,0.1486,0.4736,0.7832,0.8422,0.7338,0.8236,0.8668,0.8916,0.9752,0.9846,1,0.9566,0.901,0.7368,0.8514,0.7244,0.5326,0.6996,0.6532,0.4366,0.4644,0.514,0.3684,-0.49,-0.278,-0.2866,-0.2608,-0.3124,-0.2292,-0.169,-0.2378,-0.2206,-0.0774,0.169,0.5014,0.7594,0.6418,0.659,0.6848,0.9054,0.7966,1,0.9856,0.9112,0.7736,0.8194,0.7564,0.619,0.4842,0.3668,0.4126,0.3896,0.2206,0.341,0.1002,-0.2892,-0.1158,-0.1158,-0.1736,-0.2562,-0.1488,-0.0372,-0.0248,-0.062,0.091,0.3802,0.8512,0.9504,0.9338,0.781,0.6942,0.9214,1,1,0.8388,0.814,0.752,0.6776,0.719,0.4628,0.3348,0.3678,0.5414,0.657,0.376,0.091,-0.157,0.3174,-1,1,-1,-0.8,-1,-0.4,0.5,-1,0.4864,1,0.7028,0.973,0.7028,0.2162,0.4324,0.7568,0.027,-0.1352,0.2702,0.5406,0.946,0.4594,0.3244,0.1622,0.1352,0.4594,-0.027,0.2432,0.2972,0.3514,0.3244,0.1892,0.2972,0.3514,-0.027,-0.027,0.1352,-0.3514,0.1622,-0.6486,'17'
-0.8484,0.1642,0.2172,-0.6388,-0.692,-0.457,-0.3132,-0.6642,-0.5606,-0.75,-0.5732,-0.5782,-0.3334,-0.4596,-0.5782,-0.6186,-0.1162,0.1894,0.9218,1,0.7828,0.8586,0.543,0.702,0.3484,0.3536,0.1718,0.4696,0.4368,0.9672,0.9166,0.3662,-0.7914,0.2986,0.3334,-0.3362,-0.3188,-0.2522,-0.2,-0.4,-0.3044,-0.687,-0.6058,-0.2724,-0.113,-0.226,-0.084,0.2464,0.513,0.5304,0.8724,0.771,1,0.7798,0.5072,0.3276,0.1362,0.0406,0.1826,0.2666,0.7826,0.7682,0.484,0.4956,-0.5756,0.4366,0.3218,0.4782,0.2348,-0.2522,-0.3704,-0.2174,-0.12,-0.0956,-0.0574,0.3148,0.5686,0.527,0.0886,0.0226,-0.1026,0.0644,0.3566,0.6418,0.774,1,0.76,0.0434,-0.0922,-0.106,0.12,0.5582,0.6522,0.5756,0.1582,-0.3148,-0.457,0.2122,0.8508,1,-0.109,-0.2658,-0.0326,0.1128,0.1472,-0.0096,0.6022,0.7974,0.2964,-0.197,-0.3576,-0.4188,-0.6252,-0.4914,-0.3194,-0.2198,0.0134,0.3538,0.2772,-0.1358,-0.3844,-0.2848,-0.1586,0.3002,0.4684,0.4034,-0.2276,-0.4494,-0.519,-0.0782,1,0.9078,-0.483,-0.1102,-0.034,0.1784,0.4348,0.2064,-0.2264,-0.1984,-0.1904,-0.2024,-0.2786,-0.6554,-0.6112,-0.6032,-0.3788,-0.459,-0.4228,-0.2586,-0.1944,-0.3548,-0.483,-0.4468,-0.6112,-0.3426,-0.2666,-0.3948,-0.8598,-0.8678,-0.6088,-0.0858,1,0.8594,-0.556,-0.4022,0.3582,0.499,-0.0902,-0.2396,-0.6264,-0.345,-0.3934,-0.3054,-0.2264,-0.5428,-0.4418,-0.5472,-0.855,-0.9956,-0.5604,-0.4726,-0.578,-0.1736,-0.2352,-0.6572,-0.7186,-0.8154,-0.8066,-0.5692,-0.5604,-0.6572,-0.4112,0.8528,0.7836,1,0.1602,0.4286,0.2294,0.645,0.6796,0.1602,-0.2294,0.065,0.0304,0.1948,0.6364,0.1516,-0.0562,-0.316,-0.8268,-0.3506,0.0476,-0.1516,-0.091,0.1082,0.0044,-0.3766,-0.0822,-0.0216,-0.316,-0.5152,-0.5498,-0.3594,-0.3124,0.4376,0.5,0.125,0.0624,-0.3124,-0.1876,-0.1876,0.1876,-0.1876,-0.0624,0.125,0.125,0.375,0.4376,0.3124,-0.1876,0.375,0.375,0.5624,0.75,0.75,0.625,0.8124,0.875,0.6876,0.25,0.25,0,0.875,1,0.5624,-0.4884,0.4418,0.5348,-0.1628,-0.3024,-0.3954,-0.1162,-0.3488,-0.5348,-0.4418,-0.2558,-0.1162,0.1628,0.1162,-0.3954,-0.3024,-0.0232,0.1628,0.628,0.8604,0.814,0.6744,0.7674,0.8604,0.7674,0.5348,0.5814,0.5814,0.814,1,1,0.721,-0.6,0.3,0.3334,-0.3666,-0.3666,-0.0666,-0.1334,-0.4,-0.3,-0.6,-0.4,-0.1666,-0.1666,-0.2666,-0.3334,0.8334,0.9666,0.2666,0.4666,0.7334,1,0.7,0.6666,0.2666,-0.0334,-0.4666,0,0.2,0.7666,0.5334,0.6334,0.4334,-0.8978,-0.8724,-0.7958,-0.8128,-0.7192,-0.7788,-0.7702,-0.7702,-0.7362,-0.7362,-0.8128,0.549,0.4468,0.2766,0.2256,0.4212,0.7446,0.4128,0.2,0.0212,-0.1234,-0.5234,-0.7106,-0.8042,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9032,-0.8976,0.1294,0.2176,-0.1806,-0.1636,0.0184,-0.2092,-0.3514,-0.6416,-0.7952,0.4026,0.5676,-0.0014,-0.1322,-0.121,-0.081,-0.3456,-0.4794,-0.5648,-0.6274,-0.7838,-0.8264,-0.8406,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9868,-0.58,0.1266,0.6532,0.69,0.54,0.66,0.45,0.0032,-0.67,-0.3472,-0.1286,-0.3744,-0.4386,-0.6958,-0.8616,-0.863,-0.8616,-0.843,-0.863,-0.8108,-0.8268,-0.9334,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,0.5428,1,1,-0.6,-0.8572,-0.8858,-0.8858,0.1714,0.6572,0.2858,1,-0.6286,-0.5428,-0.8,-0.7714,-0.7142,-0.8572,-0.8,-0.9428,-0.9428,-0.8286,-0.9714,-0.9714,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.0768,0.13,0.1248,0.1358,0.157,0.1702,0.1502,0.1892,0.211,0.3418,0.5588,0.5608,0.5514,0.528,0.4966,0.4342,0.3422,0.1836,-0.0022,-0.1984,-0.6,0.7058,-0.8208,-0.7212,0.0954,0.431,0.8492,-0.175,-0.6046,-0.4576,-0.4968,-0.3366,-0.2908,-0.2058,-0.062,-0.1634,-0.0654,0.2254,0.402,0.5916,0.817,0.7222,0.598,0.7418,0.7974,0.8726,0.9542,0.8986,1,0.9674,0.8594,0.5948,0.6078,0.6176,0.487,0.4706,0.3072,0.0424,0.0948,-0.2288,-0.5958,-0.538,-0.2888,-0.2834,-0.3124,-0.3754,-0.2546,-0.2336,-0.2048,-0.0184,0.3308,0.3938,0.8294,0.8714,0.6692,0.6876,0.8242,0.8426,0.8032,0.9606,1,0.8976,0.8242,0.798,0.6956,0.6456,0.6142,0.5932,0.4094,0.1864,0.294,0.0734,-0.2748,-0.2204,-0.214,-0.0958,-0.0798,-0.1086,0.0256,0,-0.0384,0.3322,0.556,0.837,0.9106,0.8306,0.7284,0.6838,0.9042,1,0.8722,0.8498,0.885,0.738,0.7124,0.6038,0.5048,0.5654,0.5464,0.444,0.3642,0.1054,-0.1118,-0.3482,1,-1,1,-1,-1,-1,-1,0.7666,-1,0.6072,0.75,0.4286,0.6428,0.7858,1,0.9642,0.8572,0.5358,0.4642,0.8928,0.6786,0.5,0.5358,0.75,0.6428,0.8928,0.5714,0.1072,0.75,0.7858,0.6428,0.8572,0.7142,0.6428,0.6428,0.2858,0.25,0.2142,0.1072,-0.6428,-0.5358,'17'
-0.9488,-0.617,-0.3934,-0.2492,0.0598,0.3516,0.765,0.7252,0.7896,0.9716,1,0.655,0.3688,-0.0426,-0.1034,-0.1886,-0.3422,-0.3328,-0.181,-0.0862,0.1394,0.181,0.1318,-0.2018,-0.3062,-0.5166,-0.1318,0.3688,0.4636,0.5166,0.78,0.7838,-0.952,-0.3956,-0.4326,-0.1182,0.0794,0.4788,0.6654,1,0.8354,0.8762,0.6802,0.6248,0.3974,0.196,-0.011,-0.1498,-0.3548,-0.1498,-0.0166,0.1774,0.2126,0.0628,-0.1294,-0.2014,-0.3974,-0.475,-0.1386,0.1866,0.316,0.4714,0.4492,0.4898,-0.931,-0.3098,-0.337,-0.1808,0.1062,0.5332,0.6366,1,0.8746,0.6858,0.624,0.802,0.7348,0.4786,0.3116,0.0644,-0.0118,0.1698,0.1136,0.208,0.0626,-0.2298,-0.2862,-0.3896,-0.397,-0.248,-0.337,-0.0028,0.2298,0.4496,0.4242,0.228,-0.9698,-0.5742,-0.2008,-0.122,0.2472,0.566,0.7658,0.5418,0.56,0.5438,0.6368,0.9394,1,0.887,0.6388,0.215,0.2976,0.3118,0.106,-0.0414,-0.122,-0.2594,-0.342,-0.3906,-0.455,-0.8102,-0.4954,0.0676,0.328,0.2654,0.116,-0.1604,-0.9234,-0.6404,-0.0064,-0.083,0.0958,0.6064,0.4872,0.1192,0.532,0.3702,0.417,0.7958,0.951,1,0.4936,0.5766,0.6042,-0.134,-0.1958,-0.3808,-0.3872,-0.383,-0.4382,-0.4596,-0.4788,-0.6148,-0.4382,0.0426,0.1148,-0.2064,-0.4192,-0.4618,-0.903,-0.584,0.1372,0.0472,-0.0686,0.4232,0.2624,0.0094,0.3216,0.1844,0.48,0.8818,0.9764,1,0.4658,0.3736,0.312,-0.4326,-0.5958,-0.48,-0.4516,-0.532,-0.539,-0.4066,-0.4066,-0.5296,-0.539,-0.4658,-0.4822,-0.494,-0.5862,-0.7186,-0.889,-0.6586,-0.0014,-0.044,-0.084,0.5648,0.4992,0.044,0.1238,0.0754,0.3342,1,0.9402,0.7838,0.3598,0.2348,0.138,-0.1096,-0.266,-0.6586,-0.4908,-0.4822,-0.3742,-0.249,-0.2916,-0.485,-0.2916,-0.3456,-0.485,-0.5534,-0.65,-0.6244,-0.3114,-0.377,0.0164,0.0164,0.1476,0.541,0.6394,0.7704,0.8688,1,1,0.6722,0.4754,0.082,0.1804,-0.0492,-0.1804,-0.0492,0.082,0.082,0.4754,0.5082,0.4426,0.082,0.0164,-0.082,-0.1148,0.6394,0.7704,0.7378,0.7704,0.8032,-0.7022,-0.6596,-0.4468,-0.3192,-0.0638,0.234,0.4894,0.7022,0.7446,1,0.9574,0.4042,0.0638,0.149,-0.2766,-0.3192,-0.234,-0.3618,-0.2766,0.0212,-0.0212,0.4042,0.234,-0.1064,-0.5744,-0.5744,-0.4894,0.5744,0.7022,0.7446,0.7446,0.5744,-0.9702,-0.5224,0.0448,0.0448,0.0448,0.6418,0.5224,0.1344,0.4626,0.3732,0.4926,1,0.9702,0.9702,0.4926,0.582,0.582,-0.194,-0.2836,-0.582,-0.612,-0.612,-0.3732,-0.4626,-0.7014,-0.7314,-0.4626,0.0746,0.2538,-0.2238,-0.6716,-0.4626,-1,-1,-1,-1,-1,-1,-1,-0.7816,-0.839,-0.8276,-0.3678,0.3908,0.2644,0.6322,0.6206,0.6322,0.7816,0.5402,0.184,0.0344,-0.1264,-0.3678,-0.4942,-0.6782,-0.7586,-0.7932,-0.7932,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9448,-0.9504,-0.8952,-0.2538,0.4648,0.1242,0.411,0.411,0.3062,0.1462,-0.1006,-0.4552,-0.5918,-0.6814,-0.7944,-0.8372,-0.84,-0.818,-0.818,-0.8304,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.893,-0.9668,-0.9268,-0.5834,-0.4638,-0.4588,-0.4876,-0.5884,-0.473,-0.5096,-0.6154,-0.7848,-0.7518,-0.8436,-0.9072,-0.92,-0.79,-0.7168,-0.52,-0.48,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5714,-0.7142,1,1,1,-0.8858,-0.7714,-0.7428,-0.7714,-0.8,-0.9428,-0.6286,-1,-1,-1,-0.8286,-0.4572,-0.4,-0.8572,-0.6858,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.5432,-0.5482,-0.5958,-0.6422,-0.6618,-0.6824,-0.719,-0.7884,-1,-1,-0.68,1,-0.3228,0.7696,1,0.349,0.251,0.4416,-0.2728,0.0454,0.3636,0.7272,1,1,0.7272,0.3182,0.2272,0.3182,0.6364,0.5454,0.2272,0.4546,0.8636,1,0.9546,0.7272,0.7728,0.909,0.3182,0.091,0.6364,0.7272,0.7728,0.8182,0.8182,0.7272,0.5454,0.3636,0.2272,-0.2728,-0.5,-0.0218,0.1086,0.6304,0.8914,1,0.6086,0.087,-0.1522,0.0652,0.4348,0.3696,0.1522,0.326,0.6304,0.8914,0.8696,0.3044,0.6086,0.6956,-0.0652,-0.1522,0.3044,0.413,0.5434,0.6522,0.7174,0.4566,0.2608,0.3478,0.1304,-0.174,-0.3514,-0.081,0.4234,0.7478,1,0.91,0.5496,0.2252,0.1352,0.2612,0.4774,0.3694,0.2432,0.3694,0.6576,0.8018,0.6756,0.4954,0.5496,0.3514,0.1172,-0.1532,-0.009,0.1172,0.3694,0.2792,0.2612,0.2612,0.1172,0.1892,-0.009,-0.2252,1,-1,-1,1,-1,-1,-1,-0.8334,1,-0.3968,-0.5238,-0.1746,0.1588,0.2222,0.0634,0.5396,0.7936,0.4762,1,0.746,0.635,0.8096,0.7142,0.8572,0.8572,0.4444,0.3174,0.1746,-0.0634,0.0158,-0.0158,-0.3174,-0.0952,-0.0158,-0.1428,0,-0.0634,-0.0158,-0.0318,-0.1112,-0.6984,'18'
-0.698,-0.1732,-0.2706,-0.4062,-0.076,0.082,0.5826,0.6514,0.848,0.8176,1,0.8116,0.3454,-0.0982,-0.2746,-0.3496,-0.3496,-0.3758,-0.0618,0.0618,0.3556,0.4204,0.084,0.0274,-0.0618,-0.1328,0.0274,-0.0862,-0.307,-0.4812,-0.2988,0.1388,-0.7334,-0.1144,-0.2004,-0.0116,0.2948,0.5048,0.8322,0.9622,0.8132,0.8846,0.998,1,0.4018,0.276,-0.1374,-0.2214,-0.108,0.0326,0.2654,0.2256,0.3516,0.2696,0.0052,-0.2278,-0.1648,-0.1102,-0.022,-0.2152,-0.595,-0.3768,-0.169,0.1396,-0.6934,-0.0846,-0.1996,-0.026,0.4476,0.5896,0.9526,1,0.7272,0.691,0.8534,0.9144,0.8242,0.6348,0.08,0.0394,0.256,0.4746,0.558,0.3912,0.0012,-0.159,-0.2468,-0.2176,-0.1748,-0.407,-0.5446,-0.673,-0.54,-0.0756,0.1386,0.1658,-0.7074,-0.2938,0.034,0.097,0.493,0.8486,0.9446,0.6696,0.5308,0.5688,0.72,0.8966,1,0.836,0.3972,0.2964,0.3494,0.319,0.266,0.1678,-0.1324,-0.0568,-0.024,0.0442,-0.0466,-0.3922,-0.7478,-0.8284,-0.425,-0.2006,-0.1954,-0.3746,-0.6918,-0.285,0.205,0.208,0.4792,0.9784,0.8922,0.4854,0.433,0.3776,0.4176,1,0.9384,0.8984,0.5224,0.4546,0.171,-0.2882,-0.393,-0.3004,-0.1864,-0.1956,-0.4422,-0.3652,-0.4422,-0.7966,-0.8244,-0.8212,-0.6024,-0.7782,-0.8706,-0.923,-0.7818,-0.2694,0.2198,0.3024,0.6396,0.795,0.772,0.362,0.1802,0.2,0.3158,0.9472,1,0.9736,0.6892,0.481,-0.091,-0.2,-0.3652,-0.686,-0.4016,-0.319,-0.2694,-0.3818,-0.686,-0.6232,-0.7356,-0.6264,-0.752,-0.7586,-0.8842,-0.8182,-0.708,-0.0178,0.077,0.1282,0.7476,0.862,0.9526,0.6174,0.3334,0.1006,0.428,0.6726,1,0.57,0.5424,0.2348,0.0808,0.0928,-0.0178,-0.1716,-0.5306,-0.361,-0.4478,-0.2308,-0.4358,-0.503,-0.5582,-0.4398,-0.4398,-0.641,-0.9212,-0.9212,-0.45,0,-0.1,-0.05,-0.1,0.5,0.5,0.95,0.75,1,0.9,0.95,0.65,0.25,0.1,-0.15,-0.1,-0.1,0.2,0.25,0.3,0.4,0.2,0.3,0.35,0.3,0.45,0.5,-0.1,0.05,0.2,0,-0.5714,-0.1428,-0.238,-0.1428,0.238,0.4762,0.7142,0.9524,1,1,0.8572,0.9048,0.381,0.381,-0.238,-0.2858,-0.0476,-0.1904,0.1904,-0.0476,0.0952,0.5714,0.619,0.1428,0.238,0.238,0.3334,0.1428,0.0476,-0.2858,-0.0952,0.4286,-0.4666,-0.2,0.0666,0.1556,0.3778,0.5778,0.6222,0.5778,0.4666,0.5556,0.7112,0.8444,1,0.7334,0.4,0.2444,0.4222,0.4888,0.4666,0.3112,0.1112,0.1778,0.2666,0.4,0.0222,-0.3556,-0.4888,-0.4222,-0.1778,0.1556,0,-0.2,-1,-1,-1,-1,-1,-1,-0.875,-0.866,-0.7142,-0.6518,-0.2858,0.3482,0.3482,0.8036,0.8482,0.7142,0.5714,0.375,0.1428,0.0268,-0.1428,-0.3036,-0.6786,-0.8036,-0.8124,-0.8482,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9424,-0.9276,-0.7732,-0.525,0.0304,0.6598,0.4954,0.6878,0.5892,0.3542,0.0386,-0.272,-0.4806,-0.5908,-0.65,-0.76,-0.8784,-0.8916,-0.862,-0.834,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9868,-0.94,-0.7934,-0.5734,-0.49,-0.5174,-0.488,-0.552,-0.58,-0.5574,-0.5894,-0.8094,-0.8726,-0.9064,-0.9288,-0.92,-0.96,-0.8968,-0.76,-0.6168,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,-0.4858,0.2286,0.5428,0.3714,-0.0858,-0.8,-0.7714,-0.8286,-0.9142,-0.6858,-0.6858,-1,-1,-1,-0.6858,-0.5714,-0.6572,-0.7428,-0.8286,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.1916,-0.1698,-0.1734,-0.1792,-0.2176,-0.26,-0.385,-0.5622,-0.836,-1,-0.5466,0.8706,0.2046,0.1438,0.9178,0.7666,0.6944,-0.9666,0.1776,-0.187,0.4672,0.4766,0.5514,0.6168,0.729,0.8786,0.9626,0.785,0.6822,0.729,0.6728,0.6916,0.5608,0.187,0.2242,0.1496,0.2524,0.458,0.2898,0.4766,0.4672,0.2242,0.458,0.7102,0.6916,0.056,-0.1028,-0.0186,0.1496,-0.4112,0,-0.015,0.4736,1,0.8422,0.812,0.7594,0.6466,0.2632,0.421,0.564,0.7142,0.6842,0.3384,0.3984,0.391,0.6466,0.5414,0.5414,0.3384,0.2858,0.376,0.4812,0.3984,0.4662,0.4962,0.4136,0.376,0.173,0,0,-0.3534,-0.4384,-0.1636,0.196,0.7576,0.7818,1,0.6566,0.0424,-0.0262,0.1152,0.5596,0.6122,0.1596,0.2566,0.2768,0.4626,0.5758,0.5434,0.6162,-0.0626,-0.2162,-0.3212,0.1354,0.301,0.3536,0.3536,0.3374,0.2364,0.1516,0.1354,-0.3454,-0.701,-0.9704,1,-1,-1,-1,-1,-1,-1,-1,-0.4216,-0.6144,-0.229,-0.0362,0.1084,0.2772,0.3734,0.3494,0.012,0.4458,0.3494,0.4458,0.494,0.5904,0.518,1,0.6144,0.3734,0.6144,0.518,0.0844,0.0602,-0.229,-0.229,0.0362,-0.012,-0.253,0.012,-0.1566,-0.229,-0.3494,-0.6386,'18'
-0.939,-0.4132,-0.3896,-0.122,0.1126,0.2958,0.2816,0.324,0.23,0.2394,0.23,0.2348,0.399,0.3428,0.3474,0.446,0.5774,0.676,0.8028,0.8122,0.9108,0.8686,1,0.8028,0.7794,0.662,0.4648,0.3098,0.46,0.5446,0.615,0.6666,-0.9258,-0.393,-0.4498,-0.0436,0.0918,0.3538,0.31,0.5328,0.2008,0.2532,0.1572,0.2882,0.2096,0.2794,0.3014,0.5022,0.7904,0.7162,0.6376,0.6856,0.7424,0.8472,1,0.6944,0.476,0.4934,0.4454,0.3842,0.345,0.4498,0.7162,0.7248,-0.8264,-0.1166,-0.1266,0.0818,0.2804,0.9652,0.9008,0.9256,0.8462,0.6476,0.593,0.7518,0.6824,0.8412,0.7718,0.995,0.9256,0.99,0.9206,0.9206,0.8808,1,0.9354,0.7618,0.732,0.6328,0.5832,0.5286,0.4988,0.876,0.8462,0.727,-0.9598,-0.188,-0.208,-0.163,0.1578,0.8446,0.7794,0.9248,0.8496,0.5288,0.4386,0.609,0.5238,0.7694,0.7142,1,0.9048,0.6442,0.569,0.6892,0.609,0.8596,0.8096,0.594,0.5238,0.4386,0.3884,0.4086,0.3784,0.629,0.589,0.3032,-0.963,-0.3298,-0.4512,-0.124,0.3192,0.5408,0.8998,1,0.6518,0.504,0.446,0.4618,0.5514,0.6622,0.8998,0.9156,0.6412,0.467,0.5726,0.562,0.7994,0.8154,0.963,0.8522,0.5408,0.4248,0.409,0.3298,0.525,0.6094,0.6518,0.3878,-0.8998,-0.6182,-0.1074,-0.1026,0.198,0.7374,0.7948,0.7326,0.5322,0.4128,0.3174,0.4844,0.5466,0.7708,1,0.8472,0.1552,0.1742,0.1552,0.3078,0.6182,0.7566,0.8902,0.747,0.3748,0.1456,-0.0024,-0.0024,0.1552,0.4224,0.3126,-0.0406,-0.9056,-0.5516,-0.1564,-0.2508,0.2684,0.5222,0.5634,0.4336,0.18,0.1032,0.2448,0.292,0.4396,1,0.9824,0.3274,-0.1504,-0.2448,-0.2212,-0.1386,0.2154,0.5104,0.6166,0.1564,-0.1032,-0.4572,-0.4868,-0.416,-0.3156,-0.2272,-0.056,-0.0266,-0.9428,-0.4286,-0.3714,-0.4858,0.0858,0.2,0.2,0.0858,0.2572,0.2572,0.2,0.3142,-0.0286,0.3142,0.2,0.4286,0.6,0.7142,0.7142,0.6572,0.9428,0.7142,0.8858,0.6,1,0.7714,0.6,0.4286,0.6,0.3142,0.8286,0.6,-0.814,-0.5348,-0.628,-0.1628,-0.1162,0.1162,-0.1628,0.1162,-0.1162,-0.0232,0.1628,0.2558,0.1628,0.1162,0.3954,0.3954,0.3954,0.5814,0.907,0.721,0.7674,0.5814,1,0.8604,0.721,0.5348,0.1628,0.3488,0.4884,0.2094,0.3488,0.628,-0.9166,-0.4166,-0.25,-0.1112,0.3612,0.5834,0.8334,0.5834,0.6112,0.4444,0.3888,0.4444,0.5556,0.5556,0.8888,0.6388,0.1666,0.3056,0.1944,0.3056,0.5834,0.5834,1,0.8334,0.5556,0.4444,0.3334,0.3056,0.3334,0.3056,0.2222,0.1944,-1,-1,-1,-1,-1,-1,-1,-1,-0.7516,-0.7648,-0.4772,0.3202,0.3986,0.647,0.7908,0.83,0.9346,0.647,0.5686,0.6862,0.255,-0.085,-0.5294,-0.6602,-0.7648,-0.7516,-0.7254,-0.6994,-0.7124,-0.7386,-0.7386,-0.7908,-0.7648,-1,-1,-1,-1,-1,-1,-1,-1,-0.9196,-0.9158,-0.2472,0.59,0.5364,0.6302,0.4924,0.4386,0.4924,0.4196,0.3736,0.295,-0.1246,-0.5288,-0.8486,-0.3524,-0.7778,-0.5786,-0.4196,-0.1666,-0.1418,0.0708,0.1072,0.205,0.3716,-1,-1,-1,-1,-1,-1,-1,-1,-0.9868,-0.98,-0.4534,-0.1458,-0.02,-0.063,-0.4916,-0.5258,-0.5258,-0.4516,-0.4686,-0.44,-0.42,-0.615,-0.7234,-0.4034,-0.2334,0.4066,0.8132,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,-0.6858,-0.6,-0.6858,-0.9142,-0.7714,-0.9142,-0.6286,-0.2572,-0.1714,0.2572,0.3142,1,-0.0858,0.1428,-0.5428,-0.8,-0.8572,-0.9142,-0.8858,-0.2,0.0286,1,1,1,1,1,1,1,1,1,1,0.2912,0.2588,0.2144,0.1578,0.1508,0.1358,0.1414,-0.0094,-0.2128,-0.4664,-0.7734,-0.1882,-0.274,0.021,0.862,0.4846,0.5154,0.4166,-0.2048,-0.253,0.1084,0.1084,0.253,0.229,0.3012,0.494,0.6386,0.8072,0.9518,1,0.8314,0.6626,0.735,0.8314,0.8554,0.6626,0.518,0.518,0.7832,0.7832,0.6626,0.5904,0.4698,0.229,0.3254,-0.1808,-0.0362,0.0362,0.0362,-0.2048,-0.65,-0.55,0.175,0.2,0,-0.075,0,0.1,0.625,0.8,0.925,1,0.825,0.4,0.35,0.8,0.775,0.575,0.225,0.575,0.725,0.65,0.575,0.625,0.3,0.1,-0.1,-0.25,-0.35,-0.05,0.325,-0.025,-0.578,-0.1376,0.4496,0.3394,0.0458,0.0458,0.0642,-0.0276,0.3578,0.6698,0.7432,1,0.7064,0.3394,0.3578,0.5596,0.633,0.5046,0.101,0.2844,0.8532,0.633,0.2478,0.3212,0.2478,0.2294,0.2844,-0.4312,-0.1192,-0.0826,0.3028,0.101,1,-1,-1,1,-1,-1,-1,-0.7666,-1,-0.7634,-0.656,-0.7204,-0.742,-0.7742,-0.7204,-0.4946,-0.4624,-0.6344,-0.5484,-0.5592,-0.4086,-0.4194,-0.3978,-0.3978,-0.2796,-0.2688,-0.2904,-0.258,-0.1612,0,-0.0322,0.0538,0.0646,0.1612,0.344,0.4624,0.3118,0.699,1,0.8388,0.2904,'19'
-0.9516,-0.3044,-0.372,-0.2608,0.0338,0.3382,0.1208,-0.0918,-0.1498,-0.0772,-0.1014,-0.0724,-0.0434,-0.0338,0.116,0.1642,0.4106,0.5652,0.5458,0.5942,0.6328,0.6714,0.9228,1,0.7294,0.512,0.6956,0.6474,0.599,0.488,0.5362,0.3236,-0.8936,-0.1808,-0.266,-0.1596,0.3352,0.6224,0.3352,0.234,0.0106,0.1648,0.0798,0.1382,0.2074,0.2128,0.4574,0.399,0.7074,0.7074,0.6542,0.4414,0.3936,0.7606,1,0.8298,0.5532,0.4788,0.633,0.4628,0.5478,0.468,0.4308,0.101,-0.956,-0.2976,-0.3464,-0.2634,0.1414,0.5318,0.356,0.4682,0.2098,0.2488,0.0732,0.2342,0.2342,0.3512,0.6536,0.7414,0.3952,0.4342,0.4732,0.4926,0.6098,0.6,1,0.9366,0.478,0.3902,0.6048,0.483,0.0682,-0.0926,0.2048,0.0048,-0.9836,-0.2282,-0.3152,-0.2392,0.3532,0.6902,0.5272,0.7554,0.3532,0.4022,0.299,0.4022,0.5164,0.549,0.8478,0.826,0.2772,0.1684,0.4022,0.3098,0.5652,0.6848,1,0.799,0.712,0.4022,0.5434,0.375,0.549,0.2446,0.326,-0.0652,-0.9678,-0.319,-0.437,-0.4692,0.1152,0.244,0.7104,0.7534,0.378,0.2976,0.3244,0.3726,0.6408,0.866,1,0.555,0.2494,0.067,0.1528,0.2278,0.3726,0.6998,0.7426,0.8338,0.6354,0.4262,0.453,0.512,0.4692,0.4746,0.2546,0.0884,-0.9496,-0.3836,-0.4466,-0.3144,0.371,0.5724,0.9182,0.7106,0.346,0.2328,0.195,0.4276,0.8868,1,0.61,0.1886,-0.346,-0.1762,0.1006,0.0126,0.1446,0.4466,0.5284,0.478,0.2012,-0.0188,-0.195,-0.1006,-0.0314,-0.1006,-0.2578,-0.371,-0.7634,-0.4046,-0.6336,-0.1832,0.2978,0.5114,0.6412,0.2442,-0.0382,-0.0152,0.313,0.5726,1,0.7176,0.374,-0.1222,-0.229,-0.1832,-0.4504,-0.5344,-0.519,0.2442,0.3816,0.3436,0.2978,-0.1222,-0.229,-0.2596,-0.1146,0.3588,0.2062,-0.4732,-0.8,-0.3334,-0.4,-0.1334,0,0.3334,0.3334,-0.0666,-0.2,0.0666,0,0,-0.0666,-0.0666,-0.1334,0.4,0.2666,0.6666,0.6666,0.4,0.6666,0.9334,1,0.6,0.8,0.0666,0.4666,0.6666,0.8,0.2666,0.5334,-0.1334,-0.2758,0,-0.069,0,0.2758,0.4482,0.2068,0.2068,0.2414,0.2758,0.138,0.2414,0.3104,0.3104,0.3448,0.3794,0.6896,0.5862,0.6896,0.7242,0.7932,0.6896,0.9656,1,0.9656,0.6896,0.7242,0.862,0.862,0.5862,0.6206,0.5862,-0.9714,-0.3714,-0.5714,-0.4,0.3428,0.3714,0.8858,0.7142,0.2858,0.0858,0.1142,0.4572,0.6286,1,0.7714,0.3428,0,0,0.2572,0.1428,0.2858,0.5428,0.6,0.4858,0.4286,0.2,0.2286,0.2572,0.4858,0.4858,0.0858,0.0286,-1,-1,-1,-1,-1,-1,-1,-1,-0.748,-0.748,-0.4016,0.4488,0.8268,0.8582,0.7638,0.6062,0.811,0.4488,0.3544,0.6536,0.1024,-0.433,-0.496,-0.6692,-0.685,-0.6692,-0.7008,-0.6692,-0.748,-0.7638,-0.685,-0.7322,-0.622,-1,-1,-1,-1,-1,-1,-1,-1,-0.8982,-0.878,-0.0524,0.689,0.878,0.3692,0.4448,0.564,0.5582,0.6192,0.5088,0.2732,-0.3954,-0.6948,-0.811,-0.8198,-0.6366,-0.247,-0.1482,-0.0058,0.2238,0.3692,0.5844,0.75,0.6308,-1,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.9734,-0.5834,-0.1544,-0.0686,-0.34,-0.3916,-0.263,-0.5058,-0.4716,-0.5058,-0.583,-0.54,-0.7376,-0.8668,-0.7468,0.02,0.76,0.8966,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,0.7142,1,1,-0.5142,-0.3714,-0.7714,-0.9714,-0.6858,-0.7428,-0.3142,0,-0.2286,-0.5714,-0.4858,1,1,0.4572,-0.6572,-0.7714,-0.8858,-0.8286,-0.9142,-0.9428,-0.7714,1,1,1,1,1,1,1,1,1,1,0.5034,0.5054,0.4792,0.5094,0.5334,0.5058,0.3994,0.2658,0.2432,-0.1236,-0.7466,-0.2,0.2238,-0.0698,0.9506,0.9186,0.9012,0.0084,-0.6666,-0.2858,-0.0476,-0.0476,-0.1904,-0.2858,-0.1428,0.238,0.619,0.7142,0.8572,1,0.9524,0.762,0.8096,0.762,0.5238,0.381,0,0.238,0.381,0.3334,0.0476,-0.4762,-0.5238,-0.0952,0.0476,0.0476,-0.0476,-0.2858,-0.6666,-0.8096,-0.4158,-0.2808,0.2134,0.1686,-0.0338,-0.0562,-0.1012,0.1012,0.7304,0.7978,0.8876,1,1,0.7078,0.7752,0.6854,0.4382,0.236,-0.0786,0.4832,0.4158,0.2808,-0.0338,-0.2808,-0.3258,0.0338,0.146,0.3484,0.146,-0.191,-0.2584,-0.5506,-0.4546,-0.1168,0.091,0.3506,0.1688,-0.013,0.1428,0.2988,0.5064,0.7402,0.8442,1,1,0.8182,0.6884,0.8182,0.4286,0.1168,-0.2208,0.2728,0.3506,-0.013,-0.4026,-0.4286,-0.091,0.1428,0.2988,0.3246,0.1168,0.065,-0.039,-0.6884,1,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.6048,-0.8562,-0.5568,-0.3892,-0.3772,-0.2456,-0.1976,-0.2814,-0.1856,-0.1258,-0.2216,-0.1138,-0.0778,-0.1976,0.0658,0.3054,0.2934,0.2216,0.2456,0.3294,0.2694,0.3652,0.6526,0.2574,0.4252,0.6408,1,0.8922,0.8802,0.9282,0.7604,0.3892,'19'
-0.6444,0.7592,0.8444,-0.3186,-0.7408,-0.2074,0.0038,-0.4,-0.526,-0.7704,-0.5074,-0.5074,-0.2778,-0.374,-0.463,-0.4,-0.326,-0.3074,0.2518,0.637,0.6186,1,0.8482,0.8852,0.8408,0.863,0.826,0.474,0.5408,0.437,0.6186,0.6074,-0.8326,0.267,0.3362,-0.6278,-0.7086,-0.4632,-0.2958,-0.6334,-0.5266,-0.72,-0.697,-0.795,-0.4516,-0.5008,-0.5468,-0.593,-0.593,-0.5094,-0.0044,0.189,0.6624,1,0.7518,0.6334,0.4748,0.821,0.7634,0.42,0.4402,0.3998,0.5266,0.6536,-0.7492,0.1652,0.1596,-0.567,-0.621,-0.3106,-0.3646,-0.5584,-0.6354,-0.6894,-0.7522,-0.7008,-0.6126,-0.5698,-0.51,-0.7294,-0.6582,-0.4986,-0.0626,0.1566,0.6382,0.7464,1,0.9402,0.9316,0.9544,0.6752,0.6296,0.6324,0.6724,0.6354,0.9116,-0.6712,-0.2156,-0.3046,-0.2048,-0.5202,-0.5122,-0.6038,-0.6388,-0.6658,-0.6982,-0.8006,-0.647,-0.5796,-0.6576,-0.469,-0.5472,-0.647,-0.585,-0.3154,-0.1078,0.3638,0.7036,0.8706,0.7978,0.7088,0.8518,0.8382,0.566,0.5742,0.5902,0.6846,1,-0.741,-0.4196,0.0608,-0.011,-0.9096,-0.741,-0.8066,-0.7566,-0.7504,-0.8846,-0.844,-0.6662,-0.663,-0.713,-0.5008,-0.582,-0.5414,-0.5008,-0.4134,-0.3386,-0.0202,0.6756,0.7004,0.6256,0.5912,0.61,0.6942,0.5382,0.4726,0.3386,0.6662,1,-0.685,-0.3274,0.285,0.1682,-0.9398,-0.6212,-0.7062,-0.7876,-0.9008,-0.9328,-0.7204,-0.6992,-0.5682,-0.5044,-0.4336,-0.4796,-0.547,-0.6566,-0.3592,-0.1116,0.1752,0.7664,0.7026,0.7558,0.6992,0.6424,0.8372,0.554,0.4336,0.515,0.6284,1,-0.6262,-0.068,0.2378,0.2038,-0.9418,-0.597,-0.7184,-0.67,-0.5486,-0.699,-0.5826,-0.5098,-0.3496,-0.4854,-0.0874,-0.3252,-0.3058,-0.2718,-0.534,-0.0194,0.4514,1,0.9708,0.7524,0.8544,0.864,0.369,0.1554,0.2572,0.1602,0.4514,0.5388,0.3024,0.8604,0.907,0.3954,0.0232,0.4418,0.2094,0.4884,0.3024,0.0698,0.1162,0.0232,0.1628,0.0232,0.3024,0.4418,0.1162,0.3954,0.7674,0.814,0.4884,0.3954,0.6744,0.5814,0.814,1,0.8604,0.628,0.628,0.721,0.5348,0.907,-0.2222,0.6112,0.6666,-0.3334,-0.6666,-0.3334,-0.0556,-0.3334,-0.2778,-0.7778,-0.4444,0.0556,0.0556,-0.0556,-0.2778,-0.1666,-0.1666,-0.1666,0.2222,0.6112,0.8888,1,0.8888,0.7222,0.5556,0.8334,0.7778,0.3334,0.4444,0.1666,0.3888,0.7222,-0.775,0.175,0.225,-0.5,-0.5,-0.175,-0.125,-0.625,-0.55,-0.725,-0.725,-0.7,-0.425,-0.475,-0.275,-0.275,-0.525,-0.575,0.075,0.1,0.85,1,0.625,0.7,0.625,0.9,0.7,0.525,0.35,0.6,0.5,0.95,-1,-0.8142,-0.8318,-0.8054,-0.593,-0.5576,-0.4424,-0.0974,-0.4514,-0.7168,-0.7346,0.8142,0.7876,0.6018,0.4336,0.1858,-0.1062,-0.2124,-0.2212,-0.177,-0.2036,-0.4868,-0.7434,-0.708,-0.8496,-0.77,-1,-1,-1,-1,-1,-1,-1,-1,-0.8336,-0.8336,0.1304,1,1,1,0.9546,-0.0322,-0.5086,-0.6786,0.1532,0.2212,0.4858,0.6258,0.8336,0.603,-0.085,-0.293,-0.3232,-0.3572,-0.6332,-0.7504,-0.7316,-0.7694,-0.7316,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.94,-0.4168,1,1,1,0.5,0.4066,-0.1134,-0.1768,-0.6816,-0.6048,-0.46,-0.217,-0.2554,-0.2462,-0.2354,-0.38,-0.4478,-0.54,-0.7558,-0.95,-0.8834,-0.8134,-0.9,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,0.5714,0.2,0.5428,0.2286,0.3428,-0.3142,0.3714,-0.9714,-0.8,-0.8572,-0.9714,-0.8572,-0.9714,-1,-1,-0.4858,-0.6858,-0.8858,-0.9428,-0.9428,-0.6858,-1,-1,-1,-1,-1,-1,-1,0.0964,0.09,0.0996,0.0934,0.0902,0.0628,0.079,0.0762,0.136,0.0482,0.6742,0.6824,0.6858,0.7016,0.715,0.7306,0.7482,0.832,0.8854,0.7986,-0.6266,0.5764,-0.724,-0.4292,0.2438,0.24,0.2552,-0.9666,-0.692,-0.531,-0.4774,-0.3898,-0.2882,-0.2486,-0.161,-0.2316,-0.0424,0.082,-0.0112,0.1356,0.1328,0.144,0.2146,0.3954,0.4548,0.5112,0.5452,0.7316,0.8306,0.9718,1,0.8758,0.8758,0.8248,0.8248,0.63,0.4152,0.3532,0.0904,-0.1864,-0.5038,-0.576,-0.4912,-0.4314,-0.3068,-0.3566,-0.172,-0.0748,0.1572,0.2468,0.2942,0.3542,0.2494,0.1946,0.177,0.5786,0.778,0.5736,0.4214,0.6084,0.838,1,0.9826,0.7282,0.6708,0.6434,0.5986,0.4514,0.4538,0.3616,0.1546,-0.197,-0.5956,-0.4412,-0.3714,-0.1398,-0.3824,-0.0846,-0.022,-0.0478,-0.0772,0.2758,0.4302,0.478,0.4964,0.3566,0.1324,0.5588,0.8236,0.6764,0.5074,0.6618,0.9228,1,0.9264,0.5552,0.4706,0.353,0.3162,0.4558,0.2316,0.2868,-0.0514,-0.5624,1,-1,1,-1,-1,-1,-1,0.5666,-1,-0.127,-0.0634,0.238,0.1746,0.0634,0.1588,0.2858,0.3334,0.3174,0.3492,0.2858,0.4286,0.635,0.4126,0.6826,0.8096,0.8412,1,0.5556,0.508,0.0158,0.0476,0.1588,0.2858,0.1746,0.0794,0.254,0.1746,0.0318,0.0318,-0.2698,-0.4444,'20'
-0.9646,0.3398,0.4028,-0.4578,-0.391,-0.3006,-0.273,-0.497,-0.442,-0.6346,-0.615,-0.501,-0.3478,-0.3398,-0.2298,-0.3832,-0.2928,-0.218,0.45,0.5246,1,0.9764,0.835,0.9018,0.9096,0.8822,0.4224,0.222,0.1238,0.3714,0.2534,0.3714,-0.9728,-0.0786,-0.0514,-0.7154,-0.6504,-0.4986,-0.4228,-0.7696,-0.7074,-0.8212,-0.6368,-0.7262,-0.6124,-0.7208,-0.561,-0.6288,-0.5636,-0.2846,0.309,0.2494,1,0.9946,0.4688,0.5068,0.7832,0.8672,0.2494,0.2954,0.244,0.4364,0.206,0.4878,-0.9308,-0.015,-0.012,-0.4638,-0.497,-0.4728,-0.479,-0.5632,-0.6566,-0.9338,-0.7982,-0.6596,-0.6476,-0.6716,-0.5692,-0.6898,-0.5904,-0.2922,-0.015,0.4036,0.75,0.9036,1,0.8162,0.9278,0.9066,0.6114,0.5272,0.491,0.506,0.729,0.7198,-0.9074,-0.0712,-0.2242,-0.1494,-0.4876,-0.4876,-0.7154,-0.6192,-0.9146,-0.7686,-0.822,-0.7544,-0.516,-0.6192,-0.6334,-0.6014,-0.5658,-0.5872,-0.1282,0.032,0.5658,1,0.9644,0.7082,0.8328,0.8078,0.6086,0.3274,0.2314,0.4946,0.5872,0.7402,-0.8452,-0.4286,0.3174,0.3572,-0.6388,-0.5476,-0.504,-0.492,-0.5634,-0.8452,-0.623,-0.615,-0.619,-0.3412,-0.1904,-0.4048,-0.4088,-0.2896,-0.4286,-0.2342,0.4642,1,0.9484,0.7222,0.5634,0.488,0.369,-0.0238,0.0436,0.1666,0.4126,0.4484,-0.8484,-0.4454,0.5688,0.5402,-0.7062,-0.5308,-0.5024,-0.4692,-0.782,-0.6824,-0.635,-0.4312,-0.346,-0.237,-0.0664,-0.2986,-0.3792,-0.3838,-0.5972,-0.2796,0.711,1,0.6588,0.3602,0.256,0.5546,0.3744,0.0996,0.2606,0.256,0.455,0.3602,-0.7778,-0.3242,0.1792,0.1746,-0.8276,-0.56,-0.5102,-0.3968,-0.4694,-0.551,-0.3606,-0.1836,-0.2108,-0.1292,-0.1882,-0.4014,-0.3106,-0.3288,-0.4286,-0.1792,0.687,1,0.619,0.6282,0.619,0.5284,0.0114,0.0068,-0.1112,0.1928,0.2654,0.2834,-0.2174,0.4782,0.5652,-0.2174,-0.3044,0.1304,-0.3914,-0.3044,-0.1304,-0.1304,0.0434,0.3914,0.3044,-0.2174,0.1304,0.4782,0.7392,0.4782,0.3044,0.2174,0.3044,0.3044,0.913,1,0.3914,0.3044,0.4782,-0.0434,0.0434,0.1304,0.4782,0.3914,-0.5556,0.4444,0.5,-0.1112,-0.2778,-0.5556,-0.1112,-0.0556,-0.4444,-0.3334,-0.2222,-0.2778,-0.7778,-0.2778,-0.1112,-0.2778,-0.3888,-0.1666,-0.1112,0.7778,0.7222,0.3888,0.6666,0.5,1,0.7778,-0.1112,0.2222,0.1666,0.3334,-0.0556,0.3888,-0.4026,0.1948,0.065,0.013,-0.3246,-0.3246,-0.1428,-0.2208,-0.3246,-0.2728,-0.7662,-0.1948,-0.1428,-0.2468,-0.4026,-0.1428,-0.065,-0.2728,-0.065,0.2728,0.5324,0.922,1,0.8182,0.8702,0.8182,0.7142,0.3766,0.2988,0.4286,0.5064,0.5064,-1,-0.7692,-0.782,-0.8076,-0.6924,-0.4872,-0.2308,-0.0512,-0.0898,-0.5,-0.6794,0.5898,0.5,0.4488,0.2308,0.141,-0.0256,0.077,-0.1666,-0.2052,-0.141,-0.4102,-0.6026,-0.7052,-0.7308,-0.782,-1,-1,-1,-1,-1,-1,-1,-1,-0.83,-0.8388,-0.6602,1,1,1,0.9042,-0.1242,-0.5992,-0.6732,0.1154,0.7124,0.83,0.7778,0.4728,0.0284,-0.3594,-0.451,-0.5076,-0.464,-0.5904,-0.7038,-0.7648,-0.769,-0.756,-1,-1,-1,-1,-1,-1,-1,-1,-0.9696,-0.9868,-0.9534,0.4066,1,1,0.64,-0.3334,-0.34,-0.7268,-0.3784,-0.0918,-0.02,0.1266,-0.1118,-0.0508,-0.414,-0.474,-0.5894,-0.6154,-0.64,-0.7668,-0.8934,-0.8134,-0.82,-1,-1,-1,-1,-1,-1,-1,-1,-0.4286,-0.7142,1,1,1,1,1,1,0.2572,-0.6572,1,-0.8286,-1,-0.7714,-0.9428,-0.6572,-0.6858,-1,-0.9428,-0.9428,-0.7428,-0.9142,-0.8572,-0.9428,-0.6,-1,-1,-1,-1,-1,-1,-1,0.2696,0.2614,0.2174,0.257,0.2408,0.2238,0.221,0.2184,0.225,0.2346,0.3928,0.4074,0.4234,0.492,0.5426,0.5782,0.6348,0.7164,0.7896,0.5808,-0.7066,0.5058,-0.6776,-0.6384,0.146,0.403,0.2114,-0.7,-0.7736,-0.6662,-0.6024,-0.614,-0.4282,-0.4108,-0.3876,-0.373,-0.3208,-0.1002,-0.1234,0.0566,0.0508,0.0828,0.1524,0.3642,0.4746,0.4746,0.553,0.6836,0.82,1,0.8606,0.7532,0.4658,0.669,0.7214,0.492,0.4224,0.2686,0.1176,-0.1524,-0.457,-0.5484,-0.5376,-0.4248,-0.4302,-0.2204,-0.1936,0.0108,0.1048,0.2392,0.2284,0.3252,0.3522,0.0672,0.207,0.4678,0.6022,0.3898,0.5404,0.6854,1,0.9732,0.8064,0.742,0.5134,0.5268,0.578,0.3494,0.422,0.3736,0.113,-0.1748,-0.2222,-0.2024,-0.0596,-0.0358,0.008,0.0358,0.2262,0.262,0.1944,0.492,0.5358,0.5476,0.5278,0.2342,0.1508,0.2658,1,0.8928,0.877,0.5436,0.8968,0.8174,0.6944,0.6032,0.1746,0.6112,0.6032,0.3968,0.3532,0.3134,-0.1468,-0.5754,1,-1,1,-1,-1,-1,-1,0.4666,-1,0.1764,0.2942,0.2352,0.2352,0.1176,-0.0196,0.2352,0.7058,0.3922,0.3726,0.9608,1,0.9216,0.4706,-0.0392,0.5098,0.3922,0.4902,0.7648,0.7648,0.1176,0.2156,0.2746,0.098,0.3334,0.353,0.098,0.1372,0.1372,-0.0196,-0.0196,-0.255,'20'
-0.7022,0.0088,-0.1698,-0.0472,-0.4606,-0.4712,-0.5762,-0.6358,-0.6882,-0.6882,-0.6742,-0.6882,-0.7654,-0.7058,-0.5132,-0.5972,-0.6428,-0.4746,-0.0824,0.45,0.9194,0.8214,0.6322,0.4852,0.5446,0.429,0.1454,0.422,0.5132,1,0.979,0.6918,-0.7058,0.0286,-0.0514,-0.0086,-0.2058,-0.5028,-0.68,-0.5486,-0.56,-0.4228,-0.5058,-0.4228,-0.4058,-0.3714,-0.2886,-0.2514,0.1486,0.5028,0.6428,0.7286,0.8972,1,0.8342,0.5372,0.3428,0.3514,0.1228,0.2314,0.6142,0.6772,0.7428,0.6228,-0.9186,0.0136,0.0106,-0.0016,-0.0498,-0.2942,-0.3544,-0.3726,-0.4118,-0.2188,-0.27,0.0528,0.0046,0.457,0.3996,0.5264,0.4028,0.4238,0.3876,0.7708,0.7346,0.7978,0.7798,-0.0106,-0.0046,-0.089,-0.083,0.3182,0.3304,0.9758,1,0.3182,-0.736,0.368,0.2294,0.8658,0.606,-0.1992,-0.3464,-0.0866,-0.0562,0.1126,0.4458,0.5888,0.7878,0.8572,0.5412,-0.0432,-0.1862,-0.0476,0.1732,0.5282,0.7836,1,0.658,0.0086,-0.42,-0.2424,-0.2122,0.052,0.3376,0.7446,0.7402,0.4242,-0.9386,-0.2146,0.9158,1,-0.1648,-0.41,-0.3296,-0.0804,0.184,0.3218,0.1456,0.0652,-0.249,-0.502,-0.4252,-0.6016,-0.7472,-0.5364,-0.59,-0.4062,-0.203,-0.0422,-0.0114,-0.2376,-0.387,-0.4406,-0.3372,-0.2606,-0.1264,-0.0652,-0.2414,-0.613,-0.7772,0.2168,1,0.9278,-0.1144,-0.3494,0.2952,0.8554,0.9156,0.3314,-0.1988,-0.247,-0.3796,-0.3916,-0.0844,-0.3434,-0.4578,-0.1144,-0.241,-0.4278,-0.6084,-0.0302,0.2168,-0.0542,-0.1204,0.024,-0.3674,-0.1204,-0.1326,-0.3674,-0.2952,-0.2952,-0.8046,-0.2118,1,0.9478,-0.4398,-0.101,0.3942,0.759,0.1074,-0.4658,-0.557,-0.0814,-0.075,-0.4918,-0.4788,-0.5504,-0.368,-0.4658,-0.4072,-0.2834,-0.2442,-0.2768,-0.6548,-0.2182,-0.1856,-0.4268,-0.3356,-0.3094,-0.14,-0.1856,-0.544,-0.2118,-0.2444,0.3334,0.2,0.0666,-0.1112,-0.1112,-0.1112,0.1112,0.2444,0.0666,-0.1112,0.0222,-0.0222,-0.2444,0.0666,0.0222,-0.0666,-0.2444,-0.1112,0.4222,0.4666,0.5556,0.5556,0.5112,0.3334,0.5556,0.4666,0.2,0.6888,1,1,0.5556,-0.3334,0.3334,0.1428,0.381,-0.0952,0,-0.2858,-0.381,-0.0476,-0.1428,-0.5714,-0.1428,-0.0952,-0.1904,-0.0476,-0.0952,-0.0476,-0.0952,0.1428,0.762,1,0.762,0.5714,0.4762,0.6666,0.7142,0.1904,0.238,0.5714,0.9048,1,0.9524,-0.7412,-0.0588,-0.0588,0.0118,-0.0588,-0.3648,-0.3648,-0.2942,-0.3176,-0.3882,-0.4824,-0.0588,-0.1058,0.153,0.1058,0.4588,0.4118,0.6,0.5294,0.6942,0.6236,0.8118,0.7412,0.0824,0.0588,0.0588,0.0588,0.4352,0.4588,1,0.9294,0.4118,-1,-1,-1,-1,-1,-1,-0.799,-0.8392,-0.809,-0.7788,-0.4372,-0.1558,0.0754,0.417,0.1558,0.216,0.407,0.7386,0.407,-0.0954,-0.2362,-0.4472,-0.7286,-0.7788,-0.789,-0.7788,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8304,-0.8124,-0.7902,-0.7768,-0.5492,-0.1562,0.4108,0.8884,0.75,0.4776,0.1428,0.1206,-0.1474,-0.3258,-0.491,-0.6116,-0.7902,-0.759,-0.7902,-0.7992,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.9334,-0.8668,-0.9068,-0.58,-0.154,-0.097,-0.0662,0.0614,-0.2354,-0.397,-0.7832,-0.7878,-0.794,-0.8386,-0.8232,-0.86,-0.88,-0.88,-0.9134,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,-0.9714,-1,-0.5714,0.5428,0.1714,-0.4,-0.6286,-0.6572,-0.7142,-0.7142,-0.8286,-0.8572,-0.8286,-0.8572,-0.9714,-0.9428,-0.9714,-0.9428,-0.8286,-1,-1,-1,-1,-1,-1,-1,0.09,0.093,0.1356,0.1206,0.0902,0.058,0.0806,0.1478,0.2582,0.4218,0.6786,0.6594,0.6774,0.6702,0.6882,0.7018,0.6314,0.4644,0.0438,-0.1118,-0.7466,0.5648,-0.4776,-0.3348,-0.1384,-0.1428,-0.1206,-0.9666,0.1496,0.187,0.215,0.57,0.486,0.6448,0.6636,0.7196,0.3644,0.5514,1,0.757,0.5328,0.3084,0.6168,0.6262,0.8038,0.3364,0.1682,0.3364,0.4392,0.2804,0.4766,0.5046,0.57,0.6262,0.3084,0.4954,0.5514,-0.056,0.0186,-0.7944,0.189,0.3272,0.4562,0.5116,0.6958,0.7236,0.9632,0.4838,0.9078,0.5392,0.8248,0.8156,0.871,0.7328,0.8248,1,0.8342,0.2074,0.0968,0.6498,0.401,0.447,0.6036,0.7604,0.5024,0.6498,0.659,0.705,0.4838,0.0876,-0.1798,-0.613,-0.0848,0.262,0.225,0.1882,0.2842,0.2324,0.3948,0.1734,-0.0332,0.107,0.6384,0.5572,0.7344,0.7416,0.7344,0.8302,0.7786,0.3874,0.0332,0.5794,0.5202,0.5868,0.2546,0.203,0.963,1,0.4318,0.8008,0.8892,-0.107,-0.225,-0.5202,-0.9554,1,-1,-1,-1,-1,-1,-1,-1,0,0.4242,0.4242,0.8484,0.7576,0.2122,0.4848,0.7878,0.5152,0.3636,0.6364,0.4848,0.4848,0.2424,0.5758,0.8484,0.4546,0.303,0.5454,0.7272,1,0.697,0.3636,0.5454,0.6364,0.4242,0.3636,0.2728,0.1212,0.6364,0.394,-0.5454,'21'
-0.5156,0.1736,-0.0182,-0.3704,-0.4326,-0.3808,-0.785,-0.8108,-0.785,-0.759,-0.6762,-0.6892,-0.6528,-0.601,-0.4016,-0.5596,-0.7616,-0.6762,-0.3394,-0.1062,0.544,0.456,0.1036,0.1866,0.3472,0.2928,0.3082,0.5156,0.456,0.785,0.829,1,-0.402,0.4246,0.3066,-0.5176,-0.5628,-0.3542,-0.51,-0.4824,-0.7512,-0.701,-0.7412,-0.6884,-0.6758,-0.603,-0.4724,-0.5954,-0.4674,-0.191,0.4096,0.6508,0.8442,0.907,0.7286,0.7814,0.5502,0.3618,0.1708,0.407,0.716,0.8768,1,0.8644,-0.4946,0.6604,0.6658,-0.2392,-0.2798,0.2392,0.1848,-0.7962,-0.7336,-0.144,-0.174,-0.057,-0.0082,-0.0028,0.0842,0.1332,0.1902,0.5598,0.6358,0.9104,0.9756,0.7854,0.875,0.3098,0.1358,0,0.212,0.7282,0.9972,1,0.7038,0.3804,-0.3986,0.8178,0.725,0.3884,0.165,0.2578,0.0962,-0.3676,0.0688,0.5326,0.78,1,0.5154,-0.055,0.0172,-0.3848,-0.292,-0.292,0.0034,0.2372,0.347,0.9312,0.7148,-0.1546,-0.1546,-0.1752,-0.0894,0.4742,0.6804,0.5396,0.0756,-0.5876,-0.6126,0.063,0.9172,1,-0.2914,-0.5,-0.3476,0.0132,0.1854,0.235,-0.0794,-0.5,-0.4966,-0.3774,-0.0596,-0.202,-0.6292,-0.6622,-0.6656,-0.7086,-0.4668,-0.1556,-0.1556,-0.308,-0.4834,-0.4636,-0.4636,-0.2318,-0.0034,-0.0198,-0.5994,-0.6788,-0.9424,-0.1462,1,0.8616,-0.6038,-0.2654,-0.4346,-0.3884,-0.6384,-0.6538,-0.7154,-0.5,-0.3,-0.3424,0.027,-0.227,-0.4,-0.5846,-0.6462,-0.873,-0.2884,-0.2384,-0.4692,-0.4924,-0.3116,-0.4116,-0.4962,-0.4692,-0.7116,-0.6462,-0.5462,-0.5576,-0.9316,-0.0894,1,0.9368,-0.3158,-0.0736,0.2632,0.6842,0.3264,-0.3894,-0.479,-0.3894,-0.4,-0.2264,0.1526,-0.2842,-0.6264,-0.4106,-0.4158,-0.7736,-0.2632,-0.3422,-0.5158,-0.121,-0.179,-0.2684,-0.2684,-0.4158,-0.3948,-0.3948,-0.1842,-0.0948,0.2094,0.721,0.4418,0.4418,0.2094,0.2094,0.4418,0.3954,0.4418,0.4884,0.3488,0.3024,0.2558,0.3954,0.1162,0.0698,0.2094,0.4418,0.3954,0.3954,0.4418,0.907,0.8604,0.7674,0.7674,0.6744,0.5348,0.814,0.9534,0.9534,0.9534,1,-0.3158,0.3158,0.1052,-0.2106,-0.1578,-0.2106,-0.3158,-0.3158,-0.3684,-0.4736,-0.1578,-0.2106,-0.1052,-0.1052,-0.1578,-0.1052,-0.1578,0,-0.1052,-0.1052,0.2632,-0.0526,0.1578,0.3158,0.3684,0.6842,0.5264,0.2106,0.579,0.579,1,0.9474,-0.6,0.2534,0.2266,-0.2266,-0.3334,-0.12,-0.1734,-0.7866,-0.7066,-0.36,-0.3866,-0.3334,-0.4666,-0.1734,-0.2534,0.04,0.0934,0.4134,0.3066,0.7066,0.68,0.84,0.7066,0.04,0.0666,0.0134,-0.04,0.4934,0.5466,1,0.8934,0.12,-1,-1,-1,-1,-1,-1,-1,-0.8582,-0.8898,-0.685,-0.2362,-0.126,0.2048,0.4804,0.7244,0.6614,0.3386,0.3228,0.2678,-0.1496,-0.307,-0.4724,-0.7716,-0.7874,-0.756,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8538,-0.8616,-0.7538,-0.4924,-0.3192,-0.0154,0.3038,0.8384,0.373,0.1192,-0.0962,-0.1462,-0.4616,-0.55,-0.6038,-0.7846,-0.777,-0.7846,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.9734,-0.87,-0.66,-0.5688,-0.5764,-0.4438,-0.4238,-0.5488,-0.68,-0.8496,-0.9012,-0.9084,-0.8942,-0.8824,-0.92,-0.94,-0.9468,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6,-0.9428,-0.3428,0.2286,-0.2858,-0.8572,-0.6572,-0.5428,-0.6858,-0.6858,-0.7714,-0.9714,-0.9714,-0.9428,-0.8286,-0.8572,-1,-0.7142,-1,-1,-1,-1,-1,-1,-1,-1,-0.1608,-0.1536,-0.1774,-0.1882,-0.1716,-0.131,-0.1466,-0.1124,0.0244,0.2072,0.5738,0.5722,0.566,0.5764,0.582,0.6256,0.6204,0.5608,0.2522,-0.02,-0.7866,1,-0.477,-0.4692,-0.4192,-0.3116,-0.3076,-1,0.5264,0.6842,0.2106,0.1578,-0.0526,0.2106,0.3158,0.2106,-0.1052,0,0.579,0.2632,0.579,0.4736,0.6316,1,0.421,0.6316,0.7894,0.6842,0.2106,0,0.0526,-0.1578,0,0.2632,0.0526,0.0526,0.1052,0.1052,-0.0526,-0.2632,0.403,0.5522,0.194,0.1044,-0.3732,0.1344,0.194,0.1642,-0.2836,0.2836,0.4328,0.403,0.7612,0.6716,0.7612,1,0.3732,0.5522,0.7314,0.7014,0.0746,-0.0746,-0.2836,-0.1344,-0.0448,0.0448,-0.1344,-0.015,-0.015,0.0746,-0.015,-0.5522,0.5054,0.613,0.2904,0.2904,0.1182,0.4624,0.3978,0.4194,0.0968,0.2474,0.785,0.785,0.7634,0.6344,0.8494,1,0.742,0.656,0.871,0.8494,0.1828,0.1828,0.3334,0.1398,0.4408,0.3978,0.3548,0.3978,0.2904,0.1398,-0.1182,-0.2044,-0.623,-1,-1,1,-1,-1,-1,-0.8334,-1,0.038,0.1898,0.367,0.443,0.519,0.924,0.6708,0.9494,0.6202,0.4178,0.4936,0.4936,0.443,0.7974,1,0.7974,0.7468,0.4178,0.595,0.6202,0.4936,0.6456,0.6962,0.6708,0.2406,0.519,0.8734,0.2658,0.1646,0.3418,0.1392,-0.4684,'21'
-0.725,0.0508,0.0192,-0.0666,-0.1184,-0.2852,-0.3912,-0.4048,-0.5378,-0.3618,-0.5378,-0.3776,-0.4454,-0.301,-0.3416,-0.1702,-0.071,0.1634,0.5332,0.7858,0.6866,0.9098,0.8038,1,0.673,0.4656,0.2808,0.168,0.2266,0.4296,0.5738,0.7498,-0.7398,0.0568,0.0606,-0.4306,-0.4794,-0.3288,-0.362,-0.5226,-0.5518,-0.7064,-0.6868,-0.501,-0.4952,-0.5342,-0.5146,-0.6418,-0.6144,-0.18,-0.1194,0.3776,0.4598,0.906,1,0.7338,0.8434,0.501,0.6302,0.2858,0.4404,0.407,0.5714,0.865,-0.665,0.0116,-0.0706,-0.214,-0.4036,-0.4584,-0.5384,-0.629,-0.8398,-0.8398,-0.842,-0.783,-0.6754,-0.5532,-0.433,-0.5638,-0.6986,-0.5996,-0.3234,0.0474,0.5742,0.943,1,0.9284,0.804,0.8968,0.8082,0.5426,0.5048,0.606,0.648,0.861,-0.7038,-0.36,0.1094,0.1252,-0.7586,-0.681,-0.7562,-0.7928,-0.7562,-0.8292,-0.7836,-0.7448,-0.647,-0.6424,-0.5876,-0.6766,-0.795,-0.7928,-0.5466,-0.2028,0.3098,0.7448,0.9226,0.8998,0.8086,0.836,0.8018,0.6036,0.4534,0.6196,0.6856,1,-0.7098,-0.394,0.3094,0.1938,-0.846,-0.787,-0.9564,-0.9306,-0.7818,-0.9332,-0.8664,-0.6842,-0.679,-0.584,-0.5276,-0.656,-0.6278,-0.7716,-0.6148,-0.5584,-0.045,0.389,0.851,0.8742,0.6612,0.5816,0.543,0.0808,0.3428,0.2812,0.4712,1,-0.6956,-0.245,0.4824,0.3972,-0.8174,-0.7016,-0.8478,-0.7808,-0.6104,-0.659,-0.7808,-0.6834,-0.6894,-0.5404,-0.2938,-0.382,-0.5646,-0.6194,-0.7504,-0.3272,0.3272,0.8356,0.9056,0.6438,0.7048,0.7048,0.4308,0.0746,0.1872,0.2572,0.6286,1,-0.4368,0.1034,0.4444,0.4062,-0.4444,-0.475,-0.5326,-0.4712,-0.8314,-0.82,-0.6246,-0.4292,-0.5862,-0.2376,-0.1112,-0.2606,-0.3486,-0.2414,0.046,0.364,0.9502,1,0.8544,0.8084,0.866,0.3984,0.18,0.023,0.3066,0.4942,0.7088,0.8352,-0.6924,0.077,0.2308,-0.1538,-0.1538,-0.3076,0.2308,-0.077,-0.5384,-0.5384,-0.2308,-0.3076,-0.077,0,0.1538,0.3846,0.5384,0.923,0.7692,0.7692,0.7692,0.923,1,0.5384,0.6154,-0.1538,0,0,0.2308,0.2308,0.923,1,-0.3684,0.2106,0.2632,0.3684,0.2106,-0.0526,-0.1578,0.1052,-0.3684,-0.1052,-0.3158,0,-0.2632,0,0.0526,0.2632,0.579,0.7368,0.6842,0.8422,0.8948,1,0.8948,1,0.6316,0.579,0.3684,0.2632,0.421,0.2632,0.7368,0.4736,-0.8096,-0.0476,-0.0238,-0.4524,-0.4762,-0.4048,-0.4524,-0.3572,-0.4286,-0.5714,-0.5714,-0.2858,-0.3572,-0.3572,-0.238,-0.4762,-0.6428,-0.3096,-0.3334,0.2142,0.238,0.9762,1,0.5238,0.5238,0.6904,0.738,0.3334,0.381,0.4286,0.5238,0.8334,-0.0452,-0.0452,-0.3768,-0.5176,-0.5376,-0.598,-0.6884,-0.819,-0.8492,-0.8292,-0.8392,0.5578,0.7788,0.7286,0.4974,0.3568,0.2664,0.2262,0.216,0.1658,0.1156,-0.0552,-0.4272,-0.5478,-0.7488,-0.789,-0.819,-0.799,-1,-1,-1,-1,-1,-0.5908,-0.6368,-0.7318,-0.7778,-0.8158,-0.8374,-0.859,-0.8754,-0.8726,-0.851,-0.8644,0.2412,0.5502,0.8102,0.5284,0.4146,0.1708,-0.2548,-0.3822,-0.4444,-0.4526,-0.5338,-0.6938,-0.5338,-0.5718,-0.645,-0.6856,-0.748,-1,-1,-1,-1,-1,-0.6968,-0.7868,-0.6434,-0.8168,-0.82,-0.7868,-0.9168,-0.9034,-0.9068,-0.84,-0.8334,-0.2468,-0.0494,-0.0076,-0.0276,0.0712,0.1136,-0.3664,-0.7138,-0.8026,-0.79,-0.8776,-0.66,-0.34,-0.28,-0.28,-0.5334,-0.6268,-1,-1,-1,-1,-1,-0.4858,-1,-1,-0.9714,-0.9142,-0.9428,-0.8572,-0.9142,-0.7142,-0.9428,1,1,-0.5714,-0.7142,-0.6858,-0.9428,-0.8286,-0.8858,-0.9142,-0.8858,-0.8858,-0.6572,-0.5714,-0.5714,-0.7428,-0.7714,-0.9428,-0.6572,-1,-1,-1,-1,-1,0.483,0.4538,0.4342,0.3858,0.3384,0.3298,0.3036,0.2548,0.1974,0.045,0.4412,0.4926,0.5138,0.5578,0.6084,0.6452,0.691,0.7716,0.882,0.7428,-0.5466,0.9294,-0.859,-0.4742,0.1084,0.2926,0.3848,0.225,0.4188,0.826,0.6224,0.3924,0.1986,0.4384,0.872,0.491,0.3892,0.2546,0.4876,0.1954,0.399,0.2742,0.2546,0.4844,0.1822,0.2972,0.3892,1,0.8654,0.2446,0.1626,0.0214,0.33,0.1362,0.1888,0.4778,0.4548,-0.1922,-0.156,-0.5796,0.6888,0.7346,0.199,0.437,0.5926,0.611,0.8536,0.826,0.8444,0.6888,0.7804,0.9634,0.881,0.7574,0.7392,0.666,0.5012,0.4692,0.7254,0.936,0.9084,0.9176,0.7208,0.7894,0.8948,0.5148,0.4736,0.9406,0.817,0.5012,0.2586,-0.2814,-0.036,-0.1458,0.2008,0.3404,0.2474,0.3912,0.3658,0.6702,0.518,0.4756,0.463,0.5434,0.5434,0.573,0.501,0.8942,0.8562,0.704,0.4714,0.7506,1,0.9366,0.9112,0.6744,0.7294,0.797,0.8562,0.721,0.5096,0.4164,0.1036,-0.1586,-0.691,1,-1,-1,-1,1,-1,-1,-1,-0.1126,0.0564,0.155,0.183,0.183,-0.0704,0.014,0.2816,0.4366,0.3662,0.3802,0.7606,0.6902,0.6198,0.9014,0.9014,0.831,1,0.8028,0.8732,0.4226,0.324,0.0986,-0.0986,-0.0422,0.014,-0.0846,-0.0564,-0.2676,-0.2958,-0.338,-0.8028,'22'
-0.72,-0.0886,-0.1944,-0.0264,-0.297,-0.6516,-0.4682,-0.406,-0.5864,-0.6112,-0.6018,-0.5366,-0.353,-0.4806,-0.35,-0.409,-0.3592,0.1446,0.2224,0.7138,0.7356,0.7636,0.6702,1,0.7948,0.3282,0.1508,-0.0326,0.0388,0.1508,0.322,0.4464,-0.7288,0.0112,-0.0558,0.0972,-0.094,-0.4354,-0.6396,-0.5216,-0.63,-0.4992,-0.6172,-0.5312,-0.4768,-0.4704,-0.5438,-0.6396,-0.6714,-0.3876,0.2058,0.4194,1,0.85,0.665,0.5502,0.7672,0.528,0.4322,0.142,0.0972,0.2664,0.3876,0.4578,-0.8586,-0.0144,-0.1086,0.1268,-0.0906,-0.2392,-0.5,-0.5362,-0.5144,-0.5,-0.616,-0.5398,-0.5218,-0.5254,-0.4782,-0.5472,-0.5652,-0.5326,-0.0616,0.2898,0.9022,0.9818,1,0.8224,0.924,0.7754,0.5942,0.2028,0.0906,0.279,0.3914,0.6268,-0.7952,-0.1672,-0.1706,0.058,-0.3822,-0.4982,-0.669,-0.8192,-0.7748,-0.7918,-0.8464,-0.6656,-0.5666,-0.628,-0.512,-0.7372,-0.7338,-0.6552,-0.3344,-0.0614,0.4676,1,0.983,0.8294,0.7816,0.826,0.5222,0.2492,0.0546,0.1672,0.215,0.5972,-0.925,-0.4202,0.2544,0.3372,-0.566,-0.72,-0.925,-0.8224,-0.8028,-0.5542,-0.6646,-0.4714,-0.5542,-0.6292,-0.5108,-0.499,-0.4912,-0.503,-0.5502,-0.0848,0.432,0.9684,0.9882,0.8896,1,0.9842,0.6686,0.2624,0.2426,0.4438,0.4792,0.6924,-0.9614,-0.5518,0.282,0.2578,-0.7494,-0.465,-0.4796,-0.4554,-0.7012,-0.8314,-0.8024,-0.5952,-0.5566,-0.4796,-0.3976,-0.6482,-0.7204,-0.5904,-0.5228,-0.7398,0.2192,0.4698,1,0.8554,0.7204,0.5278,0.3398,-0.118,-0.0602,-0.0072,0.118,0.2482,-0.873,-0.204,0.7926,0.7458,-0.7994,-0.6322,-0.4716,-0.3914,-0.485,-0.3846,-0.4382,-0.485,-0.0368,0.077,-0.204,-0.4114,-0.291,-0.2308,-0.2308,-0.3444,-0.0502,0.699,0.8528,0.9264,1,0.6454,0.4782,0.4448,-0.2308,0.0702,0.1304,0.4984,-0.9394,-0.394,0.091,0.3334,-0.1516,-0.6364,-0.2122,-0.3334,-0.4546,-0.5152,-0.4546,-0.3334,-0.1516,-0.4546,-0.3334,0.091,0.1516,0.7576,0.6364,0.697,0.8788,1,0.8182,0.9394,0.1516,0.0304,0.1516,0.0304,0.0304,0.3334,0.394,1,-0.4546,0.0454,0.091,0.2728,-0.0454,-0.5454,-0.1818,-0.2272,-0.409,-0.5,-0.2728,-0.1818,-0.091,-0.091,0.1364,0.1364,0,0.2272,0.4546,0.8182,0.6818,0.7728,0.8636,1,0.591,0.2272,0.091,0.091,0.1818,0.2272,0.4546,0.591,-0.5882,-0.5294,0.353,0.4118,-0.147,-0.147,-0.7942,-0.9706,-0.1764,-0.2352,-0.2352,-0.0294,-0.147,-0.0882,-0.0882,-0.353,-0.147,-0.0294,-0.2648,0.1764,0.2352,0.9706,0.9118,0.9706,1,0.9118,0.6764,0.2058,0.2058,0.5,0.5882,0.6176,-0.8282,-0.7914,-0.3128,0.4356,0.2638,0.0306,-0.3128,-0.411,-0.4234,-0.5582,-0.3374,0.5828,0.73,0.6074,0.2516,0.1166,0.1656,0.4478,-0.1042,-0.1656,-0.1534,-0.2638,-0.5706,-0.7056,-0.6932,-0.7668,-1,-1,-1,-1,-1,-1,-1,-0.7966,-0.787,-0.6078,-0.1428,-0.2978,-0.4044,-0.5544,-0.6126,-0.6272,-0.69,0.7482,0.7384,0.6174,0.5496,0.2204,0.1186,0.2494,0.23,-0.1428,-0.3996,-0.448,-0.4964,-0.661,-0.6998,-0.661,-0.7288,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.9334,-0.92,-0.5934,-0.6168,-0.7068,-0.6534,-0.7568,-0.74,-0.8134,-0.2268,-0.1564,-0.0856,-0.2056,-0.1274,-0.1928,-0.2838,-0.4634,-0.4234,-0.5934,-0.73,-0.77,-0.8734,-0.8734,-0.8,-0.9468,-1,-1,-1,-1,-1,-1,-1,-0.8572,-0.8572,-0.0858,0,-0.9142,-0.9142,-1,-1,-0.9428,1,1,0.9714,-0.7714,-0.7142,-0.8286,-0.8572,-0.9428,-0.9714,-0.6286,-0.6572,-0.9714,-1,-1,-1,-1,-0.8,-1,-1,-1,-1,-1,-1,-1,0.2606,0.2506,0.2454,0.2322,0.2406,0.2358,0.2302,0.2312,0.2598,0.2188,0.6688,0.6802,0.6844,0.7074,0.7428,0.7406,0.7534,0.7478,0.78,0.6682,-0.6934,0.3648,1,0.3462,0.632,0.8934,0.9128,-0.0666,-0.2308,-0.1794,-0.5384,-0.2308,-0.1282,0.282,0.4872,0.6924,0.7436,0.6924,0.4872,0.5898,0.5384,0.4872,0.1282,0.8974,0.8974,0.6924,0.5898,1,1,0.8974,0.8462,0.7436,0.8462,0.641,0.6924,0.5898,0.5384,0.3846,0.1794,-0.5384,0.099,0.2072,0.1892,0.2612,0.099,0.2612,0.3694,0.5316,0.6396,0.7118,0.5316,0.8738,0.3874,0.3514,0.3514,1,0.8918,0.4774,0.5676,0.964,0.7298,0.6216,0.6036,0.6756,0.7838,0.6036,0.7118,0.7118,0.6936,0.3514,0.2972,0.1352,-0.3506,0.1948,0.1428,-0.065,-0.1428,-0.1948,-0.091,0.013,0.6624,0.6624,0.6884,0.8702,0.3766,0.2728,0.3246,0.974,0.922,0.2468,0.8442,0.948,1,0.2728,-0.2468,0.3506,0.4286,0.5584,0.6104,0.5064,0.2988,0.1168,-0.2468,-0.6884,1,-1,-1,1,-1,-0.4,-1,-0.8334,-1,-0.2406,0.0126,0.1392,0.2152,0.1898,0.1898,0.367,0.367,0.367,0.3164,0.8988,0.9494,0.8988,0.6708,0.8734,0.8482,1,0.7722,0.8988,0.7974,0.9494,0.8228,0.443,0.0632,-0.0632,0.0126,0.2406,0.1646,-0.2912,0.0632,-0.2658,-0.3418,'22'
-0.853,-0.4938,0.4612,0.4368,-0.551,-0.6572,-0.5918,-0.5346,-0.3552,-0.7224,-0.4858,-0.3878,-0.4858,-0.5918,-0.3878,-0.5918,-0.3062,-0.5102,0.0448,0.5428,0.9184,0.8938,1,0.8368,0.2654,-0.0448,-0.1836,-0.2244,-0.1836,0.2,0.404,0.102,-0.899,-0.6162,0.4074,0.3334,-0.8048,-0.798,-0.8048,-0.596,-0.3872,-0.5488,-0.771,-0.5286,-0.3536,-0.6296,-0.5286,-0.4814,-0.367,-0.3804,-0.1582,0.293,0.8518,0.7306,1,0.7846,0.6768,0.2256,-0.1852,0.1044,0.2256,0.2794,0.3334,0.3738,-0.8294,-0.453,0.5824,0.5412,-0.847,-0.5412,-0.5412,-0.8764,-0.7882,-0.7764,-0.4824,-0.5236,-0.5648,-0.5942,-0.6764,-0.5176,-0.2882,0.1764,0.4236,0.6764,1,0.9236,0.5,0.2118,0.0588,0.0648,-0.0882,0.0236,0.2648,0.4412,0.3648,-0.2236,-0.9142,-0.1684,0.7228,0.637,-0.3202,-0.4456,-0.5314,-0.4126,-0.6436,-0.6634,-0.472,-0.2542,-0.208,-0.1024,-0.0496,0.1882,0.2476,0.538,0.4192,0.6502,1,0.5974,0.2014,0.0694,-0.0628,-0.1486,-0.1684,0.1354,0.1222,0.01,-0.2146,0.2542,-0.9064,-0.1404,1,0.8298,-0.1574,-0.2256,-0.0638,-0.0298,0.132,-0.0894,-0.149,0.0724,0.9744,0.8128,0.6936,-0.1148,-0.3618,-0.2,-0.0978,0.5574,0.6,0.1404,-0.0724,-0.0894,-0.4554,-0.3532,-0.3192,-0.1404,0.132,-0.0894,0.0298,0.6,-0.789,-0.021,1,0.7722,-0.1562,-0.3418,-0.0632,-0.0296,0.2068,0.4092,0.7638,0.8734,0.5444,0.2406,-0.0296,-0.2828,-0.1308,-0.5022,-0.4008,0.0464,0.2658,0.2406,-0.0464,-0.2152,-0.0296,-0.4092,-0.5528,-0.443,-0.443,-0.1392,0.519,0.8396,-0.4444,-0.2626,0.909,0.6364,-0.0202,-0.2222,-0.303,0.2526,0.596,1,0.8586,0.4344,-0.1414,-0.091,-0.2728,-0.4142,-0.0404,-0.192,-0.2424,-0.4444,0.596,0.5858,-0.0404,0.3738,0.4848,-0.2122,-0.3738,0,0.1616,-0.404,0.8586,0.899,-0.1282,-0.282,0.5898,0.5898,0.077,-0.077,0.077,0.1794,0.1282,-0.4872,0.0256,-0.282,-0.077,-0.641,0.077,0.077,0.1282,0.1282,0.3846,1,1,0.7948,0.7436,0.2308,0.4358,0.4872,0.3334,0.077,0.1282,0.2308,0.641,0.6924,-0.3572,0.0714,0.6428,0.6428,-0.4286,-0.0714,-0.2142,-0.2142,-0.2142,-0.2858,-0.2142,-0.2142,0.0714,0,-0.1428,-0.3572,-0.0714,0,-0.0714,0.1428,0.8572,0.9286,1,0.7858,-0.5714,-0.2142,0.2142,0,-0.5,0.5714,0.6428,0.2858,-0.3334,0.0606,0.8182,0.7272,0.1516,-0.2122,-0.606,-0.091,0.091,-0.0304,-0.1516,-0.1516,0.4546,0.606,0.7576,0.5758,0.5152,0.0606,0.3334,0.8788,1,0.5758,0.4848,0.2424,0.1516,-0.1516,0.091,0.4242,0.3334,0.2122,0.1516,0.4546,0.2666,0.6666,1,1,1,1,1,1,1,1,0.1666,0.2,0.05,0.4166,0.55,0.9334,0.8666,0.7834,0.6666,0.3334,-0.0666,-0.1334,0.0166,0.0834,-0.2334,-0.1166,-1,-1,-1,-1,-1,-1,-1,-0.0138,0.364,1,1,1,1,1,1,1,1,0.1612,0.06,0.1706,0.4838,0.6222,0.7972,0.8156,0.8342,0.659,0.401,-0.0138,-0.1428,-0.0968,-0.106,-0.2166,-0.235,-1,-1,-1,-1,-1,-1,-1,-0.7834,-0.7834,-0.8034,-0.66,-0.6734,-0.56,-0.62,-0.82,-0.8834,-0.7668,-0.7134,-0.6172,-0.5086,-0.5316,-0.4972,-0.583,-0.555,-0.705,-0.7476,-0.6276,-0.7876,-0.8426,-0.8734,-0.7568,-0.9434,-0.96,-1,-1,-1,-1,-1,-1,-1,-0.9142,0.4286,0.9142,-0.2286,-0.7428,-0.6572,-0.4572,-0.4286,-0.3714,0.5142,0.1142,-0.7714,-0.8572,-0.8858,-0.8,-0.8286,-0.7714,-0.6858,-0.8572,-0.8572,-0.7714,-0.8286,-1,-1,-0.9714,-0.8858,-1,-1,-1,-1,-1,-1,-1,0.275,0.311,0.2076,0.1826,0.157,0.1096,0.0982,0.0554,0.127,0.289,0.208,0.1946,0.2072,0.2462,0.2774,0.3114,0.2978,0.3174,0.2422,-0.1686,-0.5066,-0.1412,0.2904,0.0692,0.0784,0.023,0.1706,-0.975,-0.3664,-0.01,0.0694,0.1684,0.3664,0.3466,0.406,0.7426,0.5446,0.5446,0.604,0.3664,0.5842,0.5842,0.7822,0.8218,1,1,0.802,0.703,0.5644,0.2278,0.307,0.4654,0.4456,0.4654,0.3466,0.2674,0.2278,0.208,-0.2674,-0.4654,-0.532,-0.1064,-0.1064,-0.3404,-0.1914,-0.1276,0.0212,0.7446,0.468,0.1064,0.4042,0.3618,0.2766,0.2554,0.3192,0.6596,0.9574,1,0.9148,0.6596,0.617,0.5106,0.6808,0.4042,0.3618,0.532,0.4042,0.5532,0.2766,0.3404,0.2978,-0.1064,-0.25,-0.0228,0.2728,0.1818,0.159,0.0682,0.25,0.5454,0.591,0.3182,0.5,0.7728,0.659,0.4546,0.5,0.909,0.8182,1,0.7272,0.2728,0.5228,0.5228,0.6364,0.341,0,0.0454,0.1364,0.409,0.1136,0.3636,0.3636,0.25,1,1,-1,-1,-1,-1,-0.8,-0.8,-1,-0.4082,0.8776,0.7142,0.5918,1,0.5918,0.7552,0.3674,0.653,0.551,0.1836,0.347,0.449,0.449,0.3674,0.5918,0.7142,0.4082,0.449,0.4898,0.3266,0.449,0.3062,0.7552,0.3878,0.3878,0.2654,0.449,0.4286,0.204,0.0408,-0.1428,'23'
-0.6564,-0.1764,0.1718,0.2142,-0.8118,-0.6564,-0.5812,-0.6376,-0.7036,-0.6658,-0.6752,-0.633,-0.7082,-0.4776,-0.5436,-0.647,-0.6188,-0.313,0.1764,0.8588,1,0.84,0.7694,0.6564,0.1764,0.0682,0.233,0.4118,0.4776,0.8588,0.6706,0.3694,-0.5514,-0.0864,0.8594,0.827,-0.7028,-0.2972,-0.3298,-0.3946,-0.5676,-0.7676,-0.7892,-0.4324,-0.3838,-0.2864,-0.5244,-0.5298,-0.1568,0.519,0.6378,1,0.8054,0.8918,0.8162,0.6324,0.3298,0.3082,0.2054,0.373,0.7406,0.7136,0.3622,-0.4702,-0.5408,-0.0876,1,0.8732,-0.4924,-0.1602,-0.3354,-0.2084,-0.7644,-0.6676,-0.5288,-0.0996,0.0574,0.0816,-0.299,-0.2628,-0.1602,-0.0454,-0.0152,0.0332,-0.154,0.4562,0.432,0.1782,-0.0694,-0.3898,-0.6072,-0.0332,-0.1842,-0.1118,-0.3474,-0.4018,-0.5446,-0.1288,1,0.8416,-0.4984,-0.2872,-0.4324,-0.6172,-0.6304,-0.4654,0.142,0.4918,0.0496,-0.01,-0.5116,-0.5248,-0.604,-0.3334,-0.406,-0.6172,-0.4786,-0.0694,-0.2476,-0.4918,-0.4918,-0.5248,-0.7888,-0.4588,-0.5908,-0.6436,-0.6106,0.1948,-0.7644,-0.1516,1,0.8384,-0.5556,-0.1784,-0.5218,-0.4478,-0.2996,-0.0506,-0.0102,-0.4748,-0.4344,-0.6094,-0.4612,-0.596,-0.6632,-0.596,-0.7038,-0.7508,-0.6836,-0.4814,-0.6162,-0.4478,-0.394,-0.2526,-0.4612,-0.4882,-0.724,-0.394,-0.4814,-0.3872,-0.6936,-0.0968,1,0.8468,-0.4436,-0.121,-0.258,-0.129,0.1532,-0.1936,-0.1774,-0.1936,-0.113,-0.1048,-0.113,-0.2822,-0.379,-0.363,-0.5564,-0.4758,-0.5806,-0.0726,-0.1532,-0.2822,-0.5162,-0.492,-0.6854,-0.7338,-0.7742,-0.6452,-0.379,-0.4032,-0.8666,0.4518,1,0.9112,-0.037,0.5556,0.5112,0.8222,0.7038,0.0814,-0.3038,-0.3778,0.6,0.4666,0.2,0.2148,-0.2148,0.1408,-0.0814,-0.1556,0.0074,-0.274,-0.0518,0.6888,0.3482,-0.1112,0.037,-0.2296,-0.3334,-0.5556,-0.3926,-0.0518,-0.0476,0.4762,0.2858,0.381,0.2858,0.0476,0.2858,0.1428,0.1428,0.0952,0.0476,-0.4762,0.0952,0.4762,0.5238,0.238,0.2858,0.2858,0.381,0.762,0.8572,0.4762,0.762,0.8572,0.8096,0.9524,0.8572,0.6666,0.6666,0.9524,0.9524,1,-0.2432,0.081,0.3514,0.4054,-0.4054,-0.081,-0.027,-0.1352,-0.027,-0.1892,-0.4594,-0.081,-0.3514,-0.2972,-0.5136,-0.1892,-0.2432,-0.027,0.2432,0.8378,1,0.7838,0.6756,0.4054,0.1352,0.081,0.3514,0.4594,0.5136,0.7298,0.6216,0.4594,-0.3818,0.2364,1,0.9272,-0.709,0.0182,0.2,0.2364,-0.3454,-0.4546,-0.3818,0.2364,0.3454,0.309,0.0546,0.1636,0.309,0.4546,0.2364,0.2364,0.491,0.6364,0.709,0.491,0.2728,0.0182,-0.3454,0.5636,0.6,0.4182,-0.1636,-0.3818,0.7702,0.5402,0.7242,0.954,0.7702,0.2988,0.3334,-0.2528,-0.4942,-0.4942,-0.4022,0.115,0.5288,0.908,0.862,0.7126,0.5172,0.4022,0.2988,0.0344,-0.1954,-0.4368,-0.7012,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,0.8308,0.6176,0.536,0.3606,0.1286,0.0722,-0.3668,-0.4608,-0.0596,-0.1286,0.1786,0.7932,0.7054,0.5486,0.2664,0.1034,-0.0156,-0.1286,-0.2728,-0.3982,-0.5424,-0.6928,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7534,-0.7934,-0.74,-0.8268,-0.64,-0.6168,-0.6634,-0.74,-0.5868,-0.2434,-0.09,-0.4578,-0.429,-0.7756,-0.8,-0.8268,-0.844,-0.84,-0.844,-0.824,-0.804,-0.852,-0.8868,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,-0.4858,-0.1428,-0.2572,-0.6572,-0.6286,-0.5428,-0.6572,-0.2572,-0.2572,-0.5714,-0.4572,-0.7428,-0.6286,-0.6858,-0.6858,-0.9714,-0.9428,-0.9142,-1,-0.9428,-0.8572,-0.7428,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.1534,0.1498,0.068,0.0556,0.0558,0.071,0.0892,0.1204,0.1118,0.2136,0.4174,0.4412,0.4482,0.4566,0.4502,0.4248,0.4188,0.2926,0.03,-0.179,-0.5066,0.1176,-0.2288,-0.1786,0.0282,0.4044,0.674,-1,0.1428,0.2626,0.1336,0.106,-0.0784,0.1152,0.2534,0.3456,-0.0506,0.2534,1,0.9632,0.5116,0.0876,0.318,0.5392,0.4654,0.576,0.318,0.3824,0.2718,0.318,0.189,0.0046,-0.0784,0.0968,0.0784,0.0414,0.1244,-0.023,-0.2626,-0.6036,-0.0516,-0.024,-0.1546,-0.1684,-0.0378,-0.1752,0.0378,0.0516,-0.0378,0.244,0.6152,0.7458,0.519,0.3608,0.622,0.787,0.9244,1,0.7114,0.6632,0.6014,0.4708,0.1546,0.2028,0.0652,0.0446,0.086,0.1546,-0.1478,-0.1958,-0.3884,-0.7182,-0.0704,0,-0.0422,-0.3028,-0.1408,-0.1198,-0.2042,-0.0212,-0.0986,0.0282,0.5282,0.7888,0.824,0.4508,0.6056,0.824,0.9366,1,0.7324,0.7254,0.7254,0.6198,0.324,0.2958,0.1902,-0.0282,0.0774,0.2112,-0.1972,-0.338,-0.4508,-0.8732,-0.9624,-1,1,-1,-0.6,1,-1,-0.2,-1,0.525,0.625,0.275,1,0.925,0.65,1,0.2,0.8,0.575,0.925,0.7,0.85,0.775,0.375,-0.25,0.3,0.65,0.825,0.825,0.35,0.5,0.725,0.7,0.775,0.4,0.55,0.775,0.375,0.2,0.25,-0.025,'23'
-0.8358,-0.2,-0.1898,-0.2,0.118,0.723,0.7436,0.4564,0.3334,0.3334,0.2924,0.4256,0.3846,0.6924,0.5794,0.8462,0.8666,0.9282,0.959,0.8462,1,0.959,0.8974,0.7948,0.6102,0.282,0.0974,0.118,0.0256,-0.2924,0.3026,0.6102,-0.9832,-0.2552,-0.272,-0.1298,-0.0292,0.8578,0.8242,0.4728,0.4394,0.3556,0.3472,0.5398,0.5482,0.615,0.6486,0.933,0.9832,0.682,0.7656,0.8076,0.9246,0.8578,1,0.364,0.5146,-0.1046,-0.0712,-0.2468,-0.0962,-0.1214,0.0878,0.431,-0.84,-0.229,-0.2218,-0.1418,0.0036,0.8036,0.8182,0.3382,0.3672,0.331,0.4036,0.3018,0.389,0.491,0.6,0.869,1,0.5854,0.7454,0.5128,0.6728,0.6,0.7528,0.4618,0.3454,0.1418,-0.0764,-0.229,-0.2436,-0.1782,0.2582,0.1854,-0.941,-0.262,-0.2472,-0.1734,-0.1292,0.7934,0.8228,0.3136,0.358,0.225,0.3062,0.321,0.4392,0.5646,0.7122,0.845,1,0.6014,0.69,0.5646,0.8598,0.6458,0.69,0.5056,0.203,0.048,-0.1586,-0.2842,-0.417,-0.1512,0.4244,0.3654,-0.9082,-0.3216,-0.3216,-0.0742,0.0812,0.788,0.7526,0.5336,0.4912,0.4134,0.364,0.47,0.4276,0.675,0.6254,1,0.9576,0.6962,0.675,0.7174,0.7032,0.675,0.682,0.3852,0.2508,0.0388,-0.1096,-0.1378,-0.166,0.2156,0.4276,0.6042,-0.8572,-0.375,-0.3334,-0.0834,0.3334,0.494,0.6072,0.6012,0.369,0.375,0.369,0.3988,0.494,0.5892,0.7916,0.8154,0.762,0.6726,0.613,0.7262,1,0.9346,0.6428,0.4346,0.2084,0.125,-0.0952,-0.0536,0.262,0.3452,0.6548,0.8274,-0.8162,-0.7032,-0.5902,-0.3144,-0.0176,0.4416,0.4064,0.2792,0.06,-0.046,-0.0176,-0.0388,0.1166,0.3992,0.675,0.7668,0.5336,0.5054,0.5194,0.7386,0.8516,0.7386,0.3144,0.0036,-0.2438,-0.371,-0.152,0.569,0.583,0.5266,0.4488,1,-0.7038,-0.037,-0.037,-0.3334,0.1852,0.1112,0.4074,0.4814,0.3334,0.1852,0.1852,0.1112,0.2592,0.3334,0.1852,0.4074,0.5556,0.2592,0.8518,0.7778,1,0.7038,0.8518,0.4814,0.6296,0.1112,-0.1112,-0.1112,-0.1852,-0.3334,0.037,0.4074,-0.871,-0.3548,-0.3548,-0.2258,-0.0968,0.871,0.871,0.4838,0.4838,0.0322,0.2258,0.5484,0.613,0.5484,0.6774,0.6774,1,0.742,0.8064,0.4194,0.9354,0.6774,0.742,0.5484,0.4194,0.3548,0.1612,0.0968,-0.0968,-0.2904,0.3548,0.4194,-0.6566,-0.1516,-0.1718,0.0304,0.2122,0.7576,0.7172,0.5556,0.5354,0.4748,0.4142,0.5152,0.4748,0.6566,0.596,1,0.9798,0.697,0.6566,0.7172,0.6768,0.7172,0.7374,0.4546,0.4142,0.1516,0.0708,0.0708,0.1112,0.3738,0.3738,0.596,-1,-1,-1,-1,-1,-1,-1,-0.7714,-0.7,-0.7142,-0.7286,0.1286,0.4858,0.6286,0.6572,0.7714,0.8714,0.8142,0.9572,0.8858,0.6,-0.1714,-0.4858,-0.7142,-0.6858,-0.7714,-0.6858,-0.7,-0.6714,-0.7142,-0.7142,-0.7142,-0.7286,-1,-1,-1,-1,-1,-1,-1,-0.9324,-0.929,-0.8528,-0.8822,-0.2762,-0.0078,0.0996,0.0598,0.122,0.1982,0.3646,0.5758,0.8528,0.413,-0.167,-0.8458,-0.9048,-0.9168,-0.936,-0.91,-0.9082,-0.922,-0.9256,-0.929,-0.9324,-0.9308,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.9534,-0.8,-0.7334,-0.585,-0.49,-0.395,-0.53,-0.428,-0.444,-0.464,-0.42,-0.164,-0.316,-0.36,-0.7168,-0.84,-0.8934,-0.9668,-0.9,-0.94,-0.9334,-0.96,-0.9334,-0.9468,-0.9668,-1,-1,-1,-1,-1,-1,-1,-0.6286,-0.8,-0.2286,1,1,1,-0.4858,-1,-1,-1,-0.7142,-0.6572,-0.0572,1,1,1,-0.7714,-0.8,-0.8858,-1,-1,-1,-1,-0.9428,-0.9142,-1,1,1,1,1,1,1,1,1,1,1,-0.4086,-0.4086,-0.4604,-0.519,-0.539,-0.5688,-0.6096,-0.6482,-0.7026,-0.7626,-0.84,-0.5176,-0.8788,-0.574,-0.084,0.0078,0.0926,-0.1584,0.139,0.0066,0.351,0.6292,0.6292,0.4304,0.563,0.6954,0.6424,0.8808,0.8808,0.5894,0.9736,0.404,0.9736,0.8544,0.563,0.1788,0.4304,0.3642,0.298,0.404,0.2848,0.4438,-0.0596,0.351,0.2186,0.139,0.3112,0.2716,-0.1126,-0.245,0.2924,0.2308,0.559,0.5076,0.8256,0.6308,0.682,0.6718,0.4358,0.8974,0.4974,0.477,0.7846,0.5794,0.8154,0.7538,0.682,0.6718,0.682,0.4256,0.6102,0.7026,0.6308,0.4358,0.4666,0.4154,0.3744,0.3538,0.0358,0.2206,0.3026,-0.4052,-0.4458,-0.4458,-0.2294,-0.1774,-0.091,-0.0562,-0.0996,0.1082,0.264,0.1862,0.6364,0.6278,0.2034,-0.0044,0.29,0.1516,0.645,1,0.7922,0.645,0.593,0.2554,0.2294,-0.2122,-0.2034,-0.3334,-0.1688,-0.013,-0.1516,0.2814,0.1602,-0.3246,-0.9826,1,-1,-1,-1,-1,-1,-1,1,-0.2444,0.0222,0.8,0.9778,0.4222,0.2222,0,0.7778,0.8666,0.8222,1,0.3556,0.2444,-0.1112,0.3556,0.2222,0.5556,0.4666,0.6888,0.0444,0.1112,-0.0888,-0.1556,0.0888,0.0666,-0.0888,-0.1778,-0.3112,0.1556,0.0888,0,-0.3556,'24'
-0.8696,-0.5144,-0.442,-0.1376,0.1086,0.2536,0.3116,0.1884,0.1522,-0.029,0.0144,0.145,0.1812,0.2318,0.3188,0.4566,0.5942,0.7318,0.7754,0.7754,0.7898,1,0.9638,0.8334,0.7536,0.5942,0.6014,0.5144,0.5942,0.6376,0.7536,0.7102,-0.7816,-0.4812,-0.3856,-0.2082,0.2764,0.3584,0.5086,0.5018,0.4402,0.3516,0.0922,0.3038,0.454,0.3242,0.3924,0.5632,0.5836,0.8772,0.7406,0.7202,0.8704,1,0.925,0.959,0.604,0.4266,0.5426,0.4948,0.4676,0.5222,0.5564,0.454,-0.9768,-0.5136,-0.5676,-0.305,0.1428,0.3204,0.2896,0.3976,0.3128,0.3514,0.1892,0.1814,0.4362,0.3128,0.359,0.4672,0.6526,0.7684,0.7838,0.5908,0.7606,1,0.9922,0.722,0.6062,0.336,0.4132,0.39,0.2896,0.359,0.4132,0.2586,-0.8796,-0.4216,-0.3012,0.0442,0.3976,0.6386,0.4216,0.5662,0.3414,0.4378,0.4136,0.4618,0.478,0.4618,0.5742,0.5262,0.7188,0.6626,0.743,0.6706,0.9518,0.7832,1,0.7028,0.6868,0.518,0.5904,0.3976,0.4298,0.5582,0.5502,0.1808,-0.993,-0.514,-0.5352,-0.2536,0.3098,0.493,0.4226,0.5352,0.2746,0.3098,0.317,0.2816,0.4366,0.338,0.486,0.5634,0.7464,0.493,0.6126,0.6972,0.7254,0.986,1,0.655,0.5634,0.514,0.4508,0.3732,0.3662,0.4154,0.2324,0.0282,-0.8882,-0.6382,-0.3486,-0.2828,0.2894,0.3026,0.4342,0.421,0.2632,0.171,0.0986,0.2236,0.3552,0.3552,0.454,0.6842,0.7632,0.6118,0.6052,0.7434,0.9342,1,0.8224,0.7302,0.5592,0.3422,0.3486,0.3618,0.4014,0.4014,0.296,0.0328,-0.5804,-0.5982,-0.259,0.009,0.491,0.6428,0.3928,0.25,0.1876,0.1428,0.2232,0.2142,0.134,0.2142,0.5268,0.759,0.991,1,0.7768,0.759,0.8036,0.7768,0.6428,0.5804,0.4642,0.366,0.3304,0.2678,0.3124,0.4376,0.2054,-0.1072,-0.9048,-0.5238,-0.5238,-0.2858,-0.1428,0.238,0.238,-0.2858,0.0476,-0.0476,-0.0476,-0.0476,0.238,0.238,0.238,0.381,0.4286,0.6666,0.4762,0.8096,0.7142,1,1,0.8096,0.8096,0.4762,0.619,0.3334,0.619,0.4762,0.6666,0.6666,-0.9148,-0.7022,-0.3618,-0.234,0.1914,0.234,0.3192,0.1914,0.149,0.0212,-0.0638,0.1064,0.1064,0.1914,0.1914,0.3618,0.3192,0.7022,0.7872,0.7872,0.8298,0.9574,1,0.8298,0.6596,0.5744,0.5744,0.4894,0.4894,0.6596,0.617,0.617,-0.925,-0.7,-0.45,-0.325,0.25,0.225,0.575,0.475,0.275,0.075,0.2,0.325,0.35,0.45,0.425,0.75,0.775,0.825,0.75,0.825,0.9,0.95,1,0.9,0.6,0.425,0.325,0.425,0.45,0.5,0.4,0.05,-1,-1,-1,-1,-1,-1,-1,-1,-0.7848,-0.7722,-0.367,0.5696,0.8988,0.3798,0.3038,0.8988,0.924,0.6962,0.5064,0.5444,0.114,-0.3544,-0.6202,-0.7216,-0.7216,-0.7594,-0.7722,-0.7594,-0.7848,-0.7722,-0.8354,-0.7468,-0.7468,-1,-1,-1,-1,-1,-1,-1,-1,-0.9562,-0.963,-0.6904,0.628,0.373,0.0146,-0.0136,-0.1178,-0.148,-0.1684,-0.0886,-0.0896,-0.3524,-0.7984,-0.891,-0.9504,-0.9504,-0.9514,-0.9542,-0.9562,-0.964,-0.96,-0.962,-0.9552,-0.9592,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.94,-0.6134,-0.04,-0.15,-0.045,-0.095,-0.34,-0.425,-0.35,-0.17,-0.18,-0.235,-0.492,-0.65,-0.8134,-0.8668,-0.86,-0.94,-0.9468,-0.9634,-0.93,-0.9668,-0.94,-0.9734,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,-0.1142,-0.6,-0.8,-0.8,-1,-0.9714,-0.9428,0.6,1,1,1,-0.5142,-0.9142,-0.9428,-0.9714,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.4402,0.4558,0.4558,0.4456,0.3966,0.3764,0.331,0.2442,0.1828,0.0238,-0.7466,-0.5882,-0.6398,-0.0292,0.8598,0.3048,0.0166,1,-0.3914,-0.0434,0.3478,0.2608,0.3478,0.3914,0.3044,0.3914,0.6522,0.6956,0.9566,1,0.913,0.6522,0.6086,0.6956,0.6086,0.4782,-0.0434,0.3914,0.5218,0.6522,0.6086,0.5218,0.4348,0.174,0.087,-0.174,-0.0434,0,-0.3478,-0.4348,-0.2452,-0.0754,0.4906,0.6226,0.2264,0.434,0.2076,0.4906,0.6792,0.6792,0.9246,1,0.717,0.4528,0.4528,0.6226,0.566,0.3584,-0.0566,0.2076,0.434,0.4528,0.4528,0.5472,0.415,0.1886,-0.0944,-0.0566,0.0188,0.1132,0.0188,-0.1698,-0.5632,-0.1954,0.4022,0.5172,0.2184,0.0804,0.1494,0.4022,0.6322,0.862,0.931,1,0.7702,0.6092,0.6552,0.7472,0.5402,0.4942,-0.0114,0.3104,0.5862,0.6322,0.5402,0.5172,0.4022,0.1494,0.0114,-0.0574,-0.0114,0.1724,-0.0344,-0.1494,1,-1,-1,1,-1,-1,-1,-0.8334,1,-0.2408,-0.124,0.562,0.5328,0.3284,0.0656,0.1824,0.6058,1,0.635,0.8394,0.489,0.5036,0.343,0.3138,0.27,0.051,0.4014,0.562,0.6204,0.3138,0.3138,0.2262,-0.0656,-0.1824,-0.2992,-0.1386,-0.1678,0.0802,0.1678,-0.197,-0.2116,'24'
-0.2362,0.4386,0.819,1,0.3282,0.224,0.092,-0.224,-0.7914,-0.73,-0.819,-0.7454,-0.7148,-0.684,-0.5184,-0.6534,-0.6718,-0.6596,-0.7516,-0.8896,-0.6226,-0.6596,-0.5368,-0.5122,-0.5828,-0.5982,-0.7148,-0.7914,-0.7116,-0.7392,-0.8374,-0.8958,-0.5272,-0.0544,0.2458,0.331,0.6194,0.7754,1,0.6502,0.6926,-0.0024,-0.1442,-0.532,-0.617,-0.5414,-0.4114,-0.591,-0.766,-0.513,-0.5438,-0.584,-0.5106,-0.1536,-0.1442,-0.357,-0.4302,-0.636,-0.6738,-0.7706,-0.442,-0.2956,-0.1702,-0.0166,-0.7008,-0.2228,-0.3348,-0.1626,0.1518,0.3736,0.8752,0.7202,0.873,0.929,1,0.3542,0.1174,-0.3778,-0.4166,-0.4382,-0.352,-0.2658,-0.0118,0.0958,0.2466,0.2336,0.0312,-0.3046,-0.3908,-0.4682,-0.5586,-0.3736,-0.001,0.1668,0.2444,0.3262,-0.7388,-0.1818,-0.2824,-0.1566,0.0386,0.1896,0.6092,0.677,0.8724,0.8452,1,0.8994,0.677,0.501,0.0444,-0.2688,-0.2244,0.1818,0.2148,0.2804,0.2534,0.3618,0.234,-0.1876,-0.3192,-0.3018,-0.5338,-0.4952,0.3114,0.3618,0.5146,0.4912,-0.677,-0.123,-0.2514,-0.123,0.1658,0.262,0.8652,0.7926,1,0.801,0.7434,0.7412,0.8332,0.7348,0.6578,0.416,0.155,0.4332,0.4546,0.5744,0.647,0.7454,0.523,0.1786,-0.0632,-0.091,-0.2834,-0.399,-0.2386,0.1808,0.5294,0.7926,-0.7204,-0.2884,0.047,0.1106,0.5146,0.7484,0.8044,0.4764,0.2834,0.1334,0.1766,0.113,0.2604,0.1588,0.258,0.3926,0.6036,0.8246,1,0.8932,0.9186,0.9644,0.8374,0.4562,0.108,0.0344,-0.0242,-0.1284,-0.1258,-0.1436,-0.0038,0.4232,-0.8108,-0.2006,0.0506,0.1908,0.2854,-0.1158,-0.1876,-0.292,-0.3442,-0.5498,-0.4714,-0.5008,-0.4454,-0.6508,-0.341,-0.3996,-0.2366,0.1518,0.628,0.8108,0.8956,0.9608,1,0.8598,0.527,0.3148,0.0376,-0.2234,-0.2104,-0.1942,-0.1582,-0.0766,0.4,0.9334,0.8666,1,0.6666,0.7334,0.2666,0.1334,-0.3334,0,-0.1334,0.1334,0.0666,0.4666,0.6,0.4,-0.0666,-0.1334,-0.1334,-0.2666,0,-0.0666,0.1334,0.3334,0.2,-0.3334,-0.2666,0.1334,0.0666,0.0666,-0.1334,-0.2666,0.1852,0.7778,0.926,1,0.6296,0.6296,0.037,-0.1112,-0.3334,-0.2592,-0.4074,-0.2592,-0.1112,-0.1852,-0.1852,-0.3334,-0.037,-0.1852,-0.3334,-0.5556,-0.2592,-0.1112,-0.1852,-0.1112,0.1852,0.1112,-0.2592,-0.3334,-0.6296,-0.2592,-0.2592,-1,-0.6924,-0.2616,-0.0154,0.0154,0.3538,0.723,0.8462,0.7846,0.6616,0.3846,0.2,0.2616,0.6308,0.323,0.477,0.6308,0.5076,0.7538,0.6924,0.6616,1,0.723,0.6616,0.1384,0.0154,0.0462,-0.323,-0.477,-0.2616,-0.4154,0.0154,0.6924,-1,-1,-1,-1,-1,-1,-1,-1,-0.9188,-0.929,-0.4314,0.3046,0.7614,0.401,-0.061,-0.264,-0.2386,-0.2336,-0.1726,-0.1928,-0.2538,-0.4924,-0.5736,-0.5838,-0.5634,-0.5634,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9356,-0.9338,-0.7638,-0.4454,-0.1378,0.2754,0.2308,0.5796,0.6404,0.7532,0.7836,0.2666,-0.254,-0.5832,-0.7174,-0.7316,-0.7298,-0.746,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.9,-0.8334,-0.7974,-0.6534,-0.6468,-0.4788,-0.4288,-0.5664,-0.67,-0.625,-0.5488,-0.7288,-0.8068,-0.82,-0.89,-0.8768,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,-0.6572,-0.4572,-0.8,-0.5428,0,-0.6858,-0.7714,-0.7428,-0.8,-0.7714,-0.4286,-0.4858,-0.5142,-0.9714,-1,-0.9428,-1,-1,-1,-1,-1,-1,-1,-1,0.1922,0.2306,0.2842,0.366,0.4846,0.6446,0.8378,1,1,1,-0.2922,-0.2786,-0.2696,-0.2656,-0.2978,-0.2834,-0.2454,-0.2436,-0.41,-0.4618,-0.7334,0.9058,-0.7352,-0.6082,-0.5348,-0.4866,-0.4008,-1,0.2116,0.124,0.3576,0.8102,0.562,-0.0364,0.3868,0.7518,0.7372,0.7664,0.7664,0.8832,0.8686,0.635,0.7518,0.4744,0.2116,0.6642,0.5474,0.2846,0.4014,0.4452,0.4744,0.562,0.5328,0.2992,0.6934,0.3138,0.1824,0.2116,0.0364,-0.5766,0.1954,0.023,0.184,0.4598,0.5518,0.5748,0.5518,0.6552,0.5632,0.6666,0.7242,1,0.9886,0.2874,0.4942,0.5402,0.3564,0.2758,0.3908,0.3908,0.5172,0.6666,0.3908,0.3794,0.5288,0.4942,0.1724,0.3908,0.4252,0.2758,0.092,-0.4022,0.8148,1,0.8396,0.5556,0.432,0.247,0.7038,0.8396,0.5308,0.5062,0.4568,0.5926,0.8272,0.3456,0.4692,0.1234,0.321,0.4444,0.1112,0.1852,0.0988,0.3704,0.4198,-0.1728,0.4692,0.4074,0.2098,0.3334,0.1604,-0.037,-0.4692,-0.5802,-0.9606,1,-1,-1,-1,-1,-0.2,-1,-1,0.0192,0.4424,0.4038,0.0962,0.0576,0.1924,0.0576,0.1346,0.173,0.3076,1,0.8654,0.827,0.2308,-0.0384,0.1538,0.2116,0.4038,0.423,0.2692,0.2116,0.3076,0.4038,0.327,0.077,-0.2308,0.1154,0.423,0.2692,0.0576,0.0192,-0.25,'25'
-0.3814,0.518,0.3738,0.6888,0.4952,0.5104,1,0.7572,0.2448,-0.1348,-0.6394,-0.4876,-0.3776,-0.4422,-0.3548,-0.48,-0.666,-0.6964,-0.5978,-0.5978,-0.518,-0.537,-0.4838,-0.5522,-0.351,-0.4346,-0.4686,-0.4346,-0.742,-0.7648,-0.4042,-0.6546,-0.735,-0.0994,-0.2638,-0.276,0.0822,0.1484,0.865,0.8036,1,0.7866,0.6368,0.2958,-0.0012,-0.524,-0.4134,-0.5484,-0.6662,-0.654,-0.4404,-0.3522,0.065,-0.0062,-0.3742,-0.5018,-0.5754,-0.6786,-0.7056,-0.568,-0.411,-0.168,-0.3128,-0.3718,-0.7736,-0.1802,-0.3188,-0.6236,-0.201,-0.1248,0.4596,0.5012,1,0.8222,0.5174,0.6512,0.769,0.2218,-0.224,-0.2956,-0.4204,-0.3348,-0.3764,-0.2356,0.231,0.254,-0.4158,-0.5196,-0.6282,-0.575,-0.508,-0.4088,-0.3026,-0.127,-0.1756,-0.2448,-0.7694,-0.2384,-0.3006,-0.1632,0.0492,0.228,0.5674,0.9068,1,0.399,0.1218,0.417,0.5778,0.6166,0.4664,0.2384,-0.4404,-0.3446,-0.088,0.1994,0.2462,0.127,-0.2824,-0.5854,-0.588,-0.6632,-0.741,-0.4586,-0.088,0.1374,0.3212,0.2616,-0.7934,-0.2266,0.0666,0.0834,0.22,0.92,1,0.5566,0.3266,-0.1666,-0.03,-0.0966,0.15,-0.1234,-0.1134,-0.2866,0.1966,0.2434,0.7234,0.4666,0.2066,0.0666,-0.1334,-0.2234,-0.31,-0.4766,-0.5,-0.7,-0.3234,0.36,0.7734,0.9134,-0.8414,-0.3086,0.3154,0.2884,0.1906,0.204,0.204,-0.1164,-0.4064,-0.8888,-0.7436,-0.6594,-0.494,-0.4266,-0.2344,-0.4402,-0.6156,-0.0422,0.2344,0.8618,0.774,1,0.4334,0.14,0.1906,-0.1332,-0.1974,-0.4908,-0.6662,-0.5616,-0.376,0.0152,-0.8104,-0.125,0.6896,0.6768,-0.4008,0,-0.1164,-0.6078,-0.6768,-0.6594,-0.4698,-0.3578,-0.388,-0.263,0.0388,-0.2456,-0.4138,-0.3448,-0.2586,0.263,0.7026,1,0.6724,0.7242,0.6638,0.2198,0.0216,-0.3406,-0.5086,-0.4482,-0.2112,0.1078,0.4546,0.8788,0.7576,1,0.7576,0.697,0.697,0.6364,0.5152,0.5152,0.2728,0.1516,0.3334,0.2122,0.091,0.0304,0.2122,0.2728,0.4546,0.6364,0.6364,0.2122,0.1516,0.5758,0.697,0.5152,0.091,0.2122,0.3334,0.091,0.2122,0.0304,0.2666,0.8,0.8,1,0.2,0.2,0.4666,0.2,0.0666,-0.0666,0.2,0.3334,0.6666,0.5334,0.2666,0.2,0.2666,0.2,0,0.0666,0.2,-0.4666,-0.4,0,0.4666,0.4666,-0.0666,0.0666,0,-0.4,-0.2666,-0.0666,-0.8412,-0.2698,-0.1746,-0.0794,0.0794,0.3334,0.5874,0.9366,1,0.2064,0.1746,0.492,0.5556,0.5874,0.4604,0.2698,-0.3334,-0.3334,-0.2698,0.3016,0.2064,0.238,-0.1112,-0.6508,-0.492,-0.6508,-0.492,-0.2064,-0.1746,0.3016,0.2064,0.1746,-1,-1,-1,-1,-1,-0.7962,-0.707,-0.3758,0.0318,-0.0064,0.121,0.7834,0.7834,0.2356,0.1464,0.223,0.2866,0.1464,0.2356,0.2356,0.2484,0.0318,-0.4394,-0.5796,-0.6942,-0.7962,-0.7962,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8162,-0.8076,-0.7008,-0.53,-0.5598,-0.4914,-0.218,0.6196,0.7478,0.6838,0.7992,0.5,0.0086,0.0598,-0.124,-0.2564,-0.4658,-0.6368,-0.671,-0.6838,-0.6538,-0.6794,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.9734,-0.8834,-0.78,-0.79,-0.7934,-0.8114,-0.66,-0.5626,-0.5438,-0.575,-0.635,-0.6476,-0.719,-0.721,-0.776,-0.7922,-0.699,-0.7522,-0.7622,-0.3622,-0.639,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,-0.9142,-0.8286,-0.8286,-1,-1,-0.6572,-0.4286,-0.6286,-0.9142,-0.8858,-0.7142,-0.7428,-0.8,-0.8572,-0.8858,-0.9142,-0.8572,-0.8858,-0.9428,-0.9428,-0.7428,-1,-1,-1,-1,-1,-1,0.6946,0.785,0.9,0.9896,1,1,1,1,1,1,-0.2578,-0.2894,-0.2954,-0.3202,-0.3496,-0.3418,-0.4124,-0.5148,-0.7654,-0.526,-0.6266,0.9648,-0.4872,-0.4786,-0.3162,-0.171,-0.171,-1,0.1584,-0.1,0.8166,0.675,0.6666,0.6666,0.8166,0.7916,0.9084,0.65,0.55,0.8084,1,0.6584,0.525,0.4584,0.375,0.2834,0.2084,0.1334,0.175,0.0166,0.425,0.5334,0.3666,0.3916,0.3916,0.2834,-0.2666,0.15,-0.1666,-0.5584,0.7028,1,0.5434,0.826,0.4856,0.2682,0.7102,0.6014,0.587,0.616,0.6522,0.8334,0.7392,0.6376,0.5798,0.1884,0.2174,0.1666,0.0798,0.326,0.2102,0.5434,0.1956,0.2898,0.4058,0.413,0.2536,0.355,0.0072,0.174,-0.0434,-0.7392,0.8104,1,0.7778,0.647,0.0654,0.085,0.5424,0.536,0.3922,0.1242,0.3072,0.1438,0.2352,0.1504,-0.0066,0.085,0.098,-0.013,-0.085,-0.0718,-0.17,-0.1634,-0.0458,-0.0392,0.1112,0.0458,0.0326,-0.0392,-0.3072,-0.2026,-0.2288,-0.4444,-0.9316,1,-1,-1,-1,0.4,-1,-1,1,-0.4594,-0.5496,-0.2252,-0.099,-0.2792,-0.1892,-0.045,-0.027,-0.1712,0.2972,0.4594,0.2792,0.045,0.2612,0.7658,0.8738,1,0.91,0.5856,0.1172,-0.063,-0.2432,-0.1892,-0.3334,-0.3514,-0.2612,-0.2072,-0.081,-0.2792,-0.2792,-0.2612,-0.6756,'25'
-0.3444,0.7142,0.619,0.3882,0.1502,-0.1942,-0.2858,-0.0036,-0.2674,-0.0842,-0.1466,-0.0146,0.0402,0.0916,0.0256,0.1246,0.6776,0.8058,0.5384,0.5494,0.359,0.5714,0.7766,1,0.8682,0.3956,0.1356,-0.066,-0.1612,0.066,0.0184,0.4468,-0.6374,0.2274,0.2464,-0.5568,-0.4976,-0.192,-0.1682,-0.4858,-0.4266,-0.5568,-0.481,-0.4312,-0.3364,-0.4928,-0.365,-0.5782,-0.5284,0.0402,0.2702,0.5236,0.8768,0.756,0.744,0.7228,1,0.8554,0.3626,0.301,0.2938,0.2868,0.3768,0.4882,-0.6548,0.2534,0.2926,-0.5398,-0.53,-0.2118,-0.1774,-0.5594,-0.4638,-0.738,-0.6474,-0.6254,-0.4958,-0.65,-0.4492,-0.6304,-0.7332,-0.317,0.011,0.224,0.7332,0.7552,0.9926,0.8654,1,0.9804,0.7576,0.6426,0.5838,0.5888,0.6352,0.7528,-0.5702,0.1094,0.0142,-0.0836,-0.3256,-0.2586,-0.354,-0.4594,-0.565,-0.6782,-0.6962,-0.5958,-0.632,-0.686,-0.6088,-0.6526,-0.6782,-0.4286,-0.1814,0.0348,0.5778,0.928,0.9692,0.9382,0.8816,0.9536,0.9846,0.7658,0.6654,0.7246,0.7966,1,-0.6006,-0.2514,0.2962,0.2672,-0.6984,-0.6666,-0.5634,-0.5106,-0.7064,-0.6798,-0.7804,-0.6084,-0.5926,-0.6588,-0.537,-0.701,-0.7778,-0.5952,-0.4418,-0.1984,0.365,0.762,1,0.9206,0.865,0.8624,0.7778,0.5264,0.5662,0.5556,0.6164,0.9444,-0.5802,-0.2406,0.3636,0.238,-0.8262,-0.4894,-0.6096,-0.6818,-0.655,-0.6978,-0.599,-0.5534,-0.6284,-0.5748,-0.6418,-0.6844,-0.5828,-0.6336,-0.524,-0.5748,0.3128,0.484,1,0.861,0.5054,0.484,0.2994,0.1872,0.2648,0.4064,0.5054,0.6818,-0.2344,0.1744,0.5912,0.531,-0.8758,-0.539,-0.3748,-0.3508,-0.6514,-0.5792,-0.7434,-0.3426,-0.2344,-0.2706,-0.0942,-0.2826,-0.2384,-0.2946,-0.3868,-0.2464,0.4348,0.984,0.972,1,0.988,0.6514,0.3788,0.046,0.1544,0.3708,0.5952,0.9478,-0.04,1,0.84,0.2,0.12,0.12,-0.04,0.28,0.44,0.44,-0.04,0.68,1,0.6,0.36,0.6,0.52,0.6,0.68,0.28,-0.36,0.28,0.12,0.76,0.76,-0.52,-0.36,-0.04,-0.04,-0.04,0.04,0.68,0.1352,0.8918,0.7298,0.6756,0.4594,0.2432,0.2972,0.3514,-0.1352,-0.027,0.6216,0.5676,0.6756,0.5676,0.7838,0.6216,0.7298,0.6216,0.5676,0.4594,0.1892,0.4594,0.4054,1,0.8918,0.4594,0.3514,0.1892,0.3514,0.3514,0.1352,0.6756,-0.5662,0.2048,0.229,-0.6386,-0.735,-0.2772,-0.2048,-0.3734,-0.3012,-0.5662,-0.4458,-0.5904,-0.3494,-0.6626,-0.3976,-0.6144,-0.6386,-0.1566,0.3254,0.2048,0.9036,0.8796,0.8554,0.8072,1,1,0.4698,0.518,0.3976,0.494,0.4216,0.5662,-0.1878,-0.272,-0.4942,-0.6092,-0.6552,-0.8238,-0.8544,-0.8544,-0.862,-0.8314,-0.456,0.4712,0.6246,0.8544,0.9158,0.7012,0.3104,0.226,0.2796,0.134,-0.0192,-0.2644,-0.525,-0.6782,-0.7624,-0.8008,-0.8468,-1,-1,-1,-1,-1,-1,-0.5816,-0.6306,-0.6132,-0.4516,-0.3044,-0.1284,-0.163,0.4026,0.0246,-0.2554,-0.4084,-0.0044,0.2756,0.749,0.7402,0.7432,0.6796,0.5874,0.0794,-0.2006,-0.394,-0.5874,-0.7288,-0.7374,-0.7288,-0.7402,-0.7576,-1,-1,-1,-1,-1,-1,-0.6934,-0.68,-0.4134,0.15,0.8032,1,1,1,1,0.8132,0.2,-0.6462,-0.4462,-0.4248,-0.3108,-0.2844,-0.0258,0.1242,-0.293,-0.5,-0.7216,-0.8372,-0.8668,-0.61,-0.4634,-0.3868,-0.3934,-1,-1,-1,-1,-1,-1,-0.7714,-0.4,1,0.4858,-0.6572,-0.7428,-0.8858,-0.8,-0.2572,-0.4,0.3714,0.3428,-0.5142,0,-0.6,-0.7714,-0.9142,-0.8,-0.8858,-0.9714,-0.8572,-0.8572,-0.8858,-0.7142,-0.8858,-1,-0.9428,-1,-1,-1,-1,-1,-1,0.1318,0.1274,0.1674,0.179,0.1842,0.2014,0.2206,0.2272,0.2336,0.101,-0.2352,-0.1834,-0.1038,-0.016,0.091,0.193,0.336,0.4688,0.6632,0.7436,-0.76,0.647,-0.3852,-0.3362,-0.189,0.0274,0.2208,-1,-0.337,-0.2898,-0.5724,-0.5182,-0.5906,-0.5724,-0.2572,-0.1956,-0.4202,-0.5,-0.5724,-0.3986,-0.3044,-0.3586,-0.4094,-0.25,-0.0398,0,0.0798,0.1666,0.116,-0.145,0.3586,0.2862,0.395,0.7174,0.9818,1,0.866,0.9782,0.6884,0.4384,-0.7658,-0.8558,-0.637,-0.5186,-0.619,-0.547,-0.3616,-0.2562,-0.4028,-0.3848,-0.3256,-0.3848,-0.269,-0.251,-0.1738,-0.1532,0.1866,0.1738,0.2998,0.2278,0.2484,0.4002,0.5058,0.4158,0.5264,0.812,0.8944,0.9588,1,0.9898,0.6242,0.1428,-0.823,-0.7282,-0.485,-0.5388,-0.3364,-0.4186,-0.2796,0.169,-0.0078,-0.248,-0.0964,-0.0016,0.0236,0.0806,0.0742,0.0552,0.3712,0.643,0.5576,0.586,0.7252,0.5704,0.8642,0.4692,0.6082,0.8484,0.8926,0.8894,0.8894,1,0.9874,0.7504,-0.3824,-1,1,-1,-0.8,0,-0.6,0.8334,-1,-0.4238,-0.339,-0.0508,-0.0678,-0.1694,-0.2034,-0.0848,0.1694,0.0678,0.2712,0.017,0.0678,0.5424,0.2542,0.5594,1,0.5932,0.4746,0.4238,0.305,-0.017,-0.2712,-0.1186,-0.5594,-0.4406,-0.4068,-0.5254,-0.2034,-0.356,-0.305,-0.2372,-0.8474,'26'
-0.8738,0.1594,0.1096,0.1662,0.0332,-0.5648,-0.681,-0.618,-0.7044,-0.3554,-0.4984,-0.2956,-0.505,-0.598,-0.382,-0.3122,-0.02,0.3954,0.329,0.7044,0.485,0.5714,0.701,1,0.701,0.3322,0.0034,-0.1296,-0.3422,-0.1428,-0.1994,-0.0332,-0.7618,0.072,0.0526,0.061,-0.036,-0.4516,-0.565,-0.7562,-0.8642,-0.579,-0.7146,-0.7728,-0.6676,-0.4598,-0.554,-0.5484,-0.5734,-0.2132,0.1966,0.5956,0.626,1,0.7674,0.9502,0.7922,0.759,0.4986,0.2326,-0.0084,0.108,0.0194,0.3268,-0.7748,-0.1018,-0.2076,0.0854,-0.1778,-0.4708,-0.715,-0.6716,-0.6798,-0.6852,-0.6988,-0.5496,-0.5224,-0.5794,-0.7124,-0.7204,-0.6364,-0.6146,-0.0774,0.2862,0.8644,1,0.8996,0.848,0.9838,0.924,0.6716,0.4002,0.3188,0.27,0.3026,0.498,-0.9912,-0.4752,0.2508,0.3062,-0.4432,-0.6734,-0.7376,-0.6094,-0.7756,-0.6268,-0.691,-0.723,-0.8368,-0.6794,-0.691,-0.691,-0.624,-0.618,-0.4928,-0.1516,0.6122,0.9796,0.9446,0.8922,1,0.8804,0.7376,0.4052,0.3032,0.411,0.551,0.7492,-0.9338,-0.481,0.3818,0.3488,-0.7024,-0.7058,-0.5802,-0.6034,-0.5438,-0.6132,-0.762,-0.7124,-0.772,-0.4644,-0.3652,-0.5802,-0.5802,-0.5472,-0.5372,-0.3554,0.5008,0.7024,1,0.805,0.7884,0.957,0.5966,0.4546,0.2728,0.428,0.4446,0.676,-0.9442,-0.5428,0.3298,0.281,-0.7906,-0.6544,-0.6266,-0.6544,-0.9616,-0.7382,-0.672,-0.7592,-0.5882,-0.6196,-0.5392,-0.672,-0.794,-0.7732,-0.6684,-0.3892,0.4834,0.7034,1,0.7732,0.7766,0.8674,0.4938,0.2496,0.0472,0.3264,0.3508,0.5952,-0.8308,-0.4122,0.5222,0.5434,-0.6744,-0.649,-0.4842,-0.5434,-0.8858,-0.721,-0.5772,-0.3488,-0.277,-0.37,-0.2178,-0.2938,-0.3572,-0.4334,-0.463,-0.2728,0.835,1,0.8224,0.8012,0.9238,0.5348,0.3108,0.0444,0.1712,0.3362,0.6532,0.9534,-0.5152,0.2728,0.091,0.5152,0.394,-0.394,-0.4546,-0.4546,-0.5758,-0.1516,-0.0304,0.0304,0.091,0.091,0.3334,0.3334,0.6364,0.697,0.5758,0.5152,0.2122,0.5758,1,0.8182,0.5152,0.2122,-0.9394,-0.2728,-0.394,-0.0304,0.0304,0.091,-0.6876,0.3124,0.1876,0.5,0.1876,0.0624,-0.0624,0,0.1876,0.1876,-0.125,-0.0624,-0.3124,-0.1876,0,-0.0624,0.6876,0.875,0.5,0.5624,0.4376,0.5624,1,1,0.4376,0.375,-0.125,0,-0.0624,-0.1876,0.0624,0.1876,-0.398,0.2038,0.1844,0.2428,0.165,-0.2622,-0.3398,-0.301,-0.301,-0.165,-0.3204,-0.3204,-0.165,-0.301,-0.165,-0.068,-0.2816,-0.2038,0.3398,0.4174,0.864,1,0.8058,0.7282,0.8446,0.9418,0.67,0.4564,0.2816,0.3786,0.398,0.4564,-0.5596,-0.7024,-0.7976,-0.7858,-0.8334,-0.738,-0.7976,-0.738,-0.7858,-0.5596,-0.1786,0.1548,0.5358,0.5358,0.512,0.4048,0.5,0.2738,0.1666,-0.1072,-0.0358,-0.2858,-0.6666,-0.7262,-0.7142,-0.7858,-0.75,-0.8334,-1,-1,-1,-1,-1,-0.771,-0.8246,-0.7602,-0.4454,-0.5886,-0.3882,-0.399,-0.567,-0.4634,-0.5636,-0.5492,-0.2416,0.0448,0.1592,0.61,0.2738,0.2236,-0.2058,-0.3918,-0.517,-0.5134,-0.6172,-0.789,-0.7496,-0.7352,-0.789,-0.8032,-0.8318,-1,-1,-1,-1,-1,-0.82,-0.92,-0.7034,0.45,0.26,0.3932,0.44,0.2532,0.4066,0.0666,-0.2868,-0.3216,-0.394,-0.2478,-0.1432,-0.4094,-0.33,-0.45,-0.44,-0.373,-0.5172,-0.58,-0.82,-0.6834,-0.5868,-0.8268,-0.84,-0.9134,-1,-1,-1,-1,-1,-0.8,0.4,1,1,-0.9142,-0.8286,-0.8858,-0.6286,-0.6,0.7142,0.4572,-0.3142,-0.8,-0.6572,-0.6286,-1,-0.8572,-0.9714,-1,-1,-1,-0.8858,-0.9428,-0.7142,-0.8858,-0.8858,-0.9714,-0.9428,-1,-1,-1,-1,-1,0.083,0.0514,0.0582,0.036,-0.0304,0.0066,0.0814,0.045,0.089,0.1476,0.2364,0.2658,0.307,0.3364,0.3698,0.4364,0.5538,0.636,0.7398,0.7086,-0.5866,0.6352,-0.542,-0.5242,-0.3632,-0.2164,-0.0806,-0.9166,-0.6132,-0.7616,-0.4474,-0.4058,-0.3678,-0.3264,-0.209,-0.1468,-0.4438,-0.2642,-0.3402,-0.2056,-0.2436,-0.171,-0.247,-0.1192,0.0674,0.1918,0.2538,0.5544,0.5958,0.6754,0.5406,0.4024,0.3506,0.6856,0.6718,0.7064,0.9136,0.8826,1,0.7168,-0.608,-0.5584,-0.4432,-0.3476,-0.3246,-0.4102,-0.2752,-0.2026,-0.285,-0.2554,-0.2322,-0.1466,-0.0444,-0.1994,-0.2818,-0.2158,-0.0576,0.3048,0.318,0.374,0.7232,0.8418,0.8846,0.8122,0.364,0.575,0.8024,1,0.8616,0.9342,0.8978,0.6474,-0.5432,-0.3044,-0.2214,-0.2698,-0.2802,-0.2318,-0.1764,0.0554,0.1246,-0.0346,-0.1072,0.1764,-0.0276,-0.18,0.0276,-0.0762,0.5294,0.429,0.3356,0.2076,0.3114,0.4636,1,0.9516,0.346,0.6056,0.782,0.5468,0.6366,0.6852,0.4706,0.1868,-0.4634,-1,1,-1,-0.8,-1,-1,0.7334,-1,-0.1034,0.1448,0.1586,0.2276,0.1448,0.1172,0.2,0.062,0.3242,0.3518,0.2276,0.3104,0.3656,0.2552,0.4206,0.738,0.7794,1,0.862,0.5172,0.3518,-0.0068,0.1172,0.1724,0.0482,0.1172,-0.131,-0.131,0.062,0.131,-0.062,-0.4206,'26'
-0.284,0.1694,0.3222,0.4654,0.957,0.9666,0.451,0.2792,0.2506,0.0596,0.093,0.222,0.2316,0.2984,0.2316,0.3652,0.4558,0.599,0.599,0.6754,0.9856,0.957,0.7708,0.8042,0.914,1,0.9952,0.8664,0.8186,0.6086,0.556,0.5226,-0.2326,0.2732,0.3002,0.5304,0.824,0.9548,0.6028,0.2054,0.1828,0.1828,0.1332,0.079,0.201,0.097,0.2732,0.246,0.3724,0.544,0.6252,0.702,0.72,1,0.9504,0.684,0.6162,0.851,0.8646,0.8782,0.6524,0.6072,0.6344,0.675,-0.2282,0.2794,0.275,0.5352,0.6418,0.7868,0.565,-0.0022,-0.066,-0.0234,-0.0534,-0.0448,0.066,0.0278,0.1428,0.0704,0.2538,0.3432,0.5438,0.5224,0.6716,0.9062,1,0.727,0.4968,0.6632,0.6546,0.6162,0.4542,0.2836,0.2538,0.3262,-0.1776,0.33,0.528,0.6954,0.9442,1,0.472,0.0762,0.0254,-0.071,-0.071,-0.0914,-0.005,0.1066,0.0964,0.137,0.3148,0.5026,0.472,0.67,0.7106,0.8832,0.8122,0.7258,0.6446,0.7818,0.8274,0.863,0.8528,0.6802,0.6904,0.533,-0.3244,-0.0378,0.4648,0.6378,0.8,0.5892,0.3298,0.0054,-0.2162,-0.3028,-0.346,-0.3136,-0.2648,-0.254,-0.3352,-0.1568,-0.1244,-0.0648,0.081,0.0918,0.1892,0.6108,0.7406,0.8324,0.919,0.973,0.9406,0.9838,1,0.7028,0.3946,0.254,-0.314,0.3358,0.6968,0.8916,0.87,0.6968,0.2852,-0.0902,-0.3212,-0.5234,-0.6968,-0.5234,-0.6678,-0.5596,-0.5162,-0.6462,-0.5596,-0.4152,-0.2636,-0.2418,0.0108,0.4008,0.8122,0.8916,0.9784,0.8556,0.9784,1,0.9712,0.8556,0.6968,0.0902,-0.497,0.0658,0.485,0.7366,0.7246,0.2036,-0.2514,-0.3652,-0.533,-0.539,-0.509,-0.539,-0.509,-0.533,-0.4432,-0.491,-0.515,-0.527,-0.509,-0.3832,-0.1616,0.2396,0.6766,0.9102,0.8982,0.8384,0.8562,0.9162,1,0.8264,0.5688,0.4132,-0.3636,0.0454,0.2728,0.5,0.909,0.8182,0.5454,0.2728,0.1818,0,0,0.091,0.2272,0.1818,0.2728,0.2728,0.3636,0.6818,0.591,0.8182,0.8636,1,0.591,0.7728,0.8636,0.909,0.9546,0.909,0.591,0.5,0.409,0.2728,-0.3778,0.0666,0.2444,0.3778,0.8666,0.8666,0.2444,0.2,0.2,-0.0222,0.0222,0.2,0.2,0.2444,0.2444,0.3778,0.4666,0.5556,0.6444,0.6,0.9112,0.7334,0.7334,0.7778,0.8666,1,0.9556,0.7778,0.6444,0.6444,0.4222,0.5112,-0.3334,0.0556,0.4166,0.8612,0.8334,0.6388,0.25,-0.0834,-0.2222,-0.2778,-0.4722,-0.1666,-0.1388,-0.2778,-0.3056,-0.5834,-0.5278,-0.3334,-0.1388,-0.5834,-0.0556,0.3612,0.8056,0.8612,0.9444,1,1,1,1,0.6944,0.7222,0.1112,-1,-1,-1,-1,-1,-1,-0.971,-0.9718,-0.97,-0.9638,-0.4588,0.5938,0.7932,0.7516,0.7444,0.6972,0.8132,0.9194,0.9348,0.5014,0.0082,-0.3364,-0.5612,-0.7272,-0.7952,-0.8876,-0.9428,-0.9456,-0.942,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.971,-0.9646,-0.959,-0.9634,-0.2948,0.6314,0.932,0.841,0.6672,0.7332,0.7932,0.753,0.5916,0.0626,-0.16,-0.4798,-0.689,-0.6596,-0.8142,-0.85,-0.9122,-0.9248,-0.9212,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.85,-0.9134,-0.7668,-0.8168,-0.6368,-0.688,-0.804,-0.77,-0.7634,-0.77,-0.7868,-0.67,-0.8368,-0.9268,-0.91,-0.87,-0.85,-0.71,-0.45,-0.1868,-0.3734,-0.54,-0.7834,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,-0.9142,-0.9142,1,1,1,-0.7142,-0.6286,-0.7428,-0.8286,-0.6858,-0.6,0.2286,0.0572,-0.3714,0.1142,0,-0.8,-0.7714,-0.6286,-0.7428,-0.3428,-0.2572,-1,-1,-1,-1,1,1,1,1,1,1,1,0.999,0.9384,0.8304,0.771,0.8524,0.8646,0.8942,0.9108,0.9058,0.892,0.8096,0.7796,0.9488,-0.7066,-0.3648,-0.1526,0.619,0.6396,0.8866,0.9912,1,-0.1666,0.2916,0.4166,0.5,0.5,0.3334,0.125,0.3334,0.2916,0.5416,0.875,0.875,1,1,1,0.9166,0.9166,0.9166,0.9166,0.9584,0.9584,0.875,0.625,0.375,0,-0.125,0.125,-0.0416,-0.0416,-0.0416,-0.2916,-0.4166,0.125,0.3572,0.7142,0.6964,0.1964,0,0.0714,0.1964,0.3392,0.6428,0.9822,0.8036,0.8572,1,0.8928,0.7678,0.7322,0.8214,0.7142,0.9286,0.875,0.8928,0.8392,0.0892,0.2142,0.1964,-0.0178,-0.3572,-0.2142,-0.0536,-0.1786,-0.6786,0.244,0.496,0.8582,0.8582,0.2756,0.3544,0.3386,0.5118,0.5118,0.7638,1,0.8426,0.7638,0.7796,0.7952,0.6536,0.6378,0.7952,0.6062,0.7638,0.7638,0.7008,0.496,0.3386,0.2598,0.1496,0.0078,-0.0078,-0.3544,0.0552,0.1496,-0.4016,0.6302,-1,-1,1,-0.8,-1,-0.2,-0.8334,-1,-0.2286,-0.0286,0.1428,0.0714,-0.0286,-0.0572,-0.1286,-0.0142,0,0.0286,0.2,0.7572,0.6858,1,1,0.4428,0.2714,0.3714,0.2714,0.0286,0.2428,0.3572,0.1572,-0.2428,-0.0714,-0.0572,0.1286,0.1286,-0.2,0.0572,0,-0.5286,'1'
-0.5052,-0.212,0.0732,0.288,0.5838,0.5184,0.5498,0.178,0.0706,0.0524,0.013,0.0392,0.1074,0.1048,0.1938,0.2932,0.3664,0.6256,0.809,0.9346,1,0.9528,0.8324,0.8482,0.8848,0.89,0.8586,0.7042,0.6256,0.6466,0.8246,0.8508,-0.429,-0.1342,0.1474,0.3626,0.644,0.567,0.6388,0.2084,0.0704,0.0572,0.1288,0.1128,0.1236,0.1076,0.1528,0.3014,0.5034,0.6176,0.7662,0.7876,1,0.9176,0.7902,0.9204,0.8592,0.8646,0.6892,0.5564,0.6892,0.591,0.559,0.429,-0.4852,-0.2654,0.1046,0.3968,0.5228,0.571,0.5174,0.1234,0.051,0.0268,0.051,-0.0054,-0.0026,0.0698,0.1502,0.2038,0.378,0.496,0.6462,0.8096,0.9598,1,0.874,0.9034,0.8928,0.9706,0.9436,0.8364,0.7158,0.6032,0.6006,0.547,-0.5396,-0.2374,0.1108,0.364,0.3956,0.5022,0.269,0.0706,-0.033,-0.1366,-0.1194,-0.0676,-0.01,0.0072,0.036,0.1626,0.3008,0.3612,0.5166,0.7122,0.8992,0.9626,0.8792,0.8964,0.908,1,0.9828,0.8906,0.741,0.6546,0.6028,0.5424,-0.589,-0.0798,0.0644,0.3896,0.595,0.4938,0.0184,-0.0614,-0.1564,-0.2392,-0.2116,-0.2608,-0.1442,-0.049,-0.0338,0.0706,0.1288,0.2516,0.3558,0.4908,0.6596,0.8068,0.8712,0.8466,0.868,0.8958,1,0.862,0.7208,0.6104,0.5062,0.4202,-0.6328,0.046,0.3442,0.695,0.6886,0.354,-0.0032,-0.0066,-0.059,-0.2852,-0.1934,-0.2688,-0.1836,-0.1148,-0.1344,0.082,0.1378,0.1836,0.2524,0.3968,0.5148,0.7114,0.9442,1,0.9312,0.9934,0.9344,0.9278,0.8786,0.7836,0.5378,0.6328,-0.7152,-0.0738,0.1972,0.4476,0.3894,-0.108,-0.2556,-0.2728,-0.5334,-0.6466,-0.4888,-0.3138,-0.2934,-0.2624,-0.2316,-0.2418,-0.2488,-0.1046,-0.0464,-0.0018,0.156,0.4134,0.8284,1,0.8284,0.8114,0.8284,0.7324,0.6296,0.506,0.386,0.2968,-0.4666,-0.2334,0.1,0.1334,0.5,0.4666,0.4334,0.1334,0.1,-0.0334,-0.0334,-0.0666,0.1666,0.1,0.2,0.4334,0.3666,0.6,0.8666,0.9334,1,0.7334,0.6666,0.9,0.8666,0.9334,0.6,0.6,0.6666,0.6334,0.6334,0.8666,-0.4828,-0.2414,0.069,0.3104,0.4828,0.5862,0.5862,0.1724,0.1034,0.069,0,0.1034,0.1724,0.2068,0.2068,0.2414,0.4138,0.7242,0.8966,1,0.9656,0.8276,0.8966,0.8966,0.8966,0.8276,0.8276,0.7586,0.6896,0.7932,0.8276,0.931,-0.5604,-0.099,0.077,0.3626,0.6264,0.6044,-0.099,0.055,-0.2748,-0.055,-0.1208,-0.2088,-0.033,-0.1428,0.055,0.033,0.099,0.2528,0.3846,0.5384,0.7362,0.8682,0.956,0.956,0.934,0.912,1,0.912,0.8462,0.8022,0.4506,0.5384,-1,-1,-1,-1,-1,-1,-0.9512,-0.9626,-0.958,-0.9648,-0.8172,0.2492,0.8648,0.7684,0.816,0.6446,0.4822,0.4152,0.4866,0.1982,-0.2924,-0.565,-0.6536,-0.6162,-0.8546,-0.9102,-0.9296,-0.9454,-0.9432,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9808,-0.9842,-0.9852,-0.986,-0.7468,0.4596,0.652,0.3162,0.92,0.9112,0.6418,0.134,-0.155,-0.5204,-0.7328,-0.8238,-0.8484,-0.9062,-0.9294,-0.953,-0.9596,-0.9738,-0.9772,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7306,-0.78,-0.8668,-0.8068,-0.7468,-0.45,-0.3312,-0.6068,-0.6178,-0.529,-0.4978,-0.6712,-0.5912,-0.7024,-0.6956,-0.6868,-0.5834,-0.6934,-0.5068,-0.38,-0.5534,-0.74,-0.9068,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.2286,-1,-1,0.2572,1,1,-0.4,-0.6286,-0.8286,-1,-0.8572,-0.6,-0.5428,-0.6286,0.5714,-0.4858,-0.0858,-0.3714,-0.6286,-0.7142,-0.4,-0.2858,-0.7142,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.8424,0.8462,0.8226,0.8364,0.8304,0.7568,0.7748,0.83,0.9252,0.9994,-0.48,0.0352,-0.9212,0.3158,0.4294,0.5654,0.6476,1,0.0734,0.32,0.34,0.5934,0.5066,0.8134,1,0.94,0.5466,0.48,0.5734,0.5,0.6266,0.4734,0.2666,0.3866,0.1934,0.2334,0.32,0.1666,0.46,0.4934,0.2466,0.46,0.48,0.36,0.3934,0.3734,0.3266,0.3466,0.0266,-0.3666,-0.0722,0.1616,0.3402,0.457,0.3608,0.567,1,0.8144,0.5738,0.6152,0.5326,0.354,0.622,0.622,0.6152,0.5464,0.3814,0.2784,0.347,0.4364,0.4158,0.4502,0.3264,0.519,0.4432,0.3814,0.3884,0.2508,0.1822,-0.0172,0.0034,-0.5602,-0.1614,0.1988,0.5776,0.5776,0.4472,0.559,0.677,0.826,0.7702,0.882,0.9254,0.7578,1,0.9876,0.7764,0.733,0.8758,0.8012,0.6212,0.6274,0.5776,0.5032,0.4038,0.4286,0.4286,0.2546,0.3914,0.2608,0.0746,0.1614,0.0248,-0.2174,-0.9926,1,-1,-1,-1,-1,-1,-1,1,-0.5412,-0.1926,0.1744,0.2844,0.1744,-0.1192,-0.2478,0.0642,0.0458,-0.101,0.3944,0.7982,0.7982,1,0.7064,0.3028,0.2844,0.3028,0.6514,0.5596,-0.0092,0.4862,0.4128,-0.1926,-0.4128,-0.1744,0.0276,0.0458,-0.0458,0.6146,0.4862,-0.1926,'1'
-0.155,0.3838,0.3838,0.5572,0.2324,-0.262,-0.7232,-0.7638,-0.5388,-0.6974,-0.6532,-0.4982,-0.4206,-0.2916,-0.2916,-0.1586,-0.107,0.096,0.0848,0.166,0.642,0.6678,1,0.9594,0.941,0.8414,0.9152,0.7454,0.7896,0.6864,0.679,0.738,-0.2736,0.1666,0.2452,0.3806,0.0534,-0.2642,-0.456,-0.5126,-0.5534,-0.6824,-0.566,-0.7138,-0.6886,-0.4496,-0.5378,-0.3144,-0.2988,-0.1698,-0.1824,-0.1698,0.1824,0.2232,0.4938,0.8774,1,0.7704,0.673,0.7736,0.7012,0.805,0.629,0.61,-0.2952,0.0994,0.4132,0.511,0.0118,-0.2614,-0.629,-0.6424,-0.6324,-0.6392,-0.7234,-0.6122,-0.6088,-0.6122,-0.4874,-0.5346,-0.339,-0.3018,-0.1838,-0.0624,0.022,0.177,0.3188,0.6222,0.8854,1,0.8078,0.7268,0.8112,0.8414,0.8414,0.6358,-0.3296,0.035,0.65,0.639,-0.186,-0.4918,-0.6648,-0.5506,-0.6574,-0.6686,-0.8306,-0.6942,-0.6648,-0.4954,-0.499,-0.5506,-0.4402,-0.267,-0.2266,-0.1896,-0.0276,0.024,0.2854,0.5728,0.9668,1,0.8564,0.7238,0.709,0.7458,0.6832,0.5838,-0.3642,0.4148,0.92,0.7558,-0.1242,-0.6042,-0.5748,-0.5874,-0.7936,-0.7936,-0.8736,-0.7684,-0.579,-0.6126,-0.5242,-0.4358,-0.381,-0.3936,-0.44,-0.3052,-0.1664,-0.1284,0.1578,0.461,0.9074,1,0.9664,0.7726,0.6422,0.6926,0.5578,0.5032,-0.449,0.7246,0.8416,0.415,-0.1962,-0.4302,-0.6566,-0.7094,-0.5924,-0.7548,-0.849,-0.9246,-0.8,-0.649,-0.6038,-0.5472,-0.4792,-0.5056,-0.7056,-0.4982,-0.351,-0.317,-0.068,0.3056,0.5622,1,0.9774,0.8416,0.6302,0.7132,0.6792,0.4264,-0.4058,0.5586,0.7148,0.5076,-0.0934,-0.3616,-0.511,-0.5382,-0.4736,-0.6468,-0.4906,-0.4296,-0.4534,-0.4194,-0.2734,-0.2802,-0.4092,-0.416,-0.4872,-0.3786,-0.2938,-0.2564,-0.0458,0.0866,0.708,1,0.932,0.5654,0.6502,0.613,0.5892,0.5246,-0.1818,0.2728,0.4546,0.5,0.091,-0.2272,-0.5,-0.6818,-0.4546,-0.591,-0.4546,-0.2728,-0.3636,-0.3182,-0.2272,-0.0454,0.1818,0.1818,0.5,0.4546,0.909,0.909,1,1,1,1,0.7728,0.591,0.409,0.5,0.6818,0.7728,0.1186,0.5254,0.5594,0.661,0.356,0.1864,-0.4916,-0.4238,-0.1526,-0.2882,-0.0848,-0.2882,-0.1186,0.1186,0.1186,0.1526,0.0508,0.356,0.1526,0.4238,0.7288,0.7288,0.9662,1,0.8984,0.7966,1,0.8306,0.7966,0.661,0.695,0.7628,-0.1398,0.785,0.957,0.699,-0.0322,-0.1612,-0.4838,-0.5268,-0.4194,-0.3764,-0.5054,-0.8064,-0.4624,-0.3764,-0.3334,-0.1398,-0.1182,-0.0752,-0.3334,0.0108,-0.0968,0.1828,0.2474,0.4838,0.914,0.9354,0.9354,1,0.699,1,0.871,0.785,-1,-1,-1,-1,-1,-1,-0.9638,-0.9524,-0.9648,-0.9752,-0.3886,0.7672,0.5934,0.4672,0.3348,0.5188,0.5738,0.6452,0.819,0.8054,0.0906,-0.2302,-0.5624,-0.7206,-0.9192,-0.9328,-0.9214,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.946,-0.9408,-0.9414,-0.9484,-0.3438,0.8126,0.8002,0.827,0.827,0.6414,0.5702,0.351,0.4002,0.3622,-0.1636,-0.3622,-0.6028,-0.6698,-0.7404,-0.811,-0.8126,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8468,-0.7668,-0.8868,-0.8268,-0.7568,-0.7026,-0.535,-0.42,-0.44,-0.54,-0.7426,-0.8778,-0.9112,-0.9024,-0.7712,-0.809,-0.79,-0.35,0.2832,-0.0434,-0.0734,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,-1,-1,1,1,1,-0.4286,-0.8858,-0.8572,-0.9428,-0.9428,-0.8,-0.6858,-0.6286,-0.2858,-0.5428,-0.6858,-0.1142,-0.4286,-0.3142,-0.1714,-1,-1,-1,-1,-1,-1,-0.3174,-0.3092,-0.3276,-0.3142,-0.2632,-0.2286,-0.1766,-0.1454,-0.1496,-0.2498,1,1,1,1,1,1,1,1,1,1,-0.5334,-0.0236,-0.4184,0.891,0.8252,0.7308,0.7166,1,-0.5384,0.3846,0.4358,-0.1282,0.4358,0.4872,0.5898,0.641,0.7436,0.4872,0.5898,0.7948,1,0.8974,0.8462,0.5898,0.641,0.5898,0.3334,0.641,0.641,0.5384,0.5384,0.4358,0.3334,0.3846,0.3334,0.7436,0.5898,0.4872,0.1794,-0.4358,0.186,0.6744,0.5348,-0.0232,0.1162,0.2094,0.814,0.8604,0.9768,0.907,0.7906,1,0.9302,1,0.721,0.4884,0.907,0.5582,0.628,0.628,0.5814,0.4884,0.4652,0.3954,0.6512,0.6046,0.721,0.8838,0.7906,0.9768,0.8604,0.279,0.673,0.8076,0.673,0.077,0.0962,0.1538,0.173,0.423,0.6154,0.9038,0.8654,0.827,1,0.75,0.6924,0.7692,0.6924,0.5192,0.2116,0.3846,0.5384,0.5192,0.1346,0.173,0.327,-0.0384,-0.2116,0,0.2692,0.423,0.2308,0.0962,1,-1,-1,1,-1,-1,-0.6,-0.8334,-1,-0.3424,0.0548,-0.0136,0.137,0.274,0.0958,0.1232,0.0136,0.0958,0.411,0.5754,0.7946,0.9316,1,0.8356,1,0.6164,0.7534,0.8356,0.9452,0.9726,0.8494,0.9452,0.7534,0.7534,0.5754,0.6028,0.6028,0.3972,0.2876,0.2876,-0.0822,'2'
-0.2268,0.244,0.4742,0.5946,0,-0.5532,-0.6186,-0.6632,-0.6908,-0.8626,-0.8866,-0.6838,-0.5292,-0.5154,-0.457,-0.5464,-0.4364,-0.2062,-0.1238,0.1272,0.3368,0.512,0.8934,0.9588,1,0.8694,0.8282,0.811,0.9004,0.6872,0.5704,0.5602,-0.3562,-0.0114,0.2792,0.319,-0.3134,-0.4672,-0.5982,-0.6724,-0.718,-0.6468,-0.7008,-0.6952,-0.584,-0.6438,-0.5584,-0.453,-0.4844,-0.319,-0.2592,-0.2422,-0.0428,0.2166,0.3676,0.775,0.9032,1,0.8206,0.7834,0.9744,0.9658,0.9572,0.7094,-0.4104,-0.117,0.2834,0.2666,-0.4218,-0.5938,-0.6022,-0.6362,-0.6898,-0.7292,-0.811,-0.7602,-0.7856,-0.715,-0.6192,-0.5966,-0.5036,-0.5064,-0.4472,-0.3032,-0.1734,-0.041,0.2582,0.5092,0.8336,1,0.9746,0.7856,0.8194,0.8956,0.8872,0.8308,-0.389,0.0922,0.6178,0.4914,-0.4198,-0.6382,-0.7884,-0.7884,-0.703,-0.7884,-0.8362,-0.761,-0.7918,-0.6622,-0.7098,-0.703,-0.628,-0.669,-0.5426,-0.396,-0.2252,-0.2286,0.1126,0.3482,0.8532,1,0.9624,0.6826,0.7782,0.843,0.8498,0.6622,-0.347,0.6858,1,0.649,-0.151,-0.4448,-0.7184,-0.6694,-0.951,-0.9266,-0.8448,-0.849,-0.7674,-0.747,-0.8408,-0.6734,-0.6858,-0.8122,-0.8368,-0.7102,-0.4286,-0.4572,-0.1756,0.1918,0.7388,0.8816,0.804,0.2286,0.3346,0.502,0.6122,0.3836,-0.441,0.8054,1,0.3748,-0.1718,-0.412,-0.7474,-0.6522,-0.6812,-0.7888,-0.8716,-0.6356,-0.6522,-0.8178,-0.532,-0.4824,-0.5942,-0.5942,-0.793,-0.7598,-0.528,-0.3292,-0.118,0.3374,0.8924,0.9834,0.8758,0.4452,0.6232,0.7226,0.6356,0.3706,-0.4834,0.4794,0.5372,0.3224,-0.31,-0.5786,-0.6488,-0.6158,-0.7108,-0.7976,-0.7892,-0.624,-0.6158,-0.7232,-0.6984,-0.7024,-0.8224,-0.4794,-0.6528,-0.6652,-0.4876,-0.5578,-0.3802,0.1612,0.876,1,0.7356,0.6446,0.7232,0.752,0.7686,0.409,0.0952,0.5238,0.6666,0.762,0.2858,-0.238,-0.1428,-0.4286,-0.381,-0.3334,-0.4762,-0.0952,-0.1428,-0.6666,-0.3334,-0.381,-0.238,0.0952,0.2858,0.619,0.619,0.8572,0.8572,0.7142,0.6666,0.9524,1,0.8096,0.8572,0.619,0.5238,0.5238,-0.1698,0.1698,0.283,0.3584,-0.0566,-0.5472,-0.6982,-0.8114,-0.849,-0.6604,-0.8114,-0.3962,-0.434,-0.1698,-0.0944,-0.132,-0.132,0.0188,0.132,0.283,0.4716,0.7358,0.9246,1,0.849,0.5472,0.6604,0.6982,0.6982,0.434,0.2076,0.3962,-0.3766,0.1428,0.6624,0.5064,-0.3766,-0.4806,-0.6884,-0.6884,-0.5584,-0.6104,-0.7662,-0.3766,-0.3766,-0.5064,-0.6884,-0.6624,-0.4546,-0.6364,-0.4286,-0.2988,-0.1688,-0.4026,0.1688,0.3766,0.948,0.948,0.974,0.5844,0.8182,0.922,1,0.7922,-1,-1,-1,-1,-0.88,-0.8518,-0.8542,-0.8506,-0.9248,-0.9588,-0.007,0.8988,0.86,0.6542,0.5894,0.5482,0.6952,0.7212,0.5436,0.0588,-0.2894,-0.4824,-0.5988,-0.7542,-0.8564,-0.8624,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9394,-0.9296,-0.9378,-0.9378,-0.9576,-0.9678,-0.4704,0.0938,0.5728,0.7322,0.904,0.3908,-0.049,-0.2496,-0.3546,-0.5264,-0.6618,-0.713,-0.7924,-0.8242,-0.8332,-0.8158,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9454,-0.9,-0.84,-0.8334,-0.7768,-0.6234,-0.7034,-0.5846,-0.28,-0.0668,-0.062,-0.132,-0.638,-0.856,-0.952,-0.876,-0.774,-0.562,-0.5234,-0.2134,-0.09,-0.05,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.1142,-1,-1,-1,-0.9714,1,1,1,0.0286,-0.9142,-1,-0.8,-0.3714,-0.4286,-0.4286,-0.5428,-0.8286,-0.4286,-0.7714,-0.6286,-0.6572,-0.4858,-1,-1,-1,-1,-1,-1,-1,-0.3752,-0.3388,-0.2982,-0.3024,-0.2766,-0.248,-0.2378,-0.2322,-0.258,-0.332,1,1,1,1,1,1,1,1,1,1,-0.44,0.1412,-0.3298,-0.1812,0.1886,0.1664,0.145,1,0.2444,0.5112,0.2444,-0.0222,0.1556,0.2888,0.7334,0.7334,0.9112,1,0.8222,0.8222,0.9112,0.8222,0.7334,0.7334,0.7334,0.4222,0.6444,0.7778,0.7778,0.8222,0.6,0.6444,0.6888,0.6,0.6444,0.6888,0.7334,0.5112,0.2888,-0.0666,0.28,0.66,0.42,0.14,-0.02,0.26,0.36,0.5,0.86,0.82,0.64,0.94,1,0.72,0.62,0.76,0.54,0.4,0.42,0.42,0.44,0.56,0.28,0.4,0.5,0.64,0.62,0.56,0.48,0.38,0.1,0.04,0.618,0.8652,0.7978,0.0112,-0.146,-0.1012,-0.1236,-0.0786,0.2134,0.5056,0.7752,0.8652,1,0.8876,0.5956,0.8652,0.4832,0.4158,0.146,0.3932,0.3258,0.0786,0.0786,0.236,0.2584,0.5956,0.6404,0.4606,0.191,0.0562,0.3708,0.2134,0.0654,-1,-1,1,-0.8,-0.2,-0.4,-0.8334,-1,-0.3902,-0.1952,0.2682,0.3048,-0.0976,0.0122,0.1586,-0.0732,0.0244,0.0732,0.3414,0.8292,0.8292,0.6952,0.7318,0.5,0.5366,1,0.878,0.256,0.4268,0.5122,0.4512,0.317,0.3292,0.256,0.0244,0.561,0.5244,0.3048,0.183,0.0854,'2'
-0.0866,0.593,0.6536,0.8962,0.697,0.1732,-0.065,-0.1774,-0.1774,-0.2078,-0.355,-0.3896,-0.0692,-0.1256,0.0086,-0.0476,0.0866,0.2988,0.3506,0.6754,0.7402,0.697,0.7748,0.6796,0.7662,1,0.8484,0.7272,0.3636,0.2858,0.0996,0.065,-0.188,0.3676,0.8162,1,0.5898,0.124,-0.3034,-0.376,-0.423,-0.5214,-0.406,-0.2008,-0.2008,-0.2264,-0.2522,-0.1196,0.1068,0.2094,0.2094,0.2436,0.4572,0.6196,0.859,0.9616,0.9274,0.5512,0.6026,0.5812,0.4102,0.4358,0.376,-0.0512,-0.255,0.1396,0.9468,1,0.2638,-0.0554,-0.255,-0.4812,-0.725,-0.663,-0.6364,-0.4502,-0.3748,-0.4768,-0.2816,-0.153,-0.0156,-0.011,0.0156,0.1708,0.2106,0.4236,0.827,0.96,0.9778,0.6674,0.53,0.734,0.8714,0.7118,0.5166,0.193,-0.3124,0.4326,0.9952,0.875,0.274,-0.125,-0.3846,-0.6634,-0.774,-0.726,-0.7932,-0.774,-0.6972,-0.548,-0.3414,-0.3318,-0.25,-0.0626,-0.1202,-0.0384,0.0722,0.2116,0.5336,0.851,1,0.9038,0.726,0.6346,0.774,0.8124,0.7884,0.6634,-0.49,0.695,0.905,0.59,0.13,-0.24,-0.405,-0.475,-0.695,-0.77,-0.695,-0.52,-0.535,-0.605,-0.45,-0.48,-0.485,-0.425,-0.415,-0.43,-0.25,-0.11,0.38,0.785,1,0.745,0.635,0.68,0.725,0.75,0.605,0.575,-0.4762,0.2494,0.5134,0.435,-0.0846,-0.369,-0.431,-0.3938,-0.5176,-0.736,-0.5506,-0.5506,-0.3732,-0.3484,-0.464,-0.4144,-0.1546,-0.369,-0.2578,-0.266,-0.0186,0.1216,0.336,0.769,1,0.8928,0.7484,0.765,0.736,0.8516,0.7568,0.5712,-0.5398,0.2118,0.4124,0.2438,-0.1526,-0.5536,-0.4852,-0.4716,-0.5354,-0.6902,-0.6584,-0.435,-0.344,-0.3896,-0.312,-0.2574,-0.4534,-0.3712,-0.303,-0.221,0.016,0.1298,0.3212,0.6856,0.9726,1,0.8816,0.8452,0.6628,0.713,0.754,0.476,0.0556,0.8334,0.7778,0.5556,0.5556,0.1112,0.1112,-0.3334,0.1112,-0.1666,-0.1112,-0.2222,0.1666,0.1112,0.0556,-0.1112,-0.2778,0.1666,0.3888,0.7778,0.8334,0.6666,0.7222,0.5556,0.6112,1,0.8888,0.5556,0.6112,-0.1666,-0.4444,-0.1112,-0.102,0.4694,0.4286,0.7142,0.551,0.1836,-0.102,-0.102,-0.102,-0.0204,-0.2654,-0.347,0.0204,-0.0204,0.102,0.0612,0.1428,0.0204,0.3062,0.7552,0.9184,0.6734,0.7142,0.6734,0.796,0.8776,1,0.551,0.347,-0.102,0.0204,0.2244,-0.4458,0.494,0.6386,0.5662,-0.1326,-0.3254,-0.2772,-0.3012,-0.4698,-0.5662,-0.5422,-0.494,-0.3012,-0.2772,-0.253,-0.229,0.0362,0.012,-0.1084,-0.0844,0.0362,0.253,0.2772,0.9518,1,0.9036,0.759,0.8314,0.8554,0.9518,0.8554,0.7832,-0.9588,-0.947,-0.96,-0.9564,-0.9634,-0.9482,-0.954,-0.9482,-0.947,-0.9116,-0.8726,0.6628,0.849,0.6982,0.7442,0.7536,0.6344,0.4316,0.2512,-0.0826,-0.388,-0.5566,-0.5508,-0.796,-0.9092,-0.9492,-0.9588,-0.9504,-1,-1,-1,-1,-1,-0.8792,-0.771,-0.626,-0.4422,-0.4374,-0.4484,-0.4086,-0.404,-0.1142,0.1406,-0.3198,0.644,0.8098,0.6572,0.6322,0.6658,0.4944,0.3682,0.1258,-0.076,-0.1952,-0.4438,-0.5676,-0.7296,-0.8472,-0.9088,-0.9298,-0.8878,-1,-1,-1,-1,-1,-0.26,0.74,1,1,1,0.9732,1,1,1,1,0.4366,-0.7,-0.88,-0.82,-0.8772,-0.875,-0.855,-0.9026,-0.945,-0.6326,-0.415,-0.595,-0.5734,-0.36,-0.43,-0.6834,-0.7768,-0.5434,-1,-1,-1,-1,-1,1,1,-0.2572,-0.8572,-0.8,-0.8572,-0.9428,-0.8286,-0.5142,0.0858,1,1,-0.5142,-0.8,-0.8286,-0.9142,-0.7714,-0.5714,-0.5142,-0.2858,-0.6572,0.4572,-0.5142,-0.1142,0.0572,-0.4,-0.7428,-0.5714,-1,-1,-1,-1,-1,0.2848,0.2864,0.2986,0.2858,0.2876,0.2738,0.2486,0.2226,0.18,0.0522,0.7418,0.7352,0.7648,0.8038,0.8172,0.8424,0.875,0.8736,0.9136,1,-0.4666,-0.1294,-0.4234,-0.2264,0.901,0.9516,0.8512,-0.425,-0.8612,-0.6074,-0.5422,-0.2712,-0.2842,-0.141,-0.102,0.026,0.0998,0.1236,0.141,0.1888,0.2322,0.3146,0.3168,0.2494,0.206,0.039,-0.0044,0.0326,0.217,0.2886,0.4296,0.4056,0.5466,0.7614,1,0.8806,0.718,0.8546,0.8026,0.3318,-0.853,-0.719,-0.4716,-0.2948,-0.2688,-0.159,0.0512,0.0084,0.2112,0.306,0.2968,0.254,0.4306,0.5852,0.5106,0.3674,0.3154,0.2838,0.2446,0.3098,0.3452,0.4362,0.4772,0.5404,0.6148,0.8494,0.948,1,0.8102,0.8828,0.9442,0.7954,-0.9904,-0.6816,-0.4338,-0.2946,-0.2374,-0.2602,-0.1268,0.0066,0.3156,0.3366,0.3422,0.3404,0.4432,0.4052,0.4432,0.3728,0.2164,0.2126,0.3822,0.407,0.306,0.245,0.3308,0.468,0.5634,0.9924,1,0.7788,0.693,0.6816,0.7616,0.611,-0.8846,-1,1,-1,-1,-1,-0.8,1,-1,0,-0.0406,0.3244,0.2432,-0.1352,-0.0946,0.081,0.027,0.1216,0.1892,0.5,0.7298,0.7298,1,0.3648,0.027,0.1486,0.6082,0.5946,0.081,0.2432,0.419,0.3244,0.2028,0.2028,0.0676,0.027,-0.2298,0.1082,0.0676,-0.1486,-0.419,'3'
-0.308,0.336,0.332,0.312,0.224,-0.064,-0.156,-0.288,-0.38,-0.38,-0.448,-0.2,-0.224,-0.18,-0.056,-0.032,-0.016,0.196,0.384,0.564,0.86,0.944,1,0.96,0.904,0.868,0.82,0.872,0.892,0.62,0.508,0.384,-0.2814,0.1888,0.1258,0.3146,0.1092,-0.106,-0.3476,-0.3112,-0.3908,-0.4206,-0.4536,-0.5364,-0.3642,-0.4172,-0.2948,-0.2948,-0.202,-0.1126,-0.053,0.1358,0.255,0.4868,0.6656,0.8576,1,0.9504,0.8212,0.788,0.8212,0.6822,0.6158,0.5232,-0.367,-0.0158,0.212,0.3038,-0.117,-0.2594,-0.5538,-0.5696,-0.5126,-0.6518,-0.6582,-0.557,-0.5474,-0.4526,-0.4746,-0.4114,-0.3766,-0.3228,-0.1804,-0.1012,0.0822,0.2436,0.367,0.6898,0.8892,1,0.9462,0.883,0.8798,0.8766,0.8544,0.7658,-0.415,-0.1122,0.3164,0.296,-0.415,-0.653,-0.6904,-0.6564,-0.6394,-0.6666,-0.7994,-0.7346,-0.6598,-0.5034,-0.5374,-0.4762,-0.5102,-0.483,-0.3062,-0.1768,-0.085,0.0578,0.2756,0.4966,0.8606,1,0.9796,0.898,0.898,0.9354,0.8232,0.6938,-0.4188,0.312,0.671,0.4616,-0.3974,-0.4358,-0.6794,-0.7948,-0.829,-0.9102,-0.859,-0.688,-0.6368,-0.7222,-0.6666,-0.6496,-0.6452,-0.5598,-0.4444,-0.3804,-0.1368,-0.0428,0.0684,0.3974,0.8974,0.953,1,0.9658,0.7778,0.953,0.8888,0.3804,-0.4688,0.4336,0.5274,0.0704,-0.371,-0.5898,-0.7696,-0.7696,-0.746,-0.8046,-0.875,-0.7618,-0.6328,-0.5742,-0.6328,-0.6446,-0.582,-0.6132,-0.5,-0.3398,-0.2774,-0.129,0.0468,0.2812,0.6796,1,0.871,0.711,0.8282,0.707,0.6562,0.543,-0.4776,0.4218,0.5718,0.242,-0.2506,-0.499,-0.7302,-0.7344,-0.923,-0.97,-0.7602,-0.7516,-0.7602,-0.7858,-0.7044,-0.713,-0.833,-0.726,-0.696,-0.5588,-0.3748,-0.2548,0.1478,0.302,0.8372,1,0.9958,0.9528,0.8672,0.7774,0.6188,0.5032,-0.2196,0.4146,0.4146,0.122,0.122,0.0244,-0.3658,-0.561,-0.5122,-0.4634,-0.317,0.0244,0.122,-0.1708,0.317,0.2682,0.1708,0.561,0.756,0.6098,0.9024,1,0.756,0.6586,0.6098,0.5122,0.561,0.6098,0.8048,0.6098,-0.0244,0.3658,-0.2308,0.5,0.5,0.3846,0.3462,0.1924,0.1538,0.0384,0,-0.1154,-0.1538,0.0384,0.0384,0,0.0384,0,0.1538,0.3846,0.5384,0.7692,0.9616,0.7308,1,0.7308,0.8846,0.6538,0.8462,0.577,0.6538,0.4616,0.423,0.3076,-0.309,0.0546,0.3818,0.3272,-0.3818,-0.491,-0.491,-0.4,-0.5272,-0.6,-0.691,-0.691,-0.4,-0.3636,-0.491,-0.3454,-0.3454,-0.491,-0.109,-0.109,-0.0546,0.091,0.2728,0.4546,0.7272,0.9818,1,0.7636,0.9272,0.9454,0.5818,0.6,-0.9078,-0.8058,-0.8472,-0.8114,-0.8086,-0.7314,-0.8774,-0.9188,-0.945,-0.9552,-0.9084,0.609,0.7672,0.4782,0.3838,0.463,0.392,0.494,0.6426,0.1876,-0.2496,-0.412,-0.5236,-0.5882,-0.7156,-0.7562,-0.8734,-0.9566,-0.883,-1,-1,-1,-1,-0.842,-0.7626,-0.6952,-0.6504,-0.606,-0.582,-0.5886,-0.555,-0.52,-0.5408,-0.6624,0.0742,0.821,0.2314,0.5442,0.8254,0.6148,0.0688,-0.224,-0.3686,-0.5702,-0.683,-0.7362,-0.7534,-0.7798,-0.8814,-0.9148,-0.8928,-0.898,-1,-1,-1,-1,0.8732,1,1,0.9932,1,0.96,1,1,1,1,0.6932,-0.4,-0.2858,-0.5086,-0.2526,-0.23,-0.3,-0.4676,-0.9176,-0.7976,-0.8476,-0.83,-0.77,-0.6434,-0.4768,-0.7168,-0.1934,0.08,-0.3734,-1,-1,-1,-1,-0.3714,-0.5142,-0.8858,-0.9428,-0.9142,-0.9428,-0.8572,-0.9428,-0.9714,-0.6,1,1,0.4286,-0.2,-0.5714,-0.7714,-0.7428,-0.5428,-0.7714,-0.8,-0.7714,-0.8286,-0.8572,-0.9428,0.1428,0.0572,-0.1714,-0.5142,-0.4286,-1,-1,-1,-1,0.109,0.1452,0.1596,0.2118,0.2304,0.2338,0.2426,0.2248,0.115,-0.1526,0.8052,0.843,0.8696,0.9436,0.9666,1,1,1,1,1,-0.5334,-0.1176,-0.696,-0.6608,0.0232,0.8908,0.9162,-0.1166,-0.5006,-0.4436,-0.3726,-0.3036,-0.194,-0.265,0.0092,0.0356,0.1472,0.1614,0.2934,0.3624,0.4072,0.5208,0.47,0.3726,0.3888,0.1818,0.3076,0.3544,0.4396,0.4762,0.47,0.6974,0.7584,0.9756,1,0.8598,0.8396,0.929,0.939,0.5654,-0.6682,-0.7398,-0.7838,-0.5968,-0.4894,-0.3968,-0.2358,-0.2,-0.07,0.0552,0.078,0.0846,0.226,0.2894,0.257,0.2276,0.2456,0.1334,0.1008,0.161,0.2488,0.1674,0.3626,0.5544,0.5918,0.8276,0.9854,0.8048,0.9902,1,0.8926,0.6146,-0.8788,-0.7432,-0.6278,-0.3304,-0.29,-0.1572,-0.1068,-0.1544,0.1444,0.4054,0.2496,0.3334,0.3852,0.4228,0.4126,0.4604,0.3752,0.329,0.4142,0.3838,0.4402,0.4992,0.4444,0.5728,0.7748,0.8586,0.9898,0.935,1,0.9928,0.9278,0.6926,-0.9628,-1,1,-1,-0.8,-1,-0.8,1,-1,-0.3728,-0.3964,-0.3964,-0.0414,-0.077,-0.065,-0.065,-0.1834,-0.0178,0.0532,0.3136,0.645,1,0.8224,0.716,0.29,0.3372,0.3964,0.6568,0.7042,0.5148,0.5148,0.3728,0.0888,0.1952,0.361,0.5858,0.5502,0.3492,0.4674,0.2782,-0.1124,'3'
-0.2868,0.0992,0.8236,0.783,-0.0258,-0.3566,-0.375,-0.511,-0.75,-0.8786,-0.739,-0.5846,-0.4264,-0.3492,-0.3566,-0.3714,-0.3714,-0.022,-0.0552,0.1986,0.5,0.6214,0.875,0.9558,0.9558,0.7758,0.989,1,0.6912,0.4118,0.3052,0.2904,-0.355,-0.0066,0.632,0.5994,0.0424,-0.3518,-0.4462,-0.7232,-0.7036,-0.7166,-0.6026,-0.5016,-0.4918,-0.355,-0.4918,-0.5504,-0.4788,-0.2346,-0.202,-0.1466,0.1042,0.2476,0.3844,0.645,0.9088,1,0.7394,0.9414,0.9772,0.5538,0.3812,0.2182,-0.4144,0.2256,0.6736,0.5392,-0.0496,-0.3216,-0.6736,-0.76,-0.6704,-0.7568,-0.7568,-0.7344,-0.5456,-0.4592,-0.5168,-0.5648,-0.3664,-0.376,-0.456,-0.1712,-0.1232,-0.0368,0.2288,0.4048,0.8432,1,0.8848,0.9104,0.8912,0.6704,0.5296,0.3568,-0.5598,0.294,0.4948,0.2348,-0.2704,-0.3176,-0.678,-0.6986,-0.6986,-0.8552,-0.7754,-0.7578,-0.6012,-0.554,-0.6514,-0.5686,-0.5658,-0.4476,-0.4122,-0.288,-0.1078,-0.0546,0.1432,0.424,0.6396,0.932,1,0.8434,0.8936,0.8582,0.7104,0.7016,-0.625,0.4934,0.6152,0.0328,-0.1086,-0.4244,-0.8552,-0.8224,-0.7894,-0.875,-0.829,-0.5922,-0.6514,-0.6052,-0.7006,-0.625,-0.5328,-0.4802,-0.4144,-0.3684,-0.2368,-0.1448,0.125,0.4046,0.75,0.9276,1,0.8092,0.7106,0.7236,0.6414,0.6184,-0.5204,0.4608,0.5078,0.2508,-0.138,-0.4326,-0.605,-0.5236,-0.6772,-0.7774,-0.7304,-0.6176,-0.5894,-0.58,-0.4138,-0.4388,-0.4546,-0.533,-0.583,-0.2696,-0.2132,-0.3416,-0.0846,0.094,0.5548,1,0.9844,0.6364,0.6678,0.6928,0.649,0.63,-0.49,0.4362,0.5806,0.2954,-0.0672,-0.463,-0.2148,-0.2014,-0.4564,-0.5872,-0.651,-0.4396,-0.312,-0.2718,-0.1644,-0.2618,-0.2046,-0.4228,-0.5,-0.3222,-0.2584,-0.1846,0.141,0.396,0.906,1,0.9362,0.8658,0.8188,0.812,0.7786,0.641,0.0222,0.2444,0.8222,0.7778,0.1556,-0.1556,0.0666,0.0666,-0.3334,-0.6,-0.2444,-0.2888,-0.2444,-0.2,-0.0222,0.1112,0.4666,0.5112,0.3334,0.6888,0.5556,0.8222,0.9556,0.8222,0.4666,0.3778,1,0.9112,0.7778,0.5556,0.4222,0.6888,-0.1764,0.255,0.647,0.647,0.098,-0.1764,-0.2156,-0.098,-0.4902,-0.4902,-0.2942,-0.3334,-0.2942,-0.1764,-0.098,-0.1372,-0.3334,0.0588,0.0588,0.1372,0.3334,0.6078,0.804,0.804,0.647,0.4902,0.9216,1,0.7648,0.4118,-0.1372,0.098,-0.8352,0.4824,0.6,-0.0118,-0.0588,-0.5058,-0.7176,-0.7176,-0.6942,-0.6706,-0.6236,-0.553,-0.647,-0.5058,-0.5058,-0.2942,-0.1764,-0.3412,-0.3412,-0.3648,-0.2,-0.2236,0.153,0.3412,0.8118,0.9058,1,0.8588,0.7882,0.8352,0.8352,0.6236,-0.9332,-0.9444,-0.9582,-0.9458,-0.9526,-0.9512,-0.9694,-0.943,-0.954,-0.8566,-0.3654,0.4058,0.4572,0.4544,0.7022,0.8204,0.9764,0.8692,0.4766,0.03,-0.343,-0.2122,-0.3042,-0.634,-0.8428,-0.9206,-0.9054,-0.8956,-0.9234,-1,-1,-1,-1,-0.906,-0.9364,-0.944,-0.9398,0.0954,-0.9356,-0.9398,-0.928,-0.9356,0.7282,1,0.146,0.316,0.2372,0.3734,0.592,0.9004,0.7476,0.1376,-0.2324,-0.4792,-0.4156,-0.518,-0.7456,-0.7482,-0.7676,-0.7302,-0.7186,-0.7392,-1,-1,-1,-1,-0.7834,-0.8434,-0.8068,-0.8468,-0.3068,-0.7468,-0.8534,-0.7868,-0.8434,-0.3068,0.5266,-0.709,-0.8224,-0.789,-0.8,-0.632,-0.582,-0.684,-0.926,-0.784,-0.622,-0.76,-0.75,-0.5034,0.17,0.1832,0.0366,-0.01,-0.0134,-1,-1,-1,-1,-0.2572,-0.5714,-1,1,1,1,-0.7428,-0.9142,1,1,1,1,-0.5714,-0.7714,-0.9428,-0.6858,-0.9714,-0.6572,-0.6286,-0.8858,-0.8,-0.5714,-0.6858,-0.1428,-0.0286,-0.3428,-0.4,-0.4858,-0.5428,-1,-1,-1,-1,-0.0662,-0.0462,-0.0296,-0.0114,-0.0308,-0.0294,-0.0286,-0.0674,-0.1192,-0.1464,1,1,1,1,1,1,1,1,1,1,-0.3866,0.1412,0.3804,0.123,0.159,0.141,0.132,1,-0.5888,-0.2444,-0.2444,-0.2222,-0.2334,-0.1888,-0.0112,0.2,0.2556,0.4444,0.3666,0.3666,0.3556,0.4334,0.4334,0.5556,0.5444,0.5222,0.7112,0.7556,1,0.9778,0.9556,0.7666,0.8222,0.6334,0.5556,0.6556,0.6222,0.4888,0.1778,-0.4222,-0.6024,-0.4854,-0.5672,-0.5906,-0.579,-0.4036,-0.2164,-0.041,0.1462,0.1578,0.427,0.2398,0.2982,0.614,0.5672,0.0994,0.2046,0.228,0.2632,0.7192,1,0.9298,0.7544,0.8714,0.7778,0.614,0.6024,0.5204,0.4152,0.3568,0.1696,0.0526,-0.0822,0.2368,0.0434,-0.5266,-0.4106,-0.2464,-0.1884,-0.2754,-0.0144,0.1498,0.5556,0.6038,0.3624,0.3334,0.2658,0.2078,0.2754,0.4686,0.5942,0.6812,1,0.6038,0.6232,0.6328,0.5942,0.5266,0.4106,0.4976,0.488,0.314,0.0724,-0.1208,1,-1,-1,1,-0.8,-1,-1,-0.6666,-1,-0.388,0.015,0.209,0.2238,-0.0896,-0.1642,0.0598,-0.0598,0.1492,0.2836,0.3582,0.5522,0.8508,0.7164,0.8806,0.7164,0.5672,0.5374,0.6866,0.8806,0.7462,1,0.806,0.6716,0.403,0.1044,0.209,0.1492,0.1194,0.1194,-0.1044,-0.612,'4'
-0.3936,-0.0346,0.2102,0.2978,-0.1038,-0.3138,-0.4602,-0.5878,-0.5346,-0.5558,-0.5558,-0.4148,-0.4974,-0.3856,-0.2632,-0.242,-0.125,-0.1702,-0.016,0.1862,0.2792,0.649,0.758,1,0.9016,0.9228,0.9494,0.9814,0.6676,0.5426,0.242,0.2846,-0.429,-0.0892,0.135,0.2338,-0.0964,-0.3132,-0.5228,-0.5856,-0.4746,-0.4722,-0.4506,-0.371,-0.4626,-0.3518,-0.2892,-0.229,-0.1374,-0.171,-0.065,0.0386,0.1494,0.4674,0.5542,0.824,0.865,1,0.8626,0.894,0.7156,0.6458,0.4168,0.429,-0.4482,-0.1444,0.2304,0.281,-0.2202,-0.4684,-0.524,-0.5368,-0.557,-0.4936,-0.5898,-0.4988,-0.4102,-0.3746,-0.276,-0.2886,-0.281,-0.1746,-0.0912,0.0304,0.1544,0.3012,0.5392,0.7494,0.9822,1,0.9418,0.7974,0.767,0.686,0.562,0.4936,-0.4812,-0.1046,0.3752,0.3138,-0.4476,-0.4616,-0.551,-0.562,-0.6178,-0.6402,-0.668,-0.59,-0.5146,-0.4476,-0.4476,-0.4366,-0.339,-0.2888,-0.2078,-0.1046,0.0238,0.1854,0.4198,0.6848,0.8828,1,0.9302,0.7518,0.7574,0.7322,0.5648,0.4198,-0.4326,0.3392,0.6366,0.3806,-0.1868,-0.3564,-0.4948,-0.6816,-0.7094,-0.6748,-0.7716,-0.5778,-0.5468,-0.5328,-0.557,-0.5224,-0.5606,-0.5122,-0.398,-0.1972,-0.09,0.0208,0.301,0.6124,0.8442,1,0.9378,0.7994,0.7474,0.7128,0.4844,0.353,-0.4982,0.5206,0.678,0.251,-0.146,-0.2884,-0.4232,-0.5244,-0.5768,-0.6666,-0.678,-0.7192,-0.6666,-0.663,-0.5656,-0.6854,-0.6404,-0.6292,-0.6816,-0.4794,-0.382,-0.3034,-0.0524,0.2996,0.824,1,0.9176,0.8202,0.8052,0.6966,0.5806,0.4982,-0.5688,0.368,0.5688,0.461,0.0224,-0.3754,-0.4982,-0.5168,-0.5168,-0.6542,-0.8142,-0.487,-0.435,-0.5464,-0.4238,-0.4982,-0.4832,-0.632,-0.5242,-0.5242,-0.2936,-0.1598,0.0446,0.539,0.7956,1,0.9814,0.9294,0.881,0.803,0.658,0.5204,-0.3462,0,0.3076,0.3462,-0.077,-0.577,-0.4616,-0.5,-0.5,-0.5,-0.3846,-0.3462,-0.3462,-0.3076,-0.1924,-0.1538,-0.1538,-0.1538,0,0.1154,0.4616,0.5,1,0.923,0.8076,0.8462,0.8076,0.8462,0.7308,0.3846,0.2308,0.2308,-0.2786,0.0164,0.246,0.3442,0.0492,-0.1804,-0.3114,-0.4098,-0.3442,-0.377,-0.377,-0.3114,-0.4426,-0.2786,-0.1148,-0.082,0.0164,-0.0492,0.082,0.3114,0.3442,0.705,0.6066,0.9672,0.7704,0.8688,1,0.9344,0.6722,0.5738,0.3442,0.377,-0.5052,0.134,0.4432,0.2578,-0.299,-0.3608,-0.464,-0.5464,-0.732,-0.6494,-0.7526,-0.6082,-0.5464,-0.5052,-0.464,-0.4846,-0.5464,-0.4226,-0.3196,-0.1134,0.0104,0.0516,0.1546,0.6082,0.7938,1,0.9382,0.7732,0.7114,0.6908,0.5052,0.134,-1,-1,-1,-1,-1,-1,-0.8278,-0.8788,-0.959,-0.8232,-0.224,0.4362,0.4356,0.481,0.712,0.8394,0.9822,0.8154,0.5306,0.2038,-0.0726,-0.403,-0.5922,-0.7382,-0.844,-0.8764,-0.9344,-0.9366,-0.9204,-0.9298,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9584,-0.9702,-0.9784,-0.6464,-0.459,0.1826,0.578,0.8914,0.7738,0.6898,0.1742,-0.196,-0.5576,-0.6206,-0.6234,-0.7356,-0.8206,-0.8768,-0.907,-0.9352,-0.972,-0.9746,-0.9656,-0.9688,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9622,-0.92,-0.8134,0.1932,0.49,-0.0224,-0.0512,0.0444,0.04,-0.0068,-0.2312,-0.4712,-0.7268,-0.7046,-0.4,-0.3334,-0.3068,0.0066,0.0066,-0.4134,-0.5634,-0.7634,-0.5768,-0.5234,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2858,-0.6858,1,1,1,1,-0.8,-0.8572,-1,-0.9714,-0.7428,-0.1714,-0.2,-0.9142,-0.7142,-0.4,-0.0286,0,0.4858,1,1,-0.8,-0.9142,-0.6572,-1,-1,-1,0.0868,0.0916,0.1056,0.1102,0.111,0.1096,0.1224,0.101,0.0738,-0.0042,1,1,1,1,1,1,1,1,1,1,-0.4666,0.047,-0.495,-0.254,0.1518,0.409,0.394,1,-0.6966,-0.131,-0.0482,-0.0068,0.2552,-0.062,-0.2414,0.2,0.1586,0.5034,0.7656,0.6552,0.6828,0.6828,0.6966,0.3656,0.2414,0.6276,0.6138,0.6828,0.669,0.9724,1,0.931,0.9586,0.7656,0.9034,0.9034,0.7932,0.4068,-0.0896,-0.2414,-0.495,-0.307,-0.3564,-0.505,-0.4158,-0.3168,-0.198,-0.2674,0.0792,0.1584,0.3466,0.4158,0.2476,0.3366,0.4456,0.2674,0.2674,0.5148,0.5346,0.6732,0.9702,0.9108,0.9702,1,0.802,0.8416,0.8514,0.8416,0.703,0.5346,0.4356,0.1288,0.1554,0.466,0.3106,-0.0098,-0.2428,-0.136,-0.1554,-0.0582,0.3204,0.3884,0.6894,1,0.7572,0.9902,0.8932,0.1748,0.4078,0.7476,0.6408,0.6116,0.5436,0.6796,0.9224,0.903,0.6894,0.6214,0.699,0.4952,0.4368,0.3786,0.136,0.0582,-0.2166,-1,-1,1,-0.6,-1,0,-0.6334,-1,-0.208,-0.1544,-0.0202,-0.1678,-0.3288,-0.4228,-0.2348,-0.4094,-0.2618,-0.1544,0.047,0.5302,0.4766,1,1,0.2618,-0.0604,0.5436,0.5704,-0.0202,0.1006,0.557,0.5168,-0.1946,-0.0604,-0.2618,-0.3692,-0.047,0.0872,0.1678,0.047,-0.302,'4'
-0.3382,0.1078,0.0162,0.161,-0.0842,-0.3974,-0.6928,-0.6928,-0.619,-0.7252,-0.7076,-0.5864,-0.5184,-0.5036,-0.489,-0.35,-0.415,-0.1964,-0.2614,-0.1344,-0.0104,0.037,0.415,0.6602,0.9852,0.8878,0.8878,0.7872,0.867,0.9822,1,0.7932,-0.3658,0.0304,0.1616,0.2714,-0.119,-0.369,-0.564,-0.5976,-0.619,-0.7074,-0.7134,-0.7074,-0.6006,-0.5488,-0.494,-0.436,-0.2988,-0.308,-0.2164,-0.1158,-0.0092,0.1006,0.3262,0.6068,0.8902,1,0.8048,0.689,0.747,0.7774,0.8048,0.8384,-0.3942,-0.077,0.343,0.391,-0.2244,-0.3878,-0.673,-0.641,-0.734,-0.7084,-0.8044,-0.766,-0.6378,-0.6858,-0.577,-0.452,-0.4744,-0.3044,-0.2628,-0.1858,-0.0192,0.0192,0.3462,0.6858,0.9584,1,0.8526,0.7084,0.734,0.7532,0.7148,0.75,-0.393,0.0566,0.5942,0.532,-0.3346,-0.616,-0.7514,-0.6892,-0.8098,-0.8244,-0.8684,-0.6966,-0.6526,-0.6308,-0.5904,-0.6308,-0.5246,-0.3712,-0.3748,-0.2542,-0.1334,-0.031,0.265,0.5502,0.9488,1,0.9086,0.6344,0.6782,0.6746,0.5576,0.5284,-0.4094,0.7162,1,0.6094,-0.2418,-0.4186,-0.9348,-0.7534,-0.6884,-0.907,-0.8884,-0.7674,-0.6698,-0.6232,-0.6372,-0.679,-0.7024,-0.7116,-0.5674,-0.507,-0.2604,-0.2372,-0.0466,0.3116,0.8094,0.8698,0.7024,0.493,0.3768,0.3534,0.2466,0.186,-0.3254,0.918,1,0.3686,-0.0506,-0.4698,-0.5808,-0.6144,-0.9614,-0.894,-0.9566,-0.8988,-0.788,-0.8314,-0.5278,-0.5856,-0.5904,-0.4796,-0.5422,-0.2482,-0.1374,-0.3734,-0.176,0.041,0.8072,0.8698,0.6868,0.682,0.4072,0.5228,0.3156,0.4554,-0.2458,0.4936,0.549,0.4158,-0.0426,-0.3974,-0.2348,-0.183,-0.5822,-0.6044,-0.5452,-0.4232,-0.2902,-0.2866,-0.4344,-0.512,-0.3974,-0.4418,-0.438,-0.5084,-0.3086,-0.3124,-0.2236,0.0462,0.6304,1,0.7856,0.5194,0.5232,0.4196,0.4454,0.3382,-0.3846,0.1154,0.1924,0.2308,-0.1154,-0.2692,-0.8076,-0.577,-0.423,-0.6538,-0.5,-0.6154,-0.4616,-0.3846,-0.3846,-0.3462,-0.2692,-0.1538,-0.2692,-0.1924,0.077,0.0384,0.3846,0.6538,0.8462,0.8462,0.923,0.8462,0.8846,1,0.9616,0.8462,-0.2758,0.138,0.1034,0.1724,-0.069,-0.2414,-0.6552,-0.5862,-0.4828,-0.6206,-0.6552,-0.4482,-0.3794,-0.4828,-0.3448,-0.4138,-0.4138,-0.138,-0.2414,-0.0344,0,0.069,0.4828,0.5518,1,0.9656,0.862,0.6896,0.8966,0.931,1,0.7242,-0.062,0.239,0.646,0.593,0.0442,-0.2212,-0.2744,-0.2566,-0.2744,-0.3274,-0.469,-0.4514,-0.2744,-0.2566,-0.2566,-0.5044,-0.2744,-0.062,-0.0974,-0.0266,0.115,0.1682,0.469,0.593,1,1,0.8408,0.6814,0.7346,0.7876,0.6992,0.6638,-1,-1,-1,-1,-1,-1,-0.963,-0.9642,-0.9604,-0.9556,-0.1162,-0.0358,0.157,0.204,0.2694,0.3054,0.4536,0.8158,0.9284,0.56,-0.1496,-0.3622,-0.6922,-0.8616,-0.9444,-0.9222,-0.9444,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9562,-0.9574,-0.9654,-0.962,-0.2812,0.6842,0.8036,0.8362,0.6584,0.464,0.0744,-0.178,-0.2034,-0.3158,-0.634,-0.716,-0.8384,-0.8166,-0.8488,-0.8788,-0.8834,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7068,-0.68,-0.8334,-0.7,-0.49,0.1924,0.2324,0.1474,0.0374,-0.0276,-0.55,-0.87,-0.9578,-0.9756,-0.8134,-0.7534,-0.6,-0.0034,0.2232,0.03,0.0732,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6858,-0.7142,-0.9714,1,1,1,-0.9714,-1,-1,-0.8572,-0.0286,-0.1428,-0.7714,-0.0572,-0.7428,-0.5142,1,1,-0.3714,-0.4858,-0.4,-1,-1,-1,-1,-1,-1,-0.195,-0.2258,-0.253,-0.2174,-0.1868,-0.171,-0.1552,-0.1256,-0.1444,-0.2634,1,1,1,1,1,1,1,1,1,1,-0.4934,-0.0352,-0.0548,0.1762,0.8668,0.8408,0.7314,1,0.0384,0.3076,0.1154,-0.0384,-0.0384,-0.0384,-0.1538,0.0384,-0.0384,0.1154,0.0384,0.3076,0.7692,0.8076,1,0.9616,0.7692,0.6154,0.6154,0.7308,0.8076,0.7692,0.577,0.5,0.5384,0.5,0.3462,0.2308,0.0384,0.077,0.077,-0.423,0.216,0.552,0.36,-0.248,-0.216,-0.44,-0.28,-0.248,-0.056,0.04,0.184,0.552,1,0.936,0.936,0.92,0.728,0.744,0.904,0.936,0.888,0.888,0.376,0.088,0.28,0.344,0.168,-0.008,-0.232,0.136,0.152,-0.376,0.091,0.3884,0.372,-0.2066,-0.2728,-0.3884,-0.124,-0.157,-0.0414,0.0082,0.157,0.438,1,0.9174,0.9008,0.967,0.8348,0.7686,0.8842,0.9504,0.7852,0.7686,0.2066,0.1404,0.157,0.2396,0.0744,-0.0082,-0.0744,0.0248,0.0414,-0.5538,0.7644,-1,-1,1,-0.8,-1,-0.8,-0.8334,-1,-0.6764,-0.4264,-0.0736,-0.0442,-0.4558,-0.1764,-0.103,-0.1324,0.0442,-0.0148,0.1912,0.4412,0.7352,0.8088,1,0.8824,0.2942,0.1912,0.3824,0.5294,0.6176,0.6324,0.5588,0.6618,0.6176,0.7648,0.7352,0.853,0.4264,0.2794,0.2648,-0.1324,'5'
-0.3742,0.0552,-0.0184,0.1092,-0.1558,-0.4184,-0.573,-0.573,-0.6516,-0.7816,-0.7252,-0.6098,-0.546,-0.4576,-0.4552,-0.4062,-0.3988,-0.232,-0.3644,-0.2958,0.011,0.043,0.3448,0.605,0.8504,0.8626,0.8774,0.6368,0.622,0.9214,0.9706,1,-0.3962,-0.0214,0.0124,0.1336,-0.1718,-0.477,-0.5758,-0.6228,-0.569,-0.7262,-0.7822,-0.4232,-0.4344,-0.4254,-0.468,-0.3042,-0.3512,-0.2974,-0.239,-0.2144,-0.0214,0.1246,0.3132,0.6498,0.7912,0.9124,0.8698,0.6094,0.724,0.8698,0.982,1,-0.3956,-0.0606,0.1772,0.2452,-0.2888,-0.4368,-0.7452,-0.5922,-0.6044,-0.6748,-0.6602,-0.5436,-0.4418,-0.4952,-0.3956,-0.4126,-0.3592,-0.352,-0.2792,-0.102,-0.0462,0.0728,0.3786,0.653,0.8496,0.9782,0.92,0.7428,0.8326,0.92,1,0.9538,-0.4268,-0.1362,0.293,0.2648,-0.2956,-0.6246,-0.6966,-0.694,-0.7352,-0.8252,-0.8638,-0.671,-0.6812,-0.6478,-0.6144,-0.4936,-0.4704,-0.4448,-0.3754,-0.18,-0.1182,-0.0078,0.3136,0.5836,0.8894,1,0.8278,0.563,0.676,0.797,0.8098,0.694,-0.4446,0.1788,0.5274,0.3412,-0.4002,-0.805,-0.8878,-0.8642,-0.8522,-0.9704,-0.9912,-0.9114,-0.8198,-0.8258,-0.6454,-0.7076,-0.6868,-0.6838,-0.4948,-0.5274,-0.3146,-0.22,0.1286,0.3354,0.8552,1,0.7282,0.2792,0.3944,0.4978,0.4268,0.3826,-0.3714,0.8358,1,0.3928,-0.1214,-0.4142,-0.8572,-0.7608,-0.7858,-0.925,-0.9178,-0.6,-0.6286,-0.7608,-0.65,-0.6642,-0.6892,-0.7428,-0.6428,-0.4392,-0.3786,-0.1892,-0.0928,0.3322,0.825,0.9892,0.7786,0.625,0.4536,0.825,0.775,0.4858,-0.4902,0.3986,0.5228,-0.0164,-0.196,-0.6732,-0.8922,-0.7974,-0.8366,-0.8432,-0.8562,-0.6634,-0.6634,-0.6504,-0.487,-0.6274,-0.7648,-0.732,-0.8758,-0.6112,-0.4968,-0.2876,-0.1928,0.1634,0.8432,1,0.719,0.513,0.3432,0.5588,0.6504,0.379,-0.1212,0.2424,0.2122,0.1212,0.0606,-0.1818,-0.0606,-0.0606,-0.303,-0.5152,-0.4848,-0.7576,-0.3636,-0.2122,-0.303,-0.3334,-0.1212,0.0304,0.0304,0,-0.091,0.2122,0.5152,0.606,0.8484,0.8182,0.8484,0.7878,0.6364,0.8484,0.9394,1,-0.3462,0.0384,-0.077,0.077,-0.1154,-0.6154,-0.7692,-0.5,-0.5,-0.5384,-0.7308,-0.8462,-0.8462,-0.3462,-0.3846,-0.6154,-0.577,-0.3462,-0.577,-0.8076,-0.077,0,0.077,0.6154,0.8462,0.8076,0.7692,0.7692,0.577,0.7692,1,0.923,-0.4376,-0.1458,0.4166,0.3124,-0.2708,-0.6042,-0.7292,-0.6876,-0.6042,-0.7084,-0.7708,-0.8958,-0.7916,-0.7916,-0.7292,-0.625,-0.4166,-0.5,-0.4792,-0.4584,-0.2084,-0.0208,0.2708,0.5,0.8124,1,0.8542,0.4792,0.5208,0.6876,0.6458,0.625,-1,-1,-1,-1,-1,-1,-0.968,-0.9688,-0.9706,-0.9642,-0.8084,-0.5262,-0.2868,-0.1412,0.0348,0.1338,0.3392,0.5674,0.8598,0.9422,0.473,-0.3052,-0.6718,-0.7158,-0.7176,-0.7396,-0.9066,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.981,-0.9792,-0.9822,-0.9814,-0.8078,-0.4706,0.1766,0.7242,0.8972,0.7008,0.4894,-0.102,-0.3424,-0.304,-0.445,-0.696,-0.7428,-0.7884,-0.7996,-0.8512,-0.8816,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.88,-0.9334,-0.8668,-0.9234,-0.67,0.034,0.254,0.318,0.302,0.3,0.134,-0.31,-0.776,-0.832,-0.9256,-0.6782,-0.59,-0.42,-0.1634,-0.1368,0.1232,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,-1,-1,1,1,1,0.0572,-0.8,-1,-0.9428,-0.6286,-0.4286,-0.6858,-0.7714,-0.8286,-0.8,-1,-0.8,-0.2858,-0.6,-0.4,-1,-1,-1,-1,-1,-1,-0.1106,-0.1118,-0.0832,-0.064,-0.0394,-0.0276,-0.049,-0.085,-0.1368,-0.341,1,1,1,1,1,1,1,1,1,1,-0.5466,0.2,-0.7268,-0.578,-0.5206,-0.5124,-0.293,1,-0.4444,-0.0556,0,-0.3888,-0.2778,-0.1112,0,0.1112,0.0556,0.2778,0.4444,0.5556,1,0.9444,0.9444,1,1,0.7778,0.6666,0.3888,0.6666,0.6112,0.6112,0.5,0.3334,0.3888,0.2222,0.1112,0.0556,-0.1666,-0.2778,-0.4444,0.027,0.1712,-0.009,-0.1712,-0.2072,-0.2252,-0.1532,-0.1172,-0.081,-0.009,0.2072,0.5136,1,0.982,0.7298,0.982,0.928,0.928,0.4594,0.3154,0.8918,0.8918,0.6396,0.4054,0.2792,0.4594,0.4414,0.3154,0.4954,0.1532,-0.027,-0.6756,0.1552,0.3276,0.1552,-0.0518,-0.138,-0.3966,-0.2586,-0.138,-0.0172,0.069,0.2758,0.3966,0.9482,0.9656,0.638,0.9138,1,0.9138,0.4828,0.4656,0.862,0.7932,0.569,0.2414,0.1034,0.3276,0.3448,0.4656,0.4828,0.138,0.0172,-0.6724,-0.5008,-1,-1,1,-1,-1,-0.2,-0.8334,-1,-0.2024,0.1042,-0.1534,-0.0306,-0.043,-0.1902,-0.1288,-0.0674,-0.092,-0.0184,0.0674,0.6564,0.9264,1,0.9264,0.6442,0.4478,0.362,0.4846,0.7668,0.8404,0.5706,0.4234,-0.0798,0.0798,0.0552,0.1656,0.4602,0.3988,0.3988,0.227,0.0184,'5'
-0.4016,-0.0708,0.1812,0.2834,0.5512,0.8346,0.8898,0.4174,0.1732,0.1102,0.2048,0.2756,0.1968,0.2598,0.4252,0.4724,0.622,0.8976,0.9764,1,0.8188,0.8268,0.8898,0.7638,0.8898,0.8188,0.622,0.3858,0.4566,0.3386,0.315,0.3228,-0.3334,0.0244,0.1708,0.244,0.683,0.6666,0.8536,0.6342,0.1464,0.3252,0.2196,0.3578,0.3496,0.3578,0.3902,0.6666,0.7642,0.9674,0.878,1,0.8048,0.7642,0.7318,0.6992,0.683,0.6098,0.496,0.4146,0.3252,0.3414,0.2926,-0.1544,-0.3276,0.0382,0.132,0.1914,0.617,0.7446,0.9148,0.634,0.617,0.549,0.4128,0.4978,0.4382,0.3958,0.4724,0.6426,0.6596,1,0.9064,0.8298,0.5148,0.3106,0.5234,0.6086,0.7192,0.7362,0.668,0.532,0.4978,0.4298,0.4808,0.4554,-0.2772,0.0924,0.1968,0.245,0.5662,0.767,0.8634,1,0.9358,0.6144,0.4136,0.4056,0.1406,0.1888,0.261,0.3494,0.7108,0.8474,0.502,0.3334,0.261,0.269,0.4136,0.4136,0.4458,0.494,0.518,0.3976,0.3574,0.229,0.261,0.3254,-0.3496,-0.0732,0.1382,0.0732,0.2682,0.7642,0.8944,1,0.6504,0.4472,0.3822,0.3252,0.2846,0.0814,0.2114,0.4308,0.439,0.6178,0.5284,0.3822,0.374,0.3984,0.5772,0.439,0.3822,0.122,-0.0326,-0.2276,-0.1952,-0.1138,-0.13,-0.0814,-0.3456,-0.0692,0.1706,0.0414,0.53,0.6314,0.7512,1,0.9448,0.4194,0.235,0.5116,0.447,0.3918,0.5484,0.917,0.8156,0.7972,0.3918,0.0046,0.2258,0.2718,0.2626,0.4378,0.4838,0.4102,0.0968,0.0046,-0.0968,-0.2442,-0.0692,-0.1152,-0.4052,-0.2102,-0.0974,-0.0666,0.3948,0.4666,0.8256,1,0.5794,0.1898,0.1282,-0.118,0.282,0.3642,0.5384,0.4256,0.282,0.0872,0.2102,0.3026,0.3128,0.2206,0.4974,0.7334,0.4358,0.3744,0.0462,-0.0872,-0.1384,-0.2102,-0.2718,-0.0256,-0.356,-0.0848,0.1864,0.2204,0.6272,0.8306,0.8306,0.4238,0.0848,0.1186,0.322,0.322,0.1526,0.4238,0.4576,0.356,0.695,0.9322,0.9662,0.8644,0.7966,0.8644,0.8644,0.8644,1,0.9662,0.5254,0.6272,0.661,0.4576,0.2882,0.4576,-0.434,-0.0944,0.0944,0.3208,0.585,0.6226,0.7358,0.5094,0.1698,0.132,0.132,0.2076,0.2076,0.3208,0.3584,0.5094,0.6226,0.849,0.8868,1,0.9246,0.7358,0.7736,0.7736,0.7736,0.6982,0.5094,-0.132,0.1698,0.3584,0.3208,0.0566,-0.2942,0.0824,0.1764,0.2236,0.5764,0.7412,0.9058,0.8824,0.8824,0.6,0.4352,0.5058,0.153,0.1058,0.3412,0.6236,0.6942,1,0.8118,0.6706,0.4588,0.247,0.2942,0.1764,0.6,0.6942,0.6,0.3412,0.2942,0.2706,0.3648,0.3648,-1,-1,-1,-1,-1,-1,-1,-1,-0.9502,-0.9634,-0.2722,0.8864,0.5822,0.7776,1,0.787,0.613,0.5514,0.4628,0.2792,0.213,-0.245,-0.7384,-0.9076,-0.916,-0.935,-0.9384,-0.955,-0.9526,-0.9598,-0.9538,-0.955,-0.9622,-1,-1,-1,-1,-1,-1,-1,-1,-0.9832,-0.985,-0.53,0.4426,0.1886,0.0884,1,0.2692,-0.2088,-0.3032,-0.1946,-0.2096,-0.5764,-0.7162,-0.8744,-0.9426,-0.94,-0.9482,-0.9542,-0.9444,-0.9446,-0.9596,-0.9616,-0.955,-0.9318,-1,-1,-1,-1,-1,-1,-1,-1,-0.8268,-0.9468,-0.6634,-0.6,-0.7268,-0.7068,-0.64,-0.6534,-0.685,-0.77,-0.865,-0.76,-0.85,-0.785,-0.54,-0.08,0.2132,-0.0468,0.1532,0.3032,0.37,0.25,0.289,0.3804,0.3872,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,0.2286,-0.7142,-0.5714,-0.0858,0.2,-0.2572,-0.6,-0.1428,0.2572,0.6,0.9142,0.5428,-0.6858,-0.9714,-0.9714,-1,-0.8572,-0.9142,-1,-0.9714,-0.9714,1,1,1,1,1,1,1,1,1,1,0.4604,0.3532,0.3532,0.2836,0.2634,0.251,0.1902,0.1154,0.0386,-0.1824,-0.5866,-0.6588,-0.3502,0.2434,0.2798,0.0816,0.7296,1,0,0.2858,0.4858,0.5142,0.5142,0.4572,0.4572,0.6,0.8,0.9428,0.9428,0.9714,1,0.9714,0.9142,0.8286,0.8286,0.9142,0.9714,0.9428,0.9428,0.9142,0.8286,0.6858,0.5714,0.3428,0.2858,0.1714,0.1428,0.1714,-0.0858,-0.4572,0.0232,0.2248,0.4574,0.5658,0.4264,0.3024,0.3488,0.4728,0.721,1,0.938,0.8604,0.9534,0.8294,0.7054,0.6434,0.6434,0.7674,0.9534,0.845,0.8914,0.752,0.6744,0.5814,0.5194,0.2248,0.0232,0.1628,0.0542,0.0542,-0.2094,-0.6744,-0.0252,0.3278,0.7142,0.8656,0.4286,0.3446,0.4454,0.563,0.8488,1,0.8824,0.8488,0.8824,0.7142,0.5798,0.4286,0.5126,0.7478,0.8488,0.8488,0.6302,0.4622,0.4454,0.2774,0.2606,0.2268,0.0252,-0.042,-0.0588,-0.2942,-0.5462,-0.647,0.1954,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.6638,-0.3782,-0.2436,-0.3278,0.0924,0.0924,0.042,0.2436,0.731,0.647,0.3278,0.3614,0.5294,0.5126,0.5126,0.5294,0.8152,0.7142,0.7984,0.7816,0.9328,1,0.7816,0.7816,0.6974,0.6638,0.7984,0.8992,0.7648,0.7478,0.731,0.395,'6'
-0.275,0.0656,0.1678,0.3284,0.6934,0.674,0.6886,0.528,0.236,0.27,0.2604,0.2896,0.3528,0.3576,0.3722,0.5718,0.6788,0.888,0.9514,0.9902,0.9854,0.8686,0.9416,1,0.9952,0.9756,0.7128,0.6594,0.6546,0.747,0.7032,0.7274,-0.3672,-0.0294,0.1636,0.2546,0.7372,0.7266,0.8928,0.7266,0.2816,0.319,0.1904,0.3136,0.4316,0.4424,0.3244,0.5228,0.6408,0.8124,0.8552,1,0.9088,0.4424,0.5656,0.5924,0.6944,0.7266,0.6782,0.378,0.1796,0.3136,0.362,0.3942,-0.431,-0.1206,0.1034,0.2126,0.4656,0.816,0.8966,0.6954,0.615,0.4656,0.3564,0.316,0.4426,0.431,0.4712,0.6954,0.8736,0.977,1,0.9368,0.5978,0.4942,0.3104,0.3966,0.5288,0.5804,0.454,0.2298,0.2414,0.1092,0.0978,0.0574,-0.42,-0.1904,0.1782,0.2024,0.4562,0.843,0.855,0.9638,0.71,0.5046,0.4744,0.4804,0.6012,0.6254,0.7824,0.867,1,0.9758,0.8912,0.7644,0.6676,0.6556,0.6314,0.6556,0.4924,0.4078,0.3776,0.1964,0.1238,0.0756,0.0936,0.0272,-0.5324,-0.1754,0.0462,0.0708,0.5016,0.7416,0.9692,0.9324,0.6308,0.5384,0.4892,0.5016,0.5876,0.7354,0.883,0.9876,1,0.7662,0.6862,0.5384,0.5692,0.6492,0.6554,0.6924,0.6184,0.477,0.2676,0.12,0.0524,0.0584,-0.077,0.0646,-0.6222,-0.1764,-0.034,0.065,0.4736,0.808,0.969,0.8452,0.616,0.5728,0.517,0.6594,0.709,0.938,1,0.9566,0.8576,0.7028,0.5728,0.548,0.5604,0.5542,0.9196,0.9504,0.6346,0.5914,0.3932,0.2818,0.1208,0.2322,0.1332,0.3066,-0.606,-0.026,-0.0038,-0.0112,0.4722,0.8364,0.948,0.829,0.5242,0.4276,0.4722,0.4126,0.829,1,0.9776,0.8142,0.5316,0.42,0.249,0.2862,0.0334,0.1672,0.658,0.8662,0.762,0.4126,0.249,0.0558,-0.0856,-0.0632,-0.078,0.264,-0.4902,-0.0588,0.0588,0.3726,0.4902,0.6078,0.647,0.3726,0.2156,0.2156,0.2156,0.1764,0.2942,0.3334,0.4118,0.5686,0.7648,0.8824,1,1,1,0.9608,0.9608,1,0.9608,0.8824,0.7254,0.6862,0.5686,0.647,0.6078,0.647,-0.491,-0.1272,0.0546,0.2364,0.6364,0.5636,0.6364,0.491,0.0546,0.1272,0.1272,0.2364,0.1636,0.2728,0.2728,0.309,0.7454,0.7454,0.9636,0.891,0.9272,0.7818,0.7818,1,0.891,1,0.5636,0.491,0.7454,0.6364,0.7454,0.709,-0.3846,-0.0192,0.1538,0.3654,0.7308,0.7308,0.923,0.7116,0.4424,0.327,0.2692,0.327,0.4424,0.4038,0.3654,0.5384,0.6346,0.8654,0.8462,1,0.8654,0.2308,0.5384,0.5384,0.6346,0.6538,0.7308,0.1538,0.3846,0.4808,0.3462,0.3654,-1,-1,-1,-1,-1,-1,-0.96,-0.96,-0.9612,-0.9506,-0.8034,0.6692,0.821,0.9446,0.7834,0.6986,0.708,0.641,0.7776,0.5374,0.3008,-0.2102,-0.8422,-0.9376,-0.9446,-0.9518,-0.9552,-0.9624,-0.96,-0.953,-0.953,-0.954,-0.9564,-1,-1,-1,-1,-1,-1,-0.983,-0.9808,-0.9814,-0.9818,-0.7012,0.699,0.8832,0.5742,0.6454,0.6242,0.5474,0.7012,0.6738,0.589,0.724,-0.3228,-0.9116,-0.9566,-0.9466,-0.9562,-0.9472,-0.9478,-0.9508,-0.944,-0.9114,-0.9238,-0.9398,-1,-1,-1,-1,-1,-1,-0.9534,-0.82,-0.7,-0.9068,-0.4768,-0.42,-0.48,-0.78,-0.61,-0.705,-0.76,-0.784,-0.776,-0.772,-0.692,-0.756,-0.6,-0.3334,-0.13,0.1,0.02,0.1566,0.0366,0.08,0.0466,0.11,0.0166,-1,-1,-1,-1,-1,-1,-0.9142,-1,-1,1,1,1,1,-0.3142,-0.4286,-0.8286,-0.9428,-0.9428,-0.6,-0.7142,1,1,1,-0.1714,-0.9142,-1,-0.9714,-0.9714,-1,-0.5142,-0.5714,-0.8286,-0.7142,1,1,1,1,1,1,1,1,1,1,0.481,0.5274,0.5436,0.5664,0.5506,0.5244,0.4414,0.2636,-0.0484,-0.4556,-0.5066,-0.5412,-0.5634,0.099,0.9786,0.8442,0.5838,1,-0.2272,0,-0.0454,0.091,0.0454,0.091,0.3636,0.5,0.5,0.7272,0.6364,0.7728,0.8182,0.8182,0.6818,0.8636,0.8182,0.7272,1,0.8636,0.7272,0.3636,0.2728,0.1818,0.1818,0.1364,0.091,0.0454,0.0454,0.0454,0.0454,-0.4546,-0.1172,-0.027,0.2972,0.3154,0.1892,-0.1352,-0.027,0.1712,0.3874,0.7118,0.7478,0.8198,1,0.982,0.7838,0.6936,0.7838,0.8918,1,0.8558,0.7658,0.6756,0.6756,0.3874,0.4054,0.3154,0.4054,0.3514,0.1352,-0.1892,-0.3874,-0.6216,0.3846,0.453,0.6582,0.641,0.3504,0.4188,0.4358,0.5556,0.5726,0.7948,1,0.8974,0.983,0.8804,0.8974,0.7948,0.7436,0.8632,0.8632,0.8804,0.8804,0.8804,0.6068,0.6582,0.641,0.624,0.5214,0.4188,0.1966,0.0256,-0.1624,-0.282,0.987,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.808,-0.504,-0.328,0.072,-0.024,-0.024,-0.024,0.248,0.28,0.152,0.168,0.472,0.328,0.584,0.632,0.616,0.408,0.472,0.424,0.44,0.648,0.888,1,0.584,0.488,0.616,0.68,0.632,0.504,0.424,0.328,0.232,'6'
-0.1486,0.3644,0.5724,0.725,0.238,-0.2156,-0.4536,-0.5688,-0.4052,-0.4944,-0.4908,-0.4908,-0.5056,-0.3606,-0.3234,-0.2008,0.0186,0.1636,0.3532,0.446,0.6878,0.933,1,0.948,0.9368,0.855,0.8142,0.658,0.632,0.632,0.591,0.4164,-0.2286,0.1868,0.7242,0.8116,0.11,-0.1344,-0.267,-0.5044,-0.4904,-0.459,-0.5846,-0.452,-0.309,-0.3334,-0.1832,-0.2286,-0.1554,0.0018,-0.0192,0.0924,0.3404,0.5916,0.8464,1,0.8988,0.815,0.7976,0.7766,0.815,0.6336,0.5358,0.4346,-0.2368,0.1574,0.7866,0.8048,0.0632,-0.0958,-0.0416,-0.49,-0.5444,-0.443,-0.472,-0.4466,-0.3346,-0.2802,-0.302,-0.2766,-0.132,-0.0922,0.0632,0.1066,0.2152,0.537,0.7902,0.9674,1,0.9458,0.8626,0.9024,0.8734,0.7902,0.7324,0.5154,-0.2142,0.222,0.9842,0.9018,0.2574,-0.057,-0.222,-0.4184,-0.56,-0.7014,-0.6424,-0.6424,-0.5324,-0.5482,-0.4578,-0.442,-0.4184,-0.2142,-0.1316,0.002,0.112,0.2496,0.5402,0.9882,1,0.8586,0.7486,0.6856,0.7918,0.6424,0.6032,0.4146,-0.259,0.4462,0.8366,0.5258,0.3306,-0.1514,-0.3984,-0.6016,-0.773,-0.6932,-0.7212,-0.6694,-0.6056,-0.5776,-0.6534,-0.5698,-0.486,-0.2908,-0.239,-0.1434,-0.0796,0.1076,0.2788,0.6454,1,0.9004,0.4582,0.4502,0.3904,0.5498,0.49,0.4342,-0.222,0.6568,1,0.6522,0.4646,-0.0846,-0.428,-0.675,-0.8078,-0.7712,-0.6796,-0.666,-0.643,-0.4736,-0.4966,-0.5514,-0.6064,-0.4462,-0.5424,-0.3776,-0.1946,0.0344,0.3546,0.73,0.9406,0.9406,0.7712,0.547,0.6338,0.7208,0.7392,0.5148,-0.0638,0.522,0.7888,0.486,0.271,-0.3266,-0.3466,-0.7848,-0.506,-0.6374,-0.6932,-0.5896,-0.502,-0.5976,-0.3824,-0.4662,-0.6454,-0.4622,-0.478,-0.3546,-0.243,-0.0278,0.0836,0.6216,1,0.8884,0.6892,0.8366,0.7768,0.7968,0.761,0.518,-0.2272,0.1364,0.3182,0.3636,-0.1364,-0.2728,-0.5454,-0.409,-0.4546,-0.4546,-0.6818,-0.5454,-0.5454,-0.591,-0.3636,0.1818,0.091,0.2272,0.3636,0.1818,0.5454,0.6364,0.6818,0.8182,1,0.9546,0.6364,0.3636,0.409,0.2272,0.3182,0.1818,-0.1818,0.2728,0.5,0.5454,0.1364,-0.3636,-0.3636,-0.4546,-0.409,-0.5,-0.591,-0.4546,-0.409,-0.3182,-0.3636,-0.409,-0.2272,0.2728,0.3182,0.591,0.8182,1,1,0.8182,0.6818,0.4546,0.6818,0.6364,0.591,0.5454,0.409,0.1818,-0.2958,0.3802,0.6902,0.3522,0.2676,-0.2112,-0.5212,-0.6056,-0.7184,-0.6902,-0.662,-0.6902,-0.7746,-0.7464,-0.7464,-0.5212,-0.493,-0.4648,-0.3802,-0.2394,-0.2112,-0.155,-0.0986,0.4648,1,0.9436,0.5492,0.2112,0.2394,0.3522,-0.1268,0.324,-1,-0.9774,-0.9804,-0.9766,-0.9744,-0.948,-0.923,-0.9608,-0.963,-0.9608,-0.674,0.1746,0.6122,0.9796,0.9706,0.8732,0.7578,0.5684,0.303,0.1716,-0.011,-0.1694,-0.5888,-0.7518,-0.8144,-0.874,-0.9208,-0.9652,-0.877,-0.8454,-0.9178,-1,-1,-1,-0.9668,-0.9698,-0.9626,-0.9672,-0.6214,0.0514,1,1,1,0.124,0.1098,0.495,0.7346,0.8362,0.6442,0.3392,0.2654,0.0718,-0.0888,-0.2322,-0.3686,-0.6704,-0.6928,-0.7844,-0.8548,-0.901,-0.9382,-0.9142,-0.901,-0.934,-1,-1,-1,-0.8394,-0.926,-0.8526,-0.8106,-0.36,0.44,0.5332,0.5666,0.4132,0.3666,-0.689,-0.7334,-0.8134,-0.7734,-0.7956,-0.9068,-0.7756,-0.7378,-0.782,-0.754,-0.718,-0.6,-0.12,-0.4068,-0.36,-0.4234,-0.2834,-0.7834,-0.7468,-0.7968,-1,-1,-1,-0.9428,-1,-1,1,1,1,1,-0.5428,1,1,1,-0.7428,-0.8572,-0.8858,-0.8,-0.8572,-1,-0.6,-0.7428,-0.7428,-0.6572,-0.6858,-0.3142,0.2858,0.5714,0.3142,-0.5714,-0.6858,-0.8572,-0.4,-1,-1,-0.132,-0.1136,-0.1062,-0.1034,-0.0816,-0.058,-0.0248,0.0332,0.0912,-0.0228,0.9424,0.9998,1,1,1,1,1,1,1,1,-0.48,0.0824,-0.0556,-0.138,0.0758,0.2732,0.199,1,-0.7544,-0.3964,-0.4,-0.207,-0.179,-0.1474,0,0.2422,0.414,0.4948,0.5578,0.5298,0.9334,0.9122,0.9684,1,0.9404,0.7508,0.814,0.7894,0.765,0.9578,0.8736,0.7964,0.621,0.579,0.5508,0.3404,0.1544,0.1088,-0.0246,-0.4422,-0.978,-0.829,-0.6166,-0.6166,-0.5532,-0.4068,-0.2056,0.0344,0.3434,0.5448,0.5558,0.7296,0.8538,0.8924,0.7958,1,0.9062,0.8262,0.7848,0.9034,0.9668,0.909,0.8704,0.851,0.8262,0.749,0.7268,0.669,0.4206,0.4344,0.4152,0.0732,-0.6794,-0.4744,-0.3398,-0.3622,-0.3558,-0.2532,-0.0674,0.173,0.3334,0.7276,0.8366,0.7756,1,0.8462,0.6924,0.8878,0.9616,0.7372,0.843,0.782,0.8206,0.8814,0.7724,0.7596,0.8076,0.8012,0.7404,0.5866,0.5,0.3526,0.407,0.1988,-0.1956,-1,-1,1,-1,-1,-0.4,0.2,-1,0.1902,0.1902,0.362,0.5092,0.1534,-0.1412,0.0062,-0.0798,0.276,0.2024,0.362,0.7056,0.8404,1,0.9018,0.546,0.3374,0.6932,0.73,0.8404,0.6074,0.227,0.2148,0.2392,0.3252,0.632,0.7424,0.5338,0.7792,0.4724,0.227,-0.2638,'7'
-0.3928,-0.0532,0.2796,0.3414,-0.2144,-0.3756,-0.5472,-0.554,-0.5608,-0.6604,-0.65,-0.482,-0.4476,-0.4134,-0.3962,-0.2624,-0.1458,-0.0772,0.0258,0.3208,0.5438,0.6706,0.9142,0.9074,1,0.9656,0.9862,0.7976,0.6124,0.657,0.6638,0.6192,-0.4518,-0.1506,0.271,0.3222,-0.1596,-0.3704,-0.4278,-0.512,-0.509,-0.488,-0.5662,-0.5392,-0.4578,-0.4006,-0.2772,-0.1898,-0.1416,-0.0934,-0.024,0.1234,0.3734,0.521,0.7862,0.9066,1,0.976,0.9488,0.8344,0.759,0.7048,0.6686,0.6266,-0.5146,-0.1596,0.3974,0.3714,-0.2834,-0.3062,-0.368,-0.5212,-0.5244,-0.5538,-0.6678,-0.469,-0.4528,-0.469,-0.4268,-0.342,-0.189,-0.2346,-0.1074,-0.0098,0.14,0.3648,0.6254,0.8338,1,0.9478,0.8958,0.8566,0.7426,0.7198,0.6286,0.57,-0.5214,0.2928,0.5608,0.35,-0.0964,-0.2642,-0.4786,-0.6714,-0.6964,-0.7322,-0.775,-0.6036,-0.6322,-0.5214,-0.5572,-0.375,-0.3,-0.3286,-0.2358,-0.1428,-0.0142,0.1858,0.5,0.8108,0.9714,1,0.8678,0.8142,0.7678,0.7214,0.6464,0.6036,-0.575,0.651,0.7674,0.3826,-0.0962,-0.4184,-0.5034,-0.4854,-0.727,-0.7852,-0.7628,-0.4676,-0.5078,-0.49,-0.5302,-0.566,-0.4944,-0.5436,-0.6824,-0.669,-0.302,-0.2394,0.1722,0.4184,0.8478,1,0.6554,0.6734,0.5034,0.4944,0.481,0.132,-0.4382,0.5866,0.6134,0.4652,-0.0382,-0.3618,-0.3348,-0.4158,-0.5056,-0.528,-0.7168,-0.4922,-0.537,-0.5056,-0.4022,-0.4562,-0.3078,-0.3214,-0.546,-0.6134,-0.3708,-0.3528,0.0652,0.3708,1,0.9866,0.8472,0.8426,0.663,0.6988,0.6314,0.2808,-0.6568,-0.1912,-0.1764,-0.2746,-0.1274,-0.098,-0.2156,-0.2648,-0.3872,-0.6274,-0.6568,-0.2352,-0.1862,-0.4118,-0.2352,-0.3186,-0.4558,-0.2206,-0.3382,-0.3186,-0.147,0.0246,0.3628,0.804,0.9608,0.8578,1,0.9902,0.6568,0.4216,0.152,0.0932,-0.3878,0.0204,0.3062,0.3062,-0.2244,-0.3062,-0.5918,-0.551,-0.5918,-0.5918,-0.6326,-0.796,-0.6326,-0.4286,-0.5102,-0.347,-0.2244,-0.1836,0.347,0.3878,0.6734,0.8776,0.8368,0.796,0.8776,1,0.8368,0.796,0.3062,0.7552,0.796,0.5918,-0.2632,0.1228,0.3334,0.3684,-0.0526,-0.2982,-0.3334,-0.5088,-0.4386,-0.4386,-0.3334,-0.2982,-0.1228,-0.1578,-0.1228,-0.0176,0.0526,0.1578,0.1578,0.3684,0.6492,0.8246,0.9298,0.8948,0.965,1,0.965,0.8246,0.7192,0.6842,0.6842,0.7894,-0.5662,0.3734,0.5662,0.3012,-0.1326,-0.253,-0.4698,-0.7108,-0.9518,-0.8554,-0.5422,-0.5904,-0.6868,-0.5662,-0.6386,-0.4698,-0.4698,-0.6144,-0.3976,-0.2772,-0.3494,-0.012,0.3734,0.735,0.9518,1,0.6868,0.759,0.6386,0.5422,0.4216,0.4458,-1,-1,-0.829,-0.8628,-0.9068,-0.9138,-0.9236,-0.9378,-0.942,-0.9038,-0.3258,0.2042,0.4416,0.6494,0.942,0.8926,0.6452,0.3314,0.0318,-0.1958,-0.4346,-0.8234,-0.8672,-0.9208,-0.9434,-0.9478,-0.9266,-1,-1,-1,-1,-1,-1,-1,-1,-0.9508,-0.9562,-0.9652,-0.7738,0.0394,0.8088,1,0.9372,-0.0672,0.0034,0.5762,0.9618,0.6102,0.0704,-0.304,-0.5646,-0.6762,-0.7504,-0.7926,-0.895,-0.9136,-0.9622,-0.9688,-0.9652,-0.9616,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.96,-0.8334,-0.2134,0.44,0.68,0.64,0.56,0.3432,-0.2226,-0.205,-0.165,-0.23,-0.5476,-0.7176,-0.905,-0.885,-0.825,-0.6126,-0.1726,-0.46,-0.5868,-0.6534,-0.5,-0.7734,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,-1,1,1,1,1,-0.4286,0.7714,1,1,-0.0572,-1,-0.8572,-0.8,0.0858,0.0572,-0.9428,-0.9428,-0.5142,-0.2858,0.4572,0.1714,-1,-1,-0.8572,-1,-1,-1,-1,-1,-1,-0.077,-0.0548,-0.009,-0.016,0.0158,0.0464,0.0756,0.1108,0.106,0.102,1,1,1,1,1,1,1,1,1,1,-0.3066,-0.0824,-0.179,-0.3034,-0.0804,0.2946,0.4666,1,-0.635,-0.4598,-0.4052,-0.0146,-0.1642,-0.1532,0.0438,0.1094,0.2738,0.4928,0.5402,0.8066,0.989,0.9964,1,0.9526,0.927,0.8358,0.7774,0.719,0.8176,0.803,0.6862,0.7408,0.6532,0.5364,0.4598,0.4526,0.2992,0.1606,0.0876,-0.2408,-0.9308,-0.77,-0.7286,-0.543,-0.482,-0.4736,-0.2576,0.0166,0.252,0.3768,0.6372,0.579,0.8588,0.8698,0.82,0.9502,0.8172,0.903,0.9584,0.8948,0.975,1,0.9722,0.9806,0.9058,0.903,0.8614,0.8172,0.6122,0.4432,0.338,0.216,-0.5776,-0.3974,-0.4416,-0.4328,-0.4652,-0.4062,-0.1286,0.0636,0.2822,0.5332,0.8818,0.7814,1,0.941,0.7578,0.8464,1,0.8906,0.8996,0.8878,0.8936,0.9704,0.932,0.9084,0.7992,0.74,0.7342,0.7962,0.6838,0.3294,0.3116,0.1078,-0.001,-1,-1,1,-0.6,-0.4,-1,0.2334,1,-0.1126,0.2536,0.493,0.6338,0.3098,0.1268,0.2676,0.2676,0.5212,0.6338,0.5774,0.6478,1,0.9436,0.5634,0.507,0.2394,0.3944,0.4508,0.6198,0.3944,0.4788,0.3662,0.338,0.2112,0.5352,0.6056,0.2816,0.3662,0.1268,0.169,-0.2394,'7'
-0.3614,-0.0302,0.259,0.5602,0.771,0.5662,0.3374,0.1988,0.0722,-0.0784,-0.0302,-0.0784,0.0422,-0.0482,0.024,0.1686,0.1988,0.229,0.5362,0.6204,0.747,0.9398,0.982,1,0.9338,0.982,0.9638,0.8796,0.9578,0.7892,0.7108,0.735,-0.4318,-0.1478,0.2556,0.483,0.642,0.3864,-0.1022,0.0966,-0.0852,-0.2386,-0.1364,-0.1988,-0.1306,-0.0228,0.0284,0.1306,0.142,0.2728,0.3978,0.4716,0.6704,0.841,0.9944,0.9944,0.8978,0.8978,1,0.8978,0.733,0.8068,0.7272,0.625,-0.432,-0.1598,0.3136,0.3906,0.5148,0.1656,-0.148,-0.0356,-0.3846,-0.3846,-0.29,-0.3254,-0.2544,-0.1538,-0.0474,-0.0946,-0.065,0.1894,0.1302,0.148,0.5858,0.6568,0.8284,1,0.9764,0.9644,0.864,0.858,0.9526,0.6508,0.5502,0.5384,-0.3602,-0.0438,0.5354,0.4612,0.4478,-0.0304,-0.192,-0.1852,-0.4006,-0.3804,-0.3468,-0.4748,-0.239,-0.2054,-0.1784,-0.1112,-0.091,0.0034,0.1246,0.192,0.3602,0.6768,0.7442,0.9462,1,0.9664,0.9462,0.9058,0.8518,0.6026,0.4276,0.2188,-0.362,0.1902,0.6872,0.5828,0.2332,0.043,-0.1902,-0.6258,-0.546,-0.6134,-0.595,-0.6074,-0.4294,-0.4356,-0.3926,-0.2822,-0.3128,-0.2638,-0.0674,0.0368,0.1226,0.3006,0.5276,0.8098,1,0.9264,0.8834,0.908,0.6134,0.4846,0.362,0.092,-0.4556,0.3008,0.6332,0.4614,-0.083,-0.0774,-0.3352,-0.5588,-0.6104,-0.49,-0.851,-0.576,-0.49,-0.576,-0.5128,-0.381,-0.3582,-0.2092,-0.129,-0.0602,0.0372,0.2608,0.5186,0.7822,0.977,1,0.874,0.8968,0.7936,0.5874,0.4154,0.1634,-0.414,0.575,0.7436,0.37,-0.0402,-0.2234,-0.4578,-0.5092,-0.7948,-0.6924,-0.7582,-0.4578,-0.37,-0.37,-0.2234,-0.2894,-0.4358,-0.4432,-0.2014,-0.2014,-0.0256,0.3846,0.4946,0.9634,1,0.978,0.9268,0.7948,0.5604,0.2894,0.077,-0.0036,-0.4118,-0.1764,0.1764,0.4902,0.6078,0.4118,0.255,0.098,0.0196,-0.1764,-0.098,-0.0588,-0.098,-0.098,0.098,0.1372,0.0588,-0.0588,0.4118,0.5686,0.5686,0.8824,0.9608,0.8824,0.804,0.7254,0.9608,1,0.7648,0.647,0.7254,0.6078,-0.4468,-0.1064,0.0638,0.4894,0.6596,0.3192,0.2766,0.0638,0.0638,-0.1914,-0.1914,0.0212,0.0638,-0.1914,-0.1064,0.1064,0.2766,0.1914,0.2766,0.617,0.7872,0.7872,0.617,1,1,0.8724,0.7446,0.8724,0.9574,0.4894,0.617,0.617,-0.4898,-0.1224,0.2654,0.2858,0.4082,0.0612,-0.1836,-0.0816,-0.4694,-0.4286,-0.3266,-0.4286,-0.2858,-0.1836,-0.1836,-0.1632,-0.0816,0.0408,-0.0204,0.0612,0.4694,0.4694,0.5918,1,0.9592,0.8368,0.898,0.9184,0.9388,0.5714,0.5714,0.4898,-1,-1,-1,-1,-1,-1,-0.977,-0.9806,-0.98,-0.9782,-0.3818,0.446,0.8436,0.9764,0.7694,0.5268,0.4868,0.597,0.6136,0.485,0.148,-0.6182,-0.8424,-0.9758,-0.9722,-0.9752,-0.9616,-0.9598,-0.9764,-0.9722,-0.9534,-0.9652,-0.957,-1,-1,-1,-1,-1,-1,-0.9836,-0.9892,-0.988,-0.9882,-0.4178,0.0644,0.5642,0.9148,0.7434,0.2418,-0.2164,-0.324,-0.3706,-0.4256,-0.4822,-0.8694,-0.9428,-0.987,-0.9862,-0.987,-0.9556,-0.8506,-0.8532,-0.5392,0.084,0.1926,0.0294,-1,-1,-1,-1,-1,-1,-0.7268,-0.8734,-0.7434,-0.7768,-0.5268,-0.47,-0.52,-0.4,-0.584,-0.556,-0.676,-0.784,-0.82,-0.772,-0.792,-0.884,-0.7068,-0.73,-0.86,-0.76,-0.7534,0.24,0.4732,0.5466,0.63,0.5266,0.6732,-1,-1,-1,-1,-1,-1,-0.6572,-0.7428,-0.8572,1,1,1,0.2,-0.8286,-0.2286,-0.1714,-0.3428,-0.4286,-0.6572,-0.3428,1,1,1,0.4286,-1,-0.5714,1,1,1,1,1,-0.9142,-1,1,1,1,1,0.9916,0.9672,0.9238,0.8642,0.7684,0.4498,0.881,0.881,0.8498,0.8898,0.8978,0.9784,0.9498,1,1,1,-0.5066,-0.5058,-0.3266,0.179,0.056,0.6838,0.9432,1,-0.1482,0.2962,0.7038,0.7038,0.2962,0.1852,0.2222,0.2222,0.5186,0.5186,0.8518,1,0.963,0.926,1,0.8148,0.5926,0.6666,0.6296,0.8888,0.963,0.8518,0.4814,0.4814,0.2592,0.074,0.074,-0.037,0.1482,0.1482,-0.3704,-0.5186,0.2482,0.5338,0.7294,0.6842,0.3534,0.1578,0.3384,0.4888,0.5188,0.7594,0.9398,1,0.9248,0.9098,0.97,0.7894,0.6992,0.7594,0.6692,0.7594,0.9098,0.6542,0.5038,0.3082,0.2782,0.1278,0.218,0.1578,0.233,0.2482,-0.0676,-0.2632,0.0846,0.3944,0.6198,0.5492,0.2112,0.155,0.2394,0.1972,0.4366,0.7042,0.831,1,0.9436,0.9296,0.8874,0.7888,0.7888,0.845,0.8874,0.7746,0.7888,0.6478,0.4226,0.2394,0.0846,-0.0704,-0.155,0.014,-0.1126,-0.0282,-0.0986,-0.2816,0.6982,-1,-1,1,-1,-1,-1,-0.8334,1,-0.7894,-0.579,-0.5886,-0.3492,-0.2728,-0.1866,-0.091,0.0622,0.244,0.5024,0.646,0.8278,0.732,0.7512,0.9138,0.9234,0.732,0.7608,0.7416,0.7416,0.9426,1,0.7704,0.7894,0.7608,0.646,0.6172,0.598,0.4066,0.3684,0.3206,-0.0718,'8'
-0.5106,-0.2234,0.149,0.282,0.6276,0.5532,0.0638,0.0532,0.0692,-0.0212,-0.0478,0.0638,0.0638,0.0478,0.0638,0.2074,0.3032,0.3298,0.4202,0.7234,0.867,0.9788,0.883,0.8458,0.9734,0.9574,1,0.8776,0.8618,0.7978,0.782,0.8936,-0.4366,-0.1782,0.2196,0.2868,0.5038,0.4366,0.0388,-0.1318,-0.106,-0.0542,-0.1628,-0.0594,-0.0284,-0.0542,0.0388,0.1782,0.2404,0.2868,0.3644,0.5556,0.814,0.8864,0.9844,0.9742,0.8966,0.9586,1,0.8966,0.8192,0.8604,0.8088,0.8242,-0.4778,-0.2106,0.2818,0.2938,0.3472,0.2048,-0.003,-0.1632,-0.2462,-0.187,-0.187,-0.2284,-0.2166,-0.1336,-0.1276,-0.0446,0.1038,0.1454,0.1692,0.365,0.543,0.6974,0.8754,0.9228,0.9466,1,0.9644,0.9822,0.9466,0.9584,0.8694,0.7744,-0.4762,-0.1488,0.3214,0.3096,0.125,-0.0774,-0.113,-0.3214,-0.2798,-0.3334,-0.3334,-0.3334,-0.2798,-0.1904,-0.137,-0.131,-0.006,0.0178,0.0536,0.2142,0.2084,0.4048,0.738,0.8988,1,0.875,0.8512,0.887,0.863,0.9226,0.756,0.6548,-0.5752,0.085,0.4314,0.3138,0,-0.1112,-0.2288,-0.3594,-0.3922,-0.4576,-0.451,-0.4444,-0.451,-0.3138,-0.3006,-0.2352,-0.2092,-0.1568,-0.1046,-0.1242,0.1634,0.2222,0.5686,0.8366,1,0.9412,0.8628,0.902,0.8562,0.8692,0.7974,0.549,-0.6798,0.267,0.452,0.338,0.0534,-0.2456,-0.2598,-0.4448,-0.5302,-0.4876,-0.7296,-0.5302,-0.5088,-0.3666,-0.3594,-0.267,-0.1886,-0.1672,-0.1104,0.0036,0.0462,0.1814,0.3666,0.637,0.9502,1,0.8078,0.7438,0.7722,0.7296,0.4662,0.4448,-0.7096,0.278,0.5934,0.4356,-0.2034,-0.3278,-0.4772,-0.4522,-0.5186,-0.6348,-0.668,-0.4688,-0.444,-0.585,-0.4024,-0.5186,-0.3858,-0.5602,-0.3444,-0.3196,-0.029,0.22,0.1618,0.6598,0.7262,0.8756,0.9918,1,0.9254,0.7428,0.419,0.4356,-0.4118,-0.1764,0.147,0.4412,0.647,0.5588,0.2942,0.2058,0.1764,0.0882,0.0882,0.1764,0.147,0.2058,0.2352,0.3236,0.353,0.4706,0.5588,0.7648,0.9118,0.9412,0.9412,0.853,0.9706,1,0.9706,0.9118,0.853,0.7942,0.7648,0.8824,-0.5806,-0.258,0.0968,0.3548,0.5806,0.5162,-0.129,-0.0322,-0.0322,-0.0968,-0.0646,0,0.0646,0.0646,0.0322,0.1936,0.2904,0.3226,0.4838,0.7096,0.8388,1,0.9354,0.871,0.9678,1,1,0.9354,0.871,0.8388,0.8388,0.9354,-0.5882,0.1176,0.4118,0.2746,0,-0.2352,-0.1764,-0.353,-0.5294,-0.4706,-0.3922,-0.4902,-0.4118,-0.2746,-0.2746,-0.3138,-0.2352,-0.1176,-0.0784,-0.0392,0.0784,0.2942,0.5686,0.8236,1,1,0.8824,0.902,0.8824,0.902,0.7648,0.6666,-1,-1,-1,-1,-1,-1,-0.9626,-0.9666,-0.96,-0.9666,-0.2908,0.8812,0.9952,0.8364,0.4104,0.2956,0.2874,0.2834,0.3004,0.0586,-0.1816,-0.5058,-0.8274,-0.9104,-0.947,-0.9592,-0.9284,-0.969,-0.9618,-0.9682,-0.969,-0.9626,-0.9568,-1,-1,-1,-1,-1,-1,-0.9904,-0.991,-0.9914,-0.9916,-0.4002,0.4894,0.9766,0.9196,0.7306,8e-04,-0.0374,-0.147,-0.531,-0.6354,-0.8442,-0.8932,-0.9648,-0.9828,-0.9884,-0.9902,-0.9874,-0.9446,-0.9014,-0.7394,-0.5588,-0.439,-0.5454,-1,-1,-1,-1,-1,-1,-0.9668,-0.9134,-0.8534,-0.9734,-0.5268,-0.2534,-0.3468,-0.255,-0.1,-0.295,-0.4,-0.47,-0.57,-0.465,-0.745,-0.645,-0.7234,-0.74,-0.8,-0.7268,-0.7734,-0.48,0.3232,0.6766,0.7432,0.5266,0.57,-1,-1,-1,-1,-1,-1,-0.9428,-1,-1,1,1,1,1,-0.8,-0.4858,-0.4,-0.6286,-0.1714,1,1,1,1,1,1,-0.9142,-0.8858,0.8858,1,1,1,-0.1714,-0.7714,-0.7714,1,1,1,1,1,1,1,0.954,0.8862,0.594,1,1,1,1,1,1,1,1,1,1,-0.5466,-0.6236,-0.3384,0.459,0.8116,0.9636,0.8898,1,-0.138,0.0344,0.2758,0.2414,0.1034,0.138,0.2068,0.2758,0.3794,0.6206,0.862,0.9656,1,1,0.931,0.7932,0.6896,0.8276,0.9656,0.9656,0.862,0.6206,0.138,0.138,-0.069,-0.1034,-0.138,-0.2758,-0.4482,-0.2068,-0.1724,-0.5862,0.0666,0.3482,0.526,0.4814,0.3038,0.1408,0.2148,0.2444,0.3334,0.4222,0.763,0.837,0.8962,1,0.7926,0.8518,0.8666,0.9556,0.9112,0.8814,0.8962,0.6148,0.3482,0.1852,0.1408,0.0074,0.0518,-0.0518,-0.0814,-0.274,-0.274,-0.4074,-0.0658,0.2894,0.6578,0.5,0.2894,0.2368,0.25,0.3422,0.4868,0.6448,0.921,0.9342,1,0.9606,0.8552,0.8816,0.9606,0.9078,0.8422,0.829,0.829,0.579,0.3026,0.2368,0.0526,0.0132,0.0264,-0.0394,-0.2236,-0.2632,-0.2368,-0.4342,1,-1,-1,1,-0.8,-1,-1,-0.8334,1,-0.8614,-0.6832,-0.5544,-0.297,-0.3862,-0.297,-0.2772,-0.0792,0.109,0.2178,0.3762,0.3762,0.7426,0.8416,0.7524,0.8118,0.891,0.792,0.7722,0.6832,0.802,0.8514,0.8712,0.8416,0.7524,0.802,1,1,0.7326,0.4852,0.3862,0.0892,'8'
-0.4546,-0.2324,0.0258,0.0078,0.1088,0.4456,0.688,0.771,0.89,0.8496,0.89,1,0.8878,0.7958,0.504,0.403,0.2794,0.2414,0.192,0.1784,0.1852,0.221,0.4186,0.596,0.587,0.367,0.1874,0.147,0.1134,0.1942,0.1604,0.1964,-0.4206,-0.164,0.1106,0.0242,0.2122,0.5096,0.7484,0.8044,1,0.8856,0.8298,0.7992,0.906,0.8348,0.6366,0.357,0.235,0.202,0.0012,-0.0114,0.0292,-0.0572,0.174,0.3114,0.4332,0.3088,0.1284,0.0444,-0.108,-0.141,-0.2122,-0.1842,-0.4326,-0.2112,0.0306,-0.0966,0.3002,0.4732,0.7506,0.967,1,0.7354,0.6844,0.7888,0.8498,0.9186,0.7736,0.4478,0.3104,0.0662,0.0408,0.056,0.0432,-0.0942,0.1654,0.3256,0.3994,0.2086,-0.005,-0.1068,-0.1984,-0.2698,-0.1424,-0.145,-0.4532,-0.1814,0.0302,-0.066,0.3846,0.4506,0.739,1,0.912,0.4258,0.4094,0.423,0.4148,0.489,0.6428,0.6346,0.4862,0.1814,-0.055,-0.0274,-0.0468,0.1704,0.2528,0.2472,0.2198,0.1098,0.1072,-0.1044,-0.1868,-0.2912,-0.3186,-0.2446,-0.417,-0.0708,0.1688,0.1256,0.6364,0.9942,1,0.9972,0.6162,0.192,0.1226,0.14,0.238,0.2842,0.342,0.593,0.6392,0.6334,0.5614,0.4748,0.492,0.3968,0.5786,0.7142,0.7604,0.5642,0.4084,0.2612,0.2178,0.1832,0.189,0.192,-0.4686,-0.0462,0.1104,0.3538,0.6784,1,0.8518,0.242,0.228,-0.0882,-0.1804,-0.0462,-0.049,0.049,0.0966,0.1636,0.4182,0.656,0.8182,0.9216,0.9888,0.723,0.6588,0.6476,0.5664,0.7174,0.7062,0.449,0.5132,0.3678,0.2616,0.1748,-0.3452,-0.0232,0.1056,0.6244,0.7066,0.6422,0.1162,-0.2808,-0.406,-0.5564,-0.6994,-0.517,-0.5278,-0.517,-0.3738,-0.406,-0.3452,-0.1592,0.1056,0.3024,0.7246,0.907,0.8998,0.7246,0.6888,0.882,1,0.9106,0.6816,0.3488,0.1556,0.1772,-0.5556,-0.3704,-0.1112,-0.037,0.1112,0.4074,0.6666,0.8888,0.8888,0.7408,0.963,1,0.963,0.5926,0.3334,0.2962,0.2962,0.2592,0.2592,0.2592,0.1852,0.3704,0.5926,0.7408,0.7408,0.5556,0.4444,0.3704,0.2962,0.4444,0.4814,0.4444,-0.52,-0.2,-0.08,0,0.16,0.28,0.72,0.6,0.96,0.92,0.8,1,0.8,0.84,0.68,0.36,0.28,0.32,0.32,0.28,0.36,0.32,0.68,0.6,0.84,0.48,0.48,0.36,0.36,0.36,0.28,0.48,-0.4616,-0.0512,0.1026,0.282,0.5642,1,0.8974,0.4872,0.359,0.0512,-0.1026,0.077,0.077,0.1026,0.1282,0.282,0.5898,0.8206,0.7436,0.8718,0.8206,0.5898,0.2564,0.641,0.718,0.6154,0.5898,0.3076,0.4872,0.3846,0.2308,0.2564,-1,-1,-1,-1,-1,-1,-0.972,-0.9616,-0.9664,-0.9588,-0.3894,0.584,0.8392,0.87,0.8186,0.7336,0.728,0.7766,0.6906,0.5756,0.0266,-0.3314,-0.7242,-0.7438,-0.843,-0.8944,-0.8804,-0.9028,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9916,-0.991,-0.9912,-0.9902,-0.3666,0.7906,0.3458,0.3124,0.2954,0.0962,-0.247,-0.3604,-0.404,-0.4858,-0.7296,-0.8598,-0.9322,-0.919,-0.9342,-0.94,-0.953,-0.957,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8256,-0.7622,-0.869,-0.699,-0.599,-0.5432,-0.6578,-0.6178,-0.6106,-0.7056,-0.722,-0.7384,-0.7918,-0.8918,-0.81,-0.7134,-0.5134,-0.2868,-0.1068,-0.1468,-0.31,-0.1968,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,0.1714,-1,-1,-0.8858,-0.8572,-0.7714,-0.8286,-0.5714,0.0572,-0.6286,-0.7142,-0.6858,-0.6858,-0.9142,-0.8572,-0.8286,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.794,-0.8868,-0.965,-0.9516,-0.9868,-1,-0.9904,-1,-1,-0.3492,-0.3866,0.4,-0.1454,0.3198,0.7246,1,0.8062,1,-0.091,0.1636,0.491,0.8546,0.891,1,0.891,0.8182,0.491,0.2728,0.3454,0.6728,0.6728,0.309,0.6,0.491,0.6,0.6,0.3454,0.4182,0.3818,0.3454,0.309,0.3454,0.2,0.491,0.491,0.3818,0.3818,0.1272,-0.2364,-0.491,-0.1428,-0.042,0.3278,0.8824,0.916,0.9832,1,0.5798,0.4454,0.3278,0.3782,0.7478,0.731,0.5126,0.5462,0.4286,0.5462,0.6974,0.7478,0.647,0.6638,0.3446,0.3446,0.3782,0.1092,0.4622,0.5798,0.5294,0.311,0.0588,0.0084,-0.2774,0.049,0.2588,0.4686,0.8602,0.958,0.93,1,0.6504,0.5804,0.4686,0.4826,0.6924,0.8882,0.6224,0.5524,0.6504,0.7202,0.7762,0.8882,0.972,0.8742,0.3146,0.2448,0.2868,0.091,0.4826,0.6224,0.6924,0.5104,0.091,0.1188,-0.2168,0.6522,-1,-1,1,-0.8,-1,-0.8,-0.8334,-1,-0.128,-0.0116,0.4418,0.5116,0.1744,-0.0232,0.0348,0.0232,0.314,0.3604,0.407,0.7674,0.7906,1,0.8256,0.2674,0.3604,0.4768,0.5582,0.686,0.686,0.5,0.2558,0.0582,0.0814,0.0348,0.1162,0.1976,-0.0116,0.3024,0.2674,-0.372,'9'
-0.4554,-0.1938,0.0416,0.0298,0.1772,0.5386,0.6932,0.8454,1,0.9406,0.8382,0.8098,0.7622,0.4982,0.3294,0.27,0.2104,0.101,0.0226,-0.182,-0.1534,-0.12,0.0344,0.1606,0.258,0.3056,0.1676,0.0488,-0.0796,-0.0892,-0.101,-0.1344,-0.3718,-0.0864,0.1918,0.1918,0.295,0.7002,0.7242,0.9208,0.9328,0.964,1,0.8872,0.9496,0.657,0.5468,0.355,0.187,0.0936,0.0432,-0.127,-0.151,-0.0624,0.127,0.2062,0.295,0.319,0.2494,0.2182,0.06,-0.0024,-0.1678,-0.1654,-0.4722,-0.2222,0.1204,0.0672,0.2894,0.5624,0.8402,0.8936,1,0.868,0.838,0.8912,0.9166,0.9884,0.8496,0.6412,0.4954,0.3866,0.3958,0.3634,0.3542,0.3796,0.456,0.5624,0.5324,0.4376,0.1482,0.132,0.0462,0.0324,-0.0694,0.037,-0.4918,-0.3186,0.0164,0.014,0.37,0.6252,0.8266,1,0.8666,0.719,0.6604,0.6722,0.7704,0.8876,0.9508,0.9484,0.8338,0.6838,0.5762,0.4778,0.4262,0.4332,0.4286,0.452,0.356,0.1592,0.164,0.1522,0.157,0.0984,0.021,0.075,-0.548,-0.0988,0.039,0.1168,0.4962,0.8572,1,0.9636,0.4936,0.3376,0.2338,0.2936,0.2962,0.3714,0.3974,0.6312,0.6858,0.787,0.8234,0.6286,0.6364,0.5194,0.6494,0.7064,0.5298,0.5402,0.3922,0.3922,0.291,0.2832,0.2962,0.3922,-0.646,-0.0826,0.0052,0.3928,0.7416,0.8218,0.4832,0.3772,0.106,0.044,-0.018,-0.0542,0.0388,0.0852,0.1758,0.2454,0.416,0.4702,0.7184,0.8192,0.987,1,0.7442,0.801,0.6848,0.7648,0.7442,0.602,0.5322,0.4082,0.354,0.323,-0.6348,-0.184,0.0386,0.4408,0.5806,0.3324,-0.0356,-0.1212,-0.2326,-0.3038,-0.4694,-0.3068,-0.2154,-0.1954,-0.1242,-0.1012,-0.0556,-0.0272,0.1242,0.361,0.6548,0.7318,0.826,0.749,0.7946,0.8544,1,0.9658,0.6176,0.495,0.338,0.3496,-0.577,-0.3076,-0.077,-0.0384,0.2308,0.423,0.7308,0.8462,1,0.923,0.7692,0.8462,0.6924,0.4616,0.3462,0.3462,0.2692,0.1538,0.0384,0,0,0.1154,0.2308,0.3846,0.5384,0.3846,0.3076,0.1538,0.1538,0.1924,0.1924,0.077,-0.5294,-0.2156,-0.0196,0.098,0.1764,0.4902,0.647,0.804,1,1,0.6862,0.6862,0.647,0.6078,0.3334,0.3726,0.255,0.1764,0.098,0.0588,0.1764,0.1372,0.2942,0.1372,0.255,0.4118,0.1372,0.2156,0.1764,0.1372,0.1372,0.098,-0.5652,-0.1956,-0.0652,0.0218,0.326,0.7174,0.9566,1,0.4348,0.3696,0.2608,0.326,0.326,0.4348,0.5652,0.8478,0.9782,0.8914,0.8478,0.413,0.6086,0.4566,0.7174,0.7174,0.2826,0.3914,0.174,0.2608,0.2392,0.1086,0.326,0.2174,-1,-1,-1,-1,-1,-1,-1,-1,-0.9606,-0.9444,-0.328,0.3082,0.4508,0.73,0.92,0.9108,0.854,0.8366,0.4646,0.2654,-0.1252,-0.431,-0.694,-0.8286,-0.8806,-0.9246,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9876,-0.9862,-0.0816,0.2728,-0.03,0.1996,0.7586,0.8816,0.6804,0.232,-0.223,-0.4762,-0.6458,-0.836,-0.9118,-0.9348,-0.9528,-0.9632,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9134,-0.9468,-0.7734,-0.7946,-0.7856,-0.722,-0.84,-0.6856,-0.7728,-0.871,-0.8618,-0.83,-0.76,-0.66,-0.52,-0.2134,-0.3668,-0.2468,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,-0.7428,-0.3714,-0.5428,-0.9142,-0.9142,-0.3714,-0.6572,-0.6572,-0.0858,0.5714,-0.8,-0.7714,-0.7142,-0.9428,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.8516,-0.8646,-0.851,-0.8588,-0.88,-0.8856,-0.9822,-1,-1,-0.4646,-0.36,0.353,0.246,0.2798,0.3836,0.2736,0.1592,1,-0.082,-0.0164,0.4426,0.705,0.836,1,1,0.7378,0.4754,0.4098,0.4426,0.541,0.6066,0.6394,0.5738,0.4098,0.6394,0.6394,0.5738,0.4754,0.4754,0.541,0.5082,0.4754,0.6394,0.6722,0.541,0.541,0.4754,0.246,-0.0164,-0.4098,-0.0952,0.127,0.4444,0.9366,1,0.9048,0.9842,0.5714,0.4444,0.365,0.4762,0.7778,0.8888,0.8254,0.619,0.5874,0.7936,0.8888,1,0.9842,0.7778,0.4762,0.4444,0.2858,0.3334,0.5556,0.3334,0.3968,0.4286,0.0634,-0.0952,-0.619,-0.127,0.1112,0.3968,0.762,1,0.873,0.8412,0.492,0.4126,0.3016,0.2698,0.5396,0.746,0.5556,0.381,0.3334,0.508,0.7142,0.8572,0.8572,0.4444,0.3492,0.0794,0.0476,-0.0318,0.4604,0.508,0.3016,-0.0318,-0.0634,-0.1428,-0.6508,1,-1,-1,1,-0.8,-1,-0.6,-0.8334,-1,-0.3482,-0.3186,0.1704,0.0666,-0.274,-0.4074,-0.1852,0.1408,-0.1408,0.126,0.3778,0.6444,0.8074,1,0.7482,0.274,0.3778,0.5704,0.7482,0.5408,0.3778,0.126,-0.1704,-0.1408,-0.2148,-0.1704,-0.1704,-0.0518,-0.2148,-0.2,-0.3482,-0.7186,'9'
-0.2424,0.1486,0.6742,0.727,0.7678,0.5764,0.1812,0.0876,-0.0632,-0.0224,-0.1284,-0.1364,0.0672,0.0958,0.055,0.2628,0.666,0.6822,1,0.943,0.9104,0.7596,0.6456,0.662,0.837,0.8086,0.499,0.4298,0.2668,0.3604,0.3524,0.332,-0.355,-0.058,0.3378,0.5598,0.7338,0.7406,0.6656,0.297,0.0682,-0.0034,-0.0308,0.1808,0.1092,0.2492,0.3242,0.4334,0.5768,0.802,0.8806,1,0.7646,0.4982,0.6178,0.6758,0.6382,0.6552,0.4642,0.3208,0.2252,0.2048,0.198,0.174,-0.3658,-0.1114,0.2614,0.4042,0.6272,0.9164,0.7038,0.2996,0.244,0.0976,0.0872,0.202,0.1952,0.2718,0.3276,0.4808,0.7352,0.8118,0.9512,1,0.9268,0.669,0.798,0.7142,0.7282,0.6446,0.5088,0.4216,0.2578,0.2544,0.1534,0.223,-0.3688,-0.156,0.2184,0.4202,0.8936,1,0.622,0.3542,0.3064,0.112,-0.0092,0.0422,0.1046,0.156,0.2294,0.3174,0.556,0.7212,0.8788,0.9744,0.8788,0.6954,0.7358,0.7578,0.8312,0.7578,0.5634,0.2366,0.3322,0.266,0.0386,0.1156,-0.4514,0.0262,0.2202,0.5038,1,0.8768,0.5708,0.3098,0.1194,-0.1344,-0.194,-0.2126,0.0038,0.0336,0.153,0.2276,0.3768,0.4962,0.7426,0.9104,0.944,0.8172,0.709,0.668,0.6828,0.6156,0.4888,0.4366,0.3284,-0.0224,-0.1306,-0.1828,-0.4764,0.1166,0.2638,0.82,1,0.5582,0.2516,0.0512,-0.1452,-0.411,-0.5338,-0.5338,-0.1942,-0.1412,-0.231,-0.227,0.0266,0.0266,0.2924,0.5092,0.7424,0.7996,0.587,0.4028,0.4846,0.4764,0.317,0.2884,0.3006,-0.0184,-0.088,-0.0798,-0.405,0.26,0.49,0.905,1,0.28,0.01,-0.305,-0.57,-0.705,-0.66,-0.55,-0.44,-0.415,-0.565,-0.335,-0.25,-0.105,0.15,0.425,0.59,0.895,0.91,0.715,0.62,0.5,0.71,0.56,0.235,0.275,0.23,0.045,-0.2558,0.0232,0.6744,0.721,0.5814,0.2558,-0.0698,-0.1628,-0.0698,-0.0232,-0.2094,-0.3488,-0.1628,-0.3024,-0.0232,0.0698,0.3488,0.2558,0.5348,0.4884,0.628,0.5348,0.5348,0.3488,0.9534,1,0.5814,0.5814,0.2094,0.5348,0.721,0.628,-0.1904,0.238,0.7142,0.762,0.6666,0.5714,0.0952,0.0476,0.0476,-0.0476,-0.1904,0,0.1904,0.0952,0.0952,0.238,0.5238,0.8096,1,1,1,0.762,0.8096,0.8572,0.619,0.5714,0.5714,0.2858,0.3334,0.2858,0.0952,-0.0476,-0.5068,0.0958,0.178,0.6986,0.9726,0.7534,0.3424,0.1232,0.041,-0.315,-0.2876,-0.315,-0.1232,-0.2054,0.0136,-0.041,0.3698,0.315,0.6438,0.7534,0.9452,1,0.5342,0.4246,0.3424,0.3972,0.4794,0.589,0.5342,0.2876,0.2602,0.041,-1,-1,-0.9794,-0.9662,-0.9738,-0.9662,-0.9728,-0.9542,-0.9354,-0.8868,-0.6666,0.3118,0.8604,0.7546,0.5112,0.5618,0.633,0.7416,0.7078,0.367,0.0132,-0.339,-0.7482,-0.8044,-0.8896,-0.9148,-0.9448,-0.9466,-1,-1,-1,-1,-1,-1,-1,-0.9738,-0.9674,-0.9716,-0.967,-0.8612,-0.7004,0.2142,0.6682,-0.1154,0.0144,0.6836,0.754,0.7824,0.706,0.5418,0.6912,0.4802,-0.0314,-0.3398,-0.5766,-0.7446,-0.829,-0.8464,-0.865,-0.8982,-0.9172,-1,-1,-1,-1,-1,-1,-1,-0.82,-0.8068,-0.8634,-0.8568,-0.6868,0.2966,0.57,0.42,0.29,-0.8776,-0.825,-0.8112,-0.7934,-0.8356,-0.8624,-0.7956,-0.8824,-0.8646,-0.9378,-0.7978,-0.2434,-0.2268,-0.1568,-0.1934,-0.23,-0.2234,-1,-1,-1,-1,-1,-1,-1,-0.8286,-1,-0.9428,-0.0858,1,1,1,0.9714,1,1,-0.3142,-0.9142,-1,-1,-0.9428,-0.6286,-0.8,-0.1142,-0.5428,-0.4572,-0.6572,-0.8286,-0.8858,-0.7714,-0.8572,-0.8858,-1,-1,-1,-1,-1,0.578,0.604,0.6418,0.666,0.7382,0.7954,0.8756,0.959,1,1,0.4454,0.449,0.4052,0.385,0.3378,0.331,0.3144,0.3382,0.336,0.4464,-0.3734,0.0236,-0.2232,-0.2902,-0.0034,0.2036,0.5506,1,-0.6318,-0.4228,-0.1542,-0.0398,0.005,0.0348,0.1492,0.2686,0.3284,0.398,0.4478,0.6916,0.7762,0.786,1,0.9752,0.9304,0.786,0.8956,0.806,0.6816,0.9004,0.8906,0.7114,0.7662,0.7612,0.7164,0.5522,0.3432,0.1094,0.1094,-0.2338,-0.9404,-0.6144,-0.5546,-0.4194,-0.2962,-0.1848,-0.1094,-0.0816,0.2764,0.2724,0.4116,0.7416,0.829,0.7256,0.821,0.9284,1,0.8966,0.841,0.8608,0.829,0.8608,0.9682,0.7574,0.7774,0.9522,0.9126,0.7058,0.5746,0.5904,0.3598,-0.157,-0.5056,-0.3514,-0.4468,-0.424,-0.4468,-0.4104,-0.1882,0.0386,0.347,0.8186,0.7688,0.7732,0.9774,0.7688,0.737,0.9592,0.814,0.687,0.8458,0.8458,0.7098,0.796,0.6826,0.687,0.6554,0.8276,1,0.7324,0.4604,0.3786,0.424,0.1112,-0.3484,-1,-1,1,-1,-1,-0.4,-0.1,-1,-0.1892,-0.1892,0.1082,0.2432,0.0406,-0.0136,0.1756,0.2162,0.081,0.1486,0.6216,1,0.7028,0.7568,0.5136,0.3784,0.3108,0.7838,0.6892,0.6892,0.3784,0.2432,0.0676,0.1352,0.0676,0,0.1756,0.3514,0.473,0.0946,-0.0676,-0.2838,'10'
-0.3426,0.0462,0.3982,0.5246,0.574,0.5772,-0.068,-0.0124,0.108,0.0154,0.0246,0.003,0.0524,0.182,0.3518,0.4352,0.6604,0.7902,0.9228,0.9198,0.966,0.8488,0.8888,1,0.9104,0.8086,0.676,0.6388,0.5896,0.6112,0.7006,0.5926,-0.4188,-0.1196,0.1852,0.3562,0.735,0.6438,0.4616,0.319,0.2962,0.168,0.1196,0.1482,0.2706,0.2706,0.3874,0.661,0.7692,0.9686,0.9002,0.963,0.906,0.8746,0.9316,0.9914,1,0.812,0.7578,0.7578,0.6894,0.7208,0.7664,0.7636,-0.45,-0.2286,0.1062,0.2586,0.441,0.7818,0.7428,0.2078,0.2018,0.1718,0.1718,0.2198,0.2346,0.3214,0.4708,0.6054,0.7698,0.994,1,0.9044,0.8206,0.8146,0.8954,0.9672,0.8954,0.8924,0.7758,0.6742,0.6712,0.6114,0.5754,0.6292,-0.4824,-0.182,0.1686,0.2354,0.7296,0.9266,0.6962,0.3924,0.3824,0.2388,0.1786,0.0484,0.2588,0.3056,0.3556,0.5526,0.7196,0.8998,1,0.9666,0.9398,0.8164,0.9298,0.9566,0.9298,0.97,0.8398,0.5126,0.5894,0.3856,0.4524,0.4658,-0.5418,0.011,0.1636,0.3528,0.869,0.8982,0.6436,0.3272,0.2182,0.0364,-0.0654,-0.1236,-0.0618,0.1164,0.109,0.2,0.3818,0.4546,0.6582,0.829,0.8182,0.7418,0.6872,0.8036,1,0.9746,0.7564,0.669,0.5346,0.2872,0.349,0.251,-0.5894,0.1464,0.252,0.5934,0.939,1,0.5244,0.065,-0.0082,-0.1626,-0.1138,-0.1666,-0.1666,-0.0448,-0.1464,0.0162,0.0934,0.0854,0.244,0.4106,0.626,0.6708,0.7276,0.691,0.7804,0.7764,0.9228,0.7724,0.5732,0.5366,0.4918,0.3618,-0.6058,0.1154,0.3584,0.6814,0.8448,0.7442,0.2286,0.132,-0.0356,-0.1992,-0.2662,-0.1824,-0.2202,-0.2494,-0.107,-0.1278,-0.0314,0.0944,0.1446,0.2578,0.5598,0.6142,0.652,0.761,0.7358,0.8742,1,0.849,0.6772,0.61,0.4634,0.4046,-0.2766,0.234,0.4894,0.617,0.4468,0.2766,0.0212,-0.1064,-0.0638,-0.0638,-0.1064,-0.1914,-0.149,-0.0212,0.234,0.3618,0.4894,0.617,0.7872,0.7872,1,0.9574,0.9148,1,0.9574,0.6596,0.6596,0.4468,0.617,0.6596,0.4468,0.532,-0.4042,0.0212,0.4042,0.532,0.4468,0.4894,0.0638,-0.0212,-0.0212,-0.0638,-0.0638,-0.0638,-0.0638,0.0638,0.3192,0.3192,0.4894,0.6596,0.8724,0.8724,1,0.7872,0.7872,0.9574,0.9148,0.7446,0.617,0.532,0.4894,0.5744,0.7446,0.7022,-0.5172,-0.0574,0.1724,0.1954,0.954,0.977,0.5632,0.4252,0.3334,0.0804,0.0344,-0.0344,0.1264,0.2184,0.1264,0.3334,0.3794,0.6782,0.7702,0.862,1,0.931,0.7472,0.931,0.908,0.885,0.931,0.7242,0.3334,0.1494,0.2874,0.3794,-1,-1,-1,-1,-0.9812,-0.9712,-0.978,-0.9632,-0.9692,-0.964,-0.71,0.1152,0.6666,0.6772,0.1688,0.2188,0.3364,0.3798,0.2134,-0.2282,-0.4026,-0.4882,-0.575,-0.7774,-0.899,-0.9178,-0.9244,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.989,-0.9844,-0.937,-0.7502,-0.3428,-0.2934,-0.66,-0.328,0.568,0.9368,0.9522,0.7658,0.3924,-0.0486,-0.344,-0.5874,-0.7288,-0.789,-0.8452,-0.9244,-0.9428,-0.9422,-0.9458,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.8634,-0.7434,0.2966,0.6266,0.4632,0.0466,-0.695,-0.595,-0.62,-0.6026,-0.6676,-0.7,-0.835,-0.9476,-0.8446,-0.9,-0.8912,-0.9034,-0.57,-0.4134,-0.34,-0.41,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,-0.4,1,1,1,1,1,1,0.7714,-0.8,-0.9714,-0.9428,-0.6858,-0.0286,-0.1428,0.0572,-0.1714,-0.1142,0.0286,-0.4858,-0.6572,-0.9142,-0.8286,-1,-1,-1,-1,-1,-1,0.6982,0.7062,0.724,0.7512,0.785,0.8496,0.9194,1,1,1,0.5014,0.5066,0.5164,0.5238,0.5308,0.5446,0.507,0.5036,0.5114,0.649,-0.4534,-0.047,-0.7034,-0.5698,-0.3638,-0.1642,0.3408,1,-0.787,-0.4814,-0.3982,-0.3888,-0.25,-0.1482,-0.1436,0.0602,0.1204,0.199,0.338,0.537,0.7732,0.7314,1,0.9584,0.8888,0.7962,0.6666,0.6204,0.7176,0.8288,0.787,0.6112,0.6528,0.7962,0.7638,0.6018,0.2686,0.1712,0.088,-0.3518,-0.922,-0.7254,-0.6216,-0.3804,-0.3396,-0.358,-0.2208,-0.0316,0.1428,0.41,0.384,0.7626,0.8144,0.6624,0.8108,0.9036,0.9184,0.744,0.8404,0.6772,0.9852,0.9184,0.974,0.9036,1,0.9778,0.9444,0.8738,0.666,0.6066,0.488,0.0724,-0.5792,-0.3318,-0.3146,-0.2928,-0.3406,-0.3188,-0.0238,0.206,0.4924,0.6182,0.5444,0.935,1,0.8524,0.8048,0.796,0.692,0.5618,0.6442,0.77,0.6096,0.6356,0.6832,0.7874,0.731,0.6486,0.7484,0.475,0.4924,0.3362,0.3016,-0.219,-0.3532,-1,-1,1,-1,-1,-0.4,-0.1,-1,-0.1944,0.0278,0.2778,0.2362,-0.1666,-0.125,-0.0834,-0.0138,0.1112,0.0694,0.2362,0.8334,1,0.9584,0.625,0.2638,0.25,0.3194,0.3612,0.5556,0.6666,0.1944,0.1666,-0.2222,-0.2084,-0.0556,-0.0694,0.125,-0.0556,0.0278,-0.1112,-0.5972,'10'
-0.1878,0.4084,0.3428,0.5492,0.662,0.878,0.6432,0.6244,0.2864,0.1738,0.1174,0.1408,0.1314,0.1174,0.2958,0.3522,0.5118,0.6714,0.737,0.9906,1,0.9624,0.8638,0.831,0.8686,0.8216,0.7042,0.6666,0.6056,0.46,0.4882,0.54,-0.283,0.155,0.3682,0.5116,0.9884,1,0.6782,0.5698,0.4806,0.279,0.1434,0.2404,0.2326,0.3528,0.2752,0.3528,0.6318,0.69,0.6822,0.8604,0.9148,0.783,0.6008,0.7404,0.7752,0.7094,0.7636,0.7248,0.6472,0.6086,0.6046,0.659,-0.3444,-0.0598,0.3402,0.5836,0.8392,0.765,0.7568,0.4268,0.2824,0.0804,-0.0846,0.0186,0.1422,0.167,0.2536,0.4268,0.5422,0.6454,0.8556,0.9918,1,0.9134,0.8186,0.7608,0.5712,0.5134,0.4722,0.3402,0.2372,0.2206,0.1752,0.2494,-0.493,-0.2376,0.018,0.3732,0.537,0.6248,0.1896,0.01,-0.022,-0.1218,-0.2614,-0.0778,0.034,0.038,0.0898,0.1816,0.4132,0.469,0.6328,0.9042,1,0.968,0.8882,0.8124,0.7964,0.8044,0.6488,0.5608,0.3572,0.2574,0.2654,0.1418,-0.4816,-0.0458,0.1238,0.4908,0.8302,0.6744,0.312,0.2202,-0.0138,-0.133,-0.156,-0.0688,0.0688,0.1056,0.156,0.188,0.3394,0.4908,0.5964,0.8854,0.9312,1,0.9496,0.844,0.812,0.7982,0.7156,0.5918,0.4082,0.0964,0.0596,0.0366,-0.5294,-0.0352,0.1906,0.6142,0.793,0.4164,0.1812,0.0824,-0.0118,-0.2094,-0.2612,-0.2236,-0.1576,-0.0164,-0.087,0.0258,0.1764,0.2848,0.4352,0.6658,0.8306,1,0.9436,0.6988,0.7458,0.6942,0.553,0.4118,0.2282,-0.0118,-0.073,-0.1152,-0.472,0.191,0.4438,0.9158,1,0.573,0.236,-0.073,-0.236,-0.4214,-0.545,-0.7022,-0.354,-0.3988,-0.3708,-0.2472,-0.0618,0.0338,0.0618,0.2078,0.5112,0.7192,0.7416,0.618,0.7808,0.8484,0.7808,0.5674,0.2078,0.1012,-0.118,-0.073,-0.2308,0.4872,0.4358,0.3846,0.3334,0.5898,0.4872,0.2308,0.282,-0.3846,-0.2308,-0.0256,-0.1794,-0.2308,-0.077,0.2308,0.4872,0.5898,0.6924,0.8974,1,0.9488,0.4358,0.4872,0.5384,0.3334,0.5384,0.4358,0.3334,0.077,0.5384,0.1794,-0.0848,0.3898,0.2882,0.4916,0.6272,0.7628,0.661,0.6272,0.2542,0.356,0.2542,0.2542,0.2204,0.1526,0.2542,0.2204,0.4576,0.5254,0.7628,0.8644,1,0.9322,0.9662,0.7628,0.7288,0.661,0.5932,0.5594,0.661,0.322,0.2204,0.5254,-0.4684,-0.0632,0.1646,0.5444,0.8988,0.6708,0.443,0.2152,0.0632,-0.0632,-0.2152,0.0886,0.1392,0.1646,0.1646,0.2658,0.4178,0.519,0.6202,0.924,0.8988,1,1,0.8482,0.8734,0.8482,0.8228,0.6202,0.2658,0.1392,0.038,-0.114,-1,-1,-0.9694,-0.9652,-0.95,-0.8738,-0.939,-0.9026,-0.9016,-0.8652,-0.5484,0.2584,0.7466,0.9238,0.8432,0.445,0.2796,0.3262,0.172,0.011,-0.0864,-0.294,-0.544,-0.728,-0.8228,-0.855,-0.9144,-0.9288,-0.9484,-0.95,-1,-1,-1,-1,-1,-0.976,-0.9734,-0.856,-0.404,-0.5744,-0.6366,-0.733,-0.6728,-0.5902,0.053,0.4508,0.6164,0.6182,0.583,0.7526,0.5616,0.0456,-0.2234,-0.3272,-0.581,-0.7226,-0.8056,-0.8198,-0.8732,-0.8784,-0.8762,-0.9052,-0.9262,-1,-1,-1,-1,-1,-0.9034,-0.8668,-0.83,0.24,0.48,0.35,0.2266,-0.0168,-0.2234,-0.69,-0.78,-0.6858,-0.7772,-0.7686,-0.7,-0.78,-0.863,-0.9458,-0.8458,-0.9572,-0.6568,-0.4934,-0.3434,-0.1834,-0.2134,-0.1234,-0.12,-0.1034,-1,-1,-1,-1,-1,-0.8286,-0.5428,1,1,0.6572,-0.4,-0.3714,-0.6286,1,1,0.0572,-0.8,-0.6858,-0.6572,-0.5428,-0.3714,-0.2572,-0.8,0,-0.0858,-0.6572,-0.7714,-0.8286,-0.7714,-0.9428,-0.8858,-0.9142,-0.6286,-1,-1,-1,0.9908,1,1,1,1,1,1,1,1,1,0.6424,0.5808,0.6046,0.5788,0.637,0.5424,0.5324,0.4664,0.4508,0.6166,-0.3866,-0.2236,-0.5724,-0.3068,0.121,0.4054,0.428,1,-0.8536,-0.4784,-0.2046,-0.0582,-0.0994,-0.137,0.0132,0.1144,0.3658,0.531,0.7748,0.985,0.985,0.9924,0.7298,0.8086,0.7374,0.8198,0.7786,0.8536,0.9438,0.9438,1,0.8048,0.726,0.8198,0.7148,0.5984,0.5534,0.5684,0.2458,-0.0806,-0.901,-0.4248,0.0666,0.0248,-0.078,-0.3638,-0.2304,0.0134,0.3104,0.4666,0.8896,0.958,0.9238,0.9086,0.9658,0.9314,0.7714,0.7942,0.9734,0.8858,1,0.92,0.8972,0.6304,0.7066,0.722,0.6762,0.562,0.5352,0.5352,0.4362,0.2038,-0.1562,-0.0834,0.1502,0.3596,0.3292,-0.0318,0.0652,0.044,0.2838,0.657,0.9484,0.8998,1,0.8634,0.8816,0.6054,0.6328,0.8362,0.8968,0.6966,0.6418,0.5752,0.5386,0.2716,0.2594,0.4446,0.4294,0.5084,0.5508,0.3202,0.1714,-0.1928,0.425,-1,-1,1,-0.8,-1,0.4,0.2666,-1,-0.7008,-0.4016,-0.2126,-0.1812,-0.0552,-0.1338,-0.244,-0.1496,0.0236,0.37,0.433,0.5748,1,0.811,0.4804,0.3544,0.3228,0.5906,0.5434,0.559,0.1968,0.1338,0.0708,-0.0708,-0.1024,-0.2756,-0.3228,0.37,0.2284,-0.4804,-0.5906,-0.7952,'11'
-0.3654,0.3254,0.253,0.5702,0.7028,1,0.7912,0.6626,0.3254,0.3614,0.0964,0.1406,0.249,0.1606,0.4338,0.3936,0.5742,0.6706,0.6988,0.8192,0.9558,0.8674,0.8394,0.8152,0.743,0.7952,0.6184,0.5904,0.6426,0.5302,0.5904,0.5502,-0.3562,0.0374,0.2406,0.3562,0.7938,0.825,0.7344,0.6562,0.375,0.2032,0.15,0.2906,0.2938,0.4,0.3782,0.4688,0.5812,0.7718,0.8688,1,0.9718,0.8688,0.6468,0.6312,0.6938,0.6906,0.6468,0.5032,0.5032,0.5844,0.6032,0.6656,-0.3938,-0.089,0.2994,0.5572,0.7604,0.8984,0.902,0.3394,0.1796,0.1108,0.147,0.1796,0.2558,0.2668,0.3612,0.4156,0.5826,0.7314,0.833,0.9238,1,0.9892,0.9818,0.96,0.9166,0.844,0.6806,0.6008,0.4954,0.4446,0.47,0.401,-0.4888,-0.1986,0.1398,0.43,0.7892,0.8618,0.5026,0.1882,0.1364,0.0812,-0.0466,0.0742,0.1088,0.1952,0.2262,0.3298,0.4196,0.5682,0.7202,0.9068,1,0.9654,0.9102,0.9206,0.9378,0.8584,0.8446,0.6926,0.5924,0.3714,0.4956,0.475,-0.6274,-0.065,0.0264,0.522,0.6802,0.659,0.29,0.0228,-0.0228,-0.2022,-0.1634,-0.1318,-0.0052,0.0474,0.1142,0.1354,0.2618,0.311,0.536,0.6872,0.9684,1,0.7996,0.8558,0.8594,0.8488,0.8032,0.5888,0.4692,0.304,0.297,0.2688,-0.655,-0.2128,-0.0486,0.5746,0.6984,0.4874,0.2026,-0.0252,-0.0586,-0.1826,-0.2194,-0.1056,-0.0486,0.0418,-0.0452,0.0486,0.1458,0.2294,0.3836,0.5812,0.7956,0.8592,0.8526,0.8626,0.9498,1,0.8994,0.655,0.5612,0.3836,0.3602,0.3668,-0.6798,-0.1008,0.0468,0.5108,0.5072,0.2374,-0.1152,-0.2482,-0.392,-0.5252,-0.4352,-0.151,-0.1834,-0.1978,-0.223,-0.2302,-0.0756,0.0144,0.1834,0.2662,0.5756,0.705,0.8346,0.8274,0.9208,1,0.9316,0.7878,0.5036,0.4064,0.3992,0.349,-0.2444,0.4666,0.4222,0.4666,0.3334,0.6888,0.6,0.3334,0.1556,0.1556,-0.2,-0.0222,-0.0666,0.0222,0.0222,-0.1556,-0.2,0.3778,0.2,0.7334,0.8666,0.7334,0.9112,1,0.8222,0.8222,0.6444,0.6,0.6888,0.4666,0.5112,0.3334,-0.5218,0.174,0.087,0.3914,0.3478,0.7826,0.6522,0.3478,0.174,0.2608,-0.0434,0.2174,-0.0434,0.2174,0.174,0.3914,0.3044,0.4782,0.4348,0.5652,0.7392,0.826,0.9566,1,0.826,0.7826,0.3478,0.2608,0.3914,0.1304,0.5652,0.4348,-0.5714,-0.0714,0.119,0.5238,0.9762,0.881,0.5238,0.238,0.0714,-0.119,-0.0952,0.0238,0.0714,0.0952,0.1666,0.1666,0.3572,0.4048,0.5714,0.6666,0.9524,1,0.738,0.9524,0.9048,0.881,0.9286,0.619,0.6666,0.5238,0.4762,0.5,-1,-0.9662,-0.9672,-0.9708,-0.9634,-0.8694,-0.8978,-0.9078,-0.8832,-0.8566,-0.5964,0.4876,0.7754,0.8776,0.6538,0.3754,0.4666,0.306,-0.0932,-0.1716,-0.5552,-0.5836,-0.7106,-0.8,-0.895,-0.9352,-1,-1,-1,-1,-1,-1,-1,-1,-0.9744,-0.9796,-0.9788,-0.975,-0.2884,-0.6524,-0.7078,-0.7586,-0.7436,-0.6866,0.0502,0.6686,0.9378,0.6584,0.626,0.561,0.2078,-0.2228,-0.2304,-0.555,-0.738,-0.86,-0.8812,-0.8986,-0.917,-1,-1,-1,-1,-1,-1,-1,-1,-0.8468,-0.93,-0.7968,-0.8,-0.3768,0.5432,0.3832,0.1766,0.0666,-0.1,-0.725,-0.8,-0.6776,-0.8926,-0.725,-0.6,-0.795,-0.6976,-0.655,-0.5776,-0.5126,-0.6068,-0.2,-0.14,-0.0634,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,-1,-1,1,1,1,-0.2,-0.4,-0.8,1,1,-0.4572,-0.8572,-0.8286,-0.9428,-0.5428,-0.2858,-0.9714,-0.6572,0.2,-0.3714,-0.1428,-0.8,-0.9428,-0.8572,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.4384,0.4024,0.333,0.2926,0.2446,0.2144,0.2788,0.3706,0.4972,0.7306,-0.3066,-0.0824,-0.6932,-0.392,0.048,0.3076,0.4712,1,-0.5992,-0.1732,-0.112,0.0722,0.083,-0.0578,0.2564,0.3032,0.3502,0.4874,0.7184,1,0.9098,0.852,0.787,0.7906,0.657,0.6318,0.7762,0.7834,0.9748,0.8916,0.8664,0.8628,0.7472,0.74,0.751,0.592,0.556,0.6102,0.3466,-0.1156,-0.6102,-0.2708,0.1372,0.2996,0.1768,0.0434,0.1624,0.231,0.3754,0.6968,0.9566,0.935,0.953,0.953,0.8916,0.8232,0.8086,0.9062,1,0.9712,0.9748,0.9928,0.8448,0.6968,0.7148,0.6534,0.6968,0.7364,0.6896,0.4404,0.2708,-0.0866,-0.0706,0.064,0.2972,0.3366,0.248,0.0674,0.2086,0.284,0.527,0.7406,0.9244,0.9704,0.849,1,0.803,0.7472,0.7536,0.816,0.849,0.8654,0.6946,0.7308,0.688,0.537,0.55,0.6552,0.606,0.6224,0.3924,0.3334,-0.064,-0.2972,1,-1,-1,1,-0.8,-1,-0.6,0.1666,-1,-0.5352,-0.3522,-0.2112,0.0704,0.014,-0.155,-0.0564,-0.0846,-0.0846,-0.0422,0.3522,0.8732,0.8028,0.9014,0.7746,0.3098,0.0986,0.6198,1,0.4648,0.2816,0.324,0.155,0.1268,-0.0986,-0.1126,-0.2676,-0.2536,-0.0704,-0.0282,0.0564,-0.5352,'11'
-0.291,0.1066,0.1844,0.2664,0.6886,0.7786,0.9754,0.7132,0.2172,0.3484,0.2172,0.3032,0.164,0.209,0.4058,0.6844,0.8402,0.9304,1,0.8894,0.791,0.4754,0.5122,0.6516,0.664,0.7336,0.746,0.586,0.1558,0.1516,0.2214,0.3032,-0.242,0.2016,0.1814,0.3024,0.746,0.738,0.9112,0.7662,0.871,0.5766,0.2904,0.5888,0.5766,0.7742,0.9396,1,0.9436,0.9032,0.6008,0.4476,0.3952,0.4638,0.492,0.8226,0.7218,0.5524,0.3388,0.2298,0.1048,0.0686,0.254,0.1048,-0.303,0.0432,0.1918,0.2288,0.5546,0.7526,0.831,1,0.9134,0.567,0.4928,0.6784,0.864,0.802,0.7072,0.5546,0.266,0.0762,-0.0062,-0.134,-0.0392,0.1546,0.3526,0.3896,0.5216,0.2248,-0.0392,-0.1464,-0.1216,-0.0268,-0.0846,-0.0762,-0.3656,-0.0606,0.2348,0.2348,0.603,0.8112,1,0.9274,0.7288,0.7482,0.753,0.69,0.448,0.23,0.0992,-0.2446,-0.3704,-0.6998,-0.787,-0.6562,-0.6658,-0.5352,-0.2688,-0.0072,0.0848,-0.0654,-0.3462,-0.2784,-0.3076,-0.322,-0.4722,-0.6078,-0.2844,0.1206,0.3104,0.3664,0.8018,1,0.9612,0.7026,0.8104,0.8232,0.5818,0.0732,-0.069,-0.181,-0.3318,-0.5862,-0.6552,-0.6724,-0.7328,-0.819,-0.569,-0.6034,-0.6594,-0.4956,-0.0216,-0.0906,-0.4138,-0.375,-0.4354,-0.9094,-0.8318,-0.612,-0.4458,0.1084,0.2544,0.6876,0.9244,1,0.9446,0.9244,0.9698,0.879,0.2142,-0.194,-0.33,-0.5466,-0.4862,-0.6524,-0.7078,-0.6272,-0.6272,-0.6372,-0.9144,-0.8842,-0.6726,-0.456,-0.1738,0.0126,-0.1738,-0.5012,-0.456,-0.7028,-0.859,-0.9042,-0.356,0.2204,0.3276,0.6102,1,0.9096,0.7796,0.791,0.7402,0.3502,-0.079,-0.5254,-0.4464,-0.3842,-0.5142,-0.7854,-0.6666,-0.8022,-0.7684,-0.6214,-0.469,-0.3954,-0.6892,-0.5932,-0.339,0.1582,0.192,-0.2316,-0.3842,-0.226,-0.6666,-0.5932,-0.4286,-0.0612,0.0612,0.2244,0.4694,0.5918,0.7552,0.4694,-0.0612,0.1836,0.1836,0.1836,0.0612,0.102,0.3062,0.4694,0.6326,0.8368,0.9592,0.9592,0.8368,0.5102,0.4694,0.6326,0.796,1,1,0.8368,0.6734,0.551,0.4694,0.3062,-0.3914,0.0434,0.087,0.2608,0.5218,0.6086,0.8696,0.4782,0.1304,0.2608,0.174,0.1304,0.0434,0.1304,0.3478,0.6956,0.7392,0.913,0.826,1,0.6522,0.5652,0.5218,0.6086,0.6522,0.6956,0.5652,0.1304,0,0.2174,0.3478,0.3478,-0.372,0,0.1396,0.186,0.3488,0.7674,0.7906,1,0.907,0.628,0.6046,0.8604,1,0.7906,0.7442,0.4652,0.186,0.1396,-0.2094,-0.3256,-0.1628,0.093,0.2326,0.3024,0.3954,0.0466,0.0466,-0.2558,-0.0466,0,-0.2326,-0.2558,-1,-1,-1,-1,-1,-1,-0.9574,-0.9616,-0.9648,-0.9616,-0.4968,0.4202,0.8558,0.9304,0.9356,0.7646,0.6992,0.7728,0.611,0.415,-0.2034,-0.4212,-0.721,-0.9066,-0.8506,-0.8258,-0.9534,-0.945,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9752,-0.9742,-0.9812,-0.9772,-0.3048,0.4998,0.6244,0.7564,0.884,0.6176,0.2732,0.1558,0.0204,-0.0212,-0.5534,-0.707,-0.8914,-0.9276,-0.859,-0.873,-0.943,-0.94,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7868,-0.8334,-0.8668,-0.7668,-0.5268,-0.683,-0.6686,-0.5944,-0.7058,-0.7686,-0.8658,-0.8916,-0.8858,-0.9426,-0.955,-0.9376,-0.83,-0.6768,-0.38,-0.3534,-0.4668,-0.37,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,-0.9714,-0.9714,1,1,1,0.0286,-0.1142,-0.0286,0.3714,-0.3142,-0.0858,-0.4,-0.4858,-0.2286,-0.4572,-0.4858,0.6286,0.7714,0.5714,-0.1142,-0.1142,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.2652,0.2652,0.1618,0.1192,0.001,-0.129,-0.2556,-0.428,-0.6002,-0.3936,-0.4,-0.1764,-0.1822,0.2852,0.4986,0.5164,0.5666,1,-0.2882,0.0848,0.2882,0.356,0.1864,0.2542,0.3898,0.4576,0.6272,0.8306,0.8644,0.7966,0.8984,0.9322,0.9322,0.8306,0.7628,0.8644,0.9662,1,0.9322,0.7966,0.695,0.4916,0.2542,0.0508,0.017,-0.017,-0.2204,-0.1864,-0.0508,-0.2882,0.1402,0.1962,0.2524,0.458,0.1402,0.271,0.2898,0.3084,0.514,0.7196,0.944,0.7758,0.6636,0.9066,0.9066,0.4954,0.5888,0.6074,0.7944,1,0.7196,0.6262,0.5514,0.4766,0.215,-0.028,-0.0094,0.0468,-0.3084,0.0654,0.215,-0.1588,0.0926,0.1666,0.6296,0.7038,0.3148,0.2778,0.3148,0.3148,0.5926,0.8148,0.8704,0.7778,0.7962,1,0.8888,0.4074,0.4444,0.5926,0.7962,0.8704,0.5926,0.463,0.2592,-0.0186,0.074,-0.037,-0.0186,0.0926,-0.2222,-0.3518,-0.074,-0.3334,0.469,-1,-1,1,-0.6,-1,-1,-0.8334,-1,-0.312,0.104,0.328,0.296,0.28,0.68,0.904,0.632,0.632,0.584,0.216,0.2,0.616,0.744,0.808,0.824,1,0.488,0.536,0.44,0.424,0.648,0.44,0.488,0.44,0.776,0.68,0.968,0.92,0.008,0.328,0.136,'12'
-0.4518,-0.1632,0.1952,0.2914,0.5454,0.8796,0.845,0.1872,0.1176,0.1444,0.1176,0.0776,0.1578,0.278,0.2942,0.4732,0.7834,0.9598,1,0.9064,0.7406,0.639,0.786,0.877,0.9492,0.8984,0.6712,0.5962,0.5428,0.508,0.5562,0.5882,-0.3786,-0.0678,0.2146,0.2402,0.5056,0.9294,0.9972,0.9774,0.887,0.5536,0.5424,0.5904,0.7118,0.9746,0.9436,1,0.8588,0.8588,0.6498,0.5396,0.5338,0.5904,0.661,0.8362,0.7344,0.661,0.452,0.2994,0.1666,0.1186,0.082,0.1102,-0.502,-0.3028,0.1114,0.0826,0.439,0.7484,0.9842,1,0.7196,0.8296,0.8532,0.9476,0.7668,0.73,0.4286,0.3474,0.3002,0.245,0.2032,0.1664,0.2556,0.3002,0.4312,0.5492,0.5176,0.3054,0.2162,0.1114,0.1376,0.1324,0.0302,-0.0196,-0.5628,-0.1848,-0.0014,0.131,0.6384,0.9164,1,0.6978,0.8462,0.892,0.8704,0.5034,0.2524,-0.0176,-0.0392,-0.0824,-0.1794,-0.2172,-0.2578,-0.2038,-0.166,-0.0824,0.2308,0.3496,0.3496,0.2388,-0.004,-0.0446,0.0014,-0.0418,-0.139,-0.139,-0.6642,-0.0782,0.0668,0.246,0.8918,1,0.7894,0.8578,0.9488,0.8066,0.4338,0.1892,0.0184,-0.118,-0.2348,-0.323,-0.357,-0.5164,-0.5732,-0.5334,-0.6046,-0.5476,-0.2092,0.0014,0.0298,-0.1152,-0.4366,-0.357,-0.3456,-0.488,-0.6672,-0.6842,-0.624,-0.0616,0.1026,0.6272,0.9684,1,0.8042,0.9242,0.8704,0.4566,0.188,-0.0552,-0.1438,-0.2038,-0.3176,-0.466,-0.4028,-0.6146,-0.6524,-0.5546,-0.466,-0.3776,-0.286,0.1912,0.1628,0.0394,-0.267,-0.2828,-0.0522,-0.0932,-0.5514,-0.6366,-0.6054,-0.0766,0.0804,0.6934,1,0.82,0.6054,0.751,0.7892,0.161,-0.41,-0.4368,-0.3334,-0.3678,-0.387,-0.525,-0.4252,-0.5288,-0.475,-0.5862,-0.4138,-0.4828,-0.318,-0.2758,-0.1992,-0.161,-0.364,-0.4022,-0.3142,-0.2758,-0.5978,-0.5288,-0.6326,-0.2244,0.102,0.2244,0.551,0.796,0.6326,-0.0204,-0.0612,0.0204,0.0612,-0.0204,0.1428,0.2244,0.2244,0.4286,0.5918,0.9184,1,0.796,0.8368,0.6734,0.7552,0.7552,0.8776,0.9184,0.796,0.6734,0.6734,0.6734,0.7552,0.8368,-0.5918,-0.2244,0.102,0.2244,0.3878,0.7552,0.6734,-0.102,-0.0204,-0.0612,-0.0204,0.0204,-0.0204,0.0612,-0.0612,0.4286,0.4286,0.8368,0.9184,1,0.551,0.5102,0.4694,0.8368,0.8368,0.9184,0.6326,0.551,0.5918,0.3062,0.6326,0.6734,-0.6288,-0.1546,0.0104,0.2578,0.6702,1,0.8762,0.835,0.835,0.9382,0.5052,0.2784,0.0928,0.0104,-0.0516,-0.3402,-0.299,-0.2784,-0.4226,-0.3196,-0.2784,-0.3402,0.1134,0.134,0.2164,-0.0104,-0.3196,-0.1546,-0.2784,-0.3402,-0.464,-0.3608,-1,-1,-1,-1,-1,-1,-1,-1,-0.9696,-0.9752,-0.4536,-0.1794,-0.0228,0.1376,0.2996,0.412,0.6142,0.7722,0.3926,0.0164,-0.5452,-0.5476,-0.781,-0.9142,-0.951,-0.9622,-0.9664,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.988,-0.9854,-0.51,-0.1968,-0.0502,0.2006,0.8822,0.8214,0.4254,0.271,-0.126,-0.4758,-0.7866,-0.8296,-0.9302,-0.9508,-0.9662,-0.9692,-0.9722,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8884,-0.8484,-0.6518,-0.5196,-0.633,-0.638,-0.7,-0.7956,-0.822,-0.856,-0.87,-0.894,-0.864,-0.906,-0.9534,-0.7468,-0.6934,-0.5134,-0.4168,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,0.7714,-0.0286,-0.3142,-0.4572,-0.4,0.4572,-0.2858,-0.4,-0.7142,-0.4858,-0.2572,0.0858,-0.8286,-0.8572,-0.6858,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.5212,0.501,0.4768,0.4288,0.353,0.189,-0.029,-0.371,-0.3808,-0.2712,-0.32,0.1176,-0.356,-0.2296,-0.2182,-0.182,-0.237,1,-0.0334,0.2,0.5,0.5334,0.3666,0.4334,0.4,0.5,0.8334,0.9666,1,0.9,0.9,0.9,0.7334,0.6666,0.7,0.7666,0.7334,0.6334,0.6334,0.4334,0.4334,0.4,0.3666,0.1666,0.1,0.2,0.1666,0.1,-0.1,-0.3334,-0.2296,0.164,0.7378,0.6886,0.1968,0.1476,0.2296,0.3442,0.7704,0.9508,0.8688,0.918,0.9344,0.9672,0.7214,0.7868,0.9672,1,0.8196,0.541,0.4262,0.2132,0.1148,0.0656,0.0492,-0.164,-0.2622,0.082,-0.0656,-0.1968,-0.2786,-0.4426,-0.0136,0.3014,0.7946,0.7808,0.2192,0.3014,0.3698,0.4658,0.6986,1,0.8904,0.8082,0.9178,0.9178,0.685,0.7124,0.959,0.9864,0.863,0.6028,0.4658,0.3288,0.1096,0.1506,0.1506,0.1096,-0.0822,-0.0548,-0.0684,-0.0136,-0.3836,-0.3972,0.2112,-1,-1,1,-0.8,-1,-1,-0.8334,1,-0.3654,0.1154,0.3654,0.5192,0.75,0.9616,0.7692,0.3846,0.4038,0.4616,0.423,0.4038,0.6154,0.5962,0.8654,0.9424,1,0.577,0.5962,0.75,0.75,0.577,0.4424,0.4424,0.6154,0.3654,0.577,0.5962,0.827,0.5,0.5384,-0.173,'12'
-0.291,0.081,0.3736,0.399,0.4562,0.5262,0.6152,0.4118,0.3164,0.1224,0.1288,0.1192,0.2782,0.2528,0.2814,0.3608,0.4944,0.5994,0.8442,0.8474,1,0.822,0.771,0.7934,0.822,0.8188,0.9332,0.9364,0.8696,0.7138,0.6312,0.593,-0.2752,0.104,0.4862,0.5168,0.3456,0.5626,0.6422,0.6484,0.5382,0.2324,0.4496,0.4282,0.5902,0.627,0.6666,0.685,0.9236,1,1,0.9174,0.74,0.5108,0.5198,0.5536,0.6912,0.7492,0.6574,0.5658,0.5016,0.3548,0.3854,0.263,-0.379,-0.052,0.4502,0.3492,0.3314,0.6374,0.5216,0.465,0.3878,0.468,0.5274,0.6612,0.7772,0.9702,1,0.6702,0.5898,0.5304,0.3016,-0.1026,-0.1352,0.0164,0.156,0.4026,0.676,0.6642,0.4622,0.2956,0.2244,0.0906,0.1412,0.2362,-0.1876,0.6688,1,0.6778,0.0596,-0.404,-0.4084,-0.2804,0.2626,0.3024,0.4658,0.6732,0.6424,0.5584,0.1302,-0.1434,-0.1258,-0.0242,-0.0552,-0.1038,-0.1434,-0.4438,-0.479,-0.4172,0.2362,0.2892,-0.0906,-0.3864,-0.554,-0.7396,-0.5496,-0.086,-0.3252,0.7942,1,0.3662,-0.1152,-0.358,-0.4238,-0.3128,-0.1976,0.1604,0.4362,0.5474,0.391,0.2428,-0.0246,-0.1728,0.0042,0.074,0.0412,-0.144,-0.2222,-0.4198,-0.5268,-0.1894,0.0042,0.3786,0.3744,0.0864,-0.3374,-0.8106,-0.8724,-0.2962,-0.275,0.8616,1,0.2506,0.0062,-0.4746,-0.5274,-0.4542,0.0712,0.0998,0.3238,0.4094,0.2382,0.3156,0.1486,0.0062,0.218,0.3076,0.279,-0.0264,-0.0306,-0.328,-0.3564,-0.2872,-0.116,0.169,0.0386,-0.2098,-0.6212,-0.8738,-0.7352,-0.2382,-0.2972,0.8624,1,0.2776,-0.199,-0.6756,-0.7886,-0.489,-0.1254,-0.2432,-0.2432,0.0712,0.091,0.1254,-0.0516,-0.2138,-0.1942,-0.1646,-0.199,-0.4792,-0.6462,-0.6266,-0.6954,-0.4348,0.032,0.0172,-0.5824,-0.4742,-0.4742,-0.4594,-0.1892,-0.2088,-0.3658,-0.0732,0.2682,0.4146,0.5122,0.5122,0.561,0.2682,0.1708,0.122,0.0732,-0.0732,-0.0244,0.0244,0.122,0.2682,0.5122,0.6098,0.7074,0.756,1,0.8048,0.9024,0.756,0.9024,0.9512,0.9024,1,0.9512,0.7074,1,0.7074,-0.32,-0.08,0.28,0.24,0.4,0.56,0.56,0.28,-0.04,0,0.08,0.04,0.16,0.04,0.24,0.36,0.52,0.56,0.68,0.8,0.76,0.88,0.88,0.88,0.8,0.8,1,1,0.8,0.76,0.44,0.32,-0.3714,0.2286,0.5428,0.3714,0.6858,0.8,0.5714,0.4572,0.4572,0.5714,0.7142,0.9142,0.8286,1,0.8286,0.3142,0.2572,0.2858,0.0858,-0.4858,-0.5714,-0.4572,-0.4286,0.0858,0.3428,0.2286,-0.1714,-0.4,-0.2286,-0.2286,-0.0858,0.0858,-1,-1,-1,-1,-1,-1,-0.967,-0.9788,-0.9682,-0.9702,-0.466,0.311,0.4778,0.7888,0.9564,0.7028,0.4916,0.5594,0.4406,0.1816,-0.053,-0.2962,-0.6316,-0.7208,-0.8026,-0.8812,-0.9352,-0.9416,-0.949,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9748,-0.976,-0.9714,-0.9748,-0.367,0.4524,0.1428,0.5402,0.9342,0.1838,-0.4614,-0.458,-0.5178,-0.6058,-0.6888,-0.7558,-0.7886,-0.8124,-0.7876,-0.8028,-0.8628,-0.9182,-0.9356,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.78,-0.8068,-0.7468,-0.88,-0.4434,-0.422,-0.512,-0.638,-0.514,-0.732,-0.932,-0.908,-0.928,-0.966,-0.986,-0.9764,-0.7768,-0.5468,-0.44,-0.3034,-0.27,-0.2734,-0.3268,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,1,1,1,-0.6286,-0.4858,0.0858,1,1,-1,-0.9142,-0.8,-0.8286,0.2858,0.1142,-0.4286,-0.6572,-0.8572,-0.4,-0.4858,-0.7714,-1,-1,-1,-1,1,1,1,1,1,1,1,1,0.9288,0.268,0.8102,0.782,0.7818,0.714,0.654,0.534,0.3346,0.0464,-0.253,-0.4198,-0.32,0.1882,-0.1296,0.2294,0.399,0.612,0.3916,1,-0.129,0,0.1936,0.3226,0.2258,0.258,0.3548,0.3226,0.4516,0.6774,0.8064,0.871,0.9354,1,1,0.9678,0.9032,0.871,0.871,0.8388,0.7742,0.613,0.4194,0.2258,0.2258,0.2258,0.258,0.1936,0.1936,0,-0.0322,-0.3548,0.0746,0.1492,0.4328,0.403,0.2686,0.0298,0.1344,0.209,0.3732,0.5672,0.6866,0.7014,0.806,0.9702,1,0.791,0.7314,0.8208,0.8208,0.8208,0.7164,0.7164,0.4776,0.2538,0.0598,0.1642,0.3732,0.2986,0.209,0.2836,-0.1642,-0.5074,0.2942,0.4118,0.7352,0.5736,0.5148,0.4558,0.4118,0.3382,0.4706,0.75,0.8088,0.9412,0.9118,0.9412,0.9558,0.9558,1,0.9852,0.9264,0.8382,0.8236,0.6176,0.4412,0.1324,0.2206,0.3236,0.6324,0.2942,0.2206,0.2794,0.147,-0.1176,0.6836,-1,-1,1,-1,-1,0,-0.8334,-1,-0.2362,-0.0556,0.4722,0.5416,0.4722,0.6806,0.8888,0.8888,0.4166,0.4166,0.1666,0.25,0.5278,0.9444,0.6388,1,0.8056,0.625,0.375,0.5278,0.75,0.5278,0.5138,0.4444,0.5694,0.8472,0.3888,0.2778,0.2638,0.2222,0.1944,-0.0556,'13'
-0.3372,0.1006,0.0462,0.2048,0.6,0.7136,0.5242,0.3136,0.1384,0.136,0.0414,0.0912,0.1054,0.129,0.2592,0.2686,0.4202,0.4438,0.6426,0.794,0.9218,0.903,0.9242,0.8674,0.948,0.9502,1,0.8414,0.7988,0.7302,0.7136,0.806,-0.2352,0.231,0.2048,0.268,0.5206,0.7974,0.7168,0.61,0.5142,0.292,0.2962,0.451,0.318,0.4576,0.3834,0.4858,0.6972,0.7822,0.9042,0.9716,0.6994,0.6994,0.8454,0.9084,0.9542,1,0.6994,0.7146,0.6688,0.6776,0.7038,0.7124,-0.1834,0.3306,0.2722,0.3528,0.7862,0.9666,0.8194,0.9278,0.7694,0.7834,0.8138,0.8444,0.9334,0.9638,1,0.975,0.9362,0.8806,0.6612,0.6444,0.5362,0.6028,0.7694,0.7416,0.8528,0.8166,0.6472,0.5722,0.5528,0.3778,0.525,0.4888,-0.1686,0.2568,0.479,0.521,0.4138,0.3716,0.2568,0.1954,0.5978,0.7472,0.797,1,0.9118,0.9386,0.659,0.479,0.2912,0.3026,0.318,0.341,0.1112,0.2108,0.2568,0.502,0.5556,0.479,0.0114,-0.2108,-0.3564,-0.3716,-0.2874,-0.0842,-0.0924,0.6148,1,0.7044,0.3614,-0.4036,-0.3826,-0.1452,0.4248,0.62,0.7362,0.7836,0.7414,0.694,0.1188,0.2612,0.1188,0.182,0.1874,0.2876,0.3034,-0.0606,0.124,0.467,0.5092,0.7784,0.6728,-0.0238,-0.7044,-0.6464,-0.599,0.3298,-0.3216,0.8654,0.9552,0.217,-0.0674,-0.631,-0.4414,-0.1272,0.237,0.4812,0.581,0.7756,0.965,0.9352,0.3216,0.3566,0.3316,0.2618,0.3316,0.202,0.0624,0.0074,0.0574,0.167,0.6408,1,0.8104,0.3666,-0.0574,-0.6558,-0.3766,0.3916,-0.3388,0.4174,0.5,-0.1612,-0.2686,-0.7066,-0.4338,-0.2604,-0.0786,-0.0744,0.1364,0.314,0.6364,0.5414,0.3306,0.2232,0.124,0.1984,0.2438,0.2644,0.1404,0.1322,0.1116,0.1736,0.405,0.9794,1,0.4876,-0.062,-0.3264,-0.0702,0.2686,-0.2616,0.0462,0.1384,0.1692,0.6,0.6308,0.4154,0.2308,0.2924,-0.0154,0.0154,0.1076,0.0462,0.1384,0.1692,0.2,0.3846,0.2924,0.5076,0.7846,0.877,1,0.9384,0.8154,0.8462,0.9076,0.877,0.8462,0.7538,0.6616,0.6924,0.7538,-0.178,0.178,0.0684,0.315,0.726,0.7808,0.5342,0.3698,0.315,0.2876,0.1506,0.0958,0.2054,0.1232,0.315,0.3424,0.452,0.5342,0.6164,0.8904,0.9178,0.9452,0.863,0.8904,0.9178,1,0.9452,0.9178,0.8356,0.9178,0.8082,0.8082,-0.3112,0.1112,0.1112,0.2444,0.7556,0.7112,0.6,0.5778,0.6888,0.7556,0.7334,0.9778,0.8666,1,0.5556,0.4444,0.3334,0.1334,0.2222,0.0666,-0.2888,-0.0666,0,0.4,0.3112,0.3112,0.3556,0.3778,-0.1556,-0.2,0.1556,0.1778,-1,-1,-1,-1,-1,-1,-0.9816,-0.9806,-0.9828,-0.9828,-0.7868,0.2474,0.7362,0.9796,0.9138,0.635,-0.0686,-0.1774,-0.1048,-0.2172,-0.5946,-0.6974,-0.8034,-0.8654,-0.9538,-0.9726,-0.9752,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9652,-0.991,-0.9922,-0.9926,-0.5622,0.4582,0.8688,0.6036,0.3702,0.2476,-0.6578,-0.7762,-0.7994,-0.8122,-0.882,-0.9152,-0.9506,-0.9628,-0.9784,-0.985,-0.9858,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6768,-0.8368,-0.8568,-0.9034,-0.46,-0.3334,-0.3024,-0.4024,-0.609,-0.5734,-0.7512,-0.7534,-0.9178,-0.9424,-0.7734,-0.8312,-0.91,-0.6034,-0.4934,-0.2268,-0.44,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4,-0.5428,-0.9428,1,1,1,-0.4,-0.2286,-0.3142,1,1,-0.7142,-0.7142,-0.9142,-0.1714,-0.4572,-0.3714,-0.7714,-0.8572,-0.8858,-0.3142,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.5014,0.972,0.9736,0.9682,0.9878,0.9502,0.8932,0.8596,0.5642,0.073,-0.1436,-0.5334,0.047,-0.364,-0.0764,0.3934,0.633,0.977,1,-0.32,-0.12,0.24,0.28,0.24,0.04,0.4,0.44,0.44,0.6,0.76,0.8,0.92,0.92,0.96,0.96,1,1,0.92,0.92,0.88,0.76,0.64,0.52,0.4,0.32,0.24,0.08,0,0,-0.16,-0.2,-0.5448,-0.3496,-0.0082,0.0082,-0.1056,-0.3008,-0.2032,0.122,0.2846,0.5448,0.8212,0.8536,0.9512,1,0.9512,0.7886,0.9186,0.9674,0.9512,0.9674,0.9186,0.8536,0.691,0.4308,0.317,0.3008,0.2196,0.1544,-0.0732,-0.3496,-0.3822,-0.4472,0.1968,0.3228,0.496,0.4646,0.2598,0.1812,0.2126,0.307,0.4016,0.7166,0.874,1,0.7166,0.7952,0.7796,0.8426,0.8898,0.937,0.9212,0.9528,0.874,0.6062,0.6536,0.5748,0.4174,0.2598,0.1654,0.1338,0.0552,-0.2126,-0.1654,-0.2284,0.255,-1,-1,1,-1,-1,-0.8,-0.8334,-1,-0.5676,-0.3874,0.063,0.045,0.027,0.4594,0.4954,0.4594,0.2432,0.5316,0.5136,0.4054,0.964,1,0.081,0.4234,0.4954,0.6576,0.7298,0.5856,0.4054,0.4054,0.2792,0.3154,-0.009,0.1532,0.1712,0.3154,0.7478,-0.1532,0.027,-0.6396,'13'
-0.5,-0.1894,-0.0048,0.1068,0.4344,0.364,0.25,0.0558,0.0364,-0.1796,-0.2476,-0.1772,-0.097,-0.085,-0.034,0.114,0.1626,0.2792,0.42,0.6166,0.847,0.898,0.7816,0.7792,0.8616,0.9368,1,0.9078,0.7572,0.7936,0.7742,0.8374,-0.344,0.035,0.1662,0.2594,0.6588,0.5976,0.5598,0.3702,0.2332,0.0584,0.003,0.0932,0.0466,0.0932,0.2186,0.3498,0.5452,0.7114,0.761,0.9504,0.8776,0.898,0.7406,0.7872,0.8804,0.8922,1,0.8368,0.5802,0.411,0.3498,0.4898,-0.4208,-0.1758,0.291,0.291,0.2074,0.6542,0.6628,0.4122,0.3054,0.2074,0.2334,0.2104,0.2046,0.3516,0.4236,0.634,0.8242,0.9654,1,0.8386,0.608,0.5504,0.4928,0.6658,0.7032,0.8126,0.7146,0.6196,0.4466,0.3862,0.245,0.2652,-0.4238,0.0084,0.3736,0.2294,0.531,0.6918,0.3534,0.2932,0.3132,0.0922,-0.0016,0.1156,0.2664,0.4138,0.5612,0.8056,1,0.933,0.7722,0.454,0.2428,0.2362,0.3334,0.484,0.598,0.7086,0.6148,0.4104,0.3702,0.3802,0.2696,0.0922,-0.3024,0.717,1,0.4976,0.161,0.0488,-0.3464,-0.3268,-0.1756,0.0488,-0.1074,-0.4488,-0.5074,-0.3512,0.1854,0.6878,0.8048,0.4536,0.356,0.4586,-0.1024,-0.1658,-0.2586,-0.0976,0.2536,0.4488,0.3414,-0.0682,-0.1708,-0.556,-0.878,-0.8536,-0.308,0.8572,1,0.2456,-0.0446,-0.25,0.0624,-0.0492,0.0358,0.0536,-0.2054,-0.5492,-0.6026,-0.5402,-0.3392,0.2456,0.4242,0.3214,0.3036,0.1206,-0.0848,-0.317,-0.2768,-0.1518,0.2902,0.5938,0.5134,0.0938,0,-0.3928,-0.884,-0.9018,-0.3818,0.9532,0.9688,0.548,-0.0182,0.0754,0.0702,-0.1376,-0.3246,-0.2208,-0.3246,-0.4286,-0.1584,-0.065,0.6624,1,0.9948,0.6676,0.761,0.6,0.3818,-0.0598,-0.148,0.122,0.5792,0.9948,0.7142,-0.0702,-0.3974,-0.4754,-0.7298,-0.8754,-0.6,-0.4182,0.0182,0.1636,0.2728,0.1272,0.2364,0.0546,-0.091,-0.2,-0.2364,-0.309,-0.1636,-0.0182,-0.0546,0.0546,0.1272,0.1636,0.3454,0.6364,0.6,0.9272,0.709,0.7454,0.891,0.7818,1,0.9272,0.891,0.7818,0.891,0.8546,-0.5,-0.2334,0.0334,0.1,0.4666,0.4,0.3,0.1,0.1,-0.1666,-0.1666,-0.1,-0.0334,-0.1666,0.0666,0.2,0.1666,0.2666,0.4,0.4666,0.8666,0.8666,0.7334,0.8,0.8666,1,0.9334,0.8666,0.8666,0.8666,0.8,0.9,-0.3684,0.1578,0.3684,0.1052,0.7368,0.7894,0.2894,0.1842,0.079,0.0526,-0.421,-0.079,0.2106,0.3948,0.5526,0.8158,1,0.8948,0.4736,0.1842,-0.2632,-0.3158,-0.1316,0.2894,0.3684,0.6316,0.6052,0.1842,0.1052,0.1316,0.1316,-0.2106,-1,-1,-1,-1,-1,-1,-0.9446,-0.956,-0.9584,-0.9584,-0.5644,0.2352,0.74,0.5714,0.665,0.94,0.7284,0.361,0.2836,0.1034,-0.1842,-0.4812,-0.5736,-0.658,-0.7216,-0.7932,-0.7966,-0.859,-0.888,-0.9202,-0.9456,-1,-1,-1,-1,-1,-1,-1,-1,-0.9866,-0.9878,-0.99,-0.9876,-0.4862,0.5568,0.367,-0.4114,-0.184,-0.129,-0.419,-0.778,-0.8248,-0.8604,-0.8844,-0.9202,-0.9156,-0.9338,-0.9362,-0.9392,-0.9316,-0.9382,-0.9368,-0.9608,-0.9692,-1,-1,-1,-1,-1,-1,-1,-1,-0.867,-0.81,-0.7868,-0.82,-0.43,-0.12,-0.24,-0.5224,-0.4646,-0.4734,-0.509,-0.849,-0.949,-0.98,-0.989,-0.968,-0.7768,-0.67,-0.4634,-0.2568,-0.2034,-0.2334,0.2666,0.2766,0.3766,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,-0.9714,-1,1,1,1,0.3142,-0.5714,-0.6572,-0.7428,1,1,-0.8,-0.9428,-0.8572,-0.3714,-0.0858,-0.5714,-0.5714,-0.7142,-0.8286,-0.9142,-0.8286,-0.7428,-0.7714,-1,-1,1,1,1,1,1,1,1,1,1,0.7292,1,1,1,1,1,1,1,0.928,0.632,0.2794,-0.4266,0.0588,-0.3758,0.2178,0.3512,0.8266,0.9546,1,-0.6296,-0.1482,0.1482,0.074,0.1852,0.1482,0.074,0.2592,0.2592,0.6666,0.8148,0.8888,0.963,1,0.963,0.963,0.8888,0.926,0.8888,0.7038,0.5556,0.4814,0.2962,0.1482,-0.037,-0.074,-0.3334,0.037,0.1112,0.074,-0.3334,-0.5556,-0.0616,0.2,0.477,0.3538,0.2924,0.077,0.0924,0.3076,0.3692,0.6616,0.9384,0.877,0.9692,1,0.9538,0.9846,0.9076,0.9538,0.7846,0.4924,0.3692,0.2616,0,0.1538,-0.1076,-0.0924,-0.1384,0.123,0.2154,0.0616,-0.1846,-0.4924,0.0066,0.2848,0.4438,0.4966,0.2582,0.0728,0.2052,0.2716,0.351,0.6424,0.9072,0.8676,0.947,1,0.8676,0.9338,0.9868,0.9736,0.7484,0.6954,0.2582,0.2052,0.1126,0.0066,-0.1788,-0.2318,-0.0994,0.2318,0.245,0.0596,-0.2318,-0.5232,0.5988,-1,-1,1,-1,-1,0.8,-0.8334,-1,-0.4598,-0.3218,0.0344,0.1724,-0.0804,0.1494,0.2298,0.115,0.2298,0.2874,-0.0574,0.092,0.092,0.2644,0.3678,0.2644,0.2298,-0.1034,-0.092,0.069,0.0574,0,0,0.0574,0.0804,0.6552,1,0.4712,0.2414,-0.046,0.0574,-0.0804,'14'
-0.327,0.0768,-0.0014,0.117,0.607,0.6796,0.311,0.1764,0.0364,-0.0068,-0.0578,-0.0874,0.0524,0.0524,0.1306,0.1548,0.1682,0.3056,0.3324,0.6204,0.755,0.9542,0.9084,0.9434,0.8816,0.922,1,0.9596,0.8762,0.7632,0.7524,0.8466,-0.3628,0.0372,-0.0514,0.1042,0.5544,0.6432,0.358,0.3628,0.2408,0.1808,0.1402,0.0468,0.1712,0.1498,0.2024,0.2814,0.279,0.5114,0.6048,0.7844,0.861,0.9544,0.7988,0.842,0.8994,0.897,1,0.9306,0.861,0.7294,0.739,0.7318,-0.379,-0.0268,0.0618,0.1398,0.422,0.414,0.5242,0.4436,0.5188,0.379,0.3656,0.387,0.3924,0.4462,0.5456,0.656,0.8494,0.9006,0.957,0.7608,0.7016,0.6854,0.7096,0.7796,0.8682,1,0.9248,0.914,0.785,0.7124,0.7096,0.7284,-0.415,-0.0556,0.3228,0.2432,0.3132,0.612,0.5294,0.3832,0.3386,0.2942,0.275,0.3896,0.4214,0.5136,0.733,0.911,1,0.9396,0.574,0.4786,0.3196,0.2338,0.221,0.4118,0.6438,0.752,0.736,0.5072,0.4086,0.2686,0.2528,0.2274,-0.1914,0.6276,0.9522,0.468,-0.149,-0.016,0,-0.3618,-0.234,-0.1542,-0.3776,-0.5798,-0.3404,0.0638,0.4574,1,0.968,0.4522,0.5692,0.3564,0.2978,0.0638,-0.016,0.2288,0.4256,0.7128,0.6542,0.1756,-0.1542,-0.6756,-0.7712,-0.8404,-0.1642,0.8688,1,0.2866,0.1728,-0.0722,0.0154,0.0766,-0.0416,0.1466,-0.0722,-0.685,-0.6718,-0.4442,0.1772,0.5098,0.6456,0.6192,0.4748,0.3216,0.2998,0.1598,0.059,-0.0066,0.2692,0.755,0.7156,0.3654,-0.0548,-0.4442,-0.663,-0.9212,-0.2968,0.5936,0.6986,-0.0868,-0.0548,-0.3516,-0.1598,-0.3334,-0.2328,-0.2328,-0.6074,-0.6758,-0.6666,-0.4748,0.0548,0.6118,0.6804,0.653,0.6348,0.4748,0.3608,0.242,0.1416,0.2374,0.5342,1,0.8768,0.557,0.3836,-0.3014,-0.7534,-0.8174,-0.258,0.0968,-0.0322,0.129,0.5806,0.5806,0.1936,0.1612,0.0646,-0.129,0,0.0646,0.0968,0.129,0,0.2258,0.0968,0.258,0.3226,0.4194,0.8064,0.9354,1,0.9032,0.8064,0.9032,0.9678,0.9354,0.9354,0.7742,0.6774,0.8388,-0.2188,0.1562,0.0312,0.1876,0.6562,0.7188,0.375,0.1876,0.1562,0.0624,0.0624,0.0312,0.1562,0.1562,0.2188,0.25,0.2188,0.3438,0.4376,0.5624,0.8124,0.875,1,1,0.9062,0.9062,1,0.9688,0.9376,0.6876,0.7812,0.9376,-0.4186,0,0.372,0.2558,0.5582,0.721,0.5116,0.3024,0.4186,0.186,0.3024,0.3488,0.4418,0.5582,0.814,0.9768,1,0.907,0.5582,0.2558,0.1628,0.0466,-0.186,0.279,0.4652,0.721,0.4884,0.3954,0.3488,-0.0466,0.186,0.186,-1,-1,-1,-1,-1,-1,-0.9822,-0.9794,-0.98,-0.9816,-0.5668,0.254,0.7704,0.9336,0.4956,0.4846,0.5536,0.035,-0.0324,-0.1398,-0.4398,-0.6594,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9938,-0.9924,-0.9932,-0.9932,-0.5484,0.1628,0.467,0.8636,0.6496,0.6348,-0.0184,-0.7394,-0.8242,-0.8452,-0.8958,-0.9304,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.7434,-0.8268,-0.78,-0.3368,-0.16,-0.2676,-0.299,-0.29,-0.3456,-0.4278,-0.7768,-0.959,-0.9478,-0.8856,-0.83,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,-0.8286,-0.8572,1,1,1,-0.5428,-0.6572,-0.6572,-0.2858,1,1,-0.6286,-0.8858,-0.3714,-0.3714,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.6814,1,1,1,1,1,1,1,1,0.767,0.3956,-0.3734,0.0236,-0.3742,-0.0806,0.162,0.274,0.3886,1,0.0612,0.1428,0.1836,0.1428,0.1428,-0.3062,0.0612,0.3062,0.0612,0.347,0.4694,0.7552,0.6734,0.9592,0.6326,0.7142,0.9592,0.9592,0.9184,1,1,0.8776,0.6326,0.3062,0.3878,0.3062,0.2244,0.1836,0.2244,0.0612,-0.3062,-0.5102,0.0158,0.127,0.3334,0.2222,0,-0.0634,-0.0158,0.1904,0.1904,0.6032,0.9048,0.9048,0.9048,1,0.9206,0.9048,0.746,0.5556,0.508,0.7302,0.492,0.3492,0.2064,-0.0634,-0.0318,-0.0476,-0.0794,-0.2858,0,0.1428,-0.381,-0.5396,0.0978,0.233,0.594,0.3384,0.1278,0.1278,0.173,0.2482,0.203,0.594,0.9548,0.97,0.9398,0.985,0.9548,0.9248,1,0.9548,0.8346,0.7594,0.4586,0.173,0.1578,0.0828,-0.1278,-0.3082,-0.1578,-0.2482,0.1128,0.3384,0.0526,-0.3534,0.0968,-1,-1,1,-0.8,-1,-1,-0.8334,-1,0.4226,0.732,0.3402,0.299,0.2164,0.0928,-0.031,0.835,1,0.8556,0.6494,0.6082,1,0.9588,0.7938,0.0722,0.4226,0.8556,0.6082,0.3402,0.464,0.4226,0.3814,0.0516,-0.3196,-0.5876,-0.3196,0.2164,0.1134,0.134,0.1134,-0.3608,'14'
-0.398,-0.0506,0.2244,0.2706,0.5862,0.893,1,0.6672,0.5716,0.7888,0.8668,0.9132,0.6498,0.5542,0.2186,0.1636,0.1114,0.1548,0.1838,0.2822,0.3892,0.534,0.7164,0.6642,0.3054,0.2416,0.1808,0.2706,0.1924,0.042,0.1866,0.1086,-0.32,0.0348,0.3764,0.4826,0.7412,0.9436,1,0.476,0.7148,0.7778,0.98,0.8806,0.4196,0.0978,0.0216,0.0016,0.0016,-0.0248,-0.0548,-0.1276,-0.1112,-0.0448,0.3898,0.403,0.1442,-0.0282,-0.0946,-0.214,-0.34,-0.151,-0.0282,0.0082,-0.3862,-0.1188,0.33,0.5248,0.6304,0.8382,0.6568,0.3466,0.6238,1,0.957,0.264,0.0232,-0.1188,-0.2442,-0.3466,-0.373,-0.3432,-0.462,-0.4884,-0.472,-0.373,-0.0562,0.0462,-0.043,-0.3268,-0.373,-0.7294,-0.6336,-0.4126,-0.2838,-0.0892,-0.387,0.1328,0.4504,0.6748,0.9888,0.97,0.3532,0.6524,1,0.8728,0.1776,0.013,-0.2186,-0.428,-0.6672,-0.8654,-0.8356,-0.8878,-0.8616,-0.772,-0.6972,-0.5514,-0.2822,-0.013,-0.0242,-0.2336,-0.3906,-0.5066,-0.514,-0.6112,-0.5328,-0.2074,-0.3724,0.3194,0.4632,0.792,1,0.6446,0.4292,0.9206,0.845,0.3082,-0.1834,-0.361,-0.4292,-0.7202,-0.6446,-0.6672,-0.8602,-0.8602,-0.9092,-0.5992,-0.5538,-0.4366,-0.1796,-0.0586,-0.104,-0.414,-0.6144,-0.637,-0.7316,-0.6862,-0.5426,-0.191,-0.4666,0.3822,0.64,1,0.9734,0.6044,0.7556,0.8356,0.6712,0.12,-0.3956,-0.5378,-0.6312,-0.6888,-0.6088,-0.6266,-0.5378,-0.6178,-0.6178,-0.5912,-0.5156,-0.6088,-0.0444,0.0578,-0.3288,-0.6088,-0.7334,-0.7466,-0.7022,-0.6578,-0.6444,-0.3022,-0.4258,0.335,0.8326,1,0.8756,0.8278,0.9808,0.78,0.2058,-0.3398,-0.3206,-0.1674,-0.2392,-0.2966,-0.3302,-0.4498,-0.3588,-0.3444,-0.3398,-0.4594,-0.3398,-0.3444,0.0382,-0.0288,-0.1484,-0.3398,-0.5072,-0.4114,-0.4928,-0.3972,-0.3684,-0.0526,-0.4286,-0.1836,0.1836,0.1836,0.551,0.9592,1,0.796,0.5918,0.7142,0.8776,0.8776,0.796,0.551,0.347,0.3062,0.2244,0.3062,0.3062,0.4286,0.5918,0.9184,1,0.8776,0.4286,0.4694,0.3878,0.347,0.3062,0.2654,0.3878,0.6326,-0.4584,0,0.2084,0.375,0.4166,0.9584,1,0.875,0.875,0.7084,0.875,0.6666,0.75,0.5416,0.375,0.3334,0.25,0.25,0.2084,0.2916,0.5,0.6666,0.625,0.7084,0.4166,0.2916,0.25,0.2916,0.375,0.25,0.2084,-0.0834,-0.2046,0.409,0.591,0.659,1,0.7728,0.4772,0.9546,0.9318,0.3636,-0.091,-0.25,-0.3182,-0.5,-0.3636,-0.3864,-0.9318,-0.909,-0.8864,-0.6818,-0.4318,-0.2046,-0.0228,0.2728,0.2954,-0.1364,-0.25,-0.2954,-0.3182,-0.341,-0.159,0.0228,-1,-1,-1,-1,-1,-1,-0.9672,-0.9696,-0.9664,-0.9728,-0.405,0.6392,0.7924,0.879,0.9558,0.9358,0.9616,0.7562,0.4202,-0.0344,-0.3032,-0.5814,-0.7032,-0.822,-0.9062,-0.9262,-0.9526,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9834,-0.9842,-0.9832,-0.9838,-0.2274,0.8422,0.6484,0.3888,0.2946,0.1054,-0.09,-0.276,-0.431,-0.6552,-0.7582,-0.8524,-0.8954,-0.9428,-0.9404,-0.9578,-0.9754,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.79,-0.7534,-0.9534,-0.72,-0.5334,-0.6726,-0.6824,-0.7934,-0.7468,-0.7446,-0.8268,-0.8712,-0.9078,-0.9234,-0.9278,-0.899,-0.899,-0.8256,-0.7622,-0.8222,-0.739,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,-0.6286,-0.5714,-0.6858,-0.7142,-0.4,-0.1142,-0.1142,-0.7142,-0.8286,-0.8286,-0.7428,-0.8286,-0.6858,-0.8286,-0.7142,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.5308,-0.5408,-0.5094,-0.5134,-0.4828,-0.4512,-0.497,-0.538,-0.4588,-0.264,-0.32,0.0352,-0.1302,0.68,0.7038,1,0.846,1,-0.0188,0.283,0.6604,0.9246,0.9246,1,1,0.849,0.6226,0.6604,0.7358,0.849,0.7358,0.5094,0.4716,0.6226,0.7358,0.7736,0.7736,0.7736,0.5472,0.6604,0.6604,0.6982,0.9246,0.9246,0.8114,0.6226,0.4716,0.132,-0.132,-0.585,0.2142,0.3928,0.7678,0.9822,1,0.9286,0.9108,0.8214,0.6428,0.6786,0.7678,0.9642,0.7858,0.6428,0.5178,0.6608,0.875,0.8392,0.8928,0.9108,0.6964,0.8036,0.7322,0.7142,0.7858,1,0.6964,0.6964,0.5714,0.1786,0.0892,-0.1608,0.0948,0.4014,0.7226,1,0.7956,0.8394,0.8102,0.6058,0.5036,0.562,0.781,0.9708,0.6496,0.6058,0.5182,0.6496,0.8686,0.8686,0.9416,0.9708,0.9708,0.9854,0.6496,0.27,0.343,0.5036,0.6058,0.562,0.27,0.1824,-0.0656,-0.3284,0.6294,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.0218,0.3044,0.9566,1,0.7174,0.7608,0.6522,0.9566,0.8478,0.9782,0.7608,0.6304,0.8044,0.5,0.5652,0.5218,0.6086,0.5,0.6086,0.4566,0.6304,0.7174,0.7826,0.6304,0.5218,0.7392,0.8914,0.5218,0.413,0.4348,0.0434,-0.1086,'15'
-0.3414,0.0396,0.25,0.3536,0.756,0.8324,1,0.7958,0.5488,0.878,0.8324,0.5396,0.317,0.125,-0.0884,-0.125,-0.244,-0.0396,0.0854,0.1586,0.2012,0.433,0.631,0.7196,0.5732,0.3384,0.2104,0.1554,0.2164,0.3446,0.4208,0.7074,-0.3032,0.082,0.3802,0.464,0.9196,0.8392,1,0.7488,0.742,0.9396,0.8492,0.015,-0.2496,-0.417,-0.35,-0.4104,-0.3736,-0.4372,-0.3534,-0.2964,-0.2898,-0.2696,-0.0118,0.3066,0.2898,0.0386,-0.139,-0.0854,0.0586,0.1356,0.2562,0.4774,-0.3628,-0.0426,0.397,0.6456,0.7888,1,0.9114,0.765,0.8706,0.7718,0.2164,-0.0664,-0.2708,-0.414,-0.431,-0.5776,-0.598,-0.7002,-0.6388,-0.5502,-0.4788,-0.431,-0.08,0.0936,0.1686,-0.1448,-0.2708,-0.305,-0.2776,-0.1108,0.196,0.4684,-0.1194,0.2636,0.5418,0.7708,1,0.9934,0.748,0.8494,0.8724,0.7218,0.1228,-0.0442,-0.1914,-0.3748,-0.4566,-0.653,-0.6694,-0.892,-0.7774,-0.6366,-0.5646,-0.3682,-0.1522,0.1096,0.1424,-0.2176,-0.3126,-0.2242,-0.2636,-0.162,0.018,0.3192,-0.5576,0.064,0.3272,0.8208,0.894,0.5648,0.7368,1,0.9122,0.1224,-0.042,-0.382,-0.4332,-0.5502,-0.682,-0.744,-0.883,-0.916,-0.5868,-0.5394,-0.6564,-0.404,-0.1042,0.2176,0.203,-0.3894,-0.5028,-0.6234,-0.638,-0.6052,-0.393,-0.042,-0.4664,0.1256,0.5698,0.797,0.8072,0.5732,0.9586,1,0.7178,0.0912,-0.2702,-0.308,-0.3426,-0.463,-0.3632,-0.2668,-0.518,-0.5594,-0.5284,-0.4388,-0.4974,-0.2806,0.0946,0.222,0.0362,-0.2048,-0.3116,-0.4906,-0.377,-0.4596,-0.3426,-0.0706,-0.4872,0.1624,0.5598,0.859,0.7008,0.5342,1,0.9018,0.1112,-0.3076,-0.6068,-0.4914,-0.3162,-0.4018,-0.376,-0.3718,-0.6452,-0.5982,-0.6154,-0.671,-0.547,-0.4958,-0.2778,-0.235,-0.329,-0.5042,-0.624,-0.594,-0.594,-0.5812,-0.5,0.0384,-0.3572,-0.0714,0.1428,0.1072,0.7142,0.9642,1,0.7142,0.6428,0.9642,0.9642,0.8214,0.2858,0.25,0.0714,0,0.0358,0.2142,0.25,0.2858,0.4286,0.5358,0.75,0.7142,0.6428,0.2858,0.2858,0.2142,0.3928,0.4642,0.7142,0.8214,-0.2204,0.0848,0.2882,0.356,0.7966,0.9322,1,0.8984,0.6272,0.8644,0.8644,0.695,0.3898,0.4238,0.2542,0.1864,0.017,0.1526,0.2882,0.356,0.4576,0.5932,0.7966,0.8644,0.7288,0.4238,0.3898,0.322,0.322,0.4238,0.5254,0.661,-0.2088,0.099,0.4726,0.7142,0.7362,1,0.8462,0.7582,0.8682,0.5384,0.3186,0.1648,-0.2748,-0.3406,-0.3186,-0.4286,-0.4286,-0.4726,-0.6704,-0.2748,-0.2528,-0.2968,-0.055,0.3846,0.3186,-0.1428,-0.2088,-0.2308,-0.3186,-0.2308,-0.033,0.2748,-1,-1,-1,-1,-1,-1,-0.9776,-0.9736,-0.9802,-0.9736,-0.3344,0.3766,0.696,0.9566,0.8584,0.6856,0.5298,0.4748,0.278,-0.2236,-0.4502,-0.6116,-0.8826,-0.9194,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9864,-0.983,-0.9842,-0.982,-0.2216,0.6396,0.5568,0.7874,0.4956,0.2334,-0.1252,-0.1342,-0.2746,-0.562,-0.7142,-0.8146,-0.9458,-0.9412,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9134,-0.82,-0.84,-0.96,-0.72,-0.8276,-0.8576,-0.84,-0.8778,-0.9024,-0.8446,-0.869,-0.8424,-0.8824,-0.849,-0.9134,-0.91,-0.84,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,-1,-1,1,1,1,-0.7428,0.1142,-0.4858,0.2572,-0.1714,-0.8858,-0.1714,-0.2,-0.8286,-0.3428,-0.4286,-0.2286,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.2044,0.2068,0.2804,0.293,0.3026,0.324,0.316,0.2378,0.189,0.108,-0.32,0.0118,-0.1292,0.829,0.6606,0.5126,0.4916,1,0.2076,0.2076,0.3208,0.7358,0.7736,0.849,0.6226,0.4716,0.3962,0.5094,0.5472,0.9246,0.8868,0.6604,0.7358,0.849,0.849,0.6604,0.8114,0.6226,0.9246,1,1,0.9246,0.7358,0.7358,0.5472,-0.132,0.0566,-0.2452,-0.132,-0.5472,0.3392,0.5304,0.8956,0.9826,0.8956,1,0.7218,0.4782,0.2696,0.374,0.5826,0.8956,0.8086,0.5652,0.6696,0.7914,0.7914,0.6522,0.6174,0.4086,0.4608,0.774,0.6348,0.426,0.4086,0.5304,0.3044,-0.0608,0.0782,-0.0782,-0.3044,-0.7914,0.137,0.3836,0.8904,1,0.8356,0.9726,0.589,0.411,0.3014,0.411,0.589,0.8494,0.7124,0.5342,0.5616,0.7672,0.822,0.5616,0.6576,0.411,0.411,0.3424,0.4384,0.274,0.1918,0.2054,0.178,-0.274,-0.0822,-0.3014,-0.452,-0.5616,1,-1,-1,1,-1,-1,-1,-0.8334,-1,0,0.242,0.8548,1,0.4678,0.113,-0.113,-0.0646,0.0322,0,0.1774,0.129,0.0806,-0.2258,0.0162,0.0484,0.1774,-0.0968,-0.113,-0.1774,-0.0484,-0.0646,-0.0968,-0.1774,-0.1774,0,-0.0322,-0.1774,-0.1452,-0.3064,-0.2258,-0.5,'15'
-0.032,0.754,0.7914,0.353,0.369,0,0.0534,-0.3102,-0.262,-0.4974,-0.4706,-0.369,-0.3636,-0.3368,-0.2406,-0.2994,-0.2086,-0.032,-0.0428,0.1176,0.2352,0.3744,0.599,0.77,1,0.9626,0.8288,0.8182,0.9304,0.9304,0.9252,0.7808,0.0136,0.59,0.5856,0.545,0.509,0.3018,0.2432,-0.1036,-0.1666,-0.063,-0.1306,-0.1172,-0.1712,-0.009,-0.063,0.0136,-0.063,0.1172,0.0406,0.2478,0.2388,0.4414,0.563,0.8604,0.9054,0.8964,0.8334,1,0.9954,0.9684,0.982,0.9144,-0.152,0.3628,0.3088,0.4558,0.2942,0.0638,-0.1862,-0.4166,-0.4068,-0.3726,-0.3872,-0.4656,-0.4216,-0.3726,-0.1226,-0.1912,-0.1422,-0.147,0.0148,0.1666,0.2352,0.3726,0.5686,0.755,0.9804,1,0.8284,0.8284,0.9118,0.9166,0.9264,0.853,-0.2846,0.155,0.4084,0.5492,0.093,-0.1212,-0.5606,-0.6056,-0.4986,-0.5662,-0.6846,-0.6338,-0.4536,-0.3352,-0.386,-0.3578,-0.369,-0.155,-0.1492,-0.0816,0.014,0.262,0.4366,0.645,0.8986,0.9718,0.8422,0.8478,0.9154,0.955,1,0.876,-0.3956,0.0592,0.6636,0.5826,-0.0156,-0.5576,-0.6262,-0.6386,-0.6636,-0.676,-0.919,-0.6386,-0.6386,-0.7758,-0.7446,-0.5328,-0.4704,-0.5514,-0.6386,-0.2398,-0.1776,-0.0654,0.1838,0.57,0.8068,1,0.7758,0.8442,0.8816,0.9564,0.863,0.6948,-0.4302,0.5252,0.7744,0.448,-0.0148,-0.3946,-0.7626,-0.721,-0.8814,-0.7744,-0.8398,-0.733,-0.6262,-0.7092,-0.727,-0.6558,-0.549,-0.5728,-0.7152,-0.5134,-0.4066,-0.3116,-0.0268,0.3354,0.7982,1,0.7566,0.7152,0.7092,0.7566,0.6618,0.3946,-0.5548,0.721,0.8006,0.6744,0.0034,-0.5416,-0.4418,-0.4286,-0.6212,-0.5814,-0.774,-0.8538,-0.6346,-0.5482,-0.402,-0.3488,-0.3688,-0.515,-0.5216,-0.3888,-0.196,-0.3024,0.0498,0.382,0.927,1,0.6744,0.7142,0.9004,0.8538,0.8074,0.6944,0.0526,0.7894,0.8948,0.5264,0.3684,-0.1052,-0.0526,-0.2632,-0.3158,-0.7894,-0.3158,-0.2106,-0.3684,-0.0526,0,-0.6316,-0.421,-0.1052,-0.2106,0.1052,0.421,0.3158,0.3684,0.2632,0.3158,0.6316,0.579,0.8422,0.8422,1,0.4736,0.5264,-0.0164,0.6394,0.6722,0.3442,0.377,0.0492,0.082,-0.246,-0.377,-0.541,-0.377,-0.4426,-0.377,-0.3442,-0.3442,-0.3114,-0.1476,0.0492,0.1476,0.0164,0.246,0.246,0.6066,0.836,1,0.9344,0.705,0.7704,0.8032,0.8032,0.7704,0.6066,-0.2916,0.2708,0.6458,0.5,0.0624,-0.6042,-0.6666,-0.6042,-0.5834,-0.6042,-0.8124,-0.7708,-0.625,-0.7708,-0.3124,-0.375,-0.5,-0.3334,-0.4792,-0.4166,-0.2708,-0.0624,0.1666,0.5208,0.6458,1,0.875,0.7292,0.75,0.9376,0.8958,0.5834,-1,-1,-1,-1,-0.9718,-0.9728,-0.8222,-0.5592,-0.7632,-0.8558,-0.884,0.6672,0.7298,0.3632,0.1746,0.035,-0.0622,-0.0186,0.0604,0.064,0.0132,-0.3062,-0.5946,-0.6944,-0.8476,-0.9166,-0.9574,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9596,-0.9506,-0.788,-0.1062,-0.0106,-0.2846,-0.6352,0.2856,0.6664,0.7858,0.8302,0.603,0.526,0.393,0.065,-0.1304,-0.2474,-0.411,-0.7062,-0.7712,-0.8272,-0.878,-0.9158,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9434,-0.9134,-0.8168,-0.0734,0.5366,0.5966,0.3266,-0.824,-0.696,-0.484,-0.264,-0.172,-0.236,-0.348,-0.66,-0.9334,-0.9268,-0.8568,-0.8868,-0.5734,-0.3834,-0.21,-0.2268,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7142,-0.0572,1,1,0.9714,0.1714,0.7142,1,1,-0.4286,-0.8572,-0.8286,-0.7714,-0.0858,0.5142,0.0572,-0.8,0.4,0.3714,-0.6,-0.6,-0.5714,-0.3428,-1,-1,-1,-1,-1,-1,-0.0502,-0.0234,0.0496,0.0934,0.1294,0.1944,0.2426,0.247,0.1976,0.003,0.8724,0.9516,1,1,1,1,1,1,1,1,-0.6534,-0.4352,-0.6468,-0.3472,0.6036,0.6832,0.6192,1,-0.0126,-0.0828,-0.0426,-0.168,0.0226,0.0326,0.4186,0.4586,0.639,0.589,0.7944,0.8396,0.8898,0.8546,0.7694,0.6692,0.7394,0.7844,0.8948,0.8046,1,0.985,0.7394,0.6592,0.594,0.7944,0.8146,0.6842,0.574,0.2782,0.2532,-0.1178,-0.5392,-0.341,-0.3364,-0.3594,-0.3272,-0.2534,-0.2304,-0.1336,0.0276,-0.0414,0.2304,0.5944,0.7188,0.7742,0.8802,0.894,0.8986,0.7374,0.8986,0.9494,0.9216,0.7236,0.5806,0.4424,0.4332,0.6406,1,0.811,0.5484,0.636,0.5622,0.2764,-0.406,-0.2822,-0.1782,-0.0842,-0.094,-0.0594,-0.0198,0.0346,0.0248,0.0198,0.2722,0.5694,0.6684,0.7674,0.8812,1,0.6288,0.8218,0.8316,0.995,0.9654,0.8614,0.703,0.6436,0.6534,0.8218,0.9406,0.9158,0.7228,0.7228,0.5792,0.1386,-0.2948,-1,-1,1,-1,-1,-0.8,-0.1,-1,-0.5522,-0.194,0.0598,0.194,-0.1194,-0.0746,0.1344,-0.015,0.1642,0.418,0.418,0.2538,1,0.985,0.2686,0.3432,0.2538,0.1194,0.2986,0.7014,0.582,0.418,0.5672,0.1194,0.2388,0.1044,0.2388,0.0746,-0.1044,0.0896,0,-0.1344,'16'
-0.1682,0.5632,0.591,0.2756,0.2998,0.0018,0.0086,-0.1266,-0.1022,-0.376,-0.234,-0.4072,-0.1924,-0.2512,-0.1126,-0.2132,-0.0468,-0.0434,0.1924,0.1474,0.5356,0.5286,0.8822,0.9098,0.9064,0.9342,0.8856,1,0.9064,0.948,0.8232,0.7574,-0.302,0.2054,0.1812,0.2698,0.2188,0.0684,-0.0014,-0.149,-0.2162,-0.2162,-0.3074,-0.192,-0.2456,-0.31,-0.2752,-0.1892,-0.1114,-0.0524,-0.0308,0.157,0.353,0.5678,0.7558,0.9382,1,0.8658,0.8202,0.906,0.949,0.8684,0.8282,0.8256,-0.3632,-0.021,0.2286,0.3352,0.0322,-0.0996,-0.3744,-0.4278,-0.3884,-0.4194,-0.495,-0.4866,-0.4642,-0.366,-0.31,-0.2678,-0.2566,-0.15,-0.0576,0.0884,0.1472,0.3828,0.6802,0.9298,1,0.9496,0.7392,0.8316,0.9524,0.9382,0.7224,0.7336,-0.4472,0.0798,0.551,0.4508,-0.1058,-0.347,-0.4508,-0.6698,-0.6104,-0.6624,-0.7032,-0.7032,-0.6104,-0.5362,-0.4582,-0.4472,-0.4434,-0.3396,-0.3098,-0.191,-0.0538,0.18,0.5436,0.781,1,0.9036,0.7218,0.6846,0.8218,0.859,0.7142,0.6512,-0.5426,0.368,0.5176,0.3264,-0.081,-0.3472,-0.4594,-0.5718,-0.5926,-0.7464,-0.7588,-0.6174,-0.5676,-0.7838,-0.788,-0.634,-0.634,-0.551,-0.4594,-0.3556,-0.1434,0.0436,0.4346,0.8046,0.946,1,0.7422,0.7838,0.867,0.817,0.709,0.551,-0.5164,0.3004,0.5422,0.4396,-0.1172,-0.3186,-0.381,-0.4286,-0.6008,-0.696,-0.7326,-0.5348,-0.5422,-0.5898,-0.5092,-0.4396,-0.5274,-0.403,-0.3772,-0.249,-0.0402,0.088,0.5018,0.7582,1,0.9964,0.7692,0.7692,0.8644,0.8206,0.5054,0.4212,-0.4272,0.0962,0.2592,-0.0222,-0.2,-0.1556,-0.1654,-0.5358,-0.5852,-0.6396,-0.7728,-0.4124,-0.432,-0.4716,-0.4766,-0.6148,-0.7234,-0.679,-0.3382,-0.274,0.0814,0.1654,0.5556,0.6592,0.8962,1,0.8666,0.8124,0.684,0.3284,0.2346,0.1556,0.1428,0.8286,0.8286,0.2,0.2572,-0.0858,-0.2572,-0.1428,-0.8858,-0.4858,-0.3142,-0.4286,-0.4286,-0.1428,-0.0858,-0.3714,-0.0858,-0.1428,-0.2572,-0.2,0.0858,0.5428,0.6572,0.7714,0.7142,0.8858,0.7714,1,1,1,0.9428,0.7142,-0.0334,0.6,0.6,0.3,0.3334,0.1,0.1666,-0.0666,0.0334,-0.1,-0.0334,-0.1666,-0.1,-0.2666,-0.1334,-0.4,-0.3,-0.0666,0.0334,0.2,0.3666,0.4334,0.7,0.7666,0.6666,0.7,0.7,0.9666,1,1,0.9666,0.7334,-0.4082,-0.102,0.4898,0.4694,-0.1224,-0.3266,-0.4286,-0.796,-0.551,-0.6122,-0.6734,-0.6734,-0.4898,-0.449,-0.4694,-0.3878,-0.3674,-0.3062,-0.1428,-0.1224,0,0.2654,0.5918,0.7756,0.9796,0.9388,0.7756,0.8776,0.9184,1,0.7142,0.6938,-1,-1,-0.9702,-0.971,-0.9688,-0.9688,-0.9122,0.1568,0.713,-0.6126,-0.803,0.6714,0.7836,0.351,0.2364,0.5636,0.7866,0.4542,-0.0356,-0.2342,-0.5182,-0.7458,-0.881,-0.948,-0.9472,-0.9048,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9896,-0.9878,-0.9886,-0.9882,-0.9728,-0.6814,-0.5124,-0.7622,-0.8428,-0.5098,0.6162,0.9128,0.7252,0.2454,-0.3242,-0.481,-0.6116,-0.7312,-0.8506,-0.9216,-0.9666,-0.9814,-0.9808,-0.9724,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8244,-0.7668,-0.8468,-0.7934,-0.7634,-0.8368,-0.7268,0.4066,0.0232,-0.7116,-0.2086,0.095,0.205,0.0774,-0.3326,-0.4626,-0.3326,-0.495,-0.4776,-0.495,-0.7068,-0.5768,-0.73,-0.7468,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3428,-1,-1,-0.8858,1,1,1,-0.3142,-0.0572,1,1,-0.7142,-0.8286,-0.4286,-0.3714,-0.6286,-0.4,-0.5714,0.2572,1,1,-0.8858,-0.8286,-0.1428,-1,-1,-1,-1,-1,-1,-1,-0.028,0.0272,0.0776,0.152,0.1842,0.2526,0.307,0.3556,0.2526,0.1896,0.9192,0.9518,1,1,1,1,1,1,1,1,-0.4534,-0.1058,-0.8426,-0.808,-0.4588,-0.2778,0.6178,1,0.5678,0.1912,0.1024,-0.108,-0.1468,0.0858,0.374,0.3074,0.518,0.5014,0.6344,0.9058,0.867,0.7674,0.5568,0.5956,0.6842,0.6344,0.6676,0.8614,1,0.9446,0.7286,0.7784,0.6066,0.5734,0.6454,0.651,0.6732,0.446,0.3796,-0.0084,-0.0678,-0.0782,-0.2188,-0.2916,-0.3178,-0.3072,-0.0678,-0.2656,-0.0468,0.0782,0.3854,0.8072,0.6718,0.7552,0.75,0.5052,0.6146,0.6822,0.6822,0.7344,1,0.8958,0.823,0.776,0.7812,0.5104,0.6406,0.5834,0.5782,0.573,0.3854,0.1146,-0.265,-0.25,-0.25,-0.29,-0.28,-0.485,-0.195,-0.265,-0.04,-0.005,0.21,0.63,0.73,0.88,0.915,0.925,0.65,0.8,0.92,0.88,0.96,0.92,0.805,1,0.705,0.645,0.525,0.455,0.53,0.485,0.575,0.32,-0.4562,-1,-1,1,-1,-1,-1,-0.1666,-1,-0.2094,0.4186,0.372,1,0.6744,0.6976,0.6046,0.9534,0.4418,0.5814,0.5582,0.6976,0.8372,0.9768,0.3488,0.4884,0.7674,0.7906,0.8604,0.7442,0.628,0.907,0.6046,0.5582,0.5348,0.5582,0.5116,0.0232,0.1628,0.6744,0.1162,-0.1162,'16'
0,0.8412,0.836,0.5344,0.4974,0.053,0.0794,-0.217,-0.0846,-0.3756,-0.418,-0.2592,-0.1904,0.053,0.0582,0.0846,0.217,0.4022,0.4074,0.6614,0.8096,0.963,1,0.963,0.8412,0.6772,0.7142,0.4708,0.4974,0.4708,0.418,0.5292,0.0596,0.7088,0.6372,1,0.8378,0.4176,0.1742,0.0836,-0.2124,-0.2268,-0.475,-0.2028,0.1122,0.1264,0.2268,0.4892,0.7422,0.8758,0.9428,0.8998,0.6516,0.58,0.6946,0.852,0.642,0.5226,0.3508,-0.0024,0.0262,0.1026,0.117,0.2458,-0.239,0.2064,0.9118,1,0.3782,0.0162,-0.3596,-0.2854,-0.341,-0.4942,-0.2762,-0.0208,-0.0348,0.225,0.652,0.7216,0.6056,0.3364,0.2344,0.044,-0.0534,0.1554,0.3922,0.4942,0.2762,-0.1136,-0.304,-0.4988,-0.471,-0.6334,-0.457,-0.304,-0.3012,0.5228,1,0.858,0.6704,0.034,-0.1306,-0.1648,-0.2898,-0.2046,-0.0796,0.2444,0.6194,0.733,0.5682,-0.0228,-0.2272,-0.3694,-0.5738,-0.5,-0.341,-0.1818,0.25,0.625,0.6194,-0.0454,-0.2898,-0.534,-0.5512,-0.7272,-0.392,-0.4034,-0.4214,0.5898,0.8202,1,0.5618,-0.0786,0.0056,-0.118,-0.1068,0.1292,0.4776,0.6404,0.6124,-0.118,-0.1012,-0.4776,-0.4832,-0.7078,-0.528,-0.6068,-0.545,-0.5674,-0.191,0.2304,-0.0674,-0.2472,-0.7416,-0.8652,-0.8988,-0.9888,-0.7866,-0.8258,-0.492,0.5492,1,0.9746,0.6444,0.0666,-0.1174,-0.1174,0.0032,0.4286,0.473,0.2698,0.0666,-0.0412,-0.3904,-0.4032,-0.5048,-0.5238,-0.6318,-0.4794,-0.2064,-0.3334,-0.365,-0.0412,-0.0604,-0.0096,-0.3206,-0.765,-0.5746,-0.5302,-0.5936,-0.5746,-0.3572,0.6,1,0.8714,0.4928,0.1786,0.2572,0.3928,0.75,0.5572,-0.0286,-0.1358,-0.0358,-0.25,-0.1214,-0.2286,-0.1,-0.1714,-0.3358,-0.3358,-0.1572,-0.2928,-0.2358,0.2142,0.2428,0.0358,-0.2928,-0.4928,-0.4,-0.3786,-0.3214,-0.4072,-0.0624,0.75,0.6876,0.3124,0.3124,-0.0624,-0.25,0.0624,0.25,-0.1876,-0.875,-0.1876,0.125,-0.125,0.125,0.125,0.3124,0.375,0.375,0.25,0.9376,0.9376,0.9376,0.8124,0.5624,0.25,1,0.75,0.75,0.75,0.5,0.625,-0.0666,0.7778,0.8666,0.2888,0.3778,0.0666,-0.0222,-0.2888,-0.1112,-0.1556,-0.1112,-0.1112,-0.1556,-0.2,-0.2,-0.1112,0.1556,0.2,-0.0222,0.6,0.8666,0.7778,0.8666,1,0.6888,0.5556,0.3778,0.4666,0.4666,0.2444,0.2888,0.3334,-0.1884,0.6522,1,0.913,0.7682,0.1304,-0.0724,-0.1304,-0.0144,0.0144,0.1304,0.4202,0.826,0.855,0.5942,-0.0144,-0.2754,-0.1594,-0.1594,-0.5362,-0.1884,-0.2174,0.4782,0.7972,0.6522,-0.0144,-0.0434,-0.5072,-0.7102,-0.3334,-0.3334,-0.3914,-0.9756,-0.9698,-0.9714,-0.9672,-0.9522,-0.9112,-0.9514,-0.9304,-0.907,-0.9144,-0.9212,0.398,0.4298,0.3316,0.7594,0.86,0.4256,0.4498,0.2068,-0.3082,-0.4406,-0.6026,-0.8156,-0.9028,-0.9472,-0.969,-0.9556,-1,-1,-1,-1,-1,-1,-0.9498,-0.9486,-0.9486,-0.7802,-0.2154,0.5296,0.264,0.3404,1,-0.1016,-0.395,0.4342,0.788,0.4454,0.7886,0.7272,0.3666,0.3058,0.0998,-0.4352,-0.568,-0.6724,-0.836,-0.8744,-0.913,-0.9358,-0.9376,-1,-1,-1,-1,-1,-1,-0.78,-0.8468,-0.8,-0.8368,0.34,0.9732,1,0.9132,0.92,0.73,0.6432,-0.6034,-0.5834,-0.64,-0.843,-0.8572,-0.9316,-0.94,-0.9286,-0.8886,-0.92,-0.9116,-0.8934,-0.7968,-0.7234,-0.6668,-0.7268,-1,-1,-1,-1,-1,-1,-1,-1,-0.6572,1,1,1,-0.9142,-0.8,-0.6,0.8286,1,1,0.6,-0.3714,-0.5428,-0.4286,0.3142,0.2,-0.3428,0,-0.1714,-0.6,-0.5428,-0.7428,-0.7714,-0.8,-0.8572,-1,-1,-1,-1,-1,-1,-0.0202,0.0262,0.0628,0.1012,0.1576,0.2128,0.248,0.2352,0.2434,0.3342,0.6988,0.69,0.674,0.6396,0.6198,0.5332,0.4068,0.1516,-0.1428,-0.2994,-0.36,-0.2352,-0.4972,-0.538,0.8498,0.9994,0.7472,-0.3666,-0.8288,-0.5994,-0.4776,-0.3702,-0.4252,-0.3062,-0.2424,-0.286,-0.2076,-0.1262,-0.0304,0.0654,0.3642,0.5558,0.5384,0.6458,0.6342,0.6256,0.6662,0.762,0.9912,1,0.6806,0.5442,0.5878,0.6256,0.7214,0.6342,0.524,0.5558,0.431,0.2308,-0.8054,-0.543,-0.4864,-0.3734,-0.38,-0.2602,-0.267,-0.1628,-0.1244,-0.1132,0.0678,0.1516,0.276,0.5542,0.4774,0.4502,0.595,0.6516,0.595,0.7714,1,0.9706,0.871,0.6562,0.7308,0.7534,0.543,0.6086,0.5136,0.5316,0.604,0.4864,-0.7508,-0.4154,-0.4986,-0.5244,-0.447,-0.3468,-0.318,-0.2234,-0.1806,-0.0372,0.321,0.4556,0.5702,0.6218,0.4442,0.5932,0.6906,0.8796,0.8654,0.6962,1,0.9742,0.8826,0.5386,0.619,0.7364,0.6504,0.5932,0.5644,0.447,0.467,0.3238,1,-1,1,-1,-1,-1,-1,0.4666,-1,0.129,0.371,0.9032,0.8548,0.613,0.6936,0.8548,1,0.7742,0.6936,0.9194,0.8064,0.871,0.8226,0.7904,0.8226,0.7258,0.742,0.6774,0.6936,0.5484,0.7258,0.5646,0.7742,0.5322,0.6612,0.5646,0.3226,0.4032,0.4194,0.258,-0.3388,'17'
-0.1526,0.4488,0.4608,0.28,0.286,0.0222,-0.0014,-0.1526,-0.123,-0.2592,-0.2592,-0.1526,-0.1348,-0.12,-0.0726,0.0814,0.126,0.274,0.4578,0.6918,0.837,0.9378,0.9586,1,0.9556,0.6948,0.5912,0.5438,0.4786,0.4992,0.5348,0.7038,-0.2788,0.2018,0.1526,0.4238,0.2728,-0.0232,-0.2882,-0.2696,-0.285,-0.2666,-0.3744,-0.362,-0.3128,-0.171,0.017,0.1032,0.393,0.6056,0.701,0.658,0.7412,0.772,0.9476,1,0.8552,0.5624,0.4176,0.396,0.2882,0.3282,0.4822,0.55,-0.3388,0.1984,0.8966,0.9338,0.3884,0.0248,-0.0414,-0.281,-0.2108,-0.1694,-0.124,-0.0662,0.124,0.4008,0.6364,0.8388,0.7892,0.6074,0.3678,0.2976,0.467,0.5826,0.8678,1,0.8884,0.438,0.2852,0.2148,0.1446,0.1942,0.372,0.5786,-0.3512,0.6,1,0.7804,0.7024,0.3268,-0.1952,-0.044,-0.0878,-0.1122,-0.0244,0.2196,0.7854,0.8634,0.517,0.3122,0.1952,-0.0634,-0.1366,-0.156,-0.083,0.2146,0.483,0.7318,0.6682,0.1902,0.0342,0,0.0146,0.0682,0.0878,0,-0.4568,0.6954,0.9036,1,0.599,0.203,0.0102,-0.2182,-0.2182,-0.0204,0.1676,0.3554,0.2994,0.0254,-0.269,-0.401,-0.472,-0.533,-0.6294,-0.7412,-0.4874,-0.4366,-0.005,0.1574,-0.0812,-0.396,-0.4772,-0.5838,-0.5888,-0.5228,-0.6192,-0.8934,-0.4044,0.4914,1,0.9826,0.474,0.2826,0.1522,0.0826,0.2522,0.3914,0.4478,0.2434,-0.0956,-0.2392,-0.374,-0.3956,-0.5348,-0.5566,-0.5914,-0.5174,-0.4478,-0.3652,0.0956,0.0782,-0.0392,-0.087,-0.2782,-0.4044,-0.5696,-0.626,-0.6478,-0.713,-0.2786,0.5832,1,0.8736,0.3584,0.1148,0.1616,0.438,0.5222,0.2318,-0.1242,-0.096,-0.2318,-0.3442,-0.068,-0.185,-0.2272,-0.3022,-0.48,-0.48,-0.3114,-0.2646,-0.1008,-0.1054,-0.3302,-0.2272,-0.377,-0.5878,-0.438,-0.616,-0.4988,-0.3536,-0.25,0.65,0.75,0.25,0.1,-0.15,-0.5,-0.25,-0.25,-0.35,-0.45,-0.55,-0.3,-0.25,-0.05,-0.05,0,0.15,0.25,0.65,0.8,0.75,0.95,1,0.7,0.75,0.8,0.45,0.35,0.25,0.1,0.35,-0.3104,0.2758,0.3104,0.138,0.1034,-0.1724,-0.1724,-0.4138,-0.2758,-0.5862,-0.5172,-0.3448,-0.3104,-0.2068,-0.1034,-0.0344,0.069,0.1724,0.3794,0.4482,0.8276,0.6552,1,0.8966,0.862,0.8276,0.5862,0.5518,0.4828,0.5172,0.5862,0.6552,-0.2572,0.7142,1,0.9142,0.8286,0.4,0,0.1428,-0.0286,-0.0858,0.1428,0.4,0.8572,0.7142,0.3714,0.1428,-0.0572,-0.2,-0.5714,-0.1428,-0.0858,0.0572,0.4,0.3714,0.2572,0.1714,0.2,-0.2858,-0.0286,-0.1142,-0.1142,-0.1714,-0.9574,-0.9574,-0.9646,-0.973,-0.9502,-0.919,-0.9532,-0.9418,-0.9148,-0.922,-0.8556,0.8638,0.4668,0.2786,0.5136,0.842,0.5498,0.605,0.4854,0.1268,-0.213,-0.3472,-0.6684,-0.8482,-0.9502,-0.9512,-0.945,-1,-1,-1,-1,-1,-1,-0.9752,-0.9274,-0.9738,-0.9758,-0.7894,-0.5398,-0.3282,-0.4168,-0.3336,-0.5536,-0.7758,0.2046,0.8786,0.1556,-0.113,-0.2646,-0.3742,-0.4606,-0.519,-0.647,-0.7658,-0.7928,-0.881,-0.9414,-0.9592,-0.9648,-0.9688,-1,-1,-1,-1,-1,-1,-0.8668,-0.6834,-0.7768,-0.84,-0.6068,0.7266,0.9432,0.9866,0.8666,1,0.5932,-0.4916,-0.0944,-0.1426,-0.48,-0.83,-0.92,-0.955,-0.885,-0.935,-0.955,-0.96,-0.9768,-0.8434,-0.5368,-0.64,-0.8,-1,-1,-1,-1,-1,-1,-0.3714,-0.1428,-0.4,0.6286,1,1,0.1142,-0.9428,-0.8572,0.8286,1,1,0.5428,-0.2572,0.2858,-0.1142,0.3142,0.3428,-0.7428,-0.6858,-0.6572,-0.7428,-0.7142,-0.8286,-0.8,-1,-0.1142,-1,-1,-1,-1,-1,-1,0.18,0.2266,0.2486,0.2828,0.3122,0.3354,0.3312,0.3158,0.3422,0.3722,0.9106,0.9096,0.8878,0.852,0.8212,0.795,0.7484,0.6288,0.2952,-0.0602,-0.3734,-0.1058,-0.8006,-0.496,0.3926,0.561,0.9598,0.7584,-0.8906,-0.6028,-0.5626,-0.3986,-0.364,-0.2978,-0.2432,-0.177,-0.1856,-0.1942,-0.0302,0.1972,0.3438,0.551,0.5972,0.7382,0.5108,0.5108,0.7238,0.7468,0.767,0.9424,1,0.7526,0.7064,0.623,0.767,0.6604,0.459,0.459,0.3756,0.1568,-0.8962,-0.495,-0.4558,-0.4166,-0.2062,-0.3688,-0.338,-0.195,-0.1192,-0.066,-0.0744,0.2006,0.3268,0.5456,0.8092,0.6746,0.7026,0.5708,0.7026,0.9636,1,0.9804,0.9692,0.843,0.8204,0.8092,0.7952,0.7026,0.6662,0.6578,0.5792,0.4054,-0.7578,-0.5712,-0.4534,-0.4762,-0.46,-0.3716,-0.2504,-0.3388,-0.2406,-0.1686,0.2308,0.3356,0.4436,0.4436,0.5188,0.509,0.5188,0.3748,0.4436,0.6988,0.7708,1,0.6792,0.7938,0.689,0.6924,0.689,0.5058,0.3356,0.3126,0.3846,0.1784,0.1288,-1,-1,1,-1,-1,-1,0.3,-1,0,0.5358,0.375,0.7678,0.75,0.9108,0.9464,0.7678,0.9464,1,0.8392,0.8214,0.4822,0.5714,1,0.7142,0.4822,0.6786,0.6428,0.9108,0.875,0.6608,0.6428,0.4286,0.5536,0.5,0.5358,0.5358,0.5536,0.5358,0.5,-0.0178,'17'
-0.4654,-0.2364,0.0486,0.1146,0.2694,0.6346,0.8864,0.9504,1,0.8452,0.7874,0.616,0.4262,0.4344,0.1724,-0.0154,-0.03,-0.0816,-0.1744,-0.228,-0.1826,-0.1062,0.1352,0.2302,0.0608,-0.1042,-0.1496,-0.0546,0.0278,0.0712,0.2116,0.2012,-0.4748,-0.2524,0.1102,0.0998,0.3924,0.6642,0.9546,0.9608,0.9464,1,0.963,0.5262,0.6622,0.5756,0.2214,0.2502,0.1556,0.1906,0.1556,0.1534,0.347,0.3676,0.1884,0.0792,-0.1308,-0.174,-0.2234,-0.1616,-0.0402,-0.0216,0.1926,0.17,-0.4892,-0.2824,0.1128,0.0734,0.4706,0.6628,0.9234,0.8862,0.758,1,0.911,0.7518,0.636,0.4788,0.3382,0.3174,0.3982,0.4664,0.5284,0.27,0.0942,-0.1004,-0.5098,-0.5492,-0.6216,-0.6008,-0.5884,-0.4374,-0.423,-0.3548,-0.0796,-0.0652,-0.4606,-0.1878,0.1564,0.1668,0.66,0.7734,0.9832,0.8614,0.7796,0.8572,0.9958,0.9622,1,0.7208,0.6054,0.5908,0.6852,0.2738,0.1416,-0.2088,-0.5048,-0.5844,-0.8196,-0.8006,-0.788,-0.767,-0.7922,-0.767,-0.7398,-0.6138,-0.5194,-0.257,-0.5332,-0.1126,0.083,0.2514,0.7056,0.733,0.7876,0.5478,0.55,0.5752,0.7624,0.8676,1,0.9832,0.838,0.6088,0.308,-0.0262,-0.3796,-0.4764,-0.6992,-0.7686,-0.7644,-0.7876,-0.672,-0.8422,-0.7498,-0.7182,-0.7246,-0.6278,-0.4154,-0.0494,-0.6276,-0.1852,0,0.2484,0.596,0.614,0.526,0.3048,0.1534,0.3116,0.4446,0.833,0.9978,1,0.8532,0.5372,0.0452,-0.3364,-0.3996,-0.596,-0.675,-0.7246,-0.7766,-0.5778,-0.6434,-0.7878,-0.8714,-0.7924,-0.7562,-0.6546,-0.6388,-0.325,-0.4922,-0.2032,-0.1016,0.1016,0.3256,0.388,0.3178,0.1068,0.052,0.0652,0.3152,0.7448,0.9322,1,0.8152,0.5208,0.026,-0.3124,-0.5234,-0.6928,-0.6198,-0.7318,-0.7786,-0.6692,-0.5912,-0.5104,-0.5756,-0.7318,-0.7266,-0.875,-0.7474,-0.3334,-0.451,-0.255,0.0196,0.1372,0.4118,0.6862,0.9608,1,1,0.8824,0.7254,0.7254,0.6862,0.4902,0.255,0.098,0.0196,0.0196,-0.0196,-0.0196,0.098,0.1372,0.255,0.3334,0.255,0.098,0.0196,0.0588,0.098,0.0588,0.098,0.1372,-0.5,-0.125,0,0.1666,0.375,0.625,0.9166,0.9584,1,0.875,0.75,0.6666,0.4584,0.4584,0.1666,0.0834,0.0416,0.0416,-0.0416,-0.0834,0,0.0416,0.2916,0.4584,0.1666,0.125,-0.2084,-0.25,-0.0416,0.125,0.25,0.2084,-0.4584,-0.2708,0.1458,0.0834,0.5208,0.7292,0.9166,0.875,0.7708,1,0.9166,0.8124,0.6666,0.5,0.375,0.4166,0.5208,0.7084,0.6876,0.2916,-0.0208,-0.125,-0.5834,-0.6042,-0.5624,-0.5208,-0.5416,-0.3958,-0.3542,-0.2916,-0.0624,0.0416,-1,-1,-1,-1,-1,-1,-0.9614,-0.9674,-0.9686,-0.9726,-0.3622,0.354,0.5846,0.8974,0.9564,0.9168,0.9268,0.7826,0.5378,0.0502,-0.2738,-0.5784,-0.8314,-0.8782,-0.9542,-0.9432,-0.9542,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9852,-0.986,-0.9876,-0.9876,-0.3888,0.2318,0.3726,0.8282,0.8434,0.755,0.5728,0.1194,-0.077,-0.4412,-0.7018,-0.7868,-0.897,-0.9062,-0.9202,-0.9392,-0.9468,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.87,-0.69,-0.6734,-0.8,-0.6334,-0.6308,-0.6248,-0.6154,-0.66,-0.62,-0.6232,-0.654,-0.7694,-0.8494,-0.8232,-0.833,-0.8434,-0.7834,-0.5334,-0.42,-0.19,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,-0.9714,1,1,1,-0.2286,0,-0.5428,-0.3714,-0.6572,-0.8572,-0.5428,-0.5428,-0.8858,-0.6,-0.8,-0.3142,-0.2858,-0.7142,-0.5142,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.8444,-0.8476,-0.9172,-0.9304,-0.9894,-1,-1,-1,-1,-1,-0.4134,0.5764,-0.198,0.1786,0.267,0.3006,0.2352,1,0.2558,0.4418,0.721,1,0.9534,0.907,0.814,0.907,0.3954,0.3488,0.2094,0.4418,0.907,0.907,0.6744,0.5814,0.4418,0.2558,0.2558,0.3024,0.3954,0.0698,0.3024,0.2558,0.1628,0.1162,0.6744,0.5348,0.4884,0.4418,0.2094,-0.3024,0.0328,0.2132,0.623,1,0.9508,0.7378,0.5902,0.3606,0.246,0.246,0.1804,0.0492,0.3442,0.377,0.2132,0.1968,0.2132,0.3278,0.2622,0.2622,0.4262,0.5574,0.4098,-0.0328,0.2622,0.2622,0.5574,0.5902,0.295,0.3114,0.0656,-0.295,-0.0158,0.2222,0.6032,1,1,0.8254,0.746,0.238,0.2064,0.254,0.3016,0.2698,0.3492,0.254,0.2222,0.254,0.2222,0.2064,0.2222,0.2698,0.381,0.5556,0.2858,-0.1746,0.365,0.365,0.381,0.381,0.254,0.365,0.127,-0.2222,0.1822,-1,-1,1,-0.8,-1,-1,-0.8334,-1,-0.3774,-0.192,-0.086,0.3774,0.4304,0.2716,0.6688,0.7484,0.6822,0.4966,0.298,0.2186,0.298,0.3112,0.4172,0.7086,0.9338,0.7218,0.9736,1,0.4966,0.1788,0.2318,0.1788,0.4702,0.6158,0.6424,0.9602,0.8146,0.4438,0.0994,-0.2186,'18'
-0.4606,-0.222,0.0104,0.002,0.1702,0.6078,0.8216,0.9896,1,0.9606,0.7302,0.556,0.4294,0.2676,0.1742,0.029,-0.0664,-0.1162,-0.1038,-0.0892,-0.1308,-0.058,0.11,0.2096,0.3278,0.2946,0.2158,0.0684,0.1142,0.1536,0.1764,0.2676,-0.4604,-0.2578,-0.027,-0.027,0.2196,0.5046,0.7874,0.8556,1,0.8816,0.7874,0.647,0.4122,0.2958,0.0952,-0.0692,-0.2036,-0.2418,-0.1836,-0.0952,0.0992,0.2256,0.356,0.2778,0.2818,0.1374,0.031,0.0492,0.1374,0.338,0.35,0.3782,-0.4482,-0.2318,0.0464,-0.0066,0.3842,0.5452,0.8896,0.841,0.9072,1,0.83,0.819,0.6114,0.245,0.0464,0.0442,-0.0354,-0.0044,-0.0286,0.0176,-0.139,-0.256,-0.3708,-0.415,-0.6158,-0.8168,-0.7992,-0.755,-0.5166,-0.4504,-0.212,0.0442,-0.3412,-0.04,0.1788,0.1874,0.6078,0.8094,0.9804,0.9826,0.8374,0.9046,1,0.9826,0.8158,0.5732,0.4366,0.3304,0.3586,0.2134,-0.0552,-0.2394,-0.4128,-0.4994,-0.7682,-0.7724,-0.8244,-0.9696,-0.9696,-0.8396,-0.4648,-0.1874,-0.0336,0.0076,-0.4978,-0.0788,0.0234,0.0788,0.4404,0.7362,0.9276,0.8212,0.5852,0.6744,0.868,0.9788,1,0.8724,0.7638,0.5426,0.2596,-0.2,-0.3618,-0.5596,-0.6042,-0.6978,-0.832,-0.8554,-0.8234,-0.8808,-0.8766,-0.5148,-0.3468,-0.2022,-0.1894,-0.0106,-0.6042,-0.1708,-0.1208,0.0416,0.598,0.7624,0.7624,0.5124,0.2146,0.473,0.6812,0.9708,1,0.8292,0.8354,0.5146,-0.0624,-0.175,-0.427,-0.577,-0.6876,-0.7354,-0.6938,-0.8,-0.7792,-0.8374,-0.7958,-0.4124,-0.3812,-0.3896,-0.2104,-0.0708,-0.557,-0.2064,-0.1142,0.075,0.451,0.5732,0.5018,0.3218,0.2456,0.2734,0.5224,0.887,1,0.9608,0.8178,0.3886,-0.045,-0.2802,-0.4326,-0.5756,-0.5618,-0.6608,-0.7832,-0.8086,-0.7394,-0.7762,-0.8316,-0.7162,-0.4372,-0.4372,-0.564,-0.3494,-0.5472,-0.1698,-0.0944,-0.0944,0.2452,0.4716,0.6982,0.9246,1,0.8114,0.585,0.434,0.3208,0.1698,-0.0188,-0.0944,-0.0944,-0.0944,-0.132,-0.132,-0.132,-0.0944,0.0566,0.132,0.4716,0.4716,0.3208,0.2452,0.132,0.132,0.132,-0.0944,-0.4902,-0.2156,-0.0196,0.0588,0.1764,0.6078,0.7254,1,0.9608,0.9216,0.6862,0.4902,0.451,0.255,0.1372,0.0196,-0.1372,-0.255,-0.1764,-0.2156,-0.255,-0.098,0.1372,0.1372,0.4118,0.451,0.4118,0.2156,0.2156,0.255,0.1764,0.1372,-0.4348,-0.2174,0.0652,0.0218,0.413,0.6086,0.8914,0.8478,0.8478,1,0.826,0.7826,0.6086,0.3914,-0.0434,0,-0.2174,-0.1086,0.0218,0.1086,-0.3044,-0.3914,-0.4348,-0.3696,-0.6956,-0.8696,-0.9348,-0.9782,-0.6522,-0.7392,-0.8044,-0.087,-1,-1,-1,-1,-1,-1,-1,-1,-0.983,-0.9794,-0.3398,0.3494,0.4616,0.6126,0.4938,0.857,0.9534,0.698,0.2568,-0.1434,-0.292,-0.5428,-0.7496,-0.8964,-0.9314,-0.9546,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.992,-0.9918,-0.1806,0.1926,0.4954,0.723,0.438,0.3698,0.2982,0.2164,-0.0986,-0.4622,-0.5376,-0.7764,-0.8108,-0.9354,-0.9058,-0.9156,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9134,-0.9268,-0.8034,-0.7918,-0.7968,-0.8518,-0.88,-0.8508,-0.8694,-0.8478,-0.8478,-0.8648,-0.8062,-0.7862,-0.75,-0.6434,-0.5868,-0.5668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,-0.0572,-0.3142,-0.3142,-0.2,-0.4858,-0.5714,-0.6572,-0.7428,-0.7142,-0.8,-0.4572,-0.6858,-0.5142,-0.5142,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.3362,-0.2344,-0.2856,-0.272,-0.2316,-0.1676,-0.1912,-0.4088,-0.8172,-1,-0.3334,0.5176,0.109,0.187,0.1276,0.122,0.2864,1,0.1334,0.2334,0.5,0.9,1,1,0.8334,0.6666,0.5334,0.5,0.4334,0.6334,0.7666,0.8,0.7,0.7334,0.7666,0.7334,0.6,0.6,0.6666,0.5666,0.4334,0.5666,0.8334,0.9,0.9,0.7666,0.6666,0.4,0.0334,-0.5334,0.1448,0.2236,0.579,0.9078,1,0.8684,0.6578,0.4868,0.3948,0.3948,0.3684,0.5922,0.7764,0.829,0.6974,0.7894,0.8158,0.8422,0.7632,0.8948,0.9342,0.6974,0.329,0.3422,0.5132,0.6448,0.5526,0.4868,0.5,0.0526,-0.1052,-0.75,0.087,0.2898,0.5942,0.9276,1,0.8696,0.5508,0.4348,0.2608,0.2898,0.3624,0.4202,0.7972,0.7246,0.5652,0.5798,0.7536,0.6956,0.5942,0.6956,0.884,0.6812,0.5942,0.6232,0.5072,0.6666,0.6666,0.3624,0.3044,0.3188,-0.145,-0.3624,0.7672,-1,-1,1,-0.8,-1,-1,-0.8334,-1,-0.4286,-0.3168,0.2546,0.2796,0.3788,0.6024,0.7392,0.913,0.9752,0.5528,0.3044,0.205,0.0434,-0.0062,0.205,0.7392,1,0.764,0.9628,0.8634,0.4038,0.4038,0.292,-0.0808,0.1304,0.7516,0.7018,0.6894,0.4038,0.1678,0.0684,-0.1056,'18'
-0.3082,0.0828,0.2706,0.3308,0.827,0.8422,1,0.6466,-0.015,0.1428,0.0602,0.1654,0.2782,0.2706,0.0526,0.3308,0.4436,0.5038,0.6616,0.8572,0.6766,0.4736,0.9172,0.797,0.782,0.8948,0.9474,0.7218,0.7068,0.2932,0.5488,0.5714,-0.2868,0.0588,0.25,0.2868,0.6764,0.8456,1,0.7206,0.4412,0.3088,0.228,0.2794,0.4486,0.375,0.1912,0.4926,0.4852,0.6838,0.7352,0.7648,0.5,0.353,0.2794,0.5294,0.6618,0.6764,0.4926,0.5662,0.3602,0.3456,0.3236,0.2058,-0.3026,0.084,0.2184,0.2436,0.437,0.8572,0.874,1,0.8404,0.479,0.1512,0.2016,0.3446,0.437,0.4118,0.5378,0.6806,0.7058,0.9664,0.7478,0.7648,0.5966,0.4958,0.3866,0.874,0.8656,0.9328,0.7058,0.3866,0.3278,0.3866,0.4202,-0.3388,-0.0612,0.0776,0.0368,0.2408,0.6408,0.8938,1,0.5346,0.1266,-0.0938,0.0612,0.0612,0.0858,0.2734,0.4938,0.6244,0.7796,0.6082,0.4204,0.3714,0.3062,0.502,0.4286,0.5428,0.747,0.6082,0.3878,0.151,0.1102,0.2082,0.102,-0.3472,-0.113,0.0712,0.0628,0.5314,0.7574,1,0.933,0.4728,0.5062,0.2804,0.0878,-0.113,0.0126,0.0042,0.1966,0.3556,0.6652,0.5648,0.1298,0.2636,0.18,0.205,0.1214,0.297,0.2552,0.3138,0.1716,0.046,0.0292,-0.1966,-0.0376,-0.3784,-0.1442,0.1442,0.1172,0.7298,0.8738,1,0.6216,0.5046,0.2882,0.1982,0.2792,0.2522,0.081,0.099,0.4234,0.5136,0.4234,0.3964,-0.045,0.063,0.1622,0.2612,0.2972,0.7388,0.8018,0.6756,0.3154,0.036,0,-0.2342,-0.3154,-0.3744,-0.1692,-0.0666,0.0564,0.4358,0.4666,0.3948,0.4052,0.2718,0.1282,-0.1898,-0.0564,0.1488,0.241,0.5488,0.4358,0.4666,0.2616,0.0872,0.159,-0.0462,0.0052,0.2308,0.4256,0.641,1,0.8256,0.4256,0.2308,0.0666,-0.4462,-0.241,-0.283,0.0566,0.1698,0.3584,0.6226,0.7736,0.849,0.5094,0.0566,0.0566,0.0944,0.0944,0.0944,0.0944,0.0944,-0.2076,-0.0944,0.283,0.7358,0.7736,0.6982,0.7358,0.8868,0.8868,1,0.9622,0.7736,0.434,0.585,0.4716,0.3962,0.3208,-0.3334,0.0952,0.2858,0.5238,0.8572,0.762,1,0.8096,-0.0476,0.1428,0.1904,0.1904,0.238,0.238,-0.0476,0.381,0.5714,0.5714,0.619,0.7142,0.4286,0.381,0.8572,0.9048,0.4762,0.762,0.9524,0.8572,0.762,0.1904,0.5238,0.619,-0.325,-0.1,0.1,0.1,0.575,0.8,1,0.95,0.525,0.575,0.35,0.4,0.05,0.275,0.225,0.2,0.2,0.65,0.675,0.375,0.45,0.25,0.35,0.175,0.275,0.2,0.225,0.35,0.175,0.075,-0.125,-0.075,-1,-1,-1,-1,-1,-1,-0.9434,-0.957,-0.9422,-0.961,-0.0336,0.8156,0.9112,0.969,0.8506,0.6594,0.436,0.2692,0.3728,0.4482,0.288,-0.2948,-0.7308,-0.8722,-0.9152,-0.9232,-0.9368,-0.9368,-0.9394,-0.9448,-0.9434,-0.9138,-0.9206,-1,-1,-1,-1,-1,-1,-0.9734,-0.974,-0.9694,-0.9764,-0.1452,0.7134,0.294,0.304,0.3144,0.2258,0.077,0.007,-0.081,-0.0146,-0.2396,-0.644,-0.736,-0.395,-0.1936,-0.1692,-0.0368,-0.0404,-0.2192,-0.0844,-0.1976,-0.099,-0.1182,-1,-1,-1,-1,-1,-1,-0.8134,-0.6534,-0.6468,-0.7434,-0.4634,-0.5334,-0.62,-0.71,-0.445,-0.575,-0.585,-0.525,-0.625,-0.625,-0.575,-0.5,-0.04,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-0.8858,-1,-1,1,1,1,-0.2,-0.6286,-0.8572,-0.7714,-0.7142,-0.5428,-0.4572,-0.4286,-0.0858,0.0286,1,1,-0.1142,-0.6,-0.8858,-0.9428,-0.9428,-0.9714,-0.9714,-1,-0.8858,1,1,1,1,1,1,1,1,1,1,0.626,0.626,0.5874,0.554,0.5024,0.4662,0.3832,0.271,0.264,0.1498,-0.5066,-0.6236,-0.0264,0.9176,0.3256,0.3026,0.3096,1,-0.1724,0.2068,0.4482,0.5518,0.4482,0.0344,0.3794,0.4482,0.5172,0.6206,0.7586,0.862,0.8276,1,0.7932,0.6552,0.7242,0.9656,0.9656,0.862,0.5862,0.3794,0.3448,0.2758,0.3448,0.138,0.2414,0.138,-0.138,-0.0344,-0.138,-0.5172,0.219,0.3714,0.8666,0.7904,0.5048,0.0286,0.5048,0.562,0.4476,0.7904,0.7334,0.7142,0.7714,1,0.8096,0.7334,0.6762,0.8096,0.7524,0.562,0.562,0.3524,0.238,0.162,0.3714,0.3714,0.3904,0.4096,0.0858,-0.219,-0.0666,-0.2572,0.0862,0.3276,0.8276,0.8448,0.4138,0.362,0.4656,0.5344,0.7242,0.9828,0.9482,0.6724,0.8448,0.7068,0.7414,0.7242,0.8448,1,0.9482,0.8966,0.7932,0.6034,0.1552,0.0344,-0.0172,0.362,0.4482,0.2242,-0.0344,-0.0862,-0.2586,-0.431,1,-1,-1,1,-1,-1,-0.4,-0.8334,1,-0.5608,-0.5794,-0.4954,-0.243,-0.2056,-0.1588,-0.1028,-0.1214,0.0094,-0.028,-0.0094,0.1496,0.1682,0.2898,0.2336,0.2524,0.1308,0.2056,0.1496,0.028,0.243,0.43,0.5234,0.3926,0.5046,0.729,1,0.944,0.8786,0.6542,0.7944,0.7384,'19'
-0.3918,0.0676,0.0136,0.2432,0.6756,0.7298,0.4798,0.419,0.196,0.1352,0.1486,0.1622,0.2162,0.2298,0.2906,0.3784,0.4122,0.6148,0.8582,0.946,0.8852,0.919,0.9594,0.9864,1,0.9662,0.973,0.6824,0.6486,0.6486,0.6418,0.669,-0.3694,0.0056,0.1194,0.2444,0.6876,0.7272,0.6478,0.6194,0.2784,0.142,0.0624,0.25,0.284,0.341,0.2898,0.4488,0.6022,0.7272,0.8978,0.9262,0.909,0.8352,0.9148,0.8806,1,0.9204,0.8352,0.6136,0.5796,0.4716,0.3124,0.4716,-0.292,0.1066,0.3058,0.4226,0.8626,0.842,1,0.8832,0.4158,0.1616,0.1546,0.2372,0.299,0.4226,0.4776,0.512,0.6152,0.622,0.835,0.9106,0.945,0.8556,0.842,0.725,0.842,0.8626,0.6838,0.6014,0.3608,0.2646,0.3884,0.292,-0.3518,0.0062,0.2408,0.358,0.6604,0.9074,1,0.7654,0.6172,0.4136,0.2962,0.2962,0.463,0.5062,0.5618,0.6728,0.8518,0.9382,0.9506,0.932,0.7962,0.716,0.7284,0.753,0.7592,0.6914,0.5864,0.321,0.3828,0.2592,0.2654,0.4012,-0.425,-0.1874,0.1374,0.1938,0.55,0.8688,0.85,0.9062,0.5938,0.4688,0.4062,0.425,0.4376,0.5188,0.6688,0.7876,0.9876,1,0.8938,0.7938,0.7438,0.7,0.6688,0.7938,0.8626,0.8312,0.55,0.45,0.3,0.2688,0.15,0.0812,-0.5446,-0.2124,-0.0708,0.0584,0.563,0.8462,0.92,0.6984,0.4892,0.3846,0.397,0.4154,0.4708,0.52,0.6738,0.9262,1,0.92,0.643,0.6492,0.6124,0.6124,0.7416,0.9138,0.9138,0.963,0.6616,0.4462,0.36,0.3476,0.2738,0.1938,-0.5116,-0.3466,-0.2344,0.0892,0.4522,0.7426,0.5842,0.4852,0.406,0.1552,0.2674,0.2938,0.439,0.6634,0.9142,1,0.901,0.604,0.3598,0.4126,0.2938,0.3796,0.5644,0.7492,0.9868,0.9274,0.6436,0.571,0.1222,0.1816,0.1156,0.1222,-0.1112,0.5,0.5,0.5556,0.8334,0.9444,0.8888,0.8334,0.5,0.3888,0.2222,0.3888,0.3888,0.4444,0.5,0.4444,0.2778,0.6112,0.8334,0.9444,0.9444,0.9444,0.9444,1,0.7222,0.9444,0.9444,0.1112,0.3888,0.6666,0.5556,0.2778,-0.4238,-0.017,0.1186,0.322,0.695,0.7288,0.4576,0.4576,0.2204,0.1864,0.1864,0.2542,0.2882,0.2882,0.2882,0.4238,0.5932,0.661,0.9322,0.8984,1,0.9662,0.8984,0.9662,1,0.9662,1,0.7628,0.5932,0.6272,0.7628,0.7966,-0.3962,0,0.1886,0.283,0.717,0.717,0.7736,0.717,0.3208,0.0944,-0.132,0.2264,0.2076,0.3962,0.3208,0.3962,0.6604,0.6792,0.9434,0.868,1,0.8868,0.9246,0.9434,0.9434,0.9434,0.9056,0.6416,0.4906,0.3962,-0.0566,0.1132,-1,-1,-1,-1,-1,-1,-1,-0.9714,-0.9792,-0.978,-0.9052,0.3292,0.9654,0.8504,0.7006,0.8152,0.6172,0.4376,0.3816,0.409,0.2474,-0.2898,-0.8212,-0.929,-0.9464,-0.9612,-0.9642,-0.954,-0.9642,-0.9576,-0.9696,-0.9708,-0.9684,-1,-1,-1,-1,-1,-1,-1,-0.9902,-0.9914,-0.9908,-0.9318,0.425,0.9356,0.5888,-0.018,0.2526,0.3386,0.2316,0.3244,0.3802,0.3836,-0.1432,-0.9018,-0.8546,-0.737,-0.6962,-0.7334,-0.6456,-0.6558,-0.6848,-0.6356,-0.6522,-0.7122,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.8934,-0.84,-0.6134,-0.46,-0.625,-0.695,-0.92,-0.865,-0.835,-0.8,-0.785,-0.835,-0.716,-0.612,-0.5634,0.6866,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-0.9714,-1,1,1,1,1,0.4286,-0.2,-0.8,-0.8286,-0.7714,-0.7428,-0.8286,1,1,1,1,1,-0.6572,-0.9428,-0.8572,-0.8286,-0.7428,-0.9142,-0.8572,-0.7714,1,1,1,1,1,1,1,1,1,1,0.6796,0.7662,0.7662,0.7678,0.7552,0.7644,0.788,0.6868,0.5284,0.1958,-0.5734,-0.5764,-0.906,-0.2926,0.8554,0.9536,0.7384,1,0.0956,0.4174,0.3478,0.6782,0.713,0.687,0.5478,1,0.7566,0.5478,0.6956,0.6522,0.887,0.6348,0.4522,0.4522,0.3914,0.4348,0.513,0.5044,0.4696,0.287,0.3652,0.4608,0.3392,0.426,0.287,0.3566,0.1826,0.0696,0.1044,-0.0522,-0.125,0.1954,0.375,0.5624,0.6094,0.1328,0.414,0.789,0.7422,0.6172,0.461,0.3594,0.9922,1,0.5078,0.3516,0.3516,0.2188,0.4296,0.7188,0.5782,0.4376,0.2968,0.3828,0.289,0.2968,0.3046,0.125,0.2344,0.1484,0.0704,-0.3516,-0.1366,0.1614,0.4968,0.4782,0.4348,0.3788,0.7018,0.7204,0.6894,0.5466,0.8136,0.8322,0.9752,1,0.9192,0.5838,0.6336,0.6024,0.6708,0.6894,0.6894,0.5342,0.6086,0.441,0.559,0.2236,0.1614,0.0932,-0.0124,-0.0248,-0.0932,-0.5218,-0.994,1,-1,-1,-1,-1,-1,-1,-1,-0.862,-0.734,-0.5468,-0.468,-0.5468,-0.3794,-0.3694,-0.1626,-0.2316,-0.1822,-0.202,-0.1724,-0.0936,-0.1528,-0.0444,-0.064,-0.0838,0.1626,0.0936,0.0246,0.3202,0.4088,0.5172,0.4384,0.5862,0.5764,0.4384,0.9508,1,0.6158,0.2808,0.2316,'19'
-0.0896,0.5394,0.5284,0.4332,0.404,0.1408,0.0822,-0.1188,-0.17,-0.3492,-0.4224,-0.064,-0.0676,-0.075,-0.148,-0.1298,-0.0202,0.0822,0.053,0.2542,0.2798,0.4808,0.5284,0.883,0.9232,1,0.9634,0.989,0.9086,0.9232,0.8098,0.682,-0.368,0.0644,0.0306,0.2638,0.132,-0.0582,-0.2884,-0.322,-0.3252,-0.316,-0.4448,-0.4786,-0.5644,-0.4478,-0.2822,-0.2822,-0.1564,-0.0674,0.0306,0.135,0.2792,0.3988,0.632,0.8098,1,0.9724,0.9816,0.9448,0.9172,0.8712,0.7944,0.7178,-0.505,-0.1872,0.3244,0.3846,-0.127,-0.281,-0.3578,-0.515,-0.5418,-0.6254,-0.5986,-0.6086,-0.5184,-0.3812,-0.3678,-0.2842,-0.1472,-0.1438,-0.0736,0.0234,0.1572,0.3144,0.5384,0.806,0.9398,1,0.99,0.9732,0.9264,0.923,0.7892,0.7224,-0.503,0.1382,0.5872,0.491,0.022,-0.2384,-0.3828,-0.543,-0.7716,-0.6714,-0.6232,-0.479,-0.5952,-0.4388,-0.3868,-0.3146,-0.3628,-0.3386,-0.2304,-0.1704,0.042,0.0942,0.3346,0.6954,0.8758,1,0.9278,0.9038,0.8638,0.8196,0.6554,0.5792,-0.5188,0.4128,0.554,0.4614,0.1346,-0.2936,-0.3422,-0.5762,-0.6204,-0.8014,-0.7306,-0.6822,-0.5806,-0.532,-0.479,-0.51,-0.5452,-0.5144,-0.3246,-0.2362,-0.0552,0.0464,0.2892,0.5584,0.8588,1,0.819,0.925,0.841,0.9116,0.7748,0.5718,-0.4616,0.448,0.801,0.7512,0.1312,-0.19,-0.3574,-0.4028,-0.4028,-0.457,-0.4344,-0.371,-0.4886,-0.4072,-0.4028,-0.362,-0.3258,-0.2806,-0.4118,-0.2986,-0.1312,-0.1312,0.1222,0.6154,0.8054,1,0.9096,0.9366,0.8598,0.896,0.7918,0.629,-0.566,0.3168,0.571,0.4614,0.0024,-0.4014,-0.3168,-0.2818,-0.2668,-0.4364,-0.581,-0.2518,-0.167,-0.4464,-0.3118,-0.2868,-0.1472,-0.2468,-0.3866,-0.3516,-0.207,-0.2768,0.1422,0.6608,0.9202,0.9302,1,0.985,0.98,0.6558,0.4414,0.4364,0.0232,0.721,0.6744,0.1162,0.1628,0.0232,-0.2094,-0.1628,-0.3488,-0.4418,-0.4418,-0.1628,-0.2558,-0.2094,-0.3488,-0.2094,-0.0698,-0.1628,-0.0232,-0.2094,0.0698,0.3954,0.3488,0.4884,0.9534,1,0.7674,0.9534,0.8604,0.6744,0.3954,0.3024,-0.1162,0.628,0.628,0.5348,0.4884,0.1162,0.0698,-0.3024,-0.3954,-0.3024,-0.3024,-0.0232,0.0232,0.0698,0.0698,-0.2558,-0.0698,0.0232,-0.1628,0.1628,0.2094,0.1162,0.2094,0.6744,0.721,0.907,1,0.814,1,0.814,0.9534,0.7674,-0.5046,-0.101,0.4312,0.3944,-0.1192,-0.211,-0.1926,-0.4678,-0.6698,-0.6698,-0.5596,-0.4496,-0.4678,-0.3944,-0.1376,-0.1744,-0.156,-0.1376,-0.0642,0.0276,0.156,0.2294,0.3394,0.7614,0.8348,1,0.9634,0.9634,0.89,0.7982,0.7982,0.7248,-1,-0.9508,-0.9418,-0.9462,-0.9358,-0.8194,-0.885,-0.906,-0.8956,-0.8836,-0.7762,0.7268,0.8568,0.509,0.5432,0.7612,0.8044,0.4478,0.303,0.1716,-0.218,-0.5986,-0.694,-0.8462,-0.8598,-0.894,-0.9344,-0.9344,-0.9374,-1,-1,-1,-1,-1,-0.9824,-0.9768,-0.9752,-0.9826,-0.4092,-0.1696,-0.3694,-0.5096,-0.6694,-0.8552,-0.5084,0.4466,0.9014,0.727,0.2478,-0.4156,-0.6126,-0.5254,-0.743,-0.8202,-0.908,-0.9346,-0.9462,-0.9476,-0.9648,-0.9758,-0.978,-0.9802,-1,-1,-1,-1,-1,-0.84,-0.8468,-0.8534,-0.8868,0.0366,0.8332,0.74,0.5666,0.3732,0.3066,-0.7772,-0.2716,0.037,-0.0286,-0.36,-0.7058,-0.883,-0.7544,-0.8376,-0.84,-0.745,-0.5934,-0.3368,-0.5334,-0.55,-0.68,-0.9068,-0.92,-1,-1,-1,-1,-1,-0.9714,-0.9142,-0.9714,1,1,1,-0.4572,-0.0286,0.9428,0.8858,1,1,-0.8,-0.7714,0.5428,0.5142,-0.8572,-0.6572,-0.0286,-0.6858,-0.6,-0.6,-0.8,-0.5428,-0.4858,-0.7142,-0.8286,-0.7142,-1,-1,-1,-1,0.182,0.182,0.2406,0.2694,0.2958,0.3306,0.3434,0.3432,0.3326,0.2012,1,1,1,1,1,1,1,1,1,1,-0.4134,-0.1764,-0.8668,-0.7992,-0.553,-0.04,0.3462,1,-0.8126,-0.4472,-0.3626,-0.3564,-0.284,-0.2054,-0.145,-0.1088,-0.012,0.2478,0.3596,0.3776,0.3112,0.3444,0.432,0.3686,0.4622,0.6496,0.7946,0.858,1,1,0.9486,0.8882,0.843,0.6828,0.565,0.6798,0.6466,0.5136,0.4532,0.2084,-0.8576,-0.6818,-0.4758,-0.3606,-0.2484,-0.1484,-0.0696,0.1152,0.2122,0.4424,0.6182,0.6636,0.5788,0.6182,0.597,0.5758,0.3848,0.5696,0.9272,0.903,0.8666,0.9484,1,0.7848,0.8272,0.7878,0.6788,0.6818,0.5182,0.4272,0.2848,0.0334,-0.4786,-0.3214,-0.223,-0.1278,-0.2492,-0.1476,-0.1312,-0.059,0.1476,0.305,0.3804,0.754,0.8786,0.8722,0.8786,0.741,0.646,0.6524,0.8754,0.859,0.7836,1,0.918,0.7016,0.7344,0.6852,0.6394,0.4098,0.3704,0.2786,0.0918,-0.095,0.4726,-1,-1,1,-1,-1,-0.8,0.1666,-1,-0.1968,0.0394,-0.0078,0.1338,-0.0708,-0.2126,0.1024,0.1654,0.2126,-0.1024,0.0708,0.496,0.9528,1,0.9056,0.4488,0.1968,0.307,0.4646,0.5434,0.6062,0.7322,0.1812,0.2914,-0.0552,0.2284,0.1812,0.3228,0.4804,0.1182,0.2126,-0.1182,'20'
-0.265,0.4808,0.5138,0.1554,0.192,-0.1956,-0.1152,-0.2944,-0.2102,-0.532,-0.309,-0.4224,-0.298,-0.3602,-0.1664,-0.2614,-0.17,-0.148,0.0932,0.0604,0.3126,0.3748,0.6672,0.7916,0.8172,1,0.9122,0.8098,0.8208,0.8282,0.7294,0.649,-0.1726,0.3074,0.3074,0.3488,0.3308,0.1648,0.157,0.022,0.0168,-0.048,-0.0532,-0.0532,-0.048,-0.1154,-0.1102,0.0298,0.035,0.1544,0.188,0.2814,0.3644,0.5928,0.6914,0.8754,1,0.974,0.9196,0.8936,0.8962,0.8548,0.8418,0.8806,-0.3122,0.0994,0.1464,0.3342,0.1824,0.0138,-0.2072,-0.2072,-0.2762,-0.2734,-0.3922,-0.4116,-0.4696,-0.348,-0.2292,-0.185,-0.1326,-0.094,0.047,0.1492,0.2846,0.3896,0.5828,0.7984,0.9448,1,0.9752,0.8454,0.8756,0.8812,0.848,0.8564,-0.4322,-0.113,0.371,0.4032,-0.1484,-0.3612,-0.4032,-0.5258,-0.5612,-0.6452,-0.6484,-0.558,-0.5968,-0.513,-0.4032,-0.4162,-0.3838,-0.3774,-0.2968,-0.129,-0.0032,0.1936,0.3548,0.6354,0.9388,1,0.9388,0.871,0.8484,0.7516,0.7096,0.7516,-0.3674,0.3184,0.7506,0.5412,0.0468,-0.1938,-0.372,-0.5322,-0.5322,-0.5502,-0.6882,-0.7104,-0.6838,-0.844,-0.7952,-0.7772,-0.7594,-0.6124,-0.5724,-0.4164,-0.3674,-0.1626,0.1314,0.5412,0.7372,1,0.8664,0.804,0.6748,0.617,0.3408,0.4032,-0.4444,0.5556,0.7324,0.5202,0.0304,-0.293,-0.4344,-0.5454,-0.5506,-0.6566,-0.692,-0.6162,-0.5152,-0.6718,-0.8434,-0.808,-0.899,-0.8536,-0.793,-0.6768,-0.4344,-0.0656,0.106,0.6414,0.9494,1,0.894,0.8536,0.9292,0.9242,0.6112,0.5758,-0.5294,0.0386,0.213,0.213,-0.282,-0.72,-0.716,-0.708,-0.72,-0.8174,-0.9554,-0.854,-0.7526,-0.7444,-0.6552,-0.7322,-0.7404,-0.578,-0.4848,-0.2982,-0.0912,0.0182,0.1076,0.5862,0.923,1,0.9148,0.9432,0.8458,0.7322,0.505,0.351,-0.2,0.5112,0.5112,0.1112,-0.0666,-0.1112,-0.2,-0.3778,-0.6444,-0.5112,-0.2,-0.1112,-0.3334,-0.6,-0.5556,-0.4666,-0.6444,-0.0666,0.1112,0.1112,0.1112,0.2888,0.6,0.7334,0.6,0.5556,1,1,1,0.9556,0.7334,0.4222,-0.24,0.56,0.6,0.04,0.16,-0.16,-0.12,-0.28,-0.2,-0.52,-0.4,-0.48,-0.56,-0.4,-0.28,-0.56,-0.32,-0.44,-0.08,-0.04,0.2,0.28,0.6,0.72,0.8,1,0.88,0.76,0.72,0.8,0.68,0.8,-0.4432,-0.2164,0.4432,0.4226,-0.2372,-0.3196,-0.4432,-0.5258,-0.5876,-0.732,-0.6908,-0.6082,-0.567,-0.5464,-0.5464,-0.5052,-0.464,-0.5052,-0.402,-0.3608,-0.0722,0.134,0.2164,0.464,0.8762,1,1,0.897,0.8762,0.732,0.6908,0.6702,-1,-1,-0.9694,-0.9814,-0.9774,-0.974,-0.9004,-0.8718,-0.5982,-0.7058,-0.832,0.5024,0.707,0.2608,0.183,0.2474,0.5848,0.7676,0.5218,0.096,-0.353,-0.3822,-0.7098,-0.7894,-0.8758,-0.9482,-0.9368,-0.9602,-0.9488,-1,-1,-1,-1,-1,-1,-0.9806,-0.9802,-0.9748,-0.9886,-0.6824,-0.048,-0.2512,-0.6172,-0.7852,-0.5156,0.6286,0.5724,0.3688,0.3236,0.1586,-0.3164,-0.555,-0.6502,-0.7554,-0.7168,-0.9114,-0.925,-0.9394,-0.9498,-0.9562,-0.9646,-0.9644,-1,-1,-1,-1,-1,-1,-0.5664,-0.573,-0.6998,-0.673,-0.2298,1,0.5236,0.3336,0.2502,-0.6174,-0.1888,0.0826,0.134,0.1112,-0.1316,-0.6816,-0.8976,-0.9226,-0.5976,-0.5426,-0.71,-0.4234,-0.28,-0.1434,-0.2068,-0.1134,-0.1868,-1,-1,-1,-1,-1,-1,0.0572,-0.8858,0.2858,1,1,1,1,1,0.6,1,1,-0.5714,-0.6572,-0.8,0.1428,0.2286,-0.2286,-0.6,-0.0858,1,1,-0.7428,-0.7714,-0.3428,-0.4572,-0.6572,-0.4286,-1,-1,-1,-1,-0.0366,0.021,0.0508,0.0902,0.1656,0.233,0.307,0.3764,0.3624,0.1554,1,1,1,1,1,1,1,1,1,1,-0.5734,-0.153,-0.8058,-0.7628,-0.53,-0.0828,0.3726,1,-0.8838,-0.4922,-0.252,-0.2714,-0.2286,-0.1124,-0.0582,-0.093,0.031,0.3644,0.686,0.6162,0.31,0.3024,0.4844,0.5466,0.6782,0.6434,0.5038,0.814,1,0.969,0.9574,0.969,0.8682,0.8488,0.7674,0.7906,0.7636,0.6706,0.4922,0.2636,-0.5308,-0.6148,-0.595,-0.5704,-0.5112,-0.3234,-0.2098,-0.0766,0.1604,0.3482,0.4716,0.9604,0.8864,0.6938,0.5012,0.5112,0.5308,0.4766,0.358,0.4172,0.674,1,0.9604,0.9654,0.9654,0.7284,0.7432,0.6888,0.5308,0.432,0.3234,0.195,-0.2796,-0.0552,0.0158,-0.0118,-0.0906,-0.2166,-0.0158,0.1102,0.1772,0.4016,0.5984,0.937,0.9606,0.7992,0.9528,0.8662,0.8662,0.87,0.6812,0.4528,0.7952,0.8622,0.8622,1,0.8898,0.8976,0.9646,0.8268,0.6614,0.5118,0.4606,0.0196,0.3512,-1,-1,1,-1,-1,-0.2,-0.0666,-1,-0.1666,-0.0596,0.1786,0.4404,0.2262,0.0714,0.1666,0.1666,0.0476,0.3096,0.4642,0.8928,1,0.9048,0.8334,0.5952,0.5952,0.738,0.762,0.488,0.5714,0.619,0.6072,0.2976,0.238,0.0596,0,0.2262,0.381,0.2738,-0.119,-0.5358,'20'
0.0142,0.6524,0.5988,0.5608,0.444,0.1596,-0.0174,-0.3112,-0.4186,-0.447,-0.3176,-0.1722,-0.1058,-0.0522,-0.109,-0.0174,0.2006,0.3966,0.4534,0.6746,0.8072,0.8358,0.9462,1,0.7156,0.4218,0.3364,0.327,0.0838,0.1374,-0.0332,0.0868,0.1216,0.8514,0.8244,0.9358,0.8648,0.5844,0.473,-0.169,-0.3074,-0.2702,-0.0676,0.2668,0.1048,0.4222,0.6082,0.848,0.8006,1,0.75,0.7364,0.456,0.3278,0.7128,0.8412,0.5034,0.1486,-0.1994,-0.1182,-0.0406,-0.0608,-0.1756,0.044,0.0116,0.6406,0.6806,1,0.7704,0.3744,-0.0184,-0.4608,-0.5074,-0.3378,0.178,0.351,0.6006,0.5242,0.6806,0.5308,0.0416,-0.0516,-0.0516,-0.2778,-0.6272,-0.4044,0.0016,0.0616,-0.1946,-0.3644,-0.4176,-0.4742,-0.4442,-0.4342,-0.2978,-0.0882,-0.133,0.3776,1,0.9712,0.3022,0.0108,-0.0648,-0.2266,-0.0036,0.1762,0.367,0.3634,0.0972,-0.2338,-0.518,-0.6942,-0.759,-0.741,-0.8706,-0.9532,-0.8238,-0.4784,-0.3812,-0.1942,-0.241,-0.464,-0.7122,-0.6762,-0.6762,-0.8202,-0.7842,-0.6294,-0.1342,0.7394,1,0.8558,0.491,0.1222,0.002,0.014,0.3266,0.4148,0.2464,-0.3306,-0.6554,-0.6914,-0.6514,-0.8116,-0.8316,-0.5672,-0.6352,-0.8838,-0.7916,-0.7636,-0.4348,-0.046,-0.0822,-0.4028,-0.6152,-0.7516,-0.7114,-0.8678,-0.7034,-0.6594,-0.3598,0.6822,1,0.7528,0.276,-0.0242,-0.0066,0.4392,0.4482,0.0684,-0.5276,-0.6424,-0.6158,-0.7528,-0.7572,-0.735,-0.691,-0.819,-0.8234,-0.8544,-0.7262,-0.819,-0.6158,-0.457,-0.3598,-0.4304,-0.8146,-0.9072,-0.9028,-0.894,-0.8852,-0.9426,-0.3066,0.8114,1,0.8538,0.368,-0.1132,0.316,0.4716,0.2216,-0.7122,-0.7406,-0.5378,-0.7452,-0.6416,-0.3538,-0.434,-0.4906,-0.415,-0.566,-0.566,-0.4482,-0.4528,-0.6886,-0.283,-0.2028,-0.5188,-0.7358,-0.9576,-0.9764,-0.7924,-0.7264,-0.6886,0.0212,0.532,0.4894,0.4468,0.234,0.0212,-0.234,-0.4042,-0.3618,-0.4042,-0.617,-0.532,-0.149,-0.234,-0.1914,-0.1914,-0.0212,0.1914,0.234,0.532,0.8298,1,0.9148,0.8724,0.6596,0.617,0.617,0.617,0.4468,0.4042,-0.149,0.234,0.193,0.6492,0.614,0.5438,0.4386,0.2632,0.0878,0.0176,-0.1228,-0.0176,-0.1578,-0.0176,0.193,0.1578,-0.0878,-0.0176,0.193,0.3334,0.6492,0.8596,1,0.965,1,0.7192,0.7894,0.6842,0.4386,0.2982,0.1228,0.1578,0.0176,0.193,-0.0322,0.613,0.5698,0.8064,0.699,0.4194,0.2688,-0.4194,-0.5054,-0.4194,-0.0322,0.0968,0.2904,0.4624,0.9784,1,0.4408,0.2044,0.2044,0.2258,-0.4408,-0.1612,0.4838,0.4838,-0.0322,-0.2904,-0.3334,-0.4838,-0.2474,-0.3764,-0.4624,-0.1182,-0.9808,-0.939,-0.9004,-0.7932,-0.7802,-0.7372,-0.754,-0.7956,-0.7918,-0.6222,-0.213,0.2842,0.619,0.5958,0.5014,0.594,0.8844,0.3382,-0.0576,-0.202,-0.299,-0.5258,-0.7868,-0.8908,-0.9286,-0.9678,-0.9776,-0.971,-0.9564,-0.9132,-0.9344,-0.9422,-0.9506,-0.9638,-0.937,-0.906,-0.827,-0.725,-0.7518,-0.7594,-0.5592,-0.2538,-0.2266,-0.1532,0.4352,0.8788,0.788,0.625,0.5798,0.7344,0.1188,-0.1988,-0.3158,-0.3984,-0.5846,-0.8064,-0.861,-0.8796,-0.9126,-0.945,-0.923,-0.923,-0.8956,-0.9056,-0.9216,-0.9296,-0.75,-0.91,-0.8968,-0.9368,-0.7634,-0.6734,-0.5468,-0.08,0.4432,0.1832,-0.45,-0.6978,-0.6446,-0.78,-0.82,-0.9046,-0.9356,-0.9668,-0.98,-0.916,-0.902,-0.886,-0.84,-0.62,-0.5468,-0.4134,-0.46,-0.38,-0.4834,-0.5468,-0.61,-0.6068,-0.2968,-0.9428,-0.8,-0.5428,0.1428,-0.1142,0.1714,1,1,0.3428,-0.6286,0.6858,0.5714,-0.3428,-0.0858,-0.0572,-0.2858,-0.2286,-0.5714,-0.8,-0.4,-0.8,-0.8572,-0.5142,-0.2858,-0.7428,-0.7714,-0.8286,-0.8,-0.8572,-0.9714,-1,-0.8286,-0.8858,0.0976,0.1144,0.1296,0.169,0.2086,0.2284,0.265,0.2846,0.2244,0.2696,0.6246,0.6056,0.5808,0.5146,0.38,0.2374,0.0456,-0.2696,-0.498,-0.3202,-0.5066,0.0942,-0.1682,0.0898,0.3346,0.6006,0.7454,-0.675,0.4064,0.6114,0.1378,-0.2544,-0.311,-0.205,0.0566,0.0106,-0.0672,0.0424,0.364,0.6502,0.6114,0.6996,0.6466,0.47,0.7844,1,0.901,0.4064,0.3534,0.1202,-0.046,-0.0142,-0.2332,-0.1308,0.0388,-0.1308,-0.1414,-0.2508,-0.2898,-0.4276,0.0344,0.2714,-0.4158,-0.481,-0.5498,-0.3918,-0.213,-0.2062,-0.2028,-0.2096,-0.086,0.1546,0.4432,0.8934,0.9656,1,0.945,0.8694,0.8282,0.8556,0.8556,0.7698,0.5738,0.409,0.6494,0.5636,0.5292,0.5532,0.299,0.4982,0.3368,0.1478,0.323,0.3822,0.1988,-0.1848,-0.3512,-0.4302,-0.3004,-0.1734,0.0156,0.038,0.3738,0.529,0.5544,0.6192,0.7856,0.6672,0.7998,0.8788,0.842,1,0.9972,0.9322,0.7122,0.4922,0.6362,0.5796,0.6022,0.605,0.3118,0.3906,0.4048,0.1988,-0.7162,-1,-1,1,1,-0.4,-0.8,0.3666,-1,-0.2372,-0.0516,0.031,0.2164,0.0516,0.1546,0.8762,1,0.464,0.2164,0.2578,0.2164,0.3608,0.5052,0.5464,0.6908,0.6288,0.1134,0.402,0.5052,0.4226,0.2578,0.299,0.0928,-0.1134,0.464,0.897,0.3196,-0.0722,-0.1134,-0.4432,-0.4846,'21'
-0.266,0.182,0.2504,0.381,-0.0264,-0.409,-0.5676,-0.5956,-0.58,-0.6268,-0.5738,-0.3842,-0.4152,-0.2224,-0.2722,-0.0948,0.0296,0.1198,0.4184,0.5738,0.829,0.8444,0.9098,0.9254,1,0.748,0.6952,0.5584,0.4588,0.4992,0.4246,0.5614,-0.2858,0.1516,0.3528,0.4986,0.175,-0.1574,-0.2274,-0.309,-0.2974,-0.3994,-0.3002,-0.1516,-0.1546,0.0584,0.0932,0.347,0.6794,0.7406,0.7026,0.6764,0.6006,0.551,0.7318,0.9096,1,0.656,0.4228,0.3236,0.2682,0.3848,0.376,0.4664,-0.285,0.202,0.9412,1,0.3436,0.0052,0.0536,-0.0778,-0.1088,-0.126,-0.1226,0.0052,0.2504,0.5958,0.6718,0.5994,0.5544,0.354,0.2746,0.2988,0.3056,0.5234,0.8066,0.9724,0.9586,0.6096,0.3126,0.1158,0.1468,0.2262,0.1952,0.2678,-0.3942,0.5728,1,0.8292,0.398,0.3398,0.0446,-0.0952,-0.103,-0.099,0.1962,0.5766,0.5884,0.3166,0.1184,-0.0952,-0.1766,-0.1262,-0.2854,-0.3282,-0.1572,-0.033,0.336,0.6466,0.6272,0.169,0.0252,-0.2272,-0.503,-0.3748,-0.398,-0.2582,-0.3296,0.838,1,0.936,0.5442,0.2204,-0.032,-0.0208,0.1864,0.4652,0.6082,0.3182,-0.0282,-0.2806,-0.2768,-0.5404,-0.7024,-0.8532,-0.7552,-0.7552,-0.8568,-0.5368,-0.2768,-0.0282,-0.0396,-0.1752,-0.5932,-0.7514,-0.8192,-0.6046,-0.597,-0.612,-0.5274,0.535,1,0.9546,0.3384,0.0246,0.0246,0.2552,0.482,0.448,-0.1644,-0.2514,-0.3648,-0.4896,-0.327,-0.395,-0.3384,-0.5804,-0.603,-0.5766,-0.5048,-0.7164,-0.5766,-0.2098,-0.1418,-0.3194,-0.5048,-0.6938,-0.671,-0.6332,-0.603,-0.6068,-0.5274,0.6978,1,0.9176,0.1594,0.1648,0.6318,0.7472,0.3792,-0.0824,-0.3792,-0.1428,-0.033,0,-0.0824,-0.0604,-0.044,-0.2418,-0.467,-0.3626,-0.3516,-0.3572,-0.456,-0.033,-0.022,-0.0164,-0.2582,-0.423,-0.478,-0.6758,-0.467,-0.2638,0.098,0.4118,0.4902,0.6078,0.1372,-0.5686,-0.647,-0.5686,-0.4118,-0.1764,-0.098,-0.098,-0.098,-0.098,-0.1372,0.098,0.255,0.2942,0.451,0.5294,0.7648,0.7648,1,0.8432,0.8432,1,0.9608,0.9216,0.8824,0.804,0.6078,0.7648,-0.3618,0.0212,0.0638,0.234,-0.1064,-0.532,-0.532,-0.5744,-0.8724,-0.8298,-0.7022,-0.4894,-0.4042,-0.3192,-0.3192,-0.2766,-0.0212,-0.0212,0.234,0.4468,0.5744,1,1,0.9574,0.8724,0.8724,0.617,0.617,0.4042,0.2766,0.4468,0.532,-0.2406,0.8228,1,0.8734,0.6708,0.443,0.1646,0.038,0.1898,0.2152,0.7468,0.6456,0.443,-0.114,-0.3164,-0.4178,-0.595,-0.7468,-0.519,-0.3924,-0.3924,-0.0886,0.2152,0.5696,0.595,0.114,-0.2152,-0.3164,-0.519,-0.4684,-0.4178,-0.2912,-1,-0.9746,-0.9702,-0.9752,-0.9716,-0.6954,-0.7168,-0.7988,-0.8222,-0.7478,-0.4546,-0.063,0.1254,0.2882,0.6658,0.8498,0.4066,0.357,0.1876,-0.1686,-0.6062,-0.7656,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9786,-0.976,-0.9768,-0.9782,-0.8224,-0.8316,-0.893,-0.8426,-0.6846,-0.638,0.1126,0.8096,0.4688,0.1758,8e-04,-0.275,-0.3564,-0.4884,-0.6626,-0.8368,-0.8988,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.904,-0.74,-0.77,-0.85,-0.63,-0.5068,-0.4,-0.05,0.39,-0.18,-0.22,0.031,-0.1046,-0.489,-0.8956,-0.94,-0.9624,-0.9734,-0.9468,-0.956,-0.954,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6572,-1,-1,1,1,-0.2286,-0.1428,0.9714,0.4858,1,1,-0.4,-0.5714,-0.0286,0.3142,-0.3142,0.5142,-0.4286,-0.6286,-0.6,-0.8858,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.1624,-0.1714,-0.1814,-0.1298,-0.0852,-0.0162,0.0516,0.1064,0.241,0.3418,1,0.9798,0.9562,0.9262,0.8978,0.8248,0.7464,0.6374,0.3212,-0.0194,-0.32,0.0706,-0.6454,-0.4932,0.133,0.3646,0.5962,0.05,0.4716,0.5656,0.092,-0.045,-0.1312,-0.0724,0.0058,-0.088,-0.041,-0.0294,0.5186,0.683,0.4834,0.5812,0.683,0.6752,0.726,0.8904,1,0.9374,0.6674,0.4598,0.3738,0.3972,0.2994,0.182,0.4912,0.5382,0.2524,-0.0606,-0.1938,-0.5304,0.2308,0.3772,-0.1182,-0.1858,-0.2608,-0.122,-0.0694,-0.0018,-0.1106,-0.1594,-0.0244,0.2608,0.3808,0.4184,0.6022,0.8198,0.9962,0.8612,0.8724,1,0.8612,0.8124,0.4746,0.4634,0.5684,0.516,0.5046,0.5272,0.5948,0.5348,0.3396,0.0132,0.226,0.2524,0.0166,-0.3688,-0.3222,-0.2558,-0.1994,-0.1528,-0.1162,0.0366,0.2692,0.4984,0.5182,0.5182,0.6944,0.7442,0.8604,0.9402,0.7242,0.8672,0.9966,1,0.671,0.422,0.5348,0.608,0.5316,0.5382,0.5382,0.6512,0.4054,0.1694,-0.6954,-1,-1,1,1,-1,-1,0.1666,-1,0.4084,0.6902,0.324,1,0.9436,0.6056,0.6056,0.8028,0.6338,0.3522,0.2676,0.0986,0.493,0.4648,0.1268,0.155,0.4648,0.493,0.4648,0.3802,0.324,0.324,0.0422,0.183,0.2112,0.1268,0.155,-0.0422,-0.1268,0.0986,0.0704,-0.7184,'21'
-0.2184,0.174,0.6962,0.669,-0.1808,-0.546,-0.5052,-0.7236,-0.761,-0.6962,-0.7134,-0.611,-0.5632,-0.5836,-0.5256,-0.396,-0.3038,-0.1296,-0.0444,0.0102,0.232,0.413,0.7508,0.901,0.826,0.8976,1,0.9284,0.9112,0.5768,0.4914,0.3208,-0.3782,-0.084,0.4222,0.4306,-0.3342,-0.5708,-0.5708,-0.6204,-0.7414,-0.7002,-0.9588,-0.8212,-0.6918,-0.6038,-0.5736,-0.4884,-0.2682,-0.249,-0.2104,-0.0812,-0.0068,0.1086,0.3204,0.5956,0.9614,1,0.8596,0.8844,0.9202,0.9972,0.9918,0.8102,-0.403,-0.1316,0.4166,0.3922,-0.2158,-0.5658,-0.6906,-0.6472,-0.7774,-0.8182,-0.9104,-0.7232,-0.7204,-0.6716,-0.517,-0.5686,-0.4436,-0.2944,-0.2972,-0.1234,-0.015,0.0474,0.232,0.5414,0.8128,1,0.9864,0.8344,0.8562,0.9838,0.9892,0.6824,-0.4302,0.1166,0.577,0.4648,-0.1684,-0.672,-0.6662,-0.672,-0.7352,-0.8158,-0.8992,-0.7956,-0.7438,-0.7438,-0.5598,-0.5742,-0.4446,-0.3294,-0.3208,-0.2116,-0.0906,-0.0906,0.0906,0.4072,0.7756,1,0.9598,0.813,0.7784,0.8906,0.8418,0.6604,-0.4562,0.4796,0.6696,0.2982,-0.1432,-0.4416,-0.6286,-0.7106,-0.7544,-0.8362,-0.9386,-0.6228,-0.579,-0.5322,-0.4122,-0.541,-0.5292,-0.4182,-0.4152,-0.2982,-0.228,-0.1578,0.041,0.3742,0.6286,0.8802,1,0.8654,0.927,0.9386,0.69,0.7544,-0.414,0.7228,0.7578,0.4246,0.0702,-0.5228,-0.5824,-0.5228,-0.6808,-0.6878,-0.9192,-0.9474,-0.7578,-0.5578,-0.6982,-0.5158,-0.5192,-0.4316,-0.4526,-0.2736,-0.172,-0.2702,0.0036,0.1544,0.7088,1,0.9192,0.814,0.8878,0.9474,0.7298,0.6562,-0.243,0.7292,0.8812,0.7662,0.1206,-0.269,-0.5956,-0.5288,-0.6438,-0.7142,-0.7068,-0.4916,-0.269,-0.2728,-0.4842,-0.462,-0.4954,-0.5288,-0.4508,-0.3952,-0.128,-0.0538,0.0316,0.3246,0.911,1,0.9184,0.8442,0.9592,0.8144,0.5918,0.1614,-0.0304,0.4546,0.697,0.697,0.2728,-0.3334,-0.3334,-0.2728,-0.394,-0.2728,-0.3334,0.0304,-0.2122,-0.4546,0.2122,0.3334,0.2728,0.4546,0.5152,0.5758,0.5758,0.8182,1,0.7576,0.8788,0.8788,1,0.9394,0.6364,0.6364,0.697,0.2122,-0.2778,0.2222,0.7222,0.6666,-0.1112,-0.3888,-0.4444,-0.5556,-0.5556,-0.6666,-0.5556,-0.6112,-0.8888,-0.5556,-0.5,-0.3888,-0.2778,-0.0556,-0.0556,-0.1666,0.3334,0.3888,0.6666,0.6666,0.6666,0.7778,0.9444,1,0.0556,0.1112,0.1112,0,-0.2674,0.3664,0.604,0.406,-0.0298,-0.2674,-0.3862,-0.406,-0.5644,-0.6238,-0.5644,-0.3664,-0.406,-0.2674,-0.208,-0.4654,-0.2872,-0.208,-0.307,-0.0694,0.0298,-0.0496,0.1486,0.3862,0.3268,1,0.9406,0.802,0.8614,0.8812,0.6832,0.6634,-1,-1,-1,-0.8508,-0.7388,-0.6904,-0.6556,-0.6514,-0.6998,-0.7192,-0.5836,0.6936,0.4982,0.3758,0.2616,0.2844,0.4828,0.4448,0.2186,-0.1156,-0.3162,-0.4766,-0.6534,-0.7738,-0.8498,-0.8848,-0.9228,-0.965,-0.9506,-0.9526,-1,-1,-1,-1,-1,-1,-0.918,-0.8726,-0.845,-0.8148,-0.809,-0.804,-0.8074,-0.6674,-0.0134,0.5114,0.8906,0.6106,0.3936,0.1784,-0.0284,-0.2114,-0.445,-0.5992,-0.735,-0.8032,-0.8588,-0.8804,-0.8906,-0.936,-0.9624,-0.9532,-0.952,-1,-1,-1,-1,-1,-1,-0.8172,-0.9268,-0.96,-0.9734,-0.8,-0.5634,-0.4934,-0.31,-0.718,-0.362,-0.192,-0.226,-0.364,-0.582,-0.6964,-0.7982,-0.8946,-0.7,-0.9274,-0.7134,-0.4968,-0.31,-0.7134,-0.8534,-0.7,-0.7468,-0.72,-1,-1,-1,-1,-1,-1,-0.4,-0.8572,-0.4572,-0.5142,0,-0.4286,-0.3714,-0.0286,0.1714,0.4858,-0.7714,-0.8572,-0.6572,-0.5714,-0.2858,-0.4858,-0.6,0.8572,1,-0.8,-0.7142,-0.2572,-0.4,-0.3428,-0.6572,-0.6858,-0.6572,-1,-1,-1,-0.3688,-0.3646,-0.3392,-0.3172,-0.2884,-0.2612,-0.2316,-0.2396,-0.2314,-0.2782,0.9848,0.9998,1,1,1,1,1,1,1,1,-0.44,0.2352,-0.6268,-0.4826,0.0154,0.1262,0.175,-1,0.4356,0.3268,-0.1386,-0.2574,-0.2476,-0.0396,0.2476,0.0198,0.8416,0.7624,0.8514,0.6832,0.7722,0.693,0.5544,0.7426,0.594,0.5148,0.6336,0.6832,0.693,0.8812,1,0.7326,0.594,0.6238,0.4852,0.6336,0.802,0.5742,0.2178,-0.2178,0.5448,0.4276,0.0206,0.0206,-0.0344,0.2,0.3034,0.5242,0.7724,0.7656,0.8552,0.8482,0.8344,1,0.9656,0.8206,0.8896,0.8,0.5862,0.6966,0.9034,0.8068,0.5862,0.7172,0.8552,0.7932,0.938,0.9034,0.6344,0.4896,0.4138,0.0482,0.391,0.2872,0.0658,-0.052,-0.2872,-0.1972,0.301,0.211,0.6748,0.6608,0.7648,0.744,0.7786,0.8062,0.8132,0.827,0.9378,0.9862,0.6402,0.647,1,0.7994,0.8824,0.7854,0.647,0.6262,0.7648,0.7162,0.6194,0.5294,0.3218,-0.0796,-0.949,-1,1,-1,0.6,1,-0.6,-0.3334,-1,-0.1008,-0.1162,0.0078,-0.0078,-0.1162,-0.2404,-0.1008,-0.0698,-0.0078,0.0388,0.2868,0.659,1,0.969,0.3954,0.1938,-0.0232,-0.2094,0.0388,0.4574,0.5038,0.0698,0.1782,0.1318,0.2248,-0.2248,-0.0698,-0.0388,0.1008,0.3644,0.0542,-0.6434,'22'
-0.3172,0.105,0.1822,0.3342,0.1098,-0.1798,-0.3534,-0.3438,-0.368,-0.421,-0.4114,-0.4162,-0.2666,-0.2786,-0.211,-0.1724,-0.1532,-0.0012,-0.0326,0.2424,0.3486,0.5706,0.8624,0.9734,0.9662,1,0.9976,0.9614,0.8914,0.8166,0.7104,0.6816,-0.3792,0.0084,-0.0624,0.0916,-0.0584,-0.1854,-0.4062,-0.3666,-0.4334,-0.4438,-0.4354,-0.502,-0.35,-0.4666,-0.3458,-0.273,-0.2062,-0.1104,-0.0958,0.052,0.023,0.3188,0.4458,0.6292,0.8916,1,0.875,0.9312,0.9042,0.9188,0.7896,0.7376,-0.3974,-0.024,-0.0174,0.118,-0.0938,-0.2052,-0.4192,-0.4542,-0.3974,-0.5088,-0.4432,-0.452,-0.3842,-0.3494,-0.3624,-0.2686,-0.3538,-0.2184,-0.1704,-0.0742,0.0634,0.1004,0.3974,0.5196,0.7554,0.8996,1,0.9062,0.8864,0.893,0.8886,0.762,-0.423,-0.0892,0.27,0.3326,-0.168,-0.3558,-0.5134,-0.5666,-0.569,-0.5134,-0.5666,-0.5596,-0.4948,-0.4554,-0.3836,-0.3674,-0.314,-0.2676,-0.1866,-0.0776,0.0196,0.2166,0.3604,0.599,0.8516,0.9976,0.9746,0.8888,0.8794,1,0.9258,0.8448,-0.3718,0.398,0.8224,0.6282,-0.194,-0.1908,-0.3718,-0.5922,-0.5756,-0.6282,-0.7006,-0.6842,-0.5428,-0.5526,-0.6118,-0.5328,-0.5198,-0.5954,-0.5394,-0.4078,-0.4078,-0.181,0.0494,0.4736,0.8652,1,0.931,0.6316,0.727,0.8618,0.852,0.6612,-0.425,0.5986,0.7974,0.4214,0.0814,-0.2224,-0.349,-0.4684,-0.6854,-0.6854,-0.8192,-0.801,-0.8842,-0.812,-0.801,-0.9312,-0.812,-0.8734,-0.8444,-0.7468,-0.5262,-0.179,-0.009,0.5334,0.953,1,0.906,0.6274,0.8444,0.9168,0.9386,0.7938,-0.546,0.4424,0.7696,0.7196,0.1452,-0.2922,-0.3222,-0.2988,-0.4792,-0.5192,-0.626,-0.616,-0.5392,-0.5358,-0.4558,-0.546,-0.636,-0.4692,-0.4992,-0.429,-0.2822,-0.0518,0.142,0.5826,1,0.9934,0.8998,0.7228,0.8798,0.8964,0.9298,0.7796,-0.2942,0.1372,0.3334,0.4118,0.0196,-0.2942,-0.4118,-0.4902,-0.451,-0.5294,-0.3726,-0.4118,-0.2942,-0.2156,-0.2942,-0.1764,-0.2156,-0.0588,0.1372,0.255,0.647,0.8824,1,0.9216,0.8432,0.804,0.9608,0.804,0.7254,0.5686,0.4902,0.5686,-0.2758,0.138,0.3104,0.4138,0.138,-0.069,-0.4482,-0.3794,-0.3448,-0.4482,-0.4482,-0.3104,-0.2068,-0.138,-0.1034,-0.1034,-0.1034,0.0344,0,0.2758,0.4482,0.5518,0.931,1,0.862,0.862,0.9656,0.931,0.8276,0.6552,0.6896,0.6896,-0.4286,0.0612,0.5102,0.449,-0.2858,-0.4082,-0.4286,-0.4082,-0.551,-0.6326,-0.6326,-0.5306,-0.5102,-0.4898,-0.4082,-0.4286,-0.4082,-0.3062,-0.3266,-0.204,-0.0816,0.1224,0.3062,0.449,0.796,0.898,1,0.8164,0.8776,1,0.8776,0.8368,-1,-1,-1,-1,-1,-0.8022,-0.8336,-0.8418,-0.8534,-0.8758,-0.4052,0.6818,0.356,0.0806,0.0212,0.1914,0.6126,0.8976,0.5524,0.1006,-0.1638,-0.3726,-0.4738,-0.5012,-0.8144,-0.9296,-0.9444,-0.938,-0.9476,-0.9488,-0.9572,-1,-1,-1,-1,-1,-1,-1,-0.9582,-0.9672,-0.9672,-0.9488,-0.9064,-0.7644,0.2844,0.911,0.9356,0.602,0.6918,0.4456,-0.2638,-0.5722,-0.6158,-0.7744,-0.7866,-0.8736,-0.8342,-0.9518,-0.9522,-0.9466,-0.9608,-0.9576,-0.962,-0.9726,-1,-1,-1,-1,-1,-1,-1,-0.957,-0.9334,-0.85,-0.16,0.6266,0.1832,0.111,0.192,0.202,0.308,0.198,0.152,-0.462,-0.674,-0.64,-0.668,-0.256,-0.48,-0.3134,-0.4768,0.24,0.23,0.1366,-0.0168,-0.11,-0.0968,-1,-1,-1,-1,-1,-1,-1,0.0858,-0.5142,1,1,1,1,1,-0.8572,-0.8286,-0.8572,-0.8,-0.5714,0.0286,-0.1714,0.0858,-0.4858,-0.0572,-0.8,1,1,0.4858,-0.2572,-0.4286,-0.4,0.0286,0.1714,-1,-1,0.187,0.2084,0.2252,0.241,0.2692,0.2894,0.2976,0.2952,0.2746,0.1498,1,1,1,1,1,1,1,1,1,1,-0.52,0.1648,-0.7786,-0.2272,0.1364,0.5838,0.735,0.1084,0.1336,0.4898,-0.255,-0.0688,-0.0122,-0.077,0.255,0.6276,0.66,0.5466,0.7328,0.6438,0.8218,0.749,0.8138,0.587,0.6842,0.7004,0.66,0.8462,1,0.838,0.83,0.7894,0.8218,0.8056,0.8462,0.8138,0.8462,0.83,0.498,0.0446,-0.1102,0.0514,-0.5736,-0.228,-0.25,-0.1398,-0.0442,0.4118,0.5294,0.6102,0.647,0.603,0.8824,0.897,0.6986,0.6838,0.7648,0.8014,0.9706,0.9338,1,1,0.9264,0.9264,0.7794,0.7648,0.9706,1,0.5662,0.7648,0.6398,0,0.2744,0.3354,0.0914,-0.1342,-0.0488,-0.128,0.1342,0.2622,0.3658,0.7256,0.7744,0.8232,0.8536,0.933,0.7744,0.8232,0.6646,1,0.8476,0.817,0.9208,0.8598,0.9208,0.939,0.9024,0.561,0.6158,0.6708,0.378,0.1768,0.2804,-0.0304,-0.9398,-1,1,-1,-0.6,0.2,-1,-0.3666,-1,-0.3636,-0.065,0.039,0.1038,-0.1428,-0.2598,0.1038,-0.078,-0.026,0.3246,0.3766,0.8702,0.974,0.961,0.974,0.7272,0.7532,0.7922,0.7532,0.7532,1,0.8312,0.7662,0.7792,0.6234,0.5714,0.5194,0.6234,0.4416,0.3896,0.2208,0.065,'22'
-0.236,0.3866,0.3618,0.7012,0.746,1,0.9258,0.4876,0.3618,0.5236,0.3752,0.4898,0.6652,0.7752,0.6202,0.6944,0.4202,0.4426,0.227,0.2988,0.1888,0.1932,0.3394,0.3686,0.3978,0.3978,0.3776,0.3326,0.2158,0.1866,0.3708,0.272,0.1574,0.9276,0.7902,1,0.689,0.9928,0.783,0.284,0.3382,0.6384,0.4286,0.5082,0.331,0.3164,0.1248,0.15,-0.0198,0.0018,-0.1356,-0.1574,-0.0742,-0.0814,0.0018,0.2044,0.1356,0.3634,0.3236,0.0994,0.2152,0.2694,0.4068,0.5226,-0.1124,0.3776,0.8616,1,0.8674,0.807,0.6456,0.559,0.6802,0.611,0.3976,0.0058,-0.2882,-0.4208,-0.6052,-0.5822,-0.6024,-0.5994,-0.6744,-0.6484,-0.706,-0.6686,-0.3746,-0.2104,0.072,0.3054,0.438,0.3746,0.1816,-0.17,-0.1816,-0.2132,-0.2378,0.4886,1,0.8078,0.5732,0.355,-0.0326,-0.1206,-0.1596,-0.1856,-0.0846,-0.088,0.026,-0.0782,-0.4724,-0.469,-0.6644,-0.6026,-0.6286,-0.5896,-0.6384,-0.5374,-0.3778,0.0912,0.3584,0.342,0.1596,0.0554,-0.1074,-0.4006,-0.4364,-0.6092,-0.2658,0.7942,1,0.6374,0.1152,-0.1336,-0.4624,-0.4254,-0.7818,-0.702,-0.7666,-0.8832,-0.9202,-0.7696,-0.6528,-0.6282,-0.6374,-0.3886,-0.1736,0.1368,0.2626,0.3334,0.4654,0.745,0.8434,0.613,0.3856,0.1244,-0.0692,-0.0076,-0.063,-0.1736,-0.4058,0.579,0.8404,1,0.7962,0.287,0.0424,-0.304,-0.579,-0.6162,-0.528,-0.5892,-0.3446,-0.1002,0.2156,0.2904,0.3548,0.236,0.253,0.1612,0.039,0.314,0.7182,0.6196,0.0866,-0.1376,-0.2394,-0.3582,-0.2768,-0.2496,-0.185,0.2088,-0.4032,0.19,0.5488,0.9716,1,0.5346,0.2504,-0.1048,-0.389,-0.2718,0.0444,0.485,0.5418,0.4458,0.0692,-0.119,-0.0942,-0.2398,-0.2576,-0.1262,-0.1012,0.2042,0.4352,0.3818,-0.0622,-0.1546,-0.4316,-0.3322,-0.4422,-0.4138,-0.3784,-0.0906,-0.1764,0.7648,0.8236,0.8824,1,0.4706,0.647,0.4706,0.2942,0.353,0.1764,-0.1176,-0.4706,0.1176,0.1764,0.8824,1,0.7058,0.5294,0.353,0.2352,-0.0588,0.1176,0.5294,0.7058,0.4118,0.7648,0.5882,0.1764,0.0588,0.1764,0.2942,-0.098,0.4902,0.451,0.8432,0.6862,1,0.8824,0.2942,0.1764,0.3726,0.2942,0.451,0.6078,0.7254,0.9608,1,0.8432,0.804,0.7254,0.7254,0.4118,0.3334,0.3334,0.1764,0.4902,0.5686,0.7254,0.647,0.5294,0.3726,0.5294,0.4902,0.2286,0.7714,0.8286,1,0.6858,0.5428,0,0.3142,0.4572,0.4286,0.2572,-0.3428,-0.2,-0.3428,0.0286,0,0,0.0572,-0.2,-0.2,-0.1714,-0.2286,-0.3714,-0.2,-0.0286,0.0572,0.2572,-0.1142,0.2286,0.2858,0.3142,0.7142,-1,-1,-1,-1,-1,-1,-0.9786,-0.973,-0.982,-0.9828,-0.7676,0.5988,0.8872,-0.4632,0.2092,0.4618,0.4072,0.3164,0.1692,0.0578,-0.2694,-0.5026,-0.7398,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9752,-0.9744,-0.98,-0.9824,-0.6166,0.2748,0.6478,-0.7248,-0.3336,-0.105,-0.2956,-0.3968,-0.4164,-0.4404,-0.6132,-0.7254,-0.8574,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.78,-0.71,-0.8034,-0.7268,0.0966,-0.7584,-0.8034,-0.9284,-0.8568,-0.8534,-0.91,-0.9518,-0.9284,-0.8984,-0.8954,-0.8432,-0.9034,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7428,-0.9714,-1,1,1,1,1,1,1,-0.4858,0.9428,-0.2,-0.2572,-0.2858,-0.3142,-0.8,-0.5142,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.9816,0.9934,1,1,1,1,0.8854,0.7696,0.7882,0.5222,-0.7512,-0.782,-0.8058,-0.8178,-0.7204,-0.5756,-0.647,-0.4298,-0.208,-0.074,-0.4134,0.4588,-0.5978,-0.5024,-0.049,0.4504,0.7078,1,-0.4948,-0.1578,-0.0736,0.0736,0.1368,0.0106,0.2422,0.2842,0.4736,0.4948,0.579,0.4948,0.579,0.579,0.7052,0.7684,0.6842,0.6422,0.9578,0.8948,0.621,0.7474,1,1,0.7474,0.7894,0.6842,0.4948,0.4948,0.621,0.5368,-0.0736,-0.4772,-0.4318,-0.409,-0.409,-0.409,-0.159,-0.0682,-0.3864,0.5682,0.591,0.2954,-0.1364,0.5228,0.4772,0.6136,0.3182,0.4318,0.909,1,0.5228,0.6136,0.8864,0.841,0.8864,0.6364,0.75,0.7272,0.7954,0.7272,0.7272,0.841,0.4772,-0.0886,0.0886,-0.2912,-0.0886,-0.367,-0.595,-0.519,-0.0126,0.443,0.4936,0.367,-0.0886,0.038,0.3164,0.2152,0.2152,-0.038,0.8988,1,0.2152,0.367,0.1392,0.3418,0.6456,0.7468,0.6708,0.5696,0.519,0.443,0.367,0.6708,0.3164,-0.1312,-1,-1,1,-1,-1,-1,-0.8,-1,0.4846,0.5876,0.8144,1,0.7938,0.9382,0.7938,0.5258,0.4432,0.464,0.5052,0.7114,0.8762,0.6288,0.299,0.5464,0.6288,0.3814,0.9382,0.835,0.0928,0.0928,0.0722,-0.1546,0.1958,0.031,0.2784,0.1752,0.6908,0.5052,0.134,0.031,'23'
-0.262,0.1764,0.5828,0.7112,0.9786,0.893,0.5508,0.3904,0.3048,0.0696,0.0696,0.1336,0.4652,0.722,0.7968,0.9786,1,0.8716,0.7112,0.6898,0.6684,0.4974,0.7434,0.9466,0.8396,0.722,0.508,0.369,0.3262,0.2406,0.3156,0.3156,-0.3578,-0.0366,0.3302,0.4954,0.8166,0.9174,0.9908,0.5412,0.2478,0.2936,0.3028,0.5046,0.6238,1,0.899,0.9634,0.6146,0.5964,0.477,0.4588,0.5138,0.7064,0.8808,0.9082,0.4678,0.3944,0.367,0.1926,0.0826,0.1834,0.11,-0.1468,-0.4092,-0.114,0.1898,0.2996,0.4852,0.9494,0.9494,0.5612,0.4178,0.4262,0.5444,0.7638,0.7468,1,0.806,0.3924,0.3502,0.2406,0.3248,0.3502,0.3756,0.4852,0.6708,0.6202,0.2742,0.249,0.2068,0.038,0.1392,0.1308,-0.1814,0.114,-0.3716,-0.0708,0.239,0.3806,0.5576,1,0.9824,0.6992,0.5664,0.5486,0.7256,0.9646,0.9646,0.6638,0.5044,0.3274,0.2832,0.1592,0.177,0.177,0.3098,0.4248,0.7346,0.6814,0.3008,0.239,0.1682,0.0088,-0.053,-0.0442,-0.2566,0.1592,-0.3644,-0.0468,0.3458,0.514,0.7196,1,0.9814,0.5982,0.5794,0.5794,0.8038,0.5608,0.4206,0.3272,0.1776,-0.0374,0.0374,-0.0654,-0.0374,0.028,-0.0094,0.187,0.458,0.4486,0.1682,0.0374,0.0374,-0.2524,-0.4206,-0.5234,-0.4392,0.056,-0.136,0.4556,0.7278,0.6094,0.6094,0.9882,1,0.5976,0.5858,0.574,0.6214,0.3846,0.4082,0.1124,0.1006,-0.1124,-0.006,-0.1124,-0.4082,-0.3846,-0.006,0.0532,0.136,0.1834,0.2782,0.0532,-0.065,-0.5384,-0.3372,-0.5502,-0.2782,0.0532,-0.0724,0.2754,1,0.7972,0.5942,0.7682,0.7102,0.1594,0.3478,0.0434,0.0724,0.1014,0.3044,0.1304,-0.174,-0.2754,-0.5652,-0.4058,-0.5942,-0.4492,-0.2898,-0.3624,0.029,0,0.029,-0.3768,-0.3188,-0.2898,-0.6956,-0.174,-0.2174,-0.087,-0.1794,0.1794,0.6924,0.7948,0.9488,0.7436,0.282,0.3334,0.2308,-0.077,0.0256,0.077,0.3334,0.5898,0.5898,0.8974,0.8974,0.8974,0.7436,0.6924,0.5384,0.3846,0.7436,1,0.9488,0.7436,0.5898,0.282,0.3846,0.1794,0.4872,0.6924,-0.3778,0.0222,0.3334,0.6444,0.9112,0.9112,0.6444,0.3778,0.2888,0.1556,0.1112,0.2,0.3778,0.6444,0.8666,1,0.9556,0.6444,0.5556,0.4666,0.5112,0.5556,0.5556,0.6,0.6444,0.3334,0.3334,0.2,0.1112,-0.2444,-0.1556,-0.2444,-0.244,0.0976,0.5122,0.7318,0.9024,1,1,0.7804,0.5854,0.5854,0.756,0.4878,0.2196,0.2196,0.0976,-0.0732,-0.0244,-0.0976,-0.122,-0.2196,-0.1952,0.0244,0.2682,0.2682,0.0976,-0.0488,-0.0976,-0.4634,-0.4878,-0.561,-0.3414,0.0488,-1,-1,-1,-1,-1,-0.9628,-0.9566,-0.9544,-0.944,-0.8312,-0.531,0.5032,0.9928,0.7164,0.6688,0.679,0.7122,0.764,0.7464,0.7454,-0.0218,-0.5984,-0.6842,-0.5538,0.2712,0.4658,0.472,0.3624,0.3344,0.0662,-0.204,-0.2506,-0.2226,-1,-1,-1,-1,-1,-0.9728,-0.9682,-0.969,-0.9726,-0.756,-0.1592,-0.1016,0.5456,0.7054,0.9044,0.9392,0.9038,0.7614,0.5506,0.0632,-0.5938,-0.843,-0.8844,-0.7702,-0.4106,-0.3058,-0.3466,-0.4506,-0.4928,-0.6282,-0.7414,-0.7462,-0.7146,-1,-1,-1,-1,-1,-0.7468,-0.6934,-0.7734,-0.8534,-0.7,0.6832,-0.64,-0.8268,-0.7934,-0.7868,-0.7,-0.7334,-0.7934,-0.82,-0.82,-0.85,-0.96,-0.93,-0.8234,-0.8734,-0.89,-0.9334,-0.96,-0.96,-0.96,-0.9668,-0.9434,-0.9668,-1,-1,-1,-1,-1,-0.7428,-0.9714,-1,1,1,1,1,1,1,-0.2572,-0.6572,-0.2572,0.7142,1,1,1,1,0.0286,1,1,-0.6572,-0.8,-0.7428,0.5714,1,-0.1714,-0.3428,-0.8286,0.834,0.834,0.8934,0.9502,0.9502,1,1,1,1,1,-0.0802,-0.0802,-0.096,-0.2624,-0.2624,-0.4122,-0.4676,-0.605,-0.8034,-0.6872,-0.5466,-0.7058,-0.21,-0.227,0.345,0.641,0.87,1,-0.6666,-0.1212,0.0152,0.0454,0.0152,0.1364,0.1516,-0.0606,0.4394,0.4696,0.409,0.3334,0.606,0.5304,0.4848,0.6666,0.6666,0.8636,1,0.9546,0.8788,0.909,0.8182,0.8484,0.7424,0.5304,0.4696,0.6212,0.4696,0.4242,-0.1212,-0.2728,-0.7888,-0.6274,-0.4534,-0.354,-0.4782,-0.615,-0.4038,-0.3416,0.0434,-0.0434,-0.0932,0.205,0.3914,0.3044,0.2298,0.5156,0.7268,0.8012,0.7142,0.7888,0.913,0.851,0.8012,0.6398,0.851,0.8012,1,0.9378,0.764,0.59,0.59,0.056,0.1408,0.4074,0.4074,0.2,-0.1112,-0.2296,0.2,0.1408,0.4666,0.3186,0.2,0.6888,0.8518,0.6148,0.4074,0.4666,0.9408,1,0.8666,0.8666,0.9704,0.8962,0.9556,0.674,0.9704,0.8074,0.7482,0.6888,0.926,0.7334,0.5852,0.274,0.2628,-1,-1,1,-1,-1,1,-0.7,-1,0.4778,0.8344,0.758,0.7834,0.8344,0.4778,0.2994,0.172,-0.0828,-0.0956,-0.0956,0.1848,0.3886,0.414,0.414,0.6688,0.5668,0.5286,0.707,1,0.8472,0.6306,0.2866,0.223,0.465,0.7708,0.8344,0.172,0.0828,0.1082,0.0956,-0.3248,'23'
-0.4546,-0.0378,0.0606,0.1516,0.5304,0.6212,0.6666,0.5758,0.3788,0.3484,0.2424,0.2728,0.3182,0.3636,0.3712,0.5,0.5152,0.7804,0.8788,0.9318,0.9318,0.909,0.9016,0.8484,0.9016,1,0.8636,0.7424,0.7878,0.7122,0.5606,0.606,-0.238,0.1786,0.1428,0.3512,0.6488,0.7976,0.6904,0.7916,0.5774,0.5536,0.3512,0.4108,0.387,0.4346,0.5298,0.494,0.7798,0.75,0.9404,0.8928,1,0.887,0.8512,0.8214,0.9226,0.8036,0.869,0.744,0.8036,0.6488,0.6846,0.5178,-0.228,0.2632,0.235,0.4246,0.6422,0.8736,0.7964,1,0.8316,0.4386,0.3894,0.4878,0.4526,0.4948,0.7264,0.7754,0.8666,0.8666,0.986,0.9578,0.972,0.8948,0.8386,0.7684,0.8246,0.6842,0.7474,0.593,0.628,0.5508,0.4106,0.3824,-0.2632,0.2422,0.186,0.3474,0.579,0.8036,0.8106,1,0.8456,0.3824,0.5298,0.635,0.593,0.6632,0.7122,0.7614,0.9158,0.9228,0.9018,0.8736,0.8456,0.8176,0.7964,0.7684,0.7544,0.7052,0.6562,0.614,0.572,0.5018,0.614,0.5158,-0.3308,0.1654,0.1278,0.3008,0.579,0.7444,0.8046,0.9248,0.6692,0.7518,0.6766,0.7142,0.6842,0.6992,0.827,0.7744,1,0.9098,0.9022,0.782,0.6692,0.6542,0.7218,0.4662,0.218,0.3308,0.3984,0.218,0.218,0.3384,0.3234,0.361,-0.3754,0.022,0.1104,0.2366,0.6594,0.672,0.7982,0.6972,0.735,0.5772,0.5142,0.5772,0.6088,0.7034,0.735,0.8802,0.9622,1,0.9622,0.899,0.7792,0.735,0.5962,0.3186,0.243,0.1798,0.1104,0.142,0.1608,0.0978,-0.0726,-0.0284,-0.5258,-0.1202,0.2096,0.1616,0.4982,0.4708,0.3952,0.5052,0.3884,0.1202,-0.189,-0.086,0.1202,0.292,0.3608,0.6908,0.8214,1,0.9794,0.9794,0.842,0.7388,0.6632,0.2234,0.0722,0.024,0.024,-0.0722,-0.079,-0.0928,-0.0652,-0.134,-0.5744,-0.1064,0.0638,0.0638,0.4042,0.6596,0.6596,0.149,0.4042,0.3618,0.0638,0.3618,0.4042,0.2766,0.4042,0.532,0.4468,0.7446,0.8724,0.7446,0.9148,1,0.8724,0.617,0.9148,0.9574,0.7872,0.7872,0.7446,0.7022,0.4894,0.4468,-0.4516,-0.0322,0,0.1612,0.5806,0.6452,0.6774,0.6774,0.4194,0.2904,0.2258,0.0646,0.129,0.387,0.4194,0.387,0.3548,0.8064,0.7096,1,0.9678,0.742,0.9032,0.9678,1,1,0.871,0.613,0.8388,0.5806,0.5484,0.6774,-0.3644,0.0468,0.1028,0.215,0.6262,0.6636,0.7944,0.7384,0.7758,0.701,0.57,0.6074,0.6448,0.7384,0.7384,0.9252,0.8878,1,0.8878,0.944,0.701,0.701,0.6262,0.5514,0.2336,0.1214,0.0654,0.215,0.1962,0.215,0.215,0.2524,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9568,-0.9594,0.286,0.8488,0.9792,0.9006,0.9576,0.9896,0.924,0.905,0.644,0.4858,-0.3474,-0.891,-0.9446,-0.9498,-0.9586,-0.8946,-0.9568,-0.955,-0.9464,-0.949,-0.9498,-0.9412,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.985,-0.9892,-0.0058,0.8478,0.6772,0.285,0.2472,0.478,0.3572,0.413,0.2608,0.0482,-0.632,-0.9612,-0.9738,-0.9824,-0.9852,-0.8982,-0.7722,-0.6542,-0.6366,-0.6038,-0.5934,-0.4258,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9068,-0.87,-0.5734,-0.56,-0.7134,-0.7334,-0.6934,-0.6468,-0.5934,-0.68,-0.52,-0.5,-0.655,-0.7968,-0.7468,-0.77,-0.7834,-0.2434,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,1,-0.6858,-0.8286,-0.7714,-0.3428,-0.1142,1,1,1,1,-0.4,-0.8572,1,1,1,-0.5428,-1,-0.9142,-0.9142,-0.8286,1,1,1,1,1,1,1,1,1,1,0.7386,0.7688,0.7688,0.7072,0.7262,0.7144,0.6006,0.5012,0.3074,-0.2404,-0.76,-0.6824,-0.9904,-0.5168,0.6956,0.869,0.355,1,-0.0114,0.2728,0.4772,0.3636,0.466,0.659,0.9432,0.7272,0.784,0.591,1,0.8978,0.625,0.4886,0.6022,0.216,0.2614,0.2046,0.5454,0.6136,0.534,0.534,0.2728,0.1818,0.375,0.375,0.3636,0.3636,0.3068,0.0796,0.2272,0.091,-0.1282,0.2308,0.559,0.5794,0.1282,0.6512,0.6616,0.6924,0.6206,0.2924,1,0.8052,0.5794,0.2924,0.2718,0.2616,-0.1282,0.0872,0.1384,0.118,0.3128,0.1488,0.2512,0.2308,0.0052,-0.0462,0.2718,0.282,0.0462,-0.0052,-0.0564,-0.2616,-0.2534,0.2,0.3066,0.3734,0.48,0.2934,1,0.68,0.64,0.5066,0.88,0.84,0.9466,0.5066,0.8,0.5866,0.52,0.3866,0.48,0.5866,0.8134,0.5334,0.5066,0.3734,0.24,0.2534,0.16,0.3066,0.1334,0.1734,0.1734,-0.1066,-0.9916,1,-1,-1,-1,-1,-1,-1,1,-0.7306,-0.6892,-0.4716,-0.4196,-0.3056,-0.316,-0.1814,-0.0052,0.0362,-0.0362,-0.088,-0.0052,0.1502,0.2538,0.0778,0.057,0.0984,0.1814,0.2642,0.3472,0.3576,0.5336,0.5854,0.6892,0.7928,0.8032,0.6684,0.7824,0.8342,0.8756,1,0.741,'24'
-0.4958,-0.2308,0.1368,0.2736,0.453,0.7436,0.7606,0.282,0.017,0.0428,0.0598,0.0854,0.1368,0.3076,0.3076,0.3846,0.641,0.8034,0.906,1,0.9572,0.7778,0.8632,0.8974,0.9316,0.8548,0.8462,0.7008,0.6752,0.6924,0.718,0.812,-0.459,-0.1804,0.0902,0.2132,0.5328,0.6558,0.7296,0.4098,0.2132,0.0984,0.0164,0.041,0.2378,0.205,0.295,0.5328,0.6066,0.7786,0.9672,0.9918,0.8606,0.7622,0.7786,1,0.9836,0.795,0.6804,0.705,0.6066,0.5902,0.6722,0.754,-0.4912,-0.1708,0.0104,0.1428,0.5262,0.5958,0.7422,0.5262,0.129,0.122,0.0452,0.122,0.317,0.2614,0.324,0.568,0.5888,0.8188,0.8746,1,0.784,0.6168,0.7422,0.6656,0.6724,0.575,0.54,0.4494,0.547,0.4634,0.3588,0.3868,-0.4376,-0.1484,0.1094,0.25,0.5468,0.8204,0.8984,0.6172,0.5156,0.4376,0.4062,0.375,0.4376,0.414,0.4376,0.6718,0.7578,0.8984,1,0.9766,0.8046,0.7422,0.7422,0.8984,0.836,0.7032,0.6406,0.5312,0.4688,0.4766,0.5312,0.336,-0.5458,-0.2828,0.0358,0.1394,0.3148,0.7928,0.753,0.8168,0.5458,0.4422,0.3626,0.4742,0.4342,0.506,0.5856,0.745,0.8804,1,0.9522,0.9682,0.9522,0.9044,0.9124,0.9282,0.7928,0.753,0.5698,0.506,0.3546,0.3864,0.3546,0.2032,-0.7072,-0.2358,-0.0786,-0.05,0.3072,0.6642,0.7572,0.55,0.3928,0.3858,0.3786,0.2428,0.35,0.5428,0.5572,0.7142,0.9214,1,0.8786,0.8572,0.9286,0.8572,0.9142,0.7786,0.7428,0.5072,0.5358,0.5072,0.4858,0.3072,0.3572,0.45,-0.8314,-0.249,-0.1188,-0.0574,0.456,0.7702,0.7702,0.295,0.157,0.1648,0.2184,0.157,0.203,0.318,0.4406,0.6322,0.8008,1,0.9616,0.8928,0.9616,0.9616,0.7854,0.6016,0.5402,0.3486,0.295,0.295,0.295,0.0728,0.157,0.2874,-0.6786,-0.3214,0,0.2142,0.2858,0.6428,0.6428,0.0714,-0.2858,-0.1786,-0.1072,-0.0358,0,0.2142,0.2142,0.1428,0.4642,0.7142,0.6428,1,0.8572,0.6428,0.7142,0.6786,0.8214,0.75,0.6786,0.6428,0.5358,0.4642,0.6072,0.75,-0.5,-0.2334,0.0666,0.1334,0.5,0.7,0.7334,0.2334,0.1334,0.0666,0,-0.0666,0.1666,0.2,0.2666,0.5,0.5666,0.7334,0.9666,0.9334,0.8666,0.6666,0.7666,1,0.8666,0.9334,0.6334,0.6666,0.6334,0.6,0.6666,0.7666,-0.6786,-0.25,-0.0892,-0.0358,0.375,0.5714,0.8036,0.75,0.4822,0.3572,0.3928,0.3392,0.3214,0.5178,0.5536,0.6964,0.9464,0.9642,1,0.9464,0.9642,0.9464,1,0.9108,0.7142,0.625,0.625,0.4464,0.5178,0.5,0.4464,0.4822,-1,-1,-1,-1,-1,-1,-0.9274,-0.938,-0.9486,-0.9516,-0.2312,0.562,0.6208,0.7236,0.8474,0.9442,0.9064,0.8248,0.7644,0.9592,0.5694,-0.2508,-0.7598,-0.9004,-0.9244,-0.9366,-0.9472,-0.9532,-0.9034,-0.9532,-0.9472,-0.9516,-0.9366,-1,-1,-1,-1,-1,-1,-0.9858,-0.9874,-0.9878,-0.9878,-0.4824,0.1866,0.2794,0.3238,0.2396,0.168,0.0714,0.315,0.9004,0.9118,0.1588,-0.5708,-0.885,-0.9504,-0.974,-0.9812,-0.9862,-0.9872,-0.876,-0.684,-0.564,-0.6628,-0.724,-1,-1,-1,-1,-1,-1,-0.74,-0.89,-0.7934,-0.89,-0.62,-0.46,-0.4268,-0.4534,-0.5068,-0.6734,-0.7268,-0.7534,-0.6068,-0.6068,-0.6068,-0.5668,-0.5634,-0.39,-0.6168,-0.74,-0.78,-0.88,-0.32,1,1,1,1,-1,-1,-1,-1,-1,-1,-0.8858,-1,-1,1,1,1,0.9142,-0.5714,-0.1142,-0.2286,-0.7428,-0.8,-0.5428,1,1,1,1,0.6572,0.5428,-0.5142,-0.8858,1,1,1,-0.3428,-0.7428,-0.7142,1,1,1,1,1,1,1,1,1,1,0.6796,0.6796,0.6674,0.6674,0.6198,0.6478,0.591,0.459,0.3866,0.1756,-0.5734,-0.7294,-0.3202,0.1258,0.2492,0.321,0.2766,1,-0.0204,0.1836,0.3062,0.5102,0.3878,0.4286,0.4694,0.5918,0.6734,0.8368,0.8776,1,1,1,0.9592,0.8776,0.8776,0.8776,0.8776,0.8368,0.8368,0.7552,0.6326,0.5918,0.347,0.2654,-0.0204,0.0612,-0.0204,-0.102,-0.1428,-0.4694,-0.2322,-0.0714,0.5,0.4286,0.3036,0.1428,0.3036,0.3928,0.5358,0.8392,0.9642,0.9286,1,1,0.75,0.7322,0.7678,0.875,0.8214,0.6964,0.6428,0.7322,0.6964,0.3928,0.2142,0,-0.0536,-0.0358,-0.4464,-0.3214,-0.2858,-0.6072,-0.1812,0.244,0.6062,0.685,0.2756,0.1968,0.307,0.37,0.6692,0.9842,0.9842,0.9056,1,0.8898,0.748,0.7166,0.8426,0.9528,0.9056,0.8582,0.6536,0.5748,0.3858,0.1024,0.1496,-0.0552,-0.1654,-0.1968,-0.4488,-0.4646,-0.3858,-0.559,0.3876,-1,-1,1,-1,-1,-1,-0.8334,1,-0.8782,-0.7258,-0.6244,-0.6244,-0.5126,-0.4214,-0.2182,-0.1574,-0.1574,-0.1776,-0.2182,-0.2284,-0.1776,-0.0862,-0.2488,-0.0254,0.066,0.0762,0.0862,0.137,0.1574,0.2488,0.4112,0.5532,0.6752,0.7056,0.6346,0.6244,0.6244,0.533,1,0.7158,'24'
-0.0468,0.301,0.8762,0.9934,1,0.679,0.3812,0.224,0.0904,-0.311,-0.4616,-0.4716,-0.6622,-0.7526,-0.6288,-0.5886,-0.3914,-0.572,-0.8428,-0.8896,-0.7024,-0.7658,-0.786,-0.6556,-0.281,-0.2274,-0.6254,-0.6054,-0.5852,-0.4414,-0.1372,-0.1706,-0.417,-0.1758,0.139,0.312,0.4228,0.7454,0.965,1,0.8932,0.6968,0.4286,0.0554,-0.0982,-0.1642,-0.3022,-0.4266,-0.4538,-0.5044,-0.5082,-0.5822,-0.481,-0.4324,-0.3334,-0.1546,0.137,0.1836,0.1428,-0.0068,-0.067,-0.0924,-0.0398,0.0398,-0.4772,-0.257,0.0834,0.0988,0.2158,0.5752,0.7678,0.8074,1,0.9294,0.9552,0.6474,0.362,0.2708,0.1246,-0.061,-0.0972,-0.1626,-0.2124,-0.2622,-0.209,-0.1814,-0.104,0.068,0.2726,0.3258,0.233,0.0662,-0.0214,-0.0748,-0.0748,-0.0696,-0.49,-0.2936,0,0.0752,0.323,0.499,0.7854,0.9486,1,0.945,0.9284,0.9762,0.912,0.8,0.5744,0.3412,0.1944,0.2496,0.178,0.0734,0.0496,0.077,0.2018,0.4348,0.4954,0.477,0.2826,0.1908,0.0496,0.0202,0.055,0,-0.5034,-0.2382,-0.029,0.0508,0.36,0.5692,0.7906,0.9022,1,0.8266,0.6052,0.681,0.7568,0.9542,0.986,0.8604,0.7548,0.7048,0.641,0.5094,0.4278,0.5374,0.5174,0.6152,0.5872,0.352,0.2184,0.2164,0.1166,0.1326,0.1226,0.0348,-0.5374,-0.0978,0.0012,0.2382,0.6088,0.8044,0.9654,0.756,0.2888,0.2428,0.0494,0.1094,0.1484,0.2658,0.3256,0.4844,0.5904,0.8204,0.9378,1,0.9172,0.8964,0.7928,0.8388,0.756,0.657,0.6156,0.634,0.397,0.2888,0.2406,0.2912,-0.5688,-0.135,0.2242,0.715,0.829,0.6356,0.202,0.0954,-0.1598,-0.2936,-0.2664,-0.1672,-0.197,-0.145,-0.1078,-0.0086,0.1276,0.1872,0.42,0.658,0.7918,0.9776,0.9504,0.8984,0.8364,0.9604,1,0.9752,0.7472,0.554,0.5266,0.492,0.5,0.5624,1,0.875,0.5,0.25,0,-0.0624,0.1876,0,0.1876,0.25,0.25,0.4376,0.375,-0.0624,0.25,0.1876,0.25,0.1876,-0.125,0,0.0624,0.5624,0.6876,0.625,0.1876,0,0.125,-0.25,-0.125,0.1876,0.3548,0.9354,1,0.8064,0.613,0.4838,0.4194,0.2258,-0.1612,0.1612,0.3548,0.4194,0.4194,0.1612,0.4838,0.5484,0.5484,0.5484,0.1612,0.2258,-0.2258,-0.1612,-0.0968,0.2258,0.3548,0.2258,-0.613,0.1612,0.1612,0.1612,0.2258,0.4194,-0.5604,-0.2308,-0.1208,0.011,0.1648,0.6264,1,0.912,0.3186,0.3626,0.011,0.2528,0.2968,0.3406,0.5164,0.5824,0.934,0.978,0.956,0.7802,0.6484,0.6264,0.5824,0.6704,0.4726,0.4066,0.1868,0.1428,-0.1868,-0.2968,-0.4286,-0.2308,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7836,-0.446,0.5846,0.5704,0.7878,0.8806,0.6132,0.4664,0.2836,0.0306,-0.4868,-0.4428,-0.6082,-0.7428,-0.8102,-0.8786,-0.8664,-0.8888,-0.9072,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9606,-0.896,-0.52,-0.0294,0.4148,0.8742,0.8546,0.691,0.0618,-0.225,-0.7828,-0.846,-0.8882,-0.9252,-0.9318,-0.9304,-0.9394,-0.944,-0.942,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.9172,-0.7644,-0.6216,-0.616,-0.5788,-0.6134,-0.5788,-0.7094,-0.84,-0.74,-0.8614,-0.77,-0.53,-0.38,-0.22,-0.27,-0.4434,-0.1734,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,0.1428,1,0.2858,-0.6572,-0.7714,-0.6858,-0.7428,-0.6,-0.1428,0.4,-0.6,-0.9428,-0.8,-0.8572,-0.8,-0.8,-0.6,-0.3428,-1,-1,-1,-1,0.2998,0.3734,0.4444,0.5558,0.6852,0.822,0.969,1,1,1,-0.341,-0.2996,-0.2576,-0.2204,-0.1624,-0.0634,0.0052,-0.0132,-0.279,-0.2728,-0.4134,0.7882,-0.9602,-0.9574,-0.9502,-0.9232,-0.8734,-1,0.8032,0.7378,0.246,0.4754,0.541,0.2132,0.6722,0.6394,0.6394,0.4426,0.541,0.377,1,0.9016,0.5738,0.4098,0.4426,0.4098,0.2786,0.3442,0.4098,0.5738,0.3442,0.246,0.377,0.1476,0.3442,0.246,0.4754,0.377,0.246,0.0164,1,0.973,0.2162,0.2702,0.7568,0.4054,0.4594,0.919,0.5676,0.6756,0.8648,0.5946,0.1622,0.4594,0.054,0.027,0.1892,0.2432,0.027,-0.027,0.1892,0,-0.027,-0.1352,-0.027,0.1082,0.1082,0.081,-0.1892,-0.2162,-0.027,-0.2702,0.9184,1,0.7142,0.1632,0.5714,0.8368,0.5102,0.7346,0.6122,0.6122,0.4898,0.2448,0.5714,0.5306,0.2448,0.1836,0.4082,0.347,0.4082,0.449,0.3878,0.3674,0.347,0.3674,0.3674,0.4082,0.3062,-0.0204,0.2858,0.2654,0.3062,-0.1632,-0.9932,1,-1,-1,-1,-0.6,0.2,-1,-1,-0.4468,-0.2624,0.0496,0.4184,0.0354,-0.1348,0.0638,0.007,0.5178,0.7304,0.773,0.7022,0.7164,0.688,0.5744,0.3334,0.4894,0.8866,0.305,0.4894,0.5744,0.4468,0.39,0.2198,0.4752,0.7022,0.7304,0.7304,1,0.8156,-0.0496,-0.2766,'25'
-0.3004,0.018,0.3484,0.4654,0.7298,0.982,1,0.8258,0.6486,0.4954,-0.063,-0.3544,-0.3484,-0.5316,-0.6006,-0.8138,-0.913,-0.8048,-0.6756,-0.7688,-0.8018,-0.7598,-0.5256,-0.4954,-0.2312,0.1862,0.1382,-0.2642,-0.1562,-0.057,0.2282,0.093,-0.4352,-0.1552,0.0494,0.1224,0.3552,0.6706,0.713,1,0.9058,0.8448,0.4918,0.2658,0.1458,-0.1318,-0.1694,-0.1458,-0.2588,-0.233,-0.2918,-0.2918,-0.207,-0.1906,-0.1764,-0.0894,0.0848,0.2894,0.4542,0.2824,0.2118,0.087,0.0542,0.1058,-0.425,-0.1206,0.0688,0.1252,0.407,0.5986,0.7272,0.9932,1,0.9504,0.8286,0.6166,0.4228,0.3866,-0.0012,-0.1026,-0.053,-0.071,-0.1364,-0.1792,-0.1386,-0.1162,-0.1816,-0.159,-0.0462,0.2288,0.2626,0.371,0.2244,0.222,0.0778,0.035,-0.4416,-0.1814,0.0836,0.0812,0.2744,0.6564,0.7208,0.9404,0.9856,1,0.9546,0.9332,0.7876,0.6062,0.3914,0.1098,0.0358,0.1264,0.0716,0.0096,-0.0644,-0.0692,0.0168,0.1194,0.3008,0.401,0.4152,0.3412,0.0406,-0.0238,-0.0358,0.0692,-0.5274,-0.2764,-0.0814,-0.0174,0.271,0.474,0.7384,0.9252,0.9786,0.797,0.8398,0.8532,0.968,1,0.8986,0.5942,0.4098,0.3352,0.3164,0.319,0.3084,0.3592,0.4472,0.5782,0.6208,0.57,0.3244,0.199,0.02,-0.0468,-0.1376,-0.0548,-0.6006,-0.3644,-0.2762,-0.131,0.035,0.3618,0.6914,1,0.9144,0.489,0.4968,0.5098,0.5512,0.6446,0.7744,0.847,0.7432,0.6784,0.5176,0.4578,0.5072,0.5098,0.6888,0.7796,0.6732,0.572,0.4578,0.2504,0.297,0.2218,0.2296,0.2426,-0.5092,-0.2968,-0.194,-0.1044,0.184,0.7944,0.8606,0.6716,0.34,0.131,-0.068,0.1144,0.0514,0.0714,0.1608,0.4428,0.6484,0.7148,0.917,0.937,0.8806,0.9568,0.917,1,0.9868,0.9966,0.9004,0.791,0.665,0.6054,0.539,0.4262,0.2728,0.5,0.909,0.8636,1,0.8182,0.7728,0.7272,0.5,0.3636,-0.1364,-0.8182,-0.5,-0.591,-0.3182,-0.3636,-0.6364,-0.4546,-0.3182,-0.4546,-0.591,-0.3636,-0.4546,-0.3636,0.3182,0.4546,0.3182,-0.1818,-0.1818,0.409,0.5,0.1818,-0.3044,0.174,0.3914,0.7392,1,0.913,0.826,0.6522,0.5218,0.3044,-0.0434,-0.174,-0.3478,-0.4782,-0.6956,-0.7392,-0.826,-0.6086,-0.5652,-0.6522,-0.7392,-0.9566,-0.6522,-0.4782,-0.4782,-0.3478,-0.5652,-0.6522,-0.5652,-0.1304,0.087,-0.0434,-0.5714,-0.3878,-0.2858,-0.1428,0,0.1836,0.6734,0.9592,0.9592,0.5714,0.6938,0.6734,0.8164,1,1,0.9388,0.5306,0.449,0.3266,0.3674,0.3878,0.449,0.5306,0.6734,0.6734,0.4694,0.3266,0.1224,0.0612,0.1428,-0.0816,0.1428,-1,-1,-1,-1,-0.9806,-0.973,-0.9692,-0.9616,-0.9422,-0.7254,-0.2182,0.709,0.6006,0.6002,0.655,0.6188,0.5106,0.2658,0.0716,-0.1828,-0.38,-0.6962,-0.6996,-0.677,-0.719,-0.7764,-0.8476,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9926,-0.9924,-0.9922,-0.9914,-0.9876,-0.9534,-0.8446,-0.4192,0.1204,0.302,0.5298,0.7094,0.914,0.628,0.5174,0.27,-0.1498,-0.7678,-0.807,-0.8368,-0.858,-0.9296,-0.949,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5668,-0.7234,-0.7368,-0.9434,-0.71,-0.92,-0.85,-0.75,-0.612,-0.62,-0.616,-0.596,-0.586,-0.528,-0.54,-0.582,-0.631,-0.6,-0.6034,-0.7834,-0.76,-0.8134,-0.4134,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,-0.9142,-0.9142,-1,-0.6,1,1,1,1,-0.2,-0.6572,-0.8286,-0.8,-0.6572,-0.4858,-0.2,0.6286,0.7142,-0.3142,-0.7714,1,0.7714,-0.2,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.348,0.381,0.4248,0.4466,0.4802,0.5374,0.4684,0.3154,-0.0428,-0.2684,-0.56,0.2,-0.8224,-0.736,-0.4842,-0.2868,-0.206,-0.2834,-0.4508,0.2746,0.2954,0.7668,0.6218,0.4922,0.5492,0.741,0.715,0.4352,1,0.8602,0.6684,0.6218,0.3368,0.2902,0.2488,0.0932,0.057,0.0778,0.1814,0.2746,0.1554,0.1762,0.3212,0.2332,0.3938,0.3056,-0.0156,0.1296,0.0052,-0.4508,0.5228,0.3136,0.5636,0.809,0.7728,0.7454,0.8636,0.8728,0.8318,0.6272,1,0.8364,0.85,0.85,0.5364,0.459,0.4136,0.4136,0.3364,0.4546,0.5636,0.559,0.3272,0.509,0.5272,0.6,0.559,0.4818,0.3818,0.35,0.3318,-0.2682,0.779,1,0.9928,0.674,0.7102,0.3478,0.4928,0.1992,0.3696,0.2862,0.4856,0.3732,0.5978,0.5508,0.2138,0.221,0.2682,-0.029,0.0688,0.1014,0.0218,0.0508,0.0724,0.3044,0.2282,0.25,0.384,0.4276,0.366,0.0724,-0.0144,-0.2718,-0.9952,1,-1,-1,-1,-0.8,-1,-1,-1,0.2262,0.381,0.4286,0.3096,0.131,-0.1666,0.0714,0.1548,0.1072,0.2024,0.7738,0.9524,0.9524,1,0.7858,0.619,0.4524,0.9286,0.8452,0.4048,0.3334,0.2976,0.0714,-0.1666,-0.1666,0.0952,0.2024,-0.0238,0.3214,0.2858,0.2024,-0.4642,'25'
-0.1408,0.291,0.9248,0.9296,0.0846,-0.3286,-0.4694,-0.4226,-0.4226,-0.5822,-0.2582,-0.2676,-0.3052,-0.2816,-0.2066,-0.263,0.0234,0.1502,0.5164,0.709,0.7512,0.8638,0.8874,0.6854,0.7558,0.8544,1,0.9202,0.7512,0.3146,0.1408,0.0658,-0.3442,0.0244,0.4094,0.491,-0.08,-0.3964,-0.5368,-0.6084,-0.5792,-0.7684,-0.752,-0.6118,-0.4616,-0.478,-0.5562,-0.3964,-0.2952,-0.1844,-0.204,0.0082,0.1126,0.1942,0.6412,0.7716,1,0.8206,0.8238,0.9968,0.9282,0.4976,0.2528,0.2888,-0.3984,-0.057,0.3398,0.3952,-0.2358,-0.4504,-0.5284,-0.626,-0.665,-0.665,-0.7658,-0.6944,-0.73,-0.5902,-0.5186,-0.4178,-0.444,-0.2976,-0.109,-0.0276,0.0926,0.1772,0.3724,0.6618,0.7854,1,0.8894,0.9252,0.8374,0.7952,0.6846,0.5024,-0.4526,-0.0538,0.4462,0.3988,-0.3512,-0.4906,-0.5474,-0.6614,-0.6298,-0.7944,-0.7406,-0.5822,-0.5064,-0.4272,-0.4368,-0.4336,-0.3196,-0.345,-0.3006,-0.1392,-0.0254,0.0538,0.25,0.5444,0.864,1,0.9146,0.8228,0.7848,0.8102,0.7816,0.557,-0.4712,0.5058,0.7394,0.4252,-0.2452,-0.3026,-0.5824,-0.5326,-0.613,-0.8008,-0.9272,-0.7702,-0.7702,-0.6782,-0.6476,-0.6206,-0.4636,-0.5824,-0.4252,-0.3256,-0.2758,-0.1494,0.1034,0.4942,0.8544,1,0.9464,0.7816,0.7472,0.7204,0.7432,0.4482,-0.4516,0.848,0.9216,0.6268,-0.0738,-0.3502,-0.424,-0.576,-0.4378,-0.5438,-0.9032,-0.4792,-0.4654,-0.6314,-0.5208,-0.553,-0.5852,-0.4562,-0.493,-0.424,-0.507,-0.5346,-0.0692,0.3272,0.788,1,0.9308,0.7236,0.7236,0.7096,0.7374,0.4332,-0.5,0.4068,0.8136,0.6526,0.0466,-0.4238,-0.2754,-0.2966,-0.4534,-0.6102,-0.8094,-0.2712,-0.2204,-0.2204,-0.322,-0.5338,-0.4152,-0.3136,-0.428,-0.394,-0.2542,-0.2458,0.0382,0.4576,0.6906,1,0.9662,0.856,0.7372,0.6906,0.6694,0.3984,-0.1352,0.3514,0.6756,0.6756,0.1892,-0.2432,-0.5676,-0.2432,-0.3514,-0.1352,0.1352,0.3514,0.027,0.1352,-0.1892,-0.1352,0.5136,0.4054,0.6216,0.7838,0.8378,1,0.8378,0.7298,0.5676,0.6756,0.946,1,0.7298,0.2972,0.1352,0.2972,-0.1334,0.4666,1,0.9334,0.0666,-0.3334,-0.4666,-0.5334,-0.6,-0.4,-0.1334,-0.0666,-0.0666,-0.1334,-0.4,0.1334,0.2,-0.2,0.2666,0.6666,0.3334,0.6,0.6,0.6,0.4,0.8,0.7334,0.6,0.5334,0.4,0.3334,0.4,-0.2174,0.7174,0.8478,0.4566,0.087,-0.0434,-0.3044,-0.3478,-0.3696,-0.4782,-0.4782,-0.3478,-0.4566,-0.3044,-0.2826,-0.2174,-0.1304,-0.3044,-0.1522,-0.2174,0.0434,0,0.2826,0.5652,0.7174,1,0.8044,0.8044,0.8696,0.8478,0.913,0.5218,-0.728,-0.4634,-0.1838,-0.1628,-0.292,-0.4112,-0.5292,-0.5838,-0.6472,-0.7032,-0.4994,0.5192,0.8944,0.533,0.3776,0.2844,0.4758,0.9032,0.8112,0.2286,-0.1764,-0.4708,-0.492,-0.5478,-0.7268,-0.8274,-0.8572,-0.8622,-1,-1,-1,-1,-1,-0.8462,-0.7168,-0.5902,-0.5508,-0.5898,-0.5838,-0.5956,-0.5042,-0.1656,0.048,-0.0352,0.047,0.4274,0.485,0.5528,0.8114,0.8862,0.4712,0.1356,-0.2868,-0.5406,-0.5774,-0.6566,-0.727,-0.8104,-0.7366,-0.7752,-0.7698,-1,-1,-1,-1,-1,-0.79,-0.8468,-0.9034,-0.8234,-0.36,-0.0468,0.28,0.4766,1,1,0.93,-0.48,-0.6976,-0.345,-0.345,-0.28,-0.18,-0.8246,-0.9178,-0.9556,-0.8512,-0.5378,-0.7234,-0.7034,-0.4934,-0.0834,0,-0.15,-1,-1,-1,-1,-1,-0.3142,-0.2,-0.0858,0.2286,0.0572,-0.2572,-0.7714,-0.6858,-0.3714,-0.5714,0.2,0.5428,0.3428,-0.6286,-0.8572,-0.9142,-0.7714,-0.7428,-0.3428,-0.3142,-0.5142,-0.6,-0.1428,-0.8572,0.2,0.0858,-0.8286,-0.4858,-1,-1,-1,-1,-1,-0.0828,-0.1044,-0.1186,-0.1154,-0.1142,-0.1146,-0.11,-0.1164,-0.0828,-0.1316,0.6646,0.749,0.7498,0.8032,0.8716,0.9688,1,1,1,1,-0.4934,-0.0236,-0.007,-0.2532,0.024,0.2506,0.3124,-0.9666,-0.0396,0.3598,0,-0.633,-0.6654,-0.5828,-0.5144,-0.2698,0.0396,-0.151,-0.1654,-0.1582,0.1474,0.0684,0.0432,-0.0684,0.0252,-0.0108,0.0684,0.0576,0.108,0.1834,0.09,0.0864,0.1942,0.5972,1,0.8274,0.4892,0.5792,0.6366,0.2338,-0.3554,-0.0374,-0.4662,-0.5022,-0.5772,-0.6132,-0.3584,-0.3584,-0.0674,-0.1964,-0.0704,0.0614,0.1814,0.1694,0.1634,0.0284,0.1274,0.1274,0.1424,0.2444,0.0644,0.2024,0.3164,0.3674,0.4002,0.6732,1,0.955,0.5952,0.7962,0.7482,0.5802,-0.477,-0.109,-0.4848,-0.3746,-0.4296,-0.2352,-0.251,-0.1328,-0.067,0.1432,0.1274,0.1432,0.2352,0.3298,0.3114,0.1668,0.2274,0.2484,0.2142,0.2904,0.3666,0.335,0.3114,0.527,0.6558,0.8108,1,0.979,0.8396,0.8318,0.8554,0.6636,-0.938,-1,1,-1,1,0.6,-0.8,0.4666,1,-0.2244,-0.0068,0.1564,0.0612,-0.17,-0.279,-0.034,-0.0612,0.2244,-0.0068,0.5102,0.796,0.9728,0.9592,1,0.4286,0.4014,0.551,0.1972,0.3742,0.4014,0.483,0.3606,0.1564,0.3198,0.4694,0.2244,0.6598,0.7688,0.7006,0.2108,-0.102,'26'
-0.2022,0.221,0.6816,0.734,0.146,-0.3034,-0.3258,-0.4682,-0.472,-0.4832,-0.4794,-0.3072,-0.3034,-0.2022,-0.161,-0.1124,0.0636,0.1424,0.4308,0.7602,0.7828,0.97,0.8988,0.9812,0.9438,0.985,1,0.9888,0.8128,0.4344,0.131,0.2772,-0.37,0.0066,0.281,0.4014,0.0614,-0.2392,-0.4144,-0.4876,-0.4066,-0.4352,-0.3804,-0.3386,-0.3752,-0.2522,-0.3386,-0.2236,-0.1844,-0.1582,0.0274,0.0274,0.2236,0.519,0.6078,0.9738,0.979,1,0.9164,0.8562,0.7438,0.8196,0.4484,0.417,-0.4322,-0.1202,0.2174,0.2814,-0.2046,-0.422,-0.555,-0.5576,-0.5934,-0.5346,-0.6318,-0.5856,-0.509,-0.4654,-0.4194,-0.4016,-0.3094,-0.2558,-0.197,-0.0384,0.0332,0.22,0.422,0.6318,0.8976,1,0.9336,0.8388,0.6982,0.6214,0.5678,0.5012,-0.4638,0.0108,0.4052,0.2942,-0.4084,-0.507,-0.5686,-0.7534,-0.661,-0.7412,-0.8274,-0.658,-0.6734,-0.6764,-0.6148,-0.587,-0.5192,-0.4976,-0.3898,-0.1956,-0.1464,0.06,0.1896,0.5254,0.772,1,0.9816,0.7842,0.6118,0.396,0.3312,0.4114,-0.4092,0.6806,0.8842,0.3134,-0.2336,-0.3532,-0.481,-0.8404,-0.6806,-0.7446,-0.8004,-0.7884,-0.7326,-0.7406,-0.8164,-0.7366,-0.8484,-0.8802,-0.6686,-0.6208,-0.4092,-0.2574,-0.0778,0.3852,0.6168,0.9122,1,0.8004,0.4012,0.2136,0.1058,0.3454,-0.5178,0.4928,0.6608,0.5358,-0.1928,-0.4142,-0.6072,-0.6036,-0.7108,-0.8178,-0.8536,-0.5178,-0.5322,-0.525,-0.6142,-0.5392,-0.5608,-0.625,-0.5322,-0.2858,-0.3392,-0.2358,0.1142,0.225,0.7678,1,0.9428,0.6358,0.625,0.3536,0.575,0.5892,-0.501,0.4714,0.6932,0.4788,0.013,-0.342,-0.4824,-0.4344,-0.4306,-0.438,-0.4492,-0.3752,-0.3568,-0.3382,-0.257,-0.2754,-0.2532,-0.2606,-0.353,-0.1238,-0.0166,-0.0018,0.146,0.4086,0.8188,1,0.9446,0.7338,0.4788,0.4936,0.6304,0.4492,0.0212,0.234,0.4894,0.4042,0.1914,-0.1064,-0.2766,-0.234,-0.4042,-0.149,-0.0212,0.0212,0.0212,0.0212,-0.1064,-0.0638,-0.1064,0.4042,0.7872,1,0.9148,0.7446,0.617,0.5744,0.532,0.7022,0.2766,0.617,0.617,-0.0638,-0.234,0.234,-0.25,0.1,0.55,0.55,0.05,-0.35,-0.15,-0.4,-0.35,-0.5,-0.55,-0.45,-0.35,-0.15,-0.2,-0.05,0.3,0.15,0.4,0.85,0.9,0.75,0.55,0.55,0.7,0.8,1,0.95,0.6,0.1,-0.05,0.05,-0.4408,0.1612,0.4624,0.3334,-0.3764,-0.3978,-0.4838,-0.699,-0.7204,-0.6774,-0.699,-0.6344,-0.7204,-0.656,-0.5268,-0.613,-0.4624,-0.5484,-0.3978,-0.1828,-0.0538,0.1828,0.2258,0.4408,0.8494,1,0.9354,0.656,0.5698,0.4194,0.2904,0.4624,-0.62,-0.6008,-0.5934,-0.6882,-0.7168,-0.712,-0.755,-0.7434,-0.8034,-0.7932,-0.594,0.5504,0.9366,0.6608,0.5448,0.5074,0.5026,0.3544,0.027,-0.2562,-0.4322,-0.6016,-0.6718,-0.7304,-0.6998,-0.74,-0.8472,-0.9018,-0.9236,-0.9304,-1,-1,-1,-0.8828,-0.8694,-0.8546,-0.8326,-0.796,-0.8002,-0.8028,-0.7594,-0.6782,-0.3756,-0.1152,-0.2732,0.2072,0.7092,0.8296,0.4828,-0.101,-0.474,-0.5514,-0.6512,-0.6764,-0.8034,-0.8198,-0.7126,-0.819,-0.905,-0.9396,-0.9372,-0.933,-0.931,-1,-1,-1,-0.9068,-0.8134,-0.3868,0.1366,0.3632,0.5366,0.79,0.9,1,1,1,-0.429,-0.5156,-0.0312,0.1244,0.051,-0.389,-0.84,-0.809,-0.4578,-0.394,-0.456,-0.53,-0.31,-0.5,-0.7368,-0.6368,-0.2834,-0.4134,-0.1668,-1,-1,-1,0.4,1,1,-0.1428,-0.6572,-0.8858,-0.9714,-0.8858,-0.0858,0.1714,1,1,0.6,-0.6858,-0.9142,-0.6572,0.2,0.2,-0.7714,-0.9142,-0.6286,-0.4,-0.8286,-0.6572,0.7142,0.2286,-0.5142,-0.3714,-0.4858,-0.6286,-1,-1,-1,-0.0312,-0.0172,-0.0134,0.0146,0.0282,0.0608,0.0942,0.1046,0.038,-0.0774,0.849,0.9082,0.9292,1,1,1,1,1,1,1,-0.3866,0.0706,-0.0678,-0.3534,-0.3264,-0.1852,0.0082,-0.5,-0.156,0.1496,-0.0796,-0.6496,-0.691,-0.6338,-0.5222,-0.4682,-0.1306,-0.398,-0.398,-0.207,-0.172,0.121,0.0286,-0.105,-0.2292,-0.2452,-0.2994,-0.1592,-0.1816,0.0446,0.137,0.2452,0.363,0.6752,0.9872,1,0.8758,0.8312,0.844,0.621,-0.3696,-0.086,-0.767,-0.6556,-0.6102,-0.4962,-0.3292,-0.3544,-0.167,-0.1594,-0.0988,-0.076,0.0734,0.1772,0.0936,0.0254,0.0076,-0.0912,-0.038,0.005,0.1342,0.1164,0.1494,0.3494,0.4632,0.633,0.8912,1,0.6482,0.9012,0.7518,0.5012,-0.5054,-0.3164,-0.7452,-0.6158,-0.639,-0.3886,-0.3736,-0.4458,-0.051,0.1062,-0.0106,0.0148,0.0806,0.1804,0.1804,0.0892,-0.1146,0.0806,0.07,0.1804,0.3206,0.3482,0.344,0.4544,0.5606,0.7198,1,0.8854,0.9088,0.9256,0.8196,0.6136,-0.9572,-1,1,-1,1,-0.2,-0.6,0.8334,1,-0.1602,0.1602,0.0276,-0.2928,-0.3592,-0.2266,-0.2376,-0.348,-0.1934,-0.1382,0.0608,0.4144,0.7458,0.8012,0.4918,0.5912,0.3812,0.3922,0.5028,0.8674,1,0.8342,0.8012,0.569,0.2708,0.0608,0.1824,-0.1712,0.0386,-0.094,-0.2486,-0.5138,'26'
-0.6596,-0.1854,-0.0568,0.193,0.1904,0.2736,0.024,0.087,-0.0012,-0.0064,-0.0316,-0.1072,0.0064,0.0264,0.1424,0.425,0.5006,0.7452,0.7806,1,0.937,0.9066,0.831,0.932,0.9042,0.9066,0.7882,0.8008,0.7932,0.6872,0.7604,0.662,-0.6154,-0.2004,0.1512,0.292,0.3106,0.3294,0.1066,0.02,0.0996,-0.1066,-0.0504,-0.0316,-0.048,0.1278,0.1864,0.3552,0.5334,0.599,0.8968,0.8968,0.9578,0.8616,0.9624,0.9532,1,0.9578,0.9086,0.8664,0.7796,0.7678,0.7914,0.8054,-0.6342,-0.3042,0.2076,0.2974,0.1942,0.138,-0.0506,-0.0438,0.0146,-0.0752,-0.1314,-0.0594,-0.1022,-0.0438,0.1268,0.138,0.3468,0.614,0.6924,0.9462,0.8946,0.9102,0.8608,0.9394,1,0.9708,0.8182,0.7464,0.7846,0.8024,0.8048,0.8586,-0.6728,-0.369,0.1996,0.2158,0.0372,-0.1252,-0.0928,-0.1996,-0.2598,-0.1578,-0.1926,-0.2088,-0.0696,-0.0604,-0.0278,0.1624,0.2296,0.3712,0.6938,0.7936,0.9444,0.9096,0.9164,0.9582,0.9744,1,0.9048,0.8956,0.8074,0.8306,0.8748,0.928,-0.674,-0.3382,0.2666,0.2296,-0.1284,-0.2246,-0.2618,-0.3728,-0.3136,-0.3456,-0.3704,-0.2518,-0.274,-0.1902,-0.1828,-0.1234,0.0544,0.2988,0.4568,0.6444,0.8814,0.9062,0.963,0.9876,1,0.9778,0.9334,0.8914,0.7902,0.8296,0.8396,0.8494,-0.771,-0.345,0.3864,0.3418,-0.1478,-0.4276,-0.5484,-0.5484,-0.609,-0.6534,-0.5834,-0.5136,-0.4404,-0.4818,-0.4022,-0.3386,-0.4022,-0.2624,0.1224,0.2242,0.4562,0.8918,0.9872,0.8918,1,0.9778,0.9396,0.6852,0.5548,0.593,0.5898,0.8442,-0.771,-0.1704,0.1704,0.2672,-0.313,-0.7812,-0.6844,-0.5826,-0.659,-0.8016,-0.7302,-0.3944,-0.4402,-0.5318,-0.3536,-0.486,-0.5776,-0.5012,-0.5674,-0.2162,0.0586,0.71,0.9796,1,0.9746,0.9338,0.4962,0.3536,0.0738,0.023,0.2672,0.2876,-0.7948,-0.3334,-0.0256,0.077,0.1282,0.0256,-0.2308,-0.1282,-0.1282,-0.1282,-0.077,-0.1282,-0.1282,-0.077,-0.077,0.077,0.282,0.4872,0.9488,1,0.7948,0.7948,0.8462,0.8462,0.641,0.4872,0.5898,0.7948,0.8462,0.3334,0.3846,0.641,-0.6862,-0.255,-0.0196,0.1372,0.2156,0.3334,0.0196,0.0588,0.0196,-0.0588,-0.0588,-0.0588,0.098,0.098,0.1764,0.4902,0.4902,0.804,0.6078,1,0.7254,0.9608,0.7648,0.9216,0.9608,0.9608,0.9608,0.804,0.8432,0.6078,0.7648,0.6862,-0.75,-0.341,0.2046,0.1364,-0.1136,-0.4546,-0.591,-0.5454,-0.6364,-0.7046,-0.5682,-0.3182,-0.341,-0.341,-0.3636,-0.2272,-0.2046,0.0228,0.2728,0.4772,0.591,0.909,0.8864,0.8636,1,0.9318,0.8864,0.659,0.5228,0.5454,0.7046,0.75,-1,-1,-1,-1,-1,-1,-1,-1,-0.936,-0.936,-0.8676,0.5252,0.5936,0.8448,0.968,0.7946,0.4748,0.4748,0.2832,0.0228,-0.3378,-0.6302,-0.7398,-0.7808,-0.8584,-0.8722,-0.8858,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9772,-0.9814,-0.6874,0.4358,0.6486,0.6496,0.7148,0.898,0.7914,0.6288,0.0244,-0.5998,-0.8556,-0.9276,-0.9378,-0.9488,-0.9312,-0.9378,-0.9576,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-1,-0.4868,-0.168,-0.212,-0.238,-0.2038,-0.1874,-0.1782,-0.2364,-0.3786,-0.5754,-0.6226,-0.6626,-0.6978,-0.6478,-0.5478,-0.5778,-0.8078,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,-1,-1,-1,-1,-1,-0.9714,-0.6,-0.1428,-0.2,-0.4858,-0.7714,-0.7142,-0.8572,-0.7714,-0.4572,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.71,0.6946,0.6784,0.6834,0.6774,0.6876,0.6986,0.7164,0.7458,0.8118,0.9066,-0.6,0.2706,-0.6978,-0.6102,0.5818,0.7494,0.7256,0.5666,-0.4946,-0.4286,-0.077,-0.2088,-0.1648,-0.033,-0.033,0.3406,0.7142,0.8462,0.8682,0.978,1,0.8902,0.912,0.8462,0.6924,0.4726,0.1208,-0.055,-0.4286,-0.2308,-0.3186,-0.3406,-0.3186,-0.2088,-0.2088,-0.033,-0.055,-0.1428,-0.4506,-0.5164,-0.134,-0.2164,0.3608,0.0722,0.1134,0.2164,0.1752,0.2164,0.7526,1,0.7114,0.897,0.9588,0.8762,0.8762,0.732,0.6908,0.464,0.1546,0.1546,-0.0928,0.1546,0.031,0.0516,-0.0104,0.031,0.0104,0.1752,-0.0104,0.0516,0.0722,-0.0516,-0.5672,-0.3582,0.0896,-0.1642,-0.0896,-0.2238,0,0.2836,0.5672,0.8358,0.9702,0.9402,1,0.8656,0.9702,0.8358,0.8806,0.806,0.3432,-0.1194,-0.1044,-0.3284,-0.2986,-0.2388,-0.2538,-0.2686,-0.194,0.1044,0.0298,-0.0448,-0.1492,-0.4478,-0.2288,-1,-1,1,-1,-1,-1,-0.7666,1,-0.4482,-0.3794,-0.2068,-0.0172,0.069,-0.1206,-0.1552,-0.0862,0.1896,1,0.9828,0.2414,0.7414,0.5172,0.1896,0.362,0.9482,0.3966,0.0862,0.4656,0.4482,0.069,0.0862,-0.1034,-0.138,-0.1206,0,-0.138,0.1552,-0.1552,-0.3104,-0.8104,'1'
-0.6226,-0.1738,0.016,0.2134,0.2208,0.2478,0.1246,0.122,0.0308,-0.0456,0.0184,0.0012,0.1442,0.1394,0.2208,0.4526,0.4846,0.741,0.82,0.995,0.9384,0.921,0.8644,0.931,0.9728,1,0.8224,0.7904,0.8298,0.7632,0.6596,0.6844,-0.5384,-0.1602,0.1476,0.261,0.3064,0.314,0.1374,0.0366,0.0088,-0.1424,-0.1098,0.0114,-0.0442,0.1728,0.193,0.2712,0.43,0.4628,0.7352,0.8538,1,0.8486,0.884,0.8436,0.7982,0.9092,0.7882,0.7554,0.7428,0.7352,0.5964,0.667,-0.5298,-0.1912,0.257,0.3472,0.1742,0.1352,0.0792,-0.0914,-0.0232,-0.028,-0.0742,-0.1206,-0.011,0.0816,0.1304,0.1132,0.3934,0.508,0.6152,0.9416,0.9416,0.9756,0.8612,0.922,0.9878,1,0.8976,0.7954,0.7344,0.7466,0.771,0.8904,-0.634,-0.2846,0.2822,0.36,-0.013,-0.0366,-0.1004,-0.183,-0.098,-0.2184,-0.2256,-0.0814,-0.1028,0.0036,-0.046,-0.0272,0.2632,0.3058,0.4428,0.8348,0.8724,1,0.9362,0.8606,0.9338,0.9952,0.83,0.7874,0.7592,0.686,0.7356,0.8488,-0.6338,-0.1908,0.3138,0.4674,0.2164,-0.224,-0.224,-0.224,-0.2522,-0.3598,-0.3572,-0.3496,-0.242,-0.1038,-0.0678,0.009,0.073,0.1472,0.3956,0.6876,0.8234,0.9692,1,0.8182,0.854,0.9078,0.8104,0.6952,0.5852,0.621,0.6262,0.685,-0.6168,-0.0608,0.2118,0.506,0.3252,-0.301,-0.4144,-0.2928,-0.4332,-0.3738,-0.4764,-0.4602,-0.2712,-0.3144,-0.1552,-0.2766,-0.0662,-0.147,0.0742,0.4682,0.6222,0.8948,1,0.6734,0.714,0.8138,0.803,0.5736,0.5222,0.5222,0.4278,0.6356,-0.6446,0.1356,0.066,0.5128,0.3554,-0.4578,-0.5238,-0.4066,-0.5238,-0.6008,-0.696,-0.5128,-0.4542,-0.4396,-0.5678,-0.5714,-0.5934,-0.4578,-0.1612,0.0184,0.4102,0.696,1,0.8682,0.8316,0.7472,0.729,0.4872,0.293,0.0916,0.1318,0.2418,-0.541,-0.1148,0.0492,0.3114,0.4426,0.4754,0.1476,0.2132,0.1148,0.0164,0.082,0.0492,0.246,0.1148,0.2786,0.541,0.6066,0.836,0.8688,0.9672,0.836,1,0.9344,1,0.836,0.9344,0.9016,0.9344,0.9344,0.9016,0.6722,0.541,-0.7192,-0.228,-0.0878,0.1578,0.228,0.2982,0.0176,0.0526,-0.0176,-0.0878,0.0176,-0.1228,0.1578,-0.0526,0.193,0.4386,0.5438,0.7544,0.7544,1,0.965,0.965,0.8596,0.965,0.8948,1,0.7894,0.8246,0.8948,0.8948,0.7192,0.6492,-0.7228,-0.2872,0.2278,0.406,0.1486,-0.2674,-0.307,-0.2476,-0.4258,-0.4456,-0.4654,-0.5446,-0.3664,-0.2872,-0.1288,0.01,0.0694,0.1486,0.1882,0.6634,0.6436,1,0.802,0.7624,0.8812,0.9604,0.703,0.7228,0.5248,0.4654,0.5446,0.5248,-1,-1,-1,-1,-1,-1,-1,-1,-0.9556,-0.9348,-0.6058,0.107,0.141,0.3682,0.4596,0.6266,0.8042,0.9348,0.4596,0.1148,-0.0836,-0.5484,-0.7676,-0.8694,-0.8904,-0.9426,-0.9374,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9854,-0.9828,-0.469,0.808,0.3638,0.3486,0.598,0.749,0.9174,0.4376,-0.2166,-0.5402,-0.668,-0.8626,-0.9414,-0.9572,-0.9622,-0.9716,-0.9748,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.9334,-0.4834,-0.0824,-0.0956,-0.0424,-0.184,-0.196,-0.276,-0.164,-0.148,-0.472,-0.528,-0.688,-0.66,-0.5134,-0.7734,-0.8868,-0.8068,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,-0.8858,-1,-0.9142,-1,-0.9142,-0.6572,-0.5428,-0.7714,-0.2572,0.0286,-0.6286,-0.6572,-0.5142,-0.7714,-0.8858,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.728,0.8162,0.8002,0.8022,0.782,0.7594,0.7822,0.8052,0.813,0.8766,0.9484,-0.6534,0.1412,-0.4904,0.4854,0.9576,0.8554,0.6652,1,-0.4902,-0.1764,-0.0588,-0.0588,-0.1764,-0.1372,-0.098,0.3334,0.6862,0.8824,0.9216,1,1,0.9608,0.9216,0.804,0.7254,0.6078,0.3334,0.0588,-0.1372,-0.1764,-0.2942,-0.2156,-0.3726,-0.3334,-0.1764,-0.3726,-0.3726,-0.2942,-0.1372,-0.5686,-0.3578,-0.1376,0.2294,0.0092,-0.0826,-0.156,0.2294,0.266,0.5964,0.89,1,1,1,0.8716,0.8348,0.7064,0.7798,0.7248,0.5046,0.101,0.1192,-0.1376,-0.2844,-0.266,-0.2478,-0.4128,-0.5412,-0.5046,-0.3212,0.101,0.0642,-0.2844,-0.0616,0.3076,0.523,0.4462,0.2616,0.2308,0.3692,0.4616,0.7538,1,0.877,0.9846,0.9384,0.8462,0.7846,0.6924,0.6,0.6,0.2616,0.1076,0.077,-0.2,-0.2462,-0.3076,-0.5076,-0.4,-0.3076,-0.2924,-0.2462,0,-0.1076,-0.477,0.8944,-1,-1,1,-1,-1,-0.8,-0.8334,-1,-0.1408,0.1408,-0.0074,-0.1408,-0.2888,0.1408,0.2148,0.0222,0.1112,0.2148,1,0.8666,0.4962,0.6,0.5704,0.5852,0.674,0.6444,0.6,0.6296,0.7038,0.2296,0.5852,0.5852,0.037,0.2296,0.0814,-0.0814,0.3482,0.5556,-0.0962,-0.4074,'1'
-0.3462,0.2686,0.2028,0.352,0.2086,-0.3754,-0.5422,-0.4026,-0.612,-0.4956,-0.1872,-0.1116,-0.129,-0.1018,0.0106,-0.0146,0.0688,0.1252,0.5286,0.7148,1,0.9554,0.903,0.841,0.9554,0.9166,0.9574,0.9322,0.8448,0.7516,0.8254,0.936,-0.4228,0.0946,0.0866,0.2896,0.007,-0.5284,-0.7294,-0.6996,-0.5782,-0.6398,-0.4468,-0.413,-0.3074,-0.3314,-0.3054,-0.2616,-0.2398,-0.013,0.188,0.4248,0.6856,0.8886,0.9402,0.8966,0.7334,0.8746,1,0.988,0.807,0.801,0.791,0.8328,-0.4976,-0.0666,0.3188,0.4142,-0.1638,-0.563,-0.7298,-0.704,-0.6762,-0.7716,-0.6822,-0.4678,-0.4558,-0.4618,-0.4698,-0.4716,-0.3028,-0.273,-0.0268,0.3028,0.3346,0.7696,0.9424,0.8788,0.5274,0.8252,0.8808,0.843,0.8808,0.8172,0.7596,1,-0.4934,-0.0026,0.5334,0.528,-0.4266,-0.7066,-0.736,-0.7174,-0.8346,-0.768,-0.656,-0.5946,-0.688,-0.5654,-0.6346,-0.6506,-0.656,-0.512,-0.224,0.1146,0.4266,0.8426,0.9734,0.9894,0.928,0.8906,0.928,0.9466,0.8826,0.6346,0.7654,1,-0.6672,0.065,0.0302,0.214,-0.3852,-0.6608,-0.6988,-0.5088,-0.6418,-0.7592,-0.5752,-0.496,-0.4928,-0.5562,-0.8796,-0.6576,-0.4992,-0.5816,-0.531,-0.3566,-0.1126,0.6102,1,0.9366,0.5246,0.6324,0.6386,0.4896,0.401,0.366,0.2488,0.6386,-0.9748,-0.6834,-0.7842,-0.7482,-0.5432,-0.41,-0.5972,-0.3598,-0.2446,-0.4568,-0.6438,-0.41,-0.4892,-0.5972,-0.5684,-0.6402,-0.4856,-0.0972,0.446,0.3884,0.6726,0.705,0.5612,0.367,0.3634,1,0.9424,0.4784,0.3094,0.3382,0.4064,0.7842,-0.492,-0.637,-0.7338,-0.621,-0.3992,-0.0484,0.0484,0.125,0.254,0.1048,-0.0686,-0.0846,-0.0404,0.1088,0.512,0.7662,0.9154,0.6088,0.4274,0.4314,0.2742,0.0604,0.367,0.4234,0.7096,1,0.9274,0.5846,0.4556,0.5646,0.8226,0.9194,-0.8572,0.0476,0,0.1428,0.0476,-0.5238,-0.762,-0.619,-0.9048,-0.5714,-0.5714,-0.2858,-0.4286,-0.1904,-0.3334,-0.1428,-0.0952,0.0952,0.5238,0.619,0.9048,1,0.762,0.8096,0.7142,0.762,0.8096,0.7142,0.5714,0.4762,0.6666,0.619,-0.4118,0.1764,0.1372,0.2942,0.1764,-0.3334,-0.6078,-0.3726,-0.451,-0.3726,-0.2942,-0.1372,-0.1764,-0.0588,-0.0588,0.0588,0.0588,0.098,0.647,0.6862,0.9608,1,0.7648,0.6862,0.8432,0.7254,0.8432,0.7254,0.5686,0.4118,0.8432,0.6862,-0.2122,0.091,0.4546,0.4748,-0.091,-0.3132,-0.4142,-0.3334,-0.3132,-0.394,-0.4142,-0.2526,-0.3132,-0.3536,-0.394,-0.091,-0.0708,0.0102,0.2122,0.2526,0.3536,0.9192,1,0.5758,0.5758,0.7374,0.6364,0.7172,0.899,0.7576,0.6566,0.9596,-1,-1,-1,-1,-1,-1,-0.9392,-0.95,-0.4992,1,1,0.6744,0.4418,0.1664,0.313,0.1198,-0.1414,-0.4812,-0.6458,-0.8604,-0.9106,-0.9284,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.958,-0.9624,-0.7512,1,1,0.7844,0.5334,0.2504,0.1974,-0.183,-0.561,-0.6992,-0.8066,-0.8684,-0.8982,-0.926,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.98,-0.69,-0.8668,-0.3434,-0.1414,-0.1934,-0.0614,-0.1068,-0.224,-0.308,-0.4854,-0.6,-0.3174,-0.5174,-0.745,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,0.6572,1,1,0.7428,-0.6572,-0.8,-0.8,-0.9428,-0.8,-0.8,-0.9142,-0.8286,-0.8572,-0.8286,-0.3142,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.0634,0.0462,0.0426,0.0184,0.014,-0.0422,-0.0854,-0.1104,-0.1814,0.1718,0.9672,1,0.9966,1,1,1,1,1,1,0.8082,-0.5734,0.8352,1,1,0.927,0.8132,0.5854,1,0.6818,0.5454,0.3454,0.0546,-0.0728,-0.0728,0.1364,0.2818,0.5272,0.8364,1,0.9454,0.909,0.6818,0.5818,0.7454,0.809,0.509,0.4728,0.3818,-0.191,-0.291,-0.5818,-0.4546,-0.3182,-0.2182,0.0272,0,-0.2728,-0.1728,-0.2364,-0.2636,0.172,0.2186,0.228,-0.228,-0.3768,-0.107,-0.0232,0.0884,0.3116,0.8046,0.907,0.9256,0.907,0.8046,0.5814,0.907,1,0.6,0.4232,0.3768,-0.3396,-0.507,-0.6744,-0.628,-0.386,-0.3116,0.0418,0.079,-0.4232,0.0232,0.079,-0.4046,0.1168,0.2554,0.29,-0.1688,-0.2294,0.0044,0.0476,0.1256,0.3246,0.6884,1,0.9654,0.9308,0.8528,0.6104,0.8788,0.8096,0.671,0.4286,0.3074,-0.1256,-0.4718,-0.4026,-0.3506,-0.42,-0.039,0.2294,0.1602,-0.1774,-0.1688,0.0476,-0.2554,1,-1,-1,1,-1,-1,-1,-0.6,-1,-0.0334,0.2,0.3666,0.4,0.4334,0.3,0.4666,1,0.9334,0.2666,0.4334,0.6,0.8,0.7334,0.6,0.7666,0.5334,0.2334,0.1334,0.3334,0.4,0.1,0.5334,0.4334,-0.2,0.0334,0.2334,0.4666,0.1,0.4,0.3666,0.1666,'2'
-0.4608,0.1234,0.12,0.3148,0.0678,-0.7356,-0.5826,-0.5548,-0.5234,-0.586,-0.454,-0.6034,-0.4922,-0.4434,-0.3008,-0.2034,-0.1618,0.2382,0.433,0.84,0.8818,0.8052,0.6626,0.7182,0.8714,1,0.9896,0.826,0.6486,0.7114,0.7356,0.847,-0.396,0.0956,0.2594,0.4294,0.1016,-0.66,-0.3262,-0.3718,-0.5326,-0.569,-0.4172,-0.3566,-0.3232,-0.3324,-0.387,-0.2352,-0.1714,-0.0076,0.3596,0.4324,0.7814,0.7512,0.742,0.5964,0.736,0.8362,0.912,1,0.9726,0.909,0.7906,0.8756,-0.4566,0.019,0.1982,0.3538,0.019,-0.624,-0.4332,-0.5036,-0.5478,-0.671,-0.5888,-0.4332,-0.4008,-0.351,-0.4096,-0.4008,-0.3246,-0.1954,0.1512,0.1836,0.5948,0.6418,0.9002,0.7298,0.6328,0.7122,0.7416,1,0.9354,0.9706,0.8002,0.859,-0.4778,0.01,0.107,0.2952,0.0214,-0.8574,-0.5292,-0.555,-0.5406,-0.6462,-0.4922,-0.4122,-0.2982,-0.3124,-0.2782,-0.2326,-0.2868,-0.1012,0.0728,0.261,0.5292,0.6176,0.9572,0.9572,0.749,0.6718,0.883,0.8374,0.9486,0.8744,0.923,1,-0.502,0.0236,-0.0568,0.1784,0.0014,-0.5298,-0.7178,-0.6072,-0.527,-0.5048,-0.4966,-0.527,-0.2918,-0.3914,-0.22,-0.2614,-0.0982,-0.0872,0.018,0.3666,0.4136,0.8174,0.798,0.8756,0.8092,0.845,0.8478,0.9972,0.8948,1,0.8118,0.8976,-0.5574,0.0402,-0.0042,0.1536,0.0484,-0.433,-0.5768,-0.502,-0.6598,-0.5656,-0.6958,-0.5988,-0.4688,-0.3444,-0.3666,-0.2724,-0.2144,-0.1092,0.1868,0.2392,0.5326,0.6348,1,0.9862,0.6792,0.6764,0.9114,0.87,0.8948,0.8092,0.8092,0.8036,-0.6692,0.2608,0.2762,0.3152,0.2802,-0.2608,-0.3112,-0.7082,-0.681,-0.6264,-0.607,-0.5876,-0.6108,-0.6964,-0.6032,-0.4202,-0.4086,-0.1906,-0.1128,0.3696,0.4748,0.891,0.9922,0.9416,1,0.7432,0.8716,0.825,0.8326,0.7588,0.747,0.7704,-0.0666,0.3,0.3666,0.5,0.3,-0.1334,-0.1666,-0.1,0.0334,0,-0.1,-0.1,-0.1334,-0.1,0.1666,0.0334,0.3334,0.5,0.7334,0.9334,0.9666,0.8,0.8666,0.9334,1,1,0.8666,0.7334,0.7,0.9,0.8334,0.9666,-0.0434,0.174,0,0.3044,0.0434,-0.5218,-0.4348,-0.3914,-0.4782,-0.4782,-0.3478,-0.5218,-0.2608,-0.4348,-0.1304,-0.1304,0,0.3914,0.4782,0.9566,1,0.6086,0.4348,0.826,0.8696,1,0.826,0.6086,0.5652,0.6956,0.6522,0.913,-0.52,0.04,-0.04,0.18,0.02,-0.46,-0.6,-0.42,-0.68,-0.6,-0.76,-0.7,-0.34,-0.3,-0.3,-0.3,-0.08,-0.1,0.14,0.04,0.54,0.7,1,0.84,0.72,0.62,0.86,0.78,0.96,0.74,0.9,0.96,-1,-1,-1,-1,-1,-1,-1,-1,-0.9408,-0.9246,-0.5854,0.5154,0.206,0.136,0.1656,0.0982,0.0472,-0.039,-0.1198,-0.1064,-0.327,-0.4994,-0.5504,-0.7012,-0.7632,-0.8466,-0.8978,-0.9274,-0.9516,-0.9328,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9604,-0.9566,-0.607,0.3496,0.4514,0.0546,0.1394,0.2478,0.3884,0.6804,0.769,0.7954,0.0094,-0.589,-0.7408,-0.769,-0.7814,-0.8784,-0.9066,-0.9236,-0.9378,-0.9482,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9934,-0.9134,-0.62,-0.3356,-0.1956,-0.169,-0.08,0.151,0.142,0.102,0.102,0.12,-0.1598,-0.5562,-0.7756,-0.299,-0.3422,-0.6222,-0.6456,-0.799,-0.8456,-0.919,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,1,1,1,-0.8858,-1,-1,-1,-0.9714,-0.9714,-0.9142,-0.7714,-0.2286,-0.1142,-0.4,-0.8572,0.0286,0.1428,-0.8286,-0.6572,-0.6858,-0.0572,-1,-1,-1,-0.28,-0.2586,-0.2206,-0.2234,-0.1986,-0.1546,-0.1118,-0.0708,-0.0692,-0.014,0.92,0.9276,0.9502,0.9672,0.989,0.9958,1,1,1,1,-0.7066,0.1176,-0.69,0.279,0.6258,0.195,0.1424,1,0.3658,0.3658,0.317,0.2682,0.1708,0.561,0.7074,0.5122,0.3658,0.7074,0.7074,1,1,0.9512,0.756,0.756,0.6586,0.2682,0.756,0.756,0.8048,0.9024,0.9024,0.756,0.4146,0.5122,0.2682,0.8536,1,1,0.4634,-0.1708,0.2076,0.3208,0.1132,-0.0566,0.0754,0.3584,0.415,0.434,0.4528,0.6604,0.6982,1,0.868,0.6226,0.4528,0.7548,0.6226,0.4906,0.4906,0.5284,0.6226,0.7358,0.6604,0.5284,0.5094,0.5094,0.3584,0.6226,0.6604,0.6604,0.3208,0.1698,0.1516,0.4344,0.1516,-0.2324,-0.192,-0.3132,0.0304,0.2324,0.3334,0.7374,0.7576,0.9596,1,0.596,0.6364,0.8384,0.8182,0.6768,0.2728,0.5758,0.2122,0.3536,0.0102,0.0506,0.3536,0.091,0.3132,0.394,0.0304,0.091,0.0708,-0.1314,1,-1,-1,1,-1,-1,1,-0.8334,-1,-0.078,0.3334,-0.2056,-0.2908,-0.2482,-0.3758,-0.0212,-0.1206,-0.1206,0.2056,0.2624,0.6738,0.688,0.8724,0.7872,0.4752,0.6454,0.6596,0.4326,0.461,1,0.6738,0.6738,0.5602,0.3618,0.4042,0.1774,0.2056,0.2624,0.3758,-0.0496,-0.546,'2'
-0.534,0.2562,0.2592,0.4074,0.3828,-0.1698,-0.1976,-0.3426,-0.3828,-0.284,-0.3086,-0.2192,-0.2098,0.1266,0.105,0.5462,0.5618,0.9444,0.8796,0.7654,0.7778,0.855,0.8612,0.9846,1,0.7284,0.6544,0.318,0.3396,0.395,0.4074,0.6112,-0.5914,0.0226,-0.005,0.2782,0.198,-0.2882,-0.3934,-0.426,-0.5564,-0.4812,-0.624,-0.5038,-0.391,-0.1804,-0.2482,-0.0576,0.02,0.2006,0.4736,0.639,0.7068,0.8572,0.604,0.7118,0.8722,1,0.7018,0.5814,0.5664,0.6492,0.6516,0.7318,-0.6182,0,-0.0322,0.1962,0.1076,-0.3952,-0.5216,-0.6156,-0.6882,-0.6156,-0.7284,-0.5404,-0.4812,-0.293,-0.379,-0.207,-0.1936,-0.0296,0.285,0.4194,0.6666,0.801,0.6612,0.7796,0.8656,0.957,0.9194,1,0.7554,0.8092,0.863,0.8952,-0.6972,-0.0142,-0.04,0.1258,0.0542,-0.3828,-0.4742,-0.4686,-0.5342,-0.6428,-0.7286,-0.4514,-0.5686,-0.3458,-0.46,-0.3458,-0.2942,0.0142,0.0342,0.3628,0.6342,0.9286,0.7686,0.8286,0.6886,0.9628,0.7886,0.8772,0.6686,0.8028,0.8,1,-0.7404,0.1328,0.1604,0.0778,0.09,-0.3222,-0.2824,-0.6488,-0.5756,-0.7404,-0.7038,-0.4992,-0.3862,-0.4992,-0.3832,-0.4778,-0.3312,-0.197,-0.0382,0.0778,0.316,0.7374,1,0.8626,0.6306,0.774,0.9298,0.826,0.6702,0.49,0.6336,0.7526,-0.8984,0.608,0.7894,0.1324,0.1216,-0.1288,-0.0962,-0.1542,-0.6152,-0.6624,-0.8874,-0.5282,-0.5028,-0.7242,-0.6552,-0.7858,-0.637,-0.4264,-0.539,-0.5208,-0.078,0.5462,0.764,0.8366,0.8838,0.7132,1,0.931,0.5754,0.303,0.2668,0.3756,-0.8952,0.564,1,0.6604,-0.2872,-0.2328,-0.4214,-0.0734,-0.1488,-0.7862,-0.6772,-0.6688,-0.4884,-0.5724,-0.6352,-0.5346,-0.5136,-0.6226,-0.543,-0.5094,-0.0734,0.0734,0.4298,0.4466,0.1782,0.392,0.3502,0.3376,0.3166,0.1572,0.002,-0.044,-0.282,0.3334,0.3846,0.0256,-0.1794,-0.641,-0.5384,-0.4872,-0.3846,-0.282,-0.5384,-0.282,-0.1282,-0.282,0.3334,0.6924,1,0.8974,0.7948,-0.077,0.0256,0.2308,0.2308,0.3334,0.2308,0.282,0.2308,0.1282,-0.1794,-0.282,-0.3334,-0.1794,-0.5112,0.2444,0.2444,0.3334,0.3778,0.0666,0.0666,-0.6,-0.3778,-0.0666,-0.0666,-0.3334,-0.0666,0.3334,0.3778,0.3778,0.8222,1,0.9112,0.7334,0.6444,0.7778,0.7778,0.9556,1,0.5556,0.4222,0.2888,0.2888,0.3778,0.5556,0.6444,-0.5454,0.2046,0.2728,0.1818,0.2272,-0.25,-0.1364,-0.5454,-0.5228,-0.841,-0.7728,-0.5,-0.2954,-0.409,-0.25,-0.3636,-0.091,-0.1364,0.0228,0.0228,0.4546,0.409,0.9772,0.9772,0.6364,0.7046,0.8636,1,0.6818,0.409,0.5228,0.7728,-0.9134,-0.8976,-0.8858,-0.9212,-0.874,-0.9174,-0.9094,-0.9134,-0.9094,-0.874,-0.8818,0.7166,0.7638,0.4686,0.2204,-0.0118,-0.1654,-0.1968,-0.0866,0.1456,0.3464,-0.193,-0.8228,-0.9094,-0.937,-0.9174,-0.941,-1,-1,-1,-1,-1,-1,-0.5076,-0.4688,-0.322,-0.117,-0.105,-0.4044,-0.396,-0.5476,-0.5198,-0.0466,-0.2092,0.2164,0.8994,0.8908,0.6786,0.3038,0.1608,0.3256,-0.214,-0.4458,-0.4688,-0.7078,-0.8932,-0.9224,-0.9284,-0.9332,-0.9332,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.7766,-0.364,-0.102,-0.068,0.05,0.154,0.082,0.292,-0.3146,-0.7946,-0.86,-0.8292,-0.8334,-0.6734,-0.74,-0.7934,-0.8734,-1,-1,-1,-1,-1,-1,-0.7714,-0.8858,-0.6572,-0.7428,-0.6286,-0.6858,-0.9428,-0.9428,-0.3142,-0.0286,1,1,-0.6,-0.8286,-1,-1,-0.9714,-0.3714,0.3428,-0.7142,-0.5142,-0.6858,-0.6858,-0.9428,-0.9714,-0.9428,-0.4572,-1,-1,-1,-1,-1,-1,0.2772,0.281,0.301,0.3102,0.3218,0.326,0.328,0.2926,0.2482,0.2398,0.1906,0.2202,0.3006,0.333,0.402,0.465,0.5532,0.6906,0.8504,0.8992,-0.8,0.2236,-0.2384,-0.5974,0.0152,0.476,0.9078,0.1084,-0.7292,-0.733,-0.4184,-0.3518,-0.1878,-0.2278,-0.142,0.4032,0.3002,0.2774,0.287,0.2564,0.5996,0.348,0.2488,0.3822,0.3594,0.6358,0.3728,0.3784,0.5978,0.695,0.8532,0.878,0.695,0.8226,0.817,0.8418,1,0.8512,0.4452,0.0448,-0.6592,-0.566,-0.4088,-0.289,-0.1504,-0.1464,-0.016,0.2118,0.1838,0.0932,0.0626,0.1026,0.1824,0.1692,0.0772,0.1652,0.241,0.5446,0.3834,0.5114,0.6352,0.6564,0.7604,0.8922,0.8934,0.683,0.699,0.7684,0.8708,1,0.9028,0.4806,-0.7216,-0.7528,-0.4892,-0.3338,-0.2806,-0.2494,-0.1636,0.1606,0.2346,0.2168,0.1918,0.1074,0.282,0.285,0.1576,0.0852,0.2598,0.516,0.4242,0.3916,0.5618,0.6936,0.778,0.7928,0.6906,0.7454,0.7216,0.667,0.7942,1,0.9926,0.3146,-0.8084,-1,1,-1,-1,-1,-1,1,-1,-0.0944,0.0754,-0.0754,0.2264,0.3774,0.3018,0.434,0.2076,0.3962,0.8302,0.415,0.6038,0.5284,0.6226,0.868,0.868,0.9056,1,0.717,0.434,0.5284,0.4528,0.5472,0.4528,0.132,0.3774,0.2076,0.3208,0.0378,0.0754,0.0188,-0.0566,'3'
-0.4808,0.2536,0.213,0.5132,0.4036,-0.2414,-0.3914,-0.363,-0.4686,-0.3306,-0.2982,-0.1522,-0.0426,0.1034,0.1602,0.3062,0.7648,0.7768,0.8904,0.8864,0.8498,0.7364,1,0.9634,1,0.927,0.6106,0.5496,0.6674,0.5294,0.6754,0.781,-0.508,0.098,0.0588,0.3654,0.1694,-0.3868,-0.5794,-0.4796,-0.5044,-0.4724,-0.5686,-0.5258,-0.1586,-0.237,-0.1586,-0.1694,0.0802,0.2264,0.4046,0.722,0.8646,0.8396,0.893,0.943,0.9572,1,0.9358,0.7398,0.6542,0.8502,0.7612,0.8502,-0.5416,0.007,-0.0244,0.2084,-0.0278,-0.677,-0.625,-0.5798,-0.5174,-0.5798,-0.5694,-0.5244,-0.3888,-0.434,-0.316,-0.1216,-0.0764,-0.0138,0.1424,0.5938,0.677,0.9756,0.8124,0.625,0.9132,1,0.9826,0.9826,0.9236,0.8576,0.8612,0.8612,-0.5922,-0.0756,-0.1218,0.102,-0.1086,-0.6974,-0.6218,-0.6152,-0.7994,-0.8322,-0.5922,-0.6382,-0.4342,-0.4606,-0.3618,-0.1678,-0.0986,-0.1448,-0.0328,0.4638,0.5494,0.8684,0.7106,0.5494,0.7828,0.8882,0.9638,1,0.8948,0.8618,0.806,0.7994,-0.6,-0.0272,-0.0878,0.1818,0.0334,-0.5242,-0.7242,-0.5636,-0.7454,-0.6818,-0.6242,-0.5546,-0.406,-0.4122,-0.309,-0.3666,-0.0728,-0.1728,0.094,0.3182,0.5484,0.7272,0.8788,0.6364,0.6546,0.8818,0.9606,0.806,0.8152,0.8818,0.8666,1,-0.6614,0.0224,0.0064,0.1854,0.115,-0.3994,-0.5016,-0.492,-0.5718,-0.7348,-0.7348,-0.5016,-0.5846,-0.3866,-0.476,-0.2204,-0.2716,-0.0256,0.1374,0.4346,0.6806,0.9266,0.7732,0.9106,0.8594,1,0.9074,0.8882,0.754,0.8626,0.7604,0.9042,-0.601,0.5404,0.5506,0.2828,0.2424,-0.5606,-0.5656,-0.4596,-0.3282,-0.6364,-0.8788,-0.7424,-0.7324,-0.8232,-0.6818,-0.5,-0.4898,-0.6616,-0.4546,0.1718,0.3232,0.6616,1,0.808,0.9142,0.8636,0.9242,0.8334,0.5556,0.394,0.3434,0.4596,-0.5882,0.4706,0.5294,0.2942,-0.0588,-0.353,-0.4118,-0.353,-0.4706,-0.2942,-0.353,-0.353,-0.4118,0.1176,-0.1764,0.5294,1,1,0.2942,0.2942,0.1764,0.2352,0.2352,0.2942,-0.2352,0.353,0.1764,0.0588,0.1764,0,0.2352,0.2942,-0.4666,0.1556,0.1112,0.5112,0.4222,-0.0222,-0.2888,-0.2444,-0.4666,-0.2888,-0.1556,-0.0222,0.1556,0.2444,0.2444,0.3778,0.7778,0.7778,0.7334,0.7778,0.8222,0.7778,1,0.9556,0.9112,0.8222,0.5112,0.3334,0.6444,0.5112,0.6888,0.5112,-0.6,-0.0526,-0.1158,0.1578,0.0316,-0.5368,-0.6422,-0.7052,-0.7474,-0.6632,-0.621,-0.5158,-0.5158,-0.4316,-0.3474,-0.3264,-0.1158,-0.1368,0.0948,0.179,0.621,0.5158,0.9158,0.7894,0.7684,0.7264,0.979,0.7684,0.7894,0.7474,0.8736,1,-0.8848,-0.8892,-0.9024,-0.8714,-0.9334,-0.898,-0.9068,-0.9158,-0.8802,-0.8936,-0.858,0.6542,0.8094,0.4856,0.3482,0.153,0.122,0.1752,0.3216,0.1574,-0.051,-0.2328,-0.5254,-0.8094,-0.898,-0.8848,-0.9246,-1,-1,-1,-1,-1,-1,-0.3086,-0.1772,-0.2258,-0.1552,-0.3414,-0.2624,-0.2136,-0.4242,-0.294,-0.4826,-0.4814,0.0152,0.3646,0.429,0.3914,0.5144,0.6482,0.7262,0.9574,0.849,-0.2002,-0.6556,-0.787,-0.888,-0.9246,-0.9318,-0.944,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.6532,-0.5126,-0.28,-0.255,-0.215,0.0024,0.0732,0.211,0.131,0.0888,-0.4468,-0.7824,-0.6834,-0.52,-0.68,-0.8934,-0.9,-1,-1,-1,-1,-1,-1,-0.8858,-0.9142,-0.9142,-0.9428,-0.8858,-0.9428,-0.8286,-0.7714,-0.9142,-0.6572,1,1,-0.1714,-0.7714,-0.9428,-1,-0.9714,-0.9714,-0.9142,0.0286,1,-0.2858,-0.6,-0.6858,-0.7714,-0.8286,-0.4286,-1,-1,-1,-1,-1,-1,0.2088,0.219,0.1986,0.2136,0.2284,0.2332,0.1808,0.0966,0.0358,0.042,0.35,0.4038,0.421,0.4832,0.512,0.5648,0.6374,0.7672,0.9172,0.9884,-0.7334,-0.0118,-0.4266,-0.5398,0.0858,0.272,0.3354,0.2166,-0.7226,-0.7822,-0.6544,-0.4876,-0.3158,-0.3974,-0.3412,0.04,0.0536,0.0094,-0.0792,0.0536,0.3838,0.2612,0.2748,0.3276,0.3582,0.6698,0.617,0.5982,0.6732,0.794,0.806,0.7396,0.6664,0.9012,0.8758,0.828,0.9778,1,0.8366,0.457,-0.7798,-0.8548,-0.6002,-0.487,-0.3558,-0.3368,-0.0936,-0.002,0.063,0.0172,-0.021,-0.016,0.105,0.0642,0.0198,0.002,0.0872,0.2718,0.2768,0.4296,0.5098,0.678,0.7772,0.7848,0.683,0.734,0.7084,0.7658,0.9148,1,0.9224,0.6932,-0.7986,-0.7384,-0.5494,-0.5054,-0.4602,-0.2672,-0.2836,0.1302,0.226,0.1206,0.1014,0.0206,0.337,0.2466,0.126,0.141,0.2124,0.3684,0.2506,0.363,0.5466,0.5904,0.7768,0.7768,0.6562,0.785,0.7,0.785,0.9054,1,0.9452,0.5466,-0.854,-1,1,-1,-1,-1,-0.8,1,-1,-0.34,-0.22,-0.12,0.06,0.26,0.22,0.28,0.1,0.18,0.26,0.32,0.92,0.78,0.74,0.7,0.36,0.56,0.98,0.8,0.54,0.76,1,0.5,0.06,0.16,-0.04,-0.14,0.1,0.06,-0.02,-0.46,-0.68,'3'
-0.3908,0.129,0.0774,0.1608,0.0436,-0.4028,-0.4048,-0.3076,-0.4108,-0.3194,-0.3412,-0.3016,-0.131,-0.119,-0.0596,-0.0992,0.2124,0.2202,0.5674,0.7362,0.9366,0.7996,0.762,0.7916,0.883,0.7024,0.762,0.617,0.6786,0.7242,0.758,1,-0.4468,0.0472,-0.0078,0.1162,-0.0296,-0.4744,-0.496,-0.38,-0.5552,-0.4902,-0.4686,-0.4468,-0.3032,-0.3208,-0.187,-0.252,0.0078,-0.0434,0.187,0.4548,0.6182,0.6692,0.7776,0.5926,0.6614,0.8012,0.8366,0.691,0.6752,0.7814,0.7322,1,-0.5042,0.0586,0.0126,0.0794,-0.0376,-0.657,-0.6862,-0.5168,-0.5524,-0.4288,-0.5942,-0.4916,-0.4708,-0.4164,-0.32,-0.2888,-0.1088,-0.115,0.203,0.203,0.6234,0.5794,0.9268,0.8284,0.703,0.5732,0.705,0.7426,0.908,0.682,0.7928,1,-0.5536,0.0762,0.0476,0.1226,0.0386,-0.536,-0.6574,-0.5514,-0.589,-0.4408,-0.5846,-0.4144,-0.5314,-0.4454,-0.463,-0.2662,-0.3016,-0.1404,0.1802,0.3326,0.6332,0.7658,0.905,1,0.7326,0.8364,0.8498,0.9204,0.9404,0.9912,0.9492,0.9846,-0.6156,0.1416,0.1646,0.0564,0.0632,-0.351,-0.3096,-0.5328,-0.4776,-0.5766,-0.4798,-0.4316,-0.3418,-0.4936,-0.3924,-0.3948,-0.321,-0.2774,-0.0518,0.2266,0.45,0.8596,0.9838,0.9194,0.7836,0.7514,0.8482,0.8482,0.8804,0.7744,0.7836,1,-0.9856,0.4914,0.6696,0.1206,-0.1294,-0.3132,-0.273,-0.2758,-0.342,-0.3736,-0.5374,-0.4138,-0.5172,-0.5058,-0.6724,-0.4482,-0.612,-0.4396,-0.3794,-0.0058,0.0374,0.6552,1,0.9454,0.7586,0.6666,0.7672,0.7874,0.7184,0.5058,0.4512,0.5574,-0.883,0.3618,1,0.8642,-0.4028,-0.2038,-0.3966,-0.4882,-0.4092,-0.684,-0.5734,-0.4408,-0.5608,-0.4154,-0.5576,-0.6966,-0.4344,-0.226,-0.1974,-0.0648,0.229,0.5356,0.4944,0.5166,0.523,0.5166,0.4944,0.3808,0.0268,0.1312,0.0552,-0.0048,-0.1428,0.365,0.365,0.1746,0.1746,-0.0794,-0.1428,-0.0476,-0.0794,-0.2064,-0.1112,0.0476,0.0794,0.1428,0.1746,0.3016,0.4286,0.4604,0.8096,0.9048,0.9048,0.8412,0.9048,0.9366,0.873,0.746,0.7142,0.6826,0.746,0.7778,1,1,-0.4616,0.1538,0.1154,0.2308,0.077,-0.3846,-0.3846,-0.2692,-0.3846,-0.2308,-0.3076,-0.1924,-0.0384,0,-0.0384,-0.0384,0.3076,0.3462,0.7308,0.6924,0.9616,0.8462,0.8076,0.8846,1,0.8462,0.6154,0.5384,0.6538,0.6924,0.6924,0.8846,-0.653,0.0612,0.0816,-0.0408,-0.0408,-0.449,-0.3674,-0.4898,-0.4694,-0.8776,-0.6938,-0.5714,-0.3266,-0.4694,-0.2244,-0.3674,-0.3062,-0.4694,-0.0408,-0.102,0.449,0.449,0.9796,1,0.4898,0.551,0.6122,0.7346,0.4082,0.6122,0.5714,0.796,-1,-1,-1,-1,-1,-1,-0.9104,-0.9298,-0.9104,-0.8402,-0.2788,0.9454,0.8908,0.7388,0.4736,0.3334,0.2554,0.2202,0.228,0.2944,0.8558,0.1774,-0.77,-0.8752,-0.887,-0.9064,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9708,-0.973,-0.9636,-0.7664,-0.417,0.743,0.7242,0.4184,0.1492,0.1376,0.1644,0.134,-0.1762,-0.5574,-0.5182,-0.7184,-0.9228,-0.9462,-0.9462,-0.9498,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9456,-0.9534,-0.8934,-0.6734,0.5132,0.0366,0.1416,0.125,0.1766,0.3,0.1116,-0.0168,-0.1784,-0.6084,-0.8668,-0.9478,-0.6968,-0.79,-0.79,-0.7834,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3714,-0.9428,1,1,1,1,-1,-0.8858,-0.9714,-0.8286,-0.7714,-0.7714,-0.2286,-0.4286,-0.4858,-0.1142,-0.6286,-0.8286,-0.9142,-0.9142,-1,-1,-1,-1,-1,-1,-1,0.1946,0.1904,0.199,0.1836,0.175,0.1522,0.1592,0.1302,0.046,0.1128,0.8476,0.8544,0.8636,0.8714,0.8822,0.8834,0.9178,0.9468,1,1,-0.7866,0.447,-0.4272,0.04,0.5728,1,0.8698,1,-0.551,-0.1836,-0.1156,-0.1292,0.279,0.3334,0.2926,0.238,0.415,0.6734,0.5646,1,0.9592,0.4694,0.2244,0.6054,0.6598,0.6598,0.6054,0.7824,0.9184,0.7688,0.551,0.4966,0.279,0.4558,0.4286,0.4014,0.2926,0.1564,0.1156,-0.2518,-0.7106,-0.3552,-0.3552,-0.4474,-0.4342,-0.4342,-0.3158,-0.3422,0.2764,0.4736,0.4474,0.5394,0.4736,0.1052,0.3552,0.25,0.3026,0.3684,0.6448,0.8948,1,1,0.579,0.4606,0.4474,0.5922,0.5,0.4342,0.2894,0.171,-0.1316,-0.5658,0.1892,0.3784,-0.0406,-0.2028,-0.3108,-0.2568,-0.0676,0.027,0.3918,0.7568,0.7972,0.6892,0.7568,0.5406,0.5136,0.8108,0.4864,0.6486,0.8784,1,0.9324,0.973,0.7432,0.2298,0.4864,0.446,0.2702,0.5136,0.1486,0.2972,0.2298,0.0676,-0.0786,-1,-1,1,-1,-1,-1,-0.7,-1,-0.271,0.1588,0.1402,0.1588,-0.1028,0.1776,0.1776,0.1402,0.3272,0.5888,0.5514,0.5328,0.8692,1,0.4018,0.1028,0.4018,0.514,0.271,0.2524,0.028,0.0094,0.1214,0.271,-0.0654,-0.0654,0.0094,0.1962,0.458,0.3272,0.271,0.1402,'4'
-0.4304,0.1094,0.0526,0.1848,0.0554,-0.4926,-0.5844,-0.471,-0.5358,-0.4602,-0.444,-0.4116,-0.1524,-0.147,-0.1552,-0.2064,0.0554,0.131,0.417,0.6708,0.8488,0.6924,0.7462,0.7598,0.8758,0.6762,0.73,0.5222,0.5466,0.7058,0.7032,1,-0.4186,0.1238,0.0598,0.2628,0.096,-0.4742,-0.5244,-0.4186,-0.516,-0.4714,-0.4048,-0.4242,-0.1182,-0.1962,-0.1322,-0.2656,-0.0988,0.0014,0.1682,0.6106,0.7108,0.9638,1,0.7998,0.797,0.9554,0.897,0.7358,0.6216,0.8414,0.7524,0.9276,-0.4566,0.0924,0.0392,0.2072,0.056,-0.4818,-0.5266,-0.4174,-0.661,-0.6358,-0.521,-0.4958,-0.2718,-0.297,-0.2184,-0.283,-0.07,-0.1652,0.0672,0.3698,0.5434,0.8768,1,0.7676,0.8348,0.93,0.9496,0.8012,0.7732,0.8208,0.7564,0.986,-0.5678,0.011,-0.0332,0.0914,-0.0278,-0.5042,-0.6344,-0.482,-0.6676,-0.7174,-0.7868,-0.795,-0.4654,-0.3878,-0.4128,-0.3684,-0.1412,-0.1274,0.0914,0.0748,0.5458,0.5096,1,0.9224,0.8034,0.6732,0.953,0.8034,0.7534,0.5818,0.77,0.8532,-0.658,0.0058,-0.0058,0.135,0.0574,-0.4196,-0.5058,-0.5202,-0.6064,-0.546,-0.635,-0.6178,-0.7558,-0.5202,-0.6006,-0.3448,-0.3678,-0.112,-0.0202,0.3046,0.4224,0.7242,0.7788,1,0.862,0.8334,0.704,0.8046,0.635,0.7156,0.6494,0.839,-0.658,0.3086,0.3382,0.1412,0.1598,-0.2936,-0.264,-0.658,-0.632,-0.71,-0.7138,-0.5836,-0.461,-0.762,-0.6952,-0.8364,-0.5464,-0.435,-0.3754,-0.1672,0.2826,0.6246,1,0.9034,0.8066,0.6728,0.8922,0.7992,0.446,0.4238,0.3792,0.4276,-0.8622,0.24,0.3966,-0.4346,-0.4346,-0.6058,-0.734,-0.5724,-0.3824,-0.4632,-0.7624,-0.5154,-0.4442,-0.3776,-0.5012,-0.5012,-0.3776,-0.4156,-0.0832,-0.0498,0.0404,0.4156,0.8528,0.9858,1,0.7578,1,0.7008,0.4204,0.5676,0.5866,0.8148,-0.3062,0.2244,0.0612,0.2654,0.1428,-0.3878,-0.2654,-0.1836,-0.4694,-0.5102,-0.3878,-0.2244,-0.4286,-0.2244,-0.0612,-0.0204,0.3062,0.3878,0.7142,0.796,0.796,0.796,0.8776,0.7142,1,0.8776,0.6734,0.551,0.6326,0.4286,0.7142,0.9592,-0.532,-0.0212,-0.1064,0.1064,-0.0638,-0.7022,-0.4894,-0.4468,-0.7022,-0.7446,-0.617,-0.617,-0.3618,-0.2766,-0.2766,-0.3192,0.0638,0.149,0.4042,0.532,0.8298,0.7022,0.5744,0.617,0.7872,0.3618,0.4894,0.2766,0.3618,0.5744,0.6596,1,-0.7242,0.1264,0.1264,0.1264,0.1264,-0.2184,-0.2874,-0.5172,-0.4942,-0.5172,-0.4252,-0.4252,-0.4022,-0.5632,-0.4712,-0.4482,-0.4252,-0.2644,-0.1494,0.3104,0.4022,0.839,1,0.7702,0.908,0.7932,0.908,0.6552,0.4712,0.3564,0.4942,0.4252,-1,-1,-1,-1,-1,-1,-1,-0.902,-0.8928,-0.8322,-0.0722,0.9488,0.958,0.916,0.7482,0.627,0.4546,0.2868,0.1748,0.049,-0.1842,-0.613,-0.7576,-0.8414,-0.9488,-0.902,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.943,-0.9452,-0.6844,0.2994,0.8186,0.8154,0.765,0.6912,0.6698,0.6676,0.662,0.2736,-0.4058,-0.6676,-0.7828,-0.888,-0.9238,-0.9508,-0.9486,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.872,-0.9334,-0.8768,0.3332,-0.029,-0.0356,-0.1224,-0.0178,0.0022,-0.004,0.072,-0.16,-0.376,-0.576,-0.132,-0.7,-0.8068,-0.9534,-0.9534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2,-0.1714,1,1,1,-0.8572,-1,-1,-0.9142,-0.8286,-0.8572,-0.2286,-0.0858,-0.4858,0.9428,1,-0.7142,-0.8286,-0.1142,-1,-1,-1,-1,-1,-1,-1,0.0614,0.0276,0.023,0.0238,0.0284,0.0324,0.0344,0.0258,0.0502,0.0652,0.7744,0.7994,0.8136,0.8552,0.8528,0.8932,0.914,0.9566,1,1,-0.7734,0.1176,0.2256,0.399,0.7818,0.9876,0.9574,1,-0.3704,-0.037,-0.0556,0.0186,-0.0186,0.2408,0.2222,0.2408,0.6852,0.8704,0.7962,0.7778,0.8888,0.7592,0.6482,0.6296,0.4444,0.574,0.6482,0.8518,1,0.8888,0.6296,0.4814,0.5186,0.3888,0.3518,0.2408,0.037,-0.1296,-0.0556,-0.6666,-0.5502,-0.2426,-0.3372,-0.4082,-0.3254,-0.3372,-0.2662,-0.219,0.2426,0.5266,0.2662,0.4674,0.574,0.1716,0.2308,0.5622,0.6568,0.574,0.9408,0.9764,1,1,0.6686,0.5148,0.4792,0.4674,0.3964,0.3492,0.4438,0.432,0.1834,-0.0296,0.1338,0.3122,0.0192,-0.3758,-0.2612,-0.3758,-0.1082,-0.07,0.2738,0.7198,0.758,0.8598,0.809,0.5542,0.4394,0.5924,0.8598,0.6816,0.6942,0.949,1,0.809,0.7198,0.656,0.4522,0.2612,0.2356,0.2484,0.2738,0.2484,0.2738,0.0828,1,-1,-1,1,-1,-1,-1,-0.7334,-1,-0.2572,0.4666,0.0858,-0.0096,-0.1238,0.0666,0.0096,0.0666,0.0096,0.3334,0.7142,1,0.962,0.7904,0.7334,0.6952,0.9238,0.619,0.1238,0.6572,0.4286,0.6572,0.3334,0.2,0.0096,0.0476,0.0096,-0.1048,0.0096,-0.0096,-0.2572,-0.4858,'4'
-0.631,0.0836,0.1206,-0.0208,-0.0348,-0.3852,-0.348,-0.4686,-0.4338,-0.6148,-0.5336,-0.5128,-0.4106,-0.5336,-0.3248,-0.413,-0.1368,-0.2112,0.1508,0.1484,0.5498,0.6288,0.9002,0.8352,0.696,0.7238,0.754,0.891,0.8236,0.9328,0.7772,1,-0.5474,0.0946,0.0946,0.0062,0,-0.3334,-0.3478,-0.5082,-0.5102,-0.5844,-0.5884,-0.391,-0.3662,-0.356,-0.3168,-0.1256,-0.072,-0.0164,0.0556,0.3828,0.4692,0.7798,0.8806,0.7818,0.677,0.7058,0.7818,0.8334,0.928,0.8868,0.8786,1,-0.4846,0.0774,0.0392,0.1092,0.0116,-0.4634,-0.5906,-0.5122,-0.6098,-0.5546,-0.6586,-0.4676,-0.4634,-0.334,-0.315,-0.2132,-0.139,-0.0604,0.2068,0.262,0.5674,0.631,0.8918,0.913,0.65,0.6416,0.8092,0.807,1,0.9618,0.9576,0.9216,-0.4616,0.0242,-0.044,0.0902,-0.099,-0.6176,-0.655,-0.6308,-0.6506,-0.6924,-0.6374,-0.5802,-0.3824,-0.455,-0.3384,-0.266,-0.1714,-0.088,0.022,0.3164,0.4176,0.7582,0.8462,0.8528,0.6506,0.677,0.7802,0.8968,0.967,0.967,0.9692,1,-0.5108,-0.103,0.1166,0.2232,-0.2458,-0.5266,-0.6036,-0.6376,-0.6194,-0.7644,-0.7304,-0.59,-0.5584,-0.5108,-0.479,-0.4246,-0.291,-0.2684,-0.042,0.1868,0.402,0.7486,0.8936,0.7894,0.5108,0.6648,0.6852,0.8256,0.975,1,0.9026,0.8822,-0.4196,-0.0386,0.4584,0.4316,-0.4524,-0.6726,-0.7886,-0.7084,-0.753,-0.991,-0.7738,-0.6608,-0.6696,-0.5566,-0.7114,-0.628,-0.5386,-0.5566,-0.2768,0.0446,0.2946,0.863,0.9852,0.9226,0.6398,0.6816,0.8214,0.7828,1,0.9614,0.878,0.5922,-0.6576,-0.0038,0.393,0.2296,-0.4124,-0.6498,-0.6032,-0.5758,-0.681,-0.747,-0.9066,-0.6226,-0.5098,-0.467,-0.7782,-0.5642,-0.537,-0.5486,-0.4902,-0.2646,0.0934,0.747,1,0.7432,0.5486,0.5486,0.6536,0.5954,0.4396,0.5252,0.4086,0.2412,-0.6956,-0.1304,0.174,0.0434,-0.2174,-0.4782,-0.3914,-0.3914,-0.6086,-0.5218,-0.5218,-0.3478,-0.5652,-0.8696,-0.4348,-0.5652,-0.087,-0.0434,0.0434,0.3478,0.174,0.913,1,0.6086,0.7826,0.6086,0.9566,1,0.7392,0.913,0.7826,0.913,-0.64,0.04,0.04,0.08,0,-0.28,-0.32,-0.36,-0.52,-0.52,-0.72,-0.52,-0.52,-0.44,-0.52,-0.12,-0.2,-0.16,0,0.32,0.52,0.68,0.88,0.68,0.64,0.76,0.6,0.96,0.8,0.88,0.68,1,-0.3882,-0.1294,0.3412,0.3648,-0.3648,-0.6236,-0.7412,-0.7176,-0.6236,-0.7176,-0.647,-0.5294,-0.6236,-0.4118,-0.6,-0.6942,-0.2942,-0.247,-0.247,0.2236,0.3412,0.6942,0.8824,0.8588,0.7176,0.6236,0.7412,0.8588,1,0.9294,0.8588,0.8588,-1,-1,-1,-1,-1,-1,-1,-1,-0.9074,-0.8854,-0.4846,0.304,0.881,0.956,0.8194,0.7004,0.5638,0.3436,0.3876,0.1542,-0.3172,-0.3128,-0.4978,-0.4582,-0.7798,-0.837,-0.8986,-0.8766,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9696,-0.973,-0.6772,-0.0446,0.6638,0.9094,0.5798,0.3668,0.2308,-0.0832,-0.3328,-0.6076,-0.82,-0.845,-0.8876,-0.8626,-0.906,-0.9492,-0.954,-0.9554,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9134,-0.9668,-0.5134,0.118,0.2162,0.189,0.315,0.2766,0.3232,0.2482,0.0782,-0.4584,-0.7568,-0.78,-0.8868,-0.61,-0.4434,-0.7868,-0.88,-0.8668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,-0.4286,-0.8,-0.8,-0.8572,-0.9142,-0.9142,-0.6286,-0.4858,-0.6858,-0.6858,-0.7714,-0.6286,-0.3714,-0.6858,-0.8858,-0.8572,-1,-1,-1,-1,-1,0.2688,0.2682,0.2612,0.2672,0.2552,0.2474,0.2298,0.2106,0.1204,-0.0428,1,1,1,1,1,1,1,1,1,1,-0.7334,0.4,-0.609,-0.4052,-0.1022,-0.0744,0.201,1,-0.6444,-0.1112,-0.0666,-0.1112,-0.2444,-0.2444,-0.1556,-0.0666,0.0666,0.3334,0.9112,1,0.9112,0.8666,0.9112,0.9112,0.9112,0.7778,0.7334,0.3334,-0.2444,-0.0666,-0.1556,-0.5112,-0.2444,-0.1556,0.2444,0.2444,0.1556,0.0666,-0.2,-0.5112,-0.3272,0.309,0.0364,-0.1272,-0.0728,-0.1636,-0.2182,-0.1454,-0.0364,0.1818,0.8,1,0.709,0.6,0.8,0.6364,0.7454,0.691,0.6,0.091,-0.2182,-0.1636,-0.291,-0.2,-0.3636,-0.2546,0.1454,0.2728,0,0.0182,0.0364,-0.109,0.2072,0.4594,0.4414,0.1352,0.1712,0.009,-0.063,0.045,0.045,0.2972,0.8558,0.946,0.8738,0.8918,1,0.8198,0.964,0.8378,0.5496,0.1892,-0.045,-0.009,-0.009,0.009,0.063,0.1892,0.3694,0.4234,0.2252,0.2432,0.2072,0.099,0.1366,-1,-1,1,-1,-1,0.2,-0.8334,-1,-0.1428,-0.0476,-0.127,-0.2858,-0.2064,-0.1746,-0.0794,-0.1746,-0.1588,0.3492,0.5714,0.6984,1,0.9842,0.2858,0.4762,0.3334,-0.127,-0.1112,0.0318,-0.0634,-0.381,-0.0318,0.0794,0,-0.3016,-0.1588,0.0158,0.0476,-0.0794,-0.0318,-0.0634,'5'
-0.601,0.0166,-0.0266,-0.052,-0.1818,-0.6722,-0.5884,-0.54,-0.6748,-0.7002,-0.662,-0.5604,-0.5476,-0.535,-0.4256,-0.4028,-0.2072,-0.2148,0.0088,0.2198,0.4332,0.5628,0.6646,0.6112,0.54,0.6316,0.7738,0.789,1,0.9594,0.873,0.8526,-0.4676,0.0796,-0.015,0.0324,-0.1716,-0.816,-0.5348,-0.4876,-0.5946,-0.6144,-0.6318,-0.6692,-0.4926,-0.515,-0.3532,-0.3384,-0.2462,-0.2538,-0.2238,0.296,0.2388,0.5846,0.515,0.6244,0.49,0.617,0.6816,0.7612,0.9976,1,0.8308,0.7712,-0.5156,-0.005,-0.061,0.001,-0.1352,-0.6636,-0.7098,-0.6056,-0.6636,-0.6796,-0.7338,-0.7058,-0.3954,-0.4134,-0.3494,-0.3954,-0.2152,-0.3114,-0.067,0.2132,0.3974,0.6516,0.7818,0.5056,0.4134,0.5836,0.6316,0.8238,0.8338,0.996,0.958,1,-0.559,0,-0.0448,-0.0102,-0.1078,-0.6952,-0.6748,-0.5244,-0.6606,-0.7886,-0.689,-0.6078,-0.6138,-0.5284,-0.4126,-0.3476,-0.2886,-0.246,0.0528,0.067,0.496,0.4674,0.878,0.8334,0.4268,0.378,0.752,0.7236,1,0.8578,0.9594,0.8902,-0.586,0.128,0.1116,0.1326,0.072,-0.4604,-0.521,-0.5466,-0.6256,-0.6024,-0.693,-0.5046,-0.5534,-0.3628,-0.4512,-0.2628,-0.3674,-0.0814,0.0256,0.3768,0.4348,0.7582,0.7698,0.9418,0.7954,0.6302,0.6906,0.9,0.9232,0.9512,0.879,1,-0.7184,0.574,0.6584,-0.1726,-0.0634,-0.4788,-0.5246,-0.764,-0.6654,-0.7536,-0.75,-0.6302,-0.595,-0.6198,-0.507,-0.5846,-0.3944,-0.4366,-0.2816,-0.169,-0.0036,0.4084,0.9578,0.9684,0.4824,0.4402,0.8028,1,0.926,0.8838,0.7536,0.7536,-0.8104,0.6618,1,0.4432,-0.3732,-0.3568,-0.1216,0.0186,-0.2124,-0.5712,-0.5506,-0.2948,-0.2412,-0.4598,-0.398,-0.3196,-0.435,-0.035,0.1836,0.8432,0.8432,0.7154,0.8268,0.6536,0.6412,0.6412,0.7196,0.6702,0.7238,0.5052,0.4062,0.4474,-0.2084,0.0416,0,-0.125,0,-0.2084,-0.125,-0.2084,-0.1666,-0.4166,-0.4584,-0.4166,-0.375,-0.4166,0.0834,0,0.0834,0.1666,0.0416,0.375,0.5,0.6666,0.75,0.8334,0.7916,0.8334,0.9166,0.9584,1,1,1,1,-0.6296,-0.074,-0.1112,-0.1852,-0.1852,-0.7408,-0.5556,-0.4814,-0.6666,-0.7778,-0.6296,-0.4074,-0.4444,-0.5186,-0.5556,-0.4444,-0.1852,-0.1852,0.037,0.3334,0.4814,0.7038,0.7408,0.5186,0.4444,0.5926,0.7408,0.8148,1,0.8888,0.8148,0.7778,-0.494,0.3976,0.3976,0.0362,0.1084,-0.1808,-0.229,-0.5422,-0.5422,-0.6144,-0.6626,-0.3976,-0.3012,-0.4216,-0.3254,-0.3494,-0.3012,-0.1326,0.1084,-0.012,0.4458,0.5904,1,0.8072,0.3494,0.3012,0.5662,0.518,0.8554,0.8314,0.7108,0.6626,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8972,-0.8628,0.3658,0.5372,0.4858,0.7428,0.9486,0.8514,0.6914,0.6914,0.2972,0.0228,-0.1772,-0.72,-0.9258,-0.8914,-0.88,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9606,-0.9634,0.3218,0.0074,-0.0384,0.703,0.8446,0.873,0.8136,-0.0466,-0.6372,-0.7112,-0.7852,-0.916,-0.9352,-0.9314,-0.9414,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9568,-0.8934,-0.0292,-0.13,-0.1034,0.2232,0.1732,0.15,0.1266,-0.2734,-0.59,-0.5884,-0.745,-0.7068,-0.7134,-0.6534,-0.6934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,-0.6572,-0.7428,-0.7428,-0.8286,-0.8,-0.6286,-0.2572,-0.0858,-0.0572,-0.3428,-0.6,-0.8,-0.8858,-0.6286,-1,-1,-1,-1,-1,-1,-1,0.0086,0.0078,0.0168,0.0072,-0.0172,-0.0318,-0.053,-0.0926,-0.128,-0.0658,1,1,1,1,1,1,1,1,1,0.9976,-0.7866,0.4236,-0.9634,-0.6526,0.4588,0.4698,0.586,1,0.2336,0.57,0.6262,0.7944,0.7758,0.9626,0.7944,0.8878,0.6822,0.7944,0.8318,0.701,0.9252,0.4766,0.4392,0.6074,0.6074,0.5514,0.6074,0.5328,0.2524,0.6448,0.701,0.7944,0.7944,0.6636,0.5514,0.4392,0.57,0.7758,0.4954,-0.3458,0.1364,-0.25,0.1136,0.2728,0.6136,0.5,0.75,0.8636,1,0.5682,0.4772,0.7728,0.3636,0.25,0.25,0.591,0.409,0.2272,0.2272,0.5454,0.6364,0.4772,0.25,0.659,0.7272,0.5682,-0.0228,0.2728,0.3864,-0.659,-0.1818,-0.6136,0.1834,0.2834,0.6334,0.9,0.6,0.6,0.9166,0.4334,0.7166,0.8334,0.8334,0.6666,0.65,0.5834,0.5166,0.5334,0.4,0.3334,0.4666,0.1166,0.6166,0.5666,0.3334,0.2166,0.45,0.6166,0.4834,0.4834,0.1166,0.4666,0.4166,-0.3666,-0.9964,1,-1,-1,-1,-1,-1,-1,-1,-0.1612,-0.242,-0.0646,0.4516,0.129,0.0968,0.1452,0.6452,0.7258,0.6452,0.5484,0.113,0.4032,0.5968,0.5484,0.6452,1,0.9516,0.129,-0.0322,0.1936,0.5,0.7258,0.6612,0.0484,0.3226,0.2742,0.0806,0.2258,0.5,0.0646,-0.1612,'5'
-0.0546,0.5272,0.491,-0.1272,-0.3818,0.1272,0.2364,1,0.9272,0.3454,0.2,0.6728,0.7454,0.5636,0.4182,-0.1636,-0.1636,-0.2728,0.0546,-0.2728,-0.5272,-0.2364,0.6364,0.4546,-0.0546,-0.4546,-0.491,-0.2364,0.0546,-0.0546,-0.5636,-0.2,1,0.9216,0.3334,0.1372,0.098,-0.7254,-0.255,-0.2942,-0.4902,-0.7648,-0.1764,-0.2942,-0.1372,0.0196,-0.4118,0.0196,-0.098,-0.647,-0.2942,-0.3726,-0.2156,0.1372,0.255,-0.2942,0.0196,-0.0196,-0.6078,-0.6078,-0.8432,-0.1764,-0.0196,-0.5686,0.8788,1,0.091,-0.4242,-0.2122,-0.1212,-0.2424,-0.4546,0,-0.091,0,0.303,0.2728,0.3334,0,0.3636,0.4848,0.0606,0,-0.2122,0.1212,0.394,0.5758,0.5454,0.3334,0.1212,-0.0606,0.0304,0.0304,0.3334,0.1818,0.2424,1,0.7544,-0.4036,-0.4386,-0.7544,-0.2982,-0.0878,0.1228,-0.0878,-0.0878,0.0176,0.0176,0.0878,0.2982,0.4386,0.228,0.3684,0.2982,0.5438,0.2632,-0.2982,-0.2632,0.4736,0.5088,0.4736,0.2982,0.0526,0.3334,0.2632,0.4036,0.0526,0.3684,0.3076,0.2308,-0.5,-0.577,-0.577,0.1154,0.077,0.4616,0.1538,-0.3846,0.2308,0.3846,0.6538,0.2692,0.3846,0.8846,0.7692,0.4616,0.8846,0.7308,0.1154,0.8462,0.8462,0.6538,0.3846,0.7308,0.8462,1,0.8846,0.8462,0.6154,0.077,1,0.7692,-0.2692,-0.8846,-0.3846,-0.077,-0.0384,-0.0384,-0.1924,0.1538,0.1924,0.2692,0.7308,0.577,-0.077,0.5,0.423,0.4616,0.3462,-0.2308,0.4616,1,0.923,0.4616,0.7692,0.7692,0.6924,0.8076,0.6538,0.3076,0.3076,0.077,0.6552,0.4022,-0.3334,-0.7012,-0.5172,-0.2644,-0.1034,-0.1494,-0.0344,-0.2644,0.2184,0.4942,0.3564,0.2644,0.4022,0.2874,0.4712,0.4942,0.5402,0.3104,-0.1034,-0.4252,0.1724,0.839,1,0.7472,0.3104,0.5632,0.5402,0.3334,0.3334,0.3794,0.871,0.871,0.6774,0.3548,-0.0322,0.2258,0.742,1,0.871,0.4194,0.613,0.871,0.871,0.613,0.5484,-0.0968,0.0322,-0.2258,0.4194,0.2904,-0.1612,0.0968,0.8064,0.742,0.0322,-0.0322,-0.4194,-0.2904,0.0322,-0.0968,-0.2904,0.0322,0.9334,1,0.0666,-0.6,-0.0666,-0.2666,-0.6666,-0.6,-0.2,-0.3334,0,0.2666,0.0666,0.0666,-0.0666,0.2,0.4666,0.1334,-0.4,-0.1334,0.0666,0.4,0.4666,0.2666,0.1334,0.0666,-0.4666,-0.4,-0.2,0.2,0.3334,0.0666,1,0.9216,0.3334,0.1372,0.098,-0.7254,-0.255,-0.2942,-0.4902,-0.7648,-0.1764,-0.2942,-0.1372,0.0196,-0.4118,0.0196,-0.098,-0.647,-0.2942,-0.3726,-0.2156,0.1372,0.255,-0.2942,0.0196,-0.0196,-0.6078,-0.6078,-0.8432,-0.1764,-0.0196,-0.5686,-0.9788,-0.9386,-0.7332,-0.3888,-0.4778,-0.464,-0.4678,-0.4678,-0.4202,-0.5968,-0.7382,-0.0832,0.251,1,1,1,0.35,0.35,0.022,-0.1572,-0.2636,-0.325,-0.5166,-0.057,-0.6356,-0.8046,-0.8422,-0.9248,-0.9424,-0.9524,-0.9248,-0.8772,-0.5516,-0.9548,-0.7682,0.2046,1,1,1,1,1,1,0.6694,-0.3662,0.0678,0.3936,1,1,1,0.4448,0.4448,0.1166,-0.0582,-0.1332,-0.1998,-0.3532,0.0594,-0.4804,-0.629,-0.6814,-0.717,-0.7574,-0.7502,-0.711,-0.673,-0.484,-0.9734,-0.8634,-0.33,-0.3968,-0.3868,-0.5434,-0.5468,-0.4,-0.4834,-0.6134,-0.61,-0.82,-0.84,-0.9,-0.9,-0.86,-0.88,-0.92,-0.78,-0.63,-0.75,-0.75,-0.6768,-0.8668,-0.6568,-0.31,-0.31,0.0432,0.2766,0.46,0.0832,-0.1834,-0.6668,-0.1142,1,1,1,-0.7714,-0.7714,-0.8858,-0.2286,0.9142,0.9142,0.2,0.4286,0.5714,0.6858,0.6572,0.5714,0.4858,0.4,-0.0572,-0.6572,-0.9428,-1,-0.8572,-0.9428,-0.7714,-0.8572,-0.8,-0.8572,-0.9428,-0.9142,-0.9142,-0.5714,-0.4572,0.8284,0.8284,0.8284,0.412,0.412,-0.018,-0.018,-0.5098,-0.5246,-0.3382,-1,-1,-1,-0.9442,-0.9442,-0.6672,-0.6672,-0.5734,-0.5208,-0.2638,-0.84,-0.9412,-0.4222,0.0024,1,0.34,-0.006,-0.8584,-0.0778,0.1656,0.5604,0.6156,0.5378,0.2884,0.407,0.7322,0.9776,0.8282,0.8588,1,0.9918,0.773,0.6666,0.6768,0.685,0.5338,0.186,0.1636,-0.004,-0.4274,-0.5582,-0.546,-0.4152,-0.2924,-0.1308,0.0082,-0.0594,-0.1432,-0.2024,-0.3128,-0.0302,0.2522,0.643,1,0.8686,0.778,0.9218,0.984,0.842,0.7212,0.8632,0.9574,0.9414,0.682,0.627,0.65,0.7868,0.604,0.0054,-0.0782,-0.2416,-0.4654,-0.4068,-0.2416,-0.2114,-0.2504,-0.0834,0.0516,-0.1314,-0.2326,-0.158,-0.3268,-0.0306,0.1952,0.6588,0.8282,1,0.6706,0.9436,0.6824,0.2942,0.2636,0.3836,0.8306,0.5342,0.1576,0.1058,0.193,0.5906,0.473,0.0352,0.007,-0.0588,-0.3836,-0.4048,-0.1318,-0.0564,-0.1836,-0.0894,0.1294,0.0494,-0.0094,-0.0824,-0.2918,0.7694,-1,1,-1,1,-1,-1,0.9,1,-0.4814,-0.3038,-0.2592,-0.1556,0.1112,0.2592,0.1556,0.4222,0.3778,0.7038,0.6444,0.5112,0.8074,0.7334,0.526,0.5704,0.4666,0.9112,0.6592,0.4666,0.5408,0.6592,0.8222,1,0.4814,0.6592,0.8074,0.6296,0.8074,0.8074,0.4074,0.274,'6'
-0.7294,-0.2892,-0.1884,-0.0026,0.4536,0.5596,0.581,0.6022,0.268,0.1406,0.1034,0.1884,0.4058,0.5014,0.6604,0.8886,1,0.756,0.6552,0.7824,0.7932,0.9046,0.8886,0.9734,0.878,0.7984,0.687,0.7506,0.6604,0.7188,0.4642,0.4854,-0.7036,-0.2664,-0.2212,-0.015,0.3568,0.4674,0.583,0.6232,0.2764,0.2714,0.3166,0.2562,0.5126,0.5778,0.7236,0.9246,1,0.6432,0.6282,0.8242,0.804,0.8894,0.8242,0.9648,0.8292,0.8644,0.7136,0.794,0.7438,0.7638,0.583,0.5678,-0.6692,-0.2432,-0.1478,0.0276,0.3584,0.4536,0.7192,0.7394,0.3884,0.3434,0.5138,0.4686,0.619,0.7694,0.8446,0.9248,0.9498,0.599,0.569,0.7344,0.7092,0.8948,0.9048,1,0.8646,0.8848,0.8296,0.8246,0.8146,0.7494,0.619,0.6592,-0.6684,-0.2092,-0.1836,0.0664,0.3622,0.5052,0.7296,0.796,0.4336,0.449,0.5714,0.5562,0.8776,0.796,0.9438,0.8062,0.7142,0.5256,0.5612,0.6582,0.7244,0.8622,0.898,1,0.9744,0.7244,0.653,0.6938,0.6276,0.7704,0.6174,0.6938,-0.676,-0.1482,-0.176,0.162,0.5,0.7962,0.6666,0.801,0.6528,0.6158,0.6018,0.7638,0.8658,0.9676,0.7592,0.6898,0.4676,0.5186,0.5278,0.5972,0.6158,0.7268,0.9538,1,0.9444,0.8148,0.6158,0.5788,0.6482,0.6064,0.6574,0.7314,-0.893,-0.1532,-0.1094,0.2116,0.2604,0.8978,0.966,0.6594,0.7762,0.5474,0.7616,0.8588,1,0.8248,0.5474,0.4112,0.3138,0.2312,0.2846,0.3576,0.3966,0.5718,0.708,0.7372,0.6642,0.5134,0.3576,0.2896,0.382,0.3236,0.421,0.5036,-0.897,0.006,0.0728,0.2304,0.3636,0.7334,1,0.8182,0.6728,0.594,0.6666,0.6666,0.5576,0.7454,0.4,-0.0364,-0.1152,-0.109,-0.1454,0.2,0.194,0.2788,0.3696,0.291,0.2848,0.103,-0.1818,-0.1818,-0.2728,-0.2122,-0.2182,0.006,-0.7818,-0.2364,-0.1272,0.091,0.4546,0.5636,0.6728,0.6,0.2728,0.2364,0.1272,0.1636,0.3818,0.6364,0.6728,0.7818,0.9272,0.8546,0.6364,0.8182,0.8546,0.9636,0.9636,1,0.891,0.8546,0.8546,0.8182,0.7818,0.6728,0.5272,0.6,-0.7818,-0.2,-0.309,0.0546,0.491,0.6364,0.6,0.6364,0.3454,0.3454,0.1636,0.2364,0.4546,0.6,0.709,0.9272,1,0.6728,0.6364,0.8182,0.7818,0.891,0.7818,0.9636,0.8546,0.8182,0.709,0.7454,0.709,0.709,0.6,0.5636,-0.9646,-0.1858,-0.1682,0.1858,0.2212,0.823,0.823,0.6638,0.7346,0.6106,0.6992,0.947,1,0.6992,0.646,0.2566,0.4868,0.2566,0.3982,0.3274,0.593,0.5222,0.8408,0.77,0.7876,0.7168,0.4868,0.4514,0.5222,0.5222,0.5222,0.593,-1,-1,-1,-1,-1,-1,-1,-1,-0.9456,-0.9508,-0.3686,0.229,0.1876,0.229,0.2626,0.2652,0.3506,0.8266,0.912,0.7464,0.304,-0.3222,-0.7956,-0.8654,-0.9068,-0.899,-0.85,-0.9094,-0.9482,-0.9354,-0.9482,-0.9094,-0.938,-1,-1,-1,-1,-1,-1,-1,-1,-0.987,-0.9872,-0.1736,0.2634,0.6614,0.908,0.8972,0.966,0.9334,0.7134,0.6946,0.3716,-0.2032,-0.7268,-0.9332,-0.9464,-0.9418,-0.9354,-0.9468,-0.9564,-0.9592,-0.9592,-0.9566,-0.9458,-0.9426,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.9734,-0.56,-0.45,-0.325,-0.205,-0.312,-0.348,-0.248,-0.344,-0.54,-0.476,-0.628,-0.644,-0.3534,-0.1934,-0.0268,0.2366,-0.3568,0.0866,-0.08,-0.06,0.1566,0.27,-0.0268,-1,-1,-1,-1,-1,-1,-1,-1,-0.7428,1,1,1,-0.2858,-0.4,-0.7142,-0.8858,-0.8572,-0.7142,0.2,1,1,1,1,-0.2286,-0.6286,-0.9142,-0.8572,-0.9714,-0.9142,-0.9142,-0.9428,-0.9428,-0.7714,1,1,1,1,1,1,1,1,1,1,0.2454,0.2454,0.2236,0.226,0.2128,0.2358,0.2516,0.2372,0.1552,-0.1788,-0.7734,-0.5058,0.0208,0.591,0.1188,0.8124,0.9098,1,-0.1698,-0.1698,0.132,0.3208,0.3584,0.3584,0.3962,0.6604,0.849,0.8868,0.9622,1,1,0.8114,0.8114,0.849,0.8114,0.6604,0.283,0.2452,0.0566,0.0566,-0.2452,-0.4716,-0.2452,-0.2076,-0.1698,-0.2076,-0.0188,-0.3208,-0.585,-0.5094,-0.188,0.0828,0.1578,0.4888,0.3534,0.3384,0.4888,0.6992,0.8046,0.8496,0.8196,1,0.97,0.7744,0.7142,0.639,0.6542,0.5488,0.1278,0.0526,-0.0226,-0.0226,-0.4586,-0.4286,-0.5338,-0.624,-0.3834,-0.233,-0.3082,-0.3834,-0.233,-0.5038,-0.2672,0.0992,0.542,0.6642,0.2978,0.3282,0.5726,0.8016,0.9236,0.8474,0.832,0.939,1,0.8778,0.8016,0.71,0.6184,0.5726,0.481,0.1756,0.0688,0.0382,-0.3436,-0.4504,-0.5878,-0.7252,-0.1756,-0.145,-0.2214,-0.374,-0.0534,-0.2824,1,-1,-1,1,-1,-1,-1,-0.8334,1,-0.5902,-0.6394,-0.0656,0.0164,-0.0328,0.164,0.295,0.2296,0.4262,0.3442,0.4754,0.4754,0.4754,0.3114,0.377,0.4098,0.4098,0.541,0.5246,0.7868,0.3934,0.4754,1,0.9508,0.9836,0.7868,0.836,0.6066,0.5574,0.705,0.6558,0.1804,'6'
-0.3492,0.1436,0.276,0.4676,0.1972,-0.3746,-0.3098,-0.3464,-0.2508,-0.3492,-0.2564,-0.2254,-0.155,-0.1014,0.0366,0.1972,0.414,0.5578,0.9718,1,0.9324,0.8902,0.9972,0.7944,0.8,0.6986,0.6394,0.7746,0.8508,0.9662,0.8986,0.9436,-0.3962,0.036,0.2742,0.4238,0.0748,-0.4516,-0.4266,-0.482,-0.3408,-0.4156,-0.3434,-0.3048,-0.3214,-0.144,-0.1552,-0.0166,0.1606,0.3186,0.6952,0.795,1,0.9584,0.8892,0.8642,0.8448,0.676,0.6398,0.7008,0.7506,0.8864,0.9556,0.9556,-0.378,0.0326,0.3654,0.4464,-0.2256,-0.6206,-0.552,-0.6268,-0.6112,-0.6486,-0.6982,-0.5832,-0.5428,-0.605,-0.4868,-0.2908,-0.2224,0.0388,0.2846,0.4432,0.7822,0.9378,1,0.86,0.8756,0.8694,0.8164,0.6578,0.7014,0.7948,0.9284,0.9938,-0.3802,0.0532,0.5096,0.5286,-0.5324,-0.6692,-0.7832,-0.7832,-0.8404,-0.6882,-0.7262,-0.7566,-0.6768,-0.4676,-0.4752,-0.5096,-0.4866,-0.4562,-0.3194,0.0038,0.479,1,0.9278,0.7794,0.749,0.7262,0.5666,0.3916,0.4714,0.73,0.825,0.9848,-0.4224,0.0388,0.6034,0.638,-0.5818,-0.9568,-0.8146,-0.6466,-0.763,-0.7414,-0.875,-0.7156,-0.6768,-0.7586,-0.6336,-0.4656,-0.6638,-0.6294,-0.3664,-0.125,0.1206,0.7544,0.6896,0.8448,1,0.944,0.7716,0.5992,0.556,0.4784,0.638,0.7456,-0.3512,0.2926,0.8,0.9318,-0.1268,-0.5658,-0.5952,-0.2732,-0.3318,-0.6976,-0.9708,-0.8,-0.7464,-0.5854,-0.6048,-0.7756,-0.6976,-0.556,-0.278,-0.1952,0.361,0.6244,0.7854,0.9318,1,0.917,0.5414,0.556,0.5708,0.5268,0.9318,0.9854,-0.4514,0.3274,0.4632,0.6814,-0.2862,-0.646,-0.5576,-0.475,-0.1918,-0.3688,-0.7404,-0.7404,-0.5222,-0.4278,-0.5162,-0.3864,-0.3156,-0.6402,-0.8762,-0.115,0.2212,0.6402,1,0.8584,0.947,0.941,0.7346,0.1622,-0.0856,0.0088,0.3982,0.5576,-0.4,0.3,0.2,0.3,0.1,-0.3,-0.35,-0.4,-0.5,-0.55,-0.5,-0.4,-0.65,-0.1,0.05,0.35,0.4,0.7,0.75,1,0.7,1,0.75,0.9,0.5,0.7,0.6,0.7,0.7,0.8,0.85,0.8,-0.5,-0.0454,0.2272,0.409,0.091,-0.7728,-0.4546,-0.5454,-0.4546,-0.5454,-0.4546,-0.2728,-0.3182,-0.1364,-0.0454,0.1364,0.409,0.4546,1,0.9546,0.8182,0.7728,0.9546,0.591,0.6818,0.6364,0.591,0.6818,0.7728,1,0.7728,0.8636,-0.0576,0.2884,0.5576,0.5962,-0.0192,-0.077,-0.2116,-0.25,-0.1346,-0.1538,-0.5192,-0.3846,-0.173,-0.173,-0.173,0.0192,-0.1154,0.0192,0.3462,0.3462,0.7308,0.9038,0.9616,0.9424,0.923,0.7116,0.7116,0.6346,0.5192,0.75,0.7884,1,-1,-1,-0.9326,-0.9356,-0.915,-0.9414,-0.9268,-0.839,-0.918,-0.921,-0.6252,0.7248,0.8506,0.59,0.3998,0.0424,-0.1742,-0.3002,-0.3792,-0.3822,-0.4524,-0.6778,-0.874,-0.915,-0.915,-0.9444,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.967,-0.963,-0.8396,-0.5496,-0.1108,0.1628,0.169,-0.1242,-0.4906,0.5488,0.9504,0.7162,0.1644,-0.2916,-0.6376,-0.702,-0.7202,-0.7562,-0.8004,-0.8782,-0.9268,-0.9386,-0.9442,-0.9434,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9692,-0.9534,-0.8734,0.33,0.6732,0.67,0.7032,0.6366,0.3832,-0.3978,-0.1624,-0.0624,-0.266,-0.3,-0.57,-0.648,-0.672,-0.8,-0.886,-0.74,-0.7134,-0.64,-0.72,-0.8,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2,-0.0572,1,1,1,0.1714,-0.6286,-0.0572,1,1,-0.5714,-0.8,-0.7428,-0.6,-0.5714,-0.9428,-0.7714,-0.6858,-0.8858,-0.8572,-0.9428,-1,-0.9714,-0.6,-1,-1,-1,-1,-1,-1,-1,0.1572,0.155,0.1616,0.1638,0.1514,0.1446,0.1122,0.0764,-0.0622,-0.1576,0.6928,0.6758,0.6784,0.6854,0.7072,0.7436,0.7736,0.8278,0.9146,0.8428,-0.5866,0.1412,-0.5872,-0.1746,0.5362,0.8026,1,0.3834,-0.6272,-0.6272,-0.4406,-0.4238,-0.305,-0.3254,-0.1288,0.0712,0.1322,0.2814,0.2916,0.5322,0.8204,1,0.8814,0.7356,0.756,0.522,0.5728,0.5254,0.617,0.8136,0.9016,0.9628,0.6576,0.5288,0.3186,0.3762,0.3254,0.1762,-0.0136,-0.3152,-0.8368,-0.7102,-0.6174,-0.4374,-0.4712,-0.2742,-0.1926,-0.021,0.3896,0.5528,0.429,0.6258,0.5978,0.7468,0.806,0.761,0.5218,0.5556,0.5668,0.6344,0.6286,0.758,1,0.834,0.7694,0.6934,0.5978,0.4964,0.367,0.308,0.263,-0.0436,-0.687,-0.5256,-0.5518,-0.5024,-0.4266,-0.3444,-0.1202,0.051,0.565,0.7034,0.6772,0.9078,0.8386,0.5058,0.72,0.6474,0.608,0.6836,0.5486,0.4926,0.5684,0.766,0.8584,0.8386,0.8814,1,0.7792,0.5124,0.4662,0.1928,0.1302,-0.0412,0.3806,-1,-1,1,-1,-1,-1,0.2666,-1,-0.2558,-0.0388,-0.0698,0.1782,0.1938,0.0078,0.0542,0.1938,0.1628,0.2094,0.3178,0.5348,0.9224,1,0.4418,0.628,0.5814,0.1472,0.1008,0.2404,0.1938,0.2248,0.1938,-0.0698,-0.2558,-0.0232,0.1318,0.2094,0.0852,0.0232,-0.2404,-0.4108,'7'
-0.4522,0.0146,0.027,0.1992,-0.0248,-0.5208,-0.4212,-0.4108,-0.4918,-0.5726,-0.3424,-0.3714,-0.249,-0.1826,-0.1182,0.11,0.1078,0.4336,0.7428,1,0.8568,0.8568,0.888,0.9522,0.7262,0.7116,0.6992,0.6224,0.8382,0.8132,0.9564,0.8464,-0.538,-0.0634,-0.0906,0.1114,-0.0842,-0.6004,-0.5026,-0.463,-0.5318,-0.5734,-0.511,-0.4922,-0.3132,-0.3362,-0.2134,-0.0072,0.0448,0.178,0.332,0.7586,0.744,1,0.8668,0.873,0.7212,0.7918,0.588,0.6088,0.7586,0.7128,0.8896,0.796,-0.588,-0.0884,-0.1506,0.0748,-0.0884,-0.5122,-0.5976,-0.5218,-0.549,-0.5394,-0.7356,-0.6676,-0.4324,-0.4946,-0.3276,-0.2984,-0.106,-0.069,0.0806,0.5064,0.5976,0.9028,0.9398,0.7026,0.7124,0.7764,0.7084,0.6424,0.6444,0.7688,0.8698,1,-0.6708,-0.042,-0.0734,0.0356,-0.044,-0.3962,-0.4884,-0.5052,-0.629,-0.5408,-0.654,-0.5954,-0.5724,-0.5094,-0.5366,-0.3606,-0.239,-0.1866,0.0588,0.2662,0.5682,0.7652,1,0.998,0.803,0.784,0.8092,0.7632,0.654,0.673,0.8072,0.9182,-0.9286,0.1844,0.2936,-0.2342,-0.1582,-0.4554,-0.2652,-0.3984,-0.377,-0.4268,-0.6148,-0.579,-0.5148,-0.5268,-0.5292,-0.541,-0.377,-0.3698,-0.1082,0.0986,0.4198,0.7384,0.893,1,0.9096,0.7194,0.6338,0.6432,0.56,0.5696,0.5624,0.698,-0.923,0.4934,1,0.8044,0.197,0.4312,0.0222,-0.043,0.043,-0.4252,-0.6562,-0.4696,-0.3778,-0.4726,-0.443,-0.5052,-0.5792,-0.4786,-0.4726,-0.114,0.0518,0.4282,0.8814,0.7688,0.5674,0.6978,0.7038,0.5466,0.68,0.6088,0.52,0.6682,-0.9208,0.25,1,0.8924,-0.3702,0.133,-0.019,-0.3354,-0.117,-0.4114,-0.712,-0.6962,-0.7184,-0.6518,-0.6044,-0.6266,-0.5032,-0.3892,-0.3038,0.2406,0.288,-0.1582,0.2056,0.212,-0.0632,0.4082,0.5728,0.3544,0.481,0.5158,0.1076,0.3354,-0.4468,-0.0212,0.0212,0.149,-0.1064,-0.5744,-0.4894,-0.3618,-0.3618,-0.4894,-0.4042,-0.3192,-0.1914,-0.234,-0.0638,0.1914,0.3618,0.4468,0.7872,1,0.8724,0.6596,0.8298,0.9148,0.8724,0.7446,0.7446,0.8298,0.8724,0.7872,0.9148,0.9148,-0.5416,-0.0834,-0.0416,0.125,-0.125,-0.625,-0.4584,-0.4584,-0.5834,-0.625,-0.4584,-0.625,-0.4584,-0.25,-0.1666,0.0416,0.25,0.4584,0.7084,1,0.9166,0.75,0.75,0.875,0.7916,0.7084,0.7084,0.75,0.7916,0.7916,0.9584,0.8334,-0.8086,0.0638,0.1914,-0.3618,-0.234,-0.4042,-0.1914,-0.2554,-0.3192,-0.2554,-0.6382,-0.5744,-0.617,-0.2766,-0.3618,-0.5106,-0.468,-0.383,-0.2128,0,0.4256,0.3192,1,1,0.468,0.5532,0.0852,0.5532,0.5106,0.4468,0.4894,0.5106,-1,-0.9322,-0.8916,-0.8646,-0.8556,-0.8736,-0.9188,-0.869,-0.8916,-0.2732,0.4402,0.824,0.711,0.404,0.3724,0.3724,0.1152,0.0836,0.413,0.8962,0.7832,0.219,-0.711,-0.8736,-0.9006,-0.8782,-0.9232,-1,-1,-1,-1,-1,-1,-1,-0.966,-0.9592,-0.5788,-0.2372,-0.071,0.5904,0.6734,0.4034,0.2788,0.2904,0.8256,0.8646,0.5522,0.4748,0.5688,0.243,0.1134,-0.4516,-0.5222,-0.504,-0.7,-0.9128,-0.9344,-0.946,-0.9476,-0.9592,-1,-1,-1,-1,-1,-1,-1,-0.9728,-0.9534,-0.8068,0.42,0.74,0.8,0.8066,0.8666,0.5632,0.08,-0.1368,-0.075,-0.0184,0.0816,0.1866,0.0876,-0.0216,-0.3878,-0.814,-0.834,-0.8124,-0.6034,-0.5268,-0.7134,-0.6334,-0.92,-1,-1,-1,-1,-1,-1,-1,-0.5142,0.7142,1,1,1,0.4286,-0.9714,-0.5142,0.8572,1,0.8858,-1,-0.8858,-1,-0.8858,-0.8572,-0.5428,0,-0.7428,-0.5428,-0.5428,-0.6,-0.9142,-0.9428,-0.8858,-0.3142,-1,-1,-1,-1,-1,-1,0.0616,0.0686,0.0878,0.098,0.105,0.099,0.1076,0.097,0.1222,0.2856,0.8166,0.8386,0.8184,0.8176,0.8246,0.8436,0.864,0.8952,0.9698,0.938,-0.8,0.5058,0.3244,0.5946,0.8022,0.8206,0.9318,-0.8,-0.7606,-0.5606,-0.5578,-0.4084,-0.3154,-0.3212,-0.1916,-0.045,0.1802,0.3888,0.5014,0.786,0.8958,1,0.955,0.8732,0.7154,0.7212,0.6422,0.8704,0.8986,0.9464,0.8704,0.8338,0.783,0.4986,0.4084,0.3944,0.2902,0.107,-0.138,-0.4056,-0.8076,-0.784,-0.777,-0.6314,-0.5822,-0.5704,-0.4672,-0.183,0.0774,0.2464,0.446,0.716,0.6996,0.5868,0.8146,0.7558,0.6666,0.6666,0.7464,0.838,0.9132,1,0.8708,0.8968,0.8896,0.7324,0.6104,0.6174,0.486,0.399,0.169,-0.1408,-0.3218,-0.2298,-0.2932,-0.661,-0.5144,-0.5374,-0.2702,-0.092,0.2816,0.5288,0.7672,1,0.8678,0.6206,0.954,0.9598,0.9626,0.8248,0.6552,0.635,0.6522,0.589,0.7442,0.8018,0.842,0.839,0.638,0.4196,0.3764,0.4022,0.2528,0.1436,1,-1,1,-1,0,-1,-1,0.5,1,-0.1612,0.0968,-0.0322,0.3548,0.613,0.3764,0.4624,0.871,0.8064,0.742,0.8924,0.5054,0.4624,0.8064,0.8924,0.9354,0.8924,1,0.5054,0.5054,0.957,0.4838,0.5054,0.1182,0.0322,0.1828,0.5484,0.5054,0.5698,0.4408,0.0108,-0.2904,'7'
-0.5826,-0.1408,0.2718,0.4272,0.1796,0.131,-0.034,-0.0826,-0.0728,-0.1068,-0.1554,-0.0776,-0.0194,0.0632,0.0534,0.2718,0.301,0.5436,0.7282,0.8786,0.966,1,0.8106,0.8252,0.9418,0.8544,0.9418,0.7962,0.8592,0.8786,0.8786,0.9708,-0.5426,-0.1256,0.4394,0.5696,0.2062,0.0582,-0.0044,-0.121,-0.0852,-0.296,-0.2286,-0.0314,-0.0986,-0.018,0.0314,0.157,0.287,0.3318,0.6726,0.7624,0.9642,0.9462,0.9686,0.9372,0.9058,1,0.9238,0.8834,0.7624,0.7758,0.7938,0.8296,-0.4736,-0.0964,0.478,0.5702,0.1184,-0.0746,-0.0482,-0.1886,-0.1578,-0.364,-0.4166,-0.2544,-0.1316,-0.0878,-0.0176,-0.0176,0.1272,0.2764,0.3422,0.671,0.8378,0.965,0.886,0.8948,0.9736,0.9298,1,0.8202,0.8026,0.8158,0.7588,0.8684,-0.5196,-0.179,0.4104,0.4586,-0.166,-0.2314,-0.1354,-0.3232,-0.358,-0.3538,-0.3494,-0.31,-0.2052,-0.2228,-0.1048,0,0.0044,0.1398,0.4104,0.4978,0.8296,0.834,0.9694,0.9258,0.9476,1,0.8952,0.8646,0.7642,0.738,0.821,0.9082,-0.5882,-0.3152,0.3908,0.4034,-0.2478,-0.4496,-0.3782,-0.3908,-0.4454,-0.4034,-0.374,-0.374,-0.2816,-0.3362,-0.2816,-0.063,-0.0924,0.0294,0.3278,0.3824,0.6302,0.9328,1,0.9034,0.832,0.8866,0.7436,0.7142,0.6554,0.6848,0.7436,0.9034,-0.694,-0.0652,0.4278,0.5354,-0.1954,-0.6884,-0.6148,-0.6204,-0.7734,-0.6318,-0.575,-0.5298,-0.5298,-0.5184,-0.541,-0.5014,-0.4448,-0.2578,-0.0934,0.0084,0.3088,0.8186,0.932,1,0.9264,0.8414,0.796,0.4958,0.5184,0.6148,0.6488,0.813,-0.9518,-0.131,0.4,0.2414,-0.331,-0.6758,-0.3794,-0.331,-0.6,-0.5932,-0.7794,-0.538,-0.4482,-0.3794,-0.4966,-0.531,-0.6482,-0.4758,-0.2276,-0.0206,0.5242,0.9724,0.938,0.9656,0.931,1,0.5862,0.3034,0.4,0.5172,0.7034,0.7242,-0.6078,-0.2156,0.255,0.3726,0.098,0.1764,-0.0588,-0.2156,-0.2156,-0.1372,-0.2156,-0.1764,-0.098,-0.0196,0.1372,0.1764,0.3726,0.647,0.7254,0.9608,0.9608,0.7254,0.6078,0.5686,0.6078,0.7254,0.7648,0.7648,0.804,0.8824,0.8824,1,-0.6154,-0.2308,0.1538,0.3076,0,0.0384,-0.1154,-0.1154,-0.077,-0.1154,-0.2308,-0.1538,-0.0384,-0.077,-0.0384,0.1924,0.1924,0.3846,0.6154,0.7692,0.8846,0.9616,0.8462,0.8076,1,0.923,0.8846,0.7308,0.8076,0.8076,0.8462,0.8846,-0.6666,-0.1778,0.4888,0.4888,-0.3334,-0.6,-0.6222,-0.6,-0.5778,-0.4888,-0.5556,-0.5556,-0.5556,-0.6,-0.4888,-0.2,-0.2888,-0.0666,0.2444,0.2888,0.4444,0.9334,1,1,0.6444,0.6444,0.7556,0.6,0.5334,0.5556,0.6888,0.8666,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.9412,-0.5098,0.353,0.7058,0.8382,0.8308,0.9828,0.7746,0.5808,0.5686,0.0416,-0.4338,-0.625,-0.848,-0.929,-0.924,-0.9388,-0.9632,-0.929,-0.946,-0.9314,-0.8848,-0.9362,-0.924,-1,-1,-1,-1,-1,-1,-1,-1,-0.978,-0.9774,-0.6648,0.6662,0.8674,0.4552,0.282,0.385,0.4988,0.3614,0.1632,-0.5814,-0.7218,-0.8248,-0.9534,-0.9744,-0.975,-0.9764,-0.9798,-0.977,-0.92,-0.6884,-0.3276,-0.253,-0.282,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.9134,-0.6034,-0.22,-0.236,-0.356,-0.492,-0.4568,-0.4134,-0.33,-0.3434,-0.3968,-0.38,-0.5434,-0.76,-0.8834,-0.8768,-0.98,-0.9534,-0.8868,-0.8834,0.36,0.7132,0.6132,0.8466,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,1,1,1,-0.6,-0.8,-0.9142,-0.9714,-0.9714,-0.7142,1,1,-0.3142,0.8286,0.6286,-0.6286,-0.8572,-0.7428,-0.9142,-0.1142,1,1,1,-0.4858,-0.9428,0.8626,0.8626,0.8478,0.8402,0.8282,0.8086,0.7948,0.7698,0.6924,0.4334,0.8076,0.8076,0.8524,0.8818,0.9226,0.9396,0.949,0.963,1,1,-0.6,-0.3882,-0.6742,0.2216,0.8866,0.9538,0.68,1,-0.1904,0.0952,-0.0476,0.0952,0.0952,0.0476,-0.0952,0.5714,0.5714,0.8096,0.9048,0.9048,1,1,1,1,0.9524,0.8096,0.619,0.1428,0,0.0476,-0.0952,-0.238,0,0.0476,0.0952,0,0.0952,0.0476,-0.238,-0.6666,-0.2292,0.0834,0.2916,0.1458,-0.0416,-0.0834,-0.1666,-0.0208,0.2708,0.875,0.9792,0.8958,0.9792,0.9376,0.8542,1,0.8334,0.875,0.6876,0.125,0.1666,-0.5208,-0.4376,-0.3542,-0.2084,-0.2084,0,0.0834,0,0,-0.0416,-0.5624,0,0.4444,0.6112,0.2222,0.037,0.074,0.1852,0.3148,0.6112,1,1,1,0.9814,0.9444,0.7962,0.7778,0.7222,0.537,0.1666,0,-0.1296,-0.3518,-0.4444,-0.5556,-0.5926,-0.2408,-0.0926,0.0926,-0.1482,-0.1482,-0.2222,-0.5556,0.7148,-1,-1,1,-1,-1,-1,-0.8334,1,-0.825,-0.7126,-0.7624,-0.6126,-0.475,-0.4376,-0.075,-0.0876,0.3876,0.325,0.4,0.8876,0.875,0.7,0.6876,0.725,0.7374,0.7626,0.6374,0.5126,0.6126,0.75,0.6626,0.7374,0.9126,0.7876,1,0.9876,0.8,0.775,0.675,0.4874,'8'
-0.6756,-0.167,0.172,0.3946,0.23,0.1526,-0.0364,0.0072,-0.0364,-0.075,-0.0314,-0.0896,0.0266,-0.0412,0.0896,0.2688,0.322,0.4866,0.632,0.971,0.9758,0.8934,0.8984,0.9662,0.908,1,0.937,0.9226,0.8886,0.9806,0.8692,0.9274,-0.5508,-0.0626,0.2484,0.486,0.3174,0.0238,-0.0022,0.0584,-0.1144,-0.0928,-0.1576,-0.1966,0.041,-0.0756,0.0886,0.1448,0.2916,0.4428,0.5422,0.8748,0.9308,0.9352,0.9308,0.8964,0.8402,1,0.8876,0.8056,0.6934,0.8444,0.758,0.8444,-0.5222,-0.0688,0.2794,0.4616,0.2672,-0.1134,-0.0324,0,-0.166,-0.1822,-0.243,-0.2956,-0.1012,-0.085,0.0324,0.1538,0.2146,0.3118,0.3522,0.749,0.7044,1,0.8744,0.8016,0.7612,0.8422,0.7612,0.7976,0.7328,0.7126,0.6802,0.6316,-0.605,-0.1768,0.2848,0.4346,0.1808,-0.5302,-0.1476,-0.156,-0.185,-0.2682,-0.239,-0.264,-0.1352,-0.1434,-0.0936,0.1186,0.0978,0.2806,0.4138,0.63,0.896,1,0.9542,0.9834,0.9834,0.921,0.946,0.8296,0.7962,0.6964,0.7672,0.946,-0.645,-0.2468,0.3594,0.5022,0.1904,-0.433,-0.4848,-0.5238,-0.4978,-0.5412,-0.4372,-0.2468,-0.2164,-0.1428,-0.2078,-0.1168,-0.078,0.065,0.368,0.4372,0.7402,0.7446,1,0.8614,0.9308,0.7186,0.749,0.6536,0.6104,0.645,0.7012,0.8354,-0.6628,-0.26,0.4146,0.4474,-0.2506,-0.5504,-0.569,-0.616,-0.7424,-0.6768,-0.7142,-0.6394,-0.4614,-0.4192,-0.438,-0.4192,-0.157,-0.1288,-0.1054,0.3912,0.5504,0.7658,0.986,1,0.794,0.794,0.7564,0.5738,0.5456,0.5456,0.6346,0.897,-0.94,-0.2588,0.2752,0.2098,-0.2916,-0.6948,-0.7002,-0.7984,-0.6676,-0.6404,-0.6404,-0.5476,-0.5586,-0.722,-0.7874,-0.5694,-0.466,-0.4168,-0.2588,0.1118,0.4768,0.6076,0.7602,0.8746,1,0.6622,0.5258,0.4714,0.1608,0.4278,0.722,0.7874,-0.7966,-0.1864,0.0508,0.2204,-0.017,0.1526,-0.0508,-0.0508,-0.1186,-0.1186,-0.0508,-0.0508,0.0848,0.0508,0.1186,0.2204,0.356,0.5254,0.7628,0.8306,0.8306,0.8644,0.8984,0.9322,0.9662,0.9662,0.8984,0.8644,0.8644,1,0.9322,1,-0.6604,-0.132,0.2076,0.434,0.3208,0.0944,0.0566,0.0944,0.0566,-0.0188,0.0944,-0.0566,0.0944,0.0188,0.132,0.283,0.3208,0.5094,0.7358,1,0.9622,0.8868,0.8114,0.8868,0.849,0.9246,0.8868,0.8868,0.8868,0.8114,0.7736,0.6226,-0.6666,-0.2408,0.3518,0.4814,0.1852,-0.463,-0.5556,-0.5,-0.3518,-0.5186,-0.3888,-0.2038,-0.0926,-0.074,-0.1482,-0.074,-0.1112,0.0926,0.3888,0.5,0.7778,0.7962,1,0.963,0.9074,0.8148,0.7962,0.6666,0.6852,0.6852,0.6666,0.926,-1,-1,-1,-1,-1,-1,-1,-1,-0.9462,-0.9512,-0.396,0.2518,0.533,0.7384,0.9144,0.9854,0.7776,0.8044,0.5282,0.176,0.0342,-0.418,-0.6088,-0.8118,-0.8974,-0.9414,-0.9096,-0.9536,-0.9462,-0.9364,-0.8998,-0.9046,-0.9462,-1,-1,-1,-1,-1,-1,-1,-1,-0.9836,-0.9836,-0.154,0.708,0.32,0.1336,0.0958,0.2194,0.4618,0.5514,-0.2328,-0.522,-0.5322,-0.7854,-0.865,-0.8978,-0.966,-0.9804,-0.9788,-0.984,-0.9828,-0.969,-0.7306,-0.4546,-0.1904,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.9468,-0.54,-0.12,-0.32,-0.284,-0.356,-0.2868,-0.2,-0.1868,-0.3068,-0.1868,-0.17,-0.23,-0.3234,-0.1634,-0.6,-0.8668,-0.8868,-0.94,-0.93,-0.8434,0.58,0.6732,0.9866,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,1,1,1,-1,-1,-0.9428,-0.8,-0.6858,0.0858,0.6572,-0.3428,1,1,-0.0572,0.3142,0.8858,-0.2858,-0.9142,-0.8858,-0.6572,1,1,1,-0.4858,0.9864,0.9864,0.966,0.9628,0.936,0.9174,0.888,0.857,0.7824,0.4756,0.9174,0.9174,0.9366,0.9108,0.9232,0.9142,0.908,0.9184,0.9358,1,-0.7066,-0.3882,-0.0546,0.9738,0.5396,0.3442,0.2378,1,-0.3704,-0.1852,0.1112,0.074,0.1112,0.037,0.2592,0.2592,0.5926,0.8518,0.8888,1,1,0.963,0.926,0.8888,0.926,0.8888,0.5926,0.3704,0.037,-0.2592,-0.2222,-0.074,-0.2222,-0.2592,-0.1852,-0.074,0,0,-0.2222,-0.2592,-0.1608,0.2858,0.3392,0.2142,0.0358,0.1072,0.0178,0.3036,0.3214,0.8572,1,0.9108,0.9642,0.8036,0.8392,0.8572,0.9464,0.75,0.4464,0.1072,0.0714,-0.0714,-0.5,-0.3928,-0.5358,-0.5536,-0.25,-0.2322,0.125,-0.0178,-0.2142,-0.3392,-0.3278,0.311,0.395,0.1092,-0.126,-0.0924,0.042,0.21,0.4958,0.8824,0.9328,0.9328,1,0.9328,0.9832,1,0.9328,0.6806,0.4622,0.1932,-0.0252,-0.3614,-0.6638,-0.647,-0.647,-0.6302,-0.3446,-0.042,0.1092,0.042,-0.1092,-0.3446,1,-1,-1,1,-1,-1,-1,-0.8334,1,-0.6602,-0.6796,-0.3398,-0.3398,-0.3786,-0.369,-0.0776,0,0.4952,0.4952,0.301,0.4758,0.6796,0.5146,0.7766,0.6796,0.534,0.602,0.5146,0.534,0.6796,0.5534,0.5632,0.5534,0.6504,0.8932,1,0.8932,0.8156,0.6602,0.5242,0.0388,'8'
-0.561,-0.2184,-0.046,0.0414,0.2072,0.505,0.6596,0.9574,1,0.897,0.7962,0.823,0.5588,0.458,0.402,0.2744,0.3438,0.317,0.3236,0.4558,0.5744,0.673,0.5454,0.5096,0.3684,0.2386,0.2184,0.075,0.0436,0.1758,0.4334,0.5252,-0.5704,-0.2448,-0.052,0.0012,0.2138,0.608,0.7298,0.9978,0.9868,0.9048,0.9358,1,0.7166,0.6634,0.4508,0.4086,0.4396,0.4174,0.413,0.5238,0.7076,0.701,0.8228,0.6922,0.5992,0.2802,0.2292,0.083,0.0034,0.1074,0.4706,0.5172,-0.5604,-0.2688,-0.049,-0.0142,0.1664,0.5952,0.6822,0.9216,0.8738,0.7998,0.9804,1,0.8412,0.7302,0.5016,0.5126,0.4624,0.4364,0.543,0.5626,0.7324,0.852,0.9368,0.643,0.5756,0.4756,0.3102,0.1556,-0.1404,0.0468,0.234,0.63,-0.5434,-0.2488,-0.0218,-0.0144,0.0966,0.6136,0.6666,0.9638,0.8164,0.7608,0.8768,0.884,1,0.9178,0.8938,0.6932,0.6426,0.6208,0.5894,0.7294,0.7754,0.988,0.8864,0.7464,0.5024,0.4444,0.43,0.3624,0.3792,0.2922,0.041,0.0628,-0.5454,-0.2404,0.0734,0.0322,0.132,0.736,0.8328,1,0.5542,0.5014,0.4486,0.6364,0.61,0.8212,0.9942,0.997,0.9882,0.6334,0.563,0.698,0.7478,0.7742,0.8768,0.695,0.5748,0.39,0.3284,0.2962,0.3196,0.346,0.4076,0.4046,-0.5326,-0.1884,0.2066,0.3478,0.5254,0.7392,0.6232,0.3876,0.0906,-0.0508,-0.1594,0.2318,0.0834,0.2066,0.1558,0.7428,0.8914,1,0.884,0.7608,0.7898,0.8514,0.8732,0.837,0.7246,0.5508,0.3116,0.279,0.308,0.2934,0.5544,0.5834,-0.5754,-0.0896,0.2878,0.5896,0.632,0.184,0.0188,-0.2548,-0.2924,-0.599,-0.3916,-0.467,-0.2924,-0.1368,-0.1226,0.0142,0.1792,0.6038,1,0.8584,0.7358,0.7784,0.6982,0.684,0.7122,0.4482,0.2028,-0.0094,0.151,0.3868,0.4386,0.6226,-0.585,-0.2076,-0.0944,-0.0188,0.2452,0.3962,0.6604,0.7358,1,1,0.9246,0.8868,0.6604,0.5094,0.3962,0.3208,0.3208,0.283,0.3208,0.434,0.5094,0.6226,0.585,0.434,0.4716,0.434,0.3962,0.3208,0.2452,0.3584,0.4716,0.5472,-0.6326,-0.2654,-0.102,0.0204,0.1836,0.5102,0.6734,0.9592,1,0.8776,0.8368,0.7142,0.5102,0.3878,0.3062,0.3062,0.3062,0.3062,0.3878,0.4694,0.6326,0.7142,0.5918,0.4286,0.347,0.347,0.2244,0.102,0.0612,0.2244,0.3878,0.5918,-0.5384,-0.2564,0.0256,0.077,0.2564,0.6666,0.4872,0.5384,0.2308,0.077,0.1794,0.4102,0.3334,0.359,0.359,0.923,1,0.7948,0.5898,0.5898,0.641,0.641,0.6666,0.7692,0.5384,0.5642,0.3334,0.359,0.3076,0.5128,0.5384,0.4616,-1,-1,-1,-1,-1,-1,-0.9418,-0.9234,-0.8798,-0.7704,-0.4098,0.6722,0.807,0.9272,0.9344,0.7158,0.4462,0.1148,-0.1002,-0.2568,-0.3224,-0.428,-0.6868,-0.8252,-0.9052,-0.909,-0.9308,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.988,-0.985,-0.874,-0.689,-0.65,0.4022,0.62,0.946,0.9006,0.715,0.2848,-0.2896,-0.5956,-0.8176,-0.8856,-0.9186,-0.9544,-0.9684,-0.972,-0.9766,-0.979,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9864,-0.9,-0.9,-0.4868,-0.31,-0.598,-0.5238,-0.5038,-0.4874,-0.471,-0.5256,-0.551,-0.4038,-0.5564,-0.5674,-0.6438,-0.68,-0.5634,-0.59,-0.7334,-0.7134,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3142,-0.6286,1,1,1,1,-0.9714,-1,-1,-0.6,-0.5428,-0.6572,-0.4,-0.2572,-0.5142,-0.6286,-0.8572,-0.7142,-0.7142,-0.8286,-0.8286,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.6062,-0.62,-0.6274,-0.6314,-0.6346,-0.6378,-0.6332,-0.6152,-0.6572,-0.5058,-0.5734,0.2942,-0.6432,0.1608,0.3232,0.4776,0.5192,0.8084,-0.466,-0.3786,0.0874,0.7476,0.932,1,0.7476,0.3204,-0.0098,0.097,0.301,0.534,0.67,0.398,0.1844,0.4272,0.4854,0.466,0.2038,-0.0098,0,-0.1456,-0.2718,-0.2816,-0.0194,-0.0388,-0.097,-0.1456,-0.2718,-0.5048,-0.2912,-0.5826,-0.6428,-0.4,-0.2428,0.5714,0.9572,1,0.6858,0.2858,0.1286,0.4,0.7858,0.7714,0.2,0.0858,0.3858,0.9286,0.8714,1,0.5858,0.3428,-0.0714,-0.2142,-0.3572,0.0858,0.3142,0.5428,0.4858,0.0858,-0.0858,-0.1858,0,-0.2572,-0.1876,-0.0834,0.2604,0.4688,0.9792,1,0.7084,0.427,0.1874,0.1874,0.3124,0.2292,0.323,0.177,0.0208,0.7084,0.8124,0.698,0.6146,0.198,-0.1458,-0.5,-0.2916,-0.198,0.0624,0.073,0.0834,0.323,-0.3542,-0.3126,0.1042,-0.4376,0.0782,-1,-1,1,-1,-1,-0.8,-0.5334,-1,0.2136,0.2308,0.094,0.0086,0.0256,-0.2992,0.2478,0.1966,0.3504,0.624,0.5898,0.7948,1,0.2992,0.4358,0.453,0.6924,0.2308,0.1112,0.2478,0.1966,0.1452,0.2136,0.3334,-0.077,-0.0256,0.2136,0.3846,-0.1112,-0.0598,0.1966,-0.0256,'9'
-0.7872,-0.4604,-0.2128,-0.1218,0.1142,0.4738,0.7544,0.8974,0.8994,0.998,1,0.737,0.4778,0.2882,0.1508,0.1702,0.1528,0.118,0.12,0.3094,0.3578,0.5996,0.7794,0.7912,0.737,0.6034,0.5764,0.4564,0.3636,0.3404,0.2438,0.1606,-0.5944,-0.2826,-0.0488,0.0062,0.1266,0.5944,0.7024,1,0.9716,0.7838,0.8052,0.8582,0.4456,0.3694,0.4136,0.3108,0.3108,0.3232,0.2276,0.3216,0.5218,0.5872,0.7484,0.899,0.9186,0.5606,0.4562,0.318,0.3694,0.3516,0.1868,0.1816,-0.6008,-0.2736,-0.0256,0.0238,0.1116,0.5866,0.7044,1,0.9806,0.8434,0.8592,0.935,0.9032,0.8488,0.4864,0.5444,0.5584,0.4864,0.4706,0.5656,0.627,0.7344,0.9296,0.9314,0.9842,0.81,0.7414,0.5602,0.4124,0.4266,0.1996,0.2648,-0.665,-0.3438,-0.0746,-0.0122,0.165,0.4792,0.6146,0.7778,0.7778,0.585,0.5764,0.6822,0.8994,0.882,0.9254,0.7864,0.7708,0.5938,0.5382,0.6614,0.6858,0.731,1,0.915,0.8282,0.6666,0.6788,0.5572,0.5226,0.6632,0.6076,0.6354,-0.6484,-0.2318,0.061,0.167,0.5914,0.5422,0.611,0.4322,0.336,0.2476,0.2574,0.3124,0.3144,0.4734,0.5462,0.6502,0.9136,0.8546,0.9156,0.8506,0.8566,0.8742,0.9136,0.9922,1,0.8272,0.664,0.6012,0.5246,0.5874,0.5934,0.7878,-0.6732,-0.0194,0.1082,0.526,0.4242,0.3204,0.093,-0.0086,-0.21,-0.2424,-0.1992,-0.0736,-0.0238,0.0758,0.0758,0.2012,0.3334,0.5476,0.7122,0.9826,1,0.9264,0.907,0.933,0.987,0.829,0.6104,0.4936,0.4458,0.4978,0.5086,0.7402,-0.7808,0.1158,0.1306,0.5296,0.537,-0.133,-0.096,-0.5124,-0.473,-0.6108,-0.5788,-0.4532,-0.33,-0.2858,-0.2168,-0.2266,-0.0862,-0.0936,0.1674,0.394,0.8424,0.7956,0.7734,0.7364,1,0.9014,0.5492,0.3768,0.2414,0.2808,0.1848,0.1798,-0.6572,-0.3714,-0.3714,-0.4286,-0.7142,0.2572,0.5428,0.8286,1,0.8858,1,0.7142,0.2,0.0858,-0.2,-0.1428,-0.1428,-0.0858,-0.0286,-0.0858,-0.0858,0.0858,0.5428,0.7714,0.7714,0.4286,0.0286,0.2,0.2572,0.3714,0.2572,0.2,-0.9272,-0.8182,-0.7454,-0.491,-0.1272,0.2728,0.891,0.9636,0.4182,0.9636,1,0.6364,-0.091,-0.2364,-0.3818,-0.3454,-0.4182,-0.3454,-0.2364,-0.1272,-0.1272,0.6,0.8182,0.7454,0.4182,0.4546,0.709,0.6,0.0546,-0.0182,-0.1636,-0.0546,-0.6036,-0.2972,-0.081,-0.009,0.1172,0.4954,0.6396,0.8918,0.8738,0.7298,0.8198,0.8738,1,0.964,0.4594,0.5316,0.5676,0.4414,0.4594,0.5676,0.5856,0.7478,0.928,0.8378,0.8918,0.7298,0.6936,0.6396,0.6756,0.7298,0.4054,0.027,-1,-1,-1,-1,-1,-1,-1,-1,-0.8714,-0.9196,-0.8956,0.2892,0.8876,0.9318,0.7752,0.518,0.3976,0.478,0.8354,0.4338,0.4378,-0.1004,-0.6184,-0.8634,-0.8996,-0.8796,-0.9236,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9828,-0.9868,-0.9684,0.1328,0.7906,0.4616,0.5102,0.6138,0.3818,0.019,-0.4556,-0.6432,-0.7378,-0.864,-0.9312,-0.9354,-0.9582,-0.966,-0.972,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9026,-0.9868,-0.9634,-0.5954,-0.5494,-0.5044,-0.5458,-0.4472,-0.4144,-0.35,-0.6254,-0.5254,-0.654,-0.7826,-0.6568,-0.4068,-0.6068,-0.6436,-0.7636,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3428,-0.8286,1,1,-0.7142,-0.9714,-0.6,-0.4572,-0.8,-0.6,-0.6286,-0.8858,-0.5142,-0.3428,-0.7714,-0.7714,-0.6858,-0.5428,0.6,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.5774,0.5516,0.5284,0.5276,0.5104,0.4974,0.4328,0.3428,0.1258,0.2926,-0.6266,0.6706,-0.9852,-0.8418,0.0884,0.0686,0.4818,1,0.0384,0.6924,0.9808,0.9616,0.75,0.8462,0.9808,0.827,0.5,0.6538,0.6538,0.5192,0.2116,0.4808,0.0576,0.3654,0.7116,0.3654,0.423,0.4424,0.3462,0.2884,0.5192,-0.0384,0.8076,0.4424,0.1924,0.0384,0.327,-0.1154,0.5192,-0.4038,0.3334,0.3482,0.4074,1,0.7926,0.6,0.6148,0.926,0.7926,0.7926,0.7334,0.8666,0.674,0.674,0.4666,0.5704,0.7186,0.6,0.1704,0.3778,0.6,0.9112,0.8222,0.6888,0.4962,0.3926,0.5408,0.2296,0.437,0.2592,-0.0666,-0.4814,0.3334,0.5834,0.375,0.6806,0.6388,0.6944,0.9444,0.5278,0.7222,0.7638,0.7778,0.8334,0.7222,0.7638,0.4166,0.5138,0.6944,0.5972,0.3194,0.5834,0.8056,0.6112,0.4444,0.6112,0.5972,0.6112,0.5,0.6806,0.5138,0.5972,0.6112,-0.0834,-0.991,1,-1,-1,-1,-1,-1,-1,-1,-0.496,-0.1382,-0.3008,-0.2358,-0.2846,-0.2846,-0.1382,0.0082,0.4472,0.7236,1,0.6098,0.7886,0.8048,0.4634,0.5122,0.756,0.7724,0.2196,0.1708,0.3496,0.3008,0.3658,0.3658,0.2358,-0.0406,-0.2682,-0.0244,0.3496,0.4146,-0.0244,-0.3658,'9'
-0.4752,0.0388,0.312,0.6144,0.4618,0.0414,-0.0468,0.0414,0.004,0.0308,0.0468,0.0334,0.3548,0.2932,0.4832,0.6224,0.8046,0.8848,0.9866,0.933,0.9946,0.9518,0.9544,0.7724,0.7536,0.6706,0.6706,0.7484,0.81,1,0.9544,0.7938,-0.5798,-0.1572,0.1958,0.3376,0.3118,0.353,0.1082,0.0412,0.1418,0.0568,0.1624,0.2578,0.268,0.4046,0.3814,0.5902,0.8222,0.9252,0.8196,0.8222,1,0.915,0.835,0.6726,0.75,0.549,0.549,0.6908,0.7114,0.8686,0.786,0.817,-0.5278,-0.1372,0.2718,0.3774,0.475,0.4644,0.1952,0.0924,0.19,0.1346,0.1292,0.2718,0.2506,0.3958,0.4116,0.446,0.8022,0.7626,0.868,0.934,1,0.9948,0.963,0.9314,0.7968,0.7282,0.6912,0.686,0.7916,0.8338,0.9736,0.8338,-0.558,-0.1692,0.2862,0.3954,0.2862,0.2624,0.1558,0.004,0.0492,0.0174,0.02,0.1186,0.0972,0.2384,0.1584,0.1958,0.5552,0.7018,0.8962,0.9174,1,0.9254,0.8882,0.9654,0.803,0.787,0.7364,0.723,0.7762,0.771,0.9228,0.9548,-0.585,-0.1828,0.3074,0.4268,0.1674,0.1622,0.0998,-0.0142,-0.1024,-0.074,-0.0324,0.0168,-0.0402,0.17,0.0946,0.1854,0.3878,0.45,0.7588,0.8548,0.987,0.8988,0.9352,1,0.9352,0.7924,0.6628,0.7354,0.7614,0.7484,0.8702,0.8884,-0.6402,-0.1824,0.283,0.4516,0.185,-0.0264,-0.0894,-0.1094,-0.19,-0.2604,-0.3006,-0.2302,-0.1018,-0.0012,0.034,0.127,0.1296,0.3584,0.5648,0.7762,0.9144,1,0.917,0.932,0.9598,0.8466,0.6628,0.5798,0.5672,0.6352,0.6906,0.8164,-0.6212,0.098,0.1654,0.6308,0.4896,-0.1878,-0.3386,-0.406,-0.5056,-0.4126,-0.6052,-0.3932,-0.4736,-0.4736,-0.2808,-0.22,-0.1492,0.0562,0.2712,0.6116,0.7432,0.8426,0.9358,1,0.8556,0.9614,0.6598,0.5474,0.3676,0.4704,0.4542,0.5762,-0.5218,-0.0434,0.0434,0.4348,0.2608,-0.3914,-0.2608,-0.2608,-0.3478,-0.3478,-0.2174,-0.2608,0.087,0,0.2608,0.3044,0.5218,0.7392,0.826,0.8696,0.913,0.9566,1,0.7392,0.6522,0.6086,0.4782,0.5218,0.7392,0.9566,0.6956,0.7826,-0.6,-0.0666,0.1556,0.5556,0.4222,-0.2,-0.2888,-0.2,-0.2444,-0.1556,-0.1556,-0.2,0.2,0.2,0.3778,0.2888,0.7778,0.5556,0.9112,0.7778,1,0.6888,0.8222,0.6444,0.7778,0.6,0.6444,0.7778,0.7778,0.8666,0.7778,0.7334,-0.5,-0.1346,0.2884,0.4038,0.4808,0.4424,0.2116,0.077,0.1924,0.173,0.1154,0.2692,0.25,0.4038,0.327,0.3462,0.7116,0.7884,0.923,0.9616,0.9808,0.9808,0.9038,1,0.827,0.7692,0.7116,0.6346,0.7692,0.8846,0.9808,0.9038,-1,-1,-0.9618,-0.9678,-0.9618,-0.9678,-0.9094,-0.9436,-0.9556,-0.9234,-0.416,0.579,0.6656,0.2024,0.2426,0.2024,0.0716,0.0796,0.138,0.0776,-0.1178,-0.3716,-0.6052,-0.7844,-0.867,-0.843,-0.861,-0.8952,-0.9234,-0.9658,-0.9678,-0.9556,-0.9556,-1,-1,-0.9766,-0.9778,-0.9288,-0.8418,-0.3724,-0.0598,0.0672,-0.1038,-0.3236,0.3066,0.9362,0.7298,0.6102,0.553,0.5736,0.5334,0.6358,0.398,-0.2806,-0.6534,-0.8004,-0.8434,-0.8822,-0.9214,-0.922,-0.9442,-0.9532,-0.9724,-0.9692,-0.9692,-0.9654,-1,-1,-0.98,-0.9534,-0.7568,0.45,0.6432,0.8232,0.87,0.8232,0.4332,-0.36,-0.3512,-0.3068,-0.284,-0.288,-0.228,-0.428,-0.43,-0.448,-0.49,-0.552,-0.66,-0.1468,-0.0634,-0.4968,-0.5168,-0.55,-0.7068,-0.8,-0.7734,-0.7534,-0.7134,-1,-1,-0.0858,-0.2286,1,1,1,0.3714,-0.8,0.5714,1,1,-0.1428,-0.9714,-1,-0.9428,-1,-1,-0.9714,-0.7714,-0.2,-0.0286,-0.0572,-0.0858,1,0.7142,-0.8572,-0.9428,-0.8858,-0.9428,-0.9714,-0.9714,-0.9714,0.601,0.6262,0.6662,0.7034,0.7434,0.8078,0.8542,0.9028,0.938,0.8314,0.1992,0.204,0.2028,0.2074,0.1998,0.186,0.2056,0.2316,0.3438,0.6166,-0.6666,0.1412,-0.3984,0.0098,0.2594,0.3874,0.9236,0.6916,-0.6456,-0.6702,-0.4596,-0.3264,-0.3508,-0.2386,-0.1122,-0.0666,-0.021,0.1228,0.3438,0.6106,0.6808,0.6492,0.9228,0.972,0.6632,0.6878,0.6,0.6492,0.8106,0.9474,1,0.8808,0.828,0.635,0.4492,0.4246,0.2982,0.2422,0.2036,-0.1508,-0.8104,-0.8764,-0.6456,-0.6208,-0.4258,-0.4396,-0.3434,-0.1016,0.1814,0.3186,0.5384,0.7198,0.5852,0.6978,0.9368,0.7664,0.8406,0.7472,0.7252,0.7308,0.8434,1,0.923,0.9258,0.8736,0.75,0.6182,0.4946,0.4368,0.4726,0.3682,0.0412,-0.549,-0.3872,-0.2878,-0.2566,-0.2752,-0.297,-0.1912,0.0856,0.4526,0.6236,0.72,1,0.633,0.5396,0.8352,0.8818,0.7262,0.6454,0.6268,0.4992,0.7294,0.857,0.885,0.8818,0.913,0.8724,0.7418,0.6268,0.493,0.4122,0.3002,0.0638,-0.7898,-1,-1,1,-0.6,-1,-0.2,0.3,1,-0.2112,0.1126,-0.0282,-0.155,-0.0564,-0.169,-0.183,0.2676,0.183,0.5916,0.8874,0.9014,0.817,0.7324,0.7464,0.7464,0.8592,1,0.5212,0.9718,0.8874,0.4788,0.7184,0.5352,0.324,0.2112,0.183,0.338,0.1268,0.1408,0.1408,-0.2394,'10'
-0.5422,-0.1034,0.316,0.4406,0.2452,0.1456,0.1322,0.0114,0.0172,0.021,0.0824,0.1436,0.1246,0.3602,0.454,0.5632,0.9214,0.954,0.9656,0.8966,1,0.8698,0.9138,0.749,0.7164,0.6974,0.6188,0.7204,0.9004,0.9444,0.8888,0.8524,-0.5652,-0.2052,0.222,0.3172,0.5056,0.4646,0.1418,0.1586,0.2294,0.1604,0.1232,0.2798,0.3208,0.4068,0.457,0.5168,0.8228,0.8824,1,0.9888,0.9682,0.9944,0.8712,0.8582,0.8152,0.806,0.7742,0.6958,0.8302,0.916,0.9272,0.9086,-0.6124,-0.2614,0.1608,0.245,0.3034,0.2522,0.0512,-0.0512,0.0054,0.0202,-0.042,0.0494,0.1188,0.17,0.1864,0.2614,0.457,0.7258,0.797,1,0.9562,0.7934,0.8556,0.9268,0.8446,0.788,0.68,0.6636,0.7312,0.7842,0.744,0.852,-0.646,-0.2244,0.265,0.3926,0.0618,0.0754,-0.0096,-0.116,-0.1664,-0.2244,-0.1412,-0.0194,-0.0618,0.0948,-0.0058,0.089,0.2264,0.3908,0.7022,0.8646,1,0.8742,0.8452,0.9014,0.8646,0.8298,0.6692,0.646,0.7156,0.6866,0.7002,0.8452,-0.719,-0.0708,0.1614,0.5702,0.4262,-0.0754,-0.2544,-0.2776,-0.4332,-0.554,-0.5564,-0.4124,-0.2264,-0.0918,-0.1406,0.022,0.0894,0.1358,0.3844,0.6608,0.8048,0.9536,0.9976,0.9954,1,0.9652,0.77,0.6748,0.705,0.7212,0.6818,0.8816,-0.9852,0.1462,0.226,0.1256,0.2704,-0.294,-0.1344,-0.4446,-0.4772,-0.6012,-0.5806,-0.5952,-0.4682,-0.5066,-0.4032,-0.4742,-0.3826,-0.3796,-0.2024,0.1522,0.3028,0.6396,1,0.8198,0.9498,0.8848,0.6308,0.5008,0.4032,0.291,0.2732,0.356,-0.7916,0.5552,1,0.523,-0.1342,-0.0582,-0.038,0.2906,0.01,-0.3106,-0.3788,-0.4188,-0.4388,-0.483,-0.527,-0.3548,-0.2144,-0.026,0.1944,0.6594,0.7434,0.6794,0.483,0.6714,0.9438,0.8958,0.8598,0.8236,0.4028,0.3186,0.2424,0.5992,-0.5218,-0.0434,0.1304,0.3478,0.3044,-0.2608,-0.087,-0.1304,-0.2608,-0.174,-0.174,-0.2608,-0.087,0.1304,0.2174,0.4348,0.7392,0.8696,0.8696,0.826,0.9566,1,0.8696,0.7826,0.7392,0.6956,0.6522,0.7392,0.9566,0.9566,0.8696,0.826,-0.5744,-0.149,0.4042,0.532,0.3192,-0.0638,0.0212,0.0212,-0.234,-0.1914,-0.1914,-0.0212,0.1064,0.234,0.3618,0.617,0.8298,1,0.9574,1,0.8724,0.9574,0.7872,0.7446,0.6596,0.6596,0.617,0.7872,0.8298,0.8298,0.8298,0.9148,-0.725,0.125,0.15,0.6,0.55,0.175,0.15,0.025,0.025,-0.475,-0.325,-0.525,-0.4,-0.175,-0.075,-0.175,0,-0.075,0.275,0.65,0.875,0.675,0.95,0.9,1,0.9,0.925,0.75,0.775,0.625,0.575,0.55,-1,-1,-1,-0.9582,-0.968,-0.9434,-0.9606,-0.9508,-0.9384,-0.9188,-0.7118,0.6798,0.4162,0.4262,0.1478,0.0444,0.1134,0.0936,-0.261,-0.5912,-0.6232,-0.7068,-0.7932,-0.8472,-0.9408,-0.9434,-0.9384,-0.9408,-1,-1,-1,-1,-1,-1,-1,-1,-0.9764,-0.9798,-0.7332,-0.6222,-0.5684,0.033,-0.2488,-0.5386,0.657,0.889,0.9664,0.8038,0.6346,0.3308,0.0382,-0.4944,-0.7942,-0.8594,-0.8958,-0.9248,-0.9394,-0.9664,-0.967,-0.9586,-0.9646,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-1,-0.6168,0.6766,0.6532,0.69,0.6032,0.4866,-0.3816,-0.2524,-0.237,-0.1878,-0.2,-0.3878,-0.4124,-0.3958,-0.4872,-0.793,-0.863,-0.8968,-0.7868,-0.9334,-0.9134,-0.8534,-0.9,-1,-1,-1,-1,-1,-1,-1,-1,-0.6572,1,1,1,0.9142,1,0.5142,1,1,-1,-0.9714,-1,-1,-0.9428,-0.7714,-0.5714,-0.3428,-0.5714,-0.8286,-0.9142,-0.9142,-0.8858,-0.8572,-0.9428,-0.9142,-1,-1,-1,-1,-1,0.8128,0.8406,0.8654,0.8974,0.9192,0.9472,0.9708,0.9874,0.9786,0.779,0.3096,0.2954,0.2904,0.276,0.2676,0.2808,0.3162,0.3834,0.5266,0.6734,-0.68,0.6118,-0.5812,-0.1206,0.4614,0.7304,0.9456,1,-0.607,-0.712,-0.4902,-0.2334,-0.1946,-0.109,-0.039,-0.0544,0.2256,0.3774,0.4824,0.6964,0.965,1,0.8366,0.8444,0.895,0.7354,0.7898,0.86,0.9144,0.8482,0.8016,0.8094,0.6576,0.5564,0.5098,0.3968,0.2452,0.0778,-0.1362,-0.3112,-0.8026,-0.7954,-0.623,-0.5584,-0.5834,-0.641,-0.3286,-0.0054,0.2496,0.2926,0.4866,1,0.7954,0.8204,0.8958,0.878,0.8636,0.7558,0.6158,0.7522,0.799,0.8994,0.9318,0.824,0.7236,0.702,0.6696,0.5656,0.4902,0.2746,0.1346,-0.1274,-0.8124,-0.5046,-0.3734,-0.4522,-0.3358,-0.2834,-0.2382,0.1106,0.5684,0.5948,0.741,1,0.8912,0.6022,0.8348,0.7862,0.8198,0.6924,0.6548,0.7036,0.6436,0.8048,0.7674,0.7898,0.9362,1,0.955,0.895,0.741,0.5984,0.4596,0.0582,-0.0112,-1,-1,1,-1,-1,-1,0.1334,-1,-0.1666,0.738,-0.262,0.4286,0.5,0.1904,0.2858,0.5476,0.6904,0.9762,0.5,0.4048,0.881,0.7858,0.8334,1,0.8096,0.5476,0.381,0.5476,0.6428,0.5238,0.262,0.119,0.0476,0.262,0.381,0.262,0.0714,0.262,-0.0714,-0.6666,'10'
-0.5376,0.0156,-0.0696,0.254,0.444,0.5802,0.3532,0.4326,0.3078,0.2964,0.2028,0.1858,0.3646,0.3334,0.495,0.4866,0.7248,0.878,1,0.895,0.9234,0.9404,0.9858,0.895,0.8468,0.6936,0.5632,0.5716,0.5092,0.6,0.5546,0.6426,-0.602,-0.1728,0.1256,0.2696,0.5,0.5446,0.191,0.144,0.2802,0.1336,0.1728,0.2828,0.3376,0.3612,0.3272,0.5968,0.7486,0.9162,0.9528,1,0.9686,0.9686,0.945,0.877,0.9294,0.7696,0.7042,0.5786,0.6126,0.7304,0.6884,0.809,-0.5444,-0.1308,0.2406,0.353,0.443,0.4206,0.2152,0.097,0.2152,0.0296,0.0268,0.2012,0.1168,0.2546,0.1674,0.1842,0.533,0.6766,0.8734,0.9324,1,0.9268,0.8734,0.8312,0.7046,0.7946,0.4684,0.4458,0.5274,0.4514,0.5302,0.7074,-0.578,-0.2258,0.2446,0.3092,0.2984,0.1936,0.0268,0.0538,0.0484,-0.086,-0.0698,0.0268,0.1478,0.0968,0.113,0.2984,0.3576,0.5322,0.7366,0.9194,0.9302,0.9544,0.8898,0.8252,1,0.8388,0.6532,0.5268,0.4704,0.5054,0.5456,0.7338,-0.618,-0.2014,0.434,0.4862,0.2812,0.1112,0.1666,-0.1006,-0.1876,-0.4618,-0.3194,-0.2952,-0.3124,-0.302,-0.1598,0.1736,0.0798,0.2152,0.7188,0.7812,0.9966,0.934,1,0.9584,0.8958,0.9062,0.677,0.618,0.323,0.5034,0.6216,0.7986,-0.8934,-0.3608,0.3024,0.4468,0.22,-0.3746,-0.3814,-0.3986,-0.4432,-0.5532,-0.512,-0.4158,-0.4158,-0.5258,-0.213,-0.2302,-0.1924,-0.0104,0.3676,0.622,0.8384,0.914,1,0.9554,0.9588,0.9106,0.6288,0.481,0.3642,0.409,0.512,0.6908,-0.7858,-0.182,0.289,0.4304,-0.0664,-0.4946,-0.5674,-0.4776,-0.5802,-0.8158,-0.7044,-0.6018,-0.6916,-0.683,-0.4946,-0.5418,-0.3062,-0.2676,-0.075,0.4262,0.7644,0.9186,0.923,0.9058,1,0.9314,0.6874,0.4776,0.2078,0.1948,0.2934,0.5504,-0.55,0.2,0.15,0.15,0.25,0.5,0.5,0.25,0.2,-0.05,0.05,-0.2,-0.35,-0.25,0.2,0.05,-0.1,0.4,0.7,0.8,0.8,0.75,1,0.7,0.5,0.2,0.15,0.15,0.4,0.35,0.35,0.5,-0.4584,0.1666,0.0834,0.2916,0.5416,0.7084,0.6666,0.7084,0.3334,0.375,0.1666,0.2084,0.375,0.4166,0.5416,0.5,0.7916,0.75,0.875,0.7916,0.7916,0.875,1,0.875,0.8334,0.625,0.7084,0.625,0.5416,0.5834,0.5,0.7916,-0.5898,-0.1026,0.4358,0.4616,0.2564,0.1794,0.1538,-0.077,-0.2052,-0.3846,-0.1538,-0.1282,-0.4616,-0.1282,0.0256,0.1026,0.1282,0.2308,0.6666,0.7692,0.923,0.9488,1,0.8462,0.7436,0.8206,0.7436,0.718,0.2052,0.4616,0.5384,0.7436,-1,-0.9392,-0.9528,-0.9124,-0.5414,-0.5582,-0.575,-0.7504,-0.7774,-0.7942,-0.7302,0.494,0.9392,0.8348,0.6864,0.5042,0.1332,-0.1232,-0.1804,-0.0792,-0.3254,-0.4806,-0.7336,-0.8314,-0.9326,-0.9156,-0.9326,-1,-1,-1,-1,-1,-1,-1,-0.9808,-0.9814,-0.8778,0.2356,-0.4066,-0.567,-0.6504,-0.4656,-0.362,-0.5732,-0.1752,0.8874,0.4924,-0.101,-0.2438,-0.2768,-0.4406,-0.7284,-0.4756,-0.7658,-0.8674,-0.9306,-0.9382,-0.9416,-0.9354,-0.955,-1,-1,-1,-1,-1,-1,-1,-0.9762,-0.96,-0.96,-0.0034,0.62,0.54,0.33,0.2332,0.1532,0.11,-0.3912,-0.25,-0.202,-0.268,-0.238,-0.33,-0.566,-0.832,-0.612,-0.682,-0.806,-0.8334,-0.5534,-0.4268,-0.4868,-0.6034,-1,-1,-1,-1,-1,-1,-1,-0.4858,-0.7142,1,1,0.8572,-0.4572,-0.6,-0.6572,-0.7142,0.4,1,0.2,-0.8,-0.7428,-0.8858,-0.9428,-0.1428,-0.0572,-0.5142,-0.7142,-0.5142,-0.8572,-0.8572,-0.9142,-0.9428,-0.4572,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.8522,0.197,0.2086,0.2232,0.2468,0.2686,0.2878,0.3444,0.3624,0.4564,0.6442,-0.6134,0.1648,-0.623,-0.6318,-0.3256,-0.0034,0.6356,-0.6916,-0.5156,-0.2974,-0.1032,-0.1092,0.0194,-0.0284,0.0822,0.157,0.3692,0.5128,0.7758,0.9222,1,0.8744,0.8536,0.8116,0.7878,0.8714,0.988,0.9312,0.8684,0.9014,0.7518,0.6592,0.6742,0.725,0.4948,0.3872,0.2706,0.2346,0.2586,-0.0912,-0.321,-0.3606,-0.2504,0.0466,0.1514,-0.1456,0.075,0.0298,0.338,0.522,0.9548,0.9688,0.9916,0.7906,0.7398,0.8162,1,0.9434,0.7568,0.7906,0.8586,0.635,0.4286,0.4088,0.338,0.5162,0.488,0.338,0.3606,0.3438,0.3352,0.1118,-0.8924,-0.7508,-0.357,0.187,0.1474,-0.0482,0.1048,0.0906,0.51,0.7818,0.9462,1,0.898,0.6232,0.4362,0.626,0.8668,0.7762,0.4504,0.3456,0.3342,0.3144,0.1416,0.0566,0.136,0.2492,0.3428,0.2832,0.1388,0.1304,0.323,0.1274,1,-1,1,-1,-0.6,-1,-1,0.4334,-1,-0.4334,-0.2334,-0.3,0.1,0.0666,-0.1,-0.1,0.1334,0.05,0.4166,0.65,0.6834,0.8834,0.8,0.3166,0.25,0.9,1,0.4,0.25,0.1834,0.4334,0.25,0.3334,-0.0166,-0.15,-0.0334,0.15,-0.2166,-0.15,-0.3666,-0.5,'11'
-0.6244,-0.1244,0.0132,0.2566,0.4022,0.5396,0.2752,0.2276,0.2434,0.2302,0.1958,0.172,0.373,0.3042,0.4948,0.672,0.7858,0.9074,0.9736,0.91,0.91,1,0.9392,0.9312,0.8518,0.799,0.6798,0.701,0.6666,0.672,0.6084,0.6402,-0.6792,-0.2622,0.0562,0.2132,0.3348,0.3958,0.1358,0.1334,0.0984,0.0046,0.1312,0.1826,0.281,0.3442,0.363,0.6488,0.6416,0.9392,0.801,0.9696,0.8594,0.9298,0.9976,1,0.8196,0.7306,0.7518,0.5878,0.7142,0.6534,0.6792,0.8618,-0.6366,-0.1854,0.1704,0.3334,0.238,0.2958,0.163,0.1454,0.025,-0.0802,0.01,0.1554,0.2532,0.228,0.2432,0.5138,0.5238,0.802,0.8546,1,0.9072,0.9598,0.9122,0.8972,0.8246,0.7294,0.6992,0.4962,0.594,0.584,0.6166,0.8296,-0.6896,-0.229,0.173,0.3358,0.1068,0.1832,-0.033,-0.0408,-0.1324,-0.2086,-0.084,-0.1298,-0.0076,0.1374,0.1832,0.3638,0.3232,0.5446,0.7684,0.9466,0.8778,0.977,0.9134,0.9364,1,0.9466,0.5802,0.4606,0.5242,0.453,0.5446,0.6514,-0.7336,-0.2276,0.185,0.4274,0.2276,0.0412,-0.1452,-0.0706,-0.2144,-0.2118,-0.2118,-0.2596,-0.0866,-0.1158,0.0174,0.1238,0.2544,0.4274,0.5366,0.9494,0.9468,1,0.936,0.9654,0.8934,0.9068,0.7284,0.6778,0.5792,0.6032,0.5446,0.6512,-0.9898,-0.056,-0.0254,0.5314,0.477,-0.0152,-0.0696,-0.219,-0.2632,-0.3854,-0.416,-0.3242,-0.3174,-0.4398,-0.4262,-0.4634,-0.3888,-0.107,0.1816,0.5756,0.8642,0.9186,1,0.8574,0.9354,0.9524,0.7386,0.64,0.4364,0.3854,0.4872,0.7012,-0.9506,0.3588,0.4574,0.13,0.3184,-0.2286,-0.027,-0.3856,-0.4036,-0.6548,-0.6234,-0.435,-0.4932,-0.5964,-0.8476,-0.6502,-0.4216,-0.4708,-0.0628,0.0044,0.3274,0.9372,0.8968,1,0.9282,0.9462,0.879,0.3632,0.157,0.1032,-0.009,0.1928,-0.561,0.0244,0.0244,0.2682,0.4146,0.6586,0.4634,0.2682,0.317,0.317,0.122,0.0732,0.1708,0.4634,0.5122,0.4634,0.4634,0.9024,0.9024,0.9024,0.8536,0.9512,0.9024,1,0.756,0.6586,0.2682,0.5122,0.4634,0.0244,0.4634,0.6586,-0.6086,-0.1304,0.087,0.3044,0.4348,0.5652,0.4348,0.3478,0.2174,0.2608,0.2174,0.2608,0.4782,0.4348,0.5218,0.7392,0.8696,0.913,1,0.8696,0.8696,0.913,1,0.8696,0.826,0.826,0.7826,0.6522,0.6086,0.6086,0.5652,0.6086,-0.9518,-0.1566,0.2772,0.6144,0.4698,-0.012,-0.1084,-0.1566,-0.229,-0.3976,-0.4458,-0.3494,-0.494,-0.3012,-0.4458,-0.3976,-0.3976,-0.1326,0.494,0.5662,0.9278,1,0.5904,0.6868,0.5904,0.6386,0.6868,0.6868,0.6144,0.6626,0.494,0.6144,-1,-1,-0.9176,-0.9462,-0.8422,-0.3046,-0.7562,-0.724,-0.8064,-0.8244,-0.5734,0.6738,0.8818,0.663,0.577,0.534,0.4982,0.38,0.3978,0.018,-0.4552,-0.4874,-0.5986,-0.6846,-0.828,-0.8888,-0.9068,-0.939,-1,-1,-1,-1,-1,-1,-1,-0.985,-0.9854,-0.7554,0.4814,-0.6268,-0.7082,-0.7462,-0.718,-0.7626,-0.0232,0.8846,0.3406,-0.1528,-0.2456,-0.2712,-0.3208,-0.4928,-0.7454,-0.8642,-0.9156,-0.935,-0.9412,-0.9672,-0.9734,-0.9802,-0.9836,-1,-1,-1,-1,-1,-1,-1,-0.9464,-0.9468,-0.7934,0.2866,0.6266,0.4432,0.26,0.1632,0.08,-0.244,-0.148,-0.15,-0.296,-0.254,-0.188,-0.364,-0.288,-0.492,-0.416,-0.7382,-0.79,-0.65,-0.7234,-0.73,-0.82,-0.9468,-1,-1,-1,-1,-1,-1,-1,-0.5428,1,1,1,0.1428,-0.4,-0.5428,-0.6,1,1,-0.5142,-0.5142,-0.9714,-1,-1,-0.9714,-0.5428,-0.2572,-0.3714,-0.6,-0.8858,-0.9142,-0.8572,-0.8858,-0.8858,-0.6286,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.9718,0.2448,0.2622,0.2538,0.2828,0.3186,0.355,0.374,0.3898,0.4634,0.6754,-0.72,0.1882,-0.797,-0.6236,-0.2872,0.205,0.6578,-0.35,-0.6346,-0.2848,-0.1022,-0.0526,-0.031,0.0682,0.2818,0.2322,0.3004,0.4366,0.7586,0.969,1,0.8668,0.7832,0.7864,0.7492,0.7214,0.8668,0.8668,0.966,0.9102,0.6532,0.5356,0.3684,0.3684,0.2972,0.2012,0.0434,0.034,0.0402,-0.0744,-0.5576,-0.3484,-0.0666,-0.009,0.0212,-0.0182,0.106,-0.0212,0.3546,0.5334,0.8182,0.8364,1,0.7848,0.697,0.6758,0.7788,0.697,0.7272,0.8152,0.8152,0.8696,0.7242,0.4636,0.409,0.4606,0.4182,0.394,0.1516,0.1304,0.0424,-0.091,-0.4908,-0.3396,0.0124,0.2314,0.1512,0.0062,0.1142,0.2314,0.4166,0.8364,0.966,0.9352,1,0.7346,0.5834,0.5402,0.676,0.5926,0.608,0.5648,0.4506,0.4444,0.3302,0.2408,0.1296,0.3612,0.3364,0.2778,0.145,0.1388,0.1018,-0.2592,1,-1,-1,1,-0.8,-1,-0.8,0.3,-1,-0.1852,0.5926,0.0926,0.537,0.426,0.037,-0.074,0.0556,0.2592,0.6482,0.6852,0.8518,0.8518,1,0.5926,0.463,0.5556,0.7408,0.3148,0.1112,0.1296,0.3888,0.2222,0,0.1112,0.037,0.074,0.074,0.037,0.426,-0.037,-0.574,'11'
-0.5634,-0.1464,-0.0024,0.1318,0.5146,0.561,0.7268,0.661,0.4244,0.2976,0.3292,0.4804,0.4804,0.6952,0.8804,1,0.822,0.8268,0.7586,0.7122,0.7732,0.839,0.822,0.9854,0.9488,0.7952,0.678,0.739,0.6512,0.6488,0.5756,0.5586,-0.5076,-0.1658,0.051,0.1224,0.3904,0.7882,0.9516,0.801,0.8188,0.7908,0.8392,0.9336,0.9234,0.8928,0.625,0.4642,0.5178,0.3928,0.352,0.4312,0.472,0.5536,0.7576,0.8418,1,0.9414,0.949,0.8164,0.7398,0.7552,0.6608,0.6684,-0.5778,-0.238,0.0398,0.1634,0.5058,0.8326,0.9382,0.8712,0.8224,0.951,0.7168,0.3024,0.233,0.1378,-0.0038,-0.027,-0.0374,0.0064,-0.0296,0.0374,0.0296,0.0862,0.2612,0.4518,0.5006,0.807,0.951,1,0.7194,0.7092,0.655,0.5676,-0.5864,-0.2238,0.187,0.3682,0.7734,0.8896,1,0.8102,0.7706,0.5326,0.306,-0.0198,-0.0964,-0.221,-0.3314,-0.2974,-0.3088,-0.3342,-0.4136,-0.3314,-0.3286,-0.272,-0.0964,0.0226,0.0566,0.3342,0.8186,0.9434,0.6798,0.5836,0.4674,0.4136,-0.5744,-0.0778,0.5136,0.652,0.9764,0.929,1,0.8176,0.8852,0.4864,0.2332,-0.1824,-0.402,-0.402,-0.429,-0.5034,-0.598,-0.6588,-0.5878,-0.6114,-0.6082,-0.4966,-0.321,-0.3278,-0.1452,-0.0168,0.3648,0.7702,0.6892,0.473,0.331,0.4662,-0.576,0.4608,0.602,1,0.6282,0.6544,0.9686,0.9686,0.7226,0.6178,-0.3612,-0.2304,-0.2722,-0.377,-0.2094,-0.5184,-0.602,-0.6702,-0.5706,-0.801,-0.602,-0.5392,-0.5446,-0.6282,-0.3142,-0.0786,0.2514,0.6492,0.5812,0.2304,0.157,0.2828,-0.7832,0.5374,0.5326,0.6096,0.6386,0.7686,0.841,0.8024,1,0.7784,0.894,0.5518,-0.0314,-0.2674,-0.041,-0.094,-0.3108,-0.2386,-0.0602,-0.1326,-0.1228,-0.0698,-0.253,-0.2144,0.094,0.2482,0.465,0.388,0.2434,0.2964,0.2386,0.1662,-0.5254,-0.1864,0.017,0.1186,0.4916,0.695,0.695,0.4576,0.322,0.322,0.356,0.4238,0.4238,0.5254,0.7628,0.9322,0.9662,0.9662,0.8644,0.8644,0.8984,0.9662,1,0.9662,0.7966,0.8306,0.8644,0.8644,0.7628,0.661,0.6272,0.661,-0.6326,-0.1428,0.0204,0.1836,0.5102,0.4694,0.7142,0.6734,0.4286,0.3062,0.2244,0.3878,0.4694,0.6326,0.8368,0.9184,1,1,0.796,0.7552,0.8368,0.8776,0.8368,0.9184,0.9592,0.5918,0.6734,0.7142,0.6326,0.6326,0.5102,0.4694,-0.5834,-0.0556,0.5556,0.6944,0.9444,0.9444,1,0.8334,0.8612,0.5278,0.0278,-0.25,-0.2778,-0.25,-0.2778,-0.3056,-0.5556,-0.4722,-0.5,-0.6112,-0.8888,-0.5556,-0.4444,-0.3888,-0.3888,-0.1388,0.4444,0.6112,0.4444,0.5278,0.4166,0.3612,-1,-1,-1,-1,-1,-1,-1,-1,-0.9652,-0.9478,-0.346,0.8156,0.7182,0.8504,0.8748,0.7704,0.8296,0.7808,0.5444,-0.1652,-0.6174,-0.3566,-0.5374,-0.6486,-0.767,-0.9166,-0.9234,-0.9304,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9862,-0.9844,-0.3886,0.471,0.4416,0.878,0.4312,-0.032,-0.3088,-0.4126,-0.6494,-0.8448,-0.9,-0.8612,-0.8888,-0.8996,-0.934,-0.9712,-0.9254,-0.969,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.9468,-0.6334,-0.372,-0.464,-0.528,-0.444,-0.538,-0.712,-0.706,-0.7092,-0.7182,-0.7438,-0.842,-0.8334,-0.6734,-0.6268,-0.8068,-0.6568,-0.7368,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,-0.6286,-0.4858,-0.4572,-0.4,-0.7714,-0.7714,-0.3428,-0.2,0.4572,0.2572,-0.7714,-0.8572,-0.4286,-0.5428,-0.7428,-0.6286,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.0964,0.0962,0.0962,0.044,0.0066,-0.0118,0.0094,0.2368,0.5244,0.375,-0.6134,0.2236,-0.2748,0.5204,0.427,0.3334,0.385,1,-0.5926,-0.1852,0.2962,0.2962,0.2962,0.2962,0.4444,0.7778,0.926,0.926,0.926,1,1,0.8888,0.7778,0.7408,0.7038,0.3334,0.2222,-0.037,-0.4814,-0.5926,-0.2592,-0.1852,-0.2962,-0.2592,-0.2592,-0.1482,-0.074,-0.2222,-0.3334,-0.5556,-0.3212,-0.156,0.633,0.6514,0.2478,0.2294,0.3762,0.7982,1,0.8166,0.8348,0.9816,0.945,0.688,0.6146,0.7982,0.7614,0.4496,0.3762,0.1744,-0.2294,-0.3762,-0.2294,-0.1376,-0.156,-0.3212,-0.1192,0.0642,-0.0458,-0.0826,-0.1192,-0.4862,-0.1786,0.1608,0.5178,0.5892,0.4822,0.4286,0.5714,0.8036,1,0.8928,0.875,1,0.9642,0.8036,0.6428,0.6964,0.75,0.5,0.2678,-0.0536,-0.2678,-0.4642,-0.4108,-0.4642,-0.4286,-0.4464,-0.3928,0,-0.0536,-0.1608,-0.25,-0.5358,0.8038,-1,-1,1,-1,-1,-0.2,-0.8334,1,-0.5354,-0.4546,-0.0304,0.091,0.3334,0.9394,0.798,0.2324,0.2122,-0.1112,0.0708,0.2324,0.697,1,0.6162,0.697,0.697,0.6364,0.5556,0.2728,0.2122,0.0304,0.6566,0.7374,0.1718,0.1314,0.0708,0.1718,0.0506,0.0102,-0.394,-0.6162,'12'
-0.6314,-0.2174,0.0124,0.147,0.5258,0.5508,0.675,0.5942,0.3996,0.263,0.3416,0.3726,0.3892,0.6688,0.7516,0.9006,0.8758,0.9192,0.7246,0.6956,0.8178,0.7972,0.9338,0.9586,0.9896,1,0.9606,0.826,0.7682,0.7392,0.5922,0.5984,-0.5116,-0.1376,0.1662,0.2564,0.516,0.8174,1,0.7734,0.7756,0.8328,0.7536,0.8614,0.8438,0.8724,0.7272,0.6282,0.5776,0.3136,0.3422,0.4874,0.3994,0.5534,0.7052,0.7404,0.9736,0.8988,0.9758,0.7492,0.7778,0.7514,0.6612,0.6128,-0.5574,-0.1686,0.2652,0.3528,0.7574,0.8202,1,0.9034,0.9416,0.9708,0.8562,0.3866,0.0944,0.1236,-0.1146,-0.164,0.0112,-0.1012,-0.0786,0.0404,-0.0516,0.0808,0.191,0.2134,0.5102,0.7192,0.8764,0.8494,0.854,0.809,0.6854,0.6764,-0.5746,-0.1586,0.4572,0.5558,0.9764,0.9294,1,0.9154,0.9952,0.4854,0.1798,0.1634,-0.0152,-0.1822,-0.2926,-0.3044,-0.2386,-0.3726,-0.2972,-0.201,-0.208,-0.0622,-0.06,0.067,0.3514,0.4266,0.7884,0.7768,0.9294,0.7532,0.7932,0.8496,-0.5986,-0.1202,0.4688,0.6178,0.9736,1,0.935,0.8318,0.887,0.6442,0.149,-0.0698,-0.101,-0.0914,-0.2548,-0.2236,-0.315,-0.2548,-0.3702,-0.423,-0.25,-0.1538,0.0168,0.0216,0.06,0.4856,0.6106,0.839,0.7332,0.81,0.625,0.601,-0.6166,0.0112,0.3112,0.6334,0.6944,0.8722,0.9056,1,0.9028,0.9166,0.1472,0.0166,-0.3222,-0.4334,-0.3778,-0.5444,-0.475,-0.5166,-0.5612,-0.4222,-0.3944,-0.4028,-0.3444,-0.0862,-0.0472,0.1528,0.2444,0.2944,0.2944,0.2834,0.0444,0.0112,-0.6078,0.3282,0.2156,0.2544,0.266,0.7398,0.6932,1,0.8136,0.903,0.631,0.6078,0.2504,0.3242,-0.0058,-0.1922,-0.3398,-0.3902,-0.4834,-0.3942,-0.3748,-0.5184,-0.3126,-0.2428,-0.266,-0.2776,-0.0058,-0.0098,0.1612,0.13,0.002,-0.0952,-0.7586,-0.3104,-0.069,0.1034,0.3448,0.3104,0.4482,0.4138,0.2414,0.1724,0.2758,0.3104,0.3448,0.5172,0.5862,0.8276,1,1,0.5862,0.6552,0.862,0.8276,0.8966,0.8276,0.862,0.862,0.862,0.7242,0.6896,0.5172,0.3448,0.5518,-0.7142,-0.25,-0.0714,0.1072,0.5,0.5358,0.4286,0.4286,0.2858,0.1428,0.2858,0.2858,0.3572,0.5,0.5358,0.7142,0.7858,0.8928,0.7858,0.8214,0.8214,0.7858,0.9286,0.8928,1,0.9286,0.8928,0.7142,0.7142,0.6072,0.5714,0.6428,-0.595,-0.0632,0.519,0.6962,0.924,1,0.9746,0.9494,0.924,0.7722,0.1646,-0.038,-0.1392,-0.2912,-0.2406,-0.443,-0.519,-0.519,-0.595,-0.4936,-0.4684,-0.443,-0.0886,-0.0632,0.1898,0.2406,0.4936,0.4936,0.6202,0.3924,0.3418,0.0886,-1,-1,-1,-1,-1,-1,-1,-1,-0.948,-0.9588,-0.3722,0.0454,0.0974,0.2424,0.4026,0.723,0.9696,0.894,0.6796,0.052,-0.3398,-0.7186,-0.8874,-0.948,-0.9458,-0.9524,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9796,-0.9828,-0.0276,0.5734,0.719,0.7032,0.4474,0.1884,0.1496,0.0364,-0.1796,-0.5754,-0.6808,-0.8854,-0.9414,-0.9558,-0.957,-0.9466,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.98,-0.4968,-0.3434,-0.3868,-0.5218,-0.5868,-0.6334,-0.6218,-0.6218,-0.685,-0.9018,-0.8634,-0.7924,-0.7768,-0.6934,-0.6634,-0.6734,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6858,1,1,1,0.3428,-0.2,-0.2,-0.8,-0.9142,-1,-0.1714,-0.1428,-0.4,-0.5142,-0.7428,-0.9142,-0.9142,-0.7428,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.435,0.4256,0.4176,0.3464,0.2912,0.1834,0.124,0.2582,0.5048,0.4328,-0.6534,0.447,0.2838,0.5802,0.607,0.4912,0.5842,1,-0.4286,-0.1428,0.1786,0.3214,0.1786,0.1428,0.2858,0.6072,0.8214,0.7858,0.7858,1,0.9642,0.9286,0.8572,0.6072,0.6072,0.6428,0.25,0.1786,-0.0714,-0.2142,-0.3928,-0.4642,-0.5,-0.3214,-0.1786,-0.2142,-0.2142,-0.2142,-0.25,-0.4286,-0.1846,0.123,0.5846,0.6308,0.3384,0.2924,0.4616,0.7538,0.8924,0.877,0.877,0.9692,1,0.923,0.7076,0.6154,0.6154,0.4924,0.2924,0.0616,0.0616,-0.0924,-0.323,-0.4924,-0.3538,-0.4462,-0.4,-0.1846,-0.4,-0.3384,-0.2308,-0.3538,-0.2058,0.1912,0.6176,0.603,0.3824,0.3382,0.4852,0.7794,0.9412,0.8088,0.897,1,1,0.897,0.7648,0.5442,0.6764,0.5294,0.4118,0.0294,0.0148,-0.0882,-0.3088,-0.3382,-0.3236,-0.5442,-0.2648,-0.3088,-0.1324,-0.1618,-0.0882,-0.1912,0.874,-1,-1,1,-0.8,-1,-1,-0.8334,-1,-0.2478,-0.1112,-0.094,0.077,0.5042,0.7606,1,0.6068,0.3676,0.3676,0.2992,-0.0086,0.4358,0.9146,0.8462,0.3846,0.4872,0.7094,0.1624,0.1794,-0.0256,0.094,0.3504,0.282,0.0428,-0.077,-0.0086,0.1966,0.0086,0.0428,-0.0256,-0.6924,'12'
-0.5654,-0.0556,0.0298,0.2704,0.4282,0.5654,0.3014,0.3712,0.1228,0.1022,0.0816,0.0038,0.229,0.1954,0.348,0.542,0.6818,0.9456,1,0.8396,0.8292,0.7904,0.793,0.9094,0.894,0.868,0.731,0.599,0.6042,0.7024,0.6274,0.8008,-0.4558,-0.0118,0.247,0.3924,0.3764,0.403,0.6538,0.58,0.3896,0.2154,0.3026,0.3316,0.2946,0.5298,0.6566,0.8336,0.9208,1,0.7332,0.6354,0.609,0.5826,0.5984,0.794,0.823,0.7596,0.6064,0.5614,0.506,0.5112,0.6036,0.7648,-0.462,-0.0682,0.3334,0.4234,0.2226,0.5366,0.7606,0.5752,0.4414,0.5522,0.5006,0.6268,0.807,0.8712,0.6936,0.6422,0.5392,0.3796,0.4518,0.5418,0.5264,0.5186,0.5984,0.7092,0.9768,0.964,0.5984,0.4826,0.601,0.6216,0.6756,1,-0.231,0.2214,0.5574,0.6414,0.0404,-0.0404,0.176,0.3506,0.4702,1,0.8966,0.6898,0.4668,0.5056,0.3248,0.2148,0.0598,0.034,0.2084,0.6156,0.4604,0.441,0.5024,0.5444,0.4248,0.1988,-0.0954,-0.26,-0.0566,0.2666,0.6446,0.7416,-0.2428,0.2428,0.534,0.6246,-0.1424,-0.3074,-0.2524,0.398,0.5436,1,0.8318,0.4724,0.3786,0.3496,0.3074,0.0842,-0.042,-0.0776,0.2492,0.5276,0.424,0.4952,0.6214,0.547,0.6764,0.3528,-0.2686,-0.8156,-0.5988,-0.2816,0.4142,0.4142,-0.136,0.3368,0.6768,0.7346,0.0544,-0.1156,-0.17,0.5782,0.7414,1,0.687,0.67,0.5102,0.3402,0.483,0.1326,0.0918,0.0748,0.4762,0.5374,0.7482,0.619,0.8062,0.949,0.9354,0.1938,-0.1394,-0.4728,-0.449,0.0748,0.3198,0.3164,-0.4134,0.0464,0.4992,0.5678,0.0498,0.6878,0.7908,0.7496,0.8114,0.9382,0.9828,1,0.952,0.7496,0.5266,0.1664,0.0566,0.0154,0.1766,0.2246,0.2488,0.2762,0.307,0.4752,0.7736,0.7428,0.3516,0.2006,0.3414,0.5506,0.6192,0.8148,-0.617,-0.0638,-0.0638,0.2766,0.4894,0.6596,0.234,0.234,-0.0638,-0.0212,0.0212,0.0638,0.1914,0.1914,0.2766,0.234,0.617,0.7446,0.9148,0.7872,0.9148,0.7872,0.9148,0.9574,1,0.9148,0.8298,0.6596,0.4468,0.6596,0.532,0.8724,-0.625,-0.125,-0.2084,0.2084,0.2916,0.5416,0.2084,0.3334,0,0.0834,-0.0416,-0.0834,0.2084,0.125,0.2916,0.3334,0.6666,0.7916,0.9584,0.75,0.9166,0.75,0.7916,1,0.9584,0.875,0.7916,0.7084,0.5,0.75,0.625,0.9166,-0.3794,0.0114,0.5402,0.6322,0.2874,0.4482,0.5862,0.4482,0.4942,0.839,0.839,0.931,0.5632,0.4942,0.3794,0.2874,0.2414,0.0114,0.1034,0.4712,0.2874,0.0344,0.1724,0.2874,0.5402,0.4252,0.3104,0.2874,0.4022,0.7012,0.885,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9222,-0.9502,-0.409,0.5116,0.6702,0.7542,0.857,0.972,0.4806,0.3686,0.2846,0.1726,0.2256,-0.0046,-0.5458,-0.6796,-0.8476,-0.9222,-0.9222,-0.9066,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9684,-0.9744,-0.0572,0.4476,0.6326,0.4226,0.8258,0.7974,-0.3714,-0.4858,-0.5,-0.5512,-0.502,-0.1668,-0.749,-0.7604,-0.718,-0.8304,-0.8924,-0.9158,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.9668,-0.6134,-0.354,-0.294,-0.4,-0.368,-0.516,-0.608,-0.6328,-0.6056,-0.7164,-0.9456,-0.851,-0.7034,-0.64,-0.4868,-0.43,-0.4534,-0.5934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,1,1,1,-0.7714,-0.7714,-0.7714,1,1,-1,-1,-1,1,0.8,-0.0572,-0.5142,-0.6858,-0.6858,-0.7714,-0.8286,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.852,0.4512,0.4452,0.436,0.417,0.3898,0.3292,0.2488,0.1454,-0.012,-0.1998,-0.64,0.2352,0.0336,0.677,0.2618,0.504,0.5296,1,-0.1428,-0.1072,0.1786,0.3214,0.25,0.0358,0.2142,0.4642,0.6428,0.6786,0.75,0.9642,1,0.9286,0.75,0.9286,0.9642,0.9286,0.6072,0.2858,0.25,0.0358,-0.2858,-0.2142,-0.1428,-0.1786,-0.3214,-0.25,0.0714,0.0714,-0.1072,-0.4642,0.0598,0.2136,0.3846,0.5384,0.3504,0.1966,0.282,0.453,0.641,0.812,0.812,0.9658,1,0.9146,0.7264,0.7948,0.9488,0.829,0.5042,0.1966,0.2308,-0.0086,-0.2992,-0.2478,-0.2478,-0.2992,-0.282,-0.1794,0.2478,0.1794,0.0428,-0.3676,-0.0806,0.2742,0.5322,0.4838,0.1452,0.0968,0.3226,0.5162,0.8548,0.9838,0.9194,1,0.9838,0.8064,0.7742,0.7904,0.887,0.6612,0.4032,0.129,0.0484,-0.1452,-0.5322,-0.4838,-0.4194,-0.5322,-0.5162,-0.387,0.1612,0.0968,0.1774,-0.2904,1,-1,-1,1,-0.8,-1,0,-0.8334,-1,-0.3284,-0.1094,0.0218,0.1386,0.3284,0.781,0.854,0.6496,0.3284,0.3138,0.4014,0.1386,0.489,0.6058,0.5766,0.8248,1,0.8248,0.416,0.6496,0.6642,0.343,0.051,0.1824,0.27,0.1678,0.1094,0.2408,0.3722,0.1532,0.2262,-0.051,'13'
-0.5564,-0.014,-0.0516,0.2652,0.2958,0.5,0.317,0.223,-0.0188,0.0846,-0.1338,-0.0658,0.1878,0.2394,0.392,0.4296,0.7676,0.763,0.9062,0.8686,0.8732,0.7934,0.9554,0.8192,1,0.838,0.791,0.5846,0.7112,0.655,0.7442,0.8286,-0.339,0.18,0.1482,0.3904,0.5888,0.7308,0.5324,0.5838,0.3512,0.3292,0.0844,0.1628,0.4346,0.5276,0.6768,0.8678,0.9584,0.907,0.9266,0.8776,0.8286,0.9216,0.885,0.9902,0.9756,1,0.765,0.7698,0.7552,0.7184,0.7528,0.8238,-0.4182,0.086,0.166,0.3672,0.3818,0.5006,0.6728,0.7116,0.5516,0.52,0.3552,0.4328,0.6388,0.8522,0.954,0.8958,0.9394,0.5854,0.5806,0.7116,0.6436,0.7696,0.7988,0.971,0.8958,1,0.7552,0.7818,0.8084,0.7818,0.7576,0.794,-0.385,0.277,0.3408,0.6786,0.5152,0.6842,0.518,0.6592,0.6898,0.856,0.8614,0.892,0.7424,0.6926,0.3906,0.4044,0.3296,0.3962,0.5512,0.5318,0.4876,0.4682,0.5042,0.6426,0.8448,0.7646,0.6482,0.5264,0.687,0.7922,0.9086,1,-0.3056,0.7272,0.7306,0.6754,0.658,-0.1398,-0.0156,0.9516,0.955,0.9586,0.9966,0.4854,0.544,0.1848,0.3196,0.3576,0.4784,0.5268,0.6856,0.7892,0.9378,0.6546,0.7132,0.7754,1,0.7202,0.316,-0.164,0.019,0.5682,0.855,0.924,-0.5432,0.6182,0.6836,0.354,0.4748,-0.119,0.0734,0.703,1,0.7488,0.8728,0.7226,0.0278,0.0016,0.0636,0.1126,0.2234,0.3442,0.3964,0.6052,0.3736,0.4128,0.2464,0.341,0.3344,0.292,0.057,-0.6182,-0.3606,0.106,0.3508,0.4976,-0.9368,0.5126,0.6868,0.0854,0.3322,0.25,1,0.9336,0.6234,0.7594,0.3512,0.8164,0.7184,0.4968,0.481,-0.0032,0.1582,-0.0982,0.2754,0.1772,-0.1234,-0.367,-0.2532,0.0348,0.1994,0.4272,0.424,-0.114,0.0064,-0.0222,0.1646,0.2532,-0.64,-0.16,0.08,0.24,0.4,0.48,0.16,0.16,-0.04,-0.08,-0.08,0,0.12,0.24,0.28,0.52,0.76,1,0.72,0.92,0.84,0.8,1,0.96,0.96,0.88,0.84,0.8,0.84,0.84,0.88,0.88,-0.577,-0.0384,0.0384,0.2692,0.2692,0.5,0.3846,0.1154,0.0384,0.1154,-0.0384,0.0384,0.1924,0.2692,0.3846,0.423,0.7308,0.7308,0.9616,1,0.8846,0.8846,1,0.9616,1,0.9616,0.8462,0.8076,0.8462,0.7692,0.7308,0.7308,-0.4568,0.3086,0.284,0.8024,0.605,0.926,0.7038,0.6296,0.7778,1,0.7038,0.8272,0.4814,0.5062,0.1852,0.284,0.1604,0.3334,0.4814,0.5802,0.4074,0.4074,-0.0864,-0.1112,0.8272,0.8518,0.605,0.5556,0.8024,0.753,0.926,0.8518,-1,-1,-1,-1,-1,-1,-1,-1,-0.9444,-0.952,-0.6132,0.2338,0.426,0.828,0.5726,0.5904,0.866,0.2414,0.1858,0.0544,0.0266,-0.292,-0.5448,-0.8054,-0.9064,-0.9166,-0.9242,-0.9318,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9738,-0.9756,-0.186,0.8114,0.3608,0.5968,0.8958,0.764,0.3508,-0.457,-0.47,-0.5206,-0.4812,-0.5862,-0.7866,-0.844,-0.8708,-0.8614,-0.9026,-0.9176,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.98,-0.6368,-0.298,-0.291,-0.3838,-0.2582,-0.3074,-0.5346,-0.602,-0.6856,-0.8274,-0.8692,-0.7964,-0.7334,-0.34,-0.33,-0.28,-0.3834,-0.48,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,-0.7142,-0.7142,-0.8,-0.6572,0.9142,0.7714,-0.6572,-0.3142,0.6858,-0.3428,-0.8,-0.8,-0.8286,-1,-0.8286,-0.6286,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.9696,0.5628,0.55,0.5202,0.4946,0.4646,0.4334,0.4088,0.3344,0.2108,-0.0318,-0.76,0.2942,-0.0518,0.9944,0.8396,0.867,0.4676,1,-0.3,-0.1,0.05,0.1,-0.35,0.1,0.2,0.35,0.6,0.75,0.9,1,1,0.95,1,0.95,0.85,0.75,0.65,0.45,0.1,0.3,-0.2,-0.3,-0.2,0,0.05,-0.2,0.05,0.05,-0.35,-0.4,-0.4038,-0.3654,0.2116,0.2308,0.0192,-0.1924,0.0576,0.1346,0.6346,0.7116,0.7116,0.9424,1,0.5962,0.7116,0.8076,0.8076,0.6924,0.2692,0.1924,0,0,-0.6346,-0.5576,-0.3846,-0.75,-0.6154,-0.6154,-0.2308,-0.0576,-0.1538,-0.423,-0.1818,0.109,0.3454,0.4,0.2,0.091,0.2728,0.5272,0.9636,1,0.909,1,1,0.8364,0.891,0.8364,0.691,0.5636,0.4182,0.1272,0,-0.1636,-0.709,-0.3636,-0.5636,-0.7454,-0.7818,-0.5636,-0.2728,-0.1454,-0.0182,-0.1454,1,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.7944,-0.4018,-0.3084,0.2336,-0.1402,0.4206,0.8318,0.7758,0.57,0.4766,0.3644,0.1962,0.7384,0.813,0.813,0.2898,1,0.7384,-0.1402,0.1214,0.1962,0.458,0.5514,0.2898,-0.0094,0.1402,0.0468,0.1402,0.1028,0.3644,0.271,-0.4018,'13'
-0.4936,-0.0218,0.2682,0.4224,0.3578,0.4154,0.3486,0.298,0.1484,0.0104,-0.2106,-0.0632,-0.015,0.1324,0.1898,0.3486,0.4154,0.6202,0.9056,1,0.7376,0.7146,0.7744,0.7492,0.954,0.8758,0.8228,0.572,0.5444,0.5766,0.5144,0.825,-0.3948,0.0166,0.383,0.5012,0.2648,0.3996,0.6904,0.5342,0.4208,0.0662,0.033,0.0946,0.3452,0.48,0.6028,0.6974,0.9362,0.8274,0.7684,0.7234,0.766,0.7164,0.6784,0.773,0.9244,1,0.7778,0.6714,0.558,0.4918,0.558,0.7566,-0.5138,-0.1698,0.2336,0.3058,0.0658,0.2888,0.4522,0.2718,0.3014,0.1868,0.0912,0.0764,0.2866,0.3036,0.5562,0.898,1,0.6476,0.4778,0.5902,0.4544,0.4098,0.603,0.5966,0.8216,0.743,0.828,0.5902,0.5648,0.6178,0.654,0.7368,-0.1928,0.304,0.8104,0.8594,0.3562,0.196,-0.085,0.513,0.487,0.2288,-0.0424,0.0066,0.1504,0.7908,1,0.8236,0.817,0.5098,0.5262,0.6798,0.7778,0.7156,0.7614,0.6994,0.8138,0.7942,0.6764,0.2746,0.245,0.3006,0.245,0.4608,-0.078,0.42,0.9926,1,0.3234,-0.0038,-0.3866,0.1264,0.2676,0.368,0.067,-0.1116,-0.5874,0.2118,0.5688,0.7658,0.316,-0.0408,0.1264,0.7584,0.7918,0.6914,0.6394,0.7138,0.7398,0.6766,0.275,-0.1302,-0.2044,-0.6134,-0.6654,-0.4722,-0.129,0.2948,1,0.9614,0.4182,0.002,-0.0712,0.1446,0.368,0.2678,-0.0404,-0.5106,0.079,0.2794,0.7996,0.7302,0.2292,-0.0868,0.3218,0.58,0.6532,0.553,0.603,0.5838,0.5106,0.4644,0.0712,-0.1522,-0.2948,-0.6146,-0.5298,-0.3872,-0.379,-0.0046,0.376,0.351,-0.011,0.5102,0.4914,0.4072,0.17,0.067,-0.1326,0.064,0.245,0.4228,0.8876,1,0.8128,0.4882,0.0234,0.2324,0.2886,0.2574,0.2138,0.4166,0.8128,0.8596,0.7754,0.3104,0.3386,0.4322,0.2356,0.5788,-0.5714,-0.0714,0.2142,0.3214,0.3928,0.4286,0.1428,0.0714,0.1072,-0.0358,-0.1786,-0.0358,0.0714,0.0358,0.0714,0.3572,0.4286,0.6428,0.7142,0.9642,0.9642,0.7858,0.7142,0.7858,0.9286,0.9286,0.8214,0.7142,0.6072,0.6786,0.7858,1,-0.6072,-0.1428,0.1786,0.3214,0.2858,0.3214,0.1786,0.1072,0.0358,-0.0358,-0.1072,-0.1428,-0.0358,0.0714,0.1072,0.3214,0.4286,0.5714,0.8214,0.9286,0.8214,0.6428,0.75,0.7142,1,1,0.7858,0.7142,0.6072,0.5358,0.6428,0.8572,-0.4462,0.1076,0.5692,0.5384,0.0462,-0.2308,-0.1076,0.4154,0.4154,-0.1076,-0.5384,-0.1076,0.5692,0.8154,0.9692,0.7538,0.6616,0.6308,0.6308,0.723,0.5384,0.4154,0.4154,0.1076,0.6924,1,0.8154,0.323,0.7538,0.7538,0.4154,0.9384,-1,-1,-1,-1,-1,-1,-1,-1,-0.9394,-0.9484,-0.302,0.736,0.9424,0.8148,0.7542,0.6692,0.5084,0.566,0.5204,0.311,0.0652,-0.2504,-0.651,-0.8422,-0.8846,-0.915,-0.918,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9796,-0.979,-0.0058,0.2796,-0.16,0.0252,0.4282,0.28,-0.4546,-0.6314,-0.6476,-0.7034,-0.5962,-0.7514,-0.8356,-0.831,-0.835,-0.884,-0.9172,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.4534,-0.1128,-0.3092,-0.431,-0.311,-0.3164,-0.5368,-0.74,-0.8434,-0.92,-0.6118,-0.6868,-0.4634,-0.2368,-0.2534,-0.2268,-0.3534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,1,1,1,-0.8858,-0.7428,-0.9142,0.2858,1,-0.5428,-0.9714,0.1428,1,0.2,-0.6286,-0.7714,-0.8286,-0.8286,-0.2,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.7466,0.726,0.7034,0.7058,0.6818,0.6284,0.5636,0.4944,0.423,0.2988,0.1118,-0.6,0.3764,0.3072,0.9438,0.3878,0.1304,-0.104,1,-0.238,0.1112,0.238,0.238,0.2064,0.238,0.2698,0.4286,0.6826,0.8412,0.9048,0.9682,1,0.9682,0.9048,0.9366,0.9366,0.9366,0.8096,0.5556,0.3968,0.2064,-0.0158,-0.1428,-0.1112,-0.0794,-0.1428,-0.0476,-0.0158,-0.0794,-0.1112,-0.4604,-0.123,0,0.323,0.2616,0.1076,0.0616,0.1384,0.3384,0.523,0.8616,0.8154,0.877,1,0.8,0.7846,0.8308,0.923,0.9076,0.6154,0.3076,0.277,0.0616,-0.2,-0.477,-0.5384,-0.4308,-0.2462,-0.3538,-0.1846,-0.2462,-0.1076,-0.2924,-0.1182,0.307,0.433,0.2756,0.1338,0.0708,0.1496,0.2756,0.6062,0.9212,0.8898,0.9842,1,0.8582,0.9212,0.9528,0.9842,0.9212,0.5118,0.2756,0.1812,-0.0236,-0.1654,-0.5276,-0.5276,-0.4488,-0.3544,-0.1654,-0.1338,-0.1812,-0.0394,-0.4174,1,-1,-1,1,-0.8,-1,-0.6,-0.8334,-1,-0.3088,-0.2942,0.0882,0.4412,0.3676,0.2352,0.5882,1,0.6618,0.5148,0.6912,0.3824,0.5736,0.8088,0.5588,0.5442,0.647,0.7794,0.7648,0.7648,1,0.8236,0.397,0.397,0.3236,0.2794,0.1912,0.0294,0.3382,0.5,0.397,-0.3676,'14'
-0.5882,-0.148,0.1054,0.264,0.4486,0.4792,0.2426,0.2378,0.0912,0.0414,-0.103,-0.0674,0.0556,0.1622,0.2332,0.529,0.6616,0.9526,0.858,0.787,0.6852,0.768,0.865,0.9196,1,0.9882,0.7822,0.7042,0.7846,0.8296,0.8628,0.8792,-0.3208,0.1572,0.3284,0.4918,0.5044,0.5648,0.5296,0.4842,0.3938,0.2402,-0.0088,0.2352,0.3006,0.507,0.4894,0.7408,0.8666,1,0.7534,0.7158,0.6578,0.6402,0.7534,0.7106,0.9496,0.8792,0.9924,0.6806,0.688,0.7988,0.7182,0.761,-0.374,0.1186,0.2542,0.4554,0.356,0.4598,0.4146,0.444,0.365,0.3176,0.0034,0.1028,0.3084,0.487,0.6158,0.9706,1,0.722,0.5526,0.5436,0.4758,0.4306,0.5774,0.6542,0.7492,0.8056,0.7966,0.5842,0.505,0.4824,0.496,0.6158,-0.119,0.7202,0.6592,0.9228,0.7524,0.4244,0.2186,0.2316,0.225,0.4888,0.193,-0.148,0.3794,0.5948,0.7266,0.9036,0.6528,0.8102,0.8168,0.9454,0.6848,0.762,0.7718,0.8232,0.9324,1,0.8554,0.3922,0.283,0.2572,0.3312,0.402,-0.2124,0.773,0.7764,0.8346,0.799,0.0826,0.0308,0.1248,0.0924,0.423,0.3842,-0.5526,-0.1054,0.7958,0.7666,0.5138,0.5268,0.598,0.6304,0.9676,1,0.7244,0.812,0.88,0.9416,0.7244,0.731,-0.1118,-0.3712,-0.316,-0.2124,-0.3842,-0.5414,0.521,0.5792,0.5674,0.6632,0.286,0.4484,0.283,0.3788,0.0276,0.103,-0.0596,0.4688,0.5298,1,0.9738,0.7388,0.5878,0.5732,0.6168,0.553,0.4166,0.4108,0.5124,0.7968,0.762,0.6314,0.3294,0.1234,0.1494,0.1146,0.2046,-0.8882,0.3268,0.4386,-0.148,0.0614,0.31,0.7318,0.5726,0.243,0.2262,-0.095,0.081,0.3324,0.609,0.5614,1,0.8994,0.1202,0.2068,0.1704,0.352,0.0446,0.324,0.229,0.6368,0.6508,0.5364,0.634,0.19,0.1928,0.0838,0.366,-0.72,-0.44,-0.2,0.04,0.2,0.12,0,-0.04,-0.16,-0.36,-0.28,-0.2,-0.12,0.04,0.04,0.24,0.56,0.72,0.76,0.76,0.72,0.76,0.84,0.96,1,0.88,0.64,0.76,0.8,0.92,0.92,0.76,-0.6862,-0.255,0.0196,0.2156,0.255,0.0588,0.255,0.098,0.0588,-0.0588,-0.2156,-0.1764,-0.0196,0.0588,0.0588,0.1764,0.6862,0.7254,0.804,0.6862,0.7648,0.804,0.7254,0.9216,0.6862,0.8432,0.7254,0.7254,0.7648,1,0.9216,0.804,-0.0684,0.6986,0.6986,1,0.726,0.452,0.2328,0.3698,0.3698,0.5342,0.0958,-0.2876,0.5342,0.6438,0.9178,0.9452,0.5068,0.6712,0.8082,0.8356,0.6712,0.589,0.5068,0.452,0.3972,0.6438,0.9178,0.8082,0.726,0.6712,0.7534,0.7808,-1,-1,-1,-1,-1,-1,-1,-1,-0.958,-0.9328,-0.4034,0.6246,0.7338,0.8656,0.9664,0.93,0.7226,0.5546,0.5154,0.4986,0.3306,-0.1568,-0.577,-0.8208,-0.9216,-0.944,-0.9188,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9766,-0.9732,0.1274,0.7234,0.4212,0.0732,0.1798,0.1212,-0.4604,-0.5224,-0.5268,-0.429,-0.2146,-0.633,-0.8044,-0.8642,-0.8816,-0.9078,-0.9146,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.8934,-0.44,-0.1946,-0.3128,-0.3528,-0.3746,-0.3182,-0.6292,-0.6838,-0.711,-0.7834,-0.48,-0.835,-0.54,-0.3534,-0.2268,-0.3,-0.4768,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7142,1,1,1,-0.8572,-0.9714,-0.8858,0.5714,1,-0.8286,-0.8286,1,0.4858,0.1142,-0.7428,-0.7428,-0.8,-0.8,-0.8286,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.8518,0.6252,0.6194,0.615,0.61,0.5946,0.5744,0.5324,0.429,0.3,0.0894,-0.7866,0.3412,0.5224,0.6396,1,0.5156,0.672,1,-0.3334,-0.2156,0.2156,0.1764,-0.0196,0.1372,0.2156,0.3726,0.7254,0.804,0.8824,0.9216,1,0.8432,0.8432,0.9216,0.8824,0.8432,0.6078,0.3334,0.098,-0.0588,-0.255,-0.2942,-0.1372,-0.1372,-0.255,-0.255,-0.0588,-0.2156,-0.255,-0.647,-0.5304,0.0086,0.4434,0.374,-0.0956,-0.1304,-0.0086,0.2174,0.6696,0.8956,0.7044,0.8434,1,0.7218,0.8608,0.9478,0.774,0.7914,0.1652,0.1304,-0.0434,-0.3566,-0.5652,-0.6,-0.6522,-0.774,-0.4782,-0.374,-0.2,-0.2,-0.287,-0.6522,-0.4174,-0.0486,0.631,0.4368,-0.068,-0.1456,-0.1844,0.2234,0.7282,0.8834,0.6504,0.8058,0.9418,0.7282,1,1,0.767,0.67,0.301,-0.1456,-0.165,-0.301,-0.6894,-0.3786,-0.301,-0.4368,-0.3786,-0.2622,-0.0486,-0.0292,-0.4952,-0.4564,1,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.7816,-0.6638,-0.2942,-0.0924,-0.1428,-0.0756,0.647,0.6638,0.21,0.5126,0.2942,0.2436,0.832,1,0.4118,0.479,0.5966,0.4622,0.4286,0.4118,0.311,0.21,0.1932,0.1764,0.0084,0.0756,-0.0588,0.0084,0.2606,0.126,-0.126,-0.2942,'14'
-0.585,0.014,0.0764,0.3166,0.8066,0.975,0.816,0.819,0.7754,0.844,1,0.9906,0.351,0.2606,0.2512,0.195,0.273,0.1826,0.1576,0.401,0.5694,0.9314,0.972,0.794,0.6786,0.7566,0.7192,0.8066,0.7316,0.7722,0.766,0.8472,-0.3746,0.1632,0.2236,0.423,0.8822,0.9698,0.9124,0.9244,1,0.9124,0.9034,0.725,0.3746,0.1088,0.1692,0.2356,0.2538,0.1058,0.0846,0.3656,0.4138,0.5862,0.8972,0.9788,0.707,0.6314,0.6224,0.562,0.6404,0.6344,0.7372,0.5528,-0.3476,0.1044,0.3876,0.525,0.9056,0.8998,0.691,0.8398,1,0.6852,0.6996,0.1674,0.0558,0.1244,-0.0472,0.0444,-0.1444,-0.1788,-0.053,0.0128,0.1302,0.462,0.5308,0.7654,0.6996,0.4306,0.3562,0.465,0.6138,0.5908,0.525,0.3706,-0.492,-0.048,0.4888,0.5814,0.7028,0.607,0.6006,0.9552,1,0.6486,0.5112,-0.0064,-0.31,-0.2972,-0.23,-0.3386,-0.1726,-0.2748,-0.294,-0.1374,-0.0288,0.131,0.5336,0.54,0.5528,0.3802,0.2876,0.4154,0.4664,0.6838,0.5336,0.278,-0.5356,-0.105,0.4882,0.539,0.4882,0.505,0.6272,1,0.895,0.261,-0.0508,-0.2238,-0.5016,-0.5526,-0.5458,-0.5016,-0.5458,-0.5084,-0.4306,-0.417,-0.3186,-0.0372,0.0984,0.5694,0.539,0.2034,0.156,0.2102,0.4406,0.3728,0.3594,0.0746,-0.343,0.1376,0.8686,0.9096,0.577,0.8686,0.9712,1,0.844,0.0882,-0.3758,-0.3676,-0.4496,-0.4784,-0.5236,-0.577,-0.5154,-0.5688,-0.7536,-0.7454,-0.6016,-0.31,-0.1416,0.1828,0.2198,0.2526,-0.1088,-0.002,0.3264,0.421,0.2444,-0.191,0.3444,0.4326,0.7796,0.8512,0.1736,0.73,1,0.3168,0.0578,-0.741,-0.5758,-0.6528,-0.2838,-0.3334,-0.427,-0.7134,-0.405,-0.5592,-0.9064,-0.6418,-0.5592,-0.5758,-0.6364,-0.3554,-0.2232,-0.4436,-0.3994,-0.5372,-0.2618,-0.2176,-0.2396,-0.7742,-0.628,-0.1162,0.1628,0.3488,0.721,0.8604,0.907,0.7674,0.814,0.9534,1,0.907,0.628,0.3954,0.3488,0.2558,0.2558,0.3488,0.3954,0.4418,0.7674,0.9534,1,0.907,0.7674,0.8604,0.8604,0.9534,0.9534,0.907,0.814,0.8604,-0.628,-0.2094,-0.0232,0.3024,0.628,1,0.907,0.628,0.721,1,0.814,0.814,0.6744,0.4418,0.3024,0.2558,0.2558,0.3024,0.3488,0.4418,0.6744,0.7674,0.907,0.907,0.628,0.6744,0.721,0.721,0.6744,0.628,0.5814,0.628,-0.4736,-0.0526,0.5264,0.5526,0.5,0.5264,0.6052,1,0.8684,0.1052,-0.1842,-0.2632,-0.8422,-0.579,-0.6052,-0.6842,-0.7368,-0.6578,-0.4736,-0.4736,-0.3422,-0.0526,-0.0264,0.5264,0.421,0.2632,0.2106,0.1052,0.3948,0.4474,0.4474,0.079,-1,-1,-1,-1,-1,-1,-1,-1,-0.9656,-0.9416,-0.7428,0.5384,0.9628,0.7798,0.8356,0.6552,0.2732,0.053,-0.069,-0.1512,-0.329,-0.2202,0.1062,0.0876,-0.252,-0.6074,-0.7746,-0.9336,-0.9336,-0.939,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9746,-0.9688,-0.6964,0.8276,0.9,0.4072,0.1508,0.0594,-0.092,-0.2798,-0.4508,-0.6326,-0.7492,-0.763,-0.6848,-0.692,-0.7818,-0.8572,-0.9138,-0.9514,-0.9608,-0.9616,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.8068,-0.63,-0.628,-0.612,-0.56,-0.574,-0.672,-0.72,-0.76,-0.8,-0.804,-0.88,-0.9368,-0.9268,-0.9234,-0.9,-0.8934,-0.74,-0.8668,-0.8934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,0.0858,1,1,-0.9142,-0.8286,-0.9142,-1,-0.8572,-0.8858,-0.7714,-0.6572,-0.7142,-0.7714,-0.9714,-0.8858,-0.8858,-0.9142,-0.8,-0.8286,-0.8858,-0.1428,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.512,0.5032,0.4918,0.5098,0.5294,0.5282,0.5628,0.584,0.6594,0.5378,-0.6266,0.1764,-0.5804,0.1486,0.8608,0.8804,0.9086,1,-0.3846,0.077,0.7948,0.8974,0.8974,1,0.8462,0.2308,0.3846,0.5384,0.7436,0.8974,0.8462,0.6924,0.8462,0.9488,0.9488,0.6924,0.1794,-0.3846,-0.282,-0.2308,-0.2308,-0.282,-0.1282,-0.282,-0.5384,0.0256,-0.077,-0.1282,-0.077,-0.5384,-0.3734,-0.1084,0.8072,0.9036,0.3494,1,0.5422,0.012,0.229,0.253,0.4458,0.8072,0.3254,0.2772,0.494,0.6144,0.6626,0.3494,0.0602,-0.229,-0.2772,-0.5422,-0.2048,-0.3254,-0.0844,-0.1326,-0.1326,-0.012,0.0844,0.1084,0.229,0.0844,0.2912,0.595,0.7468,0.924,0.8482,1,0.6202,0.7722,0.6962,0.4936,0.8228,0.9494,0.7974,0.7974,0.8734,0.8734,0.6456,0.7974,0.443,0.1392,0.2658,0.1646,-0.0886,0.0632,0.2912,0.2406,0.1392,0.7722,0.7722,0.6962,0.595,0.367,1,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.3556,0.0222,-0.0888,0.8222,1,0.4444,0.4666,0.4888,0.4444,0.4222,0.2666,0.2444,0.4444,0.6,-0.0666,0.4666,-0.1556,0.7334,0.4222,0.2,-0.0444,0.2666,0.4666,0.4,0.4444,0.2666,0.3778,0.3334,0.1334,0.1778,0.2666,-0.2,'15'
-0.431,0.0586,0.3208,0.4848,0.9742,1,0.8314,0.7752,0.9976,0.815,0.6768,0.2834,0.2482,0.117,0.0422,0.0234,-0.0702,0.0282,0.1264,0.157,0.4544,0.7284,0.9156,0.7658,0.5644,0.4356,0.4474,0.4824,0.5292,0.6276,0.5598,0.5714,-0.3404,0.1096,0.3664,0.4982,0.8586,0.854,0.8234,0.8492,1,0.6702,0.4158,0.1118,0.0342,0.046,-0.1566,-0.0954,-0.2414,-0.258,-0.1566,0.0812,0.2368,0.5406,0.5784,0.4464,0.3828,0.2604,0.166,0.2556,0.3686,0.3568,0.2438,0.1002,-0.452,0.007,0.4964,0.637,0.726,0.7236,0.712,0.8408,1,0.6722,0.1968,-0.0538,-0.1148,-0.1734,-0.3208,-0.2576,-0.1592,-0.1546,-0.185,0.014,0.1896,0.4824,0.5456,0.5598,0.4964,0.3676,0.2388,0.3512,0.5668,0.5714,0.1804,0.1218,-0.463,0.09,0.8016,1,0.7778,0.8386,0.8784,0.8306,0.6932,0.5292,0.0978,-0.135,-0.0502,-0.2142,-0.2566,-0.2328,-0.3572,-0.2566,-0.1878,-0.0662,0.2116,0.4338,0.873,0.7646,0.5158,0.3466,0.3624,0.4868,0.5768,0.6402,0.5926,0.4206,-0.5242,0.1476,0.575,1,0.8576,0.5878,0.5344,0.5064,0.2264,-0.2112,-0.3868,-0.3766,-0.4758,-0.519,-0.5496,-0.5726,-0.5776,-0.5216,-0.5038,-0.4554,-0.402,-0.224,0.2138,0.3562,0.2138,-0.1018,-0.262,-0.1196,0.056,0.1578,0.1832,0.3436,-0.9144,0.232,0.3426,0.5498,0.7266,0.79,1,0.7182,-0.0194,-0.4834,-0.5966,-0.5552,-0.627,-0.7624,-0.7596,-0.732,-0.652,-0.6906,-0.674,-0.7984,-0.6382,-0.6244,-0.569,-0.1244,-0.0774,-0.453,-0.5332,-0.558,-0.4392,-0.3426,-0.0828,0.0248,-0.2152,0.6278,1,0.3722,0.6188,0.5516,0.4888,0.6682,-0.1346,-0.4484,-0.556,-0.269,-0.3364,-0.6322,-0.9552,-0.6726,-0.4484,-0.4126,-0.6636,-0.6682,-0.592,-0.7264,-0.6458,-0.4888,-0.2062,-0.2826,-0.6188,-0.7444,-0.7624,-0.6458,-0.4708,-0.1346,-0.2666,0.0666,0.3,0.4666,0.8,0.8334,0.8334,0.7334,0.8666,0.8334,0.8334,0.5666,0.4666,0.3334,0.2,0.2666,0.3334,0.3334,0.4,0.5666,0.7666,0.9666,1,0.8334,0.7,0.7666,0.7334,0.7334,0.7,0.7,0.7,0.7334,-0.5918,-0.0612,0.2244,0.5102,0.8776,0.8776,0.7552,0.8368,1,0.9592,0.7142,0.4694,0.347,0.1836,0.0612,0.102,-0.0204,0.0612,0.1836,0.3062,0.6326,0.7142,0.9184,0.8776,0.6326,0.5918,0.5918,0.6734,0.7142,0.7142,0.7142,0.5918,-0.7894,0.1052,0.1578,0.6578,0.6842,0.921,1,0.2368,0.1316,-0.2368,-0.5526,-0.7368,-0.4474,-0.4736,-0.579,-0.7368,-0.579,-0.6052,-0.6052,-0.6052,-0.2368,-0.2894,-0.5,-0.1316,-0.1316,-0.2632,-0.5264,-0.2632,-0.1316,0,0.3684,0.579,-1,-1,-1,-1,-1,-1,-1,-1,-0.9632,-0.9544,-0.7092,0.564,0.4992,0.3468,0.2978,0.3486,0.3958,0.662,0.2872,-0.3432,-0.4746,-0.5884,-0.7776,-0.8442,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.973,-0.9648,-0.6298,0.7576,0.3862,0.311,0.4202,0.1706,-0.0828,-0.127,-0.32,-0.4952,-0.678,-0.8306,-0.9082,-0.9244,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.9,-0.8134,-0.63,-0.7084,-0.6784,-0.675,-0.6784,-0.7868,-0.8118,-0.77,-0.7016,-0.8016,-0.917,-0.9734,-0.94,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,1,1,1,-0.7142,-1,-1,-0.9714,-0.9428,-0.6572,-0.6858,-0.4286,-0.6,-0.7142,-0.8858,-0.6286,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.726,0.707,0.6752,0.6594,0.6488,0.5684,0.5612,0.6318,0.712,0.4698,-0.7066,0.4706,-0.4708,0.299,0.9018,0.9436,0.585,1,0.375,0.5312,0.8438,0.9688,1,1,0.8438,0.7812,0.625,0.9062,0.9376,0.9688,1,1,0.9688,0.9688,1,0.75,0.625,0.5,0.5938,0.6562,0.6562,0.6876,0.5,0.4688,0.4062,0.5,0.4688,0.4688,0.5624,0,-0.3334,0.0968,0.828,0.8494,0.9354,0.699,0.5054,0.4194,0.2474,0.5268,0.7204,1,0.656,0.5698,0.742,0.8064,0.742,0.742,0.5054,-0.1398,-0.2044,-0.1612,-0.2258,-0.3978,-0.3334,-0.3764,-0.0968,-0.1398,-0.1182,-0.3334,-0.1398,-0.7204,-0.011,0.2968,0.5824,0.7142,0.8022,0.8242,0.4286,0.033,0.1208,0.1648,0.6044,1,0.6704,0.5164,0.5824,0.7362,0.5824,0.4946,0.4946,-0.099,-0.3406,-0.2528,-0.3846,-0.3846,-0.2748,-0.3846,-0.099,-0.099,-0.4066,-0.6264,-0.055,-0.3406,1,-1,-1,1,-1,-1,-1,-0.8334,-1,0.1786,0.2142,0.3214,1,0.8214,0.2858,0.4642,0.3214,0.2142,0.3928,0.6786,0.3928,0.8214,0.5714,0.0358,0.4286,0.1428,0.2858,0.2142,0.0714,0.1786,0.4286,0.1072,0.4642,0.3214,0.0358,0,0.2858,0.3214,-0.1786,0.1072,-0.3572,'15'
-0.4844,0.2222,0.1866,0.2888,0.2222,-0.3022,-0.3866,-0.3288,-0.5112,-0.4266,-0.3556,-0.1866,-0.2978,-0.1422,-0.1466,-0.0178,0.0934,0.0534,0.4134,0.5822,0.7866,0.8888,0.6,0.5066,0.6978,0.8044,0.9912,0.9688,1,0.8666,0.8088,0.8134,-0.58,-0.0734,-0.1234,0.13,0,-0.4434,-0.6234,-0.4734,-0.5266,-0.4566,-0.38,-0.3366,-0.21,-0.1966,-0.1234,-0.15,-0.0166,0.04,0.4,0.46,0.7566,0.6566,0.7366,0.5934,0.7266,0.85,0.97,0.9066,0.9866,0.8134,0.8434,1,-0.5222,-0.094,-0.0708,0.1202,-0.0676,-0.598,-0.6144,-0.5914,-0.519,-0.542,-0.4596,-0.4366,-0.2916,-0.407,-0.3246,-0.1928,-0.1566,0.0214,0.1862,0.453,0.5716,0.8088,0.776,0.5618,0.6144,0.7134,0.7792,0.8452,0.9012,0.921,0.9176,1,-0.5768,-0.2204,0.1076,0.2134,-0.1958,-0.4356,-0.5696,-0.6578,-0.753,-0.6014,-0.5874,-0.3968,-0.4744,-0.3898,-0.3722,-0.3722,-0.2768,-0.1816,0.0194,0.3228,0.538,0.7426,0.7918,0.665,0.538,0.6508,0.7496,0.8836,0.94,0.9082,0.926,1,-0.5758,-0.1794,0.3054,0.3334,-0.4032,-0.655,-0.902,-0.7622,-0.6318,-0.6318,-0.6504,-0.5244,-0.4778,-0.5338,-0.571,-0.3752,-0.4732,-0.3986,-0.0956,-0.0442,0.3752,0.6784,0.7716,0.6318,0.5524,0.6178,0.6318,0.8602,1,0.8554,0.8834,0.944,-0.6212,-0.1978,0.2702,0.2368,-0.5766,-0.7494,-0.649,-0.5766,-0.6714,-0.7716,-0.6768,-0.454,-0.6044,-0.5654,-0.8272,-0.5934,-0.5488,-0.6324,-0.4094,-0.3816,0.1142,0.5654,0.7938,0.6658,0.259,0.6268,0.6936,0.6824,1,0.8328,0.8328,0.8886,-0.9146,-0.0758,0.0426,-0.2274,-0.5498,-0.8152,-0.782,-0.8436,-0.692,-0.7252,-0.8672,-0.7346,-0.6636,-0.6778,-0.9242,-0.8436,-0.6304,-0.6492,-0.6114,-0.2228,0.019,0.3696,0.5592,0.6304,0.5734,0.564,0.5782,0.7346,0.7062,0.6492,0.8342,1,-0.1578,0.5264,0.4736,0.2632,0.0526,0.0526,-0.2632,-0.5264,-0.2106,-0.3684,-0.579,-0.1578,-0.3158,-0.0526,-0.2106,-0.2632,-0.2106,-0.2632,-0.1052,0.3158,0.3684,0.6316,0.2106,0.5264,0.6842,0.8422,0.8948,0.579,1,0.7368,0.421,0.3684,-0.4286,0.2858,0.2858,0.381,0.3334,-0.238,-0.238,-0.1904,-0.238,-0.381,-0.4286,-0.2858,-0.381,-0.0952,-0.1904,-0.0476,0.0952,0.3334,0.5714,0.8096,0.8096,0.6666,0.619,0.4286,0.7142,1,0.9048,0.8572,0.9524,0.8096,0.7142,1,-0.4258,-0.1684,0.2476,0.2872,-0.3664,-0.4456,-0.5446,-0.3466,-0.2278,-0.4654,-0.3466,-0.2872,-0.2872,-0.3862,-0.5446,-0.1882,-0.208,-0.0892,0.0694,0.1486,0.4654,0.7624,0.8812,0.505,0.3664,0.4852,0.6832,0.7228,1,0.8812,0.7624,1,-1,-1,-0.9074,-0.883,-0.8196,1,1,-0.4732,-0.7658,-0.8732,-0.761,0.522,0.844,0.8634,0.9658,0.8292,0.7952,0.5658,0.0342,-0.1902,-0.244,-0.283,-0.5366,-0.5952,-0.5708,-0.6342,-0.8342,-0.8976,-0.878,-1,-1,-1,-1,-1,-1,-0.974,-0.9706,-0.9492,-0.7062,-0.6142,-0.7962,-0.791,-0.8346,-0.8792,-0.4872,0.4234,0.8006,0.8966,0.6334,0.1872,-0.29,-0.7696,-0.8492,-0.7198,-0.7266,-0.8418,-0.895,-0.8938,-0.9248,-0.9334,-0.9536,-0.9604,-1,-1,-1,-1,-1,-1,-0.933,-0.9334,-0.8134,-0.7568,-0.7268,0.0632,0.3032,0.5066,0.31,-0.5,-0.043,0.237,0.3028,0.2542,0.2256,0.1228,-0.3572,-0.403,-0.1372,-0.28,-0.44,-0.33,-0.2668,-0.4834,-0.2868,-0.54,-0.7,-1,-1,-1,-1,-1,-1,-0.4,-0.6286,1,1,0.5142,-0.5142,-0.9142,-0.5714,0.7714,1,1,-0.6858,-0.7714,-0.8286,-0.5714,0.8572,0.6858,-0.6858,-0.5428,-0.8286,-0.3714,-0.5142,-0.2858,-0.3142,-0.7428,-0.6572,-0.6858,-1,-1,-1,-1,0.1672,0.1922,0.2132,0.23,0.236,0.2396,0.2368,0.1874,0.1446,-0.018,0.9378,0.9588,0.9796,0.948,0.972,0.9858,1,1,1,1,-0.6666,-0.2,-0.8904,-0.856,-0.486,-0.0482,0.3284,-0.075,0.607,0.2402,0.0612,-0.1484,-0.0786,0.0742,0.0656,0.3712,0.6462,0.7468,0.6812,0.7074,0.8646,0.6768,0.6944,0.8908,0.9476,0.524,0.6462,1,0.6986,0.5458,0.62,0.5676,0.3232,0.0044,0.2664,0.166,0.1704,0.3362,0.2052,-0.297,-0.3144,-0.3392,-0.3992,-0.3816,-0.3428,-0.3216,-0.1838,-0.3074,-0.0248,0.3852,0.6078,0.6538,0.9188,1,0.7208,0.7174,0.795,0.6714,0.6784,0.8056,0.9788,0.7844,0.6538,0.6678,0.4912,0.1838,0.3216,0.2474,0.2402,-0.1484,-0.205,-0.47,-0.7076,-0.5116,-0.4808,-0.523,-0.3192,-0.3538,-0.2424,-0.3038,-0.3154,0.1346,0.5346,0.3846,0.6308,1,0.8924,0.6192,0.6154,0.627,0.7116,0.7576,0.7808,0.673,0.3538,0.577,0.3846,0.1154,0.1846,0.0692,-0.027,-0.2116,-0.2616,-0.5038,-0.5266,-1,-1,1,-1,-1,-0.2,0.3,1,-0.2174,-0.0956,-0.1478,-0.3914,-0.4434,0.0608,0.0782,-0.287,-0.2174,-0.2696,0.287,0.7566,0.6696,1,0.8956,0.7914,0.6696,0.6174,0.5304,0.8086,0.8608,0.9304,0.7392,0.4782,0.0434,0.2696,0.2696,0.1652,-0.1478,-0.2174,-0.1478,-0.374,'16'
-0.6142,0.0788,0.0734,-0.0462,-0.0408,-0.375,-0.394,-0.549,-0.5952,-0.5896,-0.6278,-0.4918,-0.462,-0.25,-0.2554,-0.125,-0.1006,0.0624,0.0924,0.5,0.538,0.7202,0.7092,0.568,0.6414,0.807,0.8804,0.913,1,0.826,0.8098,0.8532,-0.5918,-0.012,-0.0406,0.0668,-0.0024,-0.5394,-0.5894,-0.3866,-0.5036,-0.623,-0.6564,-0.4296,-0.5418,-0.3866,-0.401,-0.2028,-0.2316,-0.0502,0.1718,0.3724,0.525,0.7064,0.599,0.4392,0.506,0.6444,0.7566,0.8878,0.9164,1,0.8664,0.957,-0.6054,-0.0412,-0.0812,0.0562,-0.0662,-0.7428,-0.5556,-0.3782,-0.593,-0.6978,-0.7378,-0.6604,-0.523,-0.4632,-0.3758,-0.3334,-0.1886,-0.1936,0.0388,0.0786,0.5206,0.5106,0.8626,0.7628,0.573,0.5082,0.7528,0.8202,1,0.8228,0.9576,0.995,-0.6048,-0.0146,-0.052,0.0574,-0.0574,-0.701,-0.6208,-0.53,-0.725,-0.6396,-0.7944,-0.6716,-0.6902,-0.5914,-0.4874,-0.4178,-0.3084,-0.2576,0.036,0.06,0.546,0.5434,1,0.9706,0.4926,0.4606,0.8584,0.7624,0.9974,0.8798,0.9492,0.928,-0.6298,0.3176,0.3176,0.3684,0.3212,-0.314,-0.3322,-0.4192,-0.4482,-0.677,-0.746,-0.5064,-0.6298,-0.539,-0.5826,-0.452,-0.4446,-0.2522,-0.2596,0.1398,0.3684,0.7024,0.8948,1,0.9092,0.7024,0.8258,0.9382,0.8584,0.9528,0.8656,0.9382,-0.855,0.5362,0.6812,0.2878,0.5404,0.06,-0.0684,-0.263,-0.4078,-0.5032,-0.9296,-0.6978,-0.6564,-0.7764,-0.8012,-0.8716,-0.6398,-0.4492,-0.4368,-0.2256,0.0766,0.4328,0.706,0.9918,1,0.9006,0.8674,0.7846,0.5404,0.3872,0.3748,0.321,-0.8118,0.262,0.6234,0.0942,-0.3944,-0.486,-0.0992,-0.0382,-0.145,-0.2824,-0.6998,-0.4962,-0.3994,-0.4504,-0.2824,-0.5268,-0.425,-0.318,-0.3078,0.196,0.4096,1,0.883,0.4656,0.6184,0.6386,0.8576,0.7302,0.2418,0.2672,-0.0738,-0.0128,-0.6316,0.2632,0.2106,-0.6316,-0.3684,-0.421,-0.3158,-0.3158,-0.421,-0.3684,-0.3684,-0.6842,-0.3158,-0.1578,-0.3684,-0.0526,-0.0526,-0.3684,0,0.2106,0.579,0.6316,0.1578,0.1052,0.2106,0.6842,0.7894,0.6316,0.7894,1,0.8948,0.579,-0.4222,0.2888,0.2444,0.2,0.1112,-0.2888,-0.2444,-0.7334,-0.5112,-0.2888,-0.3778,-0.5556,-0.4666,-0.0666,-0.0666,-0.1112,-0.0222,0.3334,0.3334,0.6888,0.7778,0.8666,0.8666,0.6,0.7778,0.8222,0.9556,0.7778,1,0.9112,0.7778,1,-0.6962,0.114,0.114,0.1898,0.1392,-0.4936,-0.6202,-0.2406,-0.2406,-0.4684,-0.4684,-0.4178,-0.4936,-0.4936,-0.6202,-0.4936,-0.5444,-0.038,-0.114,0.1646,0.3418,0.7722,0.7216,1,0.9494,0.7722,0.6962,0.8228,0.7468,0.924,0.8228,0.9494,-1,-1,-0.8536,-0.897,-0.8482,-0.5014,-0.252,-0.3822,-0.756,-0.7236,-0.8212,0.664,0.9024,0.832,0.7074,0.5176,0.3822,0.2954,0.1274,0.2358,0.3116,-0.4742,-0.9078,-0.859,-0.897,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9574,-0.9632,-0.9472,-0.739,-0.554,-0.5372,-0.6318,-0.6486,-0.697,0.1992,0.7406,0.6954,0.3698,0.354,0.2846,-0.1306,-0.6352,-0.657,-0.7054,-0.867,-0.943,-0.9514,-0.9532,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.953,-0.96,-0.95,-0.4134,0.3866,0.3166,-0.0068,0.7066,0.7532,-0.07,0.152,0.196,0.306,0.2,0.218,0.198,-0.658,-0.754,-0.8292,-0.6946,-0.8334,-0.86,-0.9468,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2286,-0.8572,1,1,1,-0.7142,-0.8286,-0.8572,0.4572,1,-0.6286,-0.7714,-0.6,-0.9142,-0.8286,-0.0286,0.0286,-0.7428,-0.5428,-0.5428,-0.6,-0.9142,-0.8286,-1,-1,-1,-1,-1,-1,-1,-1,0.119,0.1396,0.1724,0.1856,0.1932,0.1966,0.1834,0.1684,0.1372,0.2182,1,1,1,1,1,1,1,1,1,0.9932,-0.7866,0.2,-0.7046,-0.7046,-0.2134,0.6652,1,0.45,-0.1512,-0.1926,-0.0518,-0.1966,-0.1678,-0.263,0.0352,0.3416,0.5528,0.5942,0.7972,0.764,0.8054,0.706,0.6894,0.7972,1,0.6314,0.6688,0.9254,0.8302,0.8012,0.3458,0.267,0.2836,0.2754,0.2588,0.296,0.1926,0.2754,-0.0642,-0.2796,-0.0366,-0.3256,-0.1262,-0.1328,-0.1196,-0.0964,0.0466,0.02,0.093,0.3488,0.6512,0.7044,0.9202,0.9966,0.8172,0.794,0.8372,0.8406,0.9468,1,0.9634,0.98,0.8272,0.6612,0.7608,0.5084,0.505,0.5348,0.4718,0.4916,0.3256,-0.186,-0.6464,-0.4778,-0.3598,-0.3312,-0.3376,-0.4714,-0.3504,-0.3504,-0.137,0.0636,0.4522,0.5732,0.5318,0.7166,0.6816,0.551,0.57,0.6338,0.6878,0.7006,1,0.9332,0.8058,0.5574,0.6274,0.4778,0.3376,0.2898,0.2198,0.105,-0.0382,-0.2516,-0.6586,-1,-1,1,-1,-1,-1,0.2334,-1,-0.0624,-0.1094,0.0938,0.1718,0.2344,0.4688,0.4532,0.2344,0.3594,0.625,0.5938,0.2188,0.5468,0.5468,0.4218,0.4532,0.4688,0.7188,0.4374,0.375,0.375,1,0.75,0.2968,0.0468,0.3438,0.2344,0.0624,-0.0938,0.0938,-0.0312,-0.5312,'16'
-0.484,0.1804,0.1506,0.2558,0.1736,-0.2694,-0.3768,-0.3858,-0.4932,-0.331,-0.4292,-0.2534,-0.1736,-0.032,0.0136,0.1506,0.3882,0.4864,0.9064,1,0.7716,0.806,0.9086,0.9178,0.7192,0.5822,0.4406,0.4704,0.4818,0.6348,0.8812,0.8698,-0.3742,0.1888,0.3534,0.6362,0.4554,-0.2282,-0.379,-0.2978,-0.1054,-0.08,-0.0452,-0.0984,0.2214,0.1472,0.4298,0.6152,0.7798,0.8888,0.9814,0.8632,0.8794,1,0.9884,0.6524,0.4068,0.3302,0.3396,0.4462,0.5134,0.7126,0.817,0.8632,-0.5128,0.077,0.8206,1,0.4262,-0.2116,0.0064,-0.0674,0.1058,0.0802,0.1634,0.4968,0.6924,0.859,0.5706,0.6346,0.423,0.266,0.3174,0.3398,0.468,0.6794,0.798,0.6826,0.343,0.2148,0.1634,0.202,0.3334,0.673,0.782,0.7404,-0.5164,-0.118,0.9498,1,-0.2804,-0.1064,-0.0058,0.1566,0.3346,0.4932,0.6906,0.528,-0.0676,-0.2224,-0.47,-0.3772,-0.4352,-0.5706,-0.354,-0.3152,-0.2186,0.1528,0.4816,0.385,-0.0096,-0.1412,-0.2766,-0.2418,-0.056,0.3076,0.439,0.234,-0.3374,0.0306,1,0.9796,-0.4028,-0.0388,0.2352,0.636,0.587,0.2966,-0.3988,-0.5092,-0.7628,-0.8936,-0.771,-0.7874,-0.7014,-0.7178,-0.726,-0.6074,-0.6688,-0.64,-0.3128,-0.3128,-0.317,-0.3988,-0.5214,-0.4806,-0.3742,-0.276,-0.0306,-0.3048,0.8878,1,0.4388,0.449,-0.4438,-0.4796,-0.1786,0.551,0.449,-0.347,-0.3674,-0.5154,-0.4286,-0.3724,-0.4184,-0.4796,-0.6938,-0.7092,-0.6326,-0.699,-0.6326,-0.5102,-0.8418,-0.6072,-0.4438,-0.653,-0.7806,-0.903,-0.7398,-0.6734,-0.546,-0.7858,1,0.6112,-0.2716,-0.5432,-0.6234,-0.9938,-0.426,0.5186,0.9074,0.932,0.6544,0.0186,-0.1544,-0.3766,-0.1976,-0.395,-0.2408,-0.3024,-0.3766,-0.4754,-0.605,-0.4876,-0.5246,-0.568,-0.4382,-0.5124,-0.5556,-0.6852,-0.6852,-0.2654,-0.1976,-0.3148,-0.2558,0.628,0.6744,0.0232,0.0232,0.1628,-0.3488,-0.1628,-0.1162,-0.1628,0.0232,-0.2094,0.1162,0.1162,-0.1628,-0.2558,0.2094,0.1628,0.6744,0.7674,0.4418,0.3954,0.4418,0.8604,1,0.4884,0.3488,0.4418,0.4884,0.5348,0.6744,0.628,-0.3208,0.2452,0.132,0.3208,0.2076,-0.0944,-0.0944,-0.3208,-0.3208,-0.1698,-0.2076,-0.132,-0.2452,-0.0566,0.0188,0.3208,0.2452,0.5094,0.6982,0.9622,0.849,0.6982,0.849,1,0.8114,0.5472,0.3962,0.585,0.5094,0.6982,0.8114,1,-0.3196,0.1958,0.4846,0.6494,0.4432,-0.2164,-0.1134,-0.0928,0.031,-0.0104,0.0516,0.134,0.2784,0.4226,0.6494,1,0.9588,0.5052,0.4432,0.6288,0.6288,0.7938,0.6082,0.5876,0.464,0.4846,0.4432,0.4226,0.464,0.6288,0.7526,0.5258,-0.9672,-0.9422,-0.946,-0.9498,-0.9152,-0.9422,-0.9054,-0.8746,-0.863,-0.8862,-0.8766,-0.2208,-0.0222,0.2344,0.1648,0.1592,-0.1804,-0.3076,-0.5216,-0.2362,0.4156,-0.3482,-0.7744,-0.8862,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9614,-0.0674,-0.1014,-0.5006,0.0464,0.2676,0.0078,0.1206,-0.061,-0.3282,-0.6062,0.3814,0.8632,0.3556,-0.1088,-0.2794,-0.5026,-0.5594,-0.7374,-0.6136,-0.3098,-0.6374,-0.8376,-0.8844,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9134,-0.72,0.3032,0.7366,0.7466,0.82,0.79,0.85,0.8166,0.65,0.54,-0.25,-0.13,-0.4734,-0.6884,-0.8268,-0.8134,-0.8218,-0.845,-0.905,-0.95,-0.8694,-0.85,-0.9034,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,0.5142,-0.0286,-0.9428,-0.8858,-0.9714,-0.7714,-0.0286,1,1,-0.8572,-0.6,-0.4858,-0.6,-0.6572,-0.6,-0.6286,-0.7428,-0.8572,-0.6858,-0.8858,-0.8858,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.2182,0.2178,0.221,0.2318,0.2326,0.2312,0.2252,0.2586,0.3256,0.1234,0.5964,0.5918,0.5796,0.5458,0.5006,0.434,0.3184,0.1132,-0.129,-0.1656,-0.5734,0.447,-0.6724,-0.6062,-0.0436,0.6512,0.9486,-0.1084,-0.6882,-0.46,-0.4398,-0.308,-0.2624,-0.1888,-0.0672,0.0722,0.1356,0.194,0.4018,0.7998,0.924,0.9594,0.9062,0.9366,1,0.934,0.9468,0.9138,0.8174,0.7212,0.5184,0.5412,0.5412,0.5538,0.6604,0.7238,0.7414,0.7744,0.6248,0.3916,-0.9678,-0.7942,-0.6892,-0.6634,-0.6656,-0.5284,-0.4362,-0.3162,-0.1832,-0.1276,0.089,0.2604,0.6614,0.7214,0.6012,0.6634,0.6978,0.5048,0.8392,1,0.807,0.7106,0.6142,0.447,0.5242,0.6656,0.6206,0.6548,0.5456,0.6548,0.6528,0.029,-0.6756,-0.5016,-0.5166,-0.463,-0.319,-0.3512,-0.3126,-0.276,-0.1988,-0.014,0.2932,0.4092,0.854,0.8196,0.6262,0.8818,0.8668,0.5338,1,0.9506,0.8668,0.783,0.7186,0.6068,0.7636,0.5424,0.6348,0.5166,0.566,0.652,0.506,0.0462,1,-1,1,-1,-0.8,-1,-1,0.9334,-1,0.4808,0.25,0.2308,0.6538,0.923,0.8846,0.077,0.2116,-0.0192,0.25,0.25,-0.0384,0.4038,0.2884,0.2884,1,0.4808,0.327,0.3076,0.3654,0.2884,0.1538,0.173,-0.0576,-0.3462,-0.0192,0.0384,-0.0576,0.077,-0.1346,-0.1154,-0.8462,'17'
-0.548,0.1328,0.1432,0.0592,0.0618,-0.1616,-0.1406,-0.4848,-0.4902,-0.3298,-0.3246,-0.1748,-0.1222,-0.0566,-0.0118,0.2378,0.3456,0.5322,0.64,0.9106,1,0.8082,0.929,0.7214,0.682,0.5374,0.6584,0.5952,0.732,0.7294,0.8686,0.824,-0.5038,0.092,0.0716,0.3888,0.3248,-0.092,-0.1842,-0.3452,-0.4526,-0.225,-0.3428,-0.115,-0.0332,0.2046,0.2352,0.4272,0.7416,0.9156,0.821,1,0.8618,0.9974,0.775,0.5396,0.3376,0.4604,0.399,0.5218,0.596,0.7366,0.821,0.9258,-0.416,0.2538,0.312,0.7676,0.6606,-0.0092,-0.1712,-0.2874,-0.1804,0.0184,0.107,0.2722,0.6452,0.7828,0.8348,0.9236,0.581,0.6636,0.8226,0.8808,0.945,0.9848,0.6972,0.7126,0.5198,0.5108,0.4404,0.4036,0.7126,0.6452,1,0.9144,-0.3426,0.4086,0.4886,1,0.8748,0.1896,0.0122,-0.0052,0.0956,0.3426,0.8086,0.9722,0.7426,0.8782,0.433,0.3844,0.2,0.3114,0.586,0.6556,0.76,0.8086,0.7914,0.8226,0.4608,0.4608,0.2974,0.2766,0.426,0.3634,0.6382,0.694,-0.4324,0.4088,0.3818,1,0.9358,0.3886,0.294,0.1216,0.3886,0.919,0.7872,0.1858,0.1148,0.0236,-0.081,-0.0372,-0.1418,-0.125,-0.2398,0.196,0.1554,0.5642,0.4358,0.3886,0.2736,0,-0.1014,-0.125,-0.071,0.3074,0.2466,0.7094,-0.718,0.5198,0.577,0.9252,1,0.6212,0.718,0.7268,0.881,0.3568,0.1762,-0.2644,-0.2996,-0.5682,-0.5374,-0.7312,-0.5506,-0.6564,-0.815,-0.6344,-0.3788,-0.3392,0.0792,-0.1014,-0.2246,-0.4318,-0.555,-0.6124,-0.555,-0.6432,-0.2952,0.1806,-0.9514,0.8054,1,0.4954,0.8116,0.1732,0.8358,0.5624,0.696,0.6232,-0.5502,-0.5562,-0.5258,-0.4894,-0.9332,-0.8844,-0.6596,-0.7082,-0.8116,-0.8784,-0.6778,-0.5928,-0.4468,-0.6838,-0.38,-0.4772,-0.7204,-0.7446,-0.9392,-0.848,-0.6656,-0.5502,-0.45,0.2,0.2,-0.25,-0.3,-0.6,-0.35,0,-0.05,-0.4,-0.45,-0.4,-0.25,-0.45,-0.25,-0.25,0.05,-0.2,0.3,0.6,0.55,0.35,0.75,0.9,0.85,0.65,0.75,0.6,0.5,0.9,1,0.9,-0.4238,0.2204,0.2542,0.017,0.0508,-0.0848,-0.017,-0.356,-0.2882,-0.2204,-0.1186,-0.0848,0.017,-0.0508,0.1526,0.2542,0.4576,0.4916,0.7966,0.7628,0.9322,0.7966,0.9662,0.8984,0.7288,0.7288,0.7288,0.7288,0.8306,0.8306,0.9322,1,-0.421,0.3684,0.3422,1,0.9474,0.3158,0.2894,0.1052,0.5,1,0.8684,0.2894,0.1578,0.0526,-0.0264,0.0526,-0.0526,0.079,-0.079,0.1842,0.079,0.5264,0.3684,0.5,0.3422,-0.1578,-0.079,-0.0526,-0.1842,0.2894,0.2894,0.6578,-1,-0.9432,-0.9282,-0.8982,-0.9072,-0.9372,-0.9462,-0.8982,-0.8892,-0.8682,-0.8832,0.4462,0.536,0.7396,0.967,0.9192,0.527,0.3982,0.0928,-0.1736,-0.3622,-0.518,0.1646,0.3114,-0.0718,-0.539,-0.7724,-0.9102,-0.9192,-0.9192,-1,-1,-1,-1,-0.9756,-0.975,-0.2674,-0.3868,-0.4004,-0.0712,-0.201,-0.3108,-0.4568,-0.5932,0.4288,0.85,0.682,0.0256,-0.268,-0.4146,-0.5528,-0.615,-0.7492,-0.793,-0.876,-0.758,-0.729,-0.8024,-0.8914,-0.9372,-0.9608,-0.9608,-0.9674,-1,-1,-1,-1,-0.9734,-0.9134,-0.2468,0.7332,1,1,0.8432,0.8566,0.75,0.7232,0.0466,0.0444,-0.09,-0.29,-0.464,-0.654,-0.702,-0.776,-0.782,-0.85,-0.874,-0.94,-0.92,-0.9368,-0.8968,-0.88,-0.6,-0.8068,-0.92,-1,-1,-1,-1,-0.9428,1,1,1,-0.1142,-0.7714,-0.7714,-0.8286,-0.4572,0.5142,1,-0.2,-0.6572,-0.6858,-0.6,-0.6858,-0.3142,-0.2572,-0.5142,-0.7714,-0.8,-0.8572,-0.8858,-0.8286,-0.8858,-0.9428,-0.9142,-0.9428,-0.8,-1,-1,-1,0.4276,0.4426,0.4488,0.447,0.4568,0.46,0.4624,0.4394,0.4272,0.6032,0.7446,0.7424,0.7138,0.6606,0.6102,0.5572,0.4446,0.273,-0.0552,-0.1062,-0.7866,0.153,-0.6482,-0.6708,0.433,0.981,0.9562,0.1666,-0.803,-0.8,-0.5522,-0.4656,-0.4388,-0.3582,-0.2776,-0.0418,0.1074,0.2,0.403,0.582,0.8656,0.7492,0.8926,0.8896,0.8926,0.7702,0.9224,1,0.9762,0.7792,0.5462,0.5582,0.5642,0.6776,0.8686,0.8896,0.797,0.8926,0.6418,0.2626,-0.8426,-0.7676,-0.7168,-0.6126,-0.4068,-0.4528,-0.2154,-0.1308,-0.121,-0.0314,0.1476,0.305,0.6392,0.5666,0.69,0.8498,0.8766,0.586,0.8934,1,0.9226,0.7942,0.6004,0.477,0.6756,0.7458,0.7894,0.9394,0.8814,0.8038,0.5932,0.1744,-0.8936,-0.6722,-0.689,-0.5686,-0.5238,-0.3614,-0.224,-0.1316,0.1092,0.1344,0.4006,0.6666,0.846,0.5574,0.6582,0.8124,0.8376,0.5182,0.902,1,0.9776,0.7508,0.5658,0.5322,0.79,0.7058,0.7254,0.804,0.8124,0.8348,0.5434,0.2662,0.7402,-1,1,-1,-1,-1,-1,0.6,-1,-0.2142,0.0714,0.262,0.381,0.881,0.8096,0.4524,0.3572,0.1904,0.1428,0.3334,0.1904,0.4048,0.4762,0.262,0.5,0.619,0.3572,0.262,0.262,1,1,0.1904,0.6904,-0.1428,0.0714,0.1666,0.0714,-0.4048,-0.262,-0.3334,-0.8096,'17'
-0.6656,-0.2284,-0.0842,0.0492,0.53,0.6306,1,0.9826,0.906,0.8558,0.6962,0.4274,0.2372,0.0186,-0.0076,0.001,0.012,0.0908,0.1826,0.3028,0.4842,0.646,0.801,0.7726,0.6066,0.554,0.5826,0.5978,0.5912,0.5126,0.259,0.1366,-0.6092,-0.189,0.0412,0.1742,0.5902,0.6008,0.8732,0.8374,1,0.791,0.8542,0.4128,0.3094,0.189,0.056,0.0602,0.037,0.0728,0.1574,0.2164,0.415,0.7382,0.8184,0.605,0.5418,0.4594,0.4024,0.489,0.6346,0.679,0.3094,0.2862,-0.6342,-0.1806,0.0162,0.1712,0.699,0.7268,0.9722,0.8888,1,0.8726,0.9908,0.5602,0.3888,0.1922,0.0902,0.0046,0.0324,0.1226,0.3056,0.2894,0.5996,0.581,0.7894,0.537,0.4328,0.3356,0.3264,0.4028,0.412,0.5972,0.3426,0.3148,-0.6526,-0.1894,-0.0592,0.0978,0.602,0.6212,0.8914,0.7756,0.9494,0.9156,1,0.532,0.38,0.1436,0.0398,0.1846,0.1676,0.2062,0.3704,0.2762,0.2932,0.0904,-0.076,-0.117,-0.117,-0.2062,-0.3028,-0.1436,0.2208,0.3004,0.0808,0.064,-0.6842,-0.155,0.044,0.2092,0.7412,0.7496,0.9886,0.855,1,0.8776,0.9716,0.6756,0.6386,0.6046,0.4424,0.5818,0.485,0.4054,-0.249,-0.3514,-0.2546,-0.4224,-0.3968,-0.488,-0.6216,-0.596,-0.6614,-0.5392,-0.32,-0.2716,-0.1522,-0.064,-0.709,-0.0636,0.1706,0.4114,0.9732,1,0.9164,0.7994,0.7726,0.6422,0.8362,0.8628,0.796,0.9566,0.8128,0.9732,0.5986,-0.2006,-0.4414,-0.5518,-0.5786,-0.6956,-0.7492,-0.709,-0.6756,-0.5786,-0.7592,-0.7692,-0.8128,-0.8362,-0.7056,-0.4214,-0.708,-0.1388,-0.0028,0.2572,0.3034,0.4508,0.3758,0.4364,0.3902,0.4884,0.789,1,0.945,0.6648,0.63,0.1676,-0.159,-0.5868,-0.5924,-0.5838,-0.6764,-0.7024,-0.7428,-0.8642,-0.7658,-0.6358,-0.6618,-0.7428,-0.8006,-0.6908,-0.6648,-0.474,-0.8048,-0.122,0.0244,0.0732,0.561,0.7074,0.9512,1,0.9512,0.9512,0.8536,0.561,0.317,0.2682,0.1708,0.1708,0.1708,0.2196,0.2682,0.4634,0.6586,0.756,0.8048,0.8536,0.8048,0.8048,0.756,0.6586,0.6098,0.4634,0.2196,0.0244,-0.68,-0.4,-0.08,-0.08,0.28,0.84,0.96,0.96,0.84,1,0.68,0.4,0.24,-0.04,0.12,0,-0.12,0.12,0.24,0.24,0.52,0.76,0.92,0.76,0.68,0.8,0.68,0.76,0.64,0.56,0.16,0.12,-0.5876,-0.1134,0.0516,0.2164,0.6908,0.7114,0.9382,0.8762,1,0.9382,0.9794,0.5876,0.3814,0.1958,0.134,0.0104,0.0722,0.1134,0.2784,0.299,0.4846,0.732,0.8762,0.6494,0.4846,0.402,0.3814,0.402,0.464,0.6288,0.4226,0.2784,-1,-1,-1,-1,-1,-1,-1,-1,-0.937,-0.9306,-0.8296,0.5488,0.9116,0.6876,0.7382,0.3754,0.0442,-0.1072,-0.1704,-0.265,-0.183,-0.3124,-0.7382,-0.8202,-0.918,-0.8928,-0.9306,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9768,-0.974,-0.8618,0.7648,0.8424,0.5524,0.4776,0.0884,-0.1122,-0.3434,-0.4964,-0.6362,-0.5536,-0.647,-0.8844,-0.9032,-0.915,-0.9082,-0.8992,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.9534,-0.8568,-0.625,-0.5818,-0.5084,-0.3834,-0.4618,-0.5934,-0.6418,-0.6334,-0.8648,-0.8724,-0.86,-0.8934,-0.8068,-0.68,-0.5534,-0.53,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6858,-0.6286,1,1,-0.8286,-0.9714,-0.6,-0.7714,-0.7714,-0.8,-0.9142,-0.8,-0.8,-0.4286,-0.5714,-0.3142,-0.5714,-0.6858,-0.7428,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.9282,0.9022,0.902,0.9026,0.8724,0.8314,0.7808,0.7262,0.3952,-0.574,-0.68,0.4706,-0.825,-0.2838,0.924,1,0.8912,1,-0.028,0.271,0.3458,0.1776,0.757,0.6262,0.6448,0.6448,0.7944,0.3644,1,0.6074,0.5888,0.4766,0.2898,0.4392,0.6262,0.4206,0.6262,0.701,0.6074,0.5514,0.3832,0.215,0.4954,0.3458,0.2336,0.5888,0.2898,0.1588,0.0468,-0.3084,0.3558,0.2348,0.8524,0.8256,0.8658,0.6644,0.8256,0.6242,0.7316,0.7584,0.7986,0.6242,0.7986,0.5168,0.4228,0.5974,0.5704,0.5168,0.7182,0.6912,0.6376,0.49,0.6242,0.6644,0.5302,0.2484,0.4362,0.6376,0.4362,0.302,0.1006,-0.2752,-0.0736,0.1578,0.4842,0.8736,0.821,0.6632,0.4632,0.3684,0.421,0.5158,0.5684,1,1,0.7052,0.5158,0.3368,0.2842,0.2422,0.2736,0.4,0.0422,-0.1474,0.2736,0.0422,0.021,0.379,0.4736,0.3894,0.1368,-0.1684,0.0842,-0.8422,-0.9932,1,-1,-1,-1,-1,-0.8,-1,1,-0.574,-0.3148,-0.3148,0.1666,0.074,0.6852,0.7592,0.9074,1,0.1296,0.037,-0.074,-0.2408,-0.037,-0.0556,-0.037,0.3704,0.6666,0.3334,0.6296,0.4814,0.1852,-0.037,0.1112,0.037,0.3148,0.537,0.1666,0.074,0.0556,0.0926,-0.2038,'18'
-0.6038,-0.1452,0,0.1204,0.5228,0.581,1,0.9378,0.9544,0.7988,0.7966,0.4544,0.2572,0.1058,0.0394,0.112,0.002,0.0726,0.1826,0.2448,0.4648,0.6494,0.8692,0.7822,0.5726,0.3734,0.359,0.1826,0.0892,0.0436,0.1494,0.2532,-0.5182,-0.117,0.0678,0.1878,0.5576,0.593,0.9352,0.8466,1,0.8446,0.8978,0.3452,0.1328,0.2606,0.0954,0.178,0.0876,0.0758,0.18,0.3352,0.4886,0.8092,0.8486,0.4514,0.3962,0.3176,0.2114,0.3254,0.1584,0.1564,-0.1366,0.0364,-0.5814,-0.1944,0.043,0.1626,0.5046,0.5158,0.8542,0.7552,0.8766,0.9458,1,0.529,0.2486,0.2972,0.1608,0.23,0.172,0.187,0.3926,0.5214,0.686,0.501,0.5102,0.2972,0.2842,0.301,0.2018,0.3272,0.4224,0.4728,0.144,0.1402,-0.6114,-0.2,0.0302,0.168,0.5736,0.5982,0.8396,0.7716,0.7736,0.8906,1,0.6868,0.7038,0.551,0.4812,0.466,0.4886,0.568,0.485,0.483,0.3018,0.2188,0.1868,0.017,0.1188,0.0584,0.0754,0.1472,0.1774,0.3868,0.3982,0.4982,-0.6188,-0.1188,0.075,0.3,0.6604,0.7792,0.8416,0.8792,0.8042,0.777,1,0.902,0.9938,0.8666,0.9438,0.827,0.673,0.3312,0.1084,-0.0416,-0.1166,-0.225,-0.2896,-0.2812,-0.2624,-0.3084,-0.2854,-0.3062,-0.2376,-0.125,-0.0958,0.1688,-0.7092,0.0656,0.068,0.6878,0.64,0.9356,0.8904,0.6616,0.6234,0.814,0.795,0.9976,0.9786,1,0.9428,0.6496,0.2228,-0.1942,-0.3158,-0.4636,-0.5042,-0.5852,-0.7068,-0.6948,-0.6544,-0.6186,-0.6328,-0.6996,-0.721,-0.6328,-0.4946,-0.342,-0.8892,0.4114,0.5602,0.6708,0.9146,0.5064,0.9778,0.7784,0.3132,0.3196,0.8482,0.9746,0.867,1,0.7184,0.1518,-0.155,-0.4556,-0.5444,-0.424,-0.4208,-0.6898,-0.6298,-0.6962,-0.5982,-0.693,-0.655,-0.9778,-0.8988,-0.7056,-0.7056,-0.6646,-0.7334,0.0666,0.1112,0.2444,0.3778,0.8222,0.9556,0.8222,1,0.8222,0.6,0.5112,0.2444,0.2,0.1112,0.2444,0.2,0.2,0.2,0.3334,0.5112,0.5556,0.6444,0.7334,0.5112,0.5112,0.2888,0.2444,0.1556,0.1556,0.2,-0.1556,-0.8,-0.24,-0.16,0.12,0.44,0.6,0.96,1,0.96,0.92,0.84,0.52,0.24,0.08,-0.04,0.08,0.04,0.08,0,0.44,0.52,0.72,0.84,0.88,0.56,0.6,0.4,0.32,0.2,0.12,0.32,0.2,-0.6422,-0.2,0.0736,0.221,0.7052,0.7684,0.9158,0.8948,0.7894,0.7264,1,0.8526,0.979,0.8526,0.8526,0.8526,0.7474,0.5158,0.3264,0.179,-0.1158,-0.0526,-0.2,-0.221,-0.1368,-0.2422,-0.3052,-0.2,-0.0948,0.0526,0.1158,0.3264,-1,-1,-1,-1,-1,-1,-1,-0.931,-0.9482,-0.9366,-0.882,0.4734,0.7928,0.9338,0.9424,0.931,0.8648,0.9366,0.7352,0.623,0.3842,-0.272,-0.859,-0.8936,-0.8936,-0.9108,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9814,-0.9826,-0.9606,-0.899,0.3866,0.332,0.5592,0.7958,0.9472,0.7984,0.54,0.349,-0.1964,-0.5328,-0.8002,-0.9492,-0.964,-0.954,-0.964,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8882,-0.9734,-0.96,-0.7334,-0.6218,-0.5718,-0.61,-0.5262,-0.4954,-0.5016,-0.6032,-0.6278,-0.5708,-0.66,-0.7816,-0.76,-0.7134,-0.7668,-0.7668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4286,-0.8858,0.2858,1,1,-0.8286,-0.8,-1,-0.8,-0.7714,-0.4572,-0.5428,-0.6858,-0.6858,-0.1428,-0.5428,-0.8858,-0.9714,-0.9714,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.6242,0.6264,0.5934,0.5594,0.5372,0.5388,0.5122,0.4864,0.1174,-0.858,-0.6934,0.5294,-0.9284,-0.274,0.6766,0.4522,0.3078,1,0.077,0.1888,0.5384,0.3846,0.7622,0.4406,0.8602,0.6644,0.5104,0.6364,0.6504,0.2448,0.4126,0.6644,0.2868,0.3566,0.6364,0.3986,0.4686,0.5244,0.5944,0.3286,0.6084,0.5944,0.4826,0.021,0.7482,-0.007,0.1048,-0.049,-0.1888,-0.4266,0.2626,-0.0502,0.4526,0.3632,1,0.5754,0.5754,0.352,0.8324,0.8994,0.7542,0.7206,0.4972,0.7206,0.1062,0.3632,0.3296,0.4414,0.3966,0.6648,0.609,0.7654,0.3744,0.4972,0.4972,0.229,0.2626,0.419,0.2178,0.3632,0.4302,0.1956,-0.1848,-0.1932,0.3026,0.731,0.916,0.8824,0.4034,0.3446,0.3362,0.3446,0.6302,1,0.7564,0.6218,0.479,0.832,0.6134,0.6386,0.2352,0.3698,0.1932,0.0504,-0.21,0.126,0.0336,0.0252,-0.0252,0.0672,0.311,0.3194,0.1596,-0.3782,-0.9956,1,-1,-1,-1,-1,-1,-1,-1,-0.2658,0.3418,0.5696,0.6962,0.4936,0.8482,0.7216,1,0.9746,0.6202,0.7974,0.6962,0.367,0.6202,0.519,0.3924,0.443,0.5696,0.4936,0.2658,0.7468,0.4178,0.3418,0.5444,0.1392,0.3924,0.4178,0.3924,0.0886,0.2912,0.0886,-0.3164,'18'
-0.5532,-0.1012,-0.0234,0.1948,0.413,0.6,0.5584,0.465,0.3454,0.3298,0.2416,0.309,0.4546,0.5636,0.6312,0.9584,1,0.8338,0.787,0.7818,0.8026,0.9272,0.9116,0.948,0.922,0.8962,0.8494,0.7506,0.735,0.735,0.7558,0.7974,-0.6092,-0.1876,-0.1054,0.0386,0.3368,0.419,0.599,0.6042,0.3624,0.2956,0.2544,0.311,0.4294,0.599,0.6504,1,0.9846,0.6402,0.563,0.7276,0.6658,0.8046,0.9178,0.9742,0.82,0.8046,0.7378,0.6658,0.7686,0.599,0.6504,0.5732,-0.5742,-0.1882,-0.0644,0.0792,0.3812,0.4356,0.7574,0.7426,0.406,0.2772,0.401,0.5446,0.604,0.7624,0.7426,0.9158,0.8218,0.6832,0.6238,0.7278,0.698,0.7228,1,0.9456,0.8416,0.7128,0.7822,0.7128,0.7624,0.6288,0.609,0.7624,-0.6476,-0.2506,-0.072,0.067,0.3846,0.4342,0.7618,0.737,0.4442,0.3796,0.5086,0.6924,0.7468,0.8164,0.7866,0.6328,0.5534,0.5832,0.5782,0.6526,0.727,0.742,1,0.9354,0.7568,0.6476,0.7122,0.6874,0.7172,0.5286,0.5086,0.603,-0.671,-0.2148,-0.0876,0.114,0.4854,0.6128,0.8356,0.8832,0.496,0.496,0.7294,0.7506,0.9788,0.7824,0.8038,0.5862,0.671,0.4536,0.4908,0.6392,0.6552,0.8674,0.8938,1,0.8938,0.756,0.671,0.6604,0.6286,0.6234,0.6286,0.6498,-0.816,-0.184,-0.2068,0.1264,0.4886,0.7988,0.7298,0.8448,0.6264,0.5518,0.6782,0.7298,0.9252,1,0.592,0.4482,0.2702,0.2988,0.4598,0.4828,0.477,0.5172,0.7472,0.684,0.6494,0.661,0.5344,0.3794,0.3678,0.2012,0.2528,0.2758,-0.9794,-0.1272,-0.0378,0.1066,0.244,0.6702,1,0.8626,0.622,0.5326,0.5946,0.6976,0.8282,0.7732,0.5946,0.1066,0.079,0.1134,0.0996,0.292,0.1066,0.086,0.2164,0.3746,0.299,0.292,0.0996,0.0996,-0.0722,-0.079,-0.0928,0.0928,-0.5926,0,0,0.3334,0.2962,0.7408,0.7408,0.4074,0.4074,0.3334,0.2962,0.4444,0.4814,0.6666,0.6666,1,1,0.963,0.926,0.926,0.926,1,1,1,1,1,1,0.8888,0.8518,0.8888,0.7778,0.8518,-0.6604,-0.283,-0.1698,0.0188,0.3962,0.5094,0.3208,0.434,0.2452,0.283,0.2076,0.1698,0.3962,0.283,0.585,0.8114,0.9622,0.585,0.6982,0.6604,0.7358,0.8868,0.8114,1,0.9246,0.8114,0.6604,0.6604,0.585,0.7358,0.6982,0.8114,-0.7454,-0.1818,-0.2364,0.109,0.509,0.709,0.7272,0.8364,0.5636,0.5272,0.691,0.7636,0.9636,1,0.509,0.3272,0.3636,0.4182,0.5272,0.4546,0.5454,0.5272,0.8546,0.7636,0.8364,0.6728,0.6,0.491,0.5636,0.4364,0.5818,0.709,-1,-1,-1,-1,-1,-1,-1,-1,-0.9336,-0.9518,-0.7074,0.7798,0.81,0.6772,0.6954,0.7978,0.9728,0.9548,0.7616,0.6652,0.3242,-0.0588,-0.4872,-0.7436,-0.9126,-0.8974,-0.9186,-0.9246,-0.9186,-0.9186,-0.9156,-0.9336,-0.9216,-1,-1,-1,-1,-1,-1,-1,-1,-0.984,-0.9862,-0.7852,0.632,0.8108,0.8534,0.881,0.9386,0.9518,0.9584,0.884,0.399,-0.2068,-0.6202,-0.822,-0.8916,-0.842,-0.7754,-0.6456,-0.6486,-0.692,-0.7494,-0.6782,-0.6616,-0.7118,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.9868,-0.48,-0.28,-0.255,-0.24,-0.365,-0.37,-0.35,-0.408,-0.34,-0.436,-0.596,-0.652,-0.65,0.0632,0.7066,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,1,-0.8286,-0.7142,-0.7142,-0.9142,-0.6572,-0.4,1,1,0.8572,0.7142,1,1,-0.3714,-0.4858,-0.6572,-0.7428,-0.7428,-0.8,-0.7428,-0.8286,1,1,1,1,1,1,1,1,1,1,0.4302,0.388,0.3564,0.333,0.3066,0.2954,0.294,0.2378,0.1796,-0.1118,-0.7066,-0.5412,-0.8154,0.1172,0.8362,0.815,0.8428,1,-0.193,-0.0526,0.0176,0.3684,0.2632,0.1578,0.228,0.614,0.8246,0.8246,0.8948,1,0.965,0.965,0.965,0.9298,0.8246,0.7192,0.4386,0.193,0.0526,-0.0526,-0.1578,-0.3334,-0.0878,0.0878,0.0878,-0.0878,-0.0176,-0.0526,-0.2632,-0.4386,-0.196,-0.0784,-0.0196,0.255,0.196,0.255,0.196,0.5294,0.7058,0.6666,0.6274,0.9216,0.7648,0.804,1,0.8824,0.8628,0.5882,0.549,0.255,0.0588,-0.2352,-0.3726,-0.5882,-0.4314,-0.255,-0.196,-0.196,-0.2156,0,0,-0.3334,-0.134,0.2372,0.3402,0.6082,0.567,0.299,0.5258,0.6908,1,0.9588,0.9588,0.9588,0.9382,0.9588,0.6494,0.7938,0.835,0.9176,0.7732,0.5052,0.2164,0.0516,-0.402,-0.3196,-0.4846,-0.5052,-0.134,-0.2164,0.0722,0.1134,-0.031,-0.2164,1,-1,-1,1,-1,-1,-0.2,-0.8334,-1,-0.7688,-0.8034,-0.3872,-0.156,0.029,0.0636,0.1214,0.318,0.2948,0.3642,0.445,0.2254,0.1792,0.3294,0.2832,0.2254,0.2254,0.5028,0.792,0.7688,0.4566,0.5144,0.4104,0.5492,0.815,0.9884,1,0.9768,0.8498,0.7226,0.5838,0.3872,'19'
-0.7288,-0.3422,-0.1334,0.0088,0.3688,0.4444,0.5822,0.5512,0.2178,0.1734,0.2934,0.2978,0.3466,0.6488,0.7156,0.9556,0.8844,0.7644,0.6578,0.7244,0.7822,0.7866,0.9512,0.9378,1,0.8666,0.8622,0.8266,0.7512,0.7734,0.6044,0.4666,-0.6704,-0.3054,-0.0374,0.0682,0.4286,0.4374,0.745,0.6616,0.301,0.2616,0.2968,0.4594,0.4946,0.7186,0.8374,0.934,0.688,0.7054,0.5076,0.6176,0.789,0.8638,0.934,1,1,0.9736,0.877,0.855,0.7758,0.8286,0.5428,0.5032,-0.6638,-0.2932,-0.0344,0.0776,0.4354,0.4568,0.7844,0.7242,0.3276,0.319,0.4052,0.5862,0.5906,0.8578,0.7802,0.8232,0.6422,0.625,0.4268,0.4612,0.7456,0.75,0.8836,0.944,1,0.9224,0.9008,0.7932,0.7156,0.7758,0.612,0.6466,-0.7046,-0.259,-0.1046,0.1,0.4818,0.5818,0.8272,0.8454,0.4728,0.459,0.5454,0.6364,0.8272,0.9228,1,0.6772,0.6954,0.4454,0.4546,0.641,0.5772,0.7454,0.8454,0.9772,0.8954,0.9454,0.7728,0.7546,0.75,0.7136,0.6772,0.7136,-0.7164,-0.1778,-0.202,0.1586,0.5336,0.8076,0.6682,0.8318,0.6634,0.601,0.5914,0.7404,0.8942,1,0.7548,0.577,0.4278,0.5096,0.3606,0.4086,0.4134,0.5914,0.827,0.8462,0.8028,0.7164,0.601,0.577,0.6394,0.6538,0.6346,0.7212,-0.874,-0.075,-0.046,0.2398,0.2832,0.9516,1,0.7384,0.8256,0.4964,0.6562,0.661,0.8596,0.782,0.6708,0.3754,0.4286,0.2784,0.3414,0.3608,0.3268,0.3802,0.5158,0.5352,0.54,0.4964,0.414,0.3462,0.2542,0.2542,0.2204,0.3608,-1,0.0542,0.1144,0.235,0.3734,0.7892,1,0.6686,0.6326,0.4578,0.4518,0.4638,0.6446,0.6808,0.4036,0.506,0.1084,-0.0602,-0.0482,0.2832,0.0964,-0.024,-0.0784,0.0662,0.1204,0.2228,0.2832,-0.1024,-0.0422,-0.006,-0.2048,-0.3072,-0.619,-0.2698,-0.1428,0.0476,0.365,0.5238,0.492,0.5238,0.2698,0.2698,0.3334,0.2698,0.4286,0.4604,0.6826,0.873,0.9682,0.7142,0.7142,0.8096,0.7778,0.9048,0.8096,1,0.873,0.873,0.746,0.873,0.6826,0.746,0.492,0.5238,-0.7858,-0.3928,-0.1786,0,0.3214,0.3572,0.5714,0.5358,0.1786,0.0714,0.2858,0.25,0.2858,0.6786,0.5714,0.9286,0.8214,0.6786,0.5714,0.7142,0.75,0.7142,0.9642,0.8214,1,0.7858,0.8928,0.75,0.7858,0.7858,0.7142,0.3928,-0.7826,-0.0652,-0.0652,0.2826,0.2826,1,1,0.913,0.913,0.7826,0.7826,0.9566,0.9782,0.6956,0.7826,0.5434,0.6086,0.2174,0.3696,0.3914,0.6086,0.587,0.6956,0.6956,0.8914,0.4348,0.6956,0.5,0.4566,0.2392,0.3478,0.3914,-1,-1,-1,-1,-1,-1,-1,-1,-0.9368,-0.9368,-0.515,0.512,0.509,0.6868,0.8192,0.8734,0.8344,0.7078,0.982,0.4698,0.1686,-0.3886,-0.6778,-0.8856,-0.9186,-0.5272,-0.9398,-0.9278,-0.9066,-0.9308,-0.9156,-0.9398,-0.9308,-1,-1,-1,-1,-1,-1,-1,-1,-0.9852,-0.9858,-0.5616,0.7472,0.7554,0.8542,0.9488,0.9874,0.8052,0.405,0.128,-0.3624,-0.612,-0.8332,-0.9192,-0.898,-0.7446,-0.6942,-0.7228,-0.6386,-0.6168,-0.623,-0.5298,-0.6438,-0.6738,-1,-1,-1,-1,-1,-1,-1,-1,-0.9134,-0.9668,-0.6168,-0.24,-0.268,-0.328,-0.348,-0.252,-0.316,-0.424,-0.552,-0.67,-0.6368,-0.68,-0.4968,0.4932,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,0.4572,-0.8286,-0.9714,-0.8858,-0.6286,-0.4858,0.2286,0.8,1,0.5714,1,1,1,-0.5142,-0.2858,-0.8572,-1,-1,-0.7142,-0.7714,-0.8,1,1,1,1,1,1,1,1,1,1,0.3222,0.3344,0.3406,0.3132,0.335,0.3144,0.3308,0.308,0.2118,-0.1502,-0.7334,-0.4352,-0.7266,0.6692,0.7732,0.7328,0.7814,1,-0.3818,0.091,0.4546,0.4546,0.309,0.2364,0.4546,0.7818,1,0.9636,1,1,0.9636,0.9636,0.7454,0.7818,0.6364,0.6728,0.4182,0.2364,-0.0546,-0.0546,-0.0182,-0.1636,-0.091,-0.2728,-0.2,-0.1636,-0.2,-0.2,-0.2728,-0.2728,-0.1652,0.0608,0.5478,0.5826,0.2174,0.113,0.2522,0.687,1,0.826,0.7044,0.6696,0.8086,0.826,0.7218,0.7218,0.6174,0.7392,0.374,0.1652,-0.0956,-0.2,-0.287,-0.3218,-0.374,-0.3044,-0.374,-0.3914,-0.3218,-0.3392,-0.374,-0.5826,-0.0484,0.2258,0.5,0.742,0.5,0.4516,0.5484,0.758,0.9194,0.8388,0.8064,0.887,1,0.9194,0.8388,0.7742,0.7742,0.7258,0.4678,0.1936,0.113,0,-0.3226,-0.258,-0.4678,-0.4354,-0.4194,-0.3064,-0.3064,-0.1452,-0.2904,-0.387,1,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.8422,-0.7578,-0.4842,-0.5158,-0.3894,-0.3368,-0.2736,-0.2,-0.2736,-0.2736,-0.2842,-0.1578,-0.2106,0.0736,0.0632,-0.0948,0.0316,0.179,0.1578,0.2632,0.221,0.3684,0.3684,0.6106,0.7368,0.621,0.6632,0.7264,0.5052,0.7684,1,0.4106,'19'
-0.552,0.1332,0.1332,-0.0044,0.0102,-0.306,-0.2942,-0.5462,-0.4904,-0.5578,-0.5314,-0.3558,-0.3148,-0.2562,-0.1976,-0.1098,-0.0132,0.2064,0.306,0.5168,0.675,0.6866,0.8126,0.6486,0.8156,0.839,1,0.8068,0.7804,0.6486,0.7746,0.8038,-0.5856,0.0432,0.0208,0.082,0.0208,-0.402,-0.4882,-0.4102,-0.4966,-0.5994,-0.6522,-0.363,-0.4382,-0.3158,-0.427,-0.1126,-0.2184,0.0626,0.1572,0.5438,0.63,0.961,0.872,0.4548,0.541,0.8664,0.7664,0.7998,0.6774,0.8916,0.772,1,-0.5978,-0.032,-0.0652,0.0568,-0.0374,-0.5506,-0.67,-0.4758,-0.6088,-0.656,-0.6422,-0.5034,-0.509,-0.3898,-0.3232,-0.2178,-0.1596,-0.079,0.265,0.326,0.5922,0.6338,0.8224,0.853,0.8196,0.817,1,0.9806,0.9306,0.878,0.914,0.8446,-0.6198,-0.0166,-0.0414,0.033,-0.0386,-0.518,-0.5896,-0.617,-0.7024,-0.6776,-0.7658,-0.5426,-0.5344,-0.3526,-0.471,-0.259,-0.2618,-0.0606,0.1378,0.3224,0.5592,0.7272,0.7934,0.9146,0.7466,0.898,0.8954,1,0.8292,0.9504,0.854,0.9642,-0.7038,-0.0014,-0.0014,-0.0098,-0.0268,-0.402,-0.4218,-0.5204,-0.5204,-0.6644,-0.653,-0.5826,-0.5458,-0.5008,-0.4472,-0.3032,-0.227,-0.165,-0.0662,0.3342,0.45,0.8816,1,0.7658,0.749,0.7518,0.8816,0.7292,0.78,0.7038,0.8026,0.8054,-0.82,0.1544,0.2154,-0.0868,-0.0032,-0.4406,-0.2862,-0.627,-0.4276,-0.6496,-0.5562,-0.6914,-0.3762,-0.4824,-0.5112,-0.5242,-0.27,-0.2412,-0.0064,0.1158,0.4244,0.6078,0.791,1,0.791,0.6914,0.6398,0.6624,0.537,0.3988,0.4084,0.5242,-0.9792,0.7448,0.9374,-0.0468,0.1198,-0.323,-0.224,-0.3646,-0.5468,-0.552,-0.4532,-0.3646,-0.3542,-0.2448,-0.6928,-0.698,-0.651,-0.427,-0.4376,-0.3438,-0.198,0.4896,0.8698,0.75,0.8958,0.7396,0.9844,1,0.7136,0.9114,0.625,0.7864,-0.3888,0.5556,0.6112,-0.1112,0.0556,-0.2222,-0.1112,-0.4444,-0.5556,-0.7222,-0.6112,-0.6112,-0.1666,-0.1112,-0.2222,-0.0556,-0.3888,-0.0556,0.1666,0.2222,0.4444,0.2222,0.6666,0.6112,0.8334,0.8334,1,0.7222,0.7222,0.6112,0.8888,1,-0.551,0.0612,0.0612,0.0204,-0.0204,-0.3878,-0.347,-0.5918,-0.551,-0.5102,-0.4694,-0.347,-0.3062,-0.1428,-0.102,-0.102,-0.0204,0.2654,0.347,0.551,0.7552,0.8368,0.9184,0.6734,0.8776,0.9184,1,0.796,0.796,0.796,0.796,0.7142,-0.732,-0.0516,-0.0104,-0.1134,-0.134,-0.6288,-0.464,-0.6288,-0.5052,-0.732,-0.567,-0.6288,-0.5258,-0.6288,-0.4432,-0.6082,-0.2372,-0.3402,-0.1752,-0.0722,0.464,0.4432,1,0.9588,0.5464,0.5876,0.732,0.7938,0.4432,0.567,0.5464,0.732,-1,-1,-0.8958,-0.8808,-0.5584,-0.737,-0.7816,-0.8014,-0.8164,-0.8858,-0.6378,0.8264,0.866,0.7468,0.6476,0.3846,0.32,0.2606,0.1862,0.1266,0.1464,-0.1066,-0.6526,-0.8512,-0.871,-0.9106,-0.876,-1,-1,-1,-1,-1,-1,-1,-1,-0.9676,-0.9684,0.3624,1,0.9684,0.2802,-0.1448,-0.4514,-0.6368,0.4714,0.5602,0.4692,0.536,0.397,0.2398,0.1096,-0.058,-0.4102,-0.7192,-0.7992,-0.864,-0.8772,-0.914,-0.9508,-0.9552,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.9068,0.3266,0.9732,0.8866,0.8466,0.6032,0.7,0.5466,-0.0934,0.251,0.2088,0.2932,0.2932,0.191,0.1332,-0.0624,-0.234,-0.818,-0.804,-0.11,0.11,-0.3268,-0.78,-0.9,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,1,1,1,-0.0858,-0.1142,-0.2286,0.0572,1,1,-0.7142,-0.6,-0.6572,-0.9142,-0.8572,-0.7142,-0.5714,-0.2286,0,-0.2286,-0.3142,-0.0572,0.8,0.2286,-0.4858,-1,-1,-1,-1,-1,-1,0.1552,0.1762,0.1892,0.2054,0.2136,0.2298,0.213,0.1844,0.136,0.1886,1,1,1,1,1,1,1,1,1,1,-0.8,0.0824,-0.6508,-0.6338,0.5154,1,0.8308,-0.1584,-0.917,-0.6536,-0.6,-0.583,-0.5048,-0.5586,-0.3146,-0.2024,0.178,0.2488,0.4414,0.317,0.4342,0.5,0.3414,0.444,0.5952,0.6024,0.5952,0.9024,0.9342,1,0.6976,0.5414,0.4804,0.483,0.3634,0.3146,0.3464,0.3464,0.139,0.0024,-0.9318,-0.8092,-0.6294,-0.4468,-0.4032,-0.4114,-0.2644,-0.0954,0.1062,0.406,0.4386,0.436,0.8148,0.8066,0.3514,0.6294,0.8066,0.5968,0.6458,0.7848,1,0.9918,0.7302,0.7602,0.5994,0.4386,0.3406,0.3378,0.1962,0.1798,0.2534,0.139,-0.719,-0.4984,-0.4712,-0.441,-0.4652,-0.3868,-0.2266,-0.3474,0.0996,0.3384,0.432,0.3868,0.8882,0.9426,0.6918,0.7372,0.725,0.7674,0.7854,0.9396,0.997,0.864,0.9366,1,0.3686,0.5226,0.2508,0.1238,-0.012,0.012,0.0604,-0.3868,1,-1,-1,1,-1,-1,-1,0.4,-1,-0.7248,-0.3578,-0.633,-0.4312,-0.1192,-0.2844,-0.266,-0.3028,-0.266,-0.0276,0.3944,1,0.633,0.4312,0.578,0.523,0.5964,0.5046,0.8166,0.7798,0.633,0.5412,0.4128,0.5596,0.7064,0.4862,0.2478,0.1744,0.4496,0.2844,0.0826,-0.1744,'20'
-0.626,0.1126,0.1378,0.0174,-0.0142,-0.3852,-0.3248,-0.4516,-0.4896,-0.6926,-0.5722,-0.3438,-0.2836,-0.2552,-0.2362,-0.1252,-0.011,0.176,0.2742,0.607,0.8162,0.683,0.7844,0.7274,0.9366,0.8384,1,0.8384,0.9208,0.8098,0.756,0.683,-0.6204,-0.0038,-0.0242,0.1134,0.065,-0.335,-0.4038,-0.4956,-0.5464,-0.498,-0.5644,-0.442,-0.5082,-0.2178,-0.2816,-0.0522,-0.1286,0.1236,0.1872,0.6152,0.5974,0.9592,0.9108,0.7732,0.7222,1,0.9364,0.8878,0.8166,0.9566,0.8854,1,-0.6238,-0.0622,-0.0902,0.0928,0.0166,-0.4942,-0.6188,-0.4994,-0.606,-0.5858,-0.6594,-0.4842,-0.4994,-0.3342,-0.3748,-0.2096,-0.225,-0.0928,0.235,0.357,0.6086,0.7128,0.756,0.8348,0.817,0.8806,0.9364,1,0.8704,0.906,0.873,0.8984,-0.6738,-0.027,-0.0582,0.0978,0.0298,-0.4638,-0.532,-0.4808,-0.5546,-0.6852,-0.7702,-0.6114,-0.6226,-0.3702,-0.495,-0.3022,-0.3958,-0.1178,0.0298,0.356,0.4326,0.7446,0.6766,0.949,0.8014,0.9688,0.8326,0.9518,0.79,0.9914,0.81,1,-0.6998,0.1468,0.1568,0.005,0.0016,-0.4198,-0.4368,-0.6324,-0.6054,-0.7436,-0.629,-0.5986,-0.5582,-0.521,-0.511,-0.3694,-0.2446,-0.4232,-0.2782,0.2344,0.3694,0.8246,1,0.7908,0.8414,0.774,0.8988,0.7538,0.828,0.7032,0.7336,0.8044,-0.9954,0.466,0.5832,0.0258,0.1662,-0.5316,-0.3022,-0.4614,-0.274,-0.4942,-0.719,-0.6488,-0.5036,-0.48,-0.6814,-0.5504,-0.4052,-0.466,-0.4332,-0.4238,-0.2552,0.11,0.4052,0.7518,0.8314,0.7612,1,0.9718,0.7002,0.7142,0.7518,0.9532,-0.9128,0.4674,0.6756,-0.0896,-0.6174,-0.7094,-0.5884,-0.5738,-0.5884,-0.7434,-0.7142,-0.6174,-0.6222,-0.7336,-0.8596,-0.6852,-0.69,-0.4624,-0.5108,-0.3802,-0.0896,0.0218,0.6756,1,0.971,0.9176,0.8886,0.7094,0.6998,0.6562,0.3124,0.5206,-0.077,0.3462,0.3846,0.077,-0.3846,-0.4616,0,0.077,-0.3462,-0.077,-0.077,-0.1154,-0.0384,-0.0384,-0.1154,-0.2308,-0.3846,0,0.0384,0.2692,0.577,0.3462,0.3846,0.3846,0.7308,0.923,1,0.8846,0.8846,0.8076,0.5,0.6924,-0.5556,0.2444,0.2888,-0.1112,0.0666,-0.2888,-0.2444,-0.5112,-0.3778,-0.4666,-0.4222,-0.2444,-0.1112,-0.2,-0.2,-0.1112,0.1556,0.2444,0.3778,0.6,0.9556,1,0.8222,0.5556,1,0.9556,0.9556,0.7334,0.8222,0.7778,0.7334,0.5556,-0.8734,0.114,0.1392,-0.1898,-0.0886,-0.367,-0.443,-0.8228,-0.7468,-0.6456,-0.595,-0.595,-0.4936,-0.595,-0.4684,-0.519,-0.2912,-0.4684,-0.2152,0.114,0.3924,0.7216,1,0.8482,0.7974,0.6202,0.7722,0.6456,0.7974,0.7468,0.6456,0.6456,-1,-0.9074,-0.8818,-0.8766,-0.6504,-0.7584,-0.815,-0.7738,-0.82,-0.8508,-0.856,0.6864,0.8664,0.7944,0.7172,0.635,0.3008,0.0848,0.0334,-0.1466,-0.2802,-0.2236,-0.6966,-0.8766,-0.9074,-0.8508,-1,-1,-1,-1,-1,-1,-1,-1,-0.9774,-0.9702,-0.947,0.0054,0.4058,0.4104,-0.1128,-0.39,-0.6346,-0.7606,-0.057,0.8574,0.8906,0.61,0.4456,0.128,-0.1658,-0.5816,-0.8018,-0.8222,-0.8356,-0.9298,-0.9442,-0.9622,-0.9576,-1,-1,-1,-1,-1,-1,-1,-1,-0.9934,-0.9,-0.87,0.6332,1,0.9032,0.7966,0.7266,0.7766,0.6,-0.149,0.1844,0.1444,0.1754,0.1866,0.0508,0.024,-0.422,-0.55,-0.41,-0.656,-0.5834,-0.48,-0.7468,-0.7,-1,-1,-1,-1,-1,-1,-1,-1,-0.4858,-0.7428,1,1,1,-0.1714,0.0286,-0.0858,-0.5428,0.4572,1,0.0286,-0.7428,-0.8572,-1,-0.8,-0.6858,-0.2,-0.3714,-0.6858,-0.2286,-0.5142,-0.8572,-0.8286,-0.6858,-1,-1,-1,-1,-1,-1,-1,0.2704,0.2872,0.2958,0.314,0.3126,0.3218,0.3126,0.292,0.2474,0.1512,0.942,0.969,0.9844,1,1,1,1,1,1,1,-0.8,0.1058,-0.7514,-0.815,-0.3508,0.4986,0.7394,-0.1166,-0.9084,-0.6366,-0.5396,-0.412,-0.3676,-0.387,-0.3482,-0.2676,0.19,0.3536,0.4396,0.3704,0.4646,0.4646,0.2038,0.2816,0.6422,0.6006,0.5784,0.9612,0.9778,1,0.8724,0.7948,0.6754,0.3898,0.3926,0.423,0.3536,0.3092,0.3426,0.1512,-0.8612,-0.653,-0.5604,-0.509,-0.3574,-0.419,-0.3342,-0.1336,0.2314,0.3934,0.5168,0.4808,0.82,0.7918,0.4652,0.4474,0.599,0.635,0.6556,0.8458,0.9588,1,0.9434,0.802,0.7378,0.6246,0.581,0.2082,0.4344,0.401,0.365,0.18,-0.6338,-0.3782,-0.3914,-0.3728,-0.2832,-0.286,-0.141,-0.1516,0.004,0.1436,0.4704,0.4466,0.5468,0.7022,0.6284,0.589,0.6126,0.6022,0.6864,0.7444,0.863,1,0.6416,0.5626,0.6284,0.502,0.3966,0.1594,0.2332,0.1226,0.091,-0.1778,0.9802,-1,1,-1,-1,-1,-1,0.4666,-1,-0.3334,-0.1238,-0.3142,0.0666,0.1428,0.2572,0.219,-0.0286,0.0286,0.0476,0.7904,1,0.7904,0.4858,0.1048,0.2952,0.7524,0.8096,0.7524,0.3904,0.7142,0.4476,0.1048,0.162,-0.2,-0.0666,-0.0858,-0.0476,0.1048,-0.0666,-0.2572,-0.7524,'20'
-0.4156,0.0572,0.1278,0.2512,-0.2218,-0.6828,-0.5536,-0.5418,-0.4626,-0.6212,-0.6328,-0.492,-0.586,-0.4126,-0.2188,-0.1806,0.025,0.1924,0.398,0.7152,0.7974,0.7504,0.677,0.8384,0.8766,0.8884,0.8826,0.8678,0.859,0.8942,1,0.9412,-0.3882,0.0836,0.2912,0.4502,0.116,-0.3828,-0.4016,-0.4664,-0.1914,-0.3828,-0.2642,-0.2022,-0.186,-0.1132,-0.1024,0.1212,0.4582,0.5606,1,0.9892,0.8788,0.7844,0.9596,0.7762,0.8086,0.5796,0.5902,0.647,0.62,0.8518,0.6766,0.7574,-0.345,0.1088,0.5598,0.7128,0.3744,-0.2484,-0.1838,-0.2618,-0.0766,-0.1194,-0.0282,0.1892,0.1946,0.3182,0.6134,0.7744,0.7288,0.796,0.7986,0.7906,0.8174,0.8174,1,0.7316,0.4818,0.463,0.4362,0.6162,0.6644,0.8524,0.702,0.7288,-0.486,0.0082,0.869,1,0.4108,-0.2536,-0.1064,-0.0834,0.0114,0.149,0.2242,0.5024,0.7546,0.8036,0.5058,0.4238,0.2438,0.293,0.4076,0.5482,0.5942,0.8626,0.784,0.6498,0.4402,0.414,0.4272,0.5188,0.6792,0.9148,0.905,0.6564,-0.4604,-0.0274,0.9656,1,0.0584,0.0412,0.1306,0.0722,0.3986,0.567,0.811,0.7216,0.299,0.0482,-0.079,-0.0482,-0.1168,-0.0172,0.1238,0.11,0.3024,0.6392,0.6598,0.5498,0.3024,0.2956,0.2508,0.3712,0.6598,0.8384,0.7972,0.5224,-0.4714,0.1572,1,0.963,-0.2866,0.1608,0.0758,0.3234,0.7486,0.6414,-0.0204,-0.3234,-0.4306,-0.5378,-0.342,-0.5564,-0.5452,-0.501,-0.5194,-0.379,-0.183,0.0388,0.294,0.2236,0.05,-0.135,-0.1646,-0.0352,0.22,0.3346,0.3716,-0.0388,-0.0368,0.1736,0.9894,1,-0.1842,-0.021,0.5316,0.8368,0.3106,-0.6052,-0.6052,-0.5474,-0.3264,-0.4316,-0.0842,-0.2842,-0.6578,-0.6736,-0.6,-0.7368,-0.7684,-0.9264,-0.7842,-0.3632,-0.4684,-0.679,-0.6684,-0.621,-0.5736,-0.1842,-0.2422,-0.8316,-0.3334,0.0222,-0.0222,0.0666,-0.3778,-0.5556,-0.5556,-0.5112,-0.7334,-0.6444,-0.5556,-0.5112,-0.6,-0.5112,-0.4222,-0.4222,-0.2444,-0.0222,0.0666,0.3778,0.6,0.7778,0.6,0.6,0.7334,0.6444,0.8222,0.7778,0.8666,1,0.7334,0.9556,-0.5,-0.15,-0.05,0.15,-0.4,-0.8,-0.6,-0.6,-0.75,-0.75,-0.9,-0.75,-0.75,-0.95,-0.2,-0.2,-0.25,0.1,0.15,0.6,0.5,0.75,0.65,0.75,0.95,0.9,0.95,0.7,0.85,1,0.95,0.95,-0.3784,0.2432,0.973,1,-0.1352,0.1622,0.1622,0.1082,0.6756,0.7028,0.7298,0.5946,0.1622,0,-0.081,-0.027,-0.027,-0.054,0,0.027,0.2432,0.5136,0.4324,0.5946,0.4324,0.3784,0.3244,0.5136,0.6486,0.946,0.7568,0.5946,-1,-1,-1,-0.9682,-0.9514,-0.8646,-0.7862,-0.7608,-0.727,-0.708,-0.6232,-0.4222,-0.1154,0.1514,0.4772,0.7354,0.8814,0.7312,0.3186,0.0836,-0.3396,-0.4582,-0.253,0.4202,-0.3396,-0.7608,-0.892,-0.9344,-0.9366,-0.928,-1,-1,-1,-1,-1,-1,-0.9664,-0.9506,-0.9022,-0.8106,-0.7222,-0.6592,-0.636,-0.3088,0.0846,0.5002,0.8138,0.8358,0.4592,0.3604,0.1826,-0.1226,-0.2572,-0.6034,-0.6906,-0.6044,-0.2804,-0.6454,-0.8548,-0.8958,-0.9232,-0.9264,-0.9242,-1,-1,-1,-1,-1,-1,-0.995,-0.96,-0.8568,-0.63,-0.4068,-0.4368,-0.2634,0.0466,-0.216,-0.22,-0.162,-0.396,-0.632,-0.75,-0.808,-0.828,-0.831,-0.802,-0.8856,-0.93,-0.95,-0.9334,-0.9434,-0.8,-0.74,-0.8268,-0.82,-1,-1,-1,-1,-1,-1,-0.3714,-0.8,-0.0572,0.4286,-0.0286,-0.4286,-0.6572,-0.7142,-0.5142,-0.6,-0.8858,-0.8858,-0.8286,-0.8572,-0.8286,-0.3714,0,-0.2,-0.8,-1,-0.9714,-0.9714,-0.9428,-0.9142,-0.9714,-1,-0.6858,-1,-1,-1,-0.288,-0.2642,-0.2522,-0.22,-0.2114,-0.1834,-0.1122,-0.0294,0.0854,0.294,0.9702,0.9698,0.9364,0.9396,0.9244,0.8914,0.8334,0.7036,0.3822,0.2146,-0.6534,0.2118,-0.3194,-0.1362,0.05,0.1426,0.3172,-1,0.1604,0.2468,0.0942,-0.257,-0.2926,-0.2468,-0.201,0.0484,-0.1704,0.2264,0.7048,0.5878,0.4504,0.7048,0.888,1,0.8474,0.659,0.1552,0.0128,-0.089,-0.2264,-0.1502,-0.2264,-0.3028,-0.3078,-0.201,-0.3384,-0.1858,-0.0026,-0.1246,-0.5268,0.1334,0.2646,0.0914,-0.1756,-0.1804,-0.3818,-0.3256,0.0304,-0.0538,0.4474,0.7658,0.4474,0.658,0.8922,0.9298,0.9766,1,0.9156,0.4894,0.4192,0.3162,0.1288,0.26,0.1148,-0.1476,0.1428,0.1944,0.0586,0.1148,0.3348,0.3676,-0.11,0.076,0.1498,0.0266,-0.4292,-0.4662,-0.3676,-0.3264,-0.0924,-0.0554,0.4086,0.7618,0.6098,0.6386,0.926,0.9302,1,0.848,0.6468,0.6262,0.3142,0.1416,0.1786,0.2814,0.0636,-0.117,0.0596,0.154,0.0636,-0.0062,0.2732,0.1664,-0.3758,-0.8864,-1,1,-1,1,-0.6,-1,0,-1,-0.1538,0.1026,0.1794,0.3334,0.7692,1,0.5384,0.4358,0.5642,0.3846,0.4358,0.5642,0.6666,0.5642,0.4872,0.6666,0.718,0.4102,0.4872,0.4358,0.8206,0.6154,0.359,0.2052,0.2564,0.359,-0.4358,0.359,0.1026,0.2564,0.1538,-0.282,'21'
-0.4158,0.0666,-0.1346,-0.0254,-0.5854,-0.7964,-0.9904,-0.92,-0.7478,-0.7696,-0.8546,-0.6922,-0.6484,-0.7454,-0.5976,-0.663,-0.5854,-0.474,-0.137,0.057,0.5952,0.6872,0.389,0.2848,0.4206,0.5878,0.5854,0.7066,0.6558,0.68,0.9248,1,-0.303,0.18,0.1298,0.2346,-0.435,-0.6628,-0.5694,-0.6652,-0.64,-0.8588,-0.7608,-0.6218,-0.4646,-0.4374,-0.3622,-0.4078,-0.246,-0.0956,0.3144,0.5946,0.8224,0.8224,0.8132,0.6674,0.7334,0.8816,0.688,0.656,0.8474,0.8474,1,0.9568,-0.2556,0.234,0.378,0.5498,0.2142,-0.4748,-0.1786,-0.2498,-0.2044,-0.3622,-0.2202,-0.1906,-0.149,0.0326,0.08,0.384,0.6506,0.773,0.9664,1,0.9704,0.8994,0.9842,0.844,0.5952,0.4906,0.5518,0.5676,0.6012,0.846,0.8242,0.921,-0.2,0.4764,0.5442,0.8158,0.5296,-0.2412,-0.091,-0.0618,0.1322,0.0666,0.3672,0.5296,0.7528,0.6146,0.6946,0.6582,0.7042,0.566,0.549,1,0.8254,0.9516,0.6872,0.12,0.1976,0.2776,0.3116,0.314,0.8278,0.7528,0.8764,0.6776,-0.1254,0.6826,0.6026,1,0.76,0.1974,0.032,0.1894,0.5894,0.6586,0.6106,0.52,0.304,0.2134,-0.048,-0.1894,-0.0506,-0.0586,0.1174,0.528,0.7146,0.4906,0.4374,0.0774,-0.0826,-0.064,0.0186,0.1146,0.4906,0.6426,0.7466,0.7546,-0.405,0.7678,0.7794,0.8432,0.8346,0.9942,1,0.4978,0.373,-0.196,-0.1728,-0.4658,-0.6198,-0.5384,-0.5182,-0.5008,-0.4716,-0.4746,-0.3468,-0.3034,-0.0508,0.2976,0.2976,0.013,-0.4224,-0.3846,-0.3236,-0.2598,-0.1494,0.2336,0.3992,0.5414,-0.6678,0.8092,1,0.0388,0.3038,0.3038,0.9646,0.6856,0.1802,0.1944,-0.371,-0.5972,-0.7986,-0.7526,-0.795,-0.8516,-0.7526,-0.6784,-0.6042,-0.5336,-0.4806,-0.3922,-0.1096,-0.3462,-0.5194,-0.5972,-0.788,-0.9682,-0.742,-0.6008,-0.2262,0.0248,-0.0698,0.2094,0.0232,0.1162,-0.0232,-0.4418,-0.3954,-0.6744,-0.2558,-0.1628,-0.2094,-0.1162,-0.1628,-0.4884,-0.1628,-0.1162,-0.1628,-0.1628,0.2094,0.2558,0.628,0.721,0.5814,0.1628,0.3954,0.4418,0.2094,0.5348,0.6744,0.5348,0.4418,1,-0.1666,0.125,-0.0416,0.0834,-0.25,-0.4166,-0.75,-0.75,-0.7084,-0.375,-0.3334,-0.2084,-0.1666,-0.5416,-0.25,-0.2084,-0.2916,-0.25,-0.0416,0.1666,0.4584,0.7084,0.625,0.4166,0.25,0.4166,0.5834,0.375,0.5416,0.4584,0.8334,1,-0.3658,0.0976,0.0732,0.2196,-0.244,-0.7074,-0.561,-0.6098,-0.6586,-0.7804,-0.7074,-0.7074,-0.5122,-0.5366,-0.244,-0.2196,-0.0244,0.0244,0.2196,0.683,0.7318,1,0.9024,0.8292,0.8292,0.9512,0.5854,0.561,0.6586,0.6342,0.8292,0.9512,-1,-1,-1,-1,-1,-1,-1,-1,-0.9126,-0.926,-0.7244,-0.4992,-0.395,-0.0352,0.5596,0.9596,0.7142,0.5226,0.4622,0.2302,0.005,-0.2268,-0.5428,-0.5866,-0.5966,-0.7076,-0.7882,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9444,-0.9466,-0.7648,-0.633,-0.5238,-0.1636,0.6636,0.6148,-0.0034,-0.1022,-0.2682,-0.4102,-0.4466,-0.684,-0.8034,-0.8306,-0.8306,-0.8364,-0.8704,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.9468,-0.7734,-0.3744,-0.2944,-0.3086,-0.183,-0.3814,-0.608,-0.6708,-0.8174,-0.848,-0.8294,-0.9094,-0.9234,-0.8368,-0.9268,-0.85,-0.7568,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,0.1428,1,0.3428,-0.6286,-0.3714,-0.4,-0.6858,-0.7714,-0.8286,-0.6572,-0.3428,-0.4572,-0.6858,-0.7714,-0.8858,-1,-0.9714,-0.8858,-1,-1,-1,-1,-1,-1,-0.5762,-0.5526,-0.5152,-0.513,-0.5016,-0.481,-0.4602,-0.3522,-0.1846,0.2356,0.7928,0.8104,0.8642,0.9046,0.932,0.9468,0.9496,0.904,0.5476,0.162,-0.72,0.7764,-0.642,-0.7818,-0.659,-0.6522,-0.5522,-0.5584,0.1612,0.2904,-0.0322,0.0322,0.2904,0.2904,0.1612,-0.0968,0.2258,0.2258,0.613,0.613,0.742,0.9354,0.8064,1,0.871,0.9354,0.8064,0.871,0.742,0.613,0.4194,0.3548,0.4838,0.4838,0.3548,0.3548,0.2258,0.0968,-0.0322,-0.3548,-0.0714,0.0476,-0.1428,-0.5238,-0.2142,-0.4286,-0.1428,-0.2142,-0.1428,-0.2142,0.1666,0.238,0.738,0.8334,0.6904,0.9286,1,0.6904,0.7142,0.5714,0.5238,0.3334,0.1666,0.1904,0.262,0.1904,0.1904,0.238,0.119,0.0238,-0.0476,-0.5238,0.4594,0.6216,0.3244,-0.081,-0.1622,0,0.1892,-0.2432,0.054,0.3244,0.5946,0.5406,0.2702,0.7838,0.973,0.946,1,0.6756,0.4324,0.1622,0.054,0.1082,-0.054,-0.1622,-0.1082,0.1352,-0.027,0.027,-0.1352,-0.027,0.081,-0.1892,-0.4228,-1,-1,1,-0.8,-1,-1,-0.8334,-1,-0.5224,-0.3432,-0.0746,0.3432,0.403,0.6716,1,0.8208,0.1044,0.1044,0.2238,0.4328,0.8508,0.3134,-0.1344,0.5522,0.7612,0.3134,0.3134,0.2538,0.582,0.7314,0.2538,0.2538,0.1344,0.2238,-0.0448,-0.2238,-0.0448,0.3134,0.2538,0.0448,'21'
-0.4548,0.1042,0.3534,0.5232,0.1232,-0.6658,-0.4082,-0.452,-0.3918,-0.578,-0.4164,-0.3342,-0.2494,-0.1562,-0.178,0.137,0.3452,0.5206,0.9124,1,0.8658,0.8904,0.9288,0.8904,0.9754,0.7836,0.6356,0.5068,0.5424,0.652,0.6548,0.9836,-0.4328,0.041,0.1936,0.369,0.0912,-0.5604,-0.4282,-0.4602,-0.435,-0.5376,-0.451,-0.4032,-0.3006,-0.1982,-0.1754,-0.107,-0.1776,0.0752,0.4692,0.6242,0.9044,0.9794,0.6538,0.6218,0.7928,0.7836,1,0.8178,0.8064,0.7334,0.7518,0.9954,-0.472,0.0354,-0.0446,0.1634,-0.0148,-0.4766,-0.5794,-0.5154,-0.6228,-0.6252,-0.472,-0.5314,-0.3234,-0.44,-0.232,-0.1382,-0.0058,-0.024,0.0514,0.5062,0.5246,0.968,0.92,0.6914,0.6022,0.7828,0.7874,0.9748,0.904,1,0.92,0.9542,-0.4902,0.039,-0.0152,0.141,0.0022,-0.4816,-0.5856,-0.4404,-0.6508,-0.5856,-0.6594,-0.629,-0.3752,-0.371,-0.3254,-0.371,-0.102,-0.193,0.0824,0.204,0.4426,0.781,0.9284,0.6702,0.629,0.718,0.7874,0.9068,0.9306,0.8916,0.885,1,-0.5532,0.0808,0.055,0.1322,0.048,-0.4106,-0.4994,-0.462,-0.5742,-0.6982,-0.8222,-0.6726,-0.6818,-0.476,-0.4456,-0.303,-0.2912,-0.1112,0.0784,0.2514,0.441,0.6584,0.89,1,0.6748,0.6024,0.6796,0.7474,0.869,0.8948,0.7918,0.834,-0.579,0.3094,0.337,0.1746,0.1994,-0.1224,-0.0702,-0.4196,-0.3232,-0.6754,-0.59,-0.6506,-0.5488,-0.6232,-0.513,-0.4662,-0.337,-0.2902,0.0178,0.1196,0.4002,0.6452,1,0.956,0.8762,0.7084,0.7002,0.8514,0.8872,0.6698,0.6698,0.8542,-0.9548,0.5412,0.6996,-0.0242,0.0888,-0.2924,0.0114,-0.16,-0.5282,-0.58,-0.6348,-0.4216,-0.4508,-0.5348,-0.6478,-0.4668,-0.4702,-0.1858,-0.1406,0.2794,0.538,0.8514,0.9548,0.9774,1,0.9936,0.9386,0.8126,0.7416,0.4766,0.3182,0.6252,-0.4838,0.0322,0.2258,0.4838,-0.4194,-0.4194,-0.5484,-0.3548,-0.2904,-0.6774,-0.8064,-0.4838,-0.0322,0.0968,0.2258,0.2258,0.8064,0.6774,1,0.613,0.742,1,0.8064,0.9354,0.5484,0.1612,0.0968,-0.0322,0.2258,0.5484,0.5484,1,-0.48,0.16,0.4,0.56,0.2,-0.2,-0.2,-0.28,-0.12,-0.32,-0.16,-0.2,-0.16,0.12,0,0.36,0.56,0.76,0.84,0.92,0.72,0.64,1,0.88,0.76,0.52,0.52,0.4,0.32,0.52,0.64,0.8,-0.4894,0.1702,0.1702,0.234,0.1914,-0.234,-0.234,-0.2978,-0.4256,-0.5958,-0.5744,-0.8936,-0.8298,-0.3404,-0.3618,-0.2978,-0.3618,0.0638,0.0212,0.383,0.3618,0.8724,0.851,1,0.9574,0.7872,0.7872,0.8724,0.8724,0.8298,0.8086,0.9574,-0.9148,-0.617,-0.6194,-0.6714,-0.7424,-0.7966,-0.8132,-0.8274,-0.8298,-0.7778,-0.4704,0.7282,0.4964,0.201,-0.0592,-0.13,-0.0732,-0.175,-0.253,-0.312,-0.3476,-0.4114,-0.5248,-0.7164,-0.9126,-0.9314,-0.9598,-0.9528,-0.9528,-0.9646,-0.9598,-0.9574,-0.9362,-0.9478,-0.8088,-0.8,-0.8226,-0.8714,-0.894,-0.9018,-0.9036,-0.8956,-0.8592,-0.7002,0.522,0.92,0.8384,0.7114,0.6054,0.8888,0.6132,0.089,-0.3846,-0.4724,-0.6314,-0.7366,-0.7922,-0.893,-0.8984,-0.9104,-0.9026,-0.9026,-0.92,-0.94,-0.9452,-0.9436,-0.8934,-0.82,-0.6668,-0.7468,-0.7234,-0.77,-0.72,-0.7468,-0.6168,-0.5768,-0.5934,-0.262,-0.0982,0.0526,0.1562,0.149,0.0666,-0.035,-0.1418,-0.4834,-0.5934,-0.8134,-0.9334,-0.4534,-0.3668,-0.34,-0.4734,-0.5534,-0.4868,-0.5868,-0.7068,-0.79,-0.6734,-0.2,0.2572,-0.7714,-0.8,-0.8572,-1,-1,-0.9428,-0.6858,-0.2,1,1,-0.6858,-0.9142,-0.8572,-0.9142,-0.8858,-0.7714,-0.6858,-0.6858,-0.5428,-0.2286,-0.5714,-0.5714,-0.4858,-0.8,-0.9428,-0.9714,-0.9142,-0.8572,-0.8,-1,-0.9428,-0.0138,-0.0158,-0.0232,-0.009,-0.016,0.0132,0.0192,0.0166,0.0226,0.158,0.5324,0.5592,0.5968,0.6748,0.7216,0.7936,0.8568,0.9002,0.9778,1,-0.7734,0.3764,-0.7158,-0.283,0.2794,0.7992,0.974,-0.2834,0.55,0.55,0.3,0.35,0.2,0.1,0.45,0.6,0.8,0.75,0.65,0.8,0.9,0.65,0.3,0.95,0.9,0.55,0.3,0.8,1,0.75,0.35,0.6,0.6,0.4,0.75,0.55,0.5,0.7,0.45,0.3,0.4,0.475,0.325,0.075,0.025,-0.05,0.125,0.525,0.7,0.75,0.7,0.875,0.8,0.45,0.35,0.95,1,0.575,0.05,0.475,0.45,0.25,0.225,0.15,-0.025,0.275,0.35,-0.05,0.2,0.225,0.375,0.2,0.3478,0.587,0.4566,0.0434,0.1522,-0.0652,0.2826,0.4566,0.826,0.9348,0.8478,1,0.7392,0.5,0.6304,0.9348,0.7826,0.6304,0.4566,0.0218,0.0218,0.0434,-0.0218,0.0218,0.0652,-0.1522,0.1304,0.1522,-0.1086,-0.2392,0.087,-0.3044,-0.0438,-1,-1,1,-0.8,1,0,-0.8334,-1,-0.4374,0.25,-0.0938,0.1562,0.0782,-0.3124,0.0468,0.1094,0.3126,1,0.9688,0.7344,0.5782,0.7188,0.5,0.4218,0.3126,0.2344,0.2968,0.3282,0.375,0.3282,0.4062,-0.125,-0.2188,-0.3282,-0.2344,-0.1876,0.0782,0.0156,-0.0782,-0.125,'22'
-0.4528,0.1218,0.0698,0.2694,-0.0588,-0.4692,-0.4994,-0.5158,-0.3188,-0.3406,-0.4582,-0.42,-0.1738,-0.1682,0.0396,0.182,0.4062,0.6032,0.7346,1,0.9754,0.9042,0.9234,0.9234,0.7154,0.4856,0.4364,0.524,0.6362,0.792,0.8386,0.9644,-0.4368,0.1238,0.0304,0.1844,-0.0228,-0.5378,-0.6036,-0.5354,-0.3762,-0.3964,-0.4444,-0.5278,-0.2676,-0.3738,-0.2172,-0.091,0.005,0.154,0.1742,0.7474,0.7146,1,0.9016,0.7854,0.8006,0.9874,0.8586,0.942,0.856,0.8788,0.851,0.8156,-0.4654,0.069,-0.0066,0.0846,-0.1046,-0.5658,-0.5278,-0.4678,-0.519,-0.5278,-0.4878,-0.5502,-0.2828,-0.4032,-0.3408,-0.2316,-0.118,-0.0958,0.0156,0.5122,0.5546,0.9132,0.853,0.6504,0.5812,0.7662,0.9154,1,0.9266,0.9866,0.8552,0.8908,-0.5334,0.067,0.0224,0.087,-0.02,-0.4888,-0.6316,-0.529,-0.663,-0.6674,-0.7166,-0.6184,-0.6004,-0.4554,-0.384,-0.2968,-0.2008,-0.1384,0.134,0.1764,0.5602,0.6272,0.9286,0.9062,0.663,0.6584,0.8884,0.875,1,0.9308,0.9242,0.9464,-0.63,0.1124,0.1028,0.0906,0.0472,-0.41,-0.451,-0.4558,-0.4922,-0.7292,-0.7146,-0.6276,-0.6058,-0.538,-0.6204,-0.3446,-0.393,-0.1704,-0.139,0.3664,0.4124,0.8548,0.8574,0.9298,0.9202,0.8476,0.8548,0.9976,1,0.896,0.8766,0.988,-0.8416,0.4356,0.528,0.01,0.1386,-0.4456,-0.3466,-0.5346,-0.4522,-0.7294,-0.6996,-0.6666,-0.6106,-0.802,-0.6238,-0.7722,-0.4522,-0.4126,-0.3268,-0.043,0.2476,0.6172,0.9274,1,0.7756,0.5478,0.66,0.7326,0.5016,0.4984,0.3828,0.4884,-0.8252,0.6992,1,0.4146,-0.3984,-0.4918,-0.0082,0.2114,-0.3862,-0.5082,-0.4594,-0.374,-0.309,-0.5326,-0.435,-0.4552,-0.5366,-0.4186,0.0894,0.6138,0.6138,0.3496,0.4552,0.3048,0.748,0.8048,0.6382,0.622,0.5326,0.4512,0.37,0.3822,-0.4118,0.1764,0.0588,0.2352,-0.2942,-0.4706,-0.1764,-0.2942,-0.5294,-0.1176,-0.2942,-0.1176,0.2942,0.1176,0.5294,0.4118,0.5882,0.8824,0.8236,1,0.8236,0.9412,1,1,0.5882,0.4118,0.4118,0.4706,0.4706,0.8824,0.8236,1,-0.5238,-0.0476,0,0.1428,-0.3334,-0.2858,-0.4286,-0.381,-0.1904,-0.619,-0.4762,-0.381,-0.5238,-0.1904,0.1428,0.0952,0.762,0.6666,0.619,0.8096,0.9524,0.9048,0.8572,0.7142,0.4762,0.1904,0.4762,0.4286,0.6666,0.5238,0.5714,1,-0.402,0.299,0.3196,0.134,0.1546,-0.0722,-0.0722,-0.1546,-0.1958,-0.2578,-0.2784,-0.2164,-0.134,-0.5052,-0.7114,-0.2372,-0.1546,-0.0722,0.031,0.3402,0.4846,0.8144,1,0.8144,0.9176,0.7526,0.8556,0.7526,0.897,0.8144,0.5876,0.5464,-1,-1,-1,-1,-0.8346,-0.7018,-0.7116,-0.6888,-0.705,-0.6596,-0.611,0.261,0.825,0.4004,-0.0438,0.0048,-0.0114,-0.141,-0.2156,-0.3226,-0.3776,-0.462,-0.679,-0.8476,-0.932,-0.9416,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9224,-0.8836,-0.8836,-0.8618,-0.8742,-0.8458,-0.755,0.175,0.807,0.7994,0.5024,0.509,0.5288,0.4012,-0.121,-0.632,-0.735,-0.7692,-0.8676,-0.9176,-0.9404,-0.949,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8734,-0.85,-0.79,-0.7734,-0.5634,-0.6034,-0.4168,-0.151,-0.1334,-0.2284,-0.0068,0.0066,0.0082,-0.0218,-0.35,-0.6434,-0.9018,-0.965,-0.85,-0.85,-0.96,-0.9668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2286,-0.6858,-1,-1,-0.9142,-0.1142,1,1,-0.2858,-0.8858,-0.9142,-0.8572,-0.8286,-0.7142,-0.0572,-0.2572,-0.5714,-0.5714,-0.5714,-0.6572,-0.6858,-0.1142,-1,-1,-1,-1,-1,-1,-1,-0.0222,-0.0102,-0.0166,-0.0266,-0.046,-0.0484,-0.0842,-0.0836,-0.0666,0.0568,0.3536,0.3836,0.4244,0.46,0.5126,0.628,0.7136,0.83,0.9368,0.9282,-0.7734,0.4236,-0.7568,-0.5752,-0.1324,0.474,0.648,-0.6666,0.5858,0.645,0.006,-0.0888,0.077,0.2544,0.574,0.6686,0.5858,0.5858,0.5502,0.787,0.4556,0.6804,0.4912,0.9408,1,0.432,0.3136,0.4912,0.5622,0.5266,0.4792,0.4438,0.3846,0.2544,0.432,0.7514,0.8344,0.503,0.3254,0.0414,0.5474,0.6106,0,-0.1052,0.0422,0.2,0.3052,0.621,0.4316,0.6106,0.6422,0.579,0.6736,0.5684,0.6842,1,0.9578,0.2422,0.5158,0.8,0.6106,0.6106,0.4422,0.779,0.6526,0.5368,0.6842,0.4948,0.7052,0.7474,0.5684,0.3368,0.3184,0.3782,0.0636,0.0112,0.0412,0.0038,0.1386,0.648,0.7378,0.7828,0.7454,0.558,0.3932,0.588,0.5132,0.7902,0.7978,0.5806,0.94,1,0.5806,0.6854,0.4756,0.5132,0.4082,0.558,0.4756,0.7154,0.5506,0.543,0.236,0.1086,-0.966,-1,1,-1,0.6,1,-1,-0.3666,-1,-0.191,0.7978,-0.1686,0.2808,0.3484,-0.236,0.3708,0.191,0.663,1,0.9102,0.3034,0.0338,0.9102,0.3932,0.2808,0.528,1,0.6404,0.0562,0.0338,0.2134,0.8202,0.5506,0.0562,-0.146,-0.2584,0.1236,-0.1012,-0.0562,0.0338,-0.6404,'22'
-0.4914,0.1386,0.0854,0.3168,0.1726,-0.3092,-0.5028,-0.313,-0.4914,-0.3928,-0.6242,-0.5522,-0.2676,-0.2182,-0.1954,-0.2068,0.0322,0.0436,0.4914,0.6812,1,0.8482,0.6016,0.7874,0.9544,0.6508,0.6204,0.4422,0.5636,0.6508,0.7382,0.9278,-0.4724,0.2802,0.2516,0.6646,0.5624,0.0512,-0.0798,-0.186,-0.362,-0.3742,-0.5174,-0.2842,-0.1984,0.0062,-0.0062,0.186,0.4602,0.6278,0.955,1,0.7874,0.8446,0.8936,0.8568,0.7506,0.632,0.4438,0.452,0.4028,0.456,0.6442,0.8078,-0.5462,0.4614,0.4514,0.98,0.9502,0.2568,0.227,-0.0774,-0.0922,-0.0124,-0.0274,0.2668,0.2618,0.6558,0.6708,1,0.985,0.586,0.636,0.4364,0.5112,0.6908,0.7856,0.3366,0.2618,-0.0324,0.0774,-0.1422,0.0174,0.197,0.3168,0.7806,-0.4986,0.4934,0.5466,0.9626,1,0.408,0.488,-0.2426,-0.088,-0.1786,-0.0346,0.504,0.7174,0.4666,0.5946,0.1574,-0.0026,-0.2586,-0.2426,-0.4666,-0.056,-0.0986,0.6054,0.52,-0.264,-0.312,-0.6374,-0.6534,-0.52,-0.3174,-0.136,0.264,-0.7874,0.6562,0.8062,0.7688,1,0.2376,0.5938,0.125,0.1062,-0.1812,0.2876,0.3062,0.175,-0.0438,-0.6062,-0.5124,-0.7188,-0.7812,-0.7624,-0.625,-0.5124,-0.3,-0.0438,-0.2,-0.2188,-0.2688,-0.4624,-0.6124,-0.6312,-0.1624,-0.1938,0.4376,-0.5736,0.7538,1,0.2972,0.1052,-0.045,0.4054,0.4054,0.087,0.3754,-0.051,0.003,-0.1592,-0.3694,-0.3334,-0.3274,-0.3694,-0.5556,-0.3394,-0.4294,-0.3094,-0.2732,-0.3454,-0.027,0.009,-0.1532,-0.4294,-0.5556,-0.5976,-0.8798,-0.5556,-0.3034,0.1386,0.5506,1,0.4232,-0.0862,-0.0786,0.4606,0.8576,0.2884,0.6254,0.6104,-0.2734,-0.0786,-0.3408,-0.5356,-0.3858,-0.603,-0.573,-0.8128,-0.4682,-0.5132,-0.8726,-0.6854,-0.6554,-0.5806,-0.6554,-0.7678,-0.7454,-0.6104,-0.161,-0.251,-0.4382,-0.4762,0.1428,0.0476,0.238,0.0952,-0.4762,-0.381,-0.3334,-0.5238,-0.4286,-0.4286,-0.4286,-0.4286,-0.238,-0.1904,-0.1904,-0.0476,0.1904,0.4286,0.7142,1,0.8572,0.7142,0.8096,0.9524,0.619,0.7142,0.4762,0.5238,0.6666,0.7142,0.8572,-0.4546,0.1364,0.1364,0.3182,0.1818,-0.3636,-0.5,-0.3182,-0.3636,-0.3182,-0.6364,-0.7272,-0.2728,-0.1818,-0.1364,-0.1364,0.0454,0.091,0.3636,0.7272,1,0.909,0.6364,0.7272,0.909,0.7272,0.6818,0.5,0.5454,0.7272,0.7728,0.9546,-0.4568,0.358,0.3334,0.7778,0.7038,0.2098,0.0864,-0.0864,-0.358,-0.1358,-0.358,0.0124,0.0124,0.2346,-0.037,0.3086,0.4814,0.926,0.7778,1,0.753,0.7778,0.9012,0.9506,0.7038,0.5308,0.432,0.4074,0.1358,0.358,0.432,0.6544,-0.215,1,1,1,1,1,1,0.465,0.3334,0.4254,0.4562,0.478,0.6578,0.8158,0.9518,0.8202,0.785,0.4254,0.2894,0.1228,0.1096,0.1228,-0.6974,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6058,1,1,1,1,1,1,1,1,0.8562,0.7884,0.7172,0.8836,0.609,0.286,0.168,-0.034,-0.2552,-0.3586,-0.546,-0.5332,-0.5234,-0.84,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8368,-0.7034,-0.5468,-0.6268,-0.71,-0.5768,-0.3034,-0.1134,-0.07,-0.2134,-0.3234,-0.32,-0.1826,-0.345,-0.6426,-0.5726,-0.7476,-0.775,-0.8726,-0.8826,-0.83,-0.825,-0.86,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,-0.4572,-0.2,0.0572,-0.0286,-0.5142,-0.8858,-0.9714,-1,-1,-0.7142,-0.2,-0.2572,-0.2572,-0.4,-0.7428,-0.7142,-0.7428,-0.8286,-0.7714,-0.2858,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.1614,0.1784,0.209,0.248,0.2688,0.2972,0.3406,0.3964,0.4736,0.4998,0.7986,0.812,0.803,0.7752,0.7538,0.7232,0.668,0.4078,-0.042,-0.2464,-0.8534,-0.0942,0.798,0.6366,0.7754,0.7416,1,-1,-0.1238,0.133,0.3074,0.3212,0.2432,0.2614,0.3486,0.7844,1,0.9678,0.9174,0.9036,0.7982,0.7522,0.7936,0.9404,0.9862,0.9908,0.7936,0.7156,0.4954,0.3166,0.3028,0.2156,0.3944,0.2064,0.5046,0.5184,0.4036,0.399,0.2844,-0.1788,-0.0746,0.4436,0.6134,0.4992,0.3646,0.3558,0.6194,0.9122,0.9122,0.7716,0.8418,1,0.7862,0.7364,0.9062,0.9356,0.631,0.4934,0.1626,-0.0806,-0.1566,-0.2914,-0.3324,-0.18,-0.0952,-0.0308,0.0396,0.1888,0.1244,0.0248,-0.0366,-0.3674,-0.092,0.592,0.9486,0.7794,0.6508,0.886,1,0.6764,0.5956,0.8272,0.967,0.9852,0.7096,0.8162,0.886,0.9154,0.6874,0.5258,0.0624,-0.272,-0.3456,-0.5772,-0.1838,-0.125,-0.272,-0.364,-0.2206,0.033,-0.0662,-0.2904,-0.125,-0.2684,1,1,-1,-1,1,-1,-1,0.0666,-1,0.3076,0.5642,0.641,0.7692,0.9488,0.6666,0.6666,0.6924,0.4102,0.5384,0.4872,0.3334,0.4872,0.1538,1,0.6924,0.5898,0.2052,0.2308,0.2308,0.4358,0.6924,0.4102,0.1794,0.4616,0.5128,0.3334,0.3846,0.4616,0.3076,0.2308,-0.6924,'23'
-0.4188,0.3056,0.4364,0.849,0.6806,0.3408,0.1422,0.3032,0.2352,0.4138,0.5598,0.6982,0.4566,0.5472,0.283,0.3384,0.3786,0.3912,0.3762,0.434,0.5648,0.6378,0.8742,1,0.7584,0.3862,0.2754,0.3158,0.3938,0.4114,0.5194,0.605,-0.528,0.1122,0.028,-0.0094,-0.2032,-0.8014,-0.9532,-0.8154,-0.6378,-0.5912,-0.722,-0.6378,-0.1776,-0.2594,-0.257,-0.222,0.1028,0.1426,0.3388,0.8574,0.9954,0.9206,1,0.8902,0.8926,0.4602,0.4066,0.43,0.3038,0.3738,0.4814,0.6074,-0.474,0.1892,0.1348,0.2304,0.1,-0.3414,-0.4934,-0.7044,-0.5718,-0.413,-0.6066,-0.476,-0.1696,-0.0696,-0.163,-0.0934,0.2348,0.2652,0.5978,0.7956,1,0.95,0.8392,0.8478,0.9804,0.9674,0.9566,0.7934,0.7066,0.6914,0.7652,0.95,-0.5738,0.134,0.1476,0.4546,0.4448,0.0988,0.083,-0.2434,-0.2552,-0.2922,-0.2826,-0.0128,0.0048,0.2434,0.2806,0.6384,0.6754,0.7342,0.7772,0.8984,0.9746,0.8846,1,0.8652,0.7028,0.4174,0.4916,0.4038,0.4996,0.5464,0.654,0.7986,-0.5916,0.3818,0.4348,0.7508,0.8454,0.4486,0.5894,0.1672,0.2688,-0.0126,0.338,0.5086,0.8916,0.767,0.744,0.7208,0.4094,0.4764,0.5202,0.6494,0.571,0.7462,0.7208,0.8292,0.6194,0.3518,0.2734,0.4348,0.4026,0.5202,0.6656,1,-0.8356,0.729,0.9056,0.5098,0.8326,0.522,1,0.8934,0.8964,0.9696,0.4856,0.6652,0.2938,0.175,0.041,-0.105,-0.1142,-0.2816,-0.236,-0.2602,-0.0746,-0.2694,0.3942,0.4094,-0.0564,0.172,-0.0806,-0.2086,-0.2846,0.0684,0.1294,0.443,-0.4554,0.6026,1,0.259,-0.2902,-0.4152,0.5312,0.7142,0.067,-0.1786,-0.5624,-0.3438,-0.4018,-0.6072,-0.5938,-0.933,-0.6876,-0.7724,-0.7724,-0.9242,-0.6026,-0.7456,-0.7098,-0.6518,-0.875,-0.5,-0.6428,-0.8928,-0.8572,-0.8438,-0.741,-0.4642,-0.4,0.3,0.45,0.85,0.75,0.7,0.75,0.8,0.85,1,0.85,0.6,0.5,0.35,-0.15,0.15,0.2,-0.1,0.1,0.05,0.15,0.4,0.35,0.8,0.8,0.55,0.45,0.25,0.2,0.45,0.55,0.85,-0.8334,0.0556,0.3888,0.7778,0.5556,0.4444,0.4444,0.6112,0.6666,0.7778,0.9444,0.8888,0.3888,0.2222,-0.1112,-0.3888,0,-0.2222,0,0.1666,0.2778,0.3334,0.5,1,0.9444,0.2778,0.1112,0.2222,0.2222,0.5,0.1112,0.2222,-0.1718,0.6768,0.7576,0.899,1,0.7172,0.9192,0.7374,0.7172,0.6364,0.899,0.9192,0.7576,0.8384,0.495,0.5152,0.2728,0.4546,0.3536,0.697,0.6768,0.798,0.8788,0.6566,0.798,0.5152,0.4546,0.3334,0.6364,0.596,0.798,0.8586,-0.9454,-0.9278,-0.7792,0.5234,0.329,0.3464,-0.0842,-0.6524,-0.7748,-0.8558,-0.683,0.6284,0.2328,-0.3312,-0.3378,-0.1804,0.0666,0.2524,0.0296,-0.2962,-0.4382,-0.6,-0.7202,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9584,-0.5868,-0.2344,0.941,1,1,-0.039,-0.802,-0.8794,-0.9184,-0.8038,0.178,0.263,0.0434,-0.0252,0.6242,0.868,0.3098,-0.0426,-0.4914,-0.7248,-0.8098,-0.8672,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9134,-0.79,0.5366,-0.22,-0.24,-0.3934,-0.65,-0.8568,-0.76,-0.87,-0.81,-0.5586,-0.3048,-0.0616,-0.1432,-0.1078,-0.214,-0.3358,-0.5216,-0.8116,-0.85,-0.89,-0.8334,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.4858,1,1,1,0.6572,1,1,1,-0.6858,-0.2858,1,1,0.2,-0.4572,-0.8286,-0.6286,-0.4858,-0.4286,0.0572,0.0572,-0.2286,-0.9142,-0.7142,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.9914,0.9314,0.846,0.7816,0.6662,0.4508,0.2802,0.1084,0.1888,0.4978,-0.0414,-0.0726,-0.0952,-0.0742,-0.0316,0.0404,0.2088,0.3928,0.4934,0.0624,-0.84,0.6236,-0.8098,-0.2804,0.1032,0.21,0.2916,1,-0.645,-0.219,-0.1716,-0.0178,0.0296,-0.0296,0.006,0.361,0.6804,0.574,0.3728,0.2662,0.3136,0.2662,0.7278,0.7042,0.8224,0.6804,1,0.9526,0.8462,0.6686,0.4792,0.5266,0.3964,0.4674,0.503,0.3136,0.3728,0.4438,0.0178,-0.2544,-0.4424,-0.2728,-0.309,-0.297,-0.1758,-0.103,-0.0788,0.2484,0.4182,0.1394,-0.1516,0.3212,0.394,0.2,0.4546,0.5636,0.8546,0.7576,0.8304,0.9758,1,0.7818,0.794,0.709,0.5636,0.5152,0.6606,0.3818,0.6364,0.5758,0.4304,-0.103,0.0666,0.2134,0.28,-0.08,0.08,-0.12,-0.0266,0.48,0.5334,0.3466,0.3466,0.5466,0.6934,0.2266,0.4534,0.6266,1,0.7734,0.4266,0.3734,0.44,0.2534,0.2934,0.3866,0.0534,-0.04,0.0666,0.3066,0.2266,0.2934,0.32,0.1066,1,1,-1,-1,-1,-1,-1,-0.7,-1,-0.2054,-0.0136,0.0136,0.8082,1,0.5342,0.2054,0.2602,0.726,0.5616,1,0.4794,0.863,0.7534,0.6164,0.6164,0.8356,0.315,0.5616,0.452,0.5068,0.5616,0.8356,0.5616,0.4794,0.452,0.1506,0.3972,0.4794,0.2876,0.2054,-0.3972,'23'
-0.9562,-0.5256,-0.2408,-0.1898,0.2628,0.5766,0.4964,0.051,0.0146,0.0072,0,0.0656,0.0584,0.2992,0.5548,0.7956,0.9416,1,0.803,0.7226,0.8394,0.8686,0.9708,0.9854,0.9928,0.7664,0.73,0.854,0.7372,0.7226,0.6424,0.511,-0.703,-0.2786,-0.0928,0.0558,0.4802,0.5438,0.5014,0.4588,0.2786,0.236,0.2626,0.183,0.321,0.4536,0.6234,0.878,0.931,0.8832,0.8514,0.862,0.7984,0.9522,1,0.9946,0.9946,0.9098,0.8886,0.931,0.8462,0.8726,0.74,0.7824,-0.648,-0.2178,-0.0894,0.0614,0.4804,0.5364,0.6146,0.581,0.391,0.2794,0.2458,0.285,0.352,0.5252,0.5642,0.877,0.8492,1,0.877,0.8604,0.81,0.8492,0.9888,0.9944,0.9106,0.8212,0.743,0.6424,0.704,0.5978,0.6648,0.7206,-0.618,-0.2192,0,0.1292,0.4776,0.4888,0.7134,0.5956,0.4044,0.2192,0.2584,0.354,0.2752,0.4606,0.663,0.7472,1,0.9776,0.7134,0.5506,0.6742,0.8258,0.8764,0.927,0.8708,0.6966,0.5506,0.6404,0.6236,0.6124,0.691,0.6124,-0.608,-0.2386,0.0228,0.108,0.3978,0.5114,0.767,0.6136,0.4772,0.392,0.3466,0.4318,0.4034,0.4944,0.733,0.7898,1,0.8466,0.7614,0.6932,0.6988,0.7898,0.7954,0.8978,0.7046,0.6876,0.5682,0.483,0.517,0.5682,0.591,0.7614,-0.82,-0.3426,-0.038,0.0312,0.1764,0.737,0.8132,0.6194,0.564,0.3426,0.391,0.4048,0.5916,0.7094,0.9238,1,0.8616,0.7854,0.7232,0.737,0.8546,0.9238,0.9654,0.917,0.7786,0.5502,0.4672,0.4186,0.2734,0.4672,0.5224,0.6194,-0.9762,-0.589,-0.4308,-0.3044,-0.0434,0.5494,0.6758,0.5968,0.2806,0.1858,0.17,0.2174,0.5336,0.8024,1,0.9368,0.6206,0.502,0.668,0.6364,0.7234,0.8972,0.8736,0.6206,0.328,0.2806,0.2648,0.075,0.0434,0.3202,0.4624,0.5732,-0.7674,-0.5348,-0.2558,-0.1628,-0.0232,0.3954,0.4418,0.0232,-0.0698,-0.0232,-0.0698,-0.0232,0.0698,0.3024,0.5348,0.5348,0.8604,0.9534,0.907,0.3488,0.814,0.8604,0.5348,1,1,0.8604,0.5348,0.721,0.628,0.5348,0.5814,0.4418,-0.8868,-0.5472,-0.3962,-0.5094,0.5094,0.7358,0.6226,-0.0944,-0.0944,-0.0566,-0.132,-0.132,-0.0566,-0.0188,0.3208,0.9246,1,0.9622,0.5094,0.5094,0.6604,0.8114,1,0.849,0.7736,0.5472,0.6982,0.8114,0.7358,0.6982,0.5472,0.5094,-0.6956,-0.3478,0,0.087,0.326,0.5434,0.7826,0.5652,0.5434,0.4782,0.4348,0.5652,0.5652,0.587,0.8696,0.6956,0.913,0.826,0.8044,0.826,0.8696,1,0.9348,0.9782,0.7608,0.6086,0.5,0.5434,0.5434,0.6304,0.6086,0.7826,-1,-1,-1,-1,-1,-1,-1,-1,-0.9324,-0.9512,-0.6924,0.0956,0.5798,0.985,0.8424,0.6622,0.681,0.576,0.3134,0.1632,-0.1858,-0.4672,-0.8386,-0.8874,-0.9288,-0.9324,-0.9438,-0.94,-0.9288,-0.9362,-0.925,-0.895,-0.8536,-1,-1,-1,-1,-1,-1,-1,-1,-0.9854,-0.9842,-0.8488,-0.0714,0.8472,0.9252,0.56,0.4564,0.1594,0.1516,-0.0146,-0.0172,-0.357,-0.4986,-0.9014,-0.937,-0.9762,-0.9828,-0.9846,-0.9846,-0.9796,-0.9812,-0.9804,-0.853,-0.7044,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.9268,-0.7134,-0.355,-0.325,-0.35,-0.445,-0.415,-0.465,-0.475,-0.524,-0.38,-0.424,-0.6,-0.72,-0.6534,-0.8468,-0.9668,-0.96,-0.98,-0.9,-0.9,-0.9068,-0.8568,0.1032,-1,-1,-1,-1,-1,-1,-1,-1,-0.7428,1,1,1,1,0.0858,-1,-0.8572,-0.8286,-0.8572,-0.7142,0.3428,1,1,1,-0.0286,-0.3142,-0.4572,-0.9428,-0.9142,-0.8286,-0.8858,-0.0858,1,1,1,1,1,1,1,1,1,1,1,1,0.4214,0.3916,0.4228,0.4228,0.4334,0.4228,0.4252,0.4066,0.3564,0.0024,-0.68,-0.553,-0.8254,-0.5758,0.5214,0.8726,1,1,-0.282,-0.0256,0.3334,0.5384,0.3846,0.282,0.2308,0.2308,0.5384,0.641,0.8974,1,0.9488,0.8462,0.7948,0.9488,0.8974,0.641,0.3334,0.1282,0.1794,-0.1282,-0.0256,-0.0256,-0.1794,0.1282,0.1282,-0.1282,-0.077,0.1282,-0.1282,-0.5898,-0.3664,0.0496,0.6436,0.5842,0.307,0.307,0.307,0.4456,0.7426,0.703,0.7822,1,0.8614,0.703,0.703,0.8416,0.8614,0.5446,0.307,-0.0496,-0.0298,-0.4654,-0.208,-0.1684,-0.2674,-0.109,-0.5446,-0.0892,0.01,-0.0694,-0.1288,-0.5446,-0.4898,-0.0408,0.6326,0.6734,0.1428,0.1224,0.1632,0.6938,0.9592,0.8164,0.8776,1,0.9184,0.7346,0.7346,0.6326,0.3878,-0.0204,0.0816,-0.1632,-0.3266,-0.4286,-0.3062,-0.5102,-0.4082,-0.5918,-0.347,-0.2448,-0.2654,-0.2654,-0.551,-0.7756,0.8734,-1,-1,1,-1,-1,-1,-0.8334,1,-0.7334,-0.3778,-0.2888,-0.0962,-0.0962,0.0074,0.126,0.5408,0.7186,0.3186,0.3334,0.363,0.3482,0.3926,0.4074,0.3778,0.6148,0.5704,0.6888,0.5556,0.8518,0.8666,0.8222,0.9704,1,0.9408,0.4814,0.5556,0.4518,0.2148,0.126,-0.0074,'24'
-0.757,-0.2872,-0.2762,-0.0498,0.3536,0.4752,0.4806,0.464,0.127,0.1382,0.1104,0.1768,0.2762,0.337,0.4696,0.6796,0.79,1,0.8896,0.779,0.8012,0.8288,0.8398,0.8288,0.8288,0.7624,0.5636,0.5856,0.4198,0.4862,0.3038,0.337,-0.6578,-0.2632,-0.1368,0,0.3736,0.4316,0.5842,0.5632,0.3,0.1842,0.2684,0.279,0.3474,0.5264,0.5158,0.7632,0.9,1,0.8474,0.8578,0.8106,0.8368,0.9474,0.9052,0.9632,0.9052,0.7842,0.6684,0.6526,0.5422,0.4684,0.4106,-0.6272,-0.2948,-0.058,0.0378,0.335,0.3954,0.6826,0.5718,0.3954,0.33,0.335,0.3754,0.4006,0.5466,0.6776,0.7128,1,0.9396,0.6826,0.7128,0.8186,0.8136,0.8136,0.8892,0.7984,0.7582,0.6272,0.6726,0.5214,0.471,0.2544,0.4006,-0.6486,-0.2594,-0.0162,0.081,0.3676,0.5028,0.8324,0.7298,0.5622,0.5784,0.6108,0.5892,0.627,0.8,0.9352,1,0.9514,0.9136,0.7892,0.8108,0.9244,0.8972,0.9352,0.9676,0.919,0.8216,0.6864,0.6486,0.5676,0.5622,0.4108,0.3244,-0.6184,-0.193,-0.171,0.0264,0.3948,0.5264,0.7412,0.772,0.5,0.4956,0.4692,0.5526,0.715,0.7938,0.9912,1,0.8026,0.6536,0.6492,0.7192,0.7764,0.8508,0.9824,0.8992,0.8334,0.6448,0.6666,0.5922,0.5308,0.6052,0.5044,0.5394,-0.9882,-0.2824,-0.2824,-0.0058,0.3706,0.7058,0.6824,0.7942,0.7236,0.5352,0.4942,0.5942,0.9,1,0.9648,0.7824,0.8118,0.6648,0.6,0.9176,0.9352,0.9352,0.9176,0.7176,0.6412,0.547,0.5058,0.4176,0.3882,0.647,0.5236,0.5058,-0.8526,-0.3052,-0.2316,0.221,0.3106,0.5842,0.621,0.3264,0.3158,0.2106,0.2316,0.4158,0.5316,0.7632,1,0.8894,0.7684,0.7106,0.8316,0.7842,0.5842,0.4474,0.3578,0.2316,0.0106,-0.1158,-0.121,-0.1264,-0.0578,-0.1316,-0.0684,-0.0948,-0.8,-0.44,-0.32,-0.08,0.2,0.24,0.4,0.36,0.16,0.16,0.16,0.2,0.32,0.4,0.6,0.76,0.96,1,0.92,0.84,0.88,0.92,0.96,0.92,0.96,0.88,0.68,0.6,0.44,0.48,0.24,0.16,-0.6924,-0.1924,-0.1154,0.0384,0.423,0.4616,0.7692,0.6154,0.1154,0,0,-0.0384,-0.077,0.1538,-0.0384,0.6924,0.8076,1,0.7308,0.5,0.577,0.5384,0.8076,0.6538,0.8076,0.577,0.5,0.423,0.2308,0.423,0.2308,0.1538,-0.6576,-0.1892,-0.2252,-0.1172,0.1712,0.5496,0.6036,0.6936,0.4954,0.4054,0.1892,0.4954,0.6936,0.6756,1,1,0.5136,0.4954,0.4594,0.5676,0.6756,0.8018,0.928,0.7838,0.5856,0.4414,0.4414,0.3334,0.4234,0.2792,0.2792,0.4414,-1,-1,-1,-1,-1,-1,-1,-1,-0.924,-0.906,-0.877,0.4936,0.6998,0.5118,0.6492,0.6854,0.8482,0.9892,0.6456,0.5082,-0.1356,-0.378,-0.7938,-0.877,-0.9168,-0.9386,-0.9024,-0.9494,-0.924,-0.9422,-0.9168,-0.8048,-0.8156,-1,-1,-1,-1,-1,-1,-1,-1,-0.9876,-0.986,-0.9566,0.2426,0.2786,0.2796,0.2918,0.4404,0.658,0.9642,0.3218,0.0568,-0.527,-0.696,-0.8556,-0.962,-0.9808,-0.9862,-0.9822,-0.9884,-0.9874,-0.9876,-0.987,-0.906,-0.879,-1,-1,-1,-1,-1,-1,-1,-1,-0.9628,-0.9068,-0.9368,-0.3,-0.4,-0.325,-0.296,-0.296,-0.336,-0.332,-0.412,-0.44,-0.4,-0.392,-0.24,-0.7134,-0.78,-0.92,-0.8334,-0.9268,-0.91,-0.91,-0.9268,-0.7534,0.2366,-1,-1,-1,-1,-1,-1,-1,-1,-0.3142,-0.5428,1,1,1,-0.8,-0.8286,-0.8,-0.7714,-0.5714,0.0572,0.8,1,1,1,1,-0.4858,-0.8286,-0.9714,-1,-0.8572,-0.9428,0.2858,1,1,1,1,1,1,1,1,1,1,1,1,0.187,0.187,0.2032,0.1998,0.2332,0.2644,0.2842,0.2696,0.1572,-0.3004,-0.68,-0.5058,-0.9898,-0.1564,0.3242,0.2634,0.2684,1,0.121,0.07,0.516,0.2356,0.6306,0.8598,1,0.465,0.3758,0.5542,0.5414,0.2994,0.3122,0.2738,0.2102,0.5286,0.4522,0.121,0.4778,0.1848,0.1464,0.2612,0.363,0.1974,0.1592,0.3758,0.3376,-0.0192,0.0574,0.2356,0.2102,-0.3376,0.2296,0.5408,0.3334,0.4518,0.8222,0.4962,1,0.437,0.5852,0.4814,0.2,0.437,0.5852,0.1112,0.4814,0.5852,0.7482,0.4814,0.6444,0.763,0.2148,0.6888,0.4962,0.4518,0.4962,0.363,0.3482,0.1556,0.6444,0.6592,0.3334,-0.0222,0.1278,0.0978,0.1578,0.3534,0.8196,0.3834,0.4436,0.6692,1,0.8948,0.985,0.8346,0.8948,0.6692,0.579,0.7594,0.5488,0.5488,0.4586,0.4586,0.3684,0.4888,0.3082,0.4286,0.4586,0.5488,0.3384,0.2782,0.233,0.4736,0.1278,-0.1428,-0.996,1,-1,-1,-1,-1,-1,-1,1,-0.7322,-0.6062,-0.2756,-0.307,-0.0552,-0.1812,0.37,0.622,0.6378,0.37,0.1182,0.2126,0.1812,0.1024,0.1338,0.2914,0.2756,0.5434,0.5906,0.559,0.685,0.9056,1,0.8898,0.9056,0.9528,0.685,0.559,0.3544,0.4488,0.4804,0.3386,'24'
-0.3978,0.0822,0.9336,1,0.3846,0.7852,0.9072,0.3104,0.2414,-0.1486,-0.4032,-0.4694,-0.6764,-0.6552,-0.679,-0.5412,-0.5198,-0.4934,-0.4616,-0.4722,-0.3342,-0.2652,0.1618,0.4588,0.581,0.2122,0.1884,0.2282,0.6234,0.671,0.5862,0.6234,-0.527,-0.2194,0.0688,0.1064,0.401,0.7546,0.8642,1,0.9574,0.8166,0.5712,0.2668,0.126,0.0148,0.013,0.072,0.0212,0.0082,0.1096,0.126,0.2292,0.5058,0.5876,0.7152,0.6694,0.4174,0.3338,0.36,0.4714,0.5238,0.6138,0.6824,-0.5836,-0.2852,-0.0132,0.0196,0.1296,0.6344,0.7066,1,0.9262,0.9688,0.9426,0.9312,0.5524,0.377,0.3704,0.2672,0.1672,0.259,0.3344,0.346,0.5246,0.7902,0.8164,0.5738,0.4622,0.4114,0.3164,0.2786,0.346,0.3476,0.382,0.541,-0.62,-0.2972,-0.0152,0.0304,0.1368,0.5608,0.6638,0.9324,0.8902,0.7602,0.907,0.9476,1,0.8952,0.7146,0.4578,0.4256,0.4662,0.5422,0.5862,0.7636,0.7128,0.853,0.5574,0.4426,0.2668,0.1504,0.2078,0.2702,0.2128,0.1588,0.4628,-0.6204,-0.2126,0.1002,0.2108,0.5326,0.5818,0.7328,0.6204,0.6784,0.4834,0.4552,0.6028,0.7118,0.826,0.9912,1,0.949,0.8718,0.7276,0.8576,0.884,0.9226,0.9384,0.9226,0.747,0.5326,0.434,0.3814,0.3814,0.4464,0.4816,0.5888,-0.6142,-0.046,0.2248,0.5164,0.4638,0.5634,0.2136,0.1778,0.0498,0.0424,-0.0932,-0.0084,0.1948,0.2588,0.285,0.428,0.6048,0.8552,0.906,0.9774,0.9642,0.9962,0.9982,1,0.9172,0.8062,0.618,0.4844,0.5052,0.5032,0.507,0.6746,-0.7602,0.213,0.2386,0.6578,0.681,-0.0826,-0.0012,-0.4854,-0.4132,-0.6926,-0.5786,-0.3994,-0.2712,-0.4132,-0.2642,-0.3784,-0.2456,-0.1268,0.0314,0.4458,0.8346,0.7252,0.9254,0.8766,1,0.886,0.4506,0.2084,0.227,0.2456,0.1712,0.2736,-0.0666,0.6,1,1,0,0.6666,0.6666,-0.1334,0.2,0,-0.2,-0.2,-0.2666,-0.4,0.2,0.2666,0,0.0666,-0.1334,-0.2,0,-0.0666,0.2666,0.2666,0.1334,-0.0666,0.0666,-0.2666,0.4666,0.4666,0.3334,0.6,-0.2,0.5334,1,1,-0.2,0.6,0.6666,-0.1334,-0.0666,-0.2666,-0.2,-0.2,-0.1334,-0.2,-0.6666,-0.4,-0.2,-0.1334,-0.2,-0.2,-0.2666,-0.5334,-0.2666,0.3334,0.6,0.4666,0.2666,0.2,0.6,0.5334,0.2,0.5334,-0.5962,-0.2884,-0.0384,0,0.0576,0.577,0.673,0.9424,0.8462,0.9424,0.9808,1,0.6154,0.423,0.4808,0.2116,0.1154,0.3076,0.327,0.25,0.5962,0.827,0.8462,0.423,0.3846,0.4038,0.2116,0.2116,0.3462,0.1924,0.2116,0.6154,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7296,-0.6792,-0.1098,0.8044,0.1846,0.0176,-0.145,-0.211,-0.2308,0.167,0.1736,0.1296,-0.4374,-0.7626,-0.8726,-0.9494,-0.9516,-0.9516,-0.9516,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.925,-0.917,-0.7376,0.1606,0.703,0.9412,0.8586,0.7864,0.6422,0.4486,-0.0548,-0.4604,-0.7642,-0.9042,-0.9388,-0.9626,-0.9648,-0.9596,-0.9678,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.96,-0.9334,-0.8268,-0.632,-0.6668,-0.628,-0.5574,-0.5134,-0.4588,-0.255,-0.48,-0.6926,-0.6768,-0.42,-0.5734,-0.66,-0.6468,-0.8668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,-0.8,1,0.9714,-0.4,-0.9142,-0.6,-0.8286,-0.9714,-0.6572,-0.6858,-0.5428,-0.2286,-0.6858,-0.7714,-0.8,-0.9428,-0.9428,-0.8,-1,-1,-1,-1,-1,0.752,0.8094,0.877,0.9358,1,1,1,1,1,1,0.605,0.6718,0.7494,0.8234,0.8442,0.8936,0.872,0.7422,0.2914,0.148,-0.6134,0.8588,-0.915,-0.8914,-0.8652,-0.8192,-0.7456,-1,0.6,1,0.8222,0.763,0.2888,-0.1704,0.0666,-0.0666,0.3038,0.2,-0.1556,-0.0222,0.1408,-0.0666,0.4074,0.2592,0.4074,-0.0518,-0.0814,-0.274,-0.2148,0.0666,0.0074,-0.1556,-0.1852,0.0666,0.037,-0.1408,-0.3038,-0.1704,-0.126,-0.6444,0.5666,1,0.6888,0.8556,0.2444,0.5,0.3112,0.2222,0.2112,0.1556,0.2444,0.4,0.3556,0.2444,0.3666,0.4,0.3556,-0.1222,-0.2334,0.2666,0.1222,0.0778,0.1888,0.2334,0.1556,0.0666,0.0666,0.1888,0.0444,0.1666,-0.1,-0.3666,0.4942,1,0.5978,0.8506,-0.115,-0.0344,-0.0804,0.0114,-0.2068,-0.2644,-0.115,0.2528,0.5288,-0.0804,0.3334,0.3104,0.5172,-0.1034,-0.4828,-0.5978,-0.1034,0.0574,-0.3908,-0.0114,-0.2644,-0.1954,-0.3448,-0.2298,-0.3334,-0.2298,-0.3334,-0.6322,-0.983,1,-1,-1,-1,0,-0.6,-1,-1,-0.5192,0.0962,-0.2692,-0.173,-0.25,-0.1924,0.1346,0.0384,-0.1538,0.423,0.9616,0.5192,0.7884,1,0.0384,0.0384,0.3462,0.4038,0.2308,0.1346,0.2692,-0.1538,0.173,0.1538,-0.2308,-0.173,-0.3654,-0.1924,0.1538,-0.0576,-0.1154,-0.5384,'25'
-0.361,0.2412,0.9268,1,0.1048,0.3778,0.4642,-0.238,-0.4442,-0.4842,-0.6938,-0.6174,-0.6838,-0.5342,-0.8004,-0.8536,-0.7072,-0.6772,-0.8202,-0.7604,-0.6506,-0.4708,-0.0916,0.1648,-0.025,-0.1914,-0.0184,0.0648,0.218,-0.1148,-0.178,0.035,-0.487,-0.119,0.4644,0.5306,0.7352,0.8594,1,0.7436,0.7228,0.2948,0.0838,-0.1376,-0.214,-0.3154,-0.3444,-0.2368,-0.2782,-0.1624,-0.1458,-0.0776,0.1934,0.4498,0.6194,0.6918,0.7022,0.5636,0.4746,0.5636,0.7042,0.6526,0.3858,0.6774,-0.6612,-0.3482,-0.0538,0.0026,0.2558,0.675,0.7998,0.894,0.894,1,0.8682,0.5654,0.4184,0.3722,0.1994,0.1804,0.2096,0.2284,0.2524,0.3636,0.5586,0.6766,0.9144,0.7656,0.6612,0.615,0.5688,0.5414,0.355,0.379,0.1924,0.2078,-0.6748,-0.3532,-0.0422,0.0158,0.1916,0.5922,0.7276,0.9122,0.9174,0.898,0.8892,1,0.8348,0.812,0.5062,0.4008,0.4674,0.413,0.4254,0.5906,0.7768,0.8208,0.9174,0.8154,0.666,0.529,0.5448,0.4974,0.3744,0.4446,0.4078,0.3902,-0.686,-0.3168,0.02,0.1094,0.3226,0.5718,0.747,0.783,0.8344,0.7126,0.6442,0.7316,0.9372,0.9942,0.9734,0.903,0.842,0.6022,0.629,0.863,0.844,1,0.9182,0.9562,0.7526,0.6612,0.6004,0.5128,0.5566,0.6746,0.5794,0.724,-0.6968,-0.1804,0.1128,0.2972,0.5984,0.6578,0.545,0.4734,0.2438,0.082,0.168,0.2808,0.3546,0.4734,0.539,0.67,0.8872,0.9734,0.8996,0.8812,0.9364,0.9262,1,0.9796,0.9058,0.6968,0.584,0.5144,0.5,0.584,0.5472,0.7028,-0.7454,0.2108,0.1768,0.5644,0.4428,0.256,0.0862,-0.0664,-0.2532,-0.5474,-0.4908,-0.389,-0.1712,-0.1288,-0.3042,-0.1514,-0.0496,0.1824,0.72,0.768,0.867,0.8444,0.9378,0.935,1,0.8586,0.3946,0.1796,0.2504,0.2842,0.2446,0.4144,0.3658,0.9512,0.9512,1,0.8536,0.7074,0.6098,0.2196,0.2682,0.2196,0.2682,0.317,0.6098,0.6098,0.0732,0.2682,0.4146,0.3658,-0.0732,0.3658,0.317,0.0732,0.3658,0.3658,0.1708,0.4634,0.3658,0.317,0.2196,0.2682,0.1708,-0.0244,0.0588,0.4706,1,1,0.5294,0.353,0.5294,0.1176,0.1176,-0.4706,-0.4118,0,0.1176,-0.0588,0,-0.2352,-0.2352,-0.1176,-0.1764,-0.0588,-0.2352,-0.2352,-0.0588,-0.0588,-0.2942,-0.7648,-0.0588,0.1176,0.1764,0.0588,-0.0588,0.0588,-0.6514,-0.3578,-0.0642,0.0092,0.3212,0.7248,0.8348,0.8716,0.89,1,0.89,0.266,0.3212,0.2478,0.0642,0.101,0.1192,0.1744,0.1376,0.2844,0.4862,0.633,0.8532,0.7432,0.688,0.6146,0.5596,0.578,0.523,0.5596,0.211,0.156,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.541,0.1498,0.6566,0.1736,-0.1038,-0.2076,-0.3094,-0.3074,-0.1516,-0.4292,-0.6368,-0.7904,-0.8842,-0.9442,-0.958,-0.9482,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8986,-0.7046,-0.0282,0.568,0.8804,0.7232,0.3722,0.0408,-0.337,-0.7366,-0.8776,-0.9328,-0.9666,-0.9722,-0.98,-0.9796,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9086,-0.893,-0.7372,-0.6,-0.5372,-0.4644,-0.4356,-0.483,-0.4944,-0.3254,-0.6,-0.7234,-0.6,-0.6834,-0.9534,-0.8868,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3428,0.4572,0.2572,-0.1428,-0.6858,-0.8,-0.8,-0.6286,-0.5142,-0.2286,-0.4572,-0.6572,-0.6858,-1,-0.8572,-0.5428,-1,-1,-1,-1,-1,-1,0.487,0.5112,0.5198,0.564,0.6202,0.7176,0.8782,1,1,1,0.0942,0.1064,0.167,0.2556,0.3432,0.4842,0.6262,0.7316,0.5528,0.2388,-0.6266,0.7176,-0.9788,-0.9322,-0.9058,-0.9008,-0.8942,-1,0.68,0.6,1,0.84,0.68,1,1,0.84,0.28,-0.28,0.52,1,0.92,0.68,0.04,1,1,0.52,0.36,0.68,0.36,0.68,0.76,0.68,0.76,1,0.76,0.76,0.2,0.52,0.44,0.12,-0.091,0.4546,0.5,0.091,0.591,0.6818,0.9546,0.7272,0.2272,-0.409,-0.0454,0.8636,0.2728,0.3182,0.5,0.5,0.7272,1,0.6364,0.5,0.5,0.7728,0,0,0.3636,-0.0454,-0.1364,0.5,0.2272,-0.1364,-0.4546,-0.409,0.8,1,0.76,0.72,0.52,0.56,0.8,0.48,0.32,0.32,0.36,0.44,0.68,1,0.96,0.92,0.56,0.72,0.72,0.76,0.8,0.68,0.56,0.56,0.36,0.36,0.72,0.56,0.52,0.6,0.16,0.12,-0.9142,1,-1,-1,-1,-1,-1,-1,-1,0.0204,0.4694,0.1836,0.3266,0.3674,0.1428,-0.102,0.0816,0.2244,0.204,0.8572,0.7346,0.9796,1,0.3878,0.3674,0.4286,0.5102,0.5102,0.4898,0.449,0.2858,0.102,0.3266,-0.0816,0.0408,-0.0204,-0.0816,-0.0204,0.0408,0.0408,-0.3674,'25'
-0.2614,0.3352,0.304,0.5568,0.3324,-0.2982,-0.5056,-0.412,-0.0624,-0.0852,-0.1676,-0.162,0.1506,0.071,0.3012,0.5056,0.6932,0.7982,0.9176,0.8438,0.8238,0.838,0.912,1,0.9688,0.5738,0.3664,0.3552,0.2982,0.4546,0.4716,0.6876,-0.3738,0.1658,0.0864,0.3622,0.1892,-0.4112,-0.5258,-0.4182,-0.3574,-0.3224,-0.3738,-0.3832,-0.0608,-0.1402,-0.0398,-0.0654,0.1472,0.299,0.4392,0.8412,0.944,0.9556,1,0.9626,0.9276,0.9088,0.7758,0.6004,0.4976,0.6402,0.6496,0.8014,-0.4434,0.0504,0.1058,0.2796,-0.0352,-0.5818,-0.5692,-0.597,-0.6826,-0.6776,-0.5492,-0.408,-0.345,-0.277,-0.3022,-0.189,-0.1764,-0.0528,0.2494,0.408,0.7456,0.879,0.995,0.9042,0.869,0.8968,0.9798,1,0.8388,0.8086,0.869,0.9672,-0.515,-0.093,0.1934,0.3016,-0.2036,-0.5578,-0.5578,-0.6934,-0.7438,-0.789,-0.7588,-0.593,-0.5126,-0.4498,-0.3694,-0.417,-0.294,-0.2512,-0.108,0.2438,0.3794,0.6784,0.686,0.7386,0.6708,0.6934,0.8744,0.9096,0.9422,0.8518,0.8518,1,-0.5164,-0.162,0.2554,0.2664,-0.5796,-0.7362,-0.695,-0.761,-0.7418,-0.838,-0.838,-0.7774,-0.717,-0.588,-0.555,-0.6346,-0.3956,-0.3654,-0.294,0.0138,0.2472,0.5358,0.794,0.6676,0.599,0.6402,0.8022,0.8764,0.816,0.7884,0.772,1,-0.485,0.018,0.473,0.3892,-0.4012,-0.7644,-0.8484,-0.7844,-0.6606,-0.7286,-0.8602,-0.7446,-0.7006,-0.6408,-0.6408,-0.7286,-0.517,-0.541,-0.545,-0.2336,0.1098,0.6408,0.7724,0.6886,0.6606,0.7006,0.8762,0.8962,0.7326,0.9202,0.8882,1,-0.4092,0.5108,0.69,0.4674,-0.5544,-0.6174,-0.5594,-0.443,-0.6514,-0.7628,-0.4916,-0.5448,-0.414,-0.4576,-0.6514,-0.569,-0.3656,-0.4334,-0.5738,-0.4382,-0.2204,0.046,0.5738,0.8112,0.632,0.3996,0.782,1,0.9322,0.8354,0.6126,0.8498,-0.3548,0.2904,0.2258,0.5484,-0.0322,-0.742,-0.4838,-0.2904,-0.0322,-0.2258,-0.2904,0.0322,0.0968,-0.0322,0.4838,0.8064,0.742,1,0.742,0.742,0.2904,0.5484,0.8064,0.613,0.742,0.4838,0.2258,-0.2258,-0.4838,0.1612,0.0322,0.2258,-0.3334,0.3334,0.1516,0.6364,0.2728,-0.697,-0.697,-0.7576,-0.1516,-0.2728,-0.3334,-0.1516,0.091,0.091,0.2122,0.9394,1,0.9394,0.9394,0.8788,0.697,0.8182,0.8182,0.9394,0.6364,0.6364,0.4546,0.4546,0.4546,0.3334,0.4546,0.5758,-0.3176,-0.0352,0.3412,0.3176,-0.3176,-0.6236,-0.7176,-0.9058,-0.6236,-0.7176,-0.8588,-0.647,-0.4824,-0.3648,-0.6,-0.6942,-0.3882,-0.3412,-0.1294,0.0118,0.3176,0.6,0.8824,0.7648,0.7412,0.5294,1,0.9764,0.6706,0.8352,0.8824,1,-0.5526,-0.5494,-0.5526,-0.625,-0.5724,-0.6414,-0.648,-0.6678,-0.6644,-0.6184,-0.3224,0.5856,0.9606,0.6546,0.204,-0.0428,0.0394,-0.0624,-0.181,-0.4014,-0.5098,-0.556,-0.6546,-0.7368,-0.8092,-0.9144,-1,-1,-1,-1,-1,-1,-1,-0.806,-0.7856,-0.7728,-0.8096,-0.7682,-0.7644,-0.7496,-0.7228,-0.7274,-0.6666,-0.5916,-0.0734,0.819,0.7756,0.395,0.0994,0.0484,-0.1964,-0.4726,-0.661,-0.8042,-0.831,-0.854,-0.8706,-0.8466,-0.8994,-1,-1,-1,-1,-1,-1,-1,-0.8268,-0.68,-0.6068,-0.46,-0.4068,0.1,0.08,0.3232,0.3566,0.4466,0.0132,-0.3582,-0.2928,-0.06,-0.0964,-0.0438,-0.0274,-0.1492,-0.2918,-0.4618,-0.7568,-0.9384,-0.9068,-0.6234,-0.3534,-0.4768,-1,-1,-1,-1,-1,-1,-1,-0.4286,-0.9142,-0.9142,-0.8286,-0.8286,-0.8858,-0.9428,-0.9142,-0.9428,-0.5428,0.6,1,-0.5142,-0.7714,-0.8286,-0.8286,-0.8572,-0.9142,-0.9142,-0.0858,-0.9142,-0.8,-0.7428,-0.6,-0.7142,-0.4,-1,-1,-1,-1,-1,-1,-1,-0.1388,-0.1156,-0.0654,-0.0178,0.0046,-0.002,0.0222,-0.0092,-0.035,-0.1212,0.0906,0.1036,0.1614,0.2102,0.285,0.3816,0.4934,0.6494,0.8588,0.8844,-0.64,0.353,-0.5834,-0.4448,-0.2638,0.0596,0.2176,-0.5334,0.1102,0.1962,-0.1178,-0.4206,-0.3944,-0.2038,-0.099,0.0168,0.1178,0.0206,-0.013,0.043,0.185,-0.0056,-0.0392,-0.0168,0.0392,0.2786,0.2524,0.3832,0.4842,0.6374,0.7046,0.7196,0.6786,0.9776,0.8392,0.985,0.7384,0.8504,1,0.2636,-0.171,-0.1134,-0.5582,-0.5068,-0.4736,-0.4282,-0.2102,0.0016,0.165,-0.0712,-0.0984,-0.0984,0.0046,-0.1376,-0.1498,-0.1528,0.1438,0.1982,0.1892,0.3132,0.3464,0.5824,0.6218,0.6884,0.6702,0.7518,0.655,0.6248,0.6792,1,0.9456,0.183,-0.0612,0.0312,-0.1744,-0.6214,-0.4694,-0.5142,-0.225,0.1236,0.389,0.1506,0.1952,0.2906,0.2668,0.1982,0.1862,0.1058,0.237,0.3562,0.2698,0.3234,0.4992,0.5798,0.8092,0.7526,0.7228,0.8272,0.7676,0.8688,0.7288,1,0.9284,0.1952,-0.902,-1,1,-1,1,1,-0.2,0.7666,-1,0.0394,0.1182,-0.1182,-0.1024,-0.0236,0.1024,0.0236,0.0078,-0.0552,0.37,0.433,0.7166,0.748,1,0.9528,0.5906,0.496,0.6536,0.8582,0.8268,0.7322,0.9842,0.9842,0.6378,0.7638,0.3386,0.3228,0.1812,-0.1496,-0.1654,-0.244,-0.3386,'26'
-0.3512,0.277,0.2622,0.4844,0.2712,-0.3926,-0.4162,-0.3274,-0.286,-0.283,-0.2386,-0.2712,0.0756,-0.0252,0.0696,0.2652,0.5408,0.7334,0.8726,0.8548,0.9466,0.7748,0.7748,1,0.997,0.7008,0.6592,0.4934,0.3896,0.6296,0.5318,0.6712,-0.3868,0.1668,0.0816,0.3428,0.154,-0.3816,-0.5266,-0.4514,-0.4618,-0.4514,-0.3454,-0.392,-0.097,-0.2264,-0.1228,-0.0996,0.0478,0.2032,0.273,0.8318,0.8602,0.9276,0.894,0.8164,0.7336,1,0.8552,0.8214,0.731,0.8292,0.775,0.8188,-0.4578,0.0696,-0.0074,0.112,-0.092,-0.4776,-0.5298,-0.4776,-0.4552,-0.4826,-0.4328,-0.495,-0.306,-0.4652,-0.2686,-0.2612,-0.1492,-0.0896,0.005,0.5672,0.5896,1,0.918,0.7214,0.6766,0.8782,0.8756,0.985,0.7662,0.8258,0.7612,0.7462,-0.4932,0.0928,0.0334,0.1422,0.0112,-0.5526,-0.686,-0.555,-0.691,-0.607,-0.7132,-0.6416,-0.2806,-0.236,-0.2658,-0.2386,-0.1174,-0.1396,0.147,0.2632,0.6094,0.733,1,0.864,0.7776,0.8516,0.9778,0.8442,0.827,0.7454,0.8072,0.8788,-0.6404,0.0656,0.0524,0.126,0.0708,-0.4094,-0.4646,-0.5144,-0.5696,-0.6456,-0.748,-0.6482,-0.601,-0.265,-0.3622,-0.1574,-0.2572,-0.0552,-0.0262,0.4698,0.412,0.8818,0.777,0.9238,0.8372,1,0.9292,0.8924,0.8032,0.811,0.7296,0.8766,-0.672,0.488,0.508,0.348,0.372,-0.404,-0.492,-0.512,-0.452,-0.62,-0.696,-0.78,-0.612,-0.632,-0.792,-0.7,-0.676,-0.624,-0.38,0.148,0.316,0.82,1,0.616,0.772,0.852,0.968,0.656,0.56,0.232,0.224,0.328,-0.8702,0.3246,0.439,-0.7454,-0.6832,-0.2676,-0.2052,-0.3818,-0.3818,-0.6624,-0.522,-0.6936,-0.2052,-0.2884,-0.5948,-0.6624,-0.5272,-0.0182,0.1948,0.5636,0.9376,0.948,0.548,0.252,0.387,0.7974,1,0.5376,0.3714,0.1532,-0.1324,-0.0338,-0.4546,0.3334,0.394,-0.1516,-0.0304,-0.3334,-0.4546,-0.5152,-0.394,-0.9394,-0.394,-0.0304,0.0304,0.0304,0.1516,0.2728,0.5758,0.8788,0.8788,0.5758,0.6364,0.5758,0.6364,1,1,0.7576,0.697,0.2728,0.091,0.2122,0.2728,0.4546,-0.3,0.2,0.3,0.6,0.3,-0.7,-0.45,-0.3,-0.2,-0.15,-0.1,-0.05,0,0,0.15,0.55,0.5,0.95,0.75,0.8,0.65,0.7,0.9,1,0.7,0.65,0.65,0.55,0.45,0.45,0.65,0.55,-0.5056,0.146,0.1236,0.146,0.1012,-0.3484,-0.3258,-0.618,-0.5506,-0.7304,-0.5056,-0.5956,-0.7528,-0.5506,-0.5956,-0.236,-0.236,-0.2808,-0.2584,0.3708,0.4158,0.8202,0.8202,0.663,0.7078,0.9776,1,0.573,0.6404,0.5956,0.663,0.6404,0.1228,-0.0974,-0.3348,-0.5,-0.7162,-0.8474,-0.8984,-0.9322,-0.8984,-0.9152,-0.8178,0.661,0.9534,0.8348,0.4958,0.2966,0.4788,0.2162,-0.017,-0.2246,-0.3602,-0.7372,-0.9194,-0.894,-0.8856,-1,-1,-1,-1,-1,-1,-1,-1,-0.605,-0.6782,-0.7202,-0.6706,-0.6706,-0.6448,-0.591,-0.6082,-0.6158,-0.6082,-0.6384,-0.126,0.2658,0.4748,0.5748,0.6524,0.9602,0.69,0.0258,-0.6082,-0.7448,-0.8676,-0.9278,-0.9386,-0.9452,-1,-1,-1,-1,-1,-1,-1,-1,-0.7434,-0.6468,-0.5968,0.2832,0.87,1,1,1,1,1,1,-0.392,-0.276,-0.4128,-0.2092,-0.2346,0.04,0.1726,-0.1092,-0.6092,-0.7528,-0.491,-0.76,-0.7134,-0.82,-1,-1,-1,-1,-1,-1,-1,-1,-0.1714,-0.3714,0.5142,0,-0.9428,-0.9142,-0.8858,-0.8572,-0.9714,-0.7714,1,1,-0.4286,-0.9714,-1,-0.9142,-0.9142,-0.8572,0.0286,0,-0.6858,-0.4572,-0.6572,-0.8286,-0.8,-1,-1,-1,-1,-1,-1,-1,-1,0.0082,0.037,0.0358,0.0404,0.0446,0.045,0.0338,0.0376,0.0164,0.095,0.3842,0.408,0.4286,0.4688,0.4886,0.571,0.6702,0.795,0.931,0.8854,-0.7734,0.2824,-0.6264,-0.5382,-0.2002,-0.0108,0.1636,-0.125,-0.2068,-0.2068,-0.5452,-0.4974,-0.5248,-0.4872,-0.3812,-0.282,0.0222,-0.2924,-0.1794,-0.265,-0.0872,-0.1556,0.0086,0.0838,0.0838,0.3744,0.3504,0.3744,0.5112,0.7982,0.7606,0.6786,0.812,0.9966,0.8838,0.918,0.8974,1,0.9966,0.4974,-0.7378,-0.7456,-0.748,-0.5116,-0.4114,-0.3136,-0.239,0.0282,0.1876,0.0026,-0.0334,-0.0514,0.0308,-0.0052,0.0746,0.1002,0.2108,0.27,0.167,0.3598,0.4678,0.653,0.7276,0.676,0.6992,0.8586,0.8174,0.833,0.784,1,0.9846,0.5732,-0.8596,-0.8126,-0.7382,-0.6006,-0.5812,-0.5152,-0.416,-0.4408,0.0166,-0.0716,-0.0688,-0.1404,0.3002,0.1294,-0.0358,-0.0524,0.0578,0.4104,0.3278,0.4132,0.4932,0.7356,0.7934,0.7356,0.6888,0.7878,0.7108,0.7246,0.887,1,0.9918,0.551,-0.845,-1,1,-1,0.8,1,-1,0.7666,-1,0.0322,0.2474,0.2474,0.4624,0.4408,0.3118,0.7634,0.8924,1,0.7634,0.4408,0.5054,0.5914,0.7204,0.6344,0.7634,0.9354,0.5054,0.1612,0.1612,0.0538,0.0968,0.4408,0.2688,0.2904,0.3334,0.613,0.4624,0.1828,0.4838,-0.2044,-0.3764,'26'
-0.3018,-0.005,0.4672,0.7876,0.8752,0.5414,0.3456,0.0994,-0.0624,-0.1264,-0.1366,-0.0016,-0.0556,-0.032,0.1906,0.3828,0.6222,0.865,0.8988,0.7066,0.6796,0.6964,0.8246,1,0.9562,0.7942,0.6662,0.6256,0.6392,0.656,0.8482,0.892,-0.3274,0.2,0.5292,0.9116,0.8832,0.6814,0.1716,-0.1752,-0.4018,-0.2212,-0.4194,-0.2176,-0.239,-0.1646,0.0902,0.37,0.5964,0.8584,1,0.83,0.7132,0.685,0.8548,0.7416,0.7416,0.7098,0.4514,0.338,0.3628,0.3274,0.4796,0.5362,-0.3524,0.2242,0.516,1,0.9182,0.4734,0.0676,-0.4378,-0.5552,-0.4234,-0.4484,-0.306,-0.3524,-0.2846,0.0142,0.21,0.4234,0.6868,0.9894,0.936,0.758,0.7686,0.7188,0.854,0.8398,0.7652,0.573,0.4306,0.3238,0.299,0.3808,0.4022,-0.3542,0.0982,0.5352,0.9158,0.9002,0.0328,-0.0266,-0.1576,-0.2606,-0.4852,-0.482,-0.3354,-0.2512,-0.1856,-0.0826,0.014,0.1888,0.5382,0.8908,1,0.7504,0.7504,0.7536,0.7848,0.869,0.791,0.5352,0.4446,0.404,0.3478,0.482,0.4258,-0.3648,0.2118,0.6612,0.7622,0.7492,-0.0652,-0.228,-0.3518,-0.3452,-0.5928,-0.7492,-0.557,-0.4364,-0.2574,-0.1108,-0.1074,-0.0326,0.3746,0.9022,0.9804,0.8958,0.71,0.6384,0.7296,1,0.8014,0.632,0.3942,0.1954,0.3616,0.4496,0.3388,-0.2212,0.3452,1,0.8726,0.3204,0.0194,-0.1186,-0.3026,-0.3946,-0.547,-0.6744,-0.6318,-0.4514,-0.3734,-0.3132,-0.2248,-0.1116,0.1716,0.6496,0.8266,0.9752,0.8868,0.8088,0.8726,0.9964,0.8478,0.5788,0.4726,0.377,0.2566,0.3346,0.1824,-0.0096,0.619,0.8438,1,0.318,-0.1086,-0.261,-0.5124,-0.5466,-0.7142,-0.7104,-0.4896,-0.5124,-0.4742,-0.539,-0.5848,-0.482,-0.139,0.1504,0.4476,0.8552,0.878,0.642,0.6152,0.8286,0.6152,0.3638,0.158,-0.0096,-0.0514,-0.0134,-0.158,-0.3192,0.234,0.3618,0.3618,0.4042,0.4468,0.4042,0.1914,0.2766,0.234,0.234,0.3618,0.3618,0.4042,0.4894,0.5744,0.7446,0.7872,0.8298,0.8724,0.8724,0.8724,0.9574,1,1,0.9574,0.8724,0.7872,0.7872,0.7446,0.8298,0.9148,-0.4444,0.1666,0.3888,0.8888,0.9444,0.4444,0.4444,0.1666,-0.0556,-0.6112,-0.4444,-0.2778,-0.1112,-0.0556,0.2222,0.2222,0.7222,0.7778,1,0.5556,0.7222,0.7222,0.7778,0.9444,0.7778,0.7778,0.6112,0.7222,0.6666,0.5,0.8334,0.8888,-0.2394,0.2676,0.5492,0.9154,0.8592,0.662,0.183,-0.183,-0.2676,-0.155,-0.3802,-0.155,-0.2394,-0.183,0.0986,0.2958,0.6056,0.8028,1,0.8592,0.8028,0.5774,0.8028,0.6338,0.7464,0.831,0.5774,0.3522,0.0704,0.2112,0.3522,0.662,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.973,-0.9716,0.1168,0.9082,0.7826,0.861,0.8704,0.846,0.5166,0.291,0.2532,0.3896,-0.133,-0.6448,-0.919,-0.9446,-0.969,-0.9636,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9758,-0.9758,0.2558,0.6938,0.4202,0.3592,0.399,0.5052,0.3108,0.071,-0.1114,-0.1452,-0.4878,-0.7772,-0.9232,-0.9232,-0.9522,-0.9462,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9868,-0.9068,-0.584,-0.64,-0.6382,-0.7364,-0.6856,-0.7238,-0.6782,-0.8238,-0.9492,-0.9638,-0.902,-0.81,-0.4534,-0.4,-0.6134,-0.6868,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,-0.8572,-0.8572,-0.9714,-1,-1,-1,-1,-0.9142,-0.6,-0.3142,-0.1714,-0.7142,-0.7428,-0.6858,-0.7428,-1,-1,-1,-1,-1,-1,0.8288,0.8488,0.851,0.8358,0.8344,0.8164,0.803,0.7702,0.7022,0.4612,0.2906,0.3024,0.3178,0.341,0.334,0.3394,0.3516,0.3846,0.474,0.6378,-0.4266,0.2824,-0.9746,-0.3048,0.5282,0.0806,0.527,1,-0.01,0.2278,-0.0694,0.3862,0.604,0.802,0.6238,0.9406,1,0.604,0.5248,0.7426,0.3862,0.6832,0.6832,0.3268,0.6832,0.7624,0.3862,0.604,0.703,0.3466,0.2872,0.8812,0.7822,0.505,0.604,0.307,0.2872,0.4258,0.0892,-0.7228,0.3554,0.3554,0.438,0.5538,0.4214,0.7024,0.9504,0.8678,0.6364,0.5702,0.6034,0.6034,0.8842,0.8678,0.8678,0.5538,0.5042,0.4214,0.752,0.6528,0.5206,0.5206,0.8182,0.6034,0.8678,0.719,0.5868,0.3884,0.6528,0.405,0.438,-0.719,0.1804,0.2622,0.3114,0.1476,0.5574,0.754,0.6066,0.8852,0.7214,0.7214,0.5082,0.5574,0.7378,0.4098,0.918,0.7214,0.4426,0.4918,0.1804,0.6066,0.4754,0.8196,0.6886,0.8524,0.8688,1,0.705,0.246,0.1968,0.0164,0.0984,-0.4262,-1,1,-1,-1,-1,-1,-0.4,-1,-1,-0.3458,0.0654,0.0654,0.1588,0.1402,-0.0654,0.3272,0.0094,0.0654,0.4206,0.9814,0.9814,0.8318,0.8692,0.813,0.57,0.6636,0.6822,0.6636,0.944,1,0.8504,0.701,0.3458,0.1214,0.0842,0.4206,0.4206,0.3084,0.271,0.0654,-0.4018,'1'
-0.2136,0.0642,0.624,1,0.9786,0.641,0.1624,0.0642,-0.1452,-0.3034,-0.4102,-0.312,-0.2736,-0.3804,-0.1368,0,0.1794,0.4188,0.4914,0.4958,0.5086,0.5982,0.4146,0.53,0.4786,0.1838,0.2136,0.1026,0.0128,-0.0256,-0.017,0.2522,-0.247,0.1052,0.5748,1,0.915,0.5384,0.0648,-0.1296,-0.255,-0.4616,-0.5182,-0.3482,-0.4252,-0.2914,-0.081,0.1944,0.2186,0.3928,0.5264,0.494,0.5708,0.5466,0.4898,0.6114,0.5588,0.332,0.0688,0.0688,0.0446,-0.0284,0.1498,0.3158,-0.2802,0.4094,0.6854,1,0.8664,0.7844,0.2932,-0.1508,-0.4138,-0.4268,-0.431,-0.4008,-0.444,-0.25,-0.2198,0.25,0.2586,0.612,0.806,0.5604,0.7802,0.7414,0.5776,0.8448,0.819,0.5302,0.3578,0.3448,0.0818,0.2586,0.0818,0.4268,-0.3436,0.224,0.5598,1,0.8146,0.2934,0.1506,-0.166,-0.3514,-0.695,-0.61,-0.529,-0.3668,-0.2626,-0.2702,-0.224,0.0502,0.475,0.4478,0.363,0.3668,0.363,0.4518,0.5212,0.6912,0.417,0.0502,0.0926,-0.0232,0.139,0.058,0.3514,-0.297,0.297,0.5956,1,0.9344,-0.071,-0.0054,-0.2386,-0.4718,-0.7704,-0.9126,-0.6212,-0.6358,-0.552,-0.6976,-0.836,-0.3188,-0.1366,0.1912,0.173,0.173,0.2532,0.3334,0.4172,0.5082,0.4316,0.3296,0.2642,0.1948,0.122,0.1548,0.2932,-0.1264,0.4346,1,0.7774,0.8372,-0.0064,-0.1306,-0.1862,-0.4562,-0.7774,-0.8672,-0.7858,-0.8116,-0.8458,-0.6746,-0.8672,-0.6874,-0.1306,0.2292,0.3704,0.4518,0.4132,0.5246,0.5932,0.7944,0.5846,0.469,0.4004,0.1692,0.2334,0.1692,0.3148,0.3298,1,0.6782,0.705,0.201,0.0348,-0.2386,-0.4906,-0.571,-0.7426,-0.8552,-0.5442,-0.705,-0.555,-0.5656,-0.63,-0.4746,-0.3352,0.2064,0.4424,0.7908,0.7426,0.6676,0.7856,0.748,0.6246,0.362,0.067,-0.4852,-0.0294,0.0294,0.0616,-0.0526,0.421,0.6316,0.9474,1,0.6842,0.579,0.2632,-0.1052,-0.2106,-0.2106,-0.1052,0.0526,0.0526,-0.1578,-0.0526,0.3684,0.3684,0.6842,0.4736,0.579,0.5264,-0.5264,0.4736,0.3684,0.2106,0.421,0.1578,-0.0526,-0.0526,0.2632,0.5264,-0.1176,0.0588,0.647,0.9412,1,0.7648,0.2352,0.2352,0,-0.353,-0.353,-0.4118,-0.1764,-0.4118,-0.0588,0,0.4118,0.5882,0.5882,0.5294,0.5294,0.5294,0.4118,0.353,0.353,0.1176,0.5882,0.5294,0.2942,0.2352,0,0.4706,-0.2958,0.324,0.662,1,0.9436,-0.0704,-0.0422,-0.324,-0.4648,-0.7746,-0.9154,-0.324,-0.3522,-0.5774,-0.5212,-0.7184,-0.4366,-0.183,0.2394,0.2676,0.2112,0.4648,0.2958,0.0422,0.155,0.2958,0.4366,0.324,0.2394,-0.014,0.1268,0.2958,-1,-1,-1,-1,-1,-1,-1,-0.9678,-0.9634,-0.8888,0.1976,0.6692,0.7628,0.7892,0.6692,0.5812,0.7746,0.9576,0.6472,0.2166,-0.0688,-0.429,-0.8448,-0.9444,-0.962,-0.962,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9618,-0.9548,-0.602,0.9206,0.7316,0.789,0.788,0.7588,0.5396,0.799,0.9588,0.598,0.1336,-0.1678,-0.5156,-0.8282,-0.9006,-0.9126,-0.9236,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.9,-0.8634,-0.5368,-0.772,-0.772,-0.754,-0.764,-0.788,-0.786,-0.796,-0.818,-0.814,-0.8,-0.8146,-0.4668,-0.53,-0.5834,-0.7268,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3142,0.7142,1,1,0.0572,-1,-0.9428,-1,-1,-0.9428,-0.9142,-0.8572,-0.8572,-0.7142,-0.4286,-0.2286,-0.8858,-0.7428,-0.5714,-1,-1,-1,-1,-1,-1,-1,0.7918,0.7766,0.7622,0.7484,0.7266,0.716,0.7042,0.6982,0.6674,0.4346,0.4386,0.4094,0.404,0.399,0.432,0.3828,0.3396,0.3644,0.3914,0.5816,-0.3466,0.1882,1,0.9016,0.6804,0.7578,0.7668,1,-0.2676,-0.2112,0.2536,0.2394,0,0.1126,0.338,0.4226,0.4648,0.831,0.9296,0.9154,0.662,0.7888,0.8028,0.7888,1,1,0.9014,0.8028,0.3662,0.3522,0.0986,-0.0986,-0.1268,-0.2254,-0.0986,0.0704,0.1268,0.2112,0.0282,-0.5212,0.2564,0.3974,0.7052,0.3334,0.141,0.0898,0.359,0.5898,0.7564,0.9616,0.7948,0.923,1,0.8718,0.782,0.7052,0.8462,0.923,0.8206,0.6924,0.641,0.2948,-0.0898,-0.3462,-0.1538,0.077,0.4102,0.3718,0.1794,0.2564,0.2436,0.1538,0.2728,0.7062,0.944,0.5804,0.1608,-0.1328,0.007,0.1748,0.7482,0.8042,0.5804,1,0.972,0.6644,0.5804,0.7062,0.8602,0.7622,0.6364,0.5384,0.5384,0.3706,-0.1188,-0.3846,-0.5804,-0.049,0.3566,0.2308,0.2728,0.2728,0.2868,-0.063,1,-1,-1,1,-0.8,-1,-1,-0.7,-1,0.2592,0.3148,0.2222,0.2778,0.1852,0.2222,0.2038,0.2962,0.3334,0.926,1,1,0.7962,0.5926,0.537,0.5,0.6482,1,0.8518,0.3704,0.5186,0.7038,0.3334,0.2962,0.4074,0.3888,0,-0.1112,0.3704,0.0556,-0.0556,-0.537,'1'
0.0328,0.472,1,0.8598,-0.458,-0.5374,-0.715,-0.6588,-0.6122,-0.8412,-0.8552,-0.8224,-0.556,-0.5,-0.4392,-0.2664,0.0468,0.2898,0.4392,0.5046,0.257,0.3364,0.313,0.6728,0.701,0.813,0.4766,0.43,0.4532,0.6262,0.771,0.7336,-0.0712,0.5356,1,0.7908,-0.1758,-0.2468,-0.82,-0.6108,-0.5984,-0.8284,-0.795,-0.8702,-0.5942,-0.431,-0.6444,-0.2804,-0.2302,0.1088,0.6402,0.6192,0.318,0.4352,0.1924,0.4812,0.6652,0.703,0.615,0.5188,0.3472,0.431,0.4226,0.4226,-0.1836,0.4512,1,0.8322,-0.5464,-0.4784,-0.7552,-0.7778,-0.6734,-0.9048,-0.8912,-0.8548,-0.6962,-0.619,-0.474,-0.3742,-0.1882,0.0702,0.415,0.6826,0.6734,0.5874,0.1746,0.3786,0.746,0.7596,0.8368,0.6054,0.3922,0.5148,0.6508,0.5736,-0.091,0.3896,0.9826,0.8658,-0.5844,-0.4286,-0.6494,-0.6884,-0.593,-0.8614,-0.8398,-0.684,-0.5324,-0.5108,-0.433,-0.277,-0.0952,0.264,0.5022,0.8354,0.8398,0.671,0.5542,0.7576,0.8658,1,0.8874,0.7706,0.6364,0.8312,0.8312,0.6234,-0.2106,0.1448,0.7982,0.7106,-0.772,-0.7412,-0.807,-0.7236,-0.7412,-0.8992,-0.9474,-0.7676,-0.7632,-0.6008,-0.4606,-0.4562,-0.4518,-0.193,0.4518,0.7938,1,0.614,0.2062,0.4518,0.8202,0.7412,0.7062,0.522,0.4078,0.3904,0.3334,-0.0614,0.026,0.4846,0.9102,0.9054,-0.3428,-0.7258,-0.721,-0.6974,-0.7446,-0.7494,-0.9008,-0.8346,-0.8392,-0.6738,-0.3948,-0.4184,-0.5036,-0.305,0.0592,0.4468,0.877,1,0.6832,0.4658,0.688,0.8204,0.6122,0.4846,0.2482,0.0686,0.045,-0.2056,0.0808,0.8718,0.6546,0.8886,0.3204,-0.805,-0.7326,-0.7884,-0.766,-0.8998,-0.7884,-0.805,-0.649,-0.7548,-0.5654,-0.6992,-0.5878,-0.4374,-0.0194,0.0584,0.5154,0.7158,0.6268,0.8162,1,0.9052,0.6044,0.4318,0.3984,0.326,0.2312,0.209,0.125,0.4584,0.875,0.75,0.0416,0.0416,-0.4166,-0.0834,-0.0834,-0.2916,-0.4166,-0.4584,-0.4166,-0.4584,-0.2084,0.0416,0.125,0.5834,0.7916,0.5416,0.625,0.625,0.8334,1,0.8334,0.5834,0.25,0.4166,0.4584,0.5416,0.625,0.4166,0.24,0.72,0.92,0.84,-0.28,-0.24,-0.32,-0.48,-0.36,-0.44,-0.56,-0.56,-0.32,-0.2,0.04,-0.04,0.24,0.2,0.6,0.64,0.4,0.52,0.72,0.92,1,0.96,0.72,0.76,0.8,0.92,1,0.96,-0.12,0.28,0.7866,0.7066,-0.5466,-0.7066,-0.5466,-0.52,-0.7066,-0.9734,-0.8934,-0.44,-0.4934,-0.6,-0.4666,-0.44,-0.36,-0.2266,0.4666,0.7066,1,0.7866,0.0934,0.4134,0.7866,0.76,0.6,0.4134,0.4934,0.3866,0.1466,-0.2266,-1,-1,-0.962,-0.9716,-0.8942,-0.8304,-0.787,-0.745,-0.745,-0.7544,-0.4112,0.5074,0.7056,0.9878,0.8154,0.6594,0.4872,0.35,0.2008,0.0028,-0.1858,-0.3242,-0.6322,-0.9348,-0.9484,-0.947,-0.9648,-0.9674,-0.977,-0.9648,-0.9728,-0.966,-1,-1,-1,-0.9398,-0.948,-0.882,-0.8334,-0.7906,-0.7616,-0.7616,-0.7558,0.1134,0.6922,0.7246,0.9768,0.7974,0.6712,0.61,0.5764,0.4028,0.1238,-0.0914,-0.2396,-0.5278,-0.7372,-0.765,-0.8576,-0.8842,-0.9028,-0.9212,-0.9212,-0.9364,-0.9422,-1,-1,-1,-0.9068,-0.94,-0.9,-0.8734,-0.96,-0.9734,-0.9534,-0.9334,-0.7868,-0.8176,-0.8426,-0.87,-0.8226,-0.8026,-0.7926,-0.615,-0.7426,-0.7826,-0.8468,-0.7712,-0.33,0.26,-0.0034,-0.37,-0.4534,-0.52,-0.52,-0.6468,-0.8668,-0.8468,-1,-1,-1,-0.4572,-0.9428,-0.8,-0.9428,-1,-0.9714,-0.9714,1,1,1,-0.8572,-0.9142,-1,-1,-1,-0.7428,-0.5428,-0.6858,-0.7714,-0.7142,-0.4286,-0.4858,-0.3428,-0.4,-0.8286,-0.7714,-0.7428,-0.9142,-0.9714,-0.7142,-1,-0.874,-0.8942,-0.892,-0.8746,-0.8278,-0.819,-0.8246,-0.7974,-0.7656,-0.7188,0.7026,0.7034,0.7204,0.7514,0.7476,0.76,0.7416,0.752,0.8066,0.8564,-0.4666,-0.0588,0.6482,0.4954,0.7766,0.6712,0.625,1,0.3,0.4,0.4666,0.4,0.2666,0.4,0.5666,0.7666,0.9,0.9666,1,1,0.9334,0.8334,0.8,0.9,0.9,0.8666,0.8,0.8,0.7666,0.7334,0.7,0.6666,0.6666,0.6666,0.7,0.6334,0.5334,0.3666,0.2666,-0.1334,0.01,0.4654,0.3466,-0.0892,-0.2674,-0.1288,0.0496,0.2872,0.7822,0.802,1,1,0.5248,0.3664,0.5248,0.6634,0.6436,0.406,0.4852,0.4456,0.3268,0.2674,0.2674,0.1882,0.3466,0.406,0.406,0.4258,0.307,0.208,0.1486,-0.2476,0.619,0.8858,0.638,0.0096,0.0858,0.0096,0.0096,0.219,0.581,0.7904,0.8476,1,1,0.6572,0.8286,0.9048,0.981,0.8666,0.8476,0.6572,0.2952,0.162,0.1048,0.1428,0.0666,0.3714,0.3714,0.1428,0.0666,0.2952,0.0858,-0.0858,1,-1,-1,1,-1,1,-0.4,-0.8334,-1,-0.52,-0.216,-0.2,-0.328,-0.216,0.056,0.056,-0.024,0.12,0.408,0.904,0.728,0.936,1,0.696,0.632,0.44,0.696,0.744,0.968,0.984,0.568,0.712,0.6,0.424,0.248,0.248,0.328,0.184,0.2,0.264,0.104,'2'
0.0524,0.4936,1,0.9168,-0.472,-0.3744,-0.4792,-0.5914,-0.7252,-0.8734,-0.9746,-0.6636,-0.5298,-0.537,-0.3382,-0.3274,-0.056,0.2152,0.396,0.349,0.3562,0.2586,0.2008,0.5118,0.584,0.3924,0.3382,0.1212,0.0488,0.1826,0.3816,0.6564,-0.1654,0.4568,1,0.8382,-0.6258,-0.536,-0.759,-0.8706,-0.8742,-0.8706,-0.9028,-0.9928,-0.7158,-0.4856,-0.428,-0.3884,-0.2986,0.0612,0.3812,0.4496,0.3238,0.1654,0.1294,0.3526,0.3992,0.4676,0.2914,0.2518,0.1008,0.2302,0.0936,0.2518,-0.23,0.5614,1,0.786,-0.5722,-0.3726,-0.786,-0.7148,-0.6292,-0.7932,-0.8396,-0.7398,-0.8182,-0.5008,-0.5436,-0.5436,-0.2906,-0.2014,0.4154,0.5188,0.401,0.2264,0.2762,0.2122,0.5508,0.5686,0.3904,0.23,0.1836,0.1408,0.2406,0.1444,-0.2568,0.5798,1,0.7822,-0.3268,-0.4748,-0.8132,-0.6848,-0.6498,-0.9144,-0.786,-0.891,-0.6536,-0.7704,-0.8094,-0.6032,-0.463,-0.2762,0.1984,0.4514,0.5642,0.4436,0.2452,0.393,0.5214,0.467,0.4202,0.1634,0.2062,0.1518,0.284,0.1128,-0.2166,0.4566,1,0.8268,-0.3228,-0.6654,-0.7952,-0.756,-0.8386,-0.8346,-0.9606,-0.7638,-0.7402,-0.6142,-0.4882,-0.433,-0.2008,0.0276,0.3938,0.693,0.7756,0.5,0.5118,0.563,0.7678,0.7204,0.6732,0.4646,0.3426,0.4448,0.1418,-0.1142,-0.0514,0.3524,1,0.8972,-0.5238,-0.6838,-0.7028,-0.6762,-0.5542,-0.7562,-0.8666,-0.8286,-0.5086,-0.4666,-0.3942,-0.2952,-0.2724,0.0858,0.4286,0.8666,0.9086,0.8248,0.642,0.76,0.8896,0.7334,0.6458,0.6228,0.2266,-0.0476,-0.0134,0.082,0.322,0.9492,0.839,1,0.2204,-0.3516,-0.6568,-0.555,-0.75,-0.6526,-0.7204,-0.5932,-0.4958,-0.3644,-0.2372,-0.2162,-0.2882,-0.1864,0.0594,0.4026,0.6228,0.5296,0.394,0.5042,0.606,0.5678,0.4068,0.1398,-0.0508,-0.0508,-0.356,-0.3094,0.4838,0.8064,0.8064,0.9354,0.2258,-0.742,-0.4838,-0.2904,-0.2904,-0.613,-0.6774,-0.2258,-0.3548,-0.6774,-0.4838,-0.3548,0.0968,0.4194,0.1612,0.4194,0.8064,0.871,0.742,0.871,0.613,-0.1612,0.0968,-0.2904,-0.2904,-0.5484,0.4838,1,0.3962,0.585,1,0.9246,-0.0566,0.2076,0.0566,-0.132,-0.132,-0.2076,-0.3208,-0.0944,-0.2076,-0.0188,0.2452,0.1698,0.1698,0.4716,0.585,0.6226,0.5472,0.585,0.5472,0.7736,0.7358,0.5472,0.4716,0.5094,0.3584,0.5094,0.5472,0.7736,0.037,0.5802,1,0.8766,-0.605,-0.1852,-0.3334,-0.4074,-0.4568,-0.5556,-0.6296,-0.6296,-0.3334,-0.3334,-0.1852,-0.037,-0.1112,0.1604,0.5062,0.5556,0.5556,0.358,0.3086,0.432,0.5308,0.5802,0.5308,0.4814,0.3828,0.3334,0.284,0.4814,-1,-1,-1,-1,-1,-1,-1,-1,-0.8818,-0.9144,-0.6862,0.5992,0.8438,0.8642,0.9308,0.8002,0.625,0.4552,0.3424,0.2038,-0.0176,-0.2758,-0.625,-0.9266,-0.9498,-0.9634,-0.9688,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8698,-0.9002,-0.005,0.6736,0.8732,0.7892,0.8396,0.6736,0.5176,0.3786,0.4324,0.3786,0.0712,-0.2698,-0.5636,-0.8508,-0.9102,-0.9136,-0.926,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9234,-0.9334,-0.66,-0.882,-0.834,-0.85,-0.87,-0.864,-0.868,-0.832,-0.81,-0.82,-0.874,-0.9546,-0.8134,-0.33,-0.5334,-0.6934,-0.66,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,0.8572,-0.8858,-0.8,-1,-1,-1,-1,-0.9714,-0.7428,-0.5142,-0.5428,0,0,-0.5142,-1,-0.8,-1,-1,-1,-1,-1,-1,-0.669,-0.6844,-0.6916,-0.7022,-0.6962,-0.696,-0.7014,-0.653,-0.6348,-0.6666,0.4956,0.5224,0.5528,0.56,0.5736,0.5794,0.6218,0.6324,0.6672,0.7094,-0.44,0.1882,0.2104,-0.0016,0.5974,0.9058,1,1,-0.1208,0.077,0.3406,0.3846,0.3846,0.5824,0.8682,0.956,0.956,0.956,1,1,1,0.934,0.8682,0.934,0.8902,0.8242,0.912,0.8682,0.8902,0.8242,0.7362,0.7142,0.7362,0.6704,0.6924,0.6264,0.4946,0.3846,0.2308,-0.1868,-0.191,0.4158,0.3932,-0.146,-0.0112,0.1012,0.5506,0.528,1,0.9326,0.5956,0.618,0.663,0.3932,0.3932,0.8652,0.573,0.4158,0.7304,0.573,0.5506,0.4832,0.4158,0.3484,0.4832,0.236,0.4158,0.4158,0.3708,0.3484,0.2134,0.0786,0.625,0.7,0.2,-0.2,-0.5,-0.175,-0.1,0.3,0.675,0.7,1,0.875,0.675,0.45,0.25,0.55,0.95,0.45,0.625,0.45,0.35,0.35,0.4,0.125,0.4,0.45,0.45,0.25,0,0.225,0.125,-0.125,1,-1,-1,1,-1,-0.4,-0.6,-0.8,-1,-0.1888,-0.1888,-0.1608,0.2448,0.063,0.1188,0.2168,0.1748,0.3846,0.5244,0.8182,0.7902,1,0.5384,0.4406,0.3286,0.3286,0.4826,0.8042,0.7762,0.7902,0.6084,0.2448,0.2868,0.1748,0.1888,0.3146,0.5804,0.4406,0.1468,0.4406,0.3146,'2'
-0.1086,0.388,0.6674,0.6762,-0.3836,-0.6718,-0.6852,-0.7074,-0.6542,-0.7428,-0.9646,-0.663,-0.6408,-0.4412,-0.2506,-0.255,-0.0954,0.357,0.6274,0.7472,0.8094,0.8138,0.725,1,0.969,0.6008,0.3658,0.286,0.113,0.3436,0.2106,0.2994,-0.1542,0.2806,0.9328,0.8418,-0.668,-0.5612,-0.7352,-0.8024,-0.6916,-0.7826,-0.7786,-0.6758,-0.5256,-0.6048,-0.498,-0.3084,-0.249,0.166,0.3992,0.502,1,0.9842,0.6008,0.7708,0.8696,0.8894,0.6048,0.577,0.4546,0.3794,0.4388,0.498,-0.0624,0.293,0.8904,0.777,-0.5464,-0.4216,-0.588,-0.6786,-0.9736,-0.9018,-0.8072,-0.588,-0.4518,-0.4972,-0.4404,-0.293,-0.2288,0.0434,0.2892,0.6598,0.9432,1,0.5954,0.7278,0.826,0.8186,0.7504,0.6748,0.467,0.4896,0.5048,0.4026,-0.145,0.2118,0.803,0.7324,-0.5836,-0.777,-0.7844,-0.6692,-0.5836,-0.71,-0.922,-0.8848,-0.7286,-0.6506,-0.4646,-0.3122,-0.275,-0.104,0.3346,0.6952,1,0.8922,0.9144,0.829,0.9628,0.9442,0.751,0.565,0.5056,0.3234,0.249,0.2118,-0.2546,0.0898,0.6254,0.5806,-0.5768,-0.7528,-0.7978,-0.8614,-0.7454,-0.7716,-0.9064,-0.6368,-0.6704,-0.6892,-0.6928,-0.5506,-0.367,-0.131,0.1536,0.4308,1,0.955,0.9064,0.764,0.809,0.809,0.5132,0.352,0.0374,0.0936,-0.0074,0.015,-0.0044,0.6062,0.7124,0.8452,-0.0176,-0.4868,-0.8274,-0.8186,-0.739,-0.6946,-0.6946,-0.6902,-0.6372,-0.6682,-0.615,-0.6548,-0.562,-0.2478,0.208,0.5176,0.8762,0.9204,0.8274,1,0.9602,0.469,0.3186,0.2654,-0.0796,-0.1372,-0.0664,0.1504,0.0062,1,0.9916,0.6268,0.5514,-0.413,-0.4716,-0.719,-0.8198,-0.9162,-0.694,-0.6562,-0.7904,-0.7106,-0.5556,-0.6352,-0.5094,-0.3626,-0.1278,-0.0818,0.4256,0.7232,0.6058,0.6688,0.828,0.7106,0.4004,0.0314,-0.0566,0.0062,0.1446,-0.0818,-0.1764,0.4706,0.4118,0.1764,-0.1764,-0.8236,-0.7648,-0.7648,-0.7058,-0.9412,-0.7058,-0.7058,-0.8824,-0.647,-0.647,-0.5882,-0.353,-0.1764,0.1176,-0.2942,0.2352,0.647,0.9412,1,0.8236,0.2942,0.0588,0.0588,-0.1176,0.2352,0.2352,0.2352,0.2682,0.5122,0.9024,0.9024,0.122,-0.122,-0.0732,-0.122,-0.122,-0.4634,-0.4146,0.0244,0.0244,-0.2196,0.0732,0.2682,0.4634,0.6098,0.9512,0.756,1,0.8048,0.756,1,0.8048,0.6098,0.6098,0.3658,0.2196,0.3658,0.3658,0.4634,-0.1904,0.1666,0.5238,0.5,-0.381,-0.5238,-0.4762,-0.619,-0.5238,-0.5,-0.9048,-0.8096,-0.6428,-0.5476,-0.4524,-0.5,-0.3096,-0.0238,0.0952,0.4048,0.9048,1,0.7142,0.6666,0.7142,0.5238,0.5,0.238,0.0952,0.0952,-0.0238,-0.0476,-0.9594,-0.9558,-0.9668,-0.9576,-0.9502,-0.965,-0.952,-0.952,-0.9244,-0.9298,-0.8118,0.38,0.8542,0.9558,0.7306,0.4742,0.358,0.273,0.1254,0.037,0.1236,0.1606,-0.8118,-0.9446,-0.9558,-0.952,-1,-1,-1,-1,-1,-1,-1,-0.7446,-0.5472,-0.3378,-0.4636,-0.3148,-0.075,0.08,0.1368,0.948,0.8002,-0.0448,0.3754,0.908,0.7228,0.4976,0.4382,0.5146,0.5302,0.253,0.0084,-0.0182,-0.0738,-0.7846,-0.879,-0.8934,-0.8934,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,1,-0.5356,-0.5378,-0.6978,-0.769,-0.8178,-0.7334,-0.6424,-0.6578,-0.888,-0.936,-0.914,-0.5368,-0.3968,-0.4868,-0.5334,-1,-1,-1,-1,-1,-1,-1,1,-0.2286,-0.6286,-0.7142,-0.7142,-0.8858,-0.8858,-0.8,-0.6572,0.0572,1,1,-0.5142,-0.7428,-0.9428,-0.9714,-1,-1,-0.7714,-0.8,-0.5714,0.3142,0.2858,-0.5142,-0.8572,-0.8286,-1,-1,-1,-1,-1,-1,-1,-0.613,-0.613,-0.6014,-0.5776,-0.5926,-0.615,-0.6586,-0.6416,-0.672,-0.612,0.5938,0.5958,0.6258,0.6804,0.7184,0.7454,0.7764,0.7864,0.8364,0.834,-0.52,0.0824,-0.0932,-0.1452,0.2276,0.6828,0.7894,-0.5084,-0.7422,-0.7086,-0.501,-0.5136,-0.5178,-0.3522,-0.3354,-0.153,-0.1384,-0.195,-0.1236,-0.174,-0.1154,-0.174,-0.0964,-0.0398,0.042,0.241,0.3732,0.3564,0.4172,0.455,0.61,0.5954,0.7966,0.803,1,0.9182,0.7946,0.5262,0.2768,0.0042,-0.7676,-0.7264,-0.5076,-0.4428,-0.3402,-0.3094,-0.294,-0.1624,-0.0222,0.0274,0.0838,0.123,0.229,0.294,0.2718,0.306,0.347,0.4,0.3812,0.53,0.5214,0.6684,0.6478,0.641,0.8068,0.8854,0.9606,1,1,0.7846,0.7658,0.3146,-0.9226,-0.6632,-0.6486,-0.56,-0.4262,-0.344,-0.336,-0.1378,-0.0088,-0.0104,-0.0154,0.402,0.3764,0.1636,0.1474,0.2394,0.32,0.3586,0.3682,0.4214,0.5358,0.5698,0.6502,0.7954,0.9082,0.8776,0.8502,0.9516,1,0.7922,0.6552,0.1588,-0.8426,-1,1,-1,-1,-1,-1,1,-1,-0.2348,-0.113,0.2696,0.2,0.1652,0.0608,0.4608,0.426,0.3392,0.8608,0.7914,0.5304,0.826,0.9826,0.3392,0.4782,0.6348,0.7392,0.6348,0.6,1,0.8434,0.5652,0.1826,0.0608,0.2522,-0.026,0.0956,0.6174,0.1826,0.0086,-0.687,'3'
-0.0488,0.4488,1,0.9318,-0.3854,-0.356,-0.5512,-0.961,-0.5804,-0.7074,-0.9074,-0.5318,-0.5952,-0.483,-0.2586,0.1268,0.3366,0.7318,0.6732,0.7464,0.756,0.7366,0.9074,0.8586,0.6976,0.2634,0.083,0.0536,-0.0196,0.1952,0.1512,0.283,-0.1194,0.1976,0.93,0.8272,-0.6708,-0.3868,-0.5432,-0.8478,-0.7572,-0.7408,-0.7202,-0.6584,-0.7326,-0.6214,-0.3498,-0.0906,0.1358,0.358,0.8724,0.7902,0.8724,0.6584,0.8478,1,0.7818,0.6378,0.3046,0.3292,0.1564,0.181,0.2716,0.1234,-0.1242,0.2168,0.9116,0.8232,-0.6464,-0.68,-0.76,-0.7306,-0.861,-0.7978,-0.739,-0.6926,-0.5578,-0.5032,-0.3222,-0.28,-0.0822,0.221,0.8442,0.8442,1,0.6674,0.6378,0.8694,0.9368,0.8864,0.4232,0.5158,0.4442,0.2084,-0.0864,0.0568,-0.227,0.1124,0.7342,0.685,-0.685,-0.8854,-0.9018,-0.771,-0.7506,-0.816,-0.8692,-0.951,-0.7014,-0.587,-0.2802,-0.3946,-0.2802,0.0962,0.6974,0.82,1,0.861,0.5788,0.7056,0.5788,0.6728,0.4356,0.3374,0.3866,-0.3128,-0.186,-0.092,-0.2024,0.1818,0.6446,0.6404,-0.4504,-0.7108,-0.781,-0.7934,-0.7438,-0.748,-0.8802,-0.781,-0.7892,-0.7768,-0.4256,-0.372,-0.19,0.1034,0.3842,0.8016,0.8058,0.872,0.7728,0.8966,1,0.6158,0.4132,0.19,-0.219,-0.1694,0.0124,0.0826,0.0102,0.503,0.701,0.7738,-0.0788,-0.495,-0.5556,-0.9636,-0.907,-0.7616,-0.899,-0.7898,-0.6202,-0.6484,-0.6324,-0.293,-0.2,0.0384,0.2526,0.8666,1,0.9758,0.8546,0.9838,0.8868,0.705,0.2324,0.0344,0.1112,0.1718,0.1758,0.1394,0.1628,1,0.8688,0.742,0.4298,-0.267,-0.5248,-0.7194,-0.7556,-0.9774,-0.9276,-0.7602,-0.5566,-0.5384,-0.4932,-0.4616,-0.4796,-0.3076,0.1266,0.448,0.457,0.5702,0.8506,0.647,0.6108,0.3438,0.1946,0.0316,-0.1086,-0.2172,-0.1222,-0.1946,0.1794,0.6924,0.5898,0.4872,0.1794,-0.1794,-0.9488,-0.641,-0.282,-0.3846,-0.4872,-0.1794,-0.3334,-0.282,-0.4872,0.1282,0.077,0.2308,-0.0256,-0.4358,0.4358,0.8974,1,0.5384,0.0256,0.077,0.077,0.2308,-0.0256,0.3334,0.1282,0.1794,0.077,0.6924,0.9488,0.8974,-0.0256,-0.4358,-0.5384,-0.7948,-0.3334,-0.282,-0.3334,-0.3334,-0.1794,0.077,0.0256,0.3846,0.5384,0.9488,1,0.7948,0.641,0.7436,0.6924,0.6924,0.8462,0.1794,0.1794,0.2308,-0.2308,0.0256,0.2308,0.3846,-0.091,0.2728,0.7142,0.6884,-0.4026,-0.5584,-0.7402,-0.7402,-0.3506,-0.4546,-0.7142,-0.6364,-0.7402,-0.7142,-0.1688,-0.1688,-0.039,0.1948,0.5844,0.8442,1,0.974,0.6624,0.7922,0.7922,0.6104,0.4806,0.5064,-0.065,-0.065,-0.039,0.1688,-0.969,-0.9706,-0.972,-0.9632,-0.9602,-0.9558,-0.9646,-0.969,-0.9588,-0.9544,-0.8526,0.5092,0.9484,0.8158,0.7288,0.58,0.4738,0.3132,0.1304,0.0508,-0.011,-0.185,-0.8306,-0.9616,-0.9734,-0.975,-0.9676,-1,-1,-1,-1,-1,-1,-0.9348,-0.7652,-0.5396,-0.3922,-0.322,-0.348,-0.1454,0.1064,0.5346,0.4414,-0.0952,0.3922,0.9058,0.7442,0.7062,0.6198,0.5126,0.4302,0.3962,0.2358,-0.1184,-0.2778,-0.8054,-0.8906,-0.9008,-0.8976,-0.9268,-1,-1,-1,-1,-1,-1,-0.5334,0.58,1,1,1,1,1,1,1,1,1,-0.6646,-0.7068,-0.729,-0.7778,-0.8246,-0.7712,-0.74,-0.6978,-0.6778,-0.9312,-0.952,-0.6,-0.4668,-0.4868,-0.5934,-0.6534,-1,-1,-1,-1,-1,-1,1,1,0.6572,-0.4286,-0.8858,-0.9714,-0.8286,-0.8286,-0.7714,-0.5428,1,1,-0.5714,-1,-1,-1,-1,-0.8286,-0.9428,-0.1714,-0.3142,0.2572,0.1142,-0.5428,-0.8572,-0.9714,-0.5142,-1,-1,-1,-1,-1,-1,-0.6372,-0.6058,-0.5998,-0.5652,-0.5398,-0.5392,-0.5554,-0.5466,-0.6388,-0.5936,0.319,0.3376,0.3494,0.3744,0.3964,0.4238,0.4674,0.5264,0.5952,0.6438,-0.5334,0.0588,-0.1846,-0.0842,0.2798,0.6308,0.8606,-0.4166,-0.6346,-0.6458,-0.5346,-0.4824,-0.1964,-0.2372,-0.2396,-0.1646,-0.1782,-0.1056,-0.1056,0.0466,0.0874,0.0716,0.1736,0.1396,0.2622,0.3144,0.4324,0.521,0.5052,0.6868,0.7366,0.723,0.7662,0.8094,0.7548,1,0.9274,0.9342,0.8162,0.1418,-0.7592,-0.7644,-0.6106,-0.3442,-0.2826,-0.2604,-0.1938,-0.1562,-0.0334,0.0248,0.035,0.1972,0.199,0.2366,0.1956,0.1734,0.3612,0.3356,0.4176,0.4006,0.5644,0.5338,0.6858,0.6994,0.7524,0.7814,0.6772,0.8754,0.942,1,0.848,0.3954,-0.885,-0.7452,-0.57,-0.43,-0.37,-0.361,-0.292,-0.2194,-0.0566,-0.0956,0.046,0.2708,0.1592,0.0796,0.1558,0.1522,0.2868,0.4496,0.4992,0.4672,0.5628,0.6054,0.5824,0.8124,0.8424,0.784,0.777,0.9716,1,0.977,0.7328,0.554,-0.675,-1,1,-1,-1,-1,-1,1,-1,-0.3334,-0.091,-0.1112,-0.091,-0.3536,0.1314,0.192,0.0102,-0.293,0.899,0.8384,1,1,0.7374,0.3334,0.3536,0.1516,0.2526,0.9394,0.9798,0.8586,0.6364,0.2324,0.1718,-0.1314,0.1112,0.3334,0.3132,0.0304,0.0708,-0.091,-0.1112,'3'
0.1038,0.7218,0.9602,1,-0.0994,-0.4702,-0.6248,-0.713,-0.8234,-0.9072,-0.872,-0.8102,-0.788,-0.8278,-0.5674,-0.4614,-0.2538,0.139,0.6512,0.6644,0.5894,0.4084,0.5584,0.5718,0.8102,0.841,0.638,0.5408,0.4392,0.51,0.5188,0.0154,0.0336,0.411,1,0.9612,-0.3086,-0.351,-0.4286,-0.552,-0.8236,-0.9188,-0.7918,-0.8766,-0.6296,-0.492,-0.5308,-0.3722,-0.1288,-0.1852,0.1394,0.4216,0.6262,0.5908,0.157,0.3052,0.4992,0.806,0.7248,0.7496,0.3544,0.3792,0.2416,0.0088,0.037,0.351,1,0.9294,-0.2452,-0.432,-0.552,-0.672,-0.9576,-0.8906,-0.8554,-0.7884,-0.4638,-0.4286,-0.4956,-0.492,-0.4638,-0.3898,0.2592,0.6366,0.9118,0.6614,0.2874,0.1816,0.6896,0.6614,0.6966,0.686,0.4392,0.1534,0.0158,0.104,0.0272,0.4264,1,0.9496,-0.407,-0.752,-0.8798,-0.783,-0.686,-0.7326,-0.7636,-0.6512,-0.6124,-0.6162,-0.593,-0.655,-0.69,-0.4186,-0.1434,0.283,0.8876,0.8682,0.2364,0.5156,0.6046,0.752,0.8178,0.7442,0.2094,0.248,0.2946,0.3334,0.089,0.5466,1,0.9872,-0.2584,-0.5932,-0.767,-0.7838,-0.6314,-0.5848,-0.8602,-0.894,-0.7162,-0.517,-0.6144,-0.5806,-0.4916,-0.1484,0.1228,0.8262,0.822,0.9872,0.6694,0.6356,0.9026,0.7882,0.6652,0.4576,0.3516,0.2204,0.2712,0.2416,-0.1198,0.3668,0.3632,0.4562,-0.2666,-0.406,-0.7746,-0.8534,-0.8534,-0.6028,-0.703,-0.6566,-0.6924,-0.7066,-0.6314,-0.3668,-0.3452,-0.102,0.3524,0.6566,1,0.9464,0.7638,0.839,0.7924,0.8568,0.7638,0.5098,0.4276,0.4132,0.3596,0.381,0.0382,1,0.9694,0.5878,0.4694,-0.2824,-0.439,-0.5306,-0.748,-0.687,-0.7442,-0.5878,-0.4732,-0.7404,-0.603,-0.584,-0.4466,-0.2252,-0.0688,0.1756,0.5648,0.8168,0.7672,0.6068,0.7138,0.7748,0.7938,0.477,0.416,0.3168,0.2022,0.3512,0.282,0.641,0.8462,0.8974,0.1282,-0.282,-0.1794,-0.5384,-0.3846,-0.4358,-0.7948,-0.6924,-0.5898,-0.4358,-0.282,-0.1282,0.2308,0.3846,0.1794,0.5384,0.5384,0.4872,0.5898,0.7436,1,0.8462,0.077,0.3846,0.3334,0.4358,0.4358,0.3334,0.1052,0.3684,0.9474,0.8948,0,-0.3684,-0.7368,-0.579,-0.5264,-0.6842,-0.4736,-0.2106,-0.2632,-0.2632,-0.3158,-0.5264,-0.5264,0.421,0.6842,0.6316,0.3684,0.2106,0.3684,0.7894,1,1,0.6316,0.5264,0.4736,0.3684,0.4736,0.0526,-0.1794,0.2308,0.4102,0.4102,-0.3076,-0.5128,-0.8718,-0.7692,-0.7436,-0.641,-0.5128,-0.5128,-0.5642,-0.5128,-0.5128,-0.3334,-0.1794,-0.1282,0.1794,0.5898,0.718,1,0.8718,0.718,0.641,0.641,0.5898,0.3846,0.4358,0.4358,0.282,0.4616,-1,-1,-1,-1,-1,-1,-1,-0.9604,-0.9704,-0.8942,-0.4834,0.4764,0.7896,0.5426,0.4708,0.3282,0.1744,0.0952,0.0318,-0.0374,0.1926,0.2266,-0.794,-0.9492,-0.959,-0.9604,-0.959,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9508,-0.9596,-0.5248,0.458,0.22,0.423,0.2674,0.2736,0.2174,0.1024,0.0698,0.0294,0.718,0.1454,-0.0804,-0.7242,-0.8638,-0.8894,-0.9016,-0.9112,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9056,-0.8934,-0.63,0.6566,-0.724,-0.662,-0.69,-0.652,-0.688,-0.642,-0.562,-0.678,-0.354,-0.864,-0.8764,-0.05,0.06,-0.32,-0.33,-0.44,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.1428,1,1,1,1,-0.4572,-0.7142,-1,-1,-1,-1,-0.5428,-0.3714,-0.0858,-0.2286,0.4,0.2,-0.6572,-0.8858,-0.1714,-1,-1,-1,-1,-1,-1,-0.674,-0.6734,-0.6446,-0.6194,-0.5988,-0.5694,-0.5716,-0.5642,-0.6364,-0.6,0.6498,0.6594,0.67,0.7092,0.7236,0.7336,0.7412,0.7472,0.8196,0.8906,-0.5466,0.1882,0.4318,0.1348,0.0462,0.3394,0.5458,1,-0.4244,-0.2374,0.0936,0.1224,0.0216,-0.0936,0.036,0.0504,0.3094,0.482,0.3526,0.7266,0.7554,0.5828,0.4244,0.813,0.7266,0.928,0.928,0.9712,0.9856,1,0.928,0.928,0.7554,0.6546,0.6258,0.3956,0.3956,0.4388,0.1224,-0.3812,-0.5974,-0.4088,-0.5974,-0.585,-0.3962,-0.4968,-0.434,-0.2956,-0.0818,0.107,-0.1446,0.4088,0.434,0.1446,0.3082,0.4088,0.6478,0.761,0.7736,0.8238,0.8616,1,0.7232,0.8868,0.7484,0.8616,0.8616,0.7736,0.585,0.3082,0.346,-0.195,0.2738,0.3886,0.0192,-0.465,-0.605,-0.2484,-0.2484,-0.1974,0.0064,0.1848,0.223,0.465,0.5414,0.1974,0.3122,0.4778,0.5032,0.7452,0.7834,0.9618,1,0.898,0.8344,0.6178,0.6178,0.5032,0.656,0.6178,0.5032,0.4904,0.363,0.0192,1,-1,-1,1,-0.8,-1,-1,-0.7,-1,-0.569,-0.0518,-0.0862,-0.138,-0.2932,-0.138,0.069,-0.0172,0.2414,0.6206,0.9482,0.862,0.7586,0.638,0.5518,0.6034,0.7068,0.931,0.9138,1,0.9138,0.569,0.7932,0.5172,0.4656,0.4138,0.5,0.6552,0.069,0.1206,0.0862,-0.6034,'4'
0.096,0.4732,1,0.974,-0.535,-0.5186,-0.587,-0.8374,-0.8308,-0.8472,-0.9252,-0.7398,-0.7626,-0.8992,-0.4634,-0.3886,-0.135,0.3626,0.3952,0.522,0.3236,0.3008,0.5318,0.7918,0.8114,0.587,0.3334,0.4016,0.356,0.4342,0.5382,0.2422,-0.009,0.4428,1,0.8644,-0.5814,-0.4638,-0.6626,-0.8976,-0.8796,-0.759,-0.8434,-0.9548,-0.8796,-0.8012,-0.5302,-0.5452,-0.3644,0.1326,0.3766,0.5362,0.3826,0.4036,0.3192,0.5392,0.6746,0.771,0.5362,0.4488,0.4548,0.5754,0.5844,0.488,0.044,0.4808,1,0.8496,-0.5008,-0.3476,-0.5574,-0.6852,-0.6284,-0.807,-0.9574,-0.6822,-0.5858,-0.7476,-0.5858,-0.4836,-0.3532,-0.01,0.4298,0.654,0.7078,0.651,0.4724,0.6766,0.912,0.9546,0.6908,0.6652,0.6368,0.6936,0.3816,0.1774,0,0.3684,1,0.8792,-0.6626,-0.4614,-0.6346,-0.6284,-0.6842,-0.9536,-0.9814,-0.836,-0.7368,-0.5634,-0.5202,-0.6532,-0.2694,-0.0496,0.3716,0.7802,0.712,0.6408,0.5572,0.7462,0.9288,0.9908,0.7462,0.709,0.6966,0.3406,0.0744,0.1672,0.005,0.3544,1,0.8936,-0.5508,-0.8402,-0.9568,-0.837,-0.7338,-0.8602,-0.8402,-0.8836,-0.7004,-0.6638,-0.6006,-0.5174,-0.4276,-0.0716,0.5008,0.8302,0.9534,0.6806,0.4076,0.6074,0.94,0.9202,0.7738,0.544,0.188,0.0948,0.3312,0.4076,0.0088,0.4956,0.8214,0.8458,-0.1944,-0.5516,-0.7934,-0.7654,-0.8388,-0.7302,-0.8774,-0.9964,-0.8564,-0.8108,-0.4606,-0.4536,-0.226,0.0018,0.422,0.6848,1,0.9194,0.7688,0.8528,0.909,0.874,0.4536,0.3486,0.2714,0.2714,0.3274,0.331,0.008,1,0.8948,0.3846,0.1418,-0.1296,-0.336,-0.3886,-0.6558,-0.7368,-0.757,-0.5182,-0.4574,-0.4818,-0.4778,-0.413,-0.4332,-0.162,0.1012,0.6114,0.7936,0.745,0.7894,0.6882,0.753,0.5628,0.336,0.2146,-0.0972,-0.0688,-0.1094,-0.174,0.5,0.95,1,0.95,0.05,-0.1,-0.25,-0.5,0,0,0,0,0,0.15,0.35,0.3,0.6,0.7,0.5,0.8,0.75,0.55,0.7,1,1,0.25,0.3,0.35,0.65,0.65,0.55,0.8,0.3,0.6,0.9,0.95,-0.15,-0.3,-0.2,-0.45,-0.6,-0.85,-0.55,-0.55,-0.4,-0.45,-0.5,-0.45,0.15,0.5,0.7,0.3,0.5,0.55,0.5,0.8,1,0.7,0.5,0.5,0.4,0.3,0.55,0.5,-0.0278,0.25,0.9444,0.8334,-0.6666,-0.2222,-0.5278,-0.6666,-0.7778,-0.8612,-0.8056,-0.8334,-0.8888,-0.4444,-0.2778,-0.7222,-0.2778,-0.0556,0.2222,0.7778,0.7222,0.5556,0.5,0.7778,0.8612,1,0.6112,0.6112,0.75,0.3888,0.1944,0,-1,-1,-1,-1,-1,-1,-1,-0.8724,-0.8708,-0.8898,-0.5796,0.4914,0.8488,0.8504,0.7448,0.6818,0.6062,0.485,0.326,0.1654,-0.0032,-0.4236,-0.956,-0.9386,-0.948,-0.9686,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.862,-0.8658,-0.487,1,0.526,0.8776,0.8972,0.8464,0.8802,0.9492,0.8334,0.6328,0.517,0.0624,-0.3998,-0.8802,-0.8802,-0.892,-0.918,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9316,-0.9734,-0.86,0.5066,-0.8084,-0.8634,-0.8934,-0.8818,-0.8534,-0.8268,-0.702,-0.6384,-0.56,-0.8034,-0.6662,-0.6768,-0.5168,-0.59,-0.8334,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.0858,-0.0286,1,1,1,-0.9714,-1,-1,-1,-0.9714,-1,-1,-0.5428,-0.0858,0.4,0,-0.9142,-0.7714,-0.4572,-1,-1,-1,-1,-1,-1,-1,-0.822,-0.8194,-0.8046,-0.827,-0.81,-0.7948,-0.7786,-0.776,-0.7778,-0.6704,0.6086,0.6218,0.6194,0.6208,0.6282,0.6588,0.6842,0.7408,0.8156,0.8076,-0.48,0.447,1,0.3464,0.276,0.677,0.8098,1,-0.6632,-0.2422,-0.0736,-0.221,0.1368,0.0736,0.0316,0.2842,0.2,0.3894,0.4736,0.3052,0.6842,0.4948,0.5368,0.7052,0.6632,0.8736,1,0.7264,0.7894,0.7052,0.4948,0.3684,0.4526,0.2842,0.3052,0.0106,-0.2422,-0.3052,-0.4526,-0.8106,-0.7672,-0.5206,-0.2466,-0.452,-0.315,-0.2876,-0.2328,-0.4384,-0.3424,-0.2466,0.0958,0.3972,0.548,0.3424,0.3698,0.274,0.6576,0.959,1,0.9864,0.9726,0.7672,0.6986,0.5754,0.548,0.5206,0.548,0.3424,0.3562,0.3288,0.2466,-0.2602,0.1182,0.1182,-0.2598,-0.7638,-0.5434,-0.496,-0.4488,-0.3386,-0.1812,-0.0078,0.0394,0.3858,0.433,0.0394,0.1496,0.1338,0.9212,0.8268,0.8582,0.8268,0.9056,1,0.6536,0.7166,0.6378,0.6378,0.8268,0.4646,0.4174,0.4804,0.37,0.0552,1,-1,-1,1,-1,-0.8,-1,-0.7334,-1,-0.1064,0.1914,0.0852,0.2554,0.0638,0.4042,0.5532,0.6808,0.4042,1,0.9788,0.3618,0.4042,0.383,0.0852,0.4256,0.5106,0.6596,0.5532,0.468,0.4256,0.2766,-0.0852,0.234,0.2128,-0.0638,0,0.3404,0.234,0.2554,0.1064,-0.1064,'4'
0.0278,0.5712,0.5674,0.5342,-0.1202,-0.4232,-0.9446,-0.6156,-0.6156,-0.7264,-0.7856,-0.8484,-0.6378,-0.7264,-0.7006,-0.7042,-0.682,-0.427,0.1534,0.4602,0.6968,0.6082,0.2236,0.3012,0.4454,0.5564,0.8818,1,0.8818,0.682,0.5564,0.4048,0.1444,0.5384,0.8724,0.8686,-0.2532,-0.5984,-0.6924,-0.5196,-0.711,-0.7486,-0.7862,-0.5272,-0.4634,-0.7298,-0.8536,-0.7636,-0.501,-0.272,-0.0806,0.2346,0.756,0.9362,0.6248,0.5272,0.456,0.7186,0.7298,1,0.9024,0.7036,0.6098,0.4972,0.107,0.5102,0.9012,0.8684,-0.498,-0.7408,-0.8396,-0.7038,-0.823,-0.819,-0.823,-0.9342,-0.8888,-0.9466,-0.8396,-0.7408,-0.6832,-0.4898,-0.3046,0.0164,0.8066,0.86,0.4898,0.2592,0.354,0.4938,0.8396,0.9754,1,0.823,0.9094,0.679,0.1062,0.5196,0.9212,0.8898,-0.4134,-0.8188,-0.7952,-0.5866,-0.8268,-0.811,-0.8858,-0.9212,-0.9842,-0.6692,-0.8386,-0.9566,-0.807,-0.5866,-0.3662,0.0472,0.685,0.7756,0.5276,0.5078,0.626,0.6812,0.8188,1,0.9252,0.7992,0.933,0.752,0.0596,0.5278,0.8152,0.811,-0.4168,-0.7454,-0.9342,-0.7824,-0.9138,-0.8358,-0.8276,-0.959,-0.959,-0.8194,-0.8152,-0.7988,-0.8562,-0.5812,-0.3142,0.3018,0.4086,0.7988,0.5524,0.3512,0.4948,0.5524,0.6838,1,0.8932,0.5482,0.577,0.5894,-0.0728,0.4552,0.2724,0.3976,-0.1742,-0.3232,-0.8748,-0.7598,-0.6548,-0.7766,-0.7902,-0.6278,-0.6582,-0.6718,-0.577,-0.6108,-0.3808,-0.2994,0.0728,0.2792,0.5668,0.9358,1,0.638,0.648,0.7632,0.9458,0.9458,0.8138,0.55,0.5094,0.428,0.0326,0.935,0.9044,0.6596,0.5258,-0.197,-0.3422,-0.5488,-0.652,-0.6444,-0.8738,-0.694,-0.587,-0.7858,-0.5908,-0.6634,-0.5258,-0.3194,-0.1358,0.1854,0.4684,0.7476,0.6444,0.522,0.6634,0.9618,1,0.6712,0.5526,0.2772,0.1778,0.2582,0.3334,0.9166,0.8334,0.1666,0.2084,-0.0416,-0.2916,-0.2084,0,0,-0.0416,0.1666,0.1666,-0.4166,-0.2084,-0.1666,-0.0416,0.0834,0.5,0.5,0.625,0.625,0.4584,0.5416,0.5834,0.4584,0.8334,0.9584,1,0.625,0.5834,0.5416,0.081,0.5676,0.5676,0.6216,0.027,-0.2972,-0.946,-0.6216,-0.4054,-0.6756,-0.7298,-0.6216,-0.4594,-0.5136,-0.3514,-0.4594,-0.7298,-0.2972,0.1352,0.8378,0.946,0.6216,0.3514,0.2972,0.6216,0.7298,1,0.8918,1,0.8918,0.7838,0.6216,-0.0512,0.3846,0.282,0.3846,-0.2052,-0.3334,-0.9744,-0.8974,-0.8462,-0.6924,-0.718,-0.6154,-0.5898,-0.5898,-0.3846,-0.5898,-0.4102,-0.1794,0.077,0.282,0.5128,0.7692,1,0.8206,0.718,0.718,0.6924,0.8206,0.641,0.5642,0.641,0.6154,-1,-1,-1,-1,-1,-1,-1,-0.9476,-0.9556,-0.9516,-0.6326,0.6186,0.7396,0.8728,0.6952,0.6146,0.556,0.4834,0.4086,0.447,0.8164,0.5722,-0.776,-0.899,-0.9294,-0.9334,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9588,-0.952,-0.938,-0.6222,0.1324,0.4228,0.3756,0.5698,0.478,0.5042,0.4054,0.2304,0.687,0.3178,-0.0774,-0.805,-0.867,-0.8846,-0.909,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.9534,-0.8668,-0.6868,-0.7334,-0.572,-0.514,-0.218,-0.078,-0.114,-0.238,-0.562,-0.27,-0.782,-0.912,-0.09,-0.2468,-0.4868,-0.64,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,-0.6,0.7142,1,1,-0.9714,-1,-1,-1,-1,-1,-0.6572,-0.5428,0.3142,0.3142,0.2286,-0.2572,-0.7142,-0.5714,-1,-1,-1,-1,-1,-1,-1,-0.7568,-0.7432,-0.7258,-0.7102,-0.7344,-0.7472,-0.7292,-0.7394,-0.7634,-0.6524,0.8304,0.8804,0.9168,0.9274,0.9194,0.9542,0.9432,0.9094,0.943,0.9778,-0.56,0.1648,-0.5532,-0.2566,0.1378,0.2314,0.4132,0.95,-0.0566,0.1698,0.0566,-0.0944,0.0944,-0.0188,0.0566,0.0566,0.2452,0.5094,0.6982,0.6982,0.6226,0.849,0.8868,0.8114,0.6982,0.6604,0.8868,1,1,0.8114,0.3584,0.0188,0.132,0.5094,0.5094,0.5094,0.3208,0.434,0.283,-0.0566,-0.102,0.3878,-0.1836,-0.3674,-0.2654,-0.1836,-0.0816,-0.1224,-0.0816,0.3674,0.6734,0.3878,0.3878,0.8368,0.7552,0.6734,0.5102,0.5102,0.796,0.8776,1,0.7142,0.1632,-0.2858,0.0816,0.5714,0.653,0.449,0.2654,0.5714,0.5306,-0.0612,0.3186,0.6264,0.077,-0.2528,-0.2748,-0.2968,-0.1868,-0.3406,-0.1868,0.099,0.4506,0.1648,0.2088,0.8242,0.8682,0.6264,0.2968,0.3626,0.6044,0.7362,1,0.7142,0.099,-0.3186,0.077,0.934,0.978,0.5384,0.3846,0.4946,0.5384,-0.077,0.184,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.4456,-0.2674,-0.307,-0.208,-0.2476,-0.208,-0.2278,-0.5842,0.208,0.5842,1,0.7624,0.901,1,0.6238,0.6238,0.5248,0.604,0.9604,0.7822,0.901,0.8218,0.8614,0.7426,0.4258,0.307,0.5644,0.6634,0.4852,0.1486,0.1486,-0.1486,'5'
0.1764,0.5458,0.938,0.8104,-0.6732,-0.7222,-0.745,-0.719,-0.768,-0.9738,-0.7352,-0.7058,-0.7844,-0.7124,-0.536,-0.4576,-0.255,0.1078,0.513,0.7974,0.6732,0.4248,0.4216,0.464,0.6438,0.9576,1,0.951,0.8268,0.2974,0.268,0.4282,0.285,0.5748,1,0.8456,-0.8174,-0.6756,-0.7102,-0.7166,-0.7512,-0.9464,-0.9622,-0.7102,-0.6724,-0.641,-0.5118,-0.5212,-0.3796,-0.0552,0.2062,0.6914,0.6598,0.622,0.2882,0.367,0.7102,0.8268,0.7544,0.537,0.4174,0.3228,0.5182,0.5086,0.2074,0.493,1,0.831,-0.8464,-0.6866,-0.6436,-0.6958,-0.699,-0.9938,-0.7788,-0.6774,-0.7112,-0.6314,-0.5422,-0.536,-0.404,-0.2534,0.2904,0.5146,0.6928,0.6036,0.2074,0.2934,0.5514,0.6836,0.8678,0.656,0.5944,0.401,0.5944,0.6006,0.1858,0.4904,1,0.8398,-0.6506,-0.6346,-0.7788,-0.7436,-0.6282,-0.9904,-0.8558,-0.532,-0.6474,-0.7948,-0.7308,-0.7436,-0.3654,-0.2532,0.093,0.4038,0.6026,0.577,0.3718,0.3622,0.5352,0.718,0.9294,0.7372,0.6026,0.3526,0.548,0.6122,0.2114,0.5408,1,0.8736,-0.3976,-0.5242,-0.6706,-0.614,-0.4808,-0.7738,-0.8104,-0.7704,-0.6306,-0.6738,-0.6306,-0.544,-0.3678,-0.0316,0.2646,0.6638,0.6074,0.5174,0.5108,0.6006,0.7204,0.96,0.7836,0.7538,0.4742,0.4976,0.4876,0.6006,0.1276,0.5772,0.8994,0.886,-0.0806,-0.4162,-0.651,-0.7886,-0.6544,-0.6308,-0.9496,-0.8322,-0.812,-0.5838,-0.6074,-0.547,-0.5068,-0.1846,0.1778,0.4932,0.9296,1,0.9194,0.698,0.7652,0.8792,0.8088,0.5838,0.3892,0.339,0.4464,0.3524,0.1346,1,0.878,0.4758,0.2136,0.0306,-0.2926,-0.6552,-0.8744,-0.8348,-0.641,-0.5656,-0.7702,-0.6014,-0.5296,-0.5224,-0.5152,-0.3896,-0.1274,0.0054,0.605,0.799,0.6624,0.6446,0.6518,0.5512,0.3716,0.0664,0.0306,-0.0306,0.027,-0.0448,-0.1282,0.3846,0.5384,0.4358,-0.2308,-0.4872,-0.8462,-0.8462,-0.7436,-0.4872,-0.4358,-0.7436,-0.5898,-0.4358,-0.3846,-0.4358,-0.077,0.282,0.641,0.7436,0.641,0.3846,0.3334,0.3846,0.6924,0.9488,1,0.9488,0.7948,0.641,0.3334,0.2308,0.1112,0.3334,0.8334,0.7222,-0.4444,-0.7222,-0.7778,-0.6112,-0.6112,-0.8334,-0.5,-0.3888,-0.4444,-0.6666,-0.3888,-0.2778,-0.2778,0.1666,0.4444,0.6666,0.6666,0.3334,0.1666,0.6112,0.6666,1,0.7778,0.8888,0.8888,0.7222,0.3888,0.3888,0.1232,0.452,0.863,0.8082,-0.178,-0.7534,-0.5342,-0.5068,-0.4246,-0.589,-0.6712,-0.6164,-0.863,-0.5068,-0.589,-0.589,-0.4246,-0.1232,0.3698,0.452,0.589,0.8904,0.7534,0.5342,0.8356,0.9452,1,0.6164,0.4246,0.2328,0.4246,0.452,-1,-1,-1,-1,-1,-1,-1,-1,-0.955,-0.9596,-0.573,0.8314,0.9146,0.9102,0.9146,0.8764,0.782,0.6248,0.6494,0.6674,0.3236,0.2382,-0.7708,-0.9168,-0.9596,-0.9326,-0.9438,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9226,-0.9274,-0.5082,0.8762,0.7246,0.8298,0.8624,0.8392,0.7958,0.6612,0.7014,0.7386,0.2668,0.1246,-0.6752,-0.8268,-0.8562,-0.8468,-0.87,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.9468,-0.6868,-0.6734,-0.6668,-0.6684,-0.6618,-0.645,-0.66,-0.555,-0.5918,-0.6468,-0.925,-0.8708,-0.14,-0.4,-0.5068,-0.52,-0.54,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,-0.9714,-1,-1,-1,-1,-1,-1,-0.6,-0.1714,-0.2286,0.0572,-0.2858,-0.8572,-0.9142,-0.4,-1,-1,-1,-1,-1,-1,-0.8576,-0.8202,-0.844,-0.8266,-0.8372,-0.8402,-0.8676,-0.882,-0.8748,-0.7798,0.9402,0.9212,0.8994,0.891,0.87,0.898,0.8746,0.8626,0.8502,0.8716,-0.4534,0.447,-0.4462,0.587,0.8794,0.8716,0.884,1,0.102,0.2244,0.2244,0.2244,0.2654,0.2244,0.347,0.551,0.551,0.8776,0.8776,0.8368,0.9184,1,1,0.796,0.7142,0.8776,1,1,0.796,0.5102,0.102,0.1836,0.2244,0.4694,0.551,0.347,0.347,0.347,0.1428,-0.3878,0.0538,0.1398,-0.0752,-0.1182,-0.0752,-0.1398,-0.3334,-0.0322,0.0752,0.8064,0.656,0.3764,0.8064,0.9354,0.8064,0.2688,0.4838,0.3764,0.8924,1,0.656,0.2474,0.0538,-0.1612,0.0968,0.6344,0.656,0.1612,0.2258,0.3334,-0.1612,-0.4624,0.5368,0.621,0.3684,-0.179,-0.221,-0.1368,-0.179,-0.4106,0.0948,0.579,0.6632,0.2,0.6,0.7474,0.7264,0.3684,0.579,0.7264,1,0.8526,0.4316,0.221,-0.4106,-0.4736,0.0316,0.6,0.3894,0.0526,0.0736,0.3474,0.0736,-0.2842,1,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.426,-0.3392,-0.1652,-0.1652,-0.426,-0.1826,-0.2696,-0.1304,0.0782,0.5304,0.426,0.513,1,0.8608,0.4782,-0.1478,0.026,0.2174,0.5652,0.6348,0.5478,0.513,0.3914,-0.1478,-0.2696,-0.2522,0.2,0.3566,0.4782,0.026,0.374,0.1652,'5'
-0.2916,-0.0406,0.2694,0.4464,0.9704,1,0.5202,0.0332,-0.0406,-0.203,-0.3948,-0.1882,-0.1512,0.0774,0.1956,0.5498,0.7934,0.845,0.4612,0.5646,0.476,0.5794,0.6532,0.7122,0.727,0.4096,0.3136,0.2472,0.2178,0.0996,0.2398,0.358,-0.338,-0.101,0.2822,0.3938,0.8886,1,0.6168,0.2752,0.0662,-0.122,-0.2264,-0.0732,0.0034,0.1846,0.3658,0.5818,0.4704,0.4774,0.3102,0.2682,0.4076,0.4426,0.554,0.5122,0.3798,0.0104,-0.0104,-0.0732,-0.1498,-0.108,-0.0244,0.1498,-0.3116,-0.039,0.3766,0.4026,0.8766,0.987,1,0.7468,0.2402,0.091,0.0064,0.2338,0.3896,0.6168,0.8376,0.935,0.8376,0.4936,0.3636,0.435,0.5454,0.6818,0.8376,0.6494,0.5064,0.1494,0.052,-0.052,-0.0454,0.0454,0.1364,0.2078,-0.3894,-0.154,0.2268,0.21,0.6246,0.832,1,0.7254,0.2774,0.21,0.1652,0.4398,0.5798,0.7198,0.8096,0.5854,0.3894,0.311,0.283,0.3614,0.3614,0.5406,0.6582,0.4454,0.238,-0.0028,-0.0868,-0.07,-0.07,-0.0196,0.0364,0.1484,-0.4214,-0.1404,0.2286,0.2176,0.5868,0.8016,1,0.8072,0.3884,0.3608,0.3168,0.6198,0.7466,0.8182,0.6144,0.4326,0.2176,0.2122,0.2452,0.2562,0.3388,0.4932,0.5702,0.46,0.3334,0.1074,-0.0248,-0.0578,-0.0854,-0.0082,0.0964,0.2286,-0.2754,0.1018,0.4192,0.3294,0.503,0.994,0.958,1,0.6766,0.4312,0.3592,0.6108,0.7724,0.7784,0.5928,0.0658,-0.1378,-0.2156,0.024,0.2096,0.4372,0.455,0.3414,0.3114,0.1676,0.006,-0.024,-0.2634,-0.2934,-0.2276,-0.1556,0.2156,-0.1782,0.4618,0.3018,0.4764,0.52,0.44,1,0.8036,0.069,-0.12,-0.2728,-0.1054,0.1564,0.28,0.2364,0.0618,-0.4764,-0.3672,-0.0764,-0.0182,0.5418,0.5128,0.4254,0.0182,-0.1346,-0.3018,-0.4036,-0.2436,-0.4036,-0.2364,-0.2146,-0.12,-0.1176,0.1764,0.2352,0.0588,1,1,0.5294,0.0588,0.1764,-0.1176,-0.1764,-0.1764,0.1176,0.2942,-0.1176,0.5882,1,1,0.7058,0.647,0.353,0.5882,0.5882,0.2352,0.5882,0.4118,0,0.4118,0.353,-0.4118,0.0588,0.2352,-0.3888,0.1112,0.3334,0.3888,0.8334,0.9444,0.2222,-0.1112,-0.2222,-0.5556,-0.5556,-0.5,-0.2778,0.0556,0.3334,0.5,0.8334,0.8334,0.6112,0.7222,0.8334,0.9444,1,1,0.9444,0.7778,0.6666,0.6112,0.6666,0.6666,0.7222,0.8888,-0.4102,-0.0256,0.3076,0.2052,0.4872,0.8462,1,0.9488,0.5384,0.3076,0.2564,0.4616,0.718,0.641,0.641,0.1282,0,-0.077,-0.0256,0.282,0.2564,0.5128,0.4358,0.3076,0.2308,0.0512,-0.0256,-0.0256,-0.2308,-0.1538,-0.077,0.1794,-1,-1,-1,-1,-1,-1,-1,-0.959,-0.9574,-0.936,-0.3558,0.5606,0.9132,0.982,0.9312,0.9278,0.946,0.8918,0.8672,0.7622,0.5032,-0.1574,-0.8394,-0.9082,-0.905,-0.9442,-0.9066,-0.946,-0.936,-0.954,-0.9164,-0.9246,-0.9442,-1,-1,-1,-1,-1,-1,-1,-0.9752,-0.9704,-0.8214,-0.4368,0.148,0.3812,0.3196,0.3946,0.5716,0.727,0.7658,0.953,0.6208,-0.079,-0.5678,-0.7076,-0.7788,-0.794,-0.7378,-0.7902,-0.8328,-0.8424,-0.8742,-0.8748,-0.8678,-0.8214,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.8868,-0.8234,-0.3934,-0.684,-0.74,-0.736,-0.72,-0.716,-0.72,-0.72,-0.72,-0.72,-0.7068,-0.6234,0.4366,0.32,0.2766,0.08,-0.0134,0.0932,0.0966,0.1332,0.0666,0.2166,0.0266,-1,-1,-1,-1,-1,-1,-1,-0.2286,-0.2572,1,1,0.2858,-0.5714,-0.4,-0.8858,-0.8,-1,-1,-0.8572,-0.0858,1,1,1,-0.7714,-0.7714,-0.7714,-0.8286,-0.8572,-0.9714,-0.9142,-1,-0.8286,-0.8,1,1,1,1,1,1,1,1,1,1,0.0798,0.0798,0.0896,0.0676,0.105,0.043,-0.0954,-0.2868,-0.4918,-0.6534,-0.3866,-0.4,-0.4626,-0.2172,0.3618,0.4588,0.2662,1,-0.6274,-0.0784,0.255,0.2156,0,-0.0588,0.098,0.5294,0.7844,0.745,0.6862,0.8628,0.8824,0.6666,0.6666,0.8236,1,1,0.9608,0.7844,0.5294,0.3138,0.196,-0.2156,-0.3334,-0.2156,-0.0392,-0.0588,-0.0588,-0.098,-0.1176,-0.2352,-0.1782,0.3024,0.5504,0.5814,0.0852,-0.0232,-0.0698,0.2248,0.876,0.814,0.659,0.7364,1,0.5504,0.3954,0.4108,0.628,0.9224,0.6744,0.69,0.5968,0.628,0.3488,0.1472,-0.1162,-0.2404,0.1162,0.0232,0.1008,-0.0542,-0.0078,-0.5194,0.4532,0.5312,0.9844,0.8906,0.4062,0.2032,0.3438,0.6406,0.8438,0.9374,0.9374,1,1,0.8438,0.7968,0.9062,0.9688,0.8906,0.9532,0.9062,0.8438,0.6562,0.5782,0.2656,-0.2968,-0.25,-0.0312,0.0312,-0.2812,0.1094,0.0312,-0.4062,-0.0872,-1,-1,1,-1,-1,-1,-0.7334,-1,-0.4246,-0.274,-0.178,0.0274,-0.178,0.315,0.411,0.4246,0.4794,0.4384,0.6986,0.6028,0.4384,0.5206,0.5342,0.548,0.5616,0.7124,0.9316,1,0.9316,0.9726,0.8768,0.7672,0.7946,0.685,0.6576,0.6028,0.5342,0.4794,0.3972,0.1096,'6'
-0.324,0.0634,0.486,0.5986,0.7324,1,0.7184,0.0282,0.1268,-0.0986,-0.1268,-0.0774,0.0564,0.2746,0.3028,0.5564,0.6902,0.5634,0.2816,0.2888,0.2536,0.3522,0.2888,0.6198,0.5492,0.3732,0.0986,0.2042,0.1268,0.1972,0.1972,0.5634,-0.3644,-0.0554,0.3412,0.4402,0.8484,1,0.4518,0.1196,0.0962,0.003,-0.172,-0.2712,-0.3062,-0.0788,0.1662,0.516,0.5218,0.347,0.1954,-0.0728,-0.0438,-0.003,0.1312,0.2944,0.3878,0.1428,-0.1312,-0.1078,-0.3412,-0.4402,-0.2244,0.003,-0.3422,0.103,0.4352,0.495,0.907,0.8604,1,0.422,0.2292,0.1162,-0.0698,-0.0034,0.0898,0.608,0.5548,0.5084,0.3488,0.1096,0.1694,0.2692,0.2824,0.3156,0.4086,0.4684,0.5084,0.3688,0.0964,-0.1096,-0.0366,0.103,0.0632,0.0232,-0.4546,-0.0146,0.1964,0.2434,0.5484,0.871,1,0.4898,0.2492,0.085,0.044,0.1436,0.3608,0.654,0.5718,0.437,0.0558,-0.0382,-0.1788,-0.0498,0.0968,0.2844,0.5426,0.5484,0.1672,-0.1612,-0.1964,-0.1378,-0.1848,-0.085,-0.1202,0.0616,-0.487,-0.089,0.1152,0.2198,0.4294,0.932,1,0.4346,0.4502,0.3508,0.3142,0.5236,0.6492,0.5184,0.4346,0.3298,0.0472,0.0052,0.0158,-0.0052,0.157,0.267,0.3874,0.3718,0.3036,0.0472,-0.0576,-0.0732,-0.1676,-0.1518,-0.1308,0.0524,-0.4006,-0.014,0.283,0.3166,0.6526,0.9272,1,0.7478,0.5014,0.451,0.423,0.5238,0.6862,0.507,0.2942,0.1932,-0.0196,-0.0868,-0.0868,-0.0644,0.0644,0.3446,0.4846,0.2606,0.0812,-0.0196,-0.1204,-0.2324,-0.3222,-0.2942,-0.1316,0.1204,-0.1824,0.223,0.5136,0.4798,0.5,1,0.9122,0.696,0.3176,0.0676,0.2094,0.3716,0.2906,0.2094,-0.0878,-0.1486,-0.5676,-0.4864,-0.2432,-0.0676,0.0676,0.1486,0.0946,-0.027,-0.1284,-0.2972,-0.2906,-0.4324,-0.527,-0.669,-0.6486,-0.3784,-0.3684,0.0526,0.4736,0.5264,0.7368,0.9474,0.6842,-0.1052,0.1052,-0.1578,-0.1578,0.0526,0,0.1052,0.421,0.5264,1,1,0.3684,0.1578,0.3158,0.2632,0.2632,0.6842,0.6316,0.1578,0.421,0.3158,0.3158,0.3684,0.3684,0.7368,-0.3334,0.2122,0.4546,0.5758,0.6364,1,0.6364,-0.091,0.2122,-0.0304,0.0304,0.1516,0.2122,0.394,0.4546,0.697,0.3334,0.1516,0.4546,0.5758,0.6364,0.5152,0.7576,0.8182,0.7576,0.6364,0.2122,0.3334,0.2728,-0.0304,0.394,0.7576,-0.5058,-0.0824,0.153,0.2236,0.4824,0.9294,1,0.4824,0.553,0.4588,0.3882,0.4824,0.7412,0.4824,0.4588,0.2942,0.0118,-0.1294,-0.0352,0.0118,0.0824,0.2706,0.5058,0.4352,0.1764,0.1294,-0.0588,-0.0824,-0.0824,-0.0824,-0.0118,0.1058,-1,-1,-1,-1,-1,-1,-1,-1,-0.9752,-0.9712,-0.4462,0.1952,0.6446,0.9334,0.9086,0.7152,0.7152,0.8106,0.8746,0.6748,0.356,-0.0894,-0.8106,-0.8864,-0.9216,-0.9516,-0.9608,-0.9426,-0.9634,-0.9622,-0.9634,-0.9542,-0.9438,-1,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.9786,-0.3548,0.0086,0.1396,0.294,0.2414,0.2038,0.3954,0.637,0.9856,0.7494,-0.0178,-0.472,-0.781,-0.8304,-0.7852,-0.8224,-0.8318,-0.869,-0.8814,-0.895,-0.9102,-0.9102,-0.9312,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.9334,-0.6334,-0.768,-0.74,-0.72,-0.696,-0.6768,-0.73,-0.6734,-0.6668,-0.74,-0.71,-0.7034,0.1032,-0.0368,0.1032,0.0466,0.1632,0.0832,0.02,0.0366,0.0232,-0.1434,-0.25,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,-0.6858,-0.9714,-0.9142,-0.9142,-1,-0.8286,-0.8286,0.2286,0.4858,1,1,-0.6572,-0.8572,-0.8572,-0.8,-0.9142,-0.9428,-0.9142,-0.8572,-0.7142,-0.1714,0.9534,0.9534,0.9652,0.9962,1,1,1,1,1,1,-0.1072,-0.1072,-0.1138,-0.127,-0.1478,-0.1538,-0.1646,-0.2128,-0.2784,-0.5628,-0.3334,-0.3882,-0.2652,0.0118,0.0068,0.1346,0.167,1,-0.4858,-0.1714,0.3142,0.4286,0.4,0.3714,0.3428,0.6572,1,1,0.8572,0.8286,0.7714,0.8,0.6572,0.5714,0.4858,0.8572,0.8572,0.8572,0.8858,0.3142,0.4286,0.2,-0.2,-0.3142,-0.2572,-0.1142,-0.1714,-0.5142,-0.5714,-0.8,0.1176,0.1764,0.4902,0.4706,0.2352,0,-0.0588,0.3334,1,0.7058,0.451,0.4902,0.5686,0.4902,0.3726,0.4118,0.4706,0.5686,0.5686,0.7058,0.6862,0.451,0.3334,0.0392,-0.098,-0.098,-0.3334,-0.2352,-0.098,-0.3726,-0.0784,-0.2156,0.0516,0.5052,0.897,0.835,0.3196,0.2164,0.2784,0.6288,1,0.6702,0.7114,0.6702,0.8762,0.5876,0.5052,0.6082,1,1,1,0.7526,0.6908,0.7114,0.402,0.2164,-0.0104,-0.3196,-0.3196,-0.2578,-0.1752,-0.0722,-0.2784,-0.2784,0.2316,-1,-1,1,-1,-1,-1,-0.8,-1,-0.4156,-0.2598,-0.3506,0.026,0.065,0.1818,0.3246,0.5714,0.5324,0.4286,0.5324,0.5064,0.2598,0.2858,0.4286,0.4676,0.5714,0.5194,0.6364,0.6884,0.7922,1,0.7662,0.5064,0.3766,0.4286,0.5194,0.5584,0.3896,0.4286,0.1558,-0.1818,'6'
-0.1848,0.036,0.2824,0.1592,0.0318,-0.4734,-0.741,-0.826,-0.9406,-0.809,-0.7538,-0.6646,-0.5286,-0.2102,-0.1252,0.2314,0.4778,0.5498,0.3078,0.4012,0.7282,0.8854,0.9702,0.741,0.4226,0.4182,0.724,1,0.9702,0.8132,0.724,0.7538,0.0198,0.4958,0.864,0.643,0.2804,-0.2464,-0.643,-0.66,-0.677,-0.915,-0.9206,-0.6204,-0.49,-0.3598,-0.2068,-0.0708,0.2578,0.49,0.7564,0.813,0.9944,1,0.9376,0.7904,0.3598,0.2862,0.3768,0.677,0.7338,0.5808,0.4448,0.405,-0.175,0.448,0.8992,0.644,0.0624,-0.549,-0.8636,-0.7626,-0.7626,-0.7686,-0.9644,-0.7508,-0.6914,-0.5906,-0.4422,-0.2166,0.175,0.5074,1,0.8932,0.632,0.5668,0.7922,0.7508,0.3354,0.3354,0.2582,0.359,0.5252,0.3056,0.1454,0.098,-0.236,0.3876,0.8876,0.646,-0.0056,-0.3258,-0.6966,-0.7922,-0.809,-0.7752,-0.736,-0.8146,-0.7078,-0.6348,-0.2752,-0.2134,-0.0898,0.3202,0.9494,0.9438,1,0.5618,0.7134,0.7416,0.4888,0.5394,0.4158,0.3146,0.5224,0.3258,0.3202,0.382,-0.163,0.3284,0.8734,0.6934,0.0316,-0.1874,-0.5426,-0.6496,-1,-0.7616,-0.7908,-0.7372,-0.5864,-0.4842,-0.2458,-0.2554,-0.0852,0.2652,0.6934,0.8492,1,0.7664,0.781,0.635,0.3918,0.3674,0.343,0.2458,0.3138,0.2604,0.343,0.2992,0.013,0.4108,0.9948,0.9122,-0.168,-0.23,-0.385,-0.4108,-0.5866,-0.6848,-0.9844,-0.8192,-0.5814,-0.5608,-0.2042,-0.2764,-0.2972,-0.2764,0.7106,0.9122,1,0.9328,0.7984,0.6538,0.54,0.5038,0.2764,0.2352,0.3282,0.137,0.385,0.3488,0.291,0.9626,0.6268,0.4478,-0.097,-0.4926,-0.7238,-0.5522,-0.6716,-0.9402,-0.7986,-0.7164,-0.4552,-0.5374,-0.485,-0.3656,-0.3134,-0.1642,0.6716,0.985,1,0.8358,0.9926,0.8806,0.7762,0.403,0.209,0.097,0.2238,0.1568,0.3134,-0.015,-0.0508,0.0508,0.1864,0.0848,-0.017,-0.5254,-0.7288,-0.661,-0.5594,-0.5254,-0.4238,-0.3898,-0.4916,-0.2882,0.1186,0.322,0.2204,0.2882,0.356,0.3898,0.5594,0.8306,0.8984,0.8644,0.7628,0.7628,0.8644,1,0.8984,0.661,0.7628,0.8644,-0.2156,0.1372,0.1764,0.098,-0.0196,-0.3726,-0.4118,-0.647,-0.9216,-0.804,-0.6078,-0.4902,-0.2942,-0.0196,0.098,0.2156,0.4118,0.4902,0.1372,0.255,0.451,0.3726,0.6862,0.6078,0.2942,0.1372,0.6078,1,1,0.7648,0.647,0.647,0.077,0.6,0.9692,0.7538,0.2924,-0.2,-0.477,-0.5076,-0.5384,-0.877,-0.9692,-0.477,-0.3846,-0.2924,-0.077,-0.1076,0.3846,0.6616,0.7846,0.877,1,0.9076,0.877,0.7538,0.0462,0.2924,0.2616,0.4462,0.6616,0.3538,0.2,0.2308,-1,-1,-1,-1,-1,-0.75,-0.8262,-0.8062,-0.8576,-0.74,-0.3312,0.192,0.5596,0.836,0.9536,0.99,0.9636,0.8676,0.707,0.5248,0.0216,-0.548,-0.8708,-0.9636,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9048,-0.936,-0.5154,0.1152,0.8918,0.5762,0.6374,-0.0044,-0.1098,-0.1118,-0.057,-0.0882,-0.1566,-0.2502,-0.3196,-0.5686,-0.8118,-0.9414,-0.9732,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.9534,-0.1668,0.5432,0.5266,0.49,0.0314,-0.543,-0.803,-0.9,-0.8916,-0.8544,-0.8516,-0.8658,-0.8276,-0.8776,-0.9826,-0.9268,-0.99,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,0.0286,-0.4858,0.0858,0.6286,1,-0.3714,-0.7428,-1,-1,-1,-0.4286,0.0572,0.2572,0.1428,-0.4286,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5866,-0.5866,-0.5766,-0.5644,-0.562,-0.541,-0.5372,-0.5708,-0.5468,-0.4826,0.5408,0.5408,0.4916,0.4572,0.4498,0.4518,0.4534,0.4702,0.4988,0.5186,-0.4134,-0.1764,0.5616,0.8726,0.6804,0.2124,-0.0634,1,-0.3554,-0.2838,-0.3708,-0.248,-0.2942,-0.2122,-0.0946,0.0844,0.2122,0.3964,0.596,0.7698,0.9694,1,0.7852,0.6522,0.693,0.6522,0.6778,0.6522,0.7136,0.775,0.6624,0.642,0.5294,0.5448,0.463,0.3196,0.2942,-0.0486,-0.0588,-0.2584,-0.5524,-0.627,-0.683,-0.5338,-0.5384,-0.38,-0.1656,0.0442,0.1376,0.4266,0.627,0.8136,0.6784,1,0.8462,0.7342,0.7808,0.7016,0.8742,0.8882,0.8368,1,0.9114,0.8228,0.8276,0.5338,0.7016,0.7062,0.31,0.3474,0.4126,-0.1002,-0.0804,-0.1474,-0.3572,-0.4732,-0.4464,-0.4598,-0.2188,-0.0044,0.4152,0.5312,0.817,1,0.6608,0.7902,0.75,0.7678,0.7098,0.692,0.817,0.741,0.7812,0.933,0.7946,0.9062,0.9196,0.692,0.6696,0.6072,0.4464,0.3348,0.1562,-0.0848,-0.0802,-1,-1,1,0.4,0.4,-1,-0.2,-1,0.275,0.35,0.275,0.1,0.05,0.3,0.025,0.425,0.575,0.6,0.875,1,0.9,0.4,0.4,0.35,0.35,0.325,0.15,0.05,0.075,0.1,0.05,0.1,0.25,0.375,0.125,0.025,0.05,0,0.3,0.1,'7'
-0.0876,0.2442,0.7282,0.6036,-0.2718,-0.47,-0.7096,-0.9262,-0.9862,-0.871,-0.894,-0.6498,-0.4746,-0.4332,-0.152,0.046,0.1382,0.387,0.53,0.6176,0.613,0.9308,1,0.9448,0.8202,0.5208,0.6036,0.6682,0.9494,0.871,0.871,0.5392,-0.0024,0.3818,1,0.8266,-0.2412,-0.4754,-0.7704,-0.9392,-0.9626,-0.8174,-0.8594,-0.8642,-0.6534,-0.5926,-0.4146,-0.3818,-0.2038,0.0632,0.569,0.7798,0.349,0.1476,0.4192,0.5222,0.541,0.3864,0.0164,-0.0586,0.199,0.2694,0.1756,-0.021,-0.1018,0.4558,1,0.8274,-0.2434,-0.3894,-0.6682,-0.7876,-0.8452,-0.792,-0.8806,-0.8408,-0.9646,-0.739,-0.4424,-0.3318,-0.2744,-0.1372,0.3806,0.593,0.6284,0.5088,0.0884,0.3408,0.177,0.2256,0.1504,-0.0266,-0.0708,0.0132,0.1194,0.031,-0.146,0.4248,1,0.8742,-0.528,-0.4922,-0.7168,-0.7752,-0.591,-0.9102,-0.8696,-0.7528,-0.6314,-0.5956,-0.528,-0.3528,-0.0292,0.2,0.3752,0.7842,0.8022,0.8832,0.6674,0.564,0.5956,0.4832,0.6404,0.5956,0.5326,0.4696,0.4606,0.4382,-0.1918,0.2146,0.895,0.7854,-0.6392,-0.6986,-0.6758,-0.6028,-0.6804,-0.8264,-0.9086,-0.9864,-0.6348,-0.5526,-0.2922,-0.3014,-0.1278,0.1826,0.694,0.9316,1,0.9042,0.6576,0.8494,0.9864,0.8082,0.6758,0.516,0.589,0.7488,0.7672,0.685,-0.0136,0.5204,0.7918,0.8372,-0.1312,-0.4254,-0.5928,-0.8054,-0.7286,-0.8462,-0.8144,-0.7648,-0.8326,-0.4932,-0.4434,-0.2624,-0.267,-0.0724,0.3438,0.742,0.7964,0.7194,0.819,1,0.9004,0.6426,0.3168,0.362,0.1628,0.2308,0.38,0.3212,-0.2068,0.8548,0.8212,0.419,0.2234,-0.1732,-0.4748,-0.6872,-0.838,-0.877,-0.7206,-0.4916,-0.581,-0.6202,-0.3464,-0.4302,-0.4692,-0.3016,0.2458,0.7094,0.7542,0.6424,0.771,0.81,1,0.5698,0.4302,0.4078,0.2626,0.4078,0.4078,0.1564,-0.3618,0.1064,0.234,0.149,-0.3192,-0.4468,-0.4894,-0.8298,-0.9148,-0.9148,-0.8298,-0.7446,-0.4894,-0.234,-0.1914,-0.149,-0.149,0.149,0.1064,0.234,0.5744,0.8724,0.9574,0.9148,0.617,0.0638,0.7022,1,1,0.8724,0.617,0.4042,-0.1904,-0.0476,0.381,0.2858,-0.238,-0.4286,-0.762,-0.9048,-0.8572,-0.8572,-0.9048,-0.4286,-0.4286,-0.1428,-0.238,-0.0952,0.0476,-0.0476,0.1904,0.6666,0.8572,0.9524,1,0.9524,0.7142,0.5238,0.2858,0.4762,0.5238,0.6666,0.6666,0.6666,0.0556,0.5556,1,0.8334,-0.0834,-0.5278,-0.75,-0.8334,-0.7222,-0.7778,-0.5,-0.6112,-0.5,-0.6112,-0.25,-0.2222,-0.1666,0,0.6388,0.8056,0.4166,0.2778,0.4444,0.6112,0.5834,0.5556,0.0556,-0.0278,0.2222,0.4166,0.2778,0.25,-1,-1,-1,-0.9502,-0.9656,-0.9348,-0.8422,-0.9486,-0.9452,-0.9006,-0.3464,0.1114,0.4476,0.8096,0.892,0.964,0.9176,0.789,0.5728,0.3138,0.0754,-0.5146,-0.9588,-0.9554,-0.9434,-0.9416,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9348,-0.943,-0.7996,-0.0088,0.0378,0.8346,0.943,0.9232,0.8846,0.3966,0.4758,0.5318,0.5784,0.5888,0.527,0.47,0.1834,-0.0774,-0.5458,-0.8846,-0.8788,-0.8836,-0.8858,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9134,-0.9734,-0.8,0.2066,0.5066,0.56,0.54,0.2132,-0.2726,-0.7826,-0.8726,-0.8826,-0.84,-0.7926,-0.84,-0.7334,-0.82,-0.9556,-0.6912,-0.53,-0.5268,-0.6134,-0.5668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6,-0.2286,1,1,1,0.3142,-0.4286,-0.2858,0.4858,0.8286,-0.2286,-0.6572,-0.7142,-0.6286,-1,-0.8858,-0.4,-0.3714,0.2,0.1428,-0.8858,-1,-0.4858,-1,-1,-1,-1,-1,-1,-1,-0.6536,-0.6844,-0.6848,-0.695,-0.7162,-0.7254,-0.748,-0.719,-0.692,-0.5576,0.5314,0.5204,0.5452,0.5428,0.5452,0.5006,0.5376,0.5034,0.5534,0.6414,-0.48,-0.0236,1,0.9744,0.8986,0.7938,0.3396,1,-0.5898,-0.2466,-0.1914,-0.1204,-0.0178,-0.0454,0.0928,0.1638,0.2386,0.3452,0.6134,0.7514,1,0.9644,0.8816,0.7712,0.7042,0.6568,0.6214,0.6056,0.7712,0.8068,0.7002,0.6214,0.5108,0.507,0.3136,0.2662,0.144,-0.0454,-0.1914,-0.282,-0.8054,-0.5564,-0.4914,-0.5324,-0.587,-0.396,-0.2458,0.0888,0.4368,0.5222,0.6928,1,0.8396,0.8634,0.8226,0.8396,0.785,0.7542,0.8806,0.9624,0.9454,0.9146,0.8566,0.8908,0.7646,0.6314,0.611,0.5324,0.273,0.2492,0.1808,-0.157,-0.037,-0.0596,-0.1788,-0.3012,-0.401,-0.298,-0.124,0.1014,0.43,0.5362,0.7972,0.9742,0.8744,0.8422,1,0.9034,0.884,0.8228,0.9388,0.8582,0.8712,0.8486,0.9066,0.9098,0.7906,0.6748,0.6168,0.5234,0.4654,0.298,0.2142,-0.2012,0.9592,-1,-1,1,-0.4,-1,-1,0.0666,1,-0.3,-0.3334,-0.05,-0.0166,0.05,0.0166,0.0666,0.2334,-0.0166,0.5166,1,0.75,0.95,0.6666,0.4666,0.4666,0.55,0.7334,0.8334,0.8334,0.8334,0.4166,0.15,0.2666,0.3334,0.3666,0.6166,0.6666,0.5834,0.1834,0.5,0.2166,'7'
-0.3442,-0.1256,0.3826,0.7486,0.7978,0.3224,0.1202,0.0382,-0.0164,-0.1804,-0.2186,-0.142,-0.0546,0.0602,0.224,0.3388,0.5628,0.8142,1,0.9454,0.8962,0.8634,0.9344,0.929,0.9726,0.8196,0.7104,0.623,0.6502,0.6722,0.7268,0.836,-0.3312,0.0562,0.5188,0.9312,0.875,0.2938,0.1062,-0.1376,-0.3062,-0.25,-0.4124,-0.2124,-0.2624,-0.2312,0.0062,0.1562,0.3312,0.525,0.9188,0.9688,1,0.8312,0.825,0.925,0.9688,0.8312,0.6,0.5188,0.55,0.425,0.625,0.6562,-0.3484,0.1096,0.613,0.987,0.8838,0.0258,-0.0838,-0.3354,-0.5096,-0.387,-0.613,-0.2838,-0.3548,-0.258,-0.2194,0.0774,0.271,0.5612,0.8774,1,0.9612,0.9096,0.871,0.9484,0.9096,0.9354,0.4968,0.6322,0.5162,0.4452,0.6774,0.6452,-0.3746,0.2012,0.61,0.7028,0.6346,-0.1208,-0.3622,-0.4428,-0.5108,-0.548,-0.6222,-0.4428,-0.4674,-0.2942,-0.1578,-0.065,-0.0092,0.2198,0.7648,0.9814,1,0.7894,0.9442,0.8452,0.9072,0.74,0.486,0.4118,0.5108,0.3994,0.5914,0.5356,-0.3804,0.299,0.7446,0.5924,0.2228,-0.1358,-0.3478,-0.5164,-0.5924,-0.6358,-0.701,-0.538,-0.4566,-0.4022,-0.2174,-0.2228,-0.076,0.1468,0.674,0.9184,1,0.8586,0.8642,0.8206,0.7554,0.538,0.3642,0.299,0.3206,0.326,0.4076,0.4022,-0.1988,0.3756,0.7182,0.779,-0.0442,-0.2154,-0.442,-0.5636,-0.5082,-0.6022,-0.6022,-0.5138,-0.4088,-0.3978,-0.3536,-0.2928,-0.21,-0.0718,0.5636,0.757,1,0.9558,0.8012,0.8066,0.6408,0.3978,0.2542,0.3204,0.232,0.0718,0.3536,0.2984,-0.1156,0.6436,0.5446,0.2872,-0.0232,-0.4588,-0.4192,-0.5116,-0.5314,-0.7162,-0.769,-0.5512,-0.4918,-0.4258,-0.2674,-0.2146,0.1684,0.241,0.8482,1,0.8416,0.835,0.9604,0.9142,0.274,0.0958,0.0298,0.0232,0.1024,0.076,0.0628,0.274,-0.421,0,0.2106,0.6842,0.7894,0.2106,0.1578,-0.0526,-0.1052,-0.2106,-0.2632,-0.1578,0,0.1052,0.1052,0.3684,0.6316,0.7894,1,0.8948,0.8422,0.8948,0.8948,0.8422,0.9474,0.7894,0.6316,0.5264,0.6842,0.6842,0.6316,0.8422,-0.2728,-0.091,0.4546,0.7728,0.8636,0.5454,0.1364,0.0454,0.0454,-0.1818,-0.1818,-0.1364,0,0.091,0.2272,0.2728,0.4546,0.7728,1,0.9546,0.7272,0.8182,0.8182,0.8636,0.8182,0.7728,0.591,0.591,0.5454,0.409,0.5454,0.6818,-0.3076,0.282,0.8462,0.7948,-0.1282,-0.1794,-0.2052,-0.3334,-0.3334,-0.4102,-0.4358,-0.5128,-0.5642,-0.3846,-0.359,-0.359,0.0256,0.2564,0.641,0.7692,1,0.7948,0.6666,0.7692,0.6666,0.5128,0.2052,0.3334,0.2308,0.1282,0.3334,0.282,-1,-1,-1,-1,-1,-1,-1,-1,-0.9704,-0.973,-0.2906,0.6138,0.6986,0.9358,0.9858,0.7896,0.3406,0.27,0.329,0.0378,-0.2868,-0.5972,-0.932,-0.9616,-0.9628,-0.909,-0.769,-0.8948,-0.9486,-0.9564,-0.9512,-0.9616,-0.9346,-1,-1,-1,-1,-1,-1,-1,-1,-0.9756,-0.9772,0.289,0.448,0.8004,0.488,0.4282,0.3214,0.0788,-0.0924,-0.2062,-0.3478,-0.4352,-0.7714,-0.9608,-0.971,-0.9746,-0.8182,0.3002,0.0498,0.0528,-0.1208,-0.1752,-0.257,-0.3448,-1,-1,-1,-1,-1,-1,-1,-1,-0.9168,-0.87,-0.38,-0.5634,-0.55,-0.76,-0.66,-0.6668,-0.7134,-0.7,-0.7368,-0.6768,-0.64,-0.64,-0.8668,-0.8334,-0.92,-0.84,0.36,0.4866,0.6366,0.5732,0.6232,0.5732,0.72,-1,-1,-1,-1,-1,-1,-1,-1,0.3142,1,1,1,-0.8858,-1,-1,-1,-0.8858,-0.8572,-0.5714,-0.2572,0.6,1,1,-0.2858,-0.4,1,1,1,-0.8,-0.8,-0.8572,-0.8572,-0.4858,0.8564,0.8654,0.8552,0.8542,0.8332,0.8144,0.788,0.7046,0.556,0.2438,0.6072,0.6168,0.6472,0.6638,0.6522,0.65,0.6804,0.701,0.7232,0.653,-0.4134,-0.3412,0.2188,0.4104,0.482,0.7746,0.8004,1,-0.2992,0.2136,0.4018,0.3676,0.2308,0.3504,0.3676,0.5384,0.7606,0.9316,0.9146,1,1,0.7606,0.7948,0.7778,0.9316,0.8974,0.7778,0.7948,0.624,0.4188,0.1282,-0.1452,-0.2136,0.094,0.1452,0.1452,0.094,0.1112,-0.1112,-0.3162,-0.375,0.1608,0.3214,0.1428,0.1964,0.2322,0.0714,0.3036,0.7322,1,0.8572,0.6964,0.7858,0.6072,0.4286,0.5714,0.6964,0.7322,0.5178,0.6608,0.4642,0.2142,-0.3214,-0.5,-0.5358,-0.1428,0.1786,0.0536,-0.1072,0,0.0178,-0.375,0.2074,0.6586,0.756,0.5122,0.317,0.1098,0.3048,0.439,0.7682,0.9878,0.8658,1,0.9756,0.7804,0.7318,0.8658,0.9878,0.939,0.683,0.6464,0.5122,0.3902,-0.1708,-0.5366,-0.3536,0.2196,0.2682,0.3902,0.1586,0.2074,0.3048,0.1098,1,-1,-1,1,-1,-1,-1,-0.7666,1,-0.7104,-0.4068,-0.3518,-0.3794,-0.4068,-0.131,-0.1448,0.3242,0.2414,0.6,0.7656,0.8896,0.8344,0.8068,1,0.7242,0.6828,0.5448,0.7242,0.6552,0.7518,0.7518,0.7794,0.8068,0.7104,0.9586,0.9586,0.9724,0.7932,0.5862,0.5724,0.1724,'8'
-0.2796,0.1552,0.5714,1,0.9752,0.4224,-0.0932,-0.2796,-0.3602,-0.4162,-0.6708,-0.3354,-0.3168,-0.5032,-0.1242,0.0622,0.3292,0.6832,0.8448,0.7764,0.5404,0.7268,0.5776,0.8758,0.9378,0.7516,0.472,0.4658,0.4658,0.6336,0.6398,0.6894,-0.3714,0.1372,0.5086,1,0.9028,0.2058,-0.0572,-0.3428,-0.5086,-0.5486,-0.5942,-0.56,-0.6,-0.3828,-0.2458,-0.08,0.2,0.5258,0.6858,0.5086,0.2286,0.2514,0.2858,0.5772,0.5314,0.4686,0.3772,0.0914,0.0058,0.0228,0.0572,0.1658,-0.3626,0.234,0.6024,1,0.8012,0.1988,-0.041,-0.2866,-0.579,-0.5498,-0.5964,-0.6082,-0.4854,-0.4328,-0.2866,-0.2748,0.0176,0.3684,0.69,0.6432,0.497,0.3626,0.4562,0.538,0.579,0.5964,0.2514,0.2808,0.1346,0.2398,0.31,0.193,-0.4024,0.3372,0.5918,1,0.7988,0.0118,-0.071,-0.4792,-0.5384,-0.7042,-0.639,-0.6924,-0.5208,-0.4912,-0.3964,-0.3136,-0.006,0.426,0.716,0.781,0.6628,0.4912,0.4792,0.6332,0.6804,0.4556,0.3432,0.213,0.1242,0.1834,0.2012,0.136,-0.2756,0.5542,0.8824,1,0.7956,0.0712,-0.065,-0.418,-0.3126,-0.5232,-0.7152,-0.5976,-0.5108,-0.226,-0.1826,-0.195,0.0588,0.356,0.7276,0.9504,0.9318,0.777,0.7956,0.8142,0.7586,0.4674,0.2074,0.226,0.0898,0.1146,0.1332,0.1826,-0.2352,0.2942,1,0.909,0.1604,-0.1818,-0.2942,-0.3208,-0.4278,-0.524,-0.6952,-0.7166,-0.5348,-0.4974,-0.2888,-0.3316,-0.0214,0.3476,0.77,0.9786,0.9412,0.8396,0.861,0.7486,0.6204,0.3904,0.2566,0.1444,0,0.0856,0.1016,0.0748,-0.0784,0.6382,0.5836,0.7884,0.1808,-0.413,-0.4062,-0.5494,-0.611,-0.5768,-0.7884,-0.3994,-0.3788,-0.256,-0.2424,-0.1946,0.2286,0.4948,0.9658,0.8294,0.8566,1,0.8566,0.3106,0.1058,-0.058,-0.0512,-0.0238,0.1126,0.488,0.5632,0.5426,-0.4358,0.0256,0.4358,0.4872,0.5898,0.4872,0.0256,-0.1282,-0.1282,-0.282,-0.4358,-0.2308,-0.1282,-0.1794,-0.1794,0.1794,0.4872,0.5384,0.5898,0.1282,0.7436,0.7948,0.641,0.8462,1,0.8462,0.641,0.4358,0.7436,0.8974,0.8462,0.5898,-0.2106,0.0526,0.421,0.8948,0.8422,0.3684,-0.1052,-0.2632,-0.421,-0.3158,-0.7894,-0.2106,-0.1052,-0.3684,-0.0526,0,-0.2106,0.6842,0.8422,0.6842,0.6316,0.7894,0.579,0.9474,1,0.579,0.5264,0.579,0.2106,0.6316,0.579,0.4736,-0.3124,0.5624,0.875,0.875,0.7188,0.0312,-0.125,-0.5624,-0.375,-0.5624,-0.5938,-0.5312,-0.5938,-0.1562,-0.2188,-0.2812,-0.0312,0.125,0.75,0.9688,1,0.7188,0.9062,0.8438,0.8438,0.4688,0.2188,0.3124,0.2188,0.2188,0.1876,0.2188,-1,-1,-1,-1,-1,-1,-1,-1,-0.9718,-0.9786,-0.6792,0.3316,0.7664,0.9436,0.9276,0.9234,0.906,0.7074,0.3088,0.114,-0.1248,-0.5436,-0.9382,-0.9598,-0.9704,-0.949,-0.953,-0.9704,-0.961,-0.9704,-0.9664,-0.957,-0.953,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.9734,-0.4728,0.4928,0.5386,0.7844,0.6146,0.6094,0.588,0.391,-0.0018,-0.1834,-0.2262,-0.5976,-0.9432,-0.9454,-0.9654,-0.6404,-0.4508,-0.083,-0.1422,-0.1554,-0.1636,-0.3636,-0.5068,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.9934,-0.5934,-0.5334,-0.7468,-0.7668,-0.78,-0.7568,-0.7858,-0.7516,-0.7944,-0.82,-0.783,-0.6,-0.8268,-0.6868,-0.94,-0.6068,0.4632,0.6032,0.3632,0.38,0.54,0.5,0.3932,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,-0.5428,-0.9428,-0.8572,-1,-0.9714,-0.9428,-0.8,-0.8858,0.4,1,1,-0.8,1,1,1,0.2,-0.8,-0.9142,-0.8858,-0.4572,-0.3142,0.5538,0.5462,0.5358,0.5434,0.5516,0.5298,0.5186,0.5042,0.4802,0.2678,0.5474,0.5832,0.5838,0.5038,0.4786,0.484,0.5134,0.5258,0.5706,0.501,-0.3334,-0.2706,-0.3576,0.3392,0.5106,0.439,0.4936,1,-0.1272,0.309,0.4546,0.309,0.2728,0.1272,0.2728,0.4546,0.6728,0.8182,0.7454,0.891,0.8546,0.8182,0.6728,0.891,0.8546,1,0.9636,0.7454,0.709,0.2728,0.091,-0.2728,-0.2728,-0.091,-0.491,-0.4182,-0.1272,-0.2364,-0.2,-0.3818,-0.1224,0.4286,0.6938,0.3878,0.2448,0.1224,0.204,0.4082,0.7756,0.9388,0.8368,0.9184,1,0.8164,0.6122,0.7142,0.898,1,1,0.9592,0.8368,0.6122,0.1836,-0.1632,-0.2448,-0.2654,-0.3266,-0.1836,-0.204,-0.0408,-0.0204,-0.4082,0.3806,0.416,0.7168,0.416,0.1858,0.0442,0.1504,0.2744,0.646,0.8938,0.7168,0.646,1,0.6284,0.5222,0.6814,0.77,0.8938,0.6992,0.6638,0.77,0.4514,0.2036,-0.1504,-0.1858,-0.1504,0.1504,0.2212,0.239,0.1328,0.0974,-0.0442,0.9254,-1,-1,1,-1,-1,-1,-0.8334,1,-0.7544,-0.7192,-0.5088,-0.6726,-0.2748,-0.1696,0.0176,0.041,0.3216,0.5672,0.614,0.731,0.766,0.8714,0.6258,0.731,0.5322,0.5204,0.5906,0.7076,0.696,0.731,0.766,1,0.848,0.8714,0.766,0.848,0.579,0.4502,0.2046,0.041,'8'
-0.4574,-0.239,0.0136,0.0956,0.3448,0.5188,0.7782,0.9796,1,0.826,0.5392,0.3208,0.2458,-0.0342,-0.041,-0.1638,-0.2354,-0.297,-0.256,-0.0308,0.1502,0.331,0.3754,0.215,-0.0784,-0.1366,-0.1878,-0.1194,-0.0648,-0.0682,0.2696,0.2526,-0.4466,-0.1884,0.0934,0.1512,0.3922,0.4906,0.7488,1,0.922,0.7996,0.6332,0.2496,0.1816,-0.0118,-0.073,-0.1376,-0.304,-0.3006,-0.4058,-0.1478,0.1036,0.3412,0.4568,0.185,-0.1748,-0.1578,-0.219,-0.1512,-0.1308,-0.1578,0.1206,0.1952,-0.4138,-0.1652,0.1758,0.2078,0.421,0.5844,0.801,1,0.9432,0.8544,0.801,0.4778,0.3002,0.1368,0.0054,-0.0444,-0.2362,-0.2576,-0.2434,-0.0374,0.1048,0.2896,0.4068,0.1794,-0.055,-0.055,-0.1368,-0.158,-0.1084,-0.1226,0.0018,0.1404,-0.4376,-0.2434,0.1414,0.1546,0.3848,0.5954,0.8322,1,0.9178,0.7664,0.7236,0.7236,0.6448,0.5098,0.056,-0.023,-0.0856,-0.056,-0.0264,0.125,0.2632,0.4868,0.6218,0.3454,0.0822,-0.0098,-0.1316,-0.0132,-0.0624,-0.0494,0.023,0.1218,-0.4144,-0.1846,0.2346,0.2246,0.5142,0.767,1,0.97,0.8836,0.6806,0.421,0.6906,0.7038,0.787,0.7238,0.584,0.4176,0.1914,0.1348,0.4076,0.401,0.6074,0.654,0.451,0.2046,0.1314,-0.0184,-0.1748,-0.1448,-0.0816,0.0848,0.035,-0.259,0.133,0.5684,0.5936,0.8526,1,0.9064,0.4928,0.3346,0.2626,0.0324,0.1762,0.295,0.3848,0.5108,0.7086,0.8956,0.7806,0.6546,0.6906,0.6942,0.8058,0.946,0.8094,0.6906,0.5504,0.428,0.3382,0.3706,0.349,0.3166,0.41,-0.0096,0.6532,0.5222,0.6802,0.58,0.5838,0.2254,-0.0134,-0.2524,-0.3912,-0.3912,-0.0944,-0.1368,-0.21,-0.0598,0.0058,0.2062,0.5492,0.8034,1,0.8574,0.6184,0.738,0.6454,0.684,0.788,0.5646,0.2562,0.2062,0.1522,0.3334,0.2216,0.1666,0.6112,0.3888,0.4444,0.4444,0.4444,0.7222,0.8888,0.8334,1,0.2222,0.2222,0.3334,0.2222,0.2222,0.0556,0.1112,0,-0.1112,0.2222,0.3888,0.6666,0.6666,0.2222,0.1112,-0.1666,0,0.2222,-0.0556,-0.1666,0.3334,0.4444,-0.5,-0.05,0.1,0.15,0.45,0.5,0.65,0.9,1,0.6,0.3,0.4,0,0,0,-0.2,-0.55,-0.6,-0.55,-0.15,-0.25,0.2,0.1,0.05,-0.25,-0.25,-0.55,-0.2,-0.15,-0.3,0.15,0.15,-0.3714,-0.0858,0.3714,0.3714,0.7714,1,0.8858,0.7428,0.3714,0.2,0.0286,0.0572,0.2858,0.3142,0.7714,0.8286,0.9714,0.6858,0.3428,0.5428,0.5428,0.8286,0.8858,0.4286,0.3428,0.2572,0.3714,0.1714,0.4,0.3428,0.3142,0.4286,-1,-1,-1,-1,-1,-1,-1,-1,-0.956,-0.9602,-0.7986,0.3326,0.725,0.7838,0.7754,0.7502,0.7776,0.7544,0.8426,0.8992,0.8174,0.0746,-0.7964,-0.9286,-0.914,-0.9308,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.974,-0.9764,-0.6158,0.564,0.807,0.587,0.523,0.6388,0.9062,0.7644,0.5052,0.1878,-0.1734,-0.5552,-0.8624,-0.898,-0.9124,-0.935,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.9534,-0.63,-0.629,-0.6178,-0.656,-0.668,-0.672,-0.654,-0.648,-0.86,-0.944,-0.892,-0.836,-0.44,-0.2768,-0.4768,-0.7468,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,-1,-1,-1,-1,-1,-0.8572,-0.6,-0.5142,-0.1428,0.4858,0.0286,-0.7714,-0.5428,-0.5428,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.271,-0.2704,-0.2894,-0.3102,-0.3198,-0.3128,-0.2952,-0.3548,-0.4224,-0.3704,-0.3866,0.153,-0.6376,-0.216,0.4782,1,0.7454,-0.2084,-0.421,-0.0264,0.6316,0.8948,0.9474,1,0.6316,0.6316,0.5264,0.6052,0.7894,0.7368,0.7106,0.7106,0.6578,0.7894,0.6316,0.5264,0.5264,0.3158,0.2632,0.2632,0.2894,0.4474,0.3948,0.4474,0.1578,0.1316,-0.0264,-0.1316,-0.1316,-0.579,-0.25,0.0192,0.327,0.7692,0.9808,1,0.4616,0.327,0.3846,0.3654,0.673,0.6538,0.4808,0.4038,0.5,0.75,0.5384,0.3846,0.5576,0.327,0.2692,0.173,0.3076,0.1924,0.3846,0.577,0.3462,0.327,0.3846,0.1154,0.0576,-0.1154,-0.164,0.0492,0.3278,0.9344,1,0.8852,0.6066,0.3934,0.2786,0.3606,0.541,0.7378,0.1312,0.1804,0.1804,0.4262,0.3606,0.164,0.3114,0.1804,0.246,-0.0164,-0.164,-0.2622,0.1804,0.3114,0.2622,0.164,0.0164,-0.1476,-0.1476,-0.3114,1,-1,-1,1,-1,-1,-1,-0.7666,-1,-0.4472,-0.1382,0.0406,0.0244,-0.057,-0.122,0.1708,0.3496,0.5122,0.9838,1,0.6586,0.9512,0.7886,0.317,0.2682,0.6586,0.935,0.5448,0.626,0.626,0.6586,0.5772,0.8536,0.756,0.2682,0.317,0.317,0.2682,0.317,0.0732,-0.4472,'9'
-0.309,-0.0016,0.3388,0.19,0.4348,0.848,1,0.9834,0.7818,0.8842,0.7984,0.2794,-0.0842,-0.2794,-0.276,-0.372,-0.5868,-0.5372,-0.6364,-0.3356,0.1206,0.1338,-0.0116,-0.276,-0.4082,-0.4546,-0.5538,-0.4976,-0.6232,-0.5272,-0.491,-0.2528,-0.369,0.0064,0.3028,0.3186,0.5836,0.6782,0.9936,1,0.9212,0.9906,0.6846,0.5678,0.1136,-0.0348,-0.0788,-0.1766,-0.4006,-0.47,-0.306,-0.0852,0.0064,0.1862,0.246,0.0474,-0.1452,-0.3564,-0.4006,-0.4354,-0.4038,-0.3344,-0.3848,-0.3218,-0.4772,-0.0872,0.1148,0.123,0.3998,0.7012,0.834,1,0.5796,0.8258,0.7786,0.6514,0.4164,0.09,-0.076,-0.1674,-0.2144,-0.2172,-0.2116,-0.1424,0.1092,0.2476,0.3196,0.2034,-0.0208,-0.1674,-0.1922,-0.1702,-0.2698,-0.195,-0.206,-0.0706,-0.474,-0.0434,0.1416,0.1156,0.3236,0.7428,0.9018,1,0.6648,0.6792,0.7658,0.7284,0.763,0.578,0.237,0.1446,0.0722,0.0086,0.0954,0.0404,0.3324,0.578,0.581,0.4104,0.159,-0.0752,-0.0086,-0.0144,-0.0404,0.0752,-0.0752,0.107,-0.4656,0.0298,0.2358,0.206,0.406,0.9074,0.8986,1,0.7224,0.4956,0.397,0.6,0.7314,0.8956,0.9164,0.7402,0.4328,0.3762,0.397,0.382,0.6448,0.6746,0.6358,0.4866,0.3642,0.188,0.1284,0.003,0.0806,0.1104,0.2746,0.4238,-0.1738,0.16,0.5766,0.58,0.8624,0.9552,1,0.7556,0.308,-0.0396,-0.0912,0.0774,0.2118,0.2564,0.3528,0.6006,0.8004,0.907,0.8554,0.7866,0.7108,0.7006,0.9208,0.9104,0.8932,0.58,0.377,0.3288,0.3012,0.3872,0.3632,0.5284,0.0218,0.592,0.3624,0.39,0.6198,0.3822,0.2554,-0.3584,-0.7188,-0.7584,-0.7702,-0.4138,-0.4336,-0.5644,-0.7188,-0.493,-0.2,0.109,0.3108,0.4456,0.3822,0.3306,0.4416,0.7426,1,0.81,0.2594,0.1486,0.0614,0.1128,-0.006,-0.0178,-0.375,0.0624,0.3124,0.3124,0.5,1,1,0.6876,0.6876,0.6876,0.5624,0.3124,0.0624,0,-0.375,-0.5,-0.6876,-0.3124,-0.3124,-0.4376,-0.0624,0.3124,0.125,-0.0624,-0.0624,-0.3124,-0.5,-0.1876,-0.25,-0.75,-0.3124,-0.1876,0.356,0.5594,0.695,0.695,0.661,0.9322,0.8644,1,0.8644,0.7288,0.8644,0.661,0.4576,0.4238,0.2542,0.356,0.2882,0.2882,0.1864,0.1526,0.4576,0.4576,0.4576,0.4238,0.2882,0.0848,0.1526,0.1526,0.1526,0.2542,0.356,0.3898,-0.2972,-0.027,0.3244,0.3244,0.6756,0.7298,1,0.7568,0.3784,0.081,-0.081,0.1622,0.1892,0.3514,0.5136,0.7568,0.6486,0.7568,0.6216,0.6216,0.5946,0.5676,0.7298,0.7298,0.6756,0.4054,0.3784,0.2972,0.2432,0.3244,0.4324,0.5946,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.9366,-0.6768,-0.1574,0.5276,0.9222,0.9632,0.9162,0.8098,0.7056,0.6094,0.4826,0.2434,-0.1698,-0.6238,-0.9018,-0.951,-0.9488,-0.9652,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9752,-0.9656,-0.8052,-0.474,0.0178,0.359,0.6322,0.7496,0.7762,0.7778,0.2998,-0.0934,-0.4998,-0.6734,-0.8624,-0.9412,-0.9434,-0.9492,-0.9698,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.87,-0.7234,-0.7346,-0.6782,-0.7164,-0.68,-0.6718,-0.675,-0.6618,-0.6718,-0.7334,-0.7234,-0.9118,-0.6734,-0.4468,-0.5134,-0.6068,-0.7134,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,0.1714,1,1,-0.7714,-0.7142,-1,-1,-1,-0.9714,-0.8286,-0.5428,-0.4286,-0.2,-0.5428,-0.6286,-0.7714,-0.4858,-0.5428,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.4924,-0.4396,-0.361,-0.417,-0.3656,-0.3848,-0.429,-0.464,-0.5726,-0.4034,-0.28,0.3882,-0.7746,-0.7158,-0.639,-0.458,-0.1792,-0.6584,0.2272,0.2272,0.8636,1,0.9546,0.9546,0.5,0.1364,0.0454,0,0.3636,0.2272,0.1364,0.2728,0,0,0.0454,0.409,0.3636,0.1818,0.3182,-0.0454,-0.0454,-0.0454,0,-0.3182,-0.0454,0,-0.3636,0.0454,0,-0.5,0.2044,0.2258,0.785,1,0.8494,0.656,0.2904,-0.0108,0.0968,-0.2688,0.3334,0.2258,-0.1398,-0.0108,-0.0108,-0.0752,0.0108,0.2688,0.3978,0.2258,0.0752,-0.0538,-0.2044,-0.2688,-0.2474,-0.3334,-0.0752,-0.2044,-0.3118,-0.1612,-0.3118,-0.914,0.3118,0.4408,0.8494,1,0.871,0.7204,0.4194,0.1398,-0.3548,-0.2044,0.5054,0.3334,0.0538,-0.2044,-0.1182,0.0108,0.3334,0.656,0.5698,0.2044,0.0322,-0.0752,-0.1398,-0.0968,-0.1182,-0.0968,-0.0538,-0.3978,-0.3978,-0.3118,-0.1398,-0.2044,-0.71,-1,-1,1,-0.8,-1,-0.4,-0.8334,-1,-0.4042,-0.4894,0.1064,0.1064,0,0,0.234,0.532,0.4894,0.9148,0.8724,1,0.8298,0.851,0.617,0.4042,0.6596,0.234,0.4894,0.5744,0.9788,0.5744,0.4256,0.5106,0.1276,0.1064,0.1064,0.0852,-0.1914,-0.5744,-0.3192,-0.617,'9'
-0.1166,0.355,1,0.9242,0.935,-0.0082,-0.328,-0.5502,-0.6476,-0.6314,-0.6532,-0.664,-0.4688,-0.1978,-0.0136,0.225,0.4038,0.729,0.8212,0.8754,0.6964,0.5718,0.4906,0.3388,0.2304,0.1816,0.252,0.4472,0.4308,0.317,0.2032,-0.046,-0.2444,0.121,0.6494,1,0.8914,0.4962,0.0814,-0.047,-0.195,-0.4024,-0.6,-0.3828,-0.1062,0.0568,0.1902,0.3284,0.5802,0.6642,0.6988,0.6988,0.7186,0.8024,0.8272,0.4666,0.2246,0.0222,-0.0618,0.0618,0.0914,0.1802,0.1308,-0.037,-0.2284,0.2704,0.6588,0.9266,0.8216,0.8582,0.2756,-0.0184,-0.1602,-0.2178,-0.328,-0.2336,-0.0918,0.2336,0.4174,0.5958,0.958,0.8688,0.8846,0.8478,0.916,1,0.8898,0.9056,0.5014,0.3806,0.3018,0.3228,0.3806,0.559,0.4068,0.4068,-0.268,0.2096,0.512,0.878,0.8408,0.8144,0.2414,-0.0558,-0.3368,-0.3688,-0.2892,-0.3528,-0.2626,0.045,0.2096,0.3846,0.7612,1,0.9098,0.7984,0.7506,0.9204,0.8144,0.8726,0.703,0.4376,0.1778,0.1034,0.1512,0.3422,0.3952,0.5014,-0.2022,0.3596,0.736,1,0.7192,0.7134,0.3146,-0.1574,-0.3988,-0.4832,-0.5338,-0.545,-0.4102,-0.1236,0.1686,0.2866,0.4832,0.7584,0.9102,0.854,0.8484,0.6348,0.573,0.9102,0.8932,0.4606,0.1798,0.2192,0.2528,0.3484,0.354,0.3708,-0.2614,0.353,0.682,1,0.806,0.1806,0.089,-0.4878,-0.5634,-0.585,-0.5526,-0.7304,-0.7574,-0.3746,-0.2884,-0.31,-0.0944,0.337,0.849,0.7952,0.7466,0.4016,0.6172,0.7844,0.7574,0.31,-0.2292,0.0026,-0.0188,0.0134,0.0944,0.0296,0.013,0.4598,1,0.9116,0.7662,0.091,-0.0494,-0.439,-0.9376,-0.9116,-0.7194,-0.4962,-0.548,-0.5636,-0.3662,-0.3142,-0.3402,-0.1896,0.522,0.8234,0.865,0.7818,0.6104,0.7246,0.6832,0.3662,0.2572,0.0078,-0.1168,0.2104,0.1636,0.148,0.2632,0.6316,1,0.8422,0.6316,0.421,-0.0526,-0.1578,-0.1578,-0.2106,-0.421,-0.421,-0.421,0,0.2106,0.1578,0.421,0.2106,0.8422,1,0.8422,0.5264,0.8422,0.8422,0.6316,0.6842,0.421,0.3684,0.6316,0.6842,0.8422,0.9474,0.238,0.4286,1,1,0.762,0.2858,0.1428,-0.238,-0.381,-0.2858,-0.1904,-0.0952,0.0476,0.238,0.238,0.4762,0.7142,0.7142,0.7142,0.8096,0.5238,0.4762,0,0.4286,0.5238,0.4286,0.5238,0.6666,0.5714,0.2858,-0.238,-0.238,-0.2,0.4182,0.709,1,0.709,0.6728,0.2728,-0.2364,-0.4546,-0.6,-0.7454,-0.6364,-0.3818,-0.091,0.0182,0.2728,0.309,0.6,0.9272,0.9272,0.8546,0.5636,0.5272,0.9636,0.9272,0.2728,0.0182,0.2364,0.3454,0.4546,0.4546,0.4182,-1,-1,-1,-1,-0.9808,-0.9768,-0.9444,-0.9656,-0.9576,-0.906,-0.3324,0.1616,0.8142,0.5666,0.203,0.0898,-0.004,-0.0506,-0.0778,-0.0526,-0.1222,-0.4344,-0.5768,-0.8516,-0.9686,-0.9768,-0.9354,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9684,-0.9678,-0.4256,0.0116,0.2154,0.78,0.0514,0.1194,0.8416,0.6316,0.4094,0.3618,0.1944,0.0276,-0.0578,-0.0866,-0.172,-0.4782,-0.6322,-0.8158,-0.9026,-0.918,-0.904,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.92,-0.2168,0.6732,0.4566,0.5766,-0.1468,-0.7876,-0.7976,-0.77,-0.7476,-0.7676,-0.7476,-0.7526,-0.8978,-0.9,-0.9578,-0.9556,-0.95,-0.58,-0.2668,-0.4068,-0.4834,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,0.0286,0.5714,1,1,-0.2572,-0.9714,-1,-1,-0.9714,-1,-0.9142,-0.9142,-0.8,-0.6572,-0.3714,-0.3714,-0.8,-0.8572,-0.3142,-1,-1,-1,-1,-1,-1,-0.0918,-0.0644,-0.0242,0.056,0.1302,0.211,0.3172,0.4036,0.5172,0.464,0.1706,0.1332,0.1092,0.1142,0.1098,0.0746,0.005,0.0016,0.036,0.2004,-0.3334,-0.0352,0.0416,-0.027,0.0402,0.2736,0.6644,1,-0.5876,-0.3124,-0.1876,-0.0792,-0.0084,0.1166,0.2166,0.35,0.3666,0.6084,0.725,0.8626,0.8958,1,0.975,0.9458,0.8124,0.8666,0.9542,0.9708,0.9084,0.8458,0.7666,0.7584,0.6458,0.5208,0.5208,0.4666,0.1958,0.1708,-0.0876,-0.45,-0.9046,-0.7022,-0.458,-0.3894,-0.4542,-0.3168,-0.187,0.1298,0.5268,0.5496,0.832,0.9352,0.9466,0.874,0.9504,0.9466,0.8664,0.7634,0.9122,1,0.7558,0.8092,0.832,0.6298,0.5572,0.4924,0.5268,0.5152,0.3206,0.1794,0.1908,-0.126,0.0338,0.153,-0.0298,-0.2206,-0.4234,-0.4474,-0.0656,0.32,0.662,0.6462,0.8768,1,0.8568,0.8092,0.9602,0.7256,0.7892,0.7932,0.841,0.8926,0.8688,0.825,0.8966,0.845,0.7176,0.5786,0.6104,0.5904,0.4314,0.2962,0.1372,-0.1332,0.4178,-1,-1,1,-0.6,-1,-0.4,0,-1,-0.3806,-0.1504,-0.0442,0.0266,-0.0088,-0.062,0.0796,0.2036,0.2212,0.6638,0.8938,1,0.9292,0.77,0.593,0.7346,0.5398,0.823,0.7346,0.8584,0.9646,0.3982,0.6638,0.3628,0.2036,0.2744,0.3452,0.115,0.1328,0.0974,0.0442,-0.1504,'10'
-0.2428,0.251,0.6872,1,0.9794,0.1976,-0.033,-0.2058,-0.539,-0.572,-0.5474,-0.3004,-0.288,-0.1482,0.0782,0.3498,0.4444,0.498,0.3622,0.4938,0.7242,0.8354,0.712,0.4526,0.2674,0.2634,0.1564,0.1934,0.3292,0.4486,0.2304,0.0082,-0.2938,0.1924,0.48,1,0.8604,0.6786,0.2684,-0.1332,-0.408,-0.446,-0.3784,-0.2558,-0.0994,0.1458,0.3024,0.5052,0.852,0.611,0.6152,0.4334,0.6956,0.7758,0.704,0.6744,0.4122,0.167,0.167,0.1966,0.1416,0.3912,0.2684,0.2432,-0.3028,0.1068,0.438,1,0.8258,0.708,0.2854,0.0284,-0.2854,-0.4728,-0.6428,-0.3986,-0.0458,0.1504,0.1634,0.3638,0.708,0.9302,0.8344,0.7298,0.6602,0.7516,0.9302,0.9128,0.7734,0.4422,0.451,0.403,0.4118,0.5512,0.6034,0.6906,-0.2614,0.2936,0.5734,1,0.7752,0.6468,0.2614,-0.2752,-0.4954,-0.5964,-0.5504,-0.399,-0.1606,-0.0276,0.0138,0.2936,0.4358,0.7568,0.812,0.6744,0.688,0.7752,0.8854,0.8256,0.7522,0.4954,0.3302,0.2614,0.1606,0.2202,0.3854,0.3302,-0.2682,0.3318,0.6772,1,0.7818,0.4636,0.1864,-0.25,-0.541,-0.5046,-0.509,-0.4454,-0.3728,-0.141,0.0046,0.0728,0.2728,0.5636,0.841,0.8182,0.7954,0.8046,0.8182,0.9318,0.959,0.6228,0.4,0.2772,0.1772,0.2,0.3046,0.3864,-0.2882,0.262,0.607,1,0.917,0.1136,-0.0088,-0.3014,-0.3756,-0.6812,-0.6682,-0.3712,-0.3494,-0.3014,-0.2096,-0.0088,0.2664,0.5764,0.7292,0.8078,0.7074,0.7248,0.7642,0.8516,0.7468,0.4104,0.4062,0.4192,0.3144,0.3756,0.2838,0.345,0.061,0.615,1,0.9624,0.5118,0.1502,0.1362,-0.2816,-0.5634,-0.709,-0.6714,-0.601,-0.3944,-0.338,-0.2958,-0.399,-0.324,0.1878,0.6902,0.8028,0.9108,0.7746,0.7982,0.8732,0.845,0.676,0.3944,0.324,-0.014,0.2112,0.169,0.3192,-0.2,0.4,0.7334,0.4666,0.6666,0.1334,-0.2666,-0.4,-0.9334,-0.6,-0.6,-0.7334,-0.8,-0.4666,-0.4,-0.3334,-0.2,0.2666,0.0666,0.2666,0.8,1,1,0.6666,0.6,0.4666,0.5334,0.4666,0.3334,0.4,0.2,-0.2,-0.1764,0.2352,0.8824,0.9412,0.8824,0.1176,-0.1176,-0.4118,-0.5294,-0.647,-0.647,-0.4118,-0.2352,-0.0588,-0.0588,0.2352,0.4118,0.4706,0.353,0.4118,0.9412,1,0.8236,0.5882,0.2352,0.1764,0.353,0.4706,0.4706,0.353,-0.1176,-0.1176,-0.258,0.2258,0.613,0.9354,0.6774,0.6774,0.2258,-0.129,-0.2904,-0.4194,-0.5806,-0.258,-0.0646,-0.0322,0.0322,0.387,0.6452,0.9032,0.742,0.6452,0.613,0.742,1,0.7096,0.6774,0.258,0.258,0.3548,0.258,0.387,0.4516,0.4516,-1,-1,-1,-1,-0.9806,-0.9708,-0.9146,-0.9524,-0.8886,-0.5738,-0.2374,0.299,0.9038,0.378,0.1898,0.1098,0.085,0.0666,0.1,0.138,-0.1888,-0.3488,-0.6484,-0.8886,-0.9686,-0.9654,-0.9676,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9702,-0.966,-0.5898,-0.367,-0.1838,0.0694,0.0848,0.372,0.8826,0.408,0.2468,0.1824,0.0884,0.048,0.1132,0.179,-0.2114,-0.4392,-0.7122,-0.8698,-0.9336,-0.9278,-0.935,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.8668,-0.3868,0.5932,0.4366,0.27,-0.4168,-0.7956,-0.78,-0.7956,-0.7512,-0.722,-0.77,-0.844,-0.866,-0.884,-0.902,-0.92,-0.94,-0.6068,-0.64,-0.5834,-0.7634,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,-0.3142,0.4858,1,1,-0.6286,-0.9428,-1,-0.9142,-0.8,-1,-1,-1,-0.5142,-0.0286,-0.2,-0.4286,-0.6858,-1,-0.7714,-1,-1,-1,-1,-1,-1,0.3574,0.385,0.4314,0.4726,0.5006,0.5414,0.5796,0.6362,0.6732,0.5432,0.2274,0.204,0.1392,0.1366,0.1064,0.0514,0.0314,0.0748,0.151,0.3504,-0.3334,0.1294,0.0856,0.2518,0.1054,0.5298,0.9802,1,-0.5304,-0.2642,-0.1918,-0.0384,0.0068,0.0654,0.2234,0.228,0.3724,0.5982,0.675,0.851,0.9458,1,0.7878,0.8194,0.8736,0.869,0.842,0.8872,0.9638,0.8646,0.666,0.5892,0.4402,0.4312,0.4086,0.1152,0.1152,-0.052,-0.097,-0.4672,-0.2874,-0.3166,-0.5584,-0.5666,-0.4084,-0.3042,-0.2166,0.0708,0.325,0.5834,0.9042,0.9876,0.8584,0.9416,0.9584,0.8,0.8834,0.9124,0.9084,0.8542,0.9958,1,0.8458,0.7458,0.6958,0.55,0.5666,0.5084,0.1958,0.2916,0.0084,-0.35,0.1924,0.5284,0.2982,-0.1056,-0.4944,-0.4604,-0.1358,0.166,0.2944,0.4076,0.883,1,0.7094,0.615,0.7886,0.7246,0.5886,0.483,0.585,0.5812,0.7358,0.7774,0.717,0.6528,0.4716,0.2982,0.2378,0.268,0.0642,0.0604,-0.0754,-0.6378,-0.1202,-1,-1,1,0.2,-1,-0.4,-0.0334,1,-0.0476,0.162,0.3524,0.2572,-0.0476,0.0476,0.1428,0.238,0.4858,0.6572,0.9428,1,0.7714,0.6572,0.7524,0.4096,0.4286,0.8666,0.6952,0.5238,0.7334,0.4858,0.3142,0.238,0.0096,-0.0286,-0.0476,0.238,-0.0476,0.0286,0.0286,-0.4666,'10'
-0.1106,0.3682,0.8068,0.8752,0.9798,0.8028,0.5292,0.2516,0.167,-0.1188,-0.332,-0.1146,0.1308,0.336,0.4164,0.5172,0.7224,0.8672,0.9436,0.8792,1,0.9798,0.984,0.7786,0.5412,0.497,0.4568,0.4084,0.2556,0.2796,0.2958,0.654,-0.2944,0.0636,0.5886,0.7158,0.9732,0.6956,0.515,0.3914,0.1974,0.1338,-0.0536,0.0234,0.1138,0.3244,0.4882,0.6086,0.8696,0.8762,0.8964,0.796,0.826,0.9498,1,0.9632,0.7224,0.5484,0.4382,0.4548,0.4682,0.5686,0.6054,0.7024,-0.3506,-0.078,0.5098,0.7402,0.8896,0.5488,0.4416,0.315,0.1754,0.0584,-0.0454,0.052,0.1234,0.2046,0.4806,0.6202,0.6916,1,0.8636,0.909,0.8962,0.9124,0.9676,0.8994,0.724,0.578,0.5,0.422,0.4642,0.6038,0.6072,0.7012,-0.34,-0.0708,0.5522,0.8014,0.909,0.4344,0.2996,0.266,0.0708,-0.1246,-0.1078,-0.165,0.0236,0.0942,0.2794,0.468,0.6498,0.8114,0.9664,0.899,0.862,0.9292,0.8956,1,0.707,0.5858,0.5152,0.4916,0.431,0.4814,0.559,0.7576,-0.3428,0.0248,0.622,0.7986,0.8798,0.1872,0.0318,0.0778,-0.1166,-0.2296,-0.2368,-0.3322,-0.152,-0.0884,0.0812,0.2014,0.4452,0.6114,1,0.8304,0.8198,0.7598,0.7844,0.8056,0.636,0.4558,0.4416,0.4134,0.2332,0.2262,0.3004,0.53,-0.159,0.2676,0.984,0.9558,0.5574,0.1992,0.159,-0.0866,-0.2194,-0.2194,-0.489,-0.5574,-0.4206,-0.2796,-0.0946,-0.006,0.175,0.505,0.9396,1,0.992,0.8512,0.8512,0.9034,0.6136,0.5212,0.3602,0.2636,0.2314,0.1468,0.2032,0.34,-0.0522,0.5204,0.8878,1,0.2804,-0.1258,-0.1798,-0.528,-0.6634,-0.5706,-0.6558,-0.6286,-0.5822,-0.5976,-0.4198,-0.4546,-0.3036,0.087,0.497,0.7176,0.853,0.7912,0.6982,0.7524,0.8646,0.47,0.0174,-0.1412,-0.149,-0.0444,-0.0252,-0.0252,0.238,0.619,0.6666,0.762,0.5238,0.5238,0.381,0.381,0.0952,-0.238,-0.5714,0.0952,0.238,0.2858,0.381,0.1904,0.3334,0.2858,0.4762,0.8572,0.9524,0.762,0.8096,1,0.5714,0.619,0.3334,0.5714,0.381,0.619,0.619,0.619,-0.2778,0.2222,0.6112,0.7222,0.6666,0.6112,0.3334,0.2222,-0.1666,-0.3334,-0.2222,-0.0556,-0.0556,-0.1666,0,0.5,0.7222,0.7778,0.6666,0.2778,0.8334,1,1,0.7222,0.3888,0.1666,0.2778,0.2222,-0.0556,-0.2222,0.2778,0.5556,-0.3914,0.1014,0.6812,0.6812,0.7682,0.1014,-0.1594,-0.1304,-0.1884,-0.3624,-0.3044,-0.4492,-0.4202,-0.3624,-0.0434,0.0724,0.2754,0.4782,1,0.913,0.855,0.7102,0.5942,0.6812,0.7102,0.5362,0.4202,0.4202,0.2464,0.1014,0.1884,0.3334,-1,-1,-1,-0.9768,-0.9784,-0.9452,-0.8412,-0.8714,-0.873,-0.8974,-0.6708,0.2188,0.6232,0.9596,0.9624,0.8614,0.86,0.74,0.434,0.135,0.1682,-0.1552,-0.6202,-0.8498,-0.948,-0.951,-0.9638,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9726,-0.9684,-0.67,0.3062,-0.1506,-0.1268,-0.7036,-0.691,-0.035,0.4352,0.8346,0.9376,0.8606,0.7036,0.4612,0.1632,-0.2172,-0.197,-0.4148,-0.7324,-0.8452,-0.8914,-0.9222,-0.9342,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9458,-0.9668,-0.8734,0.2166,0.4166,0.5432,0.3,-0.1468,-0.7156,-0.7,-0.66,-0.6068,-0.598,-0.636,-0.624,-0.864,-0.866,-0.84,-0.878,-0.7568,-0.28,-0.1868,-0.44,-0.66,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3714,-0.0572,1,1,0.0286,-0.2858,0.6858,0.1428,0.3714,-0.6858,-0.8858,-0.9714,-1,-1,-1,-0.6858,-0.7428,-0.6572,0.0286,-0.3714,-0.5142,-0.6286,-0.7142,-0.3428,-1,-1,-1,-1,-1,-1,0.668,0.6822,0.7174,0.7438,0.7582,0.7978,0.834,0.8778,0.9078,0.6706,0.1168,0.0998,0.0806,0.0824,0.0818,0.08,0.1078,0.1344,0.1772,0.3476,-0.4934,0.1294,-0.6896,-0.3952,-0.047,0.1094,0.2124,1,-0.9444,-0.162,-0.0788,-0.1158,-0.074,0.1944,0.3334,0.412,0.4908,0.6852,0.787,0.9722,1,0.8288,0.7916,0.699,0.875,0.8334,0.8102,0.9722,0.9676,0.4584,0.3426,0.2732,0.0788,0.0694,0.6296,0.6528,0.3056,0.0232,0.0648,-0.0602,-0.6814,-0.3444,-0.1444,-0.2408,-0.3296,-0.1962,-0.1444,-0.026,0.1074,0.2962,0.574,0.7334,0.8592,0.7222,0.5926,0.563,0.6222,0.5852,0.6222,0.8666,1,0.7926,0.6334,0.3666,0.3556,0.263,0.3926,0.4704,0.3408,0.1186,0.074,-0.037,-0.1812,-0.0212,0.0212,0.233,-0.04,-0.247,0.1436,0.233,0.6282,1,0.9058,0.9248,0.807,0.6894,0.3318,0.6142,0.7318,0.6942,0.5106,0.6188,0.887,0.76,0.28,0.1576,0.1152,0.1624,0.6564,0.7082,0.3552,0.3552,0.5436,0.2094,0.8976,-1,-1,1,-0.8,-1,-0.6,0.0666,-1,-0.2838,0.1216,0.1756,0.0676,0.1622,0.0676,0.0406,0.1352,0.3648,1,1,0.5676,0.7028,0.581,0.6486,0.527,0.473,0.6082,0.5406,0.6756,0.8648,0.7432,0.6622,0.1082,0.2702,0.0136,0.3378,0.1756,0.2028,0.3648,-0.0136,-0.2972,'11'
-0.1518,0.2978,0.72,0.8224,0.9448,0.7358,0.578,0.2624,0.077,-0.073,-0.3018,-0.1084,0.077,0.1834,0.3728,0.5384,0.6884,0.9644,1,0.8264,0.8068,0.8462,0.8264,0.8738,0.6726,0.4556,0.353,0.2032,0.1952,0.3254,0.357,0.5108,-0.3214,0.016,0.5062,0.8614,0.9432,0.7372,0.5062,0.293,0.1048,-0.0586,-0.119,-0.1652,-0.0692,0.2008,0.293,0.5524,0.8402,1,0.9218,0.698,0.8118,0.8366,0.929,0.8722,0.5844,0.5168,0.3926,0.3322,0.318,0.4032,0.389,0.6944,-0.261,0.0036,0.5258,0.9302,0.8898,0.7904,0.4412,0.2758,0.1986,-0.1176,-0.1692,-0.0846,-0.0258,0.1324,0.3824,0.4816,0.761,0.9816,1,0.9558,0.875,0.9338,1,0.989,0.6948,0.5624,0.522,0.4926,0.3308,0.386,0.3714,0.5736,-0.2944,-0.037,0.5126,0.9026,0.8362,0.6804,0.31,0.037,-0.0448,-0.3996,-0.4152,-0.2008,-0.1968,-0.0916,0.1072,0.2242,0.501,0.8012,1,0.8986,0.848,0.8012,0.8168,0.9922,0.9338,0.7076,0.462,0.3606,0.1618,0.232,0.2788,0.5478,-0.3648,0.0396,0.4896,1,0.9546,0.3346,0.2022,-0.0284,-0.036,-0.3724,-0.5086,-0.2854,-0.3044,-0.119,0.138,-0.0018,0.2212,0.4706,0.9546,0.947,0.9924,0.811,0.8602,0.8942,0.9774,0.6332,0.5652,0.516,0.3082,0.4064,0.3346,0.516,-0.2046,0.3568,0.8246,0.883,0.9104,-0.0332,-0.0176,-0.1734,-0.3138,-0.7076,-0.9142,-0.54,-0.4308,-0.3918,-0.2826,-0.3646,-0.154,0.08,0.6686,0.8908,0.848,0.5634,0.6648,0.922,1,0.6998,0.4036,0.3178,0.1462,0.154,0.0644,0.1228,0.1626,0.7438,0.8522,0.867,0.1232,-0.2464,-0.3546,-0.4926,-0.5764,-0.8178,-0.8522,-0.7832,-0.6798,-0.537,-0.537,-0.6306,-0.468,-0.2758,0.4582,0.7488,1,0.9408,0.4434,0.7044,0.9014,0.8326,0.463,0.0542,0.1626,-0.0344,-0.1232,0.0344,0.3334,1,1,0.9334,0.6666,0.4,0.4,0.3334,-0.1334,-0.4666,-0.4666,-0.2666,0.2,0.3334,0.5334,0.6666,0.6666,0.7334,0.9334,0.9334,0.3334,0.6666,0.2,0.8,0.8666,0.5334,0.6,0.6,0.4,0,0.4666,0.5334,-0.2,0.3334,0.7334,0.7334,0.9334,0.7334,0.5334,0.2666,0.0666,-0.4,-0.4666,-0.2666,-0.0666,-0.3334,0,0.5334,0.7334,0.9334,0.6666,0.2,0.8,0.9334,1,0.9334,0.4666,0.0666,0.2,0.1334,-0.0666,-0.2,-0.6,-0.0666,-0.3236,0.2058,0.5588,1,0.9412,0.0294,0.1764,-0.0882,-0.1764,-0.6764,-0.6764,-0.4706,-0.353,-0.2058,0.0294,-0.147,0.0294,0.2352,0.647,0.8236,0.8824,0.7058,0.6764,0.7648,0.853,0.647,0.4412,0.353,0.0294,0.3824,0.2648,0.2942,-1,-1,-1,-1,-0.9664,-0.9628,-0.8882,-0.6682,-0.8508,-0.9106,-0.8434,0.5658,0.8918,0.6644,0.5844,0.5396,0.5322,0.754,0.9496,0.5788,0.1164,-0.2396,-0.6682,-0.9198,-0.9366,-0.9516,-0.946,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9608,-0.9514,-0.4108,0.7458,0.263,-0.5752,-0.6776,0.5018,0.9432,0.786,0.6248,0.5328,0.4636,0.602,0.786,0.3344,-0.0728,-0.4274,-0.7592,-0.8802,-0.9236,-0.9246,-0.937,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.8868,-0.61,0.3366,0.4932,0.36,0.2066,-0.642,-0.738,-0.656,-0.674,-0.66,-0.7,-0.758,-0.862,-0.9038,-0.9364,-0.9564,-0.8868,-0.62,-0.6,-0.8468,-0.9268,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3142,1,1,1,0.3142,0.0858,0.5428,1,-0.6286,-1,-1,-1,-1,-1,-0.8,-0.7714,-0.6,-0.1428,-0.3142,-0.8,-0.6286,-0.5714,-0.5142,-1,-1,-1,-1,-1,-1,0.6572,0.681,0.7162,0.7482,0.784,0.8122,0.855,0.8888,0.9054,0.6274,0.0062,0.0172,0.0348,0.0286,0.0352,0.056,0.0816,0.1194,0.2178,0.44,-0.4,0.2236,-0.694,-0.3892,0.3758,0.8222,0.9732,1,-0.459,0.0656,0.1804,0.0532,0.164,0.2132,0.209,0.4016,0.455,0.6394,0.754,1,0.9426,0.7828,0.6598,0.586,0.6312,0.6188,0.7704,0.9016,0.8812,0.6312,0.4836,0.3894,0.377,0.209,0.2992,0.5286,0.414,0.164,0.1024,-0.1886,-0.7262,-0.5256,-0.2616,-0.0464,-0.1882,-0.2274,-0.0416,0.2078,0.115,0.5256,0.687,0.868,0.9168,0.8386,0.7506,0.6284,0.5892,0.6234,0.731,0.9414,1,0.8728,0.6284,0.3546,0.3692,0.4034,0.5256,0.3644,0.3202,0.418,0.3496,-0.3154,-0.704,-0.2206,-0.0936,-0.13,-0.1238,-0.3836,-0.0392,0.0816,0.4078,0.5528,0.6556,0.849,0.8188,0.432,0.293,0.293,0.5166,0.9094,0.7522,0.849,1,0.849,0.1904,0.0514,0.1722,0.6798,0.6676,0.4804,0.4804,0.438,0.559,0.4744,1,-1,-1,1,-0.8,-1,-0.8,-0.1,-1,-0.6868,-0.3494,-0.2048,-0.229,-0.253,-0.012,-0.2048,-0.253,0.1326,0.4698,0.9518,0.5422,0.9036,0.3734,0.229,-0.012,0.1326,0.9518,0.759,0.9036,0.9278,1,0.3012,0.012,-0.1084,-0.2772,-0.2772,0.0602,0.012,-0.253,-0.2048,-0.8554,'11'
-0.3788,-0.1118,0.2732,0.3976,0.6584,1,0.823,0.3168,0.3478,0.2268,0.174,0.177,0.4814,0.7112,0.8136,0.6552,0.41,0.2484,0.2422,0.3664,0.4192,0.4286,0.6086,0.5808,0.4286,0.2858,0.0994,0.0434,0.0528,0.174,0.2796,0.3696,-0.3896,-0.1456,0.2832,0.3176,0.8436,1,0.8184,0.6902,0.446,0.4054,0.4898,0.7652,0.809,0.712,0.5368,0.2394,0.1142,0.0704,0.1142,0.1768,0.2394,0.3834,0.5306,0.6808,0.6306,0.4492,0.2864,0.23,0.1894,0.227,0.23,0.1518,-0.38,-0.1352,0.3196,0.3832,0.9014,1,0.9206,0.7074,0.628,0.6502,0.6852,0.5866,0.4626,0.1352,-0.0206,-0.1384,-0.2178,-0.2686,-0.1732,-0.116,-0.0524,0.116,0.326,0.7774,0.7774,0.5198,0.3228,0.3228,0.3132,0.0938,0.0174,0.0112,-0.421,-0.083,0.2832,0.4242,0.8622,1,0.8874,0.8686,0.8874,0.9062,0.5306,0.1206,0.0046,-0.108,-0.0766,-0.2018,-0.324,-0.4178,-0.2864,-0.2018,-0.1048,0.0172,0.18,0.5556,0.6652,0.4836,0.3428,0.3458,0.1018,-0.133,-0.0234,-0.0046,-0.4244,-0.1136,0.341,0.5338,0.7784,0.9684,0.8158,0.928,1,0.6144,0.2834,-0.1942,-0.3612,-0.2058,-0.2202,-0.2518,-0.3756,-0.3812,-0.3842,-0.341,-0.1482,0.0878,0.295,0.4734,0.4878,0.3208,0.154,0.105,-0.0188,-0.2144,-0.177,-0.1482,-0.2932,0.0796,0.576,0.7022,0.9248,0.991,1,0.8346,0.6692,0.3384,-0.0316,-0.2722,-0.4136,-0.5278,-0.4676,-0.594,-0.4526,-0.4376,-0.3082,-0.203,-0.0256,0.2722,0.2992,0.191,0.0948,0.1248,0.1158,-0.0736,-0.2572,-0.606,-0.7324,-0.6632,0.1846,0.9314,0.7682,0.9228,1,0.9528,0.8756,0.6696,0.5236,-0.0558,-0.1716,-0.3048,-0.3176,-0.2532,-0.3776,-0.5194,-0.5022,-0.618,-0.4678,-0.2962,0.0558,0.0644,-0.1116,-0.1974,-0.0042,0.0472,-0.0344,-0.0816,-0.1674,-0.3262,-0.4722,-0.455,-0.3684,0.0526,0.3684,0.6316,0.6842,1,0.9474,0.2106,0.3684,0.3158,0.2632,0.2106,0.4736,0.7894,0.9474,0.7894,0.4736,0.3684,0.2632,0.5264,0.6842,0.7368,0.7368,0.421,0.3684,0.3158,0.3158,0.421,0.421,0.421,0.5264,0.7368,-0.421,0.0526,0.2632,0.421,0.421,1,0.7894,0.3158,0.3158,0.2632,0.2632,0.1578,0.4736,0.6842,0.8948,0.6842,0.5264,0.3684,0.1578,0.3684,0.421,0.4736,0.3684,0.5264,0.3684,0.1578,0.1578,0.2106,-0.0526,-0.0526,0.2632,0.3158,-0.2414,0.0804,0.5402,0.7702,0.885,1,0.908,0.908,0.6552,0.5402,0.1724,-0.1494,-0.2184,-0.3564,-0.1954,-0.2414,-0.1724,-0.3334,-0.0574,0.0114,0.0574,0.4942,0.5862,0.4712,0.4252,0.4712,0.4252,0.2874,0.0114,-0.3794,-0.5402,-0.5172,-1,-1,-1,-1,-1,-1,-1,-0.9756,-0.972,-0.4594,0.15,0.572,0.8988,0.7976,0.6524,0.5884,0.5616,0.5104,0.3314,0.1988,-0.036,-0.5082,-0.7976,-0.9326,-0.9652,-0.964,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9816,-0.9798,-0.3054,0.0122,0.5458,0.8702,0.775,0.7464,0.5904,0.6138,0.6362,0.4494,-0.0568,-0.382,-0.7708,-0.8872,-0.9412,-0.9426,-0.9478,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.9768,-0.53,-0.62,-0.722,-0.66,-0.696,-0.71,-0.718,-0.702,-0.7,-0.711,-0.7838,-0.862,-0.9456,-0.7868,-0.61,-0.5634,-0.5368,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,-0.7428,-0.9428,-0.9428,-0.9428,-0.9714,-1,-0.7428,0.0286,0.4858,-0.3714,-0.3142,-0.3142,-0.4572,-0.9142,-0.9142,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.8108,-0.7964,-0.751,-0.7008,-0.7122,-0.727,-0.6706,-0.4758,-0.1038,0.2684,-0.4134,0.2352,0.0422,0.1914,0.5098,0.6864,0.7138,1,-0.2326,0.0582,0.4186,0.3372,0.2442,0.128,0.5,0.686,0.5814,0.4652,0.6512,0.9768,0.6976,0.5348,0.5348,0.5466,0.9652,1,0.9302,0.6628,0.5466,0.314,-0.186,-0.279,-0.4302,0.0116,0.186,0.314,0.1046,0.186,0.0698,-0.1512,0.2096,0.4286,0.8952,0.9048,0.3904,0.4286,0.638,1,0.8858,0.5714,0.7428,0.8952,0.7904,0.5142,0.5334,0.6286,0.9048,0.9334,0.8762,0.5142,0.5142,0.2286,0.0286,-0.438,-0.438,-0.1142,0.0286,0.1238,0.1714,0.1334,0.0572,-0.2666,0.3386,0.6142,0.9842,0.9448,0.5434,0.3622,0.693,1,0.8346,0.6062,0.7716,0.9212,0.748,0.5276,0.5906,0.7244,0.874,0.9134,0.8818,0.5118,0.433,0.3308,0.1102,-0.2756,-0.1418,-0.1182,-0.0314,0.1496,0.1732,0.2204,0.0552,-0.0472,-0.005,-1,-1,1,-0.2,-1,-0.8,-0.5666,-1,-0.2524,-0.1776,-0.215,0.2524,0.9066,1,0.7384,0.458,0.1962,0.271,0.5888,0.0654,0.6074,0.3644,0.4392,0.3832,0.4018,0.3084,0.2336,0.3084,0.4018,0.458,0.8504,0.7758,0.4392,0.3458,0.3832,0.3832,0.1214,-0.028,-0.028,-0.5328,'12'
-0.2984,-0.0282,0.3772,0.4672,0.7974,1,0.6248,0.1594,0.1894,-0.167,-0.2232,-0.0656,0.0168,0.2984,0.486,0.6098,0.471,0.1332,0.0432,0.2458,0.4296,0.5834,0.666,0.4522,0.257,0.122,0.0168,0.1144,0.0394,0.122,0.1632,0.302,-0.3264,0.0786,0.3884,0.4586,0.872,1,0.9628,0.591,0.1942,0.1116,0.1612,0.4422,0.3554,0.6404,0.8224,0.471,0.2976,0.033,-0.343,-0.0082,0.3016,0.3802,0.6488,0.5454,0.3678,0.1488,0.0578,-0.033,-0.1652,-0.095,-0.033,0.0744,-0.3874,-0.0378,0.2432,0.337,0.719,0.8594,1,0.636,0.3226,0.3334,0.319,0.6612,0.5496,0.4342,0.099,-0.1352,-0.2612,-0.2396,-0.1964,-0.182,-0.0378,0.128,0.3622,0.5712,0.4198,0.164,-0.0198,-0.0738,-0.063,-0.045,0.0954,0.1028,-0.3952,-0.0778,0.2668,0.4358,0.8244,0.875,1,0.6588,0.5878,0.5304,0.321,0.152,0.027,0,-0.125,-0.5844,-0.581,-0.5946,-0.4798,-0.4392,-0.2668,-0.2736,0.0372,0.223,0.304,0.1756,-0.0878,-0.1824,-0.2364,-0.098,-0.081,-0.0304,-0.3264,0.026,0.4818,0.6374,0.924,1,0.9482,0.924,0.8722,0.6718,0.171,-0.1088,-0.209,-0.2194,-0.323,-0.43,-0.5682,-0.6166,-0.4992,-0.3714,-0.316,-0.2298,0.0916,0.323,0.2332,0.1398,0.012,0.026,-0.012,-0.0156,-0.1226,-0.0294,-0.1742,0.195,0.6722,0.8174,0.9834,1,0.9586,0.942,0.7718,0.3444,-0.2614,-0.8424,-0.7344,-0.7428,-0.6888,-0.7054,-0.7468,-0.7676,-0.7676,-0.5518,-0.2822,-0.3112,-0.1576,0.2532,0.303,0.2822,0.0414,-0.0746,-0.2158,-0.3858,-0.639,-0.5104,0.2188,1,0.7836,0.3506,0.7364,0.7364,0.567,0.3176,0.2,-0.2142,-0.6376,-0.3788,-0.4212,-0.4542,-0.7364,-0.7364,-0.5718,-0.5388,-0.7318,-0.3976,-0.1952,-0.2424,-0.6094,-0.4164,-0.2142,-0.0776,-0.1718,-0.167,-0.1906,-0.4258,-0.4352,-0.52,-0.2682,-0.0244,0.3658,0.5122,0.9024,1,0.6586,0.2196,0.2196,-0.0732,-0.0732,0.0732,0.122,0.317,0.4146,0.6098,0.561,0.1708,0.0244,0.122,0.317,0.5122,0.6586,0.4146,0.1708,0.1708,0.0244,-0.0732,-0.122,-0.6098,-0.317,0.0244,-0.2942,0.2352,0.4118,0.5294,0.647,1,0.5882,0.1764,0.2352,-0.1176,-0.2352,-0.1764,-0.0588,0.2942,0.353,0.4706,0.353,0.0588,-0.1176,0.2352,0.5294,0.5294,0.5882,0.2352,-0.1176,-0.1764,-0.2352,-0.1764,0,0.0588,0.2352,0.2942,-0.324,0.014,0.5492,0.6902,0.8874,1,0.9154,0.9718,0.9436,0.5774,0.155,-0.2112,-0.2676,-0.2394,-0.3522,-0.4084,-0.5492,-0.7464,-0.5774,-0.3802,-0.2394,-0.0422,0.2394,0.2676,0.2394,0.0986,0.2958,0.3522,0.183,-0.014,-0.2676,-0.3522,-1,-1,-1,-1,-1,-1,-0.9588,-0.9638,-0.9688,-0.8766,-0.009,0.7794,0.9622,0.8518,0.7448,0.656,0.6346,0.5852,0.358,0.0914,-0.1572,-0.3976,-0.8404,-0.9622,-0.9456,-0.9556,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9694,-0.9694,-0.9714,-0.4568,-0.2432,0.406,0.7298,0.4288,0.7404,0.729,0.5536,0.4234,0.2252,-0.264,-0.5148,-0.7084,-0.9046,-0.9532,-0.9566,-0.9572,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9492,-0.9468,-0.9,-0.6568,-0.52,-0.7846,-0.716,-0.736,-0.76,-0.76,-0.748,-0.74,-0.756,-0.738,-0.83,-0.882,-0.8368,-0.84,-0.7,-0.7734,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3142,-1,1,1,1,-0.3142,-0.5714,-0.8572,-0.9714,-0.8572,-0.9428,-0.8,-0.5142,-0.5142,-0.3714,-0.4,-0.4572,-0.8,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.243,-0.1628,-0.215,-0.2658,-0.3224,-0.3494,-0.392,-0.438,-0.3484,-0.0104,-0.3734,0.1648,-0.1852,0.3566,0.5202,0.3214,0.7884,1,-0.7692,-0.2924,0.0924,0.123,-0.1692,-0.1076,0.2924,0.5692,0.5538,0.4462,0.6462,0.877,0.7076,0.4924,0.5846,0.6924,0.9846,1,0.9384,0.6,0.4616,0.3692,-0.123,-0.5846,-0.2924,-0.1846,0.1538,0.1076,0.0308,0.123,0.123,-0.2154,0.0784,0.3922,0.8628,0.8236,0.0588,-0.0196,-0.0392,0.745,0.5294,0.353,0.6666,0.902,0.804,0.3334,0.3138,0.6666,1,0.8824,0.8236,1,0.8432,0.8432,0,-0.196,-0.0784,0.4118,0.5098,0.3726,0.3922,0.4706,0.902,0.7254,0.43,0.7,1,0.85,0.47,0.26,0.47,0.71,0.88,0.52,0.67,0.83,0.57,0.45,0.4,0.44,0.85,0.84,0.82,0.62,0.57,0.44,0.06,-0.13,-0.03,0.17,0.5,0.39,0.2,0.31,0.48,0.11,1,-1,-1,1,-1,-1,-1,-0.6666,-1,-0.1538,0.0512,0.5384,0.641,0.7948,0.4872,0.718,0.6154,0.5642,0.3076,1,0.7948,0.8206,0.4872,0.5642,0.5384,0.359,0.4102,0.5384,0.5384,0.6154,0.1538,0.8206,0.5898,0.6924,0.6154,0.641,0.5898,0.2052,0.1282,-0.2308,-0.4872,'12'
-0.1536,0.2282,0.7386,0.6888,0.581,0.2034,-0.029,-0.3942,-0.4648,-0.581,-0.7966,-0.7136,-0.8258,-0.5934,-0.4398,-0.3734,0,0.1702,0.8548,0.946,0.7136,0.585,0.7262,0.971,1,0.8962,0.668,0.6556,0.693,0.697,0.7386,0.5104,-0.2194,0.3844,1,0.819,0.336,0.485,0.1188,-0.0866,0.0462,-0.5654,-0.2234,-0.2194,-0.3722,-0.0222,0.0624,0.171,0.493,0.7786,0.827,0.8832,0.7988,0.7786,0.9196,0.9598,0.819,0.6136,0.505,0.5734,0.5976,0.6178,0.6258,0.34,-0.2628,0.4902,0.9176,0.6942,0.5726,0.7254,0.4,0.3922,0.3922,0.1764,0.2824,0.4078,0.3882,0.6236,0.898,1,0.9922,0.8274,0.6706,0.7648,0.7764,0.4156,0.847,0.8628,0.8902,0.6862,0.447,0.455,0.4078,0.3098,0.6,0.6862,-0.2142,0.496,1,0.754,0.5714,0.7302,0.6666,0.6944,0.7064,0.6468,0.8492,0.885,0.8134,0.6032,0.4524,0.365,0.2936,0.3374,0.377,0.6746,0.7778,0.242,0.2818,0.2976,0.4126,0.2778,0.242,0.2936,0.3174,0.5238,0.619,0.6746,0.0186,0.4,0.9348,0.7534,0.1488,0.0186,-0.279,-0.3116,0.0558,0.4232,0.3628,-0.3024,-0.1582,-0.0744,0.0698,-0.3024,-0.121,-0.0232,0.2838,0.9906,1,0.7906,0.8186,0.828,0.3024,-0.3256,-0.9488,-0.493,0.028,0.3348,0.5534,0.5302,0.2518,0.7688,0.9274,0.9048,0.0794,-0.1156,-0.3152,-0.1066,0.3288,0.3922,0.4422,0.084,0.0566,-0.0748,-0.297,-0.347,-0.3106,-0.0068,0.3878,0.8594,1,0.7596,0.5918,0.7006,0.3016,-0.4332,-0.7824,-0.2336,0.1428,0.2018,0.3696,0.365,0.1862,1,0.8528,0.329,0.3766,0.4978,-0.0996,0.0866,0.4026,0.4416,0.4458,0.251,0.1602,0.2598,0.1904,-0.1472,-0.368,-0.29,0.091,0.4112,0.5022,0.1646,-0.1126,-0.039,-0.0606,-0.0476,-0.0996,-0.0304,0.0346,0.1732,0.1862,0.1386,-0.2222,0.2778,0.4444,0.5,0.2778,0.1112,-0.0556,-0.1666,-0.6666,-0.6666,-0.7222,-0.6112,-0.5556,-0.4444,-0.3888,-0.5556,-0.1112,0.2222,0.8334,0.8888,0.5,0.3888,0.5556,0.9444,1,0.7222,0.6666,0.5556,0.6666,0.7778,0.6112,0.6666,0.0476,0.3334,0.5714,0.5714,0.6666,0.4286,-0.0476,-0.1904,-0.2858,-0.1904,-0.4762,-0.6666,-0.5714,-0.619,-0.619,-0.4286,-0.2858,0.0952,0.4762,0.8572,0.762,0.8572,0.8096,1,0.8572,0.9048,0.9524,0.9524,0.9048,1,0.9524,1,-0.1936,0.4838,1,0.7742,0.4838,0.6452,0.5484,0.613,0.613,0.613,0.8388,0.6452,0.0968,0.258,0,-0.1936,0,-0.0322,0.258,0.4838,0.5806,0.1936,-0.0968,-0.2258,-0.0968,-0.2904,-0.2258,-0.129,-0.0646,0.2258,0.2258,0.2258,-1,-1,-1,-1,-1,-1,-1,-0.9694,-0.9796,-0.956,-0.663,0.221,0.8418,0.9638,0.8394,0.6868,0.5308,0.1024,-0.256,-0.3296,-0.298,-0.23,-0.6914,-0.9526,-0.9684,-0.9592,-0.966,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9672,-0.9744,-0.9646,-0.5666,0.1766,0.552,0.793,0.8308,0.8186,0.6178,-0.1856,-0.3884,-0.5022,-0.5484,-0.4164,-0.77,-0.8892,-0.8886,-0.9136,-0.938,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.96,-0.8134,-0.6468,-0.504,-0.692,-0.648,-0.658,-0.714,-0.642,-0.786,-0.738,-0.92,-0.914,-0.942,-0.78,-0.3934,-0.39,-0.5434,-0.5268,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7142,-0.9714,1,1,1,-0.8,-0.7714,-0.8,-0.5428,1,1,-0.8,-0.6572,0.1714,0.5428,-0.0286,-0.2572,-0.8858,-0.7714,-0.6,-1,-1,-1,-1,-1,-1,0.3324,0.3212,0.3298,0.3096,0.2792,0.2674,0.284,0.3748,0.5114,0.2852,0.7376,0.7074,0.7088,0.7104,0.6692,0.6424,0.5972,0.474,0.1278,-0.1078,-0.4134,0.1882,-0.3634,-0.2118,0.1212,0.3572,0.305,1,-0.1628,0.2094,0.3488,0.3024,0.0232,-0.0232,0.2094,0.2094,0.5814,0.7674,0.814,0.8604,0.8604,0.8604,0.814,0.907,0.907,0.907,0.9534,1,0.9534,0.814,0.3954,-0.0232,-0.0232,0.2558,0.3954,0.3488,0.3488,0.1162,-0.1628,-0.5348,0.2046,0.3636,0.4546,-0.0228,-0.3182,-0.341,-0.1364,-0.0228,0.1818,0.9546,0.8636,0.75,1,0.6364,0.5682,0.6136,0.7728,0.591,0.5454,0.841,0.8864,0.8182,0.0228,-0.3182,-0.3182,0.0228,0.341,0.3864,0.341,0.2046,0.091,-0.091,0.4408,0.5268,0.3548,0.0322,-0.1828,-0.0752,0.1182,0.0752,0.5054,1,0.828,0.871,0.957,0.699,0.785,0.8924,0.914,0.5698,0.5698,0.742,0.742,0.656,0.0538,-0.2688,-0.2904,0.0538,0.5914,0.5698,0.3548,0.0752,0.0752,0.0538,0.1734,-1,-1,1,-1,-1,-0.6,-0.8334,-1,-0.3488,-0.5504,-0.1318,-0.0388,0.1782,0.3954,0.907,0.8604,0.5194,0.5194,0.5814,0.3178,0.876,1,0.4264,0.3488,0.628,0.5194,0.2248,0.5814,0.628,0.5194,0.4108,0.4574,0.3644,0.2404,0.4574,0.5504,0.1938,0.0232,-0.1318,-0.5658,'13'
-0.1134,0.2522,0.8698,0.7606,0.7942,0.3782,0.1554,-0.2478,-0.1302,-0.4706,-0.9874,-0.6974,-0.8488,-0.3068,-0.1386,-0.0462,0.7352,0.874,0.7522,0.6638,0.6428,0.5924,0.9832,0.916,0.6974,0.4748,0.1722,0.3572,0.4118,0.584,0.874,1,-0.2,0.2238,0.8298,0.6476,0.3782,0.3584,0.01,-0.093,-0.0178,-0.3544,-0.3504,-0.3862,-0.2832,-0.2158,0.2158,0.4496,0.7862,1,0.9524,0.5762,0.509,0.4732,0.691,0.8694,0.5446,-0.0138,-0.1604,-0.1406,-0.1762,0.0496,0.1406,0.2792,-0.2058,0.3728,0.9348,0.7596,0.3238,0.5886,0.218,0.3034,0.4256,0.1284,0.0754,0.1934,0.3768,0.5968,0.9266,1,0.943,0.7556,0.7148,0.833,0.6496,0.5072,0.7108,0.947,0.7148,0.5112,0.279,0.2954,0.328,0.5478,0.666,0.89,-0.191,0.236,0.8652,0.7078,0.4008,0.663,0.528,0.6068,0.7866,0.648,0.6516,0.7228,1,0.809,0.6442,0.3558,0.2922,0.1948,0.3034,0.6892,0.5356,0.5618,0.0824,0.5768,0.5506,0.2808,0.1162,0.176,0.266,0.4944,0.9138,0.8988,0.0316,0.419,0.861,0.7222,0.2084,0.1958,-0.0274,-0.3178,0.2042,0.4694,0.5032,-0.2884,-0.0652,-0.0568,-0.36,-0.3178,-0.28,-0.0526,0.3052,0.7936,1,0.8652,0.7894,0.9158,0.2378,-0.1958,-0.8232,-0.9074,-0.2126,0.3094,0.8106,0.8232,0.3276,0.88,0.8758,0.9058,0.2676,0.075,-0.1778,-0.1392,0.3962,0.576,0.4432,0.1606,-0.0492,-0.0108,-0.2078,-0.2506,-0.075,0.0022,0.4346,0.91,1,0.8586,0.7388,0.6788,0.2976,-0.2762,-0.94,-0.5632,-0.0878,0.3876,0.696,0.726,0.1456,1,0.9142,0.265,0.2126,0.4104,0.2948,0.3396,0.362,0.4216,0.2986,0.2798,0.4926,0.4142,0.3582,-0.0038,-0.0746,-0.0336,0.265,0.3956,0.332,0.0672,-0.3246,0.1456,0.3544,0.265,0.138,0.168,0.1604,0.4776,0.4702,0.3134,0,0.1666,0.5416,0.5,0.6666,0.4584,0,-0.1666,-0.125,-0.375,-0.3334,-0.5416,-0.5416,0.125,0.0416,0.0834,0.6666,0.7916,0.7916,0.6666,0.5834,0.5416,0.875,0.8334,0.5,0.5416,0.2916,0.4584,0.5,0.25,0.9166,1,-0.0222,0.4222,0.6444,0.5556,0.6,0.3778,0.2,-0.2444,-0.0666,-0.2,-0.5112,-0.2888,-0.6444,-0.1556,0.1556,0.2444,0.6888,0.8222,0.6,0.6444,0.7778,0.6888,0.9556,1,0.6444,0.3334,0.4222,0.1112,0.3778,0.5556,0.4666,0.5556,-0.1578,0.193,1,0.7894,0.5088,0.5438,0.3334,0.4386,0.6842,0.7894,0.614,0.4386,0.3334,0.0176,-0.2982,-0.2632,-0.1228,-0.1228,0.0878,0.614,0.5088,0.614,0.2982,0.0176,-0.1578,-0.5088,-0.4036,-0.0176,0.1228,0.3684,0.8596,0.8596,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.9714,-0.5022,0.4706,0.8144,0.9654,0.9654,0.7678,0.715,0.4886,0.089,0.009,0.0844,0.003,-0.7482,-0.9502,-0.9562,-0.9442,-0.9502,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9556,-0.9628,-0.4342,0.2544,0.5458,0.5718,0.7278,0.8022,0.8734,0.1578,-0.0874,-0.237,-0.2584,-0.3256,-0.7918,-0.8758,-0.841,-0.8782,-0.9066,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.9534,-0.6134,-0.474,-0.612,-0.734,-0.698,-0.638,-0.6364,-0.7674,-0.871,-0.9346,-0.9692,-0.9328,-0.67,-0.4434,-0.3568,-0.38,-0.6468,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,-0.4858,-0.8,-0.8,-0.8286,-0.1714,0.6572,-0.8858,-0.7428,0.4572,-0.1714,-0.1428,-0.8,-0.9428,-0.6286,-0.1714,-1,-1,-1,-1,-1,-1,0.3924,0.3926,0.4132,0.4224,0.4322,0.4358,0.4576,0.4436,0.5632,0.3584,0.3982,0.3926,0.3938,0.3688,0.351,0.2164,0.1482,0.0652,-0.2378,-0.2898,-0.4666,0.247,-0.2466,0.1128,0.256,0.2908,0.317,1,0.0188,0.2076,0.2076,0.132,0.1698,0.3208,0.132,0.3962,0.6982,0.7736,0.849,0.849,0.8114,0.7736,0.7358,0.9246,1,1,0.9246,0.849,0.7358,0.5094,0.2076,0.0566,0.0566,0.2076,0.283,0.2452,0.283,0.1698,0.0566,-0.2076,0.1042,0.2916,0.3124,0.2708,0.0834,-0.125,0.0208,0.2084,0.6666,0.8124,0.7916,0.8334,0.7916,0.6458,0.4376,0.8542,1,0.9792,0.9166,0.6876,0.7292,0.0834,-0.3334,-0.5416,-0.5,0.2084,0.3958,0.125,0.2708,0.125,-0.0624,-0.2084,0.2526,0.5556,0.6364,0.2324,-0.0506,-0.192,-0.0506,0.1718,0.899,0.8586,0.6768,0.7778,0.7374,0.6162,0.5758,0.9192,1,0.899,0.6162,0.697,0.697,0.4546,-0.495,-0.5556,-0.2324,0.0102,0.192,0.0102,0.2122,0.1718,0.2324,-0.3536,0.5496,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.5122,-0.0406,0.0732,0.0732,0.252,0.5122,0.5284,1,0.5772,0.7724,0.626,0.1544,0.7236,0.8374,0.6748,0.5448,0.6422,0.3334,0.3984,0.5122,0.4146,0.6422,0.561,0.3984,-0.0082,0.2846,0.187,0.6748,0.2196,-0.0406,-0.2196,-0.7398,'13'
-0.0902,0.2924,0.9516,0.8286,0.8814,0.2176,-0.0506,-0.0286,-0.6308,-0.6616,-0.6748,-0.811,-0.622,-0.6836,-0.3978,-0.0594,0.2,0.5604,0.8682,0.9296,0.9736,0.9296,0.8506,0.956,1,0.8594,0.5912,0.4462,0.3318,0.3758,0.534,0.4682,-0.1404,0.2724,1,0.8298,0.5192,0.1744,-0.0256,-0.1362,-0.468,-0.6724,-0.6894,-0.6766,-0.4042,-0.3788,-0.0256,0.1022,0.3362,0.7702,0.7958,0.7148,0.7234,0.6298,0.6936,0.817,0.7702,0.6894,0.4256,0.1872,0.234,0.3022,0.1446,0.1446,-0.2058,0.428,1,0.8106,0.247,0.3992,0.1564,0.0206,0.074,-0.4198,-0.1522,-0.1482,0.0412,-0.0164,0.4898,0.6748,0.8106,0.568,0.465,0.2098,0.502,0.3498,0.3456,0.5926,0.5226,0.3828,0.1646,0.0658,-0.0988,-0.1564,-0.0082,0.181,-0.1714,0.2898,1,0.853,0.4326,0.453,0.4164,0.4082,0.4408,0.049,-0.053,0.098,0.5266,0.6286,0.747,0.996,0.9062,0.6368,0.4776,0.3552,0.3592,-0.147,0.2734,0.6938,0.8776,0.3674,0.2776,0.0612,0.0368,0.2612,0.2368,0.2286,-0.0318,0.3636,1,0.8954,0.441,0.391,0.2,0.1546,0,-0.209,-0.4636,-0.6182,-0.0046,0.1182,0.4636,0.3136,0.25,-0.0546,0.259,0.509,0.8,0.4682,0.2864,0.4954,0.5954,0.4954,-0.0728,-0.3728,-0.3136,-0.7772,-0.5318,-0.6454,0.3042,0.9708,0.893,1,0.5328,0.5232,0.5134,0.2896,0.1678,-0.124,-0.4794,-0.8296,-0.635,-0.27,-0.1436,-0.0218,-0.0218,0.0948,0.4794,0.8442,0.8492,0.669,0.1776,0.3674,0.6108,0.5426,0.1484,-0.2846,-0.4306,-0.8978,-0.9172,-0.854,0.0716,1,0.9522,0.3248,0.1964,0.2,-0.0128,-0.167,-0.1192,-0.3542,-0.4678,-0.3028,-0.2036,-0.09,0.1192,0.1486,0.101,-0.1082,-0.1302,0.3284,0.3322,0.0202,-0.277,0.0568,0.189,0.3248,0.0458,-0.2478,-0.255,-0.2478,-0.31,-0.1266,-0.1904,0.1428,0.5238,0.4286,0.4762,0.1428,-0.0952,-0.1428,-0.3334,-0.5238,-0.619,-0.5238,-0.381,-0.5238,-0.2858,-0.0476,0.1904,0.4762,0.8572,0.8572,0.619,0.5714,0.6666,1,1,0.762,0.4762,0.619,0.4286,0.4762,0.619,0.5714,-0.3888,0.1666,0.4444,0.5,0.4444,0.1112,-0.2222,-0.2778,-0.5556,-0.8334,-0.8888,-0.9444,-0.6666,-0.4444,-0.3334,-0.3888,-0.0556,0.3334,0.7778,0.5556,0.4444,0.6666,0.6666,0.6666,1,0.8334,0.3334,0.3888,0.2222,0.5,0.5,0.5,-0.1034,0.3794,1,0.862,0.4482,0.2758,0.3104,0.3448,0.1034,-0.138,-0.3794,-0.2068,0.3794,0.5172,0.7586,0.6896,0.6206,0.138,0.2414,0.7242,0.862,0.1034,-0.4482,0.2758,0.6896,0.5862,-0.138,-0.3448,-0.4482,-0.5518,-0.6206,-0.4482,-1,-1,-1,-1,-1,-1,-1,-0.9654,-0.9782,-0.9564,-0.4208,0.3966,0.8116,0.9628,0.9564,0.8258,0.6322,0.394,-0.0544,-0.2222,-0.1146,0.0532,-0.813,-0.9666,-0.9666,-0.9602,-0.968,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9574,-0.9642,-0.9374,-0.04,0.4688,0.8198,0.8974,0.7598,0.6706,0.5804,0.2994,-0.2502,-0.3486,-0.367,-0.146,-0.789,-0.8474,-0.844,-0.8824,-0.91,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.9534,-0.7868,-0.4168,-0.36,-0.642,-0.746,-0.802,-0.812,-0.802,-0.79,-0.87,-0.962,-0.9728,-0.9038,-0.5534,-0.2334,-0.2334,-0.2568,-0.3934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6572,-0.7142,1,1,1,-0.7142,-0.6,-0.8286,-0.9714,-0.6286,1,1,-0.8858,0.0286,1,0.1142,-0.5142,-0.8,-0.8,-0.5142,-1,-1,-1,-1,-1,-1,0.4036,0.3968,0.402,0.408,0.4146,0.3984,0.3864,0.3718,0.457,0.4062,0.7218,0.705,0.6902,0.6942,0.678,0.6544,0.6108,0.514,0.1784,0.0422,-0.48,0.2118,0.101,0.307,0.4438,0.518,0.6196,1,-0.434,0.2452,0.283,0.1698,0.0188,-0.0566,0.2076,0.2452,0.5094,0.8114,0.8868,1,1,0.9622,0.7736,0.7358,0.8114,0.849,0.8868,0.8114,0.6982,0.3208,-0.0566,-0.0944,-0.3584,0.132,0.1698,0.132,0.2452,0.2452,0.0944,-0.1698,0.28,0.48,0.38,0.02,-0.2,-0.24,-0.08,-0.06,0.18,0.8,0.84,0.78,1,0.7,0.52,0.5,0.64,0.96,0.78,0.68,0.68,0.26,-0.14,-0.36,-0.56,0.06,0.12,0.06,0.04,-0.02,0.1,-0.06,0.1882,0.5248,0.4456,0.01,-0.109,-0.2278,-0.208,-0.1288,0.3268,0.7426,0.7624,0.7228,0.9406,0.6436,0.5248,0.5842,0.6634,0.9208,1,0.6238,0.6634,0.4654,-0.0496,-0.5248,-0.2278,0.1486,0.1486,0.208,0.0892,0.307,0.1288,0.0496,0.7964,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.633,-0.6146,-0.0826,0.156,0.1744,0.3762,0.4496,0.9816,0.7982,0.4312,0.633,-0.0092,0.8166,1,0.8716,0.6514,0.523,0.0276,0.156,0.2294,0.3028,0.4678,0.633,0.5964,0.633,0.578,0.4312,1,0.6146,-0.0092,-0.0092,-0.4678,'14'
-0.0984,0.4344,1,0.7664,0.6352,0.3524,-0.0082,-0.209,-0.5574,-0.9672,-0.8278,-0.8566,-0.705,-0.6886,-0.4304,-0.332,0.1886,0.7132,0.8484,0.8238,0.4468,0.3812,0.6148,0.8156,0.7664,0.6598,0.3156,0.1762,0.164,0.2336,0.3442,0.5902,-0.2208,0.486,1,0.6948,0.3976,0.49,-0.2248,-0.3132,-0.4658,-0.8112,-0.6988,-0.743,-0.6586,-0.5784,-0.253,-0.1768,0.1244,0.3654,0.3816,0.3776,0.2128,0.3654,0.6506,0.759,0.6466,0.4258,0.0442,0.2972,0.02,-0.1566,-0.0362,0.024,-0.2296,0.537,0.8962,0.5408,0.8038,0.826,0.026,-0.0334,-0.0444,0.0222,0.074,0.0666,0.1186,0.4112,0.6482,0.8074,1,0.7482,0.5704,0.6186,0.5038,0.2112,0.737,0.8112,0.8962,0.6074,0.4,0.3518,0.226,0.3852,0.4296,0.6704,-0.2846,0.4854,0.8284,0.5292,0.7774,0.8066,0.3212,-0.073,0.1934,0.157,-0.0438,0.2482,0.3906,0.6824,0.7992,1,0.5438,0.438,0.4782,0.5,0.3504,0.1132,0.3906,0.624,0.9854,0.6824,0.2044,0.281,0.1386,0.3322,0.3248,0.3504,-0.0086,0.3788,1,0.7446,0.3914,0.1702,-0.2382,-0.4,-0.3276,-0.2468,-0.4298,-0.749,-0.3788,0.366,0.3106,0.1744,-0.1574,0.0426,0.6042,0.8554,0.949,0.7064,0.5702,0.6554,0.6596,0.3362,0.0212,-0.3234,-0.583,-0.5914,-0.183,-0.1958,0.2266,0.7148,0.8828,0.8398,0.5234,0.504,0.4454,0.1602,-0.043,-0.0546,-0.3476,-0.6836,-0.2968,0.0976,0.1876,0.0196,0.0468,0.1094,0.539,0.9726,1,0.6718,0.504,0.5782,0.6172,0.4062,-0.1758,-0.5664,-0.9102,-0.5624,-0.5508,-0.5742,0.133,1,0.847,0.1184,0.1804,0.3624,-0.0346,-0.071,-0.0346,-0.1148,-0.3442,-0.0784,0.173,0.45,0.428,0.4316,0.1184,0.0346,0.4172,0.5446,0.501,-0.0892,-0.0674,0.184,0.348,0.3588,0.2314,0.2496,-0.0784,0.0564,0.1476,0.1948,-0.2858,0,0.7142,0.7142,0.5714,0.2142,-0.0714,-0.2142,-0.4286,-0.5714,-0.7142,-0.6428,-0.5714,-0.4286,-0.0714,0,0.2142,0.9286,0.8572,0.9286,0.8572,0.5714,0.5,1,0.7142,0.7142,0.6428,0.2142,0.2858,0.1428,0.4286,0.7142,-0.122,0.2682,0.6586,0.3658,0.5122,0.3658,0.1708,-0.122,-0.3658,-0.6098,-0.6098,-0.5122,-0.4146,-0.756,-0.122,0.1708,0.2682,0.7074,0.9024,0.8536,0.0732,0.6098,0.8048,0.8048,0.756,0.6586,0.6098,0.2682,0.4634,0.561,0.6586,1,-0.138,0.5172,1,0.6896,0.5862,0.6206,0.138,-0.0344,-0.1724,-0.138,-0.138,0.3104,0.4828,0.7242,0.8966,0.6206,0.3448,0.4138,0.5172,0.5518,0.4828,0.0344,-0.069,0.5862,0.6552,0.5518,0.138,0.1034,0.1034,0.2758,0.4828,0.6552,-1,-1,-1,-1,-1,-1,-1,-1,-0.9724,-0.9752,-0.513,0.4534,0.8896,0.952,0.8256,0.702,0.6366,0.3576,-0.0218,-0.1498,-0.2312,-0.218,-0.734,-0.9434,-0.9694,-0.9594,-0.9636,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.9562,-0.4076,0.4858,0.7134,0.8372,0.8248,0.9476,0.94,0.3676,-0.1914,-0.2666,-0.3772,-0.2458,-0.7276,-0.8666,-0.862,-0.901,-0.9162,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.98,-0.58,-0.5838,-0.751,-0.7564,-0.7438,-0.662,-0.675,-0.77,-0.7718,-0.925,-0.915,-0.885,-0.7368,-0.3868,-0.2934,-0.5668,-0.4934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,1,1,1,-0.9714,-0.7714,-0.8572,-1,-0.9142,1,-0.8286,-0.8858,0.7142,0.1428,0.0858,-0.6,-0.8286,-0.8572,-0.0572,-1,-1,-1,-1,-1,-1,0.4262,0.3956,0.386,0.3604,0.3398,0.32,0.2922,0.3428,0.442,0.35,0.4562,0.4692,0.4624,0.5114,0.5098,0.4844,0.5174,0.4518,0.2006,0.0316,-0.36,0.3764,-0.2904,0.2466,0.6058,0.459,0.501,1,0.1698,0.4716,0.4716,0.3208,0.2076,0.132,0.2452,0.2076,0.2076,0.3584,0.3584,0.7358,0.8868,0.849,0.7736,0.849,1,1,0.9622,0.849,0.8868,0.8114,0.585,0.5094,0.2076,0.1698,0.283,0.283,-0.132,-0.0188,-0.0188,-0.2076,0.2258,0.2904,0.3764,0.2258,-0.2474,-0.2258,-0.0108,-0.0752,0.3118,0.5484,0.5268,0.785,0.7634,0.742,0.5914,0.6774,1,0.9784,0.8924,0.6344,0.613,0.5268,0.1612,0.0752,-0.656,-0.1828,0.0322,-0.2688,-0.2688,-0.0968,-0.1182,-0.3334,0.4128,0.6146,0.7064,0.4312,0.1376,-0.0092,0.1926,0.3028,0.5964,0.8716,0.8348,0.7248,0.8348,0.7798,0.523,0.7982,1,0.9082,0.8166,0.7798,0.633,0.4862,0.1192,-0.0826,-0.266,-0.211,-0.0458,0.211,-0.1744,-0.1192,0.1376,-0.211,-0.0552,-1,-1,1,-1,-1,-0.8,-0.8334,-1,-0.426,-0.5478,0.1304,0.1478,-0.0956,0.426,0.8434,0.826,0.4782,0.6348,0.2,-0.1304,0.7044,1,0.8434,0.7218,0.426,0.3218,0.2174,0.1652,0.3914,0.4608,0.3914,0.4434,0.1304,0.1478,0.3914,0.2696,0.0956,0.0782,-0.4608,-0.6348,'14'
-0.2524,0.1012,0.4732,0.5764,0.7864,1,0.7716,0.477,0.86,0.8232,0.7128,-0.0756,-0.057,-0.5212,-0.3702,-0.4364,-0.6648,-0.4402,-0.3922,0.0092,0.1528,0.0976,-0.1492,-0.4954,-0.628,-0.6132,-0.6096,-0.5802,-0.5616,-0.1528,-0.0828,-0.0056,-0.3644,0.0916,0.3464,0.6518,0.939,1,0.368,0.7414,0.86,0.9066,0.149,-0.3536,-0.4542,-0.5404,-0.5906,-0.6446,-0.6948,-0.5834,-0.5152,0.009,0.2604,0.2208,-0.2388,-0.4434,-0.5906,-0.5728,-0.6552,-0.5008,-0.4722,-0.2782,-0.1526,-0.0556,-0.3194,0.2122,0.5066,0.9464,0.9656,1,0.4416,0.9274,0.805,0.499,-0.0746,-0.4264,-0.5984,-0.7284,-0.7668,-0.7208,-0.7362,-0.6864,-0.4532,0.1548,0.3652,0.3614,-0.1396,-0.4532,-0.5908,-0.5564,-0.6022,-0.3652,-0.35,-0.1892,-0.002,0.0936,-0.3476,0.1942,0.4938,1,0.9466,0.6542,0.5402,0.9536,0.8824,-0.0054,-0.2014,-0.4902,-0.5758,-0.7504,-0.6614,-0.8716,-0.8788,-0.804,-0.7398,-0.016,0.1336,0.2514,-0.3512,-0.558,-0.5472,-0.6364,-0.5436,-0.5008,-0.5152,-0.2656,-0.1942,0.1088,-0.3356,0.1538,0.5802,0.9966,1,0.1934,0.6198,0.5736,0.6562,-0.091,-0.4578,-0.5604,-0.6364,-0.828,-0.8612,-0.9206,-0.7818,-0.729,-0.3884,-0.2728,-0.0082,-0.081,-0.1636,-0.3918,-0.524,-0.59,-0.5768,-0.4644,-0.4082,-0.276,-0.1768,-0.0248,-0.0678,0.3944,1,0.9596,0.8348,0.5634,0.6588,0.7212,0.5964,0.0826,-0.3724,-0.7872,-0.8496,-0.5816,-0.6146,-0.7468,-0.8458,-0.9412,-0.567,-0.2256,0.0716,0.0862,-0.2404,-0.5156,-0.6294,-0.512,-0.6366,-0.5816,-0.545,-0.3944,-0.3138,-0.0422,0.052,0.8046,0.8336,1,0.4428,0.3556,0.4844,0.4096,0.2474,-0.2058,-0.5966,-0.4386,-0.5884,-0.6508,-0.422,-0.6008,-0.4886,-0.6466,-0.5176,-0.422,-0.16,-0.2142,-0.6134,-0.6964,-0.6798,-0.6798,-0.7048,-0.7672,-0.8212,-0.6964,-0.501,-0.5468,-0.3514,0.081,0.4594,0.5676,0.5136,1,0.8918,0.4594,0.8918,0.7298,0.6756,0.2972,0.1892,-0.2432,-0.4594,-0.3514,-0.1352,-0.027,0.027,0.3514,0.7298,0.6216,-0.081,-0.2972,-0.1892,-0.2972,-0.4594,-0.3514,-0.1892,0.081,0.2432,0.4594,-0.0624,0.4376,0.625,0.5624,0.8124,1,0.5624,0.625,0.8124,0.5624,0.625,0.1876,-0.125,-0.4376,-0.75,-0.375,-0.25,-0.375,-0.0624,0.1876,0.4376,0.375,0.1876,-0.4376,-0.5624,-0.625,-0.5,-0.5624,-0.6876,-0.375,-0.125,0.0624,-0.183,0.3522,0.831,0.9718,1,0.4084,0.6338,0.6056,0.5774,0.155,-0.324,-0.6902,-0.6056,-0.4648,-0.493,-0.8874,-0.8592,-0.7184,-0.6056,-0.2394,0.2676,0.2958,-0.2394,-0.5212,-0.5212,-0.4084,-0.6056,-0.4084,-0.2394,-0.2958,-0.0704,0.2394,-1,-1,-1,-1,-1,-1,-1,-1,-0.9792,-0.9772,-0.4102,0.0924,0.8504,0.7746,0.6614,0.7258,0.8556,0.972,0.6936,0.1256,-0.0944,-0.542,-0.81,-0.9502,-0.9668,-0.975,-0.9606,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9784,-0.9784,-0.1788,0.1402,0.8522,0.8428,0.5252,0.4286,0.5316,0.5306,0.1788,-0.2468,-0.4326,-0.7358,-0.8846,-0.9512,-0.9536,-0.9566,-0.9566,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.86,-0.74,-0.638,-0.796,-0.812,-0.8,-0.776,-0.732,-0.768,-0.854,-0.9274,-0.9128,-0.9274,-0.9,-0.8168,-0.7434,-0.76,-0.7734,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,-0.6286,-0.8858,-0.7714,-0.9142,-1,-1,-0.9142,-0.3714,-0.3428,-0.5142,-0.6572,-0.6572,-0.8572,-0.9714,-0.8,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.9424,-0.476,-0.4936,-0.522,-0.5286,-0.5404,-0.4814,-0.3698,-0.2244,-0.1114,-0.0524,-0.4,0.2118,0.0752,0.2028,-0.1694,0.1688,0.5988,1,0.102,0.347,0.4694,0.8776,0.9592,0.9184,0.6734,0.4694,0.347,0.5918,0.796,0.7552,0.5102,0.0612,0.2244,0.347,0.5918,0.9184,1,1,0.8368,0.6326,0.4286,0.1428,-0.1836,0.0612,0.102,-0.1836,-0.1428,-0.0204,-0.1428,-0.3878,0.2478,0.4678,0.8348,0.8348,1,0.9816,0.523,0.211,-0.0642,0.3944,0.688,0.4496,0.1744,-0.0276,0.156,0.2294,0.523,0.6698,0.7248,0.7614,0.6514,0.3394,0.101,-0.0826,-0.4128,0.0458,0.0642,-0.0826,-0.1192,0.101,-0.0092,-0.3944,0.3076,0.6538,1,0.8846,1,0.9424,0.5192,0.2308,0.2308,0.3076,0.75,0.3462,0.1538,0,0.327,0.4616,0.75,0.9038,0.9424,0.8846,0.577,0.2116,-0.0384,-0.423,-0.25,-0.0384,0.173,-0.1346,-0.0384,-0.0384,0,-0.5384,0.9374,-1,-1,1,-0.8,-1,-1,-0.8334,-1,-0.4318,-0.1136,-0.0228,0.1818,1,0.8636,0.2272,0.2046,0.2728,0.341,0.5228,0.2046,0.25,0.0228,0.2728,0.1364,0.2046,-0.159,-0.3864,-0.2728,-0.0228,-0.0682,0.1818,0.0682,0.0454,0,-0.3182,-0.341,-0.3636,-0.25,-0.3636,-0.841,'15'
-0.3844,-0.0944,0.3462,0.5322,0.8768,1,0.6526,0.7292,0.7592,0.4364,0.0478,-0.056,-0.5814,-0.379,-0.513,-0.5842,-0.543,-0.6662,-0.3078,-0.253,0.0452,0.0808,-0.0998,-0.5486,-0.4966,-0.7046,-0.699,-0.6772,-0.606,-0.565,-0.5842,-0.5404,-0.3292,0.1412,0.4294,0.739,0.9818,1,0.4446,0.7996,0.6632,0.5538,-0.1078,-0.4872,-0.5964,-0.654,-0.7208,-0.66,-0.7724,-0.7298,-0.572,-0.302,0.129,0.1138,-0.3474,-0.6358,-0.7936,-0.8512,-0.8846,-0.9028,-0.8908,-0.7876,-0.8422,-0.6054,-0.3594,0.281,0.529,0.8524,1,0.9184,0.6704,0.6106,0.6986,0.4882,-0.4034,-0.3972,-0.8618,-0.7646,-0.8776,-0.8462,-0.799,-0.7802,-0.6954,-0.2842,-0.0926,-0.0236,-0.4098,-0.73,-0.7708,-0.8242,-0.8398,-0.8712,-0.7456,-0.7552,-0.595,-0.5354,-0.2202,0.4464,0.6904,1,0.9554,0.863,0.7708,0.7262,0.5804,0.3244,-0.3452,-0.4762,-0.4852,-0.9286,-0.9702,-0.9018,-0.7054,-0.6666,-0.5864,-0.4048,0.0536,0.0626,-0.2738,-0.2828,-0.5386,-0.6696,-0.637,-0.6042,-0.5774,-0.3334,-0.4404,-0.0804,-0.2582,0.3638,0.632,1,0.8544,0.555,0.6262,0.7718,0.495,-0.1868,-0.458,-0.6748,-0.6262,-0.8544,-0.7546,-0.8744,-0.9116,-0.7376,-0.7262,-0.5206,-0.2724,-0.1954,-0.224,-0.5236,-0.495,-0.5864,-0.5948,-0.6092,-0.6092,-0.455,-0.3552,-0.1898,-0.1222,0.315,0.9828,0.9622,1,0.5698,0.6386,0.6764,0.5078,-0.0328,-0.6592,-0.9002,-0.7452,-0.8624,-0.7832,-0.8382,-0.907,-0.945,-0.8588,-0.6626,-0.5112,-0.2634,-0.2944,-0.525,-0.6006,-0.7796,-0.728,-0.7074,-0.697,-0.6352,-0.4836,-0.1326,0.2322,1,0.7858,0.4196,0.6206,0.5178,0.7946,0.4822,0.3974,-0.3706,-0.7812,-0.634,-0.558,-0.5358,-0.6206,-0.7902,-0.6652,-0.6384,-0.759,-0.625,-0.2188,-0.1742,-0.6608,-0.6964,-0.6474,-0.7142,-0.6294,-0.616,-0.4956,-0.0624,0.1026,-0.3438,-0.3658,-0.2196,0.3658,0.5122,0.9512,1,0.8536,0.561,0.5122,0.5122,0.1708,0.0244,-0.317,-0.0732,-0.2196,-0.2682,-0.2196,-0.5122,-0.0244,0.0732,0.122,0.3658,0.2682,-0.2196,0.0244,-0.0732,-0.2196,0.0244,-0.0244,-0.0732,0.0732,0.122,-0.24,0.24,0.44,0.56,0.8,1,0.76,0.8,0.8,0.6,0.44,0.2,-0.44,-0.08,-0.08,-0.4,-0.8,-0.68,-0.24,-0.08,0.44,0.44,-0.2,-0.44,-0.2,-0.24,-0.32,-0.08,-0.12,-0.32,-0.12,-0.28,-0.2208,0.2208,0.5324,0.8182,1,1,0.5324,0.7922,0.6364,0.5844,-0.065,-0.3506,-0.4286,-0.4806,-0.5584,-0.6364,-0.5584,-0.6884,-0.4806,-0.2988,-0.091,-0.091,-0.1168,-0.6624,-0.5324,-0.6624,-0.6104,-0.5584,-0.6884,-0.4286,-0.4806,-0.5064,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,-0.9852,-0.5056,0.8404,0.8964,0.738,0.5382,0.5108,0.4686,0.497,0.458,-0.0228,-0.3872,-0.6186,-0.9144,-0.9756,-0.9662,-0.9704,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9732,-0.981,-0.4756,0.8418,0.6574,0.4144,0.181,0.0274,-0.0394,-0.0888,-0.1132,-0.4222,-0.651,-0.7924,-0.936,-0.9678,-0.9678,-0.9714,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8334,-0.9734,-0.8034,-0.74,-0.7868,-0.785,-0.8018,-0.7968,-0.8068,-0.8,-0.7884,-0.8334,-0.8584,-0.8984,-0.6968,-0.76,-0.7734,-0.7468,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,-0.6858,-0.7142,-0.9714,-1,-1,-1,-0.9428,-0.8,-0.8572,-0.6572,-0.6572,-0.9714,-0.9714,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.98,-0.3152,-0.3208,-0.3266,-0.3408,-0.3592,-0.3468,-0.3758,-0.3122,-0.167,-0.1024,-0.3066,0.4236,-0.3286,0.3176,0.952,0.9442,0.8266,1,-0.3024,0.0232,0.4884,0.721,0.814,0.7674,0.4884,0.2558,0.2558,0.5348,0.721,0.721,0.3954,0.3488,0.4884,0.628,0.8604,1,1,1,0.907,0.5348,-0.1162,-0.2558,-0.2558,-0.1628,-0.0698,-0.1628,-0.1628,-0.2558,-0.2558,-0.628,-0.1042,0.0834,0.5208,0.6876,0.9376,0.8958,0.2708,-0.0416,-0.0416,0.1042,0.8542,0.7708,0.2084,0.1666,0.1666,0.1876,0.4376,0.8958,0.9166,1,0.875,0.3124,-0.3542,-0.5208,-0.0624,-0.0416,-0.2292,-0.2292,-0.4166,-0.2292,0.1042,-0.125,0.3944,0.7064,1,1,0.8532,0.7798,0.266,0.0092,0.0642,0.0826,0.6146,0.6146,0.101,0.0642,0.1192,0.1376,0.3944,0.7064,0.6514,0.6146,0.5964,-0.0092,-0.2844,-0.266,-0.1926,-0.1744,-0.1926,-0.1744,-0.1926,-0.1192,-0.0642,-0.211,0.7634,-1,-1,1,-1,-1,-1,-0.8334,-1,0.1764,0.3412,0.247,0.9294,1,0.647,0.2706,0.3648,0.3648,0.2706,0.6706,0.3412,0.1294,0.2942,0.6,0.5058,0.3176,0.3412,0.0588,0.2706,0.247,-0.0824,0.1764,0.3412,0.153,0.247,0.3648,0.3648,-0.3648,-0.2236,-0.0824,-0.6706,'15'
0.0634,0.7142,0.8678,1,0.3068,-0.545,-0.4762,-0.6138,-0.5768,-0.619,-0.6772,-0.8202,-0.656,-0.5238,-0.4392,-0.3704,-0.2486,0.1428,0.381,0.7884,0.746,0.799,0.455,0.5396,0.7302,0.7884,0.672,0.5926,0.2276,0.254,0.2486,0.3704,-0.166,0.3184,0.9328,0.982,-0.0044,-0.4798,-0.3856,-0.5426,-0.6368,-0.5112,-0.74,-0.7668,-0.5874,-0.3542,-0.2826,-0.027,-0.0358,0.2152,0.6636,0.8252,1,0.8026,0.6726,0.7174,0.8162,0.9328,0.7578,0.6906,0.4932,0.5292,0.5874,0.6322,-0.1858,0.2168,1,0.9734,-0.3672,-0.3186,-0.3318,-0.584,-0.6106,-0.6194,-0.916,-0.6992,-0.7124,-0.447,-0.261,-0.2124,-0.0442,0.2256,0.4558,0.8938,0.854,0.916,0.5708,0.5486,0.7124,0.8982,0.8008,0.7876,0.3806,0.3584,0.3672,0.438,-0.2008,0.176,0.942,0.9254,-0.47,-0.4906,-0.5156,-0.7142,-0.6522,-0.6564,-0.9338,-0.8096,-0.7268,-0.5818,-0.4368,-0.3788,-0.147,0.0642,0.3374,0.8136,0.8924,1,0.6398,0.5156,0.6564,0.9668,0.8426,0.706,0.325,0.267,0.3168,0.4202,-0.154,0.2484,0.8686,0.8768,-0.2608,-0.5482,-0.5236,-0.729,-0.6796,-0.5894,-0.848,-0.881,-0.7126,-0.5688,-0.5072,-0.2896,-0.0266,0.0226,0.3182,0.8276,0.881,1,0.807,0.7002,0.9876,0.8644,0.6756,0.388,0.3594,0.3676,0.2526,0.306,-0.0046,0.5898,0.8802,1,0.1566,-0.6636,-0.5392,-0.6728,-0.6268,-0.6268,-0.7696,-0.7742,-0.7604,-0.6958,-0.424,-0.424,-0.3686,-0.0692,0.2028,0.5576,0.894,0.7972,0.5852,0.4608,0.6544,0.7282,0.4792,0.3272,0.1152,0.0646,0.1152,0.0184,0.1608,1,0.8592,0.8242,0.4624,-0.387,-0.5578,-0.6282,-0.804,-0.8994,-0.804,-0.5376,-0.613,-0.6884,-0.6332,-0.6582,-0.4824,-0.191,0.015,0.3668,0.8694,0.9146,0.613,0.7236,0.9046,0.7236,0.3618,0.3366,0.1508,0.2262,0.1608,0.0402,0.4736,0.9474,0.8422,0.421,0.1052,-0.421,-0.1578,0,0,-0.2106,-0.5264,-0.0526,-0.0526,0.1052,0,0,0,0.3158,0.5264,0.7894,1,1,0.421,0.8948,0.8422,0.8422,0.7368,0.7894,0.2106,0.3684,0.579,0.6316,0.3778,0.8666,0.9112,1,0.6888,0.0222,-0.0222,-0.2444,-0.2444,-0.2888,-0.2,-0.3334,-0.2,-0.1556,-0.2888,0.0222,0.1112,0.2888,0.4666,0.6444,0.9112,0.8666,0.7334,0.6,0.3334,0.8222,0.7334,0.5556,0.0666,0.0222,0.5556,0.5556,-0.039,0.3246,0.8442,0.8442,-0.1428,-0.4026,-0.4026,-0.5064,-0.4806,-0.3506,-0.5064,-0.6364,-0.5584,-0.6104,-0.5064,-0.2208,0.039,0.1168,0.4286,0.8442,0.974,0.922,0.8442,0.6884,1,1,0.6104,0.4286,0.4546,0.4546,0.3506,0.3246,-1,-1,-1,-1,-1,-0.9676,-0.976,-0.8916,-0.3154,-0.7972,-0.8508,0.2972,0.8,0.8126,0.9676,0.9254,0.7394,0.5352,0.4,0.145,-0.0522,-0.2522,-0.6986,-0.9352,-0.9592,-0.9564,-0.962,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9514,-0.9474,-0.0258,0.6046,-0.117,-0.6402,0.1864,0.677,0.7452,0.9396,0.8544,0.7602,0.7414,0.449,0.111,-0.118,-0.324,-0.6848,-0.8602,-0.8642,-0.894,-0.9148,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9,-0.9268,-0.67,-0.0668,0.21,-0.0034,-0.735,-0.7176,-0.7526,-0.7526,-0.7646,-0.7446,-0.6378,-0.7534,-0.8512,-0.9156,-0.9046,-0.6968,-0.3268,-0.0868,-0.1334,-0.3868,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,1,1,0.6,-0.1142,-1,-0.9428,-1,-1,-1,-0.8572,-0.8,-0.5142,-0.6,-0.1142,-0.5142,-0.8572,-0.8286,-0.7142,-1,-1,-1,-1,-1,-1,-0.5048,-0.4888,-0.4654,-0.4264,-0.4188,-0.3794,-0.3516,-0.3406,-0.3366,-0.4136,0.7982,0.772,0.7564,0.7384,0.741,0.7516,0.7718,0.7846,0.815,0.814,-0.56,0,-0.6522,-0.4064,0.1546,0.5342,0.6134,1,0.0588,0.0278,-0.034,-0.0092,0.0712,0.2632,0.3498,0.74,0.8142,0.8762,0.8824,0.9752,0.9318,0.8266,0.6594,0.9814,1,0.9876,0.9318,0.9876,0.938,0.7832,0.777,0.709,0.8328,0.616,0.6408,0.6594,0.4674,0.257,0.1888,-0.065,-0.38,-0.1266,-0.132,-0.0836,-0.0458,-0.0026,0.1428,0.2452,0.3692,0.4932,0.628,0.973,1,0.5472,0.4664,0.5688,0.8222,0.7844,0.4502,0.8114,0.7412,0.558,0.477,0.3854,0.283,0.3208,0.4016,0.2668,0.0674,0.0566,-0.0296,-0.2722,-0.2882,-0.1388,-0.2314,-0.2456,-0.2598,-0.2526,-0.1744,0.032,-0.0676,0.4306,0.338,0.5944,0.879,0.701,0.573,0.5872,0.6654,0.8078,0.5872,1,0.9786,0.7366,0.21,0.1316,0.2242,0.459,0.6014,0.4804,0.089,0.267,0.1672,-0.395,1,-1,-1,1,-1,-1,-0.8,-0.3,-1,-0.55,-0.1334,-0.0666,-0.1166,-0.1166,-0.3334,-0.15,-0.05,0.4666,0.6334,0.4,0.45,0.4334,0.4666,0.35,0.2666,0.3166,0.3166,0.6666,0.4666,0.75,1,0.65,0.2666,0.15,-0.1166,0.0166,0.1834,0.0166,0.2166,0,-0.1666,'16'
-0.1904,0.475,1,0.8878,-0.042,-0.3466,-0.6272,-0.5712,-0.6032,-0.8878,-0.7916,-0.7154,-0.6192,-0.5792,-0.4148,-0.2224,-0.0902,0.2424,0.503,0.515,0.3186,0.3426,0.2906,0.5752,0.7194,0.7194,0.499,0.2986,0.1504,0.2586,0.3548,0.4308,-0.3078,0.654,1,0.7268,0.0274,-0.1002,-0.7814,-0.5956,-0.6794,-0.7668,-0.6758,-0.734,-0.5592,-0.5336,-0.4208,-0.224,-0.2022,0.3662,0.541,0.4172,0.5992,0.5336,0.2496,0.5192,0.53,0.7158,0.7122,0.3588,0.3442,0.3516,0.184,0.337,-0.2872,0.5854,1,0.771,-0.0728,-0.1454,-0.6764,-0.731,-0.7164,-0.8036,-0.7928,-0.7054,-0.7746,-0.549,-0.4872,-0.5018,-0.0764,0.0218,0.3128,0.571,0.349,0.24,0.1854,0.211,0.469,0.3818,0.3018,0.1164,-0.0654,-0.1964,-0.2436,-0.411,-0.2824,0.4644,1,0.8252,-0.1986,-0.224,-0.541,-0.6066,-0.887,-0.705,-0.8398,-0.7158,-0.581,-0.6358,-0.5482,-0.5046,-0.2532,-0.031,0.2568,0.4026,0.4134,0.286,0.246,0.1804,0.224,0.2276,0.297,0.0564,-0.0018,-0.2932,-0.3952,-0.4098,-0.2206,0.5018,1,0.8398,-0.2348,-0.3346,-0.5232,-0.6014,-0.8862,-0.8648,-0.8506,-0.7224,-0.7082,-0.6584,-0.42,-0.3772,-0.21,0.0392,0.427,0.5836,0.5944,0.4982,0.2812,0.4234,0.669,0.6192,0.6476,0.42,0.1388,-0.0782,-0.064,0.064,-0.1862,0.2846,1,0.938,-0.4416,-0.6788,-0.7116,-0.697,-0.8284,-0.7774,-0.9344,-0.7664,-0.6862,-0.6788,-0.427,-0.3248,-0.124,0.1278,0.3906,0.6424,0.6678,0.5328,0.4708,0.792,0.8322,0.9014,0.4526,0.2846,0.124,0.2336,0.1204,0.2008,0.1482,0.9202,0.8136,1,0.6008,-0.4638,-0.559,-0.654,-0.8136,-0.5704,-0.5704,-0.5552,-0.5704,-0.5172,-0.4486,-0.6654,-0.403,-0.2358,-0.0418,0.2966,0.5248,0.5628,0.4448,0.4904,0.5742,0.5172,0.2054,0.1826,0.0608,0.057,-0.0494,-0.019,0.5714,0.9048,0.8572,1,0.4286,0.1428,0.238,0.238,0.1428,-0.1904,-0.4762,-0.238,0.0476,-0.0952,0.0952,0.0476,0.3334,0.5714,0.6666,0.762,0.3334,0.4286,0.381,0.7142,0.9048,1,0.381,0.381,0.3334,0.5714,0.5714,0.5714,0.0526,0.421,1,0.9474,0.1052,-0.1052,-0.2106,-0.3684,-0.5264,-0.7368,-0.421,-0.2632,-0.3158,-0.3684,-0.0526,0,0.2106,0.3684,0.5264,0.579,0.3684,0.3684,0.579,0.579,0.5264,0.5264,0.421,0.3684,0.2632,0.3684,0,0.2106,-0.0488,0.756,1,0.756,0.244,0.0976,-0.5122,-0.3902,-0.244,-0.317,-0.683,-0.317,-0.2926,-0.2682,-0.0732,-0.0732,0.0488,0.244,0.6098,0.7318,0.6586,0.4878,0.317,0.4634,0.439,0.8048,0.7318,0.3414,0.439,0.4146,0.1952,0.2682,-1,-1,-1,-1,-1,-0.9694,-0.9624,-0.5566,-0.5218,-0.9028,-0.7318,0.6734,0.9096,0.8012,0.7026,0.7136,0.6846,0.5998,0.4816,0.2898,0.0272,-0.2106,-0.7068,-0.9486,-0.9652,-0.9624,-0.9694,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.9492,0.3838,0.5184,-0.2252,-0.6614,0.564,0.8808,0.5836,0.4728,0.4624,0.4738,0.4614,0.4014,0.3164,0.0554,-0.2864,-0.6676,-0.8436,-0.9274,-0.9192,-0.9264,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9868,-0.92,-0.5968,0.1666,0.2766,-0.0734,-0.856,-0.874,-0.902,-0.908,-0.906,-0.878,-0.81,-0.8092,-0.84,-0.8092,-0.96,-0.5834,-0.1934,-0.5934,-0.74,-0.66,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,1,1,0.8572,-0.6858,-0.5428,-0.8286,-0.9714,-0.9428,-0.9714,-1,-0.9142,0.2,0.1142,-0.4,0,-0.1714,-0.9714,-0.4286,-1,-1,-1,-1,-1,-1,-0.3144,-0.3118,-0.3048,-0.3038,-0.3068,-0.3044,-0.3294,-0.3396,-0.312,-0.363,0.7218,0.7398,0.7494,0.74,0.7142,0.7112,0.7368,0.6932,0.688,0.7224,-0.44,0.2236,-0.7182,-0.1134,0.4852,0.7908,0.9554,1,0.0778,-0.006,0.1198,0.018,-0.1976,0.2216,0.3174,0.6048,0.7664,0.8922,1,0.8144,0.5928,0.6108,0.6228,0.9402,0.9222,0.8084,0.7126,0.8682,0.8922,0.7724,0.6826,0.6586,0.491,0.479,0.5508,0.467,0.4372,0.3234,0.1616,-0.1556,-0.5754,-0.2592,-0.1556,-0.1754,-0.1308,-0.047,0.047,0.1754,0.353,0.4172,0.5902,0.8914,0.8124,0.6888,0.5012,0.5802,1,0.7926,0.7136,0.7234,0.7432,0.7086,0.5556,0.4716,0.3086,0.4272,0.4124,0.2988,0.0814,0.121,0.037,-0.042,-0.0464,0.003,0.0154,-0.226,-0.2322,-0.0526,-0.0402,-0.0774,0.0836,0.387,0.4922,0.7338,1,0.6718,0.5418,0.5852,0.9504,0.8762,0.74,0.9256,0.8452,0.616,0.3066,0.2756,0.1332,0.4674,0.61,0.3374,0.2818,0.3066,0.3808,0.1084,1,-1,-1,1,-0.6,-1,-1,-0.2334,-1,-0.2942,-0.0084,-0.0756,-0.0756,-0.0924,-0.126,-0.126,-0.0084,0.21,0.2942,0.8824,0.8488,0.832,0.7142,0.6134,0.2606,0.6806,0.9664,0.9496,0.7984,1,0.6806,0.395,-0.0756,-0.21,-0.042,0.1428,0.7984,0.5294,0.0252,0.0252,-0.5462,'16'
0.0138,0.6314,0.6452,0.8388,0.341,-0.493,-0.447,-0.6222,-0.4884,-0.599,-0.6268,-0.5392,-0.5346,-0.2996,-0.1844,-0.0692,0.2858,0.5162,1,0.8986,0.9078,0.7742,0.6452,0.2212,0.0922,-0.0552,-0.0968,-0.1014,0.0368,0.1844,0.2764,0.4654,-0.134,0.3274,0.912,1,0.178,-0.4286,-0.2572,-0.3758,-0.3802,-0.3142,-0.5252,-0.4946,-0.3626,0.011,0.3142,0.8066,0.8066,0.811,0.6792,0.6176,0.855,0.7406,0.2484,-0.1296,-0.2,-0.288,-0.4374,-0.4154,-0.134,0.011,0.1956,0.4858,-0.2026,0.237,0.987,1,-0.0044,-0.1422,-0.056,-0.2284,-0.3534,-0.2112,-0.2284,0.0862,0.2456,0.4742,0.4182,0.1164,-0.1638,-0.2844,-0.0646,0.0776,0.1982,0.25,0.1638,-0.5344,-0.7802,-0.7758,-0.6724,-0.6034,-0.556,-0.4612,-0.2112,-0.0646,-0.1344,0.253,0.9802,1,0.0356,-0.0198,0.0198,0.0118,0.0238,0.1304,0.3636,0.2016,-0.2214,-0.253,-0.2688,-0.3952,-0.6048,-0.6166,-0.3716,-0.3596,-0.249,0.1264,0.0316,-0.6522,-0.913,-0.8538,-0.7906,-0.8578,-0.7984,-0.66,-0.4664,-0.3202,-0.1266,0.299,0.9302,1,0.222,-0.2,-0.0386,0.1082,0.3614,0.5926,0.3138,-0.0386,-0.4312,-0.5192,-0.7248,-0.7064,-0.6734,-0.6146,-0.6,-0.512,-0.3284,-0.3468,-0.4092,-0.633,-0.6808,-0.7394,-0.8018,-0.945,-0.8422,-0.655,-0.5046,-0.2734,-0.1078,0.409,0.8698,1,0.4572,-0.1152,-0.0484,0.3346,0.461,0.0558,0.0224,-0.2676,-0.461,-0.5688,-0.8066,-0.7806,-0.7398,-0.7434,-0.6542,-0.4982,-0.4572,-0.3086,-0.3718,-0.6766,-0.777,-0.8328,-0.8624,-0.8066,-0.6394,-0.658,-0.5576,-0.3644,0.0812,0.7494,0.7772,1,0.4386,-0.0952,0.0116,0.6056,0.9768,0.689,-0.1136,-0.1508,-0.3272,-0.369,-0.6242,-0.522,-0.6194,-0.601,-0.7448,-0.9536,-0.833,-0.8144,-0.7772,-0.6242,-0.6148,-0.652,-0.7866,-0.9118,-0.9444,-0.8004,-0.7726,-0.7216,0.3714,1,0.7714,0.7142,0.2,0.0858,-0.2572,-0.3714,-0.2572,-0.3142,-0.3142,-0.2572,-0.0858,-0.0286,-0.3714,-0.4286,-0.3142,0.3714,0.5428,0.3142,0.3714,0.4286,0.6572,0.4858,0.0286,-0.0286,-0.0286,0.4286,0.4286,0.4286,0.4286,0.4286,0.0244,0.5122,0.4146,0.7074,0.317,-0.5122,-0.3658,-0.3658,-0.3658,-0.4146,-0.9024,-0.561,-0.2196,0.0244,0.0244,-0.0732,-0.0732,0.0244,0.9024,1,0.7074,0.8536,0.4146,-0.317,0.0244,0.0244,0.122,-0.0244,0.122,0.0732,-0.0244,0.2682,-0.2,0.2,0.9428,1,-0.0286,-0.3714,-0.1714,-0.4,-0.5428,-0.3142,-0.5428,-0.4,-0.1142,0.5428,0.5142,0.6858,0.4286,0.2,0.2572,0.4286,0.6572,0.2572,0.2286,-0.3714,-0.5714,-0.5142,-0.6,-0.3714,-0.2286,-0.1714,-0.0858,0.1714,-1,-1,-1,-0.968,-0.9692,-0.9074,-0.8002,-0.8322,-0.8346,-0.9458,-0.8396,0.1352,0.5212,0.7692,0.926,0.9802,0.8716,0.7224,0.541,0.3238,-0.0574,-0.5004,-0.7298,-0.8864,-0.958,-0.9606,-0.9544,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9578,-0.949,-0.2128,0.6038,0.5192,0.1618,-0.3302,-0.6176,0.1688,0.8662,0.8032,0.722,0.7074,0.5796,0.432,0.2482,0.0592,-0.2638,-0.552,-0.6788,-0.805,-0.8956,-0.912,-0.9034,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9,-0.9268,0.1266,0.72,0.6966,0.6432,0.6532,0.2032,-0.7876,-0.6826,-0.74,-0.865,-0.8726,-0.8712,-0.8824,-0.92,-0.929,-0.9268,-0.9756,-0.8334,-0.6068,-0.72,-0.54,-0.6,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,-0.9428,-0.2,1,1,1,0.0286,-0.5714,-0.5142,-0.6,-0.7714,-0.8858,-0.9714,-0.6572,-0.5714,-0.6286,-0.5428,-0.4858,-0.4858,-0.9142,-0.9142,-1,-1,-1,-1,-1,-1,-0.411,-0.3888,-0.3896,-0.3454,-0.33,-0.3158,-0.2642,-0.1956,-0.0642,0.046,0.1394,0.1284,0.1072,0.0634,0.0202,-0.0466,-0.1962,-0.454,-0.6632,-0.6194,-0.5866,-0.0118,-0.7004,-0.3906,0.1196,0.54,0.7358,1,-0.5956,-0.3024,-0.4026,-0.4138,-0.332,-0.206,-0.154,-0.0724,0.0576,0.1986,0.4212,0.5176,0.8256,0.8886,0.7922,0.8478,0.8218,0.796,0.948,0.8628,0.8478,0.807,0.6252,0.6512,0.7328,0.922,1,0.7922,0.6958,0.577,0.332,0.0242,-0.586,-0.3536,-0.3472,-0.328,-0.414,-0.3312,-0.2708,-0.2324,-0.1082,0.0192,0.2644,0.5222,0.6306,0.6816,0.6242,0.7452,0.9332,0.8408,0.9172,1,0.7324,0.7134,0.672,0.5668,0.7198,0.7262,0.7292,0.6434,0.5956,0.484,0.2166,0.0222,-0.6876,-0.5444,-0.5098,-0.666,-0.6008,-0.5054,-0.3016,-0.2278,-0.0802,0.397,0.6226,0.8742,0.7744,0.6052,0.5704,0.77,1,0.8568,0.692,0.8656,0.7874,0.692,0.488,0.4708,0.6008,0.6268,0.7224,0.7528,0.4708,0.5054,0.3752,0.0802,1,-1,-1,1,-1,-1,-0.6,0.2,1,-0.375,-0.0892,-0.3036,0.0536,0.0892,0.5714,1,0.3928,0.3392,-0.125,-0.0892,0.1428,0.375,0.4642,0.1428,0.3928,0.6428,0.5,0.0536,0.1964,0.1964,0.5,0.1428,0.0358,-0.3572,-0.1428,-0.0536,-0.1072,-0.1608,0,-0.0714,-0.7142,'17'
0.0924,0.5678,0.941,1,-0.1474,-0.3596,-0.3438,-0.5442,-0.6738,-0.9646,-0.89,-0.56,-0.4578,-0.2338,-0.332,-0.0098,0.2928,0.7524,0.8624,0.8468,0.6974,0.7486,0.8664,0.6818,0.6738,0.3596,0.1906,0.2496,0.2928,0.4264,0.6464,0.8664,-0.251,0.2546,0.9704,0.8746,-0.2916,-0.2178,-0.417,-0.5608,-0.9004,-0.8302,-0.8376,-0.6384,-0.3986,-0.369,-0.144,0.2584,0.8044,0.9226,1,0.9226,0.9742,0.5276,0.2066,0.048,-0.225,-0.2878,-0.1476,-0.1218,-0.096,0.107,0.3726,0.7158,-0.2386,0.3674,1,0.8712,0.091,-0.0416,-0.284,-0.4394,-0.7046,-0.6098,-0.4924,-0.3522,0.1212,0.2348,0.2196,0.2916,0.0644,0.0304,0.144,0.428,0.2878,0.0834,-0.4356,-0.625,-0.7046,-0.6022,-0.519,-0.5606,-0.6212,-0.2348,-0.0114,0.1364,-0.102,0.406,1,0.864,0.2844,0.0626,-0.1986,-0.263,-0.4526,-0.306,0.22,0.3632,0.2522,-0.034,-0.492,-0.3704,-0.3346,-0.4096,-0.3738,-0.0054,-0.1378,-0.1234,-0.7568,-0.9178,-0.7638,-0.6494,-0.8104,-0.839,-0.8246,-0.6422,-0.3382,-0.2164,-0.0644,0.3496,1,0.9026,0.2,0.1234,-0.0434,-0.0296,-0.3286,-0.0852,-0.1548,-0.2244,-0.346,-0.3878,-0.7286,-0.826,-0.7426,-0.753,-0.6556,-0.2556,-0.186,-0.4226,-0.607,-0.7114,-0.9478,-0.7704,-0.854,-0.7704,-0.913,-0.906,-0.826,-0.1722,0.044,0.4286,1,0.9824,0.1358,0.15,0.1182,0.298,0.1922,0.1428,-0.4498,-0.4392,-0.4744,-0.4604,-0.605,-0.6754,-0.5626,-0.5626,-0.545,-0.4886,-0.5486,-0.6578,-0.6402,-0.7918,-0.9188,-0.8236,-0.8378,-0.8836,-0.8272,-0.8484,-0.7108,-0.3334,0.2344,1,0.7916,0.8178,0.2344,0.1562,-0.0678,0.4062,0.6198,0.2448,-0.3698,-0.448,-0.1302,-0.2032,-0.5572,-0.4636,-0.4948,-0.698,-0.6042,-0.4322,-0.4376,-0.2812,-0.3698,-0.8906,-0.7396,-0.5834,-0.6562,-0.6718,-0.8124,-0.9114,-0.698,-0.5572,0.5238,1,0.9524,0.6666,0.2858,-0.0476,-0.238,-0.381,-0.381,-0.5238,-0.381,-0.0952,-0.238,0,-0.381,0,0.1428,-0.1428,0.3334,0.4762,0.4762,0.6666,0.762,0.8096,0.7142,0.5714,0.4286,0.2858,0.0952,0.1428,0.5714,0.8572,-0.0344,0.6552,0.931,1,0.0344,-0.3794,-0.4482,-0.5172,-0.6552,-0.862,-0.862,-0.5862,-0.5172,-0.5172,-0.5172,-0.1034,0.4482,0.7242,0.6552,0.6552,0.4482,0.862,1,0.931,0.7242,-0.2414,-0.0344,0.0344,-0.1034,-0.0344,0.3794,0.931,-0.2728,0.3636,1,0.909,0.0304,-0.1212,-0.3334,-0.4848,-0.6666,-0.6666,-0.6364,-0.5152,-0.1212,0.1818,0.4848,0.6666,0.2728,0.1516,0.2122,0.4242,0.3636,-0.0606,-0.4546,-0.4546,-0.606,-0.5454,-0.4848,-0.4848,-0.606,-0.2122,-0.0304,0.1818,-1,-1,-1,-0.9712,-0.9626,-0.824,-0.8918,-0.9006,-0.8876,-0.9438,-0.8428,0.39,0.8932,0.9754,0.9048,0.664,0.4954,0.4088,0.3396,0.1968,-0.132,-0.4852,-0.8212,-0.9524,-0.9626,-0.9626,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9582,-0.9546,0.5236,0.3844,0.5338,0.2368,-0.2526,-0.5386,0.2832,0.8478,0.844,0.6378,0.3008,0.0928,0.039,-0.0148,-0.1132,-0.3556,-0.598,-0.8422,-0.921,-0.936,-0.9192,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.9334,0.03,0.6366,0.6266,0.6332,0.5866,0.44,-0.78,-0.76,-0.848,-0.856,-0.88,-0.874,-0.838,-0.836,-0.834,-0.8474,-0.8838,-0.7168,-0.6934,-0.7934,-0.7468,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,-0.5714,-0.1714,0.3142,1,1,-0.8858,-0.8,-0.6,-0.6858,-0.7428,-0.9142,-0.9714,-0.8858,-0.9428,-0.6858,-0.4858,-0.6286,-1,-0.7714,-1,-1,-1,-1,-1,-1,-1,-0.576,-0.545,-0.5138,-0.4894,-0.4686,-0.4026,-0.3586,-0.2688,-0.1574,0.0122,0.4606,0.4468,0.418,0.3918,0.3606,0.3054,0.1836,-0.0828,-0.4842,-0.57,-0.48,0.2,-0.5896,-0.3872,0.1392,0.5386,0.7344,1,-0.9234,-0.343,-0.438,-0.3906,-0.343,-0.3212,-0.23,-0.1094,-0.0328,0.157,0.3504,0.3942,0.8066,1,0.8906,0.8868,0.9052,0.8722,0.949,0.9672,0.8176,0.7044,0.5474,0.3796,0.4198,0.5182,0.5802,0.657,0.4708,0.5,0.2336,0.0438,-0.955,-0.5544,-0.4716,-0.4508,-0.3436,-0.392,-0.2332,-0.3092,-0.0536,0.095,0.1606,0.4854,0.6926,0.7962,0.8032,0.917,0.9896,0.7858,1,0.9586,0.8412,0.6408,0.6754,0.5372,0.4922,0.6304,0.6166,0.5544,0.5544,0.4438,0.3472,0.0812,-0.6786,-0.414,-0.4442,-0.4706,-0.4292,-0.4404,-0.3384,-0.2666,-0.1494,0.1682,0.2704,0.5312,0.6862,0.6522,0.8374,0.9054,0.9092,0.656,0.9282,1,0.8186,0.414,0.448,0.2892,0.4442,0.6182,0.5274,0.38,0.4292,0.4178,0.3384,-0.0662,1,-1,-1,1,-1,-1,-1,0.2,-1,-0.0754,0.283,0.1698,0.5094,0.9434,1,0.868,0.5472,0.3018,0.434,0.6792,0.4528,0.415,0.132,0.151,0.283,0.566,0.4716,0.2264,0.1886,0.3018,0.2642,0.3584,0.3584,0.3962,0.0754,0.3584,0.2642,0.0188,-0.0188,-0.1698,-0.2264,'17'
-0.3778,0.0154,0.2352,0.257,0.3622,0.678,0.743,0.873,1,0.8824,0.1702,-0.0558,-0.1114,-0.1702,-0.3126,-0.3468,-0.5046,-0.4674,-0.0866,0.1238,0.1114,-0.0216,-0.3344,-0.5108,-0.6564,-0.6904,-0.6006,-0.5914,-0.4644,-0.3994,-0.0712,0.0928,-0.4026,-0.164,0.2034,0.2904,0.5456,0.7728,1,0.9776,0.6774,0.6746,0.4838,-0.237,-0.0604,-0.2202,-0.3772,-0.4446,-0.2762,-0.15,0.0378,0.2482,0.0912,-0.3324,-0.4866,-0.5512,-0.5512,-0.6942,-0.6998,-0.5232,-0.4054,-0.2454,0.0238,-0.0518,-0.468,-0.222,0.147,0.1872,0.5962,0.7648,1,0.8396,0.5562,0.7406,0.4198,0.0776,0.1444,-0.1524,-0.23,-0.262,-0.1978,-0.0268,0.3878,0.3744,-0.0534,-0.3396,-0.4732,-0.484,-0.4866,-0.5936,-0.5294,-0.468,-0.4252,-0.139,-0.0534,-0.1284,-0.5062,-0.0924,0.178,0.2,0.691,0.782,1,0.7324,0.8344,0.9366,0.5476,0.3848,0.3434,0.098,0.1338,0.1172,0.2442,0.3794,0.3434,0.1558,-0.142,-0.2828,-0.3766,-0.4482,-0.44,-0.4896,-0.3738,-0.2662,-0.1944,0.018,0.04,-0.0924,-0.494,-0.1486,0.1888,0.269,0.6974,0.7992,1,0.834,0.7724,0.909,0.8232,0.7054,0.5368,0.419,0.5502,0.6224,0.601,0.328,-0.0254,-0.1834,-0.2664,-0.3092,-0.4002,-0.4484,-0.4298,-0.4432,-0.2852,-0.1726,-0.1298,-0.0468,-0.1994,-0.237,-0.419,-0.1754,0.2396,0.4752,0.7188,0.9974,0.8474,0.6252,0.743,1,0.9678,0.9678,0.7644,0.81,0.8902,0.7966,0.5448,0.1674,-0.0308,-0.229,-0.245,-0.3654,-0.419,-0.4298,-0.435,-0.3762,-0.2236,-0.1942,-0.146,-0.004,0.0014,-0.1058,-0.162,0.3396,0.5546,0.6324,0.8536,0.8474,0.972,0.5546,0.4672,0.4828,0.6916,0.7882,0.9004,1,0.9626,0.6604,0.1246,-0.2492,-0.4984,-0.5514,-0.648,-0.6698,-0.5234,-0.7414,-0.8286,-0.5794,-0.5482,-0.4424,-0.4144,-0.3708,-0.5358,-0.7228,-0.15,0.3,0.3,0.3,0.35,0.75,0.8,0.95,1,0.55,0.3,0.15,-0.2,-0.1,-0.15,-0.3,-0.2,-0.45,0.1,0.2,0.35,0.25,0.1,0,-0.25,-0.3,-0.5,-0.85,-0.4,-0.15,-0.25,0.3,0.0232,0.3954,0.4418,0.4418,0.5348,0.4418,0.628,1,1,0.4418,0.1162,0.0232,-0.4884,-0.1162,-0.1628,-0.2558,-0.0698,-0.2094,0.0698,0.3024,0.2094,-0.0698,-0.0232,-0.3488,-0.721,-0.3024,-0.5348,-0.3954,-0.3024,-0.3024,-0.0698,-0.0232,-0.5,-0.0714,0.1904,0.1904,0.6904,0.7858,1,0.7858,0.8096,0.9048,0.5,0.3572,0.3334,0,0.1666,0,0.238,0.4048,0.4286,0.2142,0,-0.4286,-0.2858,-0.4286,-0.5,-0.5,-0.4286,-0.3334,-0.2858,0,0.0476,-0.0476,-1,-1,-1,-1,-1,-1,-1,-0.9648,-0.9724,-0.8884,-0.7814,-0.4388,0.1972,0.7186,0.873,0.9664,0.9526,0.9068,0.8532,0.864,0.5,0.003,-0.6834,-0.9236,-0.9328,-0.9418,-0.948,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.983,-0.9822,-0.9478,-0.8614,-0.6204,0.0296,0.3056,0.5328,0.7208,0.8492,0.9566,0.925,0.8388,0.0822,-0.494,-0.8602,-0.9218,-0.9304,-0.9286,-0.932,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.9668,-0.86,-0.64,-0.664,-0.6364,-0.702,-0.651,-0.6764,-0.74,-0.7346,-0.7382,-0.8256,-0.8892,-0.8582,-0.6568,-0.5,-0.5068,-0.5534,-0.5134,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4858,-0.7142,0.4572,0.2286,0.6286,0.1142,-0.8572,-0.9714,-1,-0.9142,-1,-1,-0.3714,0.2572,0.3428,0.1428,-0.7142,-1,-0.9428,-0.8572,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.656,-0.6738,-0.7094,-0.7656,-0.7972,-0.7788,-0.8424,-0.9454,-1,-1,-0.4,0.2942,-0.8582,-0.8196,-0.7678,-0.524,-0.318,-0.9416,0.1096,0.1354,0.2646,0.1612,0.6646,0.7162,1,0.6904,0.5096,0.4452,0.613,0.742,0.8322,0.6516,0.729,0.6258,0.4838,0.2646,0.3806,0.342,0.4194,0.5612,0.2646,0.3936,0.4838,0.5354,0.6258,0.1612,0.329,0.5096,0.1484,-0.458,0.0384,0.1154,0.4744,0.3462,0.718,0.5642,1,0.859,0.641,0.4872,0.6282,0.4488,0.4616,0.5898,0.4744,0.5,0.2948,0.5898,0.3718,0.2436,0.1282,0.2692,0.1924,0.9102,0.5898,0.5256,0.5512,0.2948,0.1794,0.2692,0.2052,-0.5,0.2106,0.4124,0.5964,0.721,1,0.7982,-0.0326,-0.1692,-0.0682,-0.0446,0.3116,-0.0208,-0.0208,-0.009,-0.1098,0.0326,0.1038,-0.1336,-0.2582,-0.2226,0.0802,-0.2106,-0.2344,-0.098,-0.2226,-0.181,-0.1216,-0.1692,-0.1336,-0.3056,-0.175,-0.448,-0.9984,1,-1,-1,-1,-0.8,-1,-1,-1,-0.3662,-0.0564,-0.0422,0.3944,0.3098,0.2676,0.5492,0.8732,1,0.6338,0.4508,0.1126,0.1126,0.169,0.2112,0.2394,-0.155,0.0422,-0.169,0.2112,0.2254,0.2112,0.3662,0.3802,0.3098,0.0986,0.183,0.1408,-0.0846,-0.2112,-0.3662,-0.7746,'18'
-0.4492,-0.0198,0.2204,0.1978,0.8362,0.8786,0.8474,1,0.8644,0.565,0.0112,-0.3108,-0.3502,-0.3616,-0.531,-0.5622,-0.5084,-0.4096,-0.161,0.0508,-0.0142,-0.178,-0.2628,-0.5706,-0.695,-0.7118,-0.661,-0.5536,-0.517,-0.3446,-0.0622,0.2684,-0.3992,0.0044,0.2518,0.246,0.7998,0.7408,0.8792,1,0.7732,0.5288,0.2372,-0.2194,-0.2488,-0.4226,-0.5406,-0.6142,-0.6436,-0.6848,-0.6378,-0.1606,0.0634,0.1634,-0.0486,-0.455,-0.5758,-0.7202,-0.6672,-0.6142,-0.6996,-0.5434,-0.3992,-0.1546,-0.4144,-0.0304,0.2154,0.2652,0.7266,0.895,0.9558,0.9144,1,0.8314,0.3232,0.1244,-0.2128,-0.2292,-0.3922,-0.3702,-0.29,-0.4558,-0.2266,0.058,0.1988,0.1408,-0.3896,-0.5884,-0.7348,-0.7072,-0.7486,-0.616,-0.6906,-0.3314,-0.1686,0.0636,-0.4448,-0.0868,0.1394,0.25,0.6342,0.9132,1,0.7184,0.979,0.829,0.7948,0.3606,0.2184,0.1816,0.129,0.1264,0.1394,0.279,0.3394,0.1448,-0.0132,-0.3578,-0.4264,-0.5606,-0.5448,-0.4736,-0.5632,-0.3526,-0.1816,0.171,0.271,0.0606,-0.391,-0.0824,0.1888,0.3882,0.7394,0.7606,1,0.7234,0.8138,0.8218,0.8618,0.5824,0.5852,0.601,0.7154,0.7288,0.657,0.3484,-0.1782,-0.2526,-0.25,-0.3618,-0.4548,-0.5612,-0.6304,-0.5106,-0.3936,-0.1676,0.0106,0.0558,-0.0054,-0.2048,-0.2336,0.0854,0.4358,0.4844,0.718,0.963,0.9288,0.7606,0.7038,0.6582,0.6324,0.5926,0.6468,0.829,1,0.9772,0.7008,0.2222,-0.3646,-0.4672,-0.4928,-0.5642,-0.7008,-0.8062,-0.7664,-0.7664,-0.5868,-0.2992,-0.0998,-0.1196,-0.3504,-0.5754,-0.0038,0.9926,0.863,0.8592,0.8148,1,0.926,0.963,0.7148,0.3888,0.337,0.4408,0.5,0.937,0.974,0.9704,0.6778,0.3112,-0.1444,-0.3814,-0.3888,-0.5186,-0.5186,-0.5926,-0.4888,-0.5186,-0.5814,-0.2962,-0.1814,-0.3444,-0.6222,-0.7852,-0.098,0.255,0.3726,0.3726,0.7648,0.8432,0.8432,0.9608,1,0.6862,0.255,0.0588,0.098,0.098,-0.255,-0.098,-0.1372,-0.098,0.255,0.4118,0.2942,0.098,-0.098,-0.098,-0.1764,-0.1764,-0.0588,-0.0588,0.0588,0.0196,0.2942,0.647,-0.55,-0.15,0.1,0.3,0.75,0.8,0.85,1,0.9,0.4,0.15,-0.3,-0.15,-0.4,-0.45,-0.5,-0.35,-0.1,0.1,0.2,0,-0.45,-0.35,-0.75,-0.5,-0.6,-0.6,-0.5,-0.4,-0.05,0.25,0.6,-0.4054,-0.1082,0.1892,0.2432,0.6756,0.919,1,0.8108,0.973,0.8378,0.5676,0.1352,0.027,-0.054,-0.1622,-0.2162,-0.1352,-0.081,0.2432,0.1352,0.081,-0.1352,-0.3514,-0.5136,-0.5946,-0.5136,-0.7028,-0.4324,-0.5136,-0.054,0.081,0.1622,-1,-1,-1,-1,-1,-1,-1,-0.9632,-0.9706,-0.9578,-0.3994,0.5868,0.9284,0.9248,0.8916,0.8512,0.82,0.6676,0.4508,0.293,0.2562,-0.19,-0.9136,-0.9632,-0.9338,-0.9614,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9728,-0.9728,-0.9596,-0.4474,0.5674,0.6234,0.5498,0.674,0.7006,0.9144,0.9246,0.4764,0.0142,-0.269,-0.6144,-0.9258,-0.9476,-0.9398,-0.9374,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.9534,-0.8868,-0.81,-0.6684,-0.7584,-0.755,-0.705,-0.755,-0.7708,-0.7554,-0.8094,-0.8216,-0.8986,-0.9248,-0.6168,-0.7534,-0.64,-0.58,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,-0.8858,1,1,1,-0.8,-0.8858,-0.9428,-0.8572,-1,-0.9428,-0.9428,-0.9142,-0.6572,0.4,0.0858,-0.9428,-0.9714,-0.7714,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.6258,-0.585,-0.5864,-0.5666,-0.5514,-0.5348,-0.4928,-0.5062,-0.759,-1,-0.32,0.5058,-0.307,0.1884,0.4396,0.6662,0.7384,0.6916,0.2444,0.5112,0.8222,1,1,0.8222,0.6444,0.5556,0.4666,0.6888,0.6,0.4666,0.3334,0.2888,0.5112,0.5556,0.6,0.5556,0.4666,0.4666,0.3778,0.2888,0.3334,0.0666,0.2,0.2444,0.2444,0.2444,-0.0666,0.2,0.1112,-0.2444,0.193,0.3508,0.7544,1,0.9474,0.614,0.3334,0.1754,0.193,0.4912,0.5264,0.1228,0.0176,-0.035,0.0878,0.421,0.5438,0.5438,0.4386,0.3508,0.1754,-0.2632,-0.2106,-0.2808,-0.228,-0.228,-0.2632,-0.2982,-0.2632,-0.1052,0.0526,-0.1404,0.0204,0.3878,0.9184,0.9388,1,0.2448,0.102,0.0408,-0.0408,0.3674,0.4286,-0.0204,-0.1428,-0.0816,0.0408,0.347,0.7756,0.6938,0.449,0.0204,-0.1428,-0.8164,-0.5918,-0.5714,-0.4082,-0.4694,-0.551,-0.551,-0.7142,-0.2858,-0.0408,-0.3878,0.492,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.3334,-0.1404,-0.0526,0.1754,0.2982,0.3158,0.5614,1,0.9474,0.4562,0.5964,0.2808,0.2808,0.4036,0.5438,0.0878,0.035,0.1228,-0.0702,-0.035,0.1754,-0.0176,-0.1578,-0.0176,0,0.0176,-0.0702,0.1228,0.035,-0.2632,-0.228,-0.614,'18'
-0.3448,-0.0884,0.3676,0.5042,0.7038,1,0.7606,-0.0598,0.134,-0.02,-0.0826,-0.0542,0.0256,0.4018,0.4358,0.6696,0.772,0.6752,0.3904,0.3846,0.3618,0.4472,0.527,0.6582,0.6582,0.3276,0.0598,-0.0086,0.0542,0.1168,0.134,0.1566,-0.3962,-0.1136,0.2742,0.3906,0.8006,1,0.6952,0.2132,0.3074,0.0194,0.0638,0.0138,0.18,0.446,0.6676,0.712,0.795,0.4736,0.3074,0.4238,0.374,0.5236,0.6454,0.8006,0.5568,0.3518,0.252,0.2188,0.1746,0.18,0.169,0.2686,-0.4398,-0.042,0.2718,0.3278,0.86,1,0.7142,0.507,0.3614,0.2718,0.1764,0.3334,0.3614,0.4734,0.8656,0.7816,0.5854,0.5014,0.3894,0.4062,0.5126,0.5966,0.7984,0.7816,0.5126,0.311,0.21,0.238,0.2044,0.3614,0.2606,0.3278,-0.406,-0.104,0.3118,0.3712,0.8168,0.9604,1,0.8466,0.51,0.3762,0.3366,0.4258,0.6634,0.8118,0.9456,0.8564,0.4406,0.3862,0.3862,0.4456,0.5198,0.7278,0.7426,0.7722,0.5792,0.3712,0.3118,0.3366,0.2376,0.3862,0.3514,0.4852,-0.3952,-0.1414,0.317,0.3708,0.7708,1,0.9366,0.8586,0.6292,0.4732,0.3658,0.444,0.7024,0.8926,0.8488,0.6244,0.4098,0.3464,0.2732,0.3464,0.4732,0.6634,0.7658,0.7658,0.5122,0.3024,0.1658,0.1756,0.122,0.2244,0.239,0.3024,-0.3302,0.0048,0.3732,0.3684,0.6124,1,0.9426,0.6746,0.5264,0.4976,0.3876,0.3876,0.488,0.6124,0.6842,0.4784,0.2296,-0.043,-0.1722,-0.024,0.201,0.4594,0.6508,0.6794,0.4162,0.0766,-0.1626,-0.134,-0.0144,0.043,0.024,0.024,-0.075,0.4834,0.4654,0.6156,0.7718,0.7838,1,0.6696,0.3214,0.033,-0.1412,0.1232,0.1772,0.3514,0.5916,0.3754,-0.3334,-0.4354,-0.003,-0.021,0.2492,0.1652,0.3154,0.5736,0.4714,0.087,-0.003,-0.069,-0.1412,-0.1412,-0.2132,-0.2732,-0.35,-0.1,0.45,0.55,0.75,1,0.8,-0.05,0.15,0,-0.05,0,0.05,0.4,0.55,0.8,0.85,0.65,0.4,0.4,0.45,0.65,0.65,0.55,0.6,0.45,0.2,0.25,0.05,0.15,0.2,0.2,-0.421,0.1052,0.3158,0.4736,0.421,1,0.6842,0.0526,0.1052,-0.0526,-0.1052,-0.2106,0,0.3684,0.3158,0.579,0.7368,0.579,0.3684,0.421,0.3158,0.3158,0.5264,0.6316,0.6842,0.3158,-0.1052,-0.421,0.1052,0.2106,0.1052,-0.0526,-0.3954,-0.093,0.2558,0.3024,0.6512,1,0.8604,0.6744,0.5814,0.4418,0.4418,0.4186,0.5814,0.6744,0.814,0.4418,0.3256,0.0466,-0.0698,0.186,0.3488,0.5116,0.6976,0.6976,0.3488,0.186,-0.1162,0,-0.1628,0.0466,0.1628,0.0466,-1,-1,-1,-1,-1,-1,-1,-0.9758,-0.9836,-0.933,0.1498,0.3318,0.5524,0.8728,0.9002,0.752,0.5864,0.5238,0.5534,0.4876,0.1914,-0.118,-0.785,-0.9528,-0.9626,-0.9748,-0.9682,-0.9692,-0.966,-0.9648,-0.9736,-0.967,-0.9758,-1,-1,-1,-1,-1,-1,-1,-0.9834,-0.9822,-0.8808,0.11,0.17,0.3996,0.729,0.7764,0.9062,0.9508,0.867,0.81,0.443,-0.155,-0.4672,-0.8348,-0.7748,-0.8116,-0.76,-0.6576,-0.573,-0.4628,-0.429,-0.4836,-0.5428,-0.5316,-1,-1,-1,-1,-1,-1,-1,-0.9696,-0.97,-0.8168,-0.5468,-0.7768,-0.7468,-0.6434,-0.6834,-0.6734,-0.7368,-0.7368,-0.7368,-0.7268,-0.7768,-0.703,0.15,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-0.1714,-0.3142,1,1,-0.1714,-0.9428,-0.8858,-0.8,-1,-1,-1,-0.8,-0.3428,0.0858,1,1,0.9714,-0.8,-0.7142,-0.6286,-0.6858,-0.8286,-0.8858,-0.9428,-0.9142,-0.9428,1,1,1,1,1,1,1,1,1,1,-0.2534,-0.2792,-0.298,-0.2828,-0.2696,-0.2784,-0.2872,-0.3218,-0.4412,-0.57,-0.4266,-0.3294,0.2832,0.1406,0.1812,0.298,0.4,1,-0.2,0.0222,0.3334,0.4,0.2666,0.0888,0.0666,0.4444,0.4666,0.3334,0,0.4888,0.6222,0.5556,0.5112,0.6666,0.9334,1,1,0.9112,0.8222,0.6222,0.3556,0.1334,-0.1778,-0.6888,-0.4,-0.3778,-0.4444,-0.2888,-0.4222,-0.5334,0.1446,0.4842,0.7484,0.6478,0.434,0.2578,0.2076,0.7862,0.8364,0.673,0.6352,1,0.9496,0.673,0.6856,0.8114,0.8868,0.9496,0.7736,0.5974,0.585,0.3334,0.1572,-0.1698,-0.4466,-0.6352,-0.2578,-0.1824,-0.2704,-0.3334,-0.2202,-0.3082,0.0946,0.4594,1,0.9594,0.3244,0.0946,0.2838,0.4864,0.3514,0.4324,0.5676,0.7702,0.7702,0.473,0.3514,0.5136,0.8918,1,0.919,0.6756,0.5946,0.5406,0.3244,-0.1352,-0.5,-0.4864,0,0.0406,-0.027,0.0136,-0.0136,-0.473,0.5514,-1,-1,1,-0.6,-1,-1,-0.7334,-1,-0.7046,-0.6364,-0.6364,-0.3978,-0.2386,-0.1364,-0.0228,-0.0682,-0.1818,0,0.1022,0.1022,0.1932,0,0.1022,0.4204,0.4204,0.3636,0.375,0.6704,0.5,0.5682,0.6478,0.7272,0.9432,0.9432,0.9886,1,0.9318,0.7728,0.7386,0.284,'19'
-0.3676,-0.1452,0.3334,0.51,0.8632,1,0.527,0.0884,-0.037,-0.0142,-0.2022,0.0028,-0.0086,0.1226,0.3676,0.6582,0.6354,0.47,0.2764,0.3276,0.4246,0.6068,0.641,0.6182,0.3618,0.2022,0.0998,0.1054,0.0028,0.2878,0.282,0.5042,-0.359,-0.1276,0.276,0.4718,0.816,1,0.632,0.086,0.0208,-0.1514,-0.3946,-0.1928,-0.1038,0.0386,0.2938,0.3768,0.2818,0.0682,0.098,0.1336,0.264,0.5786,0.5074,0.2938,0.1038,-0.0742,-0.0624,-0.0208,-0.1394,-0.0682,-0.003,0.0504,-0.385,0,0.292,0.4348,0.8634,1,0.7578,0.4472,0.174,-0.031,0,0.1552,0.1428,0.2982,0.41,0.3168,0.2732,0.0622,-0.0684,-0.118,0.0248,0.2982,0.3976,0.2546,0.0062,-0.205,-0.2112,-0.3416,-0.323,-0.354,-0.3478,-0.149,-0.3642,0.052,0.3122,0.3988,0.8498,0.948,1,0.6648,0.3468,0.0868,0.081,0.3988,0.5202,0.5722,0.7398,0.4278,0.1792,0.237,0.2312,0.2544,0.3758,0.4624,0.792,0.4972,0.2196,0.0694,-0.0636,-0.0636,-0.104,-0.0174,-0.0462,0.1618,-0.4082,0.0136,0.3096,0.3698,0.7918,0.9288,1,0.7424,0.5342,0.4356,0.2658,0.5068,0.578,0.7918,0.6768,0.474,0.2548,0.1672,0.178,0.2932,0.3316,0.6274,0.978,0.8904,0.5288,0.1616,0.1452,0.0466,0.0958,0.1398,0.1452,0.3096,-0.2908,0.0028,0.457,0.3906,0.7396,0.9944,1,0.9502,0.59,0.4238,0.3074,0.4072,0.4958,0.6842,0.6012,0.2854,-0.0084,-0.1524,0.0138,0.0304,0.1966,0.3684,0.5512,0.662,0.23,0.1468,-0.097,-0.1412,-0.2686,-0.3296,-0.1856,-0.0138,-0.0198,0.4802,0.5856,0.6052,0.4868,0.954,1,0.5,0.1382,-0.0066,-0.125,0.0264,0.0526,0.329,0.3356,0.1118,-0.1448,-0.3816,-0.296,-0.1776,-0.2236,-0.0856,0.1908,0.5986,0.5592,-0.1644,-0.1448,-0.4736,-0.3552,-0.2368,-0.2828,-0.3422,-0.2196,-0.0244,0.317,0.6098,0.9512,1,0.6098,0.2196,-0.2196,0.0244,-0.2196,-0.122,-0.0732,0.3658,0.561,0.8048,0.8048,0.4146,0.4146,0.317,0.6098,0.5122,0.8536,0.8536,0.317,0.2682,0.0732,0.0732,0.122,0.2682,0.3658,0.6586,-0.4736,0.1578,0.421,0.4736,0.9474,1,0.421,0.1052,0.2106,0.0526,-0.1052,0.1578,0.1578,0.1052,0.0526,0.7368,0.4736,0.4736,0.5264,0.421,0.4736,0.6842,0.6842,0.7894,0.6316,0.5264,0.421,0,0.3684,0.579,0.5264,0.7368,-0.36,0.0134,0.3866,0.4134,0.76,0.9466,1,0.8934,0.6266,0.44,0.3866,0.4666,0.5734,0.76,0.5466,0.3866,0.0934,0.0134,-0.0134,0.0666,0.3066,0.4934,0.68,0.8934,0.36,0.2534,0.12,0.0134,-0.0934,-0.0134,0.04,0.0666,-1,-1,-1,-1,-1,-1,-1,-1,-0.9786,-0.9664,-0.413,0.487,0.7542,0.8656,0.9758,0.7568,0.6146,0.6346,0.5768,0.4654,0.2022,-0.1578,-0.7756,-0.9476,-0.9624,-0.9664,-0.9664,-0.965,-0.9718,-0.9704,-0.9758,-0.9678,-0.965,-1,-1,-1,-1,-1,-1,-1,-1,-0.9822,-0.9762,-0.394,0.1068,0.3198,0.5554,0.2612,0.1212,0.3274,0.5242,0.5148,0.1788,-0.2348,-0.5814,-0.8382,-0.6566,-0.7714,-0.7508,-0.6418,-0.6176,-0.6034,-0.6176,-0.5974,-0.5162,-0.56,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.9334,-0.5834,-0.7134,-0.7134,-0.6468,-0.73,-0.7334,-0.7334,-0.64,-0.69,-0.7168,-0.7568,-0.663,0.09,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,-0.9142,-0.4572,-0.4858,-0.8286,-0.8,-0.9142,-0.6858,-0.2572,0.2286,0.7428,1,1,-0.4572,-0.7428,-0.6858,-1,-1,-0.9428,-0.9428,-0.8286,-0.7714,1,1,1,1,1,1,1,1,1,1,-0.1614,-0.123,-0.1718,-0.1978,-0.2476,-0.1796,-0.191,-0.3826,-0.5408,-0.5594,-0.4134,-0.3294,-0.3502,-0.1002,0.1494,0.2626,0.1342,1,-0.3764,-0.0322,0.4194,0.3978,0.1398,0.1182,0.3118,0.656,0.8064,0.742,0.828,0.957,0.8924,0.5914,0.5484,0.613,0.9354,1,0.914,0.8924,0.8494,0.7634,0.2904,-0.3548,-0.1398,0.0752,0.1828,0.3334,0.2474,0.2904,0.2688,-0.1612,0.4318,0.5682,0.7728,0.7272,0.2272,0.1818,0.3864,0.841,0.8864,0.6818,0.7272,1,0.6364,0.409,0.6818,0.591,0.7272,0.841,0.8182,0.8182,0.409,0.4546,0.2272,-0.341,-0.1818,-0.1818,0.2272,0.4318,0.1136,0.159,0.0682,-0.0228,0.1882,0.5446,1,0.9208,0.2278,0.1882,0.3664,0.7228,0.9802,0.5644,0.6238,0.8812,0.6832,0.3862,0.505,0.7624,0.802,0.6634,0.604,0.3268,0.2476,0.2476,0.0496,-0.406,-0.4258,-0.2476,-0.01,0.109,0.0892,0.0496,-0.109,-0.2278,-0.1028,-1,-1,1,-1,-1,-1,-0.8,-1,-0.8034,-0.8382,-0.6416,-0.6648,-0.5722,-0.3294,-0.2602,-0.237,-0.237,-0.0058,-0.1098,-0.1214,-0.0058,0.029,0.052,0.133,0.237,0.2832,0.1214,0.3872,0.3872,0.4798,0.6416,0.6532,0.7456,1,0.896,0.7688,0.792,0.6878,0.6764,0.2716,'19'
0.0772,0.7518,0.6908,0.8782,0.185,-0.377,-0.5316,-0.6628,-0.6722,-0.6206,-0.6722,-0.7846,-0.6018,-0.48,-0.3068,-0.363,0.0398,0.4098,0.5456,0.8782,0.822,0.5644,0.4052,0.5456,0.9344,1,0.9672,0.7798,0.7096,0.7612,0.7612,0.8032,-0.2256,0.191,0.5138,0.559,-0.2534,-0.4652,-0.6284,-0.6874,-0.7188,-0.5382,-0.6666,-0.6424,-0.4966,-0.5138,-0.4098,-0.1494,-0.0382,0.1736,0.6702,0.6944,0.8056,0.6424,0.5312,0.5416,0.75,0.875,1,0.9584,0.7812,0.8334,0.8194,0.7916,-0.2734,0.0932,0.492,0.508,-0.4244,-0.6656,-0.775,-0.8136,-0.7042,-0.611,-0.6334,-0.6946,-0.5916,-0.4888,-0.5242,-0.463,-0.119,0.1158,0.4888,0.9036,1,0.5338,0.4116,0.5112,0.7942,0.7332,0.9582,0.8168,0.8328,0.8136,0.611,0.5628,-0.2368,0.1724,0.43,0.4686,-0.2882,-0.459,-0.707,-0.6876,-0.723,-0.5942,-0.7004,-0.736,-0.5072,-0.417,-0.3398,-0.4976,-0.2432,-0.0724,0.5266,0.7584,1,0.7616,0.4428,0.6038,0.5684,0.694,0.955,0.9034,0.6168,0.3848,0.3526,0.3656,-0.1244,0.3946,0.4486,0.5496,-0.1424,-0.2756,-0.5964,-0.7946,-0.8414,-0.8018,-0.8594,-0.7046,-0.654,-0.5784,-0.391,-0.5352,-0.5388,-0.128,0.3406,0.6288,0.964,1,0.4558,0.4198,0.6108,0.7298,0.7514,0.6036,0.3226,0.1784,0.1316,0.1244,0.2394,1,0.812,0.5982,0.265,-0.3206,-0.6026,-0.7692,-0.7308,-0.782,-0.7008,-0.718,-0.6924,-0.782,-0.7606,-0.5042,-0.6196,-0.5642,-0.265,0.1026,0.5042,0.5598,0.3462,0.2736,0.3804,0.5042,0.3632,0.0512,-0.0214,-0.1794,-0.1368,-0.235,-0.4128,0.7966,0.657,-0.6338,-0.6918,-0.5582,-0.7152,-0.7674,-0.593,-0.657,-0.9244,-0.5988,-0.4826,-0.3546,-0.186,-0.3546,-0.5058,-0.0814,0.378,0.6396,0.8604,0.7674,0.8954,1,0.971,0.8082,0.5756,0.5348,0.1802,0.0348,-0.2094,-0.1396,0.1428,0.8572,0.7858,0.3572,-0.4286,-0.6428,-0.7142,-0.7142,-0.4286,-0.2142,-0.2858,-0.5,-0.5,-0.2142,-0.1428,-0.2858,-0.7858,-0.2142,-0.3572,0.4286,0.3572,0.5,0.2858,0.2858,0.7142,1,1,0.7858,0.3572,0.7142,0.7858,0.4286,0.3514,1,0.8378,0.8918,0.6216,-0.027,-0.027,-0.1892,-0.4054,-1,-0.946,-0.5136,-0.5136,-0.1892,-0.2972,-0.4594,0.081,0.4054,0.5676,0.3514,0.3514,0.3514,0.3514,0.2972,0.6216,0.8378,0.7298,0.5136,0.2972,0.4594,0.5136,0.5676,0.2,0.7428,0.6286,0.8286,0.3142,0.0572,-0.2572,-0.2,-0.1714,-0.8286,-0.6858,-0.5142,-0.7714,-0.4,-0.2858,-0.2286,-0.4,0.0858,0.3142,0.7714,0.7428,1,0.8572,0.3428,0.6858,0.6,0.8286,0.7714,0.4,0.1714,0.3142,0,-1,-1,-1,-0.9622,-0.9064,-0.9132,-0.6326,-0.8776,-0.7416,-0.8642,-0.8664,0.6882,0.9622,0.8842,0.8308,0.666,0.4944,0.3452,0.236,0.2672,-0.1514,-0.7594,-0.9444,-0.931,-0.9532,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9622,-0.934,-0.7614,1,1,1,0.5078,-0.5756,-0.0636,0.7312,0.9132,0.949,0.7728,0.6314,0.256,-0.274,-0.3626,-0.555,-0.8444,-0.935,-0.9378,-0.9482,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9496,-0.9334,-0.8568,0.62,1,0.9432,0.8732,0.5266,-0.722,-0.528,-0.528,-0.454,-0.338,-0.37,-0.54,-0.922,-0.962,-0.904,-0.636,-0.81,-0.7068,-0.84,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4,-0.5142,1,1,1,-0.0286,1,1,1,0.7428,-1,-1,-1,-0.9714,-0.2858,0.2858,-0.2858,-0.4286,-0.1142,-0.6572,-1,-0.8858,-1,-1,-1,-1,-1,-1,-1,-1,-0.493,-0.4878,-0.4738,-0.4458,-0.418,-0.3948,-0.423,-0.4452,-0.4988,-0.4598,0.6882,0.6644,0.6996,0.706,0.7498,0.7766,0.8104,0.8604,0.9224,0.8154,-0.6,0.1764,-0.6342,-0.5804,-0.0976,-0.0128,0.3804,1,-0.8884,-0.6172,-0.5092,-0.435,-0.4238,-0.3458,-0.2788,-0.119,-0.0408,0.052,0.1784,0.5354,0.5464,0.3606,0.3494,0.5242,0.6506,0.974,1,0.8624,0.9182,0.8588,0.8476,0.7882,0.7026,0.8476,0.7806,0.7026,0.6208,0.446,0.3866,-0.026,-0.8558,-0.6594,-0.5752,-0.487,-0.507,-0.4428,-0.2786,-0.1824,-0.01,0.1544,0.2786,0.487,0.7556,0.5632,0.3146,0.3748,0.7274,0.9438,0.9278,0.8918,0.9158,1,0.9238,0.9238,0.7916,0.7074,0.8076,0.8036,0.7194,0.503,0.4028,0.3226,-0.6024,-0.4092,-0.4518,-0.2858,-0.2972,-0.363,-0.1814,-0.1042,0.1158,0.3282,0.3976,0.668,0.8378,0.6912,0.6912,0.6216,0.5714,0.6756,0.7876,0.8804,1,0.9922,0.919,0.637,0.5908,0.5212,0.7916,0.8494,0.5522,0.359,0.2008,-0.0232,1,-1,-1,1,-1,-1,-1,0.0334,-1,-0.1764,0.1058,0.3412,0.247,0.0588,0.3176,0.4352,0.5294,0.7648,0.647,0.4352,0.3176,0.9058,1,0.1294,0.5058,0.4118,0.3176,0.5058,0.4352,0.4352,0.2706,-0.4352,-0.6,-0.0352,0.247,0.0588,0.0352,0.1294,-0.0118,0.1294,-0.553,'20'
0.0794,0.5596,1,0.996,-0.254,-0.6468,-0.6388,-0.7698,-0.7064,-0.7896,-0.8016,-0.627,-0.5794,-0.4842,-0.0874,-0.0992,0.0674,0.4008,0.7936,0.8968,0.6944,0.5476,0.5596,0.5318,0.8374,0.8532,0.8492,0.754,0.6984,0.754,0.9564,0.869,0.0222,0.3482,0.9794,0.8628,-0.4408,-0.578,-0.7702,-0.9246,-0.6604,-0.6604,-0.6878,-0.9486,-0.4958,-0.4992,-0.386,-0.012,-0.132,0.1252,0.657,0.8114,0.897,0.403,0.259,0.4752,0.8216,1,0.9898,0.7702,0.5094,0.156,0.2762,0.3448,-0.036,0.3548,1,0.852,-0.5598,-0.7496,-0.8482,-0.8444,-0.8406,-0.9544,-0.9544,-0.8976,-0.909,-0.7648,-0.6204,-0.5636,-0.5408,0.1574,0.5256,0.9506,0.9392,-0.0588,0.036,0.556,0.7458,0.9886,0.814,0.5028,0.0094,0.2144,0.2714,0.3662,0.029,0.3846,1,0.877,-0.494,-0.7128,-0.8496,-0.9214,-0.8906,-0.9214,-0.9042,-0.9452,-0.747,-0.7812,-0.6308,-0.494,-0.4496,0.0018,0.518,0.788,0.8394,0.2342,0.2616,0.518,0.7744,0.6992,0.6512,0.1214,0.3128,0.3948,0.5042,0.4804,0.0598,0.4366,1,0.8978,-0.4402,-0.845,-0.9684,-0.9472,-0.6408,-0.8028,-0.7958,-0.8874,-0.8346,-0.8064,-0.6478,-0.5492,-0.5422,-0.1126,0.5492,0.5986,0.6514,0.1796,0.0846,0.1338,0.595,0.5,0.5528,0.3098,0.2606,0.3098,0.5212,0.4894,0.0834,0.6388,0.996,1,-0.2658,-0.7222,-0.7778,-0.9008,-0.7262,-0.7182,-0.877,-0.873,-0.9048,-0.6904,-0.5794,-0.3612,-0.0596,0.2738,0.4604,0.6706,0.6944,0.8572,0.9604,0.9286,0.869,0.7738,0.6786,0.6904,0.5912,0.5754,0.742,0.6072,0.0674,1,0.8404,0.4724,0.1248,-0.4274,-0.497,-0.6564,-0.726,-0.8324,-0.7178,-0.6482,-0.5214,-0.3906,-0.2474,-0.4314,-0.4396,-0.227,0.1412,0.1984,0.7668,0.8896,0.685,0.7874,0.7382,0.542,0.4888,0.5174,0.4356,0.1984,0.1492,0.0594,0.4348,0.8696,0.8696,0.7392,0.3914,-0.3478,-0.3044,-0.4348,-0.3044,-0.4782,0,0.1304,0.174,-0.087,0,0.0434,0.174,0.3914,0.6086,0.5652,0.3478,0.2608,0.3478,0.3478,0.3044,0.4348,0.5218,0.6956,0.7392,0.8696,1,1,0.15,0.55,0.75,0.8,0.1,-0.25,-0.2,-0.25,-0.45,-0.45,-0.65,-0.5,-0.2,0,0,-0.25,-0.05,0.5,0.75,0.85,0.65,0.35,0.3,0.8,1,0.95,0.9,0.7,0.5,0.5,0.75,0.75,0.1,0.6,1,0.9334,-0.2,-0.4666,-0.7,-0.6,-0.5,-0.4666,-0.6,-0.5,-0.6,-0.6666,-0.2666,-0.1666,0.1666,0.3,0.4334,0.6666,0.7666,0.8334,0.9,0.8666,0.7,0.5666,0.5,0.5334,0.3666,0.4334,0.7,0.5,-1,-1,-1,-0.9602,-0.9646,-0.7786,-0.9136,-0.876,-0.8914,-0.918,-0.8228,0.608,0.9292,0.949,0.9092,0.8538,0.805,0.6944,0.5726,0.4862,0.402,-0.1428,-0.9092,-0.949,-0.9534,-0.9512,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.939,-0.9376,0.525,1,1,0.4922,-0.2406,-0.6984,0.4688,0.7218,0.8282,0.8422,0.8546,0.836,0.6672,0.5218,0.689,0.3172,-0.1782,-0.7922,-0.8422,-0.8562,-0.8562,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-1,-0.23,0.96,0.9166,0.59,0.5566,0.0066,-0.7146,-0.6928,-0.7068,-0.6868,-0.6868,-0.715,-0.8018,-0.765,-0.5768,-0.9168,-0.775,-0.3134,-0.3834,-0.5368,-0.51,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,-0.3714,1,1,1,1,-0.9428,-0.9714,-1,-1,-1,-1,-0.9428,-0.4286,0.2,0.0286,-0.3428,-0.8286,-0.7714,-0.7428,-1,-1,-1,-1,-1,-1,-1,-0.5424,-0.5596,-0.5758,-0.5848,-0.6134,-0.6292,-0.6866,-0.7366,-0.7574,-0.7044,0.6852,0.685,0.6762,0.6542,0.6608,0.6448,0.6722,0.6914,0.7004,0.681,-0.4934,0.4118,-0.7984,-0.0296,0.4,0.611,0.636,1,-0.9592,-0.777,-0.5278,-0.513,-0.3532,-0.3234,-0.238,-0.0966,0.0334,0.1636,0.2566,0.4758,0.4386,0.3644,0.3754,0.7732,0.7806,0.9702,1,0.9926,0.9702,0.8588,0.6618,0.6506,0.58,0.606,0.591,0.394,0.3606,0.3458,0.0892,-0.093,-0.8754,-0.6886,-0.5018,-0.3184,-0.353,-0.4394,-0.2042,-0.0174,0.2492,0.3044,0.3494,0.737,0.8166,0.6262,0.3668,0.5606,0.91,1,0.7786,0.9238,0.865,0.7994,0.6782,0.7336,0.6436,0.7058,0.6574,0.5986,0.5432,0.3044,0.2596,-0.2042,-0.3892,-0.276,-0.2986,-0.2398,-0.4524,-0.3484,-0.1086,0.0136,0.0904,0.4162,0.543,0.742,0.828,0.742,0.4208,0.4208,0.8372,0.9096,0.7602,1,0.828,0.7964,0.7692,0.5702,0.5158,0.6924,0.724,0.4706,0.4072,0.38,0.2172,-0.0046,1,-1,-1,1,-1,-1,-1,0.1666,-1,-0.3928,-0.1964,-0.1072,-0.2322,-0.1072,-0.125,0.0358,0.2322,0.2142,0.3036,0.75,0.8214,0.9108,0.5178,0.3036,0.4108,0.7858,0.9286,0.4822,1,0.75,0.5358,0.1608,0.1608,0.1072,0.1428,0.5178,0.5892,0.0358,0.0178,0.0178,-0.25,'20'
0.2214,0.5246,1,0.8402,-0.6188,-0.7132,-0.5696,-0.6762,-0.7786,-0.8484,-0.9016,-0.7336,-0.7008,-0.6066,-0.4344,-0.3074,-0.1394,0.4344,0.586,0.7992,0.6066,0.6352,0.795,0.6762,0.4878,0.2172,0.1516,0.1476,0.045,0.1394,0.7254,0.6558,0.0826,0.4462,1,0.8388,-0.5826,-0.6446,-0.657,-0.7148,-0.938,-0.8306,-0.9462,-0.9256,-0.7644,-0.5702,-0.5166,-0.31,0.2024,0.595,0.6528,0.8224,0.6942,0.6818,0.314,-0.1034,-0.3636,-0.3182,-0.3472,-0.1364,-0.1116,-0.0538,0.1612,0.1528,-0.1866,0.4302,1,0.835,-0.163,-0.3634,-0.5952,-0.7132,-0.6856,-0.7604,-0.7054,-0.5128,-0.2966,0.0176,-0.002,0.0452,-0.1316,-0.3164,-0.1592,0.061,0.1394,-0.0334,-0.6306,-0.8232,-0.8114,-0.7878,-0.78,-0.6818,-0.3832,-0.2456,-0.2848,-0.5206,-0.1428,0.3664,1,0.8716,-0.0766,-0.2878,-0.3498,-0.3624,-0.5032,-0.3624,0.1428,0.2132,0.0186,-0.238,-0.4866,-0.59,-0.7226,-0.7226,-0.557,-0.1222,-0.1222,-0.0848,-0.6232,-0.7764,-0.8924,-0.9504,-0.8592,-0.7764,-0.7184,-0.913,-0.8882,-0.615,-0.0944,0.3356,1,0.951,-0.2098,-0.063,-0.1084,-0.056,0.1504,0.2552,0.1574,-0.1154,-0.1854,-0.2938,-0.4756,-0.5734,-0.6398,-0.7028,-0.535,-0.1818,-0.007,-0.014,-0.3076,-0.7972,-0.8672,-0.7762,-0.7728,-0.8112,-0.9476,-0.7938,-0.521,-0.3916,0.0204,0.483,0.9286,1,0.1768,-0.1904,-0.0374,0.262,0.4932,0.5102,0.204,-0.313,-0.4354,-0.568,-0.5238,-0.5204,-0.5544,-0.4796,-0.7074,-0.5578,-0.2414,-0.2518,-0.3606,-0.5578,-0.8062,-0.7142,-0.8232,-0.9728,-0.796,-0.7482,-0.5748,-0.4252,0.102,0.9592,0.8232,0.7052,0.288,-0.0204,-0.1428,0.3062,1,0.882,0.2834,0.1746,-0.025,-0.4784,-0.4286,-0.2926,-0.3288,-0.5556,-0.3288,-0.3922,-0.3832,-0.1474,-0.3334,-0.483,-0.542,-0.4512,-0.6054,-0.882,-0.6644,-0.6462,-0.6962,-0.7052,0.5358,0.7142,1,0.9286,-0.0714,-0.0358,0.0714,0.1072,0.1072,0.0358,-0.0358,0,0.0714,0.1072,0.1072,0.1786,0.3214,0.6428,0.7142,0.9286,0.8572,0.6786,0.7858,0.7142,0.7142,0.75,0.6786,0.6428,0.6072,0.3928,0.8214,0.7858,0.5,0.7308,1,0.8846,-0.077,-0.1154,-0.0384,-0.0384,-0.3462,-0.1924,-0.1154,-0.0384,-0.1154,0.077,0.077,0.077,0.1538,0.7308,0.7692,0.8846,0.6924,0.5384,0.8076,0.923,0.7692,0.4616,0.5384,0.5384,0.5384,0.577,0.8076,0.8846,-0.0304,0.2424,1,0.8484,-0.394,-0.4546,-0.7878,-0.7878,-0.6364,-0.8484,-1,-0.8788,-0.6364,-0.4242,-0.4242,-0.1516,0.4546,0.6666,0.7272,0.6666,0.697,0.6364,-0.1516,-0.3334,-0.394,-0.4848,-0.394,-0.0606,-0.0304,-0.0304,0.1516,0.091,-1,-1,-1,-1,-1,-1,-1,-0.983,-0.9784,-0.8088,-0.1582,0.0296,0.132,0.4608,0.9124,0.8408,0.587,0.5234,0.3856,0.0432,-0.3038,-0.6052,-0.9032,-0.9692,-0.9704,-0.9704,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9552,-0.9572,-0.2744,-0.0706,0.2158,0.326,0.6094,0.9214,0.822,0.5506,0.4802,0.3896,0.0746,-0.2892,-0.5,-0.848,-0.9076,-0.9234,-0.9254,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.9468,-0.5168,-0.74,-0.7934,-0.82,-0.83,-0.84,-0.844,-0.844,-0.868,-0.914,-0.91,-0.922,-0.904,-0.69,-0.8,-0.8434,-0.7468,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,-1,-0.6286,-0.6286,-0.6572,-0.7142,-0.8,-0.9714,-0.8286,-0.6286,-0.5714,-0.5714,-0.4572,-0.6,-1,-0.6286,-1,-1,-1,-1,-1,-1,-1,-0.8432,-0.786,-0.812,-0.824,-0.8502,-0.8528,-0.86,-0.745,-0.5886,-0.3002,0.5622,0.5226,0.5044,0.4696,0.4416,0.4244,0.2868,0.0452,-0.296,-0.4944,-0.48,0.153,-0.004,0.0616,0.1382,0.3112,0.509,1,-0.1572,0.0944,-0.371,-0.5472,-0.4466,-0.4842,-0.4842,0.0314,0.2956,0.5094,0.522,0.585,0.8364,0.5598,0.673,0.8742,1,0.9748,0.9874,0.7736,0.2578,-0.107,-0.283,-0.2704,0.2202,0.2704,0.283,0.2578,0.3082,0.4592,0.1698,-0.2328,0.7266,0.8418,0.3238,-0.0504,-0.0072,-0.482,-0.0792,0.1942,0.4676,0.7842,0.6402,0.6258,0.7842,0.5972,0.6546,0.9136,0.8992,0.8848,1,0.7698,0.2086,-0.223,-0.3382,-0.1942,0.0792,0.2518,0.2806,0.223,0.41,0.3382,0.1366,-0.151,0.5714,0.9082,0.4694,-0.1122,-0.296,-0.3674,-0.102,-0.0306,0.296,0.7244,0.6326,0.7448,0.7142,0.4082,0.3878,0.8266,0.9796,0.9694,1,0.6938,0.1122,-0.2448,-0.398,-0.4388,0.0102,0.204,0.2244,0.3062,0.2244,0.3266,-0.1938,-0.551,1,-1,-1,1,-0.6,-1,-1,-0.6666,-1,-0.068,0.1262,-0.2428,-0.1844,1,1,0.0098,-0.1068,0.0874,-0.1068,0.0292,0.1456,-0.3204,-0.4564,-0.2622,-0.2234,0.2622,0.0874,-0.1844,-0.2428,0.0292,0.0874,-0.0874,-0.1068,-0.068,-0.0292,0.1068,-0.0874,0.0098,0.2428,-0.068,-0.767,'21'
0.1286,0.7878,0.9322,0.7382,-0.5214,-0.6524,-0.8058,-0.851,-0.7878,-0.9052,-0.8466,-0.517,-0.4898,-0.6794,-0.4356,-0.3814,0.0384,0.2732,0.4312,0.3454,0.061,0.2416,0.395,0.4628,0.7608,0.7516,0.368,0.3544,0.4808,0.544,0.7426,1,0.0454,0.357,0.9488,0.8224,-0.6214,-0.7318,-0.9014,-0.9684,-0.7358,-0.8146,-0.8738,-0.7712,-0.5858,-0.566,-0.3096,-0.0572,0.3294,0.7672,0.9368,0.8068,0.8816,1,0.8462,0.6804,0.4832,0.3136,0.3136,0.3372,0.4478,0.566,0.858,0.8934,-0.1806,0.3204,1,0.903,-0.4564,-0.3942,-0.569,-0.798,-0.868,-0.701,-0.7088,-0.7554,-0.6156,-0.2622,-0.0252,0.398,0.5766,0.7476,0.7942,0.8136,0.8564,0.4758,0.0834,-0.2544,-0.235,-0.27,-0.27,-0.064,0.0368,0.2156,0.402,0.4486,-0.236,0.2958,1,0.925,-0.3446,-0.1574,-0.3034,-0.6104,-0.6554,-0.558,-0.3932,-0.1536,-0.0524,-0.0188,-0.221,-0.337,-0.3782,-0.4606,-0.2846,-0.0338,0.0562,-0.3334,-0.6404,-0.9514,-0.9288,-0.8164,-0.7004,-0.7416,-0.809,-0.7266,-0.4832,-0.1198,-0.0688,0.4312,1,0.8876,-0.0688,0.0254,-0.1558,-0.2356,-0.3188,0.087,0.087,0.0508,-0.326,-0.6376,-0.8442,-0.6992,-0.8116,-0.7572,-0.6666,-0.163,-0.2174,-0.4818,-0.8224,-0.8298,-0.6956,-0.9312,-0.8804,-0.8008,-0.971,-0.7392,-0.6196,-0.3768,0.0888,0.4334,1,0.974,-0.1444,0.0444,-0.0296,0.1334,0.4592,0.426,-0.2074,-0.4148,-0.5778,-0.5814,-0.4704,-0.563,-0.5888,-0.7074,-0.5962,-0.363,-0.3444,-0.3888,-0.5814,-0.7852,-0.6778,-0.6074,-0.6556,-0.8518,-0.863,-0.7518,-0.5962,-0.1888,0.3652,0.9772,0.8904,1,0.1826,0.0046,0.0548,0.2968,0.548,0.9132,0.6028,0.064,0.064,-0.1964,-0.0456,-0.1598,-0.3242,-0.3698,-0.347,-0.4018,-0.2284,-0.1736,-0.2648,-0.5526,-0.5022,-0.548,-0.8402,-0.7032,-0.7214,-0.6666,-0.5754,-0.42,0.2432,0.8378,0.7838,0.6756,0.1352,-0.1352,-0.4054,-0.5676,-0.2972,-0.2432,-0.1892,-0.027,-0.1352,-0.4594,-0.081,0.027,0.3514,0.6756,0.6756,0.4594,-0.027,0.2432,0.3514,0.4054,0.8918,0.946,0.7838,0.5136,0.6756,0.7838,0.7298,1,0.3334,1,0.8888,0.5,0.0556,-0.3334,-0.7222,-0.5,-0.7778,-0.7778,-0.7778,-0.1112,0,-0.1112,-0.3334,0,0.3888,0.5556,0.6112,0.5,0.4444,0.5556,0.4444,0.7222,0.8334,0.9444,0.6666,0.6112,0.7778,0.7778,0.9444,0.9444,-0.2394,0.2112,1,0.9154,-0.2958,-0.2394,-0.4084,-0.5492,-0.6338,-0.5774,-0.4648,-0.4084,0.0704,0.493,0.4648,0.183,0.0704,-0.0422,-0.014,0.2958,0.3522,0.0986,-0.7464,-0.7184,-0.7464,-0.6056,-0.4366,-0.4084,-0.5212,-0.4366,-0.2958,0.014,-1,-1,-1,-1,-1,-1,-1,-1,-0.9778,-0.9838,-0.811,-0.4674,-0.1612,0.0976,0.4998,0.913,0.896,0.524,-0.0228,-0.239,-0.3886,-0.5826,-0.8242,-0.9566,-0.9686,-0.9666,-0.9718,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9646,-0.9694,-0.824,-0.4554,-0.1896,0.2152,0.7574,0.955,0.7936,0.3606,-0.1614,-0.343,-0.4666,-0.5888,-0.8,-0.9228,-0.9244,-0.9318,-0.939,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.9934,-0.8534,-0.8312,-0.8112,-0.7556,-0.6824,-0.832,-0.836,-0.836,-0.906,-0.916,-0.904,-0.978,-0.85,-0.7634,-0.71,-0.6334,-0.87,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6,-0.6572,1,1,-0.7142,-0.8,-0.7142,-0.4572,-0.0858,-0.6,-0.7142,-0.9428,-0.8858,-0.6286,-0.5428,-0.4858,-0.9714,-0.9428,-0.4572,-1,-1,-1,-1,-1,-1,-0.746,-0.7374,-0.7746,-0.788,-0.7794,-0.8328,-0.8388,-0.8342,-0.6602,-0.3478,0.6124,0.5888,0.6112,0.579,0.5626,0.5668,0.529,0.4606,0.0102,-0.3172,-0.4934,0.1294,-0.8,-0.6208,-0.4746,-0.363,-0.2956,-0.4334,-0.0606,0.106,0.5606,0.6212,0.606,0.894,0.8788,1,0.8182,0.5304,0.5152,0.6666,0.591,0.6516,0.6212,0.6818,0.6212,0.3788,0.4696,0.409,0.4394,0.3484,0.5606,0.7272,0.2728,0.6516,0.4546,0.6364,0.3334,0.4394,-0.0454,-0.2122,0.141,-0.1946,0.0068,0.208,0.2886,0.208,0.7584,0.7182,0.5974,0.4228,0.4362,0.2886,0.2484,0.2484,0.557,0.4766,0.5436,0.1544,1,0.2752,0.3826,0.2348,0.5034,0.5302,0.3154,0.49,0.5436,-0.0336,0.5034,0.5838,-0.0068,-0.3154,0.4066,0.6374,0.1318,0.2088,0.1648,0.4836,0.4946,0.5054,0.2748,0.3736,0.3626,0.3076,0.1648,0.2968,0.2748,0.2418,0.4836,1,0.8682,0.5604,0.3186,0.2858,0.2968,0.3076,0.2638,0.3516,0.3296,0.1758,0.3406,0.2308,0.3516,0,-0.9904,1,-1,-1,-1,-1,-1,-1,-1,-0.091,0.1818,0.0182,0.1272,0.2728,0.8364,1,0.3636,0.0364,0.2182,0.3636,0.0728,0.2364,0.4182,0.3272,0.3454,0.6364,0.3636,0.2,0.4546,0.309,0.6,0.4546,0.2,0.3272,0.2728,0.1272,0.1454,0.2728,0.1454,-0.2546,-0.6546,'21'
-0.0174,0.3538,1,0.9606,-0.1528,-0.345,-0.3362,-0.8558,-0.703,-0.6724,-0.9564,-0.6812,-0.559,-0.4542,-0.2794,-0.0918,0.2228,0.5982,0.821,0.8122,0.6856,0.5764,0.738,0.655,0.4366,0.3974,0.3188,0.2052,0.2402,0.4192,0.5066,0.7206,-0.1018,0.2694,1,0.956,-0.4252,-0.3532,-0.4012,-0.549,-0.7446,-0.7406,-0.8562,-0.996,-0.509,-0.2654,-0.5768,-0.2534,-0.014,0.1776,0.6168,0.8802,0.6408,0.2056,0.501,0.5968,0.6168,0.8044,0.6686,0.6288,0.3572,0.517,0.5888,0.4252,-0.1524,0.2026,0.9916,0.9458,-0.4822,-0.57,-0.6076,-0.57,-0.7454,-0.8162,-0.9206,-0.8246,-0.716,-0.5156,-0.3696,-0.3862,-0.165,0.236,0.5198,0.7996,0.8456,0.8372,0.474,0.7494,0.7996,1,0.9498,0.9792,0.737,0.7494,0.787,0.7746,-0.238,0.1644,0.675,0.6944,-0.3578,-0.6248,-0.706,-0.6906,-0.7292,-0.6132,-0.7794,-0.733,-0.5628,-0.497,-0.5358,-0.3462,-0.029,0.0716,0.4622,0.8182,0.9304,0.8028,0.6674,0.7138,1,1,0.9806,0.8104,0.7254,0.6906,0.6286,0.497,-0.2596,0.1558,0.3702,0.4394,-0.1764,-0.2872,-0.6816,-0.7058,-0.6886,-0.571,-0.7058,-0.7508,-0.4084,-0.4532,-0.398,-0.353,-0.2526,0.0138,0.3392,0.5744,1,1,0.6228,0.6124,0.7924,0.91,0.7994,0.6506,0.4048,0.346,0.353,0.3184,-0.0342,0.5172,0.4666,0.6396,0.254,0.0558,-0.3622,-0.4378,-0.4558,-0.6036,-0.6216,-0.5244,-0.5136,-0.319,-0.272,-0.2216,-0.0774,0.1352,0.427,0.6828,0.9568,1,0.9748,0.8306,0.9712,0.9136,0.791,0.5712,0.4342,0.2612,0.2972,0.2792,0.1016,1,0.939,0.878,0.7154,-0.2642,-0.504,-0.63,-0.8374,-0.687,-0.752,-0.5406,-0.5162,-0.6178,-0.5326,-0.443,-0.2886,-0.1464,0.0326,0.252,0.443,0.5772,0.561,0.6666,0.7074,0.691,0.63,0.374,0.2276,0.1586,0.0934,-0.0366,0.2094,0.4418,0.6744,0.6744,0.1162,-0.1628,-0.1628,-0.4418,-0.3954,-0.3024,-0.4884,-0.2558,-0.1628,-0.2558,0.1162,0.3024,0.4418,0.6744,0.7674,1,0.907,0.6744,0.4884,0.3488,0.3954,0.1628,0.2094,0.2094,0.2558,0.3954,0.3488,0.3954,0.2,0.7334,1,0.9556,0.0666,0.0222,-0.0222,-0.4222,-0.1112,-0.1556,-0.5556,-0.0222,-0.0222,-0.2,0.2444,0.3778,0.3778,0.7778,0.9112,0.9556,0.9556,1,0.9112,0.8222,0.6444,0.5556,0.3334,0.5112,0.4666,0.6,0.6444,0.7334,-0.3488,0.0232,0.2094,0.3024,-0.1396,-0.3488,-0.7442,-0.8372,-0.8372,-0.6744,-0.7442,-0.7674,-0.3954,-0.4186,-0.372,-0.4652,-0.4186,-0.0698,0.093,0.4652,0.9302,1,0.4186,0.4418,0.6744,0.6046,0.6976,0.279,0.279,0.3024,0.2094,0.3256,-1,-1,-1,-1,-1,-1,-0.8438,-0.7566,-0.7602,-0.7444,-0.5206,0.7172,0.946,0.941,0.8206,0.5526,0.2674,0.0412,-0.1186,-0.1248,-0.0744,-0.2072,-0.775,-0.9288,-0.957,-0.9558,-0.9644,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8704,-0.8042,-0.6906,-0.64,-0.4692,0.4918,0.5626,0.52,0.516,0.6456,0.8462,0.93,0.5256,0.1326,-0.139,-0.3354,-0.7374,-0.8696,-0.8994,-0.8944,-0.9042,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9768,-0.9468,-0.8834,-0.7034,-0.6934,-0.7912,-0.8956,-0.8846,-0.8246,-0.769,-0.4712,-0.329,-0.2846,-0.5134,-0.889,-0.92,-0.47,-0.13,-0.2934,-0.3634,-0.4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,0.3428,1,0.4858,0.4,0.8286,-0.7428,-0.9142,-0.7428,-0.8286,-1,-0.7428,-0.6,-0.6286,0.3714,-0.2286,0.1142,-0.3142,-0.8286,-0.8,-0.8286,-1,-1,-1,-1,-1,-1,-0.497,-0.4504,-0.4346,-0.4268,-0.4292,-0.416,-0.4354,-0.447,-0.4686,-0.3518,0.28,0.3278,0.353,0.4156,0.4318,0.4504,0.4934,0.5698,0.7094,0.7996,-0.5866,0.047,-0.4538,-0.0584,0.5474,0.6874,0.6778,-0.625,0.3798,0.2714,-0.1628,0.1008,0.1628,0.2248,0.2868,0.628,0.7984,0.752,0.8294,0.5038,0.5348,0.69,0.6124,0.3954,0.8294,0.5968,0.5968,0.6124,0.876,0.8914,0.8604,0.8604,0.9534,0.7054,0.6124,1,0.6124,0.4574,0.4264,-0.0232,0.5254,0.4576,-0.1074,-0.243,-0.0508,-0.1752,0.1526,0.4576,0.6724,0.887,0.8644,0.5254,0.8192,0.7288,0.7176,0.3334,0.7062,0.7288,0.6498,0.6158,1,0.9662,0.887,0.5932,0.4916,0.8306,0.7288,0.582,0.3108,0.4238,0.4238,0.0282,0.5392,0.5944,0.2258,0.0506,-0.0138,0.0968,0.152,0.5668,0.8894,0.8342,0.9078,0.8342,0.7236,0.6682,0.6222,0.5392,0.6036,0.7236,0.917,0.9724,1,0.8986,0.7328,0.6222,0.6682,0.6314,0.6036,0.6222,0.3918,0.3918,0.0876,-0.0414,-0.201,-1,-1,1,0.2,0.2,-1,-0.5334,-1,0.0484,0.2258,-0.0806,0.1452,0.242,0.3226,0.3548,0.0968,0.113,0.9194,0.9032,0.7258,0.9516,0.8064,0.6612,0.613,0.5968,0.5,1,0.887,0.742,0.871,0.758,0.4678,0.129,0.3388,0.5484,0.7904,0.758,0.4032,0.1936,-0.2258,'22'
0.042,0.373,1,0.8102,-0.139,-0.5982,-0.9028,-0.8454,-0.7528,-0.819,-0.8984,-0.8234,-0.788,-0.563,-0.4084,-0.3112,0.0552,0.5012,0.6866,0.4526,0.5762,0.6778,0.3598,0.3554,0.4746,0.0376,-0.0376,-0.0508,-0.2582,-0.0332,0.2494,0.4878,0.0354,0.403,1,0.8162,-0.2986,-0.8456,-0.7454,-0.883,-0.7996,-0.9332,-0.9832,-0.8496,-0.6784,-0.6534,-0.4488,-0.3904,-0.2192,0.0522,0.5908,0.6576,0.428,0.3236,0.1942,0.3946,0.62,0.7412,0.6326,0.3946,0.1732,0.0272,0.1148,0.0522,0.077,0.4372,1,0.8162,-0.6098,-0.6098,-0.726,-0.7786,-0.7298,-0.9174,-0.8348,-0.7486,-0.6172,-0.6736,-0.5498,-0.591,-0.1444,0.1444,0.347,0.6136,0.4334,0.3058,0.4258,0.3772,0.651,0.6848,0.606,0.3958,0.2758,-0.0506,0.0506,0.1632,0.1034,0.4368,1,0.885,-0.4176,-0.7586,-0.8888,-0.7854,-0.6206,-0.7892,-0.7586,-0.6666,-0.5364,-0.6016,-0.3794,-0.4482,-0.341,0.092,0.502,0.8774,0.8506,0.5556,0.3946,0.5556,0.659,0.839,0.5748,0.3602,0.2912,0.2644,0.3716,0.4368,0.0968,0.4652,1,0.9302,-0.186,-0.7016,-0.783,-0.7326,-0.4768,-0.5582,-0.655,-0.7636,-0.5968,-0.5116,-0.283,-0.1124,-0.0388,0.155,0.6782,0.938,0.9922,0.8838,0.8914,0.8954,0.8372,0.841,0.8062,0.7674,0.6938,0.6046,0.5736,0.6628,-0.0578,0.4492,0.7246,0.7804,-0.2376,-0.541,-0.6846,-0.7366,-0.7406,-0.7524,-0.6408,-0.6606,-0.8364,-0.8762,-0.7046,-0.3732,-0.1696,0.1218,0.3612,0.6288,0.8324,0.996,0.8722,0.8444,1,0.96,0.7246,0.501,0.3932,0.2934,0.4052,0.473,0.138,0.9746,0.8514,0.6772,0.3588,-0.2866,-0.5032,-0.6602,-0.7154,-0.8216,-0.7324,-0.5584,-0.5498,-0.4862,-0.5116,-0.4862,-0.4608,-0.346,0.0744,0.4098,0.9576,0.9364,0.7708,0.6942,0.9746,1,0.5116,-0.0148,-0.2102,-0.0998,0.0574,-0.0022,0.1892,0.3514,0.7838,0.6756,0.2432,-0.3514,-0.8378,-0.5136,-0.2432,-0.3514,-0.4594,-0.2972,-0.2432,-0.1892,0.2972,0.1892,0.5676,0.7838,0.7298,0.4054,1,0.8918,0.4594,0.5136,0.2432,0.027,0.081,-0.2432,-0.2432,0.2432,0.6756,0.7298,0,0.6666,0.8666,0.5334,0.2,-0.5334,-0.6,-1,-1,-0.6,-0.6,-0.6666,-0.7334,-0.5334,-0.1334,-0.1334,0.0666,0.7334,0.8,0.8,1,1,0.6666,0.1334,0.2,0.2,-0.0666,-0.2,-0.1334,0.3334,0.5334,0.4666,0,0.5624,1,0.8124,-0.7812,-0.625,-0.7188,-0.7188,-0.5938,-0.7188,-0.7188,-1,-0.3438,-0.4376,-0.6562,-0.4376,0.0624,0,0.3438,0.6562,0.4688,0.2188,0.375,0.4376,0.625,0.75,0.5,0.375,0.0312,0.0312,0.1876,0.1562,-1,-1,-0.9672,-0.9622,-0.7652,-0.7242,-0.7274,-0.7356,-0.7308,-0.6748,-0.4318,0.5682,0.9262,0.5846,0.4466,0.3612,0.2906,0.3284,0.335,0.225,0.1674,-0.051,-0.6896,-0.9392,-0.9426,-0.9574,-0.9606,-1,-1,-1,-1,-1,-1,-1,-1,-0.9416,-0.9416,-0.7586,-0.6988,-0.6756,-0.6366,-0.5276,-0.2278,-0.1434,0.586,0.8832,0.5652,0.4394,0.4198,0.4224,0.4822,0.8534,0.7456,0.32,0.0746,-0.6638,-0.5108,-0.869,-0.8742,-0.8922,-1,-1,-1,-1,-1,-1,-1,-1,-0.9124,-0.9668,-0.86,-0.8,-0.68,-0.5,-0.2634,0.02,-0.1934,-0.802,-0.836,-0.772,-0.738,-0.712,-0.664,-0.708,-0.512,-0.596,-0.938,-0.904,-0.7134,-0.45,-0.6434,-0.6068,-0.7134,-1,-1,-1,-1,-1,-1,-1,-1,-0.5428,-0.0572,1,0.5428,-0.3428,-0.5428,-0.1714,-0.4286,1,0.9428,-0.6286,-1,-1,-0.9714,-0.9714,-1,-1,-0.7714,-0.2,0.0572,0.1142,-0.6286,-0.7428,-1,-0.1142,-1,-1,-1,-1,-1,-1,-0.7828,-0.788,-0.7848,-0.7926,-0.8088,-0.826,-0.799,-0.852,-0.8396,-0.7204,0.2668,0.288,0.3176,0.3408,0.4024,0.4442,0.5174,0.5846,0.6262,0.7184,-0.4666,0.1764,-0.2226,0.0344,0.425,0.8742,0.8922,-0.7834,0.7128,0.5572,0.2554,0.0948,0.1776,0.09,0.2068,0.4356,0.4356,0.3188,0.421,0.528,0.4842,0.5572,0.7226,0.7372,1,0.8588,0.6836,0.635,0.669,0.7566,0.7032,0.781,0.8832,0.7372,0.6254,0.6302,0.747,0.5572,0.4696,-0.0218,0.451,0.3638,-0.024,-0.2332,-0.1286,-0.037,0.0806,0.6776,0.586,0.5164,0.6688,0.9216,0.7124,0.8824,0.8562,0.7516,0.769,0.9652,0.9128,0.8344,0.9478,0.8214,0.804,0.865,0.9042,0.8692,0.9564,1,0.8474,0.6122,0.5774,0.0458,0.2612,0.1904,0.058,-0.1838,-0.1194,-0.2838,-0.0354,0.371,0.671,0.587,0.8258,0.7838,0.5936,0.571,0.4806,0.9612,1,0.7226,0.8226,0.8388,0.7064,0.671,0.6838,0.5646,0.6226,0.7032,0.7096,0.571,0.4806,0.4096,0.171,-0.0452,-0.7378,-1,-1,1,1,-1,-0.8,0.3666,-1,-0.5286,-0.3572,-0.4428,-0.3142,-0.3142,-0.2858,0.1142,-0.0286,0.3,0.9,0.9,1,0.7142,0.3858,0.2572,0.2714,0.3428,0.4,0.5,0.3714,0.3428,0.3,-0.0572,-0.1572,-0.2,-0.0286,0.0714,0.0858,0.1,-0.0142,0.0428,-0.1858,'22'
-0.1574,0.1844,0.6988,0.8984,1,0.9898,0.621,0.2082,0.1236,-0.3164,-0.4112,-0.3062,0.0356,0.0694,0.1608,0.2014,0.3096,0.2148,0.0152,-0.0254,0.2928,0.4552,0.6312,0.533,0.3808,0.2826,0.1776,0.2148,0.2082,0.2656,0.648,0.4788,0.011,0.373,0.9602,1,0.8984,0.9824,0.4922,0.2582,0.0772,-0.298,-0.1524,0.2142,0.3156,-0.0066,-0.1524,-0.2274,-0.086,-0.3818,-0.3378,0.0198,0.2672,0.0376,-0.32,-0.7528,-0.4084,-0.3818,-0.5276,-0.5452,-0.2318,0.0728,0.3156,0.223,-0.0802,0.4514,1,0.7426,0.0254,-0.097,-0.3544,-0.3924,-0.578,-0.8692,-0.7216,-0.6962,-0.3292,-0.2278,-0.1604,-0.1012,0.1562,0.114,-0.0718,0.0886,0.2448,0.1646,0.1392,-0.0042,0.0084,-0.2236,-0.27,-0.2406,-0.3164,-0.0844,0.2912,0.4556,0.1268,0.6452,1,0.7954,-0.0286,-0.2252,-0.3096,-0.4816,-0.6808,-0.8964,-0.7736,-0.5934,-0.5662,-0.498,-0.4406,-0.5034,-0.3752,-0.0886,0.2988,0.487,0.4898,0.0914,0.116,0.5388,0.6698,0.577,0.3698,0.3888,0.4242,0.5416,0.6698,0.7708,-0.0326,0.4936,1,0.836,-0.1626,-0.2674,-0.4568,-0.5672,-0.6974,-0.9858,-0.901,-0.635,-0.519,-0.7652,-0.5672,-0.471,-0.1598,0.2278,0.4908,0.6322,0.6182,0.5276,0.2306,0.0382,-0.007,-0.3126,-0.2758,-0.4002,-0.2588,0.0014,0.4512,0.4596,-0.2,0.317,1,0.9108,0.0246,-0.0892,-0.2862,-0.437,-0.7108,-0.8338,-0.6276,-0.2616,-0.0308,-0.0554,-0.0646,-0.1476,-0.1508,-0.2462,-0.1754,-0.0616,0.1354,0.1784,-0.1046,-0.6554,-0.8554,-0.8276,-0.9938,-0.9076,-0.9354,-0.8492,-0.5662,-0.277,-0.0776,0.6274,0.7888,1,0.5496,0,0.0962,-0.0838,-0.09,0.3602,0.3664,0.236,-0.149,-0.3074,-0.4596,-0.587,-0.4968,-0.6428,-0.767,-0.5466,-0.5808,-0.4504,-0.4844,-0.5746,-0.4844,-0.646,-0.8354,-0.8322,-0.7796,-0.6584,-0.7142,-0.4938,-0.1034,0.5862,0.862,1,0.6552,0.4482,0.0344,-0.0344,-0.3104,-0.6552,-0.6552,-0.2414,-0.0344,-0.0344,-0.1034,-0.5172,0.3794,0.4482,0.2414,0.2414,0.1034,0.1724,0.5172,0.6552,0.5862,0.1724,-0.1724,-0.1724,0.3794,0.5862,0.7242,0.5172,-0.1892,0.1352,0.6756,0.6216,1,0.6756,0.027,-0.027,-0.2432,-0.2432,-0.5136,-0.1352,-0.081,0.1892,0.4054,0.5676,0.4594,0.1352,0.1352,0.1352,0.3514,0.5676,0.5676,0.6756,0.5136,0.2432,0.4594,0.2432,0.1352,0.4054,0.6216,0.6216,-0.125,0.4376,1,0.375,-0.1876,-0.6876,-0.625,-0.125,-0.1876,-0.3124,-0.0624,0.1876,0.25,0.125,0.25,0.3124,0.5,0.1876,-0.375,0,0.1876,0.1876,0.1876,0.0624,-0.0624,-0.25,-0.1876,-0.1876,-0.5,0.25,0.125,0,-1,-1,-1,-1,-1,-1,-1,-0.935,-0.9682,-0.9696,-0.5176,0.6418,0.6434,0.408,-0.6838,0.4932,0.174,0.0382,0.5552,0.5524,0.5466,-0.1524,-0.8296,-0.8932,-0.9336,-0.9582,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9412,-0.9622,-0.857,0.3196,0.6194,0.7878,0.2504,-0.7062,0.1364,-0.1364,-0.2328,0.1468,0.138,0.0644,-0.3906,-0.7808,-0.8352,-0.9088,-0.9246,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8442,-0.9934,-0.83,0.4432,-0.7218,-0.7834,-0.8084,-0.8718,-0.8134,-0.8062,-0.857,-0.9108,-0.9232,-0.9108,-0.914,-0.7434,-0.6934,-0.7568,-0.78,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4286,-0.3428,1,1,1,-0.5428,1,1,1,-0.6858,-0.7142,-0.3428,-0.6,-0.6858,-0.3142,-0.5428,-0.8286,-0.8858,-0.5428,-1,-1,-1,-1,-1,-1,-1,0.7268,0.7786,0.8298,0.8726,0.9258,0.9504,0.8608,0.506,0.2612,0.0524,0.2714,0.174,0.1016,-0.0132,-0.1338,-0.231,-0.3644,-0.3888,-0.1588,-0.2548,-0.4266,0.5058,0.3152,-0.2074,0.6448,0.9342,0.7554,1,-0.5556,-0.0708,0.1112,0.2324,0.3536,0.394,0.5152,0.4344,0.4344,0.4142,0.5556,0.394,0.2526,0.4142,0.697,0.7778,0.7374,0.8586,0.7576,0.8586,1,1,0.697,0.7172,0.8384,0.7576,0.6364,0.798,0.798,0.1516,0.2526,-0.2122,-0.7576,-0.091,-0.1314,-0.192,-0.1112,-0.1314,-0.293,-0.0304,0.3738,-0.0102,-0.0708,0.091,0.293,0.2728,0.3536,0.3132,0.4344,0.6566,0.6768,0.798,1,0.7576,0.5556,0.7172,0.4344,0.5758,0.7576,0.596,0.4142,0.495,0.3132,0.1314,0.0578,0.124,-0.0578,-0.3058,-0.3058,-0.4546,-0.3884,-0.2892,0.091,-0.0744,0.1074,0.6528,0.7852,0.2892,0.1074,0.3554,0.8678,0.967,0.8842,0.967,1,0.5868,0.5702,0.4876,0.3224,0.405,0.405,0.4876,0.3058,0.3058,0.3884,0.2232,1,-1,-1,1,-1,-1,-1,-0.7666,-1,-0.151,0.0754,0.0566,0.3962,0.717,0.9434,1,0.5094,0.3962,0.3396,0.2264,0.1698,0.2642,0.415,0.2452,0.415,0.2076,0.3396,0.0378,0.0378,0.3018,0.2452,0.2452,-0.0566,-0.0378,0.2642,0.2076,0.151,0.1132,-0.0378,0.1132,-0.434,'23'
-0.1446,0.4968,1,0.7358,-0.2516,-0.9246,-0.629,-0.6478,-0.6856,-0.9622,-0.9434,-0.7296,-0.7106,-0.5032,-0.522,-0.5912,0.0126,0.3208,0.4528,0.327,0.3334,0.2202,0.3836,0.434,0.4654,0.2012,-0.1132,0.088,-0.0126,0.2516,0.4466,0.4968,0.0648,0.7118,1,0.4764,0.1764,-0.5942,-0.4118,-0.5236,-0.8824,-0.8176,-0.7,-0.7294,-0.547,-0.4588,-0.3294,-0.647,-0.3412,-0.0706,0.0352,0.1706,0.1058,0.1942,0.4412,0.5236,0.653,0.647,0.353,0.2176,0.1648,0.0942,0.4764,0.4824,0.0706,0.553,1,0.6294,0.1588,-0.4764,-0.6824,-0.7824,-0.8824,-0.8882,-0.7588,-0.6648,-0.6764,-0.747,-0.5824,-0.453,-0.2176,0.0588,0.253,0.4,0.7058,0.8,0.5882,0.4764,0.2706,0.147,0.0236,-0.1294,-0.2058,-0.0824,0.2352,0.3176,0.01,0.505,1,0.7822,0.3168,-0.292,-0.2822,-0.3168,-0.3514,-0.6386,-0.891,-0.9158,-0.4456,-0.406,-0.3514,0.0694,0.495,0.5248,0.5644,0.4802,0.4604,0.505,0.0594,-0.2476,-0.391,-0.3862,-0.5892,-0.3466,-0.1732,-0.0346,0.2326,0.0892,-0.0918,0.4384,1,0.7848,0.2808,-0.2598,-0.3544,-0.4908,-0.6482,-0.7796,-0.8792,-0.3858,-0.1496,-0.0552,0.0604,-0.2284,-0.1654,-0.2074,-0.1602,-0.1968,-0.1024,-0.3228,-0.5066,-0.6798,-0.6168,-0.8846,-0.8582,-0.7848,-0.6326,-0.538,-0.3228,-0.0552,0.0108,0.5244,1,0.9784,-0.1244,-0.119,-0.1406,-0.3892,-0.6378,-0.9136,-0.5514,0.119,0.319,0.0756,-0.4594,-0.6594,-0.9406,-0.6972,-0.7568,-0.6648,-0.681,-0.6324,-0.6702,-0.681,-0.9136,-0.719,-0.8,-0.8972,-0.746,-0.746,-0.8162,-0.3622,0.1634,1,0.7124,0.1046,-0.1634,-0.1568,-0.0522,-0.2026,-0.621,-0.3922,-0.4184,0.1242,-0.0196,-0.5816,-0.464,-0.5228,-0.3202,-0.3268,-0.6602,-0.4184,-0.2156,-0.2876,-0.7712,-0.647,-0.5882,-0.745,-0.5294,-0.5882,-0.5816,-0.536,-0.7778,-0.3464,0.2142,0.5,0.7858,0.5714,-0.2858,-0.2858,-0.1428,-0.2858,-0.4286,-0.1428,0.2142,0,-0.1428,0.0714,-0.0714,-0.2858,0.8572,0.9286,0.4286,-0.1428,0.6428,0.4286,0.3572,0.5714,0.2142,0.2142,-0.3572,0.0714,0.3572,0.9286,1,0,-0.0322,0.742,1,0.742,0.2258,-0.3548,-0.3548,-0.2258,-0.2258,-0.5484,-0.871,-0.5484,-0.1612,-0.1612,-0.3548,-0.2258,-0.1612,0.0968,0.5484,0.742,0.6774,0.8064,0.6774,0.3548,0.4838,0.3548,-0.0968,-0.1612,-0.2904,-0.2904,0.2258,0.3548,0.2602,0.6438,1,0.7534,0.3424,-0.315,-0.3698,-0.2328,-0.3698,-0.589,-0.5068,-0.0684,-0.1506,-0.315,-0.3698,-0.0684,0.041,0.2054,0.4794,0.5068,0.8356,0.726,0.6986,0.863,0.4246,0.2876,0.2054,0.0958,-0.1232,-0.1232,0.2876,0.589,-0.8502,0.3454,1,1,1,1,1,1,-0.2676,-0.5396,-0.717,0.62,0.7254,0.1956,0.1124,0.5424,0.8392,0.7864,0.6976,0.6144,0.14,-0.412,-0.8308,-0.939,-0.9418,-1,-1,-1,-1,-1,-1,-1,-1,-0.5072,1,1,1,1,1,1,1,-0.3438,-0.5812,-0.6662,0.6014,0.608,0.1332,0.1154,0.5632,0.8298,0.7222,0.5924,0.4536,0.0482,-0.4378,-0.785,-0.8634,-0.888,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,0.0366,-0.8168,-0.7934,-0.7434,-0.7234,-0.7834,-0.8734,-0.8834,-0.86,-0.8634,-0.8316,-0.85,-0.835,-0.82,-0.83,-0.89,-0.9,-0.885,-0.875,-0.9276,-0.9276,-0.8534,-0.88,-0.8868,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,0.7714,-0.4,-0.8,1,1,1,-0.6572,1,1,-0.7428,-0.8,-0.4572,-0.5714,-0.8572,-0.6572,-0.8,-0.7428,-0.7428,-0.7428,-0.7142,-0.8572,-0.2572,-1,-1,-1,-1,-1,-1,-1,-1,-0.51,-0.5018,-0.492,-0.5546,-0.5568,-0.5378,-0.5508,-0.5566,-0.5622,-0.3624,0.2936,0.3716,0.3926,0.4678,0.4988,0.4752,0.492,0.5384,0.3656,-0.2034,-0.4,-0.0942,-0.6998,-0.1244,0.7648,0.8948,0.7626,0.4166,-0.3454,0.2182,0.4546,0.509,0.5272,0.491,0.4728,0.3636,0.3454,0.2,0.3272,0.5636,0.6182,0.6546,0.7272,0.691,0.8364,0.8364,0.9636,1,0.9818,0.7272,0.4546,0.7454,0.7636,0.6364,0.6364,0.4546,0.2364,0.291,0.1272,-0.091,-0.3714,0.1572,0.2714,0.0428,-0.2572,-0.1858,-0.1,-0.1,0.2714,0.1286,0.1,0.5858,0.8286,0.3428,0.5142,0.6858,0.7572,1,0.8142,0.8,0.9142,0.8286,0.5858,0.6714,0.8,0.8142,0.6714,0.6572,0.4286,0.4428,0.1,-0.0286,0.5596,0.9266,0.7248,0.266,-0.1926,-0.0458,0.0276,0.0092,0.7798,0.1192,0.4312,0.9634,1,0.1926,0.3212,0.4496,0.9082,0.945,0.7614,0.1926,0.3394,0.4862,0.3944,0.4496,0.633,0.3212,0.5046,0.3394,-0.0276,-0.0276,-0.1926,-0.3028,1,1,-1,-1,-0.8,-1,-1,-0.7334,-1,0.4524,0.6666,0.1904,0.4524,0.1428,0.8096,0.8096,0.881,0.1666,0.5714,1,0.7142,0.3096,0.1904,0,0.3096,0.5,0.4048,0.4762,0.3334,0.619,0.5952,0.2858,0.1428,0,0.2858,0.5714,0.5,0.0238,-0.0238,-0.0714,-0.262,'23'
-0.305,0,0.2712,0.3136,0.8306,0.8984,0.5932,0.2034,0.195,-0.0508,0.017,0.0508,0.0424,0.2966,0.483,0.7712,0.8984,0.9152,0.5932,0.6356,0.5932,0.8644,1,0.8814,0.6016,0.4068,0.2372,0.305,0.1016,0.3644,0.483,0.4916,-0.3248,-0.0512,0.359,0.4786,0.6068,1,0.8548,0.1452,0.2052,0.0598,-0.0342,-0.0428,0.2478,0.359,0.5042,0.8462,0.7778,0.923,0.6324,0.4786,0.6154,0.7008,0.7692,0.812,0.5726,0.47,0.4102,0.3248,0.3248,0.376,0.5214,0.624,-0.3942,-0.073,0.2482,0.3722,0.73,0.9636,0.708,0.4088,0.3066,0.1022,0.0146,0.1094,0.2482,0.5036,0.6788,0.8248,1,0.876,0.6278,0.6862,0.6278,0.8176,0.8394,0.781,0.584,0.489,0.511,0.4672,0.4598,0.4452,0.5694,0.6058,-0.4126,-0.026,0.264,0.249,0.7992,1,0.829,0.6952,0.4498,0.1524,0.0112,0.1896,0.3086,0.4276,0.8216,0.7696,0.933,0.6356,0.5986,0.6432,0.6654,0.9406,0.8364,0.725,0.4646,0.3234,0.316,0.2566,0.249,0.3234,0.3978,0.2714,-0.3772,-0.1488,0.2942,0.2596,0.6886,0.8616,0.9792,0.8892,0.5364,0.2942,0.2526,0.3426,0.5364,0.7716,0.9792,1,0.647,0.5778,0.5778,0.6332,0.7924,0.6332,0.6402,0.3772,0.1904,0.1212,0.1418,0.0312,0.0934,0.1004,0.1972,0.308,-0.3062,0.0406,0.476,0.4318,0.594,0.9336,0.8598,0.941,0.6236,0.5572,0.3284,0.4982,0.6236,1,1,0.9484,0.6162,0.4686,0.5794,0.7564,0.6752,0.7416,0.4318,0.2916,0.203,0.0332,-0.1366,-0.011,-0.0628,-0.0258,0.1512,0.2988,-0.443,0.0684,0.3972,0.3334,0.178,0.2512,0.315,0.2694,0.1232,0.041,-0.1232,0.1872,0.4704,1,0.9178,0.516,0.3334,0.1964,0.2146,0.169,0.315,0.1142,-0.0868,-0.1872,-0.2876,-0.2968,-0.58,-0.5342,-0.8174,-0.1964,-0.1232,-0.0868,-0.4634,-0.1708,-0.1708,-0.122,0.5122,0.5122,0.2196,0.0732,-0.0244,-0.0244,0.122,0.122,-0.0732,-0.2682,-0.0244,0.4634,0.6586,0.6586,0.6098,0.6098,0.6586,0.9024,1,0.5122,0.2682,0.0732,0.1708,0.122,-0.4634,0.122,0.2682,0.0732,-0.3846,-0.077,0.282,0.3846,0.7436,1,0.7948,0.1282,0.077,-0.0256,-0.1794,-0.077,0.1282,0.3846,0.5384,0.7436,0.9488,1,0.5384,0.5384,0.4872,0.641,0.8462,0.7436,0.6924,0.4872,0.282,0.1282,0.1282,0.282,0.3846,0.5898,-0.3494,-0.0844,0.3494,0.253,0.6144,0.8796,0.9518,0.9518,0.5422,0.4216,0.4698,0.4216,0.5904,0.976,1,0.8314,0.735,0.4216,0.518,0.6868,0.735,0.735,0.3976,0.2772,0.1566,-0.0844,-0.2048,0.012,-0.012,-0.0362,-0.012,0.253,-1,-1,-1,-1,-1,-1,-1,-1,-0.9728,-0.9656,-0.331,0.3624,0.5512,0.5954,0.8198,0.9714,0.8356,0.5954,0.4124,0.208,0.0192,-0.5182,-0.937,-0.9528,-0.9656,-0.9642,-0.97,-0.8642,-0.9328,-0.9672,-0.9586,-0.8742,-0.9356,-1,-1,-1,-1,-1,-1,-1,-1,-0.981,-0.9788,-0.2106,0.2056,0.4562,0.5626,0.9004,0.817,0.834,0.5668,0.4852,0.229,-0.2214,-0.7168,-0.945,-0.9634,-0.9698,-0.978,-0.9774,-0.7822,-0.6966,-0.4134,-0.4964,-0.5622,-0.5546,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.8734,-0.6834,-0.455,-0.725,-0.635,-0.525,-0.645,-0.655,-0.68,-0.715,-0.624,-0.584,-0.648,-0.7468,-0.7868,-0.8534,-0.8134,-0.9334,-0.5368,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,-0.5714,-0.9142,-0.9142,-0.9714,-0.8858,-0.7714,-0.7142,-0.0286,1,1,1,-0.4286,-0.8286,-0.9428,1,1,1,0.2,-0.8572,-0.9428,-0.8572,1,1,1,1,1,1,1,1,1,1,-0.0234,-0.0492,-0.0492,-0.0542,-0.058,-0.0794,-0.08,-0.0948,-0.1524,-0.6318,-0.4666,-0.5648,0.1104,-0.1496,0.5194,0.435,0.4892,1,-0.32,-0.08,0.48,0.52,0.2,0.4,0.4,0.76,0.92,0.92,0.92,1,1,0.8,0.72,0.84,0.92,0.92,0.92,0.8,0.6,0.44,0.16,-0.28,0,0.16,0.36,0.4,0.36,0.28,0.2,-0.2,0.0204,0.0408,0.9388,0.9184,0.449,0.3062,0.347,0.6734,0.9592,0.9184,0.7756,1,0.9592,0.7142,0.4286,0.6326,0.898,0.8164,0.796,0.7142,0.3674,0.3062,0.1224,-0.3062,-0.0816,-0.0408,0.4286,0.4082,0.3062,0.3266,0.4694,0.1836,0.1304,0.413,0.9782,0.7608,0.1522,0.1522,0.1086,0.7392,0.8914,0.5652,0.587,0.8914,0.7174,0.5,0.4348,0.6304,0.9566,1,0.6086,0.413,0.5,0.1304,-0.2608,-0.2392,-0.2174,0,0.2608,0.3478,0.2608,0.3044,0.2826,0.0434,1,-1,-1,1,-1,-1,-1,-0.8334,1,-0.5288,-0.3448,-0.6896,-0.5518,-0.3908,-0.2528,-0.138,0.0804,-0.0344,0.0574,-0.0344,0.138,0.092,0.092,0.2184,-0.0114,0.2528,0.3448,0.4368,0.6092,0.4138,0.2988,0.4942,0.7932,0.931,1,0.7702,0.908,0.885,0.977,0.6552,0.2298,'24'
-0.3684,-0.0526,0.2712,0.5142,0.9758,1,0.6194,0.3198,0.0364,-0.1336,-0.1418,-0.1336,0.0932,0.085,0.3442,0.4818,0.7004,0.749,0.7408,0.5466,0.5546,0.5384,0.7894,0.9676,0.7328,0.3766,0.409,0.2308,0.166,0.5142,0.6032,0.6032,-0.4286,-0.1,0.1928,0.3572,0.9786,1,0.4572,0.3358,0.1714,0,0.0358,-0.2,-0.05,-0.1142,0.2358,0.2214,0.3142,0.4286,0.4142,0.2358,0.2286,0.2214,0.4358,0.4142,0.1858,0.0714,0.0928,-0.0286,0.1,0.1142,0.3,0.3786,-0.3864,0.0518,0.3228,0.3784,1,0.9442,0.8884,0.49,0.227,0.1872,0.1792,0.02,0.1714,-0.0518,0.6016,0.5856,0.5458,0.7132,0.4662,0.6254,0.6892,0.6016,0.9282,0.761,0.4502,0.267,0.0678,0.004,0.2112,0.227,0.1554,0.4024,-0.4454,0.0468,0.25,0.1562,0.8438,0.9454,1,0.3828,0.2812,0.211,0.1484,0.0782,0.2188,0.3594,0.789,0.6718,0.711,0.6954,0.5078,0.664,0.7032,0.7656,0.8672,0.5626,0.3672,0.375,0.2734,0.3046,0.2734,0.3126,0.3516,0.3828,-0.4392,-0.048,0.225,0.2398,0.7048,0.9558,1,0.5056,0.4096,0.2768,0.2324,0.3062,0.3948,0.727,0.9778,0.904,0.6826,0.4464,0.5572,0.5276,0.8376,0.8228,0.6014,0.4464,0.203,0.0922,0.0922,0.0406,0.0628,0.0848,0.2104,0.3726,-0.2644,0.1074,0.5702,0.5124,0.7768,0.9752,0.9338,0.8264,0.5124,0.2976,0.0826,0.3966,0.6612,0.9338,0.9422,1,0.5702,0.529,0.5868,0.6942,0.529,0.4298,0.3388,0.124,-0.0248,-0.1158,-0.3802,-0.033,-0.1074,0.0662,0.1322,0.124,-0.2688,0.1542,0.3832,0.2952,0.207,0.6564,0.4008,0.26,-0.2246,-0.3744,-0.1454,0.5682,0.533,0.771,1,0.8326,0.3128,0.2422,0.2776,0.3568,0.5506,0.3392,0.0838,-0.0838,0.0044,-0.392,-0.207,-0.1278,-0.0748,0.0044,0.2422,0.2422,-0.4358,-0.282,0.077,0.1794,0.8974,0.9488,0.641,0.1794,-0.0256,-0.2308,-0.0256,-0.0256,-0.077,0.282,0.3846,0.1794,0.8974,1,0.7436,0.6924,0.641,0.1794,0.8462,0.8974,0.4872,0.3846,0.4358,0.0256,0.4358,0.5898,0.7436,0.7948,-0.4286,0.0858,0.3142,0.4858,0.8286,0.8858,0.5428,0.3714,-0.2,-0.1428,-0.4286,-0.2,-0.0858,-0.0858,-0.0286,0.6572,0.6,0.9428,0.9428,0.1428,0.7142,0.4286,1,1,0.7714,0.5428,0.3142,0.4858,0.2,0.4286,0.2,0.3714,-0.3158,0.0526,0.4474,0.3684,0.7368,0.8948,1,0.5526,0.4474,0.3948,0.2106,0.3158,0.5,0.7106,0.921,0.9474,0.421,0.3948,0.3422,0.6052,0.579,0.5,0.3684,-0.0264,-0.1052,-0.5526,-0.2894,-0.1578,-0.3684,-0.2106,-0.2368,0.0264,-1,-1,-1,-1,-1,-1,-1,-1,-0.9746,-0.9692,-0.4622,0.3244,0.6522,0.9892,0.8984,0.7432,0.6616,0.4904,0.3592,0.105,-0.2,-0.6842,-0.9598,-0.9652,-0.9746,-0.9678,-0.9638,-0.905,-0.9572,-0.9652,-0.9638,-0.9678,-0.9666,-1,-1,-1,-1,-1,-1,-1,-1,-0.976,-0.9738,-0.0832,0.1618,0.3188,0.488,0.4726,0.5168,0.7794,0.938,0.6684,0.102,-0.4202,-0.7438,-0.961,-0.9684,-0.9696,-0.9728,-0.9504,-0.8136,-0.7052,-0.4886,-0.5916,-0.717,-0.7048,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.9334,-0.6068,-0.51,-0.6,-0.72,-0.745,-0.655,-0.64,-0.604,-0.68,-0.62,-0.608,-0.528,-0.8334,-0.74,-0.9068,-0.8668,-0.8968,-0.3068,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,-0.7428,-0.6572,-0.8572,-0.9714,-0.7714,-0.2858,0.3428,0.8,1,1,1,-0.1714,-0.9428,-0.9142,1,1,1,0.5714,-0.8286,-0.8286,-0.8858,1,1,1,1,1,1,1,1,1,1,0.1244,0.1244,0.1274,0.1234,0.147,0.1474,0.085,-0.0498,-0.0594,-0.5064,-0.3334,-0.5294,0.4036,0.2338,0.0956,0.3898,0.4944,1,-0.55,-0.1,0.25,0.35,0.25,0.3,0.5,0.8,0.9,0.95,0.95,1,1,0.9,0.8,0.9,0.95,0.95,0.95,0.9,0.75,0.6,0.4,-0.35,-0.2,-0.05,0,0.05,0,-0.05,-0.4,-0.55,-0.1376,-0.1376,0.578,0.578,0.0826,0.0826,0.2294,0.4312,0.9082,0.9082,0.578,0.9634,1,0.523,0.4496,0.6514,0.7064,0.7432,0.7432,0.7248,0.578,0.578,0.2478,-0.523,-0.3578,-0.211,-0.0458,0.1744,0.1926,0.0826,0.1376,-0.1376,0.2456,0.5088,0.5964,0.614,0.2808,0.1052,0.193,0.6316,0.807,0.7894,0.7192,0.807,0.8422,0.5438,0.7544,0.8596,0.7544,1,0.6842,0.5438,0.6666,0.5438,0.2106,0.0526,-0.1228,-0.0702,-0.035,0.2632,0.1754,0.2632,0.2632,0.1578,1,-1,-1,1,-1,-1,-1,-0.8334,1,-0.9024,-0.9146,-0.7318,-0.6464,-0.622,-0.5244,0,0.0366,-0.1708,-0.1098,0.0244,0.0732,-0.0122,0.0976,-0.0244,-0.0488,-0.0854,0.0244,0.2804,0.3536,0.3414,0.4146,0.8414,0.8658,1,0.8292,0.5488,0.939,0.9268,0.6464,0.5488,0.1342,'24'
0.1286,0.5108,1,0.8572,0.6286,0.1822,0.2036,0.1178,-0.2108,-0.7464,-0.5358,-0.5214,-0.5428,-0.5858,-0.4822,-0.5822,-0.6072,-0.5714,-0.7108,-0.5464,-0.7392,-0.7464,-0.7358,-0.8036,-0.8214,-0.7786,-0.7214,-0.825,-0.7,-0.6678,-0.8892,-0.9142,-0.126,0.2152,0.6482,0.8818,1,0.9528,0.8242,0.7296,0.6168,0.126,-0.0394,-0.1364,-0.3438,-0.6456,-0.5696,-0.6246,-0.6562,-0.643,-0.4094,-0.1076,0.0236,-0.2126,-0.5302,-0.7244,-0.6746,-0.8058,-0.7874,-0.7742,-0.9238,-0.79,-0.7664,-0.6772,-0.4454,-0.0088,0.2272,0.2824,0.6738,0.877,0.9674,0.852,1,0.8846,0.616,0.5232,0.1744,-0.1142,-0.1718,-0.2522,-0.4154,-0.4102,-0.483,-0.084,0.32,0.34,0.0238,-0.2272,-0.5056,-0.5106,-0.5658,-0.6462,-0.744,-0.5534,-0.576,-0.4154,-0.436,-0.0502,0.183,0.188,0.4988,0.8046,0.8898,1,0.8296,0.7994,0.8396,0.9122,0.6316,0.406,0.2482,0.0502,-0.0502,-0.0502,0.0176,0.1504,0.2958,0.4962,0.3834,0.1428,-0.1052,-0.3358,-0.3384,-0.376,-0.401,-0.3734,-0.2356,-0.0952,-0.4454,-0.1328,0.1186,0.161,0.4124,0.7414,0.8448,1,0.7932,0.6334,0.5582,0.6216,0.7768,0.7556,0.7532,0.4876,0.215,0.0482,0.1634,0.3444,0.4594,0.5488,0.3772,0.1304,-0.0882,-0.2738,-0.2432,-0.1728,-0.2362,-0.1728,-0.0764,-0.0458,-0.2942,0.0448,0.4482,0.4342,0.7508,0.8432,1,0.7058,0.619,0.4146,0.1932,0.2746,0.3754,0.4986,0.6078,0.6974,0.6554,0.549,0.4622,0.5378,0.5966,0.6862,0.7536,0.6554,0.577,0.2464,0.1596,0.0532,0.014,0.1848,0.14,0.1624,0.0298,0.5868,0.7902,0.8592,0.809,0.6838,0.5586,0.086,-0.2394,-0.471,-0.4774,-0.4242,-0.3052,-0.2176,-0.058,0.0266,0.1768,0.3646,0.4304,0.6276,0.7966,0.737,0.737,1,0.9124,0.4334,0.4148,0.2926,0.1674,0.2238,0.158,0.0516,0.1612,0.871,1,0.9354,0.613,0.1612,0.2904,0.2904,-0.2258,-0.4838,-0.0322,0.1612,0.0322,0.2258,0.2904,-0.1612,-0.1612,-0.5484,-0.0968,-0.0322,-0.1612,-0.2904,-0.0322,-0.0968,-0.2258,-0.0968,-0.2258,-0.3548,0.0968,-0.0968,-0.1612,-0.0322,0.4666,1,0.8666,0.9334,0.8,0.6,0.4666,0.4,0,-0.5334,-0.2,-0.4666,-0.3334,-0.2666,-0.6,-0.2666,0.1334,0.2,-0.0666,-0.0666,-0.1334,-0.4,-0.7334,-0.8666,-0.1334,-0.3334,-0.6,-0.4,-0.4666,-0.1334,-0.1334,-0.4666,-0.2772,0.1084,0.3976,0.5662,0.8072,1,0.976,0.8072,0.8554,0.3254,0.2048,0.0844,-0.1566,-0.229,-0.4458,-0.5422,-0.3976,-0.3976,-0.3254,-0.0602,0.1566,-0.0362,-0.1808,-0.3734,-0.4458,-0.518,-0.6868,-0.6144,-0.9518,-0.5662,-0.518,-0.4216,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9658,-0.8842,-0.513,-0.0112,0.9318,0.8486,0.66,0.467,0.363,0.2918,0.1894,0.0854,-0.118,-0.7224,-0.9272,-0.9436,-0.9614,-0.9584,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9746,-0.9498,-0.8162,-0.567,0.2774,0.7382,0.7496,0.7506,0.8902,0.6086,0.0286,-0.4084,-0.5724,-0.844,-0.9226,-0.915,-0.9414,-0.9534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.88,-0.8954,-0.8448,-0.7586,-0.68,-0.6648,-0.6662,-0.6872,-0.7244,-0.8086,-0.8846,-0.8474,-0.7444,-0.3744,-0.4812,-0.4478,-0.5812,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,-0.3714,-0.3428,-0.0286,0.4,-0.5428,-0.6286,-0.6858,-1,-0.8572,-0.5142,-0.5428,0.1714,-0.0572,-0.8286,-0.8572,-0.7428,-0.6,-1,-1,-1,-1,-1,-1,0.1362,0.172,0.2008,0.253,0.2852,0.398,0.5896,0.8008,1,1,-0.508,-0.4954,-0.4992,-0.4928,-0.4852,-0.4708,-0.481,-0.5298,-0.6732,-0.627,-0.3334,0.6236,-0.9544,-0.8594,-0.8336,-0.8034,-0.8092,-1,0.1882,0.0694,0.8614,0.7228,0.7228,0.9604,1,0.604,0.5248,0.307,0.802,0.7624,0.703,0.901,0.8614,0.3862,0.2674,0.4258,0.505,0.5446,0.3664,0.4852,0.5644,0.3268,-0.1486,-0.2476,0.5446,0.6634,0.6634,0.2476,-0.01,-0.406,0.1892,0.4414,0.6936,0.4774,0.5856,0.8018,0.4954,0.5316,0.8018,0.6396,0.6216,0.8918,0.8198,0.8378,1,0.8378,0.7658,0.4414,0.4774,0.3154,0.6576,0.6576,0.4234,0.2972,0.8198,0.6216,0.6216,0.6936,0.2612,0.099,-0.2612,-0.6576,0.3186,0.5704,0.3334,0.6888,0.6296,0.7334,0.763,1,1,0.363,0.8074,0.7926,0.7334,0.8518,0.5556,0.526,0.8518,0.7334,0.5556,0.3778,0.8666,0.6592,0.7926,0.6592,0.3038,0.2888,0.3482,0.0814,0.2444,0.3778,0.6444,-0.0518,-0.997,1,-1,-1,-1,-1,-0.8,-1,-1,-0.3566,-0.4782,0.113,0.3218,0.2522,0.026,0.4956,0.513,0.6,1,0.8434,0.6174,0.9304,0.6522,0.5478,0.6522,0.8956,0.826,0.7914,0.6348,0.7392,0.6174,0.8782,0.6348,0.4782,0.4956,0.5478,0.8782,0.8434,0.3566,0.2174,-0.2522,'25'
0.2608,0.6464,1,0.8714,0.6822,0.2858,0.0536,0.0392,-0.1142,-0.6536,-0.7608,-0.4892,-0.4892,-0.5928,-0.6608,-0.6572,-0.625,-0.6036,-0.6464,-0.6428,-0.4572,-0.5714,-0.8678,-0.9786,-0.6822,-0.675,-0.9286,-0.8286,-0.8608,-0.825,-0.7,-0.7358,-0.076,0.174,0.6414,0.9646,1,0.913,0.8316,0.712,0.5598,0.2554,-0.0652,-0.424,-0.5788,-0.6386,-0.625,-0.7146,-0.769,-0.8696,-0.6548,-0.3396,-0.0108,-0.0788,-0.5054,-0.7038,-0.8206,-0.9184,-0.9104,-0.8804,-0.8804,-0.799,-0.7202,-0.6712,-0.386,-0.0402,0.1716,0.2494,0.579,0.799,0.8982,1,0.8472,0.7158,0.5656,0.0992,-0.1528,-0.303,-0.437,-0.4906,-0.5764,-0.823,-0.622,-0.4906,-0.201,0.2198,0.2306,-0.0268,-0.4076,-0.5924,-0.7534,-0.6112,-0.6032,-0.5764,-0.4772,-0.5656,-0.4132,-0.071,0.1474,0.1236,0.4078,0.7684,0.9106,1,0.8606,0.8132,0.6684,0.6132,0.1422,0,-0.1632,-0.2552,-0.3368,-0.4264,-0.4026,-0.2394,-0.1736,-0.0394,0.1078,0.1552,-0.129,-0.4,-0.5158,-0.5816,-0.5764,-0.4552,-0.3816,-0.3684,-0.4378,-0.1196,0.0802,0.1024,0.3218,0.7114,0.8176,1,0.8274,0.6498,0.6252,0.6818,0.6918,0.4452,0.2774,0.1394,-0.0924,-0.0876,0.0136,0.0654,0.1196,0.275,0.4748,0.2306,0.0678,-0.0332,-0.2282,-0.2404,-0.27,-0.1566,-0.1246,-0.048,-0.3342,-0.0014,0.2532,0.207,0.5716,0.9102,1,0.7482,0.4588,0.2532,0.0506,0.2648,0.4182,0.5166,0.5804,0.5572,0.2446,0.2214,0.4906,0.453,0.3778,0.3198,0.5862,0.505,0.2474,0.1578,-0.0824,-0.152,-0.317,-0.1346,-0.0882,-0.0332,0.165,0.7242,0.8368,0.7786,0.8446,0.7398,0.5612,0.1572,-0.1534,-0.3942,-0.7748,-0.2776,-0.1844,-0.1728,-0.0834,-0.1456,0.2156,0.6194,0.9962,1,0.8564,0.7708,0.7166,0.7514,0.833,0.8718,0.2466,0.231,-0.0058,-0.301,-0.0446,0.0214,0.5,0.75,1,0.8124,0.4376,0.4376,0.1876,0.625,0.5,0.1876,0.3124,0.625,0.5,0.4376,0.4376,0,0.1876,0.4376,0.4376,0.25,0.4376,0.4376,-0.1876,0,0.0624,0.3124,0.375,0.25,0.5624,0.5,0.1876,0.3124,0.5676,1,1,0.946,0.7838,0.7838,0.6756,0.5676,0.4594,0.027,-0.1892,-0.081,0.027,-0.1352,-0.2432,0.1352,0.1892,0.081,0.3514,0.2432,0.081,0.1892,-0.5676,-0.081,0.1892,0.1892,-0.081,0.1892,0.1892,0.1892,0.081,-0.2972,-0.1464,0.0488,0.4146,0.561,0.8536,0.878,1,0.8536,0.7318,0.561,0.1952,-0.1952,-0.317,-0.317,-0.2926,-0.5854,-0.6098,-0.7074,-0.3658,-0.0732,0.3414,0.2196,0,-0.3414,-0.6342,-0.7074,-0.561,-0.4146,-0.4146,-0.4878,-0.4634,-0.4146,-1,-1,-1,-1,-1,-1,-1,-1,-0.973,-0.9806,-0.8892,-0.558,0.1766,0.5502,0.299,-0.0296,-0.1444,-0.1096,-0.1508,-0.2512,-0.3544,-0.4794,-0.7396,-0.906,-0.9626,-0.9794,-0.9756,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9692,-0.9736,-0.9186,-0.7078,-0.1246,0.6896,0.8252,0.414,0.4012,0.704,0.7462,0.1292,-0.3152,-0.5624,-0.7966,-0.8878,-0.9148,-0.9314,-0.939,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9528,-1,-0.9268,-0.8986,-0.8372,-0.76,-0.7244,-0.6916,-0.713,-0.6786,-0.7444,-0.77,-0.8172,-0.9148,-0.9434,-0.4734,-0.3868,-0.42,-0.5334,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3714,-0.9428,-0.4572,-0.5428,-0.0858,0.0858,-0.7714,-0.9428,-0.8286,-0.9142,-0.9428,-0.6858,-0.7142,-0.6,-0.5714,-0.6858,-0.8,-0.8572,-0.6286,-1,-1,-1,-1,-1,-1,-0.0626,-0.0518,-0.028,0.0096,0.0544,0.21,0.403,0.6544,0.9322,1,-0.5116,-0.524,-0.5138,-0.5016,-0.5208,-0.5064,-0.516,-0.4526,-0.4892,-0.5136,-0.2934,0.7058,-0.9134,-0.8404,-0.789,-0.7334,-0.6436,-1,-0.0848,0.1186,0.0678,0.0848,0.2034,0.356,0.695,1,0.305,0.5424,0.6272,0.5762,0.8136,0.8644,0.2882,0.4238,0.2372,0.7288,0.0508,-0.1526,0.322,0.339,0.5932,0.678,0.5254,0.678,0.4068,0.2372,0.0338,0.1016,0.0508,-0.1694,0.2428,-0.1286,0.3142,0.6858,0.7286,0.6286,0.5286,0.8286,0.9,0.7428,0.7572,0.7858,0.6,0.4,0.5286,0.5142,0.6286,0.7142,0.3858,0.6428,0.7,0.7572,0.7858,0.6142,0.5428,0.2572,0.7858,1,0.4714,0.2858,0.1572,-0.1286,0.2214,0.5114,0.481,0.3894,0.4962,0.4656,0.8474,1,0.6184,0.1908,0.71,0.6184,0.5268,0.1298,0.2978,0.0534,0.603,0.4656,0.2978,0.2824,0.4046,0.252,0.6184,0.2672,0.2672,0.2672,0.5114,0.7252,0.4352,-0.0992,0.084,-0.5726,-1,1,-1,-1,-1,-1,-0.6,-1,-1,-0.4386,-0.3158,-0.1578,0.0176,0,-0.035,0.4036,0.2106,0.3684,0.421,0.6316,0.9298,1,0.579,0.6316,0.5614,0.5438,0.6666,0.5614,0.386,0.5614,0.579,0.2982,0.7192,0.4036,-0.0176,0.2456,0.2982,-0.2808,-0.1404,-0.0702,-0.5964,'25'
-0.074,0.4044,1,0.8696,-0.4696,-0.4522,-0.674,-0.7696,-0.8086,-0.8218,-0.8608,-0.7608,-0.8652,-0.3348,-0.2826,-0.274,0.2566,0.3218,0.413,0.6348,0.6044,0.413,0.7174,0.6522,0.3956,0.2,-0.0566,-0.2218,-0.1522,-0.1392,0.1,0.1434,-0.1334,0.4862,1,0.8432,-0.3764,-0.4196,-0.6628,-0.7334,-0.6392,-0.8706,-0.655,-0.6784,-0.8746,-0.3726,-0.502,-0.4314,-0.1216,0.0824,0.5058,0.7804,0.5804,0.4902,0.6,0.7568,0.6746,0.5686,0.3098,0.2,0.2,0.247,0.3882,0.3294,-0.2206,0.3194,0.8898,0.7794,-0.5248,-0.5704,-0.7224,-0.6996,-0.8022,-0.8784,-0.9164,-0.7642,-0.5818,-0.6426,-0.46,-0.1864,-0.0684,0.076,0.5362,0.7832,0.8442,0.6958,0.5818,0.711,1,0.8174,0.5742,0.5476,0.4752,0.5362,0.6958,0.5362,-0.3262,0,0.6058,0.5556,-0.5878,-0.8494,-0.8172,-0.7168,-0.6918,-0.7886,-0.8638,-0.681,-0.7132,-0.5986,-0.38,-0.3118,-0.2008,0.086,0.4768,0.638,1,0.8746,0.5842,0.767,0.7204,0.7742,0.5376,0.4696,0.5126,0.6416,0.5734,0.4552,-0.2572,0.1006,0.5468,0.5502,-0.4038,-0.6354,-0.7036,-0.9114,-0.7956,-0.6934,-0.7478,-0.7206,-0.5844,-0.54,-0.5434,-0.373,-0.1176,0.1278,0.4208,0.7376,0.874,0.9352,0.8126,0.942,1,0.8534,0.649,0.615,0.54,0.5128,0.431,0.121,-0.1658,0.3132,0.3836,0.4974,-0.082,-0.1792,-0.6516,-0.8124,-0.9564,-0.799,-0.8258,-0.6582,-0.6148,-0.521,-0.5042,-0.4674,-0.3468,-0.196,-0.0552,0.5008,0.799,1,0.8358,0.6014,0.618,0.6248,0.4572,0.3568,0.0486,-0.0552,0.0118,0.0954,0.2172,1,0.9016,0.9222,0.668,-0.1476,-0.5246,-0.6476,-0.668,-0.6762,-0.6886,-0.5656,-0.4632,-0.4796,-0.4098,-0.5082,-0.5246,-0.3606,0.0614,0.4098,0.873,0.8278,0.6968,0.832,0.832,0.6926,0.3976,0.2582,0.3032,0.2172,0.0082,0.1352,0.3514,0.5676,1,0.8918,-0.081,-0.4054,-0.2972,-0.5676,-0.6756,-0.5676,-0.2432,-0.4054,-0.4054,-0.1892,-0.1892,0.3514,0.7298,1,0.7838,0.8378,0.8378,0.6216,0.2432,0.6216,0.7298,0.7298,0.2972,-0.4594,0.1892,0.5136,0.7298,0.7298,0.4426,0.7378,1,0.9344,0.246,0.2786,0.1476,0.1148,0.1476,0.1476,0.2132,0.0164,0.2132,0.4098,0.377,0.4754,0.6394,0.6066,0.836,0.836,0.6066,0.8688,0.9344,0.8688,0.7378,0.4426,0.377,0.4098,0.1148,0.3442,0.541,0.5082,-0.1304,0.2608,0.3478,0.413,-0.0652,-0.1304,-0.4566,-0.587,-0.8696,-0.6522,-0.587,-0.5652,-0.2826,-0.2826,-0.326,-0.326,-0.174,0.0652,0.2174,0.5,0.8914,1,0.7392,0.6304,0.6522,0.5652,0.587,0.5,0.4566,-0.0652,-0.0652,0.0434,-0.966,-0.9454,-0.7196,-0.6286,-0.7282,-0.784,-0.8326,-0.8374,-0.8422,-0.7694,-0.5388,0.426,0.9478,0.9418,0.7548,0.4976,0.3714,0.2342,0.0826,-0.0582,-0.0388,-0.125,-0.7136,-0.9478,-0.966,-0.9636,-0.9672,-1,-1,-1,-1,-1,-1,-0.9574,-0.9416,-0.7904,-0.691,-0.5932,-0.4742,-0.3544,-0.322,-0.1966,0.0864,0.0808,0.2116,0.5506,0.5562,0.419,0.5972,0.851,0.9228,0.8282,0.3354,-0.0524,-0.2014,-0.698,-0.8722,-0.8984,-0.9062,-0.9078,-1,-1,-1,-1,-1,-1,-0.9068,-0.92,-0.9434,-0.56,0.0266,0.8932,1,1,1,1,0.6366,-0.7,-0.8534,-0.8356,-0.8312,-0.6956,-0.7178,-0.6068,-0.3824,-0.4,-0.846,-0.864,-0.5,-0.1334,-0.26,-0.1568,-0.3,-1,-1,-1,-1,-1,-1,-0.8,-0.3714,1,1,0.1714,-0.3428,-0.8286,-0.7428,-0.7428,-0.7428,1,1,-0.4858,-0.7714,-0.9142,-0.8572,-0.9714,-1,-0.8,-0.5714,0.0286,-0.3714,0.3142,-0.2858,-0.9142,-0.8858,-0.6858,-1,-1,-1,-1,-1,-1,-0.6842,-0.6816,-0.67,-0.6622,-0.6554,-0.64,-0.6548,-0.6326,-0.6236,-0.5206,0.2474,0.2618,0.2886,0.3274,0.3708,0.4064,0.4634,0.5518,0.6544,0.79,-0.5334,0.0706,-0.0194,-0.0744,0.1572,0.3582,0.4726,-0.65,-0.1206,-0.2504,-0.692,-0.796,-0.7254,-0.744,-0.6698,-0.7254,-0.4656,-0.5622,-0.514,-0.373,-0.2764,-0.4138,-0.3654,-0.3618,-0.217,0.091,0.2134,0.154,0.2616,0.2244,0.4064,0.6142,0.8034,0.8368,0.8552,1,0.8108,0.7254,0.718,0.154,-0.3444,-0.4388,-0.8138,-0.6916,-0.6334,-0.4166,-0.4944,-0.3972,-0.3834,-0.175,-0.1556,0,0.0278,-0.0528,-0.0222,0.0028,0.0612,0.1362,0.2138,0.2388,0.3862,0.4306,0.5972,0.6916,0.9666,1,0.8472,0.9444,0.8944,0.9166,0.7834,0.3612,-0.2496,-0.3082,-0.7796,-0.7656,-0.6486,-0.4476,-0.364,-0.3864,-0.138,-0.152,-0.1464,0.205,0.2358,0.0182,0.0154,0.0962,0.1158,0.1966,0.3974,0.3948,0.4756,0.6012,0.6932,0.8996,0.9108,0.8772,1,0.9218,0.9442,0.6848,0.6234,0.403,-0.7146,-1,1,-1,1,-0.4,-0.8,0.5666,-1,-0.287,-0.0782,0.113,-0.0086,-0.2696,-0.0956,0.287,0.3914,0.8086,0.7566,0.513,0.6174,0.8434,0.4782,0.4086,0.4608,1,0.9478,0.826,0.774,1,0.913,0.5304,0.4956,0.3914,0.4956,0.3044,0.6348,0.774,0.4782,0.426,-0.1826,'26'
-0.0208,0.6984,0.9676,0.587,0.1832,0.0394,-0.6102,-0.3178,-0.8004,-0.638,-0.638,-0.601,-0.471,-0.573,-0.304,-0.2112,0.058,0.2854,0.6984,0.5592,0.42,0.5638,0.7122,1,0.8654,0.3922,0.1926,0.0534,-0.0348,-0.0302,-0.007,0.2158,-0.0832,0.7526,1,0.582,0.1642,0.0746,-0.5394,-0.3646,-0.8124,-0.646,-0.7654,-0.7868,-0.6248,-0.7356,-0.2538,-0.356,-0.1088,0.2068,0.4712,0.5948,0.5138,0.4372,0.6716,0.8124,0.8294,0.5394,0.2708,0.1812,0.1556,0.1472,0.2282,0.1556,-0.1116,0.7726,1,0.5074,0.0778,-0.0442,-0.621,-0.5158,-0.6884,-0.7684,-0.8358,-0.8148,-0.6968,-0.6,-0.4652,-0.2926,-0.1874,0.2464,0.4568,0.7178,0.6378,0.5832,0.5748,0.6506,0.8358,0.6506,0.419,0.3726,0.2842,0.4526,0.6,0.5158,-0.049,0.6588,1,0.6886,0.113,-0.2026,-0.7014,-0.6632,-0.8082,-0.7782,-0.693,-0.9786,-0.774,-0.5736,-0.5736,-0.4626,-0.2836,0.1172,0.548,0.7654,0.7398,0.5692,0.5736,0.7612,0.9786,0.8252,0.4328,0.4542,0.4456,0.5266,0.5096,0.4626,-0.0986,0.3902,0.9418,0.731,0.139,-0.5068,-0.6144,-0.6996,-0.8386,-0.8252,-0.9776,-0.7668,-0.6682,-0.704,-0.6412,-0.4574,-0.2556,0.1838,0.444,0.843,0.8206,0.7354,0.713,0.9372,0.991,1,0.5068,0.574,0.5696,0.6816,0.704,0.4216,0.067,0.4412,0.8614,0.8106,0.2472,-0.261,-0.6952,-0.672,-0.5612,-0.6536,-0.8938,-0.94,-0.8938,-0.672,-0.5012,-0.4088,-0.3348,-0.1732,0.3764,0.806,1,0.9954,0.88,0.6628,0.8152,0.6906,0.7136,0.6166,0.5428,0.381,0.1454,-0.2102,0.2386,1,0.788,0.3204,-0.0216,0.0314,-0.2868,-0.388,-0.7976,-0.9614,-0.9662,-0.788,-0.7012,-0.4024,-0.2144,-0.3832,-0.5904,-0.4698,-0.0168,0.359,0.8266,0.8746,0.7928,0.629,0.7928,0.6192,0.3542,0.1566,-0.1856,-0.2868,-0.2386,-0.147,0.1162,0.5348,0.814,0.721,0.1162,0.1628,-0.3488,-0.1628,-0.3954,-0.721,-0.3024,-0.0698,-0.2094,-0.2558,0.0232,0.3024,0.3024,0.1628,0.5348,0.5348,0.4418,0.4884,0.814,1,0.5348,0.4884,0.2558,0.2558,0.1628,0.3024,0.4418,0.5348,0.2972,0.7838,1,0.6216,0.5136,0.081,-0.027,-0.027,-0.4054,-0.027,-0.1352,0.1352,0.2432,-0.027,0.027,0.1352,0.3514,0.1892,0.8378,0.7838,0.5136,0.7298,0.7298,0.7838,0.8378,0.5676,0.5676,0.3514,-0.3514,-0.081,0.4594,0.4594,-0.0746,0.791,1,0.6418,0.3134,0.015,-0.4626,-0.4626,-0.7612,-0.791,-0.9402,-0.5522,-0.6716,-0.6418,-0.2538,-0.4328,-0.1642,0.1044,0.3134,0.4626,0.5522,0.4328,0.582,0.7314,0.7612,0.582,0.4926,0.1642,0.2836,0.194,0.3732,0.1642,-0.97,-0.746,-0.568,-0.478,-0.5202,-0.6084,-0.6948,-0.732,-0.6826,-0.5768,-0.2804,0.4216,0.9524,0.9488,0.8378,0.769,0.649,0.5538,0.314,0.1358,-0.023,-0.1888,-0.7196,-0.9506,-0.9612,-0.9648,-0.956,-1,-1,-1,-1,-1,-1,-0.9442,-0.7728,-0.6244,-0.4612,-0.3414,-0.2164,0.0394,0.2204,0.2394,0.562,0.4816,0.649,0.9592,0.9088,0.8082,0.6994,0.5878,0.5892,0.4844,0.3986,0.0244,-0.2558,-0.679,-0.8694,-0.898,-0.8708,-0.887,-1,-1,-1,-1,-1,-1,-0.9734,-0.9234,-0.98,-0.86,-0.4168,0.0632,0.5,0.9966,1,1,0.52,-0.549,-0.8778,-0.9134,-0.9112,-0.9268,-0.8468,-0.88,-0.7956,-0.76,-0.9446,-0.8934,-0.5068,-0.46,-0.5,-0.5068,-0.5668,-1,-1,-1,-1,-1,-1,-0.8572,-0.3142,1,1,0.9428,-0.2858,-0.2858,-0.7142,-0.8858,-0.8,-0.2,1,0.8,-0.8572,-0.8572,-1,-1,-1,-0.9142,-0.7142,-0.4286,-0.6286,0.0286,-0.2858,-0.8858,-0.9142,-0.2572,-1,-1,-1,-1,-1,-1,-0.3152,-0.3212,-0.3198,-0.305,-0.3056,-0.2976,-0.3042,-0.3368,-0.3896,-0.4154,0.3164,0.3694,0.4032,0.431,0.4688,0.4982,0.543,0.605,0.6662,0.7156,-0.36,0.047,0.3892,0.6544,0.6654,0.5606,0.9088,-0.5916,0.0122,0.1334,-0.3484,-0.5876,-0.74,-0.6118,-0.4212,-0.5876,-0.4592,-0.428,-0.5252,-0.4176,-0.3656,-0.2998,-0.2616,-0.3796,-0.279,-0.2824,-0.1058,-0.0294,0.2098,0.3864,0.6118,0.6292,0.8232,0.8682,0.8544,1,0.9098,0.702,0.4488,-0.0052,-0.3602,-0.389,-0.73,-0.9036,-0.852,-0.701,-0.5884,-0.4566,-0.479,-0.3954,-0.373,-0.3826,-0.2026,-0.3086,-0.2348,-0.1962,0.0354,0.0064,0.1318,0.18,0.2668,0.5724,0.6816,0.807,0.8874,1,0.807,0.91,0.984,0.8714,0.6592,0.2668,-0.2768,-0.0718,-0.3324,-0.631,-0.6164,-0.7364,-0.6222,-0.555,-0.1918,-0.1684,-0.344,0.0278,0.0718,-0.1654,-0.1566,-0.142,0.0278,0.1068,0.1274,0.2592,0.5344,0.6368,0.7336,0.798,1,0.8038,0.839,0.8184,0.8478,0.7804,0.549,0.2122,-0.1266,-1,1,-1,1,0,-1,0.4666,-1,-0.1384,-0.1846,0.3384,0.323,0.1538,0.2,0.3692,0.323,0.4154,0.4462,0.723,0.9076,0.8462,0.8,0.4154,0.1538,0.523,0.4,0.9384,1,0.877,0.7692,0.3076,0.2308,0.3692,0.0616,0.323,0.4924,0.3384,0.3692,0.0462,-0.5538,'26'
-0.4556,-0.1628,0.219,0.4112,0.6864,0.9526,0.7604,0.3492,0.0356,0.0356,0.0356,0.1272,0.21,0.3816,0.5266,0.8136,0.9852,1,0.7782,0.7692,0.7782,0.8758,0.8786,0.7514,0.503,0.355,0.2752,0.2514,0.1746,0.148,0.1894,0.3492,-0.3804,-0.1204,0.2392,0.4768,0.6404,0.9134,0.711,0.0948,-0.0754,0.0112,-0.0466,-0.008,0.1718,0.2392,0.3194,0.6084,0.9808,1,0.833,0.74,0.7208,0.8042,0.8362,0.7624,0.4768,0.1846,0.085,0.085,-0.0658,0.0016,0.0144,-0.0176,-0.368,-0.1172,0.2442,0.5928,0.6514,0.658,0.4528,0.1172,-0.0488,-0.1694,-0.1466,-0.039,0.0456,0.1466,0.189,0.303,0.7492,0.8338,1,0.8274,0.7394,0.8078,0.8762,0.7524,0.6384,0.2736,0.1302,0.1238,-0.0358,-0.039,-0.0846,-0.1108,-0.4028,-0.1734,0.1464,0.7014,0.6984,0.3514,0.0708,-0.0708,-0.1432,-0.3002,-0.1976,-0.279,-0.2036,-0.0106,0.0256,0.1432,0.3242,0.5204,0.8974,1,0.9458,0.8552,0.822,0.813,0.647,0.3394,0.2398,0.1402,-0.0256,-0.0346,0.0378,-0.0256,-0.4454,-0.011,0.2202,0.8004,0.7242,0.0428,-0.1886,-0.3186,-0.3534,-0.4072,-0.4358,-0.496,-0.2964,-0.252,-0.1886,-0.046,0.046,0.2614,0.5752,0.9144,1,0.8922,0.7686,0.7622,0.6988,0.2996,0.2108,0.1506,0.0048,-0.0048,-0.0682,-0.0364,-0.4432,0.1104,0.4112,0.7856,0.616,-0.072,-0.232,-0.36,-0.568,-0.5584,-0.6,-0.6224,-0.488,-0.4112,-0.3856,-0.3088,-0.2128,0.0048,0.3664,0.792,0.9584,1,0.872,0.872,0.8528,0.5584,0.2544,0.168,-0.0112,-0.0048,0.0208,-0.0016,-0.1706,0.4302,0.6666,1,0.752,-0.128,-0.372,-0.4884,-0.6512,-0.748,-0.969,-0.7906,-0.7714,-0.6356,-0.5466,-0.5,-0.4844,-0.4496,-0.1008,0.4962,0.9186,0.938,0.8294,0.9224,0.7442,0.4884,0.0698,-0.0698,-0.2714,-0.4768,-0.3954,-0.345,-0.5652,-0.2174,0.087,0.3478,0.7392,0.826,0.6522,0.3044,0.2174,0.1304,0.1304,0.087,0.3044,0.4348,0.6086,0.913,1,0.9566,0.826,0.7826,0.8696,0.9566,0.9566,0.826,0.5218,0.3478,0.3044,0.2608,0.2174,0.1304,0.3044,0.4782,-0.5834,-0.1666,0.125,0.3334,0.625,0.875,0.5416,0.2916,0,-0.0416,0.0416,0.0834,0.125,0.3334,0.5,0.5416,1,0.8334,0.5834,0.6666,0.6666,0.6666,0.875,0.4166,0.4166,0.375,0.125,0.25,0.25,0.125,0.25,0.4166,-0.4524,-0.119,0.0952,0.6904,0.6904,0.2858,0.0714,-0.119,-0.1904,-0.3334,-0.238,-0.2858,-0.2142,-0.0952,0,0.1428,0.262,0.5,0.9524,1,0.9048,0.8334,0.762,0.8572,0.5714,0.3096,0.262,0.1904,-0.119,0.0714,0.119,-0.0476,-1,-1,-0.988,-0.9728,-0.9856,-0.9816,-0.9776,-0.9592,-0.9512,-0.7038,-0.3222,0.4374,0.7206,0.8952,0.8848,0.9656,0.9664,0.8352,0.7014,0.495,0.1924,-0.1628,-0.8192,-0.9184,-0.936,-0.9656,-0.9688,-1,-1,-1,-1,-1,-1,-1,-1,-0.9882,-0.9786,-0.9826,-0.8686,-0.9346,-0.9492,-0.964,-0.7828,-0.3634,0.7202,0.7798,0.8364,0.7108,0.5622,0.4048,0.1768,0.056,-0.1184,-0.3206,-0.6072,-0.9118,-0.9462,-0.9538,-0.967,-0.9772,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.84,-0.8934,-0.14,-0.4934,-0.46,-0.8,-0.76,-0.66,-0.6446,-0.696,-0.738,-0.69,-0.632,-0.594,-0.724,-0.778,-0.79,-0.77,-0.918,-0.9234,-0.7,-0.5734,-0.78,-0.8068,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,-0.5428,1,1,1,0.7714,0.5142,1,1,1,-0.6286,-1,-1,-1,-0.9142,-1,-0.9428,-0.9142,-0.3428,0.8286,0.7142,-0.6858,-0.6,-0.4858,-0.5428,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.7542,-0.2444,-0.2504,-0.2588,-0.2732,-0.2958,-0.3026,-0.286,-0.2354,-0.0658,0.329,-0.4134,0.1648,-0.235,-0.0204,0.734,0.9836,0.8744,0.625,-0.3632,0.1836,0.146,0.8502,0.3932,0.1686,0.3034,0.131,0.6104,0.4606,0.3558,0.3034,0.2958,0.2134,0.3708,0.5806,0.5356,0.573,0.97,0.7454,1,0.7602,0.5656,0.6854,0.6254,0.5132,0.6704,0.6254,0.3408,0.5206,0.633,0.3932,-0.1282,0.348,0.8682,0.7948,0.3186,0.1428,0.6044,0.6336,1,0.7802,0.751,0.707,0.575,0.3772,0.0842,0.1794,0.3334,0.3334,0.2088,0.4578,0.6924,0.7876,0.2528,0.1502,0.0402,0.1722,-0.0402,0.055,0.2014,0.1062,-0.304,-0.6044,-0.0572,0.351,1,0.9224,0.2612,0.204,0.4326,0.6776,0.9878,0.8776,0.751,0.8122,0.5306,0.0816,0.0776,0.2572,0.5224,0.6244,0.4776,0.604,0.649,0.396,0.0816,-0.151,-0.2368,-0.3102,-0.2654,-0.302,-0.3632,-0.302,-0.3428,-0.5918,-0.7692,-1,-1,1,-1,-1,-1,0,-1,-0.2526,0.1718,0.4344,0.3738,0.3334,0.3738,0.3334,0.4142,0.798,1,0.5556,0.5758,0.7374,0.798,0.2728,0.1314,0.5758,0.9192,0.8788,0.4344,0.596,0.6162,0.394,0.3132,0.1112,0.596,0.4546,0.0304,0.1516,-0.0304,-0.2324,-0.4142,'1'
-0.324,0.0642,0.2626,0.3826,0.8044,0.7682,0.6062,0.3798,0.1592,0.1312,0.0614,0.0196,0.2012,0.2346,0.3576,0.6396,0.8128,0.838,0.8408,0.771,0.7374,0.8548,0.905,1,0.743,0.567,0.4636,0.3966,0.3604,0.3268,0.5364,0.5782,-0.277,0.1048,0.399,0.5806,0.9624,0.8028,0.6526,0.2958,0.2364,0.1268,-0.0016,0.0266,0.2112,0.1612,0.2864,0.5556,0.7058,0.928,0.9092,0.953,0.8248,0.8686,1,0.95,0.9062,0.5962,0.4522,0.4334,0.3928,0.349,0.468,0.5774,-0.3242,0.0168,0.385,0.65,0.9056,0.6986,0.3638,0.2298,0.0868,0.041,0.0046,-0.0806,0.0564,0.2054,0.172,0.2634,0.6226,0.729,1,0.9392,0.8996,0.9026,0.8752,0.9512,0.729,0.6042,0.3668,0.2908,0.2754,0.3182,0.2998,0.3516,-0.3956,-0.1504,0.3518,0.6262,0.749,0.3138,-0.0072,0.0218,-0.1766,-0.235,-0.1854,-0.1562,-0.1008,-0.0686,-0.0102,0.1124,0.2322,0.5386,0.8306,1,0.9854,0.8218,0.8656,0.8862,0.8306,0.6438,0.4014,0.3664,0.346,0.2964,0.2468,0.2614,-0.4538,-0.0926,0.2866,0.612,0.6238,-0.0448,-0.2,-0.2538,-0.406,-0.391,-0.3374,-0.3402,-0.2896,-0.182,-0.1612,-0.0746,0.1254,0.2806,0.5552,0.8,1,0.9552,0.8208,0.9014,0.8746,0.7432,0.5224,0.4478,0.412,0.2776,0.2508,0.3284,-0.424,-0.0412,0.3164,0.5728,0.5222,-0.0444,-0.3102,-0.4684,-0.5222,-0.462,-0.5158,-0.481,-0.4588,-0.3544,-0.2974,-0.231,-0.0664,0.0064,0.2278,0.614,0.8956,1,0.7912,0.8102,0.7944,0.7184,0.5284,0.4146,0.326,0.1614,0.2026,0.2406,-0.1148,0.2256,0.7106,0.5914,0.5234,-0.0298,-0.3788,-0.451,-0.8086,-0.8382,-0.9276,-0.9064,-0.7958,-0.7958,-0.7574,-0.8852,-0.3148,-0.349,0.0256,0.332,0.749,1,0.9788,0.7022,0.749,0.7106,0.3702,0.2086,0.068,-0.1192,-0.0042,0.051,-0.3636,0.0454,0.2728,0.5,0.8636,0.9546,0.7728,0.3182,0,0.091,0.1364,0.091,0.2272,0.3636,0.409,0.7728,1,1,0.8182,0.7728,0.8636,0.8636,0.7272,0.909,0.8636,0.5,0.2272,0.3636,0.2728,0.1364,0.5,0.5454,-0.4584,-0.0834,0.125,0.4584,0.7084,0.5416,0.625,0.4166,0.1666,0.125,0.0416,0,0.1666,0.2084,0.3334,0.6666,0.6666,0.8334,0.7916,0.7084,0.75,0.8334,1,0.9166,0.7084,0.625,0.4584,0.3334,0.2916,0.4166,0.5834,0.6666,-0.4482,-0.0574,0.2874,0.6092,0.5632,0.0114,-0.2414,-0.4252,-0.5632,-0.4712,-0.5862,-0.4022,-0.3564,-0.3334,-0.2184,-0.1034,0.0114,0.1494,0.2874,0.7012,0.7932,1,0.885,0.816,0.839,0.7242,0.6092,0.3564,0.3104,0.1264,0.1954,0.1724,-1,-1,-1,-1,-1,-1,-0.9872,-0.9872,-0.9794,-0.862,-0.711,0.0506,0.5558,0.763,0.9866,0.9274,0.6206,0.3188,0.0908,-0.1584,-0.4098,-0.5144,-0.8218,-0.9486,-0.9648,-0.9826,-0.9816,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9874,-0.9868,-0.982,-0.8822,-0.749,0.6588,0.6792,0.719,0.8356,0.7866,0.5532,0.458,0.23,-0.1512,-0.513,-0.7156,-0.8962,-0.951,-0.9592,-0.9744,-0.9808,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8846,-0.9068,-0.7868,-0.7868,-0.7334,-0.5956,-0.5578,-0.64,-0.6956,-0.592,-0.474,-0.502,-0.506,-0.584,-0.824,-0.794,-0.7668,-0.55,-0.4434,-0.5034,-0.8868,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2858,-0.9714,1,1,1,1,-0.8858,-1,-1,-1,-0.8858,-1,-1,-0.6858,-0.4,0.6572,0.3428,-0.4858,-0.5142,0.1428,-0.0286,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.743,0.211,0.2026,0.2038,0.2152,0.2296,0.265,0.2664,0.2696,0.3596,0.653,-0.5066,0.1294,-0.749,-0.2334,0.6878,0.986,0.8202,0.4916,0.1674,0.1292,0.3972,0.9904,0.8182,0.5312,0.512,0.6268,0.598,0.7224,0.5406,0.7704,0.8086,0.6172,0.7416,0.5312,0.4832,0.2822,0.6076,1,0.9522,0.8278,0.7512,0.9234,0.8756,0.5694,0.6268,0.7894,0.7608,0.8564,0.665,0.2536,0.0602,0.4586,0.4812,1,0.782,0.6016,0.639,0.6692,0.5112,0.6766,0.579,0.3834,0.8646,0.5488,0.5414,0.421,0.2406,0.3158,0.2782,0.2858,0.6542,0.7142,0.5038,0.5338,0.4962,0.3308,0.3082,0.2706,0.391,0.3234,0.1804,-0.2256,0.2888,0.5556,0.7738,0.9152,0.1838,0.107,0.301,0.495,0.9474,0.8182,0.7494,1,0.5152,0.4262,0.2242,0.406,0.6282,0.705,0.7132,0.693,0.5434,0.309,0.0142,-0.2,-0.3576,-0.4424,-0.192,-0.301,-0.2606,-0.2122,-0.0102,-0.1798,-0.997,1,-1,-1,-1,-1,-1,-1,-1,-0.4174,0.0486,0.3204,0.4368,0.398,0.2816,0.2428,0.3204,0.4952,0.9806,0.8834,0.7088,0.864,1,0.7088,0.631,0.631,0.631,0.4564,0.3592,0.4952,0.2428,0.165,0.4758,0.6894,0.7282,0.6116,0.1068,-0.068,-0.0098,0.0292,-0.6116,'1'
-0.0922,0.5064,0.4978,0.9008,0.8212,0.3106,0.234,0.01,-0.0724,-0.0752,-0.149,0.0554,0.0468,0.2738,0.2086,0.4382,0.5802,0.7646,0.6568,0.79,0.7134,0.7646,0.8582,1,0.7446,0.6738,0.4894,0.5234,0.4808,0.5774,0.7504,0.8582,-0.1014,0.4614,0.429,0.7998,0.7078,0.2368,0.1096,-0.0906,-0.2422,-0.2232,-0.3316,-0.1772,-0.1312,0.0122,-0.0718,0.05,0.272,0.3722,0.6508,0.7348,0.927,1,0.7834,0.8294,0.9622,0.9892,0.6806,0.6562,0.6346,0.6212,0.7862,0.751,-0.1556,0.3772,0.4342,0.6976,0.524,0.048,-0.1318,-0.0598,-0.4192,-0.3832,-0.3234,-0.3502,-0.2934,-0.3384,-0.1078,-0.2156,-0.006,0.0568,0.1586,0.518,0.5988,0.967,1,0.6976,0.6556,0.8414,0.7514,0.6676,0.4402,0.464,0.548,0.5808,-0.1892,0.3032,0.5042,0.6616,0.2798,-0.0318,-0.2998,-0.397,-0.598,-0.752,-0.6684,-0.551,-0.5712,-0.3534,-0.454,-0.34,-0.2562,-0.1222,0.0486,0.216,0.5344,0.789,1,0.9464,0.6952,0.6984,0.6984,0.6382,0.5176,0.32,0.3668,0.4204,-0.3076,0.077,0.582,0.5752,-0.4516,-0.6086,-0.6656,-0.7258,-0.8462,-0.8094,-0.7526,-0.7358,-0.6688,-0.6422,-0.6688,-0.525,-0.4214,-0.3412,-0.1538,0.0368,0.3546,0.6856,1,0.9464,0.7392,0.6522,0.7692,0.7558,0.6924,0.4448,0.4716,0.4382,-0.4044,0.445,0.7022,0.4112,-0.2994,-0.3232,-0.6176,-0.8038,-0.7598,-0.8206,-0.9526,-0.8612,-0.939,-0.8004,-0.692,-0.6278,-0.594,-0.3808,-0.286,-0.0762,0.2318,0.5532,0.8748,1,0.841,0.6548,0.797,0.8308,0.6786,0.5094,0.506,0.4856,-0.0622,0.5932,0.9436,0.725,-0.1638,-0.3822,-0.4952,-0.4916,-0.7062,-0.9774,-0.8644,-0.8342,-0.7438,-0.6912,-0.6874,-0.6912,-0.5856,-0.5856,-0.3634,-0.0848,0.1526,0.4652,0.8832,1,0.9058,0.7778,0.8984,0.8794,0.7212,0.42,0.3446,0.3522,0.132,0.6982,0.7358,0.9246,0.8868,0.3962,0.3962,0.283,0.1698,0.2452,0.1698,0.283,0.3584,0.585,0.6982,0.8868,0.9622,0.8114,0.585,0.6226,0.7736,0.849,1,1,0.7358,0.585,0.5094,0.5094,0.585,0.5472,0.7736,0.8114,-0.0566,0.4716,0.585,0.8868,0.8114,0.3584,0.283,0.1698,0.0188,0.0188,-0.1698,0.132,0.2076,0.3584,0.3584,0.4716,0.7358,0.8868,0.6982,0.6982,0.6604,0.7736,0.9622,1,0.6982,0.434,0.3962,0.5094,0.5094,0.6226,0.8114,0.8114,-0.1368,0.4526,0.3474,0.7474,0.6,0.1368,-0.0736,-0.0526,-0.3894,-0.3264,-0.2842,-0.221,-0.1578,-0.1368,-0.0526,-0.0948,0.1158,0.0736,0.4736,0.4948,0.8736,0.6422,0.979,0.7474,0.9158,0.8106,1,0.6842,0.5368,0.6632,0.7264,0.8106,-1,-1,-1,-1,-1,-1,-1,-1,-0.939,-0.9748,-0.734,0.8658,0.7742,0.3196,-0.0242,-0.2256,-0.3532,-0.4212,-0.4254,-0.3954,-0.354,-0.5186,-0.7128,-0.9176,-0.9636,-0.9686,-0.9644,-0.9582,-0.9672,-0.9702,-0.9618,-0.9726,-0.9796,-1,-1,-1,-1,-1,-1,-1,-1,-0.9598,-0.9798,-0.6966,0.65,0.8612,0.5074,0.0464,-0.208,-0.3488,-0.4344,-0.4314,-0.467,-0.5202,-0.6474,-0.804,-0.9212,-0.9458,-0.955,-0.9524,-0.9468,-0.9572,-0.9586,-0.9634,-0.9694,-0.9722,-1,-1,-1,-1,-1,-1,-1,-1,-0.9034,-0.8668,-0.7334,-0.6712,-0.6624,-0.4668,-0.5624,-0.5934,-0.5446,-0.6,-0.6868,-0.7646,-0.834,-0.824,-0.91,-0.5234,-0.2268,-0.4434,-0.3868,-0.4568,-0.4668,-0.45,-0.63,-0.6068,-0.4734,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,-0.3428,-0.6,-0.5428,-0.8572,-0.7428,-0.7428,-0.9428,-0.9142,-0.9428,-0.0858,-0.0858,-0.3142,-0.6286,-0.7714,-0.7428,-0.7714,-0.9142,-0.8286,-1,-1,-0.9428,0.5184,0.5104,0.5056,0.497,0.4866,0.4818,0.475,0.4554,0.402,0.0146,0.2492,0.2968,0.3266,0.4092,0.4672,0.5498,0.626,0.7144,0.8304,1,-0.6666,0.0706,-0.6148,0.047,0.6008,0.8624,0.9622,1,-0.1794,-0.0256,0.077,0.2308,0.3846,0.3334,0.3334,0.641,0.7948,0.7948,0.641,0.641,0.7948,0.7948,0.8462,0.7948,0.7948,0.8462,0.9488,0.8974,0.7436,0.8974,1,0.9488,0.7948,0.5898,0.8462,0.8462,0.7436,0.5384,-0.077,-0.2308,0.2098,0.2592,0.2098,0.1852,0.1852,0.0864,0.432,0.9506,1,0.4568,0.4074,0.7778,0.5062,0.5308,0.5062,1,0.7778,0.6544,0.8272,0.7778,0.6544,0.8272,0.9012,0.7778,0.5556,0.5308,0.9012,0.8518,0.8272,0.8518,0.3828,0.1358,0.6666,0.875,0.8958,0.5624,0.2708,0.0834,0.3542,0.9376,1,0.6458,0.625,0.75,0.6666,0.3542,0.4376,0.8124,0.6458,0.2916,0.2084,-0.0624,0.0834,0.3542,0.6042,0.3334,0.0416,0,0.1458,0.1876,0.125,0.1458,0.1666,0.0416,0.566,-1,-1,1,-1,-1,-0.8,-0.8334,-1,-0.0646,0.0806,0.0484,0.629,0.4678,0.5322,0.5,0.4678,0.4194,0.9194,1,0.6936,0.4516,0.6612,0.7742,0.5806,0.7904,0.742,0.5,0.629,0.6774,0.9194,0.871,0.8226,0.5646,0.5806,0.1936,0.2096,0.3226,0.2258,-0.0646,-0.371,'2'
-0.0936,0.399,0.7536,0.8916,0.5468,0.399,0.0592,-0.2512,-0.2758,-0.1084,-0.1674,0.0296,0.138,0.2068,0.4482,0.537,0.739,0.7832,0.8472,0.4828,0.4876,0.7094,1,0.9802,0.5812,0.33,0.197,0.2414,0.2068,0.3252,0.5566,0.7094,-0.2276,0.1986,0.6648,0.7378,0.3224,0.2276,-0.031,-0.2496,-0.2058,-0.2532,-0.3296,-0.1948,-0.1658,-0.1512,-0.1402,-0.0346,0.1548,0.5628,0.6502,0.9198,0.898,0.858,0.8688,0.898,1,0.8434,0.4644,0.439,0.3806,0.3406,0.45,0.592,-0.1978,0.2748,0.751,0.8902,0.403,-0.0184,-0.337,-0.4506,-0.3334,-0.4578,-0.4176,-0.3516,-0.4212,-0.2564,-0.315,-0.2124,0.0842,0.088,0.3956,0.74,0.9304,0.9816,1,0.7986,0.8424,0.9524,0.8462,0.6044,0.4688,0.37,0.5312,0.5274,-0.263,0.1296,0.7,0.7556,-0.026,-0.463,-0.4592,-0.5852,-0.6296,-0.526,-0.5926,-0.5518,-0.4112,-0.3962,-0.374,-0.3482,-0.1074,-0.0444,0.1666,0.5112,0.837,1,0.9666,0.8,0.8038,0.8814,0.9222,0.7518,0.6592,0.5666,0.537,0.5926,-0.3622,0.0302,0.7094,0.6566,-0.415,-0.366,-0.4378,-0.5246,-0.6906,-0.7284,-0.6792,-0.8642,-0.532,-0.449,-0.4792,-0.4378,-0.2226,-0.1396,-0.0378,0.3018,0.5962,0.9094,1,0.9094,0.8566,0.8716,0.8114,0.7774,0.668,0.5924,0.5736,0.615,-0.428,0.019,0.5112,0.4072,-0.2964,-0.3344,-0.5078,-0.6568,-0.6326,-0.7538,-0.8162,-0.7746,-0.5736,-0.591,-0.5702,-0.5252,-0.331,-0.383,-0.286,0.1266,0.4004,0.6776,1,0.837,0.4974,0.643,0.7262,0.6708,0.4488,0.4488,0.3796,0.4072,-0.1652,0.2902,0.8036,0.741,-0.3706,-0.5446,-0.692,-0.7768,-0.6428,-0.7724,-0.8706,-0.9286,-0.7188,-0.6026,-0.7142,-0.7678,-0.5134,-0.491,-0.4554,-0.125,0.2276,0.5134,1,0.884,0.759,0.7008,0.6742,0.6964,0.384,0.2456,0.2634,0.241,-0.1112,0.4444,0.6112,0.6112,0.3334,0.0556,-0.1112,-0.9444,-0.5,-0.1112,0.1666,0.2222,-0.2778,0.6112,0.8334,0.7778,0.1666,0.4444,0.4444,0.3334,0.4444,1,1,0.5,0.2778,0.1112,0.2222,0.3334,0.1112,0.5,0.7778,0.6112,-0.1516,0.4546,0.7576,0.9394,0.4546,0.394,0.1516,-0.0304,-0.2728,-0.2122,-0.091,0.0304,0.1516,0.2122,0.5758,0.5152,1,0.8182,0.5758,0.3334,0.2122,0.1516,0.9394,1,0.0304,0.0304,-0.0304,0.1516,0.2122,0.2122,0.697,0.8788,-0.2258,0.1828,0.613,0.7204,0.2044,0.0752,-0.0968,-0.2904,-0.2044,-0.3118,-0.3118,-0.2258,-0.3118,-0.1612,-0.2474,-0.2258,0.1398,0.2474,0.4194,0.914,0.957,0.8494,0.7204,0.828,0.957,1,0.5268,0.4194,0.2904,0.3548,0.4408,0.5054,-1,-1,-1,-1,-1,-1,-0.9736,-0.7954,-0.7404,-0.733,-0.7412,0.4862,0.8794,0.9614,0.956,0.6876,0.3562,0.2152,0.104,-0.0438,-0.1786,-0.31,-0.6348,-0.924,-0.9668,-0.9682,-0.9662,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9786,-0.8872,-0.8552,-0.8492,-0.85,0.1814,0.728,0.9498,0.7776,0.4464,0.3304,0.2224,0.1276,0.0348,-0.1958,-0.5002,-0.7842,-0.9382,-0.9494,-0.9614,-0.9634,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9258,-0.9634,-0.97,-0.99,-0.95,-0.7776,-0.6326,-0.575,-0.715,-0.6526,-0.6426,-0.53,-0.545,-0.5076,-0.64,-0.8,-0.9068,-0.54,-0.38,-0.6034,-0.5568,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2572,-0.4858,-0.8,-0.8572,1,1,0.8572,-0.7714,-0.7428,-1,-0.9428,-0.9714,-1,-0.9428,-0.3428,1,1,-0.2858,-0.7428,-0.6286,-0.6286,-1,-1,-1,-1,-1,-1,0.3858,0.4062,0.3938,0.4092,0.4264,0.4276,0.4274,0.3878,0.2378,0.0036,-0.2956,-0.2132,-0.1476,-0.0842,0.0708,0.2062,0.308,0.4862,0.6992,0.9286,-0.6,-0.0588,-0.857,-0.5508,0.2282,0.5374,0.7732,1,0.8292,0.789,0.4974,1,0.8592,0.5678,0.6984,0.6482,0.8392,0.5076,0.6482,0.4372,0.6784,0.6382,0.2664,-0.0854,-0.0552,0.3166,0.0854,0.7386,0.6884,0.6884,0.3366,0.216,-0.0754,0.0552,0.5478,0.3166,0.216,0.2362,0.196,-0.0754,0.9884,1,0.2966,0.1918,0.0466,-0.064,0.3488,0.1628,0.0756,-0.1104,0.1454,0.1512,0.0174,-0.2268,-0.378,-0.157,-0.1046,-0.1338,-0.2384,-0.1976,-0.1744,-0.2616,-0.3198,-0.2848,-0.2674,-0.3954,-0.3896,-0.4128,-0.7442,-0.4244,-0.6162,-0.8954,1,0.984,0.4256,0.1436,-0.0106,0.1862,0.3776,0.0212,0.0106,0.016,0.3618,0.2712,-0.0586,0.0054,0.0958,0.2766,-0.1276,-0.2926,-0.0638,0.0372,-0.0638,-0.1914,-0.25,-0.0958,-0.0212,-0.2766,-0.2128,-0.1648,-0.4042,-0.351,-0.5106,-0.6968,-0.8742,1,-1,-1,-1,1,-0.6,-1,-1,-0.1858,-0.239,-0.1858,0.0088,-0.115,-0.1328,-0.3452,0.1682,0.1504,0.4514,0.8408,1,0.3274,0.5222,0.5044,0.292,0.2212,0.7346,0.6814,0.292,0.4868,0.469,0.4868,0.4514,0.593,-0.115,0.0266,-0.239,-0.0266,-0.062,-0.2566,-0.7876,'2'
-0.1152,0.4486,0.749,0.8888,0.7242,0.6832,0.2552,0.1194,0.033,0.0412,0.0824,0.1358,0.2634,0.5144,0.6584,0.6996,0.9588,0.9424,0.5802,0.568,0.5884,0.7366,0.9012,1,0.6872,0.3744,0.1646,0.1564,0.284,0.1934,0.2428,0.395,-0.2358,0.1664,0.6564,0.7258,0.6014,0.4734,0.0896,-0.1152,-0.1334,-0.1006,-0.2432,-0.148,0.1408,0.0968,0.0348,0.4406,0.5648,0.9086,0.9268,0.9414,0.744,0.7294,0.8136,0.8756,1,0.6416,0.3858,0.3236,0.2358,0.2944,0.4296,0.4516,-0.1756,0.2866,0.7598,0.8226,0.2532,0.1424,-0.1238,-0.2718,-0.2496,-0.305,-0.2754,-0.135,-0.3124,-0.2644,-0.061,-0.0868,0.1276,0.4602,0.7486,0.9372,0.9112,1,0.8448,0.8262,0.989,0.7744,0.6452,0.3642,0.2828,0.3346,0.3826,0.438,-0.1516,0.295,0.8524,0.9098,0.004,-0.2664,-0.3688,-0.4836,-0.5574,-0.4304,-0.5492,-0.5368,-0.5082,-0.4714,-0.3894,-0.3934,-0.1434,0.1434,0.3156,0.5696,0.8812,1,0.9426,0.5696,0.7254,0.8976,0.7786,0.668,0.4468,0.3894,0.4058,0.459,-0.3174,0.1976,0.6846,0.545,-0.002,-0.3652,-0.501,-0.5848,-0.6806,-0.8124,-0.7724,-0.7964,-0.6926,-0.521,-0.549,-0.517,-0.2376,-0.1616,-0.042,0.2654,0.509,0.8642,1,0.7844,0.6526,0.6886,0.8244,0.7006,0.5848,0.453,0.461,0.513,-0.188,0.7408,1,0.6112,0.041,-0.352,-0.6718,-0.7452,-0.7408,-0.8834,-0.7926,-0.784,-0.8186,-0.5638,-0.6286,-0.6372,-0.5206,-0.391,-0.4558,-0.0584,0.3434,0.6846,0.9092,0.9612,0.6414,0.7494,0.7106,0.6458,0.6372,0.3002,0.473,0.3822,0.1578,0.5146,1,0.614,-0.1112,-0.8246,-0.7134,-0.6024,-0.731,-0.7602,-0.924,-0.6082,-0.6842,-0.8362,-0.8538,-0.9532,-0.5322,-0.6608,-0.4796,-0.421,-0.2924,0.0526,0.6374,0.7134,0.4854,0.4678,0.503,0.2748,-0.117,-0.4036,-0.4152,-0.3684,0.1876,1,1,0.875,0.8124,0.375,0.375,0.3124,-0.0624,0,0,0.125,0.4376,0.8124,1,0.375,0.6876,0.5624,0.375,0.75,0.5624,0.5,0.5624,0.625,0.25,0.125,0.25,0.1876,0.5,0.3124,0.1876,0.3124,-0.1428,0.381,0.619,0.8572,0.6666,0.619,0.2858,0.1904,0.0952,-0.1904,0.0952,0.2858,0.2858,0.619,0.5238,0.8572,0.619,0.7142,0.381,0.4286,0.5238,0.5238,1,0.9524,0.7142,0.2858,0.238,0.238,0.0476,0.0476,0.1904,0.3334,-0.2098,0.1852,0.679,0.7284,0.2346,0.0864,-0.1112,-0.3334,-0.3086,-0.358,-0.2592,-0.1112,-0.4074,-0.3828,-0.0864,-0.1112,0.0618,0.3828,0.679,0.8766,1,1,0.679,0.753,0.9506,0.753,0.7284,0.2592,0.1852,0.3828,0.358,0.1852,-0.9834,-0.9774,-0.9668,-0.9562,-0.9592,-0.939,-0.9382,-0.9472,-0.9382,-0.8944,-0.8304,0.7368,0.8824,0.632,0.4224,0.2496,0.0174,-0.1456,-0.304,-0.276,-0.5158,-0.767,-0.9088,-0.9728,-0.9842,-1,-1,-1,-1,-1,-1,-1,-1,-0.9774,-0.9564,-0.797,-0.6204,-0.5246,-0.3098,-0.2326,-0.242,-0.4,-0.2654,-0.5246,0.5056,0.9628,0.7788,0.3742,0.0236,-0.2222,-0.311,-0.4082,-0.506,-0.69,-0.8512,-0.9336,-0.973,-0.979,-1,-1,-1,-1,-1,-1,-1,-1,-0.93,-0.5668,0.8666,1,1,1,1,1,1,1,0.9732,-0.6176,-0.625,-0.465,-0.5334,-0.68,-0.7712,-0.6712,-0.6356,-0.789,-0.889,-0.9424,-0.7334,-0.8868,-0.9268,-1,-1,-1,-1,-1,-1,-1,-1,-0.4,1,1,1,-0.4858,-0.7714,-0.9428,-0.9714,-1,-0.6858,1,1,0.1142,-0.7428,-0.4286,-0.3714,-0.8858,-1,-0.7714,0.0858,0.0858,-0.4858,-0.4572,-0.6286,-0.8,-1,-1,-1,-1,-1,-1,-1,-1,0.569,0.5818,0.606,0.6072,0.6194,0.6238,0.6044,0.5466,0.3754,-0.0114,-0.4624,-0.4198,-0.36,-0.3362,-0.2328,-0.1602,-0.0536,0.1364,0.3942,0.645,-0.5866,0.0118,-0.567,-0.3706,0.6402,0.8686,0.9742,0.2084,-0.7498,-0.4278,-0.2968,0.0346,-0.0132,-0.1324,-0.087,0.2896,0.3444,0.2062,0.2754,0.28,0.3088,0.2872,0.2372,0.2992,0.3516,0.3682,0.478,0.528,0.6066,0.5566,0.54,0.7498,0.888,1,0.8308,0.7306,0.7784,0.7498,0.578,0.1632,-0.879,-0.7636,-0.5408,-0.4122,-0.4082,-0.3488,-0.3026,-0.0164,-0.0336,-0.1162,0.0452,0.0164,0.0644,0.1586,0.193,0.1834,0.2584,0.3218,0.2988,0.4122,0.6638,0.6772,0.6368,0.7636,0.852,1,0.8444,0.8424,0.852,0.9328,0.7636,0.51,-0.6798,-0.5674,-0.5122,-0.2958,-0.3298,-0.2832,-0.1452,0.2216,0.1326,-0.0054,0.0308,0.0966,0.1474,0.1072,0.139,0.1198,0.192,0.4126,0.4062,0.4422,0.6098,0.6416,0.5758,0.5122,0.7774,0.8898,0.9384,0.9152,0.9428,1,0.983,0.633,-0.7574,-1,1,-1,-1,-1,-1,0.9666,-1,-0.1112,0.432,0.037,0.2592,-0.0124,-0.0124,-0.0618,-0.0864,-0.1112,0.2346,0.8024,1,0.8518,0.605,-0.1112,0.0124,0.2346,0.8766,0.8024,-0.0124,0.0864,-0.1604,0.8518,0.4074,0.2592,0.1358,-0.0124,0.0618,0.4814,0.4568,-0.358,-0.6296,'3'
-0.166,0.4092,0.7104,0.9498,0.776,0.6564,0.2934,0.197,0.0926,0.0734,0.1544,0.2934,0.4248,0.641,0.7066,0.9614,1,0.7684,0.6872,0.664,0.6448,0.8764,0.9266,0.9034,0.7066,0.475,0.363,0.251,0.2548,0.3706,0.3514,0.5136,-0.277,0.1438,0.669,0.777,0.5,0.4676,0.2446,0.072,-0.1294,-0.0324,-0.0612,-0.018,0.108,0.2446,0.2914,0.3848,0.7734,0.9208,0.9712,0.7806,0.7518,0.9208,0.892,1,0.831,0.633,0.3022,0.2626,0.2914,0.3454,0.428,0.5864,-0.3128,0.07,0.5488,0.6342,0.1898,0.1418,-0.1794,-0.3026,-0.2274,-0.3094,-0.3504,-0.1418,-0.176,-0.07,0.012,-0.0154,0.265,0.494,0.617,1,1,0.7744,0.7162,0.8324,0.7846,0.7744,0.3778,0.2548,0.3162,0.3572,0.3812,0.5042,-0.2786,0.1412,0.626,0.7214,0.1488,-0.1222,-0.4084,-0.5496,-0.5,-0.523,-0.4924,-0.3206,-0.271,-0.2328,-0.1336,-0.1642,-0.0038,0.248,0.4122,0.8244,0.9236,1,0.7252,0.771,0.8894,0.8016,0.6374,0.4732,0.477,0.4274,0.4542,0.5344,-0.2542,0.1568,0.6822,0.7246,-0.1356,-0.4534,-0.5466,-0.6568,-0.7204,-0.6102,-0.5848,-0.6144,-0.4872,-0.4322,-0.356,-0.2924,-0.2118,-0.0254,0.2966,0.555,0.9068,1,0.9662,0.7542,0.7796,0.7966,0.7246,0.5508,0.4492,0.3898,0.4704,0.5,-0.2546,0.109,0.759,0.7272,-0.3,-0.5364,-0.541,-0.5954,-0.6454,-0.6682,-0.8454,-0.5818,-0.6136,-0.5636,-0.5954,-0.5772,-0.3954,-0.2046,0,0.3364,0.7772,0.95,1,0.791,0.741,0.8318,0.7046,0.691,0.4728,0.391,0.4728,0.5682,-0.2488,0.0658,0.6714,0.6104,-0.3098,-0.615,-0.7042,-0.6902,-0.7746,-0.9014,-0.8874,-0.9766,-0.9578,-0.878,-0.6948,-0.7184,-0.6056,-0.5492,-0.1032,-0.0704,0.2676,0.9108,1,0.6666,0.5212,0.507,0.507,0.3334,0.2112,0.047,0.1268,0.1126,0,0.7038,0.6666,0.926,0.8518,0.6296,0.5556,0.2962,0.2962,0.4444,0.3334,0.5926,0.4814,0.8518,0.8148,1,0.926,0.7038,0.6296,0.7778,0.7038,0.8888,0.8518,0.7778,0.7408,0.5186,0.4444,0.4814,0.3704,0.5186,0.4444,0.6666,-0.149,0.4042,0.617,0.9574,0.7872,0.6596,0.1914,0.149,0.234,0.1914,0.234,0.1064,0.617,0.532,0.8724,0.8724,1,0.532,0.7022,0.617,0.5744,0.9574,0.8724,0.7872,0.617,0.5744,0.2766,0.2766,0.4042,0.4468,0.4894,0.4468,-0.3264,0.0736,0.579,0.6632,0.3684,0.3264,0.1368,-0.0736,-0.2,-0.1368,-0.221,-0.1158,0.0316,0.0736,0.1578,0.2842,0.5158,0.8948,1,0.7684,0.7474,0.8316,0.8948,1,0.7264,0.6842,0.3474,0.221,0.3052,0.3894,0.3474,0.4948,-0.9844,-0.9798,-0.9762,-0.9672,-0.9768,-0.9732,-0.9838,-0.9844,-0.9498,-0.9606,-0.7828,0.7028,0.8842,0.6044,0.4218,0.333,0.154,-0.0806,-0.2118,-0.2726,-0.3538,-0.4678,-0.7786,-0.96,-0.9762,-0.9826,-0.9792,-1,-1,-1,-1,-1,-1,-0.9842,-0.9702,-0.8932,-0.7628,-0.6728,-0.723,-0.855,-0.8506,-0.838,-0.751,-0.7348,0.488,0.8962,0.774,0.4586,0.3632,0.1494,-0.139,-0.3374,-0.4312,-0.5204,-0.6388,-0.8702,-0.9648,-0.9654,-0.9782,-0.9792,-1,-1,-1,-1,-1,-1,-0.87,-0.49,0.8532,1,1,1,1,1,1,1,0.9032,-0.5744,-0.5858,-0.4258,-0.4858,-0.5376,-0.6926,-0.5726,-0.7076,-0.76,-0.7676,-0.8476,-0.91,-0.6834,-0.6468,-0.9334,-0.94,-1,-1,-1,-1,-1,-1,0.2572,1,1,1,-0.6858,-0.3428,-0.4286,-0.4286,0.6858,0.0286,1,1,0.0858,-0.5714,-0.5142,-0.5428,-0.8286,-0.8858,-0.8572,-0.9428,-0.8858,1,1,-0.4858,-0.4286,-0.4286,-0.0572,-1,-1,-1,-1,-1,-1,0.6548,0.6686,0.6836,0.7102,0.7296,0.7398,0.739,0.7016,0.5494,0.1368,-0.5656,-0.537,-0.4908,-0.4116,-0.35,-0.284,-0.1498,0.0074,0.2818,0.6962,-0.64,-0.1294,-0.7928,-0.158,0.5452,0.8852,0.8876,0.85,-0.9438,-0.585,-0.4912,-0.2584,-0.2424,-0.1726,-0.2128,0.1112,0.1566,0.063,-0.0254,0.0522,0.1566,0.0736,-0.02,0.1352,0.2102,0.237,0.2316,0.3066,0.6358,0.5342,0.593,0.435,0.8448,0.826,0.8286,1,0.925,0.8286,0.6038,0.1674,-0.9292,-0.8384,-0.8096,-0.4684,-0.464,-0.444,-0.4286,-0.2646,-0.1472,-0.1694,-0.1406,-0.1584,-0.1252,-0.1252,-0.041,-0.0012,-0.0676,-0.021,0.052,0.1118,0.4508,0.4574,0.4508,0.515,0.7276,0.8272,0.938,1,0.9712,0.887,0.8648,0.6212,-0.9212,-0.5566,-0.4582,-0.1946,-0.2784,-0.298,-0.2266,0.0296,0.069,-0.0148,0.0074,0.0566,0.0812,-0.027,0.069,0.0616,0.1206,0.2512,0.234,0.2192,0.4162,0.3794,0.4064,0.4902,0.5124,0.7536,1,0.9212,0.8646,0.9482,0.8152,0.6034,-0.9212,-1,1,-1,-1,-1,-1,1,-1,-0.292,0.0796,0.0266,0.0796,-0.0796,0.0088,0.1328,0.062,0.4868,0.3274,0.7168,1,0.469,0.4336,0.3452,0.3982,0.3098,0.6638,0.4868,0.4868,0.6814,0.5222,0.3982,0.2212,0.469,0.2036,-0.1682,-0.115,-0.1328,-0.0796,-0.1504,-0.3806,'3'
-0.0466,0.5904,0.7616,1,0.743,0.2142,-0.2402,-0.2142,-0.2402,-0.2998,-0.229,-0.393,-0.2328,-0.1098,0.0018,0.1508,0.2514,0.8808,0.8548,0.933,0.8584,0.6686,0.6984,0.8472,0.9218,0.9888,0.5232,0.4786,0.27,0.1844,0.2364,0.2142,-0.1594,0.35,0.7032,0.875,0.5376,0.0156,-0.4094,-0.425,-0.2844,-0.4594,-0.4,-0.4844,-0.4218,-0.1874,-0.225,-0.2312,-0.025,0.1656,0.4844,0.6062,0.9656,1,0.7906,0.6718,0.8562,0.8062,0.975,0.6532,0.6282,0.5282,0.4594,0.5718,-0.1504,0.352,0.6662,0.8314,0.3752,-0.1604,-0.4612,-0.5802,-0.5504,-0.5504,-0.4942,-0.4644,-0.5206,-0.3356,-0.4776,-0.405,-0.1768,-0.1338,0.167,0.372,0.6826,0.9272,1,0.6264,0.6198,0.8776,0.805,0.7686,0.61,0.5736,0.5868,0.5802,-0.2122,0.2088,0.6128,0.6768,-0.0808,-0.5622,-0.4814,-0.6902,-0.8148,-0.6262,-0.6464,-0.5656,-0.606,-0.606,-0.4916,-0.5892,-0.4208,-0.2222,-0.165,0.1852,0.5622,0.8316,1,0.9596,0.724,0.7576,0.771,0.761,0.6734,0.5488,0.4848,0.5118,-0.2336,0.0654,0.6138,0.5826,-0.5856,-0.43,-0.5016,-0.595,-0.6854,-0.6666,-0.623,-0.894,-0.5826,-0.489,-0.6574,-0.4454,-0.3334,-0.3676,-0.137,0.1246,0.3582,0.6324,0.9658,1,0.7352,0.5982,0.7726,0.7632,0.623,0.458,0.5046,0.5078,-0.3588,0.0872,0.5958,0.4634,-0.7108,-0.5088,-0.6968,-0.7874,-0.8642,-0.756,-0.8084,-0.8432,-0.756,-0.8084,-0.8258,-0.7492,-0.7004,-0.4948,-0.3728,-0.0976,0.1534,0.5088,0.9304,1,0.8466,0.7944,0.7422,0.6794,0.568,0.4286,0.4182,0.4564,-0.0754,0.242,0.7936,0.623,-0.3294,-0.512,-0.5912,-0.5952,-0.5992,-0.9048,-0.8174,-0.75,-0.7658,-0.7896,-0.8214,-0.7818,-0.5516,-0.508,-0.4604,-0.3254,-0.0794,0.4722,0.746,1,0.8968,0.7222,0.8016,0.5318,0.3968,0.131,0.127,0.1706,-0.0624,0.625,0.625,0.75,0.5624,0,-0.1876,-0.3124,-0.375,-0.4376,-0.375,-0.5624,-0.4376,-0.1876,-0.125,0.0624,0.625,1,1,0.625,0.1876,0.375,0.5624,0.6876,0.625,0.625,0.3124,0.125,0,-0.3124,-0.75,-0.25,-0.1282,0.4872,0.6924,0.8974,0.6924,0.0256,-0.1794,-0.3846,-0.3334,-0.3846,-0.3334,-0.3846,-0.282,-0.077,-0.077,0.1794,0.4872,1,1,0.6924,0.641,0.5898,0.641,0.7948,0.7436,0.8974,0.641,0.3334,0.1794,0.1794,0.2308,0.282,-0.1282,0.4102,0.7436,0.9488,0.5384,-0.1538,-0.4358,-0.4358,-0.4102,-0.5128,-0.4616,-0.4358,-0.4872,-0.2308,-0.359,-0.3846,0,0.0512,0.2308,0.4872,0.8974,0.6924,0.7692,0.8718,0.8718,1,0.9488,1,0.8206,0.6154,0.7692,0.7692,-1,-1,-1,-1,-1,-1,-1,-1,-0.8416,-0.8918,-0.7422,0.5558,0.9808,0.834,0.4436,0.0696,-0.1554,-0.2986,-0.3454,-0.4466,-0.5576,-0.6294,-0.765,-0.952,-0.9796,-0.9854,-0.9796,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8928,-0.9238,-0.6406,0.3652,0.9318,0.7858,0.438,0.1688,-0.0688,-0.153,-0.2146,-0.3342,-0.5134,-0.6932,-0.8258,-0.9544,-0.9686,-0.976,-0.9712,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.9068,-0.6134,-0.7046,-0.7312,-0.729,-0.7312,-0.5246,-0.6468,-0.478,-0.608,-0.566,-0.608,-0.796,-0.9,-0.63,-0.69,-0.8834,-0.81,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6858,1,1,1,-0.4572,-0.8572,-0.8286,-1,-0.9714,-1,-1,-0.9142,-0.5428,0.2572,0.2572,-0.4572,-0.7714,-0.8858,-0.8286,-1,-1,-1,-1,-1,-1,0.1894,0.191,0.1932,0.202,0.2038,0.1942,0.1652,0.1096,0.009,-0.1876,0.5174,0.5498,0.5676,0.5918,0.6388,0.7062,0.8018,0.8764,0.9958,1,-0.6134,0.1058,-0.4912,-0.261,0.317,0.632,0.8192,1,0.0454,0.409,0.2272,0.1818,0.2272,0.3636,0.409,0.409,0.3636,0.6364,0.8182,0.909,0.9546,1,0.909,0.7728,0.591,0.6364,0.7272,0.7728,0.6818,0.591,0.3182,0.2272,0.4546,0.591,0.6364,0.591,0.5,0.3182,-0.0454,-0.5454,-0.1428,0.2858,0.25,0.2678,0.25,0.1608,0.3572,0.3928,0.3392,0.625,0.6964,0.7678,1,0.8572,0.7322,0.6072,0.5,0.5714,0.75,0.75,0.6964,0.4286,0.5358,0.1964,0.4108,0.6608,0.875,0.8572,0.625,0.4822,0.3928,-0.1072,0.8654,0.9424,0.827,0.577,0.3076,0.2884,0.423,0.4808,0.7692,0.7308,0.5384,1,1,0.6538,0.8462,0.6924,0.827,0.8076,0.6538,0.5192,0.3462,0.827,0.8462,0.5384,0.5384,0.9038,1,0.6924,0.6154,0.8462,0.673,0.4038,-0.024,-1,-1,1,-1,0.2,-0.6,-0.8334,-1,-0.3696,0.2174,-0.2174,-0.1304,-0.1522,-0.2826,0.087,0.0434,0.1304,0.5434,1,0.6086,0.5218,0.5652,0.6304,-0.0218,0.1304,0.0218,0.2174,0.087,0.3044,0.2608,0.2826,0.2174,0.2608,0.1956,0.0434,0.1522,0.4348,0.1304,-0.0652,-0.326,'4'
-0.0694,0.4336,0.8772,1,0.3702,0.2554,-0.1366,-0.2316,-0.1564,-0.2594,-0.3584,-0.2436,-0.1762,-0.1168,0.002,0.2396,0.5802,0.8496,0.905,0.6476,0.592,0.608,0.691,0.7742,0.996,0.901,0.4298,0.2832,0.2396,0.2118,0.3386,0.2554,-0.1818,0.2822,0.7272,0.8464,0.3542,0.2288,-0.1724,-0.3322,-0.1724,-0.3416,-0.3104,-0.3228,-0.3918,-0.1692,-0.1756,-0.0972,0.257,0.2006,0.5078,0.862,1,0.652,0.6144,0.6834,0.721,0.8496,0.5454,0.442,0.2132,0.1692,0.3228,0.37,-0.18,0.2934,0.773,0.9092,0.4198,-0.0762,-0.4328,-0.4846,-0.355,-0.4782,-0.4748,-0.436,-0.41,-0.248,-0.261,-0.2156,0.0178,0.1022,0.3906,0.7212,0.9708,0.987,1,0.786,0.7958,0.893,0.8574,0.6272,0.368,0.3484,0.41,0.449,-0.3704,0.012,0.6054,0.6024,-0.232,-0.3192,-0.3314,-0.6204,-0.5632,-0.5572,-0.6988,-0.7108,-0.5482,-0.521,-0.4728,-0.3826,-0.238,-0.0572,0.1566,0.3886,0.6778,0.9698,1,0.7772,0.8012,0.7772,0.8072,0.729,0.6084,0.5542,0.5512,0.6054,-0.4376,0.1124,0.5016,0.3434,-0.1946,-0.2066,-0.4772,-0.541,-0.5776,-0.611,-0.7356,-0.7478,-0.6838,-0.6414,-0.4984,-0.535,-0.3618,-0.2492,-0.0122,0.1702,0.535,0.8602,1,0.9148,0.763,0.7842,0.8206,0.772,0.6322,0.5776,0.6048,0.6292,-0.4206,0.245,0.4934,0.202,-0.212,-0.192,-0.7186,-0.6126,-0.7186,-0.7748,-0.947,-0.798,-0.8046,-0.6258,-0.6226,-0.596,-0.447,-0.3444,-0.1688,-0.053,0.3046,0.7284,1,0.9868,0.7914,0.7948,0.7748,0.7814,0.6424,0.606,0.596,0.5762,-0.0294,0.4442,0.7456,0.5146,0.1154,-0.2212,-0.6204,-0.5304,-0.7104,-0.9256,-0.9178,-0.769,-0.7026,-0.679,-0.7574,-0.726,-0.593,-0.4442,-0.3072,-0.135,0.1664,0.4404,1,0.9686,0.6634,0.6008,0.499,0.3972,0.2876,0.0568,0.1154,0.045,0.1162,0.5348,0.8604,0.9534,0.4884,0.2094,-0.0698,0.0698,0.0698,-0.0232,-0.0698,-0.0232,0.1162,0.1162,0.3024,0.5348,0.814,1,0.8604,0.6744,0.628,0.4884,0.7674,0.907,1,0.7674,0.4884,0.5348,0.5348,0.5348,0.6744,0.5348,-0.1428,0.3714,0.7714,0.8858,0.4286,0.0858,-0.2,-0.4858,-0.2572,-0.3142,-0.4286,-0.3142,-0.2572,-0.2572,0.0858,0.2572,0.6572,1,0.9428,0.5428,0.4286,0.5428,0.7142,0.8858,1,0.7714,0.3142,0.2,0.2,0.3714,0.4286,0.3714,-0.3118,0.0968,0.5914,0.656,0.1398,-0.3978,-0.3978,-0.5268,-0.5268,-0.4624,-0.613,-0.5268,-0.3978,-0.4194,-0.3334,-0.3334,-0.2474,0.0538,0.1828,0.4408,0.914,1,0.7634,0.613,0.785,0.7634,0.7634,0.656,0.5054,0.4194,0.4838,0.4838,-1,-1,-1,-1,-1,-1,-0.8096,-0.827,-0.8192,-0.8498,-0.5074,0.5026,0.897,0.9676,0.8708,0.5542,0.3088,0.0556,-0.2238,-0.3406,-0.4184,-0.5608,-0.8408,-0.9706,-0.9736,-0.9736,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8736,-0.8796,-0.8788,-0.8964,-0.495,0.1772,0.6452,0.889,0.8176,0.612,0.689,0.5772,0.2684,0.0292,-0.3256,-0.6594,-0.877,-0.9622,-0.9656,-0.966,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.9768,-0.9668,-0.9868,-0.85,-0.7624,-0.8,-0.7424,-0.8268,-0.729,-0.5378,-0.45,-0.488,-0.4086,-0.7108,-0.8468,-0.8642,-0.6676,-0.6276,-0.7742,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6572,-0.8858,-0.9428,1,1,1,-0.2858,-0.8572,-0.9428,-0.8,-0.8858,-1,-0.9428,-0.6,0.3142,0.6572,0.3428,-0.4858,-0.8286,-0.7428,-1,-1,-1,-1,-1,-1,-1,0.1296,0.1504,0.1854,0.2028,0.232,0.2534,0.264,0.2228,0.1368,-0.0062,0.5066,0.5388,0.5458,0.5616,0.5982,0.6304,0.6688,0.7402,0.8688,1,-0.5466,0.1058,-0.4284,-0.1776,0.0916,0.3734,0.5754,1,0.0434,0.3044,0.4782,0.6956,0.826,0.826,0.7392,0.5652,0.8696,1,1,0.826,0.826,0.8696,0.913,0.913,0.913,0.826,0.826,0.9566,0.9566,0.826,0.4348,0.174,-0.0434,0.1304,0.2608,0.087,0.174,0.2174,0.087,-0.3044,0.4286,0.6624,0.5324,0.2988,0.5324,0.4026,0.4546,0.2208,0.7922,0.922,0.7922,0.6624,0.8442,0.5584,0.7142,0.7402,0.7402,0.6624,0.7142,0.7922,1,0.6884,0.3246,0.2728,0.1428,0.2468,0.2728,0.1688,0.3506,0.6104,0.5584,-0.3506,0.5914,0.914,0.7634,0.0538,0.2258,0.1398,0.2474,0.5698,1,0.871,0.6344,0.871,0.9784,0.7634,0.5914,0.5698,0.613,0.4838,0.7204,0.2688,0.2258,0.2474,0.1828,-0.0752,0.1398,0.3118,0.2258,0.2904,0.3764,0.871,0.5698,0.0968,-0.1514,-1,-1,1,-0.8,1,-1,-0.8334,1,-0.28,-0.08,0.28,0.62,0.4,0.22,0.26,0.16,0.44,0.86,1,0.88,0.56,0.6,0.2,0.38,0.76,0.6,0.38,0.1,0.36,0.38,0.62,0.7,0.2,0.2,0.26,0.08,-0.26,-0.02,-0.08,-0.48,'4'
-0.2496,0.2234,0.615,0.7128,0.292,-0.2986,-0.4584,-0.54,-0.4128,-0.5562,-0.5498,-0.602,-0.4942,-0.3736,-0.4128,-0.3508,-0.1844,-0.1908,0.0962,0.4454,0.628,0.9576,1,0.9446,0.9478,0.9022,0.7488,0.6508,0.4942,0.5302,0.6672,0.6704,-0.2088,0.2558,0.394,0.5118,0.0236,-0.3536,-0.8384,-0.8822,-0.7846,-0.8182,-0.808,-0.7272,-0.8586,-0.7038,-0.7272,-0.6632,-0.3132,-0.3804,-0.2122,0.0942,0.1818,0.6162,0.7812,1,0.8822,0.6632,0.67,0.6162,0.5454,0.4512,0.4546,0.4512,-0.188,0.2588,0.3192,0.4256,-0.1738,-0.3368,-0.9042,-0.7518,-0.6774,-0.8262,-0.8936,-0.8226,-0.9716,-0.8936,-0.6454,-0.7234,-0.5852,-0.493,-0.4362,-0.0248,0.11,0.422,0.9148,1,0.7446,0.6596,0.734,0.6524,0.7022,0.5426,0.4964,0.5886,-0.1158,0.2666,0.4036,0.4456,-0.372,-0.5438,-0.9334,-0.5438,-0.6316,-0.7088,-0.6842,-0.7052,-0.793,-0.7052,-0.6632,-0.7334,-0.5684,-0.4596,-0.2808,-0.207,0.035,0.4562,0.7192,1,0.8878,0.6316,0.7334,0.7158,0.6316,0.5508,0.565,0.6036,-0.1406,0.2198,0.5722,0.5248,-0.5644,-0.8574,-0.9326,-0.7782,-0.6554,-0.7148,-0.8416,-0.9128,-0.9604,-0.8258,-0.695,-0.7228,-0.6,-0.5762,-0.4258,-0.1248,0.0534,0.4534,0.7664,0.9802,1,0.6158,0.6674,0.7624,0.6158,0.4772,0.501,0.5684,-0.1992,0.1554,0.6414,0.49,-0.4582,-0.7012,-0.8486,-0.8526,-0.765,-0.9602,-0.9124,-0.8964,-0.8606,-0.8726,-0.9282,-0.8048,-0.6534,-0.6096,-0.4064,-0.227,0.0278,0.3306,0.8048,0.984,1,0.5816,0.749,0.7968,0.5738,0.498,0.4662,0.502,0.0556,0.4388,1,0.804,-0.1536,-0.4076,-0.5724,-0.3808,-0.4388,-0.7462,-0.6882,-0.5992,-0.666,-0.9242,-0.7952,-0.6926,-0.5858,-0.568,-0.5144,-0.1804,-0.0646,0.3542,0.862,0.8886,0.8664,0.6258,0.7416,0.7282,0.4388,0.2562,0.2962,0.1982,-0.0646,0.3548,0.613,0.6774,0.4516,0.1612,0,-0.0968,-0.0322,-0.129,-0.129,0,0,-0.0322,-0.0322,0.0322,0,0.1612,0.3226,0.4194,0.8388,0.8064,0.6774,0.9032,1,0.8388,0.8064,0.613,0.5484,0.6452,0.5806,0.6452,-0.017,0.4238,0.7288,0.7966,0.4576,-0.017,0.0508,-0.0508,-0.017,-0.2204,-0.1186,-0.356,-0.2542,-0.017,-0.1526,0.017,0.1526,0.1526,0.2542,0.5594,0.7288,0.7628,0.9322,1,0.9322,0.7966,0.8306,0.8306,0.5594,0.5932,0.7288,0.695,-0.1686,0.2134,0.2808,0.3932,-0.146,-0.2808,-0.8876,-0.8876,-0.7078,-0.7528,-0.7752,-0.663,-0.8202,-0.7304,-0.5956,-0.6404,-0.3932,-0.4606,-0.3484,0.0338,-0.0112,0.4832,0.7752,1,0.7304,0.573,0.7078,0.618,0.573,0.4382,0.4832,0.5956,-1,-1,-1,-1,-1,-0.972,-0.9776,-0.8946,-0.6298,-0.6578,-0.457,0.4302,0.8238,0.9776,0.8004,0.512,0.3046,0.1654,-0.0016,-0.1442,-0.2394,-0.3966,-0.6714,-0.9338,-0.9528,-0.9708,-0.9674,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9776,-0.9724,-0.931,-0.768,-0.7778,-0.6122,0.2306,0.7954,0.6386,0.4932,0.3452,0.161,-0.092,-0.214,-0.3422,-0.4866,-0.6594,-0.7908,-0.9476,-0.9548,-0.9642,-0.9668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9696,-0.96,-0.83,-0.87,-0.8,-0.6934,-0.55,-0.4,-0.4178,-0.5624,-0.5268,-0.5224,-0.5624,-0.5556,-0.5934,-0.7156,-0.7778,-0.84,-0.67,-0.7534,-0.8268,-0.9134,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4572,-0.9714,0.2286,0.1428,-0.2286,1,1,-0.8,-0.9428,-0.9714,-0.9714,-0.9714,-1,-1,-1,-0.2572,0.2858,0.0286,-0.2,-0.8572,-0.8286,-0.4286,-1,-1,-1,-1,-1,-1,0.0694,0.0324,-6e-04,-0.068,-0.1226,-0.1824,-0.2436,-0.2802,-0.3882,-0.5644,1,1,1,1,1,1,1,1,1,1,-0.5866,0.0352,-0.592,-0.1536,0.1812,0.4694,0.8562,-0.1584,0.1052,0.8948,0.7894,0.1052,0,-0.2106,-0.2632,0,0.0526,0.2632,1,0.9474,0.8422,0.8422,0.4736,0.3684,0.7894,0.8948,0.579,0.421,0.3684,0.2632,0,-0.3684,-0.421,-0.3684,-0.1578,-0.421,-0.3158,-0.3684,-0.3684,-0.4736,0.1924,0.6924,0.7308,0.2308,0,-0.077,0,-0.0576,0.2116,0.1154,0.8654,0.9038,1,0.75,0.7308,0.5962,0.7884,0.8846,0.7116,0.577,0.4808,0.577,0.3076,-0.1538,-0.1346,-0.0576,-0.1538,0.1154,0.2308,0.0962,-0.077,-0.173,0.248,0.76,0.568,0.248,0.04,0.056,-0.024,0.12,0.152,0.568,0.968,0.968,1,0.904,0.632,0.68,0.856,0.968,0.856,0.68,0.44,0.328,0.072,0.056,0.04,-0.12,-0.2,0.184,0.12,-0.152,-0.12,-0.296,-0.163,-1,-1,1,-1,-0.6,-0.8,-0.8334,-1,-0.3246,0.6104,0.2988,-0.013,0.6104,0.3506,0.5844,0.5324,0.2468,0.6884,0.8702,0.8702,0.6624,0.8182,0.6884,0.4806,0.2468,0.8702,0.5324,0.7922,0.6364,0.2468,1,0.4806,0.4026,0.2728,0.4026,0.1688,0.1168,0.065,0.2208,-0.1948,'5'
-0.2366,0.2006,0.553,0.6836,0.3474,-0.266,-0.305,-0.3768,-0.5008,-0.5758,-0.527,-0.6476,-0.5694,-0.4454,-0.3996,-0.3182,-0.1452,-0.044,0.1844,0.3704,0.7194,0.9968,1,0.7422,0.7358,0.9184,0.8368,0.6314,0.527,0.5368,0.5758,0.6802,-0.259,0.1904,0.4476,0.5712,0.1184,-0.3002,-0.5712,-0.6672,-0.5986,-0.6844,-0.6844,-0.7564,-0.6946,-0.5334,-0.4614,-0.4202,-0.2042,-0.259,0.0222,0.2488,0.4442,0.9382,0.976,1,0.928,0.9314,0.7324,0.8078,0.5986,0.554,0.7392,0.7428,-0.239,0.1938,0.3718,0.473,-0.0158,-0.2706,-0.6894,-0.7592,-0.658,-0.8254,-0.8708,-0.7102,-0.7348,-0.623,-0.5568,-0.5532,-0.438,-0.3788,-0.2426,0.075,0.1832,0.5636,0.8568,1,0.7068,0.7208,0.7662,0.6684,0.4974,0.4764,0.5322,0.63,-0.2342,0.171,0.4276,0.5056,-0.1896,-0.4276,-0.7138,-0.6468,-0.6654,-0.7806,-0.7696,-0.6878,-0.6692,-0.7398,-0.6394,-0.4908,-0.4386,-0.2676,-0.1116,0.078,0.4014,0.6952,1,0.9406,0.9182,0.7956,0.7434,0.7026,0.5576,0.4684,0.513,0.5502,-0.3356,0.0142,0.3852,0.3886,-0.5054,-0.8022,-0.7844,-0.7314,-0.8234,-0.7174,-0.8234,-0.8304,-0.6996,-0.6926,-0.7562,-0.569,-0.424,-0.3886,-0.2084,0.0388,0.2862,0.6538,0.9152,1,0.6996,0.728,0.7068,0.569,0.431,0.3886,0.4382,0.5372,-0.2954,0.0142,0.5658,0.5196,-0.573,-0.7188,-0.7864,-0.79,-0.637,-0.6976,-0.9182,-0.7366,-0.8008,-0.7936,-0.6476,-0.6904,-0.5552,-0.2348,-0.178,-0.025,0.3844,0.8042,0.9894,1,0.9288,0.8826,0.7722,0.701,0.4448,0.4164,0.3702,0.4448,0.042,0.458,0.8692,0.8598,-0.1588,-0.6588,-0.6542,-0.6776,-0.687,-0.6916,-0.9158,-0.8972,-0.8738,-0.8738,-0.8224,-0.8972,-0.5468,-0.542,-0.3412,-0.1496,0.229,0.8458,1,0.944,0.729,0.8178,0.729,0.5094,0.243,0.0654,-0.028,-0.0374,-0.0188,0.5094,0.8114,0.8114,0.3584,0.132,-0.0188,-0.2452,-0.434,-0.283,-0.283,-0.5094,-0.434,-0.283,-0.0944,-0.1698,0.132,0.0188,-0.0566,0.5094,0.7736,1,0.8114,0.6226,0.4716,0.8868,0.9246,0.4716,0.434,0.4716,0.434,0.6226,-0.4546,0.091,0.5454,0.591,0.1818,-0.5,-0.409,-0.3636,-0.5454,-0.5454,-0.5,-0.6818,-0.591,-0.5454,-0.6818,-0.5,-0.2272,-0.1364,0.091,0.4546,0.6364,0.9546,1,0.8182,0.909,0.9546,0.7728,0.591,0.5454,0.5,0.591,0.7728,-0.358,-0.0618,0.4814,0.432,-0.753,-0.7038,-0.753,-0.5802,-0.8272,-0.8518,-0.9506,-0.8024,-0.8024,-0.8272,-0.6296,-0.6544,-0.5556,-0.1852,-0.1852,-0.0864,0.4074,0.7778,0.9754,1,0.9506,0.8024,0.8024,0.753,0.5062,0.5062,0.432,0.4814,-1,-1,-1,-1,-1,-1,-1,-1,-0.8456,-0.7912,-0.461,0.1276,0.7716,0.9308,0.903,0.7596,0.6044,0.4718,0.365,0.269,0.182,-0.001,-0.7864,-0.904,-0.9298,-0.9366,-0.9574,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9304,-0.914,-0.7428,-0.3448,0.4036,0.5252,0.2436,0.1856,0.0488,0.0056,-0.0026,-0.1784,-0.4428,-0.6,-0.9158,-0.9322,-0.9402,-0.9534,-0.9618,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.82,-0.94,-0.8034,-0.5776,-0.3576,-0.24,-0.41,-0.4,-0.435,-0.34,-0.3512,-0.5934,-0.8224,-0.8912,-0.85,-0.5468,-0.6534,-0.6134,-0.7534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.1142,1,1,1,-0.3142,-0.9428,-0.9714,-0.9428,-0.9714,-1,-1,-0.4572,-0.2858,1,0.5714,-0.6286,-0.8,-0.7714,-0.5142,-1,-1,-1,-1,-1,-1,0.2,0.1978,0.1576,0.1094,0.0886,0.057,-0.0042,-0.067,-0.139,-0.3492,1,1,1,1,1,1,1,1,1,1,-0.6134,-0.0236,-0.7398,-0.6184,-0.3382,-0.1692,0.1536,-0.2,0,0.4666,0.5466,0.96,0.9066,0.32,0.56,0.72,0.7734,0.68,0.8134,0.52,0.4,0.6,0.2134,0.2134,0.5334,0.3334,0.6,0.8534,0.8,0.7866,0.8666,1,0.76,0.88,0.9466,0.6266,0.8134,0.5866,0.52,-0.2534,-0.122,0.9756,0.8212,0.2602,0.0244,0.0732,0.122,-0.0976,0.0732,0.4716,1,0.7074,0.6992,0.5528,0.0976,0.1708,0.374,0.4796,0.0814,0.1788,0.13,0.057,-0.1138,-0.187,-0.1788,-0.0894,-0.1708,-0.2764,-0.2926,-0.309,-0.374,-0.6098,0.2934,0.899,0.8044,0.0852,-0.041,-0.1104,-0.0032,-0.1546,-0.0094,0.3944,1,0.9936,1,0.9432,0.5016,0.4764,0.8044,0.7918,0.6466,0.47,0.5206,0.1546,0.0032,-0.2744,-0.1104,-0.4826,-0.2114,-0.1168,-0.123,-0.2682,-0.243,-0.6594,-0.9212,1,-1,-1,-1,-0.8,-1,-1,1,-0.2352,-0.0588,0.4314,0.5686,0.4902,0.2156,0.3138,0.8628,1,0.2942,0.196,0.3138,0.6666,0.7058,0.8824,0.745,0.7844,0.4118,0.353,0.0784,0.1372,0.0196,0.5098,0.7058,0.647,0.4118,0.098,0.2942,0.0588,-0.0588,0,-0.3334,'5'
-0.2608,0.2034,0.3696,0.5072,0.9828,0.9942,0.2492,0.083,0.1862,-0.0946,-0.129,0.0372,-0.0144,-0.2034,0.2894,0.4614,0.6962,0.9026,0.9198,0.8796,0.7134,0.9026,1,0.8624,0.4614,0.467,0.404,0.3124,0.2034,0.2492,0.3926,0.5186,-0.2684,0.1032,0.3688,0.5398,0.9352,0.7936,0.5162,0.2862,0.233,0.0856,-0.0324,-0.0324,0.0678,0.1268,0.2036,0.4926,0.7582,0.9528,0.7994,0.77,0.8172,0.8998,1,0.9056,0.5812,0.4632,0.357,0.2448,0.2566,0.2802,0.3098,0.469,-0.2836,0.0268,0.3374,0.5402,0.7732,0.7732,0.7792,0.2836,0.0866,0.1044,-0.0568,-0.0686,-0.015,0.2656,0.3194,0.5164,0.8866,0.809,0.8568,0.7194,0.7552,0.8926,1,0.9762,0.6358,0.4746,0.415,0.3492,0.3374,0.3612,0.5224,0.612,-0.303,-0.0026,0.3136,0.4852,0.6944,1,0.9786,0.2172,0.1958,0.1796,0.0616,0.1474,0.1528,0.3834,0.5818,0.7212,0.9786,0.7534,0.496,0.5764,0.6408,0.7158,0.9034,0.748,0.4852,0.3298,0.2226,0.2494,0.2332,0.3244,0.453,0.6246,-0.3872,-0.1078,0.201,0.348,0.5148,1,0.9754,0.3334,0.3774,0.3334,0.3138,0.3628,0.5,0.6764,0.902,0.8284,0.5784,0.3382,0.3236,0.3726,0.402,0.4118,0.5784,0.397,0.2352,-0.0294,-0.0442,-0.0686,-0.152,-0.005,0.0392,0.0784,-0.4088,-0.1576,0.1724,0.3252,0.537,1,0.8866,0.6848,0.4976,0.4384,0.4828,0.6354,0.9262,0.9408,0.399,0.3152,0.2512,0.0936,0.1626,0.1576,0.2562,0.5666,0.5714,0.1922,-0.0738,-0.0838,-0.3842,-0.2464,-0.2808,-0.3794,-0.1922,-0.202,-0.1562,0.1938,0.3438,0.4688,0.7438,1,0.8812,0.8188,0.5312,0.5062,0.6312,0.7312,0.6376,0.425,-0.0374,-0.3062,-0.3124,-0.2624,-0.325,-0.2188,-0.1688,0.2376,0.2312,-0.025,-0.3374,-0.4876,-0.5126,-0.75,-0.8938,-0.875,-0.7,-0.7874,-0.381,0.1428,0.2858,0.4286,0.8572,0.9524,0.4286,-0.1428,-0.1428,-0.1904,-0.1904,-0.1428,-0.1428,-0.381,0.1428,0.5238,0.5238,1,0.9524,0.762,0.6666,0.9048,0.8096,0.6666,0.0952,0.381,0.2858,0.2858,0.2858,-0.0952,0.3334,0.6666,-0.3778,0.0666,0.3334,0.3778,0.8222,0.8222,0.1556,-0.2444,0.1556,-0.0222,-0.2,-0.0666,-0.0666,-0.3778,0.2,0.3334,0.4222,0.5112,0.9556,0.8222,0.5112,0.9556,1,0.6888,0.6888,0.5112,0.2444,0.3334,0.2888,0.2444,0.5556,0.5556,-0.4382,-0.146,0.1686,0.3034,0.4382,1,0.9326,0.663,0.4832,0.4158,0.4606,0.5506,0.8426,0.9102,0.6854,0.528,0.3484,0.2808,0.236,0.3258,0.4158,0.5956,0.7078,0.3034,-0.0786,0.0786,-0.146,-0.2584,-0.146,-0.1686,-0.146,-0.0112,-1,-1,-1,-1,-1,-1,-0.9832,-0.984,-0.9794,-0.9742,-0.4496,0.154,0.7156,0.9612,0.9726,0.8944,0.7682,0.8586,0.8814,0.708,0.4108,-0.1616,-0.8266,-0.9642,-0.962,-0.9598,-0.9718,-0.968,-0.9704,-0.9674,-0.9658,-0.927,-0.9316,-1,-1,-1,-1,-1,-1,-0.9878,-0.9882,-0.9866,-0.9762,-0.611,-0.204,0.121,0.2884,0.2644,0.3946,0.32,0.686,0.9614,0.6824,0.2192,-0.4936,-0.8866,-0.9324,-0.92,-0.912,-0.9038,-0.912,-0.9058,-0.9224,-0.9188,-0.8482,-0.918,-1,-1,-1,-1,-1,-1,-0.8534,-0.9734,-0.7634,-0.7468,-0.5834,-0.544,-0.624,-0.64,-0.608,-0.688,-0.764,-0.69,-0.68,-0.6768,-0.6768,-0.71,-0.43,0.0632,0.2832,0.3132,0.5166,0.4566,0.29,0.33,0.3666,0.28,0,-1,-1,-1,-1,-1,-1,-0.9142,-0.9428,-0.5428,1,1,1,-0.4,-0.7714,-0.7142,-0.6858,-0.4572,-0.3142,-0.4286,0.9428,1,1,1,0.6,-0.5714,-0.6286,-0.8,-0.9714,-1,-1,-0.8858,-0.8286,-0.6572,0.8864,0.8864,0.8932,0.8942,0.9012,0.9218,0.94,0.9782,1,1,0.1996,0.1996,0.2064,0.2158,0.2142,0.2104,0.2222,0.2296,0.1298,-0.4604,-0.5466,-0.4118,-0.5568,-0.4132,-0.0934,0.0754,0.1964,1,0.3062,0.6326,0.8776,0.6734,0.5102,0.102,0.2244,0.6326,0.8776,0.9184,0.796,1,1,0.6326,0.5918,0.796,0.8776,1,0.8368,0.9592,1,0.5102,0.2244,-0.2654,-0.5102,-0.3878,0.1836,0.4286,0.551,0.4694,0.1836,-0.3062,0.3218,0.6696,0.8434,0.826,0.4608,0.1826,0.2522,0.5478,0.913,0.9478,0.774,1,0.826,0.5304,0.5652,0.374,0.826,0.9304,0.5826,0.5304,0.5826,0.426,-0.0608,-0.426,-0.426,-0.2,0.1826,0.4608,0.4956,0.426,0.426,0.2,0.291,0.6364,1,0.9454,0.2546,0.0364,0.3272,0.5636,0.8364,0.9272,0.9454,0.9454,0.6364,0.5636,0.5272,0.4546,0.909,0.7272,0.5636,0.5636,0.3818,0.4,0.0546,-0.4728,-0.4364,-0.491,-0.2,0.291,0.309,0.2546,0.3272,0.0728,-0.3588,-1,-1,1,-0.6,-1,-1,-0.8334,-1,-0.7704,-0.6558,-0.3934,-0.3442,-0.2132,-0.2296,-0.0164,0.4754,0.4918,0.6886,0.6558,0.4098,0.6066,0.7378,0.8032,0.6722,0.623,0.8032,0.377,0.6558,0.7214,0.6066,1,0.705,0.6722,0.8032,0.5574,0.7214,0.9508,0.7704,0.8032,0.4754,'6'
-0.4086,-0.113,0.2058,0.5188,0.716,0.716,0.3566,0.1072,-0.0956,-0.055,-0.1304,-0.0666,0.0086,0.1014,0.2348,0.513,0.687,1,0.8898,0.774,0.7682,0.942,0.9246,0.855,0.4898,0.4434,0.2928,0.2406,0.229,0.4086,0.5884,0.6812,-0.393,-0.0948,0.187,0.4906,0.6856,0.4634,0.4742,0.0786,0.0136,0.046,-0.0352,-0.0136,0.046,0.2196,0.3388,0.4742,0.8428,0.8536,1,0.7398,0.7616,0.9186,0.9242,0.9242,0.5718,0.4146,0.4092,0.393,0.3334,0.3822,0.6314,0.6964,-0.3028,0.0276,0.266,0.5474,0.7614,0.6452,0.6514,0.156,0.0276,0.052,0.0092,0.003,0.0336,0.3212,0.3884,0.578,1,0.841,0.8532,0.7676,0.7798,0.9204,0.9634,0.9204,0.5718,0.364,0.364,0.2966,0.3212,0.3272,0.5046,0.5964,-0.2998,-0.0208,0.2166,0.4302,0.632,0.7744,0.7508,0.1038,0.098,0.0742,0.1336,0.1158,0.1988,0.4244,0.5846,0.7922,1,0.721,0.5252,0.6142,0.6796,0.7152,0.9348,0.7686,0.4302,0.3234,0.187,0.187,0.2106,0.2462,0.3472,0.5786,-0.3414,-0.0182,0.2134,0.4268,0.5914,0.9696,0.9146,0.3536,0.3414,0.2926,0.3598,0.378,0.5792,0.7196,1,0.872,0.6646,0.506,0.4696,0.5548,0.7074,0.8536,1,0.5488,0.4268,0.311,0.1586,0.122,0.2134,0.317,0.3598,0.5304,-0.3568,-0.0918,0.2054,0.3622,0.6,1,0.8594,0.6756,0.5244,0.427,0.4702,0.6594,0.946,0.9082,0.9946,0.6702,0.4108,0.4054,0.3298,0.4054,0.546,0.7946,0.6702,0.6162,0.254,0.1622,0.146,0.0972,0.1352,0.2,0.3784,0.4648,-0.193,0.1158,0.1508,0.214,0.6842,0.8176,1,0.8316,0.3824,0.2982,0.5088,0.7824,0.9438,0.593,0.3684,0.0106,-0.0948,-0.1298,-0.193,-0.1298,0.1158,0.2632,0.4596,0.3614,-0.0106,-0.1508,-0.3052,-0.2562,-0.3544,-0.3264,-0.221,-0.2632,-0.421,-0.1578,0.3158,0.579,0.6842,0.6842,0.421,-0.0526,-0.2106,-0.1052,-0.2106,-0.2106,-0.1578,0,0.2106,0.421,0.7894,1,0.9474,0.7368,0.7894,0.8948,0.9474,0.8948,0.4736,0.3684,0.2632,0.1578,0.1578,0.2106,0.5264,0.6842,-0.4884,-0.0698,0.1628,0.4884,0.3488,0.6744,0.4418,0.0698,-0.0698,-0.1628,-0.1628,-0.0698,-0.0232,0.0698,0.2094,0.5814,0.5814,1,0.8604,0.6744,0.628,0.8604,0.5814,0.8604,0.5814,0.1628,0.3024,0.2094,0.2558,0.4418,0.4884,0.628,-0.3932,-0.146,0.1236,0.2808,0.4832,0.8652,0.7752,0.5056,0.3932,0.3258,0.3708,0.4832,0.7752,0.8652,1,0.6854,0.3932,0.3484,0.2808,0.2808,0.528,0.7978,0.7752,0.4606,0.236,0.191,0.0786,0.1236,0.0562,0.2134,0.4158,0.3708,-1,-1,-1,-1,-1,-1,-1,-0.9786,-0.9438,-0.901,-0.6052,-0.162,0.4956,0.8468,0.9844,0.9418,0.8884,0.838,0.8622,0.7896,0.517,-0.1454,-0.8098,-0.9388,-0.971,-0.9718,-0.9826,-0.9718,-0.9748,-0.9758,-0.967,-0.8778,-0.937,-1,-1,-1,-1,-1,-1,-1,-0.9866,-0.9702,-0.9448,-0.774,-0.4014,0.3586,0.563,0.2832,0.2588,0.3716,0.5572,0.9262,0.8364,0.2574,-0.4956,-0.9002,-0.943,-0.9598,-0.9714,-0.9782,-0.9774,-0.9804,-0.9662,-0.9528,-0.8544,-0.9238,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.8768,-0.81,-0.7068,-0.588,-0.404,-0.508,-0.576,-0.564,-0.756,-0.732,-0.736,-0.6368,-0.7034,-0.81,-0.61,-0.18,0.0332,-0.34,-0.3334,-0.4068,-0.5334,-0.2,0.1532,0.2,0.0432,-1,-1,-1,-1,-1,-1,-1,-0.7714,-0.3428,1,1,1,1,-0.8572,-1,-1,-0.8572,-0.8286,-0.6,0.3714,1,1,1,0.3428,-0.2572,-0.4858,-0.9714,-0.9142,-0.6286,0,0.2,-0.3428,-0.9428,1,1,1,1,1,1,1,1,1,1,0.1744,0.1434,0.1562,0.1478,0.1632,0.1712,0.185,0.1638,0.0454,-0.4646,-0.5466,-0.4352,-0.7598,-0.6102,-0.299,0.2354,0.581,1,0.221,0.579,0.8526,0.7052,0.5578,0.2,0.2842,0.4526,0.8948,1,0.8948,0.979,0.9578,0.5578,0.5578,0.7684,0.8526,0.8948,0.7894,0.8526,0.8106,0.7264,0.4316,0.3474,0.0948,0.0948,0.0106,0.1158,0.0526,0.2,0.179,-0.1578,-0.1952,0.1708,1,0.317,-0.122,-0.1464,-0.1708,-0.0244,0.756,0.6098,0.5122,0.6586,0.561,0.0732,0.0488,0.3414,0.756,0.561,0.439,0.4634,0.4634,0.4634,0,-0.439,-0.3414,-0.6098,-0.4878,-0.2196,-0.1708,-0.3414,0.1708,-0.2196,-0.041,0.4932,0.8356,0.6712,0.1232,0.0548,0.1506,0.3972,0.9178,1,0.7808,0.863,0.7124,0.3424,0.3698,0.548,0.8082,0.8082,0.6712,0.6576,0.548,0.4246,-0.0958,-0.2054,-0.411,-0.3972,-0.452,-0.452,-0.4246,-0.5342,0.274,-0.0136,-0.4514,-1,-1,1,-1,-1,-1,-0.7666,-1,-0.459,-0.1148,-0.0328,0.3442,0.0656,0.4098,0.6066,0.5082,0.6394,0.6886,0.459,0.836,0.5246,0.6394,0.6722,0.836,0.8688,1,0.9836,0.7378,0.754,0.7378,0.836,0.8196,0.5246,0.836,0.7214,0.4918,0.541,0.5082,0.377,0.0984,'6'
0.0176,0.65,0.5858,0.756,0.6084,0.1012,0.0016,-0.0304,-0.2232,-0.1654,-0.1428,-0.069,-0.1044,0.0016,-0.0016,0.236,0.4992,0.7688,0.7592,0.7078,0.6148,0.7208,0.7592,0.9614,0.9326,0.9744,0.772,0.6822,0.7528,0.9198,0.9776,1,-0.0128,0.5806,0.555,0.8688,0.7804,0.3038,0.1784,0.0042,-0.1584,-0.184,-0.2012,0.0242,-0.07,0.0928,0.0784,0.2126,0.4122,0.5664,0.7832,0.903,0.923,0.9058,0.8544,0.943,1,0.96,0.786,0.7032,0.7262,0.8232,0.8688,0.9772,-0.1474,0.3776,0.5754,0.7796,0.5106,0.0276,-0.2772,-0.2934,-0.3874,-0.462,-0.222,-0.274,-0.1604,-0.1896,-0.1378,-0.0534,0.0114,0.2772,0.4458,0.598,0.9612,1,0.6532,0.6176,0.7472,0.7212,0.7116,0.4878,0.3776,0.4748,0.4554,0.6466,-0.1532,0.3308,0.8034,0.9092,0.2704,-0.1342,-0.5122,-0.501,-0.4594,-0.4404,-0.5614,-0.4972,-0.2968,-0.2552,-0.38,-0.3422,-0.2174,0.0662,0.2552,0.5426,0.9432,1,0.9546,0.6672,0.6068,0.7392,0.6446,0.5122,0.4292,0.361,0.5388,0.6484,-0.2232,0.1694,0.8636,0.8058,-0.0826,-0.3264,-0.4338,-0.4834,-0.4834,-0.5826,-0.6736,-0.562,-0.6776,-0.8182,-0.5826,-0.562,-0.405,-0.1198,0.0372,0.3472,0.81,1,0.967,0.748,0.752,0.8636,0.748,0.8058,0.6322,0.533,0.5744,0.7396,-0.3604,0.2138,0.5298,0.2756,-0.0212,-0.449,-0.6108,-0.7572,-0.6918,-0.657,-0.8034,-0.6608,-0.6956,-0.6802,-0.6802,-0.5876,-0.445,-0.2332,-0.029,0.1714,0.6224,0.896,1,0.919,0.7688,0.7996,0.8266,0.7572,0.5876,0.499,0.5916,0.6608,-0.123,0.2296,0.705,0.5328,-0.1558,-0.5122,-0.7214,-0.8402,-0.754,-0.9304,-0.9262,-0.9016,-0.9098,-0.8934,-0.8566,-0.8238,-0.5942,-0.455,-0.209,0.0328,0.459,0.873,1,0.877,0.6762,0.6926,0.6844,0.6188,0.5246,0.3524,0.336,0.4714,-0.087,0.4348,0.3478,0.3914,0.1304,-0.174,-0.1304,-0.1304,-0.1304,-0.2174,-0.2174,-0.3478,-0.0434,-0.087,-0.087,0.3044,0.4782,0.826,0.7392,0.4782,0.4348,0.6086,0.7392,0.7392,0.7392,0.5218,0.4348,0.087,0.4348,0.6086,0.7392,1,-0.0204,0.5102,0.4286,0.5918,0.3878,0.102,-0.0612,0.0204,-0.1836,-0.1836,0.0204,-0.0204,-0.0612,-0.2244,-0.0204,0.1428,0.3878,0.551,0.6326,0.347,0.2244,0.6326,0.551,0.7142,0.7142,0.8368,0.5102,0.5102,0.6326,0.5918,1,0.9184,-0.179,0.3684,0.3684,0.7052,0.5368,0.0316,-0.2422,-0.221,-0.5368,-0.4736,-0.1368,-0.1368,-0.1158,-0.179,-0.0526,-0.0526,0.1158,0.2422,0.4106,0.8106,1,0.7474,0.621,0.7264,0.6842,0.7052,0.6632,0.4526,0.4106,0.5158,0.5368,0.7264,-1,-1,-1,-0.982,-0.841,-0.7412,-0.7112,-0.7868,-0.8636,-0.7158,-0.3688,0.3102,0.8574,0.9774,0.705,0.3818,0.1918,-0.005,-0.1822,-0.3836,-0.4388,-0.4754,-0.793,-0.9442,-0.9628,-0.9476,-0.9554,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9804,-0.9102,-0.8552,-0.843,-0.7856,-0.4872,-0.2302,-0.196,0.0454,0.6286,0.879,0.485,0.1076,-0.0936,-0.2958,-0.4022,-0.436,-0.4934,-0.6338,-0.8652,-0.9484,-0.9574,-0.9596,-0.9632,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8868,-0.9568,-0.9634,-0.9768,-0.7734,0.5566,0.5966,-0.0734,-0.6026,-0.689,-0.6668,-0.6446,-0.7134,-0.7246,-0.7246,-0.62,-0.4934,-0.5912,-0.6868,-0.7134,-0.4968,-0.49,-0.8068,-0.7934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5142,-0.4572,-0.6286,0.4,1,1,0.3714,0.5428,1,1,-0.7428,-0.6,-0.6572,-0.8858,-0.8858,-1,-0.9428,-0.7142,0.9142,0.8572,-0.2,-0.4572,-0.4572,-0.6286,-1,-1,-1,-1,-1,-1,0.2114,0.2228,0.2572,0.2856,0.308,0.3346,0.3544,0.3526,0.252,-0.0204,0.467,0.5516,0.5808,0.6208,0.6274,0.6666,0.688,0.74,0.8348,0.9682,-0.64,0.0352,-0.1896,-0.1522,-0.0208,0.2274,0.5096,1,0.0368,0.01,-0.4114,-0.2508,-0.2108,-0.0568,0.0034,0.2576,0.4916,0.5586,0.3914,0.485,0.7726,0.6388,0.8996,0.9732,0.9264,0.98,0.9934,0.9598,1,0.9732,0.806,0.786,0.7324,0.7392,0.7458,0.699,0.5786,0.2842,0.3244,-0.4114,-0.136,-0.1066,-0.5798,-0.574,-0.7634,-0.639,-0.4734,-0.4498,-0.2366,0.1242,-0.1952,0.219,0.426,0.284,0.6686,0.8758,0.935,0.639,1,0.9882,0.935,0.7338,0.8698,0.7928,0.7634,0.7634,0.716,0.6746,0.574,0.5148,0.2958,0.065,0.2598,0.3314,0.1582,-0.1522,-0.391,-0.4268,-0.1462,-0.0268,0.2538,0.2418,0.2776,0.415,0.6238,0.3134,0.588,1,0.9402,0.4746,0.7432,0.9284,0.7732,0.803,0.7672,0.8328,0.606,0.5642,0.809,0.7374,0.5582,0.4328,0.2776,0.1344,-0.4598,-1,-1,1,1,1,-1,-0.3,-1,-0.453,0.0086,0.1112,-0.0086,0.1452,-0.0256,0.0428,-0.0256,0.282,0.8462,1,0.5726,0.5726,0.641,0.2992,0.094,0.1966,0.3676,0.1966,0.3676,0.1282,0.2308,0.2478,0.3162,0.282,0.0256,-0.0256,0.077,-0.1452,-0.3334,-0.5384,-0.5384,'7'
-0.1418,0.4018,0.5214,0.7504,0.535,0.0154,-0.2274,-0.1898,-0.224,-0.2718,-0.1146,-0.2376,-0.118,-0.0222,0.118,0.3368,0.3982,0.877,0.8736,0.8358,0.747,0.7402,0.8188,1,0.788,0.8872,0.6684,0.6888,0.7334,0.6992,0.9112,0.7914,-0.1812,0.3102,0.7944,0.9722,0.6272,0.1882,0.014,-0.0592,-0.0384,-0.209,-0.1358,-0.1358,-0.115,0.0522,-0.0104,0.1882,0.4738,0.6062,0.9582,0.986,0.9478,0.8642,0.7944,0.9268,1,0.8362,0.7282,0.669,0.6062,0.6724,0.9338,0.906,-0.2622,0.1642,0.709,0.8308,0.3808,-0.0592,-0.093,-0.2318,-0.2352,-0.242,-0.2386,-0.2962,-0.2758,-0.0998,-0.1608,-0.0964,0.2588,0.2962,0.5668,0.8782,1,0.8206,0.8004,0.7192,0.6412,0.78,0.5466,0.489,0.3908,0.3434,0.5532,0.6412,-0.2998,0.052,0.7378,0.7882,0.0556,-0.1706,-0.0736,-0.4506,-0.4758,-0.2926,-0.5476,-0.5152,-0.289,-0.307,-0.271,-0.1274,-0.0162,0.1382,0.4184,0.6912,0.939,1,0.8886,0.7378,0.6912,0.6588,0.5906,0.4938,0.3968,0.3358,0.508,0.508,-0.3206,0.055,0.761,0.7268,-0.2258,-0.165,-0.203,-0.4876,-0.3966,-0.427,-0.628,-0.5674,-0.5104,-0.3548,-0.4042,-0.3434,-0.1612,0.0208,0.1424,0.4838,0.871,0.9886,1,0.814,0.7344,0.6736,0.6546,0.556,0.4612,0.3662,0.3928,0.4686,-0.3882,0.1586,0.6482,0.5106,-0.2122,-0.1702,-0.3766,-0.5946,-0.5488,-0.564,-0.7094,-0.8318,-0.587,-0.4914,-0.5678,-0.4722,-0.3308,-0.1166,0.0364,0.2582,0.6062,0.9388,1,0.9158,0.6712,0.6596,0.7208,0.6022,0.48,0.3538,0.4378,0.3958,-0.2446,0.181,0.7416,0.6262,-0.2048,-0.3996,-0.4474,-0.4394,-0.6342,-0.7176,-0.7734,-0.8688,-0.8728,-0.67,-0.7018,-0.7058,-0.4194,-0.4354,-0.2724,0.0894,0.3798,0.7296,1,0.9484,0.6898,0.5228,0.4434,0.503,0.2166,0.1888,0.2446,0.2286,-0.0952,0.4762,0.381,0.619,0.381,-0.0952,-0.1428,-0.1428,-0.238,-0.381,-0.1904,-0.4762,-0.1428,-0.0476,0.0952,0.381,0.4762,0.8572,0.8096,0.6666,0.4286,0.762,0.8096,1,0.8572,0.9048,0.7142,0.619,0.6666,0.5714,0.8572,0.5714,-0.174,0.3914,0.3914,0.6956,0.4348,0.087,-0.4348,-0.2608,-0.3044,-0.3044,-0.087,-0.2174,-0.087,-0.087,0.1304,0.3044,0.4348,0.826,0.826,0.7826,0.7392,0.7826,0.5652,1,0.826,0.7826,0.4782,0.6522,0.6956,0.7826,0.7392,0.7392,-0.2528,0.1648,0.7362,0.8902,0.4286,0.077,-0.033,-0.1868,-0.1208,-0.2308,-0.2088,-0.1868,-0.2748,-0.055,-0.077,0.055,0.3186,0.3626,0.8022,0.6924,1,0.8242,0.8682,0.6924,0.6484,0.8682,0.6704,0.4726,0.5164,0.4946,0.7142,0.6484,-1,-1,-1,-1,-0.871,-0.8868,-0.9354,-0.9406,-0.9644,-0.9592,-0.4398,0.3192,0.8692,0.9882,0.8092,0.5688,0.335,0.142,-0.009,-0.2122,-0.3662,-0.421,-0.524,-0.8924,-0.9746,-0.979,-0.978,-0.9802,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9158,-0.926,-0.9222,-0.714,-0.3334,-0.3256,-0.332,0.3964,0.9262,0.9764,0.8114,0.5326,0.3054,0.1246,-0.1102,-0.1944,-0.3988,-0.5338,-0.6628,-0.9206,-0.9606,-0.9728,-0.9738,-0.9792,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9536,-0.9934,-0.9134,0.4032,0.9066,0.8666,-0.01,-0.64,-0.6776,-0.6476,-0.7076,-0.8,-0.7876,-0.7776,-0.6962,-0.5986,-0.692,-0.8432,-0.8742,-0.6676,-0.4942,-0.8342,-0.7076,-0.8676,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.2,-0.8,1,1,1,0.4286,1,1,-0.1142,-0.8858,-0.8858,-0.9428,-1,-0.9714,-0.9714,-1,-0.8,0.3428,0.7714,0.5142,-0.5714,-0.4,-0.7142,-0.7142,-1,-1,-1,-1,-1,0.1946,0.2076,0.2138,0.2388,0.2584,0.2828,0.3232,0.3474,0.3332,0.1946,0.623,0.6388,0.6382,0.6514,0.654,0.6662,0.6872,0.7088,0.76,0.907,-0.6,-0.0352,-0.3328,-0.07,0.3486,0.739,0.8448,1,-0.6364,-0.1846,-0.3498,-0.3884,-0.2672,-0.2286,-0.179,-0.2012,0.124,0.1626,0.3554,0.664,0.7356,0.8842,0.9228,0.9614,1,0.8732,0.8898,0.7906,0.8622,0.9284,0.9504,0.8016,0.7576,0.7796,0.708,0.7686,0.664,0.3994,0.0744,-0.2948,-0.8734,-0.605,-0.6102,-0.6354,-0.6,-0.5444,-0.438,-0.3772,0.033,0.0886,0.0886,0.514,0.6152,0.5392,0.8228,0.9898,0.995,0.8988,0.8886,0.762,0.838,1,0.8126,0.762,0.8632,0.9594,0.8632,0.8988,0.7722,0.5342,0.4126,0.0886,0.0528,0.1356,0.062,-0.1448,-0.2322,-0.2736,-0.315,0.0574,0.6,0.6598,0.554,0.7748,0.7104,0.5218,0.816,1,0.8206,0.7012,0.8068,0.8712,0.8942,0.8666,0.7012,0.5816,0.761,0.8344,0.7978,0.7288,0.4436,0.4942,0.4666,0.3794,-0.3594,-1,-1,1,-0.6,-0.6,-0.8,-0.1666,-1,-0.2962,-0.0926,0,0.3704,0.1482,-0.1296,-0.074,0.2038,0.0556,0.7592,0.8888,0.574,0.7222,1,0.7222,0.5186,0.8148,0.8888,0.6112,0.8888,0.7038,0.2778,0.1296,0.2408,-0.074,-0.3888,0.1296,0.1666,0.0556,-0.0926,-0.426,-0.5556,'7'
-0.517,-0.2178,0.1286,0.433,0.5276,0.496,0.3544,0.391,0.1024,0.0708,0.1234,0.1916,0.202,0.2336,0.4384,0.5434,0.9476,1,0.8216,0.6746,0.706,0.8162,0.937,0.9266,0.8006,0.643,0.4804,0.412,0.3754,0.307,0.3334,0.538,-0.4384,-0.2146,0.201,0.516,0.6074,0.5844,0.4566,0.3288,0.032,-0.0182,0.0092,-0.0366,0.1188,0.1232,0.2602,0.5022,0.8402,0.9954,0.8858,0.8128,0.7124,0.863,0.9132,1,0.895,0.758,0.5296,0.42,0.3242,0.3334,0.3196,0.6302,-0.488,-0.2692,0.1204,0.466,0.5404,0.2736,0.1292,0.1248,-0.1598,-0.1948,-0.2036,-0.1816,-0.0284,-0.046,0.0722,0.291,0.5536,0.6674,1,0.9124,0.593,0.7112,0.7636,0.79,0.8206,0.6542,0.453,0.4092,0.2778,0.2472,0.3172,0.6236,-0.5084,-0.224,0.171,0.547,0.5662,0.0072,-0.0844,-0.1084,-0.3108,-0.3398,-0.306,-0.282,-0.2096,-0.1228,-0.012,0.1374,0.2772,0.6772,0.8844,1,0.865,0.7686,0.7446,0.8844,0.8988,0.7254,0.6144,0.5614,0.4602,0.4554,0.4698,0.6192,-0.4404,0.0072,0.2798,0.4356,0.3722,0.0462,-0.2408,-0.3576,-0.3918,-0.3236,-0.4744,-0.3042,-0.343,-0.2604,-0.1728,0.0608,0.1532,0.4112,0.7518,0.927,1,0.8832,0.6982,0.854,0.9318,0.8978,0.8004,0.6642,0.6156,0.6496,0.6642,0.64,-0.4842,0.1422,0.3736,0.1264,0.0264,-0.1684,-0.5158,-0.6106,-0.6264,-0.6578,-0.6894,-0.6684,-0.5736,-0.5052,-0.379,-0.2368,-0.1,-0.0632,0.4842,0.7948,1,0.8842,0.6526,0.6894,0.7632,0.879,0.8106,0.6632,0.5316,0.5894,0.5736,0.5894,-0.3984,0.7968,0.943,0.1382,-0.0244,-0.496,-0.5934,-0.4716,-0.7154,-0.7724,-0.7074,-0.8456,-0.496,-0.5122,-0.4878,-0.3008,-0.4146,0.13,0.3496,0.9756,1,0.7804,0.8292,0.9024,0.8212,0.6586,0.3984,0.3008,0.2602,0.4228,0.4146,0.5366,-0.5,-0.0834,0.0834,0.4166,0.5,0.3334,0.2916,0.3334,-0.0834,0.25,0.1666,0.375,0.4584,0.3334,0.4584,0.4166,0.8334,1,0.9166,0.5416,0.7084,0.6666,0.9166,0.8334,0.4166,0.625,0.375,0.4166,0.375,0.3334,0.4166,0.25,-0.5186,-0.1852,0.1112,0.4444,0.5556,0.4814,0.4814,0.3704,0.2592,0.1852,0.1112,0.2222,0.2592,0.3334,0.4074,0.7408,0.8518,0.7038,0.8518,0.8148,0.8148,0.8148,0.926,1,0.963,0.7038,0.4814,0.4444,0.4444,0.3334,0.3704,0.5556,-0.4222,0.0666,0.3334,0.3556,0.2444,0.0444,-0.2222,-0.2444,-0.3556,-0.3778,-0.5112,-0.3556,-0.4,-0.3112,-0.2222,0,0.0444,0.4,0.5556,1,0.9556,0.9334,0.8,0.7778,0.9778,0.9778,0.8666,0.7556,0.6666,0.7556,0.7334,0.6888,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.983,-0.9878,0.033,0.257,0.6306,0.7894,0.9722,0.8866,0.4492,0.0398,-0.1776,-0.304,-0.6814,-0.9192,-0.9756,-0.9776,-0.9816,-0.9694,-0.9748,-0.9694,-0.9342,-0.9028,-0.8988,-0.9232,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9878,-0.9906,0.1984,0.5986,0.6376,0.8722,0.9466,0.8788,0.6018,0.2022,-0.2226,-0.5706,-0.8586,-0.9676,-0.9866,-0.987,-0.9416,-0.7162,-0.585,-0.5052,-0.4156,-0.5094,-0.6338,-0.796,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.9668,-0.48,-0.34,-0.416,-0.348,-0.1968,-0.2234,-0.24,-0.2568,-0.3068,-0.48,-0.8134,-0.9168,-0.8534,-0.9234,-0.9508,0.3092,0.6458,0.7224,0.7792,0.7492,0.4792,0.3258,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,1,1,1,-0.9428,-1,-1,-0.8,-0.5428,-0.3142,0.5428,1,1,1,-0.5428,-1,1,1,1,-0.6,-0.5714,-0.3714,0.3142,1,1,1,1,1,1,1,1,1,1,0.6506,0.1374,0.1374,0.1782,0.1868,0.2136,0.2378,0.2684,0.3212,0.4362,0.664,-0.4534,-0.3882,-0.9908,-0.43,0.4304,0.5908,0.5648,1,0.0256,0.2478,0.4872,0.7094,0.6068,0.4358,0.5384,0.6068,0.5898,0.4872,1,0.47,0.3676,0.3846,0.2136,0.3676,0.4018,0.5726,0.47,0.5556,0.5556,0.4358,0.4872,0.3504,0.4872,0.2992,0.641,0.5214,0.1624,0.265,0.094,-0.4018,0.1824,0.4088,0.434,0.6982,0.7484,0.761,0.5598,0.673,0.5598,0.5724,0.5724,0.6478,0.4716,0.5598,0.7358,0.7736,0.4842,0.7106,0.585,0.7106,1,0.6352,0.7484,0.7106,0.7232,0.7484,0.673,0.6226,0.5974,0.1698,0.2202,-0.1698,-0.0846,-0.3662,0.1408,1,0.8732,0.0846,0.493,0.4788,0.3522,0.4366,0.5352,0.507,0.3802,0.2394,0.3944,0.4366,0.6478,0.4226,0.2112,0.6478,0.7888,0.169,0.338,0.5352,0.324,-0.0422,0.324,0.2254,0.2958,0.183,0.0986,-0.2958,-0.9962,1,-1,-1,-1,-1,-1,-1,1,-0.839,-0.7046,-0.8524,-0.6242,-0.5838,-0.5436,-0.3288,0.0202,0.0202,0.1544,0.1812,0.4228,0.6778,0.4362,0.7316,0.906,1,0.9194,0.8926,0.9866,1,0.906,0.7584,0.8256,0.745,0.8792,0.9598,0.6778,0.8926,0.6376,0.4094,0.3826,'8'
-0.3194,0.0722,0.2634,0.3986,0.8228,0.8554,0.5478,0.4732,0.3194,0.1656,0.2354,0.268,0.2588,0.4032,0.5058,0.6784,0.9814,1,0.7436,0.7156,0.8368,0.958,0.9954,0.7668,0.6456,0.5384,0.4406,0.4498,0.4872,0.4966,0.7202,0.7062,-0.2964,0.0698,0.3446,0.4602,0.9036,0.8072,0.6144,0.3254,0.2964,0.1422,-0.0024,0.1278,0.1904,0.1518,0.3254,0.5904,0.7784,1,0.976,0.8024,0.8362,0.8746,0.976,0.9036,0.7156,0.4554,0.3784,0.4216,0.306,0.3784,0.4698,0.629,-0.335,0.0124,0.3746,0.5682,0.8512,0.6774,0.4044,0.2308,0.1364,0.0372,-0.0322,-0.0522,0.0818,0.1464,0.1812,0.32,0.6228,0.7468,1,0.9652,0.7816,0.9058,0.9454,0.861,0.737,0.6378,0.469,0.4244,0.4342,0.4988,0.5286,0.6724,-0.3484,-0.0476,0.4286,0.614,0.7844,0.4938,0.1078,-0.0576,-0.1378,-0.1178,-0.193,-0.1228,-0.0776,0.0476,-0.0176,0.0726,0.4086,0.584,0.6992,1,0.9498,0.7544,0.8898,0.8596,0.7092,0.5338,0.4686,0.3484,0.2882,0.3384,0.4988,0.594,-0.3094,0.0056,0.5856,0.536,0.6354,0.221,0.1546,-0.315,-0.243,-0.3204,-0.337,-0.2984,-0.2818,-0.1382,-0.116,0.0166,0.1546,0.4696,0.6962,0.873,1,0.9448,0.9172,0.978,0.9282,0.685,0.4144,0.3646,0.337,0.348,0.3592,0.5028,-0.3754,0.0446,0.5854,0.5066,0.3176,0.0446,-0.0394,-0.0604,-0.37,-0.3176,-0.286,-0.3964,-0.2914,-0.2808,-0.1916,-0.1024,0.0236,0.1654,0.5014,0.7742,1,0.9266,0.685,0.7796,0.8216,0.7428,0.5014,0.3438,0.2494,0.223,0.2494,0.2966,-0.4842,0.3144,0.585,0.3584,0.1824,-0.3334,-0.3144,-0.3836,-0.4654,-0.6352,-0.4968,-0.4906,-0.5534,-0.5974,-0.371,-0.2516,-0.0252,-0.0314,0.4592,0.9182,0.9874,0.761,0.7672,0.8806,1,0.8868,0.2202,0.1886,0.1572,0.0944,0.1006,0.2076,-0.4584,-0.0416,0.2084,0.4166,0.7916,0.875,0.6666,0.375,0.2084,0.125,0.125,0.2084,0.25,0.4166,0.5416,0.8334,0.9584,0.9584,0.875,0.8334,0.9166,1,0.9166,0.875,0.7084,0.5416,0.4584,0.375,0.4584,0.5416,0.7084,0.8334,-0.4616,-0.077,0.1154,0.3846,0.7308,0.7692,0.423,0.3462,0.1924,0.1538,0.1154,0.1538,0.1924,0.2692,0.4616,0.577,0.923,1,0.7308,0.6538,0.7692,0.8462,0.923,0.6924,0.6154,0.4616,0.423,0.3846,0.423,0.4616,0.6538,0.7308,-0.381,0.0714,0.4762,0.5476,0.6904,0.3572,0.0476,-0.3096,-0.2142,-0.262,-0.4048,-0.238,-0.2142,-0.1428,-0.119,0.0476,0.2142,0.4524,0.6904,1,0.7858,0.7142,0.8572,0.762,0.8096,0.5,0.381,0.3334,0.238,0.3334,0.381,0.5238,-1,-1,-1,-1,-1,-0.9896,-0.9814,-0.986,-0.89,-0.7534,-0.4678,0.0828,0.3592,0.537,0.7522,0.964,0.8534,0.4318,-0.0212,-0.1748,-0.3504,-0.6778,-0.9354,-0.982,-0.9838,-0.9738,-0.9646,-0.9826,-0.9838,-0.9738,-0.954,-0.9534,-0.9082,-1,-1,-1,-1,-1,-0.9838,-0.9844,-0.9888,-0.9066,-0.7454,-0.325,0.5438,0.904,0.398,0.3462,0.489,0.4558,0.2238,-0.1152,-0.2762,-0.4688,-0.7636,-0.968,-0.9858,-0.987,-0.9514,-0.7548,-0.6754,-0.5592,-0.3818,-0.535,-0.65,-0.8126,-1,-1,-1,-1,-1,-0.8668,-0.7868,-0.9668,-0.7534,-0.76,-0.6368,-0.456,-0.5,-0.576,-0.528,-0.5968,-0.55,-0.5934,-0.6934,-0.5468,-0.6268,-0.6168,-0.8568,-0.82,-0.8934,-0.7534,0.3366,0.7,0.87,0.7366,0.7932,0.69,0.4166,-1,-1,-1,-1,-1,1,-1,0.8286,1,1,1,1,-0.5428,-0.9428,-0.9714,-0.9428,-0.8286,-0.6286,-0.6572,-0.2858,1,1,1,-0.8,-0.4,1,1,1,-0.6286,-0.7714,-0.3714,-0.2,0.6286,1,1,1,1,1,1,1,1,1,0.7662,-0.0102,-0.0102,0.0046,0.0336,0.0446,0.0408,0.0872,0.157,0.292,0.5442,-0.5466,-0.3882,-0.2658,0.1368,0.7504,0.9918,0.6536,0.875,-0.2,-0.0858,1,0.9238,-0.0858,-0.1238,0.0096,0.4286,0.9428,0.7524,0.638,0.7714,0.5048,0.1428,-0.0096,0.1048,0.6572,0.6762,0.6,0.6,0.562,0.1238,-0.3714,-0.4286,-0.5238,-0.5048,-0.5428,-0.562,-0.4858,-0.1238,-0.2,-0.5048,0.1612,0.3764,1,0.871,0.4624,0.3548,0.4194,0.6344,0.9784,0.828,0.914,0.8494,0.8064,0.5268,0.4624,0.5698,0.7204,0.7634,0.7204,0.699,0.6344,0.2258,-0.3118,-0.2688,-0.3334,-0.5484,-0.4408,-0.2474,-0.7634,-0.3548,-0.1398,-0.2688,0.0878,0.4736,0.8362,0.848,0.4386,0.31,0.3216,0.579,0.9766,0.8948,0.8714,1,0.766,0.497,0.5322,0.6024,0.9416,1,0.9182,0.9064,0.7426,0.3684,-0.0878,-0.1578,-0.2632,-0.579,-0.6492,-0.5088,-0.3684,0.0176,0.1462,-0.0292,0.2434,-1,-1,1,-1,-1,-1,-0.7666,1,-0.722,-0.6684,-0.4438,-0.4438,-0.4332,-0.155,-0.2086,0.0802,0.1122,0.262,0.1764,0.2406,0.4332,0.4974,0.6256,0.8502,1,0.968,0.8396,0.7968,0.8396,0.786,0.722,0.7968,0.8182,0.8716,0.7754,0.861,0.722,0.8074,0.6578,0.5828,'8'
-0.4624,-0.2358,0.104,0.1014,0.357,0.6152,1,0.971,0.7496,0.8814,0.8182,0.8946,0.8524,0.7022,0.3122,0.1832,0.1858,0.1568,0.228,0.4176,0.423,0.4808,0.2516,0.0118,-0.0382,-0.1726,-0.228,-0.3176,-0.3254,-0.307,-0.3044,-0.1884,-0.3986,-0.1568,0.1194,0.1166,0.4504,0.7294,1,1,0.8992,0.8676,0.8648,0.9598,0.81,0.6776,0.2116,0.1972,0.0964,0.0878,0.108,0.3352,0.5108,0.6086,0.2634,0.1396,0.0964,-0.154,-0.3008,-0.3612,-0.3842,-0.3238,-0.2202,-0.1942,-0.3758,-0.1036,0.1036,0.132,0.268,0.7248,0.8752,0.9944,0.9632,0.8752,0.9546,1,0.912,0.8184,0.3674,0.2482,0.2454,0.2624,0.305,0.39,0.5858,0.5036,0.6056,0.288,0.1632,0.0382,-0.129,-0.2596,-0.3532,-0.3504,-0.322,-0.251,-0.427,-0.1966,0.0168,0.0562,0.3286,0.6292,0.8736,0.8848,0.9354,0.7416,0.8062,0.941,1,0.9578,0.6686,0.4074,0.3258,0.3258,0.427,0.427,0.5366,0.6686,0.6096,0.3456,0.1602,0.045,-0.0056,-0.0674,-0.1602,-0.2472,-0.441,-0.4438,-0.4698,-0.2998,-0.0778,0.0172,0.3314,0.657,0.8502,1,0.8156,0.5446,0.5274,0.66,0.8934,0.9798,0.9914,0.7636,0.6224,0.5648,0.6024,0.6946,0.8214,0.8386,0.7262,0.4322,0.2882,0.1816,0.1182,0.075,0.1182,0.2018,0.2334,0.2364,-0.5334,-0.2028,-0.0638,0.0434,0.4174,0.8348,0.7594,0.655,0.426,0.2812,0.2232,0.2232,0.4666,0.5594,0.8058,0.971,1,0.858,0.8434,0.8058,0.942,0.9768,0.8202,0.5594,0.4376,0.3392,0.2754,0.2318,0.2696,0.3392,0.4376,0.5652,-0.458,-0.0734,0.07,0.437,0.7378,0.8742,0.6748,0.1504,-0.1608,-0.1608,-0.3356,-0.3006,-0.0664,0.1188,0.1784,0.3392,0.6538,0.8182,1,0.7972,0.8462,0.7132,0.5734,0.556,0.556,0.1784,0.0314,-0.0524,-0.1258,0.0384,0.098,0.3006,-0.4444,-0.2962,0.074,0.037,0.2592,0.6296,0.963,0.963,0.7038,0.7408,0.7408,1,1,0.6666,0.5556,0.2592,0.3704,0.2962,0.4444,0.5926,0.5926,0.5926,0.3334,0.1112,0.1112,-0.1482,0.074,-0.037,-0.074,-0.1482,-0.1852,-0.1112,-0.5416,-0.125,0.0834,0.125,0.375,0.625,1,0.9584,0.8334,0.9166,1,0.9584,0.9166,0.875,0.5834,0.375,0.4166,0.4166,0.3334,0.5,0.5834,0.625,0.2916,0.1666,0.0416,0,-0.0834,-0.125,-0.25,-0.2084,-0.2084,-0.0834,-0.4888,-0.3334,-0.1112,-0.0444,0.2666,0.6,0.7556,0.9778,0.7778,0.4666,0.4666,0.5334,0.8222,1,0.9778,0.7778,0.6,0.4888,0.5556,0.6222,0.7334,0.8444,0.7112,0.4444,0.2888,0.1556,0.1556,0.0888,0.0888,0.2,0.3112,0.3778,-1,-1,-1,-1,-1,-1,-1,-0.9802,-0.9838,-0.7896,-0.3626,0.2248,0.8042,0.9618,0.8086,0.623,0.4272,0.194,0.0738,0.0694,0.1786,-0.1734,-0.7242,-0.9216,-0.9612,-0.9728,-0.9714,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9914,-0.9898,-0.8446,-0.372,0.336,0.6178,0.894,0.8678,0.8068,0.6984,0.3584,0.2272,0.231,-0.0618,-0.636,-0.9278,-0.9652,-0.9744,-0.9842,-0.9872,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8968,-0.9168,-0.6,-0.58,-0.678,-0.67,-0.682,-0.686,-0.71,-0.566,-0.598,-0.73,-0.804,-0.8346,-0.92,-0.9068,-0.38,-0.4068,-0.4934,-0.8234,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,1,1,1,0.4572,-0.8572,-0.9428,-0.8286,-0.8858,-0.9142,-0.7428,-0.5142,-0.4858,0.3714,1,1,-0.2858,-0.4858,-0.5428,-0.3428,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4534,0.2,-0.2762,0.0528,0.3138,0.3958,0.5404,1,-0.1624,0.288,0.5602,0.822,0.5078,0.665,1,0.7068,0.2146,0.5498,0.7172,0.4346,0.288,0.0576,0.0576,-0.1414,0.0052,0.089,0.1938,0.3298,0.288,0.2774,0.2774,-0.0158,-0.0994,0.3404,0.3718,0.0786,-0.068,0.11,0.1518,-0.0262,-0.0654,0.2336,0.5514,1,0.8504,0.7758,0.9532,0.7196,0.4392,0.6074,0.6822,0.514,0.1682,0.1308,0.1308,-0.0186,0.0654,0.3178,0.3272,0.4766,0.3084,0.2056,0.3178,0.0374,0.028,0.243,0.1588,-0.0186,0.1214,0.3364,0.3738,-0.215,0.05,0.3072,0.5928,1,0.7642,0.8142,0.95,0.7,0.4928,0.6428,0.7572,0.5572,0.2928,0.3142,0.3072,0.1572,0.4,0.5928,0.6,0.5286,0.3714,0.1786,0.0286,-0.15,0.1072,0.2072,0.1858,0.1286,0.0428,0.1214,0.1358,-0.25,-0.459,-1,-1,1,-0.8,-1,-0.8,-0.6,-1,0.1364,0.284,0.6022,0.591,0.1932,0.2614,0.2954,0.409,0.4886,0.8978,0.9772,0.8864,1,0.7954,0.591,0.6478,0.659,0.7046,0.6136,0.5454,0.5682,0.6704,0.909,0.625,0.5682,0.5114,0.716,0.5,0.0228,0.1478,0.0682,-0.0454,'9'
-0.4126,-0.069,0.0866,0.1306,0.2776,0.627,0.8678,1,0.906,0.7092,0.7974,0.8914,0.8796,0.8532,0.5742,0.4068,0.3538,0.2688,0.2834,0.4478,0.5124,0.6124,0.627,0.3246,0.2834,0.0748,-0.0162,-0.0984,-0.1278,-0.1306,-0.0602,0.0778,-0.4128,-0.1536,0.0224,-0.0074,0.1266,0.6066,0.8062,0.9374,0.857,0.7734,0.851,1,0.9582,0.7824,0.4634,0.3682,0.2698,0.231,0.1804,0.2758,0.4248,0.4932,0.6542,0.395,0.216,0.0432,-0.0582,-0.088,-0.091,-0.0552,-0.0372,0.0284,-0.4162,-0.1616,-0.027,-0.021,0.1198,0.5748,0.8084,0.9372,0.8532,0.7904,0.8982,1,0.9402,0.8862,0.527,0.4192,0.3324,0.2574,0.2006,0.2964,0.4102,0.545,0.6886,0.3474,0.2934,0.1378,-0.024,-0.0688,-0.0718,-0.0568,-0.1018,0.015,-0.4376,-0.2172,-0.0328,-0.0238,0.1518,0.494,0.8124,0.8482,0.872,0.7292,0.753,0.9018,1,0.9792,0.5416,0.3452,0.259,0.259,0.2352,0.2708,0.369,0.5238,0.5358,0.491,0.2054,0.0892,-0.012,-0.0804,-0.1072,-0.125,-0.0178,-0.009,-0.4722,-0.2844,-0.0206,-0.0058,0.2816,0.4692,0.78,1,0.9502,0.5542,0.566,0.7332,0.9238,0.9648,0.9002,0.525,0.3636,0.3608,0.305,0.39,0.5044,0.6598,0.7068,0.5484,0.2052,0.085,-0.047,-0.0822,-0.1466,-0.173,-0.1232,-0.044,-0.4556,-0.213,0.0606,0.0078,0.4246,0.6796,0.7884,0.8164,0.6516,0.3872,0.4276,0.4152,0.5832,0.8228,0.916,1,0.7542,0.6672,0.549,0.5738,0.6828,0.8414,0.7854,0.6144,0.3904,0.213,0.1166,0.0886,0.0948,0.1664,0.1882,0.1664,-0.2838,0.0332,0.2172,0.2094,0.6556,0.7104,0.7416,0.5538,0.2016,-0.0528,0.0058,-0.0842,0.0684,0.2368,0.2682,0.5616,0.7574,1,0.859,0.8004,0.7612,0.7142,0.636,0.589,0.589,0.2798,0.0528,-0.0646,-0.1898,-0.045,0.0684,0.2016,-0.4694,-0.0204,-0.0612,0.1428,0.3062,0.4694,0.8776,1,0.6734,0.5918,0.796,0.8368,0.8776,0.8776,0.551,0.4694,0.3062,0.1428,0.3878,0.3062,0.5918,0.6326,0.7142,0.2654,0.347,0.102,0.1836,-0.2244,-0.2244,-0.1428,-0.1836,0.2244,-0.3454,0.0546,0.1272,0.2728,0.4546,0.491,1,0.9636,0.9636,0.8182,0.8546,0.9636,0.9636,0.9272,0.709,0.5272,0.4546,0.491,0.5272,0.4546,0.709,0.7818,0.8182,0.491,0.4546,0.309,0.1636,0.1636,0.0546,0.1272,0.3454,0.1636,-0.5054,-0.3334,-0.0538,-0.0752,0.2688,0.4194,0.699,1,0.8494,0.3978,0.4624,0.4838,0.8064,0.8494,0.9354,0.4838,0.4194,0.3764,0.2904,0.4194,0.5268,0.699,0.7634,0.4624,0.2904,0.1828,0.0322,0.0322,-0.1612,-0.1398,-0.1398,-0.1182,-1,-1,-1,-1,-1,-1,-0.9758,-0.9758,-0.9518,-0.9168,-0.497,0.1978,0.8116,0.9716,0.8992,0.7392,0.5748,0.359,0.3052,0.223,0.1868,-0.109,-0.6296,-0.9124,-0.9398,-0.9496,-0.954,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9916,-0.9898,-0.9812,-0.9512,-0.6014,0.0738,0.6348,0.9028,0.9446,0.7722,0.647,0.3128,0.111,-0.1006,-0.4252,-0.6986,-0.9238,-0.9592,-0.9584,-0.9662,-0.9778,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9154,-0.822,-0.8488,-0.6588,-0.602,-0.6398,-0.6532,-0.622,-0.6488,-0.6332,-0.646,-0.58,-0.769,-0.8468,-0.914,-0.828,-0.9034,-0.4368,-0.09,-0.3,-0.6368,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,-0.9142,0.1142,1,1,1,-0.8572,-1,-1,-1,-1,-1,-0.8286,-0.7428,-0.3142,1,1,-0.0286,-0.6,-0.4572,-0.4858,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.48,0.0706,-0.4586,-0.2894,0.1176,0.1994,0.3032,1,0.149,0.4468,0.4468,0.8298,0.8724,0.8298,1,0.7872,0.4894,0.532,0.6596,0.4894,0.4894,0.3192,0.234,0.1064,0.1914,0.234,0.234,0.1064,-0.1064,-0.3618,-0.149,0.0638,-0.2766,-0.2766,-0.149,-0.2766,0.0212,-0.149,0.1064,-0.149,-0.1228,0.1228,0.4386,0.9122,0.9122,0.7192,1,0.7368,0.3158,0.4736,0.6316,0.7018,0.3158,0.2982,0.2106,-0.0526,0.4036,0.4912,0.2982,0.1754,-0.0176,-0.0526,-0.035,-0.0176,-0.2106,-0.3684,-0.0526,-0.1404,-0.1052,-0.228,-0.0878,-0.2456,0.2,0.3384,0.523,0.9538,0.8924,0.7384,1,0.877,0.5384,0.6,0.7692,0.7384,0.5692,0.477,0.2616,0.277,0.4462,0.5384,0.4308,0.2616,0.1384,0.2,0.1076,0.1692,-0.1076,-0.1384,0.2616,-0.0154,0.123,0.1692,0.1076,-0.1076,-0.0558,-1,-1,1,-1,-1,-0.8,-0.8334,-1,-0.4736,-0.0828,-0.0376,0.3684,0.233,-0.2632,-0.4286,0.173,0.203,0.7294,1,0.7294,0.7142,0.985,0.7744,0.7142,0.7142,0.639,0.4586,0.6692,0.8196,0.8046,0.6992,0.2632,0.0676,0.5188,0.4136,-0.3234,-0.3234,0.0226,0.3234,-0.0226,'9'
-0.1572,0.3312,0.5938,0.7924,0.7282,0.7222,0.1328,-0.0138,0.032,-0.0564,-0.0168,0.1328,0.1756,0.3404,0.5146,0.7344,1,0.9512,0.7558,0.6702,0.6702,0.7588,0.948,0.9298,0.829,0.6642,0.484,0.4748,0.603,0.548,0.5816,0.487,-0.3508,0.0026,0.3062,0.4608,0.856,0.767,0.555,0.3664,0.3456,0.1806,0.1754,0.2356,0.356,0.4058,0.555,0.8848,0.8796,1,0.8586,0.7382,0.7566,0.7198,0.8718,0.7644,0.8116,0.5864,0.5052,0.4528,0.4528,0.4528,0.6702,0.6964,-0.3616,-0.0296,0.2406,0.4234,0.7606,0.6242,0.5676,0.3024,0.2432,0.1042,0.076,0.0836,0.2124,0.2844,0.3668,0.6602,0.8018,1,0.8198,0.6576,0.6526,0.6936,0.7916,0.776,0.7348,0.4568,0.3076,0.3154,0.2768,0.3308,0.4338,0.5676,-0.3414,-0.0518,0.3094,0.6308,0.8194,0.5512,0.4396,0.2564,0.0386,-0.0226,-0.0704,0.0278,0.0624,0.2536,0.32,0.498,0.846,0.9682,1,0.915,0.769,0.7848,0.838,0.8274,0.668,0.4768,0.3626,0.227,0.1872,0.235,0.3652,0.4184,-0.4624,-0.1106,0.2278,0.6726,0.659,0.386,0.1296,0.004,-0.217,-0.3016,-0.2906,-0.2496,-0.0886,0.0014,0.0804,0.2606,0.5388,0.7518,0.9782,1,0.8854,0.8308,0.8554,0.8444,0.6972,0.468,0.3834,0.3016,0.2688,0.3316,0.397,0.558,-0.502,0.0098,0.274,0.6412,0.4742,0.0792,-0.1238,-0.3102,-0.502,-0.4854,-0.5216,-0.491,-0.4464,-0.2962,-0.1822,-0.1044,0.082,0.2962,0.7218,1,1,0.7942,0.8026,0.7802,0.7414,0.566,0.3602,0.2656,0.2156,0.2518,0.3436,0.4464,-0.2086,0.1656,0.6764,0.6842,0.4736,-0.0722,-0.5166,-0.5634,-0.805,-0.8206,-0.844,-0.7348,-0.7778,-0.727,-0.7544,-0.5984,-0.4346,-0.2164,0.0878,0.579,0.8908,1,0.6998,0.657,0.4814,0.3528,0.0682,-0.1852,-0.2358,-0.3256,-0.2554,-0.3528,0,0.55,0.65,0.8,0.6,0.25,0,0.05,0,-0.2,-0.05,-0.15,0.05,0.2,0.3,0.6,0.8,0.85,0.75,0.5,0.5,0.75,0.85,1,0.95,0.8,0.1,0.25,0.55,0.55,0.65,0.5,0.0244,0.561,0.8536,1,0.8536,0.7074,0.2682,0.2196,0.0244,-0.0732,0.1708,0.122,0.122,0.5122,0.5122,0.756,0.8536,0.9512,0.8048,0.8048,0.756,0.7074,0.9512,0.9024,0.8048,0.6098,0.317,0.4146,0.5122,0.3658,0.1708,-0.0732,-0.4726,-0.1868,0.1208,0.5824,0.5824,0.3186,0.033,-0.077,-0.2528,-0.3406,-0.2528,-0.2528,-0.1208,0.011,0.055,0.2748,0.4066,0.7802,0.912,1,0.7362,0.7582,0.7362,0.8022,0.5604,0.4066,0.3406,0.2308,0.2088,0.2968,0.3626,0.5164,-1,-1,-1,-1,-1,-0.9852,-0.9716,-0.9808,-0.9608,-0.9828,-0.7476,0.3278,0.803,0.8114,0.4824,0.3724,0.23,0.0784,-0.072,-0.1578,-0.292,-0.5796,-0.8482,-0.9582,-0.9842,-0.9824,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9874,-0.9842,-0.9876,-0.6946,-0.6864,-0.664,-0.2014,0.6378,0.8408,0.4898,0.2916,0.0592,-0.0902,-0.2076,-0.2972,-0.4874,-0.7898,-0.9268,-0.9706,-0.9828,-0.9836,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.8734,-0.88,-0.0334,0.6332,0.3932,-0.654,-0.58,-0.626,-0.572,-0.54,-0.6328,-0.5492,-0.5438,-0.4546,-0.631,-0.8074,-0.6634,-0.5634,-0.64,-0.54,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,-0.9714,1,1,1,1,1,1,-0.9428,-0.9428,-0.8286,-0.8286,-0.8,-0.7714,-0.7714,0.6286,0.6286,0.2,-0.5428,-0.6,-0.6572,-1,-1,-1,-1,-1,-1,-1,0.5936,0.6046,0.6364,0.6656,0.7218,0.788,0.8688,0.9366,0.987,0.7758,0.127,0.114,0.0976,0.0892,0.0808,0.0558,0.033,0.0264,0.0318,0.2888,-0.5466,0.247,-0.6818,-0.4642,-0.2444,-0.1306,0.0626,1,-0.9038,-0.6632,-0.5808,-0.2852,-0.2784,-0.2852,0.024,-0.0172,0.189,0.2578,0.409,0.6702,0.6976,0.78,1,0.9794,0.6908,0.5052,0.6082,0.512,0.4502,0.409,0.4708,0.4776,0.512,0.4296,0.5052,0.5396,0.1822,0.189,0.0172,-0.3608,-0.8268,-0.7134,-0.582,-0.3792,-0.3314,-0.2238,-0.2298,-0.2956,0.2598,0.3254,0.3672,0.618,0.7374,0.5402,0.9462,1,0.8388,0.6538,0.6776,0.7432,0.6478,0.803,0.6418,0.7134,0.582,0.7194,0.6716,0.6238,0.6896,0.5344,0.397,0.2956,-0.2826,-0.1666,-0.0434,-0.1304,-0.1376,-0.2972,-0.2464,0,0.4782,0.4348,0.4928,0.8188,0.9276,0.5798,0.8406,1,0.9202,0.826,0.674,0.8188,0.8334,0.6594,0.5942,0.616,0.7464,0.5072,0.529,0.6304,0.5942,0.4566,0.3986,-0.0144,-0.3706,-1,-1,1,-1,-1,-1,-0.4,-1,-0.1346,-0.0576,0.0576,-0.1924,-0.0384,0.1538,-0.0192,0.0192,0.5384,0.4808,0.6924,0.6924,0.9424,1,0.9038,0.5576,0.6346,0.5384,0.173,0.423,0.4616,0.3076,-0.0192,0.673,0.1346,0.327,-0.1924,0.0384,-0.2692,-0.0384,-0.6154,-0.8462,'10'
-0.1684,0.3196,0.5876,0.7492,0.646,0.653,0.0446,-0.0756,0.024,-0.103,-0.0584,0.0446,-0.0344,0.2646,0.4124,0.5396,1,0.9794,0.598,0.536,0.5738,0.7388,0.787,0.9072,0.8248,0.6564,0.5636,0.6152,0.6324,0.7388,0.7354,0.6082,-0.2932,0.1108,0.4104,0.5082,0.9706,0.8762,0.5732,0.29,0.2932,0.228,0.1336,0.2182,0.4006,0.3942,0.6026,0.9446,1,0.9186,0.8144,0.7198,0.6644,0.7134,0.974,0.8306,0.7004,0.6384,0.596,0.4268,0.4364,0.482,0.7232,0.71,-0.3364,-0.0078,0.2744,0.4418,0.7644,0.6186,0.693,0.3054,0.2186,0.1442,0.0698,0.0512,0.228,0.3798,0.4264,0.7334,0.879,1,0.6124,0.4542,0.5534,0.6682,0.6962,0.7488,0.6062,0.5162,0.2714,0.1814,0.2466,0.2776,0.29,0.4636,-0.3454,-0.0364,0.2878,0.5758,0.7758,0.6516,0.6484,0.2666,0.0636,0.0758,0.0546,0.0696,0.1212,0.403,0.4364,0.6242,1,0.9272,0.8818,0.7454,0.6758,0.7758,0.9122,0.8818,0.6728,0.4696,0.3606,0.2758,0.206,0.2454,0.3576,0.403,-0.4106,-0.176,0.2288,0.5982,0.698,0.519,0.4018,0.1906,-0.0382,-0.1524,-0.088,-0.047,0.1086,0.173,0.2816,0.5162,0.6656,0.9706,1,0.8826,0.7624,0.868,0.9326,0.8504,0.6862,0.5044,0.3696,0.2698,0.261,0.3314,0.3696,0.4722,-0.4632,-0.171,0.1592,0.6666,0.6696,0.2654,0.0412,-0.062,-0.2154,-0.289,-0.2566,-0.2654,-0.1622,-0.0266,0.062,0.118,0.348,0.7286,0.9764,1,0.7846,0.8968,0.8702,0.8762,0.6312,0.5074,0.3864,0.2802,0.239,0.2832,0.3628,0.4572,-0.2628,0.1216,0.4902,0.745,0.7608,0.0706,-0.1216,-0.255,-0.4588,-0.5882,-0.5098,-0.4784,-0.498,-0.3138,-0.3138,-0.145,-0.0392,0.3138,0.6862,0.8078,1,0.9372,0.8196,0.8274,0.5804,0.447,0.1138,0.0314,-0.145,-0.051,0.0196,0.0274,-0.077,0.4358,0.5384,0.7948,0.2308,0.3846,-0.1282,-0.1282,-0.0256,-0.1282,-0.0256,-0.1794,-0.077,0.2308,0.1794,0.3334,0.9488,0.8974,0.7948,0.6924,0.4358,0.8462,0.7948,1,0.7436,0.7436,0.6924,0.7948,0.5898,0.7948,0.8974,0.2308,-0.1628,0.3488,0.4884,0.7674,0.3954,0.5348,0.0232,-0.0232,-0.0232,-0.2558,-0.1162,-0.1162,-0.1162,0.3024,0.2094,0.4418,0.8604,1,0.5814,0.5814,0.5814,0.5348,0.907,0.814,0.7674,0.6744,0.721,0.6744,0.628,0.6744,0.4418,0.5814,-0.4782,-0.174,0.174,0.5652,0.6522,0.413,0.2826,0.1304,-0.087,-0.1956,-0.1522,-0.087,0.0652,0.1086,0.2392,0.4566,0.587,0.826,1,0.9782,0.7608,0.913,0.8914,0.913,0.5434,0.4782,0.3914,0.326,0.2392,0.3478,0.4348,0.4782,-1,-1,-1,-1,-0.989,-0.979,-0.9574,-0.9752,-0.9536,-0.9702,-0.7086,0.3466,0.6894,0.8884,0.5572,0.424,0.335,0.246,0.1752,0.0924,-0.0652,-0.4566,-0.7484,-0.9392,-0.9718,-0.9774,-0.9752,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9892,-0.9846,-0.9762,-0.982,-0.7842,-0.6366,-0.6176,-0.1548,0.48,0.8304,0.5652,0.527,0.332,0.3036,0.2396,0.0454,-0.1772,-0.6196,-0.8728,-0.9568,-0.9688,-0.9744,-0.9786,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.9034,-0.7368,-0.86,-0.23,0.8166,0.4732,-0.549,-0.6646,-0.6424,-0.7046,-0.6824,-0.5578,-0.5334,-0.4934,-0.476,-0.726,-0.924,-0.91,-0.57,-0.5268,-0.74,-0.7834,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,-0.9142,-1,1,1,1,1,1,-0.3714,-0.8,-0.9428,-1,-0.9714,-1,-0.8572,-0.6572,-0.0858,1,0.6858,-0.2858,-0.6858,-0.3428,-0.3142,-1,-1,-1,-1,-1,-1,0.5456,0.5608,0.5806,0.6148,0.664,0.7204,0.8002,0.8956,0.9806,0.912,0.3532,0.3218,0.3148,0.2752,0.2286,0.1922,0.1264,0.0508,-0.0066,0.181,-0.5466,0.0824,-0.655,-0.4334,-0.185,-0.0146,0.0986,1,-0.6234,-0.297,-0.1548,0.0712,0.1046,0.0712,0.1632,0.1966,0.3974,0.3054,0.3724,0.4812,0.6904,0.7908,0.9582,1,0.8662,0.7656,0.8662,0.8326,0.615,0.7322,0.8076,0.657,0.4476,0.5146,0.4728,0.4476,0.3892,0.3472,0.297,-0.3222,-0.9056,-0.7548,-0.7106,-0.4276,-0.3334,-0.3018,-0.371,-0.3018,0.0754,0.0378,0.132,0.371,0.4592,0.4842,0.7422,1,0.868,0.5598,0.7358,0.8176,0.7798,0.6478,0.6226,0.673,0.6982,0.6164,0.7798,0.7548,0.6792,0.5598,0.5724,0.3962,-0.1764,-0.0726,-0.0588,-0.1696,-0.1626,-0.1764,-0.2596,-0.038,0.308,0.3426,0.4118,0.6956,0.6402,0.647,0.737,0.8892,1,0.993,0.6124,0.5778,0.737,0.8132,0.7854,0.6332,0.4532,0.5778,0.5848,0.571,0.4186,0.4948,0.481,0.1142,-0.4188,-1,-1,1,-1,-1,-1,-0.4334,-1,-0.3762,0.211,0.266,0.4128,-0.0642,0.4128,0.266,0.1376,0.266,1,0.9816,0.7248,0.89,0.6698,0.6698,0.7432,0.578,0.7798,0.8348,0.7064,0.8532,0.5412,0.4312,0.0642,0.6514,0.6698,0.2478,-0.0642,-0.1926,-0.0458,0.0092,-0.5412,'10'
-0.0656,0.5068,0.4586,0.6828,0.931,1,0.6518,0.5828,0.138,0.0656,-0.1138,-0.2656,-0.2138,-0.1758,-0.1552,0.0448,0.2758,0.5932,0.5138,0.4862,0.3276,0.331,0.3586,0.4518,0.3586,0.1,-0.0068,-0.0828,-0.1758,-0.3482,-0.2724,-0.1138,-0.2098,0.2442,0.3822,0.5374,0.9626,1,0.6436,0.566,0.3218,0.1236,0.2126,0.161,0.1638,0.362,0.2672,0.385,0.7212,0.816,0.8994,0.885,0.5488,0.4598,0.4914,0.3592,0.3908,0.1724,0.161,-0.1522,-0.2758,-0.2702,-0.3506,-0.3304,-0.2128,0.2644,0.4438,0.5958,0.9848,1,0.4832,0.38,0.1946,0.0668,0.149,0.1276,0.0972,0.2644,0.1276,0.2402,0.6504,0.7022,0.9028,0.851,0.4802,0.3556,0.5016,0.3982,0.3678,0.0942,-0.0212,-0.304,-0.2706,-0.1914,-0.392,-0.2826,-0.2124,0.2054,0.5822,0.6232,0.952,0.7672,0.2124,0.0754,0.0172,-0.0684,-0.0068,0.024,0.0582,0.1028,0.0822,0.2432,0.4452,0.6542,0.7774,1,0.8938,0.8116,0.6028,0.5308,0.435,0.2432,-0.0514,-0.1816,-0.202,-0.3014,-0.1028,-0.0514,-0.4306,-0.1304,0.2918,0.544,0.5836,0.0482,-0.1672,-0.2322,-0.3314,-0.3682,-0.3598,-0.3116,-0.2522,-0.2096,-0.1246,0.0084,0.1304,0.2012,0.4986,0.7818,1,0.9746,0.8754,0.8074,0.8186,0.745,0.5212,0.4334,0.3088,0.3428,0.4362,0.4674,-0.516,0.0728,0.2858,0.519,0.414,-0.0292,-0.3528,-0.446,-0.4928,-0.5626,-0.5482,-0.5568,-0.5102,-0.4228,-0.379,-0.2916,-0.1486,-0.0846,0.2158,0.5306,0.8804,1,0.9884,0.8542,0.8922,0.898,0.7406,0.6326,0.5686,0.5714,0.6298,0.7142,-0.1328,0.593,0.8938,0.792,0.6548,-0.093,-0.5,-0.5486,-0.792,-0.8938,-0.8098,-0.8008,-0.792,-0.5708,-0.8274,-0.6592,-0.4778,-0.3318,-0.292,0.2566,0.7168,0.8762,0.9026,0.9646,1,0.7832,0.553,0.2212,0.1194,-0.0266,-0.1328,-0.0796,0.2272,0.7272,0.4546,0.6818,0.7728,0.7728,0.3182,-0.0454,0,0.0454,-0.091,-0.4546,-0.2728,-0.2272,0.2272,0.0454,0.4546,0.591,0.591,0.6818,0.591,0.4546,0.6818,1,0.9546,0.909,0.591,0.5,0.2728,0.1818,0.3636,0.4546,0.25,0.75,0.5834,0.7916,0.875,1,0.7084,0.75,0.25,0.1666,-0.2916,-0.25,-0.125,-0.125,-0.25,-0.2084,0.5,0.875,0.875,0.7084,0.4584,0.4584,0.125,0.4166,0.4166,0.375,-0.0416,-0.1666,-0.4166,-0.2084,-0.2916,-0.1666,-0.3932,-0.1686,0.3258,0.528,0.5956,0.0786,-0.0562,-0.1686,-0.3034,-0.3034,-0.2808,-0.2808,-0.1236,-0.1236,-0.1012,0.1012,0.1236,0.2808,0.618,0.8652,1,0.9102,0.8202,0.6854,0.7528,0.663,0.3034,0.2584,0.0786,0.0786,0.2134,0.191,-1,-1,-0.9848,-0.98,-0.9814,-0.9786,-0.9086,-0.7848,-0.7688,-0.829,-0.6844,0.4842,0.9418,0.939,0.7286,0.4788,0.2108,0.0682,-0.0032,-0.0592,-0.2752,-0.5008,-0.865,-0.9674,-0.9744,-0.9764,-0.9814,-1,-1,-1,-1,-1,-1,-1,-1,-0.9678,-0.9314,-0.9456,-0.9754,-0.5208,-0.4808,-0.664,-0.7338,-0.6032,0.2426,0.8832,0.8886,0.6854,0.4508,0.1892,0.248,0.6698,0.4784,-0.0752,-0.6652,-0.9078,-0.9644,-0.9662,-0.9718,-0.9772,-1,-1,-1,-1,-1,-1,-1,-1,-0.82,-0.5268,-0.7468,-0.8868,-0.2468,0.3632,0.0866,0.01,-0.15,-0.7734,-0.7468,-0.76,-0.768,-0.784,-0.78,-0.606,-0.384,-0.32,-0.512,-0.872,-0.6868,-0.71,-0.6434,-0.79,-0.89,-1,-1,-1,-1,-1,-1,-1,-1,-0.1714,-0.4858,1,1,1,1,-0.6,-0.4858,0.7142,0.8572,0.0572,-0.8858,-0.8572,-0.6286,-0.5142,-0.1714,-0.2858,-0.8,1,1,0.0286,-0.6572,-0.7714,-0.8286,-0.3142,-1,-1,-1,-1,-1,-1,0.8274,0.8708,0.8832,0.917,0.951,0.9758,1,1,0.9714,0.657,0.1806,0.0538,-0.0072,-0.0664,-0.1632,-0.2062,-0.2454,-0.32,-0.3394,0.2832,-0.5734,0.153,-0.642,-0.2462,0.1896,0.459,0.6702,1,-0.2674,-0.0832,0.146,0.2808,0.218,0.1416,0.3708,0.2898,0.5012,0.5506,0.7978,0.946,1,0.8338,0.9146,0.627,0.6314,0.7258,0.8786,0.8248,0.8158,0.7932,0.645,0.7394,0.9506,0.9956,0.7348,0.573,0.3708,0.3978,0.3078,-0.1326,-0.0496,0.045,0.1352,0.2118,0.0946,0.018,0.2748,0.4954,0.545,0.7972,1,0.9414,0.9414,0.7072,0.7658,0.6216,0.7972,0.7882,0.7478,0.7342,0.8198,0.991,0.8334,0.7432,0.8738,0.8738,0.8784,0.8244,0.5,0.473,0.3378,-0.0496,0.0066,-0.0156,0.2816,0.5344,0.051,0.0776,0.113,0.326,0.6762,0.929,1,0.9068,0.9158,0.561,0.3968,0.4988,0.5832,0.96,0.7428,0.5698,0.9866,0.7828,0.4368,0.3658,0.694,0.5388,0.4502,0.5832,0.6054,0.6054,0.4634,-0.0066,0.1434,-1,-1,1,-1,-1,-1,-0.0334,-1,0.5412,0.6146,0.4678,0.4862,0.0458,0.2844,0.3028,0.4312,0.5046,0.3762,0.945,0.9082,1,0.8348,0.3578,0.5596,0.3394,0.578,0.4862,0.3762,0.578,0.1926,0.7798,0.7982,0.3944,0.3762,0.2478,0.0276,-0.211,-0.0458,0.0642,-0.3394,'11'
-0.0648,0.472,0.557,0.6824,0.9194,0.8882,0.642,0.378,0.141,-0.047,-0.0872,0.123,0.114,0.1946,0.2438,0.3154,0.5838,0.9106,0.9866,1,0.9106,0.7852,0.7002,0.6868,0.5168,0.4004,0.217,0.1812,0.0336,0.0514,0.0604,0.217,-0.2942,0.0726,0.2802,0.4014,0.8132,0.6886,0.5328,0.2456,0.2214,0.0934,0.0416,0.1108,0.2146,0.1868,0.353,0.4982,0.6402,0.9758,0.9066,1,0.8166,0.789,0.834,0.6436,0.5468,0.3564,0.2352,0.1972,0.0762,0.0762,0.225,0.3218,-0.285,0.0762,0.3168,0.5222,0.8654,0.7098,0.462,0.3204,0.253,0.1116,0.0018,0.0266,0.2566,0.1576,0.246,0.508,0.7876,0.9752,0.8548,0.8762,1,0.8442,0.8796,0.6248,0.5504,0.4726,0.1788,-0.0266,0.2778,0.0974,0.1292,0.3806,-0.331,-0.007,0.3274,0.5388,0.7782,0.5634,0.0176,0.2218,0.0492,-0.1022,0.0212,-0.0916,-0.0176,0.162,0.1126,0.3098,0.6126,0.7464,1,0.9084,0.8626,0.7148,0.6902,0.7992,0.5246,0.2676,0.2254,0.0704,-0.0598,0.1268,0.0634,0.1056,-0.3788,-0.088,0.3824,0.6014,0.7378,0.3214,-0.1166,-0.1024,-0.2316,-0.3322,-0.2496,-0.1814,-0.21,-0.0844,0.0162,0.1346,0.3358,0.605,0.903,1,0.8994,0.6912,0.7378,0.6984,0.526,0.4398,0.2352,0.1634,0.1418,0.0844,0.2136,0.2208,-0.3622,-0.0226,0.4868,0.668,0.7132,0.1622,-0.1358,-0.4,-0.249,-0.6792,-0.2944,-0.2452,-0.4754,-0.0868,-0.1094,-0.117,0.2528,0.3886,0.7284,0.8982,1,0.834,0.9094,0.7774,0.8226,0.7698,0.3736,0.366,0.3358,0.2378,0.2754,0.2038,-0.1524,0.2096,0.6524,0.6952,0.7238,-0.0952,-0.3572,-0.419,-0.5904,-0.638,-0.581,-0.581,-0.6048,-0.4666,-0.4476,-0.538,-0.1858,-0.0334,0.3096,0.5714,1,0.9096,0.7,0.8,0.7952,0.6524,0.4428,0.081,0.0238,-0.1048,-0.2858,-0.2476,0.1516,0.697,0.5758,0.697,0.6364,0.6364,0.394,0.1516,-0.5758,-0.091,0.0304,0.0304,0.091,-0.2122,-0.1516,-0.0304,-0.1516,-0.0304,0.091,0.8788,1,0.7576,0.7576,0.5758,0.6364,0.4546,0.5152,0.4546,0.091,0.2728,0.091,0.3334,0.1162,0.5348,0.5814,0.7674,0.9534,0.8604,0.721,0.4418,0.3954,0.1628,0.0698,0.1628,0.1628,0.3024,0.3954,0.3488,0.721,0.8604,1,0.907,0.8604,0.721,0.628,0.7674,0.4418,0.4884,0.3024,0.1162,0.1162,0.1162,-0.0698,0.2558,-0.4216,-0.012,0.3734,0.5904,0.735,0.253,-0.1566,-0.1566,-0.3494,-0.4216,-0.3494,-0.2048,-0.2772,-0.2048,-0.012,0.0602,0.2772,0.494,1,1,0.8072,0.7832,0.759,0.7832,0.5904,0.5904,0.2772,0.253,0.229,0.1326,0.3254,0.2772,-1,-1,-1,-0.9812,-0.983,-0.9766,-0.9856,-0.9588,-0.8036,-0.8718,-0.757,0.6942,0.9704,0.9892,0.8914,0.7426,0.627,0.4718,0.2072,-0.0664,-0.2358,-0.383,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9772,-0.8136,-0.8296,-0.981,-0.8964,-0.5434,-0.7878,-0.7842,0.1918,0.805,0.9784,0.8532,0.5572,0.459,0.2832,0.0158,-0.1926,-0.3928,-0.6206,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8384,-0.3468,-0.36,-0.8134,-0.86,0.2066,0.36,-0.0234,-0.755,-0.62,-0.5776,-0.5926,-0.6426,-0.6222,-0.6946,-0.6856,-0.8346,-0.8456,-0.8256,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,0.3142,1,1,0.3428,-0.9142,-0.9714,-0.9428,-0.8572,-0.9428,-0.7714,-0.8286,-0.4858,0.0858,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.8026,0.8208,0.838,0.8762,0.8976,0.9314,0.9612,0.9782,0.967,0.7062,0.0078,-0.0078,-0.0212,-0.0304,-0.0278,-0.0466,-0.0418,-0.0688,-0.062,0.248,-0.5734,-0.0236,-0.805,-0.3938,0.194,0.5034,0.6918,1,-0.3804,-0.3676,-0.4274,0.1838,0.1196,0.1794,0.1966,0.2222,0.5812,0.5256,0.6196,0.5642,0.7522,0.624,0.5,0.4958,0.6368,0.5256,0.5598,0.5812,0.9102,0.735,0.7778,0.8418,0.9102,1,0.7778,0.7394,0.6624,0.5982,0.6496,0.0982,-0.159,-0.024,0.098,0.586,0.525,0.5512,0.5206,0.4728,0.5642,0.7342,0.8388,0.9652,1,0.865,0.6078,0.39,0.451,0.4946,0.5686,0.586,0.769,0.5642,0.8126,0.8824,0.7038,0.7124,0.3812,0.3246,0.39,0.1546,0.0152,-0.1808,-0.2956,-0.094,0.0994,0.1436,-0.0802,-0.1078,0.022,0.0856,0.3674,0.674,0.7266,1,0.906,0.7044,0.5082,0.3618,0.569,0.6298,0.5524,0.4944,0.8204,0.873,0.8094,0.5662,0.6492,0.6658,0.6712,0.3978,0.152,0.2486,0.3398,-0.094,-0.9822,-1,1,-1,-1,-1,-1,0.6666,-1,0.679,0.8024,0.605,0.284,-0.037,-0.1112,-0.2346,-0.0124,0.037,0.4568,0.9506,0.9012,1,0.9012,0.1604,-0.0618,0.3334,0.284,0.2592,0.3086,0.284,0.5556,0.5556,0.358,-0.037,-0.5556,-0.2346,-0.432,-0.3334,-0.0864,-0.0618,-0.3086,'11'
-0.313,0.0028,0.3276,0.6638,0.8986,0.684,0.5334,0.2986,0.1188,0.1392,0.087,0.0434,0.145,0.3276,0.345,0.5508,0.9392,1,0.9914,0.8348,0.8406,0.9478,0.8608,0.7334,0.4058,0.2492,0.2376,0.1392,0.145,0.2666,0.345,0.5188,-0.3242,0.009,0.3424,0.6728,0.8758,0.7242,0.703,0.303,0.106,0.1,0.1364,0.1242,0.2,0.4394,0.5394,0.7364,1,0.903,0.9484,0.8546,0.8818,0.9576,0.8546,0.706,0.4454,0.1758,0.0546,0.0576,0.0636,0.0516,0.203,0.406,-0.3018,0.011,0.286,0.605,0.782,1,0.9336,0.466,0.3586,0.308,0.4408,0.5102,0.8136,0.9116,0.8894,0.7726,0.6176,0.5418,0.4724,0.6304,0.7694,0.6872,0.7884,0.5418,0.2228,-0.0078,-0.0838,-0.1564,-0.1944,-0.011,-0.0774,-0.011,-0.3668,-0.1146,0.169,0.3982,0.639,0.9512,0.9742,1,0.6962,0.8482,0.8482,0.9512,0.6018,0.4614,0.212,0.0372,-0.0716,-0.0458,-0.0744,0.1806,0.3524,0.4814,0.4584,0.1432,-0.0716,-0.275,-0.2836,-0.298,-0.4814,-0.4012,-0.4584,-0.5472,-0.2954,-0.0156,0.2254,0.4766,0.8652,1,0.93,0.969,0.9612,0.9664,0.6632,0.2512,0.1218,-0.0388,-0.2072,-0.2098,-0.2512,-0.158,-0.1684,-0.088,0.1424,0.3108,0.2824,0.0544,-0.2512,-0.4508,-0.5052,-0.8238,-0.9716,-0.8886,-0.7746,-0.7876,-0.437,-0.0252,0.1714,0.421,1,0.9868,0.7078,0.9548,0.7742,0.421,0.2006,-0.1128,-0.3306,-0.4078,-0.5378,-0.5458,-0.4662,-0.4926,-0.4024,-0.2006,-0.004,0.065,-0.0784,-0.4582,-0.599,-0.7768,-0.8858,-0.9044,-0.9894,-0.8964,-0.8566,-0.8672,-0.1248,0.273,0.4898,0.7338,1,0.9946,0.775,0.8902,0.6268,0.144,-0.015,-0.4046,-0.358,-0.4898,-0.432,-0.4458,-0.3744,-0.402,-0.3992,-0.2866,0.059,0.026,-0.2182,-0.4074,-0.402,-0.5994,-0.7998,-0.7366,-0.7092,-0.8162,-0.8492,-0.7942,-0.4894,-0.1064,0.149,0.5744,0.6596,0.4894,0.4894,0.2766,0.1914,0.0638,-0.1064,0.0638,0.1914,0.234,0.234,0.6596,0.7022,1,0.8724,0.6596,0.7872,0.8724,0.9148,0.4468,0.4042,0.3618,0.149,-0.149,0.1914,0.234,0.1914,0.4042,-0.317,0.0732,0.317,0.5122,0.9512,0.756,0.561,0.2682,0.0244,0.2196,0.0732,0.0244,0.2682,0.2196,0.5122,0.6586,1,0.8536,1,0.9024,0.8536,0.8048,1,1,0.317,0.2682,0.317,0.122,-0.0244,0.4146,0.317,0.3658,-0.4216,-0.1084,0.1566,0.3494,0.494,0.9278,0.8796,0.9278,0.6626,0.6626,0.8554,1,0.759,0.6626,0.3012,0.1084,-0.0362,-0.012,0.0362,0.2772,0.3254,0.6626,0.6144,0.229,0.0362,-0.229,-0.3012,-0.1326,-0.4458,-0.1326,-0.0844,-0.2772,-1,-1,-1,-1,-1,-1,-1,-1,-0.9848,-0.9862,-0.3992,0.5222,0.9462,0.8698,0.523,0.3178,0.1404,0.008,0.096,0.0472,-0.1426,-0.3702,-0.7178,-0.8946,-0.9214,-0.9804,-0.9738,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9664,-0.9848,-0.3204,0.6094,0.8852,0.9008,0.502,0.7334,0.533,0.5108,0.4214,0.1928,-0.2306,-0.556,-0.8314,-0.9,-0.9156,-0.977,-0.9778,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.57,-0.94,-0.73,-0.554,-0.734,-0.752,-0.758,-0.666,-0.7364,-0.7382,-0.7256,-0.7438,-0.7382,-0.791,-0.84,-0.53,-0.7068,-0.7468,-0.82,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.1714,1,1,1,-0.9714,-0.9714,-0.6572,-0.3428,-0.1142,-0.1714,-0.6,-0.9142,-0.6572,-0.4286,0.0858,-0.3428,0.0858,0.0286,-0.9714,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.1942,-0.1894,-0.2026,-0.2174,-0.232,-0.2588,-0.3188,-0.4264,-0.6682,-0.6436,-0.4666,0.247,-0.1696,0.5482,0.3182,0.7724,0.8638,1,-0.087,0.2608,0.3914,0.4782,0.4348,0.3478,0.2608,0.5652,0.7826,0.9566,1,1,0.826,0.6086,0.6522,0.7392,0.826,0.826,0.7392,0.826,0.826,0.7392,0.6086,0.4348,0.3478,0.087,-0.087,-0.0434,-0.4782,0,-0.174,-0.3478,0.077,0.3654,0.6924,0.6346,0.2692,0.1924,0.1346,0.4038,0.9424,0.9038,0.923,1,0.7692,0.3654,0.3654,0.5384,0.7308,0.5962,0.5384,0.5576,0.673,0.5192,0.5192,0.1154,-0.327,-0.6154,-0.2308,-0.327,-0.6538,-0.2884,-0.173,-0.2116,0.0578,0.372,0.8348,0.5868,0.3224,0.2066,0.4214,0.6034,0.8512,1,0.9008,0.967,0.7024,0.3884,0.4546,0.5372,0.8182,0.7686,0.752,0.7686,0.7024,0.3884,0.0578,-0.0578,-0.5206,-0.5206,-0.3388,-0.5868,-0.6198,-0.4876,-0.124,-0.19,0.6714,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.0244,0.3984,0.3822,0.87,1,0.3658,0.6098,0.3496,0.6098,0.4634,0.1544,0.1708,0.3334,0.2682,0.1056,0.187,0.3984,0.4308,0.6098,0.626,0.3334,0.3008,0.317,0.4308,0.1708,0.5448,0.3334,0.2846,0.2846,0.3334,0.0732,-0.3984,'12'
-0.3286,0.0708,0.3682,0.5014,0.915,0.8696,0.405,0.1614,0.1926,0.0992,-0.0028,0.1444,0.1898,0.1898,0.4136,0.6232,0.7678,0.9462,0.898,0.745,0.8158,0.881,1,0.9348,0.6458,0.4334,0.3598,0.4192,0.3626,0.405,0.66,0.7706,-0.2644,0.121,0.4236,0.5924,0.9968,0.8504,0.8122,0.4268,0.363,0.2994,0.2548,0.2452,0.43,0.637,0.7198,1,0.8886,0.777,0.5988,0.621,0.7708,0.8662,0.949,0.7802,0.4204,0.2708,0.1974,0.1816,0.1274,0.2134,0.5254,0.602,-0.3516,-0.0454,0.2758,0.4424,0.6546,1,0.997,0.294,0.4484,0.4454,0.5394,0.797,0.8,0.8424,0.6424,0.4878,0.3394,0.2454,0.2696,0.4364,0.506,0.6576,0.691,0.603,0.2394,0.1,-0.0212,-0.0424,-0.0454,0,0.1606,0.2818,-0.4154,-0.1752,0.1924,0.3314,0.563,0.9914,0.8814,0.699,0.8002,0.971,1,0.725,0.5688,0.4124,0.1346,0.0072,0.0304,0.0652,0.126,0.262,0.4124,0.7134,0.6846,0.372,0.1144,0.0796,0.0218,0.068,0.097,0.1578,0.1374,0.039,-0.467,-0.186,0.1538,0.429,0.8184,1,0.7188,0.8096,0.8916,0.552,0.391,0.1508,0.0162,-0.1918,-0.227,-0.309,-0.2386,-0.303,-0.2094,0.0044,0.2884,0.265,0.303,-0.0014,-0.1626,-0.186,-0.183,-0.0658,-0.1186,-0.3294,-0.6838,-0.874,-0.2656,-0.0704,0.2602,0.6558,0.8888,1,0.7344,0.7372,0.7616,0.2384,0.0136,-0.046,-0.103,-0.1708,-0.2846,-0.3334,-0.328,-0.2466,-0.1626,0.1002,0.2494,0.13,-0.046,-0.1978,-0.271,-0.3224,-0.317,-0.3116,-0.4552,-0.7426,-0.9296,-0.794,-0.0648,0.2902,0.5222,0.768,0.8396,1,0.8192,0.8192,0.546,0.0204,-0.297,-0.3584,-0.5358,-0.5494,-0.611,-0.6792,-0.611,-0.5392,-0.5052,-0.4948,-0.2458,-0.215,-0.5836,-0.7064,-0.5802,-0.6348,-0.7134,-0.8192,-0.9556,-0.9216,-0.9864,-0.9762,-0.25,0.0416,0.4584,0.5,0.7916,0.7916,0.5416,0.2084,0.25,0,0.0834,0.2084,0.125,0.0416,0.3334,0.5416,0.7084,0.9166,0.7916,0.75,0.6666,0.8334,1,0.8334,0.5416,0.375,0.3334,0.5,0.25,0.4166,0.75,0.75,-0.434,-0.0944,0.1698,0.5094,0.7736,0.6982,0.3208,0.132,0.0944,-0.0188,0.0188,0.0944,0.0566,0.2076,0.3962,0.5094,0.7358,0.9622,0.8868,0.6982,0.7358,0.8868,1,0.8868,0.434,0.4716,0.3584,0.3962,0.3962,0.5094,0.6982,0.8114,-0.409,-0.0454,0.2272,0.4318,0.6136,1,1,0.1364,0.4546,0.4546,0.5228,0.8182,0.841,0.909,0.6818,0.3864,0.3182,0.159,0.2046,0.4318,0.5,0.591,0.6364,0.5682,0.2272,0,-0.0228,-0.0682,-0.091,-0.0454,0.091,0.2728,-1,-1,-1,-1,-1,-1,-0.9822,-0.9662,-0.8964,-0.7282,-0.5248,0.4164,0.9366,0.9192,0.6512,0.6136,0.4132,0.3534,0.2622,0.0496,-0.2568,-0.5816,-0.899,-0.9698,-0.9692,-0.9828,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9874,-0.9758,-0.9292,-0.7556,-0.5028,0.359,0.465,0.575,0.6444,0.902,0.7474,0.6816,0.2328,-0.0596,-0.4028,-0.7488,-0.94,-0.977,-0.9808,-0.9864,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8234,-0.9468,-0.84,-0.7034,-0.7068,-0.4956,-0.5824,-0.7578,-0.7534,-0.722,-0.7,-0.762,-0.798,-0.798,-0.85,-0.858,-0.8734,-0.84,-0.8934,-0.8934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,0.4,1,1,1,1,-0.9714,-0.7142,-0.4,-0.1714,-0.4858,-0.3714,-0.3714,-0.5142,-0.3428,0.1428,0.2858,-0.8572,-0.9428,-0.8858,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.1044,0.1344,0.131,0.1242,0.1064,0.0588,-0.098,-0.3516,-0.5642,-0.4132,-0.5066,0.1294,-0.291,-0.2384,0.3842,0.636,0.3974,0.3166,0.3334,0.7254,0.804,0.647,0.5294,0.451,0.5294,0.7254,0.9216,0.9216,0.9608,1,0.9216,0.7254,0.7254,0.804,0.9216,1,0.9216,0.8432,0.5686,0.4118,0.1764,-0.0588,-0.1372,-0.0196,-0.3726,-0.647,-0.1764,-0.098,0.0588,-0.2156,-0.1968,0.3114,0.7868,0.6394,0.246,0.1312,0.1804,0.3278,0.9344,0.9016,0.8852,0.9836,0.7868,0.4098,0.459,0.7378,0.9836,1,0.9508,0.754,0.5902,0.4426,0.2132,-0.2132,-0.459,-0.541,-0.5246,-0.7704,-0.3934,-0.0984,0.082,-0.2786,0.1964,0.5178,0.8928,0.75,0.125,0.1786,0.2858,0.3928,0.8214,0.9464,0.8392,1,0.6608,0.3928,0.5536,0.7142,0.8928,0.9642,0.75,0.7678,0.7322,0.5714,0.3572,0.0358,-0.0714,-0.4464,-0.4822,-0.625,-0.1786,0.125,0.4464,-0.1072,0.2258,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.3432,0.0746,0.2836,0.8806,0.612,0.1044,0.6418,0.4926,0.6716,0.4626,0.403,0.582,0.5224,0.7014,0.2238,0.1344,0.3432,0.7314,0.0448,0.3732,1,0.9104,0.612,0.1642,0.194,0.194,0.612,0.403,0.612,0.8508,0.194,-0.4926,'12'
-0.25,0.3396,0.287,0.2438,0.2438,0.2314,0.071,-0.0802,-0.3086,-0.4476,-0.4166,-0.2962,-0.503,-0.5186,-0.3734,-0.318,-0.1636,0.2038,0.6728,0.8056,1,0.9136,0.9074,0.8518,0.9784,0.9044,0.642,0.426,0.3426,0.429,0.4538,0.5524,-0.276,0.1124,0.179,0.2178,0.0984,0.2122,0.3288,-0.1152,-0.2178,-0.3314,-0.412,-0.3898,-0.5728,-0.5478,-0.4314,-0.226,-0.1096,0.1012,0.6366,0.6894,1,0.8614,0.7698,0.9612,0.9168,0.645,0.473,0.4064,0.4036,0.2982,0.4286,0.5284,-0.2032,0.2032,0.5188,0.5376,-0.05,0.4968,0.5718,0.5624,0.4312,0.15,0.1594,0.1,0.1062,0.2874,0.2968,0.5874,0.9532,0.9844,0.6624,0.4906,0.575,0.6688,0.7906,1,0.7062,0.6782,0.2594,0.1032,0.0718,0.1124,0.175,0.3906,-0.288,0.0316,0.6772,0.6652,-0.2912,0.276,0.7828,1,0.7074,0.2308,0.4028,0.5656,0.7044,0.9276,0.6862,0.7014,0.4782,0.3966,0.3274,-0.3634,-0.1524,0.0286,0.3786,0.5114,0.5414,0.457,0.2398,-0.074,-0.0286,-0.1464,-0.0046,0.1192,-0.1178,0.3532,1,0.899,-0.0804,-0.0392,0.4356,0.5626,0.2672,0.6336,0.7196,0.6074,0.828,0.8692,0.2898,0.1664,0.2112,0.4954,0.1776,0.1626,-0.4728,-0.4242,-0.0954,0.1776,0.4692,0.4616,-0.271,-0.5252,-0.615,-0.57,-0.0242,-0.0616,0.0524,0.4174,0.9146,0.7514,0.4602,-0.4912,-0.701,-0.468,-0.1728,0.5496,0.4446,0.402,1,0.8136,0.4214,-0.033,0.4098,0.4486,0.6116,0.2038,0.1146,-0.2038,0.2388,0.4446,0.534,0.103,-0.4564,-0.767,-0.969,-0.6816,-0.1806,-0.1146,0.2616,0.6348,1,0.8094,0.1318,-0.493,-0.5984,-0.4158,-0.286,0.2008,0.0304,-0.067,0.359,0.3346,-0.0264,-0.359,0.0792,0.14,0.3914,0.1724,0.075,-0.286,-0.2008,0.0466,0.209,0.0954,-0.217,-0.6876,-0.8742,-0.7364,-0.5902,-0.5334,-0.2654,0.4694,0.7142,0.4694,0.2654,0.347,0.2244,0.0612,-0.0204,-0.347,-0.1836,-0.0204,-0.0204,-0.102,0.0204,-0.1836,-0.102,0.3062,0.6734,0.9184,1,0.8368,0.8368,0.7552,0.9592,0.8776,0.5918,0.3878,0.4286,0.3878,0.4286,0.3878,-0.0256,0.641,0.6924,0.3846,0.2308,0.282,0.1794,0.077,-0.1282,-0.641,-0.077,0.1282,0.1282,-0.2308,-0.3846,-0.1282,-0.0256,0.3846,0.7436,0.7436,1,1,0.8462,0.641,0.8974,0.9488,0.5384,0.1794,0.282,0.3334,-0.0256,0.5384,-0.2188,0.25,1,0.875,-0.1562,0.125,0.625,0.6562,0.3124,0.8124,0.8124,0.0624,0.5624,0.5624,0.0938,0.0624,0.2188,0.4062,0.2188,0.1562,-0.4062,-0.7812,-0.6562,-0.125,0.125,0.125,-0.4376,-0.25,-0.4062,-0.375,0,0.125,-1,-1,-1,-1,-1,-1,-1,-1,-0.9786,-0.9454,-0.8492,-0.5406,-0.0558,0.302,0.551,0.6974,0.908,0.7954,-0.2986,-0.4358,-0.5228,-0.6728,-0.9344,-0.9762,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9768,-0.9582,-0.8956,-0.5392,0.2288,0.372,0.5568,0.8306,0.92,0.4204,-0.5336,-0.615,-0.695,-0.8142,-0.957,-0.9798,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.9668,-0.7634,-0.66,-0.431,-0.4474,-0.4982,-0.4656,-0.6056,-0.7128,-0.811,-0.811,-0.8146,-0.95,-0.92,-0.86,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.0858,1,1,1,1,-0.6858,-0.6286,-0.6572,-0.4286,1,1,-1,-0.1428,-0.1428,-0.4,-0.3714,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.4686,0.4896,0.5164,0.5534,0.5804,0.6152,0.653,0.7306,0.8058,0.3694,0.7978,0.7894,0.794,0.8206,0.8232,0.8256,0.8318,0.753,0.3272,-0.2078,-0.5466,0.3176,-0.9074,-0.7952,-0.8024,-0.4532,-0.1912,0.1416,-0.4924,0.077,0.0462,0.3076,0.1846,0.0924,0.1076,0.1846,0.123,0.1538,0.0616,0.077,0.477,0.0308,0.1846,0.2154,-0.123,0.3692,0.4616,0.4,0.8,0.6924,0.8154,0.8616,0.9076,0.8462,0.7076,0.8308,1,0.7538,0.6308,0.1384,0.1786,0.2858,0.1904,0.6786,0.738,0.6428,0.869,0.3572,1,0.8214,1,0.8928,0.881,0.631,0.1428,0.238,0.4642,0.4524,0.5238,0.1072,0.7142,0.738,0.762,0.5714,0.512,0.5714,0.381,0.3214,0.512,0.3452,0.0476,-0.6548,0.4312,0.9822,0.3334,0.4488,0.3156,0.1734,0.12,0.1288,0.2978,0.7778,0.9912,0.9734,1,0.5022,0.2266,0.3688,0.8488,0.9734,0.5466,0.6444,0.68,0.6088,0.4756,0.3512,-0.0756,0.04,0.0844,-0.1378,-0.0044,-0.0578,0.12,-0.2534,-0.9974,1,-1,-1,-1,-1,-1,-1,-1,-0.027,0.4054,0.6216,0.8108,0.6486,0.6216,0.7568,0.8378,0.8378,0.946,0.8918,0.8378,0.946,0.5136,0.2972,0.3244,0.8108,0.8918,0.973,0.8378,0.5946,0.3514,0.7028,0.5946,0.6756,1,0.8648,0.2162,0.2162,0.2162,0.5136,-0.3784,'13'
-0.5018,0.6574,0.7162,0.391,0.8166,0.7648,0.2388,0.128,-0.3738,-0.5364,-0.526,-0.384,-0.4636,-0.4914,-0.3772,-0.2698,-0.0934,0.2422,0.564,1,0.993,0.7058,0.744,0.8824,0.9758,0.7024,0.391,0.1384,0.2006,0.1488,0.2526,0.346,-0.2612,0.16,-0.0534,-0.0478,0.4008,0.3406,0.182,-0.1108,-0.234,-0.327,-0.4582,-0.3296,-0.5512,-0.4746,-0.3324,-0.2176,-0.0014,0.3024,0.5076,0.7538,0.9972,0.97,0.8222,0.9234,1,0.8248,0.606,0.5048,0.4336,0.4172,0.5322,0.5842,-0.2492,0.1334,0.084,0.1276,0.2928,0.6086,0.7304,0.229,-0.055,-0.0434,-0.0144,-0.0202,-0.2202,0.0202,0.1044,0.3072,0.6058,0.742,0.8348,0.8028,0.6754,0.7856,0.8696,1,0.8956,0.6492,0.4086,0.4116,0.3044,0.3914,0.4898,0.6928,-0.2444,0.0986,0.4234,0.4234,0.0622,0.7936,0.7996,0.7966,0.5812,0.5054,0.4568,0.563,0.7056,1,0.8544,0.8878,0.651,0.5356,0.217,0.2808,0.2534,0.4658,0.7664,0.818,0.7846,0.5084,0.2078,0.2322,0.1836,0.2262,0.478,0.5478,-0.1584,0.1986,0.796,0.7122,0.2714,0.7122,0.6138,0.734,0.5118,0.7194,0.8032,1,0.8944,0.938,0.326,0.337,0.377,-0.1256,-0.184,-0.1948,-0.1912,0.1038,0.2276,0.5774,0.4062,0.3042,0.0018,-0.031,-0.1074,0.173,0.4826,0.399,0.137,0.4814,0.7962,0.6556,0.3962,-0.4814,-0.5926,-0.3148,-0.1112,0.6148,0.526,0.5,1,0.8148,0.163,0.3296,0.5852,0.5666,-0.237,-0.0518,-0.0962,0.1444,0.3888,0.4666,0.526,-0.0038,-0.3518,-0.6888,-0.8296,-0.2888,-0.3038,-0.337,0.3892,0.8054,1,0.7648,0.172,-0.7964,-0.5022,-0.3756,-0.2444,0.172,0.0316,0.3846,0.7466,0.4028,-0.0362,-0.1086,0.2714,0.2624,-0.3756,-0.4344,-0.3484,-0.2714,-0.2172,0.0272,-0.1402,-0.199,-0.5656,-0.9502,-0.896,-0.8144,-0.6924,-0.6788,-0.3954,0.7674,1,0.721,0.8604,0.7674,0.4884,0.4418,-0.1162,-0.0698,-0.1162,-0.0232,-0.0698,-0.2558,-0.5814,-0.1628,-0.0232,-0.0698,0.2558,0.3488,0.2094,-0.0232,-0.0698,0.5348,0.4884,0.0232,0.0232,-0.2094,0.0232,-0.0698,-0.1162,-0.2558,-0.45,0.85,1,0.5,0.8,0.7,0.45,0.4,-0.35,-0.55,-0.7,-0.35,-0.15,-0.1,-0.4,-0.2,-0.3,0.35,0.65,0.95,0.85,0.5,0.6,0.6,0.75,0.4,-0.15,-0.3,-0.15,-0.4,-0.15,-0.35,-0.2064,0.2064,0.8412,0.746,0.619,0.9366,0.746,0.5556,0.6508,1,0.9682,0.7142,0.7142,0.6508,0.1746,0.365,0.2698,-0.1428,-0.3968,-0.5238,-0.5238,-0.5238,-0.0794,0.1428,0.3016,0.1428,-0.0476,-0.0476,0.0794,0.3334,0.5238,0.3016,-1,-1,-1,-1,-1,-1,-1,-1,-0.972,-0.981,-0.8692,-0.531,-0.2196,0.3264,0.6288,0.9242,0.7654,0.7336,-0.012,-0.3882,-0.516,-0.6328,-0.8572,-0.964,-0.977,-0.962,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9782,-0.9806,-0.923,-0.7402,-0.1778,0.4526,0.5506,0.7906,0.7156,0.5704,-0.4344,-0.67,-0.747,-0.8302,-0.9326,-0.9738,-0.9774,-0.9678,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8418,-0.9568,-0.8568,-0.7074,-0.2964,-0.34,-0.3982,-0.491,-0.5656,-0.5964,-0.8456,-0.882,-0.8964,-0.982,-0.9834,-0.8868,-0.92,-0.92,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3142,-0.8,1,1,1,-0.5142,-0.5428,-0.5142,-0.3428,1,1,-0.8572,-0.6286,-0.3142,-0.5142,-0.7428,-0.8858,-0.8572,-1,-1,-1,-1,-1,-1,-1,0.6646,0.673,0.6934,0.7116,0.7318,0.7458,0.764,0.8074,0.9428,0.5072,0.4864,0.5076,0.5498,0.5946,0.6496,0.7128,0.717,0.737,0.4504,-0.2412,-0.5466,0.3058,-0.9206,-0.8008,-0.7418,-0.7228,-0.7216,-0.4834,-0.0894,0.187,0.3984,0.561,0.5448,0.691,1,0.87,0.935,0.5934,0.496,0.6098,0.7236,0.4634,0.187,0.2846,0.5284,0.2682,-0.0082,0.187,0.2032,0.3984,0.0894,0.2032,0.1056,0.1544,0.1056,0.3822,0.4146,0.4634,-0.0894,-0.252,-0.0092,-0.1192,0.2844,1,0.6146,0.2478,0.3944,0.633,0.8166,0.7614,0.7248,0.4678,0.4862,0.7614,0.266,0.3028,0.5964,0.1744,0.3578,0.3944,0.2294,0.2294,0.2844,0.2844,0.4678,0.3762,0.4862,0.4128,0.4128,-0.101,-0.0826,-0.3394,0.0796,0.8068,0.9204,0.9886,0.9318,0.659,0.6932,0.5796,0.5,0.7386,1,0.625,0.75,0.6704,0.2614,0.466,0.3182,0.4432,0.375,0.5228,0.3296,0.4432,0.2728,0.466,0,0.375,0.2954,0.4432,0.1704,0.2046,-0.216,-0.5568,-0.9912,1,-1,-1,-1,-1,-1,-1,-1,0.011,0.4286,0.4726,0.5824,0.5824,0.6044,0.4286,0.6704,0.6264,0.6264,0.7362,0.4286,0.4946,0.3406,0.3406,0.7582,0.6484,0.5164,0.4946,0.8242,1,0.6704,0.5384,0.5164,0.6264,0.2088,0.4946,0.4946,0.5824,0.3626,0.3846,-0.5824,'13'
-0.3972,0.038,0.0458,0.0406,0.3736,0.3342,0.0354,-0.114,-0.1534,-0.308,-0.3682,-0.2556,-0.439,-0.4286,-0.2032,-0.1952,-0.017,0.1822,0.3656,0.8138,0.8742,1,0.9292,1,0.9712,0.903,0.6698,0.6174,0.5334,0.5938,0.7038,0.8296,-0.2826,0.1032,0.182,0.2336,0.1576,0.2718,0.3696,-0.0978,-0.2066,-0.3586,-0.4484,-0.4104,-0.6548,-0.5434,-0.432,-0.2718,-0.182,0.1142,0.5434,0.6956,1,0.951,0.8994,0.9538,0.981,0.8722,0.7038,0.5734,0.4782,0.5408,0.731,0.7554,-0.321,-0.0354,0.5022,0.488,-0.1344,0.57,0.5586,0.1626,-0.041,-0.058,-0.205,-0.0694,-0.075,-0.2644,0.0664,0.109,0.2786,0.7228,0.7284,0.9152,0.7284,0.7596,0.8472,0.918,1,0.703,0.454,0.4512,0.3494,0.42,0.5276,0.6182,-0.3344,0.1812,0.8174,0.7614,-0.0692,0.3932,0.6406,0.735,0.2578,0.1164,0.0662,0.2518,0.0722,0.2812,0.5406,0.9028,0.9322,1,0.726,0.3726,0.4462,0.62,0.7556,0.9322,0.8998,0.8026,0.464,0.3844,0.3136,0.3992,0.5876,0.5582,-0.1964,0.4536,0.925,0.7714,-0.0608,0.1608,0.3108,0.375,-0.0536,-0.3678,-0.1892,-0.0892,0.0642,0.75,0.8322,0.8392,0.85,0.8178,0.5608,0.225,0.1786,0.2428,0.5428,0.8858,1,0.4392,0.0322,0,-0.1142,-0.2108,-0.1714,-0.1358,0.0364,0.4378,1,0.805,0.3422,0.174,-0.304,-0.7056,-0.6902,-0.4456,-0.587,-0.5296,0.327,0.8508,0.7858,0.6674,0.6328,0.912,0.7974,0.5144,0.1854,0.3232,0.457,0.6022,0.7208,0.4646,-0.4034,-0.5296,-0.5984,-0.6674,-0.847,-0.7744,-0.1794,0.3294,1,0.8264,-0.2386,0.1204,0.5502,0.5464,0.353,0.0138,0.0454,0.1794,0.4832,0.9488,0.925,0.8462,0.507,0.5346,0.2742,-0.2544,-0.1992,-0.1084,0.2978,0.4044,0.4872,0.4636,0.002,-0.144,-0.2938,-0.2938,-0.2584,-0.2032,-0.5744,0.1064,0.2766,0.0638,0.2766,0.234,0.0638,-0.0212,-0.234,-0.2766,-0.2766,-0.234,-0.3192,-0.234,-0.1914,-0.149,0.0638,0.1914,0.532,0.8724,0.9574,0.9574,0.9574,1,1,0.8724,0.617,0.5744,0.4468,0.5744,0.6596,0.8298,-0.4468,0.1064,0.1064,-0.149,0.234,0.3192,0.1064,-0.0638,-0.149,-0.234,-0.2766,-0.2766,-0.3618,-0.3192,-0.1914,-0.0212,0.0638,0.1914,0.4468,0.8724,0.8724,1,0.9148,1,0.9148,0.9574,0.7022,0.6596,0.617,0.5744,0.8298,0.9148,-0.246,0.5738,1,0.5738,0.1476,-0.4426,-0.1476,0.2132,0.0164,-0.1804,0.1148,0.1804,0.1476,0.8032,0.836,0.836,0.6066,0.4754,0.4426,-0.3442,-0.1148,0.1476,-0.0492,0.705,0.8032,0.377,0.1148,0.082,-0.0164,-0.246,0.082,0.1804,-1,-1,-1,-1,-1,-1,-0.9798,-0.9818,-0.9528,-0.7244,-0.7048,-0.3426,-0.0744,0.0952,0.4682,0.7,0.8878,0.9332,-0.1682,-0.4926,-0.4906,-0.154,-0.8014,-0.9506,-0.969,-0.973,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9836,-0.9838,-0.9528,-0.8038,-0.5946,0.386,0.792,0.5706,0.406,0.5626,0.4396,0.3578,-0.5246,-0.7164,-0.7086,-0.424,-0.8746,-0.95,-0.9552,-0.9688,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.913,-0.9134,-0.6768,-0.6368,-0.2734,-0.27,-0.216,-0.312,-0.3874,-0.5928,-0.662,-0.742,-0.8492,-0.9092,-0.8874,-0.8656,-0.84,-0.53,-0.51,-0.6934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4,-0.0572,1,1,1,1,-0.8858,-0.9714,-0.8286,-0.8,-0.9428,1,1,-0.8572,1,1,1,-0.6572,-0.7714,-0.8,-1,-1,-1,-1,-1,-1,-1,0.8708,0.868,0.8622,0.8366,0.8436,0.8412,0.8494,0.8686,0.8952,0.6428,1,1,0.998,1,0.9966,0.9798,0.9652,0.9146,0.746,0.1368,-0.52,0.2706,-0.6104,-0.2884,0.1702,0.5802,0.944,-0.0834,-0.4444,0.4556,0.4778,0.8,0.2222,0.0778,-0.1444,0.1222,0.3,0.9222,1,0.8778,0.8666,0.3556,0.2444,0.2112,0.5444,0.5778,0.2444,0.2334,0.3666,0.3222,-0.0778,-0.0334,-0.2,-0.1778,-0.0444,-0.0334,-0.0666,-0.1222,-0.3888,-0.5778,0.0948,0.8614,1,0.876,0.3284,0.1314,-0.0584,0.1898,0.343,0.9782,1,0.9854,0.9636,0.7738,0.5548,0.5986,0.8686,0.854,0.6934,0.657,0.6716,0.416,0.124,-0.0438,-0.2628,-0.3066,-0.2846,-0.3066,-0.2628,-0.0802,-0.0656,-0.6716,-0.0454,0.3116,0.5,0.2792,-0.026,-0.0324,-0.0584,0,0.1688,0.8116,1,0.9156,0.9546,0.7858,0.5714,0.7338,0.8572,0.909,0.7792,0.7662,0.526,0.5454,0.2988,-0.0064,-0.2598,-0.3506,-0.3962,-0.4416,-0.1948,0.2468,-0.052,-0.3766,-0.7432,-1,1,-1,-0.8,-1,-1,-0.4334,-1,-0.1052,0.0702,0.3334,0.6666,0.8246,0.5438,0.5088,0.965,0.614,0.5438,0.2632,0.386,0.8246,0.8246,1,0.8596,0.5438,0.1228,0.4386,0.1578,0.2632,0.228,0.5438,0.193,0.4386,0.0878,0.2982,0.4912,0.579,-0.0878,-0.1754,-0.3508,'14'
-0.2488,0.2124,0.088,-0.07,0.417,0.4378,0.0932,0.0284,-0.259,-0.3704,-0.2902,-0.3056,-0.3808,-0.3704,-0.3006,-0.1892,0.0466,0.1554,0.5336,0.7436,0.9974,0.9352,0.9352,0.9716,1,0.9404,0.8704,0.6424,0.557,0.557,0.7176,0.7564,-0.276,0.1302,-0.0572,0.0182,0.3724,0.3178,0.276,0.0156,-0.1068,-0.2188,-0.3204,-0.211,-0.4844,-0.4818,-0.1016,-0.1954,-0.0598,0.4376,0.5572,0.8386,0.7942,0.8802,0.8698,0.8464,1,0.8334,0.7552,0.6614,0.6198,0.5104,0.6198,0.6876,-0.28,0.1062,0.0896,0.142,0.2496,0.6468,0.7794,0.3242,-0.029,0.1006,0.051,0.0868,-0.1006,0.0896,0.2082,0.3296,0.6414,0.8482,0.978,1,0.6634,0.7048,0.8344,0.9338,0.9034,0.8262,0.6332,0.4676,0.338,0.2718,0.36,0.4896,-0.3664,-0.076,0.2644,0.2514,-0.0392,0.6048,0.5994,0.3612,0.1832,0.2016,0.102,0.102,0.144,0.2198,0.4896,0.6702,1,0.8586,0.5472,0.4738,0.3664,0.4634,0.6624,0.7748,0.8376,0.6178,0.2958,0.2094,0.1126,0.0916,0.1702,0.343,-0.0664,0.39,0.8464,0.7428,0.332,0.0374,-0.0912,-0.3112,-0.4606,-0.5186,-0.4896,-0.2532,-0.307,0.4606,0.7884,1,0.9876,0.805,0.5478,0.1328,0.2074,0.5726,0.693,0.8258,0.5146,0.1784,-0.0498,-0.2614,-0.3984,-0.5186,-0.4772,-0.3734,0.1326,0.555,0.9506,0.8516,0.3662,-0.0292,-0.2584,-0.245,-0.3798,-0.5596,-0.5192,-0.191,-0.1956,0.663,0.964,0.9192,0.7348,1,0.4248,-0.0966,0.0832,0.4292,0.4742,0.582,0.209,0.0068,-0.4382,-0.7528,-0.7932,-0.9146,-0.8292,-0.5596,-0.0284,0.3934,1,0.8862,-0.2986,0.1184,0.654,0.9526,0.6018,0.1848,-0.09,0.09,0.2986,0.583,0.9526,0.782,0.5118,0.1232,-0.1516,-0.2702,-0.2418,-0.2844,-0.0094,0.4124,0.5498,0.2702,0.1042,-0.1374,-0.4928,-0.6304,-0.654,-0.7062,0.0196,0.4902,0.451,0.1764,0.4902,0.451,0.1764,0.1764,-0.098,-0.1372,0.0588,0.0196,-0.1764,-0.1372,0.098,0.0588,0.1764,0.4902,0.6078,0.7254,0.6862,1,0.9608,0.804,1,1,0.804,0.6078,0.5686,0.5686,0.647,0.647,-0.3878,0.0204,0.0204,-0.0612,0.2654,0.3062,0.0612,-0.1428,-0.1836,-0.3062,-0.2654,-0.2244,-0.347,-0.4286,-0.2244,-0.1836,-0.0204,0.3062,0.3878,0.7142,0.9592,1,0.8776,0.9592,1,1,0.8776,0.6734,0.551,0.6326,0.7552,0.8776,-0.1562,0.4062,0.8124,0.6562,0.0938,0.3124,0.3438,0.0938,-0.4062,-0.3438,-0.2812,-0.1562,-0.0624,0.625,0.875,1,0.9688,0.375,0.4062,0.2812,0.1562,0.25,0.4376,0.7188,0.7188,0.125,-0.0312,-0.1876,-0.1876,-0.125,-0.0312,-0.1876,-1,-1,-1,-1,-1,-1,-1,-0.9652,-0.8572,-0.758,-0.478,0.0268,0.637,0.939,0.807,0.8148,0.6218,0.3504,-0.3298,-0.3744,0.0268,-0.1956,-0.8626,-0.9422,-0.9554,-0.9564,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9778,-0.95,-0.875,-0.5798,0.1514,0.5338,0.8966,0.3068,0.3428,0.1738,-0.2672,-0.7478,-0.7684,-0.5686,-0.6878,-0.9296,-0.9548,-0.967,-0.9674,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9214,-0.8914,-0.8214,-0.4582,-0.2854,-0.3414,-0.4414,-0.467,-0.5014,-0.467,-0.6046,-0.9008,-0.9118,-0.7718,-0.7808,-0.6108,-0.6208,-0.6976,-0.6408,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6286,0.1714,1,1,1,-0.8,-0.8286,-0.7714,-0.5714,-0.8,1,1,0.2572,1,1,-0.4572,-0.5142,-0.7142,-0.7428,-1,-1,-1,-1,-1,-1,-1,0.8398,0.849,0.8508,0.825,0.814,0.827,0.8528,0.9128,1,0.6868,0.9388,0.939,0.9518,0.9504,0.9398,0.9316,0.9132,0.8704,0.6832,0.0998,-0.56,0.2824,-0.532,-0.5036,0.1286,0.4834,0.3794,0.4416,0.0098,0.3398,0.398,0.3786,0.0486,-0.2234,-0.3204,-0.0486,0.1844,0.6116,0.864,0.8834,1,0.8834,0.5728,0.7476,0.9418,1,0.9806,0.8446,0.5728,0.3786,0.0874,-0.4174,-0.4368,-0.3592,-0.4952,0.0292,-0.1068,-0.1456,-0.165,-0.2038,0.1092,0.4118,0.395,0.1092,-0.0588,-0.1932,-0.1092,-0.0252,0.2436,0.4622,1,0.8992,1,0.7648,0.563,0.5966,0.9664,0.9664,0.6974,0.5798,0.479,0.4118,0.21,-0.0756,-0.311,-0.3614,-0.0252,0.1428,0.21,0.042,-0.3278,-0.5798,0.1764,0.2268,0.4286,0.311,-0.1092,-0.1092,-0.042,0.0756,0.1932,0.5126,1,0.8992,0.9328,0.7142,0.5126,0.5966,0.9328,0.8992,0.6806,0.3446,0.3614,0.4286,0.0252,-0.1596,-0.3782,-0.5294,-0.2436,0.0588,-0.042,-0.0588,-0.311,-0.4286,-0.4012,-1,-1,1,-1,-0.4,-1,-0.8,-1,-0.1346,0.173,-0.0576,0.3462,0.5192,1,0.8846,0.5192,0.2692,0.3076,0.3462,0.327,0.327,0.327,0.577,0.5192,0.577,0.2884,0.4424,0.577,0.6154,0.827,0.5384,0.423,0.3076,0.1154,0.173,0.2116,0.1924,0.077,0.1538,-0.3076,'14'
-0.3508,-0.0886,0.2132,0.4558,0.6984,1,0.9278,0.3574,0.5278,0.8164,0.8722,0.4558,0.2558,0.0984,0.0164,-0.1016,-0.1278,-0.0558,0.0622,0.236,0.3672,0.446,0.4492,0.3246,0.1148,0.0394,0.0066,0.0852,0.1804,0.3312,0.518,0.436,-0.3068,0.0206,0.269,0.6,0.7932,1,0.9656,0.5794,0.8104,0.831,0.3206,-0.1068,-0.0896,-0.162,-0.3138,-0.4104,-0.3344,-0.3896,-0.4,-0.0552,0.0482,0.169,0.1448,0.1172,-0.1104,-0.2586,-0.2932,-0.1206,0.0242,0.1276,0.4206,0.6034,-0.2814,0.0382,0.3974,0.7968,1,0.942,0.8802,0.9818,0.873,0.8366,-0.0344,-0.205,-0.2268,-0.4556,-0.5462,-0.5608,-0.5028,-0.5754,-0.4664,-0.2232,-0.0636,-0.0418,0.02,-0.1906,-0.481,-0.4774,-0.5608,-0.568,-0.205,0.089,0.285,0.4882,-0.3522,-0.0514,0.37,0.8442,0.9504,0.7098,0.9504,1,0.5682,0.3628,0.0478,-0.2318,-0.384,-0.3982,-0.5256,-0.6318,-0.6176,-0.5292,-0.5434,-0.338,-0.154,0.0548,0.016,-0.4408,-0.5646,-0.6354,-0.7098,-0.6778,-0.5788,-0.3098,-0.1292,0.147,-0.3384,-0.0978,0.485,1,0.985,0.6616,0.891,0.6466,0.4474,-0.0564,-0.233,-0.436,-0.5714,-0.5602,-0.6804,-0.7894,-0.7482,-0.639,-0.6542,-0.4624,-0.139,-0.0188,0.0376,-0.3046,-0.5526,-0.718,-0.8046,-0.7444,-0.7294,-0.5076,-0.1954,0.0714,-0.3056,0.2936,0.5794,1,0.8374,0.6588,0.7104,0.365,0.0634,-0.3412,-0.377,-0.5516,-0.6072,-0.746,-0.8928,-0.9444,-0.738,-0.881,-0.869,-0.7698,-0.4842,-0.3572,-0.2104,-0.385,-0.762,-0.8492,-0.8214,-0.7936,-0.8174,-0.8056,-0.627,-0.4484,0.1286,0.597,0.7812,1,0.8694,0.8694,0.9732,0.5086,-0.2784,-0.4588,-0.5316,-0.5816,-0.5048,-0.689,-0.7312,-0.5624,-0.547,-0.593,-0.739,-0.5356,-0.5892,-0.4972,-0.3398,-0.382,-0.4588,-0.6584,-0.7006,-0.6968,-0.7736,-0.8388,-0.6776,-0.5394,-0.3684,0,0.2106,0.6316,0.7894,1,1,0.6842,0.5264,0.7894,0.9474,0.579,0.6842,0.421,0.2106,0.2106,0,0.1578,0.1578,0.421,0.421,0.421,0.5264,0.4736,0.2106,0.1052,0.0526,0.1578,0.2106,0.3684,0.5264,0.421,-0.3334,-0.0834,0.25,0.2084,0.7084,1,1,0.2916,0.4584,0.7084,0.8334,0.75,0.375,0.1666,0.125,-0.0834,0.0834,0.2084,0.0416,0.3334,0.5416,0.5416,0.5416,0.25,0.375,0.2084,0.0416,0.25,0.375,0.4166,0.7084,0.375,-0.3334,-0.1026,0.4616,1,1,0.6666,0.923,0.718,0.4616,-0.077,-0.2564,-0.4102,-0.4872,-0.5128,-0.7436,-0.8206,-0.718,-0.4872,-0.5898,-0.359,-0.1282,0.1794,0.0256,-0.3076,-0.359,-0.718,-0.6924,-0.6154,-0.718,-0.4616,-0.1794,0.0512,-1,-1,-1,-0.987,-0.9806,-0.9842,-0.9792,-0.982,-0.9814,-0.9864,-0.8052,0.3098,0.8828,0.8152,0.9424,0.9532,0.8044,0.5758,0.3616,0.1144,-0.1322,-0.5068,-0.8454,-0.9496,-0.967,-0.9698,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.988,-0.9832,-0.8026,-0.9754,-0.9176,-0.9794,-0.9852,-0.8592,0.4214,0.9184,0.6344,0.6194,0.5262,0.3312,-0.006,-0.2566,-0.4668,-0.5984,-0.767,-0.9062,-0.9732,-0.9774,-0.9802,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.85,-0.1868,-0.3768,-0.3934,-0.5868,-0.84,-0.78,-0.6756,-0.6712,-0.7556,-0.7668,-0.7646,-0.7712,-0.7668,-0.7824,-0.8,-0.7956,-0.8178,-0.8134,-0.8234,-0.78,-0.8068,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,0.8286,-0.4,1,0.1428,1,1,-0.7142,-0.7714,-0.9142,-0.8286,-0.9142,-0.4858,-0.5142,-0.6858,-0.4858,-0.1142,-0.0286,-0.1142,-1,-0.9142,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.22,-0.1408,-0.134,-0.1432,-0.0974,-0.035,-0.003,-0.0074,-0.1138,-0.1558,-0.4934,0.047,-0.8612,-0.3096,0.4408,0.6018,0.9924,1,-0.678,-0.5294,-0.6038,0.0836,0.0712,0.0774,0.0154,0.1208,0.2446,0.1702,0.3188,0.548,0.6532,0.3126,0.4614,0.486,0.7152,0.7894,0.8762,0.6346,0.8452,0.9318,0.6532,0.6532,0.7894,0.938,0.8142,0.6966,0.7338,0.7956,1,0.5418,-0.3256,-0.1758,-0.124,0.1412,0.0374,0.4178,0.5504,0.5332,0.4122,0.487,0.66,0.804,0.3544,0.3142,0.3948,0.879,1,0.8156,0.3602,0.6714,0.6196,0.4352,0.3488,0.343,0.5216,0.6714,0.268,0.3544,0.6368,0.8616,0.7982,0.6542,-0.037,0.293,0.8114,0.9124,0.9528,0.697,0.697,0.7172,0.5286,0.6566,1,0.798,0.8856,0.4748,0.5556,0.4344,0.4748,0.4344,0.6632,0.596,0.596,0.293,0.2458,0.1314,0.2592,0.3334,0.3198,0.4612,0.8048,0.6836,0.5824,0.1314,-0.4046,-1,-1,1,-1,-1,-1,0.2334,-1,-0.0304,0.5454,0.5758,1,0.4242,0.2122,0.4242,0.2728,0.9696,0.8484,0.7272,0.697,0.606,0.4848,0.697,0.4848,0.303,0.606,0.1212,0.5454,0.6364,0.5152,0.606,0.7878,0.4546,0.1818,0.394,0.5152,-0.0304,-0.091,-0.091,-0.6666,'15'
-0.3074,0.0506,0.3736,0.6304,0.8832,0.9494,1,0.7082,0.9106,0.9728,0.6576,0.358,0.179,-0.0156,-0.0116,-0.0662,-0.0934,-0.0194,0.1322,0.2918,0.4824,0.6304,0.6032,0.0894,0.0116,0.0312,-0.0662,-0.0428,0.1168,0.4552,0.7354,0.8094,-0.254,0.1088,0.4274,0.6774,1,0.8064,0.75,0.9556,0.8306,0.8388,0.3064,0.1612,-0.1734,-0.3266,-0.3186,-0.3912,-0.4154,-0.3064,-0.2298,-0.0968,0.121,0.383,0.3912,-0.1492,-0.2096,-0.1452,-0.2904,-0.2662,-0.1774,0.1976,0.4072,0.6008,-0.3242,-0.002,0.4224,0.7132,0.9254,0.6424,0.7918,1,0.7604,0.4616,0.108,-0.0844,-0.281,-0.3164,-0.4578,-0.4852,-0.4264,-0.5206,-0.4106,-0.1238,0.0294,0.1866,0.0806,-0.108,-0.277,-0.4774,-0.5402,-0.497,-0.2848,-0.0452,0.2102,0.2456,-0.3794,-0.115,0.3716,0.6974,0.8276,0.479,0.8966,1,0.4828,0.0652,-0.0344,-0.2988,-0.4444,-0.4214,-0.6284,-0.659,-0.5978,-0.5288,-0.4062,-0.2836,-0.0574,0.0804,0.1418,-0.2298,-0.4138,-0.5364,-0.6206,-0.5364,-0.4062,-0.157,0.0728,0.0958,-0.3808,-0.092,0.4146,0.8012,0.865,0.4372,1,0.9812,-0.0582,-0.1482,-0.2308,-0.3658,-0.5196,-0.6472,-0.636,-0.6698,-0.561,-0.591,-0.5422,-0.287,-0.1894,-0.0282,-0.092,-0.2608,-0.5084,-0.6924,-0.6998,-0.6586,-0.531,-0.2346,-0.0544,-0.0432,-0.2056,0.242,0.633,1,0.9718,0.6694,0.992,0.8146,-0.2944,-0.379,-0.5282,-0.5604,-0.492,-0.9032,-0.8306,-0.8388,-0.742,-0.7298,-0.7096,-0.625,-0.4678,0,-0.1088,-0.5766,-0.488,-0.6814,-0.867,-0.7742,-0.7904,-0.3388,-0.2862,-0.3388,0.1256,0.5534,0.9396,0.9814,1,0.9302,0.7906,0.5628,-0.1814,-0.4744,-0.5256,-0.6512,-0.6838,-0.6046,-0.6604,-0.6326,-0.707,-0.7162,-0.7256,-0.8326,-0.6558,-0.4604,-0.4976,-0.5396,-0.3488,-0.4232,-0.7628,-0.8838,-0.772,-0.7628,-0.7488,-0.6838,-0.1924,0.077,0.3846,0.5,0.8846,1,0.9616,0.6154,0.6924,0.8846,0.8076,0.5384,0.2692,0.077,0.1154,0.1154,-0.0384,0.1154,0.2692,0.3846,0.6154,0.6154,0.577,0.1924,0.077,0.1924,0.1538,0.077,0.1538,0.577,0.7692,0.7692,-0.3954,-0.0232,0.3024,0.6744,0.814,0.9534,1,0.6744,0.907,0.8604,0.628,0.5348,0.2094,0.0698,0.0232,0.0232,0.0232,0.0232,0.1628,0.4418,0.628,0.7674,0.5814,0.0232,0.1162,0.0698,0.0232,0.1628,0.3024,0.5814,0.907,0.907,-0.2236,0.1764,0.553,0.9294,0.9058,0.6,1,0.8824,-0.2942,-0.2,-0.3176,-0.3882,-0.4118,-0.6236,-0.6,-0.6,-0.6706,-0.4588,-0.553,-0.5764,-0.2236,0.1764,0.2,-0.4118,-0.3412,-0.5294,-0.8588,-0.5058,-0.6706,-0.247,-0.0588,-0.2236,-1,-1,-1,-1,-1,-1,-0.9816,-0.9524,-0.7844,-0.6752,-0.4794,0.162,0.5542,0.9164,0.9758,0.8936,0.6862,0.5036,0.2404,-0.0278,-0.2508,-0.486,-0.8042,-0.9574,-0.942,-0.9714,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9808,-0.9416,-0.7684,-0.6692,-0.4612,0.4258,0.7226,0.9194,0.863,0.8218,0.6548,0.411,0.0252,-0.2946,-0.515,-0.6862,-0.8898,-0.9568,-0.9434,-0.9722,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8768,-0.85,-0.7634,-0.77,-0.7268,-0.8058,-0.805,-0.8176,-0.82,-0.8226,-0.7576,-0.7576,-0.775,-0.835,-0.8726,-0.855,-0.93,-0.7268,-0.6934,-0.8068,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.1428,1,0.6286,-0.0858,1,1,-0.4286,-0.9714,-0.9714,-0.9428,-0.9428,-0.7714,-0.4858,-0.4286,-0.5142,-0.0572,0.0858,0.1142,-0.3714,-0.7142,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.1134,-0.072,-0.0514,-0.057,-0.1118,-0.0356,0.0232,0.0222,-0.0052,-0.065,-0.5066,-0.0942,-0.375,0.119,0.3976,0.7138,0.608,0.4084,-0.1082,0.1892,0.8378,0.8108,0.5946,0.8648,0.4594,0.1892,0.2162,0.3784,0.6216,0.5406,0.1892,0.1082,0.4054,0.7838,0.8378,0.8378,1,0.8108,0.3784,0.1892,-0.2162,-0.3784,-0.6216,-0.2432,0.1622,0.2432,0.3244,0.1352,-0.2432,-0.5406,0.2578,0.6702,1,0.9794,0.7938,0.7526,0.567,0.299,0.2164,0.3608,0.732,0.5876,0.2784,0.1134,0.3608,0.732,0.5876,0.5464,0.835,0.3814,0.2164,-0.2372,-0.3608,-0.3814,-0.5876,-0.3608,-0.1134,0.1752,0.299,0.2372,-0.0516,-0.5052,0.037,0.463,0.9074,1,0.6852,0.8148,0.463,0.2038,0.1112,0.2962,0.6296,0.4444,0.2038,0.1112,0.3704,0.7222,0.5926,0.6112,0.7778,0.6112,0.1112,-0.2222,-0.5926,-0.5556,-0.6482,-0.8334,-0.2778,-0.0926,-0.037,0.0186,-0.1666,-0.3888,0.283,-1,-1,1,-0.8,-1,-1,-0.8,-1,0,0.7346,0.7142,0.4694,0.796,0.7142,1,0.6938,0.9796,1,0.5714,0.6326,0.9388,0.2858,0.2858,0.1632,0.4694,0.9796,0.5714,0.8776,0.8776,0.2858,0.3878,0.551,0.8164,0.8368,0.4286,0.4694,0.5306,0.4286,0.204,-0.3266,'15'
0.023,0.6666,0.6488,0.883,0.8372,0.4072,0.3894,0.0306,0.0128,-0.1374,-0.1246,0.0076,0.0076,0.0688,0.0916,0.2366,0.3104,0.5954,0.6946,0.9592,1,0.743,0.827,0.8218,0.8932,0.6006,0.575,0.252,0.3842,0.2646,0.425,0.4352,-0.0546,0.5284,0.5128,0.733,0.6952,0.317,0.2704,0.0924,0.0478,-0.0746,-0.119,-0.0122,-0.0612,0.0946,0.05,0.1768,0.1324,0.466,0.4126,0.8532,0.8264,1,0.9644,0.8932,0.8642,0.851,0.8154,0.6262,0.5974,0.6484,0.6218,0.7464,-0.0994,0.4538,0.418,0.612,0.5114,0.1688,0.0324,-0.0228,-0.1904,-0.2502,-0.3102,-0.2144,-0.2766,-0.1354,-0.1426,-0.0802,0.0514,0.2024,0.37,0.6072,0.7796,1,0.9592,0.8252,0.739,0.842,0.7222,0.6168,0.4922,0.497,0.5138,0.5784,-0.2994,0.1126,0.412,0.5164,-0.0138,-0.294,-0.4286,-0.4642,-0.5248,-0.6676,-0.6182,-0.6072,-0.5468,-0.3764,-0.3708,-0.3544,-0.1566,-0.0742,0.1484,0.4176,0.6648,0.8434,1,0.967,0.7554,0.8242,0.827,0.7252,0.6484,0.5796,0.6264,0.684,-0.4508,0.054,0.4618,0.3038,-0.2898,-0.351,-0.6172,-0.7254,-0.717,-0.8224,-0.9002,-0.7976,-0.731,-0.6726,-0.6088,-0.5284,-0.4452,-0.3288,-0.154,0.1374,0.4008,0.7976,1,0.9612,0.828,0.8002,0.8142,0.7892,0.6504,0.5728,0.645,0.6976,-0.388,0.388,0.6398,0.3616,-0.3412,-0.385,-0.6544,-0.7424,-0.7716,-0.8448,-0.8888,-0.9034,-0.8448,-0.877,-0.7424,-0.675,-0.6018,-0.5052,-0.2328,-0.1332,0.1714,0.5988,0.9004,1,0.8624,0.7834,0.7892,0.7482,0.5666,0.508,0.5578,0.552,-0.012,0.5936,0.9402,0.6096,-0.008,-0.4144,-0.8048,-0.6772,-0.8208,-0.9004,-0.9044,-0.8804,-0.8884,-0.753,-0.733,-0.8326,-0.6056,-0.5738,-0.4184,-0.239,0.0358,0.2988,0.9124,1,0.9442,0.753,0.7848,0.514,0.3506,0.1434,0.0996,0.1474,0.1892,0.8378,0.8378,0.8378,0.7838,0.5136,-0.027,0.2432,-0.081,-0.8918,-0.3514,-0.1892,-0.1352,-0.1892,-0.4054,-0.027,0.4054,0.4594,1,0.946,0.5136,0.7838,0.8378,0.7838,0.6756,0.6756,0.3514,-0.2972,-0.4594,-0.027,0.2432,0.5136,0.1112,0.7038,0.7038,0.8888,0.8518,0.6296,0.5556,-0.037,-0.1852,-0.074,-0.1482,0.1482,0.1112,0.1112,0.037,0.3334,0.4074,0.7038,0.8888,1,0.963,0.7778,0.7408,0.8148,0.7778,0.5186,0.5186,0.2962,0.3704,0.1482,0.1852,0.1852,0,0.5082,0.4918,0.623,0.5574,0.2786,0.1968,0.1148,-0.0164,-0.0984,-0.2132,-0.0492,-0.1968,0.0492,-0.082,0.082,-0.0164,0.295,0.3442,0.6722,0.705,1,0.918,0.623,0.5902,0.8524,0.7214,0.5902,0.377,0.5246,0.3934,0.5902,-1,-1,-1,-1,-1,-1,-0.9862,-0.9846,-0.904,-0.8558,-0.8296,0.6864,0.7026,0.3378,0.0814,-0.0808,-0.104,-0.1886,-0.2298,-0.2816,-0.315,-0.5536,-0.842,-0.953,-0.9768,-0.9756,-0.978,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.983,-0.981,-0.8908,-0.6916,-0.7668,0.5132,0.8558,0.5828,0.281,0.2552,0.364,0.2744,0.0962,-0.2458,-0.421,-0.683,-0.8842,-0.9492,-0.9552,-0.9604,-0.9706,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9748,-0.9348,-0.7448,-0.0248,-0.1482,-0.6514,-0.5434,-0.4314,-0.5074,-0.3374,-0.2014,-0.2406,-0.42,-0.771,-0.8382,-0.862,-0.73,-0.63,-0.4468,-0.62,-0.66,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7428,1,1,1,0.3714,1,-0.2286,-0.9142,-0.6286,-0.9142,-0.6858,-1,-0.8,-0.8286,-0.2,0.2286,-0.4572,-0.6572,-0.8858,-0.4572,-0.4286,-1,-1,-1,-1,-1,-1,0.5026,0.497,0.5018,0.5042,0.5122,0.5158,0.5172,0.5054,0.4526,0.061,0.496,0.5094,0.5484,0.5798,0.6236,0.6588,0.7104,0.7676,0.8696,1,-0.6,0.2352,-0.8008,-0.3948,0.3224,0.8792,1,1,0.1772,0.1314,0.1658,0.28,0.2114,0.0514,0.2342,0.7028,0.8172,0.7942,0.8286,0.7714,0.6228,0.76,0.6572,1,0.8286,0.6914,0.5428,0.7258,0.9428,0.9086,0.7714,0.8628,0.6686,0.5086,0.7372,0.6,0.4858,0.3028,0.2228,-0.2458,-0.5048,0.038,0.1142,0.0572,-0.181,-0.0096,0.162,0.5904,0.9048,1,0.6952,0.6096,0.7714,0.5334,0.419,0.6858,0.8572,0.6666,0.5904,0.8666,0.8666,0.6476,0.4858,0.4286,0.6,0.638,0.4666,0.3524,0.162,0.2952,0.6096,0.2476,-0.1144,0.203,0.2178,0.0554,-0.0332,0.0996,0.144,0.3948,0.5572,0.9188,0.9558,1,0.8154,0.535,0.3874,0.6014,0.594,0.5794,0.4982,0.882,0.8376,0.7786,0.2916,0.2694,0.4318,0.3136,-0.011,0.476,0.5794,0.1956,0.2916,0.048,-0.7152,-1,-1,1,-1,-1,-1,-0.4666,1,0.1428,-0.1048,-0.181,-0.1238,-0.562,-0.3524,-0.238,-0.1428,-0.1238,-0.0286,0.3524,0.2572,0.9238,1,0.4666,0.1428,0.2572,0.562,0.3904,0.0858,0.1238,0.3334,0.581,0.1048,0.0286,-0.2,-0.3714,-0.0476,-0.0286,-0.3142,-0.562,-0.619,'16'
-0.0574,0.5632,0.6168,0.9042,0.7012,0.6476,0.2568,0.1916,-0.157,-0.1724,-0.0268,-0.1264,0,-0.0804,0.0996,0.2644,0.4598,0.7892,0.9272,0.9616,1,0.8888,0.8966,0.862,0.8238,0.5288,0.3104,0.3486,0.0766,0.1302,0.2836,0.3754,-0.2376,0.2222,0.6388,0.8086,0.568,0.3672,0.1142,0.108,-0.0216,-0.0864,-0.0186,-0.1296,-0.003,0.142,0.1852,0.2438,0.2562,0.6018,0.784,1,0.9506,0.8982,0.8642,0.895,0.9352,0.8982,0.6018,0.503,0.5524,0.5246,0.6234,0.7314,-0.2414,0.2258,0.6426,0.8182,0.5612,0.022,-0.2602,-0.254,-0.232,-0.304,-0.2352,-0.2916,-0.163,-0.0816,-0.0282,0.0502,0.025,0.3292,0.5142,0.7084,0.8808,1,0.7398,0.7554,0.8652,0.8214,0.7084,0.5768,0.5142,0.4952,0.583,0.627,-0.286,0.1406,0.6166,0.7372,0.2922,-0.1562,-0.4652,-0.5178,-0.4034,-0.459,-0.4528,-0.3632,-0.422,-0.2458,-0.2642,-0.2302,0.0602,0.0046,0.2364,0.592,0.7218,1,0.9814,0.7712,0.762,0.8362,0.7806,0.697,0.527,0.493,0.5332,0.5888,-0.3426,0.0094,0.514,0.5576,-0.1962,-0.595,-0.5982,-0.567,-0.6168,-0.6356,-0.5826,-0.592,-0.511,-0.4766,-0.458,-0.433,-0.3022,-0.1652,0.081,0.2928,0.5546,0.8162,1,0.9158,0.6542,0.813,0.8068,0.7102,0.5514,0.486,0.567,0.567,-0.3924,0.015,0.596,0.5392,-0.566,-0.4358,-0.5192,-0.606,-0.5726,-0.7096,-0.7096,-0.8298,-0.606,-0.5994,-0.586,-0.449,-0.4124,-0.232,-0.0418,0.1752,0.4458,0.7864,1,0.97,0.773,0.7662,0.7662,0.7396,0.636,0.556,0.5592,0.626,-0.2336,0.1258,0.7406,0.6846,-0.2296,-0.489,-0.6048,-0.509,-0.7604,-0.8444,-0.8364,-0.8602,-0.8004,-0.6926,-0.8324,-0.8084,-0.517,-0.525,-0.3374,-0.0658,0.3772,0.6048,1,0.8404,0.7724,0.8004,0.6646,0.5688,0.3652,0.2376,0.1696,0.1896,0.3,0.85,0.65,0.9,0.8,0.8,0.35,0.35,-0.2,-0.1,-0.1,-0.2,0,0.1,0.1,0.3,0.15,0.3,0.75,0.85,0.9,0.8,0.95,1,0.7,0.65,0.45,0.4,0.15,0.05,0.2,0.4,0,0.7222,0.5556,0.9444,0.6112,0.8334,0.3888,0.1112,-0.1666,-0.1666,-0.1666,-0.0556,-0.1112,-0.1666,0.2222,0.3888,0.7222,0.8888,1,0.9444,0.9444,0.8888,0.8888,0.5556,0.5,0.3334,0,0.2222,0.0556,0,0,0.1666,-0.2784,0.1958,0.6494,0.8144,0.5464,0.2164,-0.1752,-0.1546,-0.1752,-0.1958,-0.1546,-0.2372,-0.134,-0.0104,0.0722,0.0722,0.0928,0.4846,0.6082,0.8762,0.7732,0.9794,0.7938,0.835,1,1,0.6494,0.5876,0.5464,0.4846,0.6288,0.6908,-1,-1,-1,-1,-1,-1,-0.9876,-0.9818,-0.8856,-0.797,-0.7204,0.4466,0.9032,0.9906,0.892,0.5924,0.3906,0.0974,-0.0578,-0.134,-0.249,-0.3474,-0.771,-0.9564,-0.9474,-0.967,-0.977,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9848,-0.9806,-0.8228,-0.6726,-0.7214,0.0798,0.6906,0.9126,0.6106,0.3124,0.274,0.1224,0.0624,-0.1066,-0.303,-0.5508,-0.8666,-0.953,-0.9526,-0.9668,-0.977,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.9234,-0.6768,0.17,-0.2134,-0.7026,-0.675,-0.6526,-0.705,-0.749,-0.6934,-0.5446,-0.5468,-0.8178,-0.7846,-0.9424,-0.79,-0.3734,-0.5434,-0.7634,-0.8434,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,0.8572,1,0.9714,-0.8,-0.7714,-0.8572,-0.8572,-0.9142,-0.9142,-1,-0.0286,1,1,-0.6286,-0.5142,-0.4572,0.3142,-1,-1,-1,-1,-1,-1,0.5374,0.556,0.5746,0.6042,0.6254,0.6424,0.6422,0.5892,0.4572,0.1184,0.2728,0.2988,0.3512,0.385,0.4266,0.4714,0.529,0.611,0.7662,0.9882,-0.6534,0,-0.7528,-0.4134,0.0766,0.3926,0.5608,1,0.0506,0.0784,0.0322,0.0692,0.0968,-0.1244,0.5392,0.6036,0.7696,0.7512,0.6036,0.6498,0.5392,0.53,0.6036,1,0.917,0.5944,0.4562,0.5116,0.613,0.6498,0.493,0.318,0.3918,0.53,0.576,0.5116,0.5116,0.3918,0.1612,-0.447,-0.406,-0.203,0.1128,0.1278,-0.0676,0.03,0.0226,0.391,0.7294,0.7142,0.4962,0.5714,0.5188,0.3308,0.3684,0.8796,0.9022,0.7068,0.5864,0.5714,1,0.827,0.5864,0.376,0.3008,0.5188,0.5188,0.436,0.4436,0.2932,0.2106,-0.1954,-0.057,0.133,0.27,0.3992,0.1102,-0.095,0.0114,0.1788,0.597,1,0.635,0.8784,0.7262,0.4904,0.1634,0.5286,0.4828,0.4828,0.1558,0.4676,0.6578,0.6274,0.1178,0.4448,0.2624,0.133,-0.0494,-0.095,-0.1026,0.194,0.1712,-0.232,-0.52,-1,-1,1,-0.8,-1,-1,-0.4334,-1,-0.0442,-0.1328,0.0088,0.239,0.2566,0.062,0.3274,-0.0796,0.3982,0.4336,1,0.9292,0.8054,0.9116,0.4868,0.5222,0.3628,0.6992,0.6106,0.6638,0.9116,0.646,0.7522,0.6106,0.3982,0.292,0.3628,0.1504,0.416,0.2744,-0.0442,-0.3982,'16'
0.1538,0.923,0.9076,0.8962,0.877,0.3884,0.323,0.2308,0.15,0.027,-0.0038,0.0576,0.0154,0.0884,0.1076,0.323,0.3076,0.5116,0.7576,0.9538,0.9038,0.9924,0.8692,0.9424,0.8192,0.6192,0.4576,0.577,0.5038,0.6962,0.7038,1,-0.0124,0.6336,0.615,0.8976,0.8292,0.3882,0.3198,0.2018,0.115,0.0032,-0.0932,0.0714,-0.0434,0.2204,0.1086,0.326,0.4038,0.7484,0.6242,0.9906,0.854,0.9844,0.854,0.469,0.3478,0.1988,0.1708,0.4658,0.3198,0.6304,0.6894,1,0.0448,0.6678,0.6422,1,0.9138,0.46,0.329,0.1278,-0.0288,0.0096,-0.1438,0.016,0.0766,0.2556,0.1916,0.4282,0.6806,0.8146,0.5846,0.6358,0.671,0.7924,0.4984,0.1086,0.1374,0.1406,0.0638,0.131,0.2076,0.4346,0.5718,0.7284,-0.0684,0.5202,0.6778,1,0.8248,0.3064,0.0332,-0.0298,-0.1558,-0.1348,-0.0894,0.0122,0.2574,0.373,0.5796,0.4886,0.457,0.3556,0.282,0.331,0.4466,0.4396,0.0858,-0.2434,-0.2574,-0.289,-0.247,-0.1558,-0.0964,0.1838,0.345,0.6148,-0.2138,0.271,0.9466,1,0.5954,0.3244,0.1488,-0.0268,0.0802,0.1756,0.3282,0.5726,0.5916,0.4886,0.1336,0.0306,-0.0344,0.0038,0.061,0.187,0.3206,0.3016,-0.042,-0.5152,-0.5534,-0.71,-0.584,-0.5,-0.3664,-0.019,0.2442,0.4046,-0.1746,0.2064,1,0.882,0.932,0.5736,0.3742,0.4196,0.7324,0.8956,0.814,0.3016,-0.0204,-0.0976,-0.3106,-0.3378,-0.2608,-0.152,-0.0794,0.1928,0.2654,0.551,0.2834,-0.2518,-0.3288,-0.551,-0.56,-0.3606,-0.238,0.034,0.17,0.542,0.1304,0.5566,0.9566,0.8478,0.926,0.5956,0.6914,0.8434,1,0.7,-0.013,-0.2218,-0.4218,-0.4652,-0.6522,-0.8608,-0.6174,-0.5696,-0.5652,-0.5696,-0.5,-0.2608,-0.274,-0.413,-0.6608,-0.7434,-0.9392,-0.9304,-0.8608,-0.6522,-0.526,-0.3434,0.125,0.75,0.8124,0.5624,0.25,0.0624,-0.1876,-0.375,-0.5,-0.5,-0.3124,-0.5624,-0.6876,-0.75,-0.25,0.0624,-0.125,-0.0624,0.4376,0.5,0.6876,1,0.875,0.8124,1,1,0.75,0.625,0.625,0.4376,0.1876,0.4376,0.0476,0.9048,0.9524,0.7142,0.7142,0.238,0.2858,0.0476,0.0476,-0.2858,-0.1904,-0.1428,-0.0952,-0.0952,-0.0952,0.0476,0.238,0.381,0.4762,0.7142,0.8096,0.762,0.5714,0.762,0.6666,0.1428,0.238,0.381,0.3334,0.4762,0.7142,1,-0.2632,0.1052,0.9474,1,0.5,0.2368,0.3158,-0.0526,0.079,0.2368,0.6052,0.6316,0.7894,0.5,0.1578,0,-0.1578,0,0.1842,0.2368,0.4736,0.3158,0.2106,-0.2368,-0.3158,-0.5,-0.3948,-0.3422,-0.3684,-0.1052,0.0264,-0.2632,-1,-1,-1,-1,-0.981,-0.9802,-0.7896,-0.5854,-0.757,-0.8474,-0.8284,0.6458,0.6468,0.5854,0.6296,0.6884,0.6956,0.9448,0.4544,0.0868,-0.028,-0.253,-0.683,-0.925,-0.944,-0.9674,-0.9674,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9508,-0.9704,0.1014,0.207,-0.2188,-0.2224,-0.5266,0.4212,0.9224,0.7658,0.5748,0.611,0.538,0.7474,0.2474,0.0824,0.0284,-0.2912,-0.748,-0.8618,-0.8832,-0.943,-0.955,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8868,-0.94,-0.4534,0.5,0.6332,0.66,0.25,-0.7476,-0.7,-0.735,-0.82,-0.845,-0.8624,-0.8846,-0.8934,-0.9024,-0.889,-0.909,-0.94,-0.5768,-0.5834,-0.7868,-0.8268,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.0286,1,1,1,-0.3428,-0.1428,1,1,0.3428,-0.9142,-0.8,-0.8286,-0.7428,-0.6858,-0.5142,-0.6286,0.0572,0.1142,0.2858,-0.0572,-0.0286,-0.4,-0.6,-1,-1,-1,-1,-1,-1,0.2388,0.2642,0.2834,0.3176,0.3448,0.377,0.4056,0.4302,0.4414,0.5524,0.5198,0.5032,0.4652,0.4566,0.4132,0.3692,0.2978,0.1908,-0.1378,-0.485,-0.7066,-0.0118,-0.5866,-0.3884,0.6062,0.6714,0.828,1,-0.2644,0.1402,0.1586,0.1816,0.0666,0.2552,0.1126,0.2736,0.338,0.462,0.5954,0.6598,0.7104,0.8666,0.8344,0.7012,0.7886,0.6874,0.8574,0.8344,0.9218,1,0.9172,0.8206,0.7702,0.6092,0.7794,0.6414,0.5816,0.4712,0.3794,0.0942,-0.5796,-0.031,-0.1062,-0.2522,-0.2876,-0.0796,-0.2212,-0.1416,-0.053,0.0354,0.1194,0.2788,0.6416,0.708,0.615,0.4646,0.5088,0.4602,0.6504,0.6946,0.8894,1,0.5044,0.677,0.6328,0.584,0.5884,0.5974,0.593,0.3452,0.3142,-0.0266,-0.2216,-0.2,-0.243,-0.0494,-0.0752,-0.114,-0.071,-0.015,0.1526,0.3506,0.385,0.7162,1,0.9354,0.7764,0.6688,0.686,0.5526,0.7248,0.8064,0.9354,0.9656,0.6516,0.742,0.7162,0.6818,0.729,0.5956,0.5656,0.5226,0.3118,-0.028,1,-1,-1,1,-0.4,-1,-1,-0.0666,-1,-0.145,0.2318,0.2608,0.4492,1,1,0.6232,0.3624,0.5508,0.4202,0.4928,0.2464,0.1304,0.145,0.174,0.1304,0.3188,0.3768,0.3624,0.2174,0.145,0.2028,-0.058,0.1594,0.2174,0.1884,0.0434,0.1594,0.145,0.058,-0.087,-0.6666,'17'
0.0018,0.6328,0.5972,0.6792,0.6114,0.148,0.066,-0.0696,-0.1444,-0.2478,-0.2906,-0.1586,-0.1372,-0.016,-0.0552,0.0232,0.4402,0.5222,0.893,0.918,0.9536,1,0.943,0.9608,0.6434,0.697,0.615,0.5758,0.5722,0.6008,0.7362,0.7754,-0.132,0.4182,0.393,0.7076,0.5628,0.1982,-0.0598,-0.2484,-0.2988,-0.2232,-0.066,-0.0534,-0.0534,-0.0724,0.195,0.2138,0.5314,0.739,1,0.8774,0.9842,0.915,0.9874,0.6698,0.3774,0.2484,0.2358,0.2516,0.2768,0.4748,0.544,0.7484,-0.1712,0.3458,0.6096,0.8082,0.565,0.202,-0.363,-0.4246,-0.1438,-0.2364,-0.2226,-0.1198,-0.0136,0.161,0.2054,0.4554,0.6644,1,0.8802,0.75,0.7398,0.8184,0.6952,0.4486,0.1062,-0.0342,0.0616,0.0582,0.1028,0.1986,0.4554,0.6062,-0.1944,0.2658,0.9088,1,0.4246,0.3056,-0.1388,-0.0952,-0.0396,-0.1072,0.0238,0.1904,0.4166,0.492,0.738,0.6032,0.7222,0.5198,0.504,0.6984,0.742,0.7896,0.6508,0.4326,0.0278,-0.1072,-0.0674,-0.0674,-0.012,0.1072,0.3294,0.6468,-0.2008,0.148,1,0.9736,0.5584,0.351,0.3068,-0.0994,0.0508,0.0728,0.3952,0.8322,0.7572,0.4348,0.2538,0.0376,0.064,0.0772,0.1744,0.3686,0.5276,0.6292,0.6114,0.0906,-0.0816,-0.3156,-0.2716,-0.2008,-0.2582,-0.064,0.1832,0.4172,-0.2,0.2926,1,0.883,0.7902,0.5658,0.317,0.1952,0.3952,0.7268,0.6488,0.039,-0.0244,-0.1414,-0.4926,-0.444,-0.4682,-0.3756,-0.478,0,0.1122,0.4146,0.2244,0.0244,-0.3024,-0.4634,-0.5804,-0.683,-0.4196,-0.3318,-0.2,0.2292,0.271,0.753,1,0.9338,0.6626,0.4036,0.3554,0.5662,0.8192,0.6746,-0.1266,-0.2108,-0.3374,-0.3856,-0.5964,-0.5362,-0.494,-0.5422,-0.5482,-0.5722,-0.512,-0.4216,-0.018,-0.0722,-0.3434,-0.5422,-0.6746,-0.9578,-0.741,-0.8976,-0.8916,-0.5362,0.0714,1,1,0.7142,0.6428,0,-0.3572,-0.5714,-0.5714,-0.6428,-0.7858,-0.7142,-0.9286,-0.7142,-0.7142,-0.7858,-0.0714,0.4286,0.9286,0.9286,0.5714,0.8572,0.9286,0.7858,0.6428,0.6428,0.7142,0.2858,0.2142,0.2858,0.2858,0.8572,-0.087,0.6086,0.5652,0.6956,0.6086,0.0434,0.0434,-0.0434,-0.1304,-0.3478,-0.4348,-0.2174,-0.2174,-0.0434,-0.1304,-0.087,0.3478,0.4782,0.826,0.9566,0.913,1,0.9566,1,0.7826,0.826,0.5218,0.5218,0.5652,0.6086,0.7392,0.7826,-0.2196,0.3414,0.683,0.9024,0.561,0.1952,-0.4634,-0.2926,-0.1464,-0.2682,-0.3414,0.0732,0.0488,0.1952,0.3414,0.561,0.878,1,0.7074,0.7074,0.8536,0.7074,0.7074,0.561,0.0976,0.0244,0.0488,0,0,0.244,0.3902,0.5366,-1,-1,-1,-1,-1,-0.9788,-0.9816,-0.7732,-0.7844,-0.8468,-0.8788,0.8358,0.8724,0.7752,0.844,0.8586,0.71,0.3768,0.1116,-0.1096,-0.2648,-0.4916,-0.9156,-0.9632,-0.9542,-0.9624,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9794,-0.9802,0.666,-0.381,-0.4132,-0.6426,0.3916,0.8832,0.5614,0.4186,0.2274,0.0616,-0.2274,-0.3654,-0.4998,-0.5984,-0.7424,-0.9328,-0.971,-0.9626,-0.9682,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9234,-0.9534,-0.07,0.9232,0.8366,0.64,-0.655,-0.435,-0.5026,-0.6026,-0.6976,-0.86,-0.8926,-0.875,-0.9,-0.8956,-0.9,-0.7068,-0.7668,-0.6968,-0.87,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,0.3714,1,1,-0.2858,-0.7142,-0.8,-0.6858,-0.8,-0.7428,-0.7142,-0.0286,0.1714,0.2858,-0.1428,-0.3428,-0.9142,-1,-1,-1,-1,-1,-1,-1,-1,0.206,0.223,0.2426,0.2604,0.2834,0.2928,0.2954,0.2958,0.2748,0.397,0.7978,0.7578,0.725,0.7186,0.649,0.582,0.5066,0.3346,0.0376,-0.2896,-0.6266,-0.0588,-0.6858,-0.4214,0.4202,0.7952,0.93,1,-0.5976,-0.3352,-0.102,-0.0554,-0.1546,-0.102,0.0438,0.0554,0.2186,0.2536,0.4694,0.6968,0.7492,0.6794,0.5802,0.4228,0.6326,0.5976,0.5626,0.8134,0.9242,1,0.7552,0.7026,0.9416,0.8542,0.6152,0.4636,0.5802,0.5044,0.2536,0.0438,-0.5928,-0.3918,-0.3196,-0.3454,-0.2836,-0.2836,-0.2114,-0.0876,0.0206,0.0154,0.2062,0.5052,0.665,0.7062,0.5568,0.6958,0.7784,0.6082,0.6186,0.8248,0.8092,1,0.8298,0.464,0.8248,0.7372,0.6908,0.7474,0.7732,0.598,0.4176,0.1958,-0.5444,-0.4378,-0.4616,-0.361,-0.426,-0.4024,-0.136,-0.0236,0.0414,0.2604,0.5208,0.6864,0.7574,0.923,0.7988,0.716,0.864,0.5088,0.7634,0.8284,0.9882,1,0.9468,0.6686,0.7692,0.9172,0.716,0.5798,0.503,0.6272,0.4674,0.1006,1,-1,-1,1,-1,-1,-1,-0.2334,-1,-0.0786,0.3708,-0.0786,0.2134,0.3932,0.618,1,0.4832,0.7752,0.3708,0.1012,0.3034,0.6854,0.5506,0.2808,0.1236,0.3708,0.2808,0.146,0.5056,0.3484,0.0562,-0.1686,-0.0562,0.4158,0.3932,0.0786,0.3258,0.5056,-0.0786,0.1686,-0.1236,'17'
-0.4552,-0.0622,0.1368,0.2712,0.6318,0.786,1,0.8806,0.6866,0.8482,0.816,0.2562,0.1866,0.0696,-0.0448,-0.102,-0.0472,0.02,0.1766,0.408,0.4752,0.189,-0.0324,-0.1766,-0.2338,-0.1542,-0.2064,-0.2736,-0.4876,-0.597,-0.5024,-0.3358,-0.4254,-0.1442,0.0866,0.2428,0.4182,0.8222,0.8222,0.9134,0.9736,1,0.488,0.137,0.1442,-0.089,-0.2188,-0.226,-0.1972,-0.1154,-0.036,0.2764,0.315,0.3174,-0.0192,-0.1106,-0.2284,-0.423,-0.5192,-0.5192,-0.4086,-0.2716,-0.137,0.2332,-0.408,-0.1294,0.087,0.2936,0.4528,0.8358,0.8258,1,0.9926,0.9652,0.3906,0.1666,0.0996,0,-0.2014,-0.2936,-0.2562,-0.204,-0.2064,0.092,0.2364,0.281,-0.117,-0.3334,-0.48,-0.4502,-0.49,-0.495,-0.383,-0.2314,-0.0448,0.2364,-0.4088,-0.1718,0.1042,0.3072,0.5938,0.8802,0.9818,0.9948,1,0.901,0.8308,0.375,0.1902,0.125,0.0104,-0.1328,-0.0364,0.073,0.2812,0.6042,0.552,0.2084,-0.1172,-0.2422,-0.362,-0.4688,-0.4348,-0.3568,-0.375,-0.2266,0.0626,0.2916,-0.4524,-0.1934,0.0246,0.248,0.6294,0.7738,1,0.8502,0.6976,0.8774,0.8392,0.7384,0.308,0.2862,0.1962,0.2234,0.237,0.4796,0.3052,0.1336,-0.158,-0.376,-0.4632,-0.6268,-0.7356,-0.7302,-0.684,-0.654,-0.5178,-0.5122,-0.2916,-0.1062,-0.4178,-0.0888,0.1354,0.3596,0.8312,0.8602,0.965,0.572,0.671,0.8458,1,0.968,0.8078,0.8574,0.9302,0.7118,0.4382,-0.0626,-0.281,-0.505,-0.671,-0.738,-0.9098,-0.9156,-0.8428,-0.9098,-0.8428,-0.7526,-0.7468,-0.738,-0.5226,-0.3944,-0.2252,-0.0434,0.1244,0.407,0.709,0.7622,0.7006,0.5076,0.3734,0.5356,0.7454,1,0.9384,0.8546,0.8714,0.5132,-0.0658,-0.1384,-0.4826,-0.6756,-0.7706,-0.8406,-0.9552,-0.8882,-0.793,-0.8546,-0.8574,-0.807,-0.9216,-0.807,-0.5552,-0.5692,-0.3454,0.2364,0.091,0.5636,0.7818,0.891,0.9272,1,0.7454,0.8546,0.8182,0.7454,0.1636,0.2,0.1636,0.091,-0.1636,-0.0546,0.2364,0.309,0.2728,0.0182,-0.1272,-0.2728,-0.309,-0.2728,-0.2,-0.1636,-0.2728,-0.4182,-0.4546,-0.3818,-0.3704,0.037,0.2222,0.4074,0.6666,0.8518,1,0.8888,0.8518,0.8888,0.8518,0.4444,0.3334,0.2962,0.1482,-0.037,0.1852,0.1852,0.2962,0.5556,0.5926,0.1482,0.037,-0.1112,-0.074,-0.1112,0.074,0.074,-0.2592,-0.5186,-0.4074,-0.5186,-0.4,-0.1778,0.0666,0.2666,0.6,0.7778,0.9778,0.8888,0.8222,1,0.8222,0.5778,0.2666,0.1556,0.0222,0.0222,0.0222,0.3334,0.5112,0.6,0.1112,-0.1556,-0.3112,-0.4222,-0.6444,-0.6222,-0.5112,-0.4222,-0.3556,-0.3112,-0.0444,0.2444,-1,-1,-1,-1,-1,-1,-1,-0.9794,-0.9804,-0.8722,-0.7764,-0.3134,0.5092,0.908,0.9348,0.8766,0.7256,0.511,0.409,0.2598,0.0514,-0.3098,-0.7568,-0.9276,-0.967,-0.9704,-0.9704,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9874,-0.9894,-0.9334,-0.8606,-0.3524,0.3746,0.961,0.9226,0.8088,0.6136,0.5202,0.2284,0.023,-0.2694,-0.603,-0.9072,-0.9586,-0.9666,-0.9638,-0.9686,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8868,-0.9168,-0.7668,-0.75,-0.716,-0.654,-0.624,-0.651,-0.682,-0.711,-0.6982,-0.7238,-0.8438,-0.7656,-0.8074,-0.9434,-0.62,-0.54,-0.4568,-0.71,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,-0.2858,0.0858,1,1,0.7428,-0.7428,-1,-1,-0.8286,-0.5714,-0.6286,-0.8,-0.8572,0.6572,0.7714,-0.2,-0.6,-0.7142,-0.1142,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.7506,-0.72,-0.7046,-0.679,-0.6254,-0.6376,-0.6964,-0.7152,-0.8402,-1,-0.4666,0.2706,-0.8612,-0.7108,-0.4568,-0.204,-0.0734,0.1,-0.0786,0.2808,0.337,0.7416,0.4158,0.4944,0.4944,0.8202,1,0.3708,0.8988,0.8426,0.8426,0.7304,0.6516,1,0.7752,0.3708,0.427,0.5956,0.809,0.618,0.618,0.5506,0.7752,0.6516,0.2922,0.3596,0.5842,0.6854,0.6292,0.427,-0.0778,0.4922,0.855,1,0.7306,0.43,0.4612,0.5544,0.7616,0.3056,0.2436,0.2538,0.2642,0.2746,0.5026,0.3576,0.2436,0.3368,0.171,0.2332,0.3782,0.4094,0.2954,0.2746,0.5648,0.1606,0.2538,0.513,0.399,0.1918,0.1502,-0.1398,-0.2592,0.2268,0.9352,1,0.4768,0.4584,0.426,-0.0556,-0.0926,0.0092,0.162,-0.1388,-0.1342,-0.1388,-0.2222,-0.1944,-0.199,-0.2824,-0.324,-0.2314,-0.1388,-0.2686,-0.1528,-0.2592,-0.2824,-0.3842,-0.2314,-0.2454,-0.199,-0.3888,-0.3842,-0.5972,-0.9924,1,-1,-1,-1,-1,-1,-1,-1,-0.6324,-0.0882,0.1324,0.0294,0.2058,0.8824,0.5294,0.6618,0.6912,0.3824,0.1176,0.0148,-0.1764,0.0442,0.2058,0.5442,0.5442,1,0.603,-0.0588,0.0148,-0.1764,-0.2352,0.0736,0.1618,0.1324,-0.103,-0.1324,-0.2206,-0.147,-0.1618,-0.5442,'18'
-0.5054,-0.181,0.136,0.1858,0.4888,0.877,1,0.697,0.6876,0.8722,0.6946,0.3656,0.039,-0.039,0.0366,-0.1006,-0.0982,0.0272,0.1668,0.29,0.4486,0.4154,0.1384,-0.006,-0.0082,-0.1668,-0.2378,-0.4414,-0.4106,-0.4154,-0.219,0.0012,-0.3896,-0.0644,0.1298,0.2786,0.5864,0.9092,0.9974,0.9218,0.8764,1,0.7428,0.2812,0.1828,0.029,0.0618,-0.0542,-0.0668,0.0794,0.3064,0.3972,0.71,0.5814,0.2888,0.0088,-0.0518,-0.1072,-0.1324,-0.1248,-0.2006,-0.0592,0.0264,0.3366,-0.4218,-0.1288,0.0808,0.2576,0.4696,0.7778,0.8006,0.9798,0.9394,1,0.5126,0.2804,0.2046,0.0884,0.0126,-0.101,-0.0152,-0.0606,0.0304,0.3536,0.3712,0.3182,0.1464,-0.0454,-0.1364,-0.2474,-0.202,-0.1212,-0.1818,-0.1414,-0.0934,0.1616,-0.4222,-0.1798,0.1158,0.2704,0.4728,0.8668,0.8908,1,0.984,0.9334,0.9228,0.534,0.2942,0.2862,0.1026,0.02,0.1026,0.2862,0.534,0.5552,0.3768,0.249,-0.004,-0.1504,-0.1744,-0.2624,-0.193,-0.1026,-0.1186,-0.225,0.012,0.2544,-0.4628,-0.2452,0.0826,0.2562,0.6116,0.8016,1,0.9532,0.7796,0.9614,0.9366,0.9504,0.5702,0.5344,0.5454,0.5758,0.5812,0.438,0.3334,0.0414,-0.1542,-0.27,-0.3388,-0.3526,-0.4022,-0.3966,-0.4794,-0.3966,-0.3608,-0.179,0.0716,0.2176,-0.4804,-0.2262,0.053,0.3212,0.6396,0.7988,0.7206,0.6174,0.5754,0.6816,1,0.9526,0.8798,0.9302,0.81,0.7766,0.0056,-0.204,-0.296,-0.352,-0.715,-0.8072,-0.5392,-0.4078,-0.5782,-0.7206,-0.8352,-0.7542,-0.4246,-0.3268,-0.2206,-0.1676,0.0394,0.3082,0.2186,0.4444,0.5162,0.7096,0.706,0.6094,0.5376,0.4158,0.638,0.8674,1,0.8458,0.681,0.4588,0,-0.2904,-0.6594,-0.6452,-0.6022,-0.8172,-0.767,-0.6702,-0.7312,-0.81,-0.9032,-0.8996,-0.9318,-0.785,-0.6344,-0.6774,-0.3208,-0.0188,0.2452,0.3208,0.6982,0.9246,1,0.8868,0.849,0.849,0.7736,0.5472,0.2452,0.1698,0.132,0.0566,0.0566,0.0566,0.0944,0.3584,0.3962,0.1698,0.0188,0.0188,-0.0566,0.0188,-0.0944,-0.5094,-0.585,-0.6604,-0.283,-0.3208,-0.625,-0.25,0.0416,0.25,0.375,0.875,1,0.6666,0.5834,0.7916,0.4166,0.375,0.0416,0,0.0416,0,-0.0416,0.0416,0.2084,0.2084,0.4166,0.3334,0.0834,-0.0834,-0.2916,-0.125,-0.2916,-0.7916,-0.9166,-0.625,-0.5416,-0.4166,-0.5054,-0.2044,0.0538,0.1612,0.4838,0.742,0.957,0.9784,0.828,1,0.9354,0.742,0.4408,0.3118,0.3334,0.3118,0.5698,0.5268,0.5484,0.1182,0.0322,-0.0968,-0.2904,-0.3548,-0.3118,-0.3764,-0.2904,-0.3334,-0.3978,-0.1612,0.1398,0.2044,-1,-1,-1,-1,-1,-1,-1,-0.975,-0.9576,-0.8932,-0.5816,-0.0082,0.825,0.7508,0.8258,0.7894,0.6132,0.417,0.3026,0.2266,0.0438,-0.5152,-0.8846,-0.9538,-0.9568,-0.9664,-0.9722,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9878,-0.98,-0.9308,-0.6706,-0.1422,0.58,0.5218,0.7976,0.932,0.7236,0.7348,0.4264,0.2514,-0.1352,-0.792,-0.9512,-0.9724,-0.9718,-0.9774,-0.982,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9134,-0.9334,-0.7034,-0.6634,-0.672,-0.614,-0.594,-0.604,-0.56,-0.666,-0.626,-0.68,-0.676,-0.6928,-0.88,-0.7334,-0.7368,-0.61,-0.6068,-0.7968,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6572,0.4,0.7428,1,1,0.2858,-0.5142,-1,-0.8,-0.7142,-0.5428,-0.6286,-0.4572,0.8572,1,-0.4,-0.8858,-0.7428,-0.8858,-0.3714,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.5844,-0.58,-0.5674,-0.5636,-0.5674,-0.5568,-0.5592,-0.553,-0.6848,-1,-0.52,0.2,-0.6358,-0.5072,-0.2232,-0.0424,0.2126,-0.3166,-0.077,-0.1384,0.3744,0.6924,0.5384,0.2512,0.682,0.3846,0.5898,0.4358,0.7744,0.559,0.7128,0.559,0.477,1,0.8154,0.5692,0.559,0.518,0.7846,0.5692,0.3846,0.682,0.477,0.1282,0.3538,0.2308,0.4256,0.3538,0.1794,-0.2924,0.0382,0.3872,0.549,0.8724,0.7532,1,0.8894,0.4808,0.634,0.617,0.7532,0.6086,0.7106,0.4382,0.566,0.217,0.3958,0.4042,0.4468,0.3022,0.6852,0.4042,0.3022,0.7106,0.4808,0.5064,0.5574,0.5404,0.4978,0.2936,0.0724,-0.549,-0.0548,0.1742,0.8856,1,0.7164,0.8706,0.582,-0.01,0.1344,0.2238,0.5224,0.0746,0.02,-0.0548,-0.2338,-0.2538,-0.1542,-0.0696,-0.1344,-0.1194,-0.0946,-0.3482,-0.408,-0.5374,-0.5622,-0.4528,-0.3334,-0.4278,-0.4876,-0.5124,-0.5074,-0.7114,-0.9926,1,-1,-1,-1,-1,-1,-1,1,-0.05,0.25,0.1666,0.65,0.45,0.7166,0.6834,0.8,0.6666,0.6334,0.5166,0.4666,0.5,0.4,0.2,0.2166,0.7834,1,0.65,0.2834,0.3334,0.2666,0.25,0.1834,0.2834,0.3,0.35,0.4334,0.2334,0.3334,0.6334,0.4334,'18'
-0.4202,-0.1498,0.2416,0.4686,0.6956,0.5024,0.3044,0.0676,-0.0386,-0.1112,-0.058,-0.1256,0.0434,0.1112,0.1884,0.401,0.7682,0.9516,0.971,0.7778,0.7682,0.9034,1,0.971,0.6618,0.6136,0.4348,0.4202,0.4106,0.483,0.7198,0.7778,-0.3548,-0.0174,0.34,0.5434,0.8064,0.6228,0.32,0.1166,-0.062,-0.0272,-0.0918,-0.1514,-0.077,0.1116,0.1066,0.2854,0.6972,0.856,0.9354,0.8362,0.8014,0.8958,1,0.9206,0.8312,0.593,0.4988,0.454,0.3996,0.4292,0.6178,0.7022,-0.3536,-0.0432,0.2722,0.5572,0.7404,0.4656,0.4352,0.201,-0.0534,-0.0738,-0.1908,-0.0992,-0.089,0.0942,0.1908,0.4096,0.6132,1,0.9898,0.771,0.7862,0.7964,0.9236,0.7558,0.766,0.5368,0.3894,0.369,0.3842,0.43,0.491,0.6132,-0.3382,-0.051,0.2846,0.567,0.7178,0.7616,0.6546,0.2798,0.017,-0.0998,-0.1532,-0.017,0.0414,0.124,0.2944,0.528,0.7032,1,0.8248,0.6108,0.742,0.7908,0.8248,0.8346,0.6448,0.4258,0.2944,0.163,0.1922,0.2604,0.4598,0.4744,-0.3516,-0.0574,0.2568,0.5412,0.6658,1,0.8802,0.3018,0.1422,0.0224,0.0474,0.1222,0.2868,0.3466,0.601,0.9252,0.8802,0.9152,0.6958,0.596,0.6908,0.8404,0.7956,0.8754,0.5212,0.3616,0.237,0.182,0.1222,0.1272,0.3516,0.3716,-0.422,-0.1972,0.1422,0.3532,0.6972,0.922,0.7156,0.1698,0.2386,0.2248,0.1422,0.2432,0.3256,0.6606,0.8578,1,0.6788,0.4816,0.3532,0.4358,0.4724,0.5918,0.8166,0.6606,0.4678,0.2568,0.0276,-0.0458,-0.0138,0.0184,0.1926,0.2202,-0.2694,0.065,0.3066,0.517,0.8886,1,0.5232,0.3126,0.2198,0.0216,0.0588,0.1208,0.3126,0.5294,0.7338,0.6656,0.0216,-0.065,-0.1022,-0.1022,0.0464,0.3004,0.4674,0.548,0.1826,-0.1826,-0.3188,-0.678,-0.6284,-0.709,-0.5294,-0.4056,-0.2972,0.2432,0.1892,0.5676,0.6216,0.6756,0.1892,0.027,0.081,-0.1892,-0.027,-0.1352,0.2432,0.027,-0.081,0.2432,0.7298,0.5136,0.8918,0.6756,0.6216,1,1,0.8918,0.5136,0.5136,0.2432,0.2432,0.081,0.2972,0.6756,0.7838,-0.5,-0.125,0.2084,0.5416,0.625,0.3334,0.4166,0.2084,0.0416,-0.0834,0.0416,0.0416,-0.0834,0.1666,0.2916,0.4584,0.625,1,0.9166,0.75,0.6666,0.9166,0.9584,0.75,0.7084,0.5834,0.5,0.4166,0.4584,0.5,0.6666,0.75,-0.3794,-0.1494,0.1724,0.4022,0.7012,1,0.816,0.1494,0.2414,0.2414,0.1264,0.2414,0.3564,0.6552,0.839,1,0.816,0.7012,0.4482,0.5632,0.5632,0.6782,0.931,0.816,0.5172,0.3104,0.1264,0.1034,0.1264,0.1954,0.2184,0.3104,-1,-1,-1,-1,-1,-1,-0.9868,-0.9756,-0.9158,-0.7964,-0.6126,-0.0938,0.5542,0.882,0.994,0.8612,0.6074,0.3838,0.406,0.411,0.3366,-0.1026,-0.7682,-0.8664,-0.9158,-0.9564,-0.9624,-0.966,-0.9638,-0.9654,-0.938,-0.9114,-0.8022,-1,-1,-1,-1,-1,-1,-0.979,-0.981,-0.9376,-0.8636,-0.6602,-0.0466,0.5384,0.4096,0.785,0.3978,0.253,0.2008,0.3888,0.6108,0.3242,-0.4844,-0.7952,-0.7584,-0.669,-0.654,-0.6366,-0.6344,-0.6652,-0.7332,-0.7698,-0.7674,-0.8266,-1,-1,-1,-1,-1,-1,-0.9068,-0.9134,-0.76,-0.7234,-0.6768,-0.47,-0.4534,-0.61,-0.6268,-0.64,-0.65,-0.7834,-0.7668,-0.6534,-0.7368,-0.8144,-0.0768,0.8732,1,1,1,1,1,1,0.9832,0.7666,0.1432,-1,-1,-1,-1,-1,-1,-0.2,0.4572,1,1,1,1,0.0286,-1,-1,-0.9142,-0.9714,-0.9142,-0.5714,0.2286,1,1,1,1,-0.5714,-0.7714,-0.7714,-0.9142,-0.8858,-0.8286,-0.8858,-0.2286,1,1,1,1,1,1,1,1,1,1,1,0.2976,0.3118,0.315,0.2946,0.3158,0.3864,0.3738,0.3842,0.3466,-0.1144,-0.52,-0.3294,-0.5816,-0.3618,0.037,0.3962,0.5694,0.675,-0.0328,0.1804,0.205,1,0.7296,0.377,0.4754,0.3278,0.2704,0.1722,0.6312,0.5328,0.8196,0.295,0.4016,0.4754,0.5984,0.4836,0.5082,0.4918,0.664,0.6312,0.5902,0.7868,0.7214,0.5328,0.6312,0.7622,0.5902,0.459,0.205,-0.246,-0.028,0.7758,0.6698,1,0.7882,0.489,0.6262,0.7446,0.8256,0.9938,0.7384,0.7508,0.8692,0.57,0.3146,0.3956,0.4954,0.676,0.2648,0.3708,0.458,0.2834,0.2648,0.2898,0.2524,0.489,0.4642,0.3396,0.1278,0.134,0.0966,-0.0842,0.1268,0.6498,0.8512,0.7424,0.2314,0.0544,0.1228,0.324,0.9476,1,0.7142,0.984,0.8672,0.4568,0.4124,0.6498,0.7988,0.7746,0.5856,0.5452,0.4246,0.2274,0.0986,-0.1428,-0.2474,-0.2234,-0.2394,-0.2796,-0.2918,0.0504,-0.0262,-0.489,-0.9646,1,-1,-1,-1,-0.8,-1,-1,-1,-0.8572,-0.7142,-0.631,-0.2738,-0.2976,-0.25,-0.1786,-0.2024,-0.2142,-0.012,0.012,0.0596,0.0238,0.0238,0.2024,0.2142,0.1904,0.1072,0.4524,0.5,0.4048,0.381,0.5358,0.619,0.7024,0.869,1,0.762,0.6786,0.631,0.5834,0.238,'19'
-0.4202,0.1302,0.4004,0.5676,0.7642,0.7642,0.3316,0.2628,-0.0122,-0.0466,-0.0024,0.0122,0.081,0.1696,0.2432,0.3808,0.6756,0.8476,1,0.8574,0.8084,0.8918,0.9754,0.887,0.6904,0.5676,0.4692,0.43,0.4988,0.5676,0.7592,0.8574,-0.326,0.0372,0.3566,0.4442,0.803,0.7592,0.1422,-0.0504,0.0284,-0.0722,-0.116,-0.0066,-0.024,0.0416,0.2036,0.3566,0.6018,0.8688,1,0.873,0.8118,0.93,0.9782,0.9606,0.768,0.5798,0.523,0.5098,0.501,0.5974,0.7812,0.8206,-0.354,-0.0096,0.311,0.4976,0.8422,0.6986,0.3062,0.1818,0.1148,-0.0192,-0.0574,-0.0622,0.024,0.1292,0.1866,0.378,0.646,0.7704,1,0.9952,0.8326,0.9186,0.9712,0.909,0.8326,0.6076,0.5072,0.4736,0.4498,0.5598,0.6028,0.7224,-0.3248,0,0.3198,0.533,0.8172,0.6548,0.599,0.2994,0.1522,0.1016,-0.0102,-0.066,0.066,0.2588,0.198,0.3706,0.8224,0.8426,1,0.8122,0.8172,0.8984,0.9036,0.995,0.67,0.5482,0.462,0.4468,0.4366,0.4874,0.6142,0.6752,-0.309,-0.0104,0.3246,0.4922,0.712,0.8586,0.8586,0.3612,0.1308,0.1414,0.0732,0.0472,0.0942,0.335,0.466,0.665,1,0.8534,0.691,0.6964,0.6074,0.7278,0.9058,0.8376,0.5812,0.3874,0.356,0.3456,0.2828,0.2722,0.4608,0.5812,-0.3488,-0.0666,0.277,0.4358,0.6102,1,0.9334,0.3642,0.1282,0.0564,0.159,0.1282,0.2564,0.4206,0.723,0.7128,0.8462,0.5436,0.482,0.4564,0.4974,0.6206,0.8154,0.5794,0.5282,0.3282,0.1076,0.0872,0.0666,0.1334,0.1384,0.2666,-0.2242,0.0978,0.3104,0.5402,0.6436,1,0.862,0.3276,0.0402,-0.0804,0.023,0.092,0.2874,0.523,0.7816,0.6782,0.4252,0.385,0.2528,0.092,0.2242,0.3334,0.477,0.431,0.3276,0.0058,-0.2528,-0.3794,-0.477,-0.4196,-0.2702,-0.2528,-0.4418,0.1162,0.3488,0.721,0.814,0.7674,0.3954,0.1628,-0.0698,-0.0232,0.0698,0.0698,0.1628,0.1628,0.2558,0.4418,0.6744,0.907,1,0.9534,0.8604,0.9534,1,0.907,0.721,0.4884,0.3024,0.3488,0.3488,0.4884,0.6744,0.7674,-0.347,-0.0204,0.347,0.5918,0.551,0.551,0.4286,0.2244,0.102,0.0204,0.0204,0.0612,0.102,0.1836,0.2654,0.4286,0.7142,0.7552,1,0.9592,0.796,0.8776,1,0.9592,0.6326,0.5102,0.3878,0.3878,0.4286,0.5918,0.7552,0.9592,-0.3334,-0.0574,0.2874,0.4482,0.6552,0.977,0.931,0.3564,0.1724,0.0574,0.1264,0.1264,0.1724,0.3564,0.6322,0.7932,1,0.7242,0.5632,0.5402,0.5632,0.5632,0.816,0.6782,0.5862,0.3794,0.1724,0.1494,0.1494,0.2644,0.3104,0.4482,-1,-1,-1,-1,-1,-1,-0.9832,-0.982,-0.9866,-0.8616,-0.6816,-0.386,-0.086,0.4494,0.9244,0.9804,0.8144,0.4802,0.2336,0.146,0.0316,-0.2734,-0.7874,-0.893,-0.9472,-0.9372,-0.9412,-0.9646,-0.981,-0.9792,-0.972,-0.9102,-0.913,-1,-1,-1,-1,-1,-1,-0.9728,-0.9806,-0.9848,-0.8978,-0.741,-0.3874,0.0708,0.7636,0.909,0.811,0.7538,0.4058,0.3216,0.2538,-0.0224,-0.4016,-0.8206,-0.7394,-0.6992,-0.6024,-0.6612,-0.7012,-0.705,-0.742,-0.74,-0.77,-0.8176,-1,-1,-1,-1,-1,-1,-0.589,-0.8468,-0.8934,-0.8368,-0.8234,-0.616,-0.516,-0.5034,-0.61,-0.5734,-0.6368,-0.6034,-0.7834,-0.8,-0.8334,-0.85,-0.1434,1,1,1,1,1,1,1,1,0.98,0.7032,-1,-1,-1,-1,-1,-1,-0.1428,-0.2,0.4572,1,1,1,1,-0.1714,-0.8572,-0.9714,-1,-0.8286,-0.5714,-0.2858,1,1,1,1,-0.7142,-0.8572,-0.6858,-0.7428,-0.8858,-0.7428,-0.6286,-0.4858,-0.3142,1,0.994,1,1,0.9936,0.9868,0.9614,0.9518,0.9766,1,0.2764,0.2638,0.2916,0.3262,0.3172,0.3502,0.3844,0.4246,0.4126,0.0196,-0.5734,-0.3648,-0.6704,-0.5734,-0.3298,-0.0224,0.284,0.3416,0.4916,0.7628,1,0.7628,0.4576,0.2882,0.356,0.4916,0.6272,0.7288,0.7288,0.5932,0.5594,0.4576,0.4238,0.4238,0.5932,0.5254,0.4576,0.3898,0.2882,0.2882,0.2882,0.322,0.2542,0.322,0.322,0.1186,0.0848,0.2542,0.2882,-0.1186,0.0526,0.579,1,0.7684,0.179,-0.0948,0.0526,0.2632,0.8316,0.8948,0.7264,0.8106,0.6632,0.1368,0.2422,0.5368,0.8106,0.7684,0.5158,0.2,-0.1368,-0.179,-0.3894,-0.1158,-0.0526,-0.179,-0.1578,-0.1578,-0.221,-0.2422,-0.2842,-0.5368,0.1282,0.5128,1,0.4616,0.0512,-0.1538,-0.0256,0.0256,0.5898,0.7436,0.6924,0.8718,0.359,0.2564,0.2308,0.2564,0.5384,0.5128,0.1282,0.077,0.2308,0.1794,-0.282,-0.4102,-0.1794,-0.1538,-0.1794,-0.282,-0.4358,-0.3846,-0.4102,-0.4358,-0.373,-1,-1,1,-1,-1,-0.8,-0.8334,1,-0.6394,-0.683,-0.7486,-0.3224,-0.2022,-0.1804,-0.235,0.0492,-0.0164,0.0054,0.0054,0.1038,0.1584,0.0928,0.0382,0.1038,0.0602,0.1476,0.2678,0.4098,0.4972,0.4098,0.4316,0.552,0.4972,0.694,1,0.9454,0.7814,0.9672,0.8252,0.5628,'19'
-0.2704,0.6704,0.6616,0.912,0.8594,0.1912,0.156,-0.3098,-0.266,-0.3758,-0.3142,-0.455,-0.3538,-0.2484,-0.1516,-0.055,0.1824,0.3362,0.6924,0.8242,1,0.7846,0.666,0.8022,0.9208,0.7758,0.5824,0.301,0.3098,0.2044,0.4374,0.4594,-0.1006,0.5112,0.5032,0.7412,0.7098,0.3202,0.2994,0.0536,0.0352,-0.1242,-0.145,0.0458,0.0222,0.145,0.145,0.2576,0.2916,0.5556,0.6156,0.9268,1,0.9294,0.8118,0.8718,0.9138,0.83,0.7228,0.6104,0.5738,0.5844,0.7098,0.7386,-0.1278,0.442,0.395,0.718,0.586,0.2012,0.019,-0.0602,-0.2952,-0.2804,-0.163,-0.0778,-0.1366,-0.0778,0.028,0.0396,0.2306,0.2364,0.5154,0.6564,0.9618,1,0.9266,0.8238,0.8766,0.8472,0.7974,0.63,0.4714,0.4772,0.5918,0.6388,-0.2138,0.2692,0.4976,0.6574,0.2854,-0.0996,-0.3214,-0.429,-0.5954,-0.602,-0.5628,-0.5074,-0.4388,-0.2986,-0.2366,-0.2398,-0.1582,0.0244,0.1648,0.4454,0.6836,0.9738,1,0.8792,0.7194,0.7814,0.6378,0.4226,0.2822,0.3344,0.3834,0.3996,-0.3298,0.0348,0.559,0.5416,-0.4306,-0.6006,-0.6284,-0.5938,-0.7466,-0.7778,-0.7222,-0.6736,-0.6562,-0.5798,-0.5138,-0.5244,-0.4132,-0.2848,-0.0174,0.2188,0.4444,0.8438,1,0.934,0.7118,0.7812,0.7638,0.6146,0.4896,0.3854,0.4444,0.441,-0.413,0.0896,0.4974,0.3322,-0.3638,-0.4236,-0.6486,-0.6978,-0.7012,-0.7258,-0.8558,-0.87,-0.8242,-0.7012,-0.6486,-0.6486,-0.4692,-0.3884,-0.1424,0.0544,0.3216,0.666,1,0.9578,0.7996,0.8488,0.645,0.6098,0.5396,0.3708,0.4376,0.4516,-0.1856,0.2666,0.7356,0.5906,-0.2538,-0.4882,-0.5438,-0.5992,-0.7826,-0.855,-0.8892,-0.8464,-0.7654,-0.7058,-0.7398,-0.693,-0.6588,-0.565,-0.3092,-0.0406,0.1514,0.531,0.9786,1,0.9446,0.8508,0.7314,0.6844,0.2922,0.2324,0.2238,0.1898,0.282,0.8462,0.8462,0.7948,0.641,0.5898,0.3334,-0.0256,-0.5898,-0.3846,-0.5898,-0.8462,-0.282,-0.0256,0.0256,0.1794,0.5384,0.4872,0.641,1,1,1,0.5898,0.7948,0.8462,0.6924,0.4358,0.3334,0.3334,0.1794,0.4358,0.3334,-0.1876,0.6876,0.6876,1,0.9376,0.3124,0.25,-0.25,-0.25,-0.375,-0.5624,-0.6876,-0.6876,-0.5624,-0.5624,-0.5,-0.4376,0.1876,0.3124,0.9376,0.9376,0.5,0.375,0.5624,0.5624,0.4376,0.5,0,0.0624,0.0624,0.0624,0.1876,0,0.4462,0.4308,0.677,0.6154,0.3384,0.2,0.1076,-0.0462,-0.0154,-0.0616,0.1076,-0.077,0.123,0.077,0.2154,0.323,0.4616,0.5384,0.6616,0.8924,1,0.7846,0.7846,0.7538,0.877,0.6308,0.6462,0.4462,0.5076,0.6616,0.7076,-1,-1,-1,-1,-1,-0.9868,-0.9824,-0.8466,-0.7698,-0.5076,-0.6616,0.6226,0.7472,0.4088,0.2786,0.068,-0.0044,-0.0994,-0.1636,-0.2912,-0.383,-0.4912,-0.7182,-0.9584,-0.9724,-0.9724,-0.9806,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9826,-0.979,-0.2366,0.0998,-0.371,-0.629,0.3402,0.8838,0.9184,0.6594,0.2156,0.0714,-0.0106,-0.064,-0.1986,-0.341,-0.5916,-0.784,-0.9482,-0.963,-0.9684,-0.9758,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8934,-0.86,-0.2368,0.9232,0.1566,-0.2734,-0.6876,-0.5826,-0.349,-0.28,-0.3668,-0.5512,-0.6334,-0.7156,-0.6824,-0.6756,-0.86,-0.81,-0.51,-0.4968,-0.7868,-0.7934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7142,1,1,1,1,1,1,0.6858,-0.8286,-0.8,-0.8286,-0.9428,-0.9142,-1,-1,-0.6,0.6286,0.4286,-0.0286,-0.4858,-0.4572,-0.8,-1,-1,-1,-1,-1,-1,0.259,0.2708,0.2916,0.3092,0.3554,0.385,0.4186,0.4406,0.4062,0.0814,0.6058,0.6282,0.6258,0.641,0.6548,0.6826,0.7036,0.7564,0.8232,1,-0.68,0.0236,-0.717,-0.445,0.3402,0.7568,0.8676,1,-0.5506,-0.2,-0.1672,-0.1452,-0.0684,-0.1726,-0.1398,-0.0466,0.2384,0.359,0.2712,0.2768,0.3698,0.3534,0.3424,0.611,0.6328,0.7096,0.8028,0.9452,1,0.8466,0.7754,0.6274,0.622,0.6494,0.4466,0.4136,0.3754,0.211,0.2768,-0.1068,-0.1356,-0.1978,-0.3502,-0.1694,-0.1526,-0.1242,-0.0622,-0.0338,0.1752,0.4238,0.3786,0.243,0.2712,0.2712,0.2656,0.4858,0.7458,0.983,0.6498,0.9944,1,0.8644,0.7796,0.5706,0.4802,0.5594,0.4124,0.3786,0.4576,0.2146,0.1638,-0.1356,0.1676,0.0628,0.0524,0.1362,-0.021,0.0942,0.1152,0.2094,0.6178,1,0.9528,0.576,0.8534,0.8534,0.5706,0.6388,0.8638,0.932,0.7278,0.7016,0.9528,0.8796,0.5706,0.3142,0.3664,0.3404,0.2618,0.4816,0.6178,0.6074,0.377,0.199,1,-1,-1,1,-1,-1,-0.8,-0.2666,-1,-0.2932,-0.2782,-0.1428,-0.0076,-0.0376,0.0526,0.0978,-0.0526,-0.0226,0.5488,1,0.9248,0.3684,0.6842,0.2482,0.1428,0.4136,0.4888,0.3384,0.3834,0.4736,0.3534,0.3534,0.564,0.218,0.0226,-0.1128,-0.0376,-0.3234,-0.0978,-0.3234,-0.5038,'20'
-0.1764,0.6274,0.6128,0.9068,0.7942,0.2206,0.1372,-0.1618,-0.2648,-0.3138,-0.3726,-0.1764,-0.3824,-0.2304,-0.2696,-0.0638,0.1372,0.4264,0.5784,1,0.8824,0.652,0.5148,0.6764,0.6078,0.7304,0.5588,0.3138,0.1372,0.2648,0.1912,0.3578,-0.0918,0.4428,0.4236,0.7392,0.6682,0.269,0.1852,0.0242,-0.0756,-0.0822,-0.2012,0.0242,-0.0564,0.1562,-0.008,0.182,0.2914,0.4524,0.6714,0.8228,0.884,1,0.7874,0.8228,0.8132,0.9098,0.6296,0.6264,0.4492,0.5234,0.5942,0.6554,-0.176,0.328,0.3248,0.5942,0.4454,0.1316,-0.1442,-0.1126,-0.3312,-0.2552,-0.198,-0.2108,-0.0936,-0.1284,0.0048,-0.0618,0.1538,0.1632,0.3978,0.626,0.8574,0.981,1,0.775,0.8668,0.8796,0.8446,0.6958,0.5912,0.5436,0.6038,0.6736,-0.2236,0.2308,0.467,0.6172,0.2702,-0.0412,-0.3452,-0.4348,-0.4562,-0.6208,-0.628,-0.4348,-0.3632,-0.2416,-0.2808,-0.2094,-0.0948,0.0196,0.245,0.467,0.7674,0.9892,1,0.8926,0.882,0.907,0.889,0.8176,0.653,0.6172,0.6566,0.7388,-0.3244,0.0114,0.5458,0.5726,-0.2442,-0.561,-0.5878,-0.5534,-0.668,-0.603,-0.6946,-0.6564,-0.5306,-0.4352,-0.4352,-0.4618,-0.29,-0.1832,0,0.2214,0.5344,0.7862,1,0.9122,0.8092,0.7862,0.8054,0.7786,0.6832,0.5458,0.5764,0.5954,-0.3122,0.0446,0.6858,0.656,-0.4182,-0.6348,-0.6858,-0.5372,-0.6772,-0.6518,-0.7154,-0.7834,-0.758,-0.5924,-0.6094,-0.6008,-0.4012,-0.3036,-0.2696,0.1082,0.4522,0.5542,1,0.8854,0.8046,0.7834,0.707,0.809,0.5372,0.4182,0.431,0.482,-0.1764,0.2254,0.8186,0.8138,-0.4314,-0.8432,-0.902,-0.7254,-0.6078,-0.5932,-0.7206,-0.7206,-0.6618,-0.7942,-0.7304,-0.7058,-0.4902,-0.5834,-0.451,0.0246,0.2206,0.446,1,0.9852,0.8284,0.7844,0.7942,0.5736,0.3628,0.1814,0.2108,0.152,0.282,1,1,0.8974,0.7436,0.4358,0.3334,0.0256,-0.077,-0.1282,0.1282,0.1282,-0.2308,-0.282,0.0256,0.1794,0.4872,0.4358,0.7948,0.9488,0.8974,0.6924,0.4358,0.641,0.8974,0.7948,0.282,0.282,0.3334,0.4358,0.4872,0.641,-0.1282,0.6924,0.6924,1,0.8974,0.3846,0.2308,0.0256,-0.2308,-0.1794,-0.3846,-0.1282,-0.3334,-0.077,-0.282,-0.2308,-0.0256,0.3334,0.5898,1,0.8462,0.5384,0.2308,0.5384,0.4358,0.3334,0.282,0.1794,0.1794,0.2308,0.077,0.1282,-0.381,-0.0952,0.5476,0.5476,-0.3334,-0.7142,-0.6666,-0.5476,-0.619,-0.619,-0.9048,-0.5476,-0.4762,-0.5238,-0.5238,-0.5,-0.262,-0.262,-0.1428,0.1428,0.4524,0.6428,0.9524,1,0.762,0.738,0.7858,0.8334,0.6904,0.4762,0.5714,0.5476,-1,-1,-1,-1,-1,-0.9874,-0.9836,-0.8514,-0.7916,-0.463,-0.7368,0.7028,0.8446,0.5014,0.2358,0.0324,-0.0072,-0.0916,-0.1696,-0.2238,-0.3296,-0.402,-0.541,-0.8704,-0.9704,-0.9698,-0.9812,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9806,-0.981,-0.392,0.2842,-0.0076,-0.599,0.4176,0.8772,0.8944,0.7914,0.5598,0.4132,0.2688,0.0328,-0.2238,-0.3748,-0.5286,-0.6826,-0.8962,-0.9542,-0.9556,-0.9688,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.9468,0.2332,0.9366,0.27,0.02,-0.7744,-0.7772,-0.3686,-0.2486,-0.2516,-0.4058,-0.5226,-0.6276,-0.7126,-0.82,-0.8226,-0.8868,-0.6234,-0.4668,-0.5534,-0.7534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,1,1,1,0.7714,1,1,0.6572,-0.7428,-0.8858,-0.9428,-0.9428,-0.9142,-0.8,-0.8572,-0.6572,0.2,0.2572,-0.0572,-0.4858,-0.5142,-0.3142,-1,-1,-1,-1,-1,-1,0.282,0.2906,0.3032,0.3242,0.3488,0.3804,0.3956,0.4124,0.3864,0.022,0.6164,0.6016,0.6332,0.6468,0.6344,0.6796,0.7268,0.7872,0.9152,1,-0.6666,-0.153,-0.647,-0.2538,0.462,0.8544,0.8922,1,-0.7526,-0.3736,-0.3948,-0.3264,-0.1948,-0.1894,-0.1948,-0.1736,-0.1106,0.1948,0.1526,0.1842,0.0948,0.179,0.2894,0.2736,0.521,0.7368,0.6578,0.7052,1,0.9422,0.7842,0.5106,0.5684,0.4422,0.4264,0.3894,0.2422,0.2578,0.2264,-0.1526,-0.3484,-0.2122,-0.4192,-0.2474,-0.2424,-0.1868,-0.1616,-0.0202,0.1212,0.4546,0.3738,0.308,0.3282,0.2626,0.1616,0.2728,0.7122,0.8536,0.7626,0.9394,1,0.9696,0.7424,0.591,0.5304,0.4444,0.399,0.3384,0.2172,0.2324,0.1112,-0.2172,-0.0634,-0.0468,-0.1294,0.0358,-0.0304,-0.0028,-0.168,0.1626,0.3774,0.7576,0.7134,0.5868,0.6144,0.6418,0.3774,0.3664,0.73,0.9064,0.73,0.7906,1,0.6804,0.6694,0.5482,0.5316,0.4876,0.482,0.3334,0.3608,0.2506,0.2286,0.091,0.274,-1,-1,1,-0.8,-1,-0.6,-0.2,-1,0.1142,0.2858,0.2286,-0.0428,0.1572,0.0714,0.2714,0.1428,0.3858,0.4858,0.8286,1,0.4858,0.7428,0.6572,0.6,0.6,0.6286,0.4858,0.5142,0.9714,0.9714,0.5858,0.6,0.5428,0.4858,0.3142,0.2572,0.1,0.1142,-0.0286,-0.2572,'20'
0.073,0.5548,0.329,0.2824,-0.4916,-0.6644,-0.701,-0.6544,-0.7342,-0.7542,-0.9602,-0.7774,-0.824,-0.8738,-0.6644,-0.6678,-0.6744,-0.4286,-0.03,0.0798,0.525,0.6046,0.6046,0.319,0.3156,0.4418,0.628,0.7906,1,0.97,0.9568,0.8106,0.0394,0.545,0.4376,0.5576,-0.1184,-0.4218,-0.643,-0.6872,-0.6556,-0.8516,-0.9052,-0.7756,-0.662,-0.624,-0.5704,-0.5514,-0.286,-0.068,0.1722,0.4944,0.7978,0.9274,0.9116,0.7472,0.8168,0.9494,0.9684,1,0.9274,0.8072,0.9336,0.8862,-0.1622,0.3352,0.5568,0.7054,0.2514,-0.2162,-0.5784,-0.6648,-0.5162,-0.7,-0.6486,-0.473,-0.4784,-0.281,-0.4028,-0.3136,0.1082,0.273,0.6108,0.8918,1,0.7594,0.7892,0.7648,0.673,0.4756,0.2244,0.3244,0.3432,0.3244,0.6136,0.5162,-0.0726,0.4714,0.8516,1,0.391,-0.1344,-0.4714,-0.49,-0.3664,-0.4126,-0.4652,-0.2056,-0.1252,0.017,0.0912,0.2828,0.6538,0.6908,0.8268,0.6506,0.6384,0.7928,0.7434,0.5486,0.2674,0.02,0.0232,0.0324,0.1004,0.286,0.5766,0.4652,-0.1498,0.3598,1,0.9586,0.0534,-0.2358,-0.432,-0.3254,-0.3046,-0.2358,-0.129,-0.043,0.253,0.432,0.3976,0.408,0.308,0.198,0.1636,0.2496,0.4836,0.6488,0.6352,0.136,-0.3804,-0.4802,-0.5388,-0.5524,-0.3942,-0.2048,0.0844,0.222,-0.1992,0.6056,1,0.7304,0.5212,0.2556,-0.2878,-0.0222,0.0342,0.5172,0.5896,0.493,0.155,-0.0584,-0.3038,-0.5332,-0.4246,-0.4486,-0.3602,-0.2152,0.2434,0.5292,0.662,0.4406,-0.1872,-0.4286,-0.4124,-0.4246,-0.3802,-0.163,0.1146,0.4608,-0.045,0.6516,0.9632,1,0.8074,0.2746,0.1066,0.3484,0.6434,0.4262,0.004,-0.3114,-0.6516,-0.7622,-0.8278,-0.9918,-0.877,-0.8402,-0.8278,-0.877,-0.6804,-0.4754,-0.1148,-0.1722,-0.4058,-0.623,-0.9714,-0.7704,-0.8156,-0.709,-0.6434,-0.504,0.2904,1,0.871,0.4838,0.0968,-0.4194,-0.613,-0.4838,-0.4194,-0.5484,-0.4194,-0.2258,-0.4838,-0.742,-0.4838,-0.4838,-0.4838,-0.2258,0.1612,0.4194,0.8064,0.871,0.613,0.4194,0.4838,0.5484,0.6774,0.9354,0.9354,0.9354,0.871,0.8064,0.3062,0.6326,0.3878,0.5102,0.1428,-0.1428,-0.2654,-0.347,-0.3062,-0.4694,-0.7142,-0.347,-0.102,-0.0612,0.0204,0.0204,0.0204,-0.0612,0.2244,0.4286,0.796,0.8368,0.5918,0.5918,0.5102,0.6326,0.7552,0.9184,0.9184,1,0.9592,0.9184,-0.2334,0.3334,1,0.7666,0.3334,0.0666,-0.0666,-0.2,-0.3,-0.1666,0.0334,0.4334,0.6,0.8,0.5,0.0666,0,-0.0666,0.0334,0.1,0.5,0.8666,0.8334,0.1334,-0.2334,-0.2334,-0.2666,-0.2334,-0.1334,0.0666,0.1666,0.5666,-1,-1,-1,-1,-1,-1,-1,-1,-0.9786,-0.9776,-0.8428,-0.513,-0.3842,0.1404,0.79,0.966,0.9428,0.7202,0.4226,-0.0206,-0.0796,-0.2172,-0.6748,-0.907,-0.9554,-0.966,-0.9678,-0.966,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9728,-0.9718,-0.8952,-0.5894,-0.4544,0.1036,0.8768,0.7746,0.5252,0.2916,0.018,-0.2248,-0.3064,-0.461,-0.7624,-0.8834,-0.9354,-0.9532,-0.9584,-0.96,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9184,-0.97,-0.9368,-0.8074,-0.7438,-0.8346,-0.6838,-0.762,-0.8638,-0.8764,-0.9,-0.9018,-0.915,-0.9234,-0.9368,-0.6634,-0.68,-0.76,-0.8968,-0.8534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6,-0.7714,1,1,-0.3714,-0.1714,-0.8286,-0.8572,-0.8286,-0.6286,-0.5428,-0.5714,-0.5428,0.6858,-0.1142,-0.6,-0.7714,-0.9428,-0.8572,-0.4572,-1,-1,-1,-1,-1,-0.8708,-0.8438,-0.8234,-0.8248,-0.7886,-0.7534,-0.705,-0.5968,-0.4478,-0.166,0.796,0.788,0.8132,0.8248,0.8928,0.9136,0.977,0.9658,0.7992,0.184,-0.6666,0.353,-0.8958,-0.7012,-0.6078,-0.5754,-0.5226,0.2416,0.039,0.5454,0.5194,1,0.8052,0.7012,0.6884,0.3896,0.6104,0.6884,0.8182,0.5324,0.922,0.8182,0.5974,0.4156,0.4286,0.3116,0.3636,0.3116,0.3376,0.4286,0.4676,0.3376,0.1558,0.2468,0.4026,0.3506,0.3766,0.1948,0.1818,-0.065,-0.023,0.3588,0.3282,0.9848,0.5726,0.5726,0.7862,0.9084,0.313,0.6642,0.145,0.5114,0.8778,1,0.1298,0.2672,0.6336,0.3588,0.1298,0.1908,0.374,0.1146,0.084,0.2978,0.2062,0.0382,0.1604,0.1146,0.1298,0.0992,-0.0688,-0.9084,0.839,0.9194,0.5974,0.8926,0.7852,0.396,0.4766,1,0.8926,0.5838,0.5704,0.7316,0.8658,0.906,0.7046,0.839,0.906,0.9328,0.4766,0.8256,0.745,0.9328,0.7986,0.7046,0.651,0.3288,0.1946,-0.0872,0.1678,0.2484,0.208,-0.1678,-0.9908,1,-1,-1,-1,-1,-1,-1,-1,-0.1352,0.3514,0.2792,0.5856,0.8558,1,0.6936,0.6396,0.6936,0.7118,0.5856,0.2972,0.2792,0.4414,0.4414,0.045,0.4414,0.7118,0.5676,0.3334,0.2252,0.1172,0.2792,0.4234,0.1712,0.3514,0.4414,0.3334,0.2072,0.1352,-0.099,-0.5856,'21'
0.0096,0.5048,0.4546,0.5048,-0.2302,-0.4352,-0.7794,-0.5358,-0.6982,-0.8104,-0.6674,-0.6286,-0.706,-0.7022,-0.528,-0.5088,-0.4236,-0.1064,0.323,0.532,1,0.9652,0.5358,0.6208,0.733,0.853,0.7602,0.6132,0.559,0.5474,0.6944,0.764,-0.122,0.3868,0.4844,0.6168,0.0418,-0.1464,-0.8328,-0.6168,-0.5192,-0.6412,-0.648,-0.5784,-0.568,-0.3972,-0.3658,-0.3902,-0.0558,0.1394,0.3624,0.885,0.9686,0.9478,0.791,0.8432,0.8466,0.8642,0.5854,0.5714,0.6098,0.6236,0.7874,1,-0.2274,0.2336,0.5236,0.6672,0.2274,-0.1604,-0.5848,-0.6458,-0.5176,-0.484,-0.4596,-0.374,-0.4138,-0.2062,-0.2244,-0.1572,0.2946,0.3282,0.6122,0.881,1,0.7222,0.713,0.719,0.5908,0.3374,0.09,0.142,0.2764,0.2488,0.49,0.661,-0.208,0.255,0.7516,0.8524,0.2248,-0.245,-0.5168,-0.4698,-0.4362,-0.3322,-0.4228,-0.3054,-0.1342,-0.1006,0.0974,0.3356,0.6108,1,0.9698,0.8524,0.8322,0.8322,0.8188,0.7852,0.2718,0.114,0.0268,0.0068,0.1342,0.2684,0.51,0.6812,-0.2606,0.2288,0.9402,0.8838,0.1056,-0.088,-0.2042,-0.243,-0.2852,-0.2922,-0.2218,-0.1302,0.1302,0.5352,0.581,0.6092,0.7464,0.6866,0.4436,0.7112,0.8662,0.9472,0.9964,0.5986,0.2394,0.095,0.081,0.1338,0.236,0.4612,0.824,1,-0.208,0.507,1,0.7172,0.4304,0.297,-0.2,-0.006,-0.0262,0.208,0.503,0.4384,0.3858,0.3374,0.0102,-0.1556,-0.1272,-0.0464,-0.0868,0.2282,0.4546,0.5878,0.7132,0.503,-0.099,-0.2202,-0.2646,-0.1718,-0.095,0.1272,0.4262,0.8182,0.2898,0.604,1,0.7552,0.1428,0.2164,0.3224,0.3552,0.4858,0.2816,-0.053,-0.2286,-0.3388,-0.4368,-0.5714,-0.547,-0.5428,-0.5674,-0.5632,-0.4164,-0.4858,-0.5142,-0.1428,-0.1878,-0.4858,-0.5878,-0.7266,-0.8286,-0.7388,-0.7428,-0.6612,-0.5428,0.3334,1,0.8788,0.697,0.2122,-0.2728,-0.2122,-0.091,-0.2728,-0.9394,-0.2728,-0.2728,-0.7576,-0.2728,-0.0304,-0.1516,-0.3334,-0.394,0.091,0.697,0.8182,0.8182,0.6364,0.6364,0.697,0.697,0.6364,0.5758,0.4546,0.4546,0.5152,0.5758,0.077,0.3846,0.3846,0.4872,-0.1794,-0.4872,-0.3846,-0.3334,-0.5898,-0.7436,-0.5898,-0.5384,-0.7948,-0.4872,-0.4358,-0.4358,-0.3334,-0.1282,0.282,0.3846,0.7436,0.5384,0.7436,0.6924,0.7948,1,0.641,0.641,0.6924,0.5384,0.5898,0.8462,-0.238,0.492,0.9682,0.746,0.4286,0.238,-0.1428,-0.1746,-0.1746,-0.0476,0.365,0.5556,0.619,0.6508,0.3968,0.0794,0.1112,0.0476,0.0794,0.4604,0.7142,1,0.9366,0.3016,0.1428,0.0476,-0.0158,-0.0158,0.238,0.3968,0.6826,0.9048,-1,-1,-1,-1,-1,-1,-1,-1,-0.9806,-0.9664,-0.9136,-0.4126,-0.0772,0.3974,0.8424,0.9838,0.9584,0.8354,0.3994,-0.004,-0.2104,-0.4898,-0.878,-0.9664,-0.9634,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9738,-0.9662,-0.937,-0.4694,0.018,0.6118,0.9492,0.826,0.8378,0.5364,0.1238,-0.1448,-0.436,-0.6544,-0.9096,-0.9586,-0.9608,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.94,-0.88,-0.829,-0.6646,-0.604,-0.636,-0.74,-0.712,-0.748,-0.734,-0.848,-0.876,-0.938,-0.8868,-0.7868,-0.88,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6572,-0.9142,1,1,0.1714,-0.7142,-0.9142,-0.8572,-0.8858,-0.8858,-0.7428,0,1,0.3428,-0.2286,-0.8858,-0.9428,-1,-1,-1,-1,-1,-1,-1,-1,-0.5874,-0.5896,-0.5806,-0.5712,-0.5714,-0.5642,-0.4834,-0.3862,-0.2968,-0.0538,0.7748,0.852,0.8434,0.8678,0.8924,0.8954,0.9062,0.84,0.6536,0.1242,-0.6266,0.153,-0.9468,-0.732,-0.5382,-0.352,-0.1402,0.6334,0.1292,0.2108,0.3334,0.7552,0.7688,0.4286,0.551,0.5782,0.8776,0.8912,0.7414,0.7142,0.8368,0.9592,0.4014,0.3606,0.483,0.3606,0.5238,0.4422,1,0.7552,0.6598,0.687,0.7142,0.6326,0.5646,0.1564,0.687,0.415,0.2654,-0.415,0,0.4342,0.5394,1,0.7894,0.421,0.6052,0.4868,0.6316,0.75,0.7764,0.4606,0.7764,0.6184,0.2894,0.1316,0.3684,0.2106,0.3552,0.4078,0.5922,0.3948,0.5132,0.4342,0.3158,0.4474,0.6448,-0.0264,-0.0132,-0.0394,-0.2368,-0.3684,0.4,0.56,0.52,0.72,0.53,0.41,0.73,0.62,0.47,0.47,0.83,0.62,0.57,0.61,0.38,0.29,0.56,0.46,0.39,0.42,0.81,1,0.68,0.38,0.38,0.28,0.28,0.26,0.25,0.35,-0.08,-0.41,-0.986,1,-1,-1,-1,-1,-1,-1,-1,-0.1034,0.1494,0.1264,1,0.839,0.5402,0.4482,0.7012,0.7012,0.862,0.6092,0.5402,0.7242,0.908,0.5632,0.4252,0.3334,0.2874,0.3794,0.1954,0.5862,0.5632,0.4482,0.3334,0.4942,0.3334,0.0114,0.4942,0.1954,0.1034,0.0114,-0.2414,'21'
-0.185,0.2258,0.6646,0.7618,0.583,0.4828,0.138,-0.1474,-0.0972,-0.0564,-0.1912,-0.1098,0.1912,0.2068,0.395,0.5518,0.699,0.7178,0.7022,0.696,0.6802,0.8182,1,0.9844,0.6176,0.3888,0.4514,0.3888,0.3416,0.4576,0.7178,0.8088,-0.2442,0.1676,0.7442,0.8236,0.3294,0.2294,0.0676,-0.2324,-0.2176,-0.153,-0.3,-0.2794,-0.0648,-0.0942,-0.1382,0.0088,0.103,0.5558,0.6618,0.903,0.947,1,0.8352,0.7442,0.9264,0.6588,0.6764,0.497,0.3912,0.5,0.6,0.603,-0.2328,0.2298,0.7102,0.833,0.306,-0.0572,-0.4408,-0.5872,-0.4524,-0.4084,-0.4202,-0.4992,-0.385,-0.2358,-0.3382,-0.3148,-0.0424,-0.0454,0.1976,0.593,0.6604,1,0.9386,0.7424,0.6604,0.7452,0.6046,0.5754,0.3968,0.344,0.4992,0.6194,-0.2486,0.1648,0.6676,0.7342,0.0086,-0.2342,-0.6764,-0.5578,-0.5838,-0.7226,-0.6618,-0.6012,-0.4076,-0.4798,-0.4538,-0.3584,-0.3006,-0.1272,-0.0028,0.2514,0.6618,0.9046,1,0.8844,0.7254,0.8006,0.8208,0.63,0.4942,0.4654,0.4826,0.5346,-0.269,0.073,0.689,0.6548,-0.238,-0.608,-0.689,-0.608,-0.8382,-0.8506,-0.9098,-0.9254,-0.6952,-0.5864,-0.6268,-0.633,-0.4464,-0.3406,-0.213,0.0388,0.3438,0.7294,0.9906,1,0.8632,0.7604,0.801,0.829,0.6734,0.4898,0.493,0.5458,-0.2324,0.0578,0.6942,0.61,-0.117,-0.5102,-0.4976,-0.4726,-0.7442,-0.9876,-0.9002,-0.766,-0.7472,-0.7692,-0.7068,-0.638,-0.4696,-0.3916,-0.301,-0.0046,0.1232,0.4478,0.9688,1,0.9968,0.8222,0.816,0.9002,0.66,0.585,0.635,0.5476,0.0176,0.3346,0.817,0.7008,-0.1126,-0.486,-0.574,-0.4964,-0.7992,-0.838,-0.7922,-0.743,-0.8346,-0.7536,-0.6796,-0.7394,-0.683,-0.595,-0.3274,-0.1162,-0.067,0.5212,0.8908,1,0.912,0.8028,0.817,0.7782,0.567,0.1584,0.2536,0.1198,-0.0588,0.4706,0.5882,0.7058,0.5882,0.4706,0.1176,0.0588,0,0,0.1176,0.1764,0.353,0.5882,1,0.8236,0.647,0.4118,0.4118,0.5882,0.5294,0.8236,0.5294,0.7058,0.5882,0.1176,0.2942,0.1764,0.1764,0.4118,0.647,0.8236,-0.2432,0.2432,0.6756,0.7838,0.5676,0.5136,0.027,-0.081,-0.027,-0.081,-0.1892,-0.1352,0.2432,0.3514,0.6216,0.5676,0.7298,0.5136,0.4054,0.5136,0.4594,0.7838,0.8918,1,0.5676,0.4054,0.3514,0.1892,0.2972,0.5136,0.4594,0.946,-0.2644,0.1724,0.7242,0.839,0.1954,0.0344,-0.1494,-0.2874,-0.2874,-0.2644,-0.3334,-0.3794,-0.2874,-0.2184,-0.1494,-0.1954,-0.0804,0.3564,0.4022,0.6552,0.7242,1,0.7242,0.839,0.7472,0.7012,0.7472,0.5402,0.4252,0.4482,0.4482,0.6322,-1,-1,-0.9874,-0.9478,-0.7314,-0.728,-0.7008,-0.746,-0.8184,-0.8594,-0.6396,0.8268,0.9582,0.9902,0.8532,0.3904,0.0772,-0.1356,-0.2798,-0.4148,-0.4064,-0.4788,-0.874,-0.9582,-0.9764,-0.9722,-0.9722,-1,-1,-1,-1,-1,-1,-1,-1,-0.9822,-0.9668,-0.8508,-0.8492,-0.8322,-0.8538,-0.8782,-0.8728,-0.659,0.5774,0.8608,0.7978,0.5262,0.173,0.0136,-0.1662,-0.3058,-0.429,-0.5028,-0.655,-0.9146,-0.9574,-0.9738,-0.9744,-0.9742,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.9134,-0.9368,-0.9334,-0.94,-0.9668,-0.8868,-0.62,-0.55,-0.716,-0.608,-0.694,-0.762,-0.718,-0.58,-0.6128,-0.5728,-0.6864,-0.8,-0.8454,-0.7522,-0.6722,-0.6588,-0.7788,-0.8454,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,-0.1428,-0.2286,-0.6286,-0.8572,-0.1428,1,1,1,1,-0.6858,-0.8,-0.7142,-0.9428,-0.9714,-1,-0.9428,-1,-0.6858,0.7428,0.0858,-0.4286,-0.5714,-0.8,-0.7714,-1,-1,-1,-1,-1,-1,0.5488,0.5616,0.5716,0.5722,0.5728,0.5644,0.5346,0.463,0.2476,-0.0442,-0.09,-0.0454,0.0188,0.0762,0.1546,0.2628,0.365,0.5124,0.697,0.962,-0.6,0.247,-0.706,-0.1064,0.4316,0.8028,0.9798,0.175,1,0.942,0.3188,0.4058,0.3478,0.4348,0.5798,0.4928,0.6522,0.5798,0.4348,0.6812,0.7392,0.5942,0.5218,0.8986,0.7536,0.7826,0.5508,0.6522,0.884,0.8696,0.7536,0.6956,0.5652,0.6666,0.826,0.7972,0.7682,0.5652,0.4492,0.2898,0.4498,0.4392,-0.1852,0.365,0.4604,0.2064,0.5768,0.6296,0.7248,0.873,1,0.7354,0.7672,0.6614,0.6508,0.6826,0.7354,0.7566,0.6826,0.545,0.8096,0.7566,0.8624,0.799,0.7354,0.8202,0.5768,0.873,0.7354,0.5238,0.5344,-0.0264,0.5726,0.5888,0.4032,0.2662,0.3388,0.371,0.6612,0.871,0.75,0.7904,0.9354,1,0.629,0.7178,0.7662,0.8146,0.9354,0.7016,0.5322,0.5322,0.8146,0.75,0.5322,0.6532,0.9274,0.75,0.5806,0.863,0.7178,0.5726,0.4596,0.2338,-0.857,-1,-1,1,0.2,1,-1,-0.4334,-1,-0.5626,-0.1876,-0.0834,0.4166,0.3542,0.1458,0.2084,-0.2084,0.3542,0.7708,0.9584,0.2916,0.4166,0.75,1,0.25,0.125,-0.0834,0.2708,0.2708,0.25,0.4166,0.4166,0.2708,0.0834,0.0208,0.0834,-0.2292,-0.2292,-0.0834,-0.3958,-0.7292,'22'
-0.1544,0.3088,0.7544,0.8596,0.6702,0.572,0.2,-0.0842,-0.1264,-0.0596,-0.1228,0.0666,0.1334,0.1544,0.4808,0.6,0.793,0.8422,0.8666,0.8,0.7404,0.8842,0.9964,1,0.579,0.3894,0.3438,0.3088,0.2772,0.435,0.5122,0.628,-0.253,0.1524,0.756,0.8232,0.369,0.2622,0.1952,-0.1402,-0.2804,-0.1768,-0.2926,-0.1708,-0.1432,-0.1586,0.006,0.0214,0.1036,0.564,0.7318,1,0.869,0.875,0.8506,0.8384,0.9604,0.6768,0.5976,0.503,0.3842,0.372,0.4848,0.4878,-0.2634,0.1538,0.6746,0.7692,0.2486,-0.213,-0.281,-0.3846,-0.29,-0.3758,-0.4498,-0.4202,-0.364,-0.2752,-0.213,-0.2456,-0.006,0.1508,0.29,0.6716,0.8284,1,0.861,0.7278,0.8462,0.8786,0.6746,0.5178,0.3994,0.3284,0.3934,0.4644,-0.3702,-0.006,0.6208,0.6238,-0.1612,-0.3344,-0.3432,-0.4478,-0.5462,-0.5492,-0.6,-0.615,-0.5314,-0.4806,-0.4448,-0.2956,-0.218,-0.0986,0.1762,0.412,0.7374,0.9642,1,0.794,0.7762,0.8268,0.818,0.594,0.4568,0.4836,0.4986,0.5254,-0.4214,0.101,0.5614,0.4494,-0.21,-0.2286,-0.4588,-0.5552,-0.5646,-0.664,-0.8072,-0.7604,-0.6018,-0.5926,-0.5832,-0.4744,-0.3344,-0.1416,-0.0202,0.1696,0.5366,0.9284,1,0.9534,0.8662,0.8506,0.86,0.7542,0.5926,0.5086,0.5458,0.5832,-0.3526,0.1756,0.5426,0.3494,-0.2464,-0.2496,-0.62,-0.5814,-0.6328,-0.6458,-0.9292,-0.8004,-0.6618,-0.5878,-0.6168,-0.5394,-0.5556,-0.3848,-0.2078,0.0466,0.3302,0.7004,1,0.926,0.7134,0.7584,0.7424,0.5072,0.504,0.3816,0.388,0.3784,-0.099,0.3696,0.8304,0.6526,-0.0344,-0.297,-0.5192,-0.5556,-0.6606,-0.7334,-0.9758,-0.9314,-0.9112,-0.709,-0.6686,-0.7132,-0.7738,-0.5596,-0.2686,-0.0748,0.1838,0.697,1,0.9314,0.8546,0.802,0.6242,0.5152,0.3616,0.1394,0.107,0.1112,0,0.5334,0.6,0.8,0.6666,0.6,-0.0666,-0.1334,0,-0.0666,-0.1334,0.2,0.2,0.2666,0.8666,0.6666,0.8,0.2666,0.3334,0.7334,0.6,1,0.2666,0.4666,0.4666,0.2,0.0666,0.1334,0.2,0.4666,0.5334,0.7334,-0.0732,0.2682,0.7074,0.8536,0.6586,0.5122,0.2196,-0.1708,-0.122,0.0244,-0.1708,0.122,0.2196,0.1708,0.561,0.8048,0.9512,0.6098,0.4634,0.7074,0.7074,0.8048,1,0.8536,0.4146,0.122,0.122,0.317,0.1708,0.4146,0.6098,0.561,-0.409,0.091,0.4772,0.3182,-0.25,-0.2728,-0.591,-0.6818,-0.5682,-0.7272,-0.7954,-0.591,-0.5682,-0.7046,-0.6364,-0.6364,-0.5454,-0.2954,-0.0454,0.091,0.2272,0.75,0.8864,1,0.8182,0.75,0.6818,0.7728,0.5,0.4772,0.4772,0.4772,-1,-1,-1,-1,-1,-1,-1,-0.8422,-0.8964,-0.94,-0.713,0.6556,0.9234,0.9884,0.9118,0.5974,0.393,0.2006,-0.0856,-0.2792,-0.4256,-0.4734,-0.7124,-0.933,-0.9642,-0.9686,-0.9738,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9072,-0.9326,-0.9194,-0.7372,0.521,0.853,0.8628,0.7372,0.4442,0.4486,0.4228,0.1712,-0.1986,-0.4802,-0.6448,-0.8184,-0.94,-0.956,-0.9686,-0.9706,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.9368,-0.32,-0.3834,-0.7334,-0.7068,-0.76,-0.7246,-0.6624,-0.602,-0.564,-0.47,-0.656,-0.84,-0.93,-0.9434,-0.6334,-0.6334,-0.7368,-0.6834,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,1,-0.6,-0.8858,-0.8572,-0.7714,-1,-1,-0.8,-0.7142,-0.5714,0.0286,0.1428,-0.5142,-0.6858,-0.8,-0.0572,-1,-1,-1,-1,-1,-1,0.5232,0.54,0.5628,0.583,0.596,0.606,0.596,0.5428,0.365,0.1126,-0.2318,-0.1752,-0.104,-0.018,0.073,0.1792,0.3024,0.4748,0.6836,0.9544,-0.56,0.1176,-0.7608,-0.1706,0.5028,0.7724,1,0.7666,0.2244,0.2654,0.2244,0.4286,0.2654,0.4286,0.5102,0.6734,0.8368,0.6326,0.6326,0.6734,0.5102,0.7552,0.7552,0.551,0.9592,0.7142,0.5918,0.6326,0.9184,1,0.9592,0.5918,0.8776,0.8776,0.796,0.796,0.9184,0.551,0.347,0.2244,0.284,0.3334,0.4568,0.3086,0.2346,0.284,0.5308,0.679,0.7284,0.4568,0.432,0.679,0.7284,0.679,0.4814,0.5802,0.7284,0.7284,0.358,0.6544,1,0.8272,0.7778,0.2346,0.8518,0.9754,0.753,0.5802,0.7038,0.5802,0.4074,0.1604,0.8652,0.9776,0.9102,0.528,0.528,0.5506,0.7078,0.955,0.9776,0.7752,0.9776,0.9776,0.8202,0.6404,0.7304,0.7304,0.8652,0.663,0.4382,0.7078,1,0.5506,0.3034,0.2808,0.5506,0.6854,0.4606,0.4158,0.3932,0.4382,0.3034,0.1236,0.3446,-1,-1,1,-1,0.4,-1,-0.8334,-1,-0.0406,0.1544,0.4472,0.6586,0.5934,0.1382,0.057,0.0244,0.2032,0.5448,0.9512,0.8374,0.8048,1,0.7398,0.3658,0.3822,0.7398,0.5284,0.5448,0.6586,0.5284,0.3496,0.4634,0.3984,0.2846,0.4146,0.252,0.252,-0.1056,0.1708,-0.0406,'22'
-0.096,0.472,0.808,1,0.832,0.84,0.136,0.056,0.024,-0.064,0.024,0.08,0.024,0.24,0.504,0.648,0.576,0.536,0.16,0.08,0.232,0.464,0.576,0.6,0.544,0.08,-0.088,-0.152,-0.168,-0.256,-0.04,0.04,-0.2568,0.1284,0.5068,0.581,1,0.919,0.2364,0.3108,0.3176,0.1554,0.1554,0.2568,0.3784,0.4594,0.6554,0.804,0.8244,0.4932,0.3582,0.4122,0.3918,0.4932,0.7298,0.5406,0.3784,0.2838,0.2364,0.0406,0.1216,0.2298,0.3648,0.5608,-0.2618,0.114,0.4296,0.5974,1,0.859,0.8524,0.5034,0.4564,0.3288,0.3558,0.3624,0.5034,0.8256,0.8926,0.839,0.7382,0.6108,0.4228,0.4496,0.6174,0.7852,0.8658,0.5504,0.4564,0.2214,0.1074,0.1208,0.0806,0.2348,0.3288,0.5302,-0.3118,0.0804,0.3376,0.4534,0.8714,0.7428,0.8456,0.4598,0.4084,0.3054,0.3312,0.3826,0.6464,0.8906,1,0.5756,0.4084,0.4148,0.3248,0.3762,0.5498,0.6078,0.8006,0.4984,0.254,0.1254,0.0032,0.0354,0.0932,0.1832,0.4534,0.3826,-0.261,0.1254,0.4508,0.6542,1,0.8238,0.783,0.5728,0.5118,0.417,0.5526,0.5932,0.9118,0.7492,0.8644,0.4576,0.3898,0.4372,0.4372,0.4848,0.6814,0.722,0.8508,0.4644,0.2338,0.2,0.0372,0.017,0.2338,0.444,0.5864,0.3966,0.0892,0.568,0.615,0.5586,0.8122,0.5024,0.2018,0.2394,0.3428,0.4648,0.7558,0.953,1,0.5024,0.6056,0.2582,0.3052,0.1456,0.3428,0.399,0.6432,0.6526,0.399,0.0046,-0.3616,-0.3052,-0.3146,-0.3896,-0.0328,0.1644,0.23,-0.1738,0.5,1,0.5208,0.0104,0.073,0.0208,0.2812,-0.1146,-0.198,-0.2604,0.052,0.4896,0.6146,-0.073,-0.2604,-0.3958,-0.2188,-0.3334,-0.552,-0.2604,0.302,0.125,-0.1354,-0.573,-0.3854,-0.6042,-0.7292,-0.552,-0.3854,-0.5,-0.4376,-0.552,-0.077,0.5384,0.7436,1,0.5384,0.7436,0.1794,0.1282,-0.077,-0.1282,0.077,-0.077,-0.077,0.1794,0.1794,0.4358,0.3334,0.4872,-0.077,-0.1282,0.3334,0.3334,0.6924,0.4872,0.4358,-0.0256,-0.077,-0.0256,-0.0256,-0.3846,-0.2308,0.077,-0.1428,0.3714,0.7714,1,0.9428,0.8858,0.2,-0.0858,0.0286,-0.0286,-0.0286,0.1428,-0.0858,0.2572,0.7714,0.8858,0.6572,0.5428,0.4858,0.2,0.2572,0.3142,0.3714,0.7714,0.7142,0.0858,-0.2572,-0.1428,-0.3142,-0.4858,0.0858,-0.2572,-0.2988,0.091,0.5324,0.7402,0.8702,0.5064,0.091,0.3766,0.1948,0.2208,0.6624,1,1,0.4286,0.3766,0.1948,0.2208,0.1688,0.2728,0.4806,0.5064,0.4806,0.3506,0.1948,-0.2208,-0.1948,-0.1168,-0.1168,0.1948,0.4806,0.4286,-0.2208,-1,-1,-1,-1,-1,-1,-1,-1,-0.989,-0.9878,-0.5752,0.2638,0.3682,0.7946,0.9844,0.866,0.7912,0.7796,0.7928,0.0304,-0.7342,-0.8132,-0.891,-0.9322,-0.8196,-0.6386,-0.4018,-0.2822,-0.0234,-0.168,-0.3472,-0.439,-0.5984,-1,-1,-1,-1,-1,-1,-1,-1,-0.9884,-0.988,-0.532,-0.28,-0.084,0.3074,0.592,0.7734,0.9784,0.864,0.488,-0.2472,-0.8632,-0.906,-0.9432,-0.905,-0.8546,-0.7838,-0.67,-0.451,-0.249,-0.4002,-0.5728,-0.6642,-0.7802,-1,-1,-1,-1,-1,-1,-1,-1,-0.9,-0.92,-0.36,-0.81,-0.755,-0.715,-0.74,-0.752,-0.692,-0.728,-0.756,-0.82,-0.916,-0.904,-0.9,-0.6268,-0.3634,-0.6,-0.8,-0.7468,-0.6668,-0.7034,-0.7734,-0.8,-0.7668,-1,-1,-1,-1,-1,-1,-1,-1,-0.7428,1,1,1,1,0.5714,-0.6,-0.9142,-0.9142,-0.6858,1,1,1,0,1,1,1,0.3428,0.9428,0.3714,-0.3714,-0.3714,-0.4,0.2286,1,0.59,0.59,0.6044,0.6106,0.6354,0.6642,0.7072,0.8232,0.944,0.7252,-0.435,-0.435,-0.4632,-0.4434,-0.4326,-0.4634,-0.4922,-0.5868,-0.6982,-0.85,-0.6,-0.5176,-0.4802,-0.3664,-0.216,-0.0426,0.2864,1,-0.193,0.035,0.4562,0.579,0.614,0.5264,0.2808,0.6492,0.7544,0.7544,0.6666,0.4736,0.4036,0.6842,0.7018,0.7192,0.6666,0.5964,0.9474,1,0.8422,0.6492,0.5264,0.5264,0.5614,0.3158,0.193,0.2982,0.2632,0.2106,0.1228,-0.2982,-0.0468,0.4206,0.4206,0.1214,0.1214,0.1776,0.0654,0.813,0.8878,0.3084,0.2524,0.3832,0.215,0.3458,0.3832,0.3272,0.701,0.813,0.8504,1,0.9814,0.7944,0.3272,0.813,0.7384,0.4206,0.3832,0.3084,0.2898,0.3644,0.3644,-0.0094,0.6264,0.912,1,0.3846,0.2308,0.2968,0.2308,0.5384,0.7362,0.2528,0.3406,0.6264,0.6264,0.1868,0.2748,0.2968,0.5164,0.5824,0.7362,0.7582,0.6704,0.3626,0.077,0.2748,0.2088,-0.2088,-0.2748,-0.2088,0.1868,0.4946,0.3186,-0.033,0.2312,-1,-1,1,-1,-1,1,-0.8,-1,0.1942,0.223,-0.2518,0.0216,-0.1654,-0.151,0.1366,0.4532,0.5828,0.9424,0.928,1,0.4964,0.4388,0.741,0.4676,0.669,0.482,0.6402,0.8418,0.741,0.2806,0.2086,0.5252,0.151,0.4676,0.482,0.1942,0.1942,0.2806,0.151,-0.1942,'23'
0.0178,0.4286,0.8392,0.6964,-0.3482,-0.5446,-0.7322,-0.759,-0.5268,-0.75,-0.9554,-0.759,-0.7322,-0.8036,-0.6608,-0.4732,0,0.0714,0.366,0.991,1,0.4464,0.4822,0.7946,0.8304,0.5892,0.5804,0.3214,0.1876,0.5624,0.741,0.991,-0.2962,0.0814,0.7408,0.6222,-0.0148,-0.2518,-0.474,-0.4962,-0.6296,-0.8222,-0.8296,-0.726,-0.5852,-0.563,-0.4888,-0.3038,0.1408,0.326,0.5852,1,0.7112,0.6592,0.4666,0.8444,0.7704,0.6518,0.4148,0.2148,0.3482,0.3852,0.6444,0.8222,-0.424,0.0744,0.4046,0.5598,0.547,0.0614,-0.2492,-0.4046,-0.4758,-0.4304,-0.547,-0.4368,-0.2944,-0.165,-0.0292,0.1974,0.5276,0.8512,1,0.78,0.8512,0.864,0.8576,0.6894,0.4174,0.2362,0.1456,0.0938,0.0744,0.2298,0.398,0.5792,-0.3684,0.0526,0.3964,1,0.972,0.5088,0.1508,0.0036,-0.1508,-0.1298,-0.179,0.0246,0.193,0.3404,0.607,0.9158,0.972,0.9508,0.7474,0.8106,0.9088,0.965,0.8456,0.5578,0.3052,0.0736,0.0176,0.0596,0.0456,0.2422,0.3684,0.5508,-0.2814,0.0814,0.4296,0.926,0.837,0.874,0.3186,0.1038,0.1038,0.037,0.0444,0.3408,0.726,0.9038,0.8296,0.6444,0.6296,0.4888,0.363,0.5408,0.8592,1,0.4222,0.2518,0.237,-0.2,-0.3408,-0.1186,-0.0666,-0.0074,0.1778,0.4592,-0.0572,0.3238,0.638,0.7142,0.762,0.8286,0.5524,0.4096,0.162,0.0952,0.6762,0.819,1,0.9238,0.3048,0.019,-0.1904,-0.3048,-0.1714,0.1334,0.2572,0.6096,0.438,0.0572,-0.3714,-0.4,-0.5142,-0.4476,-0.4666,-0.2952,-0.0096,0.2858,0.0994,0.5184,1,0.7172,-0.7068,-0.4554,0.2984,0.4346,0.1832,-0.0786,0.0994,0.0472,-0.246,-0.1624,-0.2252,-0.644,-0.7486,-0.5706,-0.7486,-0.7802,-0.7068,-0.6336,-0.7592,-0.5916,-0.4136,-0.4136,-0.445,-0.9582,-0.8534,-0.9476,-0.4136,-0.487,0.3142,0.5428,0.7714,0.7142,0.0286,-0.0858,-0.3714,-0.1428,-0.0858,-0.2572,-0.5428,-0.6572,-0.1428,-0.0858,-0.1428,-0.4286,0.2572,0.3714,0.2,1,1,0.6,0.7714,0.7714,0.7142,1,0.8858,-0.0858,0.3714,0.7714,0.9428,1,0.027,0.5676,0.7298,0.6216,-0.4594,-0.3514,-0.6216,-0.5136,-0.1892,-0.2972,-0.6756,-0.6216,-0.2432,-0.2432,-0.2432,-0.4054,0.081,-0.027,0.3514,0.7838,0.7298,0.081,0.1352,0.7838,0.8918,0.3514,0.7838,0.6216,0.027,0.4594,0.5136,1,-0.2676,0.014,0.3522,0.6902,0.662,0.6902,0.2958,0.155,0.014,-0.0704,0.2676,0.4366,0.9154,1,0.493,0.0422,-0.2676,-0.0704,-0.155,0.2394,0.4366,0.8592,0.7184,-0.0704,-0.493,-0.2394,-0.2958,-0.4366,-0.5492,-0.4366,-0.2676,0.3522,0.6518,1,1,1,1,1,0.5964,-0.639,-0.8118,-0.8452,-0.492,-0.3204,-0.0342,0.3166,0.3734,0.782,0.969,0.639,0.2688,-0.0304,-0.2804,-0.2804,-0.8376,-0.9484,-0.9536,-0.951,-1,-1,-1,-1,-1,-1,-1,0.4194,1,1,1,1,1,0.3216,-0.7508,-0.8684,-0.5362,-0.6088,-0.5096,-0.3096,0.0936,0.5518,0.8508,0.9712,0.589,0.0788,-0.2562,-0.5116,-0.5102,-0.8888,-0.9458,-0.9522,-0.9514,-1,-1,-1,-1,-1,-1,-1,-0.5634,-0.6068,-0.6668,-0.6368,-0.63,-0.6334,-0.7834,-0.9,-0.88,-0.5834,-0.6434,-0.748,-0.732,-0.732,-0.628,-0.64,-0.732,-0.712,-0.624,-0.668,-0.832,-0.8734,-0.7668,-0.7368,-0.81,-0.8368,-1,-1,-1,-1,-1,-1,-1,1,1,0,-0.8858,-0.1714,1,1,1,1,1,0.0858,-0.4858,0.2,0.2,-0.3714,-0.6,-0.5714,-0.0858,0.7428,1,1,0.4858,-0.0572,-0.8286,-1,-0.7142,-1,-1,-1,-1,-1,-1,-1,-0.6702,-0.7376,-0.7182,-0.6584,-0.6342,-0.5234,-0.392,-0.2536,0.0548,0.3468,0.7444,0.735,0.6996,0.6944,0.6774,0.6994,0.7286,0.697,0.4282,-0.204,-0.4,-0.4588,-0.5764,-0.5546,-0.4904,-0.3758,-0.157,1,0.0624,0.1376,0.1626,0.2374,0.175,0.4376,0.8,1,0.9874,0.875,0.85,0.8124,0.675,0.575,0.7124,0.775,0.65,0.5624,0.5376,0.6626,0.7,0.6,0.5376,0.4,0.4376,0.3374,0.4376,0.3624,0.3,0.175,0.1376,-0.2376,0.33,0.33,0.2118,-0.005,-0.133,-0.0148,0.1528,0.3596,0.4876,0.5764,0.931,1,0.734,0.596,0.5566,0.7536,0.5172,0.3694,0.3892,0.5074,0.5764,0.4582,0.4582,0.468,0.3004,0.3498,0.202,0.1822,0.1724,0.4088,0.2316,-0.2906,0.6626,0.735,0.3494,-0.1446,-0.229,-0.253,0,0.1808,0.5542,1,0.8434,0.976,0.8796,0.7952,0.747,0.9156,0.8434,0.518,0.506,0.5662,0.3374,0.229,0.265,0.1446,-0.0964,-0.012,0.0722,0.2168,0.024,0.1928,-0.0482,-0.4698,-0.057,-1,-1,1,-0.6,1,-1,-0.6,-1,0.4376,0.4792,0.4166,1,0.9584,0.3958,0.8958,0.5624,0.7708,0.25,0.75,0.7084,0.5416,0.625,0.5624,0.4376,0.5624,0.5,0.125,0.3958,0.6458,0.625,0.5416,0.4376,0.3334,0.2084,0.3958,0.3542,0.3958,0.0208,0.2708,0.0416,'23'
-0.3924,0.076,0.1836,0.405,0.962,1,0.595,0.3292,0.1836,0.076,0.1202,0.0632,0.1646,0.2342,0.4304,0.7532,0.8798,0.924,0.8734,0.6518,0.6646,0.7912,0.7658,0.633,0.4114,0.1962,0.1392,0.1898,0.0316,0.0632,0.2342,0.3734,-0.2632,0.1208,0.2942,0.3622,0.8018,0.74,0.5976,0.2012,0.2446,0.164,-0.0154,0.1578,0.2942,0.2322,0.517,0.8514,1,0.9814,0.8886,0.8266,0.7894,0.8452,0.8886,0.8948,0.4614,0.3498,0.3994,0.3066,0.226,0.2446,0.2632,0.4056,-0.2882,0.0748,0.331,0.395,0.6298,0.8078,0.8506,0.1744,0.096,0.1316,-0.0036,0.096,0.1814,0.2954,0.4804,0.6726,1,1,0.943,0.8932,0.8648,0.9288,0.9716,0.822,0.6512,0.4946,0.4306,0.4164,0.2028,0.1958,0.2456,0.4876,-0.3622,-0.0898,0.216,0.3488,0.4818,0.887,0.8074,-0.1562,0.123,0.0166,-0.0764,0.123,0.1096,0.1628,0.3754,0.6346,0.7476,1,0.8738,0.6678,0.7808,0.8338,0.9004,0.6678,0.4418,0.3888,0.2956,0.1828,0.1694,0.1694,0.1694,0.2758,-0.3906,-0.1184,0.1776,0.355,0.5444,0.9112,0.7574,-0.0356,0.148,-0.0178,-0.0118,0.0946,0.1716,0.2308,0.361,0.6272,0.8994,1,0.6982,0.71,0.7634,0.7752,0.6036,0.6094,0.3254,0.2426,0.2248,0.136,0.0178,0.0118,0.065,0.1184,-0.387,-0.1428,0.25,0.494,0.6964,0.881,0.6428,0.3036,0.0178,-0.0238,-0.0476,0.0536,0.1428,0.2202,0.262,0.4048,0.8392,0.9048,1,0.8988,0.8928,0.9404,0.5774,0.375,0.238,0.1904,-0.0654,-0.1428,-0.1488,-0.3392,-0.3452,-0.2916,-0.6056,-0.1166,0.1166,0.4722,0.4278,0.2388,0.0056,0.0056,-0.1278,-0.2612,-0.2112,-0.1944,-0.2444,-0.0944,0.0388,0.25,0.4112,0.7112,0.8944,1,0.9334,0.85,0.5388,0.1556,-0.0944,-0.0888,-0.1722,-0.3778,-0.5112,-0.45,-0.4334,-0.5056,-0.5238,0,0.1428,0.4762,0.9048,1,0.6666,0.1428,0.0952,0.0952,0.1428,0.1428,0.1904,0.238,0.4286,0.8572,0.9524,0.8572,0.8572,0.5714,0.6666,0.8096,0.7142,0.7142,0.381,0.1904,0.1428,0.1428,0,0,0.1904,0.381,-0.4884,-0.0232,0.1162,0.3024,0.9534,1,0.3488,0.3488,0.1162,0.0698,0.1162,0.0698,0.0698,0.2094,0.3488,0.721,0.7674,0.907,0.8604,0.6744,0.6744,0.7674,0.628,0.5348,0.3954,0.3024,0.2094,0.2558,0.0698,0.0232,0.2094,0.2094,-0.358,-0.0864,0.284,0.4814,0.753,1,0.7778,0.1852,-0.037,0.0618,-0.037,0.037,0.2098,0.2592,0.3334,0.5802,1,1,1,1,0.8272,0.9754,0.8766,0.5802,0.2346,0.2592,0.0864,0.0124,-0.1358,-0.0618,-0.1358,-0.0864,-1,-1,-1,-1,-1,-1,-0.9786,-0.9872,-0.9632,-0.8956,-0.7158,-0.1018,0.1182,0.2304,0.3904,0.607,0.905,0.9864,0.9504,0.56,0.0506,-0.4084,-0.9504,-0.97,-0.9786,-0.976,-0.929,-0.8236,-0.9118,-0.9084,-0.9246,-0.9384,-0.893,-1,-1,-1,-1,-1,-1,-0.9744,-0.9782,-0.9708,-0.9172,-0.7552,-0.2306,0.2624,0.63,0.3506,0.6086,0.9324,0.9598,0.8568,0.655,0.0126,-0.3306,-0.9508,-0.9738,-0.9794,-0.98,-0.7988,-0.5794,-0.3238,-0.2402,-0.5242,-0.6048,-0.5588,-1,-1,-1,-1,-1,-1,-0.8654,-0.9134,-0.7734,-0.7,-0.66,-0.72,-0.615,-0.375,-0.632,-0.54,-0.66,-0.78,-0.716,-0.648,-0.572,-0.332,-0.54,-0.7034,-0.8168,-0.91,-0.79,0.2766,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-0.1714,-0.8,0.3142,1,1,1,1,-0.2858,-0.8572,-1,-1,-0.9142,-0.1428,0.5142,1,1,1,-0.2858,-0.9428,1,1,1,1,-0.1428,-0.1142,-0.8286,-0.2572,1,1,1,1,1,1,1,1,1,1,-0.386,-0.386,-0.3688,-0.3432,-0.32,-0.2732,-0.2862,-0.2102,-0.1294,-0.2292,-0.52,-0.5058,-0.767,-0.425,-0.0876,0.342,0.6372,-0.025,-0.0334,-0.1334,0.3,0.9666,0.5888,0.4334,0.8556,0.9222,1,0.9778,0.8,0.5444,0.4334,0.5778,0.4,0.5556,0.6222,0.5778,0.6778,0.6444,0.8888,0.6556,0.7444,0.7888,0.2,0.7334,0.7222,0.7222,0.4778,0.4778,0.4222,0.0556,-0.0122,0.3604,0.6518,1,0.7894,0.3198,0.5952,0.6842,0.8462,0.6194,0.6032,0.3118,0.5546,0.3198,0.3684,0.328,0.2632,0.2064,0.417,0.6276,0.6762,0.4898,0.4818,0.3198,0.1822,0.336,0.2388,0.2146,-0.1336,-0.1578,0.085,-0.0608,-0.3858,0.4214,0.8122,0.8984,0.401,0.2284,0.203,0.5178,0.9898,1,0.9238,0.9848,0.406,0.066,-0.0862,0.1624,0.4822,0.7716,0.6548,0.5686,0.5786,0.3096,-0.401,-0.3654,-0.401,-0.3604,-0.3604,-0.3858,-0.3452,-0.2842,-0.3604,-0.7868,-0.9496,1,-1,-1,-1,-1,-1,-1,1,-0.7914,-0.7056,-0.6564,-0.6932,-0.6074,-0.362,-0.3496,-0.276,-0.1534,-0.1042,-0.1042,-0.2148,-0.0674,0.0674,-0.0184,0.0184,0.1412,0.1166,0.2516,0.3128,0.362,0.5706,0.4724,0.3988,0.7178,0.7914,0.7546,0.8036,1,0.951,0.7668,0.632,'24'
-0.34,0.0034,0.2938,0.3466,0.7954,0.7426,0.5314,0.2674,0.2542,0.142,0.0364,0.1816,0.2014,0.2212,0.4918,0.6238,0.769,1,0.9802,0.703,0.703,0.8218,0.8746,0.835,0.4588,0.373,0.3796,0.274,0.2872,0.3466,0.505,0.6634,-0.383,-0.0306,0.1932,0.3966,0.7492,0.6678,0.5254,0.2204,0.2,0.105,0.044,0.0848,0.1594,0.2,0.322,0.6136,0.7694,1,0.905,0.695,0.756,0.7898,0.905,0.7762,0.5322,0.3694,0.2746,0.2882,0.2746,0.2746,0.444,0.5594,-0.2988,0.0324,0.3246,0.461,0.7338,0.7338,0.7988,0.3052,0.1948,0.2078,0.0324,0.0194,0.1558,0.2792,0.3116,0.552,0.9156,1,0.8052,0.6688,0.7922,0.8442,0.8246,0.7468,0.4936,0.435,0.3246,0.2792,0.3246,0.3702,0.461,0.565,-0.3016,0.017,0.3492,0.5186,0.7628,0.8508,0.8848,0.3288,0.1728,0.2272,0.017,0.0576,0.1728,0.3084,0.4508,0.6,1,0.9796,0.8916,0.8306,0.8306,0.8238,0.783,0.8372,0.444,0.3356,0.3356,0.3084,0.2746,0.3424,0.5186,0.539,-0.3266,-0.0304,0.3334,0.5354,0.724,1,0.9596,0.4546,0.1314,0.1314,0.091,0.1178,0.1314,0.34,0.5084,0.7442,0.9866,0.9664,0.9932,0.9394,0.8384,0.872,0.899,0.7306,0.3536,0.2794,0.165,0.091,0.1784,0.2188,0.3132,0.5016,-0.4922,-0.1598,0.2164,0.5172,0.5924,0.7554,0.4922,0.3918,0.1598,0.0032,0.0094,0.1662,0.1974,0.21,0.3794,0.7178,0.906,1,0.837,0.8934,0.9184,0.9562,0.7868,0.4984,0.3982,0.1974,0.0344,-0.0032,0.1034,0.091,0.1974,0.2352,-0.6496,-0.0584,0.073,0.4014,0.4598,0.292,0.1824,-0.1678,-0.2044,-0.3138,-0.2408,-0.2774,-0.197,0.0876,0.1314,0.635,0.854,0.8686,0.7884,0.6788,0.8832,1,0.8468,0.3212,0.0146,-0.1386,-0.343,-0.1094,-0.1532,-0.219,-0.0656,0.0146,-0.4884,-0.0232,0.2558,0.4884,0.814,0.7674,0.4884,0.3024,0.0698,0.0232,0.0232,0.0698,0.0698,0.3024,0.4884,0.5814,0.9534,0.9534,1,0.721,0.814,0.907,0.814,0.7674,0.628,0.3954,0.3488,0.2094,0.2558,0.3488,0.4418,0.6744,-0.4694,-0.0612,0.1836,0.3878,0.7142,0.5918,0.4694,0.347,0.1836,0.0204,0.0612,0.102,0.1428,0.2244,0.4286,0.6326,0.6326,1,0.9184,0.7552,0.7142,0.7142,0.9592,0.796,0.4694,0.3878,0.3878,0.3062,0.2654,0.3878,0.551,0.6326,-0.413,-0.1304,0.2608,0.4782,0.6304,0.8914,0.7826,0.5652,0.1522,0.0652,0.087,0.1956,0.087,0.2392,0.4566,0.7608,0.8914,1,0.8478,0.8044,0.913,0.826,0.8478,0.4566,0.3478,0.1956,0.0434,0.087,0.1522,0.087,0.2392,0.2174,-1,-1,-1,-1,-1,-1,-0.9816,-0.9808,-0.9016,-0.588,-0.5976,0.1944,0.5288,0.8216,0.8856,0.9488,0.9816,0.9208,0.7856,0.3736,0.0376,-0.6744,-0.9392,-0.9728,-0.9808,-0.9576,-0.9272,-0.9288,-0.9424,-0.9584,-0.9584,-0.936,-0.9336,-1,-1,-1,-1,-1,-1,-0.9854,-0.9862,-0.931,-0.731,-0.6636,0.216,0.9422,0.7638,0.6368,0.668,0.8,0.8768,0.8876,0.687,0.3712,-0.666,-0.9572,-0.9782,-0.984,-0.9282,-0.6058,-0.5066,-0.5266,-0.4182,-0.497,-0.563,-0.5442,-1,-1,-1,-1,-1,-1,-0.9134,-0.9134,-0.7768,-0.7368,-0.6168,-0.325,-0.265,-0.52,-0.52,-0.595,-0.705,-0.73,-0.66,-0.592,-0.568,-0.476,-0.6234,-0.69,-0.8934,-0.7934,0.0666,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-0.5714,-0.6,1,1,1,1,1,-1,-1,-1,-0.9428,-0.9142,-0.7714,0.1714,1,1,1,-0.6858,-0.6858,1,1,1,-0.5142,-0.8286,-0.8286,-0.9714,-0.4572,1,1,1,1,1,1,1,1,1,1,-0.084,-0.0428,-0.0428,-0.0634,-0.0442,-0.0088,-0.016,0.0112,-0.014,-0.2172,-0.56,-0.5648,-0.6632,-0.2038,0.6182,0.9898,0.8364,0.625,-0.253,-0.1566,0.976,0.6386,0.012,0.012,0.229,0.3976,0.9518,0.976,0.8314,1,0.8314,0.5422,0.3494,0.3976,0.8314,0.8796,0.735,0.6386,0.759,0.7108,0.5904,0.253,-0.0362,-0.518,-0.3012,-0.2772,-0.2772,-0.0362,-0.0602,-0.3734,0.192,0.6364,0.8586,0.7374,0.2526,0.1314,0.1516,0.4142,1,0.8384,0.8182,0.9192,0.5556,0.4142,0.293,0.5152,0.6768,0.8788,0.697,0.5152,0.495,0.293,-0.0304,-0.192,-0.3738,-0.3738,-0.3738,-0.394,-0.7576,0.1112,0.0304,-0.0102,0.1608,0.5178,0.7678,0.7142,0.3036,0.3214,0.375,0.5536,1,0.9822,0.8928,0.9642,0.7322,0.5,0.4642,0.6428,0.8392,1,0.8928,0.75,0.3214,0.4464,0.1072,0.0714,-0.3214,-0.4464,-0.4464,-0.5,-0.5892,-0.25,-0.1072,-0.1786,-0.1574,-1,-1,1,-1,-1,-1,-0.8,1,-0.7514,-0.6046,-0.5368,-0.322,-0.1638,-0.096,0.1526,0.13,0.0848,0.1186,0.2994,0.1186,0.209,0.243,0.2768,0.2882,0.2882,0.435,0.4576,0.6046,0.6158,0.8418,0.8418,0.921,1,0.9774,0.921,0.887,0.5932,0.6158,0.5706,0.3672,'24'
0.3948,0.727,1,0.9276,0.977,0.7994,0.4902,0.1974,-0.0624,-0.352,-0.3552,-0.4376,-0.4968,-0.5264,-0.4606,-0.4968,-0.5986,-0.648,-0.5394,-0.556,-0.5362,-0.5,-0.4376,-0.4638,-0.421,-0.4868,-0.671,-0.7336,-0.6744,-0.6908,-0.875,-0.8882,-0.2802,0.038,0.4086,0.563,0.8552,0.9692,1,0.7934,0.7672,0.5296,0.0902,-0.1258,-0.1616,-0.285,-0.3848,-0.5748,-0.342,-0.3468,-0.4228,-0.1806,-0.0688,0.1568,0.1306,-0.0428,-0.2898,-0.4584,-0.449,-0.4204,-0.3706,-0.361,-0.1354,-0.0784,-0.443,-0.2016,0.0496,0.1918,0.3146,0.7488,0.891,1,0.6806,0.8266,0.9358,0.737,0.6456,0.2892,0.2522,0.1432,0.0574,0.1354,0.2016,0.2638,0.4936,0.5716,0.63,0.2172,0.0788,0.1236,-0.0672,-0.1704,-0.2678,-0.4684,-0.3086,-0.2678,-0.4656,-0.2488,0.0106,0.094,0.2546,0.5606,0.909,0.9496,0.7212,0.8818,0.8644,1,0.8878,0.5722,0.365,0.1848,0.1868,0.243,0.1908,0.3668,0.4792,0.6224,0.5934,0.3592,0.1016,-0.0396,-0.2062,-0.272,-0.2566,-0.2468,-0.1442,-0.1172,-0.4778,-0.2918,-0.0326,0.09,0.2978,0.537,0.8298,0.8872,0.907,0.6854,0.7864,0.901,1,0.917,0.644,0.4382,0.361,0.361,0.3848,0.4658,0.6142,0.7528,0.729,0.4876,0.2838,0.1552,0.0446,0.0524,0.0268,-0.005,0.1216,0.1672,-0.4786,-0.2454,0.0034,0.1464,0.4082,0.78,0.8812,0.967,0.7844,0.5094,0.5358,0.5908,0.7514,1,0.9758,0.945,0.725,0.6436,0.6128,0.648,0.7734,0.8878,0.802,0.6568,0.4214,0.2652,0.1486,0.1112,0.076,0.0408,0.0474,0.1266,-0.341,-0.086,0.1748,0.341,0.8252,0.9886,1,0.6018,0.0888,0.1088,-0.066,0.0574,0.1576,0.169,0.1862,0.6476,0.8338,0.874,0.7936,0.6648,0.6876,0.722,0.6704,0.4642,0.2866,0.126,-0.023,-0.149,-0.0516,-0.0258,0,0.2206,0.6,0.85,0.8,0.9,0.95,1,0.75,0.45,0.4,0.35,0.55,0.4,0.3,0.3,0.5,0.45,0.35,0.35,0.35,0.45,0.45,0.3,0.4,0.45,0.3,0.35,0.2,-0.05,0.25,0.35,0.3,-0.1,0.5624,0.6876,1,0.875,0.6876,0.6876,0,0.0624,-0.1876,-0.6876,-0.25,-0.25,-0.5624,-0.5624,-0.1876,0,-0.375,-0.6876,-0.3124,0.0624,-0.0624,0.0624,0.125,0,-0.0624,-0.25,-0.25,-0.625,-0.5,-0.375,-0.75,-0.5624,-0.4042,-0.149,0.149,0.383,0.617,0.9574,0.9574,0.5744,0.9788,1,0.234,0.1276,0.0212,-0.0426,-0.2128,-0.2554,-0.1702,-0.149,-0.149,0.0426,0.2128,0.2128,0.3192,0.0638,-0.1276,-0.2128,-0.2128,-0.2128,-0.1702,-0.149,-0.1702,-0.4256,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8392,-0.8116,-0.6494,-0.2354,0.8338,0.788,0.5562,0.3198,0.1186,0.007,-0.0982,-0.0828,-0.2834,-0.7122,-0.8704,-0.948,-0.9702,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.959,-0.9504,-0.904,-0.7394,0.2486,0.8618,0.9766,0.957,0.7584,0.5772,0.2206,-0.1464,-0.6612,-0.884,-0.925,-0.9572,-0.9678,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9858,-0.9868,-0.9462,-0.9108,-0.737,-0.7186,-0.6708,-0.634,-0.6616,-0.57,-0.6416,-0.7458,-0.8316,-0.7634,-0.5334,-0.27,-0.0068,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6572,-0.4,-0.5714,1,1,0.3428,-0.9142,-1,-0.9142,-0.9714,-0.7428,-0.0572,0.7142,0.1428,-0.2572,-0.5428,-0.4858,-1,-1,-1,-1,-1,-1,-1,0.3344,0.3604,0.3828,0.4246,0.486,0.597,0.7468,0.95,1,1,-0.2884,-0.307,-0.341,-0.3416,-0.3422,-0.252,-0.2358,-0.2942,-0.4936,-0.7352,-0.4934,0.6118,-0.9492,-0.9344,-0.8946,-0.9054,-0.9006,-1,0.931,1,0.1034,0.138,0.2068,0.138,0.2586,0.0172,-0.0862,0.1034,0.0344,0.2414,0.2932,0.2242,0.2242,-0.0172,0.0518,-0.0862,-0.069,0.0344,-0.2414,0,0.0518,0.0862,0.1724,-0.069,-0.069,-0.1552,-0.1206,0.0344,-0.1206,-0.3448,0.9428,1,0.5428,0.1858,-0.0286,0.0142,0.1858,0.1142,0.2428,0.2714,0.1714,0.1428,0.3286,0.1286,0.2142,-0.0286,0.2714,-0.0142,-0.0428,0.0858,0.1142,0.1286,0.1142,0.1286,-0.0714,-0.0286,0.1428,-0.0286,0,-0.1572,0,-0.0858,1,0.9246,0.8114,0.585,0.1446,0.1698,0.0692,0.195,-0.0314,0.107,-0.1698,-0.044,0.1572,-0.0692,0.2578,0.0944,-0.0692,0.195,0.107,-0.0062,0.0314,0.044,0.0314,0.0062,-0.0566,-0.0566,-0.0566,0.0566,-0.2076,0.0944,0.3584,0.0062,-0.9772,1,-1,-1,-1,-1,-0.6,-1,-1,-0.2648,-0.0736,0.0882,0.1618,0.3824,0.147,0.0148,0.6764,0.8382,0.7648,0.7352,0.8382,0.8676,0.8088,0.647,0.4706,0.8824,1,0.4264,0.397,0.6324,0.7058,0.4412,0.4118,0.2942,0.6176,0.5588,0.147,0.4412,0.603,0.0294,-0.3824,'25'
0.211,0.626,1,0.9794,0.5952,0.65,0.585,0.1836,-0.1836,-0.3654,-0.5404,-0.7838,-0.7632,-0.7564,-0.801,-0.7632,-0.7256,-0.657,-0.6672,-0.7874,-0.7324,-0.6672,-0.5918,-0.6398,-0.5232,-0.5884,-0.6124,-0.952,-0.9588,-0.952,-0.7564,-0.4272,-0.2728,0.0606,0.5344,0.7218,0.9586,1,0.9834,0.8622,0.5786,0.3994,0.1488,-0.168,-0.237,-0.3306,-0.4932,-0.46,-0.46,-0.372,-0.303,-0.0854,0.0634,0.1046,0.0028,-0.3966,-0.5316,-0.6226,-0.6034,-0.5592,-0.5648,-0.5206,-0.4684,-0.3416,-0.4046,-0.1104,0.1304,0.233,0.4158,0.8172,0.8172,1,0.8684,0.8952,0.9866,0.8284,0.6164,0.3578,0.2218,0.233,0.2218,0.146,0.2264,0.4894,0.5406,0.6388,0.349,0.1906,0.0412,-0.1506,-0.1706,-0.3066,-0.3356,-0.3624,-0.262,-0.1706,-0.4392,-0.2046,0.0612,0.0654,0.2398,0.6884,0.8878,1,0.6906,0.7736,0.8566,0.973,0.8816,0.5826,0.3292,0.19,0.1962,0.2128,0.1734,0.2358,0.3666,0.485,0.5098,0.2358,0.0218,-0.0426,-0.1382,-0.1838,-0.2732,-0.3832,-0.3812,-0.2316,-0.4636,-0.253,0.0142,0.0684,0.342,0.5158,0.8828,0.9044,1,0.7156,0.835,0.9174,0.9762,0.8632,0.5744,0.4006,0.3072,0.3204,0.279,0.3182,0.442,0.6504,0.659,0.5136,0.2334,0.1074,0.0858,0.0336,-0.038,-0.1206,-0.2074,-0.1618,-0.5264,-0.229,-0.0484,0.0484,0.3634,0.555,0.8194,1,0.9052,0.6696,0.4758,0.6696,0.8678,0.914,0.8898,0.663,0.5726,0.5264,0.5,0.5948,0.6806,0.7114,0.782,0.4318,0.3194,0.3018,0.1806,0.2004,0.13,0.152,0.2268,0.2886,-0.3842,-0.0868,0.079,0.1578,0.5632,0.6868,1,0.8526,0.4264,0.279,0.1552,0.229,0.2316,0.3316,0.6106,0.5606,0.7236,0.5948,0.5894,0.5526,0.5894,0.671,0.5736,0.4342,0.1684,0.0736,-0.0184,-0.0842,-0.1526,-0.1422,-0.129,-0.0236,0.4444,0.7778,1,0.9444,0.5,0.6666,0.8334,0.7222,0.2778,0.3888,-0.2778,0.0556,0.0556,-0.1112,-0.2778,-0.1666,-0.1112,-0.5,-0.1666,0.1666,0.0556,-0.3334,-0.4444,0.0556,0.0556,-0.1112,-0.0556,-0.2222,-0.3334,-0.3888,-0.1112,-0.1666,0.4,0.85,1,0.95,0.5,0.7,0.75,0.5,0.35,0.4,0.2,0.15,0.15,-0.2,0,0,-0.3,-0.05,0.1,-0.1,-0.2,-0.2,-0.15,0,-0.1,-0.35,-0.3,-0.5,-0.6,-0.55,-0.45,-0.05,-0.3334,-0.0538,0.2474,0.4838,0.7204,0.9784,1,0.7634,0.8924,0.914,0.4194,-0.0108,0.0538,-0.1182,-0.2258,-0.1612,-0.0752,-0.0968,-0.0108,0.2688,0.3764,0.4624,0.0108,-0.2258,-0.2258,-0.3978,-0.3548,-0.2044,-0.2904,-0.3548,-0.656,-0.3764,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8828,-0.5908,-0.1864,0.8624,0.8174,0.5832,0.3962,0.1362,-0.0076,-0.0662,-0.051,-0.279,-0.7308,-0.87,-0.9574,-0.9634,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9686,-0.8968,-0.7526,0.0912,0.872,0.904,0.763,0.5438,0.3554,0.2522,0.015,-0.5578,-0.8952,-0.9368,-0.9628,-0.9706,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.91,-0.9468,-0.895,-0.7834,-0.6684,-0.665,-0.645,-0.654,-0.6094,-0.72,-0.7694,-0.9216,-0.8,-0.5934,-0.6368,-0.5634,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.2286,0.2,1,1,0.1428,-1,-0.9714,-1,-1,-0.9142,-0.2286,1,0.3142,-0.4286,-0.6572,-0.7714,-1,-1,-1,-1,-1,-1,-1,0.4342,0.4332,0.4474,0.47,0.5134,0.6244,0.7796,0.9422,1,1,-0.263,-0.233,-0.1928,-0.19,-0.2184,-0.2818,-0.3216,-0.4316,-0.688,-0.9014,-0.5066,0.4942,-0.971,-0.9168,-0.9074,-0.899,-0.8786,-1,0.194,0.3732,0.5224,0.612,0.4926,0.791,0.3432,0.403,0.3732,0.9104,0.5522,0.8208,0.9402,0.7612,0.8806,0.8208,0.6418,0.1642,0.5224,0.4926,1,0.8508,0.6418,0.6716,0.6716,0.3732,0.4926,0.5522,0.6716,0.194,0.3732,0.2538,0.1168,0.5584,0.3506,0.7142,1,0.8182,0.8442,0.7922,0.5324,0.4026,0.6104,0.7662,0.974,0.8442,0.6104,0.8182,0.4026,0.5064,0.6364,0.7142,0.6884,0.4026,0.2988,0.3766,0.6364,0.4026,0.2468,0.4806,0.1948,0.2208,0.3246,-0.1428,0.8462,1,0.5164,0.5164,0.3626,0.1208,0.077,0.3186,0.2528,0.2308,0.3626,0.2968,0.4066,0.2528,0.2748,0.1208,0.1208,-0.099,-0.5824,0.033,0.1868,0.1648,-0.011,0.1208,0.011,0.077,0.1428,0.099,-0.077,-0.055,-0.011,-0.7142,-0.93,1,-1,-1,-1,-1,-0.6,-1,1,-0.1452,-0.2136,0.5384,0.5214,0.3162,-0.0256,-0.1624,0.3334,0.453,0.7606,1,0.983,0.829,0.47,0.4358,0.265,0.5042,0.5898,0.5898,0.1282,0.1794,0.3334,0.4872,0.3504,0.1966,0.282,0.1624,0.2136,-0.0256,-0.1794,-0.2478,-0.5384,'25'
-0.1522,0.4056,0.8056,1,0.6184,0.4606,-0.0348,-0.1376,0.0166,-0.178,-0.0752,0.0862,0.0752,0.3432,0.3944,0.6844,0.8018,0.6478,0.4532,0.4386,0.4752,0.5412,0.7688,0.7908,0.8018,0.3652,0.2036,0.1522,0.0936,0.101,0.2256,0.3284,-0.2566,0.156,0.6882,0.7764,0.304,0.2472,-0.0678,-0.1464,-0.0646,-0.2692,-0.3322,-0.1308,-0.2126,-0.1528,-0.0456,0.052,0.2598,0.4866,0.6472,1,0.9622,0.5496,0.7166,0.7448,0.8048,0.7008,0.493,0.2032,0.1308,0.2284,0.2314,0.2662,-0.18,0.3034,0.67,0.83,0.4166,0.0066,-0.3834,-0.47,-0.4734,-0.5566,-0.4634,-0.3634,-0.38,-0.11,-0.2134,-0.2166,0.0734,0.12,0.3666,0.67,0.95,1,0.9534,0.8534,0.8666,0.8434,0.65,0.3434,0.2366,0.1466,0.21,0.3166,-0.2014,0.2224,0.6812,0.7408,-0.0858,-0.4606,-0.5272,-0.7338,-0.7968,-0.7864,-0.6708,-0.5936,-0.4852,-0.457,-0.408,-0.373,-0.261,-0.1664,0.0684,0.38,0.6288,0.909,1,0.958,0.7128,0.6392,0.7584,0.6532,0.5272,0.303,0.3134,0.387,-0.3684,0.0832,0.5892,0.4736,-0.477,-0.562,-0.7046,-0.7148,-0.7962,-0.7962,-0.837,-0.786,-0.7692,-0.8846,-0.7454,-0.6978,-0.613,-0.4024,-0.2122,0.073,0.3412,0.7556,1,0.9524,0.5586,0.6706,0.657,0.5994,0.5518,0.3514,0.3956,0.4602,-0.2988,0.5388,0.8118,0.5202,-0.3616,-0.4022,-0.6864,-0.6716,-0.7528,-0.8266,-0.9004,-0.7822,-0.727,-0.8414,-0.834,-0.7306,-0.738,-0.3506,-0.4354,-0.0738,0.155,0.6494,1,0.9852,0.856,0.727,0.6642,0.9188,0.8154,0.487,0.5498,0.4612,-0.0438,0.421,0.8464,0.5702,-0.1974,-0.8904,-0.75,-0.772,-0.9342,-0.9562,-0.8948,-0.9606,-0.8246,-0.7764,-0.9254,-0.9606,-0.829,-0.8334,-0.5482,-0.3992,-0.1096,0.215,0.5394,1,0.8508,0.535,0.4474,0.5394,0.3158,0.1448,0.1798,0.0482,0.0244,0.7074,0.8536,0.9512,0.7074,0.1708,-0.1708,-0.4146,0.1708,0.0732,0.0244,0.1708,0.3658,0.6586,0.8048,1,0.9024,0.122,0.2682,0.4634,0.5122,0.561,0.756,0.756,0.756,0.317,0.2682,0.0732,0.0244,0.2196,0.2196,0.3658,-0.2308,0.3846,0.7436,0.8974,0.6924,0.282,-0.1794,-0.3846,-0.0256,-0.1794,-0.0256,-0.1794,0.077,0.4872,0.641,1,0.8974,0.3334,0.1794,0.1794,0.3334,0.5384,0.7436,0.641,0.4872,0.282,0.2308,0.1282,0.1282,0.077,-0.0256,0.1794,-0.2904,0.1612,0.613,0.7204,0.2688,0.0752,-0.3548,-0.2904,-0.1828,-0.3764,-0.3548,-0.3118,-0.3334,-0.1828,-0.2904,-0.1398,0.1828,0.2044,0.5268,0.8064,1,0.7204,0.7204,0.742,0.7634,0.6774,0.5484,0.3764,0.1828,0.0538,0.2688,0.2258,-1,-0.9848,-0.9516,-0.8348,-0.831,-0.8494,-0.8864,-0.9326,-0.962,-0.9396,-0.5516,0.532,0.8804,0.6722,0.368,-0.0028,-0.2684,-0.3446,-0.4294,-0.4418,-0.444,-0.6886,-0.8994,-0.9756,-0.9798,-0.9788,-0.9836,-1,-1,-1,-1,-1,-1,-1,-0.9804,-0.9594,-0.872,-0.8116,-0.7208,-0.5636,-0.6174,-0.7778,-0.7692,-0.5664,0.4362,0.8976,0.879,0.474,0.0226,-0.2862,-0.2966,-0.369,-0.4726,-0.5486,-0.7514,-0.9186,-0.9656,-0.9698,-0.9742,-0.9798,-1,-1,-1,-1,-1,-1,-1,-0.8568,-0.8268,-0.85,-0.3668,0.6632,1,1,1,1,0.1966,-0.5912,-0.549,-0.569,-0.5868,-0.7534,-0.6446,-0.5824,-0.5956,-0.7,-0.694,-0.728,-0.7068,-0.6134,-0.6468,-0.81,-0.87,-1,-1,-1,-1,-1,-1,-1,-0.8,1,1,1,0.3428,-0.5714,-0.7714,-0.8572,-0.3142,1,1,-0.0858,-0.6858,-0.6286,-0.6858,-0.6858,-1,-0.9428,-0.9428,-0.5142,0.7428,-0.3428,-0.7142,-0.6572,-0.6286,-0.5714,-1,-1,-1,-1,-1,-1,0.3224,0.3514,0.3758,0.414,0.4456,0.4518,0.4468,0.3806,0.2228,-0.1468,-0.2748,-0.235,-0.1958,-0.1158,0.0026,0.089,0.2204,0.4016,0.6272,0.8666,-0.5866,0.0824,-0.5334,-0.1662,0.3044,0.7098,0.9996,0.025,-0.0162,-0.0414,-0.6252,-0.7334,-0.7874,-0.7334,-0.6576,-0.3406,-0.6,-0.4774,-0.4126,-0.4342,-0.4846,-0.4846,-0.319,-0.3874,-0.4162,-0.1856,-0.218,-0.0378,-0.0414,0.0666,0.3082,0.3046,0.6252,0.8126,0.9784,1,0.9136,0.8702,0.8018,0.4162,-0.4278,-0.5164,-0.854,-0.568,-0.588,-0.485,-0.3218,-0.3218,-0.259,-0.2676,-0.2932,-0.2246,-0.133,-0.0958,-0.1102,-0.0616,0.0042,0.0444,0.0158,0.0902,0.1646,0.3706,0.5078,0.525,0.4536,0.6424,0.8226,0.8998,1,0.9714,0.731,0.4564,-0.2118,-0.2048,-0.3472,-0.4618,-0.4444,-0.2812,-0.2118,0.0208,0.0208,-0.0174,0.0452,0.0034,0.2152,0.1284,0.1632,0.2188,0.2256,0.4236,0.3576,0.4688,0.559,0.6424,0.7362,0.7256,0.7118,0.75,0.9618,1,0.9166,0.8784,0.8264,0.368,-0.8782,-1,1,-1,1,-1,-1,0.4334,-1,-0.2452,-0.2452,0.1698,0.2642,0.1698,0.132,0.3396,0.3584,0.5472,0.5284,1,0.8114,0.4906,0.8114,0.585,0.3774,0.4528,0.6038,0.5094,0.566,0.8114,0.6792,0.585,0.566,0.4528,0.6038,0.0188,0.283,0.2076,0.2076,-0.0754,-0.415,'26'
-0.163,0.328,0.8586,0.9804,0.5638,0.3792,0.3438,0.1238,0.0176,-0.0256,-0.0726,0.1042,0.2062,0.2928,0.5992,0.615,0.8388,0.776,0.7604,0.5834,0.5284,0.721,0.9214,1,0.725,0.45,0.3202,0.1198,0.1356,0.281,0.3164,0.3832,-0.283,0.1252,0.7496,0.8284,0.3414,0.2556,0.2282,-0.06,-0.115,-0.108,-0.2246,-0.0772,-0.0464,-0.06,0.0634,0.1114,0.235,0.7118,0.7084,1,0.8628,0.6706,0.8594,0.8284,0.9416,0.7598,0.506,0.3414,0.283,0.2658,0.3208,0.3826,-0.2014,0.259,0.777,0.9028,0.392,-0.0756,-0.1726,-0.3598,-0.2302,-0.3058,-0.2914,-0.3634,-0.2878,-0.1438,-0.1402,-0.09,0.1762,0.1906,0.4892,0.8848,1,0.9604,0.9424,0.8884,0.9496,0.9244,0.6618,0.428,0.3274,0.277,0.3238,0.3956,-0.2858,0.1136,0.6154,0.674,-0.0586,-0.6594,-0.5458,-0.575,-0.5934,-0.5532,-0.586,-0.5202,-0.619,-0.586,-0.4506,-0.381,-0.2052,-0.0366,0.099,0.4726,0.7032,1,0.9524,0.8022,0.8534,0.8316,0.7656,0.5202,0.4506,0.348,0.326,0.4322,-0.3346,0.0932,0.682,0.6088,-0.638,-0.5028,-0.6014,-0.638,-0.671,-0.7222,-0.8244,-0.8318,-0.733,-0.6746,-0.6308,-0.5686,-0.3346,-0.309,-0.1042,0.1956,0.5576,0.9378,1,0.967,0.777,0.7002,0.6892,0.66,0.3382,0.3162,0.3418,0.3784,-0.3094,0.2906,0.6452,0.4076,-0.3812,-0.3094,-0.6754,-0.7698,-0.8076,-0.7962,-0.9698,-0.683,-0.7736,-0.8076,-0.7962,-0.7622,-0.634,-0.6114,-0.3962,-0.0906,0.1924,0.6982,1,0.9774,0.5698,0.6754,0.6114,0.5208,0.2944,0.3094,0.0792,0.3094,0.0248,0.3614,1,0.7524,-0.109,-0.3564,-0.6436,-0.708,-0.6684,-0.901,-0.8614,-0.6634,-0.6336,-0.7722,-0.7772,-0.7872,-0.703,-0.8168,-0.5346,-0.3862,-0.0594,0.505,0.9208,0.9108,0.604,0.5496,0.4702,0.302,0.094,-0.1138,-0.0496,0.0396,-0.125,0.5624,0.8124,1,0.8124,-0.375,0.125,-0.0624,-0.0624,-0.0624,-0.0624,0.0624,0.4376,0.625,0.875,0.75,0.8124,0.4376,0.3124,0.5,0.5624,0.625,0.9376,1,0.75,0.3124,0.375,-0.125,-0.125,0.3124,0.125,0.25,-0.1628,0.3954,0.907,1,0.628,0.4418,0.3954,0.2558,0.0232,0.0232,0.0232,0.1628,0.2558,0.4418,0.7674,0.814,0.721,0.7674,0.5814,0.4418,0.4884,0.7674,0.721,1,0.8604,0.3488,0.3488,0.0698,0.2094,0.2558,0.2558,0.4418,-0.25,0.1818,0.7728,0.8864,0.25,0.0682,0,-0.1818,-0.2046,-0.2728,-0.3182,-0.341,-0.1818,-0.091,-0.091,-0.1136,0.159,0.2954,0.409,1,0.909,0.9772,0.8182,0.9318,1,0.9772,0.4546,0.3182,0.3636,0.25,0.2728,0.3636,-0.9838,-0.9886,-0.9862,-0.9838,-0.9736,-0.9826,-0.9862,-0.982,-0.9886,-0.9778,-0.8076,0.566,0.8382,0.7614,0.6634,0.3086,-0.025,-0.1884,-0.3116,-0.483,-0.6002,-0.6514,-0.834,-0.9724,-0.985,-0.9796,-1,-1,-1,-1,-1,-1,-1,-0.9822,-0.9808,-0.9546,-0.9802,-0.9238,-0.7682,-0.4958,-0.3646,-0.6314,-0.6966,-0.6778,0.3584,0.9278,0.7626,0.6352,0.3328,0.0404,-0.1388,-0.3342,-0.5382,-0.6844,-0.762,-0.889,-0.965,-0.9748,-0.9774,-1,-1,-1,-1,-1,-1,-1,-0.9,-0.94,-0.7468,-0.9,0.1,1,1,1,1,1,1,-0.645,-0.62,-0.685,-0.645,-0.6676,-0.5446,-0.5,-0.7068,-0.7312,-0.8046,-0.8934,-0.9134,-0.69,-0.7168,-0.8868,-1,-1,-1,-1,-1,-1,-1,-0.6572,-0.6858,-0.5714,0.5428,1,1,-0.1428,-0.8,-0.6286,-0.2858,1,1,-0.1142,-0.6858,-0.6858,-0.6858,-0.8858,-0.9428,-0.7428,-0.7428,-0.4858,-0.2572,-0.2286,-0.5428,-0.9714,-0.8858,-1,-1,-1,-1,-1,-1,-1,0.5638,0.5838,0.5996,0.6142,0.6248,0.6376,0.6354,0.5906,0.3548,-0.0354,-0.2662,-0.2146,-0.1576,-0.0844,-0.0208,0.0844,0.2234,0.3806,0.5838,0.847,-0.6,-0.0118,-0.7032,-0.2502,0.321,0.704,0.882,0.4916,-0.9202,-0.7704,-0.5874,-0.5608,-0.5074,-0.5874,-0.4876,-0.4342,-0.2946,-0.3744,-0.2312,-0.228,-0.2878,-0.1914,-0.218,-0.1282,-0.1846,-0.158,0.0516,0.2512,0.198,0.3744,0.4144,0.5208,0.6772,0.644,0.9302,1,0.8136,0.8702,0.7138,0.544,-0.78,-0.7106,-0.61,-0.5168,-0.5072,-0.4426,-0.3852,-0.3972,-0.2966,-0.2154,-0.1052,-0.0264,0.0216,0.0288,0.024,-0.0358,-0.0478,0.0622,0.0048,0.1578,0.3086,0.3278,0.4138,0.4736,0.5,0.5862,0.732,0.9976,1,0.9234,0.8134,0.543,-0.8344,-0.6938,-0.5188,-0.4626,-0.5282,-0.3812,-0.2376,0.0094,-0.0032,-0.0968,-0.0968,-0.0688,0.1094,0.05,0.1438,0.2156,0.2468,0.1218,0.1656,0.3282,0.3532,0.4906,0.5188,0.4406,0.5782,0.7188,0.85,0.8532,0.8594,1,0.8124,0.6156,-0.7814,-1,-1,1,-1,-1,-1,0.4,-1,-0.38,-0.12,-0.18,0.3,0.16,0.14,0.02,0.1,0.06,0.56,0.86,1,0.58,0.56,0.56,0.32,0.28,0.32,0.28,0.2,0.4,0.22,0.28,0.46,0.56,0.16,0.22,0.1,0.18,0.24,0.32,-0.28,'26'
-0.7966,-0.3736,0.045,0.3688,0.52,0.461,0.0592,0.0118,-0.0686,-0.1442,-0.0568,0.0142,0.0236,0.0614,0.123,0.1914,0.3192,0.461,0.8086,0.8724,1,0.8724,0.7542,0.8392,0.7826,0.6076,0.4326,0.4184,0.3498,0.2388,0.2836,0.234,-0.7218,-0.33,0.2446,0.3644,0.336,0.3422,0.072,-0.0192,-0.0376,-0.1472,-0.0842,0.1046,0.07,0.0862,0.0558,0.1838,0.4152,0.4436,0.7564,0.8254,1,0.8416,0.866,0.7808,0.7746,0.5228,0.4478,0.3096,0.1594,0.137,0.127,0.131,-0.6514,-0.2586,0.4496,0.5516,0.303,0.2698,0.0922,-0.0122,0.07,-0.1898,-0.0966,0.1542,0.01,0.1232,0.041,0.0766,0.3674,0.4118,0.5538,0.8756,0.9246,1,0.8934,0.7558,0.5738,0.4274,0.3208,0.3186,0.2142,0.061,0.0366,0.0056,-0.6184,-0.2528,0.4598,0.4736,0.154,0.016,0.046,-0.046,-0.1816,-0.3334,-0.0942,-0.0322,-0.0322,-0.1288,-0.115,0.046,0.1886,0.2736,0.3586,0.6436,0.9632,1,0.885,0.6896,0.6712,0.5288,0.3172,0.2114,0.1564,-0.023,0.0092,-0.1242,-0.586,-0.0208,0.4036,0.2916,0.1876,-0.0938,-0.25,-0.2864,-0.4636,-0.4218,-0.224,-0.1614,-0.2578,-0.2344,-0.2396,-0.1692,-0.0442,0.0834,0.2058,0.552,0.849,0.8828,1,0.987,0.9818,0.8072,0.3516,0.237,0.1692,-0.052,-0.0938,-0.3386,-0.619,-0.0344,0.3438,0.384,-0.0888,-0.4212,-0.5874,-0.7134,-0.765,-0.7278,-0.5902,-0.6132,-0.576,-0.576,-0.6074,-0.7106,-0.4842,-0.298,-0.1806,0.0888,0.3724,0.6446,0.7994,0.874,1,0.9026,0.6304,0.232,0.0802,-0.1806,-0.1462,-0.2636,-0.611,0.017,0.1844,0.4608,0.0102,-0.5256,-0.6348,-0.5904,-0.6656,-0.8806,-0.57,-0.4608,-0.57,-0.5426,-0.4948,-0.5836,-0.3652,-0.2866,-0.2082,0.1774,0.5188,0.6006,0.7338,0.8226,0.9966,1,0.6928,0.239,0.0204,-0.232,-0.1912,-0.3652,-0.7838,-0.1892,-0.1352,0.7298,1,0.8378,-0.2432,-0.4594,-0.3514,-0.5676,-0.2432,-0.3514,-0.2972,-0.2432,-0.1352,-0.2972,-0.4054,0.1892,0.7298,0.6756,0.8378,0.8378,0.6216,0.946,0.8918,0.5136,0.5136,0.6216,0.5136,0.2972,0.2432,0.3514,-0.8114,-0.585,-0.132,0.2076,0.2076,0.1698,0.0944,-0.0188,-0.132,-0.132,-0.0188,0.0188,0.0188,0.0944,0.132,0.2452,0.3962,0.585,0.8114,1,1,0.9246,0.8868,0.8868,0.849,0.7736,0.585,0.4716,0.434,0.3208,0.3208,0.2452,-0.4808,0.0192,0.25,0.173,0.1154,-0.25,-0.327,-0.4038,-0.5962,-0.4424,-0.3654,-0.173,-0.25,-0.25,-0.173,-0.2308,-0.077,-0.0192,0.0962,0.3462,0.7116,0.7116,0.7692,1,0.923,0.923,0.3654,0.3654,0.3076,0.0192,0.0384,0.0192,-1,-1,-1,-1,-1,-0.9488,-0.9122,-0.7002,-0.8098,-0.5686,-0.2468,0.6014,0.788,0.8244,0.9524,0.9086,0.6892,0.3748,0.0968,0.3016,-0.0566,-0.437,-0.532,-0.649,-0.6966,-0.7222,-0.7184,-0.7952,-0.8208,-0.8574,-0.9196,-0.9306,-0.8976,-1,-1,-1,-1,-1,-0.9762,-0.9738,-0.8,-0.9306,-0.6334,-0.5442,0.1998,0.5448,0.0668,-0.0832,-0.2554,-0.3266,-0.418,-0.5038,-0.6562,-0.7306,-0.8438,-0.883,-0.8932,-0.888,-0.8466,-0.8852,-0.8908,-0.9016,-0.9256,-0.9374,-0.9506,-0.95,-1,-1,-1,-1,-1,-0.9668,-0.9634,-0.7168,-0.8068,-0.6368,-0.54,-0.525,-0.2334,-0.4068,-0.5518,-0.5618,-0.4168,-0.4168,-0.3034,-0.6484,-0.7134,-0.7134,-0.5568,-0.3668,-0.4768,-0.3968,-0.46,-0.4168,-0.2334,-0.5534,-0.6634,-0.7,-0.7268,-1,-1,-1,-1,-1,-0.6286,-0.0572,0.5142,0.1428,1,0.2,1,-0.2858,-0.6286,-0.9142,-0.9142,-0.9142,-0.8572,-0.5142,-0.6858,-0.8858,-0.8,-0.9142,-0.8572,-0.8286,-0.7714,-0.8286,-0.8858,-0.7428,-0.7428,-0.7428,-0.8572,-0.4858,1,1,1,1,1,1,1,1,1,0.6724,0.5454,0.5568,0.5898,0.603,0.6134,0.615,0.6082,0.5982,0.5794,0.7312,-0.5866,0.4352,-0.6374,-0.3896,0.513,0.4924,0.0594,0.5334,-0.3858,0.2,0.3286,-0.0714,-0.0714,-0.1714,0.0286,0.1572,0.3572,0.9142,0.9714,0.9858,1,0.7428,0.6286,0.5142,0.6142,0.6858,0.6858,0.6572,0.6,0.3428,0.3,-0.0142,0.0286,-0.1714,-0.2714,-0.1572,-0.1,-0.2858,-0.2286,-0.3572,-0.5916,-0.1518,0.6544,0.2356,-0.2252,-0.2356,0.0262,0.0052,0.2042,0.9372,1,0.7486,0.801,0.6336,0.4136,0.3404,0.5498,0.7906,0.7592,0.7906,0.6858,0.3404,0.0366,0.0052,0.068,-0.466,-0.3508,-0.3194,-0.5078,-0.3194,-0.1938,-0.3298,-0.5568,0.1976,0.545,0.3652,-0.018,0.1138,0.1856,0.1976,0.3652,0.9042,1,0.8682,0.952,0.6886,0.497,0.3532,0.5688,0.7486,0.7844,0.6288,0.473,0.1498,0.1258,-0.0898,-0.042,-0.7246,-0.3294,-0.545,-0.7604,-0.4252,-0.1498,-0.3652,-0.1508,-1,-1,1,-1,-1,1,-0.6334,-1,-0.2366,-0.2672,0.1756,0.1756,-0.2214,0.084,0.0382,0.4352,0.5268,0.603,0.4504,0.6642,0.3588,0.1756,0.1604,0.3436,0.4198,0.1298,0.0382,0.1756,0.8016,1,0.3588,-0.252,0.023,-0.0992,0.145,-0.1756,-0.4046,-0.2366,-0.2978,-0.771,'1'
-0.727,-0.4136,0.085,0.316,0.4592,0.3446,0.1154,-0.0076,-0.0582,-0.07,-0.0042,0.0632,0.0194,0.1288,0.2418,0.316,0.4776,0.7674,0.909,1,0.9562,0.909,0.9612,0.968,0.8922,0.776,0.6176,0.5434,0.5518,0.5182,0.5738,0.6176,-0.7362,-0.442,0.0856,0.1318,0.2838,0.1846,-0.0776,-0.1192,-0.1382,-0.1606,-0.1128,-0.0616,-0.0296,0.036,0.1638,0.2486,0.2886,0.5684,0.9072,1,0.9168,0.8816,0.92,0.8738,0.9168,0.645,0.5716,0.5332,0.4004,0.41,0.5972,0.5204,-0.7124,-0.4472,0.1248,0.1352,0.1976,0.0278,-0.0642,-0.2444,-0.3778,-0.3848,-0.2046,-0.241,-0.1196,-0.019,-0.026,0.0538,0.2738,0.3848,0.695,0.9358,1,0.903,0.8492,0.9168,0.7938,0.7332,0.4836,0.4228,0.442,0.3414,0.4228,0.454,-0.6886,-0.4074,0.1642,0.0978,0.1794,-0.0656,-0.1852,-0.396,-0.4568,-0.508,-0.432,-0.2992,-0.3258,-0.2308,-0.1586,-0.113,0.039,0.2478,0.4948,0.7872,0.9582,1,0.924,0.888,0.8784,0.6392,0.4284,0.3352,0.3334,0.2516,0.2516,0.301,-0.6228,-0.2526,0.2502,0.3286,0.338,-0.1412,-0.3926,-0.5326,-0.6062,-0.6086,-0.4306,-0.4756,-0.5278,-0.573,-0.5374,-0.4234,-0.2526,-0.1696,0.191,0.497,0.8386,1,0.9976,0.8316,0.694,0.49,0.3238,0.0772,-0.0938,-0.0558,0.0344,-0.0202,-0.6962,-0.3262,0.1732,0.0624,0.0836,-0.291,-0.5312,-0.6348,-0.6254,-0.8304,-0.5806,-0.4888,-0.5266,-0.3758,-0.3992,-0.4558,-0.3074,-0.1542,0.1308,0.4746,0.7668,1,0.9952,0.9246,0.967,0.6608,0.3852,0.3286,0.2816,0.1566,0.2508,0.2698,-0.5848,-0.1758,-0.0666,-0.1606,-0.0576,-0.1484,-0.3576,-0.5788,-0.503,-0.8394,-0.6242,-0.4424,-0.497,-0.494,-0.5304,-0.6454,-0.3454,-0.0546,0.1272,0.6454,0.9364,0.9272,0.9758,1,0.8818,0.4606,0.2304,0.0878,-0.097,-0.1516,-0.006,0,-0.923,-0.5,0.0384,0.3076,0.4616,0.3462,0.077,0.1538,0.077,0,0,0.077,0.0384,0.1154,0.1924,0.1154,0.3076,0.8462,0.923,0.8462,0.8846,0.8462,1,1,0.6154,0.8462,0.7308,0.6538,0.577,0.577,0.6538,0.423,-0.7358,-0.5094,-0.0566,0.2452,0.2452,0.2452,0.1698,0.0944,-0.0188,-0.0566,-0.0188,0.0944,0.0566,0.0944,0.1698,0.3584,0.4716,0.7358,0.9246,1,0.9246,0.7358,0.9246,1,0.9622,0.6226,0.5094,0.585,0.585,0.4716,0.5094,0.6604,-0.5228,-0.1136,0.341,0.2954,0.2728,0.1136,-0.091,-0.2728,-0.2728,-0.4546,-0.2728,-0.1818,-0.2728,-0.2272,-0.1818,-0.159,0.0454,0.1364,0.2954,0.7046,0.8864,1,0.841,0.8864,0.8864,0.591,0.3182,0.2272,0.3182,0.0682,0.1136,0.2728,-1,-1,-1,-1,-1,-1,-1,-1,-0.9432,-0.949,-0.322,0.5008,0.5206,-0.027,-0.1602,-0.2738,-0.4042,-0.5206,-0.549,-0.5944,-0.6198,-0.7532,-0.8412,-0.8724,-0.9234,-0.9348,-0.9262,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9798,-0.9838,-0.45,0.456,0.4188,0.2948,-0.0736,-0.3676,-0.5408,-0.8344,-0.8276,-0.7888,-0.828,-0.9208,-0.9386,-0.9386,-0.9552,-0.943,-0.9536,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.9534,-0.3534,-0.1388,-0.0934,-0.0388,-0.1388,-0.2454,-0.388,-0.7788,-0.84,-0.7388,-0.8334,-0.7534,-0.65,-0.6434,-0.5934,-0.6334,-0.75,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,-0.5714,-1,-0.8286,-1,-0.3428,-0.2572,-0.8286,-0.7142,-0.1714,-0.8,-0.9428,-0.9428,-0.8858,-0.8572,-0.8572,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.7632,0.6018,0.6126,0.6222,0.6136,0.6256,0.6252,0.6498,0.6802,0.7338,0.7426,-0.4934,0.8236,-0.4294,-0.4232,0.095,0.5662,0.9528,1,-0.5778,0.0444,0.2222,0.0888,0.0666,-0.0222,0.2,0.3112,0.7112,1,0.9778,0.9556,0.9334,0.6888,0.6222,0.6666,0.8888,0.8444,0.8222,0.8,0.3334,0.1556,0,-0.2666,-0.1334,0,-0.2888,-0.4,-0.6666,-0.3556,-0.5778,-0.8888,-0.4354,0.242,0.5,0.387,0.0806,0.113,0.1452,0.2742,0.6612,1,0.8548,0.9354,0.8388,0.5806,0.6452,0.5162,0.8388,0.871,0.758,0.9032,0.5968,0.1936,0.113,0.0484,0.0162,0.1452,0.0968,-0.258,-0.4194,-0.5806,-0.5968,-0.6612,-0.2654,0.2142,0.6224,0.4796,0.1836,0.2654,0.1836,0.398,0.653,0.9796,0.8674,1,0.9898,0.6632,0.5714,0.5612,0.8062,0.8368,0.847,0.8572,0.5102,0.347,0.1326,0.0816,-0.051,0.0306,-0.1326,-0.204,-0.2756,-0.4592,-0.3878,-0.8368,-0.057,-1,-1,1,-1,-1,-1,-0.7666,-1,0.0622,0.0508,0.3898,0.4238,0.3786,0.435,0.7062,0.6272,1,0.6724,0.7628,0.9548,0.8758,0.6498,0.6498,0.808,0.7966,0.5028,0.2542,0.3898,0.5254,0.4012,0.4916,0.3672,0.2656,0.2542,0.13,0.2882,0.1978,0.1074,0.0734,-0.2656,'1'
-0.6134,0.0958,0.0386,0.2774,0.1194,-0.4184,-0.6336,-0.7142,-0.842,-0.731,-0.4858,-0.3478,-0.4454,-0.4218,-0.3782,-0.4622,-0.1866,-0.1126,0.3614,0.721,0.9698,1,0.9328,0.8488,0.9428,0.8386,0.7816,0.5462,0.5092,0.4958,0.5428,0.731,-0.4938,0.0034,-0.0576,0.1774,-0.0034,-0.2542,-0.5322,-0.478,-0.5344,-0.539,-0.2248,-0.279,-0.2112,-0.2994,-0.1118,-0.2632,-0.1502,0.0758,0.1412,0.4508,0.5344,1,0.9502,0.8554,0.7492,0.887,0.8192,0.93,0.6656,0.6768,0.6746,0.6882,-0.6394,-0.1932,-0.1952,-0.0194,-0.2704,-0.53,-0.7382,-0.7424,-0.646,-0.6052,-0.4164,-0.5344,-0.4078,-0.3348,-0.2962,-0.3218,-0.3476,-0.133,-0.0128,0.1546,0.4614,0.5836,0.9722,1,0.7124,0.6652,0.7896,0.676,0.6588,0.4764,0.4914,0.47,-0.5944,-0.172,0.0392,0.1554,-0.2526,-0.6086,-0.6654,-0.5872,-0.497,-0.5706,-0.5232,-0.3784,-0.4496,-0.369,-0.4734,-0.4378,-0.3238,-0.2336,-0.0628,0.1222,0.357,0.7154,0.9572,1,0.9194,0.8458,0.8718,0.86,0.6726,0.5516,0.5018,0.5066,-0.5058,-0.1418,0.1678,0.2172,-0.4408,-0.5968,-0.7478,-0.537,-0.5838,-0.6618,-0.4512,-0.42,-0.3186,-0.4018,-0.4226,-0.4616,-0.4252,-0.2848,-0.2536,0.0612,0.3706,0.6672,0.9714,1,0.9298,0.9272,0.9116,0.7478,0.6202,0.3862,0.3992,0.3628,-0.518,-0.2022,0.2224,0.1908,-0.8364,-0.7618,-0.779,-0.7074,-0.9054,-0.8336,-0.6586,-0.6672,-0.6672,-0.5724,-0.5524,-0.6298,-0.561,-0.4576,-0.251,-0.1134,0.2912,0.5754,0.9282,1,0.9684,0.9082,0.868,0.6614,0.4232,0.2682,0.2368,0.185,-0.5158,-0.23,0.221,0.164,-0.7984,-0.7112,-0.7924,-0.8286,-0.7444,-0.7984,-0.624,-0.612,-0.618,-0.6902,-0.6932,-0.7264,-0.639,-0.4586,-0.3654,-0.2632,0.1398,0.4316,0.7744,1,0.8978,0.8828,0.6632,0.4166,0.3864,-0.0436,0.0046,0.0466,-0.6,0.1,0.3,0,-0.15,-0.55,-0.5,-0.45,-0.45,-0.8,-0.4,-0.25,-0.2,-0.05,0,0.05,0.05,0.45,1,1,0.9,0.9,0.7,0.8,0.5,0.4,0.15,0.05,0.3,0.35,0.7,0.65,-0.2632,-0.0526,0,0.2632,0.1578,-0.3684,-0.5264,-0.3684,-0.579,-0.3684,-0.579,-0.3684,-0.421,-0.1052,-0.2632,-0.2632,-0.3684,-0.0526,0.6842,1,0.8948,0.7368,0.8948,1,0.8422,0.7894,0.3684,0.1052,0.3158,0.2632,0.3684,0.5264,-0.6364,-0.1516,-0.2122,-0.0506,-0.293,-0.4344,-0.798,-0.7778,-0.6162,-0.6364,-0.394,-0.495,-0.4546,-0.3132,-0.2728,-0.2728,-0.2728,-0.0708,-0.0304,0.1718,0.495,0.6566,0.899,1,0.798,0.798,0.8182,0.7778,0.6364,0.5758,0.5354,0.5556,-1,-1,-1,-1,-1,-1,-1,-1,-0.937,-0.9572,-0.3064,0.7124,0.1198,-0.1552,-0.2964,-0.367,-0.314,-0.3644,-0.4048,-0.4022,-0.478,-0.5108,-0.541,-0.609,-0.6872,-0.7428,-0.8158,-0.8512,-0.8638,-0.9042,-0.9192,-0.8992,-0.9016,-1,-1,-1,-1,-1,-1,-1,-1,-0.9536,-0.9558,-0.3804,0.4366,0.6114,0.7324,0.783,0.6502,0.361,0.1528,-0.1906,-0.3082,-0.441,-0.5056,-0.6438,-0.7054,-0.6978,-0.7344,-0.687,-0.7766,-0.8046,-0.8176,-0.8046,-0.782,-0.7594,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.96,-0.5934,-0.2964,0.0618,0.1762,0.1618,0.1472,0.1326,0.1382,0.0866,-0.4168,-0.7684,-0.77,-0.9,-0.6034,-0.52,-0.3634,-0.2034,-0.1368,-0.1934,-0.2168,-0.2834,-0.1868,-0.2668,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,-0.6,-0.8572,-0.8572,-0.9714,-1,-0.8858,-0.9142,-1,-0.6286,-0.9714,-0.9142,-0.8286,-0.8572,-0.6572,-0.6858,-0.8572,-0.8572,-0.9428,-0.8286,-0.8572,-0.7714,-0.1678,-0.113,-0.0968,-0.0776,-0.0696,-0.021,0.0396,0.0716,0.0152,-0.1156,0.7362,0.802,0.8392,0.903,0.933,0.9852,1,1,1,1,-0.6666,0.3648,-0.1894,0.2584,0.441,0.429,0.4744,1,-0.1708,-0.2196,-0.0244,-0.4146,-0.0244,0.4146,0.6098,0.7074,0.756,0.6098,0.8048,0.9024,1,1,0.8536,0.7074,0.317,0.4146,0.9024,0.9024,0.7074,0.7074,0.4146,0.6098,0.8048,0.9024,0.9024,0.8048,0.7074,0.756,0.561,-0.0244,-0.25,-0.325,-0.35,-0.3,-0.2,0.5,0.65,0.75,0.675,0.875,1,1,0.575,0.75,0.425,0.675,0.275,0.25,0.675,0.725,0.5,0.55,0.325,0.475,0.65,0.7,0.575,0.825,0.825,0.625,0.3,-0.05,0.5604,0.4726,0.033,0.011,-0.011,0.033,0.099,0.1428,0.8242,0.8022,1,0.8682,0.5824,0.5164,0.5384,0.8462,0.912,0.4726,0.3186,0.3846,0.2308,0.3186,0.2968,-0.1208,0.055,0.2088,0.011,0.033,-0.055,0.1428,0.1428,-0.033,0.4982,-1,-1,1,-1,-1,1,-0.8334,1,-0.0952,-0.0158,-0.3492,-0.3174,-0.2064,0.0318,-0.1112,0.0318,0.5714,0.619,0.5874,0.5396,1,0.8888,0.3492,0.365,0.4126,0.508,0.4286,0.2222,0.6984,0.6032,0.4762,0.0952,0.0794,0.0158,-0.1746,-0.1112,0.2064,0.1112,-0.0158,-0.746,'2'
-0.413,0.1242,0.2994,0.4178,0.0012,-0.4508,-0.6402,-0.6048,-0.5456,-0.5692,-0.4438,-0.3634,-0.4934,-0.4864,-0.4036,-0.3112,-0.1526,0.0082,0.3444,0.6734,0.8982,1,0.8698,0.6758,0.529,0.5952,0.645,0.5668,0.4698,0.2498,0.316,0.394,-0.5952,-0.186,0.1554,0.245,-0.1706,-0.2472,-0.8512,-0.733,-0.7046,-0.652,-0.4246,-0.2604,-0.5098,-0.5098,-0.558,-0.5164,-0.3654,-0.1204,-0.1028,0.1488,0.7286,0.9168,0.8688,0.755,0.4092,0.5076,0.6936,1,0.9978,0.687,0.6106,0.6084,-0.6124,-0.2692,0.176,0.2026,-0.2758,-0.433,-0.8516,-0.721,-0.7652,-0.6966,-0.3842,-0.4308,-0.6212,-0.6014,-0.5836,-0.4706,-0.4486,-0.3576,-0.2026,0.114,0.4684,0.9048,1,0.9114,0.4728,0.7076,0.8648,0.9512,0.9136,0.7564,0.6544,0.7408,-0.616,-0.291,0.2532,0.1614,-0.4228,-0.762,-0.854,-0.6962,-0.6632,-0.7314,-0.7174,-0.642,-0.682,-0.536,-0.4534,-0.5924,-0.5288,-0.404,-0.192,0.0224,0.3262,0.7856,1,0.9882,0.8304,0.7926,0.854,0.8044,0.8492,0.583,0.55,0.5996,-0.6484,-0.2558,0.183,-0.023,-0.491,-0.8788,-0.7648,-0.7018,-0.7842,-0.9128,-0.7042,-0.5394,-0.4958,-0.6266,-0.8594,-0.617,-0.5054,-0.4934,-0.3648,-0.0764,0.183,0.5564,1,0.9976,0.777,0.8134,0.7164,0.6606,0.5224,0.2654,0.251,0.2582,-0.6212,-0.1008,0.406,0.207,-0.5396,-0.8202,-0.7194,-0.575,-0.6512,-0.9728,-0.782,-0.5558,-0.5614,-0.6458,-0.6812,-0.733,-0.5614,-0.5476,-0.3488,-0.0382,0.1772,0.4932,1,0.9264,0.8284,0.782,0.5668,0.3896,0.2344,0.109,-0.0354,-0.03,-0.764,-0.0518,0.3044,0.3624,-0.706,-0.7806,-0.6356,-0.619,-0.822,-0.7888,-0.7888,-0.557,-0.4742,-0.4202,-0.4616,-0.4742,-0.3664,-0.4162,-0.2092,0.089,0.441,0.822,1,0.8468,0.9462,0.909,0.5942,0.2216,0.1098,-0.2546,-0.089,-0.056,-0.5384,0.282,0.4358,0.0256,-0.2308,-0.7436,-0.5898,-0.5898,-0.5898,-0.5898,-0.3846,-0.2308,-0.3846,-0.3334,-0.5384,-0.1282,-0.1282,0.1282,0.6924,0.7948,1,0.8974,0.8974,0.9488,0.3334,0.3846,0.077,0.1282,0.0256,0.1794,0.5384,0.6924,-0.2632,0.2106,0.3684,0.579,0.2632,-0.6316,-0.5264,-0.421,-0.4736,-0.7894,-0.2632,-0.1052,-0.1578,-0.3158,-0.2106,-0.1578,0,0.2106,0.5264,0.9474,0.7368,1,0.6316,0.6842,0.6316,0.7894,0.421,0.1052,-0.2106,-0.3158,0.1052,0.0526,-0.5526,-0.1842,0.2894,0.0526,-0.3948,-0.5,-0.6316,-0.4474,-0.2894,-0.6052,-0.5264,-0.5526,-0.4474,-0.7106,-0.7106,-0.4474,-0.2894,-0.3422,-0.4474,-0.2368,0.3422,0.5264,1,0.9474,0.8948,0.8948,0.7894,0.6052,0.6052,0.3158,0.2632,0.2106,-1,-1,-1,-0.9198,-0.9358,-0.7636,-0.7836,-0.7956,-0.8236,-0.8878,-0.5952,0.5712,0.1744,-0.038,-0.1664,-0.1664,-0.1704,-0.2946,-0.2746,-0.2866,-0.2746,-0.7394,-0.9118,-0.9238,-0.9278,-0.9038,-0.9318,-0.8998,-1,-1,-1,-1,-1,-1,-1,-1,-0.9222,-0.9274,-0.8514,-0.853,-0.8682,-0.8936,-0.9172,-0.0304,0.1774,0.8278,0.7838,0.6994,0.3362,0.1672,-0.0472,-0.2382,-0.402,-0.5354,-0.8192,-0.8886,-0.897,-0.8936,-0.8834,-0.897,-0.8918,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.9534,-0.7534,-0.76,-0.7334,-0.7934,-0.8534,-0.5768,-0.437,0.0214,0.107,0.1956,0.1914,0.1256,-0.013,-0.36,-0.4958,-0.7244,-0.6572,-0.82,-0.8,-0.8234,-0.6968,-0.9268,-0.8934,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,-0.9142,-0.8858,-1,-0.9714,-1,1,1,1,-0.2858,-0.9142,-0.9428,-0.8286,-0.9714,-0.9428,-0.6572,-0.8286,-0.7714,-0.8286,-0.9428,-0.9428,-0.8858,-1,-0.9428,-0.6,-1,-1,-1,-1,-1,-0.183,-0.1776,-0.1394,-0.1212,-0.1204,-0.0998,-0.0806,-0.0948,-0.1424,-0.1452,0.7884,0.7916,0.8186,0.8276,0.8766,0.8874,0.9006,0.9326,1,0.9586,-0.48,0.6706,0.424,0.402,0.2196,-0.0338,0.098,1,-0.037,0.074,0.2222,0.3704,0.4074,0.6296,0.8518,0.926,0.8888,0.926,1,0.963,0.7038,0.8148,0.8148,0.8148,0.7778,0.8148,0.7778,0.7038,0.7778,0.8148,0.7408,0.7778,0.8148,0.8148,0.8148,0.7778,0.7038,0.5556,0.2962,-0.074,-0.4344,-0.1516,0.0102,0.1516,0.1112,0.5354,0.495,0.697,0.7576,0.8384,1,1,0.4546,0.6768,0.596,0.697,0.5152,0.6364,0.6768,0.5152,0.5758,0.596,0.4748,0.5354,0.6566,0.6566,0.596,0.6768,0.6364,0.1718,0.2324,0.0304,-0.1034,0.1264,-0.1494,-0.3564,-0.2874,-0.1494,-0.1954,-0.0804,0.4482,1,0.954,0.954,0.816,0.5862,0.3334,0.7472,0.6552,0.6092,0.7242,0.1264,0.0804,0.0114,0.1954,-0.2184,-0.0114,0.1954,0.1034,-0.0574,-0.0344,-0.1264,0.0574,-0.1264,1,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.0428,-0.0086,0.1966,0.3676,0.1282,0.0086,0.2478,0.453,1,0.9316,0.5384,0.5214,0.6924,0.5214,0.3162,0.453,0.5726,0.7094,0.3676,0.983,0.9658,0.8804,0.7436,0.4358,0.3504,0.3162,0.2478,0.4358,0.3504,0.1112,0.0428,-0.2136,'2'
-0.8116,0.0508,0.1074,0.0922,0.017,-0.3484,-0.3296,-0.4538,-0.435,-0.2016,-0.2392,-0.337,-0.3748,-0.1864,-0.1148,-0.0396,0.066,0.4086,0.6046,0.9322,1,0.9284,0.9246,0.8984,0.7402,0.4012,0.3032,0.0244,0.0056,-0.0396,-0.0434,-0.0998,-0.721,-0.1192,-0.1724,0.141,0.0344,-0.257,-0.4076,-0.5078,-0.5894,-0.536,-0.395,-0.2476,-0.4514,-0.5172,-0.5674,-0.4546,-0.2634,-0.1568,0.1724,0.3134,0.6426,0.859,0.9592,1,0.9154,0.7554,0.4138,0.1098,0.1192,0.1568,0.1598,0.0816,-0.6576,-0.1096,-0.0994,0.1438,-0.1028,-0.3732,-0.7534,-0.6438,-0.6404,-0.7568,-0.3698,-0.4042,-0.3014,-0.476,-0.5,-0.5856,-0.4452,-0.1302,-0.1268,0.0068,0.322,0.7364,1,0.9932,0.8048,0.637,0.7294,0.5856,0.5136,0.3184,0.298,0.2432,-0.7544,-0.3168,0.1174,0.2562,-0.2634,-0.6512,-0.8008,-0.7118,-0.6228,-0.5124,-0.5018,-0.3594,-0.4768,-0.5588,-0.5694,-0.5694,-0.459,-0.306,-0.2348,0.0604,0.2882,0.6086,0.879,1,0.9858,0.975,0.9716,0.7438,0.6014,0.3702,0.1958,0.2634,-0.689,-0.3392,0.2156,0.2402,-0.53,-0.6784,-0.8162,-0.7138,-0.7844,-0.742,-0.5618,-0.5442,-0.5618,-0.6926,-0.569,-0.7068,-0.4734,-0.4346,-0.2862,-0.099,0.1096,0.484,0.7986,1,0.9294,0.9082,0.848,0.5054,0.424,0.2686,0.1484,0.113,-0.6558,-0.2844,0.3618,0.2612,-0.5822,-0.6828,-0.8336,-0.884,-0.8608,-0.7176,-0.6248,-0.4932,-0.528,-0.6674,-0.6324,-0.675,-0.6016,-0.501,-0.3966,-0.0754,0.0212,0.4314,0.8182,0.9922,1,0.9304,0.7756,0.4158,0.2186,0.0638,0.149,0.087,-0.6422,0.1964,0.5308,0.3196,-0.6832,-0.6892,-0.5778,-0.519,-0.7536,-0.6188,-0.8006,-0.308,-0.4076,-0.742,-0.613,-0.5426,-0.437,-0.566,-0.3782,-0.2962,0.091,0.22,0.9062,1,0.9062,0.9062,0.8416,0.3724,-0.003,-0.1144,-0.2376,-0.4076,-0.6666,-0.1334,0,0,-0.4,-0.4666,-0.2,-0.2666,-0.2,-0.2,-0.5334,-0.4,0.1334,0.3334,0.2666,0.2666,0.4666,0.2666,0.8,1,0.7334,0.2666,0.0666,0.0666,0.1334,0.2666,0.1334,-0.0666,0,0,0.4666,0.2666,-0.7728,0.1364,0.3182,0.1364,-0.2272,-0.5,-0.5454,-0.409,-0.4546,-0.409,-0.2728,-0.0454,-0.0454,-0.2272,0.0454,0,0.1364,0.5454,0.909,0.7728,0.8182,0.909,1,0.9546,0.3636,0,0.1818,0.0454,-0.2728,0.0454,0.091,-0.2728,-0.766,-0.1702,-0.149,0.1064,-0.0212,-0.2554,-0.468,-0.6596,-0.7446,-0.6808,-0.3192,-0.2766,-0.4256,-0.383,-0.4894,-0.532,-0.2978,-0.2766,0.0426,0.2128,0.5532,0.766,0.9788,0.8724,1,0.8298,0.4894,0.2554,0.2128,0.1914,0.234,0.149,-0.8938,-0.8812,-0.8876,-0.875,-0.8624,-0.9188,-0.9,-0.8938,-0.9062,-0.8688,-0.9062,0.475,0.3688,0.3,0.2626,0.125,0.1626,0.2124,0.3624,0.3062,0.2124,-0.1438,-0.5624,-0.6876,-0.6624,-0.75,-0.8,-1,-1,-1,-1,-1,-1,-0.7266,-0.1556,0.4012,0.459,0.2336,-0.0778,-0.1458,-0.523,-0.5668,-0.3752,-0.6208,0.1776,0.9122,0.8124,0.493,0.1238,0.2974,0.2994,0.1536,-0.022,-0.3274,-0.6108,-0.7504,-0.7884,-0.7604,-0.8104,-0.8164,-1,-1,-1,-1,-1,-1,0.0766,1,1,1,1,1,1,1,0.8,1,0.5832,-0.23,0.0488,0.06,0.0754,-0.1578,-0.22,-0.1846,-0.3268,-0.4134,-0.6046,-0.8756,-0.71,-0.6068,-0.5768,-0.59,-0.6068,-1,-1,-1,-1,-1,-1,1,1,-0.8,-0.9142,-0.8286,-0.8572,-0.8572,-0.6858,-0.8,-0.6286,1,1,-0.0572,-0.8286,-0.8858,-0.9714,-1,-1,-1,-0.8286,-0.2286,-0.3714,-0.8858,-1,-0.9714,-1,-0.5428,-1,-1,-1,-1,-1,-1,0.3724,0.3738,0.3976,0.408,0.4264,0.447,0.4274,0.3734,0.2534,0.0434,0.2046,0.27,0.3518,0.442,0.494,0.5558,0.6322,0.7588,0.8668,0.933,-0.64,0.0352,-0.6488,-0.7386,0.2914,0.6506,0.8862,-0.1584,-0.6978,-0.7362,-0.6156,-0.6252,-0.4972,-0.3652,-0.304,-0.3442,-0.1682,-0.241,-0.1472,-0.2276,-0.2026,-0.1702,-0.1262,-0.0268,0.1108,0.283,0.325,0.3346,0.476,0.476,0.4856,0.4876,0.4092,0.5756,0.694,0.8528,0.9904,1,0.8852,0.6118,-0.6964,-0.835,-0.6458,-0.5314,-0.5164,-0.4564,-0.389,-0.3684,-0.2802,-0.312,-0.2896,-0.209,-0.1828,-0.2728,-0.1172,-0.0834,0.1246,0.209,0.312,0.374,0.3834,0.404,0.642,0.5108,0.5126,0.79,0.805,0.9212,0.9476,0.9644,1,0.8126,-0.5258,-0.5216,-0.5238,-0.391,-0.3108,-0.273,-0.2054,-0.2266,-0.0558,0.0116,0.041,0.0326,0.0348,-0.0516,0.1106,0.2286,0.2772,0.3298,0.4584,0.412,0.5364,0.6038,0.707,0.6102,0.6796,0.7556,0.8926,0.9346,0.903,0.9516,1,0.6944,-0.6168,-1,1,-1,-1,-1,-0.8,1,-1,-0.4234,-0.4234,-0.1352,-0.1172,0.027,-0.1892,-0.027,0.1532,-0.1172,0.4954,0.7838,1,0.6756,0.1892,0.2432,0.1532,0.3514,0.3514,0.2072,0.045,0.081,0.5496,0.6756,0.045,-0.1712,-0.027,0.2612,0.063,0.027,-0.027,0.045,-0.2792,'3'
-0.593,0.0348,0.1324,0.2966,-0.0064,-0.4858,-0.5804,-0.5678,-0.6088,-0.6152,-0.4164,-0.2618,-0.164,-0.1324,-0.0348,-0.041,0.1388,0.59,0.7414,0.877,1,0.9936,0.937,0.9116,0.8422,0.6026,0.4322,0.265,0.183,0.1168,0.2934,0.3786,-0.5896,-0.1032,0.087,0.2718,-0.0706,-0.6658,-0.7146,-0.6848,-0.5816,-0.693,-0.6522,-0.4048,-0.356,-0.318,-0.375,-0.568,-0.2772,-0.1196,0.174,0.2336,0.693,0.7636,1,0.8614,0.6142,0.788,0.7908,0.5624,0.538,0.1494,0.1604,0.3342,-0.5572,-0.077,0.1522,0.2936,-0.2904,-0.6452,-0.6892,-0.6578,-0.7928,-0.639,-0.6514,-0.4348,-0.5636,-0.5572,-0.529,-0.5886,-0.529,-0.2276,-0.0958,0.2276,0.3784,0.8084,0.9938,1,0.7174,0.7646,0.8116,0.8084,0.7394,0.4976,0.3124,0.394,-0.5988,-0.2186,0.1468,0.1886,-0.512,-0.6886,-0.7186,-0.7904,-0.7754,-0.8712,-0.6348,-0.5748,-0.518,-0.5718,-0.6556,-0.7096,-0.6108,-0.4192,-0.3742,0.0718,0.3622,0.7186,1,0.9372,0.6826,0.7186,0.7544,0.8474,0.6228,0.497,0.4042,0.3532,-0.583,-0.2814,0.3526,0.2644,-0.8034,-0.7424,-0.7898,-0.8272,-0.7322,-0.9662,-0.8,-0.5118,-0.5084,-0.6238,-0.739,-0.661,-0.556,-0.5152,-0.2882,0.0508,0.2136,0.7016,1,0.9932,0.7594,0.7016,0.844,0.8204,0.5322,0.4034,0.244,0.2984,-0.5808,-0.1112,0.694,0.5682,-0.7442,-0.501,-0.6226,-0.5598,-0.5346,-0.7736,-0.61,-0.5682,-0.455,-0.6394,-0.761,-0.6898,-0.4676,-0.455,-0.4716,-0.195,0.1154,0.694,1,0.9916,0.6688,0.849,0.7526,0.4968,0.2914,-0.0356,0.0902,0.002,-0.8012,0.4716,0.358,-0.1194,-0.4944,-0.7954,-0.2784,-0.1478,-0.4034,-0.5738,-0.625,-0.3012,-0.3466,-0.5738,-0.5,-0.7102,-0.4602,-0.3694,-0.4432,-0.2784,-0.125,0.8296,1,0.7784,0.75,0.6648,0.5796,0.2102,-0.034,-0.284,-0.1762,-0.1364,-0.375,0.25,0.3124,0.0624,-0.375,-0.3124,0.1876,0.375,0.3124,0.0624,-0.375,-0.125,0.125,0.25,0.125,0.4376,0.75,1,0.8124,0.25,-0.1876,0.0624,0.25,0.375,0.3124,0.0624,0.1876,0.25,-0.1876,-0.375,0.1876,0.375,-0.5652,0.1304,0.2174,0.0434,0.0434,-0.3914,-0.3914,-0.4782,-0.6522,-0.4782,-0.3478,-0.3044,-0.087,-0.087,0.0434,0.174,0.3044,0.7392,0.9566,0.826,0.826,0.913,1,0.7826,0.5218,0.4782,0.4348,0.087,0.087,0.174,0.2608,0.3478,-0.5758,-0.091,0.4242,0.303,-0.6364,-0.5454,-0.5152,-0.5758,-0.4848,-0.6666,-0.6364,-0.5454,-0.697,-0.4242,-0.697,-0.7576,-0.6666,-0.3636,-0.4242,0.2122,0.3334,0.6364,1,1,0.8788,0.7878,0.8182,0.9394,0.606,0.4848,0.1818,0.4242,-0.8032,-0.854,-0.8412,-0.8794,-0.8984,-0.8794,-0.9048,-0.8604,-0.835,-0.854,-0.8666,0.6254,0.765,0.5874,0.327,0.238,0.092,0.1238,0.0158,0.0096,-0.1556,-0.4984,-0.6,-0.7842,-0.854,-0.9048,-0.8858,-1,-1,-1,-1,-1,-1,-0.5478,0.5976,1,1,1,0.1832,0.765,0.6872,0.5816,0.008,-0.3606,0.496,0.7968,0.4522,0.1434,0.0996,0.0258,-0.0718,-0.3406,-0.488,-0.5936,-0.741,-0.7848,-0.8248,-0.8446,-0.8606,-0.8686,-1,-1,-1,-1,-1,-1,0.5432,1,1,1,1,1,1,1,1,1,1,-0.1492,-0.0582,-0.08,-0.1492,-0.1746,-0.1728,-0.2982,-0.54,-0.5946,-0.795,-0.885,-0.7168,-0.7334,-0.6068,-0.8,-0.72,-1,-1,-1,-1,-1,-1,1,1,-0.1714,-0.7142,-0.7714,-0.8,-0.9428,-0.8858,-0.7428,-0.0286,1,1,-0.7714,-0.8572,-0.9428,-1,-1,-0.9428,-0.8286,-0.8572,-0.8858,-0.8286,-0.9142,-0.8286,-0.8858,-0.8858,-0.5428,-1,-1,-1,-1,-1,-1,0.1224,0.1226,0.1236,0.0942,0.0762,0.0542,-0.0036,-0.0664,-0.0774,-0.0988,0.3464,0.3528,0.4194,0.4692,0.546,0.6286,0.691,0.8016,0.8956,0.8658,-0.5734,0.3294,-0.3606,-0.6772,0.486,0.8446,0.9084,-0.075,-0.8418,-0.8358,-0.7844,-0.4292,-0.5134,-0.4086,-0.3656,-0.31,-0.0184,-0.0288,-0.0328,-0.041,-0.1274,-0.1314,-0.156,-0.152,0.1622,0.2362,0.2588,0.1868,0.2526,0.4826,0.4888,0.462,0.4086,0.5708,0.881,0.8748,1,0.961,0.9404,0.5462,-0.7094,-0.7676,-0.6572,-0.5634,-0.4486,-0.4412,-0.322,-0.3174,-0.152,-0.149,-0.1714,-0.1564,-0.1266,-0.1118,-0.167,-0.1624,0.082,0.0506,0.0506,0.2354,0.3248,0.313,0.3458,0.3756,0.4024,0.5678,0.7242,0.8376,1,0.8868,0.8658,0.7288,-0.7954,-0.8338,-0.6822,-0.4594,-0.578,-0.569,-0.4392,-0.4684,-0.1836,-0.2036,-0.1526,-0.116,-0.2074,-0.1926,-0.0448,0.043,0.1324,0.2384,0.1634,0.2238,0.3918,0.5068,0.5488,0.5488,0.5288,0.7278,1,0.936,0.9398,0.9544,0.98,0.6748,-0.2152,-1,1,-1,-1,-1,-1,1,-1,-0.1694,-0.2372,0.2204,0.2712,0.305,0.1016,0.1526,0.0678,0.1186,0.5594,1,0.7628,0.8984,0.5594,0.322,0.4916,0.4746,0.5084,0.2372,0.339,0.356,0.1694,0.2204,0.1694,0.0338,0.2542,-0.0848,0.1186,0.4068,-0.017,-0.0338,-0.2034,'3'
-0.4576,0.0996,0.0268,0.1854,-0.0054,-0.479,-0.7084,-0.6312,-0.5628,-0.537,-0.2154,-0.2648,-0.2562,-0.2734,-0.1768,-0.1748,-0.0718,0.179,0.4726,0.7106,0.9742,1,0.7856,0.6592,0.9592,0.8842,0.5112,0.3848,0.357,0.2368,0.3312,0.537,-0.6056,-0.126,-0.1788,0.0102,-0.1972,-0.4044,-0.5976,-0.563,-0.683,-0.5284,-0.252,-0.376,-0.1972,-0.2784,-0.187,-0.185,-0.1788,0.1402,0.0956,0.4452,0.7968,1,0.8272,0.8434,0.8902,0.939,0.9716,0.9634,0.7418,0.628,0.624,0.6686,-0.7286,-0.302,-0.2408,-0.0694,-0.3244,-0.596,-0.8428,-0.847,-0.8224,-0.5878,-0.3918,-0.5082,-0.4142,-0.5938,-0.5858,-0.5062,-0.3654,-0.1224,-0.102,0.0244,0.3244,0.5756,1,0.9796,0.6082,0.596,0.4734,0.5796,0.6204,0.4552,0.4428,0.353,-0.6564,-0.2932,0.0416,0.1028,-0.3458,-0.4748,-0.79,-0.7572,-0.6828,-0.5646,-0.5208,-0.4398,-0.5164,-0.512,-0.4442,-0.477,-0.3304,-0.2778,-0.0984,0.151,0.407,0.7702,1,0.976,0.7724,0.8184,0.8206,0.755,0.6914,0.5668,0.4858,0.5032,-0.7408,-0.2754,0.0856,-0.0578,-0.3774,-0.7962,-0.9306,-0.8032,-0.8288,-0.7778,-0.6898,-0.6274,-0.6944,-0.5532,-0.537,-0.6064,-0.5672,-0.4098,-0.1482,0.0972,0.3356,0.7824,1,0.919,0.7106,0.6412,0.5486,0.4374,0.4306,0.331,0.2292,0.3078,-0.778,-0.1228,0.1308,-0.1122,-0.601,-0.9208,-0.963,-0.8362,-0.7146,-0.704,-0.6804,-0.6274,-0.6512,-0.5852,-0.6064,-0.72,-0.564,-0.5006,-0.3052,-0.0436,0.2866,0.7808,1,0.7834,0.5932,0.609,0.2998,0.136,0.0912,0.0146,-0.0594,0.1228,-0.6514,0.0088,0.2378,-0.0162,-0.477,-0.6164,-0.8232,-0.7036,-0.599,-0.8282,-0.5916,-0.4098,-0.4196,-0.5418,-0.462,-0.4596,-0.447,-0.2378,-0.0262,0.33,0.7236,0.9428,1,0.8108,0.7684,0.482,0.2826,0.183,-0.0062,0.0062,0.041,0.1956,-0.3192,0.4042,0.3618,0.234,0.149,-0.1914,-0.3192,-0.2766,-0.5744,-0.2766,0.1064,0.1064,-0.4042,0.0212,0.149,0.149,0.234,0.5744,0.6596,0.9148,0.7872,1,1,0.7872,1,0.9574,0.234,0.4042,0.4894,0.3192,-0.1914,0.6596,-0.5556,0.1556,0.1112,0.2,0.0666,-0.6,-0.6888,-0.4222,-0.7334,-0.4666,-0.2,-0.1112,-0.1556,-0.1112,-0.1112,-0.0666,0.2,0.2444,0.4666,0.6888,1,0.9112,0.3778,0.6444,0.9112,0.7778,0.3778,0.0666,0.0222,0.0222,0.2444,0.2,-0.4226,0.1134,0.3196,0.031,-0.2164,-0.3814,-0.5876,-0.6082,-0.9382,-0.6702,-0.3196,-0.1752,-0.3608,-0.299,-0.464,-0.0722,-0.0104,-0.4226,-0.0722,0.3608,0.5052,0.897,1,0.9588,0.897,0.8556,0.6908,0.464,0.464,0.3814,0.3814,0.402,-1,-1,-1,-1,-1,-1,-1,-0.8796,-0.8844,-0.8266,-0.2338,0.8602,0.6434,0.1084,-0.176,-0.1132,0.0314,0.2,-0.0746,-0.229,0.2626,-0.0554,-0.7542,-0.8024,-0.812,-0.894,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.9494,-0.676,0.1016,-0.0024,0.7068,0.7316,0.2114,-0.1352,0.05,-0.1422,-0.3828,-0.6088,-0.4502,-0.5274,-0.895,-0.9198,-0.901,-0.8772,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.912,-0.9468,-0.7034,0.9632,-0.185,0.0916,0.1384,0.1706,0.1584,0.1106,0.086,-0.0548,-0.2348,-0.3932,-0.4686,-0.5008,-0.6076,-0.6442,-0.4708,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3714,0.9142,1,1,1,0.1142,-0.4858,-0.6,-0.8286,-0.6,-0.5142,-0.1142,-0.6,-0.3428,1,0.4572,-0.8858,-0.8286,-0.5428,-1,-1,-1,-1,-1,-1,-1,-0.1348,-0.1406,-0.168,-0.1592,-0.1326,-0.0754,-0.026,-0.0052,-0.0342,-0.1348,0.7436,0.7606,0.7924,0.8534,0.9054,0.961,1,1,1,1,-0.6,0.5412,0.0856,-0.268,-0.1838,-0.1026,0.2442,1,-0.6666,-0.3056,-0.3472,-0.125,0.0556,0.2638,0.25,0.0556,0.0416,0.4444,0.4166,0.6112,0.6528,0.625,0.5556,0.4306,0.3472,0.3194,0.5138,0.5694,0.5,0.4444,0.9722,1,0.9166,1,0.7778,0.5834,0.3194,0.3612,0.0972,-0.4584,-0.8616,-0.673,-0.5598,-0.61,-0.4592,-0.3836,-0.3962,-0.6478,-0.283,-0.0314,-0.0818,0.0818,0.1698,-0.0818,-0.1698,-0.0188,0.0314,-0.0944,0.132,0.346,0.5472,0.761,0.8616,0.912,1,0.7862,0.6226,0.6226,0.4842,0.2704,0.371,-0.1194,-0.0198,0.298,-0.1126,-0.3378,-0.3774,-0.3246,-0.2848,-0.1258,0.0596,0.7086,0.6292,0.5364,0.6954,0.3246,-0.0332,0.2848,0.4702,0.192,0.245,0.3908,0.4702,0.51,0.9338,1,0.7086,0.5762,0.563,0.4966,0.351,0.2716,0.351,-0.0332,0.7058,-1,-1,1,-1,-1,-1,-0.7,-1,-0.394,-0.4142,0.2324,0.293,0.0708,0.0304,0.3738,0.0708,0.9798,0.9596,0.8384,0.8384,0.596,0.4142,0.5758,0.4748,0.495,0.3536,0.3334,0.0708,0.1516,0.1516,-0.2324,0.1314,0.7576,0.495,0.4748,1,0.899,0.495,0.2122,-0.2728,'4'
-0.3502,0.2698,0.4606,0.6454,0.1654,-0.5828,-0.5976,-0.5946,-0.678,-0.6542,-0.5588,-0.6482,-0.5916,-0.4426,-0.5082,-0.6334,-0.3056,-0.1862,0.2578,0.535,1,0.839,0.5886,0.6692,0.8242,0.851,0.8242,0.4664,0.1744,0.1178,0.0402,0.1148,-0.4612,0.1058,0.2864,0.5008,0.1058,-0.7292,-0.7122,-0.7376,-0.684,-0.7828,-0.6558,-0.4894,-0.4414,-0.6136,-0.7744,-0.6614,-0.6502,-0.4556,-0.165,-0.103,0.4668,0.749,1,0.8448,0.6982,0.8448,0.9126,0.6332,0.5486,0.3456,0.2016,0.3624,-0.4106,0.2106,0.5368,0.7122,0.0316,-0.3894,-0.6702,-0.6702,-0.5578,-0.5964,-0.5264,-0.186,-0.3508,-0.4772,-0.621,-0.6596,-0.435,-0.3824,-0.1754,-0.007,0.0736,0.1614,0.786,1,0.828,0.8526,0.7824,0.8106,0.6526,0.3192,0.4982,0.3368,-0.4862,-0.0114,0.4016,0.444,-0.252,-0.4602,-0.8146,-0.7398,-0.7756,-0.8308,-0.5382,-0.5512,-0.5512,-0.587,-0.6586,-0.7106,-0.6292,-0.5024,-0.3918,-0.2066,0.109,0.5512,0.87,1,0.8992,0.8244,0.8114,0.8048,0.457,0.2618,0.4472,0.3074,-0.5578,-0.2782,0.3444,0.2482,-0.4316,-0.7112,-0.8948,-0.976,-0.8376,-0.8136,-0.576,-0.4526,-0.4736,-0.636,-0.6,-0.7414,-0.7414,-0.63,-0.3504,-0.191,0.0796,0.4736,0.9068,1,0.9488,0.8256,0.7804,0.6662,0.582,0.3654,0.3234,0.2752,-0.6734,-0.322,0.131,-0.0016,-0.701,-0.923,-0.8922,-0.7904,-0.6826,-0.8674,-0.6394,-0.5316,-0.5964,-0.6056,-0.661,-0.7874,-0.695,-0.7412,-0.5254,-0.2788,-0.0354,0.47,0.8644,1,0.8028,0.8336,0.7258,0.4206,0.3158,0.0354,0.0816,0.1494,-0.4504,0.1034,0.4462,0.372,-0.4794,-0.3264,-0.2934,-0.405,-0.6694,-0.7438,-0.8512,-0.5702,-0.2314,-0.1736,-0.5868,-0.9462,-0.6488,-0.5124,-0.3884,0.0538,0.31,0.7976,0.8596,0.8512,1,0.9546,0.6818,0.3596,0.0248,-0.0744,-0.0744,-0.033,-0.1304,0.3478,0.3914,0.4782,0.174,-0.3478,-0.3478,-0.4348,-0.826,-0.4348,-0.174,-0.4348,-0.2608,0.0434,0.1304,0.087,0.087,0.4348,0.5218,0.9566,1,0.5218,0.6086,0.6522,0.9566,1,0.7826,0.4782,0.2174,-0.174,0.2608,0.1304,-0.4482,0.1724,0.5172,0.6552,0.0344,-0.6552,-0.5862,-0.6552,-0.5862,-0.6552,-0.3794,-0.2414,-0.5172,-0.5862,-0.931,-0.7242,-0.5862,-0.7242,-0.2414,0.931,1,0.1034,-0.1034,0.1724,0.3104,0.6552,0.3104,0.1724,0.0344,-0.3794,-0.5172,0.1724,-0.5264,-0.0526,0.2368,0.421,0,-0.7894,-0.6052,-0.6842,-0.7632,-0.921,-0.7368,-0.3948,-0.3422,-0.5526,-0.5526,-0.6316,-0.5,-0.4474,-0.1842,-0.2106,-0.1052,0.7894,1,0.7106,0.6578,0.7106,0.7106,0.579,0.421,0.3422,0.4474,0.4736,-1,-1,-0.8692,-0.891,-0.7602,-0.6622,-0.6676,-0.7002,-0.7602,-0.684,-0.3188,0.7712,0.7984,0.5314,0.2752,0.248,0.0736,0.0954,-0.03,-0.2752,-0.1172,-0.3134,-0.6458,-0.7656,-0.8366,-0.8692,-0.8964,-0.891,-0.9128,-0.8802,-0.902,-0.8856,-0.8856,-1,-1,-0.863,-0.8802,-0.7918,-0.7546,-0.769,-0.769,-0.8088,-0.0442,0.8146,0.5064,0.8402,0.6718,0.107,0.144,0.107,0.0442,0.2068,-0.0928,-0.1554,-0.4664,-0.6662,-0.6376,-0.7346,-0.7574,-0.7376,-0.7632,-0.7804,-0.7262,-0.8202,-0.8232,-0.806,-1,-1,-0.92,-0.9668,-0.84,-0.71,-0.7168,-0.77,-0.8234,-0.5634,0.71,-0.4934,-0.4434,-0.2768,-0.4868,-0.56,-0.545,-0.5784,-0.34,-0.34,-0.6368,-0.754,-0.5168,-0.6034,-0.3568,-0.5368,-0.5934,-0.6668,-0.7,-0.6134,-0.8534,-0.7134,-0.8868,-1,-1,-0.8,-0.9714,-0.9428,-0.9714,-1,-0.9428,1,1,1,1,-0.6,-0.6572,-0.8,-0.9428,-1,-1,-0.9428,-0.9142,-0.7428,-0.8572,-0.8286,-0.7142,-0.8286,-0.9142,-0.8858,-0.8286,-1,-0.8572,-0.7714,-0.8858,-1,-0.1556,-0.1642,-0.157,-0.1852,-0.2186,-0.2126,-0.2002,-0.2374,-0.2266,-0.2246,0.8186,0.8242,0.8526,0.889,0.9124,0.908,0.9032,0.9492,0.9774,0.9326,-0.5866,0.447,0.592,0.4922,0.2838,0.3552,0.7376,1,-0.738,-0.2966,-0.0896,-0.2966,0.1172,0.0344,-0.0206,0.0206,0.0482,0.062,0.5586,0.4896,0.5172,0.5586,0.5034,0.5862,0.4758,0.5862,0.5586,0.7932,0.8482,1,0.9586,0.9034,0.3932,0.4758,0.3794,0.2414,0.062,-0.2,-0.2138,-0.738,-0.445,-0.2832,-0.3642,-0.3758,-0.3758,-0.2254,-0.2486,-0.2024,-0.0868,0.3064,0.3642,0.3872,0.526,0.2832,0.2486,0.4566,0.5838,0.607,0.318,0.4798,0.7688,1,0.919,0.7456,0.5954,0.5722,0.6994,0.4798,0.2254,0.318,0.3872,0.0174,0.0828,0.2612,-0.0446,-0.1848,-0.2356,-0.0574,-0.0192,0.0956,0.0956,0.3758,0.6178,0.4268,0.8216,0.656,0.4522,0.5668,0.5414,0.4268,0.6306,0.7198,0.8726,1,0.9872,0.605,0.516,0.6688,0.6434,0.5796,0.4394,0.2102,0.121,-0.1592,1,-1,-1,1,-0.8,-1,-0.8,-0.7,-1,-0.4444,-0.1852,-0.1112,0.1666,0.074,-0.037,0.3148,-0.0186,0.3334,0.1482,0.8888,0.963,1,0.7222,0.7962,0.5,0.6852,0.6666,0.4444,0.7222,0.6296,0.8334,0.4074,-0.3518,-0.2408,0.074,0,0.0186,0.074,0.2222,0,-0.6296,'4'
-0.6854,-0.1114,0.1454,0.177,-0.2372,-0.515,-0.7484,-0.6462,-0.5412,-0.654,-0.3788,-0.3394,-0.342,-0.342,-0.2424,-0.2896,-0.2976,-0.072,0.156,0.4862,0.8558,1,0.9292,0.6094,0.5518,0.6146,0.7824,0.9108,0.8008,0.7484,0.8112,0.751,-0.482,0.0712,-0.0246,0.2066,-0.0012,-0.3092,-0.692,-0.699,-0.657,-0.622,-0.2112,-0.2928,-0.3722,-0.454,-0.3092,-0.3886,-0.2812,-0.0268,0.0128,0.4632,0.5472,1,0.9066,0.3838,0.4142,0.5846,0.7852,0.8764,0.7596,0.7852,0.8834,0.8554,-0.5446,-0.0178,0.0712,0.2672,-0.0662,-0.519,-0.8194,-0.804,-0.7176,-0.453,-0.2774,-0.2544,-0.2036,-0.257,-0.2798,-0.4046,-0.229,0.0178,0.2646,0.4478,0.8396,0.9796,1,0.8676,0.7202,0.6946,0.748,0.8702,0.9466,0.7736,0.7812,0.8142,-0.5338,-0.086,0.192,0.2874,-0.2556,-0.3166,-0.714,-0.6264,-0.6424,-0.441,-0.5284,-0.3218,-0.3774,-0.3774,-0.4544,-0.3828,-0.2158,0.0066,0.057,0.4226,0.7854,1,1,0.8332,0.7484,0.743,0.8464,0.9126,0.91,0.7192,0.7192,0.7166,-0.4666,-0.1392,0.374,0.3334,-0.4434,-0.6754,-0.7276,-0.7682,-0.8318,-0.6406,-0.4754,-0.4406,-0.426,-0.4782,-0.455,-0.5246,-0.3856,-0.1334,0.029,0.374,0.6754,0.9884,1,0.6696,0.6638,0.6464,0.7276,0.658,0.626,0.4318,0.4782,0.542,-0.514,-0.1428,0.527,0.3892,-0.4614,-0.8522,-0.7602,-0.6748,-0.7176,-0.8556,-0.688,-0.6354,-0.55,-0.5666,-0.5698,-0.5894,-0.619,-0.3892,-0.1428,0.2546,0.826,0.8982,1,0.6322,0.6618,0.7208,0.6848,0.4712,0.4614,0.2808,0.4286,0.4022,-0.2828,0.2092,0.5954,0.4252,-0.7886,-0.7058,-0.531,-0.531,-0.6644,-0.7104,-0.5724,-0.3334,-0.361,-0.3012,-0.3978,-0.7288,-0.439,-0.315,-0.3656,-0.0988,0.5954,0.7794,1,0.692,0.623,0.7748,0.3472,0.2184,0.2,-0.039,0.0206,-0.039,-0.1344,0.4626,0.6418,0.4328,0.3134,0.2538,0.2538,0.1044,0.1044,-0.1344,0.2836,0.2538,0.194,0.2238,0.4328,0.403,0.2238,0.2836,0.3732,0.5224,0.7314,1,0.8208,0.7612,0.403,0.6418,0.8208,0.8208,0.791,0.791,0.6716,0.8508,-0.7392,-0.1304,0.2174,0.087,-0.4782,-0.6086,-0.7392,-0.4348,-0.3914,-0.4348,-0.2174,-0.2174,-0.3478,-0.2174,-0.2174,-0.2608,-0.2174,-0.087,0.2174,0.5652,0.8696,1,0.913,0.6522,0.5652,0.6956,0.826,0.913,0.8696,0.7392,0.7826,0.7826,-0.6098,-0.1708,0.2196,0.317,-0.0976,-0.1952,-0.7804,-0.6098,-0.6342,-0.4878,-0.5854,-0.3414,-0.2196,-0.4146,-0.5366,-0.4878,-0.2682,0.0976,0.0732,0.2926,0.7318,0.7804,0.9756,0.8048,0.7074,0.5854,0.6098,1,0.8292,0.6098,0.7074,0.6342,-1,-1,-1,-1,-1,-1,-1,-0.9244,-0.9028,-0.6972,-0.573,0.1568,0.8054,0.6864,0.4162,0.3514,0.2864,0.3136,0.2378,0.1082,0.3838,-0.3136,-0.681,-0.8594,-0.8756,-0.9028,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9614,-0.9476,-0.8294,-0.5188,0.165,0.6928,0.1206,0.0638,0.1172,-0.0478,-0.3482,-0.4574,-0.562,-0.5722,-0.8032,-0.8998,-0.9306,-0.9386,-0.9408,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.62,-0.34,-0.0668,0.2282,0.0482,0.14,0.1432,0.09,-0.16,-0.32,-0.4034,-0.7434,-0.7634,-0.8334,-0.7068,-0.92,-0.8868,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,0.2,1,1,1,-0.3714,-0.9428,-0.9142,-1,-0.6858,-0.7714,-1,-0.8572,-0.5428,-0.3428,-0.9142,-0.9428,-1,-0.7142,-1,-1,-1,-1,-1,-1,-1,-0.0516,-0.0384,-0.039,-0.0404,-0.0622,-0.0696,-0.0452,-0.0652,-0.0714,-0.1676,1,1,1,1,1,1,1,1,1,0.9454,-0.64,0.4352,-0.447,-0.3424,-0.0318,0.719,-0.1218,-0.5666,-0.4934,-0.2534,-0.2266,-0.44,-0.0934,-0.28,-0.0934,-0.1466,-0.28,0.0134,0.6,0.7334,0.6,0.84,0.9466,0.84,0.9734,1,0.7066,0.44,0.36,0.3066,0.0934,0.2,0.28,0.36,0.44,0.1734,0.1466,0.0134,0.0934,-0.0134,-0.4468,0.1702,-0.2128,-0.4042,-0.3192,-0.3404,-0.2128,-0.2128,-0.149,-0.1702,0.8298,0.7234,0.1064,0.5532,0.5744,0.4042,1,1,0.0852,0.4256,-0.1276,0.2978,0.149,0.0212,0.1702,0.2554,0.4256,-0.1064,-0.2978,-0.1276,0.383,0.2128,-0.3488,-0.0466,-0.279,-0.4418,-0.5814,-0.3256,-0.3256,-0.3488,-0.3256,0.093,0.7906,0.7674,0.5582,0.8604,0.8604,0.814,0.9768,1,0.5582,0.186,0.093,0.2326,-0.1162,0.1628,0.3256,0.4186,0.5582,0.4186,0.2326,0.2094,0.3256,-0.0466,-0.1468,-1,-1,1,-1,-1,-1,-0.8,-1,-0.3954,-0.0698,0.3024,0.3024,0.1396,0.0466,0.3488,0.0698,0.279,0.0698,1,0.5116,0.4418,0.3488,-0.1396,0.279,0.2326,0.0698,0.186,-0.6046,-0.0232,0.2326,0.279,0.0232,-0.0232,0.0466,-0.0232,-0.093,0,-0.186,-0.279,-0.4884,'5'
-0.6778,-0.031,-0.0384,-0.0732,-0.1624,-0.611,-0.6976,-0.6382,-0.6432,-0.6158,-0.658,-0.4474,-0.497,-0.4052,-0.482,-0.435,-0.5068,-0.2936,-0.2218,0.0434,0.1624,0.4796,0.7696,1,0.891,0.534,0.6754,0.8142,0.6926,0.6728,0.611,0.6556,-0.6844,0.0694,0.0812,-0.2886,-0.2768,-0.6348,-0.6136,-0.6702,-0.5618,-0.55,-0.4912,-0.5124,-0.3992,-0.5642,-0.4276,-0.5572,-0.4158,-0.444,-0.225,-0.0978,0.2014,0.338,0.7078,0.6208,1,0.9128,0.7692,0.7196,0.8988,0.861,0.7526,0.748,-0.6794,0.0184,0.0062,-0.224,-0.2608,-0.5692,-0.6058,-0.672,-0.6842,-0.721,-0.6842,-0.5324,-0.5912,-0.5618,-0.5276,-0.5692,-0.4958,-0.4026,-0.3782,-0.2118,-0.1138,0.344,0.508,0.8996,1,0.7576,0.5888,0.7796,0.8654,0.5692,0.4958,0.4638,-0.6784,-0.0546,-0.1636,-0.0546,-0.309,-0.7118,-0.9272,-0.7986,-0.793,-0.9188,-0.6196,-0.628,-0.5748,-0.6252,-0.779,-0.6924,-0.5412,-0.6588,-0.5804,-0.4294,-0.2476,0.1944,0.4966,0.916,1,0.9524,0.8098,0.807,0.7314,0.4742,0.4714,0.463,-0.7504,-0.3744,-0.0244,0.0244,-0.6728,-0.7906,-0.8766,-0.7848,-0.8308,-0.9254,-0.8048,-0.8566,-0.822,-0.8078,-0.8968,-0.756,-0.6814,-0.647,-0.7188,-0.4032,-0.3142,-0.1306,0.1678,0.6528,1,0.9082,0.5552,0.7504,0.7102,0.2224,0.165,0.2338,-0.6966,-0.2686,-0.0774,0.0106,-0.7148,-0.7724,-0.8634,-0.8664,-0.657,-0.821,-0.7482,-0.6388,-0.5752,-0.5934,-0.654,-0.6328,-0.4538,-0.5964,-0.7208,-0.6632,-0.4052,-0.0318,0.135,0.5236,0.8574,1,0.7116,0.478,0.4476,0.1624,0.0562,0.1594,-0.7538,-0.153,0.2798,0.3172,-0.6828,-0.653,-0.8806,-0.9068,-0.7874,-0.7388,-0.8284,-0.6866,-0.735,-0.75,-0.6754,-0.8022,-0.6866,-0.6568,-0.7948,-0.265,-0.0262,0.3508,0.8284,0.959,1,0.9962,0.9926,0.5074,0.3956,-0.082,-0.0298,0.0448,-0.081,0.1892,0.2972,0.2972,0.081,-0.1352,-0.081,-0.081,-0.081,-0.081,-0.1352,0.027,-0.027,-0.1892,-0.1352,-0.081,-0.2432,-0.946,0.027,0.1892,0.1352,0.4594,0.3514,1,0.946,0.6756,1,1,0.8378,1,0.8378,0.8918,-0.5918,0.0612,0.102,-0.102,-0.102,-0.5918,-0.7552,-0.551,-0.6734,-0.6326,-0.7142,-0.4694,-0.3878,-0.2654,-0.347,-0.3062,-0.1836,-0.1428,0.0204,0.102,0.4286,0.6734,1,0.9592,0.7142,0.7142,0.9184,0.8776,0.796,0.7552,0.796,0.796,-0.6458,0.0416,0.0624,-0.2292,-0.2084,-0.5834,-0.5624,-0.6042,-0.6666,-0.7708,-0.7084,-0.4166,-0.5,-0.5208,-0.4166,-0.3958,-0.3334,-0.3124,-0.2084,-0.0834,-0.0416,0.4376,0.5834,0.8334,1,0.7916,0.7292,0.6876,0.9166,0.7708,0.6876,0.5834,-1,-1,-1,-1,-1,-1,-1,-0.9014,-0.8958,-0.9232,-0.8958,0.4356,0.3316,0.4136,0.2274,-0.0302,-0.2164,-0.359,-0.3534,-0.4356,-0.4028,-0.2822,-0.5342,-0.6768,-0.759,-0.8136,-0.8466,-0.874,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.945,-0.9476,-0.8638,-0.7342,0.4816,0.8062,0.5418,0.301,-0.089,-0.3848,-0.5392,-0.6584,-0.7068,-0.7252,-0.6506,-0.7762,-0.8232,-0.843,-0.8456,-0.843,-0.8744,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8574,-0.96,-0.9134,-0.5434,-0.1038,0.2962,0.3132,0.1832,0.175,0.0032,-0.03,-0.0684,-0.4784,-0.655,-0.7134,-0.7268,-0.5668,-0.6,-0.6268,-0.5868,-0.58,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.1714,-0.7142,1,1,1,-0.6572,-0.7714,-0.5714,-0.8572,-0.9142,-0.8572,-0.9142,-0.8858,-0.4,-0.4,-0.8,-0.7428,-0.8,-0.9428,-0.8572,-0.4,-1,-1,-1,-1,-1,-0.0228,-0.0028,-0.0322,-0.0246,-0.04,-0.0484,-0.083,-0.0992,-0.1518,-0.1994,1,1,1,1,1,1,1,1,1,1,-0.7334,0.4118,-0.8796,-0.318,0.7802,0.5562,0.466,0.525,-0.044,-0.055,0.1758,0.4946,0.7142,0.3846,0.4396,0.4836,1,0.2858,0.5164,0.3516,0.4726,0.4396,-0.1428,0.5604,0.4286,0.1868,0.1758,0.044,0.055,0.2198,0.2418,0.088,-0.1868,0.066,-0.077,0.2088,0.1428,0.055,0.088,-0.4176,0.1882,0.153,0.4,0.4,0.6118,0.6706,1,0.9176,0.8236,0.6588,0.6236,0.6,0.6824,0.4706,0.647,0.8,0.4824,0.1882,0.2352,0.3882,0.6236,0.4824,0.447,0.153,0.3058,0.2118,0.5176,0.2942,0.2942,0.1882,-0.2588,-0.5764,-0.1632,-0.2908,-0.2908,0.0852,0.1632,0.2696,0.149,0.234,0.2412,0.0212,0.461,0.7518,0.7446,0.8652,0.8014,0.7164,0.7022,1,0.7446,0.7092,0.5248,0.461,0.234,0.1774,0.39,0.5958,0.1914,0.2198,0.1206,0.0284,0.1206,-0.2056,-0.9896,1,-1,-1,-1,-1,-0.6,-1,-1,0.1776,0.215,-0.1028,-0.0654,-0.1402,-0.3272,-0.215,-0.0094,0.215,0.701,1,0.9626,0.7944,0.7758,0.2336,0.4954,0.5888,0.6636,0.3644,0.3084,0.4392,0.701,0.6074,0.4206,0.2336,0.0654,0.271,0.4392,0.2898,0.1962,-0.0842,-0.5328,'5'
-0.6754,-0.2988,0.0714,0.1948,0.6688,0.7012,0.9156,0.8376,0.526,0.4156,0.4806,0.5064,0.5064,0.6624,0.8052,0.935,0.9286,1,0.8506,0.8116,0.7922,0.7988,0.8312,0.6624,0.3182,0.3442,0.2338,0.1364,0.0194,0.0714,0.0974,0.1038,-0.754,-0.3528,0.0162,0.1456,0.5858,0.6116,1,0.9352,0.4304,0.314,0.4046,0.4886,0.4952,0.6052,0.644,0.8252,0.657,0.6828,0.5276,0.5276,0.4758,0.534,0.5598,0.2816,0.2428,0.1068,0.1522,0.0744,-0.0292,0.055,0.0486,0.0486,-0.74,-0.3436,-0.0278,0.1084,0.486,0.5294,1,0.9566,0.4242,0.3312,0.4366,0.486,0.5108,0.6966,0.6284,0.7586,0.5976,0.4366,0.2198,0.257,0.4242,0.3808,0.1394,0.0464,0.1394,-0.0774,-0.034,-0.034,-0.0464,-0.0588,-0.164,-0.1702,-0.7308,-0.3334,0.0064,0.1346,0.4744,0.5962,1,0.9102,0.6988,0.5898,0.6666,0.7436,0.7116,0.9166,0.7308,0.8142,0.532,0.577,0.5128,0.4424,0.6026,0.3718,0.3526,0.0898,0.0706,0.0448,-0.1026,-0.1154,-0.0962,-0.0642,-0.109,-0.109,-0.7034,-0.369,-0.0094,0.0726,0.369,0.6026,0.7728,0.8234,0.8612,0.7098,0.7034,0.8676,0.9874,1,0.9054,0.7602,0.6908,0.653,0.653,0.817,0.8422,0.8928,0.6404,0.4448,0.3186,0.1988,0.0914,0.1294,0.0914,0.0474,0.243,0.2556,-0.7616,-0.4768,-0.0582,-0.0232,0.093,0.6802,0.7558,0.8954,0.8082,0.622,0.8314,0.7906,1,0.843,0.8896,0.6104,0.564,0.628,0.7268,0.7268,0.9826,0.8488,0.7094,0.4302,0.279,0.2732,0.157,0.1162,0.1396,0.128,0.1744,0.2152,-0.7388,-0.4364,-0.0378,-0.0652,0.1134,0.6152,0.7044,0.5808,0.5052,0.5532,0.8282,0.9382,1,0.835,0.5808,0.244,0.134,0.292,0.3402,0.6288,0.8694,0.842,0.2784,-0.0172,-0.1684,-0.3264,-0.3676,-0.4158,-0.512,-0.292,-0.0928,-0.1684,-0.6272,-0.2882,0.0848,0.2204,0.5932,0.661,0.7628,0.695,0.5254,0.4238,0.4576,0.5254,0.4238,0.5932,0.7966,0.8644,1,0.9662,0.8644,0.7288,0.7966,0.8644,0.8644,0.5932,0.5932,0.5254,0.1864,0.2882,0.2542,-0.017,0.2204,0.1186,-0.6924,-0.3076,0.077,0.2308,0.6538,0.7692,0.9616,0.8846,0.5384,0.3846,0.5384,0.5,0.5384,0.6924,0.8462,1,0.9616,1,0.8846,0.8846,0.8076,0.8076,0.8846,0.6538,0.1924,0.2308,0.1924,0.1924,0.077,0.1924,0.1154,0.1538,-0.6666,-0.2962,0.0186,0.1296,0.4444,0.6482,0.8704,0.7592,0.8148,0.7408,0.7408,0.8888,0.926,1,0.8888,0.8704,0.6852,0.6112,0.6852,0.7962,0.8334,0.7962,0.7038,0.3888,0.2038,0.2222,0.074,0.037,0.0926,0.074,0.2222,0.1482,-1,-1,-1,-1,-1,-1,-1,-1,-0.937,-0.9484,-0.3094,0.6992,0.8654,0.914,0.9542,0.9714,0.8166,0.4756,0.1376,0.0372,-0.149,-0.4584,-0.6562,-0.871,-0.8998,-0.9284,-0.9312,-0.9456,-0.9426,-0.9398,-0.9542,-0.9284,-0.9542,-1,-1,-1,-1,-1,-1,-1,-1,-0.9774,-0.9768,-0.4242,0.7496,0.5512,0.6832,0.6616,0.56,0.6682,0.8858,0.9446,0.6682,0.1608,-0.4584,-0.819,-0.9086,-0.9384,-0.9234,-0.9346,-0.9326,-0.9306,-0.921,-0.9192,-0.897,-0.8874,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.8734,-0.6634,-0.58,-0.62,-0.645,-0.635,-0.635,-0.645,-0.495,-0.335,-0.425,-0.43,-0.435,-0.4834,-0.3934,-0.21,-0.0168,-0.1068,0.1932,0.11,0.3832,0.3766,0.6266,0.73,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,-0.5714,-0.5714,-0.7714,-0.8286,0.2572,0.7142,-0.0572,1,1,1,0.7714,-0.3714,0,-0.3428,-0.9428,-1,-0.9428,-0.9142,-0.9428,-0.8858,-0.8572,1,1,1,1,1,1,1,1,1,1,-0.7364,-0.7364,-0.7638,-0.8088,-0.8398,-0.8714,-0.9508,-1,-1,-1,-0.68,-0.6,-0.4488,0.7348,0.6784,0.5378,0.663,1,-0.2,-0.04,0.32,0.32,0.16,0.32,0.32,0.64,0.76,0.52,1,0.96,0.76,0.6,0.56,0.56,0.6,0.52,0.72,0.72,0.64,0.44,0.52,0.28,0.08,0.04,0.04,-0.08,-0.2,-0.36,-0.36,-0.56,0.1346,0.3076,0.7884,0.9616,0.6346,0.6538,0.673,0.8076,0.9616,0.9038,1,0.9616,0.7308,0.7308,0.5576,0.5192,0.6346,0.6924,0.7308,0.6538,0.4424,0.3462,0.6538,0.577,0.25,-0.0576,-0.077,0.2116,-0.0576,-0.2116,-0.2884,-0.423,-0.0848,0.339,0.8474,0.9152,0.7118,0.6102,0.678,0.8644,0.9662,1,0.9152,0.8814,0.7458,0.4746,0.339,0.3728,0.339,0.356,0.2034,0.4406,0.2204,0.339,0.1526,0.2542,-0.1186,-0.3728,-0.1864,-0.1186,-0.2542,-0.2034,-0.3898,-0.7966,1,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.6542,-0.7142,-0.5488,-0.4436,-0.2932,-0.0376,0.188,0.2632,0.3534,0.3534,0.3384,0.3834,0.4136,0.5188,0.2482,0.1578,0.4888,0.5488,0.564,0.579,0.639,0.579,0.5488,0.7294,0.6542,0.7744,1,0.985,0.8196,0.7294,0.609,0.0226,'6'
-0.772,-0.544,-0.101,-0.0944,0.355,0.759,0.7524,0.5114,0.2768,0.2964,0.3942,0.342,0.4592,0.7198,0.9022,0.9804,0.8892,0.7328,0.7328,0.8306,1,0.9544,0.8958,0.6612,0.57,0.368,0.2768,0.303,0.2508,0.2442,0.4006,0.3616,-0.7548,-0.4842,-0.088,-0.0314,0.2138,0.7924,0.8868,0.4654,0.3774,0.3836,0.4968,0.5158,0.5974,0.8868,0.9686,0.868,0.8176,0.7422,0.7106,0.7548,1,0.8994,0.8238,0.566,0.4968,0.3836,0.2768,0.2264,0.283,0.2076,0.3082,0.3522,-0.7706,-0.4774,-0.0826,-0.04,0.28,0.7174,0.84,0.5786,0.4986,0.4454,0.4934,0.5626,0.6906,0.8506,1,0.8026,0.6586,0.6106,0.5626,0.696,0.8826,0.888,0.5414,0.4134,0.3386,0.168,0.1306,0.0826,-0.0346,0.024,0.1946,0.1786,-0.709,-0.4286,-0.0476,-0.0212,0.2222,0.6984,0.7936,0.672,0.619,0.492,0.5714,0.5926,0.7566,0.91,1,0.6138,0.5132,0.5238,0.5132,0.5344,0.7672,0.6984,0.5132,0.2646,0.2434,0.0476,-0.0318,-0.0158,-0.0688,-0.1376,-0.053,0.0634,-0.6836,-0.4406,-0.0112,-0.017,0.1978,0.7966,0.8248,0.8306,0.6724,0.565,0.7006,0.87,0.9322,1,0.8814,0.582,0.4916,0.4632,0.548,0.661,0.678,0.7118,0.531,0.3672,0.1412,0.0112,-0.0904,-0.0508,-0.0564,-0.1016,0.0282,0.0282,-0.6688,-0.4126,-0.0312,-0.0062,0.3688,0.7624,0.9188,1,0.75,0.6688,0.7124,0.9874,0.9374,0.9624,0.6188,0.4626,0.4062,0.4812,0.5374,0.675,0.8188,0.7562,0.55,0.3,0.1062,-0.0874,-0.2,-0.1374,-0.2,-0.2938,-0.1374,-0.0624,-0.545,-0.2942,-0.0196,-0.0352,0.5686,0.7882,1,0.9138,0.8432,0.7098,0.898,0.9922,0.7882,0.702,0.5058,0.2706,0.098,0.0118,0.1686,0.5764,0.545,0.4824,0.0902,-0.2156,-0.3098,-0.396,-0.5216,-0.6314,-0.498,-0.5686,-0.3726,-0.153,-0.75,-0.375,-0.1666,-0.0834,0.5,0.7084,0.5834,0.625,0.375,0.25,0.3334,0.3334,0.375,0.5834,0.875,0.9584,0.875,0.7916,0.7916,0.7916,0.9166,0.7916,1,0.625,0.4584,0.2084,0.25,0.2084,0.0834,0.0834,0.3334,0.25,-0.8868,-0.5094,-0.132,-0.0944,0.0944,0.7358,0.7358,0.3584,0.2452,0.2452,0.3208,0.3584,0.3584,0.6226,0.8868,0.9622,0.7358,0.6226,0.6982,0.7736,0.9246,1,0.7736,0.6226,0.4716,0.3962,0.3208,0.2452,0.283,0.2452,0.434,0.283,-0.6288,-0.3608,0.0516,0.0104,0.2578,0.6908,0.835,0.9588,0.7114,0.6494,0.6494,0.9794,0.9176,1,0.6288,0.567,0.464,0.567,0.6288,0.6908,0.8762,0.8556,0.6494,0.3608,0.1958,0.0722,-0.1134,0.0722,0.0928,-0.0722,0.031,0.1134,-1,-1,-1,-1,-1,-1,-1,-0.9308,-0.923,-0.9424,-0.2346,0.8384,0.9076,0.9884,0.95,0.8538,0.8692,0.8576,0.85,0.5654,0.5308,-0.1424,-0.7192,-0.9038,-0.9,-0.9038,-0.9154,-0.9346,-0.9154,-0.9424,-0.9462,-0.9346,-0.9384,-1,-1,-1,-1,-1,-1,-1,-0.9816,-0.9798,-0.977,-0.2586,0.8654,0.9192,0.8912,0.757,0.6086,0.5288,0.4902,0.4354,0.2784,0.0864,-0.5438,-0.8912,-0.9252,-0.9174,-0.9238,-0.9288,-0.948,-0.9554,-0.9532,-0.9536,-0.943,-0.933,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.93,-0.81,-0.5068,-0.41,-0.495,-0.475,-0.47,-0.52,-0.605,-0.535,-0.605,-0.544,-0.588,-0.64,-0.3234,-0.11,0.0466,0.1666,-0.06,-0.2068,-0.1734,-0.3,-0.3468,-0.2068,-0.0734,-1,-1,-1,-1,-1,-1,-1,-0.8,-0.8,1,1,1,0.6,-0.3428,-0.5142,-0.8572,-0.9142,-0.9428,-0.8,0.9142,1,1,0.8286,-0.4,-0.5428,-0.8572,-0.8,-0.8,-0.9142,-0.9714,-1,-0.8572,-0.8286,1,1,1,1,1,1,1,1,1,1,-0.6422,-0.6544,-0.6544,-0.6878,-0.7102,-0.7418,-0.7444,-0.8192,-0.9738,-1,-0.6,-0.5648,-0.1984,1,0.7662,0.9462,0.9022,1,-0.3334,-0.0556,0.2222,0.2222,0.0556,0.1112,0.2222,0.6666,0.8334,0.8888,0.9444,1,0.8334,0.5556,0.3888,0.1666,0.5,0.7222,0.5556,0.5,0.5556,0.5556,0.7778,0.5556,0.2778,0,0,-0.0556,-0.0556,-0.3334,-0.0556,-0.3888,-0.063,0.027,0.1892,0.2432,0.2432,0.2252,0.2612,0.6036,0.8018,0.8918,0.964,0.964,0.8198,0.3874,0.2072,0.1532,0.4594,0.6036,0.5856,0.4234,0.5856,1,0.928,0.6216,0.2252,-0.1532,-0.2252,-0.063,-0.027,0.081,-0.027,-0.3514,-0.218,0.1128,0.6542,0.7444,0.4736,0.5188,0.639,0.9098,0.9248,0.8646,1,0.985,0.6992,0.5188,0.4286,0.4888,0.609,0.624,0.5338,0.4136,0.203,0.5188,0.624,0.3984,-0.0676,-0.4888,-0.3082,-0.233,-0.233,-0.218,-0.203,-0.2782,1,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.7222,-0.3888,-0.2592,0.0926,0.1112,0.1482,0.426,0.3334,0.7038,0.7592,0.5,1,0.5926,0.7038,0.8704,0.7962,0.5926,0.926,1,0.8518,0.7038,0.926,0.7778,0.537,0.574,0.7038,0.9074,0.7408,0.7592,0.574,0.3704,-0.2038,'6'
-0.3734,0.3152,0.2998,0.5744,0.265,0.0136,-0.4662,-0.4198,-0.4468,-0.4738,-0.176,-0.3268,-0.1722,-0.3076,-0.1566,-0.0484,0.0444,0.3926,0.5204,0.7254,0.6982,0.675,0.8646,1,0.4622,0.2572,0.1876,0.1528,0.2108,0.5744,0.8724,0.679,-0.581,-0.0838,-0.0202,0.1764,-0.0636,-0.289,-0.5116,-0.4972,-0.4942,-0.5636,-0.3092,-0.3816,-0.2254,-0.1156,-0.029,-0.055,-0.052,0.263,0.5492,0.8092,0.818,1,0.9018,0.971,0.6156,0.4162,0.2514,0.156,0.2602,0.2948,0.3988,0.5896,-0.6,-0.1518,0.078,0.2368,-0.0836,-0.4978,-0.6426,-0.7134,-0.5546,-0.4808,-0.3788,-0.339,-0.3248,-0.1178,-0.1914,-0.1744,-0.0752,0.0554,0.4922,0.5744,0.9348,0.9262,0.9574,0.895,1,0.739,0.4042,0.4156,0.3446,0.4382,0.4156,0.5148,-0.5536,-0.1804,0.2814,0.3394,-0.3028,-0.5596,-0.6024,-0.6146,-0.633,-0.581,-0.5046,-0.4434,-0.416,-0.3792,-0.4374,-0.3762,-0.1896,-0.0948,0.0948,0.4404,0.7614,1,0.9328,0.8868,0.7584,0.6484,0.3212,0.2538,0.1988,0.2508,0.2936,0.3456,-0.51,-0.0436,0.4496,0.3422,-0.6342,-0.6946,-0.8926,-0.859,-0.7652,-0.6208,-0.5504,-0.5336,-0.614,-0.6006,-0.6174,-0.5806,-0.5268,-0.3624,-0.0906,0.2316,0.4966,0.7718,0.9732,1,0.7818,0.4464,0.1174,0.2014,0.094,-0.1276,-0.0504,0.0974,-0.6256,0.0676,0.331,0.071,-0.6464,-0.785,-0.7296,-0.8128,-0.851,-0.9376,-0.8752,-0.8856,-0.6742,-0.539,-0.6672,-0.6464,-0.5702,-0.3068,-0.0954,0.241,0.5632,1,0.955,0.8822,0.8302,0.5148,0.2132,0.0364,-0.033,-0.1092,-0.0954,0.0018,-0.6638,-0.0874,0.096,-0.2446,-0.7904,-0.8778,-0.6682,-0.6158,-0.524,-0.6594,-0.5808,-0.5152,-0.3712,-0.4062,-0.6944,-0.559,-0.441,-0.5634,-0.3232,-0.0306,0.4324,0.9344,1,0.7992,0.8908,0.7336,0.096,-0.1004,-0.4192,-0.358,-0.3362,-0.428,-0.4358,0.1282,0.1282,0.3846,0.1282,-0.1282,-0.5384,-0.4872,-0.5384,-0.5384,-0.282,-0.282,-0.3334,-0.282,-0.3846,-0.3334,-0.1794,0.4358,0.5898,0.1794,0.4358,0.7948,0.7948,0.6924,0.4358,0.4872,0.3334,0.1282,0.2308,0.9488,1,0.282,-0.238,0.2858,0.1428,0.4762,0.238,-0.0952,-0.1904,-0.2858,-0.238,-0.2858,-0.1904,-0.1428,-0.238,-0.4762,-0.238,0,-0.0952,-0.1428,0.4762,0.5714,0.619,0.6666,1,1,0.4286,0.0952,0.2858,0.238,0.5238,0.4286,0.6666,0.4762,-0.6842,-0.2632,-0.2,0.0316,-0.179,-0.4526,-0.579,-0.6,-0.7474,-0.6842,-0.5368,-0.3052,-0.221,-0.179,-0.1158,-0.1158,-0.0948,0.0736,0.4316,0.621,0.7684,0.9158,0.9578,1,0.5578,0.5158,0.2632,0.2,0.179,0.2842,0.3684,0.6632,-0.9024,-0.7994,-0.7686,-0.712,-0.6966,-0.7326,-0.8406,-0.9024,-0.8354,-0.8508,-0.2596,0.4448,0.5476,0.383,0.3574,0.5372,0.7172,0.8304,0.8406,0.7224,0.1414,-0.4242,-0.7326,-0.743,-0.7994,-0.8252,-0.8458,-1,-1,-1,-1,-1,-1,-0.9348,-0.9156,-0.8948,-0.8816,-0.5588,-0.704,-0.1888,0.5056,0.9616,0.1236,-0.2362,-0.248,-0.0778,0.7232,0.9438,0.8164,0.513,0.2436,-0.02,-0.0082,-0.3872,-0.6788,-0.8254,-0.8164,-0.8268,-0.8032,-0.7986,-1,-1,-1,-1,-1,-1,-0.9668,-0.78,-0.7734,-0.7168,-0.5168,-0.3668,0.4,0.5966,0.5832,0.59,0.2366,-0.4668,-0.3312,0,0.0332,-0.1356,-0.238,-0.596,-0.778,-0.67,-0.69,-0.662,-0.8534,-0.6468,-0.6468,-0.5334,-0.5334,-1,-1,-1,-1,-1,-1,-0.8858,-0.9142,-1,-0.2,0.5428,1,1,0.8572,-0.6,0.4858,1,1,-0.2,-0.2,-0.7142,-0.7714,-0.8858,-0.7142,-0.8286,-0.6858,0.3428,-0.5714,-1,-0.9428,-0.8572,-0.8286,-0.5714,-1,-1,-1,-1,-1,-1,0.192,0.1854,0.1882,0.1862,0.18,0.1918,0.2216,0.2182,0.1522,-0.064,0.4412,0.4494,0.3794,0.3708,0.374,0.3878,0.4476,0.5744,0.703,0.7944,-0.6,0.1176,-0.171,-0.0584,-0.2584,-0.328,-0.2316,0.2084,-0.092,-0.092,-0.1294,0.0094,-0.0018,0.0282,0.2196,0.1858,0.4108,0.501,0.5834,0.8986,1,0.925,0.8536,0.6022,0.621,0.4596,0.3622,0.3696,0.3996,0.3734,0.3358,0.3772,0.3734,0.2908,0.3246,0.2496,0.1708,-0.0432,0.0506,-0.4522,-0.7904,-0.7592,-0.595,-0.5666,-0.5666,-0.5156,-0.4362,-0.2322,0.136,0.2692,0.4278,0.6516,0.5808,0.8726,1,0.8754,0.6798,0.5864,0.6148,0.5836,0.5694,0.6118,0.6062,0.6034,0.459,0.541,0.7338,0.51,0.374,0.3712,-0.0084,-0.3654,-0.5184,-0.3496,-0.4202,-0.3896,-0.4448,-0.2638,-0.3006,-0.178,0.1902,0.5644,0.5338,0.868,0.8588,0.7086,0.9264,1,0.727,0.8374,0.7884,0.6596,0.6994,0.5582,0.5092,0.4356,0.6288,0.638,0.6656,0.546,0.3866,0.2914,0.0368,-0.2424,0.0748,-1,-1,1,-0.6,-1,-0.8,0.3666,-1,-0.2786,-0.2622,-0.1312,-0.164,-0.0656,0.0164,0.2132,0.1968,0.3442,0.836,0.9344,0.8852,1,0.6558,0.0492,0.1968,0.295,0.5082,0.3114,0.4426,0.623,0.6394,0.5246,0.3442,0.0164,-0.2296,-0.1148,0.082,-0.2622,-0.3606,-0.1804,-0.2622,'7'
-0.5108,0.0398,0.1284,0.312,-0.0398,-0.263,-0.6086,-0.6208,-0.6178,-0.523,-0.3364,-0.4404,-0.3242,-0.373,-0.3028,-0.2844,-0.3456,0.1866,0.4832,0.6942,0.6942,0.7432,0.9082,1,0.6698,0.2416,0.2386,0.2386,0.3914,0.3058,0.2386,0.3578,-0.4828,0.0948,0.0016,0.23,-0.0046,-0.23,-0.6782,-0.7022,-0.7172,-0.6842,-0.2692,-0.3984,-0.2512,-0.3474,-0.194,-0.4136,-0.3624,0.176,0.188,0.6902,0.588,0.9338,0.8226,1,0.6872,0.2842,-0.0196,-0.0676,0.0346,-0.0106,-0.0796,0.0918,-0.5532,-0.0088,-0.0532,0.1598,-0.1214,-0.423,-0.71,-0.8106,-0.6804,-0.6538,-0.4142,-0.574,-0.4556,-0.4172,-0.355,-0.4882,-0.4704,-0.071,0.0384,0.3076,0.6598,0.8344,0.9468,1,0.719,0.7308,0.145,-0.0148,0.0326,-0.216,-0.287,-0.0622,-0.5026,0.033,0.3392,0.4782,-0.0818,-0.4574,-0.6592,-0.687,-0.6766,-0.5896,-0.6174,-0.454,-0.5826,-0.5026,-0.4956,-0.5618,-0.294,-0.3252,-0.2034,-0.134,0.3426,0.7704,1,0.9548,0.6486,0.5374,0.2592,0.0052,-0.0852,-0.2382,-0.0818,-0.1026,-0.5042,-0.1448,0.381,0.391,-0.3976,-0.5774,-0.857,-0.7204,-0.6938,-0.8302,-0.5608,-0.5174,-0.604,-0.5074,-0.5274,-0.6406,-0.5342,-0.5142,-0.361,0.0216,0.3278,0.6938,1,0.9102,0.9134,0.8936,0.6972,0.5574,0.2812,0.1448,0.0184,0.0982,-0.586,-0.2606,0.4086,0.316,-0.745,-0.8522,-0.7708,-0.7598,-0.7782,-0.8854,-0.719,-0.5526,-0.597,-0.6044,-0.6598,-0.6524,-0.6562,-0.6082,-0.4012,-0.1978,0.1054,0.4492,0.926,1,0.8448,0.915,0.7116,0.3642,0.0278,-0.013,-0.0314,-0.0388,-0.4094,0.3648,0.3846,0.474,-0.4144,-0.7568,-0.206,-0.1414,-0.3498,-0.5286,-0.4492,-0.4144,-0.211,-0.5136,-0.3152,-0.2952,-0.0472,-0.2308,-0.5136,-0.3152,-0.3896,0.4044,0.9504,1,0.8462,0.9852,0.856,-0.0968,-0.1762,-0.4194,-0.206,-0.3002,-0.5238,-0.0952,0.0952,0.1904,-0.1428,-0.3334,-0.5714,-0.5238,-0.762,-0.5238,-0.6666,-0.6666,-0.619,-0.3334,-0.1904,-0.1904,-0.2858,0.3334,0.5714,0.4762,0.6666,0.238,0.8096,1,0.8572,0.4286,-0.0476,0.1904,0.381,0,0.238,0.4762,-0.4418,-0.0232,0.0698,0.3024,0.0232,-0.3488,-0.4418,-0.4884,-0.6744,-0.3488,-0.3024,-0.3954,-0.3954,-0.3488,-0.4884,-0.3024,-0.1628,0.0698,0.628,0.6744,0.814,0.7674,0.907,0.9534,1,0.628,0.2094,0.3024,0.4418,0.4884,0.2558,-0.1628,-0.573,-0.1012,-0.146,0.0786,-0.1686,-0.5506,-0.6854,-0.6854,-0.618,-0.6404,-0.3932,-0.5506,-0.4832,-0.528,-0.5056,-0.5956,-0.4832,-0.1236,-0.0562,0.146,0.573,0.7304,0.955,1,0.8652,0.8202,0.0338,0.0112,0.0562,-0.1236,-0.3034,-0.1686,-0.814,-0.5016,-0.2492,-0.422,-0.588,-0.6944,-0.8206,-0.8604,-0.8538,-0.8804,-0.1562,0.7408,0.9668,0.7542,0.5614,0.588,0.7276,0.628,0.5614,0.3888,0.1428,-0.382,-0.6014,-0.721,-0.7542,-0.8206,-1,-1,-1,-1,-1,-1,-1,-0.8612,-0.711,-0.5978,-0.694,-0.0254,0.5468,0.7338,1,1,0.7818,0.9746,0.6034,0.544,0.6884,0.7338,0.8216,0.3002,0.2606,0.6516,0.2862,-0.238,-0.6034,-0.6968,-0.7478,-0.745,-0.7678,-1,-1,-1,-1,-1,-1,-1,-0.9134,-0.8368,-0.7668,-0.8068,-0.59,0.4932,0.7066,0.5632,0.55,0.5966,0.26,-0.216,-0.392,-0.374,-0.182,-0.19,-0.658,-0.52,-0.37,-0.3492,-0.6638,-0.8164,-0.7668,-0.6068,-0.6,-0.5068,-1,-1,-1,-1,-1,-1,-1,-0.7714,-0.7142,-1,0.4572,1,1,-0.2572,-0.9428,-0.9428,-0.2,1,1,-0.8286,-0.8858,-0.8286,-0.6858,-0.8286,-0.9714,-1,-0.6286,-0.4286,-0.8858,-0.8,-0.9714,-0.9714,-0.8286,-1,-1,-1,-1,-1,-1,-1,0.044,0.0434,0.0294,0.0378,0.0342,0.0196,0.0084,-0.0182,-0.0534,-0.1118,0.6378,0.6426,0.6176,0.617,0.617,0.604,0.6026,0.6704,0.751,0.8498,-0.6534,0.2118,1,0.6968,0.6516,0.66,0.6062,-0.325,-0.5758,-0.5824,-0.4454,-0.4748,-0.429,-0.279,-0.1844,-0.1452,-0.044,0.1354,0.3638,0.4454,0.5204,0.5792,0.8924,1,0.8988,0.7978,0.6248,0.491,0.4942,0.5562,0.4616,0.279,0.2496,0.354,0.5106,0.4324,0.3704,0.1126,-0.0832,-0.4942,-0.6524,-0.6818,-0.514,-0.514,-0.5052,-0.299,-0.19,-0.2136,-0.0868,0.2106,0.2578,0.3196,0.5316,0.673,0.9176,1,0.8998,0.7466,0.7202,0.62,0.5906,0.6288,0.511,0.3844,0.461,0.4522,0.573,0.5022,0.5346,0.3784,0.1546,-0.0958,-0.6298,-0.3164,-0.3164,-0.4304,-0.4684,-0.3164,-0.25,-0.1234,0.2026,0.5254,0.4746,0.6614,0.7532,0.6424,0.8006,1,0.9178,0.6836,0.7406,0.576,0.5474,0.6614,0.367,0.3734,0.3924,0.3798,0.4716,0.3482,0.4968,0.2436,0.1772,0.0316,1,-1,-1,1,-1,-0.8,-0.8,0.3,-1,-0.4368,-0.4368,-0.165,0.0874,-0.0098,-0.1068,0.0874,0.2816,0.165,0.4174,0.7864,0.8058,0.9418,1,0.4564,0.4174,0.5728,0.7088,0.8058,0.7864,0.5534,0.4952,0.3592,-0.0098,0.2622,-0.2428,0.1456,0.2816,0.2038,-0.165,-0.1456,-0.2622,'7'
-0.8028,-0.426,0.0086,0.0724,0.0144,-0.113,-0.1072,-0.2812,-0.3856,-0.3624,-0.3044,-0.3798,-0.2522,-0.1478,-0.1478,-0.1536,0.0086,0.3102,0.345,0.5536,0.9246,1,0.7218,0.745,0.8666,0.7566,0.5304,0.5826,0.5014,0.2348,0.4492,0.3682,-0.672,-0.3764,0.3548,0.387,0.258,0.0752,0.0914,-0.1612,-0.2634,-0.242,-0.0914,-0.1182,-0.1882,-0.0484,-0.0268,-0.1452,0.113,0.199,0.3334,0.6236,0.7688,0.9784,1,0.7258,0.9032,0.9086,0.4248,0.3764,0.3924,0.199,0.1344,0.0968,-0.608,-0.216,0.5056,0.517,0.1534,-0.034,-0.0284,-0.2614,-0.4262,-0.4318,-0.1762,-0.3068,-0.267,-0.1818,-0.2386,-0.233,0.0512,0.0454,-0.1306,0.4772,0.5114,0.784,0.8694,0.966,1,0.892,0.2444,0.4772,0.4546,0.0228,0.0228,0.0114,-0.5936,-0.0666,0.6444,0.6064,-0.1682,-0.1112,-0.1492,-0.4286,-0.4032,-0.4604,-0.4032,-0.2064,-0.2254,-0.5112,-0.435,-0.327,-0.1174,-0.2698,-0.0222,0.2888,0.4096,0.7396,1,0.8158,0.727,0.8794,0.708,0.4604,0.2508,0.1936,0.2,-0.0858,-0.5244,0.128,0.7988,0.689,-0.183,-0.2256,-0.3292,-0.4086,-0.5488,-0.4574,-0.4452,-0.3476,-0.2622,-0.3232,-0.506,-0.4208,-0.2988,-0.317,-0.0426,0.25,0.4086,0.744,0.9024,1,0.9878,0.8048,0.5732,0.3292,0.183,-0.1342,-0.006,-0.1036,-0.7134,-0.0414,0.2728,0.0634,-0.4546,-0.5372,-0.7742,-0.675,-0.8292,-0.8898,-0.7576,-0.6584,-0.4326,-0.4546,-0.5426,-0.5482,-0.427,-0.3608,-0.146,0.1074,0.3278,0.7246,0.9504,0.989,1,0.6474,0.3664,0.124,0.1404,-0.0192,-0.0854,-0.1294,-0.8608,-0.3044,-0.0522,-0.174,-0.6348,-0.7566,-0.2522,-0.1914,-0.6348,-0.713,-0.713,-0.3304,-0.3652,-0.3392,-0.4086,-0.3826,-0.3914,-0.5914,-0.5478,-0.3566,-0.174,0.2086,0.887,1,0.574,0.3044,-0.1392,-0.4956,-0.5392,-0.4434,-0.5218,-0.513,-0.8462,-0.282,-0.1794,-0.077,-0.1282,-0.282,-0.1282,-0.3334,-0.5384,-0.4872,-0.1794,-0.2308,-0.282,-0.0256,-0.0256,-0.282,0.1794,0.4358,0.5384,0.7948,1,1,1,1,1,0.8974,0.7436,0.641,0.5898,0.4872,0.4872,0.4872,-0.721,-0.3488,0.0698,0.1628,0.3488,0.0232,-0.1628,-0.3954,-0.3954,-0.3488,-0.4418,-0.4418,-0.2094,-0.3024,-0.3954,-0.0232,-0.0232,0.2094,0.3954,0.5348,1,0.9534,0.814,0.7674,0.6744,0.6744,0.5348,0.4418,0.1628,0.2094,0.3954,-0.0232,-0.6404,-0.3708,0.4158,0.4382,0.2808,0.1236,0.1236,-0.1686,-0.2584,-0.191,-0.1236,-0.146,-0.191,-0.0786,-0.0562,-0.191,0.0338,0.0786,0.3484,0.528,0.6404,1,0.9776,0.528,0.955,0.9326,0.4606,0.3708,0.2134,0.1236,0.0562,-0.146,-1,-1,-1,-1,-1,-1,-1,-0.8786,-0.8966,-0.7618,-0.7662,0.218,0.5326,0.8292,0.8966,0.9416,0.9686,0.9416,0.7484,0.236,-0.0158,-0.8248,-0.8516,-0.8382,-0.8742,-0.8786,-0.8742,-0.8876,-0.8966,-0.9012,-0.8606,-0.8786,-0.8966,-1,-1,-1,-1,-1,-1,-1,-0.9708,-0.9714,-0.7848,-0.8996,-0.3926,0.9132,-0.3148,-0.4444,-0.4516,-0.5002,-0.5824,-0.6078,-0.5696,-0.5688,-0.9534,-0.9612,-0.9618,-0.9612,-0.9644,-0.8502,-0.7602,-0.7718,-0.6292,-0.471,-0.4438,-0.3614,-1,-1,-1,-1,-1,-1,-1,-0.9568,-0.9234,-0.8234,-0.8034,-0.52,-0.128,-0.336,-0.384,-0.5,-0.608,-0.716,-0.67,-0.39,-0.5534,-0.6668,-0.8534,-0.84,-0.8868,-0.9068,-0.8068,0.1232,0.3266,0.4532,0.5232,0.5666,0.5566,-1,-1,-1,-1,-1,-1,-1,-0.7428,0.1142,0.8572,1,1,1,0.2572,-0.5428,-0.8286,-0.8286,-0.8286,-0.7714,-0.4286,1,1,-0.9142,-0.9428,-1,-0.4572,1,1,0.4,0.1428,-0.5428,-0.8286,-0.5142,0.9784,0.9608,0.9626,0.9604,0.9556,0.9606,0.9596,0.9224,0.781,0.5194,0.701,0.702,0.7566,0.7888,0.8256,0.833,0.83,0.912,0.9,0.8198,-0.5334,-0.4236,-0.9534,-0.6928,-0.283,1,0.46,1,-0.5726,-0.023,0.1756,0.0534,-0.1908,-0.2672,0.023,0.1756,0.2366,0.8168,1,0.9236,0.939,0.71,0.6794,0.5268,0.6946,0.6336,0.6642,0.6794,0.3894,0.2672,-0.0688,0.0534,0.3436,0.2978,-0.1298,-0.1908,-0.3588,-0.1908,0.0534,-0.2366,-0.1428,0.375,0.6964,0.0536,0.125,0.0178,0.125,0.125,0.3214,0.4822,1,0.625,0.5536,0.4642,0.4464,-0.0178,0.5,0.3392,0.4286,0.3392,0.3214,0.25,-0.3572,0.1608,0.4286,0.3572,-0.0714,-0.1428,-0.1964,0.0536,0.375,0.1786,-0.18,0,0.22,0.34,0.48,-0.06,0.34,0.72,0.58,0.46,0.72,0.54,0.52,0.76,0.48,0.4,0.54,0.54,0.42,1,0.9,0.52,0.22,0.32,0.74,0.54,0.46,-0.14,0.06,0.12,-0.04,-0.3,-0.2636,-1,-1,1,-1,-1,-1,-0.6666,1,-0.6516,-0.7192,-0.6068,-0.3708,-0.4158,-0.2808,-0.236,-0.0562,0.191,0.5618,0.4606,0.6404,0.472,0.618,0.9102,1,0.7978,0.7192,0.6742,0.6516,0.7978,0.7752,0.663,0.3146,0.6292,0.5394,0.7752,0.7866,0.6854,0.663,0.1124,-0.0112,'8'
-0.8814,-0.3164,0.452,0.644,0.4406,0.0508,-0.0904,-0.0904,-0.3276,-0.3786,-0.4068,-0.452,-0.2994,-0.192,-0.2316,-0.2146,-0.0452,0.1694,0.3954,0.7796,0.9888,1,0.6724,0.9944,0.9436,0.6892,0.5706,0.6498,0.5594,0.3898,0.305,0.3786,-0.6376,-0.2886,0.481,0.5346,0.114,0.0156,-0.0426,-0.0962,-0.1276,-0.3064,-0.1498,-0.0962,-0.1634,-0.2572,-0.132,0.056,0.047,0.1544,0.4004,0.5078,1,0.991,0.6868,0.669,0.7316,0.5704,0.4766,0.311,0.2214,0.1498,0.208,0.2572,-0.5894,-0.1218,0.6516,0.6946,0.0406,-0.117,-0.1456,-0.117,-0.1456,-0.3556,-0.1934,-0.136,-0.1934,-0.2554,-0.1312,0.0262,0.0262,0.1456,0.389,0.475,0.8378,0.833,1,0.809,0.8712,0.4034,0.4224,0.4988,0.346,0.2268,0.3078,0.2554,-0.5594,-0.109,0.724,0.7628,0.0654,-0.3656,-0.3414,-0.1526,-0.2154,-0.414,-0.264,-0.23,-0.3076,-0.3462,-0.2348,-0.1284,-0.1428,-0.0122,0.2736,0.3318,0.4916,0.816,1,0.9662,0.9564,0.8596,0.7966,0.8014,0.5544,0.3996,0.3802,0.293,-0.6406,-0.0784,0.4746,0.4378,-0.2904,-0.5714,-0.553,-0.5162,-0.6082,-0.613,-0.5024,-0.3594,-0.3824,-0.424,-0.4286,-0.4194,-0.2764,-0.2626,-0.0876,0.129,0.3318,0.4378,0.7328,0.9862,1,0.977,0.7834,0.53,0.3824,0.3226,0.2258,0.0922,-0.796,-0.1094,0.1542,-0.0598,-0.3034,-0.7064,-0.6916,-0.6368,-0.612,-0.6866,-0.7164,-0.582,-0.5174,-0.4726,-0.4528,-0.4776,-0.3532,-0.388,-0.2538,0,0.1742,0.4278,0.791,0.9452,1,0.9054,0.8258,0.4478,0.3334,0.1442,0.184,0.2238,-0.9076,-0.4584,0.077,0.077,-0.8276,-0.963,-0.7292,-0.6676,-0.6,-0.643,-0.643,-0.5262,-0.5816,-0.6924,-0.4462,-0.4462,-0.397,-0.28,-0.3846,-0.4092,0.157,0.4276,0.5876,0.84,1,0.9324,0.5138,0.04,-0.0276,-0.12,-0.0092,-0.1076,-0.4194,-0.0322,0.4516,0.7096,0.6452,0.258,0.129,0.258,0.129,0.1612,-0.129,-0.3226,0.0968,0.129,0,0.0322,0.258,0.258,0.3548,0.8388,1,0.9032,0.4838,0.9678,0.9678,0.4516,0.5806,0.8064,0.6774,0.5806,0.6774,0.742,-0.9024,-0.1708,0.6098,0.8048,0.6586,0.122,0.0244,-0.0244,-0.3658,-0.4146,-0.5122,-0.4634,-0.2196,-0.122,-0.122,-0.0732,0.0244,0.1708,0.317,0.756,0.8048,0.6586,0.8536,1,0.4634,0.317,0.561,0.6098,0.317,-0.0732,0.2196,0.0732,-0.7142,-0.1048,0.238,0.1048,-0.3714,-0.581,-0.6572,-0.5428,-0.4858,-0.6,-0.4858,-0.3524,-0.2762,-0.581,-0.2572,-0.3142,-0.2762,-0.3714,-0.0858,0.1048,0.219,0.3904,0.7714,0.8666,1,0.8286,0.7524,0.562,0.3524,0.181,0.3714,0.4286,-1,-1,-1,-1,-1,-1,-0.963,-0.9676,-0.933,-0.9562,-0.6282,0.0092,0.1594,0.5474,0.8314,0.9746,0.9722,0.7506,0.2864,-0.3302,-0.605,-0.8222,-0.9354,-0.9284,-0.9308,-0.9422,-0.9584,-0.9584,-0.9422,-0.963,-0.9608,-0.963,-0.9538,-1,-1,-1,-1,-1,-1,-0.9548,-0.9582,-0.7704,-0.9466,-0.4308,0.0308,0.4886,0.804,0.7102,0.935,0.8214,0.7136,0.6498,0.3172,-0.3658,-0.7716,-0.913,-0.9282,-0.9362,-0.9456,-0.9502,-0.9514,-0.2186,-0.506,-0.1768,0.5838,0.5084,-1,-1,-1,-1,-1,-1,-0.8934,-0.9868,-0.7534,-0.9534,-0.5668,-0.488,-0.368,-0.23,-0.5868,-0.47,-0.5334,-0.4934,-0.07,-0.03,-0.3734,-0.4534,-0.8,-0.84,-0.86,-0.9268,-0.9468,-0.9068,-0.15,0.5232,0.58,0.6066,0.78,-1,-1,-1,-1,-1,-1,-0.8,-0.3142,-0.2,0.2572,1,1,0.4858,-0.6572,-0.8286,-0.7428,-0.6858,-0.8,-0.6,1,1,0.1428,-0.0858,-0.6858,-0.7428,-0.8572,-0.9428,1,1,1,0.3428,-0.3142,-0.8,0.882,0.8858,0.884,0.8896,0.8712,0.8588,0.833,0.78,0.6632,0.353,0.819,0.8318,0.868,0.9292,0.9084,0.9252,0.9366,0.8936,0.9698,1,-0.6,-0.3648,-0.2986,-0.004,0.0342,0.353,0.7728,1,-0.0878,0.1578,0.1228,-0.0526,-0.0176,0.2982,0.2982,0.0878,0.5438,0.8596,1,1,0.7544,0.6492,0.7894,0.7894,0.7894,0.4736,0.6842,0.7544,0.5438,0.2982,0.0176,-0.1228,0.1578,0.193,0.0878,-0.1578,-0.3684,0.0526,0.0176,-0.2982,-0.181,0.5048,0.5238,0.181,0.0096,-0.0286,0.0666,0.219,0.1048,0.7904,0.962,1,0.9428,0.6,0.8096,0.581,0.8286,0.7714,0.8286,0.8666,0.3524,0.2,-0.0476,-0.1428,-0.1428,-0.1048,0.0666,-0.219,-0.3904,-0.0476,-0.0476,-0.219,-0.398,0.4564,0.6504,0.068,-0.0098,-0.2234,-0.0486,-0.0098,0.165,0.7282,1,0.903,0.9612,0.767,0.7282,0.4758,0.767,0.864,0.767,0.6504,0.4952,-0.0098,-0.068,-0.2038,-0.4368,-0.165,-0.1262,-0.2038,-0.2622,-0.2428,-0.2038,-0.3204,0.0064,-1,-1,1,-1,-1,-1,-0.8334,1,-0.6782,-0.7932,-0.5632,-0.3448,-0.3334,-0.4138,-0.2414,-0.161,0.0574,0.5058,0.2874,0.4252,0.5748,0.6436,0.7126,1,0.954,0.7816,0.8276,0.839,0.8046,0.931,0.6322,0.6436,0.6206,0.5978,0.7702,0.7356,0.6206,0.8736,0.3334,-0.2184,'8'
-0.7426,-0.4386,-0.0878,-0.062,0.235,0.5416,0.6024,0.841,0.8362,0.8644,1,0.904,0.4854,0.2912,0.1696,-0.0246,-0.0644,-0.0152,-0.041,-0.0246,-0.0012,0.1578,0.2584,0.5018,0.5346,0.2888,0.0596,0.0526,0.0176,-0.041,-0.0176,0.027,-0.6902,-0.3686,-0.0324,0.0132,0.3326,0.6326,0.7214,0.9928,0.8872,0.9592,1,0.988,0.4982,0.2582,0.2918,-0.042,-0.251,-0.1572,-0.1284,-0.0996,0.0132,0.0252,0.0876,0.4022,0.5078,0.3374,-0.0612,-0.0972,-0.114,-0.3254,-0.0852,-0.1428,-0.685,-0.3842,-0.0812,-0.074,0.1098,0.5466,0.5824,0.8258,0.735,0.8138,1,0.8926,0.7304,0.4058,0.346,0.0596,-0.0596,-0.062,0.012,0.0358,0.0836,0.2362,0.3054,0.3986,0.506,0.4416,0.0526,0.0358,0.0214,-0.0692,-0.1528,-0.1122,-0.677,-0.4352,-0.122,-0.1344,0.1616,0.5782,0.6818,0.8052,1,0.825,0.7386,0.9186,0.9062,0.9136,0.778,0.45,0.3588,0.3242,0.3662,0.3514,0.4574,0.5512,0.7312,0.7262,0.5536,0.2922,0.1048,0.0678,0.0728,0.0432,0.085,0.0702,-0.763,-0.4252,-0.2238,-0.1408,0.3214,0.7718,0.8934,0.8904,0.4608,0.2,0.1526,0.3274,0.3392,0.5586,0.7896,0.843,0.9348,0.9734,0.7838,0.7066,0.843,0.8192,1,0.8726,0.7096,0.3008,0.12,0.0844,-0.034,-0.0518,0.0014,-0.0134,-0.7818,-0.4328,-0.2472,0.0218,0.6182,0.88,0.6654,0.0036,-0.1854,-0.451,-0.0582,-0.1164,-0.0582,-0.0472,0.0654,0.0328,0.3418,0.629,0.9854,0.909,0.789,0.9054,0.9018,0.9382,1,0.629,0.2618,0.0946,-0.131,-0.2182,-0.1418,-0.1236,-0.9036,-0.4458,-0.3734,-0.1486,0.1848,0.1606,-0.514,-0.6024,-0.6746,-0.7752,-0.5462,-0.3734,-0.4016,-0.3334,-0.6104,-0.5622,-0.2248,-0.0482,0.265,0.751,0.8434,0.8354,1,0.8996,0.8274,0.5784,-0.0884,-0.0682,0.012,-0.4056,-0.3614,-0.3334,-0.7714,-0.4286,0.0286,-0.0858,0.0286,0.0286,0.0858,0.5428,0.7714,0.8858,1,0.4858,0.2,0.1428,0.0286,0.0286,-0.3142,-0.2572,0.0858,0.1428,0.3142,0.3142,0.4286,0.8858,0.8858,0.3714,0.0858,0.1428,0.0286,0.2572,0.2,0.0858,-0.7254,-0.4902,-0.1372,-0.0196,0.2942,0.451,0.5686,0.7648,0.804,0.9608,1,0.7648,0.4902,0.451,0.3334,0.1764,0.1372,0.2156,0.2156,0.1764,0.3726,0.4118,0.4902,0.647,0.7254,0.647,0.451,0.255,0.3334,0.2942,0.3334,0.4118,-0.8442,-0.5324,-0.5064,-0.2728,0.2468,0.6624,0.7662,0.4546,-0.1428,-0.1688,-0.4286,-0.3246,-0.091,-0.091,0.1688,0.3246,0.6884,1,0.8702,0.5064,0.5324,0.5324,0.8702,0.8962,0.6104,0.039,0.065,-0.1168,-0.1688,-0.1428,-0.1428,-0.2988,-1,-1,-1,-1,-1,-1,-1,-1,-0.872,-0.8536,-0.8536,0.628,0.878,0.7622,0.5548,0.3232,0.311,0.061,-0.061,-0.2804,-0.4818,-0.6646,-0.8598,-0.8354,-0.8842,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9692,-0.9664,-0.8202,0.516,0.3524,0.2384,0.1188,-0.0602,0.1328,-0.1972,-0.4882,-0.7546,-0.8672,-0.8952,-0.9336,-0.9384,-0.9574,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9134,-0.92,-0.74,-0.4718,-0.5568,-0.5268,-0.4984,-0.49,-0.5018,-0.4632,-0.6036,-0.7184,-0.6876,-0.6508,-0.6322,-0.719,-0.7322,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,0.7714,1,1,-0.5428,-0.9428,-0.9428,-0.9142,-0.4858,-0.5428,-0.3428,-0.7142,-0.7142,-0.7142,-0.8858,-0.9428,-0.4286,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.142,-0.2,-0.2382,-0.2906,-0.2908,-0.3244,-0.3636,-0.3826,-0.5158,-0.2944,-0.5066,0.4942,-0.8014,-0.3762,0.551,1,0.5406,1,-0.3888,-0.5,-0.3888,-0.1666,-0.1112,0,0.0556,-0.0556,0.2222,0.3888,0.3888,0.4444,0.8888,1,0.8888,0.6112,0.6666,0.6666,0.8334,0.7778,0.6112,0.2222,0.3334,0.5,0.7222,0.5,0.5556,0.5556,0.1112,0.2778,0.2778,-0.4444,-0.5806,-0.4194,-0.3226,-0.3226,0.0646,0.1612,0.0968,-0.1612,0.0646,0.3548,0.258,0.3226,1,0.8388,0.8388,0.7096,0.613,0.7742,0.8064,0.8064,0.387,0.2904,0.2258,0.5806,0.8388,0.7742,0.3548,0.4194,0.4194,0.1612,-0.129,-0.3548,-0.2858,-0.1836,0.2244,0.5714,0.8164,0.9796,0.7552,0.3266,0.1632,0.3266,0.5306,0.7142,0.898,0.551,0.4694,0.5102,0.7552,1,0.9184,0.8572,0.9184,0.8776,0.8164,0.4286,0.2858,0.2244,0.0612,-0.0612,-0.1224,-0.0612,-0.204,-0.4082,0.4364,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.3782,-0.042,0.126,0.0588,0.1092,0.0084,0.126,-0.042,0.1092,0.7142,0.7478,0.8656,1,0.3446,0.0756,0.0252,0.1596,0.1932,-0.0084,0.0924,-0.126,-0.0924,-0.0588,-0.0924,-0.1596,-0.042,-0.0084,-0.2268,-0.2268,-0.1596,-0.4622,-0.563,'9'
-0.7396,-0.4792,-0.0374,-0.0394,0.2572,0.6948,0.8036,0.9722,0.874,0.9252,1,0.8144,0.5048,0.2102,0.095,0.0544,0.1036,0.0694,0.016,0.142,0.2572,0.366,0.475,0.6008,0.6244,0.4514,0.2594,0.1932,0.2338,0.159,0.3256,0.3768,-0.7128,-0.4116,-0.014,0.0282,0.3012,0.6244,0.7228,1,0.9538,0.988,0.8796,0.8976,0.4338,0.2872,0.2812,0.2048,0.1426,0.1626,0.0924,0.1486,0.3714,0.2932,0.4076,0.5442,0.512,0.3112,0.0764,0,0.0864,0.1366,0.2248,0.1808,-0.6884,-0.4182,-0.0316,-0.0374,0.1322,0.5622,0.568,0.8324,0.789,0.8186,1,0.9132,0.645,0.3906,0.3254,0.2466,0.1696,0.1874,0.2328,0.3234,0.434,0.5424,0.566,0.5266,0.3334,0.146,-0.0276,0.006,0.004,-0.0138,0.1676,0.2702,-0.635,-0.424,-0.0042,-0.0632,0.3292,0.6562,0.867,0.8924,0.8924,0.806,0.8714,1,0.9556,0.8818,0.7384,0.481,0.3924,0.3902,0.3734,0.4684,0.654,0.7026,0.557,0.3016,0.1624,0.0022,-0.1794,-0.2026,-0.1836,-0.2172,-0.1266,-0.078,-0.6618,-0.2806,-0.1088,-0.1088,0.5516,0.812,0.914,0.8174,0.6,0.3476,0.5248,0.5382,0.6484,0.8578,0.8068,0.9544,0.9598,0.9758,0.8282,0.812,0.8604,0.9302,1,0.761,0.5168,0.3798,0.1436,0.1974,0.1006,0.0524,0.1786,0.0578,-0.6702,-0.3192,-0.095,0.066,0.4432,0.5304,0.4696,0.0238,-0.2322,-0.256,-0.0712,-0.0924,-0.1134,0.103,0.1292,0.2374,0.5146,0.752,0.9604,0.971,0.8312,0.8258,0.868,1,0.9446,0.6254,0.351,0.227,0.132,0.0818,0.1504,0.1504,-0.5204,-0.1768,0.0646,0.4762,0.6496,0.3436,0.1224,-0.6972,-0.6632,-0.5374,-0.4354,-0.2518,-0.3878,-0.4898,-0.4626,-0.3266,-0.1598,0.2518,0.653,0.9728,1,0.8878,0.9354,0.9218,0.915,0.6224,0.1428,0.0408,-0.0578,-0.1666,0.2108,0.1904,-0.7674,-0.5348,-0.1162,-0.1162,0.2094,0.628,0.8604,0.8604,0.814,0.907,1,0.814,0.3024,-0.3954,-0.3954,-0.3024,-0.3024,-0.4418,-0.1162,-0.2094,-0.2094,-0.1162,0.5348,0.628,0.4418,-0.0232,-0.1162,-0.1162,0.1162,-0.1628,-0.2094,0.0698,-0.8,-0.4,-0.05,0.05,0.2,0.55,1,0.95,0.65,0.95,0.75,0.65,-0.05,-0.1,-0.1,-0.2,-0.15,-0.1,-0.2,-0.2,0.25,0.35,0.2,0.45,0.65,0.45,0.2,0,0.1,0.15,-0.05,0.55,-0.6428,-0.4048,-0.2858,-0.3096,0.2858,0.4762,0.738,0.6666,0.5,0.2858,0.3572,0.381,0.5238,0.5714,0.9048,1,0.6428,0.5238,0.4762,0.5714,0.6428,0.619,0.738,0.5238,0.4048,0.3572,-0.1428,0.238,0.1904,-0.0476,0.0952,0.0714,-1,-1,-1,-1,-1,-1,-0.9064,-0.9114,-0.8818,-0.7438,-0.5468,0.5764,0.862,0.6748,0.6798,0.66,0.7784,0.4582,0.0394,0.0542,-0.197,-0.3004,-0.5616,-0.6206,-0.6848,-0.8326,-0.8966,-0.8866,-0.9014,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9752,-0.9752,-0.8836,-0.697,-0.6448,0.3654,0.514,0.4746,0.5212,0.591,0.64,0.1442,-0.3472,-0.4866,-0.7546,-0.8224,-0.8752,-0.8878,-0.9096,-0.926,-0.9334,-0.9412,-0.9442,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.9068,-0.8268,-0.7668,-0.6068,-0.4894,-0.5124,-0.5862,-0.534,-0.52,-0.5324,-0.5648,-0.8272,-0.8106,-0.7146,-0.8604,-0.808,-0.7146,-0.6746,-0.688,-0.6846,-0.738,-0.798,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,-0.5714,-0.5142,1,0.6572,1,-0.0286,-0.9428,-0.9142,-0.6858,-0.7142,-0.6572,-0.4286,-0.6858,-0.4572,-0.7714,-0.7714,-0.8858,-0.8572,-0.8572,-1,-0.9428,-0.7428,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.2408,0.1868,0.1308,0.0664,0.0194,-0.058,-0.1202,-0.2282,-0.4778,-0.3056,-0.48,0.6118,-0.5994,-0.5254,-0.2236,0.58,0.9878,-0.5166,-0.4202,-0.058,0.3334,0.9276,0.971,0.9856,0.6522,0.5362,0.2318,0.4058,0.6376,1,0.884,0.5072,0.5218,0.6666,0.971,0.7972,0.7826,0.7972,0.884,0.6086,0.4058,0.2754,-0.0434,-0.145,-0.1594,-0.1884,-0.2608,-0.1884,-0.4638,-0.5652,-0.3572,-0.2322,-0.1072,0.6608,0.875,1,0.5536,0.3392,0.1608,0.2142,0.3392,0.6608,0.5,0.2858,0.0536,0.4464,0.5536,0.625,0.5,0.4642,0.5714,0.2322,0.0892,-0.0536,-0.2678,-0.0536,-0.2322,-0.125,-0.25,-0.3036,-0.1964,-0.625,-0.1288,0.1782,0.594,0.7128,1,1,0.604,0.3268,0.1882,0.3168,0.2872,0.8712,0.7326,0.307,0.3762,0.4158,0.7128,0.6832,0.6436,0.6634,0.8712,0.5148,0.4752,0.1288,-0.0396,-0.2772,-0.208,-0.2476,-0.4752,-0.1288,-0.1684,-0.2872,0.0194,-1,-1,1,-0.8,-1,0.6,-0.6666,-1,-0.4032,-0.629,0.129,0.2742,-0.0484,-0.0806,-0.0646,-0.1452,0.3226,0.8388,0.5968,1,0.9032,0.129,0.0646,0.258,0.7258,0.5,0.0806,-0.0646,-0.4194,-0.0968,0,-0.129,-0.0484,0.0322,0.0646,-0.3388,-0.4032,-0.1936,-0.371,-0.8226,'9'
-0.5072,-0.0258,0.8482,1,0.5674,0.0516,0.0488,-0.1204,-0.0688,-0.1834,-0.1518,-0.0974,-0.2006,-0.023,-0.1548,0.066,0.6848,0.6418,0.7936,0.576,0.6304,0.7478,0.6934,0.6676,0.5444,0.3438,0.3782,0.3094,0.278,0.5042,0.576,0.424,-0.6872,-0.3388,0.3318,0.4194,0.3862,0.3318,0.0498,0.0782,0.1256,-0.045,0.0024,0.18,0.2204,0.2606,0.3862,0.5546,0.7156,0.9668,1,0.8744,0.7702,0.9052,0.7464,0.7702,0.647,0.5402,0.3246,0.301,0.2868,0.4598,0.372,0.5072,-0.6808,-0.364,0.1608,0.2794,0.5574,0.4002,0.185,0.098,-0.0108,-0.1318,0.139,0.0956,0.0956,0.2286,0.2478,0.434,0.5864,0.8186,1,0.9032,0.8814,0.792,0.7848,0.7726,0.6614,0.4462,0.3592,0.3036,0.2744,0.2504,0.3398,0.3374,-0.5882,-0.3256,0.2304,0.4594,0.6164,0.3102,0.2612,0.0348,-0.0682,-0.1094,0.0656,-0.0322,0.009,0.1634,0.1634,0.2252,0.4362,0.8172,0.933,1,0.8816,0.8894,0.8146,0.794,0.8276,0.5444,0.4414,0.2998,0.2998,0.2536,0.3436,0.269,-0.6242,-0.33,0.1076,0.3918,0.4586,0.2188,0.0358,-0.1966,-0.2312,-0.1842,-0.251,-0.194,0.0136,-0.068,-0.1026,0.0804,0.2954,0.4388,0.7034,1,1,0.728,0.9086,0.8962,0.6712,0.5328,0.419,0.3202,0.1694,0.1348,0.1842,0.068,-0.5596,-0.2186,0.2062,0.293,0.1906,-0.0728,-0.3644,-0.4512,-0.448,-0.5968,-0.445,-0.3736,-0.4046,-0.4512,-0.2962,-0.2558,-0.1038,0.0636,0.3892,0.7116,1,0.9566,0.848,0.8512,0.7334,0.4512,0.1286,0.0232,-0.138,-0.262,-0.3364,-0.293,-0.5746,-0.0052,-0.0298,0.0826,-0.1072,-0.1528,-0.1036,-0.3392,-0.6134,-0.768,-0.5746,-0.5114,-0.4868,-0.4974,-0.6942,-0.6626,-0.3428,-0.0932,0.181,0.529,0.9544,1,0.8946,0.747,0.782,0.4306,0.1318,-0.0124,-0.2548,-0.3392,-0.3076,-0.3568,-0.5,0.1666,0.8334,0.9444,0.2778,0.0556,-0.1666,-0.4444,-0.2222,-0.2222,-0.0556,-0.0556,-0.3888,0.0556,-0.2222,-0.2222,0.6112,0.6112,0.3888,0.5556,0.8334,0.6112,0.8888,0.8334,0.7778,0.8334,0.8334,0.2778,0.8334,1,0.7778,0.5556,-0.381,0.1904,0.8572,1,0.5238,0.1904,0.0476,-0.0952,-0.0476,-0.1904,-0.0476,-0.3334,-0.1904,-0.0952,-0.0952,0.0476,0.762,0.8096,0.762,0.7142,0.6666,0.9048,1,0.9524,0.9048,0.3334,0.5238,0.7142,0.619,0.6666,0.5238,0.4762,-0.6942,-0.3412,-0.0352,0.2706,0.2942,0.0118,-0.2,-0.3882,-0.3882,-0.3648,-0.3648,-0.1764,-0.0118,-0.3648,-0.0588,0.0118,0.0824,0.4118,0.6942,0.8824,1,0.9058,1,0.6706,0.6706,0.6942,0.3176,0.2706,0.1294,0.0118,0.153,0.0118,-1,-1,-0.9684,-0.9332,-0.884,-0.9102,-0.9314,-0.9578,-0.9508,-0.9384,-0.5972,0.5286,0.5268,-0.1452,-0.087,-0.0694,-0.1644,-0.2682,-0.4548,-0.664,-0.6518,-0.7308,-0.8048,-0.8768,-0.9314,-0.9578,-0.9526,-0.9578,-1,-1,-1,-1,-1,-1,-1,-0.9658,-0.947,-0.9226,-0.8022,-0.6816,-0.5774,-0.2976,0.17,-0.2626,0.161,0.5612,0.804,0.643,0.5342,0.25,0.142,-0.045,-0.42,-0.607,-0.6916,-0.795,-0.8328,-0.8912,-0.8876,-0.8758,-0.9056,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.88,-0.7868,-0.77,-0.1568,0.4766,0.6232,0.55,0.2566,-0.7728,-0.7146,-0.32,-0.2492,-0.3528,-0.4364,-0.3982,-0.3782,-0.5892,-0.5782,-0.6068,-0.59,-0.5234,-0.5134,-0.47,-0.5034,-0.6134,-1,-1,-1,-1,-1,-1,-1,-0.9714,-0.8286,-0.5142,1,1,1,0.2572,-0.0286,1,1,-0.0572,-0.2572,-1,-1,-1,-1,-0.1428,-0.2858,-0.6286,-0.7714,-0.8286,-0.7142,-0.7428,-0.6858,-0.6858,-0.3428,-1,-1,-1,-1,-1,0.4602,0.4682,0.5128,0.5588,0.6124,0.6602,0.735,0.8406,0.9512,0.8442,0.3638,0.3436,0.32,0.2218,0.1626,0.1522,0.1344,0.1306,0.2034,0.4032,-0.5466,0.3176,-0.3436,-0.3418,0.0918,0.2626,0.4506,0.275,-0.3642,-0.3596,-0.2622,-0.2064,-0.0672,-0.0672,0.0672,0.1184,0.304,0.341,0.6288,1,0.935,0.9954,0.8098,0.8654,0.8144,0.5266,0.4756,0.4432,0.4802,0.5034,0.4988,0.3226,0.3642,0.3968,0.4106,0.485,0.3736,0.2994,-0.1508,-0.3782,-0.7648,-0.723,-0.5864,-0.4686,-0.5484,-0.2676,-0.203,-0.2866,0.222,0.2448,0.389,0.6318,0.5674,0.8938,1,0.8976,0.7002,0.7002,0.776,0.833,0.761,0.8254,0.6812,0.4914,0.6394,0.666,0.7874,0.7534,0.594,0.5484,0.2714,-0.279,-0.4166,-0.1856,-0.25,-0.375,-0.3068,-0.3598,-0.1136,-0.0228,0.3484,0.466,0.4432,0.716,0.5946,0.6554,1,0.9848,0.9394,0.6894,0.6516,0.7122,0.7234,0.6022,0.5758,0.3864,0.6136,0.6704,0.716,0.697,0.6856,0.5266,0.3788,0.0644,-0.1726,-1,-1,1,-0.6,-1,-1,0.1,-1,-0.2,-0.2,-0.0782,0.2174,0.1478,0.2522,0.2,-0.113,0.6,1,0.8782,0.6174,0.7044,0.4434,0.2696,0.113,0.3914,0.513,0.2348,-0.0086,0.426,0.5304,0.6522,-0.0608,-0.0608,0.1478,-0.2348,0.1478,0.026,-0.426,-0.0434,-0.5826,'10'
-0.5352,-0.0822,0.783,0.8164,0.3206,0.0774,0.1156,0.056,-0.1156,-0.118,0.106,0.087,0.1848,0.3064,0.2634,0.5208,0.9548,1,0.907,0.6806,0.6496,0.7116,0.7092,0.6902,0.4256,0.1776,0.18,0.2228,0.2562,0.3898,0.4946,0.3206,-0.7076,-0.45,0.0496,0.3698,0.4952,0.1836,-0.0252,0.041,0.0182,-0.074,-0.0792,0.1158,0.175,0.2532,0.3072,0.497,0.6136,0.9792,0.8974,0.8642,0.866,0.9252,1,0.8086,0.6972,0.5926,0.4534,0.3786,0.4256,0.4274,0.5666,0.6136,-0.6842,-0.4278,0.0416,0.343,0.435,0.2238,0.1102,0.047,-0.083,-0.121,-0.1102,0.0974,-0.0054,0.0542,0.195,0.3068,0.491,0.6678,1,0.944,0.843,0.825,0.8646,0.935,0.7582,0.639,0.4856,0.4062,0.3014,0.26,0.4206,0.3556,-0.626,-0.3542,0.047,0.4232,0.4316,0.2622,0.0408,-0.0408,-0.1996,-0.2434,-0.0826,-0.0992,-0.0868,0.0554,0.0366,0.1202,0.4064,0.6866,0.8872,0.975,1,0.9102,0.8788,0.9624,0.9038,0.7932,0.4274,0.3292,0.302,0.1662,0.2204,0.1808,-0.5942,-0.295,0.1168,0.4386,0.3894,-0.0226,-0.2296,-0.3914,-0.4446,-0.4898,-0.371,-0.3114,-0.2664,-0.1618,-0.205,-0.0554,0.1414,0.2868,0.5062,0.9918,0.9692,0.8156,0.8524,1,0.9692,0.586,0.377,0.2582,0.2398,0.0308,0.2664,0.1332,-0.606,-0.144,0.2172,0.3814,0.2778,-0.303,-0.4874,-0.6338,-0.7046,-0.7954,-0.5404,-0.4672,-0.4622,-0.4292,-0.3686,-0.3384,-0.1844,-0.0252,0.3888,0.7196,0.9116,0.904,0.909,1,0.9268,0.6844,0.2652,0.0834,-0.0884,-0.207,-0.1844,-0.1186,-0.5776,-0.0976,-0.1264,-0.1776,-0.2416,-0.4016,-0.408,-0.4688,-0.36,-0.5168,-0.5104,-0.3728,-0.3824,-0.4912,-0.4624,-0.4176,-0.1616,0.136,0.4272,0.7152,0.7696,0.6768,0.728,1,0.8368,0.3728,0.024,-0.216,-0.3376,-0.2448,-0.3664,-0.2416,-0.5112,-0.0222,0.4666,0.5112,-0.1556,-0.3778,-0.2,-0.3778,-0.3334,-0.2888,-0.2,-0.0222,0.0666,-0.0222,0.2,0.4666,0.7334,0.8666,0.8666,0.6888,0.6888,0.8222,0.8222,0.7778,0.6888,0.4666,0.6,0.7778,1,1,0.7778,0.1556,-0.6,0.1428,0.8858,0.9428,0.2,-0.1428,-0.1428,-0.2,-0.2572,-0.3142,-0.0286,-0.0286,-0.0858,0.0858,0.2,0.3714,0.9428,1,0.7714,0.6572,0.3714,0.6572,0.6,0.5428,0.5428,0.4286,0.3714,0.3714,0.3142,0.2,0.2572,0.0286,-0.573,-0.2584,0.146,0.4606,0.5506,0.3932,0.1686,0.1686,-0.1686,-0.0786,-0.0112,0.0562,-0.0786,0.236,0.236,0.191,0.573,0.8426,0.9776,0.8652,0.9326,0.9326,1,0.9326,0.9326,0.8202,0.4832,0.4158,0.3484,0.2584,0.2134,0.191,-0.94,-0.8474,-0.8392,-0.8802,-0.872,-0.921,-0.9536,-0.9456,-0.9482,-0.9428,-0.4986,0.6676,0.3788,0.534,0.2834,0.0682,-0.128,-0.1826,-0.2616,-0.466,-0.5204,-0.7494,-0.8228,-0.8856,-0.9238,-0.9374,-0.9428,-1,-1,-1,-1,-1,-1,-0.9726,-0.9466,-0.9504,-0.958,-0.857,-0.8304,-0.7618,-0.589,-0.5828,-0.422,-0.4938,-0.4036,0.1522,0.8672,0.4766,0.034,-0.208,-0.3306,-0.502,-0.657,-0.7816,-0.88,-0.8932,-0.9148,-0.9148,-0.9142,-0.9302,-1,-1,-1,-1,-1,-1,-0.9868,-0.9,-0.7868,-0.8934,-0.5668,0.2432,0.3666,0.4,0.45,0.4632,0.17,-0.723,-0.4716,-0.3558,-0.3258,-0.433,-0.4286,-0.39,-0.4044,-0.6794,-0.7826,-0.7612,-0.7802,-0.6368,-0.5036,-0.6102,-0.7236,-1,-1,-1,-1,-1,-1,-0.6,-0.9714,-1,0.4858,1,1,-0.5714,-0.4572,-0.6858,-0.2858,1,1,1,0.3714,-1,-0.7142,-1,-1,-0.9142,-0.4286,-0.6286,-0.7142,-0.7142,-0.8858,-0.8286,-0.8572,-0.6,-1,-1,-1,-1,-1,-1,0.5358,0.5714,0.6118,0.6678,0.709,0.777,0.8714,0.9704,1,0.7748,-0.1836,-0.225,-0.2498,-0.242,-0.2076,-0.1482,-0.0348,0.0966,0.2458,0.4462,-0.4266,0.6942,-0.5128,-0.509,-0.464,-0.3922,-0.3554,-0.1166,-0.4992,-0.5058,-0.252,-0.1796,-0.2258,-0.1598,-0.051,0.0148,0.0378,0.3772,0.4168,0.766,0.7628,0.9572,1,0.7628,0.6706,0.598,0.5782,0.5388,0.5124,0.4828,0.4136,0.2982,0.3146,0.4266,0.4926,0.4366,0.4432,0.262,0.2258,-0.0774,-0.7254,-0.7876,-0.5098,-0.5262,-0.4314,-0.3856,-0.3628,-0.2516,0.0784,0.0882,0.4314,0.7092,0.7418,0.9478,1,0.8628,0.7844,0.6112,0.5458,0.6014,0.6568,0.6666,0.6536,0.232,0.245,0.4282,0.585,0.647,0.487,0.4248,0.304,-0.121,-0.5248,-0.3052,-0.3744,-0.4106,-0.3594,-0.3834,-0.2512,0.0828,0.4706,0.4346,0.5098,0.8226,0.8136,0.8076,1,0.9098,0.627,0.5488,0.591,0.6722,0.6722,0.7052,0.5218,0.3804,0.3294,0.4978,0.573,0.5128,0.3684,0.3864,0.185,0.0166,-0.6926,-1,-1,1,-0.6,-1,-1,0.3,-1,-0.3832,-0.3458,-0.4018,0.0094,-0.1776,-0.3458,0.0094,0.514,1,0.813,0.6262,0.7384,0.514,0.215,0.2898,0.4392,0.3272,-0.0842,-0.0094,-0.1402,0.1214,0.3644,0.57,0.4206,-0.2336,0.0468,0.1962,0.2524,-0.2336,-0.4018,-0.4954,-0.757,'10'
-0.6512,-0.0912,0.189,0.5376,0.6142,0.7464,0.5536,0.3764,-0.0198,-0.1624,0.0304,0.0488,-0.025,-0.0568,0.0964,0.1492,0.4108,0.5958,0.7596,0.8916,1,0.9102,0.9524,0.6512,0.6196,0.4188,0.3686,0.5668,0.4716,0.35,0.2998,0.35,-0.6906,-0.1466,0.224,0.4506,0.616,0.744,0.2774,0.2746,-0.112,-0.152,0.1226,0.0266,-0.104,-0.064,0.0906,0.0186,0.1894,0.488,0.496,0.768,0.96,1,0.8186,0.7466,0.8134,0.912,0.6906,0.488,0.3626,0.424,0.4774,0.36,-0.6398,-0.2,0.3722,0.5126,0.5708,0.5842,0.1842,0.0544,-0.057,-0.1258,-0.0808,-0.049,-0.0596,0.0728,-0.0596,-0.0544,0.359,0.4596,0.661,0.8464,1,0.9656,0.8994,0.7722,0.8304,0.735,0.6742,0.351,0.2238,0.4226,0.3854,0.2292,-0.6456,-0.3248,0.2884,0.2988,0.2782,0.0816,0.035,-0.216,-0.3118,-0.2574,-0.1798,-0.2108,-0.0738,-0.0402,-0.0402,-0.0582,0.185,0.3946,0.6558,0.8292,0.9172,1,0.9638,0.881,0.8008,0.7102,0.41,0.3196,0.2212,0.229,0.2394,0.2082,-0.578,-0.2274,0.3818,0.3402,0.049,-0.153,-0.2392,-0.367,-0.5334,-0.471,-0.3522,-0.361,-0.3016,-0.2124,-0.162,-0.2304,-0.0966,0.165,0.4264,0.6344,1,0.9674,0.9614,0.9316,0.8544,0.5958,0.3492,0.2214,0.15,0.1234,0.0638,0.0074,-0.5258,0.0258,0.511,0.6286,0.1102,-0.283,-0.4192,-0.5404,-0.625,-0.7574,-0.6214,-0.5478,-0.5662,-0.6214,-0.4926,-0.489,-0.397,-0.2242,0.0662,0.2132,0.6214,0.9522,1,0.897,0.7096,0.6802,0.2684,-0.0514,-0.033,-0.342,-0.4008,-0.3346,-0.4842,0.123,0.2182,0.369,0.0794,-0.4286,-0.4404,-0.4524,-0.5516,-0.6032,-0.615,-0.4642,-0.5674,-0.7024,-0.623,-0.7738,-0.504,-0.1626,-0.0834,0.1112,0.6548,0.9246,0.8612,1,0.9722,0.6944,0.1786,-0.0754,-0.0874,-0.2342,-0.3174,-0.4404,-0.8236,-0.2942,-0.2352,0.2352,0.4118,0.2352,0.353,-0.4118,-0.7648,-0.647,-0.4706,-0.353,-0.1764,-0.2942,-0.4118,-0.2942,-0.2352,0.353,0.4706,0.2352,0.7058,1,1,0.353,-0.0588,0.0588,0.1764,0.4706,0.5294,-0.1764,0,0.0588,-0.8236,-0.353,0.1176,0.5882,0.5294,0.8236,0.5882,0.2942,-0.0588,-0.2942,-0.2352,-0.1764,0,0.0588,0.1176,0.2352,0.647,0.7058,0.8236,0.9412,1,0.4706,0.7648,0.5882,0.7648,0.9412,0.647,0.2352,0.2352,0.2352,0,0,-0.6438,-0.1232,0.3698,0.2876,-0.0136,-0.2602,-0.3972,-0.4246,-0.6712,-0.5068,-0.3698,-0.589,-0.1506,-0.1506,-0.2054,-0.3424,-0.2602,-0.0136,0.2876,0.452,0.8904,1,0.9726,0.5616,0.726,0.7808,0.2876,0.1232,0.1232,0.0136,0.041,-0.0136,-1,-1,-0.9196,-0.9276,-0.9114,-0.6258,-0.7344,-0.4206,-0.34,-0.5452,-0.0664,0.8108,0.9598,0.7626,0.7142,0.5574,0.2918,0.1066,-0.0704,0.0262,-0.1106,-0.4608,-0.5936,-0.6862,-0.7142,-0.7826,-0.827,-0.8552,-0.8994,-0.8994,-1,-1,-1,-1,-1,-0.959,-0.9612,-0.7594,0.8226,0.429,-0.0522,-0.378,-0.5,-0.2516,0.5332,0.7616,0.4434,0.358,0.2506,0.2926,-0.0498,-0.4412,-0.5232,-0.582,-0.7572,-0.7672,-0.7706,-0.7262,-0.7994,-0.806,-0.7882,-0.8658,-0.8626,-1,-1,-1,-1,-1,-0.9468,-0.9868,-0.9034,0.0732,0.33,0.3166,0.1866,0.14,-0.02,-0.418,-0.4928,-0.311,-0.2638,-0.3656,-0.3764,-0.6274,-0.7238,-0.8492,-0.8656,-0.6964,-0.63,-0.6534,-0.5134,-0.4268,-0.5168,-0.5234,-0.5534,-0.7334,-1,-1,-1,-1,-1,-0.1428,-0.6858,1,1,-0.1142,-0.5428,-0.4,-0.5142,0.3714,0.6286,-0.9142,-0.7142,-0.8,-0.9142,-0.8572,-0.7428,-0.1714,-0.8286,-0.8572,-0.5428,-0.8572,-0.7714,-0.7428,-0.8572,-0.8,-0.6858,-0.6,-0.5714,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.7702,0.3446,0.3538,0.3778,0.4074,0.437,0.502,0.5816,0.626,0.665,0.6872,-0.56,0.2942,-0.2318,-0.0522,0.3192,0.8282,0.9434,0.5,-0.8652,-0.4802,-0.2402,-0.1118,0,0.0954,0.2106,0.1842,0.2402,0.3652,0.6052,0.7138,1,0.9704,0.7928,0.6448,0.6052,0.477,0.4572,0.4244,0.5132,0.5362,0.4902,0.4934,0.4078,0.4342,0.4606,0.3322,0.2664,-0.0328,0.1152,-0.2172,-0.4864,-0.0272,0.3382,0.1464,0.1356,0.0778,-0.0054,0.0162,0.2802,0.4214,0.6672,0.9422,0.9856,1,0.859,0.7504,0.7614,0.6166,0.6022,0.6166,0.689,0.8084,0.8554,0.6708,0.3708,0.5696,0.6022,0.6492,0.32,0.226,0.1428,-0.0814,-0.3094,-0.1726,0.1976,0.182,-0.042,0.0108,-0.1074,0.101,0.2752,0.6174,1,0.944,0.8818,0.72,0.6548,0.577,0.6236,0.7542,0.7884,0.4214,0.2628,0.4774,0.5334,0.325,0.1882,0.4152,0.5178,0.5334,0.2224,0.0514,0.014,-0.353,1,-1,-1,1,-0.4,-1,-0.4,0.2334,1,-0.3566,-0.077,0.2028,0.3426,0.1468,0.2868,0.4966,0.5804,0.4546,0.4546,0.5384,1,0.7762,0.7482,0.5944,0.6924,0.7202,0.3566,0.049,0.1608,0.049,0.5244,0.5104,0.5944,0.4126,0.2168,0.3986,0.4126,-0.007,-0.1048,-0.1048,-0.7482,'11'
-0.6602,-0.179,0.1686,0.3176,0.5294,0.5372,0.1032,-0.0536,-0.1294,-0.213,-0.1686,-0.0458,-0.0902,0.0144,0.004,0.0876,0.349,0.3934,0.655,0.864,1,0.8326,0.8014,0.9032,0.8274,0.6236,0.3726,0.417,0.2758,0.2706,0.3752,0.2994,-0.6938,-0.31,0.212,0.3024,0.6888,0.626,0.1518,-0.1368,-0.0816,-0.084,-0.1794,-0.1092,0.0214,0.064,-0.0062,0.1066,0.3174,0.5032,0.7366,1,0.8644,0.7466,0.754,0.7816,0.7366,0.5884,0.2522,0.2496,0.2472,0.1016,0.2924,0.2648,-0.6362,-0.3142,0.2566,0.356,0.602,0.3874,0.2252,-0.1728,-0.267,-0.2042,-0.2016,-0.165,-0.0628,-0.0158,-0.076,0,0.301,0.3298,0.6518,0.9974,1,0.5078,0.7802,0.8298,0.6204,0.4398,0.3404,0.1702,0.0472,-0.2146,-0.102,-0.1048,-0.5266,-0.15,0.5934,0.7266,0.87,0.45,0.3,-0.1234,-0.19,-0.2734,-0.21,-0.0766,0.0366,0.0934,-0.14,0.0666,0.0834,0.1534,0.71,0.88,0.9866,1,0.8766,0.96,0.9466,0.84,0.6734,0.1834,0.23,0.1034,0.0534,0.1666,-0.5964,-0.2372,0.2812,0.2312,0.2784,-0.031,-0.2842,-0.6054,-0.4874,-0.623,-0.3932,-0.3578,-0.352,-0.4522,-0.4698,-0.355,-0.131,0.084,0.2518,0.5258,0.9794,1,0.8674,0.8144,0.785,0.729,0.3344,0.1988,0.0692,-0.1134,-0.2254,-0.1782,-0.529,0.0036,0.4674,0.5,0.2464,-0.2682,-0.529,-0.4856,-0.5652,-0.8406,-0.5724,-0.5834,-0.558,-0.6124,-0.5652,-0.587,-0.5,-0.279,-0.0072,0.3696,0.8732,0.9492,1,0.9492,0.9892,0.8804,0.4818,0.1956,0.0144,-0.2282,-0.0906,-0.1086,-0.5764,0.1106,0.0964,0.3036,-0.2942,-0.5906,-0.553,-0.6376,-0.7176,-0.8118,-0.6706,-0.5106,-0.4118,-0.3694,-0.4118,-0.4542,-0.4588,-0.2236,-0.1058,0.4964,0.4964,0.8824,0.807,0.7318,1,0.9152,0.5106,0.0164,-0.0352,-0.1952,-0.2658,-0.2,-0.35,0.25,0.3,0.5,0.55,0.45,0.45,0.15,-0.1,-0.1,-0.05,-0.05,-0.1,-0.1,-0.1,0.05,0.3,0.15,0.55,0.8,0.75,0.75,0.85,1,1,0.75,-0.2,0.25,0.2,0.4,0.55,0.3,-0.7576,-0.394,-0.091,-0.0304,0.3334,0.2122,0.0304,-0.2122,-0.394,-0.5152,-0.3334,-0.1516,-0.2122,-0.2122,-0.0304,-0.1516,0.0304,0.3334,0.4546,0.697,0.8788,0.5152,1,0.9394,0.6364,0.5758,0.4546,0.3334,0.394,0.091,0.091,0.091,-0.6782,-0.3564,0.1724,0.2644,0.5632,0.3794,0.1494,-0.1494,-0.2414,-0.2414,-0.2184,-0.1494,0.0114,0.0114,-0.0114,-0.0344,0.2414,0.2414,0.4482,0.885,1,0.5402,0.7702,0.885,0.6092,0.4482,0.3564,0.1724,0.2414,-0.1954,-0.0114,0.1034,-1,-1,-1,-0.9136,-0.909,-0.6954,-0.7272,-0.659,-0.6772,-0.4818,-0.5136,0.3,0.8364,0.9136,0.741,0.5864,0.4318,0.2046,-0.159,-0.2182,-0.0182,-0.5954,-0.759,-0.7954,-0.859,-0.8728,-0.9046,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.929,-0.9242,0.4076,-0.1548,0.158,-0.2386,-0.3048,-0.338,0.3302,0.7252,0.9084,0.6572,0.3522,0.0758,-0.1296,-0.2022,-0.4392,-0.4866,-0.7662,-0.7662,-0.8246,-0.8262,-0.8104,-0.8214,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.88,-0.9668,-0.31,0.4132,0.38,0.33,0.32,-0.0034,-0.3038,-0.4038,-0.402,-0.2856,-0.4874,-0.5656,-0.6984,-0.5868,-0.5934,-0.795,-0.5968,-0.5534,-0.5034,-0.7268,-0.4668,-0.41,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,-0.4572,-0.4286,-0.7142,-0.0858,0.7714,-0.9142,-0.8286,-0.4572,-0.6572,-0.8858,-0.8572,-0.8572,-0.7142,-0.6572,-0.7714,-0.7714,-0.9142,-0.8858,-0.8858,-0.3714,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.6892,0.5634,0.598,0.5948,0.6012,0.5956,0.5784,0.5586,0.532,0.5232,0.624,-0.5066,0.3648,-0.3302,-0.3176,-0.0158,0.5876,0.82,1,-0.749,-0.2868,-0.2232,0.0678,0.0558,0.1036,0.1116,0.227,0.2988,0.5776,0.7848,0.9402,1,0.98,0.8406,0.8088,0.6574,0.6414,0.8406,0.8606,0.6852,0.6772,0.502,0.4024,0.5578,0.6374,0.5498,0.5338,0.3984,0.486,0.1514,-0.1992,-0.5766,-0.1772,-0.05,-0.0706,-0.0602,-0.0292,-0.0568,-0.0224,0.05,0.4148,0.6454,0.7556,1,0.8142,0.79,0.7796,0.518,0.6144,0.611,0.6902,0.759,0.6488,0.5972,0.3598,0.408,0.6386,0.759,0.6316,0.3184,0.2254,0.1462,-0.0052,-0.2362,-0.2584,-0.1218,0.0296,-0.1512,-0.1882,-0.155,-0.166,0.118,0.4318,0.8376,0.9964,1,0.845,0.7012,0.5868,0.594,0.8414,0.8044,0.6678,0.583,0.6014,0.6532,0.2066,0.1034,0.5276,0.6052,0.594,0.3764,0.2546,0,-0.251,1,-1,-1,1,-0.8,-1,-1,0.2,-1,-0.386,-0.2456,-0.0526,0.0526,-0.035,0,0.1052,0.2106,0.8772,0.4736,0.5264,1,0.8596,0.6316,0.7018,0.7544,0.5264,0.228,0.1578,0.2456,0.2456,0.4912,0.614,0.2982,0.1754,0.1228,0.2106,0.0176,-0.386,-0.1578,-0.228,-0.4912,'11'
-0.7234,-0.359,-0.0186,0.109,0.5664,0.9602,0.9868,0.657,0.4308,0.4016,0.4202,0.5132,0.5958,0.7314,0.968,0.9708,1,0.8804,0.7686,0.7394,0.8272,0.9256,0.891,0.8618,0.766,0.5106,0.3352,0.4522,0.3324,0.1622,0.4228,0.3272,-0.714,-0.351,0.0576,0.1322,0.4904,0.8318,1,0.7428,0.75,0.7668,0.786,0.8894,0.81,0.7836,0.488,0.3174,0.3052,0.149,0.1106,0.2716,0.2812,0.3942,0.565,0.4808,0.19,0.0914,-0.065,-0.0312,-0.089,-0.2284,-0.2692,-0.2044,-0.7598,-0.3994,0.0732,0.141,0.5484,0.799,0.9504,0.9164,0.9138,1,0.8016,0.4438,0.3812,0.329,-0.1436,-0.222,-0.1672,-0.3264,-0.2194,-0.0444,-0.1644,-0.1514,0.141,0.3864,0.5274,0.3656,0.2664,0.0992,-0.0678,-0.1096,0.0366,-0.0418,-0.6728,-0.3564,0.149,0.282,0.5478,0.8458,0.899,1,0.8484,0.609,0.157,0.0692,-0.024,-0.2846,-0.4414,-0.4868,-0.532,-0.5266,-0.4096,-0.4522,-0.5186,-0.4096,-0.3086,-0.242,0.0106,0.2288,0.1808,0.0266,-0.1064,-0.1808,-0.2898,-0.25,-0.6296,-0.3594,0.2088,0.504,0.6672,1,0.9874,0.9812,0.3376,0.0958,-0.1428,-0.2558,-0.482,-0.5228,-0.573,-0.5918,-0.5668,-0.5164,-0.5856,-0.6138,-0.73,-0.5668,-0.5448,-0.5322,-0.372,-0.1868,0.2026,0.281,0.0832,-0.1962,-0.1806,-0.3218,-0.7394,-0.2796,0.1724,0.6322,0.7932,0.9808,1,0.3794,-0.0268,-0.3946,-0.6628,-0.4712,-0.5978,-0.567,-0.5748,-0.6284,-0.5134,-0.6744,-0.7854,-0.8084,-0.456,-0.3908,-0.8468,-0.7356,-0.613,-0.4482,-0.2376,0.2452,0.3256,-0.0728,-0.272,-0.2606,-0.8176,0.0028,0.4188,1,0.9602,1,0.6752,-0.208,-0.5042,-0.7322,-0.5556,-0.2992,-0.4814,-0.5726,-0.47,-0.698,-0.3846,-0.5214,-0.6468,-0.6354,-0.4472,-0.2536,-0.829,-0.6182,-0.282,-0.2934,-0.567,-0.168,-0.0542,-0.4758,-0.4814,-0.5214,-0.6316,-0.2106,-0.1578,0.0526,0.8422,1,0.7894,0.7368,0.5264,0.3158,0.4736,0.579,0.579,0.7894,0.7368,0.8948,0.7894,1,0.8422,0.579,0.7894,0.7894,0.6842,0.6842,0.6316,0,0.2106,0.421,0.2632,-0.3158,0.2632,0.2106,-0.6,-0.2,-0.25,0.1,0.3,0.7,0.8,0.25,0.15,0.3,0.3,0.45,0.25,0.35,0.7,0.65,0.7,0.8,0.65,0.65,0.85,0.65,1,0.65,0.85,0.6,0.55,0.5,0.3,0.25,0.3,0.4,-0.5072,-0.0144,0.1304,0.5362,0.971,1,0.971,0.6522,0.0434,-0.4202,-0.4782,-0.3624,-0.2754,-0.3044,-0.2464,-0.3044,-0.3044,-0.4782,-0.4202,-0.4782,-0.0724,-0.0144,-0.3334,-0.5072,-0.3334,-0.3914,-0.0434,0.1594,0.3624,-0.1014,-0.3044,-0.1884,-1,-1,-1,-1,-1,-1,-0.9256,-0.909,-0.9174,-0.7892,-0.562,0.4546,0.7852,0.628,0.4008,0.2852,0.409,0.3636,0.2272,-0.1446,-0.3596,-0.5454,-0.81,-0.7686,-0.7892,-0.8348,-0.8842,-0.9174,-0.9174,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.974,-0.9722,-0.9716,-0.696,-0.4164,0.3064,0.6472,0.3596,0.2188,-0.0496,-0.2132,-0.3656,-0.5408,-0.7378,-0.8206,-0.8978,-0.9456,-0.9492,-0.9336,-0.945,-0.9504,-0.9558,-0.8762,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.9534,-0.84,-0.8068,-0.43,-0.56,-0.5764,-0.642,-0.5582,-0.6118,-0.6384,-0.7018,-0.7484,-0.8568,-0.8968,-0.87,-0.8668,-0.82,-0.73,-0.7434,-0.93,-0.7168,-0.6,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6858,-1,0.9428,1,1,1,0,-0.2572,-0.6858,-0.7428,-0.7142,-0.6858,-0.5428,-0.4286,-0.8286,-0.8572,-0.9714,-0.7714,-0.7428,-0.9714,-0.9714,-0.6572,0.4572,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.4326,-0.476,-0.5112,-0.5652,-0.6376,-0.7062,-0.7944,-0.7216,-0.3844,-0.203,-0.5734,0.3882,-0.4822,-0.5444,-0.1094,0.8236,0.7268,0.5834,0.0428,-0.0572,0.1142,0.3714,0.5,0.4714,0.7286,0.7714,0.8428,0.7572,0.9,0.8428,0.8572,0.5714,0.5572,0.6286,0.7428,0.9142,1,0.9714,0.9142,0.8,0.3714,0.4572,0.5858,0.5572,0.6572,0.4142,-0.0858,0.1142,0,-0.4286,-0.6214,-0.2428,0.6116,0.6408,0.1554,0.33,0.369,0.6894,1,0.864,0.7962,0.9612,0.903,0.5922,0.4368,0.33,0.6116,0.8932,0.8446,0.7962,0.7184,0.5632,0.1748,0.4466,0.5242,0.466,0.068,-0.0486,-0.4174,-0.2912,-0.3398,-0.5826,-0.1878,-0.0666,0.7696,0.9152,0.394,0.4788,0.491,0.6364,1,0.6848,0.7212,0.9636,0.7696,0.6242,0.4666,0.3696,0.4304,0.7696,0.806,0.6364,0.6,0.3818,0.2,0.5272,0.4788,0.3454,0.2364,-0.1394,-0.2484,-0.2484,-0.2,-0.4788,0.4526,-1,-1,1,-1,-1,-0.8,-0.6,-1,0.024,-0.168,0.328,0.568,0.808,0.872,0.872,0.392,0.056,0.312,0.456,0.408,0.616,0.856,0.76,0.968,0.856,0.568,0.472,0.584,0.904,1,0.888,0.536,0.792,0.504,0.536,0.376,0.488,0.408,-0.056,-0.168,'12'
-0.6646,-0.3944,0.0244,0.185,0.559,0.87,0.7358,0.6686,0.559,0.4776,0.441,0.557,0.687,0.8334,1,0.998,0.9004,0.7276,0.7134,0.7398,0.7826,0.8272,0.9086,0.8048,0.6056,0.4044,0.2582,0.193,0.122,0.1178,0.1686,0.2642,-0.676,-0.3818,0.1014,0.1114,0.34,0.8846,0.9146,0.8728,0.7476,0.8112,1,0.9066,0.8092,0.5328,0.4772,0.336,0.2186,0.2108,0.169,0.3558,0.4156,0.5766,0.5468,0.6164,0.5546,0.487,0.1492,0.0874,0.0914,0.0736,0.0498,0.0636,-0.594,-0.283,0.2786,0.2916,0.4924,1,0.9828,0.9028,0.825,0.8186,0.2614,0.0216,-0.1556,-0.2484,-0.3822,-0.3326,-0.3952,-0.4816,-0.4622,-0.4946,-0.4838,-0.4234,-0.3498,-0.1426,0.1448,0.2052,0.095,-0.082,-0.1448,-0.2398,-0.2548,-0.1252,-0.624,-0.2892,0.3446,0.5928,0.7204,1,0.841,0.9108,0.2554,-0.135,-0.2722,-0.4314,-0.5614,-0.7686,-0.718,-0.8168,-0.747,-0.841,-0.8554,-0.8168,-0.8168,-0.7446,-0.7326,-0.5856,-0.5518,-0.2096,-0.094,-0.1302,-0.3132,-0.5132,-0.3494,-0.2892,-0.6196,-0.226,0.3856,0.7792,0.8564,1,0.766,0.6144,-0.282,-0.5054,-0.6862,-0.7368,-0.6728,-0.7022,-0.7632,-0.7368,-0.5718,-0.75,-0.782,-0.8272,-0.726,-0.7128,-0.8164,-0.6914,-0.6648,-0.5692,-0.1118,-0.1436,-0.3218,-0.5958,-0.468,-0.359,-0.5794,-0.1994,0.3738,0.7446,0.7882,1,0.5794,0.2834,-0.5296,-0.6792,-0.6728,-0.6822,-0.5514,-0.6854,-0.4642,-0.6666,-0.8754,-0.6854,-0.7758,-0.81,-0.6792,-0.5856,-0.6792,-0.6574,-0.6138,-0.5546,-0.296,-0.2742,-0.4206,-0.57,-0.3832,-0.4018,-0.386,0.0022,0.5396,0.7336,0.7698,1,0.3544,-0.097,-0.2912,-0.6344,-0.6568,-0.3996,-0.3048,-0.2642,-0.079,-0.3274,-0.3182,-0.4266,-0.693,-0.5486,-0.368,-0.3634,-0.5666,-0.368,-0.2054,-0.2912,-0.1106,-0.0428,-0.21,-0.3814,-0.3138,-0.2822,-0.8,-0.35,0,0.3,0.3,1,0.95,0.6,0.25,0.3,0.45,0.5,0.4,0.4,0.8,0.85,0.8,0.5,0.7,0.7,0.5,0.55,0.75,0.65,0.2,0.2,0.2,0.05,-0.5,0.1,0.35,0.35,-0.6072,-0.3928,-0.0714,0.1786,0.6428,0.8214,0.75,0.5,0.3572,0.3572,0.3928,0.3928,0.4642,0.6072,0.7142,1,1,0.7858,0.7142,0.7142,0.6786,0.7858,0.7858,0.75,0.5,0.4286,0.1786,0.2142,0.2142,0.0358,0.1072,0.2858,-0.6512,-0.3024,0.1396,0.2326,0.3954,0.9302,0.9302,0.7906,1,1,0.7442,0.5814,0.3024,0.0466,-0.1396,-0.186,-0.2094,-0.279,-0.279,-0.186,-0.2558,-0.186,-0.0698,0.279,0.4884,0.2326,0.0466,-0.1162,-0.186,-0.1628,-0.186,-0.0698,-1,-1,-1,-1,-1,-1,-0.935,-0.9458,-0.8554,-0.595,-0.1212,0.8626,0.5878,0.5768,0.5804,0.537,0.4864,0.378,0.179,-0.1428,-0.3816,-0.6022,-0.7396,-0.8084,-0.83,-0.8806,-0.9168,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9748,-0.9736,-0.9296,-0.7586,-0.3716,0.4836,0.9416,0.5462,0.099,-0.2856,-0.397,-0.5306,-0.6382,-0.7358,-0.8332,-0.9018,-0.935,-0.9476,-0.95,-0.9656,-0.9682,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.973,-0.9868,-0.8934,-0.6268,-0.45,-0.5648,-0.4,-0.4916,-0.63,-0.693,-0.7444,-0.8372,-0.82,-0.81,-0.863,-0.793,-0.81,-0.7334,-0.8068,-0.8934,-0.7934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5714,-0.8572,1,1,1,0.0572,0.1428,0.2286,-0.3428,-0.6286,-0.6,-0.8858,-0.9142,-0.8858,-0.9428,-0.8286,-0.9428,-0.9714,-0.9714,-0.8572,-0.3714,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.7796,-0.823,-0.8422,-0.851,-0.8664,-0.8818,-0.7968,-0.6402,-0.3366,-0.2098,-0.5066,0.6824,-0.3416,-0.1948,0.5486,0.5312,0.6052,0.5334,-0.183,0.0854,0.6586,0.8536,0.3414,0.2926,0.4146,0.5732,1,0.7926,0.3658,0.683,0.5976,0.2196,0.1342,0.3048,0.3658,0.378,0.256,0.561,0.4756,0.1952,-0.0732,-0.0122,-0.0854,0.0488,-0.1342,-0.1586,-0.1098,-0.0488,-0.0366,-0.244,-0.3656,-0.086,0.9354,1,0.4408,0.2904,0.2688,0.7096,1,0.957,0.7634,0.7634,0.828,0.5592,0.4838,0.4624,0.6236,0.871,0.7634,0.6774,0.4838,0.258,-0.0108,0.1182,0.129,0.1828,0.1398,-0.2474,-0.5054,-0.1612,-0.1182,-0.4732,-0.2906,0.1554,0.7432,0.8918,0.3446,0.2702,0.3446,0.6216,0.946,0.7028,0.919,1,0.7028,0.3918,0.3108,0.4528,0.473,0.723,0.5744,0.696,0.2094,0.081,0.0744,0.0946,0.3986,0.2028,0.2364,-0.2568,-0.4662,-0.2972,-0.3108,-0.5202,-0.309,-1,-1,1,-0.6,-1,-1,-0.4666,-1,0.4118,0.5,0.4118,0.853,-0.4118,0.5882,0.5588,-0.0588,-0.1176,0.2942,0.5882,0.5294,0.5588,1,0.8236,0.7058,0.7648,-0.0882,0.1176,0.853,0.8824,0.9412,0.8236,0.7058,0.5,0.7648,0.7352,0.4706,0.5294,0.2352,0,-0.4706,'12'
-0.655,-0.365,0.1052,0.164,0.6152,0.6322,0.691,0.3554,0.2702,0.1678,0.1734,0.1906,0.3214,0.3952,0.5394,0.6114,0.8484,1,0.9848,0.7308,0.765,0.82,0.7876,0.7952,0.6664,0.5508,0.308,0.219,0.2322,0.1564,0.2436,0.3574,-0.6102,-0.1014,0.1652,0.3326,0.9516,0.9758,0.7312,0.696,0.9494,0.729,0.6784,0.923,0.8942,0.837,0.6982,0.7246,0.5396,0.5882,0.489,0.4516,0.782,0.8414,1,0.7136,0.423,0.2864,0.229,0.0528,0.0792,0.097,0.1234,0.2334,-0.5178,-0.104,0.2732,0.4218,0.8742,0.76,0.8354,1,0.9452,0.8812,0.6342,0.504,0.4102,0.2068,-0.2046,-0.2298,-0.1268,-0.1542,-0.3394,-0.4172,-0.2732,-0.1268,0.0698,0.0788,0.0652,-0.2342,-0.3394,-0.1862,-0.1314,-0.1268,0.0812,0.0422,-0.1882,0.1602,0.6672,0.4744,-0.1726,0.294,0.9378,0.9222,1,0.3904,-0.0452,-0.3438,-0.1726,-0.2318,-0.185,-0.3934,-0.1882,-0.1166,-0.322,-0.409,-0.5396,-0.3934,-0.3158,-0.0668,-0.2472,-0.5242,-0.7326,-0.7978,-0.5396,-0.4962,-0.4618,-0.5178,-0.3,0.1538,0.75,0.3462,-0.3924,0.3692,0.6692,1,0.8308,0.5846,-0.0654,-0.1576,-0.2654,-0.0576,0,-0.2076,0.1884,0.05,-0.1192,-0.2692,-0.3576,-0.0692,0.1116,0.15,0.0384,-0.323,-0.5116,-0.727,-0.4846,-0.277,-0.2654,-0.373,-0.4186,0.0638,0.4218,0.262,0.5686,0.6996,0.425,0.9392,1,0.853,0.5974,0.083,0.1022,0.214,-0.0862,-0.0926,0.0192,-0.0288,-0.409,-0.492,-0.591,-0.5016,-0.5528,-0.4346,-0.393,-0.3162,-0.1916,-0.1948,0,0.0448,0.032,0.0064,-0.2594,0.4378,-0.1676,-0.5244,-0.2054,0.2972,0.346,0.119,0.227,0.5406,0.8216,1,0.827,0.4108,0.0324,-0.2108,0.0972,0.081,-0.2216,-0.7892,-0.3784,-0.2648,-0.681,-0.1406,-0.0648,0.0216,-0.2432,-0.519,-0.1082,-0.1082,0.1406,0.1514,-0.6888,-0.3334,-0.0666,0.0666,0.3778,0.7334,0.6,0.0666,0.0666,0.0666,0.0222,0.1556,0.3334,0.2888,0.1556,0.5112,0.5112,1,0.9112,0.8222,0.6888,0.5556,0.6,0.8666,0.7334,0.6444,0.5556,0.1112,0.4666,0.5112,0.3778,0.6444,-0.6604,-0.3584,-0.0188,0.1698,0.6226,0.7358,0.5094,0.2076,0.0188,0.132,0.132,0.132,0.2076,0.283,0.4716,0.434,0.8868,1,0.9246,0.7358,0.8868,0.8868,0.8114,0.8868,0.849,0.585,0.5094,0.4716,0.5094,0.434,0.434,0.6604,-0.5444,-0.114,0.1898,0.367,0.8482,0.6962,0.7974,0.9746,0.9746,1,0.7974,0.4936,0.2912,0.0886,-0.2406,0.0126,0.0126,-0.2406,-0.443,-0.4936,-0.1392,-0.038,0.1898,0.2406,0.2912,-0.1392,-0.4936,-0.2406,-0.0632,0.0126,0.1898,0.1646,-1,-1,-1,-1,-1,-1,-0.9264,-0.9376,-0.8934,-0.6948,-0.3602,0.5148,0.5074,0.4964,0.3934,0.3272,-0.1176,-0.1692,-0.2058,-0.2464,-0.5514,-0.7536,-0.875,-0.9154,-0.9338,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9762,-0.9732,-0.9208,-0.533,-0.3722,0.362,-0.0398,-0.1404,-0.2322,-0.457,-0.7504,-0.7778,-0.7954,-0.7376,-0.852,-0.9336,-0.9526,-0.9586,-0.9678,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.9468,-0.9068,-0.4534,-0.2568,-0.3472,-0.5916,-0.5716,-0.5986,-0.7094,-0.732,-0.848,-0.704,-0.728,-0.704,-0.7228,-0.74,-0.8268,-0.8334,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6,-0.5142,1,1,1,0.1428,-0.6858,-0.5714,-0.1428,0.0572,-0.5714,-0.8858,-0.7142,-0.5428,-0.4,-0.8858,-0.9428,-0.9714,-0.9142,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.0202,0.0086,-0.0992,-0.1926,-0.2614,-0.383,-0.5112,-0.5446,-0.5596,-0.5668,-0.44,0.7764,-0.4728,0.2164,0.9014,0.7072,0.0564,0.625,-0.5492,-0.2832,0.526,0.4682,-0.1214,-0.0752,0.029,0.1676,0.896,1,0.6532,0.8382,0.7226,0.3758,0.422,0.3064,0.711,0.7804,0.5606,0.9422,0.6994,-0.1792,0.0636,0.0752,-0.318,-0.2602,-0.1676,-0.3294,-0.1908,0.0058,-0.1908,-0.3988,-0.5372,-0.2752,0.3624,0.31,-0.048,-0.048,0.1092,0.345,0.7642,1,0.834,0.8952,0.9388,0.642,0.5546,0.6332,0.7904,0.7816,0.834,0.834,0.6856,0.048,-0.0742,0.1878,-0.3624,-0.2838,-0.1528,-0.179,-0.1528,0.0306,0.0306,-0.0656,-0.4378,0.1566,0.5582,0.5502,0.1808,0.1968,0.1888,0.4136,0.751,1,0.9196,0.9598,1,0.6626,0.6546,0.7752,0.8474,0.8796,0.9598,0.7992,0.6706,0.245,0.0362,0.1164,-0.3494,-0.3172,-0.1244,-0.1486,-0.0682,0.1406,0.229,0.1244,-0.3328,-1,-1,1,-0.8,-1,-1,-0.5334,-1,0.0606,0.0606,0.606,0.697,0.7878,0.5152,0.8182,0.7576,0.394,0.394,0.6364,0.5758,0.4546,0.4546,0.697,0.8484,1,-0.2122,0.0606,-0.1516,0.5758,0.7272,-0.303,0.303,0.697,0.7576,-0.1212,0.091,-0.3334,0,-0.0606,-0.4546,'13'
-0.6398,-0.2288,0.197,0.3878,1,0.945,0.5848,0.394,0.464,0.32,0.2734,0.3474,0.2436,0.3454,0.5974,0.6208,0.9174,0.981,0.9322,0.7838,0.7522,0.8094,0.9238,0.8474,0.7224,0.5424,0.4004,0.2924,0.2204,0.1166,0.3856,0.3496,-0.6054,-0.139,0.1816,0.3228,1,0.9932,0.722,0.583,0.7488,0.5538,0.592,0.657,0.5762,0.7736,0.5068,0.4708,0.2534,0.24,0.0808,-0.0202,0.0808,0.083,0.121,0.1458,0.0404,-0.148,-0.1412,-0.018,-0.0202,-0.1054,-0.0448,0.0942,-0.574,-0.1774,0.2608,0.3586,0.7332,0.738,0.809,0.6916,0.8532,1,0.973,0.9266,0.5226,0.3366,0.3048,0.0772,0.1702,0.1212,-0.1604,-0.459,-0.3806,-0.2608,-0.0208,-0.0306,-0.2754,-0.2754,-0.2118,-0.1922,-0.1922,-0.1016,0.18,0.2656,-0.289,0.1562,0.8492,0.6984,-0.1562,0.2568,0.7594,0.9426,1,0.7738,-0.0162,-0.0664,-0.2208,-0.0306,-0.052,-0.0556,0.1922,0.2782,-0.0628,-0.1742,-0.1274,0.0054,0.2568,0.2388,0.0126,-0.2854,-0.799,-0.7558,-0.6518,-0.6696,-0.307,-0.4398,-0.1322,0.3294,1,0.8422,-0.5384,-0.361,0.8896,0.933,0.8224,0.357,-0.3018,-0.219,-0.2426,-0.2938,-0.361,-0.1242,-0.0216,0.1164,-0.2504,-0.3452,-0.3372,-0.1676,0.2348,0.2386,-0.1914,-0.495,-0.5818,-0.8738,-0.8106,-0.6568,-0.5502,-0.6094,-0.0064,0.486,1,0.8186,-0.676,-0.3996,0.9438,0.9654,0.7192,0.244,-0.1664,-0.0928,-0.1966,-0.2008,-0.0842,-0.5464,-0.0064,0.1102,-0.1534,-0.2614,-0.2354,-0.0368,0.0626,0.2484,0.4686,-0.2096,-0.4558,-0.6502,-0.5854,-0.4644,-0.4254,-0.3866,0.3782,1,0.9378,0.798,-0.7772,-0.1192,0.4612,0.4042,0.3782,0.0208,0.0466,0.3626,0.2902,-0.0362,0.3782,0.083,0.4404,0.1502,-0.1192,0.0362,0.0104,-0.0414,0.4664,0.5752,0.5752,0.171,-0.0984,-0.316,-0.6994,-0.5492,-0.259,0.0156,-0.76,-0.56,-0.12,0.2,0.6,0.6,0.28,0.16,0.08,0,0.04,0.04,0.08,0.16,0.28,0.4,0.64,0.92,1,0.96,0.84,0.72,0.88,0.96,0.92,0.8,0.48,0.48,0.48,0.36,0.36,0.32,-0.7084,-0.2916,0.0416,0.375,0.5834,0.375,0.4166,0.25,0.1666,0.0834,0.1666,0.2084,0.1666,0.2916,0.4166,0.5834,0.6666,1,0.7916,1,0.8334,0.8334,0.9584,0.7916,0.9584,0.5834,0.625,0.5416,0.2916,0.2916,0.5834,0.5416,-0.155,0.2676,0.7464,0.662,0.6902,0.7184,0.662,0.8028,1,0.9154,0.2394,0.2112,0.2112,0.3522,0.4084,0.2676,0.324,0.0422,0.0422,-0.2394,-0.0422,-0.0422,-0.1268,-0.831,-0.3522,-0.0422,-0.0986,-0.0704,-0.183,-0.3802,-0.2394,-0.0422,-1,-1,-1,-1,-1,-1,-1,-0.9548,-0.9388,-0.9096,-0.149,0.5212,0.782,0.2048,-0.157,-0.242,-0.4522,-0.4228,-0.4628,-0.4974,-0.5984,-0.7314,-0.8458,-0.9016,-0.9228,-0.9414,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9722,-0.9728,-0.8362,0.2978,0.4412,0.0504,-0.2026,-0.2788,-0.5098,-0.7654,-0.7784,-0.796,-0.8178,-0.8614,-0.9096,-0.9428,-0.9572,-0.9552,-0.9632,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9934,-0.9268,-0.88,-0.4668,-0.503,-0.743,-0.7572,-0.6786,-0.7716,-0.8416,-0.8558,-0.7872,-0.8158,-0.81,-0.792,-0.78,-0.8334,-0.82,-0.8068,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6858,-0.3714,1,1,1,-0.4,-0.3714,-0.5714,0.1142,-0.3142,-1,-1,-1,-0.9142,-0.9428,-1,-0.9142,-0.9714,-0.7142,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.9252,0.1332,0.048,-0.0414,-0.108,-0.1438,-0.325,-0.5018,-0.695,-0.7398,-0.5384,-0.5066,0.7058,0.8192,0.7608,0.9552,0.4384,0.1964,1,-0.0188,0.3584,0.585,0.6226,0.434,0.0566,0.3208,0.3584,0.6982,0.7358,1,0.7736,0.9246,0.6982,0.585,0.4716,0.6226,0.5094,0.4716,0.283,0.3208,0.132,0.0188,-0.0188,-0.0944,-0.1698,-0.0944,-0.3584,-0.132,0.2076,0.132,-0.2076,-0.4476,0.0096,0.3904,0.4666,0.181,0.1048,0.162,0.3714,0.7904,1,0.981,0.9428,1,0.7714,0.5428,0.562,0.7524,0.7904,0.7334,0.6,0.5428,0.181,-0.0476,0.0476,-0.0666,-0.562,-0.5048,-0.3524,0.0286,0.162,-0.0476,-0.2,-0.3394,0.1926,0.6514,0.4862,0.211,0.156,0.2478,0.3944,0.6514,0.9816,0.9634,1,0.9816,0.688,0.5412,0.5412,0.6698,0.7982,0.7614,0.578,0.4312,0.3028,-0.0458,0.0276,0.0092,-0.5046,-0.5964,-0.1926,-0.1376,0.0642,0.0276,-0.156,1,-1,-1,1,-0.6,-1,-1,-0.8334,-1,0.1182,0.4194,0.6774,0.6774,0.5914,0.6344,0.8064,1,1,0.7204,0.656,0.7204,1,0.785,0.5268,0.3118,0.656,0.3334,0.6344,0.6774,0.742,0.5484,0.6774,0.3978,0.699,0.699,0.8924,0.6774,0.3548,0.3548,0.3764,-0.2474,'13'
-0.7244,-0.4486,-0.0282,0.0784,0.2516,0.4064,0.332,0.177,-0.1106,-0.163,-0.0382,0.004,-0.004,0.1026,0.2838,0.2838,0.503,0.8048,0.9738,1,0.7746,0.7526,0.7826,0.8854,0.843,0.7484,0.5996,0.493,0.4064,0.2938,0.4366,0.4588,-0.6692,-0.3026,0.0116,0.1414,0.6294,0.554,0.6062,0.4074,0.4492,0.2062,0.3172,0.4744,0.4576,0.4848,0.7528,0.8472,1,0.9644,0.845,0.7508,0.7256,0.7466,0.7654,0.8932,0.8702,0.7822,0.4094,0.2252,0.2566,0.1582,0.156,0.223,-0.5728,-0.1548,0.1344,0.2746,0.8532,0.792,0.7378,0.5142,0.5842,0.5074,0.5594,0.7988,0.939,1,0.9706,0.887,0.5322,0.4192,0.2294,0.1276,0.1638,0.1706,0.1322,0.365,0.365,0.392,0.017,-0.1888,-0.148,-0.2564,-0.2972,-0.27,-0.2936,0.1146,0.8304,0.7646,0.2842,0.6452,0.6076,0.7238,0.5196,-0.011,0.5354,0.9026,1,0.8022,0.5982,0.3878,0.7112,0.8304,0.664,0.4474,0.1962,0.2402,0.438,0.6326,0.7332,0.6106,0.0676,-0.2528,-0.3406,-0.3846,-0.6484,-0.6326,-0.3424,0.0716,0.6926,0.5282,-0.032,0.1568,0.1112,0.3576,0.6134,0.1598,-0.0502,0.3608,0.9056,0.6742,0.4856,0.315,0.72,0.729,0.6134,0.382,0.2846,0.1872,0.4216,0.9422,1,0.6682,0.2298,-0.1538,-0.1902,-0.3364,-0.6012,-0.79,-0.1854,0.211,0.789,0.52,0.2072,-0.091,0.1418,0.88,1,0.2036,-0.44,0.5636,0.8146,0.76,0.5818,0.5346,0.7128,0.949,0.829,0.5054,0.2364,0.2182,0.5964,0.891,0.9128,0.7236,0.0872,-0.2328,-0.3564,-0.56,-0.8072,-0.5746,0.1724,0.6764,0.3952,0.2466,0.1194,-0.4642,-0.2148,0.114,0.2732,-0.4324,-0.6976,0.1406,0.5438,0.7348,0.1246,0.2148,0.565,0.5226,0.5968,0.4164,-0.0026,0.0876,0.13,0.809,1,0.6658,0.2838,-0.4908,-0.4748,-0.443,-0.7772,-0.6552,-0.814,-0.3954,-0.1628,0.4418,0.5348,0.1628,0.3488,-0.0698,-0.1162,-0.0698,-0.0232,-0.1628,-0.1162,0.0232,0.2558,0.2094,0.3954,0.5814,1,1,0.7674,0.6744,0.721,0.721,0.907,0.8604,0.5348,0.4884,0.3954,0.4418,0.4418,0.4884,-0.6924,-0.3846,0.1282,0.282,0.8462,0.8974,0.5898,0.4358,0.0256,0.1282,0.1794,-0.0256,0.077,0.3846,0.4872,0.3846,0.3334,0.8462,0.7948,0.9488,0.7436,0.8462,0.9488,1,0.7948,0.6924,0.8462,0.7948,0.3846,0.5898,0.7948,0.641,-0.6216,-0.1622,0.2162,0.3784,0.5676,0.6216,0.7298,0.5136,0.3784,0.2702,0.7298,0.7298,1,0.7028,0.5406,0.1352,0.1082,0.2162,-0.1082,-0.2702,-0.5136,-0.5406,-0.3784,-0.2162,-0.2972,-0.1622,-0.2432,-0.3244,-0.5946,-0.7028,-0.6756,-0.3514,-1,-1,-1,-1,-1,-1,-0.8982,-0.912,-0.8796,-0.713,-0.551,0.2268,0.5092,0.6296,0.8982,0.676,0.3658,0.2314,0.0788,-0.1158,-0.2732,-0.5138,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.961,-0.9626,-0.888,-0.7192,-0.56,0.4748,0.6144,0.4822,0.3686,-0.0958,-0.569,-0.6428,-0.681,-0.7394,-0.8052,-0.8864,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8754,-0.9068,-0.9568,-0.63,-0.6868,-0.3062,-0.2462,-0.4508,-0.5786,-0.6616,-0.6658,-0.7144,-0.6944,-0.73,-0.7858,-0.86,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3142,-0.8286,0.3428,0,1,1,-0.8572,-0.6572,-0.4858,-0.0286,-0.2286,-0.7714,-1,-0.9142,-0.4572,-0.7428,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.9194,0.5552,0.5422,0.5448,0.513,0.4548,0.384,0.247,-0.0528,-0.4544,-0.4624,-0.5066,0.6588,-0.2962,-0.34,0.0844,0.6858,0.7768,0.0416,-0.2444,-0.0666,0.1112,0.2444,0.4222,0.2444,0.5556,0.5112,0.8222,0.8666,0.9112,1,0.9556,0.8666,0.8222,0.7334,0.7334,0.7778,0.7334,0.5112,0.3778,0.3334,0.0222,0.3334,0.1556,0.0222,0.0222,0.0666,0.0222,-0.0222,-0.2444,-0.4222,-0.5094,0,0.4716,0.3774,-0.0378,0.0754,0.151,0.1886,0.6416,1,0.9434,0.9246,0.9812,0.868,0.6038,0.585,0.717,0.7358,0.6982,0.3962,0.283,0.1132,0.0378,0.2452,0.1886,-0.0754,-0.283,-0.2452,-0.3018,-0.151,-0.0754,-0.2076,-0.5,0.2142,0.8334,0.3096,-0.0476,0.0952,0.1428,0.262,0.2858,1,0.9762,0.8572,0.6666,0.8096,0.3334,0.4286,0.619,0.5238,0.6428,0.262,-0.0952,-0.262,-0.1666,-0.0238,0.0714,-0.3334,-0.3334,-0.4048,-0.4762,-0.1666,0,-0.1666,0.3328,-1,-1,1,-1,-1,-0.8,-0.8334,-1,0.9166,0.8612,0.4166,0.2222,0.4166,0.1666,0.8612,0.9166,0.5,0.6666,0.8612,0.5834,1,0.6112,0.2778,0.4444,0.4166,-0.2778,0.0834,0.0834,0.0556,0.5278,0.4722,0.4444,0.2222,0.8056,0.75,0.3612,-0.3612,-0.3056,0.0834,-0.6666,'14'
-0.6552,-0.2626,0.1052,0.3086,0.7206,0.6764,0.4324,0.259,0.0646,-0.1336,-0.0238,0.1582,0.0504,0.0982,0.2838,0.3794,0.5596,0.8798,1,0.9646,0.871,0.726,0.8922,0.961,0.9222,0.8496,0.5278,0.4252,0.4358,0.2466,0.2714,0.3934,-0.5638,-0.1036,0.2132,0.3366,1,0.9642,0.741,0.5298,0.5258,0.3286,0.2948,0.5598,0.518,0.6474,0.9742,0.9502,0.9224,0.765,0.8108,0.4282,0.4562,0.5816,0.6294,0.8726,0.7968,0.755,0.4502,0.3844,0.2848,0.2968,0.3824,0.1534,-0.3924,0.0924,0.5924,0.6334,0.677,0.8282,0.9384,0.6436,0.4872,0.259,0.4512,0.759,1,0.7692,0.7744,0.5076,0.4154,0.3436,0.223,0.0308,0.1642,0.1256,0.2924,0.6718,0.6384,0.2512,0.0744,-0.0358,-0.277,-0.2384,-0.1358,-0.3052,-0.2054,0.2624,1,0.907,-0.0194,0.4362,0.3014,0.4512,0.2774,0.0674,-0.4452,-0.1814,0.5472,0.6522,-0.1484,-0.0344,0.3044,0.4482,0.0914,-0.1934,-0.1304,-0.4662,-0.1934,0.1904,0.1904,-0.1004,-0.5922,-0.7242,-0.7872,-0.7392,-0.7302,-0.6912,-0.1852,0.2444,1,0.8874,-0.2386,0.2238,0.04,0.0814,0.4312,0.1792,-0.6888,-0.5318,0.1644,0.203,-0.3274,-0.2444,-0.2386,-0.0608,-0.2444,-0.2592,-0.2444,-0.4192,-0.277,-0.0696,-0.1496,-0.2356,-0.514,-0.7866,-0.7482,-0.9496,-0.9378,-0.9704,-0.1396,0.299,1,0.8604,-0.4252,-0.0034,-0.0498,0.0498,0.3388,-0.02,-0.6014,-0.505,-0.3422,-0.0598,-0.0066,-0.1828,0.0166,0.1428,0.2292,0,-0.3986,-0.3356,-0.1064,0.0996,0.083,-0.0466,-0.1162,-0.5946,-0.774,-0.7076,-0.7642,-0.7674,-0.067,0.7368,0.3444,0.3876,-0.622,-0.2106,-0.1962,-0.0526,0.0766,-0.1578,-0.4546,0.0478,0.0478,0.1388,0.177,-0.024,0.5454,0.6698,0.7894,0.3924,0.4928,0.1578,-0.0526,0.6412,1,0.9856,-0.0766,-0.2536,-0.3158,-0.4162,-0.4306,-0.4402,-0.9048,-0.1428,-0.0952,0.238,0.4286,0.3334,0.4286,0.0952,0.0952,-0.1428,-0.0952,0.0476,0.0952,0.1428,0.1428,0.2858,0.619,0.7142,0.9048,0.9524,0.9524,1,0.8572,0.8572,0.9048,0.8096,0.7142,0.381,0.2858,0.381,0.4762,0.2858,-0.56,-0.2,0.24,0.28,0.12,0.4,0.44,0.28,0.04,-0.12,-0.04,0.2,0.16,0.12,-0.04,0.28,0.52,0.6,0.92,1,0.76,0.6,0.84,0.64,0.8,0.56,0.48,0.52,0.52,0,0.24,0.36,-0.3714,0,0.4572,0.5714,0.8286,0.7142,0.7428,0.5428,0.3714,0.1142,0.4572,0.8,1,0.7142,0.5714,0.4,0.1428,0.0572,0.1428,0.0286,0.0858,0.0572,0.2572,0.4858,0.4,0.0572,0.0572,-0.2286,-0.6,0,-0.0286,-0.6572,-1,-1,-1,-1,-1,-1,-1,-1,-0.9418,-0.9352,-0.2234,0.6182,0.9418,0.4952,0.0388,-0.11,-0.1068,-0.0648,-0.042,-0.1942,-0.5016,-0.78,-0.919,-0.9158,-0.9514,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.9488,0.2106,0.7884,0.59,0.2526,-0.122,-0.604,-0.67,-0.6776,-0.6616,-0.7054,-0.8136,-0.903,-0.946,-0.9478,-0.959,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.8868,-0.4568,-0.3174,-0.5264,-0.6414,-0.6826,-0.73,-0.8764,-0.865,-0.8364,-0.7964,-0.7526,-0.7076,-0.84,-0.8534,-0.96,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,-0.8,-0.3428,0.7428,0.8,-0.8286,-0.9428,-1,-0.9142,-0.8572,-0.9714,-0.9714,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.7448,0.6064,0.5932,0.5674,0.511,0.4606,0.3498,0.152,-0.0872,-0.3256,-0.3574,-0.52,0.9412,0.711,0.754,0.6654,0.7232,0.9274,1,-0.2962,0.1112,0.2962,0.3704,0.1482,0.1852,0.2592,0.3334,0.7408,0.7778,1,1,0.926,0.8148,0.6666,0.5556,0.6666,0.6666,0.6666,0.5186,0.4074,0.2592,0,0.2222,-0.1112,-0.2222,-0.4814,-0.2222,0,0.1112,0.037,-0.3704,-0.2808,0.1754,0.4912,0.3334,-0.0526,0.0526,0.1228,0.3158,0.579,0.8772,1,0.965,0.9474,0.772,0.6316,0.5614,0.6666,0.8246,0.7368,0.6316,0.386,0.2456,0.2456,0.2456,-0.0702,-0.5088,-0.4912,-0.1052,0.1052,0.035,0.1052,-0.3158,-0.1966,0.1794,0.641,0.47,-0.0256,-0.0428,0.0086,0.1282,0.453,1,0.8462,0.829,0.9316,0.7606,0.4872,0.5898,0.6068,0.812,0.829,0.641,0.1624,0.4358,0.3846,0.265,0.1282,-0.3846,-0.4358,0.0598,0.1966,0.2992,0.2992,-0.1112,1,-1,-1,1,-0.8,-1,-1,-0.8334,-1,-0.1364,-0.1364,0.091,0.1364,0.5682,0.3864,0.5,0.7272,0.4546,0.591,0.5454,0.5454,1,0.8636,0.2272,0.2728,0.2272,-0.0228,0.7046,0.4546,0.591,0.6136,0.2728,0.4318,0.5682,0.5454,0.75,0.4772,0.1136,0.1818,-0.4318,-0.8636,'14'
-0.7082,-0.2658,0.1436,0.3342,0.7788,0.8564,0.6824,0.7364,1,0.88,0.2542,0.0894,0.0448,-0.0942,-0.1552,-0.3036,-0.3248,-0.1812,0.1082,0.2212,0.1482,0.0612,-0.2752,-0.327,-0.3506,-0.52,-0.4942,-0.3082,-0.3012,-0.28,-0.04,0.1788,-0.573,-0.1074,0.3896,0.544,0.901,0.9372,0.8408,0.7708,1,0.8046,0.0664,-0.0084,0.0012,-0.228,-0.3268,-0.3076,-0.269,-0.1652,0.0592,0.0978,0.0928,-0.0084,-0.4114,-0.5706,-0.4596,-0.5296,-0.602,-0.4234,-0.4066,-0.2932,0.035,0.3052,-0.5712,-0.0788,0.5352,0.6708,1,0.9806,0.9944,0.8284,0.9502,0.5048,0.1868,0.0042,-0.1396,-0.3056,-0.2864,-0.2392,-0.1756,-0.1978,0.0402,0.3914,0.5076,-0.007,-0.527,-0.538,-0.5518,-0.4828,-0.574,-0.491,-0.2366,-0.1286,0.1066,0.585,-0.5406,-0.1242,0.572,0.6406,0.8688,0.8516,1,0.8574,0.8316,0.0842,-0.1526,-0.1212,-0.4808,-0.4864,-0.3838,-0.5206,-0.4608,-0.435,-0.127,0.1012,0.0756,-0.2182,-0.6776,-0.5406,-0.5492,-0.6292,-0.592,-0.4608,-0.4236,-0.2212,0.1326,0.4636,-0.4512,-0.0762,0.683,0.6524,0.6768,1,0.9482,0.7226,0.3506,-0.2804,-0.317,-0.5214,-0.5732,-0.5946,-0.5792,-0.6586,-0.5426,-0.5762,-0.5488,-0.3292,-0.2622,-0.4696,-0.6524,-0.5824,-0.6554,-0.5762,-0.6372,-0.622,-0.6616,-0.503,0.0732,0.2896,-0.4758,-0.0122,0.6364,0.5546,0.5696,1,0.8454,0.2636,-0.206,-0.4334,-0.6758,-0.6606,-0.503,-0.4546,-0.7122,-0.6788,-0.591,-0.9182,-0.6636,-0.709,-0.6364,-0.594,-0.6122,-0.6818,-0.5666,-0.5696,-0.6304,-0.903,-0.8394,-0.697,-0.3304,-0.1818,-0.4598,-0.0648,0.5704,0.4376,0.5576,1,0.782,0.1406,-0.3048,-0.5292,-0.7884,-0.6176,-0.6398,-0.7788,-0.7694,-0.6872,-0.5166,-0.6208,-0.7662,-0.8704,-0.763,-0.4598,-0.504,-0.5672,-0.4534,-0.6556,-0.7504,-0.6682,-0.6272,-0.6304,-0.4028,-0.229,-0.8696,-0.0434,0,0.4782,0.5652,0.826,0.9566,0.5218,1,0.913,0.4782,0.5218,0.0434,0.174,0.087,-0.2174,0.0434,-0.0434,0.3914,0.5218,0.5652,0.5218,0.2174,0.2174,0.087,0.0434,0,0.174,0.2174,0.2608,0.4782,0.7392,-0.6734,-0.2244,0.1836,0.347,0.3878,0.7552,0.7142,0.7142,1,0.9592,0.3062,0.3062,0.1428,0.0612,0.102,-0.2654,-0.1428,-0.0204,0.1428,0.4286,0.551,0.3878,0.102,-0.102,-0.0612,-0.0612,0.0204,0.0612,0.0204,0.1836,0.3062,0.347,-0.5696,-0.114,0.5444,0.6962,1,0.9746,0.9746,0.7974,0.9494,0.4936,0.1392,0.0886,-0.038,-0.443,-0.2912,-0.2912,-0.3164,-0.1898,-0.038,0.3924,0.443,-0.114,-0.4936,-0.5444,-0.6962,-0.595,-0.4178,-0.4178,-0.2152,0.0126,0.1392,0.595,-1,-1,-1,-1,-1,-1,-1,-0.9574,-0.9634,-0.939,-0.2622,0.5468,0.8048,0.5834,0.307,0.2196,0.0894,0.0182,-0.1444,-0.1952,-0.3008,-0.5142,-0.75,-0.8394,-0.9308,-0.9452,-0.9594,-0.9532,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9676,-0.9692,-0.9346,-0.1818,0.7856,0.8582,0.4786,0.2096,-0.0254,-0.0944,-0.2552,-0.4234,-0.48,-0.5572,-0.7084,-0.856,-0.9178,-0.9288,-0.9464,-0.9544,-0.9544,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9558,-0.8868,-0.9268,-0.68,-0.6146,-0.6128,-0.6092,-0.62,-0.6528,-0.6784,-0.74,-0.8418,-0.8734,-0.8734,-0.8768,-0.9,-0.8934,-0.72,-0.88,-0.8468,-0.8734,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.0572,-0.9142,1,1,1,-0.8858,-0.8286,-1,-0.8858,-0.9142,-0.9428,-1,-0.8858,-0.9142,-0.8286,-0.6286,-0.6572,-0.6,-0.9428,-0.8858,0.5714,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.685,-0.7122,-0.7166,-0.765,-0.7958,-0.7982,-0.8176,-0.7786,-0.7202,-0.506,-0.6134,0.3764,0.0958,0.25,0.7436,0.9178,1,0.5666,0.2342,0.2572,0.44,0.6458,0.5542,0.7258,0.92,0.4742,0.5886,0.7714,1,0.9086,0.7828,0.6,0.5428,0.6,0.5428,0.4058,0.4742,0.7028,0.4858,0.36,0.4058,0.7142,0.6686,0.3486,0.3142,0.4514,0.2572,0.0514,0.12,-0.2686,-0.172,-0.07,0.1338,0.0318,0.2102,0.5924,0.5796,0.172,0.4904,0.5032,1,0.7834,0.7452,0.5414,0.1082,0.1848,0.656,0.6942,0.1848,0.2102,0.2356,-0.223,-0.121,0.0574,0.1464,0.1464,0.2612,0.0828,-0.121,-0.0064,0.0192,-0.465,-0.5862,0.1188,0.9924,0.862,0.7702,0.7164,0.2796,0.1878,0.0344,0.5172,0.6934,0.18,0.1264,-0.0344,0.0882,0.249,1,0.9616,0.8544,0.3334,0.0882,0.203,-0.0422,-0.157,-0.2796,-0.341,-0.1494,0.0268,0.0652,0.1954,0.387,-0.1878,-0.997,1,-1,-1,-1,-1,-1,-1,-1,-0.1604,-0.1852,0.679,0.7778,0.7038,0.3334,0.4074,0.3334,0.7284,0.8766,0.7284,0.7038,0.3334,0.1852,0.5556,1,0.9754,0.3828,0.7284,0.6544,0.4568,0.605,0.9754,0.9506,0.6296,0.6296,0.8518,0.8272,0.9506,1,0.5062,-0.0864,'15'
-0.6268,-0.1144,0.3378,0.4878,1,0.9754,0.7194,0.7766,0.9456,0.763,0.5586,0.2262,0.1634,-0.2534,-0.3624,-0.2426,-0.2098,-0.1526,-0.2862,0.2452,0.4524,0.2344,-0.1798,-0.455,-0.4796,-0.5422,-0.5668,-0.4742,-0.5204,-0.5286,-0.1716,-0.0054,-0.5514,-0.1082,0.4446,0.575,0.9688,0.9556,0.708,0.8722,1,0.6192,0.2282,0.116,0.0066,-0.3482,-0.562,-0.5384,-0.2152,-0.2568,-0.4054,0.2856,0.3976,-0.0274,-0.262,-0.601,-0.541,-0.5594,-0.6428,-0.6532,-0.6246,-0.6844,-0.4002,-0.09,-0.5894,-0.2174,0.3706,0.4484,0.8154,0.7326,0.6354,0.9806,1,0.2564,0.0256,0.0012,-0.2224,-0.2272,-0.4824,-0.4338,-0.3292,-0.2516,-0.2928,-0.0572,-0.006,0.0304,-0.4314,-0.6064,-0.5286,-0.5358,-0.514,-0.6696,-0.5092,-0.4484,-0.1568,0.0596,-0.5752,-0.2176,0.4312,0.4724,0.7348,0.6628,0.7426,1,0.8996,0.0296,-0.1326,-0.1558,-0.3102,-0.4594,-0.4362,-0.4904,-0.4878,-0.4518,-0.1866,-0.0012,0.1866,-0.0398,-0.3668,-0.4852,-0.5212,-0.4826,-0.6138,-0.5366,-0.4234,-0.2922,-0.1248,0.0604,-0.4474,-0.0612,0.7332,0.73,0.8368,1,1,0.9624,0.708,0.0676,-0.2434,-0.3626,-0.4756,-0.5668,-0.6138,-0.6358,-0.5636,-0.529,-0.3846,-0.0392,-0.077,-0.1052,-0.4098,-0.4128,-0.5824,-0.6076,-0.6452,-0.642,-0.4222,-0.369,-0.0676,0.4128,-0.442,0.005,0.7278,0.6504,0.6606,1,0.8622,0.6034,-0.0252,-0.2572,-0.479,-0.5596,-0.4824,-0.5092,-0.6874,-0.8488,-0.647,-0.5462,-0.6706,-0.5058,-0.1966,-0.3042,-0.5462,-0.4622,-0.4992,-0.6336,-0.7984,-0.647,-0.5764,-0.4016,0.0958,0.1362,-0.3904,0.0136,0.6404,0.5342,0.5,1,0.8048,0.2466,-0.2706,-0.5958,-0.661,-0.5342,-0.459,-0.5548,-0.7636,-0.7054,-0.5924,-0.5788,-0.863,-0.7364,-0.5068,-0.411,-0.428,-0.4076,-0.5136,-0.6062,-0.75,-0.7294,-0.7602,-0.274,-0.0308,-0.1028,-0.6364,-0.0304,0.0304,0.5152,0.6364,0.8182,0.8788,0.8788,1,0.8788,0.697,0.4546,0.1516,0.2122,-0.0304,0.0304,0.091,0.1516,0.3334,0.4546,0.697,0.5758,0.3334,0.2122,0.091,-0.091,0.0304,0.091,0.091,0.2122,0.5152,0.7576,-0.628,-0.2558,0.2094,0.5814,1,0.9534,0.7674,0.907,0.907,0.8604,0.814,0.3954,0.3024,0.0232,-0.0698,-0.1162,-0.0698,-0.0698,0.0698,0.5348,0.5814,0.1628,-0.3488,-0.3024,-0.2558,-0.5348,-0.6744,-0.3488,-0.3024,-0.4884,-0.2558,-0.0232,-0.3522,0.2112,0.7746,0.7184,0.6902,1,0.9154,0.7746,0.2112,-0.183,-0.5774,-0.5492,-0.4366,-0.8592,-0.7184,-0.662,-0.5492,-0.2394,-0.3522,-0.324,-0.0704,-0.2394,-0.493,-0.2112,-0.2676,-0.7184,-0.7184,-0.5212,-0.324,-0.3522,0.1268,0.3522,-1,-1,-1,-1,-1,-1,-0.9576,-0.9646,-0.9664,-0.961,-0.9274,0.6602,0.6884,0.4938,0.315,0.1486,-0.0124,-0.0884,-0.239,-0.393,-0.4956,-0.623,-0.761,-0.8514,-0.9168,-0.9274,-0.9328,-0.9628,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.967,-0.967,-0.9692,-0.9554,-0.8842,0.7524,0.7084,0.5208,0.4432,0.266,0.0806,-0.1744,-0.425,-0.5634,-0.6512,-0.7422,-0.8512,-0.9026,-0.9414,-0.9084,-0.9114,-0.9458,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.866,-0.97,-0.83,-0.9468,-0.7068,-0.7292,-0.6456,-0.5782,-0.691,-0.6638,-0.6438,-0.7128,-0.8182,-0.9184,-0.9434,-0.9084,-0.9068,-0.8934,-0.9534,-0.89,-0.7768,-0.8934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.1428,-0.9428,-0.8286,-0.4858,1,1,-0.7714,-0.8858,-0.9428,-1,-0.8858,-0.8858,-0.9428,-0.8572,-0.9714,-0.9428,-0.8286,-0.8286,-0.8286,-0.4858,-0.5714,-0.4286,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.8478,-0.843,-0.8314,-0.7594,-0.746,-0.7172,-0.7144,-0.724,-0.6672,-0.4724,-0.5866,0.3412,-0.8696,-0.1604,0.7736,0.9142,0.9744,0.6834,0.0328,0.0422,0.1268,0.399,0.6808,1,0.8968,0.7276,0.3896,0.5586,0.709,0.6432,0.878,0.568,0.277,0.1362,0.4084,-0.1644,0.4366,0.277,0.4178,0.4554,0.4178,0.3052,0.3334,0.3146,0.399,0.5586,-0.0046,0.23,-0.0422,-0.6056,-0.045,-0.0786,0.0674,0.5956,0.4606,0.5506,0.8314,0.809,0.2472,0.1798,0.4158,0.618,1,0.4158,0.1574,0.6854,0.7416,0.2808,0.2134,0.146,0.0786,0.2922,0.4606,0.3932,0.3708,0.2696,0.6292,-0.1012,0,0.1236,-0.2022,-0.6068,-0.1692,-0.177,0.4538,0.4,0.8,0.8308,0.5616,0.2462,0.4692,0.4154,0.6154,0.4692,0.5,0.3076,0.3692,0.423,0.9692,0.7616,1,0.9308,0.8076,0.3924,0.2384,0.1462,0.0924,-0.0154,-0.0154,0,-0.1308,0.0692,0.1384,-0.4692,-0.975,1,-1,-1,-1,-1,-0.8,-1,-1,-0.4728,-0.1818,0.309,1,0.491,-0.0728,-0.1272,-0.0546,-0.0546,0.2546,0.091,0.2182,0.0728,0,0.1272,0.4364,-0.0182,0.109,0.2182,0.2364,-0.0546,-0.1636,0.0364,0.4364,0.2364,0.0546,0.3636,0.5818,0.6364,0.5272,0.091,-0.5454,'15'
-0.4206,0.3104,0.1172,0.2828,-0.1586,-0.6138,-0.0344,-0.1586,-0.5034,-0.6138,-0.8344,-0.3518,-0.338,-0.4344,-0.7104,-0.7518,-0.3242,-0.2276,-0.6,-0.462,-0.0896,0.062,0.3794,0.3794,0.8758,1,0.5034,-0.1862,0.0068,-0.1862,-0.4206,-0.4896,-0.1352,0.473,0.2162,0.1622,-0.4054,-0.2838,0.3378,0.2432,-0.3244,-0.3784,-0.2702,-0.4864,-0.3514,-0.081,-0.3244,-0.3514,-0.3918,-0.419,-0.2432,0.3378,0.6216,0.7838,1,0.6892,0.7702,0.8108,0.7838,0.1892,-0.0136,-0.081,-0.3784,-0.1486,-0.4688,-0.0938,-0.1094,-0.0938,-0.4532,-0.1562,-0.1562,-0.1094,-0.1562,-0.4532,-0.4532,0,-0.1876,-0.2032,-0.5782,-0.5782,-0.7968,-0.5156,-0.4218,-0.125,0.4688,0.8126,1,0.7032,0.8282,0.7656,0.5626,0.5,-0.1562,-0.2812,-0.3282,-0.1094,-0.546,-0.1064,-0.0496,-0.078,-0.3476,-0.4042,-0.1064,0.1064,0.0922,-0.844,-0.3192,0.007,0.0354,-0.305,-0.0638,-0.0922,-0.007,-0.0212,-0.0354,0.39,0.688,1,0.8724,0.5744,0.5178,0.8582,0.688,0.3192,-0.2056,-0.1632,-0.3758,-0.0354,-0.5634,-0.5492,-0.676,-0.4788,-0.4084,-0.2816,-0.1408,0.014,-0.2394,-0.3802,-0.4084,-0.0282,-0.2254,-0.3098,0.155,-0.0422,-0.3662,0.324,0.5492,0.6902,0.7606,0.7606,0.3802,0.493,0.6056,1,0.7464,0.4226,0.0986,-0.0846,0.0986,-0.0564,-0.5328,-0.7664,-0.8102,-0.6204,-0.4598,-0.2116,-0.2554,0.0364,-0.0802,-0.27,-0.2992,-0.2408,-0.0948,0.0802,-0.0364,-0.27,-0.197,0.6204,0.7664,1,0.7664,0.5036,0.3722,0.5036,0.5912,0.416,0.4598,0.4452,0.5182,-0.1094,0.2262,0.4598,-0.2718,-0.6086,-0.5434,-0.087,0.1086,0.3152,0.0434,0.1086,0.0218,-0.0544,0.0652,0.0544,0.1848,0.0652,0,0.25,0.5,0.8804,0.8478,0.6086,0.424,0.6086,0.576,1,0.9456,0.6086,0.663,0.5978,0.6414,0.2826,0.2282,0.5544,-0.05,0.5,0.5,0.5,0.2,-0.25,0.15,0.2,0.05,-0.05,-0.6,-0.4,-0.05,-0.1,-0.9,-0.2,0.05,0.05,0.05,0.25,0.35,0.35,0.5,0.65,0.65,1,0.8,0,0.3,0.3,-0.3,-0.25,-0.0588,0.5294,0.4706,0.5294,0.2352,0.0588,0.2942,0.1176,-0.2352,-0.2352,-0.0588,0.4118,0.353,-0.0588,-0.0588,-0.353,0.2942,0.2352,-0.5882,0.1764,0.4706,0.5294,0.7058,0.7058,1,0.8824,0.5294,0.5882,0.1764,-0.2942,-0.2942,-0.2942,-0.585,-0.2452,-0.3962,-0.283,-0.4716,-0.6982,-0.6982,0.0188,0.0566,-0.849,-0.6226,-0.0188,-0.132,-0.0566,-0.0566,-0.283,-0.5472,-0.2452,0.0188,0.5472,0.6604,0.8868,0.2452,0.3962,0.1698,1,0.8868,0.2452,0.2076,-0.4716,-0.3584,-0.2076,1,1,1,1,1,1,1,1,1,1,1,0.9124,1,0.635,0.1386,-0.2554,-0.2846,-0.3868,-0.6642,-0.6642,-0.7664,-0.6496,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.8028,0.6338,0.8404,0.6996,0.2488,0.0516,-0.0328,-0.183,-0.2488,-0.23,-0.2864,-0.1924,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.0934,0.0432,-0.0868,-0.0234,-0.2634,-0.4068,-0.4334,-0.2334,-0.5634,-0.6934,-0.77,-0.8534,-0.7734,-0.8,-0.6668,-0.6268,-0.6668,-0.68,-0.5468,-0.77,-0.86,-0.72,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,-0.9428,-1,-1,-1,-0.9142,-0.8572,-0.7428,-0.6572,-0.6858,-1,-1,-1,-0.8858,-0.9142,-0.8858,-0.9142,-0.7428,-0.7714,-0.8858,-0.8858,-0.0286,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.1232,0.1648,0.1648,0.2134,0.203,0.2792,0.2642,0.316,0.3938,0.6634,0.7002,0.6066,0.6066,0.5754,0.6016,0.6258,0.5814,0.6232,0.578,0.4174,-0.5334,-0.6942,0.7276,0.5962,0.7652,0.8874,0.324,-1,0.0472,0.401,0.3882,-0.2796,-0.3544,-0.2084,-0.2072,-0.2142,-0.0122,0.2832,0.7302,1,0.7922,0.9172,0.868,0.6602,0.875,0.9614,0.8564,0.4384,0.5284,0.1488,0.1816,0.3474,0.2808,-0.004,0.4138,0.233,-0.059,-0.0952,-0.1196,-0.2878,0.0314,0.4644,0.3306,-0.3958,-0.2782,-0.2188,-0.2074,-0.2358,-0.1924,0.101,0.5238,0.9292,1,0.9304,0.7568,0.5192,0.6528,0.5694,0.5716,0.7338,0.6014,0.413,0.1958,0.2244,-0.085,0.2324,0.2758,-0.0326,-0.0018,-0.1798,-0.1994,-0.325,0.1306,0.5212,0.2138,-0.2994,-0.2902,-0.2164,-0.2138,-0.2322,-0.1846,-0.062,0.3734,0.9486,1,0.847,0.4432,0.248,0.4142,0.1002,0.1424,0.4684,0.4974,0.5422,0.1094,0.0898,-0.2718,-0.0778,0.008,-0.1134,-0.07,-0.1544,-0.1926,-0.401,1,-1,1,-1,1,-1,-1,1,-1,-0.0852,-0.2128,0.4256,0.2978,0.1702,0.1914,0.3618,0.2554,0.7234,0.7022,0.4042,0.5532,0.6808,0.4256,0.383,0.383,0.468,0.3618,0.4042,0.5744,1,0.4468,0.3192,0.234,0,-0.0852,0,0.0852,0.1914,0,0.0426,-0.149,'16'
-0.3496,-0.2026,-0.3318,-0.2828,-0.519,-0.6792,-0.8352,-0.8486,-0.893,-0.9242,-0.9822,-0.7372,-0.6704,-0.8262,-0.8262,-0.7684,-0.5278,-0.5456,-0.4654,-0.1492,0.167,0.421,0.7684,0.764,0.5144,0.8262,0.8396,0.9956,1,0.7996,0.6748,0.5456,-0.6666,-0.0878,-0.1492,0.1432,-0.0526,-0.4298,-0.6258,-0.535,-0.7106,-0.7106,-0.5322,-0.5176,-0.421,-0.5264,-0.465,-0.5906,-0.424,-0.2836,-0.1638,0.076,0.196,0.69,0.7836,0.9796,0.9182,0.6842,0.8158,1,0.8654,0.7046,0.5936,0.6754,-0.5362,-0.0056,-0.1166,0.0584,-0.1666,-0.375,-0.6028,-0.5638,-0.75,-0.7806,-0.5278,-0.6028,-0.5222,-0.5334,-0.4138,-0.6528,-0.5388,-0.1888,-0.2138,-0.0222,0.1916,0.4834,0.825,1,0.7638,0.6638,0.9694,0.9888,0.5916,0.5362,0.7166,0.5888,-0.4806,0.0612,0.187,0.3516,-0.0742,-0.5452,-0.6452,-0.7516,-0.729,-0.7096,-0.7,-0.4516,-0.4838,-0.6096,-0.6904,-0.6162,-0.4838,-0.5194,-0.3388,-0.1646,0.1162,0.3646,0.7064,0.9646,1,0.7194,0.9484,0.8936,0.7516,0.558,0.4904,0.5388,-0.5462,-0.1496,0.284,0.3478,-0.4016,-0.6034,-0.768,-0.6874,-0.6706,-0.8152,-0.6672,-0.5596,-0.6034,-0.6672,-0.6436,-0.6504,-0.553,-0.4622,-0.4218,-0.2874,0.0656,0.3916,0.795,0.832,0.8958,0.9664,1,0.916,0.758,0.4992,0.5362,0.4958,-0.5686,-0.2512,0.3158,0.2696,-0.6548,-0.738,-0.7782,-0.8152,-0.7904,-0.772,-0.701,-0.6332,-0.6456,-0.7072,-0.6024,-0.701,-0.6486,-0.473,-0.433,-0.248,-0.0878,0.3528,0.547,1,0.9198,0.852,0.812,0.6486,0.5316,0.245,0.1926,0.242,-0.4866,-0.0492,0.6652,0.567,-0.7232,-0.5268,-0.741,-0.808,-0.9018,-0.8214,-0.7054,-0.5224,-0.5402,-0.567,-0.5714,-0.6964,-0.5268,-0.5134,-0.634,-0.2366,-0.0312,0.0938,0.7232,0.9196,1,0.9376,0.9554,0.7098,0.192,-0.0358,-0.1742,-0.1474,-0.0698,-0.1162,-0.3954,-0.3024,-0.2558,-0.3488,-0.3488,-0.1162,-0.1162,-0.3954,-0.4884,-0.4418,-0.0698,-0.1162,-0.3024,-0.3954,-0.2094,-0.2558,0.0698,-0.0232,-0.1628,0.3024,0.2558,0.3488,0.5348,0.628,0.4884,0.721,0.907,1,0.9534,0.907,0.5384,0.4358,-0.4358,-0.2308,-0.1794,-0.0256,-0.1282,-0.3846,-0.4358,-0.282,-0.3334,-0.1794,-0.1282,-0.282,-0.0256,-0.282,0.077,-0.0256,-0.0256,0.3334,0.7948,0.6924,0.9488,0.8974,0.8462,1,1,1,0.9488,0.8974,0.8974,0.4358,-0.5294,-0.0118,-0.1764,-0.0118,-0.247,-0.4824,-0.8118,-0.7648,-0.8352,-0.8824,-0.647,-0.553,-0.4588,-0.6236,-0.6236,-0.7412,-0.6,-0.2942,-0.3412,-0.0588,0.1764,0.4588,0.7882,0.953,0.6236,0.7648,0.9764,1,0.4824,0.4352,0.6942,0.5764,-1,-1,-1,-1,-1,-0.9036,-0.9036,-0.11,1,1,-0.39,0.3166,0.3716,0.2156,0.0504,0.0046,0.1238,0.1056,0,-0.0276,-0.0734,-0.2064,-0.5092,-0.5138,-0.7386,-0.867,-0.8944,-0.8854,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.928,-0.9296,-0.1398,0.6132,0.7074,0.012,-0.3062,0.351,0.888,0.5988,0.0584,-0.0744,-0.0712,-0.0392,-0.1494,-0.3558,-0.5924,-0.7138,-0.7458,-0.7954,-0.8768,-0.8816,-0.8626,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.8868,-0.7134,-0.51,-0.3468,-0.28,-0.758,-0.068,0.126,0.248,0.044,-0.132,-0.178,-0.0638,-0.2564,-0.4474,-0.74,-0.88,-0.8068,-0.7,-0.8,-0.7034,-0.6834,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,-0.2572,0.4858,1,1,-0.9142,-1,-0.7714,-0.9714,-1,-1,-0.8,-0.6572,-0.6572,-0.9714,-0.8572,-0.9142,-0.8572,-0.9428,-0.9714,-1,-1,-1,-1,-1,-0.6844,-0.6046,-0.4822,-0.4438,-0.3922,-0.3282,-0.2206,-0.072,-0.0962,-0.1652,0.8278,0.9026,0.8858,0.9542,1,1,1,1,1,1,-0.68,0.2236,-0.052,-0.1718,-0.2054,-0.5252,-8e-04,1,0.0806,-0.0672,-0.349,-0.3222,-0.1946,0.2752,0.3892,0.6912,0.8054,0.8792,1,0.6578,0.7986,0.7584,0.5302,0.51,0.8188,0.7786,0.651,0.5772,0.859,0.7986,0.745,0.5436,0.4362,0.3422,0.2348,0.3892,0.3222,0.2282,0.49,0.255,0.2012,-0.115,-0.2932,-0.2012,-0.0862,-0.0632,0.0058,0.115,0.3506,0.684,0.9426,0.8908,0.6552,0.7702,0.7298,0.5748,0.7702,0.7472,0.431,0.8506,0.8564,1,0.6092,0.6206,0.2758,0.2988,0.4942,0.4942,0.3334,0.1552,0.0862,-0.3564,-0.0096,-0.2632,-0.2584,-0.1484,-0.0862,-0.1436,-0.134,-0.11,0.043,0.1626,0.4402,0.4976,0.6412,0.9618,1,0.7178,0.5072,0.5694,0.6698,0.7224,0.8948,0.8516,0.6698,0.555,0.4642,0.3636,0.3158,0.5502,0.3254,0.1674,0.0382,-0.354,1,-1,-1,1,-1,-1,-0.6,-0.2666,-1,-0.2666,-0.1556,0.4666,0.4,0.2222,0.1778,0.7556,0.3778,0.4,0.9778,0.9112,0.9556,1,0.8888,0.2888,0.9112,0.9334,0.7778,0.2222,0.1778,0.8666,0.7334,0.4222,0.2444,0.1778,0.2888,0.1334,-0.0888,-0.5334,0.0888,0.1112,-0.1556,'16'
-0.4026,0.3188,0.2314,0.4644,0.2678,-0.3188,-0.5482,-0.5556,-0.5774,-0.7012,-0.3442,-0.3152,-0.3844,-0.377,-0.1402,-0.1548,0.2168,0.643,0.8288,0.8944,1,0.9636,0.9964,0.683,0.6138,0.399,0.3552,0.3844,0.275,0.3624,0.479,0.734,-0.5102,0.0704,0.1524,0.4722,0.2932,-0.0264,-0.305,-0.3666,-0.4926,-0.4458,-0.0294,-0.041,-0.0646,-0.132,0.0088,0.2668,0.5132,0.83,1,0.7742,0.8856,0.5044,0.5074,0.0674,0.0762,-0.305,-0.3256,-0.126,-0.2316,-0.0734,-0.0264,0.1848,-0.396,0.2412,0.7532,1,0.6796,0.2486,-0.2708,-0.3186,0.0902,-0.0276,0.2376,0.348,0.4622,0.3592,0.3776,0.4328,0.3738,0.3444,0.3186,0.5102,0.4512,0.4476,0.0828,-0.2082,-0.558,-0.4438,-0.337,-0.3738,-0.4144,-0.3518,-0.0976,0.0128,-0.4366,0.0378,0.888,1,0.4136,-0.1466,-0.0642,0.1994,0.262,0.1104,0.0314,0.0116,-0.2026,-0.3542,-0.453,-0.5156,-0.5552,-0.4762,-0.341,-0.1796,-0.028,-0.1038,-0.575,-0.664,-0.7298,-0.5354,-0.5782,-0.832,-0.7694,-0.822,-0.5816,-0.3378,-0.3508,0.1474,1,0.986,-0.1404,0.207,0.2106,0.428,0.172,-0.0526,-0.4456,-0.5334,-0.5264,-0.6316,-0.7404,-0.7088,-0.6456,-0.7122,-0.7228,-0.6878,-0.4808,-0.5334,-0.6316,-0.7018,-0.7018,-0.7298,-0.6736,-0.7544,-0.6772,-0.7018,-0.786,-0.621,-0.2724,0.4096,1,0.8324,-0.0058,0.3028,0.6076,0.5124,-0.0134,-0.3752,-0.6076,-0.4438,-0.44,-0.44,-0.7104,-0.8096,-0.619,-0.5048,-0.6572,-0.6152,-0.4514,-0.3028,-0.5352,-0.5352,-0.4286,-0.619,-0.5962,-0.798,-0.7104,-0.8514,-0.7562,-0.6648,-0.31,0.245,0.73,0.46,0.195,0.325,1,0.79,-0.08,-0.63,-0.43,-0.24,-0.49,-0.43,-0.55,-0.695,-0.565,-0.6,-0.72,-0.625,-0.415,-0.48,-0.555,-0.465,-0.29,-0.36,-0.515,-0.835,-0.77,-0.73,-0.82,-0.77,0.0698,0.628,0.4884,0.5814,0.4418,-0.1628,-0.3954,-0.2094,-0.1628,-0.4418,-0.0698,0.1162,0.0232,0.0232,0.1162,0.1162,0.4884,0.721,0.5814,0.7674,0.5348,0.721,0.628,0.6744,0.4418,0.4884,0.3954,0.4418,0.4418,0.5348,0.628,1,-0.4286,0.2572,0.2,0.3714,0.1428,-0.6,-0.6,-0.6,-0.4858,-0.6572,-0.6572,-0.6572,-0.8286,-0.4858,-0.1428,-0.2572,-0.1428,0.7142,0.8286,0.8286,0.8858,0.6,0.7714,1,0.8858,0.3714,0.4286,0.3142,0.2572,0.3142,0.6572,0.8286,-0.3914,0.3044,0.7102,1,0.7392,0.2464,-0.2174,-0.4782,-0.0434,-0.0434,0.2174,0.1594,0.4202,0.5652,0.7102,0.6522,0.6812,0.7392,0.7972,0.7102,0.5362,0.5362,0.3914,-0.1304,-0.4202,-0.5362,-0.2174,-0.1884,-0.2464,-0.3044,0.0724,0.1884,-1,-1,-0.969,-0.9602,-0.8738,-0.7722,-0.843,-0.8982,-0.885,-0.927,-0.2278,-0.2676,-0.1792,-0.0508,0.1504,0.5154,0.9248,0.9116,0.6394,0,-0.4778,-0.6836,-0.8076,-0.8584,-0.8806,-0.9004,-0.9446,-0.9558,-1,-1,-1,-1,-1,-1,-1,-0.9298,-0.906,0.0778,0.1874,0.5518,0.7142,0.4422,-0.254,-0.124,0.2266,0.675,0.8066,0.4816,0.663,0.9436,0.805,0.574,-0.0454,-0.473,-0.6304,-0.7622,-0.8204,-0.8528,-0.8444,-0.8752,-0.8802,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.8934,-0.3034,0.6566,0.77,0.91,0.8132,0.55,-0.3868,-0.2224,-0.1112,-0.2112,-0.678,-0.826,-0.846,-0.906,-0.836,-0.828,-0.808,-0.814,-0.7168,-0.75,-0.69,-0.66,-0.6934,-0.7,-1,-1,-1,-1,-1,-1,-1,-0.6858,1,1,1,-0.7142,-0.9428,-0.2,1,1,0.4286,-0.6,-0.6286,-0.3714,-0.3714,-0.5714,-0.7142,-0.6572,-0.8572,-0.8858,-0.7142,-0.7714,-0.8572,-0.8858,-0.8572,-0.9714,-0.8,-1,-1,-1,-1,-1,-0.0612,-0.05,-0.022,6e-04,0.0392,0.1178,0.1932,0.2436,0.2966,0.5638,0.5762,0.5768,0.5694,0.5368,0.4962,0.3704,0.192,-0.078,-0.37,-0.354,-0.64,0.1412,-0.0162,-0.0266,0.2078,0.3532,0.5722,-0.7834,-0.5098,-0.1776,-0.2204,-0.25,-0.1316,-0.046,-0.056,-0.0032,0.0032,0.056,0.319,0.296,0.4506,0.7566,0.8948,0.8256,0.8782,0.7894,0.7928,0.773,0.8586,1,0.9506,0.6382,0.5922,0.5264,0.5428,0.5724,0.5362,0.3816,0.204,-0.204,-0.7962,-0.5274,-0.5096,-0.2822,-0.3708,-0.3708,-0.3116,-0.3264,-0.291,-0.0606,0.093,0.2142,0.4624,0.74,0.7844,0.8168,0.7046,0.6514,0.681,0.802,0.8642,0.9498,1,0.6632,0.5746,0.5096,0.5628,0.5126,0.415,0.3826,0.2024,-0.1788,-0.3618,-0.1052,-0.3586,-0.2236,-0.2994,-0.2532,-0.2236,-0.2828,-0.0888,0.1908,0.3356,0.398,0.8586,0.921,0.7468,0.7368,0.8388,0.7368,0.4736,0.6152,0.8914,1,0.8026,0.4112,0.477,0.4408,0.4704,0.5954,0.5394,0.2138,0.171,-0.194,1,-1,-1,1,-0.2,-1,-0.2,0.3334,-1,0.3334,0.4782,0.5362,0.3334,0.4782,0.2464,0.1594,0.3044,0.6232,0.7392,0.4202,0.4202,0.5942,0.4492,0.1594,0.1594,0.1884,0.2754,0.3914,0.6522,0.5362,0.4782,-0.0434,0.1594,0.3334,0.5942,0.855,1,0.971,0.1884,0.3334,-0.0724,'17'
-0.5238,0.131,0.244,0.5446,0.2946,-0.1072,-0.5148,-0.4762,-0.4316,-0.4792,-0.244,-0.3274,-0.262,-0.3066,-0.0804,-0.3482,-0.1428,0.4732,0.5178,1,0.9702,0.8422,0.8392,0.9226,0.6904,0.5148,0.378,0.381,0.378,0.3066,0.5864,0.9316,-0.615,-0.0794,0.3186,0.5422,0.2744,-0.0846,-0.407,-0.3966,-0.238,-0.3108,-0.2354,-0.0534,0.1054,0.2822,0.3654,0.2484,0.5214,0.9194,0.8258,0.9792,0.805,1,0.6672,0.628,0.1366,-0.0066,0.0508,-0.0066,0.2354,0.082,0.03,0.628,-0.5402,0.0402,0.787,1,0.6018,-0.0246,-0.0834,-0.182,-0.003,-0.1296,0.0956,0.6142,0.642,0.9414,0.821,0.3858,0.2808,0.3828,0.4846,0.6976,0.7962,0.713,0.2962,0.0896,-0.1544,-0.1574,-0.2746,-0.2038,-0.1882,-0.1728,0.037,0.3148,-0.5626,-0.0932,0.9242,1,0.2508,-0.1428,0.0088,0.0904,0.0524,0.003,0.7084,0.7784,0.1546,-0.0612,-0.3178,-0.2244,-0.1924,-0.2916,0.0292,0.1604,0.1224,0.038,-0.3002,-0.4374,-0.4198,-0.6006,-0.5744,-0.586,-0.583,-0.4928,-0.3498,-0.1196,-0.5074,0.1264,1,0.9738,-0.0968,0.1298,0.0738,0.0904,0.5468,0.4746,-0.0246,-0.238,-0.4614,-0.4844,-0.6092,-0.6256,-0.3924,-0.5468,-0.445,-0.3924,-0.1724,-0.0082,-0.3234,-0.5862,-0.5534,-0.6814,-0.5402,-0.7208,-0.7668,-0.6552,-0.6782,-0.294,-0.4462,0.173,1,0.9344,0.0164,0.1294,0.2604,0.4026,0.173,-0.0128,-0.541,-0.5702,-0.4644,-0.5118,-0.4826,-0.5628,-0.5374,-0.49,-0.705,-0.6612,-0.4608,-0.348,-0.3624,-0.5264,-0.6066,-0.7596,-0.7414,-0.8398,-0.7414,-0.8032,-0.6138,-0.428,-0.2898,0.4268,0.9314,0.838,-0.0716,0.0218,0.6884,1,0.514,0.0592,-0.7446,-0.5826,-0.433,-0.2274,-0.2586,-0.2648,-0.053,-0.109,-0.489,-0.5826,-0.3084,-0.2336,-0.3208,-0.2024,-0.4642,-0.458,-0.3894,-0.7694,-0.6386,-0.6386,-0.5514,-0.134,-0.25,0.45,0.5,0.7,0.45,0.2,-0.15,-0.1,-0.25,-0.4,-0.05,0.05,-0.3,-0.6,0.05,-0.2,0.05,0.2,0.35,0.8,0.95,0.7,0.65,0.75,0.7,0.8,0.75,0.85,0.7,0.85,0.75,1,-0.55,0.2,0.25,0.55,0.3,-0.05,-0.6,-0.4,-0.35,-0.25,-0.15,-0.15,-0.1,-0.2,-0.35,-0.2,0,0.25,0.45,1,1,0.75,0.65,0.1,0.85,1,0.65,0.4,0.45,0.45,0.8,0.85,-0.5342,0.0136,0.8082,1,0.5616,-0.2328,-0.1232,-0.2602,0.0136,-0.0958,0.1506,0.6712,0.6164,0.726,0.5068,0.041,0.0958,0.1506,0.2876,0.452,0.8082,0.6438,0.2328,-0.1506,-0.4794,-0.2602,-0.2876,-0.2876,-0.4794,-0.452,0.0958,0.1506,-1,-0.9446,-0.9562,-0.9534,-0.9184,-0.863,-0.9272,-0.9184,-0.93,-0.9126,-0.0846,-0.1428,-0.0496,0.1254,0.2216,0.758,0.9388,0.6384,0.2274,-0.172,-0.446,-0.7114,-0.8046,-0.8396,-0.8804,-0.9388,-0.9446,-1,-1,-1,-1,-1,-1,-1,-0.9238,-0.9256,-0.6826,0.2494,-0.1786,0.1442,0.447,0.5014,-0.1732,-0.1152,0.2258,0.7788,0.8332,0.3182,0.6972,0.8476,0.3346,-0.0988,-0.389,-0.572,-0.7462,-0.8224,-0.8186,-0.8278,-0.8712,-0.8766,-1,-1,-1,-1,-1,-1,-1,-0.8824,-0.9734,-0.86,0.1832,0.58,0.75,0.84,0.7832,0.61,-0.3268,-0.222,-0.12,-0.2292,-0.5492,-0.8284,-0.95,-0.9734,-0.975,-0.9784,-0.9584,-0.86,-0.91,-0.8268,-0.8134,-0.8268,-0.8268,-1,-1,-1,-1,-1,-1,-1,-0.5714,-0.2286,1,1,-0.0572,-0.3714,-0.8286,-0.2572,1,1,-0.1428,-0.7428,-0.7428,-0.6858,-0.6,-0.8,-0.7714,-0.7428,-0.7428,-0.9142,-0.8572,-0.9142,-0.8858,-0.9142,-0.9714,-0.5428,-1,-1,-1,-1,-1,-1,0.149,0.1826,0.2156,0.2408,0.269,0.291,0.3446,0.376,0.4082,0.5184,0.7704,0.742,0.6872,0.644,0.5706,0.4796,0.2742,-0.016,-0.3982,-0.3994,-0.6134,0.3882,0.0082,0.059,0.135,0.262,0.3944,-0.6834,-0.5664,-0.3136,-0.2418,-0.0514,-0.092,-0.0764,0.0452,0.0796,0.0796,0.3166,0.4258,0.5382,0.5756,0.8502,1,0.8408,0.6756,0.844,0.8284,0.8346,0.8876,0.897,0.894,0.766,0.5382,0.5226,0.5726,0.3198,0.2044,0.2512,0.092,-0.2262,-0.6762,-0.6476,-0.4222,-0.3886,-0.3964,-0.2538,-0.2306,-0.2954,-0.1192,-0.07,-0.0234,0.1658,0.3652,0.6606,0.9482,0.7512,0.6788,0.588,0.7642,0.8912,0.912,1,0.8264,0.7124,0.5752,0.4378,0.5208,0.4404,0.3446,0.2202,0.0648,-0.2772,-0.3454,-0.1704,-0.1584,-0.3242,-0.3454,-0.288,-0.2458,-0.3092,-0.086,-0.0076,0.3062,0.1826,0.5114,0.9396,1,0.822,0.7286,0.6742,0.6592,0.7134,0.7164,0.801,0.6924,0.3514,0.264,0.2488,0.1432,0.3574,0.264,0.1162,0.092,-0.0166,1,-1,1,-1,-1,-1,-1,0.5,-1,0.4,0.4,0.4,0.45,0.675,0.65,0.55,0.275,0.875,1,0.775,0.825,0.675,0.5,0.175,0.575,0.7,0.3,0.4,0.2,0.2,0.475,0.45,0.45,0.1,0.725,0.8,0.625,0.475,0.9,0.625,-0.225,'17'
-0.6534,-0.2482,0.0984,0.2178,0.7612,0.7588,0.794,0.8502,1,0.7588,0.6558,0.2296,0.014,-0.3326,-0.48,-0.5176,-0.3278,-0.3372,-0.3138,-0.2132,0.0444,0.0772,0.1476,-0.1452,-0.199,-0.4122,-0.431,-0.3654,-0.178,-0.11,-0.1242,0.089,-0.6906,-0.2154,0.043,0.2176,0.7546,0.8254,0.8056,0.7922,1,0.8896,0.4166,0.2022,0.0056,-0.39,-0.315,-0.4828,-0.452,-0.2398,-0.2332,-0.0762,0.2132,0.231,-0.189,-0.2198,-0.1448,-0.2596,-0.41,-0.2332,-0.1204,0.116,0.1558,0.169,-0.7102,-0.259,0.1258,0.2874,0.7672,0.8076,0.9264,0.848,1,0.81,0.6698,0.2992,0.2542,-0.0856,-0.1354,-0.038,0.1282,0.1924,0.24,0.19,-0.1092,-0.209,-0.4204,-0.4324,-0.392,-0.532,-0.4964,-0.4276,-0.266,-0.1212,-0.0048,0,-0.6352,-0.268,0.1886,0.2432,0.6228,0.861,1,0.9504,0.9132,0.9802,0.7544,0.7022,0.4194,0.4368,0.5508,0.5632,0.5434,-0.0868,-0.3524,-0.4392,-0.5186,-0.5584,-0.7494,-0.6378,-0.6526,-0.6476,-0.66,-0.6674,-0.7494,-0.7048,-0.5236,-0.2482,-0.602,-0.2902,0.2116,0.2852,0.4576,0.9822,0.9264,0.7364,0.8226,0.8606,1,0.9392,0.896,0.9518,0.7922,0.7186,0.1914,-0.1864,-0.4296,-0.498,-0.45,-0.5108,-0.6122,-0.739,-0.6832,-0.6856,-0.6756,-0.6122,-0.635,-0.64,-0.5362,-0.3714,-0.5862,-0.3694,0.0616,0.239,0.527,0.7562,0.5492,0.4828,0.5714,0.702,0.9262,1,0.9976,0.803,0.6674,0.0172,-0.3104,-0.3768,-0.6182,-0.6478,-0.6034,-0.5936,-0.7684,-0.638,-0.6528,-0.633,-0.6896,-0.7882,-0.7858,-0.7142,-0.6896,-0.6478,-0.6284,-0.3858,-0.0708,0.1938,0.2126,0.4268,0.1842,0.1402,0.2,0.2032,0.685,0.9244,1,0.5056,0.2536,-0.1402,-0.5716,-0.663,-0.748,-0.956,-0.6692,-0.6252,-0.7166,-0.6598,-0.5686,-0.6976,-0.767,-0.7196,-0.7418,-0.8614,-0.9086,-0.7322,-0.6154,-0.2692,0.1538,0.2308,0.6538,0.8076,0.8462,0.9616,1,0.923,0.6924,0.4616,0.1538,0.1538,0.077,-0.1154,-0.0384,0,0,-0.0384,0.2692,0.3846,0.2692,-0.077,-0.5384,-0.423,-0.3462,-0.2692,-0.3846,-0.1538,0.2692,0.3462,-0.7552,-0.347,0.102,0.2244,0.7142,0.7552,0.796,0.9184,1,0.8368,0.7142,0.4286,0.2244,-0.0612,-0.1836,-0.2244,-0.0204,-0.0612,-0.1836,-0.3878,0.0204,0.3062,0.2244,-0.2244,-0.2244,-0.3062,-0.3878,-0.4694,-0.0204,-0.2244,0.0612,0.102,-0.7078,-0.3034,0.0562,0.2584,0.7304,0.7752,0.8652,0.8426,1,0.8652,0.5056,0.3034,0.1236,-0.1236,-0.191,-0.1012,-0.0338,0.1236,0.3484,0.3932,-0.0112,-0.0562,-0.4158,-0.528,-0.4382,-0.663,-0.6404,-0.236,-0.191,0.1012,0.0112,-0.0338,-1,-1,-1,-1,-1,-1,-1,-1,-0.9392,-0.9422,-0.1568,0.6622,0.9726,0.863,0.6348,0.4582,0.1872,0.306,0.2634,0.0806,-0.248,-0.5372,-0.79,-0.8722,-0.9118,-0.933,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9642,-0.9632,0.319,0.8254,0.7724,0.783,0.5432,0.4714,0.4854,0.4722,0.5554,0.1174,-0.3466,-0.6982,-0.8842,-0.8964,-0.8972,-0.8858,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.8934,-0.7468,-0.6434,-0.63,-0.6334,-0.635,-0.7118,-0.6918,-0.67,-0.5984,-0.81,-0.7668,-0.82,-0.82,-0.79,-0.74,-0.7368,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,1,1,1,-0.9142,-0.8,-0.6286,-0.7428,-0.8,-0.8286,-0.7714,-0.9142,-0.9142,-0.3142,-0.8,-0.7714,-0.8858,-0.8858,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.4278,-0.3914,-0.3598,-0.2852,-0.23,-0.1852,-0.2338,-0.3718,-0.715,-1,-0.6134,0.4352,0.8092,0.969,0.8328,0.7692,0.7978,1,0.3024,0.4884,0.7442,0.8604,1,0.8838,0.7442,0.5582,0.5348,0.628,0.7442,0.7674,0.6046,0.5582,0.6046,0.7906,0.8372,0.7442,0.6512,0.5582,0.3488,0.3954,0.5814,0.721,0.628,0.5116,0.3256,0.2326,0.186,0.2326,0.1162,-0.0698,-0.2678,0.1072,0.6428,0.8036,1,0.8214,0.4108,0.2142,0.25,0.2678,0.6608,0.6964,0.3036,0.1072,0.2858,0.4822,0.6428,0.4464,0.4108,0.3036,-0.375,-0.0714,0.2678,0.4108,0.2142,0.0892,-0.2322,-0.5358,-0.5892,-0.4286,-0.4286,-0.6786,-0.228,0.2106,0.6492,0.807,1,0.7018,0.421,0.193,0.1754,0.1578,0.5088,0.5438,0.1052,-0.035,0.1052,0.4736,0.5088,0.421,0.3334,0,-0.4562,-0.0702,0.2982,0.2456,0.1404,-0.1578,-0.4736,-0.5964,-0.7368,-0.6842,-0.6492,-0.807,1,-1,-1,1,-0.8,-1,-1,-0.8334,-1,-0.3762,-0.3394,0.0826,0.2844,0.1926,0.89,0.9266,0.89,1,0.3212,0.3394,0.1192,0.0826,0.0458,-0.1376,0.0092,0.688,0.5596,0.3212,0.156,0.4128,-0.0642,0.0642,0.0458,0.156,0.2294,0.5964,0.156,0.1192,0.0826,0.4862,0.2844,'18'
-0.7408,-0.4352,0.1564,0.2738,0.5232,1,0.9388,0.9486,0.956,0.8778,0.2078,0.0734,0.0294,0.0294,-0.071,-0.1272,-0.1026,-0.0636,-0.0734,0.0294,0.2102,0.5208,0.6602,0.4426,0.2078,-0.0782,-0.2592,-0.1002,-0.0172,0.0172,0.3106,0.4084,-0.6898,-0.3746,0.1862,0.2828,0.5508,0.9628,1,0.9876,0.8486,0.9454,0.407,0.1042,0.057,0.0322,-0.0322,-0.1936,-0.273,-0.2532,-0.0024,0.2084,0.2606,0.0894,-0.0546,-0.0124,-0.2754,-0.3746,-0.588,-0.5682,-0.3226,-0.0942,0.077,0.1066,-0.6964,-0.3998,0.0724,0.134,0.433,0.8696,0.9218,0.8648,0.8838,1,0.5776,0.3404,0.319,0.2124,0.2004,-0.07,0.2028,0.2408,0.3998,0.2954,0.134,-0.2526,-0.3072,-0.3072,-0.4496,-0.49,-0.6418,-0.2858,-0.2314,-0.229,-0.0178,0.07,-0.6632,-0.3474,0.1618,0.199,0.4482,1,0.9868,0.8302,0.9364,0.9602,0.9894,0.801,0.7612,0.6022,0.5862,0.5676,0.3846,0.236,-0.2148,-0.5226,-0.6128,-0.703,-0.7586,-0.6844,-0.6312,-0.618,-0.801,-0.7136,-0.7348,-0.7454,-0.3714,-0.3396,-0.59,-0.3036,0.2248,0.2562,0.4296,0.8712,0.7504,0.6268,0.7504,0.9316,1,0.8976,0.7294,0.632,0.6084,0.3746,-0.3508,-0.5796,-0.6872,-0.6558,-0.6558,-0.6242,-0.7844,-0.7688,-0.6374,-0.6478,-0.766,-0.8528,-0.9658,-0.8212,-0.7872,-0.611,-0.7098,-0.4368,0.0362,0.2076,0.3584,0.6082,0.3876,0.3294,0.3672,0.6458,0.9738,1,0.8172,0.6488,0.5792,-0.2104,-0.6778,-0.6894,-0.6924,-0.7822,-0.6836,-0.6284,-0.6546,-0.6894,-0.6748,-0.6866,-0.8722,-0.8838,-0.7968,-0.823,-0.82,-0.759,-0.8356,-0.144,0.099,0.2672,0.144,0.2112,0.0356,0.0504,0.1102,0.2524,0.8654,1,0.9776,0.6374,-0.0504,-0.4692,-0.6486,-0.7384,-0.7906,-0.701,-0.5962,-0.686,-0.813,-0.4542,-0.3122,-0.7458,-0.9066,-0.813,-0.8468,-0.7384,-0.7384,-0.6748,-0.7778,-0.4222,-0.0222,0.1556,0.5556,0.8222,0.6444,0.9112,1,0.5556,0.3334,0.2,0.1112,0.0222,-0.0666,-0.0222,0.0666,0.0222,-0.0222,0.0222,0.2888,0.4666,0.6888,0.5556,0.4666,0.2888,0.2444,0.3334,0.3778,0.4666,0.6888,0.6888,-0.75,-0.2084,0.1666,0.2084,0.5834,0.9584,0.7916,0.875,1,0.875,0.2916,0.125,-0.0834,0.0834,0.0834,-0.0834,0.0834,0.0416,0.0416,0.1666,0.3334,0.625,0.7084,0.5834,0.2916,0.25,0.125,0.2084,0.3334,0.3334,0.6666,0.75,-0.6854,-0.3258,0.0562,0.1686,0.3708,0.8652,0.8876,0.7978,0.8876,1,0.528,0.4606,0.3932,0.3258,0.2808,0.0562,0.3484,0.3484,0.4606,0.2584,-0.1012,-0.3258,-0.4832,-0.5056,-0.573,-0.5956,-0.528,-0.3034,-0.2584,-0.5506,0.0786,0.2134,-1,-1,-1,-1,-1,-1,-1,-1,-0.9242,-0.9116,-0.221,0.8358,0.7178,0.5916,0.5832,0.3978,0.2506,0.2,-0.0148,-0.141,-0.4022,-0.499,-0.7726,-0.8064,-0.819,-0.8484,-0.8948,-0.8736,-0.9158,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9596,-0.962,-0.4086,0.637,0.2312,0.2546,0.3934,0.399,0.1706,-0.0536,-0.2788,-0.4376,-0.67,-0.7958,-0.9202,-0.9064,-0.9274,-0.9202,-0.9394,-0.9306,-0.9234,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8868,-0.9668,-0.8334,-0.6768,-0.705,-0.6684,-0.6784,-0.6934,-0.7068,-0.7484,-0.7384,-0.755,-0.75,-0.8186,-0.9168,-0.85,-0.87,-0.8368,-0.9068,-0.8368,-0.7634,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7142,1,1,1,-0.7142,-0.8,-0.7142,-0.6572,-0.8286,-0.7714,-0.8858,-0.9142,-0.4572,-0.7714,-0.8286,-1,-0.9142,-0.9714,-0.8858,-0.9428,-0.4572,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.3498,0.3078,0.2064,0.0922,-0.0124,-0.1004,-0.2294,-0.3954,-0.7564,-1,-0.5466,0.447,-0.365,0.858,0.9008,0.4974,0.3748,1,-0.1052,0.2632,0.8422,0.9474,1,0.8422,0.421,0.3158,0.5264,0.3158,0.6316,0.7894,0.6316,0.6842,0.6842,0.7894,0.8422,1,0.7894,0.7894,0.579,0.2632,0.3684,0.3684,0.2106,0.3684,0.0526,-0.0526,0.0526,0.1578,0.1052,-0.2106,0.011,0.099,0.934,1,1,0.8022,0.3186,0.2308,0.2088,0.1428,0.4506,0.6264,0.6484,0.2748,0.4946,0.8462,0.978,0.6704,0.7582,0.6924,0.3846,0.3186,0.4286,0.055,-0.1648,0.033,-0.077,-0.077,-0.077,-0.1648,-0.3406,-0.7362,-0.1608,0.2142,0.8928,1,0.9822,0.625,0.3928,0.2322,0.2142,0.2322,0.4822,0.6964,0.6786,0.3392,0.4642,0.6608,0.7858,0.5714,0.5892,0.5358,0.5,0.1786,0.3392,-0.0178,-0.1786,-0.1786,-0.1608,-0.2858,-0.3214,-0.2858,-0.3036,-0.4822,1,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.3982,-0.416,-0.0088,-0.0974,-0.1328,0.3628,1,0.8762,0.5398,0.2036,-0.0266,-0.2036,-0.0088,-0.1858,-0.2036,-0.2566,-0.0974,-0.0974,-0.1682,-0.239,-0.115,-0.5398,-0.3628,-0.115,-0.1504,-0.239,-0.1328,-0.0974,-0.1858,-0.239,-0.5044,-0.5576,'18'
-0.6382,-0.2698,0.1316,0.204,0.6842,0.8552,1,0.7434,0.5264,0.171,0.1118,0.2236,0.1974,0.204,0.296,0.5394,0.5922,0.579,0.5922,0.3552,0.5922,0.704,0.4144,0.3684,0.5132,0.2894,0.0856,-0.046,0.0592,0.1052,-0.0132,-0.0526,-0.6048,-0.2216,0.1556,0.2456,0.6826,0.7844,1,0.8264,0.5568,0.1856,0.1258,0.2036,0.1616,0.2216,0.2036,0.4252,0.6108,0.497,0.5988,0.2096,0.3054,0.4432,0.2874,0.2396,0.3114,0.2994,-0.0538,0.0838,0.0778,-0.0658,-0.018,0.03,-0.6742,-0.2588,0.0798,0.214,0.6614,0.6294,1,0.853,0.5846,0.1948,0.1246,0.3674,0.246,0.2204,0.3354,0.3738,0.4376,0.3866,0.1948,0.3226,0.476,0.4376,0.4122,0.0096,-0.048,0.0096,0.0224,0.0544,-0.1438,-0.2652,-0.1694,-0.1948,-0.604,-0.1672,0.1672,0.2696,0.6724,0.7748,1,0.8498,0.8976,0.413,0.372,0.5904,0.372,0.4266,0.2354,0.3584,0.2424,0.1808,0.1536,0.2628,0.2354,0.3584,0.2832,0.1604,0.1332,0.099,0.017,-0.0922,-0.1808,-0.058,0.0308,0.0102,-0.5874,-0.2572,0.1112,0.1556,0.4286,0.8286,0.9428,1,0.9366,0.492,0.581,0.6,0.5682,0.6,0.7016,0.3778,0.308,0.3396,0.1556,0.0158,0.1174,0.4666,0.4286,0.2634,0.2254,0.1682,-0.1428,-0.2572,-0.5936,-0.4984,-0.2126,-0.2064,-0.5868,-0.2934,0.048,0.042,0.1736,0.8264,0.8384,1,0.7066,0.4432,0.491,0.5928,0.6108,0.7724,0.6646,0.6826,0.2216,0.1378,0.1556,0.1736,0.1856,0.2396,0.2574,0.042,0.0658,0.0658,-0.1796,-0.2396,-0.461,-0.497,-0.3892,-0.3832,-0.553,-0.2576,-0.0152,-0.053,0.394,0.8712,0.9622,1,0.7046,0.4166,0.553,0.7954,0.697,0.9166,0.9848,0.2954,0.0076,0.0984,0.341,0.356,0.303,0.6136,0.6212,0.6818,0.409,0.2878,0.0682,-0.2046,-0.2728,-0.2576,-0.2424,-0.4166,-0.628,-0.1628,0.1628,0.3954,0.628,0.814,1,0.721,0.5348,0.3024,0.1162,0.2558,0.3488,0.2558,0.3488,0.4884,0.4884,0.4418,0.628,0.6744,0.6744,0.907,0.814,0.6744,0.814,0.628,0.0698,0.1628,0.3024,-0.0698,0.1628,0.2558,-0.7272,-0.3182,0.091,0.1818,0.6364,0.8636,1,0.591,0.5454,0.0454,-0.091,0.1818,0.0454,0.0454,0.1818,0.5454,0.6818,0.6364,0.6364,0.2272,0.591,0.6818,0.1818,0.409,0.5,0.0454,0.1364,-0.091,-0.2728,0,-0.2272,-0.3636,-0.7804,-0.3902,0,0.1952,0.6342,0.6342,1,0.8536,0.5366,0.244,0.0244,0.3414,0.2926,0.0732,0.2682,0.3902,0.3658,0.3902,0.1708,-0.1464,0.2926,0.317,0.3658,-0.0244,-0.1708,-0.1708,-0.2682,-0.1464,-0.1708,-0.3414,-0.3658,-0.0976,-1,-1,-1,-1,-1,-1,-1,-0.9266,-0.9482,-0.8316,-0.27,0.7624,0.6846,0.7106,0.8964,0.9222,0.7494,0.4946,0.3262,0.2742,0.0496,-0.2526,-0.5982,-0.7796,-0.8444,-0.8876,-0.8316,-0.892,-0.905,-0.9266,-0.9006,-0.9222,-0.9222,-1,-1,-1,-1,-1,-1,-1,-0.9528,-0.9586,-0.2826,-0.2148,0.726,0.7996,0.7754,0.8078,0.681,0.4196,0.5936,0.597,0.3414,0.4208,-0.3644,-0.6706,-0.7548,-0.7928,-0.6822,-0.5418,-0.4324,-0.2354,-0.1584,-0.0294,-0.0846,-0.0972,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.9734,-0.6468,-0.46,-0.65,-0.66,-0.63,-0.635,-0.624,-0.612,-0.672,-0.672,-0.684,-0.616,-0.56,-0.2768,-0.02,-0.04,0.9866,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-0.7428,1,1,1,1,-0.6858,-1,-0.8,-0.6858,-0.9428,-0.7714,-0.8,-0.8,-0.4572,-0.0286,0.2858,-0.3428,0.5428,0.8,-0.2,-0.4858,-0.6858,-0.9714,-0.8858,-0.9142,-0.8,1,1,1,1,1,1,1,1,1,1,-0.2518,-0.2518,-0.2582,-0.3032,-0.3084,-0.3338,-0.3676,-0.4576,-0.5226,-0.7596,-0.6266,-0.5176,-0.026,0.4346,1,0.7328,0.7662,-0.15,-0.4698,-0.4458,0.3494,0.3614,0.0844,-0.012,0.0964,0.3614,1,0.976,0.759,0.9398,0.747,0.506,0.518,0.482,0.7228,0.759,0.747,0.759,0.6266,0.3976,0.2168,0.241,0.3012,-0.1566,-0.4216,-0.229,-0.3132,-0.482,-0.1204,-0.3254,-0.3472,-0.1666,0.5,0.5278,0.0972,0.2778,0.2362,0.4028,0.9722,0.8472,0.8334,1,0.7222,0.6666,0.4166,0.4028,0.3056,0.4722,0.5834,0.3472,0.5138,0.3888,0.1806,0.25,0.2222,-0.0278,-0.0834,-0.1528,-0.0972,-0.0972,-0.2362,-0.3334,-0.3758,0.029,0.815,0.792,0.4914,0.3988,0.3642,0.607,0.8728,1,0.919,0.792,0.7572,0.5838,0.3064,0.2486,0.4682,0.711,0.7342,0.4104,0.5838,0.2832,0.6184,0.3758,0.0174,-0.0752,-0.156,0.052,0.052,0.0868,-0.133,-0.2832,0.9896,-1,-1,1,-1,-1,-1,-0.6,-1,-0.878,-0.8292,-0.744,-0.7196,-0.5,-0.817,-0.5488,-0.4512,-0.1952,-0.2804,-0.5244,-0.5122,-0.244,-0.3292,-0.3048,0.2926,0.2804,0.2926,0.3048,0.0732,0.3536,0.2682,0.4146,0.4024,0.6342,0.6708,0.6952,0.5244,0.5854,1,0.939,0.8658,'19'
-0.7346,-0.3396,-0.0246,0.0926,0.4568,0.6112,0.7346,0.4814,0.2408,0.142,0.1976,0.2902,0.1852,0.4012,0.5186,0.7654,0.8024,1,0.9136,0.7654,0.821,0.784,0.821,0.784,0.6358,0.5308,0.426,0.3396,0.253,0.3396,0.4692,0.4074,-0.7202,-0.3878,0.0262,0.1078,0.5218,0.6676,0.8542,0.656,0.3644,0.2362,0.2944,0.446,0.3586,0.4636,0.8076,0.8718,1,0.9184,0.9476,0.9068,0.831,0.79,0.9416,0.9592,0.7026,0.6094,0.4868,0.4636,0.4752,0.2944,0.4286,0.5336,-0.7278,-0.3136,0.0828,0.213,0.639,0.645,1,0.8758,0.3668,0.3372,0.3668,0.5562,0.4616,0.497,0.9054,0.9822,0.9526,0.9112,0.8876,0.7338,0.7752,0.8402,0.864,0.7988,0.7218,0.3964,0.2958,0.4142,0.1776,0.136,0.4852,0.3492,-0.7528,-0.3564,-0.0058,0.1034,0.4712,0.5748,1,0.9138,0.2184,0.3448,0.4022,0.4656,0.4426,0.5114,0.7874,0.9138,0.5862,0.6092,0.7012,0.6436,0.5518,0.6264,0.7126,0.5058,0.4196,0.3448,0.2528,0.1206,-0.046,0.023,0.2068,0.2068,-0.7106,-0.335,0.0204,0.132,0.4468,0.67,0.9644,0.8274,0.594,0.5584,0.5634,0.5736,0.5888,0.7412,0.9746,1,0.604,0.5126,0.6192,0.3858,0.533,0.599,0.5634,0.6142,0.4314,0.3756,0.1928,0.0862,0.2336,0.137,0.0812,0.0964,-0.7354,-0.4074,-0.0424,0.0052,0.2116,0.6878,0.8148,0.7724,0.7408,0.4814,0.5186,0.5662,0.7514,0.8624,1,0.6932,0.4498,0.4232,0.4232,0.4126,0.3544,0.5292,0.5344,0.5768,0.3016,0.217,0.0846,-0.037,-0.0106,-0.291,-0.2116,-0.1112,-0.6042,-0.2778,-0.0138,-0.0486,0.0764,0.8542,0.9376,0.9722,0.8542,0.5348,0.618,0.743,0.8612,0.993,1,0.75,0.4098,0.4792,0.4166,0.4166,0.4862,0.7848,0.7916,0.7916,0.6528,0.5348,0.2778,0.0902,0.0624,-0.1458,-0.0694,0.1458,-0.909,-0.0454,0.0454,0.2728,0.5454,0.5,0.8182,0.7272,0.2272,0.2272,0.2728,0.3182,0.0454,0.4546,0.4546,0.6364,0.7272,0.909,1,0.6818,0.8182,0.5454,0.8182,0.8182,0.1364,0.5454,0.4546,0.3182,0.2728,0.409,0.4546,0.3182,-0.6842,-0.3334,0.0526,0.0878,0.4736,0.6842,0.7192,0.3334,0.3334,0.228,0.228,0.4036,0.3684,0.4386,0.6842,0.7544,0.9298,1,0.9298,0.8246,0.7894,0.8246,0.8948,0.9298,0.7894,0.579,0.614,0.4386,0.4386,0.4736,0.579,0.6492,-0.8144,-0.4432,-0.0722,0.0104,0.2784,0.5876,0.732,0.6494,0.6908,0.464,0.464,0.567,0.732,0.7938,1,0.8762,0.464,0.4846,0.4846,0.4846,0.3814,0.4226,0.6908,0.6702,0.3402,0.1546,0.134,0.031,0.0516,-0.1958,-0.0104,0.0516,-1,-1,-1,-1,-1,-1,-1,-1,-0.9058,-0.9294,-0.8784,0.2706,0.553,0.5726,0.604,0.8862,0.9176,0.9764,0.6588,0.3294,0.1138,-0.345,-0.6156,-0.655,-0.8078,-0.7372,-0.7922,-0.796,-0.8824,-0.9098,-0.9216,-0.9294,-0.9138,-1,-1,-1,-1,-1,-1,-1,-1,-0.9738,-0.9772,-0.8246,0.323,0.9018,0.6886,0.5248,0.527,0.5476,0.479,0.3208,0.2134,0.002,-0.4578,-0.7978,-0.7954,-0.8704,-0.8744,-0.788,-0.7566,-0.74,-0.663,-0.6624,-0.656,-0.5036,-1,-1,-1,-1,-1,-1,-1,-1,-0.9068,-0.96,-0.66,-0.42,-0.49,-0.49,-0.488,-0.532,-0.6,-0.656,-0.648,-0.528,-0.572,-0.504,-0.3934,-0.1534,-0.0068,-0.0068,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5428,0.0858,1,1,1,-0.7142,-0.7142,-0.7142,-0.8858,-0.8858,-0.8286,-0.6572,0,0.5714,0.1142,-0.3714,-0.3714,0.5714,0.5714,-0.8,-0.9142,-0.9142,-0.9428,-0.9428,-1,1,1,1,1,1,1,1,1,1,1,-0.0214,-0.0214,-0.0474,-0.071,-0.056,-0.0752,-0.1322,-0.2076,-0.3508,-0.6628,-0.6666,-0.5058,-0.775,-0.4104,0.9468,0.8692,0.7052,1,0.1052,0.0702,0.7018,0.8772,0.7018,0.4386,0.9122,0.9122,0.5088,0.5264,0.772,0.7368,0.7368,0.8596,0.8948,0.4036,0.8422,0.579,0.6842,0.772,0.6316,0.614,0.6492,0.5264,0.7368,0.3334,0.579,0.614,0.5264,0.1754,-0.035,-0.3684,0.2064,-0.0318,0.2698,0.0794,0.8254,0.4126,0.6826,0.9206,0.6508,0.7142,0.508,0.635,1,0.6984,0.619,0.5874,0.492,0.6826,0.3334,0.4286,0.5238,0.6984,0.2064,0.6508,0.3174,0.3174,0.2698,-0.0158,0.0634,0.508,0.4286,-0.873,-0.2772,-0.396,0.3762,0.2574,0.406,0.2674,0.396,0.5446,0.7524,0.802,0.7822,0.9406,1,0.7524,0.604,0.5248,0.6436,0.7326,0.406,0.2376,0.2278,0.2376,0.0792,0.406,0.4158,0.198,0.0892,0.1288,-0.1188,-0.0496,-0.0496,-0.7524,-0.9978,1,-1,-1,-1,-1,0.2,-1,-1,-0.6512,-0.5232,-0.5348,-0.5,-0.4418,-0.3372,-0.279,-0.3372,-0.2326,-0.2906,-0.1512,-0.0814,-0.2442,-0.221,-0.186,0.0582,0.1162,0.372,0.3488,0.2558,0.5582,0.4418,0.3024,0.5,0.4418,0.6046,0.814,0.9418,0.9534,1,0.8372,0.7558,'19'
-0.5268,0.2934,0.2804,-0.0762,-0.1864,-0.303,-0.355,-0.6142,-0.679,-0.5916,-0.637,-0.6046,-0.5688,-0.4328,-0.4684,-0.4684,-0.2934,-0.235,-0.1086,0.1184,0.3484,0.5072,0.9936,1,0.7342,0.7278,0.8898,0.906,0.6078,0.41,0.3938,0.4522,-0.5406,0.0352,-0.0324,-0.0028,-0.154,-0.3892,-0.5838,-0.6594,-0.6838,-0.7162,-0.5054,-0.4784,-0.5378,-0.5244,-0.4648,-0.5892,-0.4054,-0.2,-0.154,0.0514,0.181,0.4972,0.773,1,0.9298,0.7244,0.8352,0.8946,0.7676,0.5918,0.527,0.5648,-0.5764,-0.049,-0.17,-0.098,-0.392,-0.5476,-0.804,-0.7464,-0.8214,-0.778,-0.6052,-0.6744,-0.5274,-0.5476,-0.5216,-0.6282,-0.5534,-0.3256,-0.2046,-0.0432,0.1124,0.3948,0.7896,0.9452,1,0.8184,0.9136,0.876,0.7492,0.5476,0.5446,0.5678,-0.5904,-0.1476,-0.0302,0.0874,-0.4246,-0.6656,-0.8584,-0.7892,-0.6506,-0.6114,-0.7138,-0.6266,-0.5422,-0.506,-0.6566,-0.6868,-0.5542,-0.503,-0.3734,-0.0994,-0.0784,0.268,0.6204,0.8494,1,0.9698,0.7922,0.8162,0.7138,0.4428,0.3886,0.3946,-0.5576,-0.1398,0.115,0.147,-0.6284,-0.77,-0.83,-0.8548,-0.9008,-0.7452,-0.561,-0.4796,-0.5256,-0.5362,-0.6,-0.685,-0.5894,-0.4762,-0.515,-0.3274,-0.1008,0.062,0.4266,0.8796,1,0.9752,0.9044,0.6638,0.4762,0.3912,0.069,0.1894,-0.5534,-0.1146,0.1976,0.1898,-0.6798,-0.7036,-0.751,-0.6404,-0.6798,-0.8458,-0.8418,-0.5968,-0.6442,-0.6206,-0.5218,-0.6284,-0.6246,-0.5968,-0.7076,-0.411,-0.1146,0,0.2964,0.8932,1,0.8418,0.7588,0.4782,0.2412,0.0712,-0.0672,-0.0276,-0.5972,-0.095,0.086,0.0678,-0.5746,-0.561,-0.6742,-0.7964,-0.7828,-0.8326,-0.62,-0.5746,-0.5294,-0.6154,-0.7376,-0.8506,-0.7014,-0.4616,-0.5114,-0.3076,0.0226,0.3168,0.7104,0.8778,1,0.8778,0.9592,0.7556,0.3122,0.0724,-0.018,-0.0046,-0.2858,0.619,0.619,0.0952,-0.2858,-0.1428,0.0476,0.0476,-0.238,-0.238,-0.2858,-0.4762,0.0476,0.0476,0.0476,-0.0476,0.0952,-0.0476,-0.0952,0.2858,0.5714,0.762,1,0.7142,0.762,1,0.9524,0.762,0.762,0.762,0.238,0.2858,-0.4872,0.4872,0.4872,-0.282,-0.282,-0.4872,-0.4358,-0.4872,-0.4872,-0.5384,-0.4358,-0.5384,-0.4358,-0.5898,-0.1794,-0.1282,-0.1794,-0.4872,0.0256,-0.0256,0.5384,0.4872,0.7948,0.6924,0.8974,0.9488,0.9488,1,0.5384,0.4358,0.5384,0.5898,-0.4566,0,0.0218,0.1086,-0.3044,-0.587,-0.5218,-0.5652,-0.4348,-0.4566,-0.5,-0.6304,-0.3696,-0.2608,-0.4782,-0.7174,-0.2174,-0.2392,-0.1956,-0.1304,0.0218,0.3696,0.6522,1,0.9566,0.9348,0.9782,0.9348,0.6086,0.413,0.4348,0.4566,-1,-1,-1,-0.8862,-0.859,-0.7452,-0.7506,-0.8266,-0.8048,-0.7886,-0.8266,0.6694,0.4688,0.3116,0.1708,-0.0624,-0.0136,-0.0948,-0.2466,-0.29,-0.225,-0.4308,-0.6964,-0.691,-0.7236,-0.7994,-0.832,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9222,-0.9164,0.0808,0.8024,0.831,0.6828,0.4548,-0.4472,0.0332,0.546,0.7416,0.6202,0.4094,0.2156,-0.2992,-0.4662,-0.5156,-0.5024,-0.5878,-0.7816,-0.7854,-0.755,-0.7664,-0.7644,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8468,-0.9134,0.3366,1,1,0.9566,0.8532,0.46,-0.462,-0.114,-0.01,0.094,0.08,-0.006,-0.272,-0.444,-0.7346,-0.7728,-0.6892,-0.7834,-0.7534,-0.5434,-0.62,-0.4968,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,-0.5714,-0.6858,1,1,0.9714,-0.5714,-0.8572,-1,-1,-0.2572,-0.5714,-0.7428,-1,-0.8,-0.1142,-0.8572,-0.8286,-0.7142,-0.7142,-0.8572,-1,-1,-1,-1,-1,-1,-0.0968,-0.0602,-0.0216,-0.005,0.0032,0.041,0.0294,-0.0218,-0.0706,-0.136,0.9744,0.9952,1,1,1,1,1,1,1,1,-0.6534,0.2118,-0.4928,-0.5156,-0.0314,0.2668,0.2574,1,-0.8476,-0.5602,-0.4184,-0.3866,-0.351,-0.2412,-0.1524,-0.1276,-0.0284,0.4964,0.4894,0.2872,0.2908,0.1738,0.234,0.2482,0.2482,0.351,0.4256,0.5106,0.493,0.546,0.5674,0.5212,0.6454,0.8652,0.9504,0.961,1,0.9788,0.5992,0.2092,-0.8134,-0.57,-0.5066,-0.4166,-0.3,-0.21,-0.1866,-0.1866,0.1466,0.3834,0.6934,0.6434,0.5666,0.5266,0.3766,0.4334,0.4334,0.45,0.48,0.2934,0.5334,0.7766,0.5166,0.5834,0.7334,0.91,0.91,1,0.95,0.83,0.6534,0.1966,-0.7254,-0.4468,-0.3196,-0.2622,-0.1434,-0.1066,-0.1066,-0.2132,-0.0082,0.3156,0.7378,0.7214,0.7992,0.9468,0.8852,0.4386,0.6312,0.5328,0.5492,0.5574,0.8442,0.8278,0.5122,0.5368,0.6394,0.914,1,0.8894,0.8278,0.7868,0.4836,-0.0614,1,-1,-1,1,-1,-1,-0.6,0.2,-1,-0.1296,-0.1482,0.074,0.074,-0.3518,0.1482,0.0556,-0.037,0.6296,1,0.8334,0.8148,0.7778,0.3334,0.2592,0.3704,0.3334,0.3334,-0.037,0.0556,0.2592,0.1112,0,-0.2962,-0.2778,-0.463,-0.2778,-0.1852,-0.3888,-0.4814,-0.2038,-0.574,'20'
-0.648,0.1046,0.1046,0.1638,-0.0766,-0.5436,-0.683,-0.683,-0.7038,-0.6864,-0.4076,-0.2926,-0.4042,-0.3902,-0.432,-0.5088,-0.4668,-0.2126,0.0174,0.1916,0.54,0.9164,1,0.8362,0.8048,0.8676,0.9442,0.9478,0.8084,0.5262,0.4216,0.4426,-0.616,-0.0488,-0.129,0.0488,-0.1518,-0.467,-0.5472,-0.49,-0.6876,-0.7736,-0.4642,-0.5214,-0.4184,-0.5416,-0.4642,-0.4842,-0.3382,-0.232,-0.1462,0.1518,0.1748,0.5846,0.5674,1,0.8968,0.7966,0.765,0.934,0.639,0.53,0.5558,0.5816,-0.5724,0,-0.1108,0.08,-0.1784,-0.4862,-0.643,-0.597,-0.6646,-0.7724,-0.5754,-0.5354,-0.56,-0.6062,-0.523,-0.5538,-0.4492,-0.3016,-0.3324,0.0092,0.1324,0.4,0.8308,1,0.7816,0.6862,0.8924,0.8676,0.5508,0.397,0.5692,0.4462,-0.5524,-0.023,0.1652,0.318,-0.2292,-0.73,-0.833,-0.8756,-0.723,-0.666,-0.6802,-0.6306,-0.5702,-0.5098,-0.4246,-0.5382,-0.556,-0.4814,-0.3214,-0.119,0.1936,0.5596,0.9182,1,0.9218,0.8118,0.8152,0.9148,0.7762,0.5596,0.453,0.4992,-0.5694,-0.2,0.244,0.2406,-0.5458,-0.783,-0.8272,-0.7526,-0.7152,-0.8712,-0.6678,-0.6,-0.6882,-0.617,-0.4,-0.5424,-0.6712,-0.4576,-0.339,-0.1526,0.0338,0.4136,0.8576,1,0.8746,0.6746,0.7288,0.783,0.6,0.3898,0.3694,0.2712,-0.6686,-0.3104,0.2076,0.1352,-0.5772,-0.7714,-0.6648,-0.6342,-0.798,-0.7904,-0.7296,-0.6724,-0.5428,-0.4628,-0.4934,-0.7066,-0.6838,-0.421,-0.4972,-0.3524,-0.139,0.4896,0.6458,1,0.8628,0.7942,0.779,0.5276,0.478,0.0134,0.2,0.2152,-0.649,-0.2136,0.3446,0.2642,-0.9408,-0.8012,-0.9366,-0.8436,-0.6702,-0.7886,-0.666,-0.5688,-0.5306,-0.501,-0.7758,-0.835,-0.5644,-0.4546,-0.5518,-0.518,-0.2136,0.1754,0.8774,1,0.8562,0.8098,0.518,0.2642,0.2558,-0.057,-0.1078,-0.129,-0.5136,-0.027,0.1892,-0.027,-0.2972,-0.4594,-0.7838,-0.5676,-0.4594,-0.6216,-0.8918,-0.1892,-0.2432,-0.2432,-0.2972,-0.2972,-0.5136,-0.081,-0.027,0.4054,0.6756,0.7298,0.4054,0.2432,0.6216,0.7838,1,0.8918,0.5136,0.4594,0.1352,0.2432,-0.3658,0.6586,0.8048,0.2682,0.122,-0.4146,-0.3658,-0.561,-0.4634,-0.7074,0.0732,0.122,-0.317,-0.3658,-0.122,-0.2682,-0.7074,-0.0732,0.0732,0.2196,0.3658,0.8536,1,0.7074,0.756,0.7074,0.756,0.8048,0.4146,0.2682,0.122,0.2196,-0.5348,-0.0232,-0.1628,0.0232,-0.186,-0.3488,-0.5116,-0.5348,-0.628,-0.5348,-0.3954,-0.372,-0.6512,-0.721,-0.4884,-0.372,-0.3024,-0.1628,-0.2558,0.0232,0.1628,0.3954,0.8372,1,0.628,0.6976,0.814,0.814,0.4884,0.372,0.628,0.4418,-1,-1,-0.9428,-0.9428,-0.8528,-0.7424,-0.8486,-0.8528,-0.7874,-0.8568,-0.8282,0.3416,-0.0674,-0.1616,-0.1656,-0.2474,-0.223,-0.2106,-0.2516,-0.3946,-0.4684,-0.5052,-0.6768,-0.775,-0.861,-0.9222,-0.9182,-0.9222,-1,-1,-1,-1,-1,-1,-1,-0.906,-0.9176,1,1,1,1,1,0.8854,-0.3242,0.347,0.7366,0.7618,0.4892,0.0722,0.047,0.0126,-0.0768,-0.2692,-0.4364,-0.5372,-0.6358,-0.7388,-0.803,-0.8328,-0.8168,-0.8052,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.9868,-0.1468,1,1,0.93,1,0.9366,0.4,-0.272,0.016,-0.034,-0.088,-0.192,-0.256,-0.396,-0.468,-0.4892,-0.6456,-0.7474,-0.6868,-0.6534,-0.78,-0.82,-0.7734,-0.5534,-1,-1,-1,-1,-1,-1,-1,-0.6858,1,1,1,-0.6286,-0.5142,-0.0286,1,1,0.6858,-0.6286,-0.9714,-0.9142,-0.8,-1,-1,-0.9714,-0.8858,-0.8,-0.9714,-0.9428,-0.8572,-0.8858,-1,-0.9142,-0.5714,-1,-1,-1,-1,-1,-0.1078,-0.0958,-0.0722,-0.0518,-0.0506,-0.0322,0.0328,0.0758,-0.048,-0.1406,0.936,0.967,0.9548,0.9788,1,1,1,1,1,1,-0.6666,0.2118,-0.3082,-0.4868,0.3632,0.5234,0.8832,-0.45,-0.9502,-0.6604,-0.4206,-0.3708,-0.3426,-0.1464,-0.0716,-0.1744,0.1028,0.4518,0.4112,0.3552,0.3208,0.2524,0.2834,0.2586,0.486,0.4672,0.4454,0.4704,0.732,0.8972,0.838,0.8162,0.9906,1,0.592,0.7384,0.7134,0.3894,0.1962,-0.109,-0.7666,-0.5052,-0.4948,-0.359,-0.3744,-0.1206,-0.0974,-0.1488,0.1102,0.4154,0.677,0.5564,0.4256,0.4384,0.341,0.323,0.4616,0.7206,0.777,0.6924,0.7512,0.8256,0.7948,0.9334,1,0.9052,0.8666,0.7642,0.759,0.618,0.5282,0.318,-0.826,-0.5444,-0.447,-0.3322,-0.1966,-0.1618,-0.1514,-0.2,-0.0156,0.3426,0.666,0.8852,0.6904,0.8608,0.934,0.586,0.52,0.7948,0.7634,0.5408,0.8922,0.7914,0.76,0.9826,0.934,1,0.7182,0.9374,0.9304,0.6418,0.4748,0.193,1,-1,-1,1,-1,-1,-0.8,0.3666,-1,-0.3572,-0.3392,0.1608,0.0358,-0.125,0.0358,0.1786,0.0714,0.4464,1,0.75,0.9464,0.9108,0.3392,0.3928,0.3392,0.1786,0.1428,0.2678,0.3214,0.4642,0.5,0.1786,0.1608,-0.1786,0.0892,0.1608,0.3572,0.1072,0.2322,-0.1428,-0.3036,'20'
-0.3834,0.1822,0.1244,0.2572,-0.397,-0.6592,-0.7786,-0.7718,-0.7718,-0.6456,-0.5298,-0.3322,-0.4582,-0.7342,-0.7376,-0.7274,-0.6798,-0.2538,-0.0256,0.0834,0.029,-0.0392,-0.1686,-0.3356,-0.4004,-0.2062,0.23,0.4208,0.7922,1,0.9216,0.8466,-0.2836,0.4294,0.3882,0.664,0.3344,-0.2868,-0.5404,-0.4294,-0.3756,-0.4168,-0.1632,-0.271,-0.1632,-0.2012,-0.0808,0.0714,0.1062,0.5214,0.8446,1,0.832,0.9398,0.7052,0.5816,0.756,0.645,0.737,0.8004,0.4866,0.5594,0.7908,0.9556,-0.47,0.15,0.3376,0.66,0.475,0.06,-0.27,-0.3174,-0.2326,-0.185,0.045,0.0226,0.015,0.0826,0.44,0.4826,0.6874,0.8624,1,0.845,0.935,0.675,0.5076,0.33,0.2976,-0.2224,-0.2674,-0.0274,-0.1126,0.115,0.085,0.27,-0.4014,0.2392,0.7286,1,0.7258,0.2616,-0.242,-0.2392,0.2364,0.1552,0.516,0.3846,0.5916,0.491,0.6252,0.2532,0.2952,0.228,0.1888,0.4994,0.477,0.2812,0.0994,-0.1412,-0.3398,-0.449,-0.4098,-0.3426,-0.256,-0.2392,0.0658,0.3258,-0.4484,0.0298,0.8858,1,0.3886,-0.0952,-0.1604,0.2146,0.2772,0.3858,0.2664,-0.1142,-0.2636,-0.326,-0.4972,-0.6658,-0.4836,-0.5,-0.625,-0.3316,-0.1114,-0.1794,-0.6848,-0.6522,-0.5108,-0.481,-0.837,-0.769,-0.5788,-0.5978,-0.432,-0.2472,-0.3794,0.3382,1,0.9,-0.1676,0.05,0.4882,0.5148,-0.0706,-0.3648,-0.547,-0.5382,-0.5294,-0.5882,-0.4824,-0.6058,-0.5824,-0.653,-0.7442,-0.6206,-0.4206,-0.4088,-0.5264,-0.5236,-0.4618,-0.6264,-0.7176,-0.7442,-0.7942,-0.6824,-0.6824,-0.6412,-0.3526,0.534,1,0.6536,0.1546,0.567,0.8556,0.3856,-0.2372,-0.5506,-0.901,-0.5382,-0.464,-0.7072,-0.5712,-0.6206,-0.6784,-0.6908,-0.6824,-0.6784,-0.365,-0.2536,-0.464,-0.468,-0.4556,-0.464,-0.6206,-0.7238,-0.666,-0.5712,-0.666,-0.6288,-0.1708,0.2196,0.2682,0.317,0.0244,-0.4146,-0.561,-0.6586,-0.4146,-0.1708,-0.122,-0.0732,-0.0732,-0.122,-0.0244,-0.122,-0.4146,0.0244,0.2682,0.2682,0.4634,0.317,0.122,0.0244,-0.1708,-0.0244,-0.2196,0.3658,0.8048,1,0.9512,0.7074,0.0434,0.3478,0.3478,0.3044,-0.0434,-0.3044,-0.3914,-0.3914,-0.6956,-0.2174,-0.1304,0.087,-0.087,-0.6956,-0.4782,-0.5218,-0.1304,0.174,0.3044,0.4348,0.3044,0.3478,-0.087,-0.1304,0.087,0.1304,0.087,0.3478,0.826,1,0.6956,0.8696,-0.4444,0.1944,0.6944,1,0.75,0.1388,-0.25,-0.3334,0.1666,0.1666,0.5278,0.5278,0.75,0.5278,0.4166,0.1944,0.1388,0.3334,0.3888,0.3888,0.2778,0.3056,0.1944,-0.1944,-0.4722,-0.6666,-0.3334,-0.25,-0.2222,-0.1666,-0.0556,0.4722,-1,-1,-1,-1,-1,-1,-1,-0.9288,-0.9492,-0.8778,-0.7176,-0.5624,-0.3078,-0.089,0.1782,0.4148,0.5548,0.8396,0.883,0.6006,-0.0788,-0.481,-0.7176,-0.7812,-0.8066,-0.8576,-0.8676,-0.9084,-0.9186,-0.9516,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8854,-0.923,-0.8736,-0.5932,-0.453,-0.1008,0.229,0.8428,0.771,0.6274,0.6872,0.7162,0.2924,-0.2222,-0.5538,-0.723,-0.7744,-0.8052,-0.8548,-0.8564,-0.8718,-0.8564,-0.8838,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.759,-0.9334,-0.8568,-0.31,-0.2018,-0.2334,-0.4084,-0.2918,-0.56,-0.81,-0.8218,-0.8918,-0.955,-0.96,-0.9684,-0.8868,-0.85,-0.86,-0.86,-0.87,-0.87,-0.8934,-0.9534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5714,-0.8572,1,1,-0.6572,-0.3428,-0.3142,-0.4858,-0.5714,-0.0572,-0.6572,-0.6858,-0.7428,-0.9428,-0.9142,-1,-1,-0.9428,-1,-0.9714,-1,-0.9142,-0.9142,-1,-1,-1,-0.4164,-0.4324,-0.4252,-0.3888,-0.4148,-0.3576,-0.2904,-0.1314,0.0672,0.352,0.1644,0.1718,0.2086,0.2118,0.2878,0.3724,0.4374,0.3204,-0.0964,-0.3076,-0.7334,0.4352,-0.5556,-0.559,-0.5316,-0.4018,-0.3846,-0.5084,-0.0178,0.219,0.6332,0.5976,0.3964,0.4438,0.4912,0.7042,0.6094,0.5266,0.8106,0.5384,0.7396,0.7396,0.2426,0.3136,0.6804,0.5266,0.2544,0.432,0.8462,1,0.7042,0.6686,0.4202,0.6686,0.574,0.6686,0.6804,0.4912,0.148,-0.1834,0.038,-0.3418,0.4684,0.5822,0.3292,0.4936,0.633,0.3924,0.6708,0.519,0.6202,0.7216,0.9368,0.6202,0.367,0.2152,0.5316,0.3418,0.3924,0.3418,1,1,0.5316,0.4178,0.2658,0.1646,0.3292,0.3924,0.1898,0.1266,-0.1898,-0.7848,0.1944,0.3334,-0.2152,-0.3542,-0.0972,-0.2638,0.0208,0,-0.007,0.4098,0.3888,0.1666,0.0694,0.3194,0.6458,0.7986,1,0.9236,0.7152,0.4722,0.757,0.8124,0.2014,-0.0556,-0.3056,-0.0902,-0.1112,-0.243,-0.243,-0.2778,-0.007,-0.493,-0.9076,1,-1,-1,-1,-1,0,-1,-1,0.3648,0.3882,0.2,0.6942,0.553,0.1764,0.2942,0.3412,0.4118,0.3882,0.6,0.3882,0.3176,0.2,-0.1764,0.2706,0.3412,-0.2706,-0.3412,0.153,-0.153,-0.0588,-0.1058,-0.0352,0.2,0.4118,1,0.7648,0.1294,0.1764,-0.0824,-0.7412,'21'
-0.393,0.102,0.1076,0.13,-0.5916,-0.6448,-0.793,-0.7174,-0.8098,-0.821,-0.6,-0.4378,-0.4378,-0.5216,-0.7034,-0.5384,-0.4462,-0.586,-0.1412,0.186,0.491,0.4798,-0.0378,-0.0826,-0.0602,0.0378,0.2532,0.709,0.8266,0.9972,1,0.9916,-0.3146,0.2168,0.4896,0.641,0.07,-0.3194,-0.4638,-0.4358,-0.3194,-0.4172,-0.4266,-0.1842,-0.3286,-0.2122,-0.1678,-0.1188,0.0256,0.3404,0.571,0.8928,0.9744,1,0.902,0.8764,0.655,0.5104,0.4778,0.4312,0.4662,0.5152,0.6456,0.8952,-0.4138,0.1608,0.8132,1,0.5342,-0.0166,-0.2554,-0.2104,0.0402,0.007,0.1016,0.3594,0.357,0.6926,0.4964,0.4964,0.5674,0.617,0.7044,0.5982,0.8464,0.6382,0.6336,0.227,0.26,0.0118,-0.0852,-0.1938,-0.1868,-0.052,0.2932,0.4138,-0.3996,0.067,0.903,1,0.2934,-0.1964,-0.1062,0.1986,0.217,0.2448,0.1524,0.261,-0.023,-0.1894,-0.3534,-0.5866,-0.4712,-0.3164,-0.4018,-0.2218,0.1224,0.171,-0.0692,-0.4064,-0.5428,-0.5774,-0.6536,-0.582,-0.5796,-0.5566,-0.4296,-0.164,-0.3342,0.1228,0.9976,1,-0.167,0.0148,0.1352,0.4718,0.2236,-0.624,-0.7248,-0.6684,-0.5922,-0.597,-0.7838,-0.6928,-0.6684,-0.7936,-0.909,-0.6708,-0.5012,-0.4152,-0.5282,-0.5774,-0.624,-0.656,-0.7788,-0.9386,-0.7936,-0.7764,-0.6658,-0.462,-0.3422,0.2096,1,0.931,-0.1352,0.2758,0.374,0.5172,-0.122,-0.4668,-0.7428,-0.5172,-0.549,-0.5066,-0.6206,-0.7136,-0.5226,-0.5252,-0.6976,-0.5756,-0.4376,-0.504,-0.4218,-0.5544,-0.5942,-0.6048,-0.6604,-0.886,-0.8912,-0.7082,-0.817,-0.801,-0.439,0.2676,0.1906,0.242,-0.3448,0.105,0.3576,1,0.7988,-0.152,-0.3962,-0.2634,-0.439,-0.4262,-0.3918,-0.4818,-0.3276,-0.2548,-0.1092,-0.289,-0.439,-0.2848,-0.1092,-0.2206,-0.3876,-0.2762,-0.4904,-0.6532,-0.8286,-0.7344,-0.7002,-0.6102,-0.347,0.1836,0.0612,-0.2244,-0.3062,-0.347,-0.1428,-0.2654,-0.1836,-0.2654,-0.3878,-0.2654,0.1836,0.0612,-0.6326,-0.1428,-0.102,-0.4694,-0.1428,0.0612,0.0204,0.0204,-0.102,-0.102,-0.1428,-0.3878,0.1428,0.2654,0.5102,0.9184,1,0.7142,-0.15,0.1,0.15,0.15,-0.25,-0.2,-0.15,-0.1,-0.4,-0.35,-0.35,-0.1,-0.15,-0.35,-0.35,-0.15,0.05,-0.1,-0.25,0.35,0.55,0.5,-0.05,0.1,-0.15,0.3,0.4,0.7,0.85,0.85,0.9,1,-0.359,0.1794,0.8206,1,0.5384,0.1026,-0.1282,-0.0256,0.1794,0.077,0.2052,0.6154,0.8462,1,0.7436,0.0512,0.2308,0.2564,0.3334,0.3076,0.4358,0.3846,0.5128,0.077,-0.1282,-0.2308,-0.3334,-0.3334,-0.2052,-0.1282,0.1538,0.3076,-1,-1,-1,-1,-1,-1,-1,-1,-0.9344,-0.9562,-0.8416,-0.6448,-0.2268,0.1284,0.4618,0.6804,0.9016,0.7704,0.5136,0.2432,-0.489,-0.765,-0.8524,-0.8826,-0.9126,-0.9454,-0.9234,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9186,-0.9328,-0.8232,-0.4632,-0.119,0.5258,0.7434,0.4742,0.5384,0.338,0.0422,-0.1612,-0.6244,-0.7668,-0.8356,-0.867,-0.8702,-0.8982,-0.8998,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.9134,-0.7568,0,-0.2586,-0.18,-0.4308,-0.764,-0.8308,-0.94,-0.9148,-0.9148,-0.8708,-0.736,-0.8068,-0.76,-0.72,-0.8734,-0.7868,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6572,-0.2858,0.7714,0.7428,-0.5714,-0.1428,-0.6286,-0.5142,-0.5428,-0.5142,-0.6,-1,-0.6858,-0.8572,-0.9142,-1,-0.9428,-0.9428,-0.9428,-1,-1,-1,-1,-1,-1,-0.2694,-0.2794,-0.2944,-0.3216,-0.3268,-0.3068,-0.2424,-0.1386,0.0166,0.3552,0.295,0.3556,0.4034,0.4708,0.4864,0.558,0.5836,0.3982,-0.0684,-0.1842,-0.6266,0.7882,-0.82,-0.6902,-0.6478,-0.4946,-0.3348,-0.9,-0.2292,0.3958,0.3124,0.6458,0.8124,0.7292,0.8542,0.625,0.5,0.0416,0.25,0.3958,0.625,0.6876,0.0834,0.1458,1,0.5208,0.3124,0.1042,0.3124,0.5834,0.3124,0.1666,0.2084,0.2084,-0.1666,0.3542,0,0.2084,-0.0208,-0.7292,0.193,0.0644,0.427,0.5906,0.4036,0.462,0.3918,0.696,0.497,0.2982,0.6024,0.497,0.6608,0.427,0.6842,0.6374,0.7778,0.7544,0.5672,0.6842,0.883,1,0.731,0.6258,0.6258,0.497,0.497,0.427,0.2982,0.3918,0.2514,-0.2046,0.0958,0.3404,0.0106,0.2128,0.0638,0.3086,0.234,0.0852,0.3086,0.3404,0.3086,0.2128,0.2766,0.351,0.6382,0.9148,0.734,0.9894,0.883,0.9362,1,0.7872,0.851,0.4894,0.2234,0.2554,0.2234,0.3298,0.3192,0.4042,-0.1382,-0.6064,-0.978,1,-1,-1,-1,-1,-1,-1,-1,-0.027,0.081,-0.3514,0.4324,0.7838,1,0.7838,0.4324,0.7298,0.946,0.5406,0.5136,0.6486,-0.081,-0.081,0.1622,0.4594,-0.1352,-0.081,-0.1352,0.1352,0.2162,-0.4864,0.1082,-0.1622,0.1622,0.2702,0.2702,0.4324,0.1622,0.5136,0.1892,'21'
-0.4736,0.0964,0.2646,0.4546,0.0746,-0.3894,-0.7504,-0.7042,-0.5062,-0.5496,-0.3976,-0.4816,-0.403,-0.1886,-0.2076,-0.1668,-0.053,0.1398,0.5468,0.7124,0.962,1,0.8074,0.7096,0.3948,0.308,0.1668,0.061,0.118,-0.0474,0.2538,0.5468,-0.5568,-0.0094,0.1482,0.3564,0.0066,-0.6048,-0.7276,-0.6448,-0.506,-0.5808,-0.4018,-0.3698,-0.311,-0.3164,-0.3724,-0.255,-0.2256,-0.0014,0.2096,0.3218,0.8478,0.8612,1,0.8932,0.8264,0.8372,0.9226,0.8104,0.8504,0.5968,0.5114,0.7222,-0.6334,-0.1728,0.0176,0.1586,-0.2784,-0.6804,-0.7884,-0.7226,-0.6944,-0.544,-0.5112,-0.523,-0.5652,-0.5042,-0.45,-0.356,-0.316,-0.2784,-0.0882,0.2198,0.4594,0.866,1,0.9106,0.7016,0.7932,0.7932,0.9858,0.9436,0.7932,0.6686,0.6874,-0.6106,-0.2648,0.1246,0.1608,-0.4656,-0.5598,-0.8694,-0.7122,-0.6204,-0.7146,-0.5912,-0.4994,-0.5236,-0.5646,-0.6372,-0.6178,-0.5478,-0.4002,-0.1464,0.04,0.3374,0.63,1,0.9904,0.7702,0.7098,0.7726,0.9178,0.8524,0.7026,0.5574,0.526,-0.5958,-0.2048,0.2664,0.1138,-0.6278,-0.893,-0.7832,-0.7644,-0.7644,-0.7724,-0.6466,-0.4592,-0.5368,-0.7884,-0.6198,-0.6546,-0.6306,-0.4484,-0.2772,-0.0174,0.2638,0.6492,0.9438,1,0.7778,0.7992,0.7832,0.8046,0.7884,0.585,0.435,0.427,-0.554,0.2416,0.6432,0.2528,-0.5168,-0.9108,-0.6766,-0.591,-0.9702,-0.8698,-0.565,-0.513,-0.4796,-0.5614,-0.4572,-0.5018,-0.606,-0.5278,-0.5464,-0.3866,0.0744,0.6134,0.9852,1,0.8922,0.7434,0.8848,0.6542,0.435,0.2304,-0.0112,0.067,-0.657,-0.1732,0.2924,0.018,-0.7834,-0.8664,-0.9314,-0.8304,-0.769,-0.787,-0.7618,-0.473,-0.4874,-0.4802,-0.3176,-0.491,-0.704,-0.7472,-0.4512,-0.3032,-0.1842,0.4296,1,0.9748,0.7004,0.6102,0.4802,0.231,-0.0362,-0.1516,-0.2418,-0.3176,-0.077,0.4358,0.5384,0.7436,0.2308,-0.2308,-0.4872,-0.1282,-0.0256,-0.3846,-0.2308,0.2308,0.282,0.3846,0.4358,0.5384,0.5384,0.5898,0.6924,0.8974,1,0.6924,0.7948,0.4872,0.3846,0.282,-0.1794,0.3334,0.5384,0.5384,0.7948,0.8974,-0.0588,0.3334,0.5294,0.6862,0.3334,-0.1764,-0.2156,-0.1372,0.1372,0.098,0.0196,-0.0196,-0.098,0.2156,0.0196,0.1764,0.6078,0.7254,0.8432,0.804,0.8432,0.9216,1,0.804,0.647,0.3726,-0.0588,0.0196,0.2156,0.1372,0.4902,0.647,-0.421,-0.079,0.3684,0.1842,-0.3684,-0.6842,-0.6052,-0.6052,-0.579,-0.5264,-0.421,0,-0.1316,-0.3948,-0.2894,-0.5,-0.1316,-0.0526,-0.079,0.1578,0.4474,0.6842,1,1,0.9736,0.9736,0.6842,0.921,0.8422,0.6316,0.3684,0.421,-0.8902,-0.9286,-0.6318,-0.3682,-0.489,-0.5604,-0.6868,-0.6098,-0.5604,-0.4946,-0.1648,0.7418,0.599,0.3406,0.2308,0.0054,0.0494,0.2032,-0.011,-0.1044,-0.2032,-0.3462,-0.7198,-0.7308,-0.8186,-0.8846,-0.9176,-0.8736,-1,-1,-1,-1,-1,-0.9418,-0.914,-0.7874,-0.7378,-0.7858,-0.7408,-0.7756,-0.7334,-0.6868,-0.6722,-0.649,0.0212,0.1158,0.2978,0.7058,0.3504,0.2222,-0.0444,-0.2222,-0.6344,-0.7,-0.6592,-0.8486,-0.8426,-0.8572,-0.869,-0.8282,-0.8486,-1,-1,-1,-1,-1,-0.9668,-0.9068,-0.74,-0.5968,-0.43,-0.2068,0.21,0.0932,0.2632,0.0632,-0.4468,-0.4134,0.02,0.09,0.2182,0.045,-0.0016,-0.2016,-0.2586,-0.7416,-0.8724,-0.677,-0.6268,-0.5334,-0.61,-0.6768,-0.42,-0.6734,-1,-1,-1,-1,-1,-0.9428,-0.2858,-0.0572,0.6572,0,-0.8286,-0.9714,-0.9142,-0.9714,-0.6286,-0.1428,0.2572,-0.3428,-0.4572,-0.9142,-0.6858,-1,-1,0.0286,-0.2858,-0.8286,-0.7142,-0.7428,-0.8,-0.8858,-0.8858,-0.8858,-0.2572,-1,-1,-1,-1,-1,-0.2052,-0.191,-0.145,-0.1168,-0.1094,-0.1086,-0.1156,-0.1392,-0.142,-0.227,0.1828,0.2752,0.3582,0.437,0.5658,0.6418,0.7458,0.8864,0.9748,0.9134,-0.5866,0.5058,-0.6358,-0.5164,-0.292,0.2236,0.3606,-1,0.3092,0.377,-0.1016,-0.2144,-0.1468,0.0338,0.2234,0.1648,0.1828,0.1106,0.5486,0.3544,0.1694,0.2416,0.359,0.4944,0.4312,0.3544,0.4176,0.5892,0.4582,0.562,0.5034,0.526,0.517,0.5982,0.824,0.8872,1,0.9504,0.8556,0.2054,-0.1792,-0.0558,-0.422,-0.3796,-0.314,-0.183,-0.1098,-0.029,0.0404,0.0868,0.0134,0.133,0.0944,0.0752,0.0636,0.3372,0.4026,0.264,0.2448,0.63,0.526,0.291,0.4874,0.5028,0.4258,0.63,0.923,1,0.8882,0.8536,0.923,0.2562,0.1942,0.4364,0.2318,-0.2902,-0.2442,0.0814,0.144,0.407,0.2944,0.3736,0.7286,0.6618,0.4322,0.2694,0.4196,0.762,0.7244,0.4154,0.5366,0.7788,0.6784,0.7328,0.5824,0.499,0.499,0.62,0.9708,1,0.9666,0.833,0.716,0.4112,-0.9242,-1,1,-1,1,-1,-0.8,0.5666,-1,-0.3214,-0.5,-0.2142,-0.0714,-0.0178,-0.0178,0.0892,0.125,0.6608,0.7678,0.75,1,0.9642,0.7322,0.6072,0.6964,0.8036,0.6786,0.3572,0.1964,0.5536,0.4822,0.5536,0.1072,0.0714,0,0.0536,-0.0714,0.0358,-0.1786,-0.2678,-0.7322,'22'
-0.1382,0.4194,1,0.7972,-0.2534,-0.4608,-0.4102,-0.235,-0.152,-0.258,-0.046,0.1106,0.493,0.7236,0.6912,0.424,0.424,0.507,0.47,0.742,0.8248,0.5438,0.5898,0.5898,0.53,0.0368,0.1244,0.0552,0.0784,0.0368,0.4194,0.5576,-0.5712,-0.2628,0.255,0.1058,-0.6496,-0.7386,-0.5974,-0.4536,-0.6026,-0.4954,-0.1242,-0.0902,-0.0432,0.132,0.1478,0.2262,0.4144,0.438,0.5398,0.8588,1,0.8536,0.4196,0.0406,-0.0406,0.1164,0.0458,-0.0562,0.0902,0.4536,0.7046,0.7282,-0.646,-0.254,0.0938,0.196,-0.2662,-0.437,-0.7452,-0.6292,-0.547,-0.4356,-0.4402,-0.3562,-0.3684,-0.309,-0.19,-0.1884,-0.0678,0.071,0.3058,0.8184,0.8734,1,0.9664,0.875,0.7406,0.756,0.4646,0.4462,0.3852,0.3562,0.518,0.6308,-0.7176,-0.3232,-0.0106,0.0818,-0.4564,-0.5346,-0.7992,-0.762,-0.675,-0.6216,-0.5862,-0.5258,-0.5542,-0.6074,-0.4866,-0.5596,-0.4742,-0.302,-0.0728,0.2486,0.5026,0.8134,1,0.9272,0.7868,0.8792,0.8118,0.7158,0.6358,0.4032,0.4832,0.4778,-0.6666,-0.3388,0.1566,0.1112,-0.5118,-0.6502,-0.7742,-0.8124,-0.8506,-0.8014,-0.6194,-0.5646,-0.652,-0.5228,-0.4626,-0.5174,-0.4426,-0.348,-0.1584,0.1238,0.3316,0.703,0.9544,1,0.7468,0.8032,0.8288,0.7906,0.7086,0.45,0.4736,0.448,-0.7506,-0.348,0.1168,-0.0504,-0.652,-0.6478,-0.9658,-0.7546,-0.7062,-0.7404,-0.7244,-0.6842,-0.6318,-0.5876,-0.5614,-0.666,-0.5614,-0.509,-0.4024,-0.0442,0.1932,0.5876,0.9518,1,0.7968,0.7082,0.7082,0.7384,0.5594,0.344,0.33,0.2958,-0.713,-0.2158,0.2474,0.0146,-0.6882,-0.7762,-0.887,-0.679,-0.6316,-0.8012,-0.695,-0.4938,-0.5594,-0.5276,-0.6272,-0.6204,-0.6136,-0.6338,-0.356,-0.0486,0.3016,0.6632,0.9706,0.9954,0.896,1,0.8282,0.679,0.6294,0.2656,0.3062,0.2384,-0.3334,0.3334,0.6666,0.4166,0.1666,-0.3334,-0.0834,0.0834,-0.4166,-0.3334,0.0834,0.5,0.5834,1,1,0.1666,-0.0834,0.0834,0.3334,0.75,0.4166,0.5,0.4166,-0.0834,-0.1666,0.0834,0.0834,0.0834,0.1666,0.0834,0.3334,0.6666,0.0834,0.4166,0.9166,0.8334,0.3334,-0.25,0.0834,0.0834,0.5,0.4166,0.1666,0.1666,0.75,1,0.5,0,-0.25,0.4166,0.4166,0.6666,0,0.5834,0.75,0.6666,0,-0.4166,-0.0834,0.3334,0.3334,0.0834,0.1666,0.25,-0.5428,-0.181,0.2572,0.3142,-0.162,-0.2572,-0.7142,-0.3714,-0.3714,-0.3524,-0.2762,-0.162,-0.0858,-0.0858,-0.0476,-0.1048,0.0666,0.4858,0.7142,1,0.9048,0.9238,0.8858,0.8666,0.3904,0.2,0.162,0.3334,0.2762,0.181,0.3904,0.4476,-1,-1,-1,-1,-1,-1,-1,-1,-0.9212,-0.9014,-0.537,-0.3744,-0.5124,-0.3202,0.6256,0.1232,-0.261,-0.1034,-0.0788,-0.261,-0.34,-0.261,-0.4384,-0.5812,-0.7044,-0.7094,-0.7734,-0.862,-0.872,-0.9262,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.963,-0.962,-0.8594,-0.8214,-0.8436,-0.6438,0.6068,0.2368,-0.2396,-0.2628,-0.2784,-0.5476,-0.6226,-0.6032,-0.7494,-0.8418,-0.8604,-0.8678,-0.851,-0.8964,-0.8826,-0.927,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.99,-0.9168,-0.7934,-0.5896,-0.366,-0.1012,-0.0036,0.14,0.0352,-0.3836,-0.566,-0.573,-0.3894,-0.4146,-0.618,-0.5046,-0.5414,-0.5646,-0.558,-0.678,-0.5414,-0.7414,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,-0.5428,0.2,0,-0.7714,0.0858,0.2858,-0.6,-1,-1,-1,-0.9142,-0.9428,-0.5714,-0.9142,-0.9142,-0.7714,-0.8,-0.8858,-0.8858,-0.8572,-0.6858,-1,-1,-1,-0.063,-0.027,-0.093,-0.0914,-0.0964,-0.0652,-0.0328,-0.029,0.0126,-0.0832,-0.5216,-0.5066,-0.4774,-0.4386,-0.428,-0.4458,-0.4216,-0.2192,0.2336,0.6814,-0.6266,1,-0.8196,-0.7716,-0.7946,-0.8408,-0.8234,-1,0.0624,0.1876,0.4844,0.4688,0.7656,0.7344,0.9688,0.875,0.7656,0.3438,1,0.8906,0.8438,0.6406,0.5626,0.4376,0.2344,0.3126,0.3282,0.2968,0.6562,0.7032,0.3126,0.1718,0.3594,0.3438,0.5156,0.3126,0.0468,0.0156,-0.3594,-0.5156,0.2,0.225,0.25,0.6624,0.925,0.65,1,0.8,0.7,0.75,0.7374,0.725,0.8874,0.5624,0.525,0.7876,0.6376,0.175,0.5126,0.475,0.5624,0.325,0.675,0.7,0.5624,0.475,0.3124,0.1374,0.1374,0.3,0.2626,-0.3374,-0.0058,0.607,0.4682,0.2024,0.3988,0.4336,0.9768,1,0.5954,0.63,0.8728,0.711,0.422,0.3872,0.1908,0.5722,0.6994,0.6416,0.607,0.445,0.6648,0.3294,-0.0058,0.1792,-0.1098,-0.2486,-0.1792,0.2138,-0.3064,-0.2716,0.1098,-0.133,-0.9944,1,-1,-1,-1,-1,-1,-1,-1,0.1578,0.3384,0.203,0.0676,0.0226,0.0978,0.2482,0.218,0.3234,0.2932,0.7294,0.9248,0.97,0.9398,0.564,0.233,0.4136,0.8796,0.624,0.4136,0.579,0.985,1,0.9398,0.6692,0.2482,0.579,0.639,0.2632,0.3384,0.3684,0.0676,'22'
-0.5188,-0.0348,0.771,0.884,0.5392,0.8028,1,0.7508,0.687,-0.0522,-0.2174,-0.1218,-0.4464,-0.513,-0.487,-0.5566,-0.6202,-0.5884,-0.5682,-0.4782,-0.3536,-0.3102,-0.116,0.113,0.142,-0.1044,-0.287,-0.258,-0.226,-0.3334,-0.1246,0.1044,-0.4576,0.0398,1,0.9792,0.2366,0.5094,0.5026,0.4992,0.4474,0.4508,0.4956,0.3644,-0.1986,-0.1434,-0.1364,-0.544,-0.5164,-0.468,-0.3956,-0.2642,0.1054,0.3022,0.1122,0.0224,-0.2228,-0.316,-0.468,-0.399,-0.513,-0.3506,-0.3956,-0.3022,-0.5206,0.0172,0.8254,0.7364,-0.5684,-0.7054,-0.5822,-0.5274,-0.3698,-0.5136,-0.4076,-0.3562,-0.25,-0.089,-0.0376,0.0034,0.2534,0.4178,0.8562,0.9624,1,1,0.7774,0.411,0.1918,-0.0924,-0.178,-0.3424,-0.2294,-0.2876,-0.1438,0.0136,-0.5654,0.019,0.5184,0.3774,-0.1688,-0.26,-0.5302,-0.677,-0.5948,-0.8002,-0.5536,-0.4186,-0.304,-0.4684,-0.2188,-0.2012,0.0396,0.5008,0.8796,1,0.8502,0.8738,0.8942,0.7268,0.486,0.3568,0.0396,0.028,0.0308,0.0484,0.1424,0.3656,-0.4908,-0.1424,0.4372,0.6616,0.6416,0.2964,-0.2562,-0.4204,-0.474,-0.5946,-0.1324,-0.0184,0.0218,0.1792,0.4942,0.6214,0.7822,0.8928,0.9196,0.9464,1,0.5778,0.2798,0.1222,-0.0586,-0.2596,-0.2798,-0.2362,-0.3366,-0.0854,0.1156,0.4104,-0.113,0.228,0.6674,1,0.9508,0.462,0.4128,0.1622,-0.08,0.1048,0.5196,0.6878,0.6838,0.4744,-0.0924,-0.0472,-0.002,0.2814,0.5688,0.3306,-0.0432,-0.0432,-0.3922,-0.3264,-0.2854,-0.343,-0.5154,-0.77,-0.6674,-0.3512,-0.2772,-0.2362,0.2402,0.9664,0.1732,-0.1508,0.296,0.5866,-0.0392,0.7878,0.7878,0.1508,0.1508,0.3296,0.3854,0.0838,0.2402,0.0502,0.095,0.81,0.877,0.2402,0.8994,1,-0.0392,-0.028,0.7318,0.5196,-0.028,-0.8212,-0.7766,-0.5754,-0.419,-0.162,-0.4054,0.1892,0.6756,0.8378,0.5136,0.7838,1,0.5676,0.7298,0.027,0.1892,0.1352,-0.1352,-0.081,-0.4594,-0.4054,-0.2972,-0.081,-0.1352,-0.2432,0.2972,0.3514,0.4594,0.2972,0.4594,0.2972,0.1352,-0.027,-0.027,0.2432,0.4594,0.5136,-0.6586,-0.122,0.7074,0.8536,0.4634,0.561,1,0.8048,0.3658,-0.0244,-0.2196,-0.0732,-0.2196,-0.4146,-0.2196,-0.4146,-0.756,-0.561,-0.8048,-0.2682,-0.1708,-0.3658,0.2196,0.3658,0.0732,0.122,-0.2196,-0.4634,0.0244,-0.2196,0.122,0.6098,-0.4286,0.2064,0.9048,0.8096,-0.238,-0.3016,-0.2698,-0.3968,-0.238,-0.3016,-0.1112,-0.238,0.0794,0.2698,0.6508,0.6826,0.7142,0.4604,0.619,0.8096,1,0.9048,0.492,0.1428,-0.1428,-0.3968,-0.3016,-0.3334,-0.5238,-0.5874,-0.4286,-0.1428,-0.9242,-0.5138,1,1,1,1,0.9138,-0.438,-0.6828,-0.7034,-0.6586,0.7724,0.5794,0.2104,-0.0724,-0.0724,-0.031,-0.1276,-0.0896,-0.2552,-0.5138,-0.7552,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5606,0.5072,1,1,1,1,1,-0.3028,-0.7172,-0.765,-0.6294,0.7612,0.7822,-0.0354,-0.2054,-0.0792,0.1424,0.1576,0.022,-0.4078,-0.658,-0.809,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8268,0.3666,-0.6468,-0.59,-0.61,-0.68,-0.6668,-0.7668,-0.74,-0.79,-0.6734,-0.825,-0.8168,-0.8068,-0.7434,-0.545,-0.5584,-0.5484,-0.665,-0.81,-0.85,-0.8448,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,0.0858,-0.4286,0.2572,1,1,0.4858,-0.4,1,1,-0.5714,-0.1714,0.2286,-0.5714,-0.8286,-0.6858,-0.4286,-0.5142,-0.6858,-0.8572,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,0.895,0.4994,0.5242,0.1912,0.202,0.2034,0.215,0.2238,0.1992,0.0892,-0.1298,0.0158,-0.2682,-0.4266,0.447,-0.6276,-0.0258,0.8758,0.9752,0.8568,0.5584,-0.6894,-0.4758,-0.2816,-0.1844,0.0098,0.0874,0.1844,0.301,0.165,0.3786,0.5534,0.6504,0.5728,0.398,0.5146,0.5534,0.6116,0.67,0.5534,0.767,0.9224,1,0.9612,0.8252,0.67,0.7088,0.6894,0.6504,0.3786,0.165,0.0292,-0.4368,-0.566,-0.151,-0.0566,-0.2076,0.1698,0.2264,0.1698,0.3584,0.6038,0.5094,0.7924,0.868,0.7358,0.585,0.6226,0.566,0.585,0.7548,0.6982,0.6604,0.6226,0.5472,0.9056,0.868,0.6982,1,0.7924,0.6982,0.6792,0.6792,0.415,-0.283,-0.2028,0.174,0.1884,-0.1014,0.0144,0.0724,0.1594,0.5362,0.3914,0.2608,0.8116,1,0.3044,0.1594,0.2898,0.3914,0.913,0.8406,0.2318,0.6522,0.6522,0.6666,0.971,0.5798,0.8116,0.7682,0.7392,0.7246,0.4492,0.5942,0.2754,0,1,1,-1,-1,-1,-1,-1,-0.7666,-1,-0.0286,0.3714,0.5714,0.2858,0.8286,0.8858,0.8858,0.6,0.2572,0.4858,1,0.8,0.3142,0.0286,-0.0286,0.0572,0.5714,0.4858,0.1142,-0.0858,0.1428,0.2858,0.4,0.3714,0.2572,0.1428,0.3428,-0.4,0.0572,-0.0572,-0.1714,-0.3428,'23'
-0.5382,-0.0116,0.878,1,0.7406,0.764,0.987,0.8392,0.808,0.1854,-0.0532,-0.118,-0.3592,-0.354,-0.45,-0.5902,-0.4812,-0.5202,-0.45,-0.3878,-0.393,-0.1828,0.214,0.1622,0.1258,-0.144,-0.3644,-0.2478,-0.1388,-0.0636,0.1284,0.367,-0.483,0.0278,1,0.9814,0.0712,-0.1702,-0.161,0.003,-0.0092,0.0558,0.0278,-0.034,-0.161,0.0092,-0.034,0.0154,-0.0464,0.1456,0.2012,0.3066,0.384,0.6378,0.5882,0.0496,-0.2168,-0.195,-0.3932,-0.3436,-0.3622,-0.4706,-0.486,-0.3158,-0.5826,-0.199,0.466,0.3786,-0.4248,-0.6554,-0.7888,-0.7064,-0.7548,-0.7646,-0.6408,-0.4782,-0.4368,-0.4612,-0.4054,-0.3738,-0.114,0.1602,0.5388,0.9564,1,0.869,0.7646,0.8252,0.8398,0.7864,0.6504,0.4952,0.4564,0.4004,0.5996,0.7112,-0.5836,0.0308,0.5404,0.413,-0.149,-0.3084,-0.4948,-0.5472,-0.4608,-0.454,-0.2946,-0.2468,-0.2286,-0.0034,0.0102,0.1262,0.363,0.6996,0.7816,1,0.9158,0.8704,0.6268,0.3266,0.2378,0.0148,-0.1422,-0.1808,-0.1626,-0.1332,0.1536,0.3152,-0.3428,0.3018,1,0.7862,0.4812,0.3868,0.085,0.0094,0.1416,0.3428,0.7106,0.695,0.6194,0.3742,0.3114,0.305,0.239,0.0472,0.1698,0.412,0.607,0.4906,-0.2642,-0.5094,-0.5692,-0.632,-0.5094,-0.6194,-0.6856,-0.7202,-0.4276,-0.3018,-0.1616,0.3286,1,0.8118,0.7264,0.5986,0.6022,0.698,0.8864,0.4564,0.0658,-0.1404,-0.3108,-0.325,-0.5844,-0.7264,-0.492,-0.2754,-0.4494,-0.3712,-0.5062,-0.286,-0.4884,-0.4422,-0.3642,-0.3322,-0.6768,-0.8224,-0.7584,-0.73,-0.5418,-0.5204,0.0542,0.6486,0.2714,0.0594,0.1938,0.1524,0.323,0.5194,0.5814,0.0284,-0.4056,-0.2094,-0.0542,-0.0388,-0.0956,-0.2662,-0.2094,0.416,0.385,-0.0388,0.2094,0.044,0.7468,1,0.6692,0.2662,-0.2506,-0.4678,-0.6382,-0.633,-0.571,-0.6228,0,0.44,0.6,0.96,0.72,0.84,0.88,1,0.68,0.4,0.32,0.4,0.08,0.28,0.04,-0.24,0.08,0.08,0.32,0.2,0.36,0.32,0.8,0.68,0.56,0.48,0.32,0.4,0.52,0.64,0.8,0.88,-0.1112,0.2592,0.8148,0.926,0.7038,0.5926,1,0.8888,0.6666,0.3334,0.1852,0.037,-0.074,0.1112,-0.037,-0.1112,-0.074,-0.2222,0.074,-0.1112,0.1112,0.4444,0.4444,0.7038,0.6666,0.4444,0.2222,0.4444,0.4814,0.4814,0.8518,0.7408,-0.5122,0,0.561,0.561,-0.317,-0.5122,-0.8292,-0.5854,-0.5366,-0.683,-0.3902,-0.3414,-0.6586,-0.0976,-0.1708,-0.317,-0.0488,0.4146,0.8048,0.9268,1,0.7074,0.8048,0.8536,0.3902,0.2196,-0.0976,-0.2682,-0.317,-0.0732,-0.0732,-0.0244,-0.8068,0.2268,0.9368,1,0.7358,1,1,-0.57,-0.6568,-0.7238,-0.4478,0.8422,0.7042,0.065,0.0296,0.0848,0.3688,0.0098,-0.0216,-0.065,-0.3648,-0.649,-0.8344,-0.8264,-0.8344,-0.854,-1,-1,-1,-1,-1,-1,-1,0.0384,0.7156,1,1,1,1,1,-0.4966,-0.684,-0.6118,0.307,0.8782,0.6502,-0.0428,0.3206,0.5982,0.6614,0.1016,-0.1218,-0.201,-0.4108,-0.7246,-0.8216,-0.8014,-0.7968,-0.8442,-1,-1,-1,-1,-1,-1,-1,-0.41,-0.22,-0.5468,-0.55,-0.3968,-0.5034,-0.54,-0.5768,-0.7468,-0.7634,-0.4668,-0.8244,-0.783,-0.7814,-0.4788,-0.4308,-0.6508,-0.7908,-0.8268,-0.8348,-0.8,-0.6868,-0.6968,-0.7868,-0.57,-0.9034,-1,-1,-1,-1,-1,-1,-1,1,1,1,0.2286,-0.1142,0.8286,1,1,-0.0858,1,1,0.8286,0.1714,0.3428,0.2858,-0.1142,0.0286,-0.5428,-0.7142,-0.7428,-0.5428,-0.5142,-1,-1,-1,-0.4286,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,0.9614,0.6442,0.384,0.4866,0.2966,0.2474,0.1752,0.0544,0.0148,-0.0334,-0.1544,-0.0132,0.226,-0.1558,-0.4666,0.8,0.368,0.4538,0.948,0.9888,0.9662,0.9,-0.2174,-0.0144,-0.0724,0.2464,0.5362,0.5362,0.6232,0.7102,0.7392,0.826,0.884,0.942,0.884,0.7972,0.7972,1,0.942,0.913,0.884,0.884,0.913,0.942,0.7972,0.5652,0.5652,0.7392,0.855,0.826,0.7392,0.6812,0.4492,-0.0724,-0.3428,0.1142,0.4,0.6572,0.6286,0.9428,0.8858,0.7714,0.7714,0.7428,0.4858,0.9142,0.9428,0.5428,0.5428,1,0.8858,0.8,0.8572,0.8,0.7428,0.8,0.8,0.3714,0.5428,0.8,0.7142,0.6572,0.6,0.5714,0.1428,0,-0.0156,0.4062,0.5312,0.5624,0.5624,0.2812,0.0938,-0.0156,-0.0156,-0.0312,0.0468,0.75,0.6406,0.1718,0.2656,1,0.875,0.5312,0.2968,0.2032,0.375,0.4218,0.4532,0.1876,0.1876,0.25,0.2968,0.0468,0.1094,0.2812,0.1718,-0.0468,0.9188,-1,-1,1,-1,1,-1,-0.7666,-1,0.2962,0.2962,0.6112,0.7592,0.8148,0.8888,0.8334,0.6112,0.963,0.9444,0.7962,0.926,1,0.7408,0.6296,0.5926,0.2222,0.4444,0.5186,0.6666,0.6852,0.4814,0.5,0.5556,0.5556,0.2778,0.4074,0.4444,0.4444,0.3888,0.3888,-0.3148,'23'
-0.6168,-0.2874,-0.0268,-0.0268,0.5326,0.9004,0.9464,0.41,0.387,0.364,0.341,0.3716,0.41,0.4636,0.5402,0.7702,0.8314,1,0.9158,0.8084,0.8314,0.8468,0.977,0.9004,0.7854,0.525,0.525,0.4712,0.2568,0.249,0.272,0.272,-0.7742,-0.4646,-0.0322,0.0064,0.2838,0.8452,0.9548,0.671,0.4388,0.4516,0.4258,0.4838,0.5354,0.6322,0.7612,0.9936,0.9742,1,0.8774,0.871,0.9612,0.9226,0.9226,0.7678,0.787,0.542,0.4646,0.4516,0.3096,0.3032,0.3612,0.3742,-0.709,-0.406,-0.0606,0,0.2304,0.697,0.8182,0.5454,0.5516,0.509,0.394,0.4546,0.5454,0.5636,0.7212,0.9696,1,0.7516,0.6788,0.7212,0.8364,0.8304,0.697,0.5818,0.6182,0.297,0.2546,0.2424,0.0788,0.0242,0.1576,0.1152,-0.7024,-0.3988,-0.0358,0.0358,0.2738,0.631,0.7858,0.6012,0.6428,0.5536,0.4642,0.488,0.6488,0.6608,0.7798,0.875,1,0.5834,0.5834,0.8036,0.637,0.7678,0.6786,0.6726,0.4762,0.3512,0.256,0.2858,0.2858,-0.0238,0.0416,0.137,-0.7134,-0.433,-0.0548,-0.006,0.244,0.6464,0.7622,0.75,0.7318,0.5792,0.4818,0.5548,0.683,0.6952,0.8414,0.9818,1,0.744,0.7256,0.8232,0.8902,0.8658,0.6402,0.5854,0.5366,0.3476,0.2196,0.2926,0.2622,0.1036,0.256,0.2804,-0.7848,-0.5694,-0.2068,-0.1898,0.0992,0.5128,0.6998,0.7394,0.4504,0.4108,0.5014,0.558,0.5978,0.8186,0.9944,1,0.8356,0.7848,0.7678,0.915,0.966,0.8754,0.5864,0.4334,0.3654,0.3428,0.2522,0.2238,0.2862,0.2408,0.2918,0.405,-0.9094,-0.5622,-0.366,-0.1472,0.1472,0.3358,0.4642,0.3132,0.3886,0.2452,0.2226,0.3736,0.434,0.7056,0.8868,1,0.932,0.7358,0.9396,0.9698,0.5396,0.366,0.2982,0.0416,-0.1622,-0.3208,-0.3208,-0.4038,-0.3584,-0.3208,-0.3132,-0.2378,-0.5862,0.1034,0.2414,0.0344,0.7242,1,0.862,0.3104,0.4482,0.4482,0.0344,-0.3104,0.3794,0.1724,-0.0344,0.4482,0.7242,0.6552,0.7242,0.7242,0.7242,0.5862,0.931,0.6552,0.5862,-0.3794,0.4482,0.3794,-0.1034,0.0344,0.0344,-0.3794,-0.6982,-0.3962,-0.0566,0.132,0.3208,0.7736,0.8868,0.6226,0.2452,0.3208,0.3962,0.434,0.3962,0.5472,0.6982,0.849,0.849,0.9622,0.9622,0.8868,0.849,0.8868,1,0.9246,0.7736,0.6604,0.585,0.5472,0.4716,0.4716,0.5472,0.585,-0.7962,-0.6112,-0.1666,-0.2038,0.0556,0.574,0.6482,0.7592,0.537,0.3888,0.5186,0.5926,0.6296,0.7962,1,0.9814,0.9074,0.7962,0.7962,0.9074,0.9814,0.963,0.6296,0.537,0.537,0.3704,0.3334,0.3518,0.3518,0.3704,0.426,0.463,-1,-1,-1,-1,-1,-1,-1,-1,-0.9352,-0.9254,-0.919,0.436,0.8736,0.9806,0.9448,0.8476,0.8152,0.611,0.4878,0.1184,-0.2188,-0.6272,-0.812,-0.9158,-0.9092,-0.919,-0.9384,-0.932,-0.932,-0.7764,-0.8768,-0.9124,-0.9352,-1,-1,-1,-1,-1,-1,-1,-1,-0.9846,-0.9806,-0.945,-0.0832,0.9168,0.8506,0.7576,0.6634,0.5228,0.6724,0.9392,0.9402,-0.3438,-0.7256,-0.9288,-0.9614,-0.9654,-0.9756,-0.9806,-0.9834,-0.9852,-0.8808,-0.8894,-0.802,-0.8386,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.9334,-0.7734,-0.5,-0.585,-0.58,-0.575,-0.51,-0.475,-0.395,-0.345,-0.385,-0.38,-0.36,-0.53,-0.6334,-0.6634,-0.8334,-0.8534,-0.9068,-0.9534,-0.6268,0.0432,0.43,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4286,-0.2858,1,1,1,-0.2,-0.3142,-0.6858,-0.8,-0.2858,-0.4,1,1,1,1,-0.1428,-0.8286,-0.8286,-0.9428,-1,0.1428,1,1,1,0.0572,1,1,1,1,1,1,1,1,1,1,-0.068,-0.068,-0.0404,-0.0532,-0.0512,-0.0756,-0.186,-0.2838,-0.467,-0.7744,-0.6266,-0.6,-0.933,-0.6604,0.497,0.972,0.8628,1,0.1864,0.0338,0.356,0.017,0.4068,0.661,0.7118,0.7458,0.8136,1,0.9152,0.678,0.9492,0.7796,0.3898,0.3898,0.322,0.2882,0.4746,0.5594,0.1186,-0.0848,0.695,0.644,0.2712,0.1864,0.5424,0.3898,0.1864,0.305,0.3898,-0.695,0.108,0.3526,0.3812,0.5972,0.6834,0.669,0.482,0.9568,0.5684,0.8418,1,0.6978,0.9568,0.7266,0.7986,0.4532,0.6116,0.7554,0.7122,0.7266,0.3526,0.5252,0.4964,0.4388,0.5972,0.482,0.3526,0.3238,0.036,0.0216,0.2374,0.0504,-0.1942,-0.3204,0.1166,0.3884,0.2136,0.0874,0.369,0.5146,0.7088,0.7476,0.5632,0.7184,0.6116,0.5922,0.2234,0.4272,0.33,0.7088,0.903,1,0.9612,0.4174,0.2718,-0.068,0.0098,0.3204,0.3786,0.097,0.0194,-0.1748,-0.2136,-0.4952,-0.9914,1,-1,-1,-1,-1,-1,-1,1,-0.5808,-0.7126,-0.4012,-0.4252,-0.4132,-0.3772,-0.0778,-0.1378,-0.0778,-0.006,0.042,0.03,0.018,-0.0778,0.2694,0.1856,0.3054,0.2574,0.4492,0.473,0.3892,0.509,0.6048,0.6646,0.7964,0.7844,0.8204,0.9162,0.8922,1,0.9402,0.5568,'24'
-0.7132,-0.3284,0.0566,0.1774,0.5018,0.9774,0.9472,0.6076,0.4566,0.3736,0.2982,0.3132,0.4566,0.517,0.5774,0.668,0.9548,0.9396,1,0.6378,0.8944,0.8944,0.985,0.9018,0.6604,0.6302,0.5548,0.3736,0.3812,0.2604,0.5774,0.4944,-0.6678,-0.3772,0.0588,0.0796,0.2734,0.9792,0.993,0.5432,0.4394,0.4186,0.4048,0.3218,0.3148,0.4948,0.6262,0.7648,1,0.8546,0.9238,0.7854,0.8962,0.9308,0.6816,0.6608,0.654,0.2318,0.211,0.2664,0.1418,0.0242,0.0796,0.1834,-0.6276,-0.3656,0.0896,0.0828,0.2344,0.869,0.8828,0.738,0.5448,0.5242,0.3794,0.4758,0.5172,0.5724,0.6828,0.7656,1,0.8966,0.7104,0.538,0.6276,0.7724,0.5034,0.2068,0.0966,-0.0552,-0.1242,-0.2138,-0.2966,-0.269,-0.269,-0.2344,-0.624,-0.2706,0.1354,0.1654,0.2858,0.9474,0.97,1,0.8646,0.6166,0.5488,0.6016,0.7368,0.782,0.7142,0.812,0.8722,0.8722,0.6616,0.5038,0.5188,0.7294,0.5488,0.1578,0.2858,0.188,-0.2706,-0.1428,-0.1654,-0.2406,-0.1052,-0.173,-0.6604,-0.3962,0.0944,0.0754,0.2138,0.7484,0.8238,1,0.7548,0.6164,0.522,0.5974,0.6352,0.7736,0.7798,0.7736,0.522,0.6164,0.6416,0.5598,0.4842,0.4716,0.3082,0.1132,-0.0944,-0.1698,-0.1636,-0.239,-0.239,-0.3082,-0.2516,-0.2076,-0.7524,-0.5428,-0.1302,-0.092,0.2634,0.454,0.708,0.6826,0.5492,0.4794,0.3714,0.4794,0.6444,0.9556,1,0.8984,0.7016,0.8096,0.8476,0.8412,0.6444,0.3714,0.2572,0.1366,-0.0032,-0.0858,-0.1746,-0.1746,-0.0032,-0.0666,0.0222,-0.0286,-0.9334,-0.7142,-0.2762,-0.2762,0.0762,0.2476,0.4572,0.7714,0.619,0.2572,0.381,0.5428,0.4096,0.781,0.962,1,0.8762,0.8762,0.2858,0.362,0.238,0.1048,0.0666,-0.0952,-0.181,-0.3142,-0.5238,-0.0952,-0.0762,-0.238,0.1524,-0.0762,-0.6818,-0.4546,-0.0454,0,0.591,0.8182,0.7272,0.4546,0.3182,0.2728,0.2728,0.2272,0.3636,0.3636,0.591,0.6364,0.7728,0.8182,0.8182,0.6818,0.7728,0.8636,1,1,0.8636,0.7272,0.591,0.6364,0.6364,0.5454,0.6364,0.6818,-0.7392,-0.3478,0,0.2174,0.3044,0.826,0.8696,0.5218,0.4348,0.2608,0.087,0.3914,0.4782,0.5218,0.3914,0.6522,1,0.826,0.8696,0.6956,0.913,1,0.6956,0.5218,0.6522,0.6086,0.5218,0,0.1304,0.2608,0.4348,0.3044,-0.6876,-0.4584,0,0,0.3958,0.9376,0.9166,0.6042,0.4584,0.4166,0.3958,0.2916,0.3958,0.5,0.6042,0.875,1,0.9376,0.875,0.5834,0.9376,0.8958,0.3958,0.625,0.5208,0.2916,0.0416,0.0416,0.125,-0.0834,0.0416,0.1042,-1,-1,-1,-1,-1,-1,-1,-1,-0.9416,-0.9508,-0.6804,0.3242,0.7512,0.9692,0.5084,0.3518,0.3272,0.146,0.0016,-0.146,-0.536,-0.788,-0.9232,-0.9478,-0.9294,-0.9508,-0.9448,-0.96,-0.9508,-0.8494,-0.8494,-0.914,-0.9324,-1,-1,-1,-1,-1,-1,-1,-1,-0.9736,-0.9718,-0.6262,0.272,0.7934,0.914,0.4274,0.2472,0.2054,0.1106,0.0966,0.242,-0.4926,-0.814,-0.9524,-0.9682,-0.9606,-0.9712,-0.9736,-0.9758,-0.977,-0.634,-0.7704,-0.5486,-0.412,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.9334,-0.6434,-0.55,-0.565,-0.565,-0.55,-0.585,-0.595,-0.51,-0.57,-0.38,-0.325,-0.384,-0.7468,-0.8934,-0.8334,-0.9334,-0.92,-0.9468,-0.94,-0.44,0.1,0.8466,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,-0.1428,-0.2,-0.2286,-0.6858,-0.8286,-0.8286,-0.8572,0.1428,1,1,1,-0.8858,-1,-0.9714,-0.9714,-0.9428,1,1,1,1,0.1428,1,1,1,1,1,1,1,1,1,1,-0.0358,-0.0998,-0.0998,-0.146,-0.1632,-0.2124,-0.2864,-0.4558,-0.652,-0.942,-0.56,-0.5882,-0.382,-0.1394,0.478,0.8616,0.9424,1,-0.6444,-0.2444,0.0666,0.2,0.2,0.2444,0.3778,0.5556,0.8666,0.9556,1,1,1,0.7778,0.6444,0.6444,0.7334,0.7778,0.7334,0.6888,0.6888,0.5112,0.2,0.2,0.4222,0.4666,0.4222,0.1556,-0.2,-0.4666,-0.2888,-0.4222,-0.3904,-0.0096,0.4096,0.581,0.2952,0.3142,0.3334,0.5428,0.8858,0.981,0.9238,1,0.962,0.5238,0.4858,0.5048,0.7334,0.7334,0.6952,0.581,0.638,0.562,0.0858,0.238,0.4096,0.562,0.581,0.181,0.0096,-0.3524,-0.238,-0.4096,-0.0736,0.2422,0.979,1,0.579,0.3894,0.4316,0.6422,0.7052,1,0.6422,0.7684,0.7052,0.4526,0.2842,0.2422,0.4736,0.3474,0.3684,0.2632,0.4316,0.1368,-0.2422,0.0106,0.2422,0.3052,0.2422,-0.1578,-0.3052,-0.4736,-0.4316,-0.5578,0.5632,-1,-1,1,-1,-1,-1,-0.8334,1,-0.5312,-0.6172,-0.3302,-0.3206,-0.3206,-0.2536,-0.177,0.0048,0.0526,0.0814,0.0048,0.0526,0.0144,0.0144,0.1484,0.0334,0.2632,0.1962,0.3398,0.378,0.4354,0.4642,0.6172,0.6938,0.6076,0.6268,0.6364,0.8278,1,0.78,0.6842,0.311,'24'
-0.5498,0.1608,1,0.9742,0.434,0.2444,0.1126,-0.18,-0.4888,-0.7042,-0.6946,-0.4566,-0.4662,-0.4694,-0.6142,-0.5016,-0.4856,-0.5948,-0.5948,-0.7202,-0.6046,-0.4598,-0.1318,-0.1768,-0.4084,-0.4406,-0.6302,-0.5594,-0.492,-0.2798,-0.1704,-0.1576,-0.6012,-0.2376,0.3904,0.5322,0.741,1,0.972,0.4614,0.2022,-0.0102,-0.3346,-0.4446,-0.4148,-0.465,-0.4892,-0.4912,-0.4464,-0.4762,-0.5452,-0.5694,-0.4874,-0.3272,0.1258,0.2414,0.068,-0.2172,-0.2246,-0.191,-0.081,0.0382,0.1594,0.1408,-0.683,-0.3974,-0.0132,0.0382,0.2646,0.8736,0.897,1,0.8658,0.9,0.3662,0.2146,0.1726,0.0054,-0.0976,-0.0554,-0.0648,-0.1164,-0.0226,0.0366,0.1054,0.3068,0.6456,0.6518,0.2708,0.1008,0.1788,0.1022,0.3036,0.3926,0.4832,0.3926,-0.6528,-0.3382,-0.065,-0.0198,0.2224,0.783,0.8084,1,0.9386,0.897,0.8174,0.6202,0.49,0.1084,-0.132,-0.15,-0.2712,-0.1356,-0.0724,0.0832,0.3074,0.4684,0.557,0.3616,0.0198,-0.0778,-0.2406,-0.1122,-0.0144,-0.009,0.1556,0.2712,-0.5856,-0.2758,0.0668,0.0222,0.1636,0.727,0.8626,1,0.876,0.7522,0.8432,0.911,0.8954,0.9052,0.7774,0.518,0.396,0.2798,0.1946,0.274,0.3398,0.5198,0.6264,0.4308,-0.0436,-0.1888,-0.2952,-0.3068,-0.2468,-0.4386,-0.1404,-0.1636,-0.7578,-0.4202,-0.1432,0.0548,0.5972,0.9232,0.8928,0.525,0.2364,-0.0268,0.1152,0.1782,0.1268,0.2806,0.3714,0.567,0.7998,0.965,1,0.9278,0.8928,0.9092,0.9838,0.986,0.9394,0.6856,0.3178,0.1362,0.1828,0.0104,-0.0012,0.0454,-0.6144,-0.2622,0.1876,0.4704,0.6786,0.239,0.0694,-0.3522,-0.4858,-0.6504,-0.5682,-0.4962,-0.5012,-0.3984,-0.617,-0.4422,-0.3522,-0.0438,0.473,0.7172,1,0.8612,0.8586,0.856,0.6658,0.5502,0.0796,-0.0206,-0.036,-0.2494,0.054,0.0772,-0.3044,0.6522,0.913,0.913,1,0.7392,0.7392,0.5652,-0.2174,-0.2174,-0.5652,-0.2174,-0.2174,-0.2174,-0.3044,-0.0434,-0.2174,-0.826,-0.6522,-0.5652,-0.2174,-0.3914,0.0434,0.0434,0.0434,-0.1304,-0.4782,0.0434,0.0434,-0.1304,-0.0434,-0.2174,0.2414,0.862,1,1,0.931,0.931,0.862,0.5172,0.1034,0.1034,0.2414,-0.0344,0.1034,0.0344,-0.1724,-0.1724,0.3104,0.4482,0.1034,0.2414,0.3794,0.3794,0.1034,0.2414,0.2414,0.2414,0.0344,-0.4482,-0.7932,-0.2414,-0.3104,-0.3794,-0.6666,-0.359,-0.0512,-0.077,0.1026,0.5384,0.718,0.7436,0.6154,0.4616,0.4872,0.5898,0.5384,0.8206,1,0.7948,0.6924,0.641,0.6924,0.641,0.641,0.718,0.7692,0.7692,0.3846,0.077,0.0512,0.2308,0.1282,-0.0512,-0.1282,0.077,-1,-1,-1,-1,-1,-1,-1,-0.946,-0.93,-0.7616,-0.8028,-0.4562,0.0398,0.752,0.4626,0.1288,-0.221,-0.2338,-0.326,-0.3958,-0.4532,-0.5708,-0.7298,-0.857,-0.911,-0.9206,-0.946,-0.9236,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9628,-0.9604,-0.9076,-0.9174,-0.8076,-0.6468,0.1226,0.8086,0.4964,-0.0334,0.0144,-0.064,-0.2934,-0.6814,-0.806,-0.8258,-0.9042,-0.9224,-0.9258,-0.9398,-0.8812,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9,-0.9468,-0.8268,-0.8668,-0.826,-0.833,-0.7142,-0.62,-0.5878,-0.6478,-0.7234,-0.689,-0.7056,-0.799,-0.8324,-0.67,-0.5968,-0.6368,-0.74,-0.8068,-0.8268,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7142,-0.9428,-0.8,-0.9428,-0.5428,-0.5428,0.1142,-0.4,-0.7714,-0.7428,-0.6572,-0.1142,-0.2286,-0.6858,-0.8,-0.7142,-0.7714,-0.8858,-0.9428,-0.9428,-0.6858,-1,-1,-1,-1,-1,0.5504,0.5076,0.4936,0.4932,0.5336,0.6494,0.834,1,1,1,-0.1404,-0.1846,-0.2346,-0.2414,-0.2344,-0.1798,-0.0362,0.1688,0.1386,-0.0466,-0.5466,1,-0.9562,-0.8218,-0.8142,-0.8118,-0.8242,-1,-0.0416,0.375,0.5416,0.5,0.7084,1,1,0.7084,0.375,0.5,0.5834,0.875,0.5,-0.125,0.0416,0.1666,0.2084,0.4166,0.0416,0.5,0,0.2916,0.125,0.2084,0.3334,0.2084,0.0834,-0.125,-0.0834,0.3334,-0.1666,-0.25,0.102,0.551,0.5102,0.4694,1,0.5918,0.6326,0.6734,0.5918,0.7552,0.8776,0.8368,0.2654,0.4286,0.5102,0.347,0.7142,0.1428,0.5918,0.4694,0.6734,0.347,0.2654,0.3062,0.102,0.4694,-0.1836,-0.1836,0.1428,0.347,0.347,-0.0204,0.5,0.7666,1,0.9,0.6,0.1,0.6,0.6334,0.7,0.6,0.5,0.6666,0.8666,0.5334,0.5666,0.5,0.2666,0.5666,0.5,0.1666,0.2,0.1666,0.5666,0.5666,0.1666,-0.1666,0.1666,0.3,-0.1,0.2666,0.2,-0.1666,-0.6698,-1,-1,1,-1,-1,-0.8,-0.8,-1,-0.1526,-0.2034,0.1356,-0.1186,-0.1864,-0.0848,0.017,-0.1356,0.2034,0.4576,1,0.9152,0.8814,0.2372,-0.0508,0.1356,0.356,0.2712,-0.1526,-0.2204,-0.2372,-0.1186,-0.305,-0.2034,-0.3728,-0.2204,-0.0678,-0.0848,-0.0508,-0.4746,-0.4238,-0.644,'25'
-0.5148,0.0516,1,0.8216,0.1988,0.6118,0.2488,-0.3552,-0.5744,-0.5932,-0.6682,-0.4898,-0.5462,-0.4054,-0.2456,-0.4742,-0.5744,-0.4774,-0.5242,-0.615,-0.3708,-0.277,-0.1862,-0.302,-0.3082,-0.3802,-0.3708,-0.4586,-0.4116,-0.471,-0.5274,-0.4742,-0.6498,-0.2998,0.3262,0.4896,0.6582,1,0.9322,0.8034,0.3906,0.0586,-0.1808,-0.1908,-0.275,-0.3196,-0.4798,-0.4534,-0.3724,-0.341,-0.2782,-0.194,-0.1428,0.1974,0.2816,0.1594,0.062,-0.1264,-0.1544,0.0768,0.1494,0.0818,-0.0884,-0.2006,-0.739,-0.4688,-0.0132,-0.0564,0.1428,0.736,0.8548,1,0.9506,0.8904,0.393,0.1892,0.115,0.095,0.0116,-0.0594,-0.064,0.1382,0.1228,0.3004,0.5938,0.5846,0.7112,0.4764,0.3204,0.3142,0.3638,0.5752,0.7236,0.6464,0.4532,0.2356,-0.671,-0.4154,0.0592,0.0048,0.2748,0.7396,0.9138,1,0.9968,0.9218,0.9952,0.8866,0.714,0.5926,0.3434,0.2092,0.2172,0.3258,0.4552,0.5624,0.7652,0.786,0.7492,0.46,0.2908,0.2524,0.2412,0.3258,0.3226,0.508,0.5368,0.5016,-0.5786,-0.325,0.1196,0.0214,0.575,0.9126,0.8482,0.8482,0.5,0.3876,0.6178,0.7626,0.834,0.9446,1,0.8374,0.7946,0.8464,0.725,0.8322,0.8322,0.95,0.834,0.7054,0.5428,0.234,0.1982,0.2054,0.1822,0.1214,0.1642,0.275,-0.5928,-0.2458,0.2196,0.1676,0.2378,0.5366,0.4344,-0.2338,-0.2678,-0.3982,-0.366,-0.0372,-0.1274,-0.1776,0.017,0.0892,0.358,0.681,0.8776,1,0.8194,0.8134,0.8194,0.8416,0.8234,0.5286,0.33,0.1114,0.1214,0.009,0.1094,0.1094,-0.5328,0.0782,-0.202,-0.2626,0.356,0.197,-0.0884,-0.4066,-0.5682,-0.8484,-0.4672,-0.4848,-0.447,-0.4748,-0.3914,-0.4368,-0.202,0.053,0.356,0.7248,1,0.9242,0.7046,0.8712,0.9344,0.6666,0.2676,0.0252,0.0834,-0.048,0.1616,0.1086,0.12,0.6,1,0.76,0.6,1,0.84,0.36,0.2,-0.52,-0.84,-0.12,-0.12,-0.2,0.2,0.28,0.12,0.28,0.44,0.28,0.2,0.84,0.68,0.68,0.68,0.52,0.28,0.52,0.76,0.52,0.44,0.12,-0.2414,0.3104,1,0.7242,0.4482,1,0.7932,0.2414,-0.3794,0.3104,0.3104,0.2414,0.2414,0.5172,0.5862,-0.0344,0.3104,0.3104,0.3104,0.1724,-0.0344,0.4482,0.5862,0.3794,0.7242,0.3794,0.3794,0.5862,0.931,0.931,0.3794,0.3104,-0.8222,-0.5556,0,0.1556,0.3112,0.7334,0.8444,1,0.6666,0.2222,-0.0666,-0.1334,-0.2,-0.2,-0.2888,-0.4,-0.3556,-0.2222,-0.1334,-0.0444,0.2444,0.4444,0.5334,0.4,0.3334,0.2444,0.1556,0.5112,0.6,0.3556,0.2888,0.1112,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9434,-0.7616,-0.6602,0.3264,0.5112,-0.1296,-0.1952,-0.1088,-0.1236,-0.3472,-0.4992,-0.5172,-0.7228,-0.8838,-0.9314,-0.9404,-0.9344,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.963,-0.907,-0.8682,-0.4194,0.4056,0.3032,0.3152,0.7192,0.5288,-0.161,-0.5866,-0.7166,-0.8156,-0.926,-0.9336,-0.938,-0.9346,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.8634,-0.8096,-0.8116,-0.66,-0.6022,-0.639,-0.6864,-0.6696,-0.659,-0.4664,-0.578,-0.6338,-0.7634,-0.7068,-0.68,-0.7668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2858,-0.4858,-0.8286,-0.5142,0.8572,-0.9142,-1,-0.9428,-0.7714,-0.6286,-0.4858,-0.7428,-0.6,-0.6572,-0.9714,-1,-0.8,-1,-1,-1,-1,-1,-1,-1,0.4324,0.465,0.4998,0.5322,0.6034,0.7326,0.948,1,1,1,-0.1084,-0.1362,-0.1594,-0.168,-0.1654,-0.1784,-0.0202,0.2086,0.1876,0.024,-0.5066,1,-0.8992,-0.8596,-0.8614,-0.882,-0.882,-1,0.1238,-0.238,0.0096,0.3142,0.6762,0.4286,0.6952,0.7904,0.581,0.5048,0.562,0.6762,1,0.8858,0.581,0.5428,0.562,0.4096,0.4858,0.3524,0.181,0.5238,0.3714,0.4096,0.2572,0.0858,0.2762,0.3524,-0.0096,0.3142,0.0476,-0.219,0.1368,0.4106,0.1368,0.179,0.579,0.5158,0.979,0.7894,0.7894,0.2842,0.2632,0.5578,0.579,0.6842,1,0.9368,0.7894,0.5368,0.7474,0.8526,0.6,-0.0106,0.5368,0.579,0.5158,0.4106,0.3474,0.2,0.2842,0.179,0.3264,0.221,0.5828,1,0.7424,0.6932,0.3128,0.5828,0.632,0.6442,0.816,0.546,0.4356,0.595,0.5828,0.4846,0.7546,0.7668,0.6074,0.3374,0.4724,0.5706,0.2392,0.2148,0.2148,0.5582,0.6074,0.3128,0.4724,0.3988,0.1288,0.0674,0.227,-0.3252,-0.9552,1,-1,-1,-1,-1,-1,-1,-1,-0.2898,-0.1776,0.1214,0.0094,0.1402,-0.215,0.1962,0.0654,0.8692,1,0.514,0.7758,0.8878,0.3084,0.4206,0.5514,0.5888,-0.0094,0.028,0.1402,0.2898,0.1214,0.028,0.0654,-0.0094,-0.028,0.215,0.1402,-0.1962,-0.1776,-0.1962,-0.6636,'25'
-0.533,0.0786,0.1586,0.3908,0.0338,-0.4632,-0.648,-0.6828,-0.6254,-0.6154,-0.3434,-0.3384,-0.2284,-0.246,-0.201,0.1036,0.181,0.6454,0.7404,0.8552,0.8926,0.94,0.9526,1,0.7478,0.3782,-0.0038,-0.0512,-0.0088,-0.1736,-0.0562,0.1012,-0.6622,-0.192,-0.0996,0.0934,-0.236,-0.66,-0.9224,-0.7776,-0.704,-0.6706,-0.5048,-0.49,-0.4376,-0.5174,-0.5384,-0.4648,-0.425,-0.1732,0.0242,0.3264,0.6096,0.8866,0.937,1,0.893,0.8908,0.574,0.3242,0.2152,0.0808,0.1186,0.1962,-0.6656,-0.2168,-0.0464,0.0874,-0.4088,-0.8296,-0.8296,-0.795,-0.7216,-0.6548,-0.644,-0.5966,-0.6224,-0.7152,-0.698,-0.6396,-0.4736,-0.4628,-0.2492,0.0722,0.1802,0.5988,0.7152,1,0.823,0.6634,0.4304,0.4304,0.2168,0.1068,0.1132,0.04,-0.693,-0.3082,0.106,0.1352,-0.6152,-0.7418,-0.7612,-0.6662,-0.8076,-0.844,-0.7344,-0.6858,-0.6736,-0.5444,-0.391,-0.5348,-0.5834,-0.3228,-0.2376,0.0208,0.3934,0.6394,0.9464,0.9976,1,0.944,0.8294,0.6808,0.4422,0.369,0.3252,0.3958,-0.761,-0.353,0.1598,0.09,-0.7182,-0.7074,-0.7852,-0.7504,-0.7826,-0.7692,-0.788,-0.6108,-0.6402,-0.5758,-0.5598,-0.541,-0.4524,-0.3932,-0.2832,0.0282,0.2376,0.7234,0.9758,1,0.7638,0.8442,0.8228,0.5704,0.3826,0.2242,0.2778,0.3504,-0.6784,-0.152,0.2866,0.3596,-0.3918,-0.81,-0.9328,-0.9532,-0.8508,-0.8538,-0.7866,-0.7222,-0.6404,-0.6638,-0.7076,-0.766,-0.6082,-0.3654,-0.3158,0.079,0.345,0.8802,1,0.886,0.8596,0.8654,0.6872,0.3888,0.228,-0.0058,0.1696,0.1872,-0.6582,-0.179,-0.4856,-0.4632,-0.4058,-0.409,-0.3898,-0.3994,-0.6038,-0.8626,-0.54,-0.4186,-0.4346,-0.4472,-0.5686,-0.3068,-0.0288,0.246,0.5368,0.7668,0.8402,0.7828,0.9234,1,0.655,0.4122,0.0096,-0.0192,-0.0256,-0.1726,-0.083,-0.0064,-0.2592,0.4814,0.1852,0.5556,0.2592,-0.037,-0.2592,-0.8518,-0.3334,-0.4814,-0.2592,-0.2592,-0.2592,-0.1852,-0.037,0.8518,0.8518,0.8518,1,0.926,0.8518,0.4074,0.8518,1,0.4074,-0.037,-0.1112,0.1852,0.2592,0.1112,0.4814,0.4074,-0.4286,0.2,-0.0858,0.4286,0.2,-0.6,-0.4858,-0.4286,-0.4858,-0.3714,-0.4858,-0.2,-0.2,0.2,0.2,0.2,0.3714,0.8858,1,0.7142,0.4286,0.4286,0.5428,0.6572,-0.0858,-0.0286,-0.2572,-0.2572,-0.2572,-0.4858,-0.1428,0.2572,-0.683,-0.244,0.2196,0.1952,-0.6586,-0.8292,-0.8048,-0.561,-0.3902,-0.7074,-0.683,-0.5854,-0.6098,-0.5366,-0.6586,-0.439,-0.317,-0.3658,-0.439,-0.0488,0.0244,0.683,1,0.878,0.5854,0.7074,0.5122,0.3658,0.317,0.0976,0.1708,0.2682,-0.3386,0.7796,0.5748,0.244,0.0078,-0.0944,-0.189,-0.378,-0.559,-0.6142,-0.4016,0.693,0.8188,0.307,0.2756,0.37,0.1732,0.0944,0.0708,0.2362,-0.0078,-0.4724,-0.685,-0.7244,-0.8346,-0.8188,-0.8346,-0.8426,-1,-1,-1,-1,-1,-0.7662,-0.4666,-0.4702,-0.4112,-0.513,-0.4184,-0.2918,-0.3488,-0.388,-0.5522,-0.5362,-0.0616,0.6932,0.3202,0.0402,-0.1936,-0.0866,-0.1596,-0.322,-0.2488,-0.6022,-0.6628,-0.727,-0.7734,-0.8306,-0.8626,-0.8502,-0.868,-1,-1,-1,-1,-1,-0.88,-0.7234,-0.6368,-0.1068,-0.18,0.37,0.5932,1,1,0.9932,0.8632,-0.3016,-0.0258,-0.1086,-0.1986,-0.4372,-0.2244,-0.3372,-0.5972,-0.64,-0.7758,-0.5348,-0.5334,-0.62,-0.6534,-0.8734,-0.9668,-0.92,-1,-1,-1,-1,-1,0.4858,1,1,-0.3714,-0.9142,-0.9142,-0.9714,-0.9714,-0.9142,-0.8858,0.3714,1,0.3142,-0.8,-0.9428,-0.9428,-0.8572,-0.8572,-0.3428,-0.5428,-0.6286,-0.7714,-0.8572,-0.8,-0.5428,-0.5714,-1,-0.5714,-1,-1,-1,-1,-1,-0.1426,-0.1246,-0.1104,-0.0998,-0.1304,-0.1424,-0.16,-0.1498,-0.1844,-0.0566,-0.0154,0.0936,0.176,0.253,0.3418,0.4614,0.5862,0.7112,0.8258,0.821,-0.5866,0.7058,-0.5718,-0.5362,-0.4058,-0.083,0.0438,-0.7416,-0.0384,0.0932,-0.0712,-0.5978,-0.5942,-0.298,-0.1408,0.086,-0.0822,-0.2102,-0.0128,-0.075,-0.2286,-0.2066,-0.3382,-0.031,0.3418,0.2688,0.2504,0.3968,0.382,0.4662,0.4954,0.4918,0.6344,0.7368,0.9524,0.9122,0.9268,1,0.9012,0.6454,-0.3344,-0.2504,-0.5334,-0.7356,-0.804,-0.5832,-0.4868,-0.2628,-0.3158,-0.3748,-0.2224,-0.2442,-0.1976,-0.3188,-0.2534,-0.2224,0.0296,0.0606,0.0948,0.0576,0.3934,0.577,0.636,0.521,0.4276,0.5864,0.9222,1,0.9782,0.8506,0.972,0.8694,-0.4616,-0.3584,-0.6652,-0.6652,-0.6088,-0.5712,-0.421,-0.252,-0.0766,-0.1862,-0.155,-0.1956,-0.0516,-0.155,-0.23,0.0298,0.1206,0.23,0.2958,0.4616,0.4898,0.6526,0.6212,0.6244,0.6306,0.8154,1,0.9562,0.8686,0.9594,0.8936,0.6432,-0.9144,-1,1,-1,1,0,-1,0.7334,-1,-0.125,-0.2222,0.1528,0.3334,0,0.1528,0.25,0.5556,1,1,0.6944,0.8334,0.6806,0.3472,0.2362,0.625,0.6388,0.5138,0.1944,0.2638,0.3334,0.3194,-0.0278,0.125,0.125,0.0416,0.0138,0.0416,-0.0138,0.1388,0.0694,-0.3194,'26'
-0.5424,-0.0364,0.2516,0.3696,-0.2152,-0.597,-0.6576,-0.7,-0.6212,-0.5424,-0.3454,-0.2242,-0.3334,-0.106,-0.103,0.0334,0.4484,0.5666,0.8334,0.7666,0.897,0.8576,0.9454,1,0.8758,0.4304,0.2,0.1758,0.1272,0.003,0.1304,0.1878,-0.5796,-0.0758,0.0288,0.201,-0.1514,-0.718,-0.7964,-0.7754,-0.6318,-0.6032,-0.4752,-0.3838,-0.3578,-0.3316,-0.402,-0.316,-0.1644,-0.0182,0.3656,0.41,1,0.9504,0.9922,0.825,0.9268,0.8772,0.94,0.7024,0.6528,0.389,0.3446,0.517,-0.55,-0.0548,0.0408,0.1786,-0.3248,-0.623,-0.8002,-0.8312,-0.8284,-0.7778,-0.685,-0.4318,-0.4796,-0.5668,-0.5246,-0.5302,-0.3586,-0.2348,-0.1308,0.3052,0.5528,0.9156,1,0.91,0.7412,0.8172,0.8678,0.941,0.8706,0.564,0.4768,0.5386,-0.5494,-0.1564,0.2138,0.2568,-0.4548,-0.5696,-0.7418,-0.7016,-0.6844,-0.8824,-0.6902,-0.693,-0.5954,-0.6786,-0.5754,-0.5896,-0.5868,-0.5008,-0.231,0.142,0.4606,0.7848,1,0.9684,0.6298,0.6586,0.8164,0.9312,0.8422,0.5266,0.4404,0.3916,-0.5962,-0.2278,0.3248,0.2408,-0.7416,-0.7448,-0.761,-0.6542,-0.7254,-0.8966,-0.8676,-0.6348,-0.58,-0.6026,-0.4798,-0.6898,-0.5702,-0.454,-0.2116,0.0306,0.4928,0.9224,1,0.8836,0.664,0.8416,0.874,0.8126,0.7286,0.4992,0.3442,0.273,-0.5838,-0.161,0.3524,0.141,-0.5672,-0.7752,-0.9296,-0.7114,-0.6578,-0.8356,-0.6074,-0.5436,-0.6544,-0.5168,-0.3356,-0.4732,-0.7014,-0.3456,-0.3356,-0.0168,0.386,0.7718,1,0.8624,0.7182,0.7852,0.8792,0.8054,0.6644,0.2618,0.1912,0.1946,-0.6636,0.0274,0.3308,0.086,-0.671,-0.6198,-0.6892,-0.682,-0.799,-0.861,-0.6344,-0.4332,-0.3308,-0.3528,-0.4882,-0.543,-0.5284,-0.5246,-0.4588,-0.2906,0.2176,0.7368,0.9196,1,0.649,0.7294,0.766,0.532,0.382,0.0348,-0.1262,-0.0238,-0.0612,0.1428,0.3878,0.347,-0.0612,-0.2244,-0.0612,-0.0612,-0.347,-0.2654,-0.0204,-0.0204,0.1428,0.3878,0.4286,0.5102,1,0.9592,0.6326,0.4286,0.3878,0.6734,0.6734,0.796,0.2244,0.1428,0.2244,0.2654,0.2244,0.1428,0.2244,0.2244,-0.3658,0.0244,0.4146,0.4634,-0.317,-0.561,-0.317,-0.0732,-0.122,-0.122,0.0244,0.1708,-0.317,-0.0244,0.122,0.4146,0.6098,1,0.8048,0.6098,0.7074,0.561,0.8536,0.6586,0.6586,0.4146,0.317,0.0244,0.3658,0.2682,0.2682,0.1708,-0.5362,-0.1594,0.3044,0.2174,-0.6812,-0.855,-0.4202,-0.3334,-0.6232,-0.855,-0.826,-0.5652,-0.5072,-0.5362,-0.3914,-0.5362,-0.5652,-0.3624,-0.0724,0.0724,0.3044,1,0.971,0.7682,0.6812,0.7682,0.942,0.7682,0.7392,0.4782,0.4782,0.3334,-0.8944,-0.1198,0.5422,0.324,0.2112,-0.0212,-0.2606,-0.4226,-0.486,-0.5422,-0.4154,0.514,0.8662,0.5986,0.4578,0.4226,0.317,0.3098,0.0492,0.0422,0.0774,-0.0774,-0.6338,-0.6902,-0.8028,-0.838,-1,-1,-1,-1,-1,-1,-1,-0.9252,-0.6246,-0.3168,-0.3826,-0.169,0.162,-0.064,-0.258,-0.363,-0.4004,-0.4928,-0.0214,0.799,0.6442,0.3844,0.2314,0.0302,-0.1654,-0.4378,-0.4324,-0.4626,-0.4786,-0.8078,-0.8114,-0.8754,-0.863,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.7634,-0.48,-0.2268,0.5332,0.9432,1,1,0.9766,0.7832,0.43,-0.1892,0.0326,0.065,0.005,-0.1984,-0.28,-0.4168,-0.6,-0.5118,-0.73,-0.7618,-0.81,-0.7968,-0.8868,-0.7668,-1,-1,-1,-1,-1,-1,-1,0.0858,1,1,0.6,-0.3428,-0.8,-0.9142,-0.7714,-0.7428,-0.8572,-0.3142,0.3142,-0.3142,-0.9714,-1,-1,-1,-0.8286,-0.9142,-1,-0.9428,-0.3428,-0.7428,-0.9428,-0.9142,-0.9428,-1,-1,-1,-1,-1,-1,-1,-0.1158,-0.1412,-0.1484,-0.1722,-0.1974,-0.2082,-0.2326,-0.2776,-0.2534,-0.2376,0.1928,0.2292,0.2966,0.359,0.4442,0.555,0.645,0.7678,0.9068,0.9268,-0.5866,0.4118,-0.5,-0.4128,-0.3078,0.1298,0.3702,-1,0.0304,0.4768,0.1548,-0.3492,-0.2918,-0.0846,0.161,0.579,0.3142,-0.008,0.5248,0.63,-0.1898,-0.295,-0.1484,-0.0048,0.4322,0.4226,0.228,0.1962,0.0686,0.2536,0.5726,0.5502,0.193,0.295,0.4832,0.7066,0.7098,1,0.9362,0.3398,-0.5062,-0.2256,-0.6592,-0.8922,-0.7694,-0.6642,-0.4386,-0.223,-0.3634,-0.564,-0.5664,-0.3984,-0.4888,-0.5388,-0.4938,-0.1478,-0.0878,0.03,-0.035,0.0902,0.2456,0.2456,0.3634,0.3508,0.4412,0.5488,0.7418,0.787,0.8596,0.9148,1,0.7694,-0.5,-0.284,-0.7408,-0.682,-0.682,-0.5648,-0.2624,0.3086,0.324,-0.0432,0.0246,0.2562,-0.1852,-0.2098,-0.2038,0.0278,0.287,0.3024,0.3456,0.321,0.5926,0.5216,0.6698,0.5896,0.4166,0.682,0.8334,1,0.9228,0.9692,0.8858,0.5988,-0.3346,-1,1,-1,1,-1,-1,0.9,-1,-0.309,-0.1454,0,0.1272,0,0.0728,0.3272,-0.0182,0.1272,0.2,0.709,0.8182,1,0.8728,0.6,0.2546,0.4364,0.8364,0.7818,0.2364,0.091,0.491,0.5636,0.1636,-0.091,0.3454,0.4728,0.309,-0.1818,-0.0546,0,-0.2728,'26'
-0.5328,-0.0816,-0.008,0.2832,0.5968,0.7728,0.6416,0.312,0.2032,0.216,0.168,0.1776,0.2576,0.2288,0.3888,0.3472,0.5232,0.5616,0.84,0.7568,1,0.8912,0.8176,0.7216,0.8336,0.68,0.648,0.664,0.6928,0.7408,0.744,0.7664,-0.434,-0.0362,0.0712,0.2918,0.6488,0.7764,0.614,0.344,0.2452,0.3092,0.2162,0.2424,0.315,0.3034,0.4368,0.3962,0.55,0.6082,0.8142,0.8636,1,0.8664,0.8926,0.8432,0.9188,0.7098,0.7532,0.759,0.7736,0.8664,0.849,0.852,-0.3848,-0.004,0.1398,0.3502,0.683,0.8002,0.6058,0.3342,0.2544,0.297,0.2144,0.209,0.3262,0.2782,0.454,0.3556,0.5312,0.6404,0.763,0.9228,1,0.8748,0.9068,0.8882,0.8934,0.7976,0.7604,0.6724,0.6778,0.8828,0.779,0.8082,-0.4416,-0.047,0.1958,0.3506,0.7208,0.7936,0.4386,0.2474,0.2018,0.1562,0.138,0.1138,0.2382,0.2898,0.3596,0.4386,0.4538,0.6722,0.7208,0.9666,0.906,1,0.8786,0.9544,0.9332,0.9666,0.6996,0.645,0.7116,0.7846,0.8726,0.827,-0.4166,-0.064,0.2762,0.3854,0.5538,0.557,0.248,0.1638,0.067,0.0046,0.064,0.1138,0.0826,0.2262,0.167,0.2948,0.429,0.4634,0.738,0.8378,1,0.9096,0.9376,0.8658,0.9002,0.9438,0.8846,0.6942,0.5288,0.61,0.7878,0.8096,-0.3976,-0.0516,0.4224,0.476,0.394,0.3084,0.1516,-0.0624,-0.0588,-0.0624,-0.148,-0.098,-0.016,-0.009,0.0552,0.1372,0.2086,0.3404,0.5116,0.7504,0.893,1,0.9252,0.8004,0.9074,0.9358,0.8432,0.7648,0.5794,0.4474,0.6114,0.811,-0.3116,-0.026,0.6018,0.5758,0.277,-0.0432,-0.078,-0.2078,-0.355,-0.3982,-0.5064,-0.381,-0.3852,-0.2988,-0.2294,-0.091,-0.039,0.0692,0.3506,0.6536,0.8702,1,0.9394,0.7402,0.7878,0.8744,0.9264,0.8096,0.645,0.4762,0.4676,0.5152,-0.5254,-0.0848,0.0508,0.356,0.4916,0.7628,0.7288,0.3898,0.2882,0.2204,0.1186,0.1864,0.2542,0.2542,0.356,0.356,0.4916,0.6272,0.8306,0.8644,1,0.9322,0.8306,0.8306,0.8644,0.8306,0.661,0.6272,0.7628,0.7628,0.695,0.695,-0.613,-0.129,-0.0646,0.1936,0.613,0.7742,0.6452,0.2258,0.129,0.1936,0.129,0.1612,0.2258,0.2258,0.3548,0.3548,0.4838,0.613,0.8388,0.871,1,0.9354,0.8064,0.8064,0.871,0.7742,0.6452,0.7096,0.7742,0.742,0.7742,0.8064,-0.374,-0.0608,0.3566,0.426,0.3914,0.3392,0.2,0.0608,-0.026,0.0086,-0.026,-0.0086,0.0434,0.113,0.1478,0.1652,0.3218,0.3914,0.4782,0.7914,0.7914,1,0.9304,0.826,0.9304,0.9304,0.826,0.7392,0.6,0.513,0.6,0.8434,-1,-1,-1,-1,-1,-1,-1,-1,-0.9904,-0.9916,-0.6442,0.4492,0.8586,0.982,0.9536,0.7718,0.518,0.1158,-0.2128,-0.2898,-0.3204,-0.3488,-0.5522,-0.8748,-0.973,-0.9742,-0.9772,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9958,-0.9958,-0.793,0.3438,0.685,0.9506,0.7518,0.5356,0.3526,0.2366,0.0204,-0.2664,-0.573,-0.7538,-0.8868,-0.9546,-0.9844,-0.9904,-0.9896,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.98,-0.64,-0.3934,-0.42,-0.4316,-0.4116,-0.4658,-0.4744,-0.3116,-0.2144,-0.3172,-0.423,-0.6372,-0.6434,-0.2568,-0.2334,-0.54,-0.4468,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,0.2,-1,-1,-0.9428,-0.9428,-0.9714,-0.5142,0,-0.1142,1,1,1,0.0286,-0.2572,-0.3428,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.5758,0.5904,0.6184,0.6232,0.6254,0.6318,0.6442,0.6334,0.6292,0.8234,-0.7066,-0.2352,-0.8236,-0.0944,0.4426,0.5484,0.7174,1,-0.3062,0.1836,0.5918,0.5102,0.4694,0.204,0.4082,0.4082,0.653,0.6734,1,0.9592,0.9388,0.8368,0.796,0.796,0.8572,0.8572,0.898,0.9388,0.5714,0.551,0.2654,0.204,0.0612,0.1428,0.102,0.2654,0.2244,0.2244,0.1632,-0.6122,0.0394,0.5118,0.9842,1,0.5906,0.3858,0.3386,0.3228,0.4646,0.7638,0.9212,0.8426,0.811,0.7166,0.6378,0.685,0.7008,0.6692,0.6692,0.748,0.4488,0.37,0.1338,0.1654,0.1338,0.1024,0.1968,0.1812,0.2598,0.4646,0.3544,0.1654,-0.0842,0.3458,0.813,0.6822,0.5328,0.3272,0.3832,0.4018,0.6074,0.8692,1,0.757,0.813,0.7196,0.8318,0.7758,0.8504,0.8504,0.8318,0.8318,0.8504,0.6074,0.1028,-0.1402,-0.1028,0.0468,0.4206,0.4954,0.3272,0.4018,0.271,-0.0654,0.7324,-1,-1,1,-1,-1,-0.8,-0.8,-1,-0.4546,-0.1404,0.0578,0.0414,0.091,0.1404,0.1074,0.2232,0.2066,0.2066,0.9008,1,0.7852,0.7686,0.4546,0.3388,0.5702,0.4546,0.157,0.438,0.6528,0.6694,0.372,0.2232,0.2066,-0.0248,-0.0578,-0.157,-0.1404,-0.3388,-0.2892,-0.4214,'1'
-0.5474,-0.0058,-0.008,0.392,0.4218,0.8102,0.7852,0.3462,0.3372,0.1542,0.1474,0.2846,0.2846,0.3142,0.3326,0.44,0.4674,0.7234,0.7486,0.9566,1,0.7326,0.7508,0.6868,0.7234,0.6206,0.6778,0.504,0.4194,0.5748,0.6778,0.6206,-0.5026,0.0114,0.0216,0.4098,0.4138,0.7048,0.7152,0.385,0.4158,0.191,0.2342,0.2776,0.3374,0.3106,0.3912,0.418,0.5212,0.645,0.7688,0.841,1,0.874,0.7172,0.6058,0.7668,0.676,0.5584,0.486,0.5212,0.4778,0.7152,0.6842,-0.4626,0.0428,0.0492,0.4668,0.4562,0.7152,0.698,0.439,0.4176,0.2184,0.212,0.3276,0.334,0.3748,0.3854,0.4304,0.4496,0.7066,0.7324,0.955,1,0.7922,0.8394,0.698,0.7644,0.6168,0.683,0.4368,0.4068,0.6296,0.7216,0.6402,-0.3748,0.0578,0.2078,0.4946,0.4326,0.6488,0.5546,0.4176,0.2934,0.2334,0.1242,0.2506,0.2698,0.3684,0.2976,0.3832,0.5224,0.5868,0.773,0.8158,0.9764,1,0.7688,0.7774,0.7602,0.7624,0.6102,0.5588,0.3404,0.4282,0.6446,0.6424,-0.367,0.0296,0.3626,0.529,0.4282,0.518,0.321,0.3428,0.218,0.1894,0.1456,0.1304,0.2684,0.2092,0.2968,0.3692,0.426,0.5904,0.6824,0.9146,1,0.9978,0.8752,0.8182,0.851,0.8466,0.8006,0.6516,0.4874,0.426,0.5466,0.735,-0.3552,0.019,0.5828,0.6738,0.3274,0.2996,0.2692,0.1302,0.158,-0.0366,-0.0468,0.1302,0.0266,0.115,0.1732,0.1808,0.335,0.3528,0.5246,0.8634,0.9444,1,0.8558,0.8028,0.823,0.8408,0.8256,0.6992,0.5222,0.3754,0.297,0.373,-0.2932,0.0524,0.5432,0.574,0.0834,-0.068,-0.0216,-0.3148,-0.3642,-0.3488,-0.463,-0.3766,-0.1914,-0.176,-0.1018,-0.0432,-0.0524,0.0772,0.318,0.497,0.9044,1,0.9414,0.855,0.8672,0.895,0.8982,0.932,0.6976,0.5124,0.4352,0.466,-0.5666,0,0,0.3666,0.4666,0.8334,0.8334,0.4334,0.3334,0.1334,0.1666,0.1334,0.2,0.2334,0.3334,0.3666,0.4334,0.7,0.8666,0.7,1,0.8666,0.8334,0.7666,0.7666,0.7,0.7,0.6334,0.2334,0.3,0.5666,0.5,-0.492,0.0476,0.0158,0.3968,0.5556,0.873,0.8412,0.365,0.3334,0.1746,0.1112,0.365,0.3016,0.3334,0.2698,0.5238,0.492,0.7142,0.746,1,1,0.7778,0.7778,0.8412,0.8412,0.7778,0.746,0.5556,0.5874,0.619,0.6508,0.7778,-0.3446,-0.0084,0.4958,0.5798,0.3446,0.3278,0.2774,0.1596,0.21,-0.042,-0.0084,0.21,0.126,0.1932,0.1764,0.2436,0.3782,0.311,0.5462,0.8824,1,0.8656,0.8488,0.8824,0.7816,0.8824,0.7478,0.7478,0.479,0.4454,0.311,0.6134,-1,-1,-1,-1,-1,-1,-1,-0.9848,-0.9848,-0.9848,-0.5106,0.615,0.8912,0.9838,0.9478,0.893,0.8174,0.7282,0.6122,0.7122,0.803,0.147,-0.6708,-0.9092,-0.9614,-0.9604,-0.9686,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9938,-0.9938,-0.9824,-0.5914,0.4452,0.7038,0.9044,0.7046,0.3878,0.3622,0.3832,0.1968,-0.167,-0.3418,-0.5936,-0.8928,-0.9464,-0.9324,-0.92,-0.9632,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9798,-0.9868,-0.84,-0.5534,-0.429,-0.3156,-0.28,-0.3156,-0.3868,-0.2334,-0.129,-0.2,-0.7,-0.854,-0.846,-0.5134,-0.2368,-0.3968,-0.2868,-0.46,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4858,-0.7714,1,1,1,-0.8,-0.9714,-0.8286,-0.9142,-1,-0.7428,-0.7714,-0.2858,-0.4572,1,1,-0.4,0.2858,0.1714,0.8286,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.521,0.5338,0.5072,0.4982,0.4972,0.4724,0.4572,0.464,0.5016,0.7292,-0.7734,0.0706,-0.6792,0.2418,0.1948,0.65,0.872,1,-0.2942,-0.1372,0.5294,0.647,0.6078,0.3334,0.4118,0.647,0.7254,0.804,0.9608,1,1,0.8432,0.647,0.5294,0.7648,0.8432,0.804,0.804,0.8824,0.8432,0.804,0.647,0.6078,0.4902,0.3726,0.2942,0.2156,0.098,-0.255,-0.647,-0.3266,0.1836,0.5918,0.5714,0.5714,0.1836,0.2244,0.4082,0.4898,0.6734,0.9184,0.9388,1,0.7142,0.4898,0.3674,0.7552,0.8572,0.7756,0.7756,0.9388,0.9184,0.796,0.7142,0.6734,0.3878,0.4286,0.4082,0.102,-0.1836,-0.204,-0.6122,-0.1452,0.1774,0.5806,0.5322,0.4516,0.2742,0.2742,0.4032,0.613,0.7904,1,0.871,0.8388,0.7742,0.629,0.5646,0.7904,0.758,0.742,0.7904,0.8388,0.9194,0.9516,0.9838,0.8226,0.258,0.1452,0.129,0.0806,-0.0806,-0.1936,-0.4838,0.9384,-1,-1,1,-1,-1,-0.4,-0.8334,-1,0.0838,0.1354,0.0322,0.1484,0.1742,-0.213,0.1354,-0.1226,0.058,0.2388,0.7032,0.9742,0.9226,1,0.742,0.5354,0.7678,0.5226,0.4194,0.3032,0.071,0.0322,0.2774,0.2,0.1612,0.1226,0.0322,-0.2,-0.2516,-0.1354,-0.3806,-0.6,'1'
-0.2786,0.3384,0.3458,0.5888,0.529,0.144,0.1102,0.1028,0.0206,-0.1214,-0.1364,0.0056,-0.0168,0.1178,0.0878,0.3384,0.3794,0.5776,0.7644,1,0.9514,0.7758,0.701,0.8728,0.7832,0.843,0.7644,0.5962,0.514,0.5664,0.5664,0.7532,-0.2774,0.256,0.244,0.561,0.5092,0.1158,0.0488,0.128,0.061,-0.003,-0.067,0.0182,-0.0518,0.1342,0.058,0.1616,0.0946,0.436,0.4512,0.7774,0.6952,0.9818,0.9054,0.8384,0.7592,1,0.9268,0.8932,0.817,0.75,0.6708,0.7804,-0.288,0.2198,0.2114,0.4638,0.427,0.0666,0.0128,0.1036,0.0468,-0.0298,-0.0808,-0.01,-0.0666,0.1064,0.0412,0.1234,0.0724,0.3334,0.2936,0.6794,0.6426,1,0.9632,0.6454,0.5914,0.7958,0.7476,0.9092,0.8638,0.671,0.6198,0.7276,-0.24,0.2656,0.2306,0.5708,0.4848,0.078,-0.0524,0.0938,-0.078,-0.0016,-0.1702,-0.0684,-0.027,0.0684,-0.0366,0.027,0.1702,0.2114,0.4022,0.4372,0.8124,0.8792,0.8982,0.8792,0.7838,0.8028,1,0.981,0.8632,0.7616,0.7012,0.7106,-0.1706,0.3578,0.512,0.7284,0.49,0.09,0.0202,0.0422,-0.0202,-0.101,-0.134,-0.2514,-0.1302,-0.2036,-0.1046,-0.1156,-0.0972,0.101,0.1046,0.3394,0.6588,0.9486,1,0.8678,0.6256,0.7248,0.9302,0.9854,0.9302,0.7798,0.6808,0.7798,-0.1168,0.4112,0.7476,0.8738,0.2384,-0.042,-0.2804,-0.4112,-0.3224,-0.4814,-0.5468,-0.4672,-0.5186,-0.472,-0.701,-0.6496,-0.3926,-0.285,-0.2524,0.1356,0.4672,0.7524,1,0.93,0.6588,0.6636,0.8504,0.8644,0.6682,0.4206,0.3692,0.2384,0.0168,0.4484,0.5972,0.6402,-0.127,-0.7218,-0.717,-0.5156,-0.5204,-0.669,-0.8322,-0.8562,-0.5924,-0.578,-0.5588,-0.4292,-0.4004,-0.4004,-0.0744,0.175,0.4532,0.7218,1,0.9616,0.693,0.7938,0.9616,0.765,0.6546,0.458,0.3142,0.271,-0.3158,0.4736,0.5264,0.5264,0.421,0.3158,0.3684,0.2106,-0.1052,-0.3158,-0.3684,-0.0526,0.3684,0.579,0.7368,0.8948,1,1,0.8948,0.5264,0.2632,0.6842,0.7894,0.4736,0.1578,0.3158,0.5264,0.421,0.2106,0.1052,0.3158,0.4736,-0.1836,0.3062,0.1836,0.6326,0.6326,0.1836,-0.0204,0.102,-0.0204,-0.0204,-0.1836,-0.0612,-0.0612,0.102,0.0612,0.2654,0.4694,0.551,0.8368,0.9592,1,1,0.8368,0.8776,0.8776,0.9592,0.551,0.6326,0.4286,0.6326,0.551,0.7142,-0.1208,0.3406,0.5604,0.6924,0.3186,0.099,-0.011,-0.099,-0.077,-0.2968,-0.1208,-0.3626,-0.3406,-0.2088,-0.2528,-0.1868,-0.1428,-0.011,-0.011,0.077,0.6044,0.7802,1,0.8682,0.6704,0.7362,0.7802,1,0.912,0.6484,0.6044,0.6484,-1,-1,-1,-1,-1,-1,-1,-1,-0.9762,-0.9812,-0.9178,0.7674,0.8792,0.7922,0.6348,0.4774,0.3618,0.2588,0.1538,0.1044,0.055,-0.1568,-0.6972,-0.9436,-0.9476,-0.9534,-0.9752,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.985,-0.9874,-0.933,0.2088,0.937,0.8872,0.809,0.9252,0.5012,0.1282,-0.271,-0.4722,-0.547,-0.5264,-0.8778,-0.9244,-0.959,-0.9736,-0.9788,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9328,-0.94,-0.9134,-0.463,-0.0944,-0.1086,-0.0572,0.0542,-0.0858,-0.1744,-0.5772,-0.6276,-0.7126,-0.5826,-0.3168,0.2032,-0.3534,-0.7,-0.8934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2572,-0.5428,1,1,1,-1,-1,-0.8572,-0.4858,-0.0572,-0.0572,0.1142,-0.6858,1,0.4286,0.7428,1,0.0572,-0.0858,-1,-1,-1,-1,-1,-1,0.5778,0.5778,0.5888,0.595,0.5926,0.596,0.5986,0.6002,0.6026,0.3244,0.3208,0.3208,0.4406,0.5034,0.5484,0.6196,0.6748,0.7522,0.8518,0.9948,-0.7734,-0.1764,-0.986,-0.478,0.204,0.8558,0.9992,1,0.3104,0.462,0.2552,0.7518,0.8206,0.931,1,0.9172,0.8068,0.6828,0.6966,0.6414,0.6414,0.6276,0.7932,0.8482,0.8344,0.5862,0.8068,0.7518,0.3104,0.2276,0.4344,0.8896,0.6276,0.5586,0.531,0.7104,0.7656,0.2552,0.2966,-0.0482,-0.1158,-0.0948,0.4736,0.5158,0.4316,0.5578,0.7474,1,0.5158,0.7474,0.1578,0.0736,0.5578,0.6842,0.9368,0.7684,0.6422,0.8526,0.7264,0.4948,0.6422,0.3264,0.3264,0.0948,0.4316,0.4736,0.5158,0.3052,-0.0106,0.4106,-0.221,-0.8106,0.2236,0.0922,0.6974,0.5264,0.5526,0.6578,0.829,1,0.7632,0.6316,0.8026,0.8422,0.8816,0.3158,0.4342,0.3684,0.579,0.75,0.5394,0.7894,0.8422,0.7106,0.7106,0.5658,0.7632,0.7764,0.6316,0.5132,0.0922,0.1974,0.0264,-0.421,-0.9874,1,-1,-1,-1,-1,-1,-1,-1,-0.2254,0.014,-0.0986,-0.2254,-0.014,-0.2254,-0.0564,0.0986,0.014,0.3662,0.5492,0.9578,0.4788,0.6478,0.7606,0.7042,0.5916,0.7464,0.817,0.6478,0.676,0.9014,1,0.6198,0.3098,0.324,0.4084,0.0846,0,0.0986,-0.2394,-0.3522,'2'
-0.3294,0.3152,0.3526,0.3928,0.4158,-0.033,0.0792,-0.1338,-0.0504,-0.1972,-0.0044,-0.1194,0.1224,0.0532,0.1684,0.1338,0.2518,0.269,0.5224,0.6172,0.9252,1,0.9022,0.9712,0.764,0.954,0.8706,0.9914,0.8936,0.81,0.8014,0.8072,-0.4622,0.2344,0.2804,0.26,0.3316,-0.055,0.0294,-0.1882,0.0038,-0.137,-0.091,-0.1728,0.0448,0.0116,0.0244,0.0628,0.1574,0.2394,0.2728,0.4162,0.557,0.813,0.7056,0.9872,0.9514,0.8464,0.8592,0.9232,1,0.7746,0.913,0.708,-0.4142,0.1672,0.2,0.211,0.2656,-0.082,-0.023,-0.1584,-0.0338,-0.1804,-0.0644,-0.154,0.0032,-0.0558,0.0602,0.0536,0.1082,0.1388,0.2546,0.3334,0.4754,0.6066,0.753,1,0.9126,0.6306,0.5782,0.7924,0.7814,0.8754,0.917,0.6744,-0.4232,0.1466,0.1632,0.2682,0.2778,-0.1014,-0.0632,-0.1204,-0.0704,-0.2038,-0.1228,-0.2038,-0.099,-0.1252,0.0132,-0.1418,-0.0036,-0.037,0.2324,0.1586,0.4184,0.4278,0.8164,0.7664,0.8092,0.7926,0.7736,0.795,0.9548,1,0.8284,0.7616,-0.2704,0.2652,0.247,0.4256,0.3738,0.0064,-0.0764,0.0116,-0.0634,-0.1074,-0.198,-0.1204,-0.185,-0.0142,-0.1048,-0.0324,-0.0634,0.1152,0.1228,0.3014,0.423,0.7024,0.8706,1,0.9508,0.7438,0.824,0.912,0.9612,0.9948,0.9224,0.7904,-0.1736,0.2998,0.4662,0.6328,0.3888,-0.0272,-0.1362,-0.1392,-0.2022,-0.317,-0.3544,-0.3946,-0.3342,-0.2282,-0.2454,-0.2138,-0.1162,-0.142,0.0846,0.231,0.406,0.6556,0.8708,0.911,0.9226,0.7532,0.9282,1,0.9426,0.8824,0.802,0.7676,-0.1486,0.3188,0.6436,0.7466,0.1406,-0.3702,-0.4336,-0.5406,-0.5762,-0.7108,-0.7584,-0.8218,-0.6792,-0.493,-0.5722,-0.5524,-0.3702,-0.3466,-0.109,0.002,0.3584,0.802,1,0.8336,0.7862,0.6594,0.7268,0.8534,0.608,0.4654,0.2198,0.2476,-0.0698,0.0698,0.2094,0.3954,0.3024,-0.3954,-0.3024,-0.2558,-0.3024,-0.2558,-0.1162,-0.0232,-0.0698,0.1628,-0.0232,0.1628,-0.0698,0.4884,0.721,0.5348,0.907,0.907,1,0.907,0.5348,0.4418,0.5814,0.628,0.5348,0.1162,0.2558,0.4884,-0.4482,0.2068,0.2068,0.2414,0.3104,-0.0344,-0.0344,-0.5518,-0.2758,-0.5518,-0.2758,-0.3794,-0.1034,-0.2414,-0.069,-0.1724,0.1034,-0.1034,0.5172,0.5172,0.931,1,0.7586,0.7586,0.7586,0.8276,0.5862,0.4138,0.3448,0.5518,0.6206,0.6896,-0.2034,0.2034,0.322,0.4916,0.339,-0.0678,-0.2034,-0.1694,-0.1694,-0.1864,-0.2204,-0.2712,-0.2372,-0.2882,-0.1186,-0.0678,0.0338,-0.017,0,0.322,0.3898,0.695,0.7796,1,0.9322,0.7288,0.7966,0.8984,0.7796,0.7628,0.7118,0.7118,-1,-1,-1,-1,-1,-1,-1,-1,-0.986,-0.986,-0.9558,0.6542,0.5338,0.5742,0.548,0.4708,0.4464,0.3336,0.2698,0.1636,-0.0216,-0.0798,-0.672,-0.9464,-0.9642,-0.9756,-0.9822,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.995,-0.9934,-0.9866,-0.0862,0.1272,0.4142,0.8404,0.874,0.7782,0.3156,-0.138,-0.5282,-0.7526,-0.757,-0.9326,-0.9798,-0.9778,-0.9872,-0.9914,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.89,-0.35,0.02,0.115,0.19,0.255,0.2824,0.2368,0.0714,-0.2152,-0.6708,-0.673,-0.7786,-0.3152,-0.4618,-0.7686,-0.8552,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2572,-0.8,1,1,1,-0.6572,-0.8572,-0.6858,-0.6858,-0.6286,-0.4,0.1142,-0.0286,1,1,-0.2286,-0.4572,0.0286,0.0858,-1,-1,-1,-1,-1,-1,0.48,0.4984,0.5126,0.5308,0.5462,0.5626,0.5714,0.5786,0.5782,0.4184,0.7712,0.8236,0.86,0.8854,0.9068,0.9308,0.9544,0.9674,1,1,-0.8534,-0.0236,-0.993,-0.8006,0.376,-0.1236,0.2136,1,0.127,0.0158,0.0794,0.4444,0.3492,0.762,0.8096,0.3492,0.9842,0.7778,1,0.7302,0.7936,0.9048,0.6666,0.7302,0.746,0.3968,0.4444,0.2222,0.6666,0.2698,0.2698,0.4444,0.5556,0.6666,0.7302,0.8572,0.1112,0.238,-0.1588,-0.254,0.0416,-0.0416,0.0138,0.6806,0.5972,0.6528,1,0.7778,0.6944,0.6112,0.4306,0.4028,0.6666,0.7222,0.2222,0.3056,0.6388,0.6112,0.5694,0.4444,0.3888,0.3334,0.3194,0.6944,0.5,0.5,0.2362,0.1944,0.4028,0.125,0.4028,0.1666,-0.036,0.0216,0.1224,0.7122,0.482,0.5972,1,0.813,0.4388,0.669,0.4388,0.7122,0.5972,0.6258,0.3382,0.4676,0.5396,0.669,0.5828,0.2374,0.4244,0.5252,0.2374,0.1798,0.1942,0.3382,0.3094,0.295,0.0504,0.0792,0.108,-0.482,-0.9992,1,-1,-1,-1,-1,-0.6,-1,-1,-0.3962,-0.2076,0.132,0.283,0.1886,-0.0566,0.2642,-0.0378,0.2642,0.566,0.7736,0.868,0.9622,0.9622,0.7736,0.6416,1,0.6416,0.283,0.3962,0.283,0.2264,0.0566,0.0566,0.0566,0.0754,0.0188,-0.0754,-0.2076,-0.3018,-0.2076,-0.6226,'2'
-0.4824,0.1902,0.2254,0.4824,0.5634,0.2042,0.2324,0.1198,0.1374,-0.0036,0.0634,0.0774,0.1796,0.1374,0.2958,0.3662,0.5422,0.7782,0.912,0.8698,0.7394,0.6126,0.7922,0.8908,1,0.9014,0.5916,0.493,0.3592,0.3346,0.3416,0.3768,-0.3948,0.1588,0.1588,0.658,0.637,0.1376,0.1226,0.1438,0.1256,-0.0016,-0.0136,0.0922,0.0984,0.1438,0.1438,0.301,0.3162,0.6006,0.6158,0.9364,1,0.77,0.7004,0.758,0.8456,0.8518,0.9304,0.6732,0.537,0.4462,0.5432,0.6612,-0.2676,0.2488,0.4242,0.7778,0.7026,0.1862,0.0798,0.1424,0.014,0.058,-0.0954,0.0548,0.0078,0.1486,0.1486,0.2738,0.2958,0.396,0.7214,0.806,0.9186,1,0.737,0.6964,0.806,0.8372,0.9092,0.9248,0.6306,0.5492,0.687,0.7652,-0.2606,0.2052,0.5146,0.7524,0.6092,0.0782,-0.0228,0.0618,-0.0522,-0.0196,-0.0488,-0.0684,0.0782,0.0196,0.1498,0.1206,0.2932,0.4658,0.5994,0.8762,0.961,0.8078,0.8534,0.6938,0.7134,1,0.9544,0.7362,0.6156,0.5016,0.531,0.7068,-0.3334,0.1122,0.4724,0.6292,0.3832,-0.1158,-0.1302,-0.1444,-0.2906,-0.3904,-0.2442,-0.312,-0.2264,-0.0374,-0.0374,0.123,0.098,0.3048,0.5936,0.7434,0.9466,1,0.7362,0.6506,0.7718,0.8468,0.9216,0.7968,0.6114,0.4974,0.4796,0.6222,-0.3308,0.0716,0.5048,0.6054,0.1218,-0.2612,-0.323,-0.4662,-0.412,-0.3926,-0.4468,-0.3926,-0.2728,-0.1722,-0.087,-0.118,0.087,0.2572,0.4198,0.7794,0.8762,1,0.8608,0.6324,0.8492,0.9072,0.9768,0.853,0.733,0.5938,0.5358,0.5668,-0.175,0.2428,0.7076,0.7232,-0.154,-0.6188,-0.5666,-0.6502,-0.7964,-0.8172,-0.8852,-0.8016,-0.577,-0.4464,-0.3838,-0.4412,-0.2324,-0.2324,0.1228,0.3368,0.6972,0.786,0.9582,0.7494,0.8016,1,0.9164,0.8642,0.598,0.3472,0.3472,0.4256,-0.756,0.0244,0.0732,-0.1708,0.0732,0.0244,-0.122,0.122,0.0732,0.1708,0.1708,0.2196,0.122,0.2682,0.4146,0.0244,0.3658,0.6098,0.9512,0.8536,0.5122,0.2196,0.4634,1,1,0.9512,0.3658,0.3658,0.7074,0.756,0.6098,0.5122,-0.3704,0.3704,0.3704,0.7038,0.7038,0.4074,0.4074,0.2222,0.2592,0.1482,0.2222,0.1112,0.2592,0.2222,0.4444,0.4444,0.7408,0.8888,1,0.926,0.6666,0.5186,0.8518,0.8518,0.963,0.8148,0.4074,0.4444,0.2592,0.2222,0.1482,0.2222,-0.34,0.14,0.52,0.76,0.6,-0.06,-0.06,-0.02,-0.14,-0.12,-0.1,-0.14,-0.04,-0.08,0.08,0.16,0.24,0.46,0.52,0.92,0.96,0.86,0.84,0.7,0.78,1,0.88,0.74,0.6,0.54,0.56,0.6,-0.986,-0.9876,-0.9828,-0.9836,-0.9836,-0.9828,-0.9836,-0.9818,-0.9836,-0.9728,-0.9588,0.1528,0.8568,0.9514,0.944,0.7728,0.66,0.4492,0.1988,0.1026,-0.0424,-0.2334,-0.7926,-0.9614,-0.9728,-0.9704,-0.9818,-1,-1,-1,-1,-1,-1,-0.992,-0.991,-0.9776,-0.933,-0.879,-0.8086,-0.7484,-0.7174,-0.6316,-0.6058,-0.6342,-0.2814,0.513,0.9614,0.627,0.317,0.0636,-0.0212,-0.0852,-0.138,-0.474,-0.7246,-0.8914,-0.9462,-0.9672,-0.9832,-0.9664,-1,-1,-1,-1,-1,-1,-0.96,-0.9,-0.36,0.71,1,1,1,1,1,1,1,0.0114,-0.0858,0.06,-0.263,-0.383,-0.5162,-0.478,-0.4322,-0.4722,-0.5322,-0.8038,-0.3456,0.1544,-0.269,-0.8022,-0.699,-1,-1,-1,-1,-1,-1,-0.7714,0.7142,1,1,0.4858,-0.6286,-0.8286,-0.6572,-0.3428,-0.3714,1,1,1,-0.7428,-0.8286,-0.6286,-0.2572,-0.2572,-0.9142,-0.4572,1,1,0.6572,0.2572,1,0.1714,1,-1,-1,-1,-1,-1,-1,0.9166,0.9058,0.893,0.871,0.8662,0.8426,0.8166,0.7824,0.7264,0.4286,0.3288,0.38,0.4044,0.4602,0.5046,0.557,0.6312,0.7082,0.7856,0.8808,-0.7466,-0.2118,-0.6402,-0.623,-0.3594,0.172,0.4086,0.4334,-0.5866,-0.5784,-0.3454,-0.2816,-0.1124,0.0846,0.14,0.301,0.3092,0.2234,0.2788,0.3314,0.3842,0.3536,0.4286,0.448,0.4868,0.5866,0.7558,0.7116,0.7864,0.8058,0.8668,0.8308,0.9584,1,0.878,0.8474,0.7698,0.7864,0.8502,0.4786,-0.683,-0.7468,-0.399,-0.2502,-0.2754,-0.2058,-0.1324,-0.0434,0.0106,0.0086,0.169,0.231,0.2252,0.2484,0.2696,0.2136,0.283,0.3816,0.5246,0.5806,0.5536,0.5962,0.7566,0.8126,0.8068,0.8068,0.7856,0.8822,0.9112,1,0.9574,0.5806,-0.6898,-0.688,-0.3206,-0.2426,-0.208,0.0034,-0.0086,0,0.2046,0.215,0.3206,0.3276,0.4644,0.4628,0.3692,0.357,0.3882,0.487,0.5996,0.6256,0.6482,0.662,0.6604,0.766,0.7746,0.8076,0.7088,0.7348,0.9394,1,0.6742,0.3848,-0.9586,-1,1,-1,-1,-1,-1,0.8,-1,-0.68,-0.008,-0.072,-0.536,-0.264,-0.28,-0.248,-0.296,-0.104,0.12,0.424,0.36,0.536,1,0.744,0.76,0.44,0.664,0.872,0.92,0.824,0.68,0.648,0.424,0.344,0.024,-0.04,-0.04,-0.024,-0.072,-0.12,-0.264,'3'
-0.6534,0.307,0.4186,0.3598,0.5008,0.398,0.2512,0.207,0.1718,0.2776,0.0544,0.2628,0.1336,0.3128,0.3128,0.5976,0.6534,0.8414,0.9472,0.8826,0.8296,0.771,0.859,1,0.9794,0.9236,0.7444,0.4596,0.442,0.4244,0.4772,0.4126,-0.5746,0.2026,0.2632,0.3722,0.4784,0.2278,0.1848,0.0532,0.1292,0.0836,0.0632,0.0912,0.0456,0.1544,0.0836,0.3064,0.2152,0.5594,0.5216,0.9292,1,0.7874,0.676,0.633,0.8988,0.8228,0.7088,0.6178,0.4962,0.5468,0.3544,0.4254,-0.3592,0.2814,0.3116,0.5402,0.5854,0.1356,0.2136,0.0402,0.1684,-0.0704,0.0654,-0.0754,0.186,0.0854,0.2036,0.1558,0.3668,0.3442,0.6658,0.711,0.9222,1,0.691,0.6156,0.6658,0.8342,0.7538,0.7036,0.5904,0.5126,0.4648,0.51,-0.301,0.3634,0.3634,0.766,0.738,0.2044,0.1888,0.1794,0.142,-0.0016,-0.0202,0.0608,0.0514,0.0858,0.0858,0.2762,0.2918,0.5102,0.5476,0.9564,1,0.8346,0.738,0.7224,0.7784,0.7442,0.794,0.5444,0.5164,0.401,0.454,0.4882,-0.155,0.405,0.736,0.9824,0.7782,0.2148,-0.1902,-0.0458,-0.1726,-0.3274,-0.2078,-0.2042,-0.007,-0.0282,0.007,0,-0.0352,0.1936,0.4824,0.7888,0.905,0.8978,0.764,0.8274,0.824,1,0.9084,0.4578,0.4402,0.3768,0.4014,0.5176,-0.2832,0.2258,0.7922,0.871,0.2832,-0.301,-0.301,-0.3942,-0.4802,-0.4194,-0.4516,-0.5484,-0.3082,-0.3262,-0.2688,-0.1434,-0.1112,0.0932,0.4516,0.6954,0.9642,1,0.8352,0.8422,0.8566,0.8888,0.8494,0.6594,0.4588,0.3978,0.3512,0.3692,0.2148,0.5936,0.4826,0.492,0.4412,-0.201,-0.2194,-0.201,-0.5796,-0.6212,-0.88,-0.8014,-0.5658,-0.5474,-0.3302,-0.4318,-0.298,-0.2332,0.187,0.4734,0.7044,1,0.9908,0.8106,0.963,0.9354,0.6398,0.5796,0.4134,0.4458,0.2564,0.2518,-0.5714,0.1428,0.3334,0.3334,0.1904,0.1904,-0.238,-0.238,-0.0952,0.0476,-0.238,0.0476,0.0952,0.0476,0.1904,0.381,0.3334,0.5238,0.2858,0.3334,0.4286,0.1904,0.238,0.9524,1,0.8096,0.3334,0.0952,0.2858,0.238,-0.0476,0.4762,-0.7454,0.4182,0.5272,0.3454,0.5272,0.4182,0.2364,0.2364,0.2,0.309,0.091,0.2728,0.2,0.309,0.4182,0.5636,0.891,0.8182,0.9636,0.9636,0.6364,0.8546,0.6728,0.9636,1,0.5272,0.6,0.0546,0.3818,0.2728,0.309,0.3454,-0.2,0.38,0.62,0.82,0.68,0.14,-0.18,-0.1,-0.2,-0.2,-0.14,-0.14,0.02,-0.08,0.14,0.18,0.14,0.3,0.54,0.78,1,0.84,0.5,0.78,0.76,0.9,0.88,0.34,0.48,0.3,0.4,0.54,-0.9834,-0.9762,-0.9566,-0.9648,-0.972,-0.9628,-0.9628,-0.9608,-0.967,-0.9534,-0.9204,0.6216,0.911,0.8748,0.7642,0.7012,0.6092,0.6226,0.7942,0.9338,0.5656,-0.274,-0.6308,-0.8398,-0.9018,-0.938,-0.9628,-0.969,-1,-1,-1,-1,-1,-0.9898,-0.9854,-0.8986,-0.799,-0.7542,-0.6582,-0.5504,-0.5844,-0.6336,-0.5268,-0.4758,-0.0086,0.6872,0.845,0.3454,0.0042,-0.2964,-0.4532,-0.4798,-0.2656,-0.4932,-0.8218,-0.8926,-0.8108,-0.9142,-0.9582,-0.9714,-0.9784,-1,-1,-1,-1,-1,-0.9334,-0.7734,0.6166,1,1,1,1,1,1,1,1,0.0274,0.0324,0.045,-0.16,-0.2076,-0.495,-0.605,-0.7668,-0.789,-0.7934,-0.8956,-0.5734,-0.2034,-0.1234,-0.3868,-0.5168,-0.71,-1,-1,-1,-1,-1,-0.6286,1,1,1,-0.7142,-0.7428,-0.9428,-0.8,-0.7428,-0.6,1,1,0.4858,-0.4858,-0.4286,-0.4,-0.4572,-0.4858,-0.3428,-0.4,1,0.4858,1,1,1,1,-0.4858,-0.6,-1,-1,-1,-1,-1,0.9126,0.9082,0.9086,0.9088,0.9132,0.9086,0.8998,0.8722,0.8028,0.4684,0.3286,0.3528,0.374,0.4008,0.4272,0.464,0.505,0.5974,0.6448,0.7728,-0.8266,-0.0352,-0.4762,-0.5452,-0.1122,0.4542,0.6998,0.375,-0.815,-0.762,-0.4206,-0.2404,-0.2116,-0.0794,-0.0914,0.036,0.185,0.202,0.1658,0.226,0.2884,0.2908,0.2524,0.2812,0.2788,0.5432,0.726,0.6826,0.6634,0.7524,0.7644,0.8124,0.839,1,0.887,0.8798,0.625,0.6514,0.5312,0.161,-0.793,-0.684,-0.4528,-0.2496,-0.2088,-0.0924,-0.05,0.024,0.1756,0.1498,0.159,0.4012,0.4232,0.3254,0.3254,0.377,0.3992,0.438,0.6322,0.8244,0.682,0.8798,0.9224,1,0.9224,0.9242,0.9132,0.9834,0.9668,0.7616,0.9334,0.7524,-0.9694,-0.7404,-0.5974,-0.2614,-0.227,-0.1222,-0.1088,-0.021,0.0974,0.1394,0.2004,0.2348,0.3854,0.313,0.3016,0.3358,0.2634,0.3474,0.75,0.9084,0.7022,0.8206,0.8474,1,0.9752,0.9732,0.96,0.9294,0.9886,0.9828,0.813,0.5954,-0.8376,-1,1,-1,-1,-1,0.4,0.9334,-1,-0.1636,-0.091,-0.1454,0.0182,0.0728,-0.291,0.309,0.6,0.8364,0.6182,0.4,0.8728,0.891,0.5454,1,0.8728,0.8364,0.6,0.7272,0.6546,0.7454,0.8728,0.6728,0.6364,0.6728,0.6182,0.6364,0.6364,0.6364,0.4364,0.2182,-0.1272,'3'
-0.2028,0.418,0.4216,0.672,0.6084,0.2276,0.1322,0.1076,0.037,0.0546,-0.0158,-0.0052,-0.097,0.0476,-0.03,0.2204,0.1816,0.4216,0.7178,0.9082,0.8096,0.7284,0.6296,0.7778,0.9154,1,0.7672,0.4956,0.4604,0.4286,0.4992,0.6366,-0.329,0.2496,0.3124,0.7454,0.6958,0.2528,0.1768,0.0942,0.0116,0.1008,0.0116,-0.0348,-0.124,0.0116,-0.048,0.2728,0.1802,0.3752,0.5472,0.881,0.7818,0.881,0.7752,0.7752,0.6892,1,0.8876,0.4744,0.352,0.643,0.5736,0.7586,-0.2758,0.2758,0.3166,0.7586,0.7054,0.2884,0.232,0.1724,0.1004,0.1474,0.0752,0.069,-0.0032,0.141,0.0564,0.3228,0.232,0.4138,0.4358,0.8056,0.7304,1,0.931,0.8496,0.768,0.9656,0.884,0.5924,0.5956,0.9436,0.859,0.8746,-0.3148,0.1982,0.3002,0.6502,0.5772,0.1982,0.0788,0.0496,-0.0874,0.0088,-0.1516,-0.0438,-0.0788,0.0466,0.032,0.1486,0.172,0.2624,0.5014,0.5948,0.9068,1,0.7434,0.7464,0.793,0.828,0.7172,0.7318,0.7522,0.7638,0.8484,0.8338,-0.2468,0.2564,0.359,0.6474,0.4968,0.1346,-0.0866,0.0032,-0.0802,-0.032,-0.1634,-0.173,-0.0256,-0.0706,-0.0064,-0.0224,0.1282,0.1924,0.3462,0.5866,0.859,0.8814,1,0.8142,0.843,0.843,0.9262,0.8174,0.673,0.7468,0.8686,0.859,-0.1748,0.3456,0.626,0.8008,0.374,0.0204,-0.2196,-0.3212,-0.2358,-0.4186,-0.3334,-0.4146,-0.3984,-0.317,-0.4146,-0.3334,-0.1992,-0.0976,0.1342,0.3414,0.6586,0.9838,1,0.7764,0.7804,0.8496,0.87,0.7114,0.5284,0.4634,0.3862,0.5326,-0.1326,0.3302,0.576,0.6482,-0.0554,-0.6964,-0.6096,-0.7784,-0.7638,-0.7784,-0.7254,-0.6338,-0.6916,-0.5374,-0.4746,-0.5132,-0.465,-0.3494,-0.2,0.1228,0.3012,0.7734,0.9422,1,0.6964,0.7156,0.918,0.7156,0.4844,0.3832,0.3204,0.3398,-0.2222,0.3704,0.4444,0.4814,0.3334,0.037,-0.1482,-0.037,-0.1112,-0.037,-0.074,-0.1112,-0.037,0,0.037,0.1852,0.3334,0.5186,0.7778,0.926,0.8888,0.7408,0.6666,0.8518,1,0.963,0.7038,0.3704,0.5186,0.5186,0.4444,0.5926,0.0322,0.5162,0.4838,0.7742,0.7096,0.387,0.2258,0.3226,0.1612,0.2258,0.0322,0.129,0.0968,0.2258,0.1612,0.2904,0.1936,0.387,0.742,0.8064,0.7096,0.613,0.6452,0.5806,0.9678,1,0.613,0.5484,0.613,0.5806,0.5806,0.5162,-0.3334,0.162,0.2762,0.5238,0.3904,0.0096,-0.1238,-0.1238,-0.181,-0.1238,-0.238,-0.219,-0.1428,-0.181,-0.1048,-0.1238,0.1048,0.1238,0.238,0.5428,0.6952,0.9048,1,0.6952,0.638,0.8286,0.8476,0.5428,0.5428,0.7714,0.7334,0.8476,-1,-1,-1,-1,-1,-1,-1,-1,-0.9796,-0.9842,-0.7108,0.274,0.7032,0.9018,0.9508,0.859,0.759,0.529,0.2648,0.1498,0.1396,-0.1878,-0.809,-0.9378,-0.962,-0.9732,-0.9732,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9824,-0.9826,-0.6928,0.0356,0.3582,0.494,0.6798,0.8546,0.967,0.6944,0.2208,-0.211,-0.3302,-0.5622,-0.8086,-0.9358,-0.8676,-0.8102,-0.9796,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9,-0.9068,-0.5068,-0.2916,-0.5172,-0.5516,-0.4316,-0.4116,-0.4286,-0.3344,-0.3026,-0.4626,-0.595,-0.655,-0.0468,-0.0868,-0.2034,-0.25,-0.9034,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7428,1,1,1,-0.1428,-1,-0.6858,-0.8858,-0.7428,-0.3714,0.2572,-0.1142,-0.6572,0.6286,0.2572,1,1,1,1,-1,-1,-1,-1,-1,-1,0.4932,0.5034,0.5148,0.5272,0.5448,0.5708,0.59,0.6152,0.6352,0.3862,0.8304,0.7864,0.8048,0.826,0.8168,0.825,0.8342,0.8498,0.8746,0.9948,-0.7866,-0.1648,-0.53,-0.2596,-0.024,0.2534,0.3146,1,-0.2632,-0.0526,0.0526,0.1578,0.3684,0.4736,0.5264,0.6316,0.5264,0.579,0.7368,0.7894,0.7894,0.8422,0.8422,0.9474,0.9474,1,0.9474,0.8422,0.7894,0.7894,0.6842,0.6316,0.4736,0.2632,0.1578,0.3684,0.2106,0,-0.1578,-0.6842,0,0.2142,0.3036,0.4286,0.4108,0.1964,0.5,0.5536,0.3214,0.5714,0.75,0.5892,0.9822,0.7322,0.7142,0.8392,0.8928,0.8928,1,0.75,0.8928,0.75,0.8214,0.8572,0.7678,0.7322,0.8036,0.6608,0.5892,0.4464,0.0358,-0.375,-0.0098,0.398,0.068,-0.0098,-0.165,-0.2234,0.0486,0.1068,0.2816,0.398,0.5922,0.6504,1,0.5728,0.4174,0.7088,0.9418,0.767,0.7088,0.903,0.8446,0.7088,0.8446,0.6504,0.4564,0.398,0.6116,0.7864,0.6116,0.4758,0.0098,-0.2428,0.0154,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.0072,-0.0218,-0.1678,-0.1386,-0.1386,-0.1094,-0.0072,-0.2992,0.1094,0.1532,0.3722,0.7956,0.7956,0.6934,0.8832,0.6788,0.5766,0.6934,0.8102,0.9562,1,0.7226,0.6204,0.5328,0.4744,0.4014,0.3138,0.27,0.3576,0.2408,-0.1386,-0.3576,'4'
-0.4568,0.4354,0.5302,0.1246,0.1626,-0.0368,0.2384,0.153,0.1126,0.1316,-0.0628,0.0462,-0.1886,0.0842,-0.0462,0.2692,0.2692,0.4946,0.5872,0.7438,1,0.879,0.72,0.6986,0.9074,0.955,0.6986,0.7342,0.5754,0.5066,0.4638,0.6228,-0.3556,0.4198,0.484,0.3342,0.4292,0.0868,0.2462,0.0416,0.2414,0.1224,0.1106,0.0678,0.2486,0.2652,0.201,0.296,0.2984,0.4602,0.4864,0.8406,0.7526,0.9548,0.9382,0.7194,0.7884,0.8502,1,0.874,0.8454,0.6956,0.962,0.893,-0.3368,0.2866,0.3138,0.3012,0.3452,0.0648,0.1402,-0.0084,0.1088,-0.1108,-0.0104,-0.1066,0.1444,0.044,0.1632,0.1046,0.2344,0.2218,0.4958,0.5146,0.3996,0.4708,0.703,0.8118,0.6946,0.8556,0.772,1,0.8934,0.7928,0.7448,0.749,-0.219,0.3732,0.3774,0.4014,0.3862,0.1606,0.154,0.065,0.0608,-0.026,-0.013,0.0196,0.0498,0.0282,0.065,0.076,0.1388,0.2472,0.345,0.397,0.449,0.358,0.5574,0.7332,0.859,0.9002,0.8916,1,0.9762,0.9848,0.8004,0.8222,-0.1814,0.336,0.3546,0.584,0.368,0.0214,-0.016,0.0346,-0.0666,-0.08,-0.1334,-0.1866,-0.1014,-0.0534,-0.048,-0.016,0.0986,0.1654,0.4294,0.56,0.7466,0.6854,0.536,0.4346,0.7174,0.8426,0.896,0.9786,1,0.9414,0.8026,0.8134,-0.1844,0.2458,0.8704,0.9454,0.1638,-0.2116,-0.3106,-0.2764,-0.3652,-0.4436,-0.5666,-0.4914,-0.3448,-0.4778,-0.454,-0.3344,-0.2218,0.0102,0.2116,0.372,0.7474,0.901,1,0.6622,0.7474,0.8396,0.7508,0.6006,0.5018,0.7134,0.7338,0.6894,0.2042,0.8482,0.5654,0.487,-0.267,-0.0524,0.0366,0,-0.288,-0.733,-0.7434,-0.5288,-0.3718,-0.1938,-0.1884,-0.2774,0.1728,0.466,0.7172,0.8482,1,0.8062,0.8168,0.822,0.8586,0.9896,0.8952,0.2618,0.2094,0.1466,0.3036,0.5236,-0.3928,0.4642,0.5714,0.1786,0.0358,0.0714,0.2142,0.1428,0.0358,0.0714,-0.1428,0,-0.1072,-0.0358,0.0714,0.3214,0.3572,0.6072,0.75,0.6072,0.9642,0.8928,0.8214,0.8214,0.9286,1,0.8572,0.7142,0.5,0.3214,0.25,0.5714,-0.5518,0.4138,0.5172,0.1724,0.138,-0.0344,0.1724,0.138,0.0344,0.069,-0.2068,0.0344,-0.1034,-0.0344,-0.0344,0.2414,0.3104,0.3794,0.5518,0.6206,1,0.931,0.4828,0.5862,0.7932,0.931,0.7932,0.4828,0.4828,0.3104,0.4138,0.2758,-0.3536,0.1314,0.1314,0.3738,0.2122,-0.192,-0.2122,-0.1314,-0.2122,-0.1718,-0.2526,-0.2728,-0.192,-0.2324,-0.1516,-0.1718,-0.0708,0.0506,0.1314,0.5354,0.6162,0.3132,0.2526,0.4142,0.6566,0.9192,0.8586,1,0.8384,0.9192,0.798,0.8788,-1,-1,-1,-1,-1,-1,-1,-0.984,-0.9796,-0.9628,-0.545,0.8484,0.7316,0.4728,0.3614,0.2954,0.1232,-0.1088,-0.3196,-0.074,-0.3546,-0.6292,-0.8574,-0.9538,-0.9674,-0.975,-0.981,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.989,-0.9872,-0.9142,-0.385,0.445,0.8016,0.8632,0.8246,0.5908,0.2438,-0.018,-0.4778,-0.3804,-0.735,-0.8178,-0.9172,-0.9504,-0.9592,-0.9746,-0.9842,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9628,-0.8534,-0.87,0.5932,-0.4046,-0.134,-0.092,0.104,0,0.004,0.024,-0.446,-0.656,-0.802,-0.728,-0.67,-0.3,-0.4468,-0.5768,-0.8868,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4,0.3142,1,1,1,-0.3428,-0.4286,-0.6858,-0.8,-0.8,0.1142,-0.0572,1,0.8286,-0.0286,0.6572,0.0286,0,-0.0858,-0.3714,-1,-1,-1,-1,-1,-1,0.6282,0.6442,0.6506,0.6596,0.6692,0.6718,0.6712,0.6666,0.643,0.4418,0.7122,0.6896,0.6798,0.709,0.7522,0.7686,0.7704,0.8212,0.947,0.9128,-0.8266,0.1648,-0.4258,0.0882,0.3718,0.5678,0.7836,1,-0.3846,-0.0192,0.0192,-0.1346,0.327,0.3846,0.5,0.5,0.4808,0.2884,0.5,0.5,0.7884,0.827,0.9616,1,0.923,0.8846,0.827,0.75,0.7308,0.8462,0.6538,0.6538,0.7692,0.7116,0.7116,0.5192,0.2884,0.077,-0.1538,-0.3846,-0.6666,-0.4616,-0.3076,-0.2692,-0.218,-0.1924,-0.2308,0.141,-0.0128,0.2564,0.1794,0.2564,0.6538,0.718,0.359,0.5,0.6026,0.7052,0.859,0.923,0.9872,0.9102,0.8974,0.7308,0.8718,0.9744,1,0.7564,0.6282,0.577,0.3076,0.1666,-0.0114,0.3448,-0.0114,-0.2184,-0.115,-0.0804,-0.138,0.0574,0.3794,0.4138,0.5402,0.6436,0.7012,0.7356,0.5862,0.6552,0.6666,0.839,0.7702,1,0.9196,0.862,0.8506,0.7356,0.7586,0.6552,0.7356,0.7472,0.5402,0.4138,0.4022,0.138,0.073,-1,-1,1,-1,-1,-0.8,-0.7334,-1,-0.5412,-0.1192,0.211,0.6146,0.6146,0.4678,0.5596,0.8716,0.8166,0.5412,0.4128,0.7614,1,0.89,0.945,0.89,0.9082,0.8166,0.4312,0.3944,0.4862,0.6514,0.6514,0.5596,0.1926,0.4496,0.3394,-0.0642,0.0276,0.0276,-0.1744,-0.211,'4'
-0.5794,0.1406,0.1892,0.4856,0.531,0.1376,0.2224,-0.056,0.0742,-0.171,-0.0258,-0.1468,0.0348,-0.056,0.1074,0.053,0.2254,0.2436,0.3676,0.4554,0.8276,0.9788,0.8608,0.9214,0.764,0.7308,0.7276,0.9576,1,0.643,0.6308,0.4462,-0.5104,0.171,0.2194,0.2994,0.3672,0.0472,0.1006,-0.086,0.1078,-0.0134,-0.006,-0.0594,0.1078,0.1128,0.086,0.1442,0.2048,0.3212,0.2776,0.4836,0.6242,1,0.9466,0.714,0.731,0.743,0.8134,0.777,0.891,0.7018,0.6582,0.554,-0.413,0.2412,0.2762,0.383,0.4378,0.087,0.1692,-0.02,0.102,-0.1268,0.005,-0.1344,0.1318,0.0374,0.1542,0.107,0.316,0.3084,0.3682,0.4154,0.7936,0.8806,0.8532,0.985,0.7686,0.8782,0.7438,1,0.9328,0.7364,0.699,0.6518,-0.3454,0.2142,0.2166,0.3406,0.3406,0.0682,0.073,-0.0218,0,-0.1412,-0.107,-0.0682,-0.017,0.0024,0.0754,0.1314,0.2142,0.185,0.2774,0.5328,0.6642,0.815,1,0.854,0.7056,0.5816,0.7128,0.7664,0.9148,0.82,0.5548,0.5134,-0.1844,0.33,0.3174,0.4128,0.3626,0.0916,0.0238,0.0414,-0.0314,-0.059,-0.1468,-0.089,-0.182,0.079,-0.0164,0.177,0.1066,0.2924,0.2974,0.5308,0.6814,0.9448,0.9196,0.8996,0.7566,0.8118,0.842,1,0.9372,0.7666,0.7314,0.7566,-0.2152,0.3008,0.2306,0.377,0.2122,-0.1176,-0.319,-0.261,-0.2336,-0.2274,-0.374,-0.429,-0.2336,-0.2732,-0.1908,-0.0626,0.0168,0.1114,0.261,0.432,0.7222,0.9328,1,0.9084,0.6886,0.8168,0.9328,0.9084,0.945,0.8534,0.777,0.7862,-0.1588,0.3238,0.3856,0.497,-0.0598,-0.3238,-0.402,-0.5258,-0.6206,-0.6866,-0.8226,-0.6124,-0.5752,-0.4722,-0.5422,-0.6082,-0.3814,-0.1958,0.2536,0.3814,0.7238,0.8268,0.8762,0.7938,0.736,0.8846,1,0.9546,0.769,0.5546,0.534,0.6412,-0.5088,0.0526,0.0176,0.5088,0.5088,0.228,0.228,0.0526,0.0526,-0.0878,-0.1228,-0.0878,-0.0526,-0.0176,0.0526,0.0526,0.0878,0.228,0.228,0.4736,0.614,0.8596,1,0.8596,0.6492,0.4036,0.4036,0.7192,0.9298,0.7894,0.6842,0.5438,-0.6492,0.0878,0.1228,0.4036,0.4736,0.1228,0.193,-0.1228,0.0526,-0.2632,0.0176,-0.1228,-0.0526,-0.193,0.1228,0.0526,0.2632,0.2982,0.3334,0.4036,0.8948,1,0.8596,0.9298,0.7192,0.7192,0.6492,1,0.8948,0.6492,0.5438,0.4386,-0.3798,0.2404,0.2714,0.3644,0.4264,0.1162,0.1472,-0.0078,0.1008,-0.0232,0.0232,-0.0852,0.1318,0.0698,0.1628,0.1318,0.3178,0.3178,0.3334,0.3954,0.752,0.876,0.7054,0.9224,0.7984,0.876,0.7984,1,0.9844,0.69,0.6744,0.6124,-1,-1,-1,-1,-1,-1,-1,-1,-0.981,-0.981,-0.3068,0.3674,0.6842,0.7686,0.886,0.9858,0.9348,0.892,0.7804,0.5786,0.5324,0.117,-0.7282,-0.9264,-0.9584,-0.9716,-0.9798,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9896,-0.9906,-0.6622,-0.0962,0.362,0.7854,0.7646,0.9264,0.8858,0.686,0.3602,0.0388,-0.2246,-0.5894,-0.8832,-0.9154,-0.961,-0.9852,-0.9904,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.9534,-0.51,-0.05,-0.0126,0.0924,0.0674,0.0674,0.14,0.1174,0.0924,-0.0526,-0.2,-0.5712,-0.49,-0.1468,-0.54,-0.72,-0.98,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,-0.4572,-0.7142,-0.6858,-0.7714,-0.7142,-0.7142,-0.7714,-0.5714,0.8286,1,0.6572,0.9714,0.9714,0.5142,-0.6286,-1,-1,-1,-1,-1,-1,0.8584,0.8574,0.8516,0.8478,0.8394,0.8296,0.8208,0.8018,0.7548,0.5112,0.9526,0.9394,0.9106,0.926,0.938,0.92,0.9054,0.9138,0.9644,1,-0.8266,-0.0588,-0.5676,-0.3536,-0.1756,0.1466,0.2234,1,-0.2682,0.4146,0.4146,0.0732,-0.1708,-0.2196,-0.122,-0.122,0.2682,0.317,0.8048,1,1,0.756,0.9024,0.9024,0.6586,0.756,0.8048,0.5122,0.4146,0.4146,0.0732,0.0244,-0.0244,0.4146,0.5122,0.4634,0.4634,0.2682,0.1708,-0.317,-0.0414,0.405,0.5372,0.19,0.0082,-0.0578,-0.0248,0.0744,0.2396,0.3224,0.686,1,0.8016,0.5372,0.7686,0.6528,0.5372,0.5042,0.471,0.2728,0.4214,0.3554,0.2562,0.1736,0.124,0.372,0.5538,0.6034,0.6198,0.438,0.2892,-0.1074,-0.1532,0.4774,0.5676,0.2252,0.045,-0.1712,-0.081,0.045,0.1532,0.2432,0.7478,1,0.7658,0.5136,0.8558,0.7298,0.5316,0.6216,0.6216,0.4774,0.3334,0.4234,0.4774,0.2252,-0.1352,-0.009,0.2432,0.4594,0.4594,0.3874,0.1892,-0.2252,-0.2114,-1,-1,1,-0.8,-1,-0.8,-0.8334,-1,-0.2,-0.1334,-0.05,0.1,0.0666,-0.3666,-0.2834,-0.05,0.3,0.5,0.5834,0.4166,0.4666,0.3666,0.45,0.55,0.6166,0.5834,0.6666,0.7166,0.7166,0.8334,0.9,0.95,0.9666,0.95,1,1,0.8834,0.85,0.5834,0.25,'5'
-0.6342,0.008,0.0378,0.2624,0.3142,-0.1212,-0.0378,-0.2128,-0.0736,-0.2068,-0.0616,-0.1868,-0.0796,-0.1392,0.0198,0.01,0.0934,0.1352,0.2564,0.4156,0.5388,0.7972,0.8588,0.8548,0.8032,0.7236,0.7754,0.8648,1,0.9284,0.8748,0.7714,-0.6472,0.0982,0.1706,0.1078,0.2298,0.0428,0.0638,-0.0258,0.0506,0.0428,-0.083,-0.0048,-0.1954,-0.0372,-0.1096,0.142,0.0906,0.1764,0.2374,0.4814,0.5786,0.7522,0.9218,0.8226,0.7578,0.6988,0.7636,0.7902,0.9104,1,0.8322,0.7788,-0.569,0.1362,0.2052,0.11,0.222,0.013,0.041,-0.0598,0.0168,-0.0094,-0.0542,0.0038,-0.082,0.0298,-0.0598,0.1698,0.1082,0.2724,0.278,0.4832,0.5672,0.7182,0.9254,0.8676,0.7892,0.7406,0.7612,0.8004,0.9068,1,0.888,0.7854,-0.3704,0.2226,0.2496,0.3166,0.3532,0.0038,0.0652,-0.0346,0.069,-0.1536,0,-0.1324,0.0556,-0.0268,0.1632,0.073,0.188,0.1458,0.405,0.4204,0.6468,0.7428,0.9596,0.9788,0.7332,0.6602,0.7216,0.7832,0.9348,1,0.9098,0.7966,-0.214,0.3262,0.3156,0.4682,0.4238,0.0868,0.0212,0.1102,0.0382,-0.0084,-0.0868,0.017,-0.0594,0.0594,0.0128,0.1716,0.0848,0.2754,0.3644,0.5806,0.7204,0.9894,1,0.822,0.6694,0.714,0.733,0.8792,0.9576,0.9258,0.8666,0.7584,-0.1796,0.3442,0.4114,0.6558,0.4564,0.0648,-0.035,0.01,-0.1396,-0.162,-0.172,-0.2668,-0.1148,-0.1296,-0.02,0.0748,0.1272,0.3092,0.4862,0.7582,0.9402,1,0.8802,0.6084,0.6858,0.7532,0.8628,0.9052,0.9276,0.778,0.7482,0.6932,-0.1588,0.3158,0.3126,0.4664,0.2406,-0.3486,-0.2896,-0.3256,-0.4402,-0.568,-0.4796,-0.5286,-0.3322,-0.2242,-0.0868,0.1654,0.2896,0.5188,0.8462,0.9738,1,0.8298,0.797,0.8428,0.987,0.987,0.951,0.7054,0.5286,0.522,0.5582,0.6366,-0.5932,-0.0848,-0.017,0.322,0.356,-0.2204,-0.1186,-0.1526,-0.0848,-0.1186,-0.017,-0.2204,-0.1186,-0.2542,-0.017,-0.1526,0.1186,0.017,0.2882,0.2882,0.695,0.6272,0.9662,1,0.5594,0.661,0.695,0.7966,0.8984,1,0.695,0.7966,-0.5,0.0264,0.0526,0.3422,0.3422,0.0264,0,-0.0526,-0.0264,0,0.0264,-0.0526,0,-0.0264,0.079,0.0526,0.1842,0.2106,0.3422,0.4474,0.6052,0.8158,0.9474,0.8422,0.7632,0.6842,0.8158,0.8158,1,0.921,0.8422,0.8158,-0.7038,0.0518,0.126,0.0222,0.1556,-0.0518,-0.0074,-0.0962,-0.037,-0.0518,-0.126,-0.0518,-0.2,0.0222,-0.0814,0.126,0.0962,0.2,0.2592,0.4074,0.5704,0.5556,0.9556,0.926,0.6888,0.6888,0.674,0.7778,0.674,1,0.9408,0.7334,-1,-1,-1,-1,-1,-1,-1,-1,-0.9748,-0.974,-0.4292,-0.0014,0.1376,0.2592,0.5712,0.6958,0.6388,0.5722,0.4572,0.3772,0.7548,-0.1482,-0.7934,-0.9006,-0.9526,-0.9556,-0.97,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9942,-0.9888,-0.5182,0.1868,0.2232,0.4082,0.9392,0.7996,0.3138,-0.1436,-0.423,-0.5794,-0.545,-0.817,-0.9354,-0.958,-0.9726,-0.983,-0.9896,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.9234,-0.3034,0.124,0.116,0.138,0.178,0.188,0.146,0.02,-0.042,-0.386,-0.6954,-0.7482,-0.5112,-0.4612,-0.5244,-0.7512,-0.8112,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,-0.6572,-0.4858,-0.5428,-0.8572,-0.6286,-0.6286,-0.7428,-0.1428,0.5142,1,-0.2,-0.1428,-0.1428,-0.2858,-0.7142,-1,-1,-1,-1,-1,-1,0.7288,0.7336,0.7448,0.7554,0.7656,0.782,0.7996,0.8078,0.773,0.5834,1,1,1,1,1,1,1,1,1,0.9726,-0.8534,0.2236,-0.4194,-0.0088,0.3466,0.26,-0.0426,1,-0.36,0.48,0.52,-0.2,-0.2,-0.2,-0.28,0,0.16,0.2,0.56,1,0.8,0.88,0.92,0.96,0.76,0.76,0.64,0.4,0.24,0.28,0.32,0.32,0.28,0.08,-0.08,-0.08,-0.24,-0.08,-0.04,-0.68,-0.35,0.1834,0.2166,-0.1834,-0.35,-0.15,-0.15,0.0166,0.2,0.3166,0.7,0.9166,0.8334,0.8166,1,0.9334,0.85,0.85,0.7,0.5666,0.4334,0.5834,0.6834,0.6666,0.6834,0.5,0.05,0.2166,-0.0666,0.1666,0.0834,-0.1334,-0.3058,0.0744,0.2892,-0.1736,-0.2066,-0.1074,-0.19,-0.0082,0.0578,0.2066,0.6364,0.9338,0.8182,0.8512,1,0.9504,0.8348,0.8678,0.8348,0.686,0.4876,0.6034,0.7356,0.7852,0.6034,0.3554,0.3884,0.1404,0.091,0.3884,0.2562,0.0082,0.0018,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.65,-0.1334,-0.0834,0.35,0.3,0.05,0.5334,0.7666,0.9166,0.5834,0.5666,0.6666,0.45,0.7,1,0.9166,0.4166,0.3334,0.2334,0.2334,0.25,0.0166,0.1834,0.2166,0.1,0.2666,0.0334,-0.05,0.0334,-0.2166,-0.5,-0.6834,'5'
-0.4104,0.1792,0.194,0.418,0.6642,0.8956,0.888,0.6492,0.4776,0.4328,0.418,0.388,0.4328,0.4328,0.485,0.597,0.8732,0.9402,1,0.9776,0.888,0.8956,0.9626,0.9254,0.9926,0.8432,0.7612,0.6268,0.5,0.515,0.5,0.7612,-0.4346,-0.0178,0.0358,0.2858,0.5774,0.756,0.631,0.5952,0.3988,0.4822,0.3334,0.3988,0.488,0.5238,0.5892,0.5654,0.9286,0.9048,1,0.9404,0.7916,0.6846,0.8572,0.7262,0.8392,0.6726,0.5952,0.4048,0.494,0.5952,0.6488,0.7024,-0.4888,-0.048,0.0352,0.2716,0.5336,0.6806,0.6422,0.7316,0.4952,0.5208,0.3994,0.4122,0.5336,0.5208,0.655,0.7124,0.968,0.8658,1,0.885,0.8402,0.7892,0.885,0.7828,0.8402,0.5974,0.5782,0.508,0.5208,0.6996,0.6294,0.6742,-0.4206,-0.0156,0.0778,0.2834,0.514,0.651,0.7508,0.8318,0.5328,0.5638,0.4392,0.4268,0.5826,0.5202,0.7258,0.838,1,0.8318,0.9502,0.782,0.863,0.8692,0.894,0.8256,0.8068,0.6012,0.539,0.62,0.514,0.7072,0.539,0.6386,-0.4584,-0.073,0.0312,0.2084,0.4688,0.5678,0.823,0.875,0.4792,0.4322,0.3906,0.3594,0.5624,0.6094,0.7292,0.9376,1,0.7448,0.7708,0.776,0.7448,0.8438,0.7448,0.7812,0.6458,0.5364,0.4896,0.552,0.5782,0.6042,0.5624,0.5208,-0.3858,-0.0054,0.1142,0.2446,0.5272,0.5706,0.9836,0.951,0.5326,0.413,0.5218,0.5816,0.625,0.8098,0.7718,1,0.8804,0.6902,0.6196,0.6684,0.7718,0.7826,0.8858,0.8098,0.5,0.451,0.3316,0.2174,0.288,0.3316,0.4076,0.424,-0.2754,0.1304,0.174,0.2972,0.5798,0.7826,1,0.7972,0.4856,0.471,0.4782,0.5724,0.6956,0.7826,0.942,0.8696,0.6376,0.471,0.355,0.4928,0.558,0.6304,0.5434,0.413,0.3478,0.2102,0.0942,-0.1666,-0.1884,-0.0942,-0.0434,0.1812,-0.4584,0.2084,0.25,0.4166,0.7084,0.5416,0.875,0.8334,0.5,0.5,0.2916,0.2916,0,0,0.1666,0.25,0.75,0.7916,0.9584,1,0.7084,0.875,0.7916,0.9166,0.8334,0.7916,0.6666,0.5834,0.375,0.3334,0.2084,0.5834,-0.5,-0.125,0.0312,0.1876,0.5624,0.7812,0.625,0.5,0.3438,0.375,0.2812,0.2812,0.4062,0.4376,0.4688,0.625,0.8438,0.8124,1,0.875,0.7188,0.75,0.8124,0.8124,0.8438,0.6562,0.6876,0.4688,0.4376,0.4688,0.5624,0.6876,-0.3636,0,0.106,0.2424,0.5,0.606,0.9394,0.9394,0.5606,0.409,0.4546,0.5152,0.606,0.7576,0.7878,1,0.9848,0.7424,0.697,0.7272,0.7728,0.8484,0.8334,0.8484,0.591,0.5606,0.3636,0.3788,0.5,0.5152,0.5758,0.606,-1,-1,-1,-1,-1,-1,-1,-1,-0.9854,-0.9892,-0.775,0.1262,0.9846,0.9594,0.8334,0.802,0.6146,0.6116,0.7358,0.871,0.7742,-0.0058,-0.7244,-0.7996,-0.931,-0.9732,-0.9808,-0.9786,-0.9394,-0.8772,-0.7866,-0.7628,-0.8872,-1,-1,-1,-1,-1,-1,-1,-1,-0.9958,-0.9966,-0.8672,-0.3944,0.6028,0.6552,0.8532,0.7976,0.7284,0.8128,0.9872,0.7728,0.206,-0.5482,-0.9426,-0.9584,-0.9784,-0.982,-0.9864,-0.9866,-0.9796,-0.9768,-0.9634,-0.9596,-0.9762,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.9868,-0.7534,-0.6868,-0.5134,-0.4534,-0.3268,-0.4,-0.3,-0.4,-0.45,-0.565,-0.63,-0.66,-0.69,-0.66,-0.3368,-0.2568,-0.04,0.0932,0.16,-0.5068,-0.7634,-0.7468,-0.9234,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,1,1,-0.6572,-0.9428,-0.9714,-0.9714,-0.0572,1,1,1,1,-0.2,-0.7714,-0.8286,-0.8286,-0.7142,-0.7142,-0.5142,-0.5428,-0.5714,1,1,1,1,1,1,1,1,1,1,1,0.2894,0.2856,0.2856,0.2814,0.2314,0.2232,0.183,0.1266,-0.005,-0.3806,-0.7466,-0.6706,-0.7868,-0.6812,0.3774,0.6856,0.7668,1,-0.5,-0.2272,0.0454,0.2272,0.3636,0.3182,0.3182,0.409,0.8636,0.9546,1,0.9546,0.909,0.8182,0.7728,0.6818,0.7272,0.8182,0.8636,0.909,0.909,0.909,0.7728,0.591,0.3182,0.2272,0.2728,0.2272,0.1364,0.1364,-0.1364,-0.5,-0.3674,0.0204,0,0.3266,0.347,0.102,0,0.1224,0.6734,1,0.9184,0.6938,0.6734,0.5714,0.5306,0.2858,0.5306,0.5306,0.5918,0.7552,0.7756,0.796,0.551,0.3878,-0.0204,-0.0408,0.204,0.102,-0.1428,0.2448,0.2654,0.0612,0.1724,0.6092,0.839,0.977,0.7932,0.6552,0.4712,0.4252,0.7012,0.908,1,0.885,0.839,0.7472,0.3794,0.3104,0.5172,0.4942,0.5402,0.4712,0.4942,0.4942,0.5172,0.0114,-0.2184,-0.0804,-0.1034,-0.0344,0.0804,0.1494,0.4482,0.3104,1,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.774,-0.6522,-0.2696,-0.2174,0.2696,0.3914,0.4782,0.6348,0.3044,0.0608,0.7566,0.8782,0.826,0.7566,0.513,0.6174,0.6174,0.8608,0.7914,0.5478,0.687,0.8782,1,0.7914,0.7218,0.7044,0.5304,0.6696,0.6522,0.8434,0.6696,0.5304,'6'
-0.4696,0.0994,0.1104,0.4862,0.558,0.9172,0.9226,0.5856,0.4918,0.315,0.3592,0.3204,0.4476,0.4364,0.6354,0.652,0.9392,1,0.7624,0.8618,0.674,0.79,0.7624,0.884,0.7238,0.5028,0.3812,0.4144,0.663,0.6244,0.674,0.5746,-0.4736,0.0684,0.0684,0.4422,0.5052,0.9948,0.9948,0.5526,0.5578,0.479,0.4894,0.5316,0.5578,0.5842,0.6158,0.8948,0.9474,0.9368,1,0.7368,0.7894,0.7632,0.8684,0.7,0.7264,0.521,0.4422,0.5842,0.7422,0.6052,0.6158,0.5106,-0.5062,-0.0278,-0.0378,0.3048,0.4256,0.8186,0.7732,0.6676,0.6172,0.5366,0.5062,0.5366,0.4912,0.6574,0.607,0.9244,0.869,1,0.9546,0.7934,0.7482,0.864,0.8186,0.8288,0.7934,0.471,0.4358,0.6826,0.6424,0.6474,0.602,0.6676,-0.4532,0.012,-0.0072,0.3382,0.4148,0.7362,0.693,0.7746,0.7218,0.6354,0.5732,0.5972,0.53,0.7506,0.765,1,0.9136,0.976,0.8848,0.8466,0.7602,0.8896,0.8082,0.9232,0.813,0.5204,0.4244,0.6498,0.5588,0.6834,0.5924,0.7074,-0.385,0.0422,0.061,0.338,0.4414,0.6996,0.6244,0.8638,0.7746,0.662,0.554,0.601,0.6526,0.784,0.878,1,0.8544,0.8544,0.6902,0.7746,0.7558,0.8544,0.7512,0.8826,0.6056,0.5024,0.4178,0.46,0.5634,0.6526,0.5868,0.6292,-0.3622,0.0868,0.097,0.3776,0.5664,0.75,0.7908,0.9286,0.7858,0.653,0.5816,0.653,0.796,0.8368,0.9898,1,0.7194,0.7194,0.653,0.6378,0.8164,0.7704,0.7448,0.704,0.5358,0.449,0.2908,0.2858,0.4184,0.4642,0.5766,0.5154,-0.2888,0.1428,0.1672,0.2826,0.4894,0.532,0.769,0.7326,0.5744,0.5016,0.5258,0.5562,0.6292,0.7204,1,0.9636,0.5684,0.4164,0.4286,0.4772,0.5684,0.5198,0.5076,0.313,0.1368,0.1246,0.0274,0.076,0.155,0.2402,0.1732,0.301,-0.6728,0.0546,0.1636,0.491,0.5636,0.7818,0.9272,0.6364,0.4546,0.2728,0.3818,0.309,0.4182,0.4182,0.6,0.6728,0.8546,1,0.8182,0.7818,0.491,0.7818,0.6728,0.891,0.8182,0.4182,0.3818,0.4182,0.4546,0.5272,0.6,0.491,-0.4754,-0.0164,0.0492,0.3442,0.6394,0.9016,0.7704,0.6394,0.4754,0.4098,0.2132,0.3442,0.3442,0.4426,0.6066,0.705,0.9344,1,0.8688,0.9016,0.7704,0.7704,0.8688,0.8688,0.705,0.6394,0.4426,0.5738,0.8032,0.705,0.7704,0.6394,-0.3768,0.058,0.0434,0.3478,0.5072,0.6956,0.7392,0.913,0.7826,0.6522,0.5362,0.5942,0.7682,0.826,0.971,1,0.7536,0.7972,0.7102,0.7246,0.826,0.826,0.8406,0.826,0.4638,0.4202,0.3768,0.3624,0.5362,0.5072,0.6522,0.6376,-1,-1,-1,-1,-1,-1,-1,-0.9924,-0.9898,-0.977,-0.266,0.138,0.6204,0.9582,0.9158,0.5622,0.3472,0.191,0.227,0.2136,0.1414,-0.5878,-0.6456,-0.6768,-0.861,-0.9374,-0.9308,-0.9316,-0.9394,-0.914,-0.9024,-0.6624,-0.7798,-1,-1,-1,-1,-1,-1,-1,-0.9958,-0.9956,-0.9778,-0.6086,-0.2166,0.293,0.5272,0.9026,0.917,0.9448,0.7186,0.6704,0.3802,-0.201,-0.8028,-0.925,-0.9304,-0.963,-0.9792,-0.9794,-0.978,-0.9744,-0.9684,-0.9604,-0.9282,-0.9468,-1,-1,-1,-1,-1,-1,-1,-0.888,-0.8934,-0.8568,-0.6134,-0.6,-0.595,-0.66,-0.475,-0.465,-0.36,-0.37,-0.385,-0.51,-0.605,-0.39,-0.5568,-0.4368,-0.4534,-0.46,-0.4734,-0.23,0.21,-0.59,-0.3468,-0.69,-0.9268,-1,-1,-1,-1,-1,-1,-1,-0.5428,-0.9428,1,1,1,1,-0.3428,-0.4286,-0.5142,-0.9428,-0.6572,0.4572,1,1,1,1,-0.3714,-0.2286,-0.4286,-0.9428,-0.6286,-0.6,-0.4572,-0.0858,-0.4286,-0.0286,1,1,1,1,1,1,1,1,1,1,-0.1612,-0.1612,-0.1418,-0.1586,-0.1794,-0.2216,-0.2826,-0.3292,-0.3816,-0.6378,-0.8,-0.6118,-0.5648,-0.4226,0.2212,0.3394,0.581,1,-0.146,0.3258,0.6404,0.7978,0.5506,0.528,0.528,0.5506,0.8426,0.955,1,0.7978,0.8426,0.663,0.7752,0.8426,0.8202,0.8876,0.5956,0.5956,0.4832,0.573,0.618,0.4832,0.3932,0.236,0.2134,0.1236,0.191,0.0562,-0.0112,-0.3258,-0.2606,0.4454,0.9496,1,0.5798,0.5294,0.4454,0.5294,0.7984,0.9328,0.8824,0.7816,0.7984,0.4454,0.4454,0.4622,0.5294,0.5798,0.3782,0.4286,0.395,0.3278,0.3782,0.395,0.1596,-0.042,0.0588,0.0756,0.0084,0.0756,0.0252,-0.0084,-0.0538,0.3772,0.8204,0.8682,0.6048,0.4012,0.4492,0.6646,0.9162,1,0.964,0.9402,0.9282,0.545,0.4372,0.6766,0.5928,0.545,0.5568,0.473,0.497,0.5568,0.6288,0.4012,0.2336,0.006,-0.1736,-0.1258,-0.1018,-0.03,-0.1258,-0.3294,-0.5284,-1,-1,1,-0.8,-1,-1,-0.7666,1,-0.2622,-0.2622,-0.1968,-0.0656,-0.1312,-0.164,0.082,0.1476,0.1148,0.1476,0.3114,0.3934,0.5738,0.6558,0.4754,0.377,0.5738,0.754,0.705,0.6558,0.754,0.3278,0.8852,0.8524,0.623,0.8852,1,0.8032,0.541,0.5738,0.2296,-0.1312,'6'
-0.3866,0.177,0.217,0.6758,0.6408,0.1472,0.0972,0.0274,-0.0224,0.0224,-0.0374,0.0224,-0.0524,0.192,0.1022,0.2568,0.217,0.601,0.636,1,0.985,0.5312,0.4164,0.4164,0.5162,0.8504,0.8254,0.6508,0.5462,0.5312,0.4114,0.561,-0.2494,0.2796,0.5264,0.8942,0.8288,0.2644,0.1688,0.1788,0.068,0.058,-0.0478,0.1084,0.078,0.2242,0.2142,0.34,0.4056,0.5214,0.8892,0.995,0.8942,1,0.7128,0.7732,0.8338,0.874,0.9396,0.9848,0.6926,0.723,0.7128,0.7078,-0.257,0.2056,0.4954,0.7804,0.6776,0.1588,0.0046,0.0094,-0.0982,0.0046,0.0046,0.0748,0.0748,0.1168,0.2056,0.2196,0.3412,0.3832,0.7804,0.7384,1,0.944,0.6402,0.5328,0.5608,0.7384,0.8692,0.6916,0.6776,0.6028,0.6962,0.57,-0.2512,0.2154,0.5436,0.7898,0.641,0.0616,-0.041,0.0462,-0.077,-0.0358,0.0206,0,0.0206,-0.0616,0.1642,0.1128,0.323,0.4256,0.5846,0.9026,1,0.918,0.9076,0.7692,0.7436,0.9076,0.8616,0.9642,0.8564,0.7026,0.677,0.7948,-0.3198,0.1046,0.622,0.75,0.4012,-0.1976,-0.1046,-0.2034,-0.1628,-0.2674,-0.2034,-0.1628,-0.1976,-0.2034,-0.0524,0.0524,0.0698,0.1802,0.3954,0.6512,0.9186,1,0.8546,0.6686,0.8198,0.7906,0.8546,0.8024,0.75,0.779,0.6628,0.7966,-0.3694,-0.021,0.6096,0.6276,-0.1832,-0.3214,-0.3214,-0.3574,-0.4774,-0.4834,-0.5196,-0.4054,-0.3574,-0.3154,-0.2792,-0.2372,-0.1292,0.003,0.2012,0.4714,0.8918,1,0.7538,0.4594,0.4834,0.6036,0.6696,0.5496,0.5016,0.5556,0.5136,0.5796,-0.2692,0.1924,0.923,0.8692,-0.123,-0.2462,-0.3308,-0.3308,-0.4462,-0.5308,-0.5462,-0.4308,-0.5384,-0.4076,-0.2308,-0.3616,-0.2846,0.0384,0.3538,0.5,1,0.9076,0.923,0.8308,0.7384,0.6308,0.9076,0.9,0.7616,0.5308,0.7308,0.8,-0.4286,0.1428,0.1428,0.6072,0.5714,0.1072,0.0714,-0.0358,-0.0358,-0.0358,-0.0358,-0.0358,0,0.1428,0.1428,0.2142,0.2142,0.6072,0.6786,0.8928,1,0.6786,0.5714,0.2858,0.4642,0.8214,0.9286,0.6072,0.5358,0.3928,0.4642,0.4642,-0.4138,0.1034,0.2758,0.6206,0.5862,0.1034,0.0344,-0.0344,-0.1034,-0.0344,-0.069,-0.0344,-0.1034,0.138,0.069,0.2068,0.2758,0.5518,0.5862,1,0.9656,0.4482,0.069,0.2758,0.3794,0.7932,0.7586,0.5862,0.5518,0.4828,0.4138,0.5518,-0.3862,0.0496,0.4852,0.6634,0.406,-0.307,-0.1288,-0.1882,-0.2278,-0.3268,-0.2476,-0.109,-0.109,-0.208,-0.1486,0.0892,-0.01,0.0694,0.505,0.6238,0.901,1,0.703,0.6238,0.7426,0.6634,0.7426,0.8218,0.8218,0.703,0.5248,0.7228,-1,-1,-1,-1,-1,-0.9892,-0.9892,-0.9716,-0.981,-0.6806,0.3004,0.601,0.8136,0.9156,0.9906,0.9574,0.7596,0.6996,0.5138,0.4746,0.3598,0.1884,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9878,-0.9884,-0.7586,-0.6902,-0.464,0.5656,0.8396,0.8958,0.6872,0.7582,0.6546,0.6862,0.5534,0.3204,0.117,-0.0622,-0.2518,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.98,-0.2168,0.27,0.5,-0.4268,-0.62,-0.7,-0.78,-0.715,-0.84,-0.655,-0.748,-0.736,-0.796,-0.8,-0.948,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,1,1,0.1714,-0.8286,-0.9428,-0.8858,-0.8858,-0.9142,-0.8572,-0.5142,-0.6286,-0.5714,0.2572,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.6738,0.674,0.681,0.6756,0.6656,0.6702,0.6712,0.6664,0.6384,0.4308,0.6376,0.6444,0.672,0.6646,0.6822,0.7108,0.7154,0.7482,0.7792,0.8996,-0.7334,-0.5412,0.618,0.7452,0.937,0.861,0.6492,1,-0.4612,-0.3612,-0.1556,0,0.2444,0.4112,0.4,0.5056,0.5388,0.5834,0.8444,0.8722,0.8056,0.9388,1,0.9612,0.7388,0.5388,0.4,0.5388,0.5944,0.4834,0.3334,0.1444,0.25,0.1,0.0112,0.0334,-0.15,-0.1666,-0.2778,-0.4388,-0.8524,-0.5904,-0.281,-0.3142,-0.3048,-0.1476,-0.062,-0.062,0.1666,0.319,0.3666,0.5762,0.6762,0.6286,0.6476,0.8762,0.9238,0.962,0.7904,0.862,0.9524,1,0.819,0.6904,0.7048,0.5428,0.5762,0.5334,0.1476,0.2334,0.062,-0.219,0.1546,0.4562,0.5158,0.162,0.1546,0.121,0.2254,0.285,0.527,0.7952,0.8584,0.7282,0.81,1,0.7802,0.7132,0.7244,0.9032,0.7244,0.6908,0.7878,0.7282,0.6424,0.4376,0.3334,0.2924,0.1174,-0.1024,-0.1508,-0.1992,-0.2886,-0.4636,-0.4148,-1,-1,1,-0.4,-1,-1,-0.1666,-1,0.3674,1,0.653,0.1836,-0.0204,-0.102,-0.102,0.0612,0.1836,0.6326,0.9592,0.9388,0.8776,0.9388,0.898,0.8164,0.7552,0.5918,0.1224,0.204,0.0816,0.2654,0.204,-0.1632,-0.1428,-0.102,-0.4898,-0.5306,-0.6122,-0.6122,-0.653,-0.8572,'7'
-0.408,0.2668,0.3068,0.23,0.276,-0.0246,0.0736,-0.135,-0.003,-0.1534,-0.0214,-0.1196,0.0214,0.0276,0.2148,0.227,0.3774,0.3958,0.7484,0.8742,0.862,0.908,0.8068,0.8988,0.905,1,0.9294,0.7454,0.7424,0.7454,0.865,0.7852,-0.5394,0.0898,0.132,0.2472,0.3034,-0.0394,0.0506,-0.1236,0.0056,-0.163,-0.1208,-0.2248,0.0786,0.0168,0.1236,0.118,0.2922,0.3258,0.618,0.7078,0.8512,1,0.8456,0.6798,0.6742,0.8568,0.7922,0.5956,0.559,0.5338,0.5674,0.618,-0.483,0.1286,0.1602,0.3098,0.37,0.0314,0.0498,-0.1182,0.042,-0.084,-0.0918,-0.1574,0.105,0.0814,0.0944,0.1154,0.2468,0.315,0.5354,0.651,0.7848,1,0.9082,0.5224,0.4856,0.8478,0.8346,0.7086,0.7402,0.496,0.588,0.622,-0.3512,0.2186,0.2384,0.4978,0.512,0.0748,0.1142,0.0748,0.134,-0.086,-0.0042,-0.0268,0.1002,0.038,0.1734,0.0888,0.2806,0.2806,0.5204,0.6136,0.9266,0.9238,1,0.9718,0.9126,0.9408,0.8646,0.8392,0.763,0.732,0.7546,0.8054,-0.3146,0.1612,0.1882,0.492,0.414,-0.0268,-0.1506,-0.008,-0.1424,-0.129,-0.2366,-0.121,-0.1748,-0.0646,-0.0752,0,0.1102,0.1802,0.3064,0.5834,0.7716,0.9274,1,0.7822,0.7822,0.8388,0.844,0.7984,0.7904,0.637,0.664,0.8172,-0.314,0.1036,0.3722,0.521,0.233,-0.2104,-0.2524,-0.3172,-0.4208,-0.4596,-0.4272,-0.4564,-0.3818,-0.2848,-0.2362,-0.191,-0.0776,0.042,0.191,0.479,0.6926,0.864,1,0.9224,0.8058,0.8446,0.7962,0.7638,0.6828,0.6052,0.6828,0.725,-0.263,0.0652,0.4516,0.4742,-0.1012,-0.4966,-0.528,-0.7842,-0.7528,-0.7798,-0.8426,-0.7528,-0.627,-0.5776,-0.5326,-0.5192,-0.4876,-0.2674,0.0068,0.218,0.5056,0.7888,0.9416,1,0.9102,0.946,0.7394,0.609,0.4652,0.254,0.3888,0.5236,-0.4182,0.2364,0.309,0.0182,0.1272,-0.1636,-0.091,-0.1636,-0.091,-0.0546,-0.2364,-0.2,-0.2728,-0.0182,-0.0182,0.3818,0.3818,0.3818,0.5636,0.7818,0.9272,0.709,0.7454,0.7818,0.9272,1,0.7454,0.8182,0.6364,0.891,1,1,-0.4062,0.1876,0.2188,0.1876,0.2188,-0.0312,0.0312,-0.1876,-0.0624,-0.1876,-0.0624,-0.1562,0.0312,-0.0624,0.1562,0.0938,0.3438,0.4062,0.75,0.7812,0.9376,0.9376,0.625,0.8124,0.9376,1,0.8438,0.7812,0.75,0.7812,0.8124,0.8438,-0.2566,0.1858,0.3452,0.5222,0.3628,-0.0796,-0.1328,-0.0974,-0.239,-0.2744,-0.292,-0.3806,-0.2744,-0.2036,-0.0796,-0.1328,0.0088,0.2036,0.2212,0.593,0.6814,0.9824,1,0.8408,0.7876,0.9646,0.8762,0.8408,0.6992,0.6992,0.77,0.8054,-1,-1,-1,-1,-1,-0.9764,-0.9784,-0.9626,-0.9744,-0.9686,-0.764,0.2232,0.5614,0.648,0.7974,0.9154,0.9902,0.8752,0.8044,0.6194,0.6126,0.0492,-0.8378,-0.9626,-0.9696,-0.9676,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9926,-0.9938,-0.8984,-0.7404,-0.3074,-0.0736,0.1584,0.3228,0.6568,0.751,0.844,0.8446,0.3606,0.2126,-0.1688,-0.416,-0.7028,-0.9542,-0.9788,-0.989,-0.9902,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8068,-0.98,-0.4734,0.55,0.7566,0.7166,0.1114,0.0284,0.0828,0.097,0.1028,0.0914,0.0884,-0.0116,0.005,-0.4976,-0.5476,-0.1534,-0.22,-0.62,-0.8868,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6858,1,1,1,1,1,1,1,-0.7428,-0.8858,-0.8,-0.7714,-0.8,-0.7142,-0.2858,0.3142,1,1,0.3142,-0.0286,-0.8286,-1,-1,-1,-1,-1,-1,-1,0.5764,0.5764,0.6006,0.6122,0.634,0.6552,0.6758,0.6996,0.7012,0.462,0.8206,0.8206,0.8302,0.8268,0.831,0.8244,0.8412,0.8308,0.8858,1,-0.84,-0.1764,-0.078,-0.4012,0.3646,0.3384,0.2942,1,-0.798,-0.6026,-0.544,-0.2704,-0.2052,-0.1466,0.1206,0.0944,0.303,0.759,0.7786,0.8892,1,0.8698,0.8502,0.7394,0.6548,0.5896,0.7198,0.6612,0.5636,0.6286,0.531,0.4072,0.355,0.368,0.2574,0.2574,0.14,-0.0488,-0.153,-0.4724,-0.6312,-0.6126,-0.3818,-0.3744,-0.337,-0.1918,-0.0316,0.1024,0.1732,0.4414,0.5792,0.7206,0.8286,0.8324,1,0.9926,0.6722,0.7542,0.8696,0.851,0.877,0.877,0.892,0.9366,0.7504,0.7282,0.6536,0.7132,0.7282,0.6238,0.4526,0.1658,-0.7988,-0.4784,-0.4456,-0.4538,-0.4046,-0.306,-0.3594,-0.0678,0.1212,0.3798,0.462,0.655,0.9178,0.7864,0.7824,0.9548,1,0.766,0.7372,0.8194,0.8932,0.8604,0.9056,0.8152,0.7906,0.8028,0.5852,0.5688,0.6262,0.384,0.3512,0.1006,-0.687,-1,-1,1,-1,-1,-1,-0.2334,-1,-0.2066,-0.091,0.0414,-0.19,-0.5868,-0.405,-0.1404,-0.4214,-0.0744,0.0744,0.9338,1,0.8182,0.7686,0.7024,0.5868,0.7686,0.6198,0.3224,0.5206,0.1736,0.2232,-0.1404,-0.0414,-0.157,-0.3388,-0.3554,-0.2562,-0.0248,-0.1736,-0.091,-0.3388,'7'
-0.4756,0.0202,0.245,0.464,0.5504,0.6312,0.4582,0.3776,0.2104,0.17,0.1124,0.2276,0.1874,0.245,0.3718,0.389,0.5332,0.5678,0.902,0.9366,0.856,0.8732,0.8156,0.7752,0.758,0.7292,0.9482,0.8962,1,0.9194,0.8904,0.8674,-0.444,0.014,0.1962,0.4392,0.3832,0.556,0.4066,0.2804,0.0514,0.0934,0.0888,0.1356,0.1542,0.1728,0.3272,0.3224,0.5,0.5,0.8272,0.7664,0.93,0.8272,0.729,0.6308,0.785,0.8364,0.93,0.93,1,0.8038,0.8552,0.8178,-0.3842,0.0606,0.245,0.5192,0.4338,0.4472,0.3168,0.2134,0.0516,0.0786,0.0472,0.1416,0.164,0.227,0.3168,0.3574,0.5146,0.537,0.8112,0.8112,0.9146,0.8876,0.6674,0.618,0.8696,0.7978,0.964,0.8696,1,0.8832,0.7708,0.6854,-0.3318,0.1786,0.3642,0.703,0.638,0.3642,0.2946,0.109,0.0162,0.0904,-0.0162,0.1508,0.0348,0.2482,0.1416,0.3782,0.3086,0.5314,0.6474,0.8422,0.7866,0.9722,0.8098,0.6984,0.6798,0.819,0.7866,0.9444,0.8886,1,0.8236,0.833,-0.2744,0.198,0.4702,0.7708,0.6658,0.1218,-0.0072,-0.012,-0.1552,-0.0168,-0.1694,-0.0454,-0.0214,0.0884,0.1026,0.2028,0.265,0.3412,0.6086,0.6754,0.9236,1,0.8234,0.7422,0.7662,0.7708,0.7708,0.7374,0.7374,0.8282,0.8712,0.8712,-0.3792,0.033,0.4836,0.6428,0.3682,-0.077,-0.2088,-0.2472,-0.3296,-0.3792,-0.3242,-0.3516,-0.2418,-0.1978,-0.1428,-0.033,0.066,0.1594,0.2968,0.5164,0.7308,1,0.934,0.8132,0.7692,0.7968,0.8626,0.8132,0.7472,0.6814,0.5,0.5934,-0.3898,-0.1186,0.3898,0.3356,-0.0984,-0.4306,-0.4576,-0.478,-0.5728,-0.7492,-0.6272,-0.6204,-0.4644,-0.5728,-0.505,-0.444,-0.322,-0.0644,0.0712,0.2542,0.7898,1,0.9864,0.7424,0.7966,0.8644,0.7898,0.8034,0.6882,0.7016,0.5186,0.3694,-0.591,0.0454,0.3636,0.409,0.5,0.591,0.5,0.5,0.1818,0.0454,0,0.1818,0.091,0.091,0.2728,0.3636,0.409,0.4546,0.909,1,0.7272,0.8182,0.8182,0.8182,0.5454,0.5454,0.8636,0.8636,0.8636,0.7728,0.9546,0.909,-0.4688,-0.0312,0.1562,0.375,0.5,0.625,0.4688,0.2812,0.1562,0.0938,0.0938,0.125,0.1876,0.2188,0.2812,0.2812,0.5,0.5,0.8438,0.9062,0.8124,0.8438,0.75,0.7188,0.7188,0.7812,0.9376,0.9062,1,0.9688,0.8438,0.7812,-0.3334,0.1228,0.421,0.6666,0.4912,-0.035,-0.193,-0.1228,-0.1754,-0.1754,-0.228,-0.228,-0.1052,-0.1578,0,0.0176,0.1578,0.228,0.3684,0.614,0.6666,0.9122,1,0.7544,0.7368,0.8246,0.7894,0.6666,0.614,0.5964,0.4386,0.7894,-1,-1,-1,-1,-1,-1,-1,-1,-0.9858,-0.989,-0.9332,0.2242,0.0972,0.0792,0.2846,0.4726,0.8088,0.991,0.8422,0.3346,-0.1974,-0.6324,-0.9294,-0.9596,-0.973,-0.959,-0.9076,-0.9166,-0.9526,-0.9526,-0.9538,-0.9628,-0.9666,-1,-1,-1,-1,-1,-1,-1,-1,-0.9944,-0.9944,-0.9202,0.2812,0.7556,1,0.8532,0.47,0.394,0.1854,-0.0124,-0.2394,-0.5014,-0.811,-0.9748,-0.9774,-0.9906,-0.7938,-0.6758,-0.6628,-0.709,-0.7002,-0.7814,-0.8818,-0.9622,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.9334,-0.6034,-0.36,-0.155,-0.275,-0.44,-0.445,-0.46,-0.49,-0.416,-0.248,-0.24,-0.188,-0.6168,-0.62,-0.7534,0.2632,0.7932,0.8232,0.7366,0.69,0.5766,0.5,0.0932,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,-0.7428,-0.6572,-0.7714,-0.4858,-0.6286,-0.3428,0.3142,1,1,1,-0.3142,1,1,1,-0.8572,-0.9142,-0.6572,0.1142,1,1,1,1,1,1,1,1,1,1,1,0.7212,0.766,0.8122,0.827,0.827,0.7568,0.7738,0.791,0.8028,0.8076,0.903,-0.7734,-0.553,-0.9402,-0.3188,0.6824,0.7628,1,1,-0.5068,-0.3698,-0.1232,-0.041,-0.041,-0.041,0.1232,0.1232,0.3424,0.5616,0.6986,0.6712,0.6986,0.6986,0.8356,0.863,0.863,1,0.9726,0.9726,0.8082,0.5616,0.3424,0.2054,-0.2876,-0.1506,-0.452,-0.1232,0.041,-0.2054,-0.2602,-0.4246,-0.5904,0.0602,0.253,0.3254,0.1084,-0.1326,0.1566,0.1566,0.4216,0.9518,1,0.759,0.735,0.8554,0.976,0.8314,0.8072,0.9278,0.8554,0.8072,0.6386,0.5422,0.3012,-0.0362,-0.1566,-0.2048,-0.3254,0.012,0.0844,-0.229,0.0602,-0.3012,-0.5604,0.2968,0.5824,0.4066,0.3406,0.2088,0.2748,0.3626,0.4726,0.978,0.956,0.8682,0.7802,0.912,1,1,0.978,0.956,0.934,0.8682,0.6484,0.5384,0.4726,0.4726,0.2748,0.077,0.1868,0.4726,0.3626,0.2748,0.1428,-0.3186,1,-1,-1,1,-1,-1,-1,-0.8,1,-0.887,-0.887,-0.6272,-0.6046,-0.5254,-0.4238,-0.209,-0.1638,-0.1638,0.0734,0.2316,0.2656,0.4124,0.4124,0.4464,0.6724,0.6046,1,0.9096,0.887,0.9436,0.9662,0.6724,0.7854,0.5594,0.5142,0.5254,0.4238,0.3108,0.13,-0.1074,-0.3446,'8'
-0.4386,-0.0302,0.123,0.3874,0.3132,0.4154,0.3178,0.2946,0.1648,0.109,0.0812,0.1786,0.1462,0.2296,0.29,0.355,0.4154,0.4756,0.6658,0.703,0.9722,1,0.9072,0.9072,1,0.986,0.7634,0.7262,0.6612,0.6194,0.8654,0.8098,-0.4952,-0.0476,0.138,0.4476,0.3952,0.3096,0.2334,0.2334,0.1428,0.0858,-0.0238,0.119,-0.0048,0.1666,0.0904,0.2666,0.2476,0.4,0.5524,0.6904,0.8762,1,0.8048,0.8476,0.8666,0.9666,0.7142,0.7238,0.4858,0.5714,0.6714,0.7428,-0.4462,0.0052,0.3026,0.6052,0.5334,0.3076,0.2154,0.2308,0.1334,0.0616,-0.0512,0.0924,0.0102,0.1334,0.1436,0.2512,0.2666,0.3744,0.5948,0.6872,0.8718,0.9538,0.923,1,0.9384,0.9846,0.8462,0.9026,0.5898,0.6102,0.5642,0.5744,-0.3662,0.1584,0.4154,0.7322,0.6558,0.1912,0.1092,0.0382,-0.0328,0.0164,-0.071,-0.0492,-0.153,0.0984,-0.0054,0.142,0.0984,0.3388,0.3278,0.6066,0.7432,1,0.9454,0.9016,0.8634,0.9946,0.8688,0.8252,0.612,0.6174,0.53,0.4426,-0.3036,0.1588,0.337,0.6156,0.5098,-0.0696,-0.103,0.0028,-0.1978,-0.142,-0.1754,-0.1254,-0.1476,-0.1142,-0.0194,-0.025,0.0974,0.092,0.2534,0.4652,0.6378,0.9052,1,0.9442,0.8552,0.8998,0.883,0.8106,0.6824,0.5878,0.4986,0.4708,-0.3468,0.0694,0.37,0.4856,0.1734,-0.0868,-0.208,-0.2658,-0.208,-0.3526,-0.2486,-0.3236,-0.2774,-0.1502,-0.2196,-0.081,-0.0694,0,0.2428,0.2658,0.6128,0.8728,1,0.8208,0.6994,0.7342,0.7052,0.6242,0.3468,0.2716,0.1792,0.3122,-0.08,0.27,0.35,0.67,0.45,-0.18,-0.62,-0.26,-0.14,-0.45,-0.71,-0.48,-0.32,-0.24,-0.19,-0.24,-0.26,-0.09,0.16,0.58,0.74,0.91,0.69,0.72,1,0.89,0.62,0.2,0.29,0.45,0.33,0.23,-0.4572,-0.0572,0.1142,0.3714,0.2572,0.4286,0.3428,0.2858,0.1714,0.0858,0.1142,0.1714,0.1714,0.2286,0.3142,0.3714,0.4286,0.4858,0.6858,0.7428,1,1,0.9428,0.9428,1,0.9714,0.7714,0.7428,0.6858,0.7714,0.8858,0.8286,-0.4722,-0.0278,0.0834,0.3888,0.3334,0.3888,0.2778,0.2778,0.1388,0.1112,0.0278,0.1666,0.1112,0.2222,0.2778,0.3334,0.3888,0.4722,0.6388,0.6666,0.9444,1,0.8612,0.8888,1,1,0.75,0.7222,0.6388,0.5834,0.8612,0.8056,-0.3462,0.0384,0.4038,0.5384,0.25,-0.1346,-0.2308,-0.2692,-0.2116,-0.2884,-0.2116,-0.25,-0.2308,-0.1346,-0.1924,-0.1154,-0.0962,-0.0192,0.1924,0.2308,0.5962,0.5962,1,0.8846,0.7116,0.7308,0.7692,0.5384,0.3654,0.3654,0.3846,0.25,-1,-1,-1,-1,-1,-0.9928,-0.9928,-0.3302,0.246,0.3414,0.0724,0.0562,0.2498,0.5132,0.8192,0.9898,0.904,0.3818,0.0876,-0.2988,-0.7682,-0.8844,-0.963,-0.9804,-0.9854,-0.941,-0.9484,-0.9338,-0.9338,-0.9024,-0.9108,-0.9506,-0.9472,-1,-1,-1,-1,-1,-0.9974,-0.9974,-0.5324,-0.0158,0.0796,0.5564,0.9788,0.7258,0.4458,0.1374,-0.0924,-0.353,-0.5376,-0.614,-0.8076,-0.9254,-0.9754,-0.9888,-0.9946,-0.9956,-0.8328,-0.6552,-0.702,-0.7902,-0.8014,-0.825,-0.8594,-0.9238,-1,-1,-1,-1,-1,-0.9734,-0.9734,-0.4768,-0.2368,-0.3034,-0.0334,0.16,0.16,0.13,-0.03,-0.285,-0.25,-0.145,-0.265,-0.32,-0.365,-0.515,-0.52,-0.6068,-0.7868,0.2432,0.7132,0.5832,0.4066,0.44,0.4832,0.48,0.2766,-1,-1,-1,-1,-1,-0.9142,1,1,1,-0.9428,-0.4286,-0.6858,-0.6286,-0.6,-0.4286,0.2,0.5714,0.4572,1,1,1,1,1,-0.7142,1,1,1,-0.4572,-0.5142,-0.9428,-0.7428,0.7142,1,1,1,1,1,1,1,1,1,0.9554,0.6332,0.8128,0.8128,0.8286,0.8804,0.9046,0.8712,0.9472,0.995,1,0.993,-0.7866,-0.6,0.5774,0.8448,1,0.6346,0.4958,1,-0.2318,0.246,0.719,0.705,0.4566,0.2224,0.2506,0.3584,0.6488,0.986,0.9204,0.9812,0.9812,0.7986,0.6112,0.8548,0.7612,0.808,0.9532,0.9672,1,0.8174,0.5036,0.3302,-0.021,-0.2178,-0.1804,0.0024,-0.0304,0.0492,0.0444,-0.3114,-0.2178,0.1908,0.711,0.711,0.2062,0.1214,0.1792,0.3294,0.4374,0.738,1,0.8382,0.8766,0.6224,0.6146,0.842,0.738,0.7958,0.9036,0.9538,0.8882,0.711,0.3026,0.1984,-0.1908,-0.2756,-0.0868,0.0058,0.0868,0.025,0.1406,-0.1136,-0.1026,0.28,0.5096,0.5514,0.3008,0.193,0.2174,0.3948,0.506,0.7982,1,0.92,0.92,0.8156,0.6904,0.8678,0.833,0.8992,0.986,0.9514,0.8086,0.586,0.3844,0.2244,-0.0156,-0.2034,0.0086,0.1234,0.0678,0.0748,0.0086,-0.207,0.179,-1,-1,1,0.6,-1,-1,-0.2,1,-0.8592,-0.407,-0.2964,-0.186,-0.196,-0.206,0.0754,-0.005,-0.015,0.2664,0.2664,0.3768,0.598,0.5076,0.4874,0.789,1,0.9396,0.6282,0.6884,0.7488,0.789,0.6684,0.6282,0.5276,0.608,0.6482,0.4572,0.3768,0.3668,0.3568,-0.1256,'8'
-0.528,0.0696,0.056,0.2428,0.4668,0.5654,0.8336,0.9016,0.8166,0.8574,0.9762,1,0.7894,0.7724,0.477,0.3582,0.3106,0.2156,0.2598,0.2972,0.3378,0.3922,0.528,0.6062,0.7488,0.708,0.5484,0.4634,0.3922,0.4872,0.4634,0.6842,-0.4322,-0.011,0.0028,0.1994,0.446,0.5596,0.784,0.8366,0.8088,0.8116,1,0.9474,0.9196,0.82,0.5346,0.421,0.5236,0.4156,0.4682,0.446,0.4542,0.5928,0.5402,0.759,0.6676,0.8754,0.7146,0.676,0.5264,0.59,0.6288,0.6372,-0.4068,0.022,0.0426,0.21,0.4772,0.5682,0.7798,0.812,0.903,0.865,1,0.8884,0.9794,0.7856,0.7298,0.536,0.5624,0.4714,0.439,0.4714,0.4626,0.6152,0.627,0.7356,0.7856,0.8296,0.5976,0.5682,0.5036,0.4596,0.536,0.577,-0.413,-0.0152,0.0626,0.1988,0.4076,0.4548,0.7802,0.7664,0.9472,0.8052,0.847,0.9694,1,0.886,0.8386,0.8304,0.6802,0.5772,0.6828,0.719,0.7024,0.719,0.872,0.7302,0.7274,0.5716,0.53,0.4548,0.4214,0.4798,0.5354,0.605,-0.4204,-0.0654,0.0966,0.1876,0.3836,0.5454,0.7898,0.8238,0.9034,0.713,0.696,0.7386,0.6818,0.7982,0.9204,0.9602,0.9802,0.9176,0.8948,0.8978,0.9376,1,0.946,0.787,0.588,0.642,0.5512,0.4744,0.4772,0.4944,0.5796,0.6846,-0.4188,-0.1062,0.175,0.3126,0.5718,0.7218,0.7844,0.3468,0.2282,0.2782,0.1594,0.1906,0.3344,0.3376,0.3782,0.5032,0.625,0.775,0.9438,0.9906,0.9624,0.9688,0.9938,1,0.9876,0.8344,0.7188,0.6032,0.5156,0.55,0.5594,0.5844,-0.2792,0.0416,0.3624,0.6834,0.8292,0.3334,-0.0584,-0.1,-0.25,-0.3166,-0.5334,-0.3626,-0.2708,-0.1666,-0.0584,0.0124,0.1084,0.2416,0.2374,0.4334,0.6876,0.9042,0.9666,0.9458,1,0.9876,0.9334,0.7,0.3624,0.3624,0.325,0.3584,-0.5294,0.4706,0.5882,0.4118,0.7058,0.7648,0.9412,1,0.8824,0.7648,0.5882,0.5882,0.647,0.647,0.2352,0.0588,-0.2352,-0.4706,0.1176,0.0588,-0.1176,0,0.0588,0,0.5294,0.5294,0.1176,-0.7058,-0.1176,0.0588,-0.1176,0.353,-0.3548,0.0968,0,0.2904,0.3548,0.6774,0.7742,0.871,0.8388,0.8388,0.871,1,0.8388,0.6774,0.3548,0.4516,0.3226,0.387,0.1936,0.2904,0.387,0.4516,0.613,0.6452,0.742,0.742,0.5806,0.6452,0.5484,0.5484,0.5484,0.5806,-0.3566,0.026,0.0608,0.2174,0.426,0.4956,0.7392,0.7392,0.8956,0.8608,0.826,0.913,1,0.8434,0.7044,0.7914,0.774,0.426,0.513,0.7392,0.6522,0.5826,0.826,0.8608,0.6522,0.6696,0.5826,0.513,0.4956,0.4608,0.5304,0.6522,-1,-1,-1,-1,-1,-1,-1,-1,-0.9754,-0.9704,-0.944,0.2072,0.8586,0.9524,0.8766,0.5494,0.4358,0.4112,0.7122,0.7484,0.9326,0.3948,-0.597,-0.9062,-0.9506,-0.9638,-0.9654,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.994,-0.9934,-0.9882,-0.1444,0.814,0.7432,0.5862,0.3714,0.4214,0.407,0.3674,0.0062,-0.5008,-0.7604,-0.948,-0.979,-0.987,-0.9896,-0.9924,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.8368,-0.605,-0.49,-0.47,-0.5,-0.5276,-0.52,-0.5426,-0.4976,-0.5026,-0.4826,-0.6276,-0.7868,-0.2234,-0.6068,-0.64,-0.8534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3714,-0.8572,1,1,1,-1,-0.9428,-0.4286,-0.3428,-0.8286,-0.5428,-0.1142,1,1,1,-0.4858,-0.3142,-0.5714,-0.7714,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.3584,-0.3506,-0.292,-0.2716,-0.2268,-0.2252,-0.184,-0.2202,-0.4126,-0.1548,-0.68,-0.0824,-0.9894,-0.8458,-0.1518,0.287,0.5708,1,0.0434,0.1304,-0.087,0.3768,0.1594,0.174,0.5508,0.5942,0.6086,0.3478,0.1304,0.5218,0.6956,0.4928,1,0.5362,0.058,0.5942,0.3334,0.4348,0.5798,0.2754,0.5508,0.6376,0.3914,0.3768,0.3624,0.2898,-0.0724,0.145,0.2754,0,-0.2244,-0.1428,-0.0816,-0.1224,0.347,0.7346,0.6734,0.898,0.9388,0.2244,0.0816,0.551,0.4082,0.6938,0.5714,0.6938,0.6122,0.6326,0.4694,0.4082,0.2448,1,0.347,0.9592,0.3674,0.204,0.2654,0.653,0.6938,0.0204,0.3266,-0.3266,-0.1518,-0.0506,-0.0254,0.2658,0.4304,0.9746,1,0.7342,0.481,0.3164,0.3292,0.7594,0.8988,0.8228,0.8102,0.7848,0.6708,0.7468,0.8608,0.595,0.405,0.7342,0.4178,0.443,0.6456,0.3418,0.2406,0.1518,0.3798,0.4936,0.3038,-0.2532,-0.9978,1,-1,-1,-1,-1,-0.6,-1,1,-0.2358,-0.1056,0.2682,0.1708,0.0244,-0.0244,0.3334,0.1382,0.3822,0.317,0.9674,0.8536,1,0.8048,0.691,0.5122,0.4634,0.7074,0.7074,0.3984,0.4308,0.4634,0.4472,0.2846,0.2196,-0.1056,-0.3658,-0.4308,-0.3008,-0.0732,-0.252,-0.6586,'9'
-0.64,0.047,0.0682,0.2824,0.3436,0.6848,0.7976,0.9058,1,0.9082,1,0.9764,0.8988,0.8636,0.4352,0.4518,0.3224,0.3552,0.2282,0.2964,0.2682,0.3882,0.4612,0.633,0.6518,0.5294,0.5318,0.4942,0.5624,0.4942,0.4588,0.4094,-0.4578,-0.0416,-0.0132,0.2264,0.33,0.4782,0.7544,0.862,0.7746,0.8478,0.9532,1,0.7928,0.8112,0.5168,0.4984,0.3766,0.338,0.3198,0.273,0.4192,0.401,0.5574,0.6508,0.7664,0.671,0.6772,0.5208,0.5634,0.527,0.5736,0.529,-0.4168,-0.0152,0.0192,0.2392,0.3662,0.4954,0.782,0.8648,0.8426,0.879,0.996,1,0.9132,0.8708,0.56,0.4772,0.4732,0.3724,0.5016,0.4814,0.5822,0.6126,0.663,0.8526,0.8568,0.6852,0.6528,0.6388,0.562,0.566,0.5722,0.6508,-0.4294,-0.045,0.0428,0.1996,0.3626,0.442,0.8036,0.8266,0.8934,0.862,1,0.906,0.9854,0.835,0.6844,0.5402,0.5736,0.6594,0.6342,0.7702,0.6802,0.8412,0.8056,0.8934,0.6448,0.6802,0.5654,0.557,0.5506,0.49,0.6614,0.676,-0.4276,-0.064,0.0806,0.2252,0.4214,0.4752,0.8802,0.8492,0.7996,0.7066,0.8286,0.812,0.8842,0.9896,1,0.779,0.7148,0.752,0.8286,0.9194,0.9648,0.9896,0.8574,0.8224,0.7046,0.5806,0.5372,0.4896,0.5414,0.6054,0.5826,0.7644,-0.358,0.0296,0.2888,0.395,0.758,0.716,0.8124,0.6444,0.3902,0.3456,0.3456,0.3556,0.3802,0.5408,0.7456,0.7778,1,0.9432,0.9186,0.8666,0.926,0.9704,0.9284,0.963,0.921,0.9308,0.7926,0.7828,0.6074,0.5828,0.6766,0.684,-0.145,0.3152,0.3406,0.3804,0.6812,0.5144,0.2464,0.0362,-0.0434,-0.326,-0.3334,-0.2174,0.0254,-0.087,0.0398,0.1268,0.174,0.4638,0.6594,0.9638,1,0.8008,0.9058,0.9166,0.9348,0.8188,0.5362,0.4492,0.2318,0.2392,0.2028,0.2572,-0.7192,-0.0176,0.0878,0.228,0.3334,0.6492,0.7894,0.8948,1,0.9298,0.965,1,0.8948,0.8246,0.5088,0.4386,0.3684,0.3334,0.2632,0.4036,0.4036,0.5088,0.614,0.6492,0.614,0.5438,0.4036,0.4386,0.579,0.5438,0.5438,0.5438,-0.7894,-0.0176,0.0176,0.228,0.3334,0.6492,0.7894,0.8246,1,0.8246,0.9298,0.8246,0.8246,0.7544,0.3334,0.2982,0.2982,0.3334,0.1578,0.2632,0.193,0.4036,0.2982,0.5438,0.5088,0.3684,0.3684,0.2632,0.2982,0.3684,0.3684,0.228,-0.3794,-0.0344,0.1724,0.2586,0.569,0.569,0.8448,0.7242,0.3448,0.2932,0.3276,0.3794,0.3104,0.5518,0.7414,0.8104,0.931,0.9482,0.6034,0.7068,0.8448,0.931,0.9828,1,0.9656,0.7414,0.6034,0.6724,0.5172,0.4656,0.638,0.638,-1,-1,-1,-1,-1,-1,-1,-0.9862,-0.9832,-0.773,-0.8176,-0.0332,0.531,0.8454,0.8572,0.7114,0.6044,0.5984,0.8602,0.6926,0.5806,-0.1066,-0.6916,-0.9186,-0.9356,-0.9316,-0.9574,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.996,-0.9964,-0.7614,-0.8786,-0.2564,0.3982,0.766,0.705,0.9372,0.7388,0.633,0.4556,-0.1922,-0.6294,-0.8438,-0.956,-0.9768,-0.9806,-0.9726,-0.9868,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.9334,-0.6234,-0.61,-0.5,-0.5224,-0.51,-0.518,-0.502,-0.432,-0.48,-0.472,-0.406,-0.454,-0.73,-0.53,-0.2168,-0.07,-0.42,-0.51,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.4286,1,1,1,1,0.6572,-0.5714,-0.3142,-0.2,-0.8858,-0.8572,-0.1428,0.8858,1,1,0.1428,-0.6572,0.3142,0.4858,1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.6746,-0.6134,-0.5916,-0.5692,-0.535,-0.4914,-0.4368,-0.409,-0.3698,-0.2358,-0.72,0.153,-0.9166,-0.4598,-0.2628,-0.3016,-0.0236,1,-0.7258,-0.4924,0.0762,0.8984,0.8984,0.8274,1,0.401,0.1168,0.1066,0.2588,0.5432,0.4416,0.066,0.005,-0.1472,0.2386,0.5634,0.3198,0.269,0.4518,0.736,0.8172,0.4314,-0.33,-0.1878,-0.1776,-0.2182,0.0152,-0.0254,-0.1066,-0.2182,-0.7514,-0.3136,0.0178,0.8462,0.8816,0.9054,1,0.5266,0.1598,0.1716,0.3492,0.6214,0.5384,0.2072,0.2072,0.219,0.361,0.6686,0.432,0.2544,0.4556,0.4674,0.6332,0.432,-0.0178,0.0888,0.2308,0.1242,0.3018,0.3372,0.2072,0.0532,-0.2728,0.5944,0.6644,0.8462,1,0.958,0.902,0.2588,0.3566,0.1888,0.3846,0.4266,0.4266,0.3846,0.3006,0.4126,0.3986,0.5244,0.5384,0.4686,0.5664,0.7342,0.6784,0.2588,-0.007,0.2308,0.2308,0.1748,0.3986,0.1608,0.3426,0.1888,-0.4204,-1,-1,1,-1,-1,-0.8,-0.6,-1,-0.1724,-0.0482,0.2966,0.5448,0.2966,0.1862,0.4344,0.3518,0.7518,0.669,0.6138,0.8206,0.8896,0.7932,0.6138,0.862,1,0.9586,0.6552,0.6276,0.9448,0.8896,0.7242,0.6966,0.0896,0.2,0.1586,0.0344,0.0482,-0.131,-0.0896,-0.4758,'9'
-0.263,0.2906,0.5086,0.8062,0.7404,0.647,0.4982,0.3044,0.135,0.2284,0.1314,0.225,0.3044,0.3598,0.5916,0.654,0.948,0.9654,1,0.9378,0.9066,0.834,1,0.948,0.9792,0.827,0.8582,0.6852,0.7786,0.789,0.8374,0.8096,-0.3482,0.1002,0.2506,0.5278,0.6122,0.8074,0.6886,0.3298,0.1742,0.2718,0.132,0.2084,0.3614,0.409,0.5832,0.6174,0.9208,0.9234,1,0.9736,0.781,0.744,0.9472,0.8892,0.81,0.715,0.6886,0.5672,0.5936,0.6386,0.7572,0.876,-0.382,0.0344,0.1884,0.419,0.732,0.8806,0.7056,0.2308,0.321,0.3794,0.1564,0.1724,0.4324,0.4058,0.5066,0.5544,0.825,0.8116,1,0.8542,0.6552,0.7958,0.8806,0.6392,0.695,0.573,0.5968,0.6764,0.6392,0.7718,0.7002,0.8276,-0.4068,-0.004,0.162,0.3496,0.7796,0.8776,0.6,0.3578,0.366,0.3496,0.238,0.1756,0.4204,0.3496,0.4966,0.6762,0.7606,0.9646,1,0.9074,0.8858,0.9156,0.853,0.8368,0.7142,0.7116,0.8096,0.8938,0.8204,0.8394,0.8394,0.8232,-0.4382,-0.0702,0.1798,0.3062,0.7556,0.7838,0.2752,0.1826,0.2416,0.1096,0.1152,0.2276,0.2528,0.3314,0.295,0.4776,0.618,0.7388,0.9578,1,0.8512,0.7808,0.8652,0.7922,0.7162,0.6488,0.6742,0.7978,0.8314,0.778,0.736,0.8034,-0.4028,-0.075,0.271,0.3416,0.6508,0.5866,0.0934,0.0414,0.0842,-0.0168,-0.0812,0.0598,0.0628,0.1026,0.2894,0.2588,0.3782,0.6662,0.7428,1,0.9356,0.8468,0.8438,0.856,0.8714,0.8316,0.654,0.516,0.5528,0.657,0.7612,0.8102,-0.3482,-0.0056,0.3296,0.3408,0.5494,0.3594,0.013,0.028,-0.095,-0.188,-0.162,-0.177,-0.0466,-0.0428,-0.0168,0.1062,0.1396,0.3446,0.7244,0.8584,1,0.9144,0.8436,0.8286,0.7504,0.8696,0.7094,0.5418,0.3258,0.3482,0.27,0.4228,0.0334,0.6,0.6,0.7666,0.8334,0.5666,0.5666,0.3666,0.3334,0.3334,0.3,0.4334,0.4,0.4666,0.4666,0.8,0.8334,1,1,0.9334,0.9334,0.9334,0.9334,0.9666,0.9666,0.9,0.9666,0.7666,0.8334,0.9334,1,0.9334,-0.1692,0.2924,0.477,0.8154,0.7538,0.5692,0.4462,0.3538,0.1384,0.2308,0.1076,0.2616,0.2924,0.4154,0.6,0.6924,0.9076,0.9692,0.877,0.877,0.9076,0.877,0.9384,0.9384,1,0.9076,0.8154,0.723,0.7846,0.6924,0.877,0.8154,-0.4954,-0.1214,0.215,0.2898,0.701,0.6448,0.028,0.0468,0.0842,-0.028,-0.0654,0.028,0.1028,0.1214,0.2898,0.3084,0.4018,0.7196,0.813,1,1,0.757,0.813,0.8504,0.813,0.813,0.4954,0.5514,0.701,0.7944,0.7944,0.8692,-1,-1,-1,-1,-1,-0.9888,-0.9864,-0.9514,-0.977,-0.9714,-0.74,0.6604,0.3738,0.5298,0.7866,0.9478,0.962,0.7612,0.5274,0.0504,-0.2294,-0.3726,-0.5386,-0.832,-0.9746,-0.98,-0.9814,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.994,-0.9942,-0.8718,-0.7994,-0.5148,-0.7042,-0.135,0.059,0.499,0.5408,0.6328,0.9332,0.6348,0.4824,0.0702,-0.1096,-0.5536,-0.802,-0.9468,-0.976,-0.965,-0.9514,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.9534,-0.45,0.5432,0.57,0.2432,-0.543,-0.4972,-0.343,-0.4116,-0.4258,-0.385,-0.4576,-0.515,-0.3926,-0.4176,-0.6626,-0.75,-0.5468,-0.1868,-0.3068,-0.6534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6572,1,1,1,1,1,1,0.0858,-0.6572,-0.7142,-0.6572,-0.8858,-0.9714,-0.7714,-0.6,0.2572,1,1,1,-0.6286,-0.1428,1,-1,-1,-1,-1,-1,-1,0.8228,0.8446,0.8686,0.8878,0.914,0.9532,0.9884,1,1,1,0.4358,0.427,0.4236,0.4128,0.3912,0.3612,0.334,0.2568,0.2328,0.4398,-0.7334,-0.1412,-0.7352,-0.5822,-0.047,0.0518,-0.0372,1,-0.485,-0.222,0.0082,0.0302,0.1178,0.1946,0.3644,0.3754,0.474,0.6054,0.8136,0.8904,0.8904,1,0.978,0.8246,0.852,0.6768,0.726,0.7698,0.5178,0.5288,0.4958,0.5946,0.5506,0.3972,0.3206,0.359,0.2494,0.2494,0.0904,-0.1288,-0.878,-0.83,-0.6994,-0.4422,-0.4336,-0.3856,-0.1024,0.037,0.159,0.3856,0.3508,0.7038,0.939,0.8954,0.9346,0.9302,1,0.8214,0.7516,0.878,0.7864,0.743,0.7516,0.7908,0.5686,0.5992,0.5642,0.5032,0.5032,0.4596,0.1328,-0.037,-0.4988,-0.1812,-0.0968,-0.2804,-0.206,-0.2506,-0.206,-0.1018,0.3648,0.4144,0.4888,0.6674,0.9454,0.9206,0.6426,1,0.9008,0.8214,0.7618,0.7172,0.8312,0.6228,0.469,0.5534,0.3746,0.3698,0.469,0.2754,0.3002,0.32,0.2358,0.067,-0.575,-1,-1,1,-1,-1,-0.4,-0.2334,-1,-0.1404,-0.0878,0.0176,-0.1052,-0.228,-0.0176,-0.1052,-0.0526,-0.0176,0.5614,1,0.965,0.8596,0.9298,0.8246,0.4036,0.7368,0.7368,0.4736,0.6492,0.965,0.7368,0.3684,0.3334,0.0526,0.0878,-0.0526,-0.1578,-0.3334,-0.3158,-0.3684,-0.8596,'10'
-0.4444,0.144,0.1814,0.6996,0.7396,0.3768,0.3942,0.3366,0.3542,0.234,0.2866,0.3216,0.4018,0.4644,0.587,0.7346,0.9324,0.8474,0.9124,0.8098,0.7722,0.7422,0.8974,0.8072,1,0.9724,0.7822,0.7872,0.6846,0.7346,0.8198,0.8674,-0.4806,0.0194,0.0238,0.4568,0.4526,0.6186,0.6314,0.4224,0.4396,0.2996,0.334,0.3642,0.4182,0.4656,0.528,0.7262,0.8082,0.8922,1,0.8104,0.7156,0.6918,0.8384,0.7112,0.8362,0.7262,0.681,0.5948,0.7932,0.7112,0.7694,0.7112,-0.474,0.003,0.0296,0.4148,0.3924,0.7758,0.7554,0.3802,0.3538,0.319,0.2946,0.3374,0.319,0.5006,0.4882,0.6982,0.6962,0.998,1,0.8064,0.8144,0.8226,0.8268,0.8288,0.841,0.79,0.8104,0.7126,0.741,0.6942,0.7228,0.7186,-0.473,-0.0438,0.052,0.3354,0.5812,0.802,0.7126,0.398,0.2854,0.3646,0.2166,0.3312,0.3562,0.4542,0.525,0.6084,0.8042,0.8646,0.9666,1,0.8124,0.8,0.7708,0.7876,0.7708,0.775,0.8124,0.8146,0.6916,0.7208,0.6834,0.7104,-0.427,-0.0746,0.146,0.2798,0.7212,0.7682,0.4916,0.4648,0.3914,0.3066,0.2888,0.2954,0.369,0.4092,0.4448,0.572,0.6856,0.8394,0.962,1,0.9198,0.8238,0.8372,0.8796,0.8618,0.7592,0.7124,0.7658,0.7838,0.8038,0.7658,0.7838,-0.3882,-0.0334,0.329,0.4344,0.7918,0.766,0.27,0.1646,0.2314,0.072,0.09,0.0848,0.1234,0.252,0.3188,0.3856,0.4756,0.6452,0.8534,0.9588,1,0.8432,0.7892,0.8894,0.8304,0.7866,0.6632,0.6092,0.4628,0.4294,0.5348,0.6222,-0.3156,0.035,0.3356,0.3522,0.5692,0.3622,0.1118,-0.1086,-0.162,-0.2788,-0.349,-0.3556,-0.1452,-0.162,-0.0884,-0.0684,0.015,0.192,0.546,0.8498,0.9398,1,0.823,0.813,0.9066,0.8164,0.7296,0.4892,0.369,0.389,0.2354,0.3222,-0.1642,0.3432,0.403,0.7314,0.6716,0.403,0.2836,0.3732,0.2836,0.2538,0.1344,0.3432,0.194,0.4926,0.5224,0.7314,0.8208,0.9702,0.8208,0.6418,0.5224,0.7612,0.6418,0.9702,0.9702,1,0.6716,0.8208,0.582,0.7612,0.6716,0.8208,-0.3898,0.2204,0.2542,0.8644,0.8984,0.4576,0.322,0.2542,0.2882,0.1526,0.2542,0.2542,0.3898,0.4576,0.661,0.661,1,0.9322,0.9322,0.8306,0.7628,0.7628,0.9662,1,0.9662,1,0.7288,0.7966,0.695,0.7628,0.6272,0.8644,-0.4238,-0.1016,0.2204,0.356,0.8136,0.7966,0.356,0.2712,0.2542,0.1526,0.1526,0.2372,0.1356,0.2372,0.4406,0.4916,0.6102,0.7118,0.983,0.9492,1,0.8306,0.7966,0.9492,0.8644,0.7966,0.5594,0.5594,0.6102,0.5594,0.678,0.661,-1,-1,-1,-1,-1,-1,-0.9936,-0.9924,-0.9738,-0.973,-0.7676,0.6588,0.406,-0.0014,0.1894,0.483,0.5688,0.3736,0.1974,-0.064,-0.4028,-0.5802,-0.806,-0.9436,-0.9842,-0.9858,-0.9888,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9964,-0.9962,-0.9044,-0.7108,-0.6328,-0.0168,0.6048,0.5062,0.5282,0.6536,0.9006,0.78,0.2028,-0.3924,-0.5924,-0.7538,-0.9386,-0.9778,-0.991,-0.985,-0.985,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9068,-0.9334,-0.6,0.6532,0.6232,-0.36,-0.28,-0.2,-0.1112,-0.2046,-0.4068,-0.2734,-0.389,-0.5024,-0.489,-0.5578,-0.7768,-0.48,-0.3534,-0.3134,-0.78,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6,1,1,1,1,1,0.0858,-0.8858,-0.7142,-0.7714,-0.9428,-0.8572,0.7714,0.9714,-0.1714,1,1,-0.0286,-0.4572,-0.2286,1,-1,-1,-1,-1,-1,-1,0.8824,0.9096,0.9482,0.9686,1,1,1,1,1,1,0.3754,0.378,0.3434,0.3464,0.315,0.3114,0.2998,0.3056,0.3264,0.4876,-0.7734,0.0118,-0.6586,-0.5282,-0.1138,0.3896,0.6052,1,-0.6426,-0.1788,0.0038,-0.019,0.1634,0.3612,0.4828,0.5742,0.559,0.711,0.5438,0.6274,0.8326,0.9696,0.9848,1,0.787,0.7946,0.6958,0.7034,0.5438,0.384,0.422,0.3536,0.4828,0.2852,0.3004,0.0722,0.0646,-0.019,-0.0038,-0.2928,-0.898,-0.6816,-0.4968,-0.4522,-0.2738,-0.2484,-0.2994,-0.0764,0.102,0.293,0.4522,0.6434,0.5414,0.6114,0.8726,1,0.8408,0.7708,0.7708,0.8152,0.7644,0.7134,0.637,0.828,0.758,0.5796,0.5732,0.4904,0.4586,0.3886,0.2994,0,-0.3776,-0.124,0.0202,-0.1182,-0.1124,-0.0028,-0.0086,0.2104,0.4236,0.4812,0.4756,0.6888,0.856,0.5216,0.6888,0.8616,0.9654,1,0.8328,0.8848,0.8386,0.6714,0.6312,0.7348,0.7868,0.5908,0.6196,0.5216,0.4986,0.464,0.2104,-0.124,-0.354,-1,-1,1,-1,-1,-0.8,-0.4666,-1,-0.5126,-0.0924,0.126,0.126,-0.2268,-0.0756,0.1092,0.479,0.7648,0.5126,0.4118,0.2606,1,0.9832,0.3446,0.5294,0.6974,0.5462,0.4622,0.2774,0.5126,0.5294,0.647,0.731,0.647,0.7142,0.7648,0.7142,0.4622,0.4286,0.1764,-0.1428,'10'
-0.4488,0.3676,0.4102,0.671,0.7606,0.7308,0.8548,0.5384,0.3076,0.1068,0.1538,0.0598,0.2136,0.2692,0.188,0.2692,0.3076,0.5256,0.7394,0.829,0.9188,0.8718,0.983,0.9316,0.9402,1,0.9274,0.765,0.624,0.5556,0.5428,0.5556,-0.4316,0.0236,0.0658,0.3974,0.471,0.7632,0.6948,0.321,0.2368,0.2316,0.129,0.2764,0.171,0.329,0.3448,0.4868,0.5764,0.7316,0.8736,1,0.8578,0.8974,0.8684,0.9422,0.8,0.8264,0.6894,0.7106,0.5606,0.5922,0.6132,0.6316,-0.447,0.0056,0.053,0.3548,0.5838,0.8296,0.7402,0.2514,0.2122,0.3604,0.2178,0.2346,0.3016,0.4106,0.4218,0.514,0.6788,0.7542,0.9414,0.9916,0.9608,1,0.9608,0.9748,0.8744,0.8798,0.7068,0.6928,0.6118,0.5754,0.676,0.6312,-0.4566,-0.0434,0.0578,0.2716,0.656,0.792,0.5982,0.448,0.318,0.3758,0.2312,0.2428,0.3584,0.3266,0.4336,0.3902,0.5982,0.6358,0.8554,0.9162,1,0.8816,0.8988,0.8902,0.8612,0.815,0.6908,0.6502,0.63,0.552,0.5694,0.633,-0.4384,-0.084,0.1292,0.2432,0.7088,0.7178,0.4144,0.3544,0.2582,0.1292,0.1712,0.1712,0.1892,0.2792,0.2612,0.3724,0.4984,0.6126,0.8198,0.934,1,0.991,0.937,0.943,0.964,0.8918,0.8228,0.7028,0.6246,0.5976,0.6066,0.6576,-0.4548,-0.214,0.2006,0.4616,0.6556,0.4816,0.1606,0.0502,-0.0568,-0.077,-0.117,-0.117,-0.0368,0,0.0702,0.1606,0.2576,0.3678,0.592,0.7994,0.99,1,0.893,0.893,0.9198,0.9332,0.8362,0.6154,0.5452,0.4882,0.4882,0.5016,-0.3876,-0.0704,0.2908,0.6212,0.7092,0.1366,-0.1454,-0.2422,-0.3128,-0.3744,-0.3964,-0.4186,-0.2466,-0.2732,-0.2334,-0.0838,-0.119,0.0704,0.3172,0.5506,0.8898,1,0.8678,0.8678,0.8898,0.8942,0.8062,0.4318,0.2644,0.2466,0.2334,0.2512,-0.1228,0.4736,0.4736,0.579,0.614,0.614,0.6842,0.228,0.193,-0.0526,-0.0176,-0.193,-0.0176,0.0176,-0.1578,-0.1578,-0.2632,0.0176,0.228,0.5088,0.614,0.7192,0.7544,0.6492,0.614,1,1,0.7192,0.2982,0.3684,-0.0526,0.0878,-0.3334,0.451,0.5294,0.7254,0.8432,0.5686,0.804,0.6078,0.3726,0.2156,0.2942,0.2156,0.4118,0.451,0.4118,0.5686,0.5686,0.7254,0.8432,0.7648,1,1,0.8824,0.8432,0.9216,0.9608,0.647,0.804,0.7254,0.647,0.6862,0.5686,-0.5556,-0.2038,0.0926,0.3148,0.6482,0.5186,0.1666,0.0926,0.037,-0.037,-0.0926,-0.074,0.0556,0.0556,0.1482,0.2222,0.2592,0.4444,0.7038,0.8148,1,1,0.926,0.9074,0.9444,0.8704,0.7962,0.7038,0.574,0.537,0.5,0.5186,-1,-1,-1,-1,-1,-1,-0.988,-0.988,-0.9222,-0.8428,-0.7136,0.4054,0.5164,0.7332,0.9744,0.904,0.7952,0.5822,0.4302,0.2942,0.0012,-0.2988,-0.75,-0.9638,-0.9766,-0.9546,-0.9728,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9956,-0.9954,-0.8758,-0.8472,-0.8684,-0.524,0.708,0.4812,0.435,0.4878,0.3588,0.2938,0.1206,-0.1794,-0.4306,-0.7386,-0.9352,-0.9836,-0.9914,-0.9864,-0.993,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9868,-0.9668,-0.6868,0.3432,0.1432,-0.6334,-0.363,-0.403,-0.523,-0.4458,-0.4916,-0.5344,-0.4716,-0.4,-0.3716,-0.663,-0.6868,-0.33,-0.7468,-0.7868,-0.8868,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,1,1,1,1,1,1,-0.7142,-1,-1,-0.9142,-0.9142,-0.5142,-0.3142,1,1,1,0.8,-0.6858,-0.4,-0.2286,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.6426,0.6132,0.6156,0.6118,0.609,0.606,0.6002,0.5876,0.556,0.7302,-0.7466,-0.2236,-0.8762,-0.717,-0.4802,-0.0068,1,1,-0.2868,-0.0776,0.2326,0.2558,0.5038,0.6046,0.6976,0.5504,0.6744,0.7364,0.845,0.8992,1,0.9844,0.9768,0.752,0.7286,0.7054,0.783,0.6666,0.876,0.8604,0.7906,0.721,0.6434,0.4806,0.5348,0.6434,0.5814,0.3876,0.1628,-0.279,-0.5774,0.0566,0.2076,0.1094,-0.0868,0.0114,0.1622,0.1924,0.4264,0.4188,0.7284,0.7284,0.7962,0.8792,0.9548,0.7812,0.8642,0.849,0.8944,0.9472,0.932,1,0.8416,0.7208,0.6528,0.5094,0.532,0.6302,0.6076,0.5472,0.449,0.132,-0.01,0.1948,0.2212,0.2674,0.3136,-0.0958,-0.0034,0.076,0.274,0.5116,0.8086,0.9406,0.8614,1,0.8284,0.6304,0.6106,0.703,0.6634,0.6832,0.7228,0.6436,0.6766,0.934,0.8614,0.6172,0.505,0.3202,0.0826,0.4192,0.3598,-0.2806,-0.5168,-1,-1,1,-1,-1,-1,-0.4666,-1,-0.4444,0.0186,0.3518,0.0926,0.0186,-0.1666,0.074,-0.1112,0,0.4814,0.574,0.7408,0.963,1,0.3704,0.426,0.537,0.6296,0.5926,0.3148,0.574,0.2038,0.2592,0.0556,0.0926,-0.0186,0.2592,-0.037,0.1112,0.037,-0.4814,-0.7592,'11'
-0.3548,0.3964,0.4542,0.6404,0.7432,0.7882,0.9294,0.74,0.5826,0.3194,0.3354,0.3516,0.4736,0.4126,0.4736,0.5474,0.7304,0.817,0.9134,0.9582,0.955,0.907,1,0.923,0.9936,0.8652,0.8266,0.7368,0.7656,0.7272,0.756,0.7142,-0.5614,0.0136,0.0218,0.4904,0.4822,0.8228,0.8366,0.4686,0.4904,0.3134,0.3434,0.3514,0.4006,0.4686,0.5286,0.6186,0.7058,0.8446,0.9536,0.6866,0.7874,0.842,1,0.8228,0.921,0.7766,0.6812,0.545,0.6376,0.5476,0.406,0.3298,-0.4778,0.0898,0.0898,0.552,0.5264,0.9686,0.9316,0.5206,0.4864,0.2754,0.244,0.398,0.3752,0.4436,0.4208,0.6292,0.6062,0.8402,0.846,0.9458,0.9514,0.9886,1,0.8944,0.923,0.826,0.8544,0.4894,0.3808,0.4408,0.4808,0.3466,-0.3778,0.1196,0.1984,0.5652,0.6196,0.9402,0.8614,0.5244,0.443,0.2582,0.1548,0.356,0.2418,0.394,0.3696,0.5816,0.576,0.7664,0.818,1,0.8614,0.8532,0.8124,0.9538,0.799,0.9158,0.7582,0.712,0.519,0.6522,0.4484,0.5434,-0.402,0.074,0.283,0.5646,0.6604,0.8606,0.701,0.4688,0.2394,0.196,0.2336,0.2946,0.2888,0.3178,0.492,0.495,0.6574,0.6662,1,0.9332,0.9506,0.8606,0.8868,0.823,0.9188,0.8694,0.9478,0.8056,0.7242,0.6082,0.6314,0.6198,-0.319,0.1328,0.4046,0.5816,0.652,0.7466,0.3984,0.429,0.1236,0.0688,0.2092,0.1084,0.1938,0.2794,0.3832,0.3894,0.4198,0.652,0.7312,1,0.9358,0.9694,0.8932,0.8382,0.719,0.7618,0.7222,0.7374,0.6642,0.6978,0.3984,0.429,-0.3078,0.0784,0.3042,0.3806,0.4354,0.3552,0.071,-0.1512,-0.122,-0.2168,-0.235,-0.2386,-0.2678,-0.2496,-0.0092,-0.0274,0.1256,0.2168,0.5082,0.6576,0.8214,0.9198,1,0.9126,0.9234,0.8288,0.6394,0.4608,0.3042,0.4244,0.3806,0.4682,-0.4444,0.4444,0.5556,0.3888,0.6666,0.5,0.7778,0.7778,0.0556,-0.2222,-0.2778,-0.1112,-0.1666,0.0556,-0.1112,-0.2778,0.1666,0.2222,0.4444,0.8334,0.9444,0.6666,1,0.9444,0.8888,0.2222,0.6112,0.7778,0.6666,0.2222,0.6112,0.5,-0.5652,0.4348,0.5218,0.5218,0.6956,0.7392,0.9566,0.7826,0.4782,0.3478,0.2608,0.3044,0.4348,0.4782,0.3044,0.3914,0.2608,0.7826,0.7392,0.913,0.826,0.9566,1,0.8696,0.9566,0.6086,0.6522,0.6522,0.5218,0.5218,0.5218,0.6086,-0.4062,0.0938,0.1562,0.5,0.6094,0.8438,0.75,0.4688,0.3282,0.2032,0.0938,0.2968,0.1406,0.3124,0.375,0.5,0.5938,0.7032,0.8906,1,0.7188,0.7344,0.8124,0.875,0.8282,0.8906,0.7812,0.8282,0.6406,0.6876,0.5624,0.5624,-1,-1,-1,-1,-1,-0.9816,-0.9834,-0.9086,-0.892,-0.8432,-0.8246,0.27,0.4794,0.534,0.7416,0.9308,0.963,0.8496,0.6926,0.3134,0.0982,-0.1998,-0.5792,-0.904,-0.9484,-0.9714,-0.976,-0.9788,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9924,-0.9924,-0.6424,-0.5924,-0.8052,-0.8182,-0.3882,0.7588,0.4438,0.3998,0.4366,0.4254,0.3576,0.1974,-0.1936,-0.2916,-0.5766,-0.8766,-0.9522,-0.9782,-0.9828,-0.9876,-0.9768,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.9134,-0.5168,0.4266,0.48,0.4166,-0.52,-0.3,-0.363,-0.5344,-0.505,-0.505,-0.4876,-0.4792,-0.5572,-0.5772,-0.5098,-0.649,-0.349,-0.479,-0.5956,-0.759,-0.6922,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7142,1,1,1,-0.3428,1,1,1,0.1428,-0.5142,-0.6858,-0.8572,-0.4858,-0.7142,-0.6572,-0.0858,1,1,0.8858,-0.1428,-0.7428,-0.7142,1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.3348,0.321,0.312,0.3574,0.3598,0.3728,0.39,0.4126,0.4612,0.5928,-0.8,-0.1294,-0.8448,-0.6924,-0.4256,0.1068,0.7702,1,-0.7684,-0.3108,0.017,0.1242,0.209,0.4464,0.4124,0.4632,0.6724,0.661,0.9096,0.9944,0.9888,1,0.7118,0.5988,0.548,0.695,0.6892,0.6836,0.6328,0.452,0.5762,0.5142,0.3164,0.2768,0.4124,0.3786,0.3728,0.1186,-0.0226,-0.2034,-0.7556,-0.2614,0.0398,-0.2046,-0.0796,-0.034,0.1648,0.0626,0.159,0.2386,0.483,0.659,0.8124,1,0.7386,0.7272,0.6818,0.659,0.6762,0.7216,0.7272,0.7728,0.716,0.7102,0.6136,0.7728,0.659,0.7046,0.483,0.409,0.4034,-0.0454,-0.5278,-0.4324,-0.0558,0.3368,0.3316,-0.0504,0.1352,0.0398,0.1352,0.427,0.4908,0.7294,0.862,1,0.7984,0.862,0.8726,0.9046,0.8514,0.6552,0.5172,0.4218,0.4588,0.4802,0.5066,0.6764,0.5862,0.5384,0.374,0.374,0.2202,0.045,0.395,-1,-1,1,-1,-1,-0.8,-0.2666,-1,-0.0094,0.0468,0.2524,0.0468,-0.0842,-0.2898,0.0468,-0.271,-0.0654,0.3272,0.8504,0.9066,0.9252,1,0.6262,0.3084,0.4018,0.4954,0.6262,0.3272,0.271,0.3644,0.1962,-0.1776,-0.1776,-0.1962,-0.0654,-0.215,-0.4766,-0.4206,-0.271,-0.4766,'11'
-0.3766,0.155,0.1456,0.481,0.7816,1,0.864,0.6424,0.3924,0.3766,0.2626,0.2406,0.3006,0.364,0.5126,0.5982,0.7974,0.9398,0.8956,0.6678,0.6266,0.7246,0.6708,0.8102,0.7722,0.655,0.4936,0.4082,0.2594,0.2564,0.2374,0.2436,-0.4062,-0.0074,0.1484,0.2924,0.6372,0.6822,0.7932,0.7452,0.3914,0.2624,0.3074,0.4272,0.4692,0.6012,0.6432,0.913,0.883,1,0.7542,0.808,0.7962,0.7902,0.976,0.901,0.916,0.7422,0.6642,0.5262,0.5352,0.4752,0.4182,0.4362,-0.4388,-0.0398,0.1196,0.2572,0.5984,0.6452,1,0.9642,0.4746,0.3728,0.4884,0.6148,0.6644,0.9724,0.923,0.9642,0.8486,0.7002,0.6342,0.7028,0.6672,0.6616,0.978,0.8954,0.8542,0.6864,0.6644,0.5434,0.5544,0.381,0.3288,0.3232,-0.4294,-0.0916,0.1204,0.2252,0.5158,0.7356,1,0.8874,0.6204,0.8404,0.8456,0.877,0.7906,0.6676,0.4948,0.3926,0.3612,0.3168,0.2434,0.2434,0.3272,0.3796,0.445,0.5576,0.6676,0.6414,0.5,0.4424,0.356,0.4346,0.4686,0.4608,-0.3984,-0.0512,0.2186,0.4418,0.7954,0.8884,1,0.8016,0.7768,0.7612,0.5814,0.2496,0.1472,-0.0388,-0.1318,-0.1318,-0.1348,-0.2156,-0.2404,-0.1472,-0.1628,-0.1814,-0.11,-0.1504,-0.014,0.0636,0.0542,0.017,0.1038,0.1876,0.1194,0.0108,-0.3346,0.0254,0.4146,0.6872,0.9672,0.9636,1,0.8436,0.6872,0.1746,-0.1164,-0.2146,-0.24,-0.2946,-0.3454,-0.3564,-0.52,-0.5818,-0.771,-0.7418,-0.7454,-0.6946,-0.6546,-0.5928,-0.491,-0.4728,-0.3128,-0.3018,-0.2546,-0.3128,-0.1636,-0.0254,-0.1598,0.2428,0.4574,0.6148,1,0.873,0.9474,0.8118,0.6674,0.5142,0.1072,-0.1466,-0.3086,-0.3042,-0.5274,-0.5712,-0.5754,-0.5186,-0.5624,-0.5536,-0.5624,-0.6936,-0.5712,-0.3874,-0.1204,-0.1684,-0.0066,0.1948,0.3348,-0.0634,-0.1072,-0.046,-0.4036,0.228,0.228,0.5438,0.5088,0.965,1,0.4736,0.3684,0.228,0.1578,0.193,0.1578,0.3334,0.3684,0.5088,0.6492,0.8246,0.7192,0.579,0.4386,0.4386,0.2982,0.6492,0.6842,0.5088,0.2982,0.193,0.3334,0.193,0.193,-0.0176,-0.377,0.1148,0.1148,0.4098,0.7378,1,0.8688,0.541,0.3114,0.377,0.1804,0.246,0.3442,0.377,0.4426,0.377,0.705,0.7378,0.7704,0.6066,0.5738,0.5738,0.705,0.6394,0.7378,0.5738,0.541,0.4098,0.377,0.3114,0.2132,0.377,-0.4118,-0.0784,0.1568,0.451,0.7648,0.8824,1,0.7648,0.6862,0.8824,0.745,0.4118,0.255,0.098,-0.0392,-0.0784,-0.0392,-0.098,-0.1176,-0.1372,-0.0784,-0.0392,-0.0196,-0.0392,0.0588,0.1764,0.2352,0.0784,0.3138,0.4118,0.1176,0.0588,-1,-1,-1,-1,-1,-1,-1,-1,-0.9848,-0.974,-0.1354,0.763,0.6674,0.5548,0.5056,0.6478,0.7068,0.5316,0.113,0.0246,0.0434,-0.206,-0.78,-0.9536,-0.9518,-0.9606,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9946,-0.994,-0.625,-0.1236,0.2304,0.5836,0.7438,0.8948,0.7158,0.2006,-0.446,-0.6084,-0.6526,-0.7744,-0.9336,-0.9584,-0.966,-0.9792,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9934,-0.9534,-0.7334,-0.6376,-0.4226,-0.465,-0.4026,-0.5626,-0.625,-0.725,-0.8576,-0.92,-0.92,-0.9556,-0.5868,-0.1834,-0.42,-0.59,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,0.4,-0.6,-0.9714,-0.5142,1,1,1,-0.4,-0.4572,0.0858,0.5428,-0.4572,0.1142,0.1428,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.0558,0.0652,0.05,0.0364,0.0542,0.0586,0.052,-0.0424,-0.2496,-0.2362,-0.6534,-0.0706,-0.5456,-0.507,-0.0506,0.04,-0.047,1,-0.3548,0.5484,1,1,0.699,0.2258,0.3548,0.699,0.8494,0.7634,0.828,0.8494,0.871,0.8064,0.5484,0.2258,0.3978,0.3548,0.2474,0.613,0.5268,0.613,0.4624,-0.0968,-0.0322,-0.1612,-0.0752,-0.0108,-0.3334,-0.3334,-0.1828,-0.3118,0.1932,0.5294,1,0.9832,0.8152,0.5294,0.2268,0.5294,0.916,0.9664,0.8152,0.832,0.9664,0.9832,0.7142,0.5294,0.5294,0.4454,0.7478,0.8152,0.8488,0.832,0.5462,0.1428,-0.126,-0.0756,0.0084,0.0588,0.311,0.3782,0.2436,0.1596,0.1612,0.4194,0.742,1,0.4838,0.3388,0.2258,0.5322,0.9194,0.887,0.5162,0.4516,0.629,0.5968,0.4354,0.387,0.258,0.2258,0.5646,0.629,0.6612,0.629,0.3388,-0.0162,-0.2904,-0.0484,-0.0162,0.1612,0.1936,0.2258,0.129,-0.0968,-0.028,-1,-1,1,-0.6,-1,-1,-0.8,-1,-0.6434,-0.2868,0.2248,0.4264,0.4108,0.4884,0.4418,0.4264,0.1628,0.0698,0.0078,0.2558,0.1782,0.4264,0.659,0.752,0.69,1,0.7984,0.5348,0.659,0.5504,0.6434,0.3798,0.1008,0.1938,0.2714,0.2714,0.3024,0.4108,0.2094,0.0232,'12'
-0.3986,0.086,0.1432,0.401,0.5824,0.7374,0.7112,0.7684,0.506,0.4988,0.4368,0.4558,0.5178,0.506,0.7088,0.7136,1,0.9714,0.9498,0.8782,0.7732,0.7614,0.8448,0.7996,0.8114,0.6682,0.463,0.4152,0.4678,0.5466,0.5608,0.5274,-0.3732,0.0908,0.1114,0.4076,0.5338,0.7406,0.7544,0.9012,0.729,0.5912,0.488,0.582,0.6258,0.6924,0.9266,0.9586,1,0.9932,0.7842,0.775,0.8208,0.791,0.8874,0.8208,0.5246,0.4352,0.5706,0.5384,0.6786,0.5844,0.5568,0.426,-0.3828,0.0864,0.0774,0.3984,0.4882,0.753,0.7666,1,0.8922,0.6632,0.5242,0.6566,0.8114,0.9282,0.8226,0.908,0.6498,0.7038,0.5196,0.596,0.5938,0.6632,0.6544,0.7194,0.3872,0.4052,0.6768,0.6924,0.5534,0.5556,0.578,0.5668,-0.4056,0.0044,0.0478,0.2886,0.4794,0.6248,0.8894,1,0.7528,0.4598,0.8178,0.8222,0.6118,0.603,0.3948,0.36,0.3428,0.2754,0.154,0.089,0.2516,0.1626,0.2734,0.2646,0.345,0.525,0.5856,0.5314,0.4446,0.3752,0.3622,0.3298,-0.4292,-0.0318,0.1342,0.278,0.656,0.7098,1,0.9854,0.7268,0.6146,0.6366,0.4952,0.3342,0.0586,0.0536,0.0658,0.044,-0.0586,-0.1512,-0.0366,-0.1048,-0.1074,0.0024,0.1,0.2658,0.3682,0.4902,0.5,0.439,0.3122,0.278,0.2366,-0.3838,-0.0076,0.2752,0.3814,0.7954,0.7728,1,0.8636,0.7602,0.399,0.1414,-0.0026,-0.0984,-0.2474,-0.3132,-0.2778,-0.4166,-0.4646,-0.404,-0.447,-0.3586,-0.3434,-0.3536,-0.3334,-0.1364,0.0102,0.3132,0.3484,0.2854,0.2424,0.1036,-0.0404,-0.302,0.0892,0.2926,0.4084,0.8372,0.856,1,0.7652,0.6964,0.1738,-0.0298,-0.2456,-0.2832,-0.327,-0.4084,-0.54,-0.5932,-0.7434,-0.662,-0.5336,-0.662,-0.6682,-0.5212,-0.4616,-0.3866,-0.2738,-0.0392,0.0642,-0.086,-0.0672,-0.0954,-0.0642,-0.577,0.0384,0.077,0.423,0.5384,0.8076,0.923,0.7692,0.4616,0.2692,0.423,0.3076,0.423,0.4616,0.6538,0.6924,0.9616,1,0.9616,0.923,0.7692,0.923,0.8462,0.9616,0.923,0.8076,0.7308,0.3846,0.3846,0.4616,0.5,0.4616,-0.5,-0.1,0.0334,0.2334,0.5,0.7,0.5,0.6,0.4666,0.3666,0.3,0.3,0.4334,0.4666,0.6,0.6334,1,0.9666,0.9666,0.9666,0.8,0.7666,0.9,0.8334,0.9334,0.8,0.6,0.5334,0.4,0.6666,0.7334,0.5334,-0.3928,-0.0178,0.2322,0.3572,0.75,0.7858,1,0.9108,0.7678,0.5358,0.2322,0.1072,0.0714,-0.1072,-0.2322,-0.2142,-0.2858,-0.2678,-0.3036,-0.3928,-0.3572,-0.2678,-0.1786,-0.1964,-0.0714,0.2322,0.4464,0.5536,0.3572,0.3572,0.1428,0.0714,-1,-1,-1,-1,-1,-1,-1,-1,-0.985,-0.9816,-0.6218,0.6832,0.727,0.8684,0.7842,0.8474,0.9816,0.921,0.8,0.6306,0.3928,0.0558,-0.7956,-0.9508,-0.9316,-0.9386,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9938,-0.9934,-0.726,0.4258,0.5652,0.9324,0.7748,0.6762,0.858,0.4684,0.092,-0.1756,-0.4544,-0.615,-0.9384,-0.9302,-0.9436,-0.9294,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9,-0.92,-0.5834,-0.3446,-0.409,-0.4134,-0.3978,-0.5624,-0.6356,-0.6646,-0.78,-0.8334,-0.86,-0.898,-0.49,0.0232,-0.03,-0.3668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,1,1,1,-0.7142,-0.7714,-0.9142,-0.5142,-0.6572,-0.2,0,0.3428,-0.4858,1,1,0.7714,-0.4858,0.6286,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.0696,-0.1122,-0.1726,-0.2096,-0.262,-0.3316,-0.3948,-0.523,-0.6104,-0.2382,-0.76,0.0588,-0.6452,-0.0024,0.6334,0.406,0.2434,1,-0.2156,-0.1372,0.0196,0.4902,0.451,0.4118,0.2942,0.7648,0.9608,0.9608,0.8824,0.9608,1,1,0.8432,0.5294,0.804,0.9216,0.9608,0.9216,0.8824,0.9216,0.9216,0.804,0.4902,0.2156,0.4118,0.2942,0.1372,0.0196,0.0196,-0.1764,-0.5876,-0.2784,0.2164,0.464,0.3402,0.299,0.2164,0.5052,0.8144,1,0.7732,0.6908,0.9794,0.8556,0.4432,0.2784,0.5052,0.567,0.6494,0.6494,0.5464,0.6908,0.7114,0.5258,0.299,0.134,0.1958,0.031,-0.0928,-0.0104,-0.0104,-0.2164,0.0244,0.3658,0.7398,0.9024,0.8048,0.626,0.496,0.7236,0.8212,0.9838,0.9674,0.8212,1,0.7236,0.252,0.496,0.4796,0.4146,0.4796,0.7074,0.691,0.5284,0.5448,0.3658,0.3658,0.1708,0.1056,-0.0406,0.2032,0.2358,0.1382,-0.122,0.29,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.5976,-0.2682,0.0366,0.4268,0.4878,0.3414,0.2074,0.1952,0.0244,-0.0732,0.061,0.0488,0.2682,0.756,0.744,0.6464,0.8292,1,0.7318,0.256,0.5366,0.3536,0.3658,0.439,0.3902,0.1342,0.3536,0.4634,0.5366,0.4146,0.4024,-0.1952,'12'
-0.5602,-0.0984,0.011,0.3606,0.3142,0.582,0.5274,0.511,0.4398,0.3306,0.254,0.3388,0.2568,0.3826,0.3032,0.5274,0.5928,0.8334,0.8006,1,0.9044,0.8142,0.7076,0.776,0.6776,0.7432,0.6284,0.7596,0.7076,0.8278,0.705,0.7596,-0.5798,-0.0586,-0.0478,0.3352,0.3378,0.6436,0.649,0.5054,0.5292,0.3564,0.3856,0.3776,0.4256,0.4308,0.492,0.6462,0.7208,0.9256,1,0.782,0.8192,0.6862,0.7898,0.6596,0.7102,0.617,0.7898,0.6808,0.782,0.6888,0.6836,0.633,-0.4794,0.0388,0.0388,0.4046,0.4072,0.7036,0.709,0.7142,0.7356,0.4954,0.5328,0.5674,0.6208,0.5968,0.6688,0.9012,0.984,0.9066,1,0.7838,0.8718,0.7356,0.8612,0.701,0.7596,0.7276,0.9466,0.8292,0.6956,0.5782,0.7196,0.6476,-0.3808,0.1064,0.1898,0.564,0.5074,0.677,0.5882,0.7146,0.6636,0.5666,0.5154,0.7092,0.6662,0.903,0.7982,1,0.9138,0.6824,0.6258,0.6958,0.634,0.7066,0.6446,0.4858,0.502,0.7388,0.685,0.4724,0.4294,0.5154,0.5666,0.7846,-0.109,0.512,0.4602,0.7228,0.597,0.4122,0.2606,0.0906,0.1498,0.3568,0.6672,0.7856,0.6858,0.7856,0.4566,0.5342,0.6082,0.56,0.5638,0.5304,0.671,0.634,0.4898,0.2162,-0.0056,-0.0314,0.024,-0.1164,-0.0204,0.438,0.7892,1,0.0896,0.7488,0.6502,0.9418,0.7086,0.5246,0.0628,-0.278,0.0358,0.5246,0.9148,0.7892,0.982,0.6726,0.704,0.6054,0.6008,0.7892,0.722,0.6098,0.6144,0.8162,0.7578,0.547,0.0672,-0.314,-0.287,0.0852,0.3274,0.7354,1,0.982,0.259,1,0.771,0.3554,0.247,0.1988,0.6988,0.8796,0.8614,0.729,0.6928,0.7168,0.735,0.8674,0.9096,0.5302,0.229,-0.006,0.012,0.1266,0.1626,0.235,0.3434,0.4698,0.4578,0.4698,0.2772,0.2048,0.506,0.4698,0.3374,0.3674,-0.5666,-0.1334,0.0666,0.4,0.3666,0.7,0.6334,0.5666,0.5,0.3,0.2666,0.3334,0.3,0.3666,0.3334,0.5666,0.6666,0.8334,0.8,1,1,0.8334,0.8,0.8,0.8334,0.8,0.7334,0.7666,0.8666,0.9,0.7666,0.6666,-0.6,-0.1692,-0.0462,0.2924,0.323,0.5076,0.477,0.4462,0.3846,0.2924,0.2308,0.2924,0.2,0.323,0.3538,0.4462,0.6308,0.8154,0.8154,1,0.877,0.7846,0.6924,0.7538,0.6616,0.723,0.6616,0.7538,0.7538,0.8462,0.723,0.7538,-0.386,0.1404,0.3158,0.7018,0.6492,0.7368,0.6666,0.6492,0.579,0.5264,0.5264,0.772,0.8596,1,0.8596,0.8422,0.7894,0.6492,0.5614,0.5964,0.5438,0.6492,0.4912,0.3508,0.5264,0.6842,0.5964,0.3158,0.421,0.5438,0.7018,0.8422,-1,-1,-1,-1,-1,-1,-0.9818,-0.984,-0.9894,-0.9664,-0.2272,0.4086,0.76,0.9414,0.9238,0.612,0.7332,0.0176,-0.247,-0.1112,0.0632,-0.1684,-0.6898,-0.9482,-0.9542,-0.9642,-0.9658,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9962,-0.9962,-0.9962,-0.9868,-0.62,0.4526,0.8526,0.7356,0.5952,0.4286,0.0324,-0.7496,-0.87,-0.8622,-0.8264,-0.8758,-0.9574,-0.9824,-0.987,-0.993,-0.9948,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8668,-0.8068,-0.8434,-0.5568,-0.2834,-0.12,-0.0858,-0.1658,-0.2944,-0.18,-0.3316,-0.503,-0.515,-0.605,-0.71,-0.8376,-0.6068,-0.3168,-0.63,-0.6468,-0.94,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,-1,-0.4,1,1,1,-0.4572,-0.8286,-0.6572,0.4,1,1,-0.1428,-0.6572,0.6572,0.6286,0.1714,-0.2858,-0.1142,-0.2286,-0.6858,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.8928,0.4868,0.5052,0.512,0.4876,0.4854,0.4548,0.4192,0.3778,0.146,-0.401,-0.7866,-0.1648,-0.4716,-0.129,0.4538,0.9076,0.8788,1,-0.149,0.3192,0.6596,0.7022,0.532,0.4042,0.3192,0.4468,0.7446,1,0.9574,0.8724,0.9148,0.9148,0.7446,0.9148,0.8724,0.7872,0.8724,0.7446,0.7446,0.617,0.4042,0.234,-0.1064,-0.234,-0.4042,0.1064,0.0638,0.1064,0.1064,-0.532,-0.1936,0.2904,0.5322,0.6612,0.5,0.3226,0.3064,0.4678,0.629,1,0.9838,0.8226,0.7904,0.7096,0.7742,0.7904,0.6936,0.7742,0.7904,0.871,0.871,0.8064,0.4354,0.0968,-0.242,-0.1936,-0.0484,-0.0162,0.1774,0.2258,-0.0322,-0.0806,-0.0984,0.459,0.754,0.8688,0.6558,0.4262,0.459,0.4754,0.7378,1,0.9836,0.8688,0.705,0.6886,0.6558,0.754,0.5738,0.6394,0.705,0.7214,0.8032,0.6722,0.4262,-0.0328,-0.0492,-0.1804,-0.2132,0.0656,0.1968,0.1312,0.2132,-0.0164,0.202,-1,-1,1,-0.8,-1,-0.6,-0.8334,1,-0.45,-0.2834,0.1334,0.5666,0.5666,0.4666,0.6334,0.75,0.6834,0.4834,0.2834,0.3166,0.6834,0.6334,1,0.4666,0.1834,0.0166,-0.0834,0.3666,0.35,0.2334,0.1,-0.05,-0.1,-0.25,0.05,-0.0166,-0.1334,0.0834,-0.0166,-0.2,'13'
-0.5324,-0.0448,0.114,0.472,0.434,0.4988,0.4452,0.5504,0.4654,0.387,0.311,0.34,0.2662,0.4586,0.3714,0.4698,0.3938,0.5928,0.7294,0.9262,0.9106,0.9776,0.859,0.8524,0.9038,1,0.9218,0.9374,0.7562,0.7382,0.6442,0.6958,-0.5316,-0.0148,0.0042,0.4474,0.439,0.563,0.5526,0.563,0.563,0.4118,0.4202,0.4096,0.4264,0.4496,0.481,0.5064,0.5568,0.7668,0.813,0.939,1,0.771,0.8508,0.8446,0.939,0.832,0.9328,0.7226,0.6974,0.521,0.6428,0.5252,-0.5256,-0.0022,0.0022,0.4362,0.4382,0.5766,0.5766,0.6808,0.7022,0.4894,0.5234,0.5256,0.5766,0.5234,0.583,0.732,0.8022,0.9042,0.9914,0.7382,0.851,0.749,0.8766,0.8446,1,0.8702,0.834,0.717,0.6852,0.5852,0.6468,0.566,-0.408,0.0932,0.1864,0.5642,0.5152,0.648,0.5804,0.9114,0.8368,0.655,0.5758,0.732,0.6318,0.7412,0.6994,0.965,0.8438,0.8158,0.7202,0.8112,0.725,0.8322,0.8344,1,0.8648,0.7342,0.6456,0.6456,0.5688,0.6178,0.6154,0.711,-0.1112,0.455,0.5494,0.8112,0.6042,0.449,0.0716,0.2176,0.3334,0.452,0.793,0.79,0.6986,0.6378,0.5252,0.592,0.6986,0.6256,0.6104,0.452,0.4916,0.7078,0.8204,0.726,0.4368,0.0046,0.038,0.0564,0.172,0.5738,0.8356,1,-0.0058,0.6086,0.6242,0.82,0.3072,-0.0294,-0.3582,-0.186,-0.0058,0.8278,0.8748,0.7886,0.6634,0.5852,0.366,0.3424,0.4912,0.4716,0.5616,0.4364,0.2602,0.6868,0.777,0.7026,0.2172,-0.5226,-0.3502,0.1272,0.5578,0.9022,0.9922,1,0.2402,0.9754,0.7402,0.5932,0.4412,0.3676,0.755,0.8334,1,0.7746,0.5,0.9216,0.8824,0.9216,0.6078,0.3824,0.1274,-0.1176,-0.3922,0,0.1764,0.1764,0.1618,0.201,0.4166,0.4558,0.3774,0.3628,0.3824,0.3284,0.5196,0.505,-0.5,-0.0624,0.125,0.4688,0.4688,0.5624,0.5938,0.5,0.4376,0.25,0.2188,0.2812,0.2188,0.3438,0.2188,0.5,0.4376,0.4688,0.5312,0.8438,0.75,0.9688,0.8438,0.8124,0.7812,1,0.875,0.9062,0.8438,0.75,0.6562,0.6876,-0.5484,-0.0646,0.0968,0.4516,0.4194,0.387,0.258,0.5162,0.4516,0.3226,0.2904,0.2904,0.258,0.387,0.3548,0.4516,0.3548,0.4838,0.742,0.871,0.871,0.9678,0.8064,0.7742,0.9678,1,0.9354,0.9678,0.8064,0.7742,0.6452,0.5806,-0.1858,0.292,0.5576,0.8408,0.7346,0.7522,0.7522,0.8584,0.6638,0.7522,0.8408,0.8938,0.8762,0.9116,0.9824,1,0.77,0.77,0.7168,0.6638,0.7522,0.7876,0.947,0.8584,0.5752,0.5398,0.6814,0.5576,0.5752,0.6638,0.7346,0.8054,-1,-1,-1,-1,-1,-1,-1,-1,-0.9828,-0.98,-0.4094,0.555,0.8172,0.9718,0.9018,0.8008,0.7444,0.3102,-0.1202,0.0128,0.3012,0,-0.666,-0.9464,-0.9636,-0.9636,-0.9554,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9956,-0.995,-0.727,0.4766,0.7346,0.8222,0.9146,0.7338,0.3424,-0.4982,-0.8398,-0.8266,-0.7748,-0.8068,-0.9454,-0.97,-0.9828,-0.9918,-0.9916,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9,-0.9768,-0.6334,-0.0978,-0.2156,-0.1468,-0.169,-0.2934,-0.2934,-0.5312,-0.6246,-0.629,-0.724,-0.86,-0.57,0.11,-0.2834,-0.7468,-0.88,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,-0.8572,-0.8286,-0.9714,-0.6572,1,1,0.3714,-0.7428,0.3714,1,0.0286,0,0.2858,-0.0572,-0.3714,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.8468,0.9358,0.9064,0.9204,0.9092,0.8898,0.8622,0.8562,0.7828,0.574,-0.0648,-0.8134,0.0706,-0.8244,0.0326,0.2678,0.7922,0.9018,1,-0.1112,0.4444,0.6296,0.6296,0.5556,0.2222,0.3704,0.5926,0.6666,0.7778,1,1,0.8518,0.7408,0.6296,0.5556,0.4444,0.6296,0.7778,0.8518,0.8888,0.8518,0.8148,0.7408,0.7038,0.5556,0.2962,0.1112,0.037,0,-0.1482,-0.5926,-0.3196,0.464,0.6494,0.6908,0.402,0.2578,0.2372,0.5052,0.6494,0.5052,0.8762,1,0.7938,0.732,0.7114,0.6702,0.5464,0.6702,0.7526,0.6908,0.732,0.7114,0.5464,0.4846,0.5052,0.4226,0.0722,0.0516,-0.0516,-0.1958,-0.2784,-0.5464,0.0606,0.3182,0.6666,0.7576,0.6212,0.4848,0.4546,0.5152,0.591,0.7424,0.9696,0.9546,0.9394,1,0.8788,0.803,0.803,0.7878,0.7878,0.8636,0.894,0.9394,0.7878,0.697,0.3484,0.2424,0.2424,0.2122,-0.091,0.0304,-0.3788,-0.8334,0.7376,-1,-1,1,-1,-1,-0.8,-0.8334,-1,-0.542,-0.3282,-0.084,0.1146,-0.0992,0.2214,0.2978,0.3894,-0.023,0.1604,0.2062,0.1756,1,0.9236,0.9848,0.9236,0.3436,0.1756,0.023,0.0534,0.1604,0.252,0.2366,-0.0382,0.023,-0.4504,-0.2978,-0.374,-0.6794,-0.252,-0.2672,-0.8474,'13'
-0.5564,0.052,0.057,0.417,0.3892,0.7008,0.6958,0.4398,0.3662,0.2928,0.2344,0.27,0.2268,0.2928,0.2776,0.4702,0.4576,0.6806,0.7516,0.9924,1,0.7642,0.7008,0.825,0.8124,0.8884,0.8074,0.7238,0.635,0.498,0.4094,0.5412,-0.4552,-0.0052,0.0538,0.377,0.32,0.5354,0.4594,0.5396,0.4552,0.3052,0.2038,0.2904,0.1784,0.2882,0.2968,0.4508,0.5332,0.6664,0.8838,1,0.812,0.6768,0.6768,0.7824,0.7866,0.8838,0.6198,0.6832,0.4276,0.51,0.4656,0.5374,-0.3574,0.0724,0.182,0.4584,0.3706,0.5308,0.5548,0.6974,0.5394,0.3992,0.3246,0.4144,0.3574,0.4166,0.5308,0.568,0.7894,0.796,1,0.9934,0.715,0.6622,0.761,0.7522,0.9672,0.8772,0.6382,0.5176,0.4714,0.4496,0.5198,0.5964,-0.2774,0.1832,0.3036,0.5392,0.4188,0.5314,0.7722,0.8456,0.4294,0.4084,0.4554,0.4136,0.432,0.445,0.6544,0.7566,0.89,0.9268,1,0.6938,0.6596,0.7802,0.754,0.924,0.8848,0.7828,0.6624,0.4528,0.5498,0.6754,0.5942,0.6518,0.1026,0.754,0.8086,1,0.549,0.5398,0.1754,0.2118,-0.066,-0.0934,-0.0478,-0.476,-0.148,0.23,0.7904,0.9908,0.6628,0.5262,0.599,0.4988,0.344,0.7996,0.8086,0.713,0.6584,0.4396,-0.1298,-0.3348,-0.0616,-0.0432,-0.0296,0.057,0.2802,1,0.7638,0.9286,0.3846,0.2802,-0.2472,-0.423,-0.401,-0.2858,-0.3792,-0.522,-0.0824,0.1594,0.7528,0.599,0.7308,0.3296,0.2748,0.2308,0.1704,0.3736,0.7968,0.923,0.3792,-0.044,-0.5494,-0.7308,-0.6924,-0.7912,-0.6758,-0.599,-0.0624,0.4214,0.0524,-0.3766,-0.4214,-0.4962,-0.1322,-0.1222,-0.0574,-0.2668,-0.5262,-0.187,-0.0374,0.197,0.4314,0.626,0.4912,-0.0674,-0.182,0.197,0.187,0.232,0.5362,0.7008,1,0.8154,0.2968,0.1122,0.1372,0.232,0.2468,0.4812,-0.5834,0.1666,0.2084,0.3334,0.375,0.7084,0.625,0.5,0.2916,0.125,-0.0834,0.0416,-0.0416,0.0834,0.125,0.25,0.25,0.5416,0.625,0.875,1,0.875,0.7916,0.7916,0.75,0.875,0.875,0.7916,0.5416,0.4166,0.2916,0.3334,-0.492,0.0158,0.0158,0.4286,0.4604,0.746,0.7778,0.492,0.3334,0.2698,0.2698,0.2698,0.2698,0.3334,0.3334,0.4604,0.492,0.7142,0.746,0.9048,1,0.873,0.8096,0.8412,0.873,0.8412,0.9048,0.7778,0.6826,0.5238,0.5238,0.5874,-0.1688,0.3246,0.4286,0.5584,0.5324,0.4806,0.5324,0.5324,0.1688,0.1168,-0.039,-0.013,0.2208,0.5064,0.7922,1,0.8182,0.8702,0.6364,0.6624,0.4546,0.6364,0.7402,0.6364,0.8182,0.6884,0.4286,0.039,0.3766,0.5844,0.5584,0.6624,-1,-1,-1,-1,-1,-1,-1,-0.987,-0.9836,-0.6284,-0.4322,0.7166,0.732,0.6172,0.5324,0.3794,0.3942,0.3406,0.2576,0.2274,0.1624,-0.6768,-0.9404,-0.9766,-0.9828,-0.9732,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9946,-0.9934,-0.7398,-0.683,0.4562,0.9344,0.9144,0.7882,0.3312,0.0268,-0.4252,-0.719,-0.7426,-0.7314,-0.8888,-0.9798,-0.9882,-0.992,-0.991,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9868,-0.9334,-0.64,-0.59,-0.265,-0.1176,-0.1556,-0.1378,-0.2956,-0.4046,-0.4268,-0.6824,-0.749,-0.8112,-0.5512,-0.54,-0.7468,-0.7534,-0.92,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,1,-0.4,-0.8286,-0.8,-0.7714,0.3714,1,1,0.2858,1,1,1,0.6,-0.7428,-0.8286,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.7452,0.617,0.6332,0.6104,0.6218,0.6136,0.6284,0.6316,0.5994,0.4764,0.1534,-0.7334,0.0236,-0.686,-0.3562,0.4654,0.8828,0.962,1,-0.6892,0.2432,0.446,0.3784,0.2568,0.0946,-0.081,0.027,0.3784,0.6892,1,0.6352,0.8244,0.8378,0.527,0.3378,0.5,0.5406,0.527,0.5946,0.4864,0.5676,0.3648,0.2298,-0.0406,0,0.1892,0.2972,0.2162,0.1892,0.1082,-0.3244,-0.417,0.2864,0.6984,1,0.4874,0.417,0.206,0.3668,0.4272,0.9598,0.9798,0.618,0.6884,0.819,0.3366,0.0452,0.417,0.5376,0.5478,0.5276,0.4874,0.2562,-0.0552,-0.0954,-0.196,-0.1156,0.2462,0.3266,0.1558,0.3266,0.1056,-0.2262,-0.1944,0.1848,0.6492,1,0.327,0.147,0.3364,0.1944,0.4028,0.6588,0.9146,0.545,0.6114,0.5734,0.4598,0.3176,0.4124,0.4882,0.564,0.4882,0.4218,0.3554,0.1564,-0.0522,0.0522,0.0996,0.4502,0.4218,0.3554,0.147,0.2986,0.1658,-0.459,-1,-1,1,-0.6,-1,-1,-0.6334,-1,0.204,0.2654,0.1224,0.3674,0.6734,0.5918,0.7346,0.5102,0.4898,0.3062,0.653,0.6938,0.5918,0.449,0.9796,1,0.551,0.3266,0.0408,0.6122,0.6122,0.9388,0.6734,0.1836,0.2654,0.347,0.6122,0.5714,0.3062,0.3878,0.2448,0.0816,'14'
-0.6502,-0.0398,-0.0108,0.3414,0.4066,0.5078,0.5174,0.3944,0.392,0.1822,0.2376,0.2448,0.3004,0.2932,0.3414,0.3728,0.462,0.6236,0.725,0.8118,0.9204,0.8046,0.8022,0.7442,0.8142,0.8698,1,0.9084,0.8408,0.708,0.7202,0.626,-0.5788,-0.0886,-0.0748,0.3682,0.3682,0.5944,0.6004,0.3544,0.376,0.2716,0.3052,0.3268,0.376,0.3444,0.4094,0.443,0.5236,0.6674,0.7638,0.8228,0.9292,0.7716,0.7678,0.6692,0.8484,0.7972,1,0.9094,0.7618,0.693,0.6812,0.628,-0.5304,-0.0798,-0.028,0.3512,0.3378,0.6016,0.59,0.4128,0.411,0.3456,0.3474,0.382,0.3956,0.4244,0.4398,0.5168,0.536,0.7864,0.821,0.8652,0.9134,0.746,0.7922,0.7998,0.8614,0.9154,1,0.7614,0.742,0.5746,0.6458,0.5746,-0.4132,0.0444,0.1546,0.4978,0.4492,0.6314,0.5572,0.608,0.5254,0.5022,0.4152,0.4916,0.3878,0.536,0.4174,0.606,0.6928,0.8856,0.822,1,0.8666,0.8072,0.7034,0.805,0.8474,0.9936,0.894,0.8496,0.7224,0.7034,0.5656,0.6526,-0.2378,0.2744,0.5092,0.7226,0.4818,0.5702,0.314,0.4146,0.2958,0.3262,0.2958,0.3384,0.375,0.3506,0.4208,0.6372,0.8598,0.9298,1,0.8628,0.7012,0.6068,0.6768,0.7988,0.9238,0.933,0.8628,0.6494,0.494,0.3872,0.3536,0.369,0.1096,0.7898,0.7674,1,0.481,0.4138,-0.5258,-0.8434,-0.8434,-0.5838,-0.4944,-0.7852,-0.7002,-0.293,-0.2976,-0.0828,0.736,0.8434,0.2572,0.0514,0.038,0.2662,0.4586,0.4362,0.4988,0.0918,-0.1856,-0.4362,-0.5436,-0.3512,-0.4766,-0.3154,0.115,0.7458,0.5354,0.6136,0.6332,0.604,0.4866,0.5158,0.3594,0.2958,0.2812,0.203,0.5404,0.736,0.78,0.7458,0.731,0.3252,0.3448,0.692,0.736,0.9706,0.8924,1,0.9316,0.9854,0.8044,0.4866,0.1638,0.071,-0.0904,0.1198,-0.7648,0.2156,0.3334,0.2156,0.5294,0.4902,0.4902,0.5686,0.2942,0.098,0.1372,0.1764,0.2942,0.1764,0.2942,0.3726,0.3334,0.6862,0.7648,0.7648,1,0.8824,0.7648,0.8432,0.5686,0.9608,0.8824,0.9216,0.9216,0.7648,0.6078,0.647,-0.6364,-0.091,-0.1212,0.394,0.4242,0.4848,0.5454,0.3636,0.3636,0.2122,0.2122,0.2424,0.303,0.3334,0.394,0.3334,0.4546,0.606,0.7272,0.7878,0.8788,0.8484,0.8484,0.6364,0.8182,0.8484,1,0.9394,0.8484,0.7272,0.7576,0.697,-0.3626,0.055,0.4726,0.6044,0.3626,0.3626,0.2308,0.3846,0.3626,0.4066,0.4066,0.3626,0.5824,0.4946,0.5604,0.7802,0.8682,1,1,0.5604,0.4726,0.5604,0.5604,0.7362,0.8682,1,0.6704,0.6924,0.4286,0.4066,0.4726,0.4946,-1,-1,-1,-1,-1,-1,-1,-1,-0.99,-0.99,-0.5998,0.2534,0.7368,0.9388,0.9568,0.7194,0.478,0.2088,-0.155,-0.149,-0.0566,-0.0492,-0.635,-0.849,-0.9482,-0.9674,-0.9594,-0.9614,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9972,-0.9972,-0.8768,0.2076,0.5642,0.7018,0.9464,0.6492,0.061,-0.4112,-0.8276,-0.8886,-0.8656,-0.7876,-0.92,-0.9534,-0.9702,-0.9796,-0.9878,-0.992,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.9334,-0.59,-0.01,-0.0326,0.0444,-0.089,-0.0824,-0.1178,-0.2046,-0.469,-0.789,-0.9156,-0.7624,-0.63,-0.2968,-0.11,-0.1268,-0.5768,-0.7068,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,-0.3142,-1,-0.7428,-0.5142,-0.4,1,1,1,1,1,0.1714,-0.4286,0.0572,0,-0.0572,-0.0572,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.9018,0.8478,0.8652,0.8952,0.87,0.8922,0.8824,0.8762,0.8676,0.8132,0.5114,-0.8,0.0236,-0.8154,-0.6522,0.1606,0.7718,0.6624,1,-0.3,0.25,0.4,0.4,0.4,0.4,0.2,0.4,0.45,0.7,0.85,0.85,0.95,1,0.95,0.8,0.7,0.55,0.6,0.55,0.5,0.4,0.3,0.2,0.2,0.15,0.25,0.2,0.1,-0.05,-0.35,-0.65,-0.3658,0.3658,0.5772,0.496,0.3822,0.3658,0.0894,0.3008,0.4634,0.7398,0.8536,0.8536,0.7724,1,0.935,0.691,0.6098,0.5448,0.7398,0.691,0.7236,0.7236,0.4634,0.4472,0.3334,0.2358,0.2358,0.3658,0.2846,0.3334,0.1708,-0.2846,-0.2166,0.4334,0.55,0.5,0.5,0.2666,0.2334,0.2666,0.4166,0.7666,0.8334,0.85,0.8,1,0.9,0.6,0.5166,0.6334,0.6,0.6834,0.6334,0.5334,0.4666,0.3,0.2334,-0.0334,0.0666,0.1334,0.2834,0.2,0.0334,-0.4166,0.0494,-1,-1,1,-1,-1,-0.2,-0.8334,-1,-0.4166,-0.2778,0.1944,0.5138,0.3612,0.3888,0.2916,0.5556,0.6388,0.1528,0.5834,0.6666,0.5556,0.7778,0.9028,0.9306,1,0.2362,0.1388,0.125,0.0972,0.4584,0.5,0.3888,0.0972,0.0416,0.0556,-0.0972,0.0556,0.0972,-0.0834,-0.5138,'14'
-0.3096,0.222,0.1962,0.4814,0.679,0.9448,0.974,0.9644,0.8542,0.8444,0.8898,0.9384,0.9936,1,0.637,0.5884,0.4944,0.5008,0.504,0.5526,0.7212,0.6888,0.6694,0.4132,0.167,0.2026,0.3192,0.5072,0.4166,0.4522,0.41,0.4944,-0.3076,0.1622,0.1808,0.4528,0.7744,0.9228,0.901,1,0.8084,0.8732,0.9166,0.9444,0.867,0.8578,0.5796,0.5426,0.4992,0.4282,0.4868,0.4436,0.6414,0.6846,0.8052,0.5734,0.3324,0.2828,0.3384,0.5086,0.524,0.4962,0.4806,0.5486,-0.2848,0.1666,0.2,0.4546,0.8,0.9516,0.8122,0.9212,0.8848,0.9454,0.9818,1,0.6818,0.6878,0.5728,0.5242,0.4788,0.409,0.4758,0.4728,0.6546,0.7788,0.9182,0.706,0.391,0.306,0.3546,0.597,0.6182,0.5304,0.509,0.6212,-0.313,0.1322,0.2484,0.4612,0.887,1,0.7968,0.8646,0.9548,0.9548,0.958,0.9,0.5548,0.4516,0.3936,0.242,0.313,0.1774,0.2548,0.4388,0.4646,0.771,0.7388,0.4678,0.3904,0.2194,0.3194,0.4904,0.3452,0.4322,0.4742,0.5226,-0.2978,0.1214,0.3344,0.4808,0.95,1,0.7404,0.7238,0.9434,0.8302,0.7836,0.5408,0.4708,0.218,0.2114,0.1648,0.0982,0.1248,0.1548,0.2646,0.451,0.5108,0.7138,0.6638,0.2978,0.1614,0.1014,0.2678,0.411,0.4044,0.4342,0.574,-0.315,0.0842,0.4286,0.5146,1,0.9256,0.679,0.9256,0.9726,0.5968,0.503,0.225,0.0294,0.002,-0.0606,-0.1312,-0.1742,-0.2054,-0.1546,-0.0098,0.088,0.2916,0.4246,0.4678,0.3228,0.088,-0.0254,-0.1116,-0.002,0.0998,0.2524,0.3776,-0.227,0.1352,0.517,0.7874,1,0.6764,0.628,0.8744,0.6522,0.372,0.0096,-0.227,-0.4542,-0.5218,-0.6038,-0.6714,-0.8164,-0.8406,-0.8648,-0.7392,-0.5748,-0.488,-0.2078,0,0.0484,-0.2078,-0.4444,-0.6764,-0.5846,-0.3574,-0.2078,-0.285,-0.3684,0.193,0.193,0.3684,0.4736,0.8596,1,0.8246,0.7894,0.6492,0.7894,0.7544,0.8948,0.8948,0.5088,0.4036,0.2982,0.2982,0.2982,0.4036,0.4736,0.4736,0.4036,0.228,-0.228,-0.0176,0.1228,0.2982,0.1228,0.1578,0.0526,0.193,-0.2542,0.2542,0.1526,0.4916,0.7288,0.9662,0.8984,1,0.8984,0.8984,0.8984,1,0.8984,0.9322,0.7628,0.661,0.5594,0.5594,0.6272,0.661,0.8644,0.9662,0.7628,0.322,0.2204,0.2542,0.4576,0.5594,0.3898,0.4576,0.4916,0.4238,-0.2858,0.102,0.4082,0.6122,1,0.9796,0.7346,0.898,1,0.6734,0.653,0.347,0.2654,0.1224,0.0408,0.0816,0.0204,0,0.0204,0.1836,0.2448,0.5102,0.4694,0.5306,0.4286,0.204,0.0204,0,0.3266,0.3266,0.4082,0.5918,-1,-1,-1,-1,-1,-1,-1,-0.988,-0.9862,-0.9672,-0.5924,0.3648,0.6252,0.786,0.8922,0.9464,0.9922,0.9816,0.8098,0.54,0.2294,-0.149,-0.6722,-0.9542,-0.9768,-0.9792,-0.9868,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9938,-0.9948,-0.9532,-0.707,0.4992,0.5624,0.4832,0.601,0.5164,0.3486,0.1942,-0.0134,-0.2776,-0.5024,-0.7196,-0.9054,-0.9726,-0.9876,-0.9926,-0.9938,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8986,-0.94,-0.8134,-0.59,-0.5344,-0.5716,-0.6944,-0.6286,-0.62,-0.6258,-0.6286,-0.6858,-0.66,-0.7286,-0.8172,-0.7934,-0.3634,-0.56,-0.8334,-0.7734,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3142,0.9142,1,1,1,0.5714,-0.6858,-0.8286,-0.4858,-0.4858,-0.8858,0.2286,0.8286,1,1,1,0.7428,0.7714,0.3142,-0.3142,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8716,-0.383,-0.7466,-0.2118,-0.8128,-0.0114,0.5318,0.8426,0.5738,1,-0.7206,-0.2794,0.0882,0.5,0.4264,0.5882,0.6912,0.6324,0.4558,0.4852,0.6324,0.5882,0.2058,0.1618,0.397,0.4852,0.647,0.897,0.8824,0.8824,0.9264,1,0.8382,0.2794,-0.103,-0.0294,0.0148,0.2058,0.3236,0.3824,0.2648,0.0294,-0.4018,0.5042,0.4358,1,0.9488,0.5898,0.6924,0.5384,0.3504,0.3334,0.5898,0.47,-0.1966,-0.0086,0.1112,0.094,0.0086,0.4188,0.4188,0.3334,0.641,0.5384,0.3334,0.0086,-0.3846,-0.0428,-0.2136,-0.1624,0.3846,0.4188,0.3162,0.2136,0.1656,0.6074,0.7668,1,0.951,0.632,0.7668,0.816,0.4478,0.227,0.2884,0.2516,-0.0674,-0.092,0.1656,0.227,0.362,0.4602,0.632,0.4478,0.5828,0.5828,0.3742,0.1902,-0.2638,-0.1166,0.0674,-0.043,-0.0062,0.092,0.0306,-0.2516,-0.093,-1,-1,1,-1,-1,-1,-0.7,-1,-0.151,-0.132,0,0.434,0.7736,0.868,0.6226,0.6604,0.7736,0.8302,0.717,0.5472,1,1,0.3962,0.7358,0.8114,0.717,0.566,0.7548,0.6416,0.4906,0.3774,0.3774,0.1886,0.1886,0.3584,0.4906,0.6038,0.7358,0.4528,0.3396,'15'
-0.5012,-0.0126,-0.01,0.3098,0.2796,0.6726,0.67,1,0.9546,0.7154,0.6474,0.8716,0.8438,0.7708,0.7204,0.5768,0.5794,0.5592,0.5466,0.6474,0.665,0.738,0.7254,0.4282,0.4308,0.3652,0.408,0.2872,0.3098,0.5314,0.587,0.6852,-0.5302,-0.0062,0.0112,0.2856,0.283,0.7578,0.7578,0.859,0.8764,0.7776,0.8122,0.9556,1,0.6662,0.5798,0.4808,0.5624,0.377,0.4882,0.5624,0.686,0.6342,0.775,0.6316,0.414,0.2558,0.3474,0.2164,0.335,0.2806,0.5254,0.4808,-0.3706,0.1236,0.1328,0.4126,0.4126,0.8858,0.8834,0.8206,0.8438,0.8764,0.9044,0.958,1,0.6386,0.578,0.4546,0.5338,0.38,0.4732,0.5362,0.6504,0.6924,0.8252,0.6854,0.4756,0.3426,0.3706,0.2704,0.3706,0.282,0.5128,0.4336,-0.313,0.1742,0.1718,0.5104,0.6248,1,0.978,0.6614,0.637,0.8904,0.8636,0.8124,0.7904,0.4494,0.43,0.4226,0.4154,0.335,0.3204,0.508,0.5104,0.7004,0.7174,0.4372,0.3886,0.2644,0.2814,0.1182,0.1376,0.3666,0.4008,0.4154,-0.292,0.1784,0.2946,0.5958,0.778,1,0.8864,0.6302,0.7068,0.8388,0.6406,0.4768,0.321,0.3158,0.2258,0.3026,0.144,0.1836,0.2946,0.3368,0.461,0.4954,0.4848,0.49,0.1942,0.0938,0.1652,0.1414,0.107,0.1018,0.2074,0.218,-0.2738,0.1768,0.4554,0.64,0.8968,1,0.7058,0.7308,0.9468,0.8968,0.2332,0.1298,0.158,-0.014,0.086,-0.061,-0.011,0.036,0.0392,0.255,0.3052,0.5024,0.4836,0.4084,0.1612,0.1206,-0.0016,0.0204,0.1236,0.2112,0.205,0.061,-0.176,0.3258,0.663,0.809,0.985,1,0.8614,0.7004,0.9102,0.5768,0.0038,-0.0674,-0.1048,-0.161,-0.2248,-0.191,-0.2958,-0.146,-0.0224,-0.075,0.1048,0.2996,0.543,0.427,0.236,0.0562,0.0112,-0.0074,0.0562,0.2734,0.2098,0.1012,-0.5692,0.0154,0.0462,0.3538,0.323,0.6616,0.6,0.9692,1,0.6924,0.6924,0.8462,0.877,0.6924,0.723,0.4462,0.6,0.5076,0.6,0.5384,0.6616,0.5692,0.6,0.477,0.5076,0.2924,0.4462,0.3538,0.4154,0.2924,0.6616,0.6616,-0.5294,0,0,0.3236,0.2648,0.647,0.7648,1,0.9412,0.6764,0.647,0.853,0.8824,0.7942,0.7352,0.5588,0.5882,0.5588,0.5588,0.6764,0.7058,0.7352,0.7058,0.5294,0.5588,0.4412,0.4412,0.3824,0.3824,0.6176,0.647,0.7942,-0.2676,0.2112,0.1972,0.5492,0.6338,1,0.9718,0.676,0.6338,0.9154,0.8874,0.817,0.7888,0.493,0.4648,0.4508,0.4226,0.3522,0.3522,0.5212,0.5212,0.7042,0.7042,0.4084,0.4084,0.3098,0.3098,0.0986,0.1268,0.4508,0.4648,0.4366,-1,-1,-1,-1,-0.9922,-0.99,-0.976,-0.9908,-0.973,-0.6106,-0.4452,-0.0356,0.235,0.3994,0.4786,0.711,0.9604,0.9364,0.6924,0.3194,-0.0148,-0.366,-0.775,-0.9264,-0.9652,-0.9692,-0.9766,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9962,-0.9936,-0.9744,-0.9952,-0.973,-0.4502,-0.3082,0.7418,0.9244,0.9456,0.8512,0.5668,0.2506,-0.0778,-0.2542,-0.4322,-0.6358,-0.8024,-0.9396,-0.979,-0.9894,-0.9914,-0.9926,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8868,-0.74,-0.6934,-0.8468,-0.74,-0.5734,-0.5234,-0.5058,-0.5544,-0.4486,-0.5,-0.6576,-0.69,-0.7,-0.715,-0.72,-0.735,-0.775,-0.6268,-0.5834,-0.73,-0.7368,-0.7768,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2572,-0.4858,-0.5714,-0.2,1,1,1,1,-0.6,-0.6572,-0.9142,-0.4572,0.4858,0.4572,-0.2858,-0.6286,1,1,0.6,0.3428,0.4572,-0.8858,-0.6572,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.533,-0.8134,-0.1176,-0.2562,0.1782,0.9124,0.8824,0.911,1,-0.3614,0.1176,0.3362,1,0.9748,0.7478,0.8488,0.8236,0.5714,0.5462,0.5546,0.5546,0.4538,0.437,0.3446,0.311,0.5378,0.689,0.6302,0.6554,0.7648,0.6722,0.4706,0.0756,0.042,0.0672,0.1176,-0.1092,0.0336,0.168,0.1344,-0.0588,-0.162,0.2094,0.4704,0.7628,1,0.8894,0.9368,0.8656,0.6364,0.668,0.589,0.502,0.502,0.3992,0.2412,0.3518,0.4704,0.5652,0.6126,0.494,0.589,0.4704,0.1858,-0.004,0.0198,0.0276,0.0356,-0.091,-0.083,0.004,0.091,-0.083,-0.2032,0.1952,0.5122,0.7154,1,0.7886,0.9186,0.748,0.504,0.626,0.504,0.6098,0.4308,0.2846,0.2276,0.4716,0.4878,0.626,0.6098,0.5934,0.5772,0.3414,0.2682,-0.0162,0.0894,0.1464,0.1056,0.057,0.0082,0.0326,0.0162,-0.0976,0.0964,-1,-1,1,-1,-1,-0.8,-0.6,-1,0.3728,0.3728,0.5762,0.661,0.7288,0.8306,0.9492,0.7458,0.695,1,0.9322,0.8984,0.8644,0.644,0.4746,0.5932,0.644,0.7288,0.6102,0.9322,0.7966,0.7796,0.8984,0.7628,0.3898,0.5594,0.5084,0.2372,0.1864,-0.017,-0.0848,-0.0508,'15'
-0.937,0.4234,0.6172,0.3288,0.5496,0.491,0.099,0.2342,-0.0496,-0.0676,-0.1172,-0.2118,-0.0226,-0.1306,0.1486,0.1756,0.2162,0.3828,0.3828,0.7252,0.7702,0.8244,0.8378,0.7388,0.8648,1,0.928,0.8514,0.6442,0.509,0.545,0.581,-0.4686,0.232,0.2812,0.45,0.5454,0.2872,0.2196,0.0938,0.1766,0.1244,0.1428,0.1582,0.1858,0.2596,0.149,0.3364,0.3672,0.6804,0.6344,0.9508,0.9816,0.828,0.8434,0.7142,0.8924,0.8434,1,0.8924,0.831,0.8126,0.8034,0.8372,-0.4394,0.2,0.2472,0.4426,0.5056,0.1338,0.1338,-0.0834,0.074,-0.074,0.0866,-0.0078,0.1434,0.0992,0.2378,0.2472,0.4078,0.4614,0.7322,0.852,0.8078,1,0.8772,0.8204,0.7292,0.9212,0.896,0.9118,0.9276,0.8362,0.8992,0.833,-0.4528,0.1722,0.196,0.4156,0.4358,0.0372,0.0744,-0.0744,-0.0168,-0.1114,-0.0236,-0.1014,0.027,-0.071,0.1014,0.0236,0.2602,0.3074,0.5946,0.669,1,0.9528,0.6994,0.625,0.7602,0.7298,0.8952,0.8852,0.8818,0.9122,0.8648,0.902,-0.2308,0.281,0.2676,0.5452,0.4882,0.1036,0.02,0.0636,-0.0334,0.0368,-0.0702,0.0134,-0.0668,0.0702,0.0168,0.1772,0.2342,0.3578,0.5318,0.7558,0.873,1,0.9432,0.6924,0.8228,0.8896,0.9198,0.8562,0.7826,0.8996,0.9532,0.9432,-0.3334,0.0798,0.3334,0.4756,0.1806,-0.1598,-0.191,-0.2466,-0.2778,-0.3334,-0.3854,-0.3368,-0.243,-0.2396,-0.1458,-0.073,0.0382,0.1494,0.3402,0.6458,0.7952,1,0.9722,0.7604,0.7638,0.9584,0.9756,0.927,0.7708,0.6598,0.7118,0.8994,-0.1896,0.2104,0.5168,0.548,-0.1688,-0.5948,-0.5688,-0.6364,-0.6676,-0.735,-0.9012,-0.9012,-0.7142,-0.6936,-0.5116,-0.4754,-0.413,-0.2832,0.0494,0.148,0.4494,0.735,1,0.865,0.678,0.9064,0.9532,0.8078,0.5636,0.4494,0.2884,0.2676,-0.2142,0.6786,0.8214,0.5358,0.7142,0.6428,0.6072,0.6428,0.2858,-0.1428,-0.0714,-0.2142,-0.0358,-0.1786,0.1786,0.2142,0.1786,0.1428,0.2142,0.5358,0.6072,0.7142,0.6786,0.6428,0.8928,1,0.8928,0.75,0.5714,0.4286,0.4286,0.5358,-0.804,0.5686,0.7648,0.5686,0.6078,0.6078,-0.0588,0.2942,0.255,0.1372,0.2156,-0.1372,0.2942,0.255,0.255,0.3726,0.1764,0.5294,0.451,0.5294,0.6078,0.804,0.6078,0.5686,0.6078,1,0.9608,0.7254,0.7254,0.3334,0.6862,0.647,-0.4018,0.028,0.215,0.4018,0.2336,-0.215,-0.2336,-0.2336,-0.2524,-0.3272,-0.4206,-0.271,-0.1776,-0.1776,-0.1588,-0.0094,-0.028,0.1588,0.3458,0.6262,0.7758,0.944,0.7944,0.701,0.7758,0.7758,0.944,0.8878,0.7384,0.6448,0.7196,1,-1,-1,-1,-1,-1,-1,-1,-0.9866,-0.9866,-0.5182,-0.4274,0.8462,0.7368,0.4232,0.3956,0.3544,0.3274,0.2628,0.2568,0.2266,0.187,-0.134,-0.778,-0.9604,-0.9706,-0.9698,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9942,-0.9932,-0.702,-0.7954,-0.423,0.752,0.6412,0.693,0.6088,0.691,0.3998,-0.0342,0.2028,-0.2894,-0.7554,-0.941,-0.961,-0.9816,-0.9896,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.91,-0.6,-0.0834,-0.7068,0.0066,0.2966,0.18,0.2366,0.1078,-0.018,-0.1038,-0.0694,-0.3722,-0.7666,-0.3156,0.091,-0.6922,-0.8756,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,1,1,-0.6572,-0.6858,-0.7428,-0.8572,-0.7714,-0.7428,-0.6286,1,1,0.3142,1,1,0.3142,-1,-1,-1,-1,-1,-1,-1,0.7776,0.792,0.8074,0.8148,0.8318,0.8434,0.841,0.8234,0.7778,0.5166,0.7582,0.7512,0.7754,0.7842,0.7866,0.7452,0.7842,0.7944,0.8006,0.9474,-0.8534,-0.2706,-0.8224,-0.641,-0.4454,0.2738,1,1,0.029,-0.0174,0.2602,0.3872,0.341,0.2024,0.4336,0.8728,0.7804,0.9076,1,0.8728,0.8382,0.8498,0.6648,0.5028,0.6878,0.711,0.6764,0.7342,0.7688,0.5606,0.5492,0.5144,0.3758,0.341,0.2716,0.4104,0.341,0.3758,0.1214,-0.2948,0.0564,-0.1692,-0.077,-0.077,-0.1488,0.077,0.0564,0.3128,0.3642,0.4256,1,0.959,0.7744,0.7948,0.3436,0.4462,0.559,0.6924,0.682,0.5076,0.723,0.682,0.7128,0.4154,0.559,0.3538,0.2718,0.1076,0.3948,0.4358,0.3026,-0.118,0.2294,0.5412,0.368,0.316,0.091,0.0822,0.091,0.264,0.1862,0.2208,0.6884,0.697,0.8614,1,0.593,0.6624,0.8096,0.7402,0.6536,0.6624,0.5064,0.593,0.593,0.5844,0.394,0.3594,0.238,0.2814,0.0562,0.2294,0.2208,-0.2034,-0.4028,-1,-1,1,-1,-1,-1,-0.6,-1,-0.6936,0.0322,-0.0646,-0.242,-0.3388,-0.2742,-0.1612,-0.2258,0.0162,-0.0968,0.5,0.758,0.629,0.6774,0.7096,0.4516,0.6452,0.387,0.5162,1,0.8064,0.8064,0.7742,0.758,0.7904,0.5162,0.129,-0.0162,0.0806,-0.0162,-0.0806,-0.6452,'16'
-0.7684,0.2854,0.3964,0.5008,0.726,0.5432,0.3442,0.2952,0.0538,0.1288,-0.0832,0.0668,0.1158,0.1648,0.2104,0.2756,0.4584,0.615,0.7618,1,0.9772,0.8924,0.8792,0.8076,0.925,0.8172,0.6672,0.5432,0.4518,0.4192,0.3964,0.4616,-0.5236,0.2654,0.3458,0.6958,0.822,0.5552,0.406,0.2798,0.3802,0.3342,0.1592,0.2022,0.2596,0.3744,0.1392,0.3544,0.251,0.6728,0.6442,0.9426,1,0.8192,0.9598,0.7504,0.8308,0.8048,0.7216,0.7102,0.429,0.472,0.3602,0.4548,-0.6316,0.1746,0.2354,0.4404,0.565,0.3462,0.2382,0.133,0.23,0.205,0.0748,0.1386,0.1024,0.2548,0.0832,0.349,0.2742,0.5624,0.5734,0.8642,0.9696,0.6952,0.8588,0.7368,1,0.964,0.5318,0.6122,0.5872,0.7258,0.5458,0.5678,-0.5132,0.2206,0.2888,0.4074,0.5056,0.2258,0.2132,0.0744,0.2156,0.1424,0.039,0.0442,0.1576,0.2156,0.077,0.2182,0.1904,0.478,0.4148,0.8436,0.8234,0.9394,1,0.7124,0.8638,0.7074,0.836,0.7302,0.5864,0.5612,0.7302,0.773,-0.3488,0.2996,0.3188,0.6088,0.628,0.1656,0.2038,0.0944,0.1546,-0.1026,0.0014,-0.026,0.1054,-0.0014,0.1244,0.1464,0.2586,0.327,0.5842,0.7128,0.937,1,0.9288,0.773,0.885,0.9316,0.8386,0.6362,0.513,0.5596,0.5458,0.7564,-0.1936,0.3284,0.4398,0.742,0.61,0.0704,-0.1436,-0.0264,-0.1936,-0.132,-0.1672,-0.1524,-0.0822,-0.1086,-0.047,0.0382,0.0734,0.2228,0.4458,0.6628,0.8416,1,0.9296,0.8212,0.9032,0.9648,0.8094,0.78,0.5308,0.5426,0.522,0.519,-0.284,0.1464,0.4144,0.5486,0.1816,-0.3262,-0.3862,-0.5062,-0.5802,-0.6296,-0.6296,-0.4532,-0.358,-0.4638,-0.4004,-0.3122,-0.425,-0.2416,0.0934,0.2028,0.5732,0.866,1,0.8518,0.7884,0.8378,0.7918,0.7354,0.432,0.3722,0.2804,0.3828,-0.6364,0.5,0.6818,0.3182,0.7272,0.6364,0.3636,0.4546,0.2272,0.1364,0.091,0.1818,0.2272,0.0454,0.3182,0.2272,0.409,0.5454,0.5,1,0.9546,0.909,1,0.8182,0.909,0.909,0.5,0.5454,0.6364,0.5,0.591,0.6818,-0.8306,0.322,0.4238,0.2542,0.5932,0.5254,0.322,0.356,-0.0508,0.1864,0.1186,0.1864,0.2542,0.1864,0.4238,0.322,0.6272,0.661,0.7966,1,0.8984,0.9322,0.9322,0.8306,0.9662,0.7288,0.695,0.7288,0.3898,0.4916,0.2542,0.6272,-0.6316,0.2106,0.2982,0.421,0.5614,0.2808,0.2456,0.0878,0.2456,0.193,0.0702,0.0878,0.1404,0.2456,0.035,0.3334,0.193,0.579,0.5264,0.9298,0.9824,0.8246,1,0.6842,1,0.9122,0.8422,0.807,0.6842,0.7368,0.7192,0.8246,-1,-1,-1,-1,-1,-1,-1,-0.9848,-0.9876,-0.8688,-0.3976,0.7488,0.8378,0.3554,0.1464,0.1436,0.1726,0.2016,0.1926,0.1284,0.167,-0.116,-0.677,-0.9082,-0.9682,-0.973,-0.9572,-0.9206,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9922,-0.992,-0.9462,-0.7338,0.3842,0.2428,-0.137,0.0556,0.456,0.3988,0.285,-0.0542,-0.3194,-0.3352,-0.4288,-0.8984,-0.952,-0.97,-0.9748,-0.8568,-0.972,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.966,-0.92,-0.9,-0.35,-0.4776,-0.5226,-0.3726,-0.16,0.0474,-0.07,-0.098,-0.2784,-0.5434,-0.6558,-0.5758,-0.6842,-0.4676,-0.2476,-0.4942,-0.1408,-0.8676,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4,0.9142,1,1,1,-0.1142,-0.7142,-0.8286,-0.6286,-0.8286,-0.6286,-0.6572,-0.6572,-0.2858,1,1,-0.5714,-0.3428,0.9428,1,1,-1,-1,-1,-1,-1,0.9704,0.9764,0.9946,1,1,1,0.9916,0.9848,0.9622,0.6998,0.5804,0.5856,0.5628,0.5606,0.5724,0.5906,0.6064,0.5952,0.6452,0.8366,-0.9066,-0.0824,-0.7626,-0.2216,0.1188,1,0.4884,1,0.2528,0.1208,0.2308,0.5164,0.3186,0.3406,0.6044,0.7362,0.978,0.8462,0.8242,0.7362,0.6924,0.8902,0.912,0.8022,0.7582,0.8242,0.934,1,0.7582,0.8682,0.8242,0.912,0.7802,0.8462,0.7582,0.7802,0.4506,0.5164,0.077,-0.033,0.3038,0.0518,0.0666,0.0518,0.2,0.2444,0.0518,0.3334,0.837,0.7186,0.926,1,0.8666,0.8074,0.7038,0.7482,1,0.837,0.6296,0.5408,0.6592,0.7038,0.437,0.3482,0.1408,0.3334,0.3482,0.2148,0.2148,0.0518,0.2888,0.0814,0.249,0.6332,0.607,0.3538,0.2838,-0.0132,0.249,0.3188,0.5458,0.7904,0.834,0.904,1,0.6594,0.6506,0.7292,0.8428,0.6158,0.6768,0.642,0.6244,0.6944,0.5284,0.2052,0.083,0.3362,0.3538,0.2664,0.1092,0.083,0.048,-0.1704,-0.4672,-1,-1,1,-1,-1,-0.6,-0.6666,-1,-0.7142,-0.6,-0.4858,-0.3286,-0.4858,-0.0858,-0.0286,0.1714,0.3286,0.4142,0.4428,0.4428,0.5714,0.4286,0.6714,0.8428,0.9,0.8,0.5,0.4714,0.8142,0.9714,1,0.8142,0.5714,0.6858,0.6858,0.4714,0.0428,-0.0286,-0.0714,-0.5,'16'
-0.6122,0.2526,0.3334,0.3536,0.4828,0.196,0.103,-0.0464,0.1314,0.0828,-0.0182,0.002,0.103,0.2202,0.1354,0.3818,0.3898,0.806,0.7656,0.9516,1,0.5636,0.709,0.6202,0.8626,0.7414,0.7818,0.7334,0.5474,0.6122,0.6162,0.6768,-0.4714,0.2178,0.2714,0.45,0.5214,0.1964,0.175,-0.0072,0.1322,0.0286,0.0642,0.0108,0.2178,0.2214,0.2142,0.2714,0.5322,0.6642,0.7322,1,0.9,0.6108,0.5536,0.8178,0.8178,0.5892,0.6358,0.4358,0.5286,0.4678,0.7428,0.7428,-0.445,0.1608,0.1844,0.5026,0.55,0.1302,0.1844,-0.0186,0.0796,-0.0762,0.066,-0.0964,0.1438,0.0254,0.286,0.2048,0.5906,0.5702,0.9898,1,0.7226,0.7834,0.736,0.8172,0.55,0.5194,0.3502,0.4348,0.3502,0.5026,0.462,0.8038,-0.2894,0.2928,0.3276,0.8302,0.8094,0.4038,0.3622,0.1612,0.123,0.1924,0.1578,0.1266,0.1786,0.428,0.4384,0.7332,0.695,1,0.955,0.8994,0.8648,0.9446,0.903,0.7192,0.4904,0.4072,0.39,0.4038,0.4108,0.435,0.5736,0.688,-0.194,0.3262,0.7484,1,0.8082,0.6504,0.3476,0.258,0.305,0.305,0.3262,0.531,0.7356,0.7868,0.8892,0.7868,0.71,0.6418,0.6802,0.8294,0.9318,0.9958,0.983,0.791,0.4712,0.3988,0.356,0.3134,0.403,0.4754,0.612,0.8208,-0.1002,0.4098,0.914,1,0.725,0.616,0.3638,0.5358,0.53,0.8396,0.6446,0.7422,0.404,0.4212,0.1232,0.02,0.1174,-0.0258,0.043,0.3868,0.6046,0.8624,0.788,0.6446,0.1862,0.1118,-0.066,0.043,0.1118,0.1404,0.2492,0.5644,0.374,0.8626,1,0.9618,0.458,0.3664,0.4046,0.2214,0.3894,0.2824,-0.0688,0.1756,0.0382,-0.0916,-0.1222,-0.3282,-0.3436,-0.4046,-0.0916,-0.1298,-0.1298,-0.023,-0.0916,-0.1984,-0.1756,-0.3664,-0.6184,-0.6946,-0.3054,-0.3588,-0.4962,-0.1908,-0.7736,0.2076,0.2452,0.3208,0.3962,0.0944,-0.0188,-0.1698,0.0944,0.0188,-0.0566,-0.0566,0.0566,0.1698,0.0944,0.3208,0.3962,0.8114,0.8114,1,0.9622,0.585,0.6226,0.7358,0.9246,0.8868,0.8868,0.6982,0.7736,0.7358,0.6226,0.6226,-0.5,0.2858,0.3572,0.3928,0.5,0.25,0.1072,-0.0714,0.1072,0.0714,-0.0358,-0.0358,0.0358,0.1786,0.1786,0.3928,0.4286,0.7858,0.7142,1,0.9642,0.4642,0.6428,0.6072,0.75,0.6072,0.8214,0.7142,0.4286,0.5,0.5714,0.6428,-0.2326,0.1628,0.6976,0.814,0.5348,0.4652,0.1628,0.1628,0.279,0.4418,0.6744,0.8372,0.372,0.4884,0.2326,0.1396,0.3024,0.279,0.3256,0.6046,0.628,1,0.907,0.5814,0.3954,0.3256,0.186,0.2558,0.279,0.3488,0.3954,0.6046,-1,-1,-1,-0.988,-0.9862,-0.95,-0.9406,-0.901,-0.9604,-0.9616,0.0112,-0.1888,-0.0976,0.134,0.3324,0.7404,0.967,0.9092,0.5882,0.0646,-0.4408,-0.7696,-0.9176,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9908,-0.9898,-0.8574,-0.7638,-0.5888,-0.6468,-0.7814,0.3278,0.0272,0.0574,0.6436,0.9424,0.8876,0.6282,0.2738,-0.0114,-0.4008,-0.7236,-0.9096,-0.9592,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.88,-0.92,0.1332,0.6866,0.8732,0.76,0.74,-0.1168,0.02,-0.1934,-0.1434,0.06,-0.1634,-0.5134,-0.7234,-0.61,-0.7634,-0.76,-0.8772,-0.8834,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,0.5714,-0.3142,1,1,0.3142,-0.4572,-0.2,-0.8,-0.4858,-0.0572,-0.2286,1,1,1,1,-0.5428,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.7404,0.752,0.7604,0.7644,0.7702,0.7768,0.784,0.7876,0.7842,0.6684,0.5468,0.55,0.5392,0.5128,0.508,0.5146,0.4798,0.4444,0.3364,-0.1004,-0.8134,-0.3294,0.657,0.5016,-0.095,-0.1062,0.086,0.75,-0.539,-0.2414,0.0418,-0.0816,-0.0164,0.0708,0.0454,0.078,0.1288,0.1616,0.303,0.4302,0.5282,0.8148,0.9564,1,0.8402,0.8366,0.7604,0.9202,0.8802,0.9638,0.8112,0.8076,0.6442,0.4628,0.441,0.3502,0.3284,0.3068,0.1652,-0.1834,-0.7916,-0.4016,-0.2638,-0.331,-0.2034,-0.1732,-0.1026,-0.153,-0.1732,0.0118,0.1732,0.2606,0.5194,0.832,0.9058,0.926,0.9966,0.5866,0.758,0.953,0.9596,1,0.8958,0.8016,0.7546,0.7478,0.6236,0.6572,0.6068,0.4858,0.2538,0.1194,-0.417,-0.0188,0.0438,-0.1192,-0.1066,-0.1442,-0.0094,0.116,0.3354,0.5172,0.7178,0.6176,0.7586,0.9468,1,0.6928,0.909,0.9342,0.837,0.8746,0.8214,0.7868,0.4796,0.3888,0.2696,0.2476,0.257,0.2978,0.3072,0.4044,0.348,-0.0314,-0.6162,-1,-1,1,-1,-1,-1,0.2334,-1,0.6782,1,0.977,0.4712,0.5632,0.954,0.7702,0.7012,0.7472,0.862,0.7702,0.6782,0.1954,0.5862,0.7932,0.862,0.7012,0.7472,0.839,0.6782,0.4482,0.4252,0.3564,0.1724,0.5402,0.5402,0.2414,0.2414,0.3794,0.2184,0.0114,-0.4712,'17'
-0.6066,0.4714,0.5886,0.2582,0.4234,0.3004,0.2582,0.2762,0.069,0.2132,-0.018,0.2162,0.1592,0.2492,0.3244,0.4834,0.7538,0.6276,0.982,1,0.4384,0.5406,0.3064,0.7178,0.6606,0.919,0.988,0.6156,0.8798,0.7628,0.937,0.961,-0.5602,0.4026,0.5038,0.3492,0.5572,0.3968,0.3194,0.272,0.2066,0.2748,0.0194,0.2124,0.0698,0.3372,0.2986,0.6732,0.7534,0.7206,1,0.8514,0.6434,0.6078,0.6732,0.7564,0.587,0.9406,0.8008,0.6494,0.6464,0.6672,0.8128,0.6286,-0.5204,0.2304,0.3036,0.477,0.5934,0.3334,0.2738,0.1436,0.233,0.1788,0.149,0.1626,0.2196,0.3062,0.439,0.6288,0.6666,1,0.9268,0.7968,0.8102,0.4878,0.5692,0.2982,0.4552,0.4552,0.6504,0.5854,0.542,0.561,0.6422,0.7642,-0.3548,0.296,0.3212,0.8036,0.8402,0.3436,0.3942,0.1528,0.2398,0.0744,0.2062,0.1024,0.2988,0.3884,0.641,0.7532,1,0.8934,0.8346,0.8148,0.6522,0.5988,0.2342,0.1556,0.1164,0.3772,0.5064,0.5316,0.495,0.5708,0.6214,0.7364,-0.207,0.327,0.6334,0.9968,0.8988,0.504,0.3618,0.2986,0.1374,0.226,0.2102,0.3364,0.665,0.7694,0.9558,1,0.82,0.7662,0.8546,0.9116,0.842,0.564,0.3334,0.169,0.0648,0.0552,0.1312,0.3428,0.5072,0.5988,0.5734,0.7282,-0.1826,0.2994,0.8456,1,0.6196,0.548,0.4652,0.371,0.2768,0.4538,0.5404,0.9398,0.8794,0.6308,0.5254,0.4274,0.4012,0.4238,0.6046,0.7928,0.7928,0.6836,0.4764,0.194,-0.0094,0.017,0.0282,0.0208,0.1224,0.2468,0.3334,0.6346,0.1,0.6706,0.7118,0.9706,0.6118,0.4294,0.3058,0.6176,0.753,1,0.8588,0.4764,0.2118,0.053,-0.0058,-0.1176,-0.3058,-0.1118,-0.1412,0.1706,0.247,0.3942,0.3236,-0.3176,-0.2352,-0.4588,-0.6,-0.4294,-0.3824,-0.2352,-0.1176,0.0236,-0.4838,0.4838,0.5806,0.3226,0.387,0.258,0.258,0.2904,0.0646,0.2258,0.0646,0.2258,0.1936,0.258,0.3548,0.387,0.7096,0.6452,0.9032,0.9678,0.5806,0.4838,0.387,0.742,0.7096,0.7096,0.871,0.742,1,0.9678,0.8388,1,-0.6604,0.3962,0.5472,0.1698,0.3584,0.2076,0.2076,0.2076,0.0188,0.1698,-0.0566,0.132,0.0566,0.2076,0.3208,0.434,0.6982,0.585,0.9622,0.9622,0.3584,0.4716,0.2076,0.585,0.5472,0.9246,0.9622,0.5472,0.6982,0.5472,1,0.9622,-0.2942,0.2236,0.8118,1,0.647,0.553,0.3882,0.3412,0.247,0.2706,0.4118,0.953,1,0.8118,0.7882,0.7176,0.6236,0.6,0.8588,1,0.7648,0.8118,0.5058,0.3648,-0.0118,0.0588,0.153,-0.0588,-0.1294,0.5294,0.553,0.9294,-1,-1,-0.9922,-0.9932,-0.9622,-0.9264,-0.9608,-0.973,-0.9734,-0.8718,0.0982,-0.161,-0.1354,-0.1194,-0.0212,0.2858,0.7862,0.9622,0.7026,0.1654,-0.3032,-0.7514,-0.9072,-0.9154,-0.9628,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9896,-0.9914,-0.8438,-0.251,-0.6308,-0.6414,-0.6464,-0.7478,0.089,0.0136,-0.0212,-0.0022,0.4668,0.7402,0.9482,0.8688,0.394,-0.176,-0.5822,-0.8362,-0.9332,-0.9474,-0.9728,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.9534,-0.48,0.6166,0.8532,0.7666,0.64,0.5566,-0.4434,-0.443,-0.403,-0.2858,-0.265,-0.2726,-0.5676,-0.7,-0.7476,-0.82,-0.905,-0.9576,-0.8668,-0.9634,-0.8668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,0.1428,-0.8858,-0.4,1,1,-0.0572,-0.7428,-0.5428,-0.4,-0.6286,-0.8286,-0.7428,-0.3714,1,1,1,-0.4286,-0.8,-0.4,-1,-1,-1,-1,-1,-1,-1,-1,0.7426,0.7464,0.7484,0.7538,0.7558,0.767,0.7852,0.8136,0.8366,0.7594,0.431,0.43,0.4256,0.451,0.453,0.4426,0.3882,0.3352,0.1334,-0.398,-0.8666,-0.1176,0.2386,0.1028,0.0064,-0.0524,-0.0868,0.1166,-0.6952,-0.2784,-0.269,-0.0668,-0.042,-0.0326,0.0016,0.0824,0.101,0.1696,0.3406,0.5334,0.7046,0.9222,0.944,0.7636,0.7668,0.7854,0.8632,0.8912,1,0.8694,0.8258,0.6516,0.4868,0.5926,0.3032,0.3312,0.2814,0.3374,0.1074,0.0078,-0.831,-0.476,-0.3578,-0.3126,-0.0732,-0.1098,-0.0226,0.124,0.1042,0.1606,0.431,0.5718,0.6282,0.831,0.783,0.8564,0.8902,0.7774,0.8084,0.8816,0.9662,1,0.845,0.7212,0.555,0.6958,0.6592,0.6282,0.6338,0.5746,0.4704,0.2508,-0.1598,0.2304,0.084,0.0272,0.0082,-0.0758,0.1166,0.252,0.4742,0.7318,0.7154,0.607,0.8726,0.9376,0.9242,0.9702,1,0.8916,0.9052,0.897,0.8644,0.775,0.58,0.4174,0.1572,0.214,0.3116,0.2792,0.2384,0.2926,0.2764,0.0868,1,-1,-1,1,-0.4,-1,-0.8,0.3334,-1,-0.1724,0.5518,0.6206,0.8966,1,0.6552,0.4482,0.6206,0.3448,0.3794,0.3794,0.3448,0.7242,0.5518,0.4482,0.2758,0.1724,0.2758,0.3104,0.2068,0.1034,-0.069,0.3448,0.0344,-0.1034,-0.138,0.1034,0.1034,0.1724,-0.069,-0.2758,-0.5862,'17'
-0.6226,-0.1898,0.0042,0.2494,0.548,0.7058,0.6332,0.7356,0.9232,1,0.7698,0.3902,0.209,0.1898,0.1066,0.1258,0.0852,0.0832,0.2986,0.2858,0.4968,0.4968,0.629,0.5672,0.42,0.2708,0.2346,0.1664,0.275,0.3176,0.4244,0.4648,-0.5384,-0.131,0.002,0.2338,0.4818,0.633,0.762,0.865,0.9274,1,0.7138,0.4214,0.3972,0.4032,0.256,0.2298,0.1714,0.1532,0.4012,0.4032,0.5706,0.5826,0.7198,0.5362,0.4294,0.3044,0.3568,0.3568,0.383,0.5484,0.5404,0.633,-0.416,-0.003,0.0894,0.3412,0.5358,0.711,0.8682,1,0.8938,0.9902,0.7562,0.7364,0.5752,0.6184,0.416,0.4258,0.3824,0.3706,0.5732,0.5222,0.7384,0.6696,0.7148,0.6224,0.4986,0.3688,0.412,0.3864,0.4986,0.648,0.7346,0.5398,-0.4116,-0.0304,0.1066,0.3118,0.5348,0.648,0.9316,1,0.7536,0.783,0.8572,0.8534,0.7342,0.6872,0.5894,0.4956,0.4644,0.4682,0.5718,0.5132,0.5718,0.6168,0.648,0.4526,0.439,0.3528,0.302,0.3392,0.3666,0.5366,0.4644,0.5582,-0.4684,-0.1318,0.1126,0.2218,0.462,0.6614,1,0.9422,0.6506,0.732,0.8392,0.9378,0.9572,0.807,0.6312,0.5712,0.5928,0.7234,0.732,0.597,0.3654,0.2968,0.4126,0.449,0.3184,0.2754,0.1982,0.1854,0.2562,0.3784,0.4448,0.419,-0.4576,-0.1604,0.1462,0.2004,0.4104,0.8444,0.9764,0.7618,0.7618,0.7948,0.849,0.9528,1,0.9716,0.6864,0.585,0.6226,0.7052,0.6202,0.4694,0.099,-0.0614,-0.0542,0.0236,0.0896,-0.1368,-0.1416,-0.033,0.0118,0.0732,0.1438,0.0944,-0.3212,0.0458,0.2538,0.2844,0.4802,0.9694,0.997,0.9816,0.8776,0.792,0.7584,0.7522,0.9664,0.9878,1,0.899,0.8318,0.8256,0.7522,0.7004,0.26,0.2966,-0.052,-0.153,-0.0306,-0.0184,-0.0704,0.0428,0.2966,0.4862,0.477,0.1926,-0.6538,-0.2692,0.077,0.3462,0.7692,0.8462,0.8462,0.8462,1,0.8846,0.7692,0.6538,0.3462,0.2692,0.0384,0,0.1538,0.1538,0.1538,0.1924,0.3076,0.6924,0.8076,0.6924,0.5384,0.3846,0.1924,0.1924,0.2692,0.3846,0.5384,0.577,-0.7096,-0.2258,-0.0646,0.2258,0.5484,0.7096,0.613,0.6774,0.9354,1,0.742,0.3226,0.1612,0.1612,0.0646,0.129,0,0,0.129,0.258,0.4838,0.613,0.6774,0.5162,0.3548,0.258,0.1612,0.129,0.1936,0.2258,0.258,0.4516,-0.4516,-0.1774,0.129,0.1936,0.3548,0.8064,0.9516,0.8226,0.742,0.7904,0.887,1,0.9354,0.9516,0.742,0.6612,0.6612,0.8548,0.871,0.5484,0.4032,0.113,0.371,0.387,0.242,0.1774,0.113,0.0968,0.113,0.258,0.1612,0.2258,-1,-1,-1,-1,-1,-1,-1,-1,-0.9858,-0.985,-0.6506,0.0646,0.5656,0.8206,0.7384,0.6842,0.8078,0.8792,0.9542,0.6578,0.5084,0.1012,-0.6814,-0.8778,-0.935,-0.9522,-0.9692,-0.9758,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9956,-0.9958,-0.8324,-0.2374,0.4434,0.8752,0.6362,0.6794,0.8722,0.8452,0.9268,0.5026,0.082,-0.3368,-0.8768,-0.9158,-0.935,-0.9614,-0.9768,-0.9836,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.9868,-0.82,-0.5778,-0.5446,-0.5534,-0.6068,-0.649,-0.652,-0.664,-0.702,-0.936,-0.968,-0.884,-0.6768,-0.4634,-0.5934,-0.6268,-0.4768,-0.6834,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4,1,1,1,0.5714,-0.6286,-0.3142,-0.7428,-0.6286,-0.6858,-0.1428,-0.2572,-0.6,1,1,0.0286,-0.4572,0.1428,0.2286,-0.6858,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.2846,0.2734,0.3234,0.317,0.3432,0.3054,0.2724,0.193,-0.0892,-0.7998,-0.7466,0.1176,-0.7918,-0.5512,-0.2872,-0.1068,0.1214,1,-0.2692,0.5384,0.7308,1,0.9616,0.7308,0.423,0.3462,0.2308,0.2692,0.2308,0.3846,0.423,0.1924,0.1924,0.1538,0.077,0.2308,0.1154,0,0.0384,0,-0.1154,0.1154,0.1154,-0.0384,0.077,0.1538,-0.1538,-0.0384,-0.0384,-0.3076,-0.3272,0.2336,0.8504,1,0.8504,0.6822,0.1962,0.1962,0.1402,0.0468,0.1402,0.4018,0.2524,0.0842,-0.0094,0.2336,0.1776,0.1962,-0.1588,-0.1588,-0.2898,-0.3644,-0.2898,-0.4392,-0.3084,-0.2898,-0.4392,-0.4392,-0.3644,-0.3272,-0.3458,-0.6822,-0.239,0.3098,0.8054,0.947,1,0.9116,0.5398,0.2036,0.2744,0.2744,0.3982,0.6814,0.5576,0.239,0.3628,0.469,0.3628,0.2744,0.1682,0.1328,0.0088,-0.3274,-0.3628,-0.7168,-0.1682,-0.115,-0.3806,-0.646,-0.5222,-0.3806,-0.292,-0.6284,-0.5276,-1,-1,1,-1,-1,-0.8,-0.8334,-1,-0.1066,-0.0934,0.4934,0.6534,0.52,0.6534,0.68,0.6534,0.6134,1,0.9066,0.72,0.7734,0.7466,0.8934,0.7866,0.2134,0.3066,0.24,0.3334,0.5066,0.4266,0.6666,0.6266,0.2266,0.32,0.24,0.44,0,-0.0266,-0.04,-0.2934,'18'
-0.655,0.0684,0.0996,0.3864,0.5006,0.8566,0.8478,1,0.9462,0.9126,0.9172,0.5722,0.579,0.3394,0.384,0.364,0.3482,0.3886,0.4088,0.6954,0.711,0.4872,0.42,0.2094,0.2094,0.1556,0.169,0.449,0.5342,0.5968,0.673,0.4938,-0.5164,-0.002,-0.002,0.3724,0.463,0.8704,0.8498,0.9444,0.9218,1,0.9856,0.6914,0.6708,0.5308,0.5226,0.4712,0.461,0.5864,0.5782,0.788,0.784,0.3704,0.3848,0.1976,0.2202,0.4116,0.426,0.426,0.4526,0.6482,0.6872,0.3642,-0.4548,0.001,0.0068,0.3398,0.478,0.7624,0.702,0.9494,0.8656,1,0.9144,0.8112,0.7098,0.6202,0.5014,0.517,0.4528,0.6086,0.6436,0.774,0.628,0.3106,0.219,0.3378,0.2872,0.404,0.295,0.3846,0.4488,0.5482,0.484,0.5366,-0.4182,0.0262,0.0666,0.3636,0.5394,0.7656,0.8324,1,0.8666,0.9758,0.802,0.9172,0.705,0.707,0.4728,0.5434,0.5798,0.6262,0.699,0.7314,0.3354,0.2242,0.4262,0.408,0.291,0.2626,0.297,0.2586,0.4262,0.4162,0.6102,0.5314,-0.3622,0,0.1118,0.2832,0.5434,0.6416,0.946,1,0.738,0.7476,0.84,0.792,0.7322,0.63,0.501,0.3912,0.4662,0.5722,0.6128,0.4432,0.3006,0.4412,0.393,0.2562,0.1714,0.0944,0.1118,0.104,0.1754,0.2524,0.3872,0.4142,-0.4484,-0.1034,0.1096,0.2184,0.5186,0.5804,1,0.9468,0.5058,0.7252,0.8254,0.8338,0.8616,0.4866,0.3716,0.3824,0.4568,0.542,0.3888,0.3632,0.2864,0.4078,0.31,0.0564,0.0522,-0.0564,-0.0436,-0.1204,0.0288,0.016,0.1842,0.261,-0.3368,0.0316,0.1184,0.1816,0.4552,0.7658,1,0.879,0.6236,0.679,0.6894,0.8026,0.7736,0.8158,0.7052,0.7236,0.5684,0.5368,0.6448,0.55,0.4474,0.3132,0.2236,0.1026,-0.029,-0.0578,-0.0578,-0.1658,-0.0264,0.0394,0.25,0.171,-0.5064,0.2988,0.4026,0.3246,0.7142,0.6884,0.8442,1,0.8702,0.7402,0.7662,0.4026,0.4806,0.3246,0.4026,0.4546,0.2208,0.4026,0.2988,0.5844,0.6884,0.5844,0.3766,0.3506,0.091,0.1168,-0.039,0.4286,0.4806,0.4026,0.5844,0.5324,-0.5082,0.082,0.1148,0.4426,0.5082,0.9016,1,0.7704,0.8688,0.5738,0.836,0.7378,0.5082,0.3442,0.377,0.4098,0.4098,0.3442,0.5082,0.6066,0.6066,0.6394,0.2786,0.3114,0.246,0.1804,0.1804,0.5082,0.5082,0.6394,0.6066,0.4098,-0.1728,0.1112,0.2346,0.3704,0.605,0.679,0.9754,1,0.753,0.716,0.8518,0.7778,0.7902,0.6544,0.6172,0.5186,0.5556,0.6544,0.642,0.5186,0.432,0.5432,0.432,0.4198,0.1976,0.2716,0.247,0.2592,0.3456,0.2962,0.5802,0.5308,-1,-1,-1,-1,-1,-1,-0.9908,-0.9896,-0.893,-0.4004,-0.3152,0.363,0.9128,0.962,0.75,0.6064,0.5868,0.573,0.6726,0.6032,0.5914,-0.1066,-0.6956,-0.8636,-0.9312,-0.9548,-0.9658,-0.975,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9958,-0.9952,-0.923,-0.5154,-0.4642,0.078,0.799,0.893,0.9646,0.9174,0.7726,0.7324,0.8092,0.7288,0.446,-0.3592,-0.9074,-0.936,-0.94,-0.9614,-0.9682,-0.9696,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9068,-0.9134,-0.7868,-0.63,-0.6034,-0.6512,-0.5534,-0.5912,-0.5668,-0.566,-0.602,-0.612,-0.654,-0.824,-0.918,-0.91,-0.6834,-0.58,-0.42,-0.35,-0.3534,-0.4834,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,-0.0286,1,1,-0.2,1,0.0286,-0.8572,-0.5714,-0.7714,-0.8,-0.8858,-0.2858,-0.8,-0.6,1,1,-0.5142,-0.6858,-0.6286,-0.6286,-0.8,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.7294,-0.707,-0.7378,-0.748,-0.7894,-0.8062,-0.8166,-0.8486,-0.9624,-1,-0.7866,0.1294,-0.4592,-0.4782,-0.0306,0.4042,0.6248,1,-0.3948,0.2456,0.614,1,0.9474,0.8334,0.421,0.3508,0.2456,0.272,0.5,0.4386,0.2456,0.0878,0.272,0.2982,0.1666,0.0438,0,0.1404,0.2456,0.2018,-0.2982,-0.4386,-0.4386,-0.5088,-0.4736,-0.5264,-0.4474,-0.4298,-0.4824,-0.6228,-0.3712,0.1706,0.6722,1,1,0.8996,0.4114,0.1772,0.1036,0.1706,0.398,0.3378,0.1104,0.0302,0.2108,0.378,0.1438,-0.1438,-0.0836,0.0234,0.1104,0.0904,-0.5586,-0.6856,-0.6722,-0.7526,-0.4114,-0.5518,-0.3178,-0.3914,-0.485,-0.6656,-0.1524,0.3462,0.712,0.9668,1,0.7784,0.4182,0.3352,0.324,0.3074,0.7174,0.4238,0.2244,0.169,0.4182,0.4294,0.313,0.1746,0.097,0.1856,0.1912,0.2022,-0.5124,-0.4128,-0.457,-0.5236,-0.2798,-0.3186,-0.1856,-0.2466,-0.2798,-0.4958,-0.4712,-1,-1,1,-0.6,-1,-0.4,-0.5334,-1,-0.388,-0.3582,0.1044,0.418,0.4626,0.4328,0.5074,0.806,0.791,0.7314,0.6716,0.8656,0.7762,0.6268,0.6268,1,0.597,0.2986,0.3284,0.4626,0.6568,0.6268,0.418,0.3134,0.3582,0.1792,0.1492,0.1792,0.1642,0.1792,-0.0598,-0.791,'18'
-0.4182,0.0234,0.0702,0.3454,0.6052,0.8338,0.7402,0.5012,0.2936,0.3038,0.2988,0.2884,0.3974,0.3662,0.5116,0.5116,0.7818,0.7298,1,0.9116,0.6572,0.7194,0.813,0.7662,0.787,0.6624,0.6468,0.413,0.4078,0.5324,0.5116,0.7194,-0.4042,0.0024,0.1132,0.3164,0.6812,0.8014,0.5796,0.6352,0.3904,0.3996,0.358,0.3348,0.418,0.3672,0.5012,0.6766,0.783,0.8984,1,0.7644,0.7782,0.7922,0.8106,0.9308,0.9076,0.7136,0.6352,0.5242,0.5058,0.6258,0.686,0.7368,-0.405,0.0206,0.0938,0.3272,0.6704,0.8124,0.6292,0.7208,0.4462,0.5012,0.4416,0.4508,0.5148,0.4828,0.6568,0.707,0.936,0.8718,1,0.8306,0.8124,0.8444,0.9176,0.9634,0.9862,0.6522,0.6476,0.5514,0.5836,0.8444,0.7574,0.7758,-0.4104,-0.0044,0.0656,0.2926,0.5982,0.7292,0.6158,0.7118,0.4628,0.5066,0.4498,0.4716,0.511,0.5066,0.7118,0.7336,1,0.9126,0.8952,0.7816,0.8034,0.7772,0.8646,0.8166,0.882,0.5808,0.5676,0.5502,0.5546,0.7598,0.7162,0.69,-0.4046,-0.0104,0.044,0.2662,0.5556,0.6898,0.5766,0.6688,0.434,0.4758,0.4298,0.455,0.501,0.4926,0.7484,0.7568,1,0.9036,0.6478,0.5808,0.7148,0.6814,0.7778,0.74,0.803,0.5052,0.501,0.4634,0.4592,0.6226,0.5932,0.5598,-0.3204,0.1262,0.1408,0.369,0.7378,0.8786,0.6748,0.7428,0.5776,0.6116,0.4952,0.4902,0.6504,0.5776,0.8398,0.83,1,0.8544,0.5292,0.5776,0.6942,0.699,0.7524,0.8884,0.9272,0.5242,0.4952,0.3884,0.3058,0.3786,0.3156,0.4174,-0.169,0.331,0.1902,0.2888,0.7324,0.831,1,0.8874,0.4718,0.2816,0.183,0.2958,0.507,0.5352,0.5916,0.7324,0.7816,0.493,0.5634,0.5564,0.6478,0.5564,0.7464,0.831,0.9436,0.838,0.4084,0,0.1056,-0.176,-0.0774,-0.1198,-0.1948,0.1948,0.1948,0.4546,0.6624,0.8702,0.8182,0.5844,0.4026,0.4546,0.4026,0.4286,0.5324,0.5064,0.6364,0.5844,0.8442,0.8442,1,0.948,0.8182,0.7662,0.8962,0.8702,0.922,0.7402,0.7662,0.5584,0.5844,0.6104,0.5844,0.7922,-0.394,0.0304,0.0606,0.3334,0.697,0.8484,0.7272,0.5454,0.2728,0.394,0.3334,0.3636,0.4242,0.394,0.5152,0.4242,0.7576,0.8788,1,0.8788,0.6364,0.697,0.8182,0.7272,0.8182,0.6666,0.6666,0.4546,0.394,0.5454,0.4848,0.7272,-0.3088,0.103,0.0882,0.353,0.647,0.7794,0.647,0.7058,0.4852,0.5588,0.5,0.5148,0.5882,0.5588,0.8236,0.8382,1,0.8824,0.5882,0.5442,0.6764,0.6764,0.7648,0.7942,0.8382,0.5294,0.5588,0.3824,0.3236,0.603,0.5588,0.5148,-1,-1,-1,-1,-1,-1,-1,-1,-0.9844,-0.9868,-0.3952,0.844,0.9368,0.94,0.9008,0.9314,0.8782,0.8322,0.7924,0.8198,0.6816,-0.1916,-0.6792,-0.9492,-0.9618,-0.968,-0.9704,-0.9726,-0.9656,-0.95,-0.9454,-0.9524,-0.9556,-1,-1,-1,-1,-1,-1,-1,-1,-0.9942,-0.9948,-0.4902,0.4788,0.4966,0.7318,0.9298,0.9766,0.8552,0.8708,0.8852,0.4904,-0.0166,-0.6644,-0.8814,-0.7718,-0.8272,-0.8162,-0.813,-0.8436,-0.8458,-0.7986,-0.737,-0.7858,-0.8744,-1,-1,-1,-1,-1,-1,-1,-1,-0.9,-0.9668,-0.71,-0.575,-0.535,-0.605,-0.55,-0.445,-0.445,-0.34,-0.328,-0.496,-0.6,-0.604,-0.0768,0.9066,1,1,1,1,1,1,1,1,0.67,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,1,1,1,-0.0572,-0.6858,-0.6572,-0.9428,-0.8286,-0.8572,-0.6,1,1,1,1,1,-0.5428,-0.6572,-0.9142,-0.9714,-0.8572,-0.9142,-0.5142,-0.1142,1,1,1,1,1,1,1,1,1,1,1,0.2438,0.2112,0.2316,0.2316,0.249,0.23,0.2176,0.202,0.1398,-0.0956,-0.76,-0.553,-0.446,0.262,0.5392,0.502,0.703,1,-0.4036,-0.193,0.5088,0.6492,0.614,0.4386,0.4036,0.6842,0.9298,1,0.965,0.8246,0.965,0.9298,0.6842,0.4386,0.7192,0.7544,0.7192,0.5088,0.4386,0.4736,0.4386,0.228,0.1228,0.193,0.1578,0.0526,0.0176,0.1228,0.0878,-0.193,-0.4018,0.2336,0.8878,0.9066,0.5328,0.3084,0.1402,0.5514,0.8692,1,0.9814,0.7196,0.9814,0.7758,0.514,0.5328,0.5888,0.6448,0.6074,0.5514,0.4766,0.4206,0.4018,-0.1028,-0.028,0.028,0.0094,-0.1776,-0.2336,0.1402,0.271,0.0468,-0.0782,0.2522,0.6,0.7218,0.374,0.3044,0.374,0.5304,0.8434,1,0.8608,0.8608,0.8956,0.826,0.4782,0.6696,0.687,0.7566,0.8086,0.7914,0.8434,0.826,0.6696,0.1652,0.0434,-0.1478,-0.0956,-0.1304,-0.2348,-0.2522,-0.1652,-0.4782,0.119,-1,-1,1,-0.6,-1,-1,-0.8334,-1,-0.9322,-0.8758,-0.3334,-0.3446,-0.1752,0.1186,0.0508,-0.0056,0.1186,0.13,0.096,0.3786,0.1638,0.356,0.4238,0.2994,0.2542,0.2994,0.4916,0.4916,0.435,0.356,0.661,0.6724,0.5142,0.7176,0.7288,0.7966,0.9774,1,0.695,0.4238,'19'
-0.4566,0.0924,0.098,0.4846,0.4902,0.8656,0.86,0.451,0.3838,0.2606,0.1932,0.2718,0.2662,0.3502,0.479,0.5966,0.731,0.8488,0.9552,1,0.8488,0.7366,0.7478,0.8768,0.7928,0.731,0.5686,0.4846,0.5966,0.731,0.6918,0.6358,-0.474,0.0364,0.0156,0.3958,0.552,0.9062,0.8542,0.401,0.3124,0.3958,0.3178,0.3594,0.2708,0.4688,0.3906,0.698,0.6876,0.9376,0.8542,1,0.8802,0.8698,0.7708,0.9584,0.8386,0.6614,0.5572,0.7448,0.7188,0.8802,0.7344,0.7344,-0.4722,0.0778,0.0778,0.4444,0.5388,1,0.9888,0.4888,0.4556,0.4334,0.4278,0.3944,0.4,0.4778,0.4944,0.7444,0.75,0.9778,0.9888,0.8,0.8278,0.8612,0.9,0.7556,0.7834,0.5888,0.6444,0.6612,0.7222,0.5834,0.6388,0.5888,-0.4322,0.099,0.099,0.4322,0.474,0.9896,0.9844,0.6094,0.6198,0.5208,0.526,0.4948,0.5104,0.5678,0.6042,0.7916,0.8386,0.948,1,0.6822,0.7292,0.7188,0.823,0.6458,0.6666,0.5678,0.7136,0.599,0.6666,0.5312,0.5938,0.4896,-0.3756,0.1024,0.0926,0.3804,0.5122,0.8732,0.844,0.7318,0.7074,0.6,0.5708,0.6098,0.5756,0.6488,0.6292,0.917,0.883,1,0.9708,0.7804,0.7756,0.7756,0.761,0.6586,0.6488,0.7366,0.7268,0.439,0.4342,0.5658,0.556,0.4732,-0.3228,0.1916,0.1864,0.4646,0.5644,0.9528,0.895,0.8688,0.811,0.6902,0.6326,0.6482,0.5958,0.7848,0.7218,1,0.9108,0.8846,0.8058,0.79,0.727,0.7638,0.7112,0.8268,0.769,0.5118,0.4068,0.5224,0.496,0.4646,0.433,0.4488,-0.2086,0.2682,0.187,0.3008,0.5826,0.6802,0.7778,0.8644,0.6476,0.4146,0.4146,0.5068,0.5556,0.5284,0.691,0.7018,0.8212,0.7832,0.496,0.7344,0.7236,0.7506,0.87,1,0.9512,0.664,0.523,0.393,0.3388,0.3442,0.2954,0.42,-0.4736,0.0878,0.0878,0.4736,0.5088,0.7894,0.8246,0.4036,0.3334,0.1228,0.1228,0.0878,0.2632,0.228,0.4736,0.5088,0.7192,0.7894,0.965,1,0.579,0.5438,0.4736,0.7544,0.614,0.6492,0.5438,0.2632,0.4386,0.7192,0.6842,0.4036,-0.5,0,0.0334,0.3666,0.6,0.8666,0.8,0.2666,0.3,0.2334,0.1666,0.2334,0.2,0.3334,0.3,0.5334,0.7,0.7666,0.9334,1,0.8334,0.6,0.6334,0.8334,0.6666,0.6666,0.4334,0.6,0.6334,0.6666,0.4,0.6334,-0.5084,0.017,0.0508,0.4068,0.5254,0.9662,0.9322,0.4916,0.4068,0.4238,0.3898,0.3898,0.356,0.4916,0.4746,0.7458,0.695,1,0.9322,0.9492,0.8984,0.8984,0.8474,0.9492,0.8984,0.5932,0.5932,0.8136,0.7628,0.7796,0.7458,0.678,-1,-1,-1,-1,-1,-1,-1,-0.9884,-0.989,-0.9566,-0.1324,0.1348,0.853,0.9842,0.9134,0.9334,0.9586,0.7566,0.5522,0.4752,0.557,-0.2306,-0.7766,-0.9488,-0.9566,-0.9646,-0.9646,-0.9536,-0.9586,-0.9566,-0.9536,-0.958,-0.9744,-1,-1,-1,-1,-1,-1,-1,-0.9956,-0.9954,-0.9452,-0.5302,-0.0996,0.7578,0.8454,0.5938,0.3198,0.6628,0.825,0.5326,0.1888,0.2668,-0.568,-0.8696,-0.808,-0.841,-0.8186,-0.7892,-0.7742,-0.7672,-0.761,-0.827,-0.8532,-0.7448,-1,-1,-1,-1,-1,-1,-1,-0.933,-0.9668,-0.82,-0.39,-0.4134,-0.41,-0.53,-0.59,-0.675,-0.6,-0.5,-0.57,-0.59,-0.53,-0.525,0.32,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-0.4572,-0.2,1,1,1,1,-0.4,0.3428,-0.3142,-0.1714,-0.4286,-0.6572,-0.2286,1,1,1,1,-0.6572,-0.7428,-0.8,-0.8,-0.9714,-0.8858,-0.7428,-0.5428,-0.4858,1,1,1,1,1,1,1,1,1,1,0.2232,0.2232,0.1874,0.2274,0.2406,0.2462,0.2676,0.2352,0.1702,-0.0948,-0.8266,-0.6118,-0.537,-0.2198,0.3544,1,0.7938,1,-0.5258,-0.134,0.4226,0.5052,0.4432,0.1134,0.2372,0.4846,0.732,0.7938,0.7114,0.9588,1,0.6494,0.134,0.6288,0.732,0.5052,0.6082,0.732,0.6288,0.402,0.3814,0.4432,0.3814,0.031,-0.3608,-0.1958,-0.2578,-0.402,-0.299,-0.4432,-0.0804,0.3218,0.7126,0.7242,0.4598,0.2988,0.3678,0.3678,0.816,1,0.9196,0.885,0.7702,0.4598,0.3104,0.5402,0.4828,0.5288,0.6782,0.5862,0.5632,0.5172,0.4712,0.1954,-0.0114,-0.2988,-0.5518,-0.3218,-0.4828,-0.2414,-0.2068,-0.2644,-0.0268,0.3582,0.5722,0.8502,0.5188,0.3048,0.401,0.4866,0.754,1,0.8396,0.754,0.7968,0.6898,0.5402,0.5402,0.5188,0.5936,0.508,0.5614,0.5402,0.4652,0.3156,0.0696,-0.123,-0.2086,-0.401,-0.4438,-0.5722,-0.401,-0.3796,-0.4546,-0.505,-1,-1,1,-1,-1,-1,-0.7334,-1,-0.608,-0.3066,-0.1256,-0.0854,0.015,0.1558,0.2262,0.2562,0.2664,0.3266,0.2562,0.4372,0.4674,0.4272,0.5678,0.5478,0.5778,0.4572,0.7186,0.7788,0.819,0.799,0.7186,0.9498,0.9096,0.6684,0.6582,0.799,0.7588,0.8794,1,0.8894,'19'
-0.497,0.321,0.3888,0.5154,0.5896,0.287,0.2438,0.0802,0.142,0.074,0.0062,0.0062,0.1574,0.1328,0.2006,0.2778,0.321,0.463,0.679,0.858,0.9044,1,0.9506,0.8642,0.9166,0.963,0.9938,0.9506,0.8488,0.7408,0.6882,0.784,-0.4758,0.1828,0.2124,0.5,0.5484,0.1586,0.242,0.0188,0.1506,-0.0646,0.0188,-0.1264,0.199,0.1048,0.2474,0.207,0.336,0.344,0.7044,0.7688,0.9032,1,0.7392,0.629,0.586,0.8548,0.7662,0.8226,0.758,0.6854,0.6802,0.707,-0.391,0.2284,0.2468,0.5984,0.622,0.2284,0.2678,0.0498,0.105,0.0052,0.0866,0.0288,0.147,0.0472,0.189,0.1364,0.315,0.4042,0.6666,0.664,1,0.9212,0.7532,0.6982,0.8846,0.8556,0.9344,0.937,0.8372,0.8662,0.798,0.853,-0.2594,0.312,0.2982,0.67,0.6282,0.215,0.1346,0.1318,0.0486,0.079,-0.0124,0.032,-0.0514,0.1206,0.0708,0.2454,0.2288,0.3926,0.584,0.8418,0.9418,1,0.9584,0.7004,0.8724,0.939,0.9806,0.9168,0.914,0.878,0.8918,0.903,-0.2484,0.2484,0.4466,0.6636,0.4716,0.0126,-0.1006,-0.0692,-0.0818,-0.107,-0.1886,-0.2296,-0.1006,-0.11,-0.0314,0.044,0.1416,0.2798,0.4842,0.717,0.9372,0.9874,0.9686,0.6572,0.7548,0.9466,1,0.9466,0.8806,0.8364,0.8868,0.9812,-0.2422,0.2132,0.592,0.7158,0.2132,-0.1948,-0.2786,-0.4098,-0.3916,-0.4826,-0.4754,-0.4608,-0.4244,-0.286,-0.2058,-0.1658,-0.0346,0.0528,0.2132,0.5664,0.6758,0.9672,0.9052,0.6722,0.7012,0.796,0.9928,1,0.745,0.6102,0.6174,0.7522,0.029,0.436,0.1802,0.093,-0.2848,-0.8082,-0.6802,-0.7558,-0.8954,-0.7848,-0.843,-0.7848,-0.7034,-0.7674,-0.8314,-0.75,-0.6046,-0.5466,-0.0814,0.2966,0.3604,0.907,1,0.9476,0.9128,0.8314,0.8954,0.7268,0.5756,0.1628,0.4826,0.7094,-0.3794,0.4828,0.6206,0.4482,0.5172,0.4138,0.3104,0.3104,-0.0344,0.138,0.0344,0.069,0.1034,-0.069,0.2068,0.138,0.3104,0.3794,0.5172,0.6552,0.5862,0.8966,0.862,0.7586,0.8966,0.6896,1,0.9656,0.7586,0.8276,0.4138,0.7586,-0.5172,0.2068,0.2758,0.3794,0.4828,0.2068,0.138,0.069,0.138,0.1034,0,0.0344,0,0.138,0.0344,0.2758,0.1724,0.5172,0.5518,0.8276,0.931,0.6552,0.8276,0.7242,1,0.9656,0.931,0.9656,0.6896,0.7586,0.6552,0.7932,-0.3478,0.087,0.4566,0.5652,0.1956,-0.1956,-0.2174,-0.3478,-0.326,-0.4782,-0.4566,-0.4348,-0.3914,-0.2826,-0.1522,-0.1304,-0.0434,0.087,0.2174,0.5652,0.6086,1,0.9566,0.587,0.6522,0.6956,1,0.9782,0.7392,0.6304,0.6304,0.6956,-1,-1,-1,-1,-1,-1,-0.9888,-0.9828,-0.7928,-0.9222,-0.658,0.817,0.4214,0.4386,0.4896,0.5052,0.4438,0.4352,0.3256,0.2816,-0.05,-0.6866,-0.8498,-0.949,-0.9654,-0.9508,-0.9706,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.994,-0.9904,-0.6316,-0.5836,-0.7438,0.6036,0.1896,0.1974,0.2926,0.395,0.2872,0.1508,-0.1518,-0.366,-0.6832,-0.9066,-0.9544,-0.9614,-0.9652,-0.9728,-0.9876,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.9468,0.22,0.73,0.61,-0.2326,-0.12,-0.1276,-0.275,-0.085,-0.1076,-0.23,-0.2726,-0.495,-0.65,-0.6824,-0.73,-0.3068,-0.4,-0.75,-0.6768,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6858,1,1,1,1,1,-0.7714,-0.7142,-0.6858,-0.8286,-0.9428,-0.8286,-0.7142,1,1,0.3142,-0.5714,0.1714,-0.4,0.9714,0.5714,-1,-1,-1,-1,-1,-1,0.7974,0.7992,0.809,0.814,0.8166,0.825,0.8266,0.8142,0.7812,0.4008,0.8962,0.9018,0.886,0.8674,0.8318,0.8278,0.8088,0.8194,0.88,0.9378,-0.8,-0.0706,-0.8094,-0.291,0.6996,1,0.197,1,-0.462,-0.0966,-0.0276,0.069,0.069,0.1862,0.2966,0.2828,0.3448,0.4,0.6758,0.6896,0.4828,0.8138,0.6828,0.6344,1,0.9932,0.9586,0.9104,0.7862,0.8758,0.7172,0.6414,0.6138,0.6276,0.5242,0.531,0.3034,0.269,0.2206,-0.2138,-0.7658,-0.6396,-0.4474,-0.3814,-0.3094,-0.2552,-0.075,0.081,0.1952,0.3874,0.7058,0.8018,0.5376,0.7298,0.6816,0.5376,0.6816,1,0.7718,0.8198,0.7598,0.904,0.988,0.7418,0.6936,0.7178,0.6456,0.6516,0.6576,0.6996,0.4954,0.099,-0.5172,-0.2038,-0.1662,-0.1974,-0.1474,-0.1474,-0.1098,-0.0344,0.0532,0.3918,0.674,0.8182,0.7304,0.8182,0.7618,0.7366,0.7492,0.931,0.9562,0.7932,0.7618,1,0.7868,0.8056,0.7554,0.5988,0.699,0.5862,0.4858,0.511,0.4858,-0.0596,-0.2568,-1,-1,1,-1,-1,-0.4,-0.3666,-1,-0.416,0.3628,0.3274,0.1328,0.0974,-0.062,0.1682,0.115,0.7346,0.7168,0.6284,0.593,1,0.8408,0.77,0.6814,0.5576,0.6992,0.5752,0.4868,0.8408,0.9824,0.8762,0.77,0.7876,0.7346,0.5752,0.4514,0.292,0.2744,0.2212,-0.2036,'20'
-0.8018,0.3778,0.535,0.2478,0.4256,0.3334,0.0872,0.1214,-0.0394,0.0564,-0.0804,-0.0086,0.0222,0.0736,0.135,0.2924,0.2924,0.5042,0.5624,0.5624,0.73,0.7572,0.9522,0.9556,0.959,1,0.9726,0.9932,0.9316,0.7368,0.723,0.7026,-0.5394,0.1002,0.1552,0.2792,0.3676,0.105,0.1264,-0.0048,0.0716,0.0072,0.0788,0.0716,0.1098,0.1718,0.136,0.2578,0.1146,0.3724,0.296,0.6158,0.5918,0.9498,1,0.7446,0.8688,0.821,0.9928,0.8974,0.7852,0.7422,0.6898,0.716,-0.5562,0.102,0.138,0.3032,0.378,0.027,0.0916,-0.12,0.0322,-0.0994,0.0194,-0.053,0.1226,0.1046,0.1846,0.2154,0.187,0.28,0.3548,0.502,0.613,0.9122,0.827,0.9406,0.9096,0.9716,1,0.827,0.9174,0.6284,0.7316,0.5588,-0.4968,0.09,0.1134,0.3534,0.382,0.0508,0.0926,-0.0664,0.004,-0.116,-0.017,-0.116,0.0274,-0.077,0.1316,0.0014,0.2308,0.1108,0.3664,0.3272,0.674,0.7002,0.987,1,0.8096,0.8436,0.893,0.953,0.781,0.7522,0.5984,0.6454,-0.3698,0.1506,0.1398,0.4684,0.422,0.0958,0.041,0.0302,-0.0384,0.0136,-0.063,-0.0356,-0.1042,0.0822,-0.0082,0.1836,0.0986,0.2192,0.1918,0.3946,0.5068,0.8,0.8794,1,0.9424,0.863,0.8986,0.926,0.874,0.7068,0.6274,0.559,-0.3118,0.1292,0.3484,0.5562,0.3736,0,-0.1152,-0.0842,-0.059,-0.0984,-0.132,-0.2134,-0.1152,-0.0478,0.0308,0.0422,0.146,0.2134,0.2248,0.3034,0.455,0.6994,0.9382,0.986,1,0.9102,0.9944,0.972,0.9776,0.7696,0.7248,0.7472,-0.3256,0.0738,0.3994,0.51,0.0906,-0.3524,-0.3456,-0.4194,-0.4664,-0.5168,-0.5268,-0.6108,-0.4966,-0.3088,-0.3288,-0.3054,-0.1174,-0.1174,0.1912,0.188,0.2652,0.3356,0.5234,0.8758,0.9362,0.9194,0.8792,1,0.8692,0.7684,0.5838,0.6108,-0.6216,0.6756,1,0.8378,0.4594,0.4594,0.027,-0.081,-0.027,0.027,-0.1892,-0.1352,-0.2972,-0.1892,-0.1892,-0.027,0.081,0.4054,0.4054,0.4594,0.5136,0.4594,0.6216,0.6216,0.8378,0.6216,0.8378,0.6756,0.8918,0.8378,0.6756,0.5136,-0.8666,0.5112,0.7778,0.5556,0.4222,0.4222,0.0666,0.2888,0.1556,0.0666,0.1112,-0.2888,0.2,0.1556,0.2,0.3778,0.1112,0.6444,0.6,0.6444,0.8222,0.7778,0.8222,0.8666,0.6444,0.9112,1,0.7778,0.7778,0.4222,0.2888,0.2444,-0.3544,0.1654,0.1812,0.4646,0.433,0.1654,0.1024,0.0708,0.0394,0.0552,0.0236,0.0552,0.0394,0.1496,0.1338,0.2598,0.244,0.2756,0.2756,0.4488,0.4488,0.9056,0.937,0.9686,1,0.9528,1,0.9212,0.9686,0.6536,0.7008,0.622,-1,-1,-1,-1,-1,-0.9772,-0.983,-0.948,-0.7268,-0.8976,-0.8082,0.887,0.283,0.0276,0.0674,0.0796,0.1048,0.078,0.0414,-0.0732,-0.022,-0.1366,-0.5504,-0.7308,-0.8236,-0.878,-0.9326,-0.9626,-0.9764,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.994,-0.9934,-0.9384,-0.2982,-0.3804,-0.7116,-0.2696,0.8374,0.5912,0.3524,0.2836,0.2818,-0.0282,-0.285,-0.4024,-0.4976,-0.6196,-0.8864,-0.9206,-0.9374,-0.931,-0.9492,-0.9734,-0.986,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9198,-0.9334,-0.8434,0.6132,0.8666,0.69,-0.5744,0.1428,0.145,0.1024,0.0924,0.145,0.0574,-0.0626,-0.1926,-0.39,-0.48,-0.69,-0.36,-0.5034,-0.1368,-0.2534,-0.3334,-0.42,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5428,-0.7142,1,1,1,1,1,1,-0.3714,-0.7428,-0.7714,-0.8,-0.7142,-0.7714,-0.8,-0.3142,1,0.4858,-0.0858,0.3714,0.7142,1,-0.0286,0.3714,-1,-1,-1,-1,0.6364,0.6664,0.6852,0.7222,0.7424,0.7642,0.7916,0.8072,0.8012,0.637,0.827,0.842,0.8666,0.8836,0.8636,0.9188,0.9366,0.9694,1,1,-0.8534,-0.1058,-0.7544,-0.6726,-0.5058,0.5956,1,1,-0.7698,-0.4934,-0.421,-0.4408,-0.2632,-0.2632,-0.2632,-0.1514,0.0132,0.1578,0.1974,0.5658,0.5592,0.5328,0.4934,0.6316,0.6514,0.6842,0.8092,0.9276,1,0.9802,0.829,0.7828,0.7368,0.7172,0.5132,0.5264,0.3882,0.3486,0.3422,-0.1842,-0.9594,-0.542,-0.4202,-0.3972,-0.4086,-0.1942,-0.1536,-0.171,0.0608,0.2116,0.2754,0.5362,0.5594,0.6058,0.3972,0.542,0.8028,0.7972,1,0.6928,0.8376,0.9188,0.7914,0.7914,0.7044,0.6522,0.7334,0.6406,0.4956,0.3856,0.374,-0.0202,-0.5344,-0.2586,-0.2356,-0.1436,-0.1552,-0.2012,-0.0344,0.138,0.316,0.4828,0.6206,0.7068,0.684,0.908,0.862,0.7586,0.8564,1,0.8564,0.816,0.885,0.977,0.954,0.9196,0.5748,0.615,0.638,0.7758,0.569,0.638,0.5058,0.3276,-0.1634,-1,-1,1,-1,-1,0.4,-0.3666,-1,-0.4464,-0.3572,-0.4286,0.125,0.4108,-0.0358,0.1428,0.2678,0.25,0.2142,0.2142,0.125,0.5358,0.6428,0.6428,0.6072,0.6428,0.2322,0.3572,0.4822,0.8214,1,0.9642,0.6608,0.9108,0.8214,0.7678,0.6072,0.625,0.5358,0.5178,0.1786,'20'
-0.19,0.3364,0.3146,0.352,0.2804,0.0312,-0.0592,-0.187,-0.2834,-0.056,-0.1806,-0.1652,-0.1962,-0.0218,-0.1152,0.0654,0.2554,0.3956,0.7166,0.8224,0.6574,0.7072,0.5764,0.6698,0.7602,0.8286,0.9782,1,0.9066,0.9376,0.9252,0.9502,-0.2756,0.2522,0.2376,0.387,0.352,0.0998,0.0558,-0.0558,-0.0938,-0.0616,-0.1026,-0.044,-0.091,0.0322,-0.0088,0.1936,0.1788,0.5982,0.5778,1,0.959,0.5396,0.5162,0.7742,0.739,0.9502,0.909,0.7948,0.7712,0.8504,0.8358,0.9824,-0.2438,0.2526,0.2294,0.5412,0.492,0.1718,0.1024,0.062,-0.0216,-0.0044,-0.0996,0.039,-0.0708,0.0592,0.0274,0.2092,0.3852,0.5498,0.8354,1,0.8298,0.619,0.7604,0.8788,0.6884,0.7114,0.521,0.5874,0.5498,0.6594,0.7402,0.8644,-0.2304,0.2454,0.3696,0.6758,0.5818,0.1606,-0.0122,0.006,-0.097,0.0242,-0.1,-0.009,0.0424,0.091,0.2728,0.297,0.6696,0.6576,0.9182,0.8636,0.8212,0.7728,1,0.906,0.4758,0.409,0.3484,0.3304,0.3848,0.4606,0.6152,0.6272,-0.227,0.2376,0.734,0.9256,0.649,0.0638,0.0958,0.039,-0.0816,-0.0426,0,0.1382,0.4114,0.5,0.5638,0.6844,0.6808,0.429,0.4788,0.7022,0.7128,1,0.9468,0.5426,0.2766,0.2944,0.2128,0.1666,0.2482,0.3758,0.578,0.7518,-0.1834,0.2706,0.9542,1,0.3028,0.1834,0.2706,0.0458,0.1606,0.312,0.734,0.6284,0.523,0.2478,0.1192,-0.0322,-0.1284,-0.0826,-0.0092,0.1056,0.3578,0.7248,0.734,0.3578,-0.0458,-0.0458,-0.188,-0.2018,-0.0734,0.0642,0.1972,0.5138,0.1524,0.6954,1,0.9602,0.5828,0.192,0.2914,0.2252,0.6622,0.7616,0.6226,0.0994,-0.2318,-0.3908,-0.9404,-0.6622,-0.649,-0.914,-0.788,-0.5696,-0.5762,-0.3642,0.0928,0.2318,-0.3178,-0.6092,-0.7748,-0.7284,-0.7284,-0.6954,-0.4966,-0.212,-0.2334,0.3,0.2666,0.2666,0.1666,-0.0666,-0.2334,-0.3,-0.2334,-0.0666,-0.3,-0.2,-0.1666,-0.1,-0.0666,0,0.2,0.2666,0.6,0.6334,0.6666,0.6334,0.5666,0.5,0.6666,0.5666,0.8666,0.8,1,0.8666,0.8334,0.8334,-0.309,0.2364,0.2,0.2364,0.1636,-0.1272,-0.2,-0.3818,-0.3454,-0.2,-0.3454,-0.3454,-0.2364,-0.091,-0.1636,-0.0546,0.1636,0.2728,0.6364,0.7454,0.5636,0.6728,0.5636,0.6,0.709,0.7454,1,1,0.9272,0.891,0.891,0.8546,-0.1898,0.2406,0.9494,1,0.2406,0.0886,0.2658,0.038,0.0632,0.2152,0.519,0.6202,0.8228,0.6202,0.367,0.1392,0.0886,0.0632,0.1898,0.3164,0.5444,0.8734,0.9494,0.4178,0.0632,0.038,0.0126,-0.038,0.0126,0.2406,0.3418,0.7722,-1,-1,-1,-1,-1,-1,-1,-0.991,-0.991,-0.904,-0.4108,-0.1846,0.0112,0.108,0.1918,0.3736,0.6024,0.8672,0.942,0.3812,-0.1266,-0.4308,-0.8048,-0.9614,-0.9846,-0.982,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9922,-0.9916,-0.964,-0.3474,0.0492,0.7284,0.8538,0.3604,0.3806,0.2838,0.0908,-0.0418,-0.3676,-0.667,-0.7804,-0.9196,-0.9738,-0.9838,-0.9872,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.9468,-0.84,-0.3,0.06,0.06,-0.0286,-0.0916,-0.1486,-0.3572,-0.58,-0.7658,-0.8,-0.87,-0.8976,-0.81,-0.6468,-0.9534,-0.84,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6858,-0.3428,1,1,1,-0.1142,-0.7142,-0.6286,-0.7142,-0.7142,-0.4858,0.4,1,1,0.8,0.0858,-0.4,-0.6858,-0.6572,-1,-1,-1,-1,-1,-1,-1,0.3038,0.3038,0.3394,0.35,0.3758,0.4048,0.441,0.4832,0.5262,0.494,0.9436,0.9436,0.92,0.9318,0.9242,0.9042,0.8828,0.832,0.7368,0.1862,-0.7734,-0.1764,-0.184,-0.169,-0.0032,0.3762,0.6956,1,0.3846,0.5076,0.4154,0.077,-0.0154,0.0154,0.0462,0.1692,0.3538,0.723,0.8154,0.4462,0.6,0.7538,1,0.877,0.877,0.6616,0.7846,0.723,0.6616,0.5076,0.0462,-0.1692,-0.3538,-0.2616,0.1076,0.2,0.2308,0.1692,0.2616,-0.1692,0.2538,0.3582,0.3732,0.015,0,-0.0746,-0.015,0.1344,0.2686,0.6268,0.7314,0.5374,0.582,0.8508,1,0.8806,0.9702,0.791,0.8806,0.8358,0.8358,0.6268,0.0746,-0.209,-0.3582,-0.1344,0.2238,0.3582,0.3582,0.3732,0.3134,-0.194,0.0598,0.1966,0.1966,-0.1794,-0.1624,-0.2136,-0.2992,-0.1282,0.1112,0.5042,0.6924,0.4018,0.5042,0.6924,1,0.812,0.8974,0.6752,0.7094,0.829,0.7948,0.4872,-0.2992,-0.2992,-0.5214,-0.282,0.1452,0.1112,0.282,0.1624,0.2308,-0.2308,0.1484,-1,-1,1,-0.6,-1,-1,-0.8334,-1,-0.3524,0.0476,-0.0286,0.0476,0.3904,1,0.6952,0.4096,0.2762,-0.1048,0.0286,0.0858,0.1048,0.0666,-0.0666,-0.0096,0.2,-0.0858,-0.0476,-0.1428,0.0476,-0.1238,-0.3904,0.0096,-0.2572,-0.2,-0.3142,-0.4096,-0.2952,-0.5048,-0.0096,-0.6,'21'
-0.092,0.5588,0.4952,0.4572,0.3048,-0.254,-0.4666,-0.346,-0.4572,-0.3492,-0.562,-0.4858,-0.3366,-0.3302,-0.2604,-0.2826,-0.0096,0.035,0.435,0.5874,0.8666,0.692,0.3396,0.3428,0.4826,0.6984,0.8762,1,0.946,0.8096,0.838,0.819,-0.138,0.431,0.414,0.641,0.5824,0.2064,0.1234,0.1112,0.0158,-0.0526,-0.1648,-0.033,-0.133,0.0062,-0.0208,0.2258,0.3016,0.514,0.7632,0.9634,0.8266,0.7436,0.6752,0.8266,0.8266,0.978,0.9536,1,0.7704,0.768,0.7094,0.8096,-0.2526,0.3062,0.3148,0.6124,0.606,0.2292,0.2226,0.1156,0.1134,0,0.0064,0.0578,0.077,0.0856,0.12,0.3384,0.3876,0.668,0.7238,0.9314,1,0.6424,0.7174,0.8566,0.955,0.713,0.698,0.469,0.516,0.4198,0.5718,0.4668,-0.2248,0.3234,0.3276,0.8008,0.7838,0.2998,0.2976,0.182,0.1798,0.0642,0.075,0.1306,0.1414,0.242,0.2698,0.5246,0.5546,0.9272,0.9614,0.895,0.9444,0.938,1,0.7708,0.8394,0.5418,0.5588,0.3854,0.4796,0.4754,0.6038,0.471,-0.2154,0.3504,0.4948,0.9442,0.9022,0.3714,0.3202,0.2014,0.1478,0.1292,0.0686,0.1526,0.1526,0.4878,0.4762,0.7928,0.723,0.8766,0.816,0.8556,0.7974,1,0.9394,0.4902,0.341,0.2946,0.2154,0.3084,0.2898,0.4272,0.4784,0.574,-0.1482,0.4172,0.6464,1,0.878,0.2204,0.0934,0.1856,0.0062,0.056,0.2876,0.3674,0.7384,0.7608,0.5218,0.5218,0.3052,0.34,0.4372,0.5018,0.6762,0.7186,0.5466,0.178,0.0486,-0.0062,-0.0486,-0.0684,-0.056,0.0834,0.2976,0.3226,0.01,0.6144,0.825,0.992,0.5506,0.4832,0.2962,0.4194,0.6422,0.9484,1,0.7336,0.499,0.2446,0.0178,0.0536,-0.0458,-0.1134,0.1172,0.3678,0.487,0.6024,0.5904,0.2486,-0.1212,-0.1492,-0.328,-0.2962,-0.2604,-0.1928,0.161,0.3002,0.1304,0.7392,0.6956,0.3914,0.2608,-0.087,-0.3044,-0.174,-0.4348,-0.2608,-0.3044,-0.2608,-0.2174,-0.1304,-0.174,-0.087,0.087,0.174,0.4348,0.4782,0.9566,1,0.6086,0.1304,0.6086,0.5652,0.913,0.913,0.7392,0.6522,0.6086,0.4782,-0.0732,0.6098,0.4634,0.5122,0.2682,-0.2682,-0.5122,-0.4146,-0.6098,-0.4634,-0.5122,-0.4634,-0.317,-0.4634,-0.1708,-0.3658,0.0244,-0.1708,0.317,0.2682,0.756,0.561,0.2682,0.3658,0.5122,0.561,0.8536,1,0.9512,1,0.9024,0.9512,-0.2038,0.3592,0.5728,1,0.903,0.301,0.2428,0.1844,0.068,-0.0486,0.068,0.2234,0.5922,0.7282,0.4564,0.631,0.3786,0.4564,0.5728,0.6894,0.767,0.903,0.6116,-0.0098,0.0486,0.1068,0.0874,0.1262,0.1068,0.1456,0.4952,0.534,-1,-1,-1,-1,-1,-1,-1,-1,-0.9922,-0.991,-0.9102,-0.679,-0.5076,-0.246,-0.009,0.248,0.7178,0.9514,0.7816,0.4252,-0.2208,-0.6316,-0.883,-0.9292,-0.9736,-0.981,-0.9822,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9902,-0.9898,-0.948,-0.6994,-0.3684,0.0516,0.4088,0.6576,0.9024,0.9656,0.556,0.0812,-0.448,-0.7404,-0.9166,-0.9414,-0.9662,-0.9768,-0.9818,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9718,-0.96,-0.9234,-0.6378,-0.2224,-0.2468,-0.294,-0.396,-0.502,-0.64,-0.776,-0.846,-0.882,-0.882,-0.88,-0.7468,-0.8268,-0.72,-0.76,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2572,-0.6,1,1,0.3428,0.0286,-0.6286,-1,-0.9428,-0.7714,-0.0572,0.6858,0.6,0.9714,0.4286,-0.2858,-0.5714,-0.8286,-0.5714,-1,-1,-1,-1,-1,-1,-0.2178,-0.1944,-0.1336,-0.0744,-0.0208,0.0704,0.165,0.2858,0.4216,0.5154,0.9354,0.9362,0.9002,0.9322,0.9254,0.9494,0.95,0.9042,0.8198,0.1084,-0.8266,0.1412,-0.9506,-0.8248,-0.759,-0.6146,-0.549,1,-0.2358,-0.0894,0.4308,0.496,0.4472,0.2032,0.4146,0.2682,0.5122,0.3822,0.5284,0.317,0.9512,1,0.8048,0.252,0.057,0.2846,0.0406,0.2682,0.2682,0.4634,0.4796,0.2682,-0.3658,-0.2196,0.3334,-0.057,0.2196,-0.057,-0.1708,-0.756,-0.0232,-0.0852,0.3334,0.628,0.3798,0.4264,0.4728,1,0.3334,0.4108,0.69,0.659,0.8294,0.752,0.5504,0.5348,0.5968,0.5658,0.6124,0.5968,0.3488,0.3798,0.4418,0.1938,0.1318,0.1162,0.3024,0.4108,0.3644,0.3178,0.0078,-0.628,0.396,0.7584,0.2886,-0.0872,-0.4094,0.0202,0.2752,0.5034,0.0068,0.3422,0.3826,0.5168,0.463,0.6778,1,0.3288,0.0738,0.2214,0.5302,0.5168,0.6912,0.1544,0.1812,0.0604,-0.1812,0.1006,-0.2752,0.3692,0.1812,-0.0604,0.0872,-0.4228,-0.9968,1,-1,-1,-1,-1,-0.8,-1,-1,-0.28,0.2,0.4,0.64,0.82,1,0.7,0.6,0.32,0.32,0.18,0.24,0.32,0.84,0.94,0.8,0.4,0.28,0.42,0.08,0.5,0.38,0.16,-0.02,0.04,0.2,0.16,0.34,-0.16,-0.04,-0.14,-0.54,'21'
-0.4166,0.1994,0.222,0.4814,0.4846,0.141,0.1442,-0.0826,-0.0048,-0.0664,-0.0632,-0.0438,-0.0048,0.0956,0.1216,0.2804,0.3518,0.6628,0.7602,0.8996,1,0.7568,0.7116,0.7828,0.9352,0.7116,0.8184,0.6434,0.5656,0.5008,0.504,0.5948,-0.3622,0.1792,0.197,0.5146,0.5172,0.1614,0.197,0.108,0.1462,-0.019,0.0394,0.0674,0.1486,0.042,0.1512,0.169,0.296,0.441,0.6264,0.7102,0.9568,0.8552,0.6874,0.6036,0.878,0.8298,1,0.9772,0.751,0.7408,0.6442,0.6646,-0.399,0.1372,0.1496,0.4938,0.5012,0.1396,0.1472,0.0674,0.0998,0.01,0.0598,0.0074,0.0798,0.0624,0.1446,0.1472,0.2544,0.3566,0.4862,0.6434,0.8254,0.7008,0.818,0.7232,0.8778,0.7956,1,0.9426,0.8354,0.8004,0.7032,0.6832,-0.3308,0.1964,0.1964,0.5582,0.54,0.186,0.1654,0.1136,0.1008,0.0878,0.075,0.0672,0.0698,0.106,0.1136,0.2404,0.2662,0.336,0.3696,0.7184,0.7674,0.9406,1,0.7286,0.8062,0.845,0.938,0.8346,0.9044,0.7312,0.726,0.726,-0.3188,0.1508,0.313,0.5972,0.484,0.0812,-0.1044,-0.0406,-0.1478,-0.0638,-0.1624,-0.1276,-0.1276,-0.0928,0.0434,0.0492,0.1334,0.1826,0.4058,0.5768,0.829,0.971,0.9594,0.8086,0.7768,0.8434,0.971,1,0.9044,0.8666,0.771,0.8232,-0.3616,0,0.4928,0.583,0.1632,-0.2362,-0.277,-0.3206,-0.2158,-0.3616,-0.3878,-0.3586,-0.2508,-0.2128,-0.1632,-0.105,-0.032,0.0874,0.2244,0.4256,0.7696,0.8396,0.8834,0.793,0.7726,0.7784,0.8804,1,0.9708,0.793,0.6852,0.7696,-0.1556,0.2484,0.495,0.6324,0.0102,-0.5758,-0.4748,-0.693,-0.8102,-0.802,-0.8546,-0.9758,-0.592,-0.5516,-0.4708,-0.3778,-0.3374,-0.2728,-0.0788,0.1758,0.4182,0.7696,0.8182,0.7536,0.7738,0.8222,0.9394,1,0.7374,0.709,0.5434,0.709,-0.2572,0.2,0.3142,0.3142,0.2572,-0.2,-0.3714,-0.3714,-0.3142,-0.3714,-0.3714,-0.5428,-0.3142,-0.2572,-0.0858,0.0858,0.4858,0.6572,1,0.9428,0.6572,0.8286,0.8286,0.8286,0.7142,-0.1428,0.3142,0.2,0.2,0.3142,-0.0858,0.5428,-0.194,0.3134,0.3432,0.6418,0.612,0.3134,0.3134,0.1344,0.1344,0.1344,0.1344,0.1344,0.1642,0.2836,0.2836,0.403,0.4328,0.6716,0.7612,0.9104,1,0.791,0.8208,0.8806,1,0.8508,0.8508,0.7014,0.6716,0.6418,0.7014,0.7612,-0.37,0.1812,0.1812,0.5276,0.5276,0.1496,0.1496,0.0708,0.0866,0.0552,0.0708,0.0394,0.0708,0.0552,0.0866,0.2126,0.2756,0.3386,0.4016,0.685,0.7638,0.8268,0.9528,0.811,0.874,0.8582,1,0.8582,0.9212,0.811,0.748,0.7166,-1,-0.9832,-0.9902,-0.9854,-0.9756,-0.9322,-0.9714,-0.9874,-0.9818,-0.9826,-0.9392,0.5494,0.8062,0.6942,0.692,0.5696,0.4702,0.4332,0.3736,0.4772,0.4184,-0.0994,-0.7844,-0.944,-0.9692,-0.97,-0.9784,-1,-1,-1,-1,-1,-1,-1,-0.9918,-0.9936,-0.9938,-0.9878,-0.9702,-0.9868,-0.9876,-0.9822,-0.9722,-0.9636,-0.044,0.3396,0.6604,0.9686,0.836,0.6692,0.3796,0.183,-0.0098,-0.2798,-0.7294,-0.9228,-0.9684,-0.9766,-0.9778,-0.9872,-1,-1,-1,-1,-1,-1,-1,-0.8918,-0.9734,-0.91,-0.75,-0.58,-0.5568,-0.5834,-0.1568,0.1966,-0.1168,-0.2144,-0.2258,-0.0226,-0.04,-0.06,0.0824,-0.0126,-0.1676,-0.32,-0.445,-0.635,-0.21,-0.2068,-0.5368,-0.23,-0.7734,-1,-1,-1,-1,-1,-1,-1,-0.2858,-1,-0.9428,-0.0858,-0.2286,-0.4,-0.7142,-0.3714,-0.4,1,1,1,-0.6858,-0.9428,-0.9714,-0.7714,-0.9714,-0.9428,-0.8,1,1,0.6572,0.5142,-0.2,-0.2286,-0.5714,-1,-1,-1,-1,-1,-1,0.5086,0.54,0.5698,0.5934,0.6232,0.6414,0.6624,0.6872,0.7048,0.4666,0.6448,0.6834,0.702,0.6988,0.7482,0.761,0.8026,0.8754,0.9502,1,-0.8266,-0.1058,-0.963,-0.7756,0.16,0.2738,0.2296,1,0.0564,0.083,-0.0166,0.0564,0.1628,0.3554,0.608,0.721,0.6878,0.3356,0.927,1,0.6678,0.8338,0.5016,0.5216,0.6346,0.5084,0.6744,0.6612,0.5748,0.6412,0.6744,0.5084,0.6678,0.5016,0.5748,0.6612,0.5946,0.475,0.196,-0.1362,-0.369,-0.4642,0.0178,-0.006,0.0238,0.0834,0.363,0.363,0.3988,0.4464,0.6904,0.5952,0.9166,1,0.7976,0.756,0.6846,0.744,0.863,0.9286,0.881,0.863,0.994,0.869,0.9404,0.7738,0.7678,0.8214,0.8214,0.7976,0.5952,0.2858,-0.465,-0.455,-0.31,-0.315,-0.12,-0.085,0.1,0.15,0.375,0.61,0.765,0.555,0.8,0.895,0.865,0.81,1,0.775,0.83,0.675,0.74,0.92,0.875,0.855,0.945,0.695,0.695,0.94,0.71,0.615,0.67,0.23,-0.9378,-1,1,-1,-1,-1,-1,0.1666,-1,-0.3134,-0.0598,0.1642,-0.0448,0.2238,0.209,0.3134,0.5074,0.6716,0.3432,0.2836,0.3732,0.7762,0.6716,0.4478,0.6568,0.6568,0.403,0.3582,0.3134,0.7612,0.7164,0.612,0.7014,0.8358,0.9104,1,0.9702,0.8508,0.8508,0.6568,0.5074,'22'
-0.4614,0.286,0.3404,0.6338,0.6672,0.2134,0.286,0.1134,0.2164,-0.05,0.0984,0.053,0.2648,0.168,0.3222,0.3768,0.7368,0.7246,0.8972,0.891,0.6218,0.6672,0.7488,0.6854,0.7096,0.7852,0.9032,1,0.8246,0.8214,0.7246,0.8698,-0.4574,0.126,0.1524,0.5846,0.6086,0.1596,0.2028,0.0636,0.1404,-0.0012,0.1068,-0.0444,0.0948,0.03,0.2364,0.1596,0.4334,0.3422,0.5966,0.551,0.479,0.467,0.856,0.8632,0.8416,0.8848,0.916,1,0.6974,0.743,0.515,0.6542,-0.3764,0.167,0.1848,0.568,0.5902,0.225,0.2694,0.0846,0.1448,0.0734,0.1582,0.0156,0.1292,0.098,0.2538,0.1848,0.3986,0.314,0.3698,0.3318,0.7016,0.6682,0.9644,0.9688,0.7616,0.7796,0.9466,1,0.7662,0.7662,0.5746,0.6816,-0.4378,0.1246,0.1476,0.602,0.5738,0.1938,0.1682,0.0372,0.0116,0.0758,0.0552,0.0192,0.0064,0.0834,0.0784,0.2452,0.2452,0.1656,0.1708,0.4018,0.4634,0.864,0.8844,0.8922,0.8998,0.8126,0.846,0.9768,1,0.864,0.7406,0.6328,-0.311,0.145,0.4324,0.668,0.5292,0.1128,-0.0732,-0.0236,-0.0112,-0.0038,-0.0756,-0.083,-0.0756,-0.0236,0.0732,0.093,0.2094,0.2268,0.1698,0.1896,0.4002,0.606,0.8686,0.9702,0.9256,0.8092,0.8438,0.9554,1,0.9852,0.762,0.6456,-0.3704,0.0572,0.6536,0.726,0.1416,-0.2168,-0.268,-0.1716,-0.1868,-0.3042,-0.247,-0.2802,-0.259,-0.2138,-0.1868,-0.1054,0.0452,0.0602,0.2198,0.1928,0.1626,0.262,0.4216,0.7922,0.8674,0.732,0.735,0.8254,0.988,1,0.759,0.6506,-0.1748,0.3004,1,0.9552,-0.26,-0.3004,-0.4036,-0.556,-0.8654,-0.7938,-0.8252,-0.7174,-0.5382,-0.4304,-0.4484,-0.5874,-0.5022,-0.2556,0.009,0.0896,0.4708,0.547,0.574,0.3722,0.7802,0.9148,0.6726,0.6996,0.7982,0.9104,0.7578,0.7714,-0.591,0.3182,0.4546,0.091,0.2728,0.091,0.1818,0,0.0454,0,-0.0454,0.091,-0.091,0.409,0.3636,0.591,0.6364,0.8182,0.909,0.5454,0.7728,0.6364,0.6818,0.591,0.3182,0.3636,0.6818,0.8182,0.7272,1,0.8636,1,-0.5,0.3076,0.3846,0.6538,0.7308,0.3076,0.3076,0.1154,0.3076,0.1154,0.1538,0.077,0.3846,0.3462,0.3846,0.5,0.8462,0.9616,0.8076,0.9616,0.8462,0.923,0.8846,0.5384,0.6538,0.8076,0.8462,0.8462,1,0.8076,0.8846,0.8076,-0.4182,0.0364,0.3454,0.5818,0.4182,-0.0546,-0.1636,-0.1272,-0.0728,-0.091,-0.1636,-0.2,-0.0728,-0.1272,-0.0182,0.0182,0.109,0.091,0.091,0.1818,0.2182,0.509,0.709,1,0.8728,0.7818,0.7818,0.8364,0.9272,1,0.691,0.6182,-1,-1,-1,-1,-1,-1,-0.9866,-0.986,-0.9824,-0.9758,-0.8664,0.5686,0.9866,0.8264,0.4798,0.3128,0.2552,0.1826,0.1488,0.1246,0.3158,-0.1506,-0.7882,-0.8948,-0.9474,-0.9764,-0.9836,-0.9854,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.981,-0.9638,-0.9492,-0.9318,-0.9062,0.305,0.8908,0.682,0.5018,0.417,0.2686,-0.0226,-0.2724,-0.4704,-0.3132,-0.7272,-0.9296,-0.9548,-0.9692,-0.9824,-0.9742,-0.9918,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4244,-0.2634,-0.3134,-0.15,0.02,-0.4876,-0.185,-0.3176,-0.125,-0.19,-0.2178,-0.3424,-0.44,-0.6246,-0.6356,-0.789,-0.8134,-0.48,-0.38,-0.4334,-0.56,-0.8934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.2286,0.0572,-0.5714,-0.4286,1,1,0.0286,-0.7142,-0.8572,-0.7714,-0.8,-0.8286,-0.6572,-0.6572,1,1,0.0572,-0.6572,-0.5142,-0.5428,0.0858,0.0286,-1,-1,-1,-1,-1,0.703,0.7246,0.7312,0.7404,0.7594,0.7638,0.7714,0.7844,0.7912,0.544,0.3332,0.3964,0.4322,0.4878,0.5594,0.6286,0.728,0.8222,0.9482,1,-0.8134,-0.0118,-0.9024,-0.5276,0.4026,0.6462,0.8446,1,-0.4722,-0.3666,-0.3256,-0.3256,-0.261,0.0382,0.261,0.2434,0.5484,0.6892,0.742,0.7184,0.7712,0.7184,0.8534,0.6246,0.6832,0.648,0.9414,0.7948,0.7596,0.9648,1,0.9648,0.8006,0.8886,0.8476,0.824,0.6656,0.5542,0.478,0.0968,-0.824,-0.728,-0.6054,-0.4506,-0.2694,-0.0774,-0.0826,-0.0134,0.584,0.8666,1,0.9894,0.648,0.6054,0.6426,0.5626,0.7226,0.696,0.7226,0.8934,0.7386,0.7226,0.7334,0.808,0.616,0.712,0.6694,0.504,0.664,0.52,0.6054,0.1894,-0.3636,-0.2046,-0.0272,-0.0864,0.109,0.141,0.2228,0.35,0.6318,0.7682,0.891,0.9364,0.6682,0.691,0.5818,0.5682,0.8272,0.6636,0.5864,0.709,0.7318,0.9864,0.9546,0.7546,0.8364,0.8728,1,0.941,0.859,0.6682,0.55,0.259,-0.9772,-1,1,-1,-1,-1,-0.4,0.0334,-1,-0.22,-0.04,0.12,0.32,0.26,0.18,0.18,0.18,0.76,0.86,0.9,1,0.8,0.9,0.44,0.7,0.68,0.74,0.72,0.64,0.38,0.52,0.32,0.26,0.3,0.22,-0.18,-0.08,-0.2,-0.24,0,-0.68,'22'
-0.2506,0.3318,0.246,0.246,0.0926,-0.377,-0.3002,-0.2686,-0.386,-0.3634,-0.4312,-0.4808,-0.228,-0.3318,-0.1016,-0.0564,0.0428,0.2822,0.4762,0.7832,0.8284,0.8646,0.6614,0.6976,0.7608,0.9594,0.9098,1,0.824,0.851,0.7336,0.8148,-0.2832,0.1644,0.2278,0.3782,0.097,-0.1524,-0.196,-0.2316,-0.2514,-0.398,-0.3702,-0.3268,-0.2674,-0.1762,-0.2158,-0.0416,-0.0298,0.1406,0.5644,0.6514,0.9406,0.9486,0.5326,0.4892,0.5644,0.7862,0.893,0.9882,1,0.798,0.7346,0.7742,-0.3602,0.0422,0.3522,0.4728,0.1188,-0.2394,-0.2516,-0.3642,-0.2838,-0.4326,-0.4044,-0.3078,-0.3602,-0.2474,-0.151,-0.0704,0.0906,0.163,0.485,0.7586,0.9034,0.682,0.6902,0.678,0.678,0.8752,0.9236,1,0.682,0.67,0.7062,0.674,-0.348,0.014,0.6024,0.7098,0.2922,-0.2286,-0.0536,-0.2922,-0.2486,-0.2804,-0.3758,-0.1968,-0.181,-0.1492,0.014,0.0178,0.177,0.4274,0.6462,0.9562,0.841,0.8808,0.833,0.9126,1,0.9046,0.7614,0.6182,0.5546,0.499,0.5666,0.7416,-0.3552,-0.0102,0.5812,0.655,0.31,0.2074,0.154,-0.0432,-0.0636,-0.0432,-0.1006,-0.0308,0.1498,0.1006,0.2608,0.5606,0.5812,0.7988,0.7412,0.8398,0.8234,0.8358,1,0.8234,0.618,0.4128,0.3758,0.3182,0.2648,0.3348,0.5482,0.5688,-0.1904,0.2172,0.8124,0.8392,0.807,0.614,0.4478,0.3136,0.1796,0.2332,0.2976,0.4424,0.6676,0.9196,0.8982,0.732,0.4906,0.5228,0.4262,0.5068,0.7104,1,1,0.6408,0.3136,0.3404,0.0938,0.0616,0.1314,0.2386,0.3404,0.4692,-0.0216,0.4244,0.892,0.8346,1,0.3598,0.1152,0.2878,0.2014,0.4964,0.5612,0.2734,0.0432,-0.187,-0.331,-0.367,-0.5252,-0.3812,-0.4316,-0.295,-0.3238,0,0.2374,0.072,-0.2302,-0.367,-0.4676,-0.669,-0.5396,-0.5036,-0.259,-0.0504,-0.45,0.35,0.3,-0.1,-0.05,-0.4,-0.7,-0.45,-0.7,-0.55,-0.9,-0.45,-0.25,-0.25,-0.2,0,0.05,0.05,0.6,0.65,0.9,0.95,0.55,0.65,0.9,1,0.85,0.65,0.65,0.6,0.6,0.7,-0.3182,0.2272,0.1818,0.1818,0,-0.4546,-0.3636,-0.2272,-0.409,-0.3636,-0.409,-0.4546,-0.2728,-0.4546,-0.091,-0.091,0,0.3636,0.4546,0.8636,0.9546,0.7728,0.5454,0.6818,0.5454,1,0.9546,1,0.8182,0.8182,0.7272,0.7728,-0.2584,0.0786,0.618,0.663,0.573,0.4158,0.2808,0.146,0.1012,0.1012,0.1012,0.1236,0.3484,0.5506,0.6854,0.9776,0.8426,0.5506,0.4158,0.4832,0.7978,0.7978,1,0.618,0.4158,0.3484,0.1236,0.1686,0.191,0.191,0.3932,0.5956,-0.9842,-0.9882,-0.3486,0.835,1,1,1,-0.1898,-0.927,-0.9552,-0.7194,-0.3934,-0.3454,-0.2408,-0.09,0.127,0.6392,0.9458,0.4036,0.0396,-0.046,-0.3516,-0.8074,-0.9536,-0.9678,-0.974,-0.9842,-1,-1,-1,-1,-1,-1,-0.9878,-0.9866,-0.2508,1,1,1,1,-0.3726,-0.9408,-0.955,-0.84,-0.1256,0.2058,0.3774,0.4424,0.4894,0.7608,0.7652,0.1908,-0.1772,-0.4054,-0.6958,-0.9108,-0.9652,-0.9716,-0.98,-0.9862,-1,-1,-1,-1,-1,-1,-0.9668,-0.94,-0.1634,-0.5334,-0.4068,-0.4268,-0.4468,-0.48,-0.5768,-0.6768,-0.5834,-0.1234,0.3032,0.2266,0.0266,-0.1268,-0.3034,-0.5134,-0.4972,-0.6544,-0.7772,-0.8344,-0.8168,-0.65,-0.7134,-0.7334,-0.9734,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,0.4858,0.1714,1,1,1,1,1,1,0,-1,-0.8858,-0.8572,-0.7428,-0.4572,0.6,1,1,1,1,-0.8286,-0.6858,-0.7142,-0.2,-1,-1,-1,-1,-1,-1,0.0688,0.0688,0.0698,0.1026,0.1316,0.1772,0.199,0.2324,0.264,0.4428,0.8804,0.8804,0.8708,0.9198,0.9068,0.929,0.951,0.9906,1,0.399,-0.6534,-0.2942,-0.8412,-0.4154,-0.0852,0.1212,0.2302,1,-0.0936,0.4384,0.7536,0.8128,0.3694,0.33,1,1,0.7932,0.6158,0.6256,0.33,0.133,-0.0444,0.1822,0.6552,0.7242,0.6848,0.2216,0.606,0.7536,0.7438,-0.1134,0.1034,0.0148,-0.2216,0.0542,0.261,-0.1922,0.0246,-0.1724,-0.5566,-0.2208,0.004,0.9678,1,0.2208,0.51,0.8474,0.8314,0.7028,0.3816,0.502,0.3494,0.1646,0.237,0.3012,0.5984,0.5904,0.6948,0.2932,0.4618,0.245,0.5824,-0.0442,0.1566,-0.0764,0.0924,0.0924,0.0844,-0.1808,-0.1888,-0.3254,-0.4618,0.3776,0.4854,0.585,0.668,0.0208,0.0124,0.2864,0.8092,0.7012,0.7676,0.7096,1,0.9502,0.834,0.8258,0.7344,0.8506,0.7428,0.9752,0.9254,0.8174,0.7012,0.6514,0.5518,0.4274,0.6016,0.5602,0.3112,0.3278,0.419,0.3526,-0.1204,-1,-1,1,-1,-1,1,-1,-0.3334,-1,0.0316,0.5368,0.3474,0.5158,0.5158,0.6632,0.7264,0.7684,0.8948,1,0.6842,0.6,0.6632,0.4526,0.7894,0.4526,0.579,0.4948,0.621,0.6,0.4526,0.4106,0.0526,0.5158,0.221,0.3474,-0.0316,-0.0106,0.3684,0.4526,0.179,-0.0948,'23'
-0.2334,0.2612,0.3778,0.6334,0.4722,-0.0666,-0.1,-0.05,-0.2,-0.1834,-0.2,-0.2556,-0.0722,-0.1834,-0.0166,0.0278,0.1444,0.4612,0.5334,0.9778,0.9612,0.8722,0.8278,0.9334,0.85,1,0.7722,0.6778,0.5556,0.6278,0.6444,0.6778,-0.2922,0.1516,0.6068,0.7922,0.573,-0.045,0.0506,0.0168,-0.2304,-0.2866,-0.118,-0.2416,-0.1686,0.0338,0.0168,0.1966,0.4214,0.5786,0.9382,1,0.8314,0.8146,0.9102,0.7696,0.6348,0.4776,0.337,0.3202,0.337,0.3596,0.4606,0.5956,-0.3156,0.0796,0.711,0.829,0.4336,0.233,0.2802,0.115,-0.121,0.0738,0.056,-0.0088,0.1858,0.3098,0.4278,0.6578,0.9528,0.8348,0.823,0.8998,0.9292,1,0.9352,0.528,0.3216,0.2862,0.1682,0.115,0.233,0.233,0.3038,0.3924,-0.1944,0.2156,0.9222,1,0.6114,0.477,0.5266,0.1096,0.1024,0.2932,0.1024,0.1872,0.6466,0.7456,0.9364,0.9364,0.9788,0.583,0.5336,0.8092,0.9294,0.9718,0.7032,0.5406,0.4416,0.0954,-0.053,0.166,0.0106,0.0742,0.4628,0.4628,-0.1742,0.2576,0.947,1,0.6516,0.4848,0.4924,0.144,0.0758,0.2728,0.2804,0.6288,0.8864,0.6666,0.5378,0.3106,0.2272,-0.0378,0.2046,0.1894,0.5,0.4924,0.6516,0.106,-0.0984,-0.394,-0.2122,-0.1818,-0.394,-0.2348,-0.091,-0.2652,-0.1702,0.2698,0.9752,1,0.6764,0.444,0.4108,0.1536,0.2448,0.2864,0.5436,0.4606,0.5768,0.0706,-0.0374,-0.1286,-0.1868,-0.2532,-0.1618,0.1868,0.1784,0.5186,0.4024,-0.0872,-0.3444,-0.5104,-0.4772,-0.4772,-0.4606,-0.3776,-0.1784,-0.2366,-0.106,0.2534,0.8064,0.7972,0.6774,0.152,0.1336,0.2718,0.3824,0.8248,1,0.5392,0.152,-0.0046,-0.493,-0.4286,-0.4194,-0.493,-0.3918,-0.2442,-0.106,-0.1152,0.2166,0.2534,-0.0968,-0.53,-0.4654,-0.7236,-0.6036,-0.4102,-0.4838,-0.2166,-0.1578,0.2982,0.3334,0.579,0.4036,0.0526,-0.0878,-0.0176,-0.1578,-0.1228,-0.1228,-0.193,0.0176,-0.1228,0.0526,-0.0526,0.1578,0.4036,0.5088,0.8246,0.8596,0.8948,0.8596,0.8596,0.8596,1,0.7894,0.7544,0.4736,0.614,0.6492,0.7192,-0.2,0.2728,0.3818,0.6364,0.491,0.091,-0.0546,0.0182,-0.1272,-0.1272,-0.091,-0.2,-0.0546,-0.1272,0.091,0.091,0.2,0.5272,0.5272,1,1,0.8546,0.6728,0.9272,0.7818,0.9636,0.5636,0.6728,0.6,0.6728,0.6728,0.6364,-0.1952,0.1464,0.878,0.9512,0.5854,0.439,0.5122,0.1464,0.0976,0.244,0.1464,0.1952,0.7074,0.8536,1,0.5366,0.561,0.2926,0.4634,0.6342,0.7074,0.683,0.4634,0.2926,0.1708,-0.0488,-0.3658,-0.1952,-0.3414,-0.244,0.1464,0.1952,0.791,0.942,0.8696,0.2386,-0.8152,-0.9076,-0.4614,-0.4906,-0.4988,-0.3712,-0.1748,0.072,0.4792,0.8898,0.992,0.7082,0.4052,0.195,0.0802,-0.0094,-0.1168,-0.381,-0.7628,-0.9552,-0.9702,-0.9822,-0.9828,-1,-1,-1,-1,-1,-1,1,1,1,0.688,-0.8494,-0.8922,-0.1868,-0.2274,-0.2702,0.0016,0.269,0.6164,0.808,0.9,0.9612,0.8008,0.488,0.011,-0.218,-0.3002,-0.4362,-0.539,-0.8484,-0.9302,-0.9612,-0.9756,-0.9834,-1,-1,-1,-1,-1,-1,-0.67,-0.6268,-0.71,-0.6234,-0.78,-0.5968,-0.5,-0.4234,-0.1834,-0.12,-0.0168,-0.245,-0.445,-0.585,-0.7106,-0.6818,-0.6918,-0.8738,-0.8738,-0.8738,-0.8738,-0.8138,-0.7586,-0.5252,-0.8052,-0.8586,-0.8452,-1,-1,-1,-1,-1,-1,-0.4,-0.4858,1,1,1,1,1,-0.0858,-0.6,-0.6858,-0.4858,-0.7142,-0.6286,-0.4,-0.2286,0.1142,0.8572,1,0.8572,-0.5714,0.0572,1,1,-0.4,-0.1142,-0.4572,-0.4,-1,-1,-1,-1,-1,-1,0.3946,0.403,0.4106,0.419,0.4324,0.4382,0.4536,0.5008,0.5876,0.616,0.9248,0.8482,0.8708,0.8688,0.8388,0.8246,0.7382,0.5718,0.2138,-0.3376,-0.6134,-0.5412,0.285,0.5148,0.7272,0.8166,0.885,1,0.4852,0.6808,0.868,0.966,0.1532,0.251,0.5106,0.949,1,0.8554,0.7788,0.8,0.4128,0.3362,0.7404,0.9192,0.749,0.7106,0.4766,0.3532,0.4766,0.4426,0.3234,-0.1064,-0.1106,-0.0256,0.149,0.068,0.068,0.0852,-0.0596,-0.3064,0.3794,0.5366,0.3062,0.1626,-0.0216,-0.0272,0.0814,0.2086,0.4228,0.7832,1,0.8916,0.8808,0.8888,0.7534,0.7616,0.7886,0.813,0.8862,0.8726,0.8374,0.355,0.1382,0.0894,0.1084,0.0732,0.1978,0.0976,0.0678,0.1166,0.0732,-0.0488,0.2598,0.3828,0.4084,-0.0974,-0.1438,-0.2134,-0.072,-0.0488,0.1832,0.4502,0.8214,0.7726,0.7634,0.8724,0.8538,0.7332,0.8446,1,0.9884,0.9118,0.8144,0.6752,-0.0232,-0.2808,-0.1532,0.0882,0.3178,0.1786,0.1972,0.1462,0.0464,-0.2018,-1,-1,1,-1,1,1,-1,0.4334,-1,-0.303,0.1212,0.0454,0.1818,0.3788,1,0.7878,0.6364,0.5758,0.5,0.4696,0.4546,0.1364,0.1364,0.2272,0.2272,0.1666,0.2728,0.2424,0.1212,0.2424,0.1666,0.106,0.0454,0.197,0.0758,-0.0152,-0.197,-0.303,-0.1364,-0.106,-0.2424,'23'
-0.4612,0.1366,0.1956,0.3726,0.7048,1,0.8966,0.5056,0.2842,0.4096,0.3506,0.358,0.4244,0.5424,0.631,0.7122,0.8376,0.8228,0.845,0.749,0.69,0.6532,0.7638,0.8154,0.8746,0.8892,0.7196,0.6606,0.5868,0.5498,0.476,0.5276,-0.4334,-0.0034,0.1126,0.3038,0.6724,0.8156,0.5972,0.7134,0.488,0.5086,0.4266,0.4198,0.5494,0.488,0.6656,0.761,0.9044,0.761,0.8772,0.6588,0.7406,0.8156,0.8362,0.9864,0.959,1,0.918,0.768,0.6724,0.686,0.5836,0.6724,-0.3962,0.0504,0.0188,0.3018,0.6164,0.761,0.6164,0.7106,0.4402,0.5284,0.415,0.4528,0.5534,0.5598,0.761,0.717,0.9496,0.8616,0.8114,0.6982,0.7862,0.868,0.9874,0.9182,1,0.8364,0.849,0.6666,0.6856,0.6416,0.6478,0.673,-0.4592,-0.0314,-0.0188,0.2076,0.5032,0.6666,0.5724,0.717,0.5472,0.5094,0.3774,0.4592,0.5346,0.5724,0.7736,0.7924,0.9308,0.9182,0.7484,0.7296,0.8868,0.8364,1,0.912,0.9308,0.805,0.7106,0.6352,0.6352,0.5346,0.6164,0.6352,-0.4222,-0.0096,0.0412,0.2572,0.5556,0.6762,0.7968,0.8604,0.5174,0.5238,0.492,0.4604,0.6064,0.5302,0.8158,0.835,0.9936,0.835,0.8096,0.9048,0.9556,0.9936,1,0.9682,0.9238,0.7524,0.6572,0.6444,0.5428,0.562,0.5366,0.638,-0.4452,-0.0616,0.1232,0.2466,0.6028,0.637,0.8356,0.8082,0.4794,0.3836,0.3972,0.4794,0.5342,0.6506,0.6644,0.9384,0.911,0.959,0.8836,0.9246,0.9794,1,0.9658,0.8836,0.726,0.6164,0.5754,0.5,0.4932,0.4726,0.4726,0.5068,-0.4314,-0.1372,0.1906,0.224,0.5652,0.4648,0.3578,0.2174,0.224,0.0368,-0.0302,0.1506,0.204,0.2576,0.6254,0.679,0.9934,1,0.9264,0.7792,0.7392,0.612,0.5652,0.5518,0.4516,0.3578,0.1572,0.1572,0.1238,0.1036,0.1304,0.2442,-0.423,0.1924,0.1924,0.5,0.8462,1,0.8462,0.6154,0.4616,0.4616,0.3846,0.423,0.3846,0.5,0.577,0.7692,0.923,0.9616,0.923,0.8076,0.6538,0.577,0.7692,0.8462,0.8846,0.923,0.8076,0.5384,0.577,0.6154,0.5,0.4616,-0.3334,0.0794,0.1746,0.365,0.7142,0.9682,0.9682,0.6508,0.4604,0.492,0.4286,0.3334,0.5238,0.492,0.619,0.8096,0.873,0.9366,0.9366,0.746,0.6826,0.7778,0.8096,0.873,0.9366,1,0.8096,0.8096,0.6826,0.6826,0.6826,0.5874,-0.5214,-0.1282,0.0428,0.1794,0.5214,0.5898,0.7948,0.812,0.4018,0.3846,0.3676,0.3846,0.4872,0.624,0.6752,0.9146,0.9488,0.8632,0.7948,0.8804,0.8632,1,0.8632,0.9146,0.6752,0.6752,0.5726,0.5384,0.453,0.4018,0.4872,0.5898,-1,-1,-1,-1,-1,-1,-1,-0.9858,-0.9842,-0.9842,-0.6542,0.5384,1,0.5974,0.5424,0.4612,0.4628,0.4676,0.3698,0.2092,0.0082,-0.3746,-0.9038,-0.9638,-0.9804,-0.981,-0.8582,-0.9724,-0.9796,-0.978,-0.9796,-0.9834,-0.9756,-1,-1,-1,-1,-1,-1,-1,-0.9948,-0.9936,-0.972,-0.7656,-0.2132,0.506,0.4552,0.5294,0.7316,0.9948,0.959,0.8396,0.6508,0.0352,-0.6632,-0.9588,-0.983,-0.9894,-0.9914,-0.8932,-0.8698,-0.8936,-0.9152,-0.8816,-0.8394,-0.8864,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.8868,-0.7468,-0.64,-0.62,-0.5868,-0.4734,-0.4734,-0.46,-0.5134,-0.46,-0.4934,-0.425,-0.325,-0.375,-0.4034,-0.4868,-0.59,-0.7234,-0.39,0.5966,0.9966,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-0.8858,0.8286,1,1,1,1,1,-0.6,-0.8286,-1,-0.9714,-0.5428,1,1,1,1,0.4858,-0.6572,1,1,1,-0.6572,-0.6572,-0.7714,-0.5714,-0.4858,1,1,1,1,1,1,1,1,1,1,0.1582,0.1364,0.1364,0.1736,0.2564,0.2696,0.2934,0.3,0.2788,0.0456,-0.7466,-0.6942,-0.6316,-0.4368,0.2972,0.4686,0.5012,1,-0.0344,0.4138,0.5862,0.6552,0.5862,0.5862,0.5518,0.7586,0.8966,0.9656,1,0.9656,0.8966,0.8276,0.7932,0.6552,0.6552,0.6896,0.7242,0.7586,0.6896,0.5518,0.4138,0.3448,0.5518,0.5862,0.5862,0.4482,0.4828,0.2758,0.069,-0.069,-0.2952,0.3524,0.6762,0.7524,0.3904,0.2952,0.219,0.619,0.9238,0.9238,0.9048,1,0.8096,0.7334,0.7334,0.3524,0.4476,0.4666,0.6,0.7524,0.638,0.219,0.0858,-0.0666,0.4476,0.638,0.5238,0.3714,0.3904,0.3904,0.1238,-0.0096,0.1882,0.604,1,0.9604,0.6238,0.6832,0.8812,0.9604,0.9604,0.8614,0.901,1,0.901,0.9208,0.6832,0.7426,0.8416,0.604,0.7822,0.8614,0.901,0.703,0.3862,0.3466,0.406,0.6436,0.604,0.4852,0.4654,0.2674,0.2872,0.1288,0.3032,-1,-1,1,-0.8,-1,-1,-0.8334,1,-0.558,-0.757,-0.5248,-0.2928,-0.094,-0.0276,0.0276,-0.1934,0.116,0.094,0.3038,0.2818,0.315,0.4586,0.4034,0.348,0.5028,0.1602,0.6132,0.5028,0.6132,0.5802,0.7128,0.768,0.9006,0.8564,0.8454,1,0.9338,0.9448,0.8454,0.7016,'24'
-0.508,0.0374,0.0696,0.4546,0.5454,0.8074,0.77,0.5562,0.4598,0.4386,0.3796,0.401,0.4118,0.508,0.5882,0.6952,0.8984,1,0.861,0.9466,0.7006,0.7648,0.615,0.7326,0.77,0.8556,0.77,0.8396,0.6524,0.6632,0.5882,0.5936,-0.4502,0.0134,0.0836,0.3478,0.5956,0.779,0.628,0.7142,0.4824,0.5364,0.4232,0.477,0.5202,0.558,0.6388,0.7466,0.9246,0.903,0.9408,0.8114,0.7898,0.8168,0.8598,1,0.9892,1,0.9622,0.8598,0.7898,0.7412,0.6604,0.682,-0.4712,0,-0.0262,0.2828,0.487,0.7486,0.6388,0.7278,0.602,0.513,0.3822,0.5078,0.4608,0.5654,0.7016,0.7854,0.8796,0.9372,0.7226,0.7802,0.801,0.822,0.9738,0.9738,1,0.979,0.8272,0.7906,0.623,0.5654,0.6388,0.5654,-0.5184,-0.1254,-0.0566,0.1696,0.3612,0.5282,0.6118,0.7396,0.5724,0.4988,0.3906,0.4448,0.5184,0.538,0.7248,0.7298,0.8428,0.828,0.8034,0.7494,0.9066,0.8378,1,0.8674,0.9606,0.8182,0.769,0.5774,0.6216,0.5922,0.6412,0.6118,-0.445,-0.091,0.0478,0.2248,0.4354,0.5312,0.8038,0.8564,0.5502,0.5598,0.4976,0.4594,0.5694,0.5886,0.7512,0.799,0.8852,0.7894,0.8468,0.957,0.9666,1,1,0.976,0.9378,0.8086,0.6938,0.665,0.6028,0.6028,0.6412,0.5886,-0.6,-0.3784,-0.0378,0.0594,0.3028,0.5784,0.6864,0.6432,0.4432,0.4324,0.4,0.3784,0.4108,0.5244,0.719,0.827,0.8648,0.7946,0.8594,0.9406,1,0.9352,0.9568,0.7892,0.7244,0.6432,0.4972,0.4972,0.3136,0.3622,0.4378,0.3676,-0.7988,-0.5266,-0.1716,-0.0356,0.2662,0.4142,0.4556,0.4498,0.2662,0.142,0.0118,0.0946,0.2486,0.2604,0.4498,0.5918,0.935,1,0.858,0.7752,0.5976,0.7634,0.8402,0.6154,0.5088,0.2012,0.219,0.1776,-0.148,0.0236,0.077,0.071,-0.579,-0.0176,0.0526,0.4736,0.5438,0.7544,0.8246,0.5438,0.4736,0.3684,0.4036,0.3334,0.4386,0.4386,0.614,0.6492,0.8948,0.9298,0.9298,1,0.7192,0.7192,0.5088,0.7192,0.6842,0.7544,0.6842,0.7894,0.7544,0.579,0.579,0.4036,-0.5076,-0.0462,0.0462,0.323,0.5076,0.7846,0.723,0.5076,0.4462,0.3846,0.323,0.3538,0.4154,0.477,0.5384,0.6924,0.877,1,0.877,0.8462,0.7846,0.7538,0.723,0.7538,0.8462,0.9384,0.8462,0.9076,0.7538,0.723,0.6616,0.6616,-0.5224,-0.2238,0.0448,0.0896,0.3732,0.5672,0.806,0.7462,0.4626,0.4776,0.4478,0.4776,0.388,0.5224,0.7612,0.8208,0.8508,0.806,0.8208,0.9402,0.985,1,0.9702,0.8208,0.7314,0.7314,0.5672,0.597,0.418,0.403,0.5224,0.4478,-1,-1,-1,-1,-1,-1,-1,-1,-0.9818,-0.9848,-0.5488,0.5306,0.8344,0.8982,0.8032,0.6756,0.3438,0.062,-0.0992,-0.3346,-0.6514,-0.8276,-0.9658,-0.9772,-0.9772,-0.9848,-0.9848,-0.9264,-0.934,-0.9802,-0.9832,-0.9832,-0.9826,-1,-1,-1,-1,-1,-1,-1,-1,-0.9956,-0.996,-0.8266,-0.2896,0.2332,0.3424,0.282,0.6158,0.9572,0.8148,0.317,-0.2344,-0.6234,-0.8696,-0.9778,-0.9888,-0.9926,-0.9942,-0.995,-0.9556,-0.9256,-0.9256,-0.9042,-0.8858,-0.8498,-1,-1,-1,-1,-1,-1,-1,-1,-0.9,-0.9268,-0.7034,-0.4534,-0.44,-0.36,-0.4,-0.36,-0.32,-0.415,-0.335,-0.3,-0.285,-0.3,-0.3734,-0.4134,-0.5534,-0.7068,-0.8268,-0.7468,0.6266,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6858,1,1,1,1,-0.0572,-0.9714,-0.5142,-0.4572,0.1714,1,1,1,1,1,-0.2,-0.6286,-0.8,0.2286,1,1,0.5142,-0.8286,-0.8572,-0.8858,1,1,1,1,1,1,1,1,1,1,0.1458,0.1458,0.2334,0.2518,0.2648,0.2914,0.3118,0.374,0.3914,0.184,-0.76,-0.6118,-0.7898,-0.5092,0.1582,0.298,0.3316,1,-0.2308,0.1538,0.1924,0.423,0.5384,0.5384,0.577,0.577,0.8076,0.9616,1,0.9616,0.923,0.7308,0.6538,0.7308,0.7692,0.8076,0.7692,0.6538,0.6538,0.6538,0.577,0.5384,0.423,0.2692,0.2692,0.3076,0.3076,0.2692,0,-0.3462,-0.1472,0.5658,0.5504,0.7674,0.4884,0.4728,0.6124,0.4108,0.9224,1,0.9224,0.8914,0.876,0.6434,0.752,0.7054,0.69,0.7054,0.5814,0.659,0.5968,0.5348,0.5038,0.4728,0.4728,0.2558,0.3178,0.3954,0.4884,0.4728,0.3488,-0.1628,-0.0542,0.3178,0.7364,0.721,0.5348,0.5348,0.5194,0.69,0.969,1,0.969,0.752,0.69,0.752,0.7054,0.5968,0.4728,0.3954,0.3488,0.5348,0.5968,0.5194,0.4884,0.2248,0.0542,-0.1008,0.1782,0.1008,0.1782,0.1472,0.1472,-0.3334,0.3436,-1,-1,1,-1,-1,-1,-0.8334,1,-0.7354,-0.8202,-0.4708,-0.3968,-0.1216,-0.0688,-0.0264,0.0688,0.1428,0.1322,0.1006,0.2064,0.1852,0.2486,0.3016,0.2698,0.3862,0.2592,0.344,0.5344,0.5978,0.545,0.4392,0.5874,0.7354,0.799,1,0.926,0.8096,0.9682,0.947,0.7038,'24'
-0.3596,0.2478,0.6496,0.9788,0.8822,1,0.7674,0.846,0.4622,0.4924,0.0846,0.0212,-0.1268,-0.1662,-0.2598,-0.3504,-0.2478,-0.3898,-0.3414,-0.3716,-0.3686,-0.0694,-0.1178,-0.1238,-0.2024,-0.003,-0.151,-0.0786,-0.1208,0,-0.148,-0.0484,-0.4452,0.0296,0.0738,0.3818,0.616,0.8924,0.7996,1,0.8924,0.8144,0.6708,0.1624,0.1224,0.2342,0.038,0.0148,0.04,0.1054,0.0486,0.1118,0.0844,0.133,0.1836,0.2046,0.2616,0.2912,0.194,0.1434,0.116,0.0908,0.1562,0.2152,-0.493,-0.0216,-0.0356,0.211,0.3846,0.7062,0.6982,1,0.9388,0.8422,0.7672,0.6884,0.6114,0.4102,0.3116,0.3866,0.2978,0.3156,0.211,0.4044,0.3826,0.572,0.4792,0.6568,0.5306,0.4872,0.359,0.3648,0.2722,0.4202,0.363,0.5088,-0.4658,-0.0274,-0.043,0.2212,0.3484,0.6164,0.7378,0.9686,0.8748,0.8474,0.818,1,0.8708,0.726,0.591,0.6086,0.4384,0.5048,0.4932,0.593,0.6302,0.7124,0.7808,0.859,0.638,0.64,0.5128,0.5656,0.497,0.5322,0.5754,0.6066,-0.384,0.0208,0.0464,0.2714,0.4076,0.538,0.8362,0.929,0.8322,0.8776,0.8716,0.8994,1,1,0.919,0.8854,0.7454,0.6544,0.7078,0.686,0.777,0.6762,0.7908,0.7552,0.7908,0.6426,0.6052,0.5716,0.5992,0.5894,0.6052,0.6742,-0.4312,-0.0266,0.1076,0.2554,0.6346,0.6902,0.8636,0.8336,0.4498,0.3688,0.482,0.4798,0.5722,0.7502,0.7826,1,0.9746,0.9838,0.8752,0.9168,0.8474,0.9098,0.8012,0.7966,0.711,0.63,0.6416,0.5884,0.6232,0.6602,0.6948,0.755,-0.2404,0.2068,0.3722,0.4762,0.902,0.8438,0.4854,0.418,0.2924,0.1088,0.0628,0.118,0.1394,0.2098,0.3782,0.4762,0.5866,0.6754,1,0.9724,0.9418,0.8774,0.9664,0.9448,0.9326,0.758,0.66,0.4762,0.3752,0.4518,0.4088,0.5252,-0.3488,0.3024,0.4884,1,0.8604,0.6744,0.5348,0.4884,0.3488,0.0698,-0.1162,-0.3024,-0.4884,-0.3488,-0.6744,-0.4418,-0.5814,-0.4884,-0.628,-0.6744,-0.5814,-0.3488,-0.4884,-0.3024,-0.628,-0.2558,-0.3488,-0.1628,-0.4418,-0.3954,-0.721,-0.4884,-0.4222,0.0666,0.6,1,0.8666,0.6444,0.5556,0.6444,0.1556,0.2,-0.1556,-0.1556,-0.4666,-0.4666,-0.5556,-0.5112,-0.4222,-0.6888,-0.5112,-0.3778,-0.4222,-0.2888,-0.2444,-0.1112,-0.1112,-0.2444,-0.4666,-0.2444,-0.2888,-0.2444,-0.3334,-0.2444,-0.4306,0.0278,0,0.2778,0.4444,0.7222,0.7778,1,0.9444,0.875,0.8056,0.4722,0.4166,0.3334,0.1944,0.2916,0.1806,0.25,0.125,0.3056,0.2916,0.4306,0.4166,0.5278,0.3888,0.4306,0.2362,0.2916,0.2222,0.3334,0.3194,0.4166,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9878,-0.857,0.0086,0.5918,0.6826,0.5524,0.418,0.3168,0.2032,0.1068,0.1658,0.3044,-0.1958,-0.782,-0.938,-0.9724,-0.9742,-0.9834,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9964,-0.975,-0.7924,-0.4488,0.1552,0.41,0.5302,0.8588,0.8334,0.5724,0.2378,-0.2728,-0.7542,-0.9558,-0.9842,-0.9708,-0.9686,-0.9946,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.8734,-0.809,-0.7356,-0.6224,-0.6,-0.6024,-0.574,-0.514,-0.43,-0.438,-0.442,-0.578,-0.5834,-0.4368,-0.2168,-0.0334,-0.4634,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,1,1,1,1,-0.2,-0.4286,-0.5142,-0.8286,-0.6858,-0.1142,1,1,1,-0.3714,1,1,1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.051,-0.066,-0.0704,-0.0636,-0.0324,0.044,0.033,0.029,-0.067,-0.2394,-0.8,0.1176,-0.985,-0.8774,-0.7908,-0.768,-0.686,0.0834,-0.0392,0.098,0.2746,0.1372,0.0392,0.353,0.8236,0.804,1,0.745,0.3138,0.2156,0.5098,0.4118,0.451,0.5686,0.6078,0.3138,0.3334,0.098,0.2352,0.3334,0.6666,0.196,0.5098,0.255,0.353,0.196,0.0392,0.4118,0.1764,-0.2156,0.2948,0.2436,0.423,0.4872,0.4358,0.7436,0.8206,1,0.859,0.6924,0.9102,0.859,0.7564,0.8206,0.5256,0.4744,0.5256,0.5128,0.6282,0.6282,0.5512,0.8076,0.9488,0.8462,0.7436,0.7564,0.8076,0.5256,0.7948,0.3334,0.5642,0.1154,0.4518,1,0.6296,0.6148,0.5704,0.4518,0.6444,0.6148,0.6296,0.5408,0.363,0.437,0.763,0.2,0.5112,0.4518,0.7926,0.6148,0.437,0.363,0.4518,0.3482,0.0518,0.6444,0.4666,0.363,0.5112,0.2592,0.2148,0.4074,0.2592,-0.0074,-0.9988,1,-1,-1,-1,-1,-1,-1,-1,-0.9218,-0.5468,-0.375,-0.1406,-0.1562,-0.625,-0.1876,-0.25,-0.0156,-0.0782,0,0.1718,0.1094,0.0468,-0.1562,0,-0.0156,0.1562,0.2344,0.4688,0.8594,1,0.9062,0.875,0.9062,0.9688,0.8282,0.7032,0.3594,0.2032,0.0468,-0.1406,'25'
-0.4592,0.0728,0.276,0.6822,0.6688,1,0.9228,1,0.8962,0.6644,0.543,0.3818,0.2538,0.1456,0.0176,0.1502,0.011,0.075,0.0264,0.17,-0.0022,0.0884,0.1788,0.3134,0.49,0.5078,0.4768,0.5652,0.6182,0.6778,0.3886,0.4504,-0.5238,-0.0178,-0.0178,0.337,0.3688,0.804,0.7852,1,0.9926,0.8506,0.8524,0.4042,0.4062,0.197,0.2026,0.2362,0.2436,0.1504,0.1672,0.3222,0.3482,0.4678,0.494,0.5612,0.5948,0.3762,0.4286,0.3576,0.4248,0.3502,0.4304,0.3128,-0.4942,-0.035,-0.044,0.2932,0.313,0.6646,0.6394,1,0.9624,0.9336,0.9014,0.7596,0.7112,0.5086,0.46,0.4224,0.3614,0.408,0.356,0.4798,0.4206,0.6538,0.6072,0.5642,0.5192,0.4762,0.4224,0.4296,0.3776,0.4798,0.4386,0.5766,-0.5116,-0.0894,-0.0268,0.2406,0.2756,0.471,0.705,0.8488,0.7438,0.8654,0.8986,1,0.858,0.8102,0.5778,0.6166,0.5502,0.565,0.5778,0.5724,0.7162,0.6608,0.7124,0.6534,0.517,0.4618,0.4212,0.3752,0.447,0.4654,0.5558,0.5816,-0.426,-0.0552,0.1184,0.2624,0.422,0.4912,0.856,0.8482,0.781,0.6904,0.72,0.7396,0.86,0.923,1,0.9724,0.931,0.7928,0.7376,0.8482,0.8856,0.925,0.8836,0.7376,0.6134,0.5424,0.5306,0.5424,0.5168,0.5622,0.6666,0.6904,-0.4316,-0.109,0.2158,0.282,0.6004,0.626,0.7586,0.468,0.4764,0.3056,0.2244,0.2906,0.4038,0.4166,0.577,0.6774,0.8162,1,0.9808,0.9444,0.8782,0.921,0.953,0.9358,0.9294,0.8098,0.7948,0.6518,0.6068,0.641,0.626,0.718,-0.1914,0.2178,0.373,0.4488,0.759,0.472,0.2046,0.043,-0.0562,-0.2806,-0.4852,-0.5082,-0.2442,-0.1816,-0.1056,-0.1222,-0.0364,0.241,0.4488,0.7854,1,1,0.6666,0.8548,0.99,0.858,0.8514,0.8746,0.5544,0.4818,0.373,0.3796,-0.4444,0.1482,0.4814,0.963,0.926,0.8888,0.6666,1,0.8518,0.4814,0.2592,0.4074,0.1852,0.2222,0.1112,0.1852,0.074,0.1852,0.1852,0.2222,0.3334,0.3704,-0.074,-0.074,0.3704,0.2962,0.5556,0.4074,0.7778,0.6666,0.5926,0.4444,-0.4074,0.037,0.3704,0.7778,0.6666,0.963,0.8888,1,0.926,0.5556,0.4074,0.2962,0.2222,0.1112,0,0.1112,-0.037,0.037,0,0.1482,0,-0.1482,0.1112,0.2962,0.5926,0.7038,0.4444,0.6296,0.7038,0.8148,0.4074,0.5926,-0.5518,-0.2242,0.069,0.1896,0.4138,0.5862,0.7586,0.5862,0.3794,0.2758,0.2586,0.1896,0.3104,0.3794,0.6206,0.6724,1,0.8794,0.931,0.7758,0.7414,0.8794,0.7758,0.8794,0.638,0.6206,0.6034,0.5344,0.5172,0.5172,0.5172,0.7586,-1,-1,-1,-1,-1,-1,-1,-0.9862,-0.98,-0.98,-0.3006,0.719,0.85,0.442,0.2478,0.1758,0.0962,0.016,0.028,-0.11,-0.0848,-0.4436,-0.6708,-0.866,-0.9376,-0.9702,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9962,-0.9946,-0.995,-0.8176,-0.3232,0.1182,0.3408,0.5072,0.6678,0.9122,0.8812,0.6286,-0.0084,-0.5606,-0.829,-0.937,-0.9514,-0.9558,-0.9842,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8786,-0.9334,-0.8334,-0.7068,-0.732,-0.688,-0.624,-0.588,-0.544,-0.516,-0.396,-0.4892,-0.5074,-0.711,-0.8692,-0.9768,-0.6234,-0.38,-0.56,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4286,-0.8858,1,1,1,0.1142,-0.4,-0.6,-0.6,-0.6,-0.7142,-0.6572,0.7428,1,1,-0.2,1,0.3142,1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.3186,0.3538,0.3582,0.3742,0.3712,0.377,0.3888,0.286,-0.0726,-0.0804,-0.7734,0.2236,-0.8176,-0.5712,-0.3714,-0.2418,-0.1044,1,0.491,0.9272,0.9636,1,0.891,0.6728,0.6728,0.5636,0.491,0.4546,0.6,0.5636,0.2364,0.3454,0.709,0.8546,0.8546,0.5272,0.2,0.491,0.6,0.5636,0.091,-0.1636,-0.091,0.2,0.2364,0.1636,0.1636,0.091,0.0546,-0.4182,0.3272,0.6546,0.8546,1,0.7636,0.6182,0.4182,0.291,0.291,0.3636,0.4728,0.5818,0.2,0.5818,0.7272,0.8546,0.8182,0.3272,0.1272,0.4182,0.6364,0.5636,0.2364,-0.1272,0,0.1272,0.291,-0.109,0.0728,-0.0364,0.0182,-0.3636,0.1238,0.8666,1,0.9048,0.981,0.5048,0.3142,0.238,0.2952,0.3904,0.562,0.4666,0.3524,0.638,0.962,0.9238,0.6572,0.4666,0.181,0.2952,0.6952,0.6572,0.3714,-0.0476,0.1428,0.162,0.1238,0.1238,0.0286,-0.0476,-0.1048,-0.3714,-0.5152,-1,-1,1,-1,-1,0.2,-0.8334,-1,0.1084,0.1446,-0.0722,0.1808,0.3012,-0.1808,0.1566,0.1808,0.6266,0.5784,0.4096,0.3132,0.5662,0.6144,0.5302,0.4096,0.6024,0.6144,0.494,0.6746,0.8796,0.9518,1,0.8434,0.9278,0.7952,0.8434,0.6868,0.3976,0.3494,0.3012,0.0844,'25'
-0.264,0.408,0.416,0.5254,0.5146,0.184,0.1974,0.1066,0.1386,-0.0694,0.0266,0.0746,0.176,0.0986,0.2906,0.312,0.616,0.7334,0.976,0.952,0.76,0.752,0.7946,0.872,0.944,1,0.7066,0.4346,0.3254,0.3946,0.3174,0.3814,-0.4604,0.2812,0.3594,0.3226,0.4352,0.1894,0.1688,0.047,0.1872,0.1412,0.0746,0.109,0.0998,0.1964,0.0746,0.2904,0.2192,0.5384,0.55,0.9586,1,0.7634,0.775,0.7038,0.8714,0.8622,0.8072,0.7818,0.5546,0.4902,0.3778,0.3272,-0.6004,0.3002,0.3896,0.268,0.4368,0.2532,0.1588,0.0818,0.1836,0.2158,-0.0198,0.1092,-0.1266,0.191,0.1066,0.273,0.2904,0.3622,0.479,0.6204,0.938,0.8486,0.8312,0.8512,0.8808,1,0.7692,0.856,0.7568,0.6874,0.675,0.4342,-0.3124,0.4548,0.4986,0.663,0.7096,0.241,0.3316,0.1014,0.1918,0.0932,0.0658,0.0494,0.0822,0.074,0.0054,0.1096,-0.0028,0.1452,0.2356,0.5918,0.7398,0.9616,0.9288,0.8246,0.8164,0.8986,0.959,1,0.7534,0.5672,0.5808,0.6438,-0.2286,0.4744,0.6298,0.8352,0.6734,0.2006,0.0514,0.1228,-0.1136,-0.073,-0.2286,-0.2752,-0.2598,-0.2318,-0.1384,-0.0856,0.0452,0.0514,0.1976,0.5708,0.7108,0.9316,0.9876,0.86,0.7232,0.8506,1,0.9222,0.7512,0.4712,0.5178,0.577,-0.4546,0.4106,0.6394,0.5016,0.0878,-0.1128,-0.0156,-0.094,-0.3292,-0.232,-0.3072,-0.2852,-0.2664,-0.1692,-0.1128,-0.0282,-0.025,0.0062,0.3322,0.6364,0.8496,1,0.9216,0.8432,0.8902,0.8714,0.9342,0.7116,0.5048,0.2728,0.3668,0.5768,-0.2412,0.082,-0.3442,-0.3348,-0.185,-0.3302,0.0352,0.1008,-0.3068,-0.6066,-0.7518,-0.4146,-0.2694,-0.1756,-0.0772,0.0914,0.2506,0.4848,0.705,0.9344,0.911,1,0.9532,0.5926,0.9626,0.9766,0.8408,0.527,0.466,0.4332,0.3958,0.4286,0.1,0.85,0.75,0.95,0.75,0.4,0.15,0.35,0,0,0.05,0.3,0.3,0.35,0.5,0.7,0.95,1,0.9,0.85,0.85,0.85,1,1,1,1,0.9,0.7,0.4,0.55,0.5,0.45,-0.2962,0.2962,0.2962,0.4074,0.3704,0.074,0.074,0,0,-0.1482,-0.1482,0.074,0.037,0.074,0.074,0.2962,0.3704,0.7778,0.8518,0.6666,0.7038,0.6666,0.7038,0.963,1,0.6296,0.4444,0.2962,0.2962,0.2592,0.2962,0.2962,-0.6216,0.3334,0.4054,0.2972,0.4774,0.2432,0.1892,0.081,0.2252,0.2432,0.045,0.1172,-0.099,0.2072,0.099,0.2792,0.2432,0.3694,0.4414,0.6576,0.8198,0.6756,0.964,0.928,0.946,1,0.7838,0.91,0.7298,0.8198,0.7118,0.5316,-0.9288,-0.979,-0.6052,-0.6434,-0.886,-0.9782,-0.9836,-0.98,-0.9744,-0.9782,-0.607,0.398,0.6926,0.6416,0.6106,0.533,0.4784,0.668,0.5678,0.7146,-0.326,-0.7018,-0.9034,-0.9398,-0.9416,-0.9426,-1,-1,-1,-1,-1,-1,-1,-0.9626,-0.9846,-0.813,-0.7876,-0.7624,-0.8244,-0.8008,-0.6966,-0.6236,-0.6314,-0.5232,0.1042,0.929,0.781,0.5554,0.1984,-0.0634,-0.1408,-0.2392,-0.21,-0.6222,-0.7422,-0.8544,-0.8548,-0.8628,-0.872,-1,-1,-1,-1,-1,-1,-1,-0.8268,-0.9568,-0.6634,0.1332,1,1,1,1,1,1,0.8732,-0.255,-0.0224,0.0222,-0.009,-0.1624,-0.549,-0.78,-0.7868,-0.8778,-0.529,-0.4178,-0.4,-0.3934,-0.3034,-0.4834,-1,-1,-1,-1,-1,-1,-1,-0.4572,1,1,1,-0.5428,-0.7714,-0.8286,-0.6858,-0.8858,-0.2572,1,1,0.4858,-0.5714,-0.5428,-0.2858,-0.2858,-0.5714,-0.7428,-0.0286,1,1,0.7714,-0.5714,-0.7142,-0.4,-1,-1,-1,-1,-1,-1,-1,0.5338,0.553,0.5604,0.5844,0.6036,0.6246,0.6542,0.6872,0.7164,0.626,0.5118,0.527,0.5446,0.5768,0.593,0.6334,0.6606,0.7016,0.7858,0.8322,-0.8934,0.0352,-0.5284,-0.5092,0.0202,0.5838,0.9072,0.3166,-0.307,-0.2918,-0.8662,-0.6778,-0.6292,-0.5502,-0.3952,-0.2706,-0.2036,-0.0516,-0.0152,-0.0122,0.228,0.2736,0.1186,0.1732,0.155,0.4194,0.4772,0.4924,0.5714,0.5836,0.7082,0.8086,0.772,0.7842,0.6382,0.6838,0.7994,1,0.9362,0.7294,-0.7518,-0.8366,-0.5418,-0.4888,-0.211,-0.1728,-0.018,0.0116,0.1622,0.1602,0.2068,0.2576,0.3298,0.334,0.332,0.2874,0.2004,0.2682,0.351,0.4506,0.404,0.5546,0.6542,0.6606,0.701,0.7242,0.771,0.7392,0.843,1,0.964,0.7222,-0.911,-0.716,-0.663,-0.4584,-0.4128,-0.1624,-0.1696,-0.107,0.237,0.2828,0.2442,0.4632,0.5138,0.2972,0.3526,0.3188,0.2852,0.5428,0.5354,0.3598,0.4946,0.5596,0.7906,0.769,0.68,0.74,0.817,0.9206,1,0.9712,0.9326,0.6582,-0.6242,-1,1,-1,0.2,-1,-1,0.7,-1,-0.3548,-0.242,-0.242,0.5806,0.5484,0.4516,0.7742,0.9194,0.629,0.4678,0.629,0.4838,0.8064,1,0.8388,0.9354,0.4678,0.2904,0.242,0.5162,0.5162,0.5162,0.613,0.613,0.4678,0.4516,0.6774,0.2742,0.371,0.2258,0,-0.4354,'26'
-0.4584,0.3278,0.3888,0.4584,0.5388,0.1166,0.2556,0.0388,0.2278,0.1028,0.1388,0.0806,0.3028,0.2972,0.2916,0.35,0.6222,0.7666,0.7416,1,0.875,0.7444,0.7362,0.9084,0.95,0.7112,0.5888,0.35,0.2444,0.1862,0.5278,0.5388,-0.505,0.2058,0.2574,0.4902,0.5882,0.2892,0.2426,0.0834,0.2304,0.1372,0.1716,0.1496,0.2746,0.3186,0.2868,0.3946,0.451,0.6642,0.6544,1,0.951,0.576,0.598,0.8088,0.902,0.5932,0.6324,0.5686,0.8088,0.7108,0.571,0.5514,-0.5136,0.1594,0.216,0.4404,0.5182,0.2396,0.1924,0.039,0.1782,0.091,0.1404,0.124,0.2256,0.2632,0.2136,0.32,0.353,0.556,0.4522,0.7308,0.6812,0.6034,0.6246,0.811,0.889,0.8466,1,0.8584,0.8702,0.7852,0.7024,0.686,-0.4184,0.195,0.2172,0.5484,0.5804,0.1534,0.2074,0.0846,0.1754,-0.0012,0.124,-0.0184,0.1436,0.0674,0.2516,0.1926,0.4062,0.389,0.6614,0.654,0.4724,0.5852,0.8062,0.8896,0.8576,1,0.9878,0.9976,0.9436,0.7326,0.73,0.6466,-0.325,0.1426,0.4574,0.7,0.5576,0.055,-0.0774,-0.0224,-0.025,-0.0374,-0.085,-0.085,-0.015,0.0576,0.0674,0.1376,0.235,0.355,0.545,0.575,0.505,0.425,0.59,0.8674,0.8726,0.8776,0.89,1,0.9424,0.6726,0.57,0.585,-0.3312,0.091,0.8552,0.8952,0.248,-0.1248,-0.0632,-0.0046,-0.094,-0.1742,-0.1864,-0.1278,-0.0756,-0.0694,0.0108,0.1002,0.2172,0.3714,0.621,0.812,0.9198,0.9014,0.6702,0.7504,0.7842,0.7226,0.809,1,0.9476,0.9076,0.7996,0.7474,-0.3032,0.2336,0.586,0.6188,0.1722,-0.3196,-0.2418,-0.2664,-0.3278,-0.455,-0.5492,-0.4836,-0.2746,-0.2172,-0.3442,-0.332,-0.3074,-0.0082,0.2254,0.6312,0.918,1,0.8852,0.8402,0.8852,0.8238,0.5614,0.25,0.127,-0.123,0.2378,0.414,-0.2962,0.4074,0.4444,0.4074,0.4444,0.074,0.1852,0.074,0.2222,-0.1112,0,0.1112,0.2962,0.1852,0.3334,0.4444,0.7408,0.7408,1,0.963,0.6296,0.6666,0.5926,0.6666,0.7038,0.7408,0.4074,0.2962,0.2962,0.2962,0.2592,0.4074,-0.4736,0.3334,0.4036,0.4386,0.5088,0.1578,0.2632,0.0176,0.228,0.0878,0.1578,0.0878,0.2982,0.2982,0.2982,0.4036,0.6492,0.7894,0.7544,1,0.8596,0.7544,0.7192,0.8948,0.8948,0.4736,0.579,0.193,0.193,0.0176,0.3334,0.2632,-0.4074,0.074,0.4814,0.6852,0.537,-0.0556,-0.1482,-0.0926,-0.0556,-0.0556,-0.1482,-0.1666,0.0186,-0.037,0.0556,0.0926,0.1852,0.4074,0.4814,0.5,0.537,0.3888,0.4814,0.8888,0.8518,0.8518,0.7778,1,0.8518,0.574,0.5186,0.5926,-0.971,-0.9862,-0.8858,-0.8644,-0.9592,-0.9876,-0.98,-0.9826,-0.9814,-0.9792,-0.6906,0.1776,0.4538,0.559,0.494,0.489,0.5064,0.6642,0.8892,0.8914,0.5362,-0.4234,-0.7882,-0.919,-0.955,-0.9556,-1,-1,-1,-1,-1,-1,-1,-0.9898,-0.9824,-0.9556,-0.8896,-0.8932,-0.8984,-0.8366,-0.7166,-0.7124,-0.7218,-0.7364,-0.107,0.4378,0.6188,0.7554,0.8414,0.957,0.7048,0.1956,0.139,-0.3832,-0.714,-0.9106,-0.939,-0.9526,-0.9728,-1,-1,-1,-1,-1,-1,-1,-0.7952,-0.8268,-0.8134,0.3032,1,1,1,1,1,1,0.88,-0.025,0.1924,0.1174,0.1474,0.12,0.0554,-0.1778,-0.6756,-0.7556,-0.8668,-0.6024,-0.5868,-0.2568,-0.1968,-0.44,-1,-1,-1,-1,-1,-1,-1,-0.3714,0.4286,1,1,0.0572,-0.8286,-0.3714,-0.6858,-0.8286,-0.2286,1,1,0.0858,-0.6,-0.7714,-0.6572,-0.7714,-0.4,0.1428,0.1428,0.9714,1,-0.4,-0.3428,0.0572,0.2,-1,-1,-1,-1,-1,-1,-1,0.7158,0.731,0.7452,0.7666,0.7816,0.8032,0.8192,0.8398,0.8376,0.625,0.357,0.3812,0.3894,0.3948,0.3994,0.3754,0.4014,0.5098,0.6536,0.8048,-0.8534,-0.0118,-0.7366,-0.547,-0.196,0.2256,0.3948,0.3584,-0.5186,-0.458,-0.6296,-0.606,-0.3906,-0.468,-0.1112,-0.1112,0.0976,0.1178,0.1818,0.2862,0.441,0.2458,0.3502,0.4208,0.5388,0.5556,0.7408,0.7778,0.8148,0.7508,0.7474,0.8418,0.825,0.7408,0.7744,0.8048,0.9226,1,0.8956,0.5016,-0.6526,-0.607,-0.543,-0.394,-0.301,-0.2926,-0.0838,-0.0176,-0.0176,0.0404,0.1168,0.1314,0.1624,0.332,0.2988,0.3422,0.396,0.4582,0.4746,0.5306,0.5616,0.5656,0.7002,0.7042,0.7002,0.7498,0.76,0.847,1,0.9958,0.9834,0.7746,-0.7904,-0.5942,-0.6076,-0.434,-0.3416,-0.2672,-0.2402,-0.1702,0.0688,0.1026,0.1274,0.071,0.274,0.2064,0.195,0.1522,0.2626,0.4138,0.576,0.6234,0.619,0.6166,0.61,0.5716,0.619,0.7114,0.6978,0.7204,1,0.991,0.8896,0.5378,-0.9152,-1,1,-1,-0.8,-1,-0.8,0.6666,-1,-0.4118,-0.3446,0.2436,0.5294,0.5966,-0.2942,-0.042,-0.0084,0.6638,0.832,0.5798,0.6302,0.647,0.7648,0.6638,0.647,0.8824,1,0.7142,0.9664,0.9832,0.9496,0.8992,0.7648,0.7478,0.6806,0.5798,0.5462,0.4622,0.4958,0.4286,-0.042,'26'
-0.4674,-0.1444,0.119,0.4448,0.6176,0.3682,0.221,0.1672,-0.0964,-0.1586,-0.0878,0.0084,0.0624,0.0906,0.3172,0.5638,0.8102,0.983,1,0.9802,0.7366,0.8186,0.9462,0.7762,0.4362,0.272,0.2522,-0.034,0.0934,0.3852,0.3824,0.2464,-0.3868,-0.1348,0.1858,0.4656,0.5674,0.3664,0.224,-0.0458,-0.1374,-0.1298,-0.117,-0.145,0.1526,0.1324,0.2824,0.4732,0.8396,1,0.9338,0.86,0.71,0.8244,0.8754,0.9414,0.5166,0.2722,0.2494,-0.0916,-0.0076,0.0586,0.1222,0.1552,-0.4178,-0.1566,0.1694,0.5058,0.6094,0.1462,0.0272,0.084,-0.3738,-0.2316,-0.229,-0.3066,0.0402,0.0168,0.0816,0.1618,0.6972,0.837,1,0.894,0.8164,0.8034,0.8318,0.8888,0.4644,0.2652,0.1022,-0.1254,-0.3376,-0.0168,0.1642,0.0582,-0.4406,-0.1936,0.0536,0.3808,0.4406,-0.0812,0.0262,0.0262,-0.5606,-0.4132,-0.4406,-0.2884,-0.2958,-0.2134,-0.1486,-0.1286,0.3782,0.6704,0.9076,1,0.98,0.7852,0.955,0.8726,0.6204,0.3334,0.1836,0.0362,-0.2934,0.3058,0.2958,0.166,-0.4278,-0.1688,0.0562,-0.0024,0.0806,-0.1246,-0.2494,-0.3692,-0.5232,-0.5868,-0.5672,-0.4596,-0.2592,-0.2714,-0.2934,-0.2372,0.1222,0.2788,0.577,0.9022,1,0.8386,0.8974,0.9168,0.6284,0.4694,0.2714,0.0612,-0.159,0.198,0.3398,0.2322,-0.5114,-0.1582,0.1376,0.1628,-0.4564,-0.4794,-0.3854,-0.594,-0.6514,-0.8212,-0.5712,-0.4564,-0.3372,-0.3532,-0.4312,-0.3394,-0.1674,-0.0344,0.227,0.4588,0.7568,0.8808,1,0.8876,0.7776,0.5642,0.3762,0.188,-0.0022,0.0322,0.3256,0.3486,-0.565,-0.0248,0.1474,0.3226,-0.2292,-0.6292,-0.5824,-0.565,-0.489,-0.816,-0.711,-0.492,-0.4218,-0.3372,-0.457,-0.4628,-0.3606,-0.1766,0.0862,0.3782,0.5912,1,0.9124,0.9504,0.746,0.6526,0.3372,0.0716,-0.165,-0.3548,-0.0132,0.1854,-0.8974,-0.282,-0.1794,0.1794,0.5898,0.5384,0.3334,0.4358,-0.077,0.1282,0.0256,0.0256,-0.077,0.3334,0.3846,0.4872,0.8974,0.8974,0.8974,1,0.6924,0.9488,0.7948,0.6924,0.6924,0.3846,0.3846,-0.1282,0.077,-0.077,0.4358,0.3846,-0.5172,-0.1034,0.1724,0.3104,0.4482,0.3104,0.3794,0.0344,-0.1034,-0.1034,0.1034,0.2414,0.0344,-0.1724,0.1724,0.3794,0.7932,0.862,1,0.931,0.4482,0.3794,0.931,0.6552,-0.3104,0.0344,0.1724,-0.1724,0.3104,0.5172,-0.1724,-0.2414,-0.5,-0.2368,0.1052,0.421,0.5264,0.2894,0.1316,-0.079,-0.2368,-0.2368,-0.2106,-0.421,0.0526,0.0526,0.2368,0.2632,0.8422,0.9736,0.9474,0.8684,0.5,0.6842,1,1,0.4736,0.2632,0.2368,-0.3422,-0.4474,-0.421,-0.1316,0,-1,-1,-1,-1,-1,-1,-1,-1,-0.8936,-0.8734,-0.6912,0.438,0.8126,0.8632,0.8988,0.7924,0.605,0.362,0.2406,0.357,0.2456,-0.1444,-0.6608,-0.762,-0.8482,-0.8936,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9572,-0.9552,-0.7446,0.1398,0.2326,0.1668,0.0782,0.1012,0.0928,-0.0114,-0.1428,-0.0762,-0.27,-0.633,-0.8624,-0.8926,-0.9228,-0.925,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.9268,-0.6768,-0.4234,-0.455,-0.345,-0.45,-0.455,-0.455,-0.3218,-0.4734,-0.4186,-0.314,-0.5448,-0.6068,-0.76,-0.8468,-0.9134,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,0.4858,1,1,-0.6572,-0.8572,-0.9142,-1,-1,-1,-1,-0.9428,-0.6858,1,-0.7142,-0.6858,-0.9428,-0.9428,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,0.9876,0.9534,0.6174,-0.1576,-0.1436,-0.153,-0.157,-0.1488,-0.1408,-0.1236,-0.1116,0.0018,0.3632,-0.4934,0.4706,-0.6736,-0.3962,0.0574,-0.3096,0.5788,0.1584,-0.5136,-0.1892,0.3784,0.2702,0.1082,0.1082,-0.027,0.3244,0.946,1,0.919,0.946,0.7028,0.4324,-0.081,0.4594,0.6216,0.6756,0.4864,0.5136,0.8108,0.8378,0.7838,0.5676,0.3784,0.5406,0.6756,0.6486,0.4864,0.3244,0.2432,-0.5946,-0.236,-0.236,0.7528,0.5056,0.0562,-0.1236,0.0562,0.2584,1,0.9776,0.5056,0.528,0.3484,0.146,0.1012,0.1236,0.2808,0.1686,0.0562,0.3484,0.4606,0.3258,0.3258,0.191,-0.0562,0.146,0.4158,0.4382,0.191,0.2134,0.4158,0.146,-0.1688,-0.1168,0.6364,0.5064,0.4806,0.1428,0.4806,0.2728,0.974,1,0.7402,0.6624,0.5844,0.3766,0.2728,0.2468,0.5844,0.4286,0.3506,0.2208,0.6364,0.6884,0.7662,0.4806,0.3766,0.3506,0.5844,0.5844,0.5844,0.4026,0.3246,0.1948,1,-1,-1,1,-1,-1,-1,-0.8,-1,0.1386,0.1824,0.0364,0.124,-0.0072,-0.0656,0.1824,0.0948,0.343,0.4744,0.3868,0.6934,0.6204,0.7226,0.124,0.1386,0.562,0.6204,0.708,-0.1386,0.781,1,0.8394,0.5036,0.124,0.0948,0.2408,0.6058,0.5182,0.0802,0.0072,-0.3576,'1'
-0.4292,-0.1986,-0.072,0.1042,0.4988,0.588,0.3722,0.1688,-0.0348,-0.0248,0.0124,0.139,0.2704,0.4466,0.5832,0.7718,0.9976,0.995,0.7816,0.7642,0.8908,1,0.9032,0.8388,0.4938,0.2854,0.2084,0.0546,0.0024,-0.144,-0.0472,-0.0496,-0.5222,-0.3164,-0.1194,0.0952,0.5154,0.4314,0.0288,0.1592,-0.1592,-0.1306,-0.2434,0.0332,0.1328,0.1416,0.334,0.5862,0.9314,1,0.6638,0.6616,0.73,0.7788,0.8164,0.5664,0.2146,0.177,0.0708,0.0508,-0.0176,-0.1946,-0.157,-0.1216,-0.3878,-0.07,0.1486,0.3994,0.3878,0.2362,0.1254,0.032,-0.1808,-0.2798,-0.2916,-0.0058,-0.0408,0.0146,0.1224,0.1108,0.6356,0.93,0.9738,1,0.9038,0.9126,0.7202,0.6326,0.4782,0.0788,-0.0204,-0.2916,-0.4694,-0.4256,-0.5422,-0.4286,-0.4344,-0.1338,0.142,0.5228,0.2332,0.0482,0.0456,-0.3628,-0.2938,-0.4868,-0.2828,-0.3104,-0.2442,-0.1918,-0.189,-0.2634,0.222,0.2966,0.7406,1,0.7876,0.7324,0.7904,0.4896,0.349,-0.1972,-0.1668,-0.3214,-0.6166,-0.6856,-0.7794,-0.7406,-0.4556,-0.1774,0.1438,0.5084,0.3956,-0.2254,-0.1894,-0.4436,-0.482,-0.5036,-0.4676,-0.4292,-0.4172,-0.3478,-0.3358,-0.2782,-0.0048,0.2206,0.5612,0.9256,1,0.8202,0.8442,0.7938,0.6402,0.1726,0.0504,-0.0984,-0.2902,-0.3836,-0.4868,-0.542,-0.3956,-0.0966,0.2248,0.1956,-0.209,-0.418,-0.3124,-0.3528,-0.6494,-0.6112,-0.5574,-0.4,-0.4022,-0.3596,-0.3484,-0.4764,-0.0808,0.0292,0.2764,0.6248,0.955,1,0.9078,0.9662,0.9168,0.6112,0.3528,0.2898,0.155,-0.1192,-0.137,-0.2876,-0.3526,0.2742,-0.0358,-0.6116,-0.5264,-0.448,-0.2708,-0.489,-0.598,-0.7854,-0.6558,-0.5912,-0.69,-0.7138,-0.7104,-0.448,-0.08,0.0698,0.397,0.7104,0.7376,0.4788,0.4004,0.54,1,0.8296,0.4788,0.172,0.1244,-0.2504,-0.2948,-0.4446,-0.5136,-0.1352,-0.081,-0.081,0.2972,0.4594,0.1892,0.081,0.027,-0.1352,-0.1352,-0.027,0.027,0.3514,0.4594,0.8918,0.946,1,0.7298,0.5136,0.8378,0.8378,0.8378,0.8378,0.4594,0.3514,0.027,0.1892,0.027,-0.027,-0.027,0.027,-0.4,-0.2,-0.05,-0.05,0.2,0.2,0,-0.15,-0.3,-0.1,0,0.2,0.25,0.35,0.6,0.85,0.9,0.9,0.8,0.9,1,1,0.9,0.65,-0.2,-0.35,-0.6,-0.45,-0.35,-0.45,-0.2,-0.1,-0.4286,-0.1714,0.1142,0.2286,0.2858,0.2,0.1142,0.1142,-0.2286,-0.2572,-0.5428,0.1714,0.0858,0.1142,0.2286,0.2,0.7142,0.9142,0.9714,1,0.7142,0.8858,0.6286,0.5142,0.3142,-0.0858,0.0858,-0.3428,-0.7714,-0.4,-0.6286,-0.5428,-1,-1,-1,-1,-1,-1,-1,-0.9386,-0.9478,-0.8834,-0.1994,0.4142,0.8374,0.8098,0.3282,0.0828,0.1748,0.457,0.0092,-0.1472,-0.411,-0.684,-0.8282,-0.8742,-0.8896,-0.9018,-0.8866,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9682,-0.9722,-0.8394,-0.1816,0.2936,0.6834,0.3416,-0.12,-0.5722,-0.5118,-0.303,-0.4908,-0.516,-0.7572,-0.882,-0.9336,-0.9234,-0.9472,-0.9506,-0.9518,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.9734,-0.6534,-0.4968,-0.5844,-0.6344,-0.4116,-0.3844,-0.743,-0.6844,-0.64,-0.5458,-0.263,-0.4174,-0.624,-0.63,-0.5968,-0.6668,-0.7134,-0.8734,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,-0.2286,1,1,0.6858,-0.5714,-0.6286,-0.0572,-0.3142,-0.8858,-0.9428,-0.7142,-0.8286,0,-0.6286,-0.9428,-0.8858,-0.8286,-0.9142,-0.8572,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.6774,-0.3372,-0.3514,-0.3606,-0.346,-0.3456,-0.3166,-0.3332,-0.325,-0.213,0.1798,-0.28,0.7176,6e-04,0.2854,0.1016,0.0922,0.4434,0.8834,-0.3962,0.0188,0.3962,0.434,0.2452,0.1698,0.585,0.6226,0.8868,1,0.8868,0.6604,0.6604,0.132,0.0566,0.2076,0.434,0.4716,0.3208,-0.0188,0.1698,0.283,0.2452,0.1698,-0.0188,0.1698,0.2452,0.1698,0.1698,0.1698,-0.2452,-0.283,0.0286,0.238,0.6572,0.581,0.3904,0.219,0.4666,0.6762,1,0.9048,0.9048,0.9238,0.6952,0.3334,0.3714,0.219,0.5428,0.6952,0.4858,0.0096,0.3714,0.562,0.3142,0.3334,0.3904,0.2572,0.2762,0.3904,0.2,0.181,-0.1428,-0.2762,0.109,0.2872,0.604,0.703,0.3664,0.307,0.4852,0.7426,1,0.9802,0.8416,0.9406,0.802,0.6238,0.406,0.3268,0.4456,0.6436,0.4852,0.109,0.109,0.0298,0.208,0.1486,-0.0496,0.01,0.0496,0.0298,-0.2278,-0.1486,0.0298,-0.4258,0.844,-1,-1,1,-1,-1,-1,-0.8334,-1,0.1192,0.156,-0.266,0.2478,0.1926,0.2294,0.5412,0.4496,0.1926,0.6146,0.5964,0.7982,1,0.8166,0.1376,0.1376,0.6698,0.6698,0.633,0.266,0.4496,0.7798,0.3762,0.4312,-0.156,-0.1744,0.0458,0.0642,0.1926,0.0092,-0.3212,-0.4862,'1'
-0.3828,0.1112,0.813,0.753,-0.298,-0.7426,-0.5662,-0.4638,-0.7002,-0.6614,-0.5908,-0.418,-0.4144,-0.358,-0.171,-0.0618,0.1288,0.4462,0.9506,1,0.7954,0.746,0.813,0.7142,0.4708,0.4216,0.0512,-0.0688,-0.1852,-0.164,-0.0088,-0.1252,-0.2792,0.2424,0.819,0.7178,-0.5122,-0.4754,-0.6258,-0.7852,-0.5766,-0.6932,-0.5766,-0.4018,-0.4602,-0.3712,-0.2516,-0.2116,-0.092,0.1012,0.457,0.8712,0.9816,1,0.724,0.5644,0.7392,0.6258,0.4846,0.3068,0.0614,-0.0766,-0.1074,-0.1042,-0.3334,0.0756,0.6586,0.5458,-0.607,-0.6812,-0.8358,-0.8132,-0.7778,-0.7906,-0.7424,-0.6426,-0.4558,-0.475,-0.4202,-0.4428,-0.2914,-0.24,0.169,0.5008,0.8454,1,0.8326,0.3784,0.5426,0.5716,0.3946,0.182,-0.14,-0.2658,-0.3784,-0.5556,-0.1386,0.2236,0.8336,0.7782,-0.3716,-0.7782,-0.671,-0.586,-0.7708,-0.7412,-0.6304,-0.39,-0.4898,-0.5268,-0.4306,-0.464,-0.3752,-0.1202,0.2458,0.5084,0.9816,0.952,1,0.767,0.5304,0.5896,0.7264,0.5674,-0.1164,-0.109,-0.4122,-0.4232,-0.2086,0.2338,0.741,0.7554,-0.4388,-0.7086,-0.723,-0.5576,-0.6258,-0.6438,-0.4856,-0.536,-0.4964,-0.4712,-0.5,-0.4064,-0.2374,-0.1726,-0.169,0.295,0.6474,0.9604,1,0.946,0.554,0.6294,0.6366,0.331,0.0612,-0.0324,-0.2158,-0.1654,-0.4694,0.1704,0.0932,0.27,-0.164,-0.8232,-0.7524,-0.6592,-0.7428,-0.762,-0.8714,-0.5176,-0.5016,-0.537,-0.5176,-0.6496,-0.5402,-0.2476,-0.1672,0.1382,0.3504,0.7524,0.9968,1,0.7074,0.852,0.6366,0.3826,0.1608,0.0514,-0.193,-0.1962,-0.532,0.5414,0.3996,-0.3948,-0.565,-0.3664,-0.1774,-0.1016,-0.6926,-0.844,-0.8676,-0.5414,-0.5366,-0.4658,-0.3334,-0.2624,0.0732,0.4704,0.6502,0.4516,0.5602,0.513,0.6406,0.7352,1,0.7446,0.8108,0.286,0.1962,0.026,-0.2434,-0.4326,-0.697,-0.394,0.697,0.697,-0.0304,-0.4546,-0.2122,-0.0304,-0.5758,-0.8182,-0.5758,-0.2122,-0.2122,-0.1516,-0.1516,0.3334,0.6364,0.697,0.2122,0.4546,-0.0304,1,1,0.5758,0.2728,0.091,-0.091,0.1516,-0.091,-0.1516,0.5152,0.5152,-0.4858,0.1428,0.6,0.4286,-0.3714,-0.7714,-0.4286,-0.4286,-0.8858,-0.7142,-0.5428,-0.4858,-0.4858,-0.2,-0.0858,-0.0858,0.2572,0.6,1,1,0.6572,0.5428,0.4286,0.3142,0.3142,-0.0858,-0.3142,-0.3714,-0.2572,-0.2,0.1428,0.2,-0.443,0.0126,0.4684,0.367,-0.595,-0.7722,-0.7468,-0.7468,-0.6202,-0.8482,-0.7974,-0.6202,-0.443,-0.4178,-0.367,-0.4178,-0.2152,-0.2406,-0.038,0.4178,0.8988,1,0.519,0.367,0.443,0.5444,0.2912,0.1898,-0.3418,-0.1392,-0.1898,-0.443,-1,-1,-1,-1,-0.8726,-0.846,-0.8152,-0.8132,-0.811,-0.8358,-0.696,0.6098,0.9178,0.8358,0.4272,0.1088,-0.039,-0.2238,-0.3922,-0.5298,-0.6592,-0.7926,-0.8892,-0.9322,-0.9672,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9002,-0.8836,-0.8572,-0.8584,-0.8534,-0.8596,-0.4628,0.5524,0.6448,0.6384,0.3994,-0.0784,-0.1922,-0.3388,-0.4488,-0.373,-0.6144,-0.7978,-0.8762,-0.919,-0.938,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.95,-0.95,-0.9468,-0.9734,-0.96,-0.7234,-0.6838,-0.7692,-0.782,-0.6564,-0.7492,-0.651,-0.4928,-0.4856,-0.2164,-0.6,-0.682,-0.61,-0.7268,-0.8134,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,-1,-1,-1,0.9714,1,1,-0.7428,-0.7714,-0.2572,-0.5142,-0.8858,-0.8,-0.7142,-0.7142,0.4858,0.1714,-0.8858,-0.8,-0.9714,-1,-1,-1,-1,-1,-1,-1,-1,-0.1136,-0.145,-0.1862,-0.2296,-0.2986,-0.3326,-0.3936,-0.4016,-0.4786,-0.3362,0.255,0.283,0.346,0.394,0.4514,0.4936,0.5728,0.6492,0.7086,0.7092,-0.5334,0.3058,-0.163,-0.3414,0.3768,0.9886,0.828,0.3666,0.3334,0.3334,0.394,0.5152,0.394,0.394,0.4546,0.8182,1,0.9394,0.9394,0.697,0.5758,0.2122,0.2728,0.5758,0.6364,0.6364,0.6364,0.5758,0.5758,0.5758,0.5758,0.697,0.697,0.7576,0.7576,0.6364,0.4546,0.2122,0.1516,-0.5152,-0.1326,0.1808,0.1566,0.1326,0.0362,0.0362,0.4216,0.9278,1,0.6868,1,0.6868,0.3254,0.229,0.2772,0.3254,0.3976,0.3976,0.3254,0.3494,0.3734,0.3494,0.3254,0.4216,0.494,0.518,0.518,0.6144,0.5662,0.2772,-0.2772,-0.3976,0.234,0.3618,0.1914,0.1276,0,0.0212,0.149,0.1914,1,0.8936,0.766,0.6808,0.1702,0.1914,0.4042,0.468,0.149,-0.0426,0.0426,-0.0638,0.2128,0.4042,0.0638,-0.0638,0.0638,0.234,-0.1702,-0.2128,0.0852,0.2128,-0.1914,-0.468,0.459,-1,-1,1,-1,1,-0.4,-0.8334,-1,0.1956,0.3478,0.2608,0.4348,0.1956,0.174,0.413,0.3696,0.9348,0.8696,0.2392,0.5218,1,0.8478,0.587,0.4566,0.2174,0.413,0.174,-0.2608,0.2826,0.326,0.326,0.326,0.326,0.1086,0.2392,0.4566,0.3914,0.4348,0.4348,0.2826,'2'
-0.3428,0.1048,0.708,0.6826,-0.546,-0.8888,-0.7936,-0.6572,-0.7588,-0.7714,-0.7142,-0.4666,-0.4794,-0.4952,-0.3396,-0.2888,-0.1238,0.5524,0.9524,1,0.9842,0.9904,0.9302,0.8888,0.7524,0.1556,-0.0572,-0.2,-0.4888,-0.2064,-0.1238,-0.0032,-0.4044,-0.1578,0.4274,0.2862,-0.489,-0.8434,-0.7484,-0.7894,-0.769,-0.9076,-0.751,-0.6406,-0.6098,-0.5302,-0.4762,-0.5044,-0.389,-0.1142,0.2992,0.6406,0.9614,1,0.8486,0.8614,0.8794,0.7048,0.3762,0.1092,-0.032,-0.0474,-0.0012,0.0192,-0.437,-0.0494,0.2988,0.126,-0.6494,-0.837,-0.8222,-0.8592,-0.832,-0.879,-0.958,-0.7112,-0.642,-0.6962,-0.5876,-0.6444,-0.5802,-0.2938,0.0814,0.368,0.558,1,0.8544,0.6592,0.8124,0.4938,0.3382,0.2396,-0.153,-0.074,-0.1062,-0.126,-0.3268,-0.032,0.4436,0.3268,-0.744,-0.8248,-0.6022,-0.6162,-0.8582,-0.8164,-0.8386,-0.6718,-0.5966,-0.605,-0.7052,-0.6078,-0.5772,-0.2906,-0.0904,0.2212,0.6162,1,1,0.6774,0.6746,0.6356,0.502,0.185,-0.057,-0.1376,-0.2184,-0.249,-0.3072,0.0406,0.4188,0.3858,-0.5254,-0.8426,-0.7842,-0.6092,-0.6676,-0.6776,-0.7208,-0.5456,-0.4162,-0.4188,-0.533,-0.566,-0.5762,-0.4086,-0.1016,0.1676,0.4468,0.8478,1,0.8072,0.6726,0.7132,0.6726,0.5254,0.269,0.0584,-0.0406,-0.0634,-0.416,0.0826,0.2838,0.3664,-0.427,-0.8898,-0.606,-0.6006,-0.664,-0.7272,-0.6418,-0.5344,-0.4462,-0.4794,-0.6364,-0.5096,-0.449,-0.3472,-0.0662,0.1764,0.4876,0.9752,1,0.9118,0.876,0.9476,0.6502,0.4794,0.0826,-0.0028,0.0688,-0.1212,-0.6232,0.1802,0.0766,0.296,-0.2588,-0.7142,-0.1552,-0.3374,-0.7846,-0.5818,-0.5114,-0.1926,-0.321,-0.2506,-0.296,-0.1014,0.4368,0.3416,0.2256,0.4244,0.4742,0.5072,0.5032,0.884,1,0.9628,0.7142,0.2174,-0.1098,-0.2422,-0.1594,0.0724,-0.4348,0.2608,0.3914,0.4348,-0.3044,-0.6522,-0.174,0.0434,-0.174,-0.5218,-0.3478,-0.2174,0.0434,0.087,0.174,0.3478,0.3044,0.7392,0.7392,0.4348,0.6522,1,1,0.7392,0.3914,0.0434,0.1304,-0.2174,-0.2174,-0.087,0.174,0.1304,-0.25,0,0.4584,0.4584,-0.125,-0.6666,-0.4166,-0.2084,-0.4166,-0.5416,-0.25,-0.3334,-0.125,-0.2084,-0.125,0,0.2084,0.7084,1,0.9166,0.5834,0.5416,0.4584,0.5,0.2084,-0.0834,-0.2916,-0.2916,-0.4166,-0.0834,-0.125,-0.0416,-0.3538,0.1692,0.477,0.477,-0.5692,-0.5692,-0.6308,-0.477,-0.723,-0.6616,-0.3846,-0.4462,-0.6,-0.477,-0.5384,-0.4462,-0.5692,-0.1692,0.1076,0.1076,0.3846,1,1,0.8154,0.9076,1,0.7538,0.5384,0.3538,0.1076,0.0462,-0.4154,-1,-1,-1,-1,-0.9062,-0.881,-0.7528,-0.7528,-0.7622,-0.806,-0.6932,0.3928,0.9062,0.7778,0.6744,0.3616,0.1174,0.0016,-0.2018,-0.3114,-0.4334,-0.7464,-0.878,-0.8998,-0.928,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.918,-0.9134,-0.8468,-0.8544,-0.8482,-0.8668,-0.4984,0.0836,0.6038,0.8638,0.7198,0.1842,-0.13,-0.1874,-0.3328,-0.3792,-0.3312,-0.757,-0.89,-0.89,-0.9226,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8668,-0.88,-0.9234,-0.87,-0.8134,-0.8068,-0.5834,-0.5308,-0.5524,-0.3124,-0.3862,-0.4094,-0.5154,-0.3954,-0.3354,-0.317,-0.3186,-0.76,-0.8468,-0.8868,-0.9334,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,-0.9142,-0.9428,-0.9142,-0.9142,1,1,1,-0.4,-0.8572,-1,-0.9428,-0.9142,-0.8572,-0.8858,-0.2,0.7428,0.7142,-0.9428,-1,-0.7428,-1,-1,-1,-1,-1,-1,-1,-1,-0.4338,-0.4504,-0.462,-0.4884,-0.482,-0.449,-0.4716,-0.4622,-0.5122,-0.34,0.2818,0.3156,0.3644,0.418,0.4506,0.546,0.6338,0.7214,0.8032,0.8106,-0.48,0.5648,-0.2538,-0.37,-0.0588,0.1022,0.308,0.5834,-0.2972,-0.1352,-0.081,-0.027,-0.081,0.1892,0.5136,0.7298,0.6756,0.4054,0.3514,0.2432,0.6216,0.5136,0.6216,0.6756,0.6756,0.2972,0.6756,0.8918,1,1,0.946,0.7838,0.6756,0.7838,0.7838,0.7298,0.6216,0.4594,0.1892,-0.2972,-0.3334,-0.1604,-0.3334,-0.358,-0.2346,0.1358,0.5802,0.8518,0.8518,0.3334,0.284,0.4568,0.605,0.4568,0.5556,0.926,0.4568,0.358,0.8024,0.7284,0.7778,1,0.9506,0.5062,0.4814,0.7284,0.8518,0.6544,0.4568,0.5556,0.3828,0.037,0.327,0.3846,0.1538,-0.0192,0.077,0.1924,0.1346,0.3076,0.5384,0.6538,0.5576,1,0.5,0.3654,0.1924,0.5576,0.6346,0.4616,0.5962,0.6538,0.3654,0.3076,0.3846,0.1924,0.0192,0.2884,0.2884,0.3076,0.1538,0,0.1346,0.0384,0.3468,-1,-1,1,-1,1,-1,-0.8334,-1,0.1818,0.4546,0.5228,0.5,0.4772,0.7272,0.9318,0.6364,0.659,0.7046,0.909,1,0.75,0.591,0.6364,0.6136,0.7046,0.2046,0.159,0.909,0.75,0.9318,0.6136,0.591,0.4772,0.091,0.7728,0.5,0.659,0.659,0.6364,0.1818,'2'
-0.292,0.0808,0.619,0.5942,-0.3334,-0.5984,-0.6356,-0.5486,-0.7142,-0.7806,-0.5942,-0.3084,-0.3126,-0.234,-0.0186,0.031,0.441,0.8302,0.7516,0.7142,0.59,0.5072,0.677,0.9752,1,0.8964,0.5032,0.3168,0.1594,0.0766,0.06,0.1014,-0.2642,0.0976,0.6666,0.565,-0.4878,-0.9024,-0.6788,-0.6382,-0.9796,-0.691,-0.6992,-0.6138,-0.378,-0.3944,-0.3822,-0.2642,-0.1178,0.183,0.6992,1,0.8862,0.6708,0.5732,0.6544,0.7724,0.874,0.6952,0.439,0.2196,-0.0488,-0.2804,-0.3292,-0.2134,0.067,0.5732,0.4394,-0.5816,-0.8662,-0.6862,-0.6904,-0.8996,-0.7532,-0.749,-0.6862,-0.3556,-0.5398,-0.6066,-0.4854,-0.2846,-0.138,0.1088,0.5732,0.9372,1,0.5146,0.3808,0.343,0.5356,0.59,0.4896,0.226,-0.251,-0.431,-0.3934,-0.1422,0.1788,0.7294,0.5964,-0.9266,-0.7752,-0.7064,-0.7294,-0.8486,-0.9862,-0.9082,-0.6192,-0.6056,-0.7568,-0.6146,-0.6146,-0.3348,-0.344,-0.1146,0.399,0.812,1,0.5918,0.4174,-0.0366,0.3074,0.2156,0.156,-0.0138,-0.1056,-0.2386,-0.445,-0.0978,0.3206,0.9076,0.8098,-0.6032,-0.799,-0.8858,-0.7228,-0.8968,-0.924,-0.7772,-0.8316,-0.6358,-0.5326,-0.6358,-0.674,-0.4566,-0.5054,0.2718,0.2718,0.5,1,0.9348,0.6086,0.2608,0.326,0.5272,0.326,0.3858,0.451,-0.1032,-0.0706,-0.2218,0.2308,0.62,0.629,-0.5476,-0.8144,-0.5476,-0.439,-0.6696,-0.8462,-0.6606,-0.742,-0.6018,-0.4978,-0.5384,-0.4932,-0.5114,-0.371,0.0136,0.3168,0.647,1,0.8868,0.5204,0.3574,0.2986,0.6064,0.647,0.6064,0.2624,0.181,-0.1358,-0.1922,0.4206,0.0808,0.0752,-0.8218,-0.6434,-0.3314,-0.4428,-0.922,-0.805,-0.6602,-0.6212,-0.415,-0.4262,-0.3872,-0.287,-0.287,-0.0696,0.1922,0.5154,0.7104,0.8998,1,0.5432,0.4874,0.6658,0.6378,0.5488,0.4818,-0.0752,-0.0696,-0.376,-0.0526,0.2632,0.5264,0.579,0,-0.0526,-0.1052,-0.2106,-0.3684,-0.579,-0.3158,-0.1578,0.1052,-0.1578,0,0.3684,0.9474,1,0.2632,0.3684,0.579,0.6842,0.7894,1,0.9474,0.8948,0.421,0.2632,0,0.3158,0.6316,0.6842,-0.091,0.3182,0.6364,0.591,-0.1364,-0.5,-0.409,-0.5,-0.5454,-0.5454,-0.409,-0.091,0,0.091,0.2272,0.3636,0.7272,1,0.9546,0.5,0.4546,0.4546,0.7728,1,1,0.8636,0.4546,0.409,0.3636,0.3182,0.2728,0.2728,-0.065,0.2728,0.6624,0.5324,-0.4806,-0.6624,-0.5324,-0.4546,-0.4286,-0.6104,-0.5844,-0.6104,-0.2208,-0.3766,-0.4286,-0.3246,-0.1168,-0.091,0.1688,0.5324,0.922,1,0.6884,0.4026,0.4026,0.4286,0.5844,0.5844,0.2468,-0.2988,-0.3766,-0.4026,-0.9202,-0.9122,-0.9308,-0.9256,-0.9522,-0.907,-0.907,-0.9228,-0.9122,-0.9122,-0.6994,0.5692,0.9522,0.6888,0.4308,0.3404,0.1728,-0.0212,-0.0904,-0.2154,-0.391,-0.7208,-0.8882,-0.9308,-0.9176,-0.9308,-1,-1,-1,-1,-1,-1,-1,0.0192,0.5332,0.883,1,0.9344,1,0.8572,1,0.823,1,1,0.6102,0.7388,0.2776,-0.0092,-0.0378,-0.1792,-0.3034,-0.3434,-0.3932,-0.4504,-0.7658,-0.8758,-0.9058,-0.8944,-0.9172,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,1,-0.4534,-0.5646,-0.7156,-0.7668,-0.7604,-0.6948,-0.6614,-0.5504,-0.4948,-0.5482,-0.806,-0.7104,-0.7904,-0.7804,-0.887,-1,-1,-1,-1,-1,-1,-1,-0.1714,-0.6,-0.6572,-0.8858,-0.8572,-0.7428,-0.9142,-0.9428,-0.6,-0.5714,1,1,-0.2572,-0.6286,-0.9428,-0.7714,-0.8572,-0.9714,-0.9142,-0.8572,0.8,1,-0.7714,-0.9142,-0.8858,-0.6572,-1,-1,-1,-1,-1,-1,-1,-0.2728,-0.2606,-0.2486,-0.2738,-0.2872,-0.3466,-0.3966,-0.3854,-0.4386,-0.4114,0.5144,0.558,0.5958,0.6384,0.6784,0.7368,0.7586,0.7766,0.7744,0.6852,-0.48,0.047,1,0.0606,0.5832,0.9842,0.843,-0.6666,-0.8886,-0.744,-0.7236,-0.4638,-0.488,-0.2152,-0.1782,0.039,-0.0278,-0.128,-0.063,0.206,0.3766,0.2004,0.2022,0.371,0.4212,0.5158,0.6048,0.4322,0.564,0.718,0.9314,1,0.9388,0.8312,0.859,0.9036,0.783,0.5436,0.3896,0.0612,-0.8034,-0.7644,-0.6302,-0.4218,-0.4402,-0.4232,-0.3868,-0.207,-0.2396,-0.2148,-0.2618,-0.03,0.1002,0.0052,0.0144,0.1028,0.1368,0.1172,0.2096,0.2826,0.4076,0.6016,0.7162,0.8464,0.836,0.802,0.9492,0.983,1,0.8334,0.7422,0.4922,-0.9836,-0.812,-0.7716,-0.588,-0.6642,-0.6,-0.6164,-0.2462,-0.2014,-0.2538,-0.2956,0.1686,0.2284,-0.0986,-0.0568,0.0014,0.0432,0.1746,0.3478,0.2716,0.3328,0.6538,0.7582,0.9044,0.915,0.7522,0.891,0.9642,1,0.8074,0.6582,0.4538,-0.6746,-1,1,-1,-1,-1,-1,1,-1,-0.134,-0.0516,-0.1752,0.4226,0.2372,0.6082,0.5052,0.299,0.897,1,0.835,0.8762,0.7114,0.3814,0.299,0.402,0.4846,0.5052,0.6494,0.3402,0.2164,0.6494,0.4226,0.2372,0.134,-0.0516,0.031,0.2164,0.3402,0.3814,0.1134,-0.299,'3'
-0.2418,0.1536,0.4444,0.4346,-0.4412,-0.7974,-0.7254,-0.598,-0.5424,-0.6078,-0.647,-0.1994,-0.2254,-0.3138,-0.1798,0.1112,0.3954,0.7778,0.8366,0.6994,0.4346,0.4772,0.7288,0.9576,1,0.5588,0.1274,0.121,-0.2092,-0.2484,-0.2844,-0.3726,-0.2692,0.0526,0.4106,0.3354,-0.3654,-0.7324,-0.7774,-0.6962,-0.7444,-0.8016,-0.7172,-0.5488,-0.5368,-0.4796,-0.5578,-0.4676,-0.2,0.1218,0.5428,0.9368,1,0.6782,0.63,0.6872,0.6932,0.591,0.179,0.0616,-0.0346,-0.2752,-0.4918,-0.4586,-0.3574,-0.0318,0.3804,0.3142,-0.4842,-0.8242,-0.9424,-0.8588,-0.7838,-0.9136,-0.781,-0.3688,-0.5244,-0.6398,-0.3776,-0.513,-0.4582,-0.1066,0.4122,0.562,1,0.8904,0.8934,0.7694,0.6196,0.536,0.2074,-0.026,-0.1182,-0.0462,-0.2392,-0.2276,-0.455,-0.1168,0.2604,0.2216,-0.5898,-0.6916,-0.7036,-0.6348,-0.8054,-0.9282,-0.8802,-0.4492,-0.491,-0.491,-0.6168,-0.7426,-0.6108,-0.1856,0.0718,0.3532,1,0.973,0.9102,0.6736,0.6556,0.479,0.2006,0.1468,-0.1258,-0.2126,-0.3982,-0.4102,-0.5086,-0.1058,0.1942,0.2114,-0.62,-0.6314,-0.7,-0.7486,-0.7458,-0.7542,-0.7886,-0.54,-0.4542,-0.5286,-0.6142,-0.5828,-0.4714,-0.2828,0.04,0.32,0.7,1,1,0.7828,0.5172,0.3658,0.36,0.2142,0.0942,-0.2086,-0.2886,-0.3314,-0.6928,-0.0724,0.093,0.232,-0.4032,-0.7104,-0.542,-0.4682,-0.5686,-0.7992,-0.5746,-0.4742,-0.486,-0.418,-0.4534,-0.5806,-0.4918,-0.3648,-0.0192,0.1964,0.4534,0.8198,1,0.8848,0.551,0.4388,0.3116,0.3058,0.1048,-0.1788,-0.3354,-0.285,-0.8694,0.0442,0.019,-0.0736,-0.3768,-0.4736,-0.5326,-0.5452,-0.5284,-0.7348,-0.7094,-0.2126,-0.1706,-0.2758,-0.4906,-0.5242,-0.0568,-0.1242,0.3432,0.6506,1,0.979,0.9074,0.7264,0.7264,0.5578,0.6294,0.2716,0.1032,-0.0526,-0.2548,-0.4442,-0.0952,0.1904,0.1904,0.3334,0.0476,-0.3334,-0.1904,-0.1428,-0.0952,-0.1904,-0.7142,0.1428,0.238,0,0.0952,0.3334,0.619,0.5714,0.0952,0.2858,0,0.1904,0.1428,0.9524,1,0.5714,0.238,0.5238,0.2858,0.1904,0.3334,0.4762,-0.375,0.125,0.25,0.0624,-0.25,-0.75,-0.5,-0.5,-0.5,-0.6876,-0.5624,-0.3124,-0.1876,-0.125,-0.1876,0.0624,0.3124,1,0.9376,0.0624,-0.1876,0.0624,0.75,0.8124,0.75,0.8124,0.375,-0.0624,-0.4376,-0.5624,-0.5,-0.4376,-0.5,-0.1176,0.0882,0.1764,-0.4412,-0.4412,-0.7352,-0.9118,-0.7648,-0.5882,-0.6176,-0.5882,-0.5,-0.4706,-0.2648,-0.4412,-0.4118,-0.5882,0,0.2648,0.5294,1,0.853,0.353,0.5882,0.353,0.4412,0.3824,0.1764,0.0294,-0.2058,-0.3824,-0.7972,-0.7972,-0.2986,-0.2406,-0.5594,-0.774,-0.8666,-0.8202,-0.8724,-0.8492,-0.6348,0.5304,0.9362,0.826,0.7218,0.4956,0.1942,-0.0028,0.0318,-0.2522,-0.4898,-0.6174,-0.7798,-0.8028,-0.7798,-0.9014,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,1,0.5808,0.795,0.854,0.7826,0.5684,0.323,0.0962,0.2018,-0.031,-0.0156,-0.5994,-0.7826,-0.7392,-0.767,-0.826,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,1,-0.2434,-0.6734,-0.8334,-0.7968,-0.4584,-0.2668,-0.2634,-0.2786,-0.3524,-0.4108,-0.5632,-0.8968,-0.8634,-0.7734,-0.9,-1,-1,-1,-1,-1,-1,-1,-0.4858,-0.6286,-0.6286,-0.7428,-0.8858,-0.8858,-0.9142,-0.9428,-0.7428,-0.5714,1,1,-0.8858,-0.8286,-0.9428,-0.9714,-1,-1,-0.5428,-0.2286,-0.2286,-0.1428,-0.5428,-1,-0.9142,-0.7428,-1,-1,-1,-1,-1,-1,-1,-0.379,-0.4396,-0.4462,-0.4514,-0.4558,-0.4394,-0.4716,-0.4588,-0.4326,-0.2322,0.2886,0.2982,0.3334,0.352,0.3724,0.4154,0.4852,0.5364,0.5796,0.6106,-0.5334,0.4824,1,0.4814,0.267,0.618,0.8448,-0.3334,-0.8308,-0.7694,-0.7048,-0.519,-0.5422,-0.5224,-0.3748,-0.0116,-0.2454,-0.2322,-0.1774,0.1442,0.3698,0.1128,0.0812,-0.0348,0.0382,0.2868,0.5704,0.529,0.544,0.7694,0.9436,1,0.8922,0.8756,0.8208,0.8524,0.7082,0.481,0.2438,0.0348,-0.785,-0.8968,-0.8814,-0.6622,-0.7,-0.6246,-0.5408,-0.4166,-0.4306,-0.4152,-0.397,-0.2798,-0.0496,-0.1054,-0.1584,-0.1612,-0.0286,0.185,0.3482,0.379,0.531,0.64,0.82,0.9288,1,0.9804,0.8674,0.9972,0.8506,0.7822,0.767,0.4682,-0.923,-0.8364,-0.808,-0.685,-0.6904,-0.67,-0.5172,-0.3874,-0.3806,-0.4848,-0.4334,-0.171,-0.0954,-0.1764,-0.267,-0.3306,-0.0994,0.1224,0.3482,0.4524,0.4036,0.566,0.6578,0.7296,0.8742,0.8012,0.8838,1,0.8418,0.7836,0.5254,0.3684,-0.2546,-1,1,-1,-1,-1,-1,1,-1,0.0278,0.3612,-0.2778,0.1666,0,0.3334,0.3612,0.6388,0.4166,0.8056,0.8056,0.7222,0.8888,0.6666,0.4722,0.5,0.6666,0.7222,0.4444,0.6112,1,0.8334,0.6944,0.6388,0.0834,0.25,0.4444,0.1944,0.2222,-0.1666,0.1112,-0.5278,'3'
-0.2054,0.3288,0.626,0.7864,0.2654,-0.4924,-0.4558,-0.5626,-0.576,-0.3522,-0.3322,-0.2086,-0.2988,-0.2388,-0.1986,-0.0784,0.1186,0.4324,0.9166,0.9966,0.9466,0.7128,0.7296,0.773,0.8764,1,0.7028,0.4056,0.1552,-0.045,0.015,-0.162,-0.346,0.0868,0.405,0.4816,-0.184,-0.7998,-0.6818,-0.6936,-0.8528,-0.5964,-0.7466,-0.617,-0.3992,-0.4316,-0.4432,-0.4198,-0.3344,0.022,0.3284,0.6378,0.95,1,0.673,0.6348,0.729,0.6818,0.6612,0.5552,0.4108,0.134,0.1812,0.1458,-0.3334,0.0404,0.364,0.4002,-0.4588,-0.657,-0.5732,-0.774,-0.6988,-0.5928,-0.735,-0.5676,-0.3584,-0.5174,-0.5146,-0.4058,-0.286,-0.1744,0.2468,0.562,0.7434,0.9972,1,0.7936,0.668,0.7462,0.5174,0.4282,0.3472,0.1548,0.127,0.1242,-0.3574,0.007,0.3352,0.3742,-0.4076,-0.808,-0.7162,-0.655,-0.8832,-0.7468,-0.758,-0.6718,-0.4742,-0.5188,-0.4382,-0.5272,-0.3436,-0.1906,0.1432,0.363,0.655,0.9304,1,0.8164,0.6968,0.6718,0.477,0.4742,0.1322,0.0152,0.0988,-0.0598,-0.384,0.0544,0.3266,0.427,-0.172,-0.7622,-0.5788,-0.6618,-0.808,-0.573,-0.6218,-0.682,-0.3438,-0.3296,-0.3382,-0.47,-0.298,-0.0946,-0.0544,0.424,0.828,1,0.9398,0.9628,0.9256,0.7766,0.7822,0.639,0.5932,0.2292,0.1834,0.235,-0.5492,-0.0852,0.148,0.2818,-0.135,-0.8008,-0.7378,-0.7352,-0.8322,-0.6854,-0.6408,-0.4496,-0.5754,-0.4784,-0.4942,-0.3972,-0.245,-0.2346,0.0092,0.2766,0.4888,0.9424,1,0.7562,0.7064,0.675,0.5412,0.4312,0.2058,0.093,0.1062,0.038,-0.428,0.2754,0.2288,0.4322,-0.144,-0.6186,-0.2628,-0.2712,-0.8306,-0.8516,-0.7416,-0.6356,-0.5042,-0.3898,-0.3772,-0.4576,-0.1356,0.1906,0.5806,0.6272,0.8262,0.8306,1,0.9406,0.9576,0.6694,0.5042,0.161,-0.0762,-0.178,-0.1568,-0.233,-0.1428,0.381,0.5238,0.7142,0.238,-0.4762,-0.1904,-0.0952,-0.0476,-0.238,-0.4286,-0.0952,-0.238,-0.4286,-0.3334,-0.0476,0.238,0.381,1,0.9048,0.2858,0.238,0.2858,0.5714,0.7142,0.762,0.238,0.381,0.1904,-0.5238,-0.3334,-0.4286,-0.1538,0.2692,0.4616,0.577,0.2308,-0.1924,-0.3846,-0.3462,-0.5384,-0.2692,-0.1538,-0.1924,-0.2692,-0.077,-0.2308,-0.077,0.1924,0.3076,0.9616,1,0.6924,0.3462,0.6538,0.5384,0.6538,0.6538,0.577,0.077,-0.1924,-0.1538,0.077,0.077,-0.2122,0.1314,0.3536,0.4344,-0.0708,-0.596,-0.394,-0.3334,-0.6364,-0.293,-0.3334,-0.2526,-0.2728,-0.293,-0.394,-0.3738,-0.192,0.0304,0.0708,0.3536,0.8182,0.8586,1,0.8788,0.9394,0.7576,0.7576,0.6768,0.5758,0.192,0.2526,0.3132,-1,-1,-1,-1,-1,-1,-1,-0.9324,-0.9118,-0.8942,-0.3158,0.6946,0.906,0.8032,0.6798,0.58,0.4126,0.207,0.022,-0.066,-0.2422,-0.6094,-0.7886,-0.903,-0.9208,-0.9442,-0.9236,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9266,-0.9144,-0.3068,0.9694,0.4062,0.8486,0.8256,0.8576,0.6756,0.518,0.4568,0.5332,0.7796,0.0068,-0.6282,-0.7904,-0.8592,-0.8378,-0.8792,-0.876,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8664,-0.8734,-0.6934,0.8032,-0.408,-0.302,-0.228,-0.0964,-0.1928,-0.1838,-0.042,0.0054,-0.1164,-0.5564,-0.8238,-0.8134,-0.68,-0.7068,-0.7468,-0.78,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2,1,1,1,1,-0.6286,-0.7428,-0.9142,-0.8,-0.8,-0.6858,-0.8572,-0.3714,0.5428,0,-0.6572,-0.7142,-0.7428,-1,-0.2572,-1,-1,-1,-1,-1,-1,-0.2306,-0.216,-0.2038,-0.21,-0.224,-0.2708,-0.2882,-0.3128,-0.3562,-0.252,0.7044,0.7196,0.7458,0.768,0.7856,0.81,0.8352,0.8796,0.9238,0.9198,-0.6,0.2706,1,0.2778,0.371,0.4828,0.5884,1,-0.659,-0.5968,-0.2248,0.0232,0.1472,-0.0852,0.2248,0.3024,0.3644,0.3954,0.5814,0.752,0.907,0.6744,0.5658,0.721,0.5814,0.6434,0.783,0.876,1,1,0.9844,0.9534,0.8914,0.6434,0.721,0.752,0.4884,0.3178,0.2714,-0.3644,-0.4606,-0.3948,-0.6448,-0.7632,-0.8026,-0.7894,-0.421,-0.4606,-0.1184,0.1316,0.0922,0.2894,0.5922,0.1448,-0.0132,0.1052,0.329,0.3158,0.3026,0.5922,0.8816,1,0.7632,0.8026,0.7368,0.5922,0.671,0.671,0.6578,0.4342,0.3552,0.171,0.1578,0.3422,0.25,-0.25,-0.171,-0.25,-0.1578,-0.1842,0,0.4736,0.2894,0.4078,0.4606,0.3026,0.3684,0.3422,0.3158,0.1974,0.7106,0.9342,1,0.9474,0.6974,0.7368,0.5658,0.6184,0.5922,0.6578,0.6974,0.6052,0.4868,0.0658,1,-1,-1,1,-1,-1,-0.8,-0.7,-1,-0.1214,0.0654,-0.028,0.57,0.3458,0.215,0.2898,0.514,0.7196,0.7196,0.4206,0.9814,1,0.271,0.4018,0.1588,0.8692,1,0.6074,0.271,0.4954,0.9252,0.4392,0.3832,-0.1028,0.1028,0.1776,-0.0094,0.0654,-0.0468,0.0468,-0.3832,'4'
-0.2882,0.097,0.6764,0.4882,-0.4352,-0.897,-0.6148,-0.7148,-0.7352,-0.8,-0.7352,-0.6882,-0.5206,-0.4352,-0.4648,-0.4382,-0.1176,0.1882,0.5382,0.8382,1,0.8618,0.7618,0.9058,0.847,0.6264,0.0736,-0.1236,-0.4148,-0.4648,-0.403,-0.353,-0.3772,0.0228,0.4886,0.2936,-0.5518,-0.7494,-0.8456,-0.7874,-0.8684,-0.8962,-0.8684,-0.6354,-0.5974,-0.5544,-0.443,-0.5468,-0.3798,-0.1316,0.0278,0.719,0.9646,1,0.6962,0.6304,0.605,0.438,0.3746,0.1342,-0.162,-0.1494,-0.281,-0.1292,-0.3922,-0.0266,0.3292,0.0968,-0.5762,-0.9492,-0.9734,-0.7942,-0.9128,-0.9418,-0.8548,-0.5594,-0.6344,-0.6198,-0.6174,-0.6852,-0.4406,-0.31,-0.017,0.5326,0.9492,1,0.7772,0.6756,0.5206,0.5812,0.4552,0.2324,0.1042,-0.0436,-0.0048,-0.029,-0.3372,-0.0234,0.2998,0.1054,-0.6768,-0.8782,-0.815,-0.7986,-0.8126,-0.932,-0.9298,-0.7354,-0.5832,-0.5176,-0.705,-0.7378,-0.6416,-0.3748,0.0328,0.3068,0.63,1,0.8758,0.6136,0.5082,0.5714,0.4074,0.3654,0.2272,0.0094,0.0328,0.0118,-0.3256,-0.0194,0.2768,0.1454,-0.7142,-0.8224,-0.7092,-0.6808,-0.9434,-0.8096,-0.776,-0.6474,-0.5676,-0.6164,-0.5934,-0.655,-0.6062,-0.238,-0.0836,0.1712,0.7246,0.8868,1,0.7426,0.4724,0.6268,0.619,0.5546,0.4106,0.1068,0.0862,0.0656,-0.4056,-0.0074,0.0668,0.0788,-0.7474,-0.8692,-0.7622,-0.6702,-0.7384,-0.9138,-0.9346,-0.483,-0.4206,-0.5662,-0.7058,-0.7444,-0.587,-0.5334,-0.376,-0.049,0.4116,0.8128,1,0.8454,0.3878,0.4294,0.5662,0.468,0.2036,-0.058,-0.1888,-0.0996,-0.3624,0.2752,0.0218,-0.2514,-0.703,-0.6396,-0.4892,-0.3822,-0.81,-0.8812,-0.497,-0.3584,-0.2594,-0.406,-0.4456,-0.4178,-0.592,-0.4336,-0.2238,0.0852,0.5288,1,0.9604,0.8772,0.6316,0.5722,0.4614,0.0614,-0.1208,-0.2316,-0.2,-0.2712,-0.0714,0.2142,1,0.8572,0,-0.3572,-0.1428,-0.5,-0.4286,-0.1428,-0.5,-0.6428,0,0,0.2142,0.0714,0.2858,0.4286,0.6428,0.7142,0.7858,0.4286,0.9286,0.7858,0.9286,0.4286,-0.1428,0,-0.3572,-0.1428,0.0714,0.0714,-0.1,0.4,0.6,0.35,0,-0.7,-0.45,-0.45,-0.55,-0.35,-0.4,-0.1,0,-0.05,0,-0.05,0.15,0.5,0.8,0.8,0.95,0.8,0.9,0.75,1,0.75,-0.15,-0.1,-0.2,-0.1,-0.25,-0.15,-0.0886,0.1646,0.367,0.3164,-0.443,-0.2658,-0.2406,-0.1646,-0.4684,-0.6962,-0.6962,-0.2152,-0.1646,-0.367,-0.1392,-0.1898,-0.2658,-0.2406,-0.1898,0.2152,0.4936,0.4684,1,0.8988,0.5696,0.367,0.595,0.7216,0.519,0.4178,0.0632,0.3164,-1,-1,-1,-1,-1,-1,-1,-0.8056,-0.8842,-0.8472,-0.4954,0.7592,0.7916,0.8936,0.7916,0.6064,0.4028,0.1204,-0.0694,-0.2222,-0.4166,-0.5834,-0.7962,-0.8612,-0.8982,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.826,-0.8742,0.9732,1,0.6358,0.7002,0.8046,0.8876,0.6224,0.3762,0.1378,-0.0576,-0.3226,-0.4538,-0.6118,-0.7724,-0.7912,-0.842,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8968,-0.9468,-0.27,0.9332,-0.5686,-0.4786,-0.5172,-0.3544,-0.4058,-0.36,-0.3472,-0.376,-0.512,-0.6134,-0.68,-0.7334,-0.76,-0.9,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,1,1,1,1,-0.9714,-1,-0.9714,-1,-1,-1,-1,-0.7142,-0.9428,-0.5142,-0.8858,-0.9714,-0.7428,-1,-1,-1,-1,-1,-1,-1,-1,-0.4544,-0.4758,-0.4592,-0.4508,-0.4908,-0.514,-0.5292,-0.5506,-0.5644,-0.4456,0.4764,0.5042,0.5552,0.5752,0.5978,0.645,0.6918,0.7552,0.7948,0.7744,-0.4134,0.7412,1,0.51,0.411,0.6386,0.7966,1,-0.6666,-0.4074,-0.3828,-0.5556,-0.3704,0,0.0864,0.0864,0.3704,0.4074,0.4074,0.4568,0.5186,0.2098,0.2716,0.395,0.4444,0.716,0.679,0.7902,0.8888,0.9012,1,0.9136,0.8766,0.5186,0.6666,0.6296,0.4198,0.3334,0.2962,0.0124,-0.7654,-0.7778,-0.568,-0.4692,-0.4198,-0.4074,-0.395,-0.568,0.2222,0.3086,0.1604,0.3456,0.4568,-0.0246,-0.0864,0.2716,0.395,0.4568,0.4198,0.642,1,0.8888,0.9136,0.642,0.5308,0.5186,0.8642,0.8148,0.605,0.5556,0.5308,0.321,-0.2072,-0.148,-0.2426,-0.5266,-0.3846,-0.3846,-0.3728,-0.361,-0.1124,0.1952,0.2308,0.5858,0.7278,-0.0296,-0.0414,0.148,0.4082,0.3254,0.432,0.7042,0.9526,0.9526,1,0.6214,0.645,0.6094,0.7396,0.6568,0.7396,0.3018,0.5148,0.3254,1,-1,-1,1,-1,-1,-1,-0.6666,-1,0.3902,0.317,0.2682,0.4146,0.2196,0.7804,0.6586,0.3414,0.756,0.9512,1,0.8536,0.8292,0.561,0.6342,0.4878,0.4146,0.9756,0.7074,0.8536,0.3902,0.561,0.4878,0.439,0.2926,0.4146,0.1952,0.3658,0.4634,0.3414,-0.1952,-0.5854,'4'
-0.2586,0.1308,0.4236,0.4112,-0.5608,-0.9408,-0.7072,-0.62,-0.8224,-0.8598,-0.7882,-0.6044,-0.6822,-0.651,-0.489,-0.5264,-0.38,-0.3738,0.0716,0.324,0.6542,0.9004,1,0.7384,0.567,0.405,0.3116,0.1714,0.137,-0.1122,-0.1962,-0.2056,-0.3214,-0.0262,0.3794,0.3324,-0.6276,-0.7628,-0.8924,-0.851,-0.8868,-0.931,-0.8814,-0.5006,-0.5558,-0.6056,-0.5144,-0.5834,-0.5972,-0.269,0.0068,0.1558,0.4594,0.8318,1,0.611,0.4482,0.3544,0.3628,0.2718,0.2358,-0.1006,-0.1972,-0.1338,-0.2702,0.039,0.4294,0.3754,-0.5856,-0.928,-0.982,-0.8528,-0.961,-0.982,-0.8378,-0.6096,-0.5766,-0.5136,-0.5166,-0.6246,-0.5736,-0.3514,-0.03,0.063,0.3274,0.934,1,0.5016,0.3304,0.3004,0.1922,0.4024,0.4564,-0.1172,-0.051,0.006,-0.2998,0.0258,0.385,0.3334,-0.6074,-0.9512,-0.7322,-0.6622,-0.8752,-0.8052,-0.7078,-0.7504,-0.6986,-0.653,-0.7626,-0.7168,-0.659,-0.4278,-0.1506,-0.041,0.3028,0.8782,1,0.5038,0.3668,0.2238,0.2146,0.306,0.3882,-0.0898,-0.0958,-0.032,-0.2254,0.1886,0.4858,0.459,-0.6394,-0.8798,-0.646,-0.5894,-0.9432,-0.7262,-0.6594,-0.6962,-0.6026,-0.5926,-0.4558,-0.4724,-0.429,-0.5526,-0.222,0.1586,0.3522,0.7596,1,0.8632,0.4424,0.2054,0.2654,0.389,0.2554,0.1318,0.182,-0.0718,-0.3632,0.151,0.2604,0.3566,-0.4196,-0.8938,-0.7412,-0.7646,-0.7546,-0.7778,-0.7248,-0.6418,-0.5954,-0.592,-0.4064,-0.486,-0.383,-0.549,-0.3334,-0.247,-0.1078,0.728,1,0.7778,0.5124,0.2238,0.2636,0.2272,0.3466,0.1874,0.0382,-0.121,-0.4412,0.5588,0.4286,0.0168,-0.2016,-0.6974,-0.563,-0.4958,-0.689,-0.6848,-0.416,-0.3614,-0.4034,-0.5042,-0.416,-0.2648,-0.21,-0.3404,-0.1344,0.1302,0.3194,0.7142,0.9202,1,0.9496,0.731,0.7774,0.6008,0.2142,0,-0.2942,-0.2184,0.0204,0.347,0.3062,0.3878,0.2244,-0.3062,-0.102,-0.0612,-0.4286,-0.2654,-0.2244,-0.4286,-0.347,0.0612,0.102,0.0204,0.0204,-0.0612,0.347,0.551,0.8368,1,0.9592,0.6326,0.5918,0.551,0.3062,-0.1428,0.2244,0.2654,0.2244,0.2654,0,0.3636,0.5454,0.5454,-0.409,-0.409,-0.3636,-0.2728,-0.409,-0.7272,-0.6364,-0.2728,-0.0454,-0.0454,-0.3182,-0.3182,-0.5,-0.0454,0.2272,0.409,0.6818,1,0.909,0.6818,0.6364,0.3636,0.3636,-0.1364,0.091,0.091,-0.091,-0.1818,-0.3086,0.0618,0.4074,0.3334,-0.4568,-0.7284,-0.8024,-0.7778,-0.8518,-0.8272,-0.753,-0.358,-0.432,-0.4568,-0.432,-0.5556,-0.432,-0.3334,0.037,0.1604,0.432,0.9012,1,0.5802,0.432,0.3828,0.4074,0.3334,0.2592,-0.037,-0.2098,-0.1604,-1,-1,-1,-1,-1,-1,-0.9194,-0.8938,-0.8864,-0.8718,-0.6446,0.5568,0.9598,0.7948,0.663,0.5274,0.5092,0.293,0.1026,-0.1428,-0.3406,-0.4982,-0.7948,-0.8828,-0.8864,-0.9304,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8966,-0.8786,-0.2058,-0.793,-0.5298,0.5996,0.8492,0.9438,0.748,0.4668,0.3656,0.2396,-0.0012,-0.1722,-0.3228,-0.532,-0.7796,-0.8606,-0.8696,-0.8718,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.9868,-0.3268,-0.4534,-0.07,-0.6,-0.4182,-0.4,-0.5364,-0.542,-0.53,-0.465,-0.601,-0.454,-0.569,-0.8356,-0.7656,-0.8056,-0.8456,-0.9722,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,-0.6572,1,0.8858,-1,-0.8858,-0.9714,-1,-0.9714,-1,-0.9714,-0.7142,-0.7428,0.4,-0.7428,-0.8286,-0.8858,-0.8572,-1,-1,-1,-1,-1,-1,-1,-0.449,-0.4826,-0.5008,-0.4792,-0.519,-0.5476,-0.575,-0.5904,-0.6008,-0.4772,0.7106,0.7534,0.7522,0.7812,0.8192,0.8292,0.851,0.8744,0.873,0.8338,-0.5334,0.3764,-0.496,0.0596,0.487,0.694,0.8852,-0.0166,-0.5406,-0.2072,-0.1892,-0.3154,-0.2882,-0.3064,0.1352,-0.027,0.027,0.5316,0.8378,0.955,0.7658,0.7118,0.5856,0.3064,0.2972,0.1622,0.4234,0.1622,0.4324,0.8198,0.982,0.8918,0.7928,1,0.928,0.5046,0.2162,0.3064,0.2612,0.054,-0.476,-0.1978,-0.0588,0.016,-0.0054,-0.091,0.0268,-0.1444,0.1016,0.1872,0.7968,0.786,0.508,0.3904,0.2728,-0.23,-0.2406,0.23,0.3262,-0.0588,0.1978,0.3048,0.722,1,0.6898,0.9894,0.8824,0.647,0.3156,0.3582,0.508,-0.016,-0.2682,-0.1952,-0.2276,-0.0976,-0.2358,-0.1544,-0.1138,0,-0.0814,-0.057,0.2682,0.7074,0.5854,0.4796,0.4634,0.1138,0,0.1464,0.1626,0.1544,0.3414,0.6016,0.9024,0.5934,0.5772,0.8944,1,0.6504,0.6422,0.1708,0.2764,-0.2764,0.5254,-1,-1,1,-1,-1,-1,-0.3666,-1,-0.0098,0.1844,-0.165,0.4368,0.2622,0.165,0.2816,0.4368,0.7476,0.6894,0.3204,0.6504,0.8058,1,-0.0874,-0.0292,0.2428,0.631,0.3786,0.2234,0.4368,0.534,0.4758,0.3398,-0.0098,0.0098,-0.1068,-0.1456,0.1262,0.0486,0.1262,-0.3592,'5'
-0.2562,0.025,0.3922,0.288,-0.6236,-0.8276,-0.6622,-0.6758,-0.9796,-0.8956,-0.7936,-0.7074,-0.6848,-0.526,-0.5124,-0.5124,-0.3854,-0.1044,0.2494,0.542,0.8526,1,0.898,0.7596,0.5532,0.3446,0.2018,0.0952,0.0952,-0.034,-0.0476,0.077,-0.2582,-0.0392,0.3224,0.1466,-0.5496,-0.5888,-0.7046,-0.7604,-0.8368,-0.9918,-0.8534,-0.717,-0.6466,-0.622,-0.5434,-0.595,-0.5352,-0.3016,0.2004,0.4586,0.6074,1,0.909,0.7914,0.6096,0.3512,0.2644,0.2046,0.1962,0.06,0.0434,0.1384,-0.3282,-0.0384,0.269,0.0802,-0.5916,-0.6554,-0.741,-0.8594,-0.9342,-0.9188,-0.8704,-0.8002,-0.765,-0.686,-0.6356,-0.7102,-0.7036,-0.4512,-0.0098,0.124,0.6334,1,0.809,0.6136,0.4732,0.1964,0.1504,0.2052,0.1986,-0.0428,0.0142,0.0692,-0.25,0.0046,0.2972,0.1126,-0.5472,-0.8018,-0.6104,-0.6846,-0.7748,-0.8694,-0.9212,-0.768,-0.6576,-0.7004,-0.7162,-0.7636,-0.7162,-0.4166,-0.0834,0.1104,0.563,1,0.9032,0.6418,0.3784,0.2162,0.268,0.3244,0.277,0.2028,0.0382,0.1734,-0.2424,0.0792,0.2594,0.1546,-0.637,-0.9196,-0.6882,-0.693,-0.8026,-0.827,-0.7296,-0.6322,-0.6102,-0.6248,-0.6638,-0.637,-0.5274,-0.5176,-0.1206,0.1742,0.5494,0.9342,1,0.8538,0.4372,0.2936,0.4008,0.4276,0.4518,0.3886,0.313,0.2692,-0.3884,0.0322,0.262,0.2438,-0.7084,-0.8296,-0.7652,-0.7238,-0.8864,-0.8968,-0.7574,-0.5226,-0.471,-0.6826,-0.7058,-0.693,-0.742,-0.5304,-0.3342,0.0864,0.4426,0.8194,1,0.8554,0.2154,0.12,0.2852,0.458,0.3032,0.2774,0.0762,0.1174,-0.1626,0.4416,0.3038,0.3958,-0.4876,-0.4628,-0.4628,-0.3852,-0.6926,-0.9258,-0.431,-0.2792,-0.1272,-0.0918,-0.2296,-0.3958,-0.2968,0.0566,0.1766,0.4946,0.6784,0.94,1,0.8658,0.5548,0.325,0.3922,0.3816,-0.0424,-0.1696,0.0142,0.0778,-0.2222,0.1112,0.5,0.5,-0.3888,-0.5,-0.5,-0.7222,-0.6666,-0.6666,-0.6666,-0.6666,-0.6666,-0.5,-0.2778,-0.2222,-0.6666,0,0.1112,0.7222,0.8888,0.9444,1,0.7778,0.7222,0.2778,0.1112,0.1666,0.2778,0,-0.2778,-0.1666,-0.1892,0.3514,0.5676,0.4594,-0.6756,-0.5676,-0.5676,-0.5136,-0.5676,-0.5676,-0.7298,-0.4594,-0.4054,-0.5676,-0.5136,-0.5676,-0.2972,-0.2432,0.2432,0.6216,0.7838,0.946,1,0.8378,0.5136,0.2432,0.1352,0.081,-0.027,-0.1352,-0.1892,0.1352,-0.1392,0.1392,0.3164,0.1898,-0.367,-0.8482,-0.6962,-0.6202,-0.8734,-0.5444,-0.6202,-0.4936,-0.595,-0.4936,-0.5444,-0.519,-0.3418,-0.1646,-0.1646,0.1898,0.6456,0.7468,1,0.8228,0.519,0.4178,0.4936,0.4684,0.443,0.4178,0.3418,0.3418,-1,-1,-1,-1,-1,-1,-1,-0.9246,-0.8892,-0.7738,-0.2416,0.7294,0.8848,0.867,0.5788,0.4634,0.3216,0.0332,-0.0864,-0.184,-0.1396,-0.5876,-0.7694,-0.8182,-0.8448,-0.8492,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9048,-0.881,-0.5744,0.8216,0.4554,0.7836,0.6932,0.365,0.208,0.0702,-0.1438,-0.2272,-0.296,-0.3626,-0.686,-0.8002,-0.8122,-0.843,-0.8478,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.9334,-0.4668,-0.0368,-0.4334,-0.2068,-0.3054,-0.3614,-0.36,-0.4014,-0.488,-0.435,-0.4214,-0.6688,-0.695,-0.8668,-0.7668,-0.84,-0.8868,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,-0.6,-0.0572,-0.9142,-1,-1,-1,-0.9714,-1,-0.8572,-0.6286,-0.4572,-0.7714,-0.9428,-0.9142,-0.8858,-1,-1,-1,-1,-1,-1,-1,-0.6368,-0.6636,-0.6656,-0.6282,-0.6416,-0.6476,-0.6096,-0.6472,-0.5968,-0.4718,0.7544,0.7622,0.788,0.8074,0.8296,0.829,0.8146,0.8092,0.822,0.7278,-0.44,0.8706,0.774,0.0416,0.27,0.5078,0.6218,0.9416,-0.7732,-0.4432,-0.4432,-0.402,-0.5258,-0.5052,-0.3814,-0.3608,-0.1134,0.5258,0.897,1,1,0.7732,0.7938,0.5258,0.6702,0.6908,0.3196,0.0516,-0.0722,0.464,0.7526,0.7114,0.6082,0.6494,0.7938,0.7526,0.464,0.4432,0.5876,0.4432,-0.0624,0.125,-0.2708,-0.3958,-0.5208,-0.5208,-0.375,-0.3542,-0.1458,0.6042,1,0.9376,0.9584,0.3334,0.375,0.2084,0.875,0.875,0.6042,-0.1876,-0.0208,0.1876,0.3542,0.5208,0.5624,0.3542,0.5834,0.4376,0.25,0.2084,0.6458,0.5416,0.1182,0.1338,-0.0078,-0.3858,-0.622,-0.5906,-0.496,-0.3386,-0.1338,0.2756,1,0.874,0.559,0.1496,0.0552,0.0552,0.4488,0.5276,0.0552,-0.0078,0.1024,0.1182,0.37,0.433,0.4016,0.307,0.6062,0.4488,0.1338,-0.0078,-0.0866,-0.1182,1,-1,-1,1,-0.8,-1,-1,-0.7666,-1,0.1486,0.109,-0.0694,0.0496,-0.0694,0.307,0.406,0.3664,1,0.6832,0.307,0.2674,0.6634,0.4258,0.2872,0.2872,0.5644,0.4258,0.3664,0.3862,0.3862,0.4258,0.01,0.208,0.0298,0.109,0.0496,0.2872,0.2872,0.0892,-0.01,-0.4456,'5'
-0.518,0.0358,-0.0564,0.1282,0.4256,0.323,0.3538,0.159,-0.077,-0.1794,-0.3128,0.0256,-0.0462,0.323,0.477,0.5898,0.9282,0.9384,1,0.9384,0.9076,0.8154,0.9282,0.8462,0.1692,-0.0564,0.077,0.2924,0.282,0.0564,-0.0154,-0.1282,-0.4388,0.0918,0.3164,0.4694,1,0.8776,0.4082,0.5714,0.5306,0.1734,0.1122,0.0306,0.602,0.602,0.6734,0.602,0.7552,0.7244,0.6326,0.5714,0.3674,0.6632,0.3674,0.3878,-0.1734,-0.1428,0.449,0.4592,0.398,0.0918,-0.1224,0.0714,-0.5448,-0.0976,0.1056,0.2114,0.7154,0.6504,0.2358,0.496,0.5528,-0.0976,0.1382,0.3334,0.6586,0.6992,0.756,0.683,0.878,0.5204,0.5284,0.7642,0.8456,1,0.5692,0.0082,-0.0244,-0.13,0.0406,0.065,0.0732,0.1708,0.0732,-0.3334,-0.6478,-0.2358,-0.0034,0.0898,0.6146,0.5482,0.3488,0.4818,0.5416,0.2492,0.1496,0.2094,0.8006,0.8538,0.9402,0.7874,0.5482,0.701,0.7542,0.5348,0.8538,1,0.6744,0.0964,-0.0498,0.01,0.2094,0.2358,0.1362,0.0034,-0.1162,-0.2692,-0.6106,-0.1816,-0.0364,0.076,0.6634,0.6436,0.5512,0.439,0.5446,0.3994,0.406,0.4192,0.8284,1,0.9406,0.9736,0.4258,0.5974,0.8218,0.6568,0.7624,0.5842,0.5512,0.2674,0.0958,-0.01,0.5314,0.5116,0.175,0.043,-0.0166,-0.0232,-0.631,-0.1522,-0.1132,0.0486,0.6376,0.6764,0.7088,0.631,0.2686,0.3462,0.4434,0.6958,0.7282,1,0.8964,0.3074,0.2816,0.3786,0.5404,0.631,0.6246,0.5404,0.3592,-0.0874,-0.042,-0.2686,0.068,0.2298,0.1844,-0.0744,-0.275,-0.275,-0.6168,0.0374,-0.1308,-0.271,0.3364,0.299,1,0.8972,0.4392,0.215,0.3644,0.6822,0.6636,0.9346,0.6822,0.3738,0.243,0.3738,0.5046,0.5794,0.6168,0.5234,0.1496,-0.1962,-0.243,-0.1776,-0.1962,-0.0842,-0.1776,-0.1402,-0.514,-0.486,-0.6744,-0.2094,-0.2094,0.0232,0.1162,0.0232,0.2094,0.0698,-0.1628,-0.3488,-0.4884,-0.1162,-0.0698,0.2094,0.3954,0.628,0.9534,1,0.6744,0.7674,0.6744,0.6744,0.721,0.6744,-0.1628,-0.2558,-0.3954,0.1628,0.2094,0.0698,-0.2558,-0.1628,-0.1764,0.1764,0.2942,0.4118,0.5882,0.4118,0.4706,0.2942,-0.2942,-0.0588,0.1764,0.1764,0.0588,0.2942,0.8236,0.7058,0.5294,0.7058,1,1,0.8824,0.4706,0.8824,0.8236,0,-0.1764,0.0588,0.353,0.353,-0.2352,0.2352,0.2352,-0.5428,-0.0286,0.2572,0.4,1,0.9142,0.3428,0.6286,0.6572,0.1142,0.0572,-0.0572,0.7714,0.8,0.7142,0.8286,0.9142,1,1,0.7714,0.5428,0.7714,0.5142,0.4572,-0.2,-0.1428,0.1714,0.4,0.4,0.1428,0.1142,0.1714,-1,-1,-1,-1,-1,-1,-0.8546,-0.9012,-0.8256,-0.7966,-0.4418,0.0524,0.1686,0.622,0.7616,0.7732,0.7616,0.8314,0.9942,0.843,0.4652,-0.2384,-0.686,-0.7034,-0.6744,-0.8546,-0.7152,-0.593,-0.7616,-0.7966,-0.8546,-0.6976,-0.5232,-1,-1,-1,-1,-1,-1,-0.9328,-0.9418,-0.6236,-0.6882,-0.3454,0.0064,-0.5316,-0.1694,0.1888,0.5084,0.943,0.903,0.802,0.7336,0.5098,-0.3906,-0.8306,-0.7814,-0.7464,-0.7736,-0.7852,-0.8072,-0.8512,-0.8434,-0.8382,-0.8382,-0.7724,-1,-1,-1,-1,-1,-1,-0.8464,-0.9534,-0.7534,-0.6468,0.1332,-0.01,-0.305,-0.435,-0.365,-0.225,-0.255,-0.385,-0.39,-0.5,-0.464,-0.608,-0.36,-0.0534,0.0032,0.3332,-0.28,-0.6168,-0.4134,0.18,0.3,-0.06,-0.3368,-1,-1,-1,-1,-1,-1,-0.3142,0.2,1,1,1,-0.4,-0.4858,0.2,0.1714,-0.6858,-0.7142,-0.8572,-0.6572,0.0858,1,1,0.6,-0.2858,-0.9142,-0.9142,-0.5714,-0.6286,-0.9142,-0.8572,-0.8858,-0.8,-0.9714,1,1,1,1,1,1,1,1,1,1,-0.3392,-0.3794,-0.3794,-0.4088,-0.364,-0.412,-0.4492,-0.588,-0.7358,-0.8748,-0.6534,-0.5764,-0.3104,-0.1216,-0.172,-0.5316,-0.2678,-0.25,-0.5588,-0.4412,0.245,-0.0196,-0.098,-0.0098,0.0098,0.1862,0.9608,1,0.696,0.7942,0.4118,0.0686,0.4216,0.3138,0.2942,0.1568,0.255,0.2156,0.598,0.598,0.5196,0.2942,0.245,0.1764,0.3432,0.4314,0.2352,-0.0098,0,-0.098,-0.238,-0.0834,0.4286,0.2858,0.1904,0.1548,0.5,0.4762,0.9642,0.8334,0.8572,0.7976,0.6072,0.4286,0.5714,0.3452,0.4524,0.2858,0.3334,0.2024,0.8452,0.8452,0.6548,0.762,0.7858,0.5596,0.6904,1,0.7262,0.7024,0.6786,0.0834,-0.495,-0.3466,0.198,0.109,-0.2178,-0.2476,-0.0892,0.01,0.5644,0.5446,0.7326,0.6336,0.4456,0.109,0.1584,0.208,0.1584,0.1188,-0.0396,0.0298,0.406,0.8416,0.9208,1,0.5346,0.5742,0.3466,0.7822,0.7128,0.4356,0.2772,-0.0892,0.8914,-1,-1,1,-1,-1,-0.8,-0.5,-1,-0.638,-0.5,-0.3966,-0.138,-0.3104,-0.069,-0.0344,-0.069,0.3276,0.2242,0.1552,0.2414,0.4482,0.3448,0.3104,0.3276,0.5344,0.6896,0.7242,0.6206,0.6896,0.7932,0.9656,1,0.6552,0.7068,0.638,0.5344,0.8104,0.431,0.1552,-0.0172,'6'
-0.6078,-0.3312,-0.1898,0.029,0.3054,0.3376,0.2412,-0.0032,-0.0546,-0.2862,-0.2412,0.061,0.2798,0.1512,0.3312,0.6978,0.8006,1,0.865,0.73,0.7556,0.7556,0.7684,0.7234,0.479,0.299,0.254,-0.0932,-0.1832,-0.0868,-0.1898,0.1898,-0.4448,-0.2238,0.0538,0.2068,0.5638,0.7734,0.5468,-0.0764,0.0652,-0.0028,-0.0652,-0.0028,0.1898,0.2918,0.5468,0.7508,1,0.9094,0.7054,0.592,0.5808,0.6034,0.6658,0.4958,0.3258,0.0594,-0.1614,-0.2408,-0.3144,-0.422,-0.0878,-0.0424,-0.4222,-0.1802,0.1062,0.2148,0.5358,0.8914,0.7482,0.0124,0.2198,0.1754,0.1556,0.2346,0.3976,0.526,0.679,1,0.9012,0.8666,0.7086,0.7136,0.7334,0.8024,0.6246,0.5358,0.3382,0.042,-0.0074,-0.0914,-0.4024,-0.2396,-0.042,0.121,-0.4434,-0.2068,0.064,0.1428,0.5024,0.8966,0.7536,0.2758,0.394,0.2512,0.271,0.271,0.4926,0.6306,0.7784,1,0.936,0.665,0.6552,0.66,0.734,0.8768,0.7784,0.4236,0.2562,0.0542,-0.0098,-0.2118,-0.4138,-0.0838,0.1182,0.1034,-0.4514,-0.1844,0.1262,0.165,0.3786,0.8738,0.801,0.3156,0.432,0.3544,0.364,0.4564,0.6068,0.699,1,0.898,0.5194,0.5776,0.6262,0.7136,0.8738,0.8156,0.8252,0.4368,0.2572,0.2088,0.034,-0.1068,-0.0874,-0.3106,0.199,0.2766,-0.3764,-0.0376,0.1506,0.1666,0.414,0.785,0.7688,0.5322,0.3602,0.3764,0.3924,0.6828,0.7204,0.9892,0.8494,0.8602,0.6398,0.543,0.6182,0.8548,0.8656,1,0.7688,0.5322,0.285,0.1022,0.0698,-0.0216,-0.0914,-0.0752,-0.0968,0.3764,-0.2558,0.1046,-0.1396,-0.3082,-0.029,0.407,0.3546,0.279,0.2268,0.1686,0.436,0.8604,0.9826,1,0.814,0.314,0.471,0.372,0.122,0.0698,0.314,0.378,0.2966,0.1628,0.1802,-0.1046,-0.2674,-0.2616,-0.2326,-0.1686,-0.3372,0.0988,-0.4,0.0666,-0.2,-0.2,0.2,0.0666,0.2,0,0.1334,-0.3334,0.2666,0.1334,0.4666,0.1334,0.2,0.6666,0.5334,0.8,0.8666,0.8,1,0.7334,0.8,0.6666,0.6,0.6666,0.6,0.1334,0,0.6,0.3334,0.6,-0.283,-0.0944,0.1698,0.3208,0.434,0.5094,0.283,0.2452,0.2076,-0.0944,-0.132,0.2076,0.3208,0.0566,0.3208,0.6982,0.8868,1,0.8868,0.7358,0.849,0.9246,0.9246,0.6226,0.585,0.4716,0.3208,0.2076,-0.0188,0.0566,0.2076,0.5472,-0.5,-0.262,0.0238,0.1666,0.5476,0.8096,0.5952,-0.119,0.0952,0,-0.0714,0.0238,0.262,0.2858,0.5238,0.7858,1,0.9286,0.5952,0.619,0.5,0.5714,0.6666,0.5238,0.3096,-0.0476,-0.3096,-0.3334,-0.5714,-0.3572,0.1428,0.1666,-1,-1,-1,-1,-1,-1,-1,-1,-0.9278,-0.9206,-0.8122,-0.0036,0.7076,0.9206,0.9206,0.8954,0.9386,0.7942,0.6318,0.3754,0.2672,-0.1842,-0.6642,-0.834,-0.834,-0.9206,-0.9098,-0.9134,-0.8808,-0.8772,-0.9206,-0.888,-0.917,-1,-1,-1,-1,-1,-1,-1,-1,-0.971,-0.9696,-0.6094,0.1372,0.3648,0.4058,0.5482,0.921,0.921,0.742,0.6672,0.288,-0.1166,-0.4424,-0.833,-0.8076,-0.823,-0.8364,-0.8478,-0.8808,-0.8886,-0.8752,-0.8908,-0.8844,-0.9204,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.9268,-0.56,-0.384,-0.344,-0.608,-0.616,-0.512,-0.6268,-0.58,-0.5468,-0.5968,-0.47,-0.5168,-0.1,0.28,0.1332,0.1832,0.0866,0.12,0.12,0.1066,0.2866,0.0132,-0.2768,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,1,-0.8286,-0.8858,-0.9714,-0.9142,-0.8858,-0.9142,-0.5428,1,1,0.3142,-0.3714,-0.9142,-0.8572,-0.9428,-1,-0.9714,-1,-1,-0.9142,-0.7142,1,1,1,1,1,1,1,1,1,1,-0.1822,-0.1822,-0.2426,-0.2696,-0.3214,-0.3674,-0.4286,-0.5248,-0.6392,-0.8484,-0.5066,-0.4,-0.4734,-0.4628,0.405,0.3098,0.443,0.9666,0.0508,-0.0678,0.4238,0.2542,0.322,0.7628,1,0.8644,0.9492,0.4406,0.6272,0.9492,0.5932,0.5762,0.678,0.2034,0.9152,0.339,0.356,0.3898,0.661,0.7966,0.4238,0.305,0.5254,0.7288,0.5084,0.7288,0.5424,0.0848,0.0678,-0.661,0.3026,0.6578,0.25,0.8552,0.75,0.579,0.7894,0.5,0.7764,0.3158,0.4868,0.7236,0.9606,0.9474,0.7368,0.3816,0.5658,0.4606,0.6448,0.5,0.5394,0.75,0.3552,0.4868,0.5658,0.2894,0.2632,0.7894,0.1316,0.1974,0.3026,-0.3684,-0.2046,-0.159,0.5076,0.4242,0.0682,0.2804,0.2804,0.6666,0.9394,1,0.9696,0.9696,0.7272,0.4622,0.4696,0.2728,0.7576,0.659,0.5304,0.4696,0.6212,0.6364,0.4166,0.2196,0.1288,0.303,0.1516,0.4772,0.3636,0.2272,0.3258,0.091,-0.993,1,-1,-1,-1,-1,-0.8,-1,-1,-0.6296,-0.4444,-0.2592,-0.0926,-0.0186,0.0556,0.1482,0.4074,0.5556,0.7962,0.7778,0.5186,0.7962,0.8334,0.6852,0.5556,0.7408,0.9074,0.8518,0.7778,0.926,0.9444,1,0.6852,0.8704,0.6482,0.8704,0.9444,0.7592,0.6852,0.6852,0.1482,'6'
-0.2762,0.07,0.2798,0.2692,-0.6958,-0.7972,-0.7448,-0.5874,-0.7762,-0.7272,-0.584,-0.451,-0.4126,-0.4266,-0.2132,-0.1504,0.1014,0.6748,0.7798,0.9546,0.8252,0.7448,1,0.8742,0.556,0.3496,0.3322,0.458,0.57,0.6224,0.6714,0.3076,-0.2874,0.0124,0.5062,0.432,-0.4532,-0.8096,-0.7108,-0.6966,-0.6014,-0.6508,-0.6262,-0.6296,-0.3722,-0.411,-0.2804,-0.2064,0.1958,0.4814,0.8872,0.9506,1,0.7602,0.8694,0.9824,0.6578,0.4286,0.3404,0.2664,0.3474,0.4638,0.5308,0.5168,-0.3844,-0.0986,0.4218,0.313,-0.5136,-0.7994,-0.704,-0.7244,-0.8266,-0.8504,-0.7482,-0.6564,-0.5442,-0.5748,-0.517,-0.3538,-0.1258,0.2722,0.5102,1,0.8912,0.7482,0.8878,0.7074,0.6666,0.4456,0.2414,0.2278,0.1904,0.2586,0.1632,0.2688,-0.3672,-0.0734,0.3882,0.3042,-0.6958,-0.937,-0.6468,-0.556,-0.8182,-0.8986,-0.8356,-0.7552,-0.577,-0.528,-0.479,-0.3916,-0.2692,-0.0384,0.4616,0.7588,1,0.7272,0.6854,0.8076,0.7692,0.7098,0.4616,0.2972,0.2062,0.2552,0.2342,0.3356,-0.2836,0.0746,0.4096,0.4162,-0.6286,-0.7744,-0.728,-0.5954,-0.6782,-0.791,-0.7248,-0.5124,-0.456,-0.4428,-0.582,-0.393,-0.2306,0.0548,0.2936,0.6452,0.9436,1,0.8076,0.8142,0.8208,0.6948,0.4462,0.3864,0.2936,0.2704,0.2736,0.2272,-0.2072,0.3706,0.5738,0.7172,0.0438,-0.6374,-0.4184,-0.4144,-0.5418,-0.6136,-0.6892,-0.5498,-0.3666,-0.3466,-0.502,-0.4024,-0.3386,0.1594,0.6056,0.7968,0.9562,0.8726,0.9562,1,0.9562,0.5578,0.3108,0.0278,-0.0518,-0.0438,-0.1196,-0.1196,-0.2044,1,0.725,0.197,-0.5092,-0.487,-0.0558,-0.0632,-0.4722,-0.5464,-0.539,-0.4646,-0.4796,-0.3828,-0.316,-0.2566,0.4126,0.9034,0.8588,0.4126,0.1748,0.5316,0.197,0.591,0.7546,0.7472,0.4646,-0.1672,-0.0484,-0.1598,0.0038,0.264,-0.353,-0.0588,0,0.0588,-0.5882,-0.7058,-0.353,-0.2352,-0.7058,-0.7648,-0.7058,-0.4118,-0.4118,-0.8236,-0.2352,-0.1764,0.2942,0.5882,0.7058,1,0.8824,0.7058,0.9412,0.8236,0.8236,0.4706,0.2352,0.5882,0.647,0.7058,0.5882,0.4706,-0.2444,-0.0222,0.2444,0.2888,-0.2888,-0.5112,-0.6,-0.6,-0.8222,-0.6444,-0.4222,-0.2888,-0.3334,-0.2888,-0.1556,-0.1556,-0.0666,0.6888,0.9556,1,0.4666,0.6444,1,0.9112,0.2444,0.3334,0.5556,0.5112,0.4222,0.6444,0.6444,0.4222,-0.236,0.1686,0.3932,0.4606,-0.1012,-0.5506,-0.5956,-0.528,-0.4832,-0.3258,-0.3932,-0.4832,-0.236,-0.3258,-0.573,-0.2584,-0.146,0.146,0.3484,0.573,1,0.9776,0.8202,0.7528,0.7752,0.4832,0.3708,0.2134,0.191,0.2584,0.1236,0.1012,-1,-1,-1,-1,-0.9148,-0.918,-0.8886,-0.9344,-0.9082,-0.895,-0.2524,0.2196,0.623,0.8066,0.9476,0.7214,0.4886,0.3344,0.2394,0.2722,-0.082,-0.646,-0.882,-0.9016,-0.9214,-0.9378,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9262,-0.9262,0.3794,1,1,0.5702,0.1226,0.3184,0.6808,0.8204,0.9326,0.7914,0.5236,0.4916,0.2558,0.0634,-0.3874,-0.7626,-0.8878,-0.8476,-0.9182,-0.9246,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.9334,0.2932,0.6532,0.79,0.74,0.1766,-0.3,-0.3846,-0.3778,-0.4024,-0.4178,-0.402,-0.332,-0.324,-0.434,-0.66,-0.798,-0.8134,-0.7468,-0.8668,-0.94,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,-0.6858,0.2286,0.6858,-0.1142,-0.6858,-0.9428,-1,-1,-1,-1,-0.7714,-0.0858,0.0572,-0.4,-0.8286,-0.9142,-0.7428,-0.5428,-1,-1,-1,-1,-1,-1,-1,-0.2818,-0.3042,-0.353,-0.38,-0.3886,-0.3898,-0.3946,-0.4292,-0.4372,-0.3526,0.575,0.5724,0.5578,0.561,0.5668,0.5558,0.5856,0.6028,0.666,0.6184,-0.52,0.1176,0.1146,0.2254,0.3008,0.352,0.5268,1,-0.729,-0.6216,-0.6,-0.428,-0.385,-0.1698,-0.1268,-0.1526,0.0366,0.101,0.372,0.7506,0.8752,0.9398,1,0.9226,0.6774,0.5956,0.6216,0.828,0.8624,0.8452,0.9612,0.8322,0.9268,0.9484,0.742,0.7764,0.7162,0.5054,0.2474,0.028,-0.888,-0.805,-0.8424,-0.585,-0.6182,-0.5934,-0.3652,-0.1868,0.0374,0.2158,0.4108,0.859,0.8298,0.7926,0.9294,0.9088,0.7262,0.7594,0.6016,0.668,0.8672,0.8258,0.942,0.9378,0.9876,0.9792,1,0.9586,0.8174,0.664,0.3402,0.224,-0.3626,-0.2748,-0.4022,-0.5208,-0.433,-0.4638,-0.4066,-0.0022,0.4814,0.5428,0.833,1,0.9428,0.5736,0.9648,0.9076,0.7362,0.8154,0.688,0.7406,0.877,0.9912,0.934,0.9164,0.9868,0.8682,0.7758,0.7142,0.7274,0.499,0.244,-0.0682,1,-1,-1,1,-1,-1,-1,0.0334,-1,-0.1568,0.1176,0.1372,0.6274,0.5294,0.2352,0.3138,0.353,0.549,0.647,0.5098,0.549,0.6274,0.7058,0.5098,1,0.8824,0.7058,0.1568,0.353,0.3138,0.2156,0.1764,-0.0196,0,0.1372,0.0196,-0.0196,0.1372,-0.1568,-0.255,-0.5294,'7'
-0.4524,-0.1552,0.0618,-0.0918,-0.2186,-0.5292,-0.5626,-0.5392,-0.7462,-0.6928,-0.6328,-0.3824,-0.1854,-0.0884,-0.0184,0.1854,0.5692,0.7596,1,0.803,0.7296,0.7596,0.7562,0.6662,0.636,0.4156,0.3956,0.3388,0.4858,0.606,0.5492,0.232,-0.5206,-0.1494,0.1198,-0.1068,-0.5304,-0.8784,-0.7932,-0.583,-0.6618,-0.7142,-0.6552,-0.491,-0.2906,-0.2808,-0.2348,-0.1592,0.1002,0.6026,0.8884,1,0.6748,0.6912,0.6946,0.5994,0.2052,0.1724,0.0574,0.018,0.0608,0.2644,0.3498,0.3366,-0.5396,-0.1224,0.1546,-0.133,-0.9208,-0.9676,-0.831,-0.7986,-0.8094,-0.7014,-0.687,-0.4748,-0.3634,-0.428,-0.4136,-0.3812,-0.1224,0.3166,0.831,0.946,1,0.8848,0.795,0.8202,0.5144,0.1654,0.133,0.1008,-0.018,0.2158,0.2482,0.313,-0.3866,-0.0156,0.1784,-0.0328,-0.3296,-0.6234,-0.4778,-0.515,-0.5008,-0.5122,-0.5264,-0.3038,-0.3296,-0.3352,-0.3266,-0.2068,-0.0614,0.261,0.4778,0.649,1,0.9116,0.6604,0.6718,0.552,0.4636,0.3124,0.1212,0.03,0.1326,0.1526,0.2098,-0.4104,-0.0634,0.2388,0.056,-0.306,-0.653,-0.597,-0.7202,-0.638,-0.5896,-0.444,-0.4366,-0.5074,-0.3806,-0.4328,-0.597,-0.3098,-0.1268,0.1008,0.556,1,0.9814,0.5598,0.515,0.4738,0.3956,0.2052,0.0336,-0.2798,-0.2276,-0.1642,-0.1082,-0.5228,-0.2,0.2818,0.159,-0.6182,-0.85,-0.7,-0.641,-0.8046,-0.5954,-0.45,-0.3864,-0.509,-0.491,-0.6954,-0.5682,-0.6136,-0.4136,-0.1228,0.4136,0.7136,1,0.909,0.5228,0.5318,0.4182,0.25,-0.0182,-0.3728,-0.359,-0.3364,-0.3318,-0.4754,-0.0124,-0.2222,-0.3086,-0.8334,-0.7962,-0.8148,-0.5926,-0.716,-0.747,-0.6544,-0.5246,-0.4198,-0.537,-0.7284,-0.4506,-0.2284,0.1666,0.2284,0.2962,0.7038,0.7592,0.7902,1,0.7716,0.679,0.1296,-0.105,-0.0556,-0.2222,-0.1914,-0.5864,0.1186,0.1864,0.356,0.356,0.356,0.1526,0.1864,0.1186,-0.1864,-0.1186,0.0508,0.2542,0.1186,0.2542,0.2204,0.4916,0.5254,0.695,0.8644,0.8306,0.9322,0.661,0.7288,0.8984,1,0.695,0.661,0.7628,0.5932,0.8984,0.8984,0.3898,-0.3778,0.0222,0.1112,-0.0666,-0.1556,-0.2,-0.2888,-0.4222,-0.3778,-0.7334,-0.5112,-0.4666,-0.2888,0.1112,0.1556,0.3778,0.6888,0.8666,1,0.9556,0.7334,0.9112,0.9556,0.8666,0.7778,0.6444,0.4666,0.5556,0.7778,0.8666,0.7778,0.4666,-0.4202,-0.0724,0.2464,0.0434,-0.1594,-0.7682,-0.4782,-0.6232,-0.6522,-0.5072,-0.1884,-0.1594,-0.1884,-0.4202,-0.5652,-0.7392,-0.2754,-0.0144,0.0724,0.884,1,0.971,0.7682,0.7102,0.826,0.3044,0.1884,0.1594,-0.1304,-0.3334,0.1304,0.1304,-1,-1,-1,-0.824,-0.8802,-0.838,-0.838,-0.7536,-0.7324,-0.6198,-0.1972,0.3802,0.7746,0.9508,0.9154,0.7184,0.5352,0.4508,0.2606,-0.0212,-0.183,-0.493,-0.676,-0.7254,-0.7958,-0.8522,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8964,-0.9036,-0.7412,-0.2448,1,1,1,0.8542,0.7836,0.7436,0.7648,0.6376,0.4188,0.4164,0.1882,-0.3248,-0.4894,-0.5364,-0.753,-0.7836,-0.8352,-0.8448,-0.8612,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8734,-0.9534,-0.7568,0.0466,0.83,0.8132,0.8532,0.4466,-0.249,-0.289,-0.369,-0.2512,-0.24,-0.242,-0.308,-0.474,-0.45,-0.448,-0.62,-0.62,-0.7868,-0.82,-0.9468,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3714,-0.4572,1,1,1,0.0858,0.0286,1,1,-0.7428,-0.9714,-0.9428,-1,-1,-0.2858,-0.1714,-0.9714,-0.5142,-0.4286,-0.9142,-1,-0.9714,-0.4572,-1,-1,-1,-1,-1,-1,-1,-0.0214,0.0216,-0.0066,0.0016,-0.0178,-0.0884,-0.1326,-0.2436,-0.2712,-0.2352,0.3748,0.3656,0.3584,0.3536,0.3398,0.345,0.3412,0.3746,0.4616,0.5134,-0.36,0.1294,0.5788,0.7952,0.6424,0.8448,0.8658,0.775,-0.8038,-0.6676,-0.6076,-0.3406,-0.395,-0.2426,-0.0028,-0.0136,-0.0464,0.1826,0.2752,0.5912,0.575,0.722,0.5422,0.8528,1,0.9564,0.7548,0.6784,0.831,0.8528,0.8148,0.7712,0.613,0.5694,0.722,0.7276,0.3732,0.395,0.4006,-0.0408,-0.9328,-0.7268,-0.7268,-0.7058,-0.6428,-0.584,-0.29,-0.2436,-0.0756,0.0588,0.2226,0.7648,0.874,0.4874,0.7774,0.8824,0.853,0.8446,0.7436,0.8824,1,0.8782,0.8278,0.874,0.7436,0.8992,0.895,0.8488,0.7142,0.7942,0.626,0.4034,-0.5622,-0.2926,-0.3222,-0.4274,-0.4274,-0.44,-0.2042,-0.099,0.3348,0.3726,0.5452,0.7348,0.8484,0.4064,0.6336,1,0.701,0.5958,0.621,0.7306,0.7474,0.8358,0.7094,0.6716,0.7178,0.6884,0.6758,0.5958,0.5032,0.4442,0.3768,0.1622,1,-1,-1,1,-0.6,-1,-1,0.0334,-1,0.1764,0.0824,0.1294,0.0352,-0.153,0.3176,0.3176,-0.1294,0.9294,1,0.8588,0.6236,0.8352,0.6236,0.0352,0.0588,0.4352,0.3176,0.1294,-0.2706,0.1764,0.0588,0.1058,0.153,0.0588,-0.247,-0.3412,-0.2,-0.1764,-0.247,-0.4588,-0.4588,'7'
-0.5556,-0.2484,0.0458,0.5686,0.6014,0.2746,0.0326,-0.0262,-0.1764,-0.3202,-0.2876,-0.1112,0.0784,0.1112,0.1634,0.268,0.5816,0.9282,1,0.9804,0.7386,0.8366,0.83,0.7712,0.3986,0.3726,0.1438,-0.1372,-0.3334,-0.255,-0.17,0.0262,-0.5628,-0.3716,-0.0328,0.5246,0.5082,0.0274,-0.1584,-0.246,-0.235,-0.3388,-0.2842,-0.164,-0.1148,-0.0328,0.0984,0.0928,0.164,0.5792,0.9836,1,0.5684,0.7814,0.6776,0.612,0.5246,0.3498,0.2022,0.1366,-0.0328,-0.1092,-0.164,0.1038,-0.4556,-0.2612,0.1778,0.5388,0.5056,-0.0444,-0.3612,-0.2388,-0.2334,-0.3556,-0.1778,-0.2056,-0.1278,-0.0388,0.1,0.1112,0.3444,0.5944,1,0.8888,0.9444,0.85,0.8666,0.8334,0.7056,0.4556,0.3278,0.25,0.05,0.0666,-0.0278,0.2,-0.4344,-0.1414,0.2172,0.1414,0.1414,-0.192,-0.5202,-0.2626,-0.2676,-0.4798,-0.2474,-0.3384,-0.2424,-0.1112,0.0404,-0.005,0.0506,0.3484,0.7374,0.8888,1,0.7626,0.7828,0.7728,0.6364,0.4748,0.3182,0.2576,0.096,0.0808,-0.005,-0.1212,-0.5468,-0.1388,0.2124,0.0708,-0.1842,-0.3654,-0.5694,-0.6374,-0.6034,-0.6884,-0.609,-0.4958,-0.3994,-0.3314,-0.2408,-0.2352,-0.1558,0.0424,0.541,0.7394,1,0.881,0.6998,0.7224,0.5978,0.4618,0.2238,0.0992,-0.0254,-0.0708,-0.1218,-0.1954,-0.3194,0.0764,0.5138,0.4236,-0.3958,-0.5902,-0.6944,-0.5972,-0.7362,-0.8334,-0.6458,-0.493,-0.5556,-0.5278,-0.4376,-0.4306,-0.118,-0.0972,0.118,0.4306,0.9792,1,0.5972,0.382,0.4028,0.0694,-0.118,-0.1736,-0.4862,-0.382,-0.4584,-0.5416,-0.6466,-0.1294,-0.1206,-0.0172,-0.2932,-0.9396,-0.3706,-0.3018,-0.5776,-0.6466,-0.8104,-0.3276,-0.2414,-0.569,-0.3966,-0.4482,-0.2068,-0.2758,0.0862,0.4396,1,0.7414,0.319,0.5258,0.4482,0.3276,-0.2758,0.0432,0.0172,-0.2328,0.0258,0.0086,-0.5152,-0.2122,-0.2122,0.7576,0.5758,0.3334,0.091,0.2728,0.091,-0.091,-0.2122,0.2122,0.3334,0.091,0.091,0.2728,0.6364,0.8788,0.8788,0.7576,0.697,1,0.8182,0.8788,-0.0304,0.2728,-0.0304,-0.394,-0.5758,-0.3334,0.2122,0.091,-0.591,-0.409,0.1364,0.4546,0.5454,0.2728,0.0454,0.0454,-0.1364,-0.3182,-0.1818,-0.1364,0,0.1818,0.1818,0.2728,0.6818,0.8636,1,0.9546,0.7272,0.8182,0.7272,0.7272,0.6818,0.4546,0.1818,0.091,-0.091,-0.2728,0,0.1364,-0.409,-0.0228,0.341,0.2046,-0.091,-0.2272,-0.5,-0.5,-0.7046,-0.8864,-0.5,-0.4546,-0.5,-0.2954,-0.3864,-0.25,-0.1364,0.0228,0.1364,0.3864,1,0.9318,0.75,0.5454,0.409,0.2954,0.1136,-0.091,-0.1364,-0.091,-0.5228,-0.2728,-1,-1,-1,-1,-1,-0.9216,-0.9156,-0.9216,-0.8554,-0.3796,-0.1626,0.3886,0.7862,0.979,0.8162,0.518,0.268,0.1566,0.1506,0.1536,-0.241,-0.768,-0.9036,-0.9246,-0.9156,-0.9368,-0.9126,-0.9308,-0.9216,-0.9006,-0.9368,-0.9006,-0.9308,-1,-1,-1,-1,-1,-0.9462,-0.9378,-0.9368,-0.8758,-0.3862,-0.2132,0.325,0.766,0.8572,0.7432,0.4068,0.1822,0.1698,0.0332,-0.381,-0.6076,-0.8416,-0.94,-0.9482,-0.942,-0.909,-0.559,-0.2972,0.0798,0.3002,0.264,0.3706,0.678,-1,-1,-1,-1,-1,-0.94,-0.8734,-0.8334,-0.8034,-0.5334,-0.42,-0.516,-0.516,-0.416,-0.364,-0.4,-0.352,-0.4,-0.304,-0.568,-0.5168,-0.4568,-0.8534,-0.9068,-0.9134,-0.95,0.5032,0.82,0.7132,0.66,0.6232,0.7332,0.51,-1,-1,-1,-1,-1,-1,-0.8572,-0.8,1,1,-0.4286,0.2,-0.0286,-0.9142,-1,-1,-0.8286,-0.2858,1,1,0.3142,1,1,-0.8858,-0.8858,1,1,1,-0.2,-0.9142,-0.9428,-1,-0.9714,1,1,1,1,1,0.9932,0.9648,0.8958,0.7398,0.369,-0.1672,-0.1294,-0.0668,-0.0686,-0.032,0.023,0.096,0.2034,0.3172,0.4306,-0.4134,-0.447,-0.2506,-0.0704,0.5258,0.7578,0.7412,0.1666,-0.2688,0.3118,0.6666,0.4086,0.2258,0.0538,0.2796,0.3334,0.6344,0.8602,0.7956,1,0.699,0.4408,0.3764,0.4732,0.258,0.215,0.1612,0.086,0.5054,0.6452,0.301,-0.129,-0.1398,0.2796,0.258,-0.0538,-0.2258,-0.129,-0.0646,-0.3656,0.037,0.4538,0.8982,0.7222,0.3982,0.3426,0.3888,0.5834,0.963,0.9722,0.8704,1,0.787,0.5462,0.676,0.6574,0.574,0.5556,0.5,0.2408,0.5092,0.6204,0.5834,0.2314,0.2778,0.463,0.5186,0.5186,0.213,0.176,0.0092,-0.2686,-0.0548,0.2936,0.403,0.3632,0.015,-0.0746,0.1442,0.194,0.9004,1,0.6616,0.6418,0.3732,0.1542,0.204,0.3034,0.0248,0.1044,0.015,-0.204,0.3234,0.393,-0.0248,-0.184,-0.1144,-0.0646,0.1244,0.0746,-0.1244,0.015,-0.3234,-0.4228,-0.4576,-1,-1,1,-0.6,-1,-1,-0.6,1,-0.8378,-0.7028,-0.8244,-0.4054,-0.4864,-0.5676,-0.5136,-0.2568,-0.1756,-0.2432,0.1082,0.6756,0.6892,0.5406,0.581,0.7432,1,0.8918,0.473,0.6216,0.919,0.7838,0.6082,0.7432,0.554,0.6216,0.7162,0.6352,0.6352,0.1486,0.2702,-0.2028,'8'
-0.5706,-0.1864,0.1808,0.565,0.5706,0.079,0.0564,-0.0226,-0.017,-0.3842,-0.3954,-0.2204,-0.0338,-0.0678,0.079,0.1526,0.4746,0.8248,0.904,1,0.9718,0.8022,0.921,0.9548,0.6724,0.4576,0.356,0.2316,0.0904,-0.1186,-0.1356,0.0622,-0.6532,-0.2602,0.1156,0.4394,0.4336,-0.052,-0.237,-0.341,-0.2602,-0.5318,-0.4162,-0.3236,-0.1908,-0.0924,0.0346,0.0752,0.1676,0.6184,0.8902,0.9942,1,0.792,0.763,0.9768,0.659,0.5318,0.445,0.1792,-0.052,-0.0694,-0.2486,0.0982,-0.567,-0.208,0.2536,0.168,0.151,-0.0712,-0.2478,-0.3048,-0.3106,-0.4872,-0.4758,-0.3048,-0.134,-0.0598,-0.0826,0.0256,0.265,0.4302,0.755,0.983,1,0.983,0.926,0.9886,0.869,0.7664,0.5442,0.3846,0.3562,0.151,-0.0028,0.2592,-0.622,-0.189,0.2658,0.1726,-0.1946,-0.337,-0.4246,-0.4302,-0.5124,-0.5452,-0.589,-0.5178,-0.2876,-0.1946,-0.1398,-0.2494,0.063,0.0794,0.2494,0.8028,0.9014,1,0.759,0.726,0.7808,0.4958,0.3918,0.4192,0.2328,0.0192,-0.0192,-0.0794,-0.6074,-0.1564,0.4588,0.4058,-0.3422,-0.565,-0.5332,-0.4854,-0.5596,-0.5596,-0.5226,-0.5756,-0.549,-0.358,-0.358,-0.5014,-0.2096,-0.1724,0.0982,0.581,0.7772,1,0.931,0.8832,0.809,0.6552,0.4642,0.374,0.2572,-0.045,0.0026,-0.1088,-0.6872,-0.319,0.3068,0.3558,-0.3128,-0.73,-0.9694,-0.7116,-0.773,-0.9632,-0.7116,-0.5092,-0.405,-0.5276,-0.6442,-0.6564,-0.5276,-0.368,-0.276,0.1472,0.638,0.8404,0.9448,1,0.8344,0.405,0.4662,0.227,-0.2208,-0.178,-0.2392,-0.5644,-0.8,-0.191,-0.0636,0.009,-0.0636,-0.5364,-0.4818,-0.491,-0.691,-0.7272,-0.5454,-0.2728,-0.2272,-0.209,-0.3272,-0.2818,-0.0636,0.0818,0.0728,0.3636,0.6818,0.8546,0.9,0.8818,1,0.8818,0.4728,0.4454,-0.1454,0.0272,0.3454,0.2364,-0.4286,-0.2142,0.1072,0.3928,0.3928,0,0,0,0,-0.25,-0.4286,-0.3928,0,0,0,0.1072,0.5714,0.6786,0.9286,1,0.9286,0.7858,0.9642,0.9286,0.6428,0.5714,0.4642,0.1072,0.2858,-0.1072,0.0358,0.1428,-0.6924,-0.282,0.0256,0.5898,0.5898,0.077,0.0256,-0.0256,-0.077,-0.282,-0.3334,-0.1282,-0.077,-0.077,0.077,0.1794,0.4872,0.7948,0.8974,0.8974,0.8462,0.7436,1,0.9488,0.641,0.5384,0.1794,0.282,0.1282,-0.282,-0.0256,0.0256,-0.6924,-0.3076,0.359,0.3846,-0.359,-0.6154,-0.5898,-0.641,-0.6154,-0.6924,-0.7692,-0.5642,-0.2052,-0.359,-0.641,-0.8206,-0.3334,-0.3076,-0.1538,0.359,0.5642,1,1,0.9488,0.7692,0.3076,0.4872,0.359,0.0256,-0.0256,-0.1026,-0.3846,-1,-1,-1,-1,-1,-1,-0.9084,-0.8868,-0.9346,-0.7386,-0.3944,0.6602,0.9608,0.6906,0.342,0.3202,0.281,0.3682,0.438,-0.0196,-0.3552,-0.7038,-0.817,-0.8736,-0.8824,-0.8954,-0.9172,-0.8868,-0.8824,-0.9084,-0.878,-0.9346,-0.891,-1,-1,-1,-1,-1,-1,-0.9316,-0.9288,-0.8076,-0.4812,-0.1746,0.8418,0.953,0.7562,0.551,0.3144,0.2844,0.2802,0.022,-0.3186,-0.5994,-0.6522,-0.8374,-0.9372,-0.9316,-0.9358,-0.9388,-0.293,-0.1462,0.233,0.4354,0.6308,0.9272,-1,-1,-1,-1,-1,-1,-0.9734,-0.86,-0.3534,0,-0.0734,-0.156,-0.384,-0.332,-0.316,-0.188,-0.24,-0.304,-0.37,-0.2234,-0.2768,0.27,-0.6068,-0.8868,-0.92,-0.9568,-0.92,-0.04,0.59,0.6332,0.48,0.7032,0.57,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,1,1,-0.7142,-0.7428,-0.8572,-0.9428,-0.9142,-0.6858,-0.1714,0.0858,-0.1142,0.6572,1,0.5714,-0.9142,-0.8,1,1,1,-0.6286,-0.7428,-0.5428,-0.9142,1,0.9672,0.9734,0.95,0.9614,0.9356,0.881,0.8248,0.709,0.3786,0.4676,0.438,0.4352,0.425,0.443,0.4458,0.4654,0.5192,0.617,0.7256,-0.4534,-0.4236,-0.1304,0.7362,0.8988,0.9744,0.9116,-0.1916,-0.4546,-0.707,-0.4546,-0.0304,-0.0506,-0.3132,-0.0708,0.2122,0.3636,0.7878,0.6868,1,0.7676,0.1616,0.3232,-0.0606,0.1616,0.4142,0.2728,-0.2122,0.394,0.6868,0.8384,0.909,0.9696,1,0.8888,0.606,0.6566,0.5454,0.5252,-0.0506,-0.3054,-0.18,0.113,-0.0544,-0.1716,-0.364,0.0292,0.0292,0.908,1,0.7908,0.841,0.7824,0.3222,0.205,0.138,0.4142,0.59,0.5482,-0.0628,0.4728,0.9582,0.8076,0.6234,0.4226,0.6318,0.6318,0.7072,0.3808,0.5146,0.5314,0.297,-0.2492,0.1946,0.3038,0.0034,-0.1468,-0.099,0.0922,0.256,0.6996,0.9454,1,0.918,0.8156,0.4676,0.174,-0.0854,0.0376,0.3106,-0.0034,-0.2082,0.0716,0.4334,0.4334,0.6518,0.6656,0.6792,0.6178,0.5972,0.3788,0.3924,0.2832,0.017,-0.4526,-1,1,-1,-0.8,-1,-1,-0.4,1,-0.5268,-0.5054,-0.4732,-0.5162,-0.5268,-0.3656,-0.1506,-0.0752,0.0538,0.387,0.6774,0.871,0.8494,0.742,0.7742,0.8064,0.7956,0.7634,0.7096,0.7742,1,0.9354,0.8494,0.828,0.7742,0.8818,0.828,0.7956,0.8602,0.785,0.5484,0.3548,'8'
-0.5292,-0.2962,-0.2202,-0.1468,0.2202,0.3722,0.7012,0.9696,1,0.9164,0.8836,0.767,0.3266,0.162,-0.0456,-0.1746,-0.1822,-0.0254,-0.0988,-0.0152,-0.0026,0.0936,0.1164,0.167,-0.1012,0.286,0.2836,0.1646,0.0632,-0.0152,0.0532,0.1418,-0.4186,-0.221,-0.2368,-0.091,0.4142,0.5286,0.688,1,0.973,0.8698,0.9124,0.7778,0.495,0.284,0.1044,-0.0012,-0.0662,0.0684,0.0124,0.0752,0.1336,0.2032,0.4118,0.3536,0.192,0.4612,0.293,0.2704,0.1582,0.2054,0.2884,0.293,-0.4936,-0.2846,-0.3102,-0.194,0.345,0.496,0.7608,0.9884,0.9558,0.8536,1,0.8792,0.6748,0.4472,0.173,-0.0894,-0.0384,0.0802,0.0406,0.115,0.252,0.3542,0.2916,0.0754,0.2474,0.3822,0.1498,0.0384,-0.0012,-0.043,0.022,0.2126,-0.519,-0.2992,-0.4042,-0.2284,0.3602,0.4432,0.6728,0.9584,0.8926,0.702,0.7876,1,0.9366,0.7704,0.3602,0.0526,0.1892,0.2356,0.3284,0.3578,0.5164,0.514,0.0354,-0.414,0.1916,0.2136,0.0306,-0.0622,-0.2064,-0.2722,-0.2136,-0.116,-0.4824,-0.208,-0.307,-0.1882,0.5304,0.6776,0.8528,0.9292,0.9264,0.4682,0.4398,0.7398,0.802,0.9236,1,0.8784,0.6096,0.7652,0.7312,0.8896,0.9576,0.686,0.3636,0.041,-0.0806,0.3182,0.2786,0.2446,-0.1428,-0.058,-0.1654,-0.1146,-0.3826,-0.0842,-0.0332,0.1072,0.3954,0.671,0.4924,0.1276,-0.0052,-0.1224,-0.125,-0.0688,0.0382,0.0766,0.2244,0.329,0.6556,0.921,0.9898,1,0.8674,0.796,0.824,0.6608,0.329,-0.023,0.1786,0.3724,0.3904,0.2756,0.1556,0.125,-0.3284,0.2584,-0.0442,-0.2288,0.0886,0.166,0.2804,-0.155,-0.4612,-0.5056,-0.4982,-0.3654,-0.4244,-0.5608,-0.4244,-0.2768,-0.0222,-0.0296,0.7196,0.8782,1,0.7786,0.8672,0.7712,0.6864,0.048,-0.203,-0.0738,0.1328,0.273,0.155,-0.0296,-0.3514,0.081,-0.2432,-0.2972,-0.2432,0.081,0.2432,-0.027,0.4594,0.6756,1,0.7298,0.946,0.8378,0.1352,-0.027,0.1892,0.081,-0.027,-0.027,0.3514,0.4594,0.4594,0.2432,-0.4594,0.4054,0.5136,0.5136,0.027,0.2432,0.1352,0.1352,-0.65,-0.45,-0.3,-0.2,0.15,0.4,0.6,0.9,1,0.85,0.8,0.75,0.2,0.1,-0.2,-0.35,-0.3,-0.15,-0.1,-0.05,-0.05,-0.1,-0.2,-0.15,0,0.05,0.1,0.1,0.1,0.05,0.05,0,-0.589,-0.3424,-0.3972,-0.2876,0.3972,0.5342,0.6438,0.6164,0.6164,0.2876,0.1506,0.2054,0.315,0.4794,1,0.9452,0.3698,0.6712,0.4794,0.6164,0.7808,0.6712,0.4246,-0.0136,-0.2602,0.178,0.178,0.2876,-0.3424,-0.0958,-0.1232,-0.0958,-1,-1,-1,-1,-1,-1,-0.8368,-0.8658,-0.6384,-0.6852,-0.5976,0.4986,0.8834,0.8484,0.726,0.6152,0.5394,0.4928,0.242,0.1662,0.1312,-0.2594,-0.6968,-0.79,-0.8718,-0.8776,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9524,-0.957,-0.5184,-0.642,-0.5064,0.5724,0.849,0.7884,0.8004,0.5944,0.5376,0.5852,0.076,-0.2134,-0.6282,-0.7646,-0.9102,-0.9204,-0.9404,-0.9414,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8434,-0.93,-0.83,-0.67,-0.4068,-0.5216,-0.6048,-0.5154,-0.5294,-0.5694,-0.6078,-0.6232,-0.6294,-0.5494,-0.6186,-0.7072,-0.5434,-0.6434,-0.67,-0.87,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,-0.2572,1,0.4858,1,0.4858,-0.8572,-1,-0.7714,-0.8858,-0.9714,-0.8858,-0.6572,-0.7142,-0.4572,-0.0858,-0.9142,-0.8858,-0.9142,-0.8572,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.2374,-0.1948,-0.1682,-0.1614,-0.126,-0.1184,-0.1392,-0.1846,-0.411,-0.4216,-0.3866,0.5882,-0.3782,-0.4066,0.7234,0.9048,0.6428,-0.6916,-0.4814,-0.238,0.2698,0.799,0.9788,1,0.545,0.217,0.0158,-0.0582,0.1534,0.3122,0.3228,0.3756,0.217,0.3016,0.09,-0.2064,0.1958,0.0476,-0.0052,-0.2698,0.1006,0.1112,-0.0052,-0.0688,0.1852,0.1428,0.1958,0.5874,0.5026,-0.2698,-0.3254,-0.0482,0.506,0.6746,1,0.9036,0.6746,0.2772,0.1808,0.1204,0.1084,0.5422,0.253,0.6144,0.0844,0.4458,0.265,-0.0362,0.3734,0.518,0.3012,-0.0964,0.6024,0.494,-0.0602,0.241,0.506,0.6144,0.482,0.8314,0.8314,0.0722,-0.3708,-0.1012,0.1798,0.6404,0.9326,0.9776,1,0.5956,0.3708,0.3484,0.427,0.6966,0.4158,0.8314,0.7304,0.7528,0.4832,-0.0112,0.764,0.8988,0.8652,0.4382,0.7192,0.7528,0.1798,0.5056,1,0.7978,0.6068,0.8202,0.6742,0.2808,0.9158,-1,-1,1,-1,-1,-1,-0.5,-1,0.0694,0.0892,0.2278,0.1882,0.109,0.3862,0.208,0.2278,0.5644,0.7426,0.9208,0.7426,1,0.5644,0.703,0.802,0.802,0.1882,0.307,0.3862,0.2872,0.4654,0.3268,0.3268,0.1288,0.208,0.5248,0.7228,0.6634,0.3664,0.3268,-0.1684,'9'
-0.5276,-0.2964,-0.2222,-0.1316,0.3468,0.5276,0.7006,0.8714,0.9336,1,0.9216,0.7468,0.4512,0.1356,-0.1276,-0.1558,-0.1758,-0.0794,-0.0894,-0.0914,-0.0814,-0.0934,0.1256,0.188,0.0432,0.188,0.204,0.1096,0.0292,-0.1036,0.0814,0.1578,-0.4928,-0.2936,-0.3244,-0.2956,0.3244,0.3656,0.5278,0.7926,1,0.9056,0.92,0.4722,0.2032,-0.0534,-0.4394,-0.5894,-0.4846,-0.3696,-0.4046,-0.4004,-0.382,-0.1684,0.0882,-0.039,-0.2588,-0.1972,-0.1972,-0.343,-0.4086,-0.3942,-0.3286,-0.189,-0.5278,-0.3482,-0.3226,-0.2372,0.1944,0.4316,0.641,0.782,1,0.9936,0.906,0.9124,0.5598,0.0576,-0.1924,-0.3012,-0.4124,-0.3568,-0.391,-0.3482,-0.2052,-0.077,-0.0428,-0.1838,-0.5898,-0.2906,-0.2564,-0.3804,-0.3526,-0.406,-0.3248,-0.28,-0.4442,-0.2488,-0.272,-0.2024,0.1582,0.5046,0.6838,0.8302,1,0.628,0.8094,0.893,0.9466,0.8256,0.5024,0.1232,-0.0698,-0.0372,0.1604,0.3348,0.3906,0.2372,-0.0488,-0.393,-0.6302,-0.2604,-0.079,-0.1302,-0.3488,-0.3326,-0.2744,-0.372,-0.3636,-0.1236,-0.3538,-0.1358,0.5226,0.623,0.7504,0.929,0.5202,0.2608,0.1432,0.3342,0.5446,0.6254,0.934,1,0.7136,0.5618,0.508,0.7846,0.792,0.4958,0.2632,-0.0746,-0.6598,-0.6254,-0.3122,-0.1162,-0.0746,-0.1898,-0.2216,-0.361,-0.4428,-0.1704,-0.3358,-0.0292,0.5256,0.64,0.3042,0.1216,0.039,-0.2142,-0.1874,0.0924,0.073,0.0876,0.326,0.416,0.8808,1,0.961,0.8296,0.815,0.8978,0.725,0.4258,-0.1728,-0.3698,-0.7056,-0.4648,-0.2262,-0.0778,-0.2262,-0.3454,-0.4268,-0.0408,-0.472,-0.451,-0.1402,0.2006,-0.1192,-0.4902,-0.3846,-0.5988,-0.7316,-0.3876,-0.2518,-0.3574,-0.442,-0.3092,0.282,0.466,0.9156,0.9004,1,0.9186,0.9396,0.9126,0.3666,0.0438,-0.4088,-0.629,-0.5052,-0.466,-0.3002,-0.1794,-0.5652,-0.2174,-0.2608,-0.1304,0.174,0.5218,0.6086,0.7826,0.9566,1,0.826,0.4782,0.3914,0.3478,0.2608,0.0434,0.1304,0.1304,0.0434,-0.174,-0.0434,0.174,0.2174,0.174,0.0434,0.4348,0.6522,0.5652,0.4782,0.2608,0.6086,0.7826,-0.6666,-0.381,-0.4286,-0.3334,0.2858,0.5238,0.6666,0.762,1,0.8572,0.619,0.6666,0.2858,-0.3334,-0.4762,-0.1904,-0.0476,-0.0476,0.0476,0.0952,0.0476,0,0.0952,-0.0952,0.238,0.2858,0.1904,0.3334,0.0952,-0.0952,0.0476,0.238,-0.5942,-0.4492,-0.3334,-0.4492,-0.0144,0.3334,0.6522,0.913,0.971,0.5652,0.7972,1,0.971,0.7972,0.4202,-0.0724,-0.3914,-0.3624,-0.4202,0.0434,0.4782,0.4492,-0.2174,-0.4492,-0.5652,-0.1884,-0.0434,-0.0434,-0.3334,-0.1594,-0.2464,-0.4492,-1,-1,-1,-1,-1,-1,-0.849,-0.7626,-0.8562,-0.7194,-0.2158,0.6762,0.8274,0.6116,0.5396,0.4748,0.1582,0.259,0.331,0.2806,-0.0936,-0.367,-0.5612,-0.6116,-0.6978,-0.7482,-0.8202,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.957,-0.9366,-0.9506,-0.8734,-0.2104,0.6984,0.5752,0.308,0.397,0.3648,-0.1158,-0.3594,-0.3208,-0.3422,-0.6524,-0.8122,-0.8562,-0.8508,-0.9002,-0.8992,-0.911,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.7668,-0.8534,-0.6,-0.3568,-0.475,-0.4376,-0.525,-0.53,-0.5988,-0.7538,-0.87,-0.7576,-0.725,-0.6378,-0.7212,-0.68,-0.65,-0.78,-0.78,-0.8334,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7428,-0.7142,-0.4858,1,1,-0.0286,-0.8,-0.9428,-0.9142,-0.8858,-0.8286,-0.8286,-0.8572,-0.8572,-0.7142,-0.6,-0.9714,-0.8572,-0.8858,-0.8858,-0.9714,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.1914,-0.2204,-0.2292,-0.2776,-0.3278,-0.3438,-0.3136,-0.343,-0.5812,-0.6222,-0.2934,0.9764,0.0536,0.294,0.9164,0.736,0.7854,-0.1084,0.0224,0.0674,0.2696,0.0898,0.1798,0.7304,1,0.6854,0.5506,0.7078,0.5394,0.8202,1,0.854,0.5956,0.4494,0.4382,-0.0224,0.191,0.472,0.5394,0.3596,0.573,0.2696,-0.0562,0.3146,0.1348,0.1124,0.0338,-0.0898,-0.1348,-0.5394,-0.061,0.2112,0.324,0.4178,0.9436,0.9624,0.6338,0.6526,0.709,0.446,0.6902,0.493,0.8498,0.3896,0.662,0.8404,0.6338,0.399,0.2582,0.4178,0.7934,0.8592,0.9342,1,0.3052,0.2676,0.6244,0.568,0.3802,0.399,0.6526,0.3146,-0.1712,-0.0642,0.401,0.9466,1,0.9786,0.7486,0.4598,0.23,0.2566,0.5614,0.8022,0.8236,0.5294,0.5882,0.7754,0.845,0.5936,0.0642,0.754,0.9572,0.8182,0.6738,0.508,0.1818,0.139,0.4652,0.476,0.5668,0.6204,0.7434,0.5294,-0.9892,1,-1,-1,-1,-1,-0.4,-1,-1,0.1016,0.0678,-0.305,-0.1186,-0.017,-0.0508,0,-0.1864,0.2542,0.661,0.7118,1,0.644,0.0848,0.1186,0.1016,0.0678,0.1864,0.1694,-0.2034,0.0678,0.7288,0.7118,0.5424,0.2882,0.1694,0.1694,0.5594,0.6272,0.0508,0.2712,0.1356,'9'
-0.3908,-0.0786,0.5132,0.4856,0.4232,0.1086,0.0138,0.0412,-0.0162,-0.1136,-0.0162,0.271,0.2234,0.3858,0.8252,0.8178,0.9776,0.8626,0.8876,0.99,1,0.9826,0.6704,0.4182,0.3484,0.3084,0.3284,0.3134,0.4456,0.5956,0.558,0.6904,-0.4648,-0.202,0.27,0.6692,0.8126,0.4672,0.3698,0.2676,0.146,0.0292,0.0218,0.2482,0.3868,0.528,0.8588,0.893,0.9538,0.8272,0.9586,0.9878,1,0.8492,0.6594,0.4014,0.253,0.2482,0.1094,-0.0146,0.3188,0.5766,0.652,0.6692,-0.5036,-0.2782,0.1486,0.494,0.5564,0.5276,0.3406,0.0624,0.0912,-0.0576,0,0.0936,0.2446,0.4148,0.5972,0.8538,0.9328,0.9304,0.9184,0.837,0.9064,1,0.7866,0.4652,0.4124,0.247,0.0816,0.0456,0.0288,0.4748,0.506,0.5684,-0.5102,-0.3148,0.0806,0.4308,0.4672,0.4458,0.246,-0.0742,0.029,-0.16,-0.0548,0.001,0.1536,0.304,0.4006,0.5402,0.9054,0.9226,1,0.7616,0.8904,0.9012,0.7314,0.5468,0.4264,0.2868,0.0848,-0.0054,0.072,0.3018,0.3748,0.435,-0.5168,-0.2498,0.1702,0.3986,0.47,0.0968,-0.052,-0.0234,-0.1356,-0.1866,-0.1682,-0.0458,0.0582,0.052,0.1784,0.3414,0.6044,0.741,1,0.9328,0.7452,0.8268,0.7432,0.582,0.4272,0.2906,0.2354,0.101,-0.0336,0.2742,0.47,0.4476,-0.5164,-0.2736,0.315,0.2778,0.1444,-0.1706,-0.2276,-0.0766,-0.383,-0.383,-0.3172,-0.14,-0.1312,-0.0766,0.092,0.0526,0.1794,0.6324,0.8358,1,0.9432,0.906,0.9496,0.7614,0.639,0.4442,0.2428,0.2078,0.0788,-0.092,0.3216,0.5164,-0.3982,0.0058,0.2124,0.2036,-0.41,-0.1446,-0.1238,-0.4424,-0.6136,-0.6696,-0.6666,-0.4248,-0.3864,-0.3098,-0.3422,-0.2684,0.0856,0.3304,0.525,0.8732,0.7464,0.8938,1,1,0.711,0.3304,0.2242,0.1032,-0.062,-0.0856,-0.2508,0.1828,-0.1764,0.098,0.5686,0.5686,0.2156,-0.1764,-0.098,0.098,-0.0588,-0.098,0.098,0.255,0.255,0.2942,0.6078,0.5686,0.7648,0.8432,0.9216,0.7254,0.8824,1,0.7648,0.647,0.6078,0.451,0.3726,0.5294,0.647,0.5294,0.2942,0.451,-0.5348,-0.0698,0.4418,0.3954,0.1162,-0.2094,-0.2094,-0.2558,-0.2558,-0.1162,-0.0698,0.0232,0.2094,0.3488,0.5348,0.907,0.9534,0.8604,0.907,1,0.9534,0.8604,0.814,0.4884,0.3024,0.3024,0.3024,0.3024,0.5348,0.628,0.5348,0.3954,-0.625,-0.2708,0.0624,0.4166,0.4792,0.1042,-0.0416,-0.0624,-0.1876,-0.2292,-0.2292,-0.1042,-0.0416,-0.0208,0.1458,0.3124,0.6042,0.6876,1,0.9166,0.6876,0.8958,0.7708,0.4792,0.4166,0.2292,0.125,0.125,-0.0834,0.4166,0.5416,0.4584,-1,-1,-0.9528,-0.9634,-0.9548,-0.9656,-0.942,-0.9076,-0.9292,-0.9312,-0.6004,0.175,0.652,0.8668,0.5488,0.2352,0.2696,0.3706,0.059,-0.1794,-0.3018,-0.5574,-0.7788,-0.8776,-0.8904,-0.9054,-0.912,-0.942,-0.9248,-0.8948,-0.8968,-0.8712,-0.8324,-1,-1,-0.969,-0.9742,-0.958,-0.969,-0.7542,-0.4222,0.2702,-0.2772,-0.56,-0.0242,0.4338,0.87,0.9108,0.8396,0.6564,0.4674,0.1,-0.0546,-0.318,-0.7406,-0.8758,-0.9126,-0.9268,-0.9346,-0.9366,-0.9624,-0.9598,-0.9528,-0.9496,-0.943,-0.9294,-1,-1,-0.9468,-0.9634,-0.8634,-0.98,0.0066,0.7466,0.78,0.7432,0.2166,-0.6238,-0.5764,-0.6868,-0.5834,-0.4618,-0.3518,-0.505,-0.4018,-0.6018,-0.415,-0.5216,-0.529,-0.5122,-0.7322,-0.7356,-0.8156,-0.899,-0.8656,-0.8322,-0.9122,-0.849,-0.949,-1,-1,-0.7714,-0.8286,-0.8858,1,1,1,0.9142,1,1,1,-0.7714,-1,-1,-1,-1,-0.9142,-0.9714,-0.8,0.2,1,-0.5714,-0.8572,-0.7714,-0.8858,-0.9714,-0.9714,-0.9714,-0.9714,-1,-1,-1,0.584,0.6086,0.649,0.6858,0.7454,0.8172,0.8832,0.9424,0.9966,0.8362,-0.4408,-0.4894,-0.5424,-0.5896,-0.6398,-0.6878,-0.7118,-0.7042,-0.6196,-0.1614,-0.4666,0.4118,-0.582,-0.3684,-0.1116,0.0714,0.153,0.7,-0.7034,-0.6572,-0.4834,-0.1918,-0.2584,-0.2788,-0.2174,-0.1254,0.0128,0.0844,0.202,0.5754,0.7186,0.8158,0.8466,0.913,1,0.7954,0.7902,0.6266,0.6214,0.78,0.688,0.555,0.7034,0.7136,0.8364,0.6982,0.6368,0.5704,0.1612,-0.3094,-0.914,-0.7746,-0.7746,-0.5492,-0.5778,-0.4468,-0.3648,-0.2214,0.0532,0.25,0.332,0.7622,0.7172,0.7214,0.9262,0.9632,0.8894,0.791,0.8196,0.9918,1,0.8894,0.7868,0.9016,0.877,0.877,0.8402,0.873,0.7746,0.6804,0.541,0.1312,-0.5832,-0.2884,-0.4442,-0.3348,-0.4694,-0.3222,-0.1958,0.1832,0.3558,0.499,0.7432,0.8864,0.8064,0.4906,0.7768,0.8526,0.659,0.4906,0.659,0.6422,0.7684,0.9748,1,0.979,0.6422,0.8274,0.8358,0.7474,0.6422,0.6464,0.52,0.3348,-0.4098,-1,-1,1,-0.8,-1,-0.6,0.0334,-1,0.2268,0.21,-0.0252,0.3614,0.21,-0.126,-0.042,0.0084,0.6638,0.8824,0.647,1,0.9832,0.395,0.1428,-0.0756,0.2774,0.0756,0.0588,-0.2268,0.21,0.1932,0.0756,0.0924,-0.126,0.0252,0.0252,-0.042,-0.1596,-0.2436,-0.2268,-0.6974,'10'
-0.3976,-0.0482,0.319,0.7006,0.722,0.0124,-0.3618,-0.4902,-0.4938,-0.4902,-0.533,-0.0874,0.0232,0.155,0.5794,0.9322,1,0.7968,0.6898,0.95,0.8574,0.4082,-0.1016,-0.394,-0.3404,-0.3654,-0.319,-0.173,0.287,0.4332,0.3832,-0.0374,-0.3682,-0.113,-0.087,0.455,0.8696,0.855,-0.0232,0.113,-0.0434,-0.029,0.0144,0.1478,0.2028,0.4666,0.629,0.9102,1,0.7334,0.6116,0.6174,0.7682,0.6522,0.3942,-0.1536,-0.1566,-0.4174,-0.1652,-0.2058,-0.0318,0.142,0.1188,0.3334,-0.2676,0.0214,0.0312,0.4418,1,0.9442,0.1922,0.202,-0.005,0.1034,0.087,0.1396,0.1658,0.3694,0.6946,0.6912,0.8292,0.9672,0.8556,0.7668,0.6552,0.9014,0.6716,0.1232,-0.0804,-0.2776,-0.3104,-0.3924,-0.1592,-0.1232,-0.0574,-0.1002,-0.3744,-0.1256,-0.0894,0.3966,0.5056,0.5056,-0.109,-0.1202,-0.2598,-0.3268,-0.2766,-0.1006,-0.028,0.0894,0.1704,0.3548,0.7374,0.9944,1,0.5726,0.6034,0.6452,0.5754,0.067,-0.2206,-0.3352,-0.4022,-0.6368,-0.5838,-0.5364,-0.4804,-0.1536,-0.4028,-0.1482,0.0472,0.3568,0.37,-0.2646,-0.2778,-0.3546,-0.5258,-0.7234,-0.607,-0.4402,-0.326,-0.2864,-0.1942,-0.1306,0.2074,0.449,0.866,1,0.7804,0.8156,0.73,0.5632,0.2272,-0.0626,-0.1834,-0.3194,-0.4402,-0.6246,-0.1856,0.012,-0.4138,-0.069,0.269,0.2206,-0.2574,-0.4506,-0.5012,-0.5218,-0.6414,-0.7748,-0.6736,-0.3656,-0.469,-0.5862,-0.3448,-0.4114,-0.2022,0.0598,0.4022,0.6644,0.9448,0.9656,1,0.9058,0.7816,0.5242,0.3242,0.1954,-0.108,-0.1794,-0.3402,0.0736,-0.4376,0.3834,0.0126,-0.4166,-0.4126,-0.3834,-0.1458,-0.6334,-0.8084,-0.6334,-0.5124,-0.2458,-0.3958,-0.6958,-0.2916,-0.4,0.0708,0.2834,0.5334,0.5708,0.5042,0.4208,0.3,0.7584,1,0.825,0.5542,0.3542,0.1208,0.05,-0.3374,-0.3374,-0.1334,0.1334,0.6666,0.6,0.0666,-0.2666,-0.6666,-0.2,-0.0666,-0.4,-0.4,-0.1334,-0.2666,0.2,0.0666,0.4666,0.8,0.5334,0.8,1,1,0.8,0.8,-0.2,0.4666,0.3334,0.4,0.4666,0.7334,0.7334,0.5334,0.4666,0.077,0.3846,0.5384,0.3076,0.4616,-0.077,-0.3846,-0.8462,-0.6924,-0.6154,-0.5384,-0.1538,-0.3846,0,0.3846,1,1,0,-0.4616,0.923,0.8462,0,-0.2308,0.3076,0.2308,0.1538,0.3846,0.2308,0.5384,0.6154,0.077,0.2308,-0.3334,-0.1304,-0.0144,0.3624,0.4202,0.4202,-0.1014,-0.2464,-0.1594,-0.2174,-0.1304,0.0724,-0.0144,0.1304,0.1304,0.4492,0.826,1,0.942,0.6522,0.6812,0.7682,0.6812,-0.0144,0.0434,-0.1014,-0.3914,-0.4782,-0.4202,-0.5652,-0.3334,-0.1594,-1,-1,-1,-1,-0.9012,-0.8876,-0.8742,-0.8248,-0.8876,-0.8338,-0.3708,0.3528,0.7484,0.3168,0.1686,0.0742,0.0876,0.3708,0.0652,0.0696,-0.3528,-0.6674,-0.8248,-0.8292,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8862,-0.891,-0.1336,0.9876,1,1,0.2178,0.1956,0.7476,0.8392,0.5174,0.1534,0.4134,0.708,0.4628,0.3986,-0.3342,-0.6906,-0.8044,-0.8194,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.9334,-0.4334,0.8,0.8566,0.9432,0.38,-0.61,-0.7054,-0.6788,-0.6334,-0.776,-0.7388,-0.5548,-0.5334,-0.5,-0.5254,-0.5814,-0.76,-0.86,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6286,1,1,1,1,1,1,1,-0.7142,-0.9428,-0.9714,-0.8286,-0.6858,-0.9142,-0.8,-0.7142,0.0572,-0.5428,-0.9714,-0.7142,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.0054,0.0788,0.1542,0.2416,0.3522,0.4436,0.583,0.6846,0.7808,0.5376,-0.644,-0.6798,-0.7338,-0.7956,-0.8442,-0.837,-0.8622,-0.8578,-0.7924,-0.257,-0.3866,0.8118,0.1188,-0.1732,0.0174,0.2772,0.3144,1,-0.591,-0.3272,-0.2728,-0.2454,-0.1864,-0.291,-0.05,0.091,0.1364,0.1728,0.5954,0.7728,0.7682,0.6454,0.4772,0.691,0.7636,0.7864,0.659,0.659,0.8046,0.8818,1,0.8682,0.85,0.8182,0.7772,0.6772,0.3728,0.3364,0.2136,-0.0682,-0.738,-0.6866,-0.619,-0.4762,-0.385,-0.2976,-0.258,-0.0992,0.2104,0.3134,0.7262,0.8374,0.8056,0.6706,0.6548,0.5238,0.7896,0.7698,0.746,0.8334,0.8968,0.9326,0.992,1,0.8572,0.9126,0.9088,0.7142,0.6786,0.4524,0.4524,0.119,-0.3156,-0.224,-0.3734,-0.441,-0.412,-0.4554,-0.147,0.1326,0.4844,0.5952,0.6722,0.5278,0.629,0.4168,0.6338,0.494,0.6096,0.5228,0.7542,0.7928,0.9904,1,0.8844,0.8892,0.6772,0.6192,0.6434,0.494,0.2386,0.2916,0.2338,0.0362,1,-1,-1,1,-0.8,-1,-1,-0.0666,-1,-0.1068,-0.0874,0.165,0.1068,0.0098,0.1456,0.398,0.4174,1,0.8058,0.3786,0.5534,0.6504,0.2622,0.2816,0.3204,0.4758,0.301,0.301,0.3204,0.5534,0.398,0.2038,0.2428,0.3204,0.301,0.3398,0.301,0.3398,0.2428,0.3204,-0.0486,'10'
-0.2924,0.105,0.0274,0.1568,0.4992,0.3668,0.412,0.218,-0.021,-0.2116,-0.2148,-0.0016,0.076,0.1696,0.3732,0.441,0.6414,1,0.9904,0.9096,0.7124,0.8836,0.9256,0.7028,0.2924,0.063,-0.021,-0.1018,-0.1826,0.147,0.3086,0.273,-0.49,-0.2464,-0.0198,0.1134,0.3796,0.5552,0.2946,0.153,0.2096,-0.2182,-0.0794,0.0056,0.0396,0.2068,0.3852,0.6232,0.8924,1,0.8924,0.7848,0.7988,0.9604,0.9462,0.7308,0.2748,0.102,-0.0084,0.1814,0.4334,0.408,0.2068,0.1076,-0.5296,-0.3052,-0.2024,0.0778,0.2586,0.349,0.0312,-0.1122,-0.1838,-0.3302,-0.3396,-0.19,-0.0966,-0.025,0.1652,0.2368,0.704,0.8006,1,0.7538,0.6386,0.7538,0.947,0.676,0.3708,0.0904,-0.2742,-0.2524,0.3178,0.4362,0.0592,-0.0124,-0.5156,-0.3116,-0.2238,0.136,0.0764,0.0538,-0.1644,-0.2918,-0.3116,-0.5354,-0.3938,-0.2974,-0.2182,-0.1304,-0.0284,-0.0056,0.4136,0.5468,1,0.813,0.6488,0.745,0.881,0.7338,0.374,0.0794,-0.1388,-0.2522,-0.1274,0.0736,0.1416,0.0652,-0.4102,-0.1882,0,0.3286,0.3314,-0.0786,-0.0898,-0.1658,-0.3118,-0.4242,-0.3568,-0.2724,-0.1714,-0.2192,-0.0702,-0.073,0.2472,0.4326,0.9662,1,0.8286,0.868,0.837,0.8876,0.5956,0.3146,0.1994,-0.0196,-0.2752,0.1938,0.2444,0.2528,-0.4654,-0.0806,0.0042,0.0326,-0.3012,-0.1258,-0.0778,-0.423,-0.4286,-0.4512,-0.3834,-0.4002,-0.2984,-0.3324,-0.3268,-0.2758,0.0722,0.3126,0.6266,0.8302,0.918,0.9774,1,0.9944,0.7142,0.5134,0.2984,0.1456,-0.0976,-0.1372,0.3042,0.4172,-0.5076,0.2418,0.0108,-0.159,-0.2984,-0.2724,-0.3552,-0.3682,-0.329,-0.5206,-0.5164,-0.4204,-0.3726,-0.451,-0.499,-0.4728,0.0676,0.4596,0.769,0.7386,0.586,0.6558,0.7516,1,0.9216,0.451,0.3334,0.0458,-0.3376,-0.5294,-0.329,0.1154,-0.1578,0.1052,-0.0526,0,0.1578,-0.1052,-0.2632,-0.1052,-0.1578,-0.3684,-0.421,-0.3158,-0.3158,-0.2106,-0.0526,-0.1578,0.6316,0.7894,0.6316,0.9474,0.9474,0.8948,1,0.7368,-0.1578,0.0526,-0.0526,-0.3684,0.1052,0.3684,0.7894,0.8422,-0.0434,0.2608,0.1304,0.1304,0.5652,0.3044,0.5218,0.1304,0.087,-0.4782,-0.174,0,0.1304,0.2608,0.3044,0.2174,0.5652,1,1,0.8696,0.826,0.6522,0.4782,0.7392,0.5218,-0.2174,-0.087,0.1304,-0.0434,0.174,0.5652,0.5218,-0.5526,-0.2894,-0.1578,-0.0526,0.3158,0.421,0.1842,0,-0.1316,-0.2106,-0.3422,-0.1316,0.1052,0.1842,0.2632,0.3422,0.8948,1,0.921,0.8948,0.7632,0.6578,0.8684,0.5264,0.2894,0.1052,-0.2894,0,0.1052,0.2894,0.1578,-0.1052,-1,-1,-1,-1,-1,-0.8338,-0.8836,-0.6122,-0.302,-0.5678,-0.2354,0.4294,0.8836,0.651,0.4792,0.4238,0.4516,0.5402,0.1524,0.097,-0.0748,-0.457,-0.7396,-0.7452,-0.867,-0.795,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9464,-0.9516,-0.435,-0.2678,-0.6422,-0.534,-0.3098,0.6392,0.6412,0.251,0.153,0.2214,0.112,-0.2572,-0.3266,-0.4802,-0.82,-0.8884,-0.879,-0.9138,-0.9116,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8614,-0.9214,-0.2448,0.0786,0.1652,-0.0648,-0.5324,-0.4834,-0.5396,-0.4178,-0.4178,-0.3952,-0.3958,-0.3832,-0.3504,-0.2796,-0.5742,-0.5656,-0.589,-0.6822,-0.819,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,-0.2286,-0.4,0.1714,0.2,-1,-1,-1,-1,-1,-1,-0.9714,0.7142,0.5142,-0.8858,-0.8572,-0.7714,-0.7142,-1,-1,-1,-1,-1,-1,-1,0.9268,0.9356,0.9712,0.9876,1,1,1,1,1,0.7946,-0.2764,-0.2898,-0.314,-0.3308,-0.3496,-0.3384,-0.3528,-0.3452,-0.2538,0.1258,-0.4,0.3058,-0.5024,-0.5034,-0.436,-0.3236,-0.0278,1,-0.6354,-0.077,-0.1226,0.094,0.0028,0.094,0.1396,0.2478,0.4928,0.7378,0.8632,1,0.8632,0.8234,0.8062,0.6296,0.4074,0.3448,0.5556,0.5214,0.5214,0.5612,0.7778,0.7834,0.4758,0.5442,0.4872,0.3846,0.208,0.282,0.1168,-0.47,-0.6228,0.2156,0.4372,0.03,0.048,-0.0838,-0.048,0.3174,0.3772,0.8084,0.8562,1,0.9102,0.8144,0.6408,0.6766,0.515,0.6348,0.7186,0.6408,0.988,0.964,0.8024,0.7426,0.6886,0.4252,0.5568,0.5748,0.461,0.2994,0.0778,-0.0718,-0.1456,-0.0712,-0.0836,-0.1764,-0.2074,-0.2136,0.0216,0.2446,0.6842,1,0.7894,0.7956,0.3374,0.4118,0.2322,0.288,0.8762,0.7832,0.5294,0.195,0.5046,0.5852,0.5418,0.4736,0.5418,0.3808,0.3994,0.6718,0.6408,0.517,0.325,0.0712,-0.0804,-1,-1,1,-0.6,-1,-1,-0.2,-1,0.3,0.46,0.42,0.32,0.22,0.02,0.36,0.3,0.88,0.8,0.8,0.94,0.72,0.64,0.32,0.16,0.3,0.32,0.18,0.2,0.76,0.6,1,0.58,0.14,0.1,0.2,0.48,0.28,0.02,-0.22,-0.44,'11'
-0.4252,-0.1026,-0.132,0.0118,0.1232,0.1436,-0.041,-0.132,-0.1232,-0.3782,-0.4428,-0.305,-0.0998,0.0088,0.0294,0.2464,0.8152,0.953,1,0.8476,0.8504,0.9442,0.9414,0.5954,0.4106,0.2728,0.1906,0.1524,0.0352,-0.0762,-0.1554,0.1906,-0.4792,-0.264,-0.1908,0.154,0.4572,0.5256,-0.2568,0.0172,-0.0782,-0.1834,-0.2078,-0.0294,0.11,0.2102,0.2934,0.4058,1,0.9732,0.9878,0.8948,0.9828,0.8974,0.929,0.5794,0.3178,0.2054,0.0954,0.0488,-0.0586,-0.132,0.2592,0.3692,-0.5176,-0.3236,-0.3454,0.086,0.343,0.3454,-0.2824,-0.1104,-0.3188,-0.4472,-0.3722,-0.2024,-0.1466,0.0012,0.0084,0.2824,0.7236,0.9952,0.9904,0.8618,0.8788,1,0.9346,0.4812,0.2534,-0.04,-0.1734,-0.217,-0.3042,-0.4134,-0.057,0.1878,-0.4436,-0.2254,-0.2158,0.2662,0.1224,0.1798,-0.2134,-0.2038,-0.307,-0.458,-0.3574,-0.1654,-0.0792,-0.072,0,0.096,0.4964,0.7866,0.8706,1,0.8514,0.8658,0.9568,0.578,0.4148,0.1486,0.0336,-0.1438,-0.2398,-0.3094,0.0096,0.1678,-0.416,-0.1936,-0.1634,0.3558,0.3372,-0.3002,-0.1194,-0.2608,-0.5412,-0.5434,-0.4856,-0.2422,-0.205,-0.2468,-0.131,-0.0984,0.1912,0.3998,0.7822,0.8958,1,0.891,0.8772,0.8702,0.5666,0.2954,0.0476,-0.066,-0.1982,-0.3396,-0.321,0.0638,-0.4342,-0.1448,-0.0358,-0.1394,-0.1236,-0.5086,-0.5034,-0.4794,-0.5804,-0.7264,-0.5724,-0.4342,-0.437,-0.4714,-0.4954,-0.3838,-0.2324,0.0518,0.2378,0.822,0.9018,0.9124,1,0.9282,0.753,0.4742,0.0864,0.1182,-0.2404,-0.3706,-0.4582,-0.2378,-0.4206,0.1328,-0.1882,-0.5388,-0.7232,-0.5424,-0.4464,-0.6014,-0.6162,-0.797,-0.6974,-0.5536,-0.5794,-0.465,-0.5794,-0.797,-0.251,-0.1366,0.3506,0.7416,0.6678,0.5904,0.845,1,1,0.5608,0.31,0.1328,-0.0886,-0.3174,-0.3174,-0.3542,0.05,0.25,0.05,-0.15,-0.15,-0.1,-0.35,-0.3,-0.15,-0.25,-0.75,-0.35,-0.2,-0.05,-0.25,-0.05,0.35,0.75,0.8,0.65,0.65,1,1,0.55,0.4,0.35,0.35,0.3,0.05,0.15,0.2,0.25,-0.2572,0.2,-0.0286,-0.0286,0.1428,-0.0858,0.1428,0.2,0.1428,-0.3714,-0.8286,-0.5428,-0.2,-0.0858,-0.2,-0.1428,0.6,1,0.7142,0.8286,0.9428,0.8858,0.9428,0.6572,0.3142,0.4286,0.4286,0.2572,0.2572,-0.2,-0.0858,-0.0858,-0.5064,-0.2468,-0.1428,0.091,0.091,-0.6104,-0.4546,-0.5584,-0.7142,-1,-0.5064,-0.5064,-0.5324,-0.3766,-0.2728,-0.2208,-0.091,0.1688,0.5584,0.6884,0.974,0.8962,1,0.948,0.6364,0.3246,0.1168,-0.1168,-0.2988,-0.2988,-0.4026,0.091,-1,-1,-1,-0.8694,-0.8754,-0.7032,-0.537,-0.6084,-0.6262,-0.4184,-0.1336,0.5846,0.733,0.8398,0.7864,0.6618,0.6974,0.917,0.4422,0.1276,-0.1572,-0.4718,-0.638,-0.6796,-0.7982,-0.8516,-0.8754,-0.9228,-1,-1,-1,-1,-1,-1,-1,-1,-0.9546,-0.9534,-0.2958,0.029,-0.3266,-0.5934,-0.5412,-0.4856,-0.0868,0.8512,0.7376,0.6446,0.4004,0.1436,0.1312,-0.1358,-0.4004,-0.6548,-0.8148,-0.8818,-0.8932,-0.9102,-0.9284,-0.9262,-0.9432,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.9468,-0.0734,0.5832,0.5766,0.2366,0.0432,-0.0534,-0.4432,-0.4154,-0.4954,-0.5,-0.437,-0.6294,-0.6154,-0.6354,-0.4294,-0.3094,-0.6266,-0.7036,-0.6204,-0.5936,-0.817,-0.797,-0.857,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,-0.3428,-0.1142,-0.4858,-0.5714,0.2572,-0.7142,-0.8858,-1,-1,-1,-0.9428,-0.9428,-0.8,-0.3142,-0.2858,-0.8,-0.9714,-0.9142,-0.9714,-1,-0.5142,-1,-1,-1,-1,-1,0.6404,0.694,0.7254,0.7488,0.7808,0.8178,0.8526,0.8868,0.8966,0.6294,0.148,0.1158,0.0764,0.054,0.018,-0.0142,-0.0696,-0.1154,-0.0836,0.2338,-0.36,0.6,-0.4764,-0.4844,-0.389,-0.2208,0.2004,1,-0.736,-0.238,-0.2342,-0.1376,-0.093,-0.0224,-0.0148,0.1004,0.1412,0.3978,0.7844,1,0.8142,0.632,0.4646,0.4832,0.4832,0.4722,0.4276,0.6172,0.6914,0.762,0.907,0.736,0.5354,0.342,0.29,0.145,-0.0186,-0.2008,-0.1376,-0.591,-0.5528,-0.183,-0.0894,-0.004,-0.0732,-0.0122,0.187,0.13,0.4716,0.8048,0.7114,0.939,0.7764,0.6544,0.5772,0.4634,0.435,0.6098,0.5854,0.7642,0.8374,0.943,1,0.9066,0.5448,0.2764,0.3456,0.2846,0.3048,0.187,0.1504,-0.1504,-0.2044,-0.299,-0.2904,-0.0882,-0.2516,-0.2818,-0.058,0.0322,0.6086,0.8538,0.8494,1,0.514,0.372,0.3978,0.1784,0.587,0.9698,0.9956,0.5956,0.5784,0.5828,0.3548,0.1226,0.1484,0.0108,0.3936,0.4752,0.4538,0.372,0.2774,-0.2,0.4128,-1,-1,1,-0.8,-1,-0.2,0.2,-1,0.0468,0.1776,0.0094,0.1776,0.0094,0.3832,0.3084,0.1028,0.8504,0.6074,0.514,0.514,1,0.7196,0.6262,0.2524,0.5514,0.57,0.701,0.5328,0.4766,0.4392,0.1776,0.1214,0.1402,-0.0654,0.4018,0.4018,0.3272,0.3084,0.1588,-0.2524,'11'
-0.3974,-0.1306,0.1334,0.296,0.384,0.544,0.344,0.2346,0.1734,0.0826,0.0586,0.1174,0.224,0.504,0.7146,1,0.8666,0.9014,0.7174,0.6854,0.688,0.7814,0.8854,0.8054,0.6986,0.4294,0.2266,0.12,-0.0854,0.12,0.2506,0.3814,-0.422,-0.1724,-0.0312,0.0964,0.4872,0.6852,0.6744,0.582,0.346,0.1914,0.0692,0.4246,0.5876,0.7856,0.9458,1,0.5902,0.5468,0.5576,0.6716,0.7286,0.886,0.9322,0.7042,0.46,0.384,0.1234,-0.0366,0.251,0.2836,0.403,0.4464,-0.4008,-0.1606,-0.1126,0.0266,0.4968,0.694,1,0.9166,0.5222,0.5854,0.7446,0.7446,0.7092,0.5904,0.4664,0.201,0.2718,0.1606,0.3174,0.469,0.6384,0.7346,0.7952,0.34,0.1782,0.019,-0.1328,0.3452,0.3198,0.2896,0.1934,0.2844,-0.3658,-0.0904,-0.1276,0.119,0.495,0.759,1,0.9484,0.8422,0.845,0.716,0.4692,0.3028,0.0846,-0.0044,-0.3572,-0.0186,-0.142,-0.1392,0.053,0.2424,0.4462,0.6184,0.3802,0.208,-0.0358,-0.1564,0.1678,0.1506,0.1018,0.1478,0.2396,-0.4058,-0.0256,0.0196,0.3152,0.5414,1,0.9246,0.804,0.81,0.7406,0.267,-0.1524,-0.2188,-0.2338,-0.4208,-0.472,-0.3514,-0.3032,-0.3304,-0.282,-0.1312,-0.083,-0.0316,0.1192,0.1132,-0.089,-0.27,-0.1976,0.0558,0.1102,0.104,0.3756,-0.4892,0.0548,0.194,0.3168,0.8938,0.8044,1,0.6218,0.5556,0.0812,-0.2868,-0.4958,-0.4792,-0.5158,-0.5588,-0.5888,-0.4196,-0.2836,-0.3764,-0.34,-0.2604,-0.151,-0.2072,-0.5224,-0.3798,-0.5158,-0.7314,-0.7248,-0.4892,-0.2106,0.0878,0.1376,-0.5818,0.421,0.11,0.1474,0.8874,1,0.9356,0.9572,0.8874,0.5872,-0.1206,-0.067,0.0564,0.11,-0.0884,-0.421,-0.2976,-0.3672,-0.4102,-0.6568,-0.571,-0.453,-0.5604,-0.4316,-0.3244,-0.2546,-0.2654,-0.6568,-0.4424,-0.4798,-0.8766,-0.6194,-0.5172,-0.0344,0.1034,0.3104,0.5862,0.5172,0.3104,0.1724,-0.1034,-0.1724,-0.1724,-0.0344,-0.1034,0.5172,0.5862,1,0.7242,1,0.7932,0.6552,0.6552,1,0.7932,0.6552,0.862,0.3104,0.2414,-0.0344,-0.2414,-0.1724,-0.1724,0.3794,-0.1372,0.1372,0.3726,0.4118,0.6078,0.6078,0.451,0.2942,0.3334,0.2942,0.2942,0.2942,0.2942,0.6078,0.7648,0.9608,1,1,0.7254,0.7648,0.804,0.7648,0.8824,0.8824,0.804,0.4118,0.255,0.3726,0.2156,0.0196,0.255,0.4902,-0.403,0.015,0.0448,0.403,0.582,1,0.9702,0.8208,0.8806,0.791,0.0448,-0.1642,-0.1642,-0.0448,-0.2836,-0.5522,-0.3432,-0.1642,-0.1344,-0.1044,-0.1642,-0.1044,-0.1044,0.1344,0.2238,-0.1344,-0.2238,-0.1344,0.2538,0.1344,0.2836,0.4328,-1,-1,-1,-1,-1,-1,-1,-0.8514,-0.8266,-0.4674,0.0278,0.9072,0.7462,0.6904,0.7586,0.6346,0.517,0.3808,0.3684,0.3188,0.0154,-0.5046,-0.7832,-0.8452,-0.8948,-0.8328,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.942,-0.9356,-0.6606,-0.2316,0.4322,0.6922,0.8094,0.8914,0.7048,0.2316,-0.1622,-0.3198,-0.4852,-0.643,-0.7868,-0.9042,-0.9242,-0.937,-0.9168,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.9334,-0.7168,-0.41,-0.51,-0.4768,-0.5718,-0.5618,-0.665,-0.7048,-0.7878,-0.7678,-0.7908,-0.7924,-0.78,-0.7868,-0.7734,-0.9334,-0.81,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,0.8858,1,1,0.4572,-0.8,-0.6858,-0.6572,-0.8572,-0.7714,-0.8858,-0.5428,-0.8286,-0.6286,-0.7428,-0.8572,-0.9428,-0.8858,-0.6858,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.2986,-0.3196,-0.3358,-0.3538,-0.3992,-0.442,-0.5174,-0.6254,-0.5682,-0.394,-0.4534,0.5058,-0.3262,0.3438,0.3476,0.3892,0.5646,0.2166,-0.2054,0.2328,0.9178,0.548,0.452,0.2328,0.3014,0.589,0.5342,0.5754,0.7946,1,0.9042,0.6302,0.2054,0.589,0.589,0.7946,0.7398,0.3972,0.2876,0.5616,0.5754,0.4384,0.4794,0.411,0.3424,0.5342,0.5342,0.589,0.5754,0.3698,-0.2388,0.0064,0.5742,0.5484,0.4322,0.2388,0.3548,0.5226,0.987,1,0.8322,0.7678,0.729,0.6,0.2774,0.329,0.4968,0.5484,0.5612,0.058,0.3936,0.6,0.6,0.6516,0.2516,0.3032,0.187,0.471,0.5354,0.5096,0.342,-0.0194,0.0746,0.184,0.5722,0.5124,0.413,0.184,0.393,0.8308,1,0.7412,0.7314,0.7712,0.7512,0.3134,0.2636,0.5522,0.5324,0.582,0.6518,0.2836,0.3234,0.5124,0.592,0.5722,0.3334,0.1144,0.214,0.4826,0.5622,0.5422,0.5522,0.1144,-0.2858,-1,-1,1,-0.8,-1,-1,-0.6,-1,-0.1428,0,0.262,0.381,0.4524,0.5,0.7142,0.5952,0.1904,0.262,0.1666,0.4524,0.3572,0.4048,0.3334,0.0714,0.7858,0.8096,0.4048,-0.0238,0.4286,0.881,1,0.5714,0.7142,0.738,0.7142,0.6666,0.619,0.119,0.0714,0,'12'
-0.4424,-0.2392,-0.0706,0.0508,0.5738,0.6258,0.2342,0.2516,0.1672,0.0532,0.0608,0.1772,0.4548,0.5688,0.8092,1,0.8736,0.6184,0.6232,0.8314,0.8884,0.839,0.7496,0.606,0.4002,0.2738,0.2168,0.1896,0.1574,0.0408,-0.1202,0.0856,-0.4906,-0.2988,-0.1878,-0.039,0.604,0.546,0.599,0.541,0.2786,0.2534,0.246,0.652,0.8084,1,0.8664,0.7528,0.5436,0.4098,0.5738,0.9092,0.9066,0.8486,0.5308,0.2686,0.1072,-0.024,-0.0668,-0.0668,-0.1324,-0.1248,-0.0264,0.0316,-0.5368,-0.3382,-0.1666,-0.0074,0.4142,0.755,0.8064,0.8602,0.897,0.696,1,0.8922,0.5858,0.63,0.3554,0.1618,0.2378,0.1912,0.5172,0.6274,0.7622,0.5808,0.2598,0.049,-0.2132,-0.3236,-0.4314,-0.522,-0.5024,-0.147,-0.0588,-0.0612,-0.5544,-0.3342,-0.1822,0.0608,0.5696,0.8278,0.8228,0.8102,0.9646,1,0.8506,0.3874,0.2936,0.1468,-0.0734,-0.1898,-0.1646,-0.1898,-0.0406,0.1722,0.2354,0.5874,0.4988,-0.195,-0.1696,-0.4178,-0.2708,-0.3292,-0.0304,-0.0708,-0.3722,-0.3822,-0.4546,-0.2778,-0.1036,0.144,0.8208,0.8282,0.8712,1,0.8788,0.7424,0.5102,-0.1894,-0.0278,-0.2576,-0.3132,-0.3838,-0.4016,-0.3484,-0.303,-0.0328,-0.0378,0.25,0.298,0.0556,-0.0834,-0.1288,-0.2626,-0.2298,-0.4016,-0.3132,-0.005,-0.0176,-0.4236,-0.1626,-0.5266,-0.1434,0.6618,0.855,1,0.7424,0.4622,-0.2046,-0.3978,-0.6554,-0.5524,-0.533,-0.7682,-0.9452,-0.7616,-0.6104,-0.5846,-0.4106,-0.1594,-0.1626,-0.3204,-0.7778,-0.7102,-0.6812,-0.7198,-0.6682,-0.4268,-0.211,-0.2592,-0.7198,0.116,0.6064,-0.407,-0.5202,0.655,1,0.7304,0.213,0.0566,-0.3316,-0.31,-0.3584,-0.31,-0.4878,-0.5418,-0.752,-0.6388,-0.5202,-0.6226,-0.558,-0.1914,0.035,-0.0944,-0.3692,-0.3154,-0.1752,-0.3424,-0.3046,-0.1806,-0.0458,-0.2184,-0.4986,-0.3478,-0.1304,0.1304,0.3044,0.5218,0.4782,0.3914,0.3044,0.174,0.1304,0.0434,0.1304,0.3914,0.4348,0.5652,1,1,0.8696,0.5218,0.8696,0.913,0.913,0.7392,0.6522,0.6086,0.3478,0.4782,0.4782,0.3044,0.0434,0,-0.3478,-0.561,-0.1708,-0.122,0.0244,0.0244,0.0732,0.0732,0.1708,-0.0732,-0.122,-0.2196,0.0732,0.2196,0.4146,0.561,0.5122,1,0.8536,0.561,0.7074,0.6098,0.6098,0.7074,0.4146,0.4634,0.2196,0.122,-0.0732,-0.0244,-0.1708,-0.1708,-0.122,-0.5334,-0.3778,-0.2,-0.0222,0.4222,0.4444,0.4666,0.4,0.3556,0.2,0.3778,0.6222,0.8,1,0.7334,0.3778,0.4,0.2666,0.4222,0.7556,0.6888,0.6444,0.4222,-0.0444,0.0444,-0.0888,-0.2222,-0.1334,-0.4666,-0.3112,-0.2222,-0.2666,-1,-1,-1,-1,-1,-1,-1,-0.9432,-0.9324,-0.9162,-0.5048,0.272,0.8782,0.5642,0.2152,0.069,-0.0122,0.0312,-0.1746,-0.3802,-0.5156,-0.6942,-0.7538,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9678,-0.9672,-0.9302,-0.49,0.2854,0.8482,0.8672,0.456,0.5758,0.1866,-0.0904,-0.3452,-0.626,-0.8186,-0.8968,-0.8986,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9258,-0.9334,-0.9234,-0.2968,-0.4232,-0.54,-0.4894,-0.6062,-0.6432,-0.6662,-0.7816,-0.8048,-0.8694,-0.9216,-0.954,-0.8868,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3428,-0.9142,1,1,1,-0.7428,-0.0286,-0.1428,-0.3428,-0.7142,-0.6572,-0.6286,-0.5714,-0.6286,-0.8286,-0.4286,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.6392,-0.6564,-0.6742,-0.7152,-0.7596,-0.841,-0.929,-1,-0.9572,-0.554,-0.28,0.5648,-0.4184,-0.3592,0.0254,0.4196,0.5248,0.6084,-0.6744,-0.5348,0.3024,0.186,-0.279,-0.2558,0.093,0.5348,0.8372,1,0.9534,1,0.6976,0.628,0.5814,0.3024,0.3256,0.4884,0.5116,0.186,-0.1162,0.3256,0.6512,0.6512,0.6976,0.5348,0.1396,0.5582,0.5116,-0.186,0.093,-0.2558,0.0566,0.2076,0.5094,0.4528,0.3018,0.1886,0.4528,0.5094,0.9434,0.7358,0.6416,1,0.6982,0.434,0.434,0.283,0.3774,0.4716,0.434,0.1886,0.132,0.434,0.5472,0.3774,0.2264,0.151,0.0378,0.4906,0.4716,0.1132,0.2076,-0.0378,-0.149,0.1276,0.6596,0.5106,0.2766,0.0852,0.3192,0.7234,1,0.7446,0.8298,0.851,0.5744,0.383,0.2766,0.0638,0.3618,0.5532,0.1064,-0.0638,-0.0638,0,0.0212,0.1276,0.0426,-0.4468,-0.2128,0.149,0.0638,0.0212,0.0638,-0.2978,-0.1414,-1,-1,1,-1,-1,-0.8,-0.8,-1,0.4252,0.2874,0.1034,0.6092,0.885,1,0.4712,0.2874,-0.2414,0.0574,0.3564,0.0114,0.2184,0.2644,0.1494,0.2184,0.7242,0.4942,0.1264,0.0804,0.1724,0.4482,0.4252,0.2874,0.2874,0.5632,0.7702,0.7242,0.4022,0.3104,-0.1034,-0.4712,'12'
-0.4274,-0.1732,-0.0526,-0.1092,0.3762,0.5584,0.3632,-0.0912,0.0526,-0.104,-0.0962,-0.0474,-0.027,0.1092,0.222,0.3632,0.62,0.8614,1,0.9178,0.8228,0.7612,0.964,0.8974,0.9512,0.6406,0.425,0.2812,0.0784,-0.2196,0.2528,0.394,-0.4158,-0.1764,-0.1278,-0.2086,0.6582,0.852,0.4804,0.354,0.4104,0.101,0.1898,0.1816,0.2436,0.3782,0.5828,0.8196,0.9974,0.938,0.9274,0.8116,0.7846,0.825,1,0.965,0.7712,0.4536,0.2866,0.1198,0.0524,-0.0552,0.2652,0.1952,-0.3398,-0.0874,-0.1586,-0.1036,0.7928,0.8284,0.6958,0.7896,0.5632,0.5436,0.6278,0.5372,0.9774,1,0.987,1,0.631,0.3786,0.4692,0.5436,0.5922,0.5016,0.4272,0.4368,0.0874,-0.1812,-0.2978,-0.411,-0.4174,-0.3074,-0.2362,-0.2266,-0.465,-0.2198,-0.3822,-0.3152,0.5732,0.6752,0.5988,0.4968,0.4778,0.5892,0.828,1,0.949,0.5892,0.156,-0.0542,-0.0478,-0.0542,-0.035,-0.0192,-0.035,-0.0732,-0.137,-0.156,-0.3026,-0.7198,-0.7708,-0.8312,-0.6306,-0.3504,-0.328,-0.3536,-0.0358,0.4022,0.5622,0.4694,0.2632,-0.179,0.4568,0.5368,0.461,0.7516,0.7894,0.2884,0.7978,0.7768,0.1622,0.0694,0.0694,0.1832,0.541,0.461,0.7768,0.9664,0.9916,1,0.6126,0.1748,-0.4568,-0.5116,0.0232,0.2042,0.0316,-0.2,-0.0986,0.6996,0.8818,1,-0.128,-0.2956,0.2414,0.9114,0.7784,0.601,0.4976,-0.0986,0.5714,0.5812,-0.064,-0.0344,0.1034,0.0098,0.0886,0.1774,0.2266,0.399,0.4286,0.33,0.2118,0.2808,-0.0592,-0.4926,0.3546,0.3448,0.005,-0.4976,-0.2626,0.8064,0.6036,0.235,0.3964,0.7096,0.7834,0.8202,0.6682,0.5806,1,0.7788,0.613,0.3918,0.0692,-0.0552,0.0968,0.0968,-0.0506,-0.2396,-0.06,-0.0046,0.1106,-0.0692,-0.1844,0.1752,0.493,0.4884,0.341,0.106,0.0876,-0.2166,-0.28,0,-0.12,0.16,0.24,0.24,0.32,0.2,0.12,0.16,0.08,0.16,0,-0.08,0.24,0.32,0.32,0.48,0.88,1,0.8,0.76,0.76,0.88,0.88,0.68,0.68,0.28,0.32,-0.04,0.44,0.4,-0.5,-0.1112,0.1112,0.3334,0.5556,0.3888,0.2222,0,-0.1112,-0.3334,-0.3888,-0.4444,-0.1666,0.0556,0.2778,0.3888,0.6112,0.9444,0.6666,1,0.8334,0.8334,0.8888,0.8888,0.9444,0.7778,0.6666,0.4444,0.2778,0,0.2222,0.0556,-0.1622,0.054,-0.081,-0.2432,0.5946,0.7298,0.6216,0.5406,0.6216,0.8108,1,0.8378,0.6216,0.3244,0.027,0.027,0.1892,-0.027,0.054,0.1892,0.2972,0.1622,0.1622,-0.081,-0.1892,-0.2972,-0.6216,-0.4324,-0.3244,-0.1082,0,-0.3514,-1,-1,-1,-1,-1,-1,-1,-1,-0.9146,-0.9146,-0.5726,0.3034,0.577,0.9402,0.7692,0.423,0.3076,-0.1026,-0.1324,-0.1112,-0.1282,-0.3888,-0.7394,-0.829,-0.829,-0.8846,-0.8804,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9642,-0.9616,-0.6004,0.0138,0.7676,0.6428,0.1346,-0.0718,-0.0726,-0.6346,-0.7504,-0.7716,-0.7626,-0.7634,-0.8908,-0.9152,-0.934,-0.9486,-0.947,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.89,-0.91,-0.3134,-0.305,-0.4718,-0.5734,-0.5068,-0.58,-0.6034,-0.6652,-0.6342,-0.7826,-0.8748,-0.787,-0.6742,-0.7176,-0.8176,-0.8142,-0.8742,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,-0.1428,-0.0858,-0.4572,-0.6572,-0.2572,0.2,-0.8858,-0.6858,-0.0572,-0.4,-0.7714,-0.7714,-0.8858,-1,-0.0572,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.4762,0.4568,0.4442,0.4202,0.3976,0.3542,0.2446,-0.0176,-0.463,-0.4936,-0.4134,0.4588,-0.5792,-0.469,-0.1786,-0.0196,0.3776,1,-0.8888,-0.5,0.2778,0.1112,-0.3056,-0.3612,-0.0556,0,0.6944,0.9722,0.9444,1,0.9444,0.5834,0.0556,0.1944,0.3888,0.5,0.1944,0.3334,0.8056,0.75,0.9166,0.8056,0.5556,0.6944,0.8888,0.9166,0.5,0.3888,0.3334,-0.2222,-0.4782,-0.087,0.3914,0.3478,-0.2608,-0.3044,0.0218,0.0652,0.5218,0.7608,0.7826,0.9566,0.6086,0.587,0.4348,0.3914,0.3044,0.413,0.1086,0.0652,0.4348,0.4348,0.4782,1,0.9566,0.8914,0.8696,0.6956,0.1956,0,0.1522,0.087,-0.3052,-0.179,0.221,0.2422,-0.1158,-0.2632,-0.1368,0.0736,0.0106,1,0.7894,0.6842,0.5158,0.3894,-0.0526,0.2,0.3474,0.179,-0.0948,-0.2422,0.3474,0.3052,0.221,0.4948,0.4316,0.4526,0.7264,0.8526,0.2,0.2,0.0948,-0.179,-0.3834,-1,-1,1,-1,-1,-1,-0.8,-1,-0.0892,0.01,0.2278,0.01,0.2476,0.8218,1,0.3268,0.2872,0.1486,-0.1882,0.0298,-0.1288,0.3268,0.3862,0.3268,-0.109,-0.3862,-0.2476,-0.2278,0.0694,0.0694,0.4852,0.0694,0.0892,0.01,0.109,0.1684,0.1486,0.208,0.0694,-0.1882,'13'
-0.436,-0.1848,-0.2192,-0.3252,0.298,0.4458,0.0738,-0.1872,-0.2364,-0.3916,-0.1848,-0.1896,-0.0492,0.0394,0.239,0.234,0.633,0.9408,0.9408,0.9408,0.8054,0.9188,1,0.862,0.702,0.2438,0.0812,-0.2242,-0.1848,0.1822,0.34,0.3596,-0.4754,-0.2586,-0.4434,-0.3818,0.4384,0.4976,0.3128,-0.1206,-0.2168,-0.3226,-0.261,-0.0666,0.0518,0.2414,0.3892,0.5344,1,0.931,0.6798,0.6108,0.6798,0.7734,0.9014,0.7858,0.5444,0.2734,-0.0124,-0.1922,-0.3572,0.2142,0.3794,0.2586,-0.4438,-0.249,-0.2692,-0.3528,0.2592,0.5904,0.6284,0.3552,0.5854,0.33,0.3476,0.4032,0.8128,1,0.9394,0.6638,0.6056,0.5702,0.464,0.6208,0.78,0.7952,0.8432,0.4514,0.2744,0.1302,-0.0418,-0.11,-0.1858,0.1252,0.282,0.335,-0.3736,-0.1408,-0.2126,-0.3276,0.2844,0.6982,0.7844,0.3046,0.681,0.5518,0.7156,0.865,1,0.7758,0.3304,0.2558,0.2012,0.3074,0.316,0.4856,0.5834,0.6178,0.4282,0.1034,-0.1034,-0.3506,-0.3592,-0.3764,-0.3362,-0.2528,-0.181,-0.227,-0.298,0.0238,-0.1444,-0.0018,-0.0968,-0.5758,-0.2578,-0.1664,-0.0896,0.1334,0.181,-0.1116,0.1736,0.2176,-0.2322,-0.5648,-0.5246,-0.064,0.1628,0.0458,0.7404,0.8794,1,0.7112,-0.1774,-0.5868,-0.8794,-0.5502,-0.5284,-0.7514,-0.861,-0.8026,-0.1244,0.3896,0.494,0.3816,-0.2048,-0.3254,0.5582,0.6746,0.3294,0.5944,0.4458,-0.0482,0.1124,0.024,-0.1044,-0.1646,0.1286,0.024,0.253,0.2772,0.5622,0.8674,0.6868,1,0.9438,-0.012,-0.482,0.1968,0.3254,0.1084,-0.482,-0.743,-0.0208,0.9322,0.4376,0.3854,-0.0312,0.6614,0.8594,0.5468,0.5572,0.9688,1,0.5938,0.6928,0.573,-0.2084,-0.2812,-0.1354,0.0156,0.0572,-0.0052,-0.099,-0.0938,-0.0416,-0.0312,0.0052,0.599,0.6562,0.5886,0.552,0.5572,-0.0782,-0.4636,-0.283,-0.0188,0.0188,0.132,0.434,0.5094,0.3208,0.3584,-0.1698,-0.283,-0.283,-0.2452,0.1698,0.1698,0.2452,0.2076,0.3208,0.6226,0.6226,0.6982,0.6604,0.8868,1,0.9246,0.5094,0.2076,0.3208,-0.0188,-0.0566,-0.132,0.2452,0.4716,-0.4286,-0.0286,-0.0286,-0.1428,0.0286,0.3142,-0.0858,-0.3714,-0.2572,-0.3142,-0.2572,-0.3142,0.0286,0.0858,0.0858,0.3714,0.6,0.8286,0.8858,1,0.8858,0.8858,0.8286,0.7714,0.8286,0.3714,0.2572,-0.2,-0.0858,-0.0286,0.4858,0.4858,-0.3124,-0.0624,-0.2812,-0.4376,0.5,0.875,1,0.1876,0.4062,0.75,0.75,0.9062,0.75,0.5,0.25,0.1876,0.0312,0.0938,0.3124,0.3124,0.3124,0.4062,0.2188,-0.1562,-0.3438,-0.6562,-0.3438,-0.4376,-0.4688,-0.4062,-0.1876,-0.4062,-1,-1,-1,-1,-1,-1,-1,-0.9088,-0.8836,-0.8632,-0.767,0.2254,0.6102,0.8582,0.3164,0.1038,0.1342,-0.0026,-0.0684,-0.2406,-0.1848,-0.357,-0.6304,-0.7874,-0.8734,-0.8784,-0.8836,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9556,-0.9422,-0.7082,-0.4618,0.1144,0.757,0.747,0.2842,0.3086,-0.0244,-0.636,-0.6782,-0.7458,-0.7358,-0.788,-0.8634,-0.8956,-0.9256,-0.9356,-0.9322,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9664,-0.9,-0.8168,-0.38,-0.313,-0.4358,-0.3772,-0.4416,-0.4,-0.583,-0.7344,-0.6958,-0.7272,-0.8316,-0.7988,-0.7968,-0.72,-0.9334,-0.8,-0.9268,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3428,-0.2572,1,1,1,-0.9714,-0.7428,-0.7142,-0.6572,0.3142,0.2858,-1,-0.9142,-0.4858,-0.8,-0.9142,-0.9428,-0.9428,-1,0.0858,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.0444,0.0416,0.0168,-0.0082,-0.0258,-0.0524,-0.0904,-0.2248,-0.568,-0.45,-0.32,0.7058,-0.6936,-0.2686,-0.2352,0.1876,0.333,0.0584,-0.426,-0.2348,0.1478,0.0782,-0.0956,-0.0956,0.0782,0.2,0.6522,1,0.9826,0.9652,0.8608,0.4608,0.1652,0.5478,0.4956,0.5826,0.4782,0.0956,0.513,0.6,0.5478,0.374,0.3566,0.513,0.5652,0.3218,0.2,0.1478,0.113,-0.0782,-0.2892,-0.2066,0.1074,0.091,-0.0578,-0.2066,0.0082,0.1074,0.3884,1,0.8512,0.5372,0.4214,0.2232,0.0414,0.405,0.0082,0.2562,0.3058,-0.124,0.3554,0.3554,0.1736,0.124,0.2562,0.4876,0.5042,0.1736,0.0744,0.0248,0.2892,0.2066,-0.5762,-0.339,-0.2204,0.2712,0.2204,-0.3898,-0.0848,-0.1186,0.644,0.9492,1,1,0.6272,0.322,-0.0338,0.695,0.6102,0.4746,0.2712,-0.017,0.678,0.7966,0.695,0.4746,0.661,0.5932,0.7796,0.3898,-0.0678,-0.017,0.2204,-0.2542,0.4628,-1,-1,1,-1,-1,-1,-0.7334,-1,0.2156,0.2942,0.196,0.2156,0.2352,0.255,0.4314,0.2942,0.6078,0.4902,0.5294,0.3726,0.0392,1,0.7058,0.4314,0.196,-0.4314,-0.4314,-0.0196,0.0196,0.4118,0.451,0.8236,0.7844,-0.1176,0.4118,0.6274,0.8236,0.6666,0.4706,0.1764,'13'
-0.406,-0.0742,0.188,0.1508,0.0974,0.2854,0.2506,0.1322,-0.109,-0.1856,-0.1438,-0.0742,-0.1044,-0.072,0.1276,0.2506,0.5034,0.84,1,0.9744,0.747,0.7936,0.9304,0.949,0.6868,0.3178,0.1462,-0.13,-0.1716,-0.2692,-0.0696,0.167,-0.3856,-0.1128,0.1386,0.029,0.5038,0.869,0.6992,0.6112,0.4736,0.2158,0.1644,0.2588,0.3662,0.5296,0.695,1,0.97,1,0.8926,0.8046,0.8388,0.97,0.9098,0.8518,0.6026,0.1922,0.001,0.0076,-0.3234,0.16,0.1622,-0.0698,-0.4556,-0.2082,0.0226,-0.068,0.635,0.8702,0.7814,0.736,0.7154,0.2928,0.3958,0.4536,0.5238,1,1,0.9052,0.6226,0.5154,0.5298,0.598,0.6206,0.701,0.8556,0.5774,0.1958,0.1402,-0.1836,-0.3052,-0.233,-0.0248,-0.2082,-0.1836,-0.236,0.1386,0.4042,0.2478,0.4572,0.5398,0.7228,0.7522,0.3716,0.0118,-0.1062,0.1416,0.6638,0.879,0.8112,0.472,0.4188,0.4778,0.7434,0.7464,0.7788,0.9942,0.9646,0.9942,1,0.6666,-0.0058,-0.2272,-0.5074,-0.292,-0.171,-0.239,-0.275,0.1876,0.5312,0.4656,-0.1782,-0.5094,0.3188,0.5656,-0.0032,-0.6344,-0.8594,-0.3376,0.7688,1,0.3406,-0.2156,-0.0688,0.3844,0.4188,0.35,0.7626,0.7376,0.6938,0.8968,0.8376,0.4906,-0.05,-0.375,-0.6,-0.6344,-0.6188,-0.3906,-0.1638,0.533,0.9284,1,-0.273,-0.5404,0.0734,0.9698,0.7552,-0.6724,-0.8984,-0.0622,0.5028,0.4086,0.4086,-0.0396,0.1262,0.322,0.42,0.2994,0.6082,0.8418,0.8532,0.8116,0.8644,0.8342,0.16,-0.3296,-0.435,-0.6234,-0.6572,-0.6422,-0.4992,0.1746,0.425,0.6106,0.02,-0.0108,0.2086,0.2272,0.1932,-0.3076,-0.2242,0.0448,0.898,1,0.459,0.3602,0.0942,0.1902,0.1654,0.1004,0.357,0.2798,0.255,0.2086,0.5332,0.5858,0.6166,0.1282,-0.4992,-0.4776,-0.5116,-0.4498,-0.3334,0.1112,0.1112,0.2444,0.2444,0.0666,0.2888,0.0222,-0.1112,0.0222,0.0222,-0.1112,0.0666,0.2444,0.4666,0.6888,0.8666,0.9112,1,0.9112,0.8222,1,0.9556,0.6,0.8222,0.5556,0.1556,-0.2888,-0.0222,0.2444,0.6888,0.7334,-0.409,-0.091,0,0.0454,-0.0454,0.1818,0.091,-0.1364,-0.2728,-0.409,-0.4546,-0.409,-0.409,-0.5,-0.2728,0.091,0.1818,0.2728,0.909,1,0.591,0.3182,0.8182,0.6818,0.5,0.2728,0.1364,-0.4546,0.0454,0,-0.1364,-0.1818,-0.4462,-0.1076,0.0154,-0.1076,0.323,0.6616,0.477,0.4154,0.1692,0.1076,0.0462,0.2616,0.5384,0.9384,1,0.6616,0.4154,0.2924,0.5384,0.6308,0.5384,0.5692,0.0462,0.6924,0.8154,0.2616,-0.1692,-0.2,-0.6,-0.4154,-0.1692,-0.1692,-1,-1,-1,-1,-1,-1,-1,-0.8662,-0.8662,-0.8298,-0.5016,0.2462,0.4224,0.7022,0.8844,0.8298,0.2402,0.1306,0.0882,0.1976,0.149,0.0212,-0.5744,-0.6534,-0.8358,-0.7994,-0.848,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9354,-0.943,-0.643,-0.233,-0.3342,0.0696,0.8064,0.6874,0.4696,-0.3,-0.5912,-0.633,-0.6126,-0.6304,-0.4974,-0.8316,-0.8368,-0.8696,-0.8708,-0.881,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9194,-0.9268,-0.8268,-0.2868,-0.2214,-0.3148,-0.536,-0.5468,-0.7068,-0.664,-0.7974,-0.815,-0.885,-0.865,-0.7126,-0.82,-0.6268,-0.46,-0.6468,-0.6868,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5142,0.1142,1,1,-0.4858,-0.6286,-0.8,-0.8572,-0.4,1,-0.9714,-0.9142,-0.9714,0.2572,0.6,-0.4286,-0.9714,-1,-0.9714,-0.8,-1,-1,-1,-1,-1,-1,0.919,0.9158,0.9308,0.9624,0.9938,1,1,1,1,0.936,0.063,0.0882,0.1078,0.0956,0.0352,-0.0296,-0.1448,-0.3538,-0.5142,-0.3444,-0.5066,0.8706,-0.3988,-0.0354,-0.4216,-0.4632,-0.4316,0.9916,-0.7818,-0.6546,-0.0728,0.0546,-0.1818,-0.1636,-0.0182,0.1818,0.6182,1,0.9636,0.9818,0.9272,0.491,0.2364,0.1454,0.3454,0.3454,0.109,0.0182,0.2546,0.509,0.6728,0.6,0.3454,0.291,0.2546,0.2364,0.2182,0.291,0.2,-0.4546,-0.82,-0.28,0.22,-0.08,-0.38,-0.14,-0.14,-0.2,0.4,1,0.78,0.36,0.3,0.16,-0.34,0.16,0,-0.2,-0.14,-0.52,-0.26,0.14,0.48,0.46,0.12,0.04,-0.14,-0.28,-0.18,0.12,0.54,0.38,-0.696,-0.12,0.024,-0.072,-0.296,-0.216,-0.088,0.04,0.312,1,0.872,0.616,0.664,0.376,-0.12,0.488,0.456,0.312,0.168,-0.152,0.312,0.216,0.376,0.872,0.76,0.6,0.392,0.488,0.232,0.248,0.52,0.392,0.8456,-1,-1,1,-1,-1,-0.4,-0.7,-1,-0.0834,-0.0666,0.3,0.2666,0.45,0.5666,0.7834,0.85,0.55,0.5666,0.5,0.4666,1,0.9834,0.75,0.2834,0.8,0.85,0.5834,0.1666,0.4666,0.6834,0.8666,0.8834,0.2666,0.0834,0.5,0.6834,0.4666,0.7,0.6666,0.1666,'14'
-0.5446,-0.2794,-0.002,-0.1072,0.162,0.33,0.1518,0.0566,-0.2348,-0.251,-0.2692,-0.1882,-0.0466,0.0142,-0.0202,0.0628,0.3604,0.7754,0.994,1,0.8158,0.7166,0.8744,0.9596,0.8098,0.3098,0.1012,0.1032,0.1032,-0.1072,-0.3198,0.2206,-0.4708,-0.236,-0.1562,-0.2442,0.334,0.4812,0.3586,0.2156,0.1338,-0.0848,0.0398,0.093,0.1072,0.1012,0.4116,0.4362,0.7548,0.9836,0.9652,0.8692,0.7202,0.8324,0.9856,1,0.6814,0.3544,0.1828,0.14,0.0602,-0.1298,-0.1746,0.2318,-0.4504,-0.2284,-0.3104,-0.4526,0.3276,0.4568,0.597,0.4568,0.3728,0.3772,0.5108,0.4612,0.569,0.9224,1,0.9634,0.5818,0.6552,0.6982,0.5948,0.6854,0.7996,0.8492,0.8104,0.4396,0.278,0.0754,-0.0388,-0.084,-0.2004,0.2888,0.3556,-0.2072,0.1256,-0.0832,-0.1582,0.1746,0.1908,0.3736,0.2366,0.0702,-0.1746,-0.1518,0.0734,0.354,0.6606,0.8042,0.602,0.3214,0.2986,0.3964,0.4128,0.4878,0.5856,0.9674,1,0.9642,0.2464,-0.1648,-0.4846,-0.7064,-0.6802,-0.6248,-0.2986,-0.0962,0.3712,0.2062,-0.0172,0.055,-0.2234,-0.2646,-0.2096,-0.0378,-0.6116,-0.7732,-0.5052,-0.0446,0.3814,0.4776,0.0618,-0.1134,0.3024,0.4468,0.3196,0.488,0.7732,0.6702,0.6324,1,0.7732,-0.0034,-0.2852,-0.622,-0.6048,-0.6908,-0.89,-0.1172,0.539,0.8008,0.7968,-0.289,-0.0118,-0.0468,0.207,-0.1406,-0.4258,-0.6562,-0.371,0.086,0.6718,0.5508,0.1914,0.082,0.3046,0.4336,0.4804,0.5156,0.6016,0.6796,0.539,1,0.8204,0.3046,-0.2188,-0.2774,-0.4532,-0.5156,-0.7968,-0.3406,0.221,-0.2356,-0.2718,-0.029,0.5472,0.6884,-0.0472,-0.3876,-0.337,-0.3116,0.0978,0.4312,0.8624,0.7754,0.3986,0.1486,0.3298,-0.1086,-0.1992,-0.2246,-0.25,-0.0472,0.174,0.8876,1,0.6776,0.2536,-0.1776,-0.3914,-0.4928,-0.3732,-0.561,-0.561,0.0732,0.0244,0.2682,0.2682,0.0244,0.1708,0.1708,-0.2196,-0.3658,-0.3658,-0.2682,-0.2196,-0.561,-0.1708,-0.122,0.3658,1,1,0.5122,0.561,0.8048,0.9024,0.756,0.2196,0.2196,-0.1708,0.0244,0.0244,-0.1708,0.2682,-0.4286,-0.2858,0.1904,0.238,0.381,0.2858,0.1904,-0.0476,-0.4762,-0.3334,-0.3334,-0.238,-0.1904,-0.0476,0.0476,0,0.2858,0.5238,0.9524,1,0.619,0.381,0.9524,0.9524,0.619,0.4762,0.2858,0.4762,0.4286,0.1904,0,0.381,-0.147,0.1176,-0.0294,-0.353,0.3824,0.4118,0.3236,0.0294,-0.4706,0.2648,0.3236,0.2942,0.5882,0.9412,1,0.4706,0.4412,0.4412,0.4118,0.3824,0.4118,0.1764,0.5588,0.7058,0.7352,0.5294,-0.147,-0.5588,-0.7648,-0.9706,-0.1764,-0.0588,-1,-1,-1,-1,-1,-1,-1,-0.812,-0.7864,-0.7264,-0.6666,0.6496,0.5642,0.5898,0.7778,0.8888,0.5556,0.2906,0.2136,0.265,0.2394,-0.188,-0.6752,-0.6324,-0.8034,-0.7436,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.935,-0.5456,-0.3746,0.0388,0.411,0.5076,0.7846,0.6168,-0.2748,-0.6422,-0.6754,-0.6564,-0.6248,-0.7102,-0.8464,-0.8702,-0.894,-0.897,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9528,-0.9268,-0.8734,-0.32,-0.1826,-0.2376,-0.375,-0.445,-0.3788,-0.6824,-0.8212,-0.7496,-0.8778,-0.7166,-0.6884,-0.5734,-0.6934,-0.81,-0.8768,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2,-0.1142,1,1,0.7142,-1,-0.8858,-0.8286,-0.7428,1,-0.8858,-1,-0.9428,-0.1142,-0.8,-0.9714,-0.9428,-1,-0.8286,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.8998,0.3198,0.3144,0.3074,0.2794,0.2564,0.2454,0.212,0.0348,-0.2406,-0.1532,-0.3466,1,-0.7372,-0.3476,-0.1496,-0.1132,0.023,0.0666,-0.653,-0.5306,0.0816,0.0204,-0.1836,-0.102,-0.0816,0.204,0.6326,0.9796,0.9592,1,0.9184,0.551,0.3062,0.102,0.4082,0.4286,0.3878,0,0.5714,0.796,0.7756,0.6122,0.4286,0.5102,0.5918,0.5714,0.4082,0.3062,-0.0612,-0.5918,-0.2978,-0.252,0.3436,0.023,0.0076,-0.0992,-0.1604,-0.145,0.313,1,0.7252,0.7404,0.481,0.1604,0.0076,0.0688,0.252,0.3282,0.2978,0.023,0.4046,0.5726,0.4962,0.1908,0.252,0.4198,0.2824,0.5878,0.3588,0.542,0.0534,-0.4198,-0.7088,-0.1262,0.1068,0.068,-0.0486,-0.301,-0.068,-0.0098,0.3204,1,0.7864,0.903,0.9418,0.0098,0.1844,-0.068,0.1262,0.0486,-0.0292,-0.0486,0.1262,0.5146,0.4952,0.5534,0.4564,0.2038,0.5922,0.6116,0.3786,0.6504,0.1844,-0.3204,1,-1,-1,1,-1,-1,-1,-0.7334,-1,-0.0188,-0.0566,-0.1132,0.151,0.283,0.151,0.6604,0.7924,0.415,0.4528,0.151,0.3018,0.3018,1,0.9434,0.1132,0.3396,0.3208,0.0944,-0.1698,-0.2076,0.3962,0.585,0.6416,-0.0188,0.1886,0.2076,0.3396,0.566,0.4528,0.2452,-0.3584,'14'
-0.4096,-0.152,0.1346,0.3228,0.505,0.7308,0.618,0.5282,0.806,0.9768,1,0.398,0.1924,0.1374,0.0218,-0.1694,-0.0998,-0.0188,0.1722,0.4154,0.6238,0.6904,0.398,0.0652,0.0448,-0.0072,-0.1086,-0.0796,-0.0246,0.0768,0.2474,0.4182,-0.364,-0.1122,0.2104,0.5914,0.791,0.997,0.659,0.8372,0.9354,1,0.7726,0.1244,0.1306,-0.1336,-0.275,-0.2228,-0.189,-0.1306,0.0538,0.278,0.6006,0.699,0.6344,0.0538,0.023,-0.0108,-0.2442,-0.1244,-0.0168,0.1828,0.2074,0.4562,-0.4656,-0.1394,0.0386,0.711,0.7748,0.8656,0.553,1,0.9362,0.647,0.0722,-0.1966,-0.2302,-0.7782,-0.6572,-0.7344,-0.7984,-0.7478,-0.4554,-0.395,0.1126,0.311,0.1462,-0.3614,-0.6302,-0.5362,-0.7344,-0.6268,-0.5596,-0.1832,-0.042,0.069,-0.4326,-0.1454,0.1868,0.8374,0.7508,0.6956,0.6956,1,0.775,0.1038,-0.1834,-0.4672,-0.692,-0.872,-0.827,-0.9516,-0.782,-0.8616,-0.789,-0.6678,-0.2976,-0.0968,-0.0658,-0.2456,-0.519,-0.692,-0.5328,-0.4776,-0.6402,-0.173,-0.0726,-0.1938,-0.3192,-0.056,0.3656,1,0.8104,0.8492,0.9922,0.8568,0.5396,-0.323,-0.6016,-0.6558,-0.7408,-0.8182,-0.8182,-0.7678,-0.7988,-0.9264,-0.7718,-0.7912,-0.6944,-0.4352,-0.06,-0.06,-0.8104,-0.795,-0.7718,-0.7254,-0.7408,-0.5474,-0.0058,-0.0794,-0.2776,0.1356,0.57,1,0.9374,0.6284,0.8914,0.6326,-0.0104,-0.7202,-0.666,-0.7494,-0.7788,-0.8122,-0.6826,-0.7118,-0.6492,-0.6826,-0.8414,-0.7828,-0.6868,-0.6326,-0.3612,-0.1608,-0.4322,-0.737,-0.8914,-0.7704,-0.954,-0.6492,-0.3778,-0.0522,-0.2704,0.3746,0.6774,0.6824,0.3896,1,0.995,0.7618,0.3996,-0.2952,-0.1862,-0.4244,-0.4492,-0.4244,-0.3002,-0.345,-0.5236,-0.4194,-0.598,-0.8064,-0.6178,-0.603,-0.608,-0.5334,-0.5186,-0.727,-0.4492,-0.598,-0.6228,-0.8858,-0.6178,-0.1514,-0.2,0.0222,0.2444,0.4666,0.9112,0.9556,0.9112,0.7778,0.9112,0.9556,1,0.6444,0.5112,0.3778,0.2,0.0666,0.0222,0.1112,0.2888,0.6,0.7334,0.6444,0.0666,-0.1556,-0.0222,0.1112,-0.0222,-0.2444,0.0666,0.1112,0.2,0.3778,-0.5136,-0.1892,0.081,0.3514,0.3514,0.6756,0.6756,0.5676,0.7838,0.946,1,0.5676,0.081,0.081,-0.1352,-0.1352,-0.2972,-0.027,0.2972,0.5136,0.7298,0.5136,0.5136,0.3514,0.1352,0.027,-0.1352,-0.081,0.027,0.027,0.4054,0.3514,-0.3334,-0.077,0.2308,0.6666,0.8718,1,0.6666,0.8718,0.923,0.9744,0.6666,0.2052,0.1026,-0.1538,-0.282,-0.359,-0.2052,-0.1026,0.1794,0.3846,0.4358,0.6924,0.6924,0.1538,0.0256,-0.1282,-0.1026,-0.1026,0.1026,0.2564,0.2308,0.4358,-1,-1,-1,-1,-1,-1,-1,-0.9288,-0.9102,-0.9196,-0.4304,0.3066,0.5944,0.9256,0.8762,0.873,0.8854,0.4922,0.4366,0.2476,-0.2012,-0.5202,-0.7678,-0.7926,-0.8236,-0.9318,-0.9072,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9506,-0.9496,-0.9082,-0.3074,0.5612,0.8054,0.8824,0.5534,0.422,0.2846,-0.0434,-0.2342,-0.3932,-0.6284,-0.7876,-0.8982,-0.9002,-0.9002,-0.9516,-0.9388,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9656,-0.88,-0.9634,-0.4668,-0.598,-0.6256,-0.7474,-0.8164,-0.842,-0.7656,-0.811,-0.822,-0.8764,-0.8092,-0.8092,-0.8468,-0.8268,-0.81,-0.9234,-0.8668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6286,-0.9714,1,1,1,-0.9142,-0.3714,-0.7714,-0.9428,-0.9714,-0.9428,-0.9714,-0.7142,-0.7142,-0.6858,-0.8,-0.8572,-0.8572,-0.8858,-0.1142,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.334,-0.3374,-0.347,-0.3166,-0.2448,-0.1486,-0.0936,-0.1064,-0.0618,-0.1248,-0.3466,0.2942,-0.3942,0.1788,0.412,0.7134,0.7866,0.4416,-0.3254,-0.0844,0.6386,0.7832,0.9278,1,0.4698,0.3976,0.229,0.253,0.8314,0.735,0.253,0.1326,0.0844,0.5904,0.6626,0.1326,0.0362,0.1566,0.0844,0.1084,-0.1084,-0.229,-0.1566,0.3254,0.229,0.012,-0.0602,0.229,0.0602,-0.3976,-0.3258,-0.1012,0.5056,0.528,0.8202,0.9776,0.5056,0.1012,0.2584,0.3932,1,0.8876,0.4382,0.1012,0.1686,0.7752,0.7304,0.3708,0.146,0.2134,0.2584,0.3034,0.3258,-0.2808,-0.1236,0.4158,0.4382,0.528,0.3708,0.663,0.663,-0.3484,0.2196,0.561,1,1,0.8862,0.9024,0.5122,0.1382,0.0406,0.4146,0.8536,0.561,0.0406,0.057,0.3496,0.4308,0.691,0.4308,0.4634,0.4146,0.2358,0.3334,0.4472,0.122,0.187,0.3496,0.187,0.7886,0.7236,0.6422,0.691,-0.1544,0.3458,-1,-1,1,-1,-1,-1,-0.7666,-1,0.1612,0.3978,0.3118,1,0.828,0.4408,0.3334,0.5268,0.4408,0.5484,0.2688,0.4408,0.4838,0.6344,0.1398,0.3548,0.2474,0.1182,0.2474,-0.3334,0.0108,0.5054,0.8494,0.8924,0.4194,0.3978,0.5914,0.4408,0.0538,0.2044,0.2474,-0.2688,'15'
-0.4078,-0.1424,-0.0308,0.472,0.5782,0.6536,0.3464,0.7178,0.9832,1,0.338,-0.053,-0.2514,-0.4134,-0.5336,-0.6984,-0.7988,-0.553,-0.5336,-0.447,-0.1174,0.2794,0.3016,-0.1424,-0.4804,-0.528,-0.6034,-0.3938,-0.1564,0.081,0.2122,0.0418,-0.2198,0.0428,0.2896,0.8176,0.7614,0.6756,0.5362,1,0.941,0.697,0.177,-0.0294,-0.1958,-0.4076,-0.555,-0.756,-0.7184,-0.7614,-0.6058,-0.3432,-0.126,0.1286,0.1046,-0.1742,-0.3914,-0.5764,-0.4772,-0.3512,-0.2708,-0.008,0.0242,0.0938,-0.311,-0.0394,0.4248,1,0.924,0.5212,0.7722,0.9884,0.851,-0.1738,-0.3868,-0.603,-0.6526,-0.7636,-0.7284,-0.8248,-0.924,-0.8716,-0.8862,-0.6584,-0.4482,-0.3722,-0.1008,-0.1884,-0.5912,-0.9124,-0.8424,-0.7548,-0.6116,-0.2526,-0.165,-0.2934,-0.2702,-0.0194,0.2786,0.936,0.7884,0.8412,1,0.3482,0.0278,-0.3482,-0.7994,-0.6546,-0.766,-0.869,-0.844,-0.8246,-0.9248,-0.897,-0.9248,-0.9052,-0.6268,-0.7716,-0.415,-0.3622,-0.6378,-0.7326,-0.883,-0.7242,-0.5236,-0.181,-0.2618,-0.3232,-0.166,0.0836,0.3674,0.8978,0.7788,0.7844,1,0.6114,-0.1914,-0.4666,-0.6454,-0.7334,-0.7334,-0.8014,-0.8354,-0.8894,-0.7134,-0.7164,-0.844,-0.8212,-0.654,-0.705,-0.3504,-0.217,-0.5178,-0.6794,-0.756,-0.9574,-0.79,-0.529,-0.5348,-0.651,-0.0878,0.3606,0.9922,0.8752,0.8518,1,1,0.9844,-0.0176,-0.3918,-0.5672,-0.5984,-0.6336,-0.6414,-0.6296,-0.5516,-0.458,-0.462,-0.501,-0.692,-0.4736,-0.8206,-0.5868,-0.3918,-0.4192,-0.4736,-0.7738,-0.6842,-0.7582,-0.7816,-0.5204,-0.4152,-0.2414,0.3946,0.1686,-0.272,-0.0344,0.8966,1,0.41,0.1226,-0.6436,-0.6552,-0.636,-0.3334,-0.4176,-0.4942,-0.5708,-0.659,-0.4674,-0.5978,-0.6858,-0.5288,-0.5748,-0.4636,-0.7432,-0.6896,-0.7702,-0.7088,-0.7204,-0.7472,-0.751,-0.8008,-0.4368,-0.394,-0.2122,-0.1516,0.5758,0.5152,0.6364,0.5758,1,1,0.7576,0.2122,0.091,-0.0304,-0.091,-0.1516,-0.1516,0.0304,-0.0304,-0.394,-0.0304,-0.0304,0.3334,0.4546,-0.091,-0.1516,-0.697,-0.5758,0.0304,0.091,0.7576,0.8788,0.4546,-0.0434,0.2174,0.174,0.4782,0.7392,0.6086,0.6956,0.5652,1,0.913,0.2608,0.2608,-0.1304,-0.0434,-0.0434,0.1304,-0.174,-0.0434,-0.1304,-0.174,0.3044,0.4348,0.3044,-0.174,0.174,-0.174,0.174,0.1304,-0.174,-0.2174,0.2608,0.2608,-0.2424,0.091,0.4242,1,0.9394,0.5454,0.7576,1,0.8788,-0.303,-0.2728,-0.3334,-0.4242,-0.8182,-0.8182,-0.6666,-0.5454,-0.5152,-0.697,-0.7272,-0.4546,-0.1516,0.0304,-0.2122,-0.4546,-0.697,-0.4848,-0.394,-0.5152,-0.4546,-0.3334,-0.1516,-1,-1,-1,-1,-1,-1,-1,-0.9248,-0.9384,-0.7744,-0.7128,0.1076,0.282,0.5316,0.7436,0.9658,0.6274,0.2992,0.2548,-0.1794,-0.33,-0.583,-0.747,-0.829,-0.8804,-0.9146,-0.894,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9076,-0.9284,-0.523,-0.5306,0.591,0.6022,0.755,0.9472,0.8586,0.5024,0.246,0.0254,-0.3516,-0.442,-0.6286,-0.8096,-0.821,-0.8794,-0.885,-0.885,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.96,-0.73,-0.71,-0.61,-0.6744,-0.7386,-0.7544,-0.7958,-0.79,-0.79,-0.883,-0.913,-0.873,-0.872,-0.8734,-0.82,-0.8334,-0.9268,-0.9334,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,0.0286,1,0.0286,0.8,-0.8858,-0.8286,-0.8858,-0.8858,-1,-0.9714,-0.9714,-0.9714,-0.8,-0.8,-0.9428,-0.8,-0.8858,-0.8858,-0.3714,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.182,-0.196,-0.1902,-0.1878,-0.1602,-0.1708,-0.1536,-0.1674,-0.1408,-0.2072,-0.36,0.7058,-0.7098,0.0348,0.4836,0.7098,0.9152,-0.7666,-0.593,-0.292,0.6992,0.5752,0.9824,0.9646,0.3274,0.1328,0.0442,0.3098,0.947,1,0.2744,0.2036,0.6814,0.7522,0.2566,0.3806,0.4868,0.9116,0.646,0.1328,0.0266,-0.2744,-0.2212,-0.3274,-0.4336,-0.1682,-0.1328,-0.0088,0.1504,-0.3098,-0.3008,0.0244,0.8048,0.4308,0.8862,0.9512,0.2682,0.057,0.3008,0.2846,0.8048,1,0.1382,0.2032,0.0732,0.3822,0.122,0.252,0.4634,0.7886,0.4634,0.187,0.057,0.057,-0.5934,-0.1056,-0.0894,-0.2846,0.1382,0.252,0.187,0.0082,-0.1148,0.082,0.836,0.6886,1,0.7214,0.5246,0.5246,0.5246,0.4754,0.623,0.9016,0.4754,0.3442,0.5082,0.5738,0.246,0.2296,0.6886,0.5902,0.3278,0.1312,0.4918,0.3278,0.1968,0.164,0.0656,0.082,0.2296,0.4918,0.5082,0.1148,0.2818,-1,-1,1,-1,-1,-1,-0.6666,-1,0.415,0.4906,0,0.6604,0.6604,0.566,0.3018,0.566,0.4716,0.3018,0.6604,0.6982,0.4716,0.4528,0.4906,0.849,0.9056,0.5472,0.6038,0.6226,0.7358,0.6416,0.151,0.3018,0.5284,0.6416,0.6982,1,0.566,0.4716,0.5284,-0.132,'15'
-0.045,0.0964,0.0792,0.1392,-0.726,-0.7902,-0.773,-0.743,-0.8544,-0.8286,-0.803,-0.6874,-0.5846,-0.6488,-0.696,-0.5632,-0.3618,0.075,0.4346,0.91,0.9314,0.6146,0.529,0.636,0.833,0.8544,1,0.8372,0.3876,0.1992,0.1734,0.2506,-0.2554,0.1302,0.6772,0.6706,-0.4828,-0.6376,-0.6276,-0.621,-0.8254,-0.9638,-0.7134,-0.4102,-0.3312,-0.3246,-0.341,-0.252,-0.051,0.2948,0.4696,1,0.9506,0.9374,0.7628,0.7462,0.8188,0.9242,0.9406,0.6508,0.4266,0.4432,0.3542,0.229,-0.2122,0.2404,0.9474,0.9152,-0.5192,-0.907,-0.8708,-0.8182,-0.8788,-0.8102,-0.6566,-0.5798,-0.4586,-0.394,-0.3334,-0.3414,-0.091,-0.2888,0.1636,0.7494,0.8506,1,0.9112,0.7616,0.3494,1,0.8586,0.6404,0.2242,0.1314,0.091,-0.1676,-0.2898,0.1024,0.6184,0.5902,-0.6148,-0.742,-0.8162,-0.6962,-0.9682,-0.629,-0.5654,-0.5584,-0.5406,-0.576,-0.5512,-0.583,-0.4982,-0.3816,-0.166,0.3286,0.8692,1,0.5654,0.4204,0.2084,0.728,0.629,0.5548,0.2438,0.1554,0.1414,-0.1308,-0.3774,0.0198,0.447,0.4404,-0.735,-0.8708,-0.5066,-0.4172,-0.8146,-0.8278,-0.7218,-0.5894,-0.5264,-0.4768,-0.5232,-0.596,-0.5034,-0.2384,-0.139,0.3378,0.7582,1,0.8742,0.7218,0.5464,0.692,0.7384,0.8476,0.692,0.4304,0.3378,0.192,-0.5926,0.1666,-0.125,-0.4028,-0.8518,-0.6436,-0.2824,-0.176,-0.5926,-0.5462,-0.6018,-0.5972,-0.4398,-0.4676,-0.5648,-0.3564,-0.4768,-0.3796,-0.1436,-0.1204,0.2314,0.9074,1,0.699,0.6064,0.6898,0.8658,0.8842,0.4306,0.3334,0.1296,0,-0.664,-0.5502,-0.6314,-0.588,-0.4688,-0.3496,-0.2738,-0.1166,-0.252,-0.3224,-0.2412,-0.3984,0.0082,-0.0732,-0.1382,0.122,0.1978,0.3766,0.4308,0.5556,0.3658,0.2574,0.328,0.3062,0.859,1,0.5014,0.2196,0.0948,-0.2846,-0.2358,-0.1274,0.8182,0.5758,-0.3334,-0.2122,-0.697,-0.6364,-0.5758,-0.4546,-0.5758,-0.3334,-0.3334,-0.5152,-0.4546,-0.5758,-0.3334,-0.3334,-0.5758,-0.2728,0.091,0.0304,0.1516,-0.091,0.091,0.1516,0.6364,0.9394,1,0.8182,0.7576,0.5152,0.2122,0.5152,0.5,0.1112,-0.1112,-0.4444,-0.1666,-0.1666,-0.2778,-0.5556,-0.4444,0.0556,0.1112,-0.5,0,0,-0.3334,0,0,-0.1666,0.3334,0.6666,0.6666,0.1112,0.7222,1,0.8888,0.6666,0.8888,0.9444,0.3334,0.2778,0.5,0.7222,-0.3334,0.0476,0,0.0238,-0.619,-0.6904,-0.3334,-0.2858,-0.4048,-0.5952,-0.6428,-0.3572,-0.1666,-0.4048,-0.3572,-0.4524,-0.3334,-0.1904,-0.1904,-0.2142,-0.0714,0.8334,1,0.6428,0.4524,0.619,0.5714,0.5476,0.2858,0.1428,0.3096,0.0714,-1,-1,-1,-1,-0.9312,-0.903,-0.9124,1,1,1,1,0.2206,0.565,0.5024,0.3458,0.1362,0.0016,-0.155,-0.324,-0.64,-0.8716,-0.928,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9226,-0.898,-0.833,0.8822,1,1,1,-0.021,0.833,0.4482,0.0036,-0.1546,-0.2074,-0.2602,-0.1934,-0.5958,-0.8488,-0.891,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9082,-0.8734,-0.8468,-0.5434,-0.8068,-0.8968,-0.8034,-0.7764,-0.3838,-0.5274,-0.6456,-0.5946,-0.571,-0.3656,-0.1,-0.59,-0.7664,-0.7876,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5714,-0.5428,1,1,1,0.0572,0.5714,0.4858,0.0858,-0.0858,-0.6286,-0.8286,-0.9428,-0.9714,-0.2,1,-0.6286,-0.6858,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,-0.8606,-0.8048,-0.8088,-0.8144,-0.7644,-0.7062,-0.6346,-0.598,-0.187,0.7866,0.7986,0.807,0.8136,0.8402,0.8632,0.8912,0.8646,0.8546,0.7402,-0.5466,0.3176,1,0.3778,-0.1528,-0.2742,0.2022,1,0.1082,0.0472,0.0136,-0.0068,-0.054,-0.2298,0.304,0.3378,0.7568,0.8986,0.9594,1,0.7094,0.3784,0.2568,0.6554,0.7432,0.6486,0.5068,0.7838,0.7432,0.8514,0.7702,0.7162,0.581,0.6014,0.6756,0.5338,0.3514,0.4324,0.196,-0.1892,1,0.7826,0.1112,-0.0354,-0.1348,-0.1914,0.0166,0.0922,0.4846,0.7164,0.721,1,0.8628,0.6406,0.3996,0.461,0.792,0.74,0.5036,0.8156,0.8298,0.5982,0.4658,0.4468,0.4042,0.3806,0.3806,0.3522,0.2576,0.2246,0.045,-0.1726,0.7378,0.4962,-0.0026,-0.203,-0.162,-0.0026,-0.0334,-0.1106,0.162,0.491,0.563,0.6556,0.8406,0.7532,0.5938,0.4858,0.9384,1,0.7584,0.8304,0.9024,0.8612,0.7378,0.5886,0.5322,0.5012,0.5578,0.4704,0.5476,0.3934,0.342,-0.0694,1,-1,-1,1,-0.8,-1,-1,-0.1334,-1,-0.0606,-0.2424,0.3636,0.394,0.394,0,0.5152,0.5758,0.5758,0.7878,0.3636,0.6666,1,0.8788,0.6364,0.4242,0.3334,0.4242,0.606,0.606,0.3334,0.8182,0.8182,0.3334,0.3334,0.091,0.394,0.3334,0.2424,0.2728,0.2424,-0.394,'16'
0.3752,0.3622,-0.0066,-0.0326,-0.371,-0.7354,-0.8264,-0.6616,-0.5792,-0.8828,-0.8352,-0.5228,-0.3362,-0.3188,-0.4274,-0.5444,-0.3492,0.193,0.3882,1,0.8916,0.6226,0.3536,0.7136,0.9306,0.9262,0.8612,0.5054,-0.0586,0.115,0.0498,0.128,-0.384,0.1434,0.4124,0.547,-0.1328,-0.7062,-0.8088,-0.6566,-0.6602,-0.9504,-0.77,-0.6956,-0.5222,-0.554,-0.4088,-0.4726,-0.3204,0.0726,0.2778,0.9222,0.862,1,0.7204,0.646,0.9222,0.823,0.6212,0.3522,0.331,0.1328,0.0902,0.3168,-0.4018,0.0342,0.2462,0.3458,-0.3022,-0.9096,-0.8038,-0.5576,-0.5296,-0.8162,-0.732,-0.6106,-0.595,-0.5794,-0.4766,-0.592,-0.5608,-0.2242,0.0686,0.4268,0.8566,1,0.5982,0.5078,0.7384,0.5576,0.7102,0.408,0.3458,0.218,0.1652,0.2524,-0.3628,0.0936,0.2436,0.322,-0.4378,-0.8024,-0.707,-0.7512,-0.6286,-0.6866,-0.5094,-0.431,-0.7342,-0.8126,-0.5912,-0.7138,-0.5094,-0.1618,0.0018,0.1856,0.9216,0.9352,0.9284,0.7512,0.8262,1,0.9592,0.6252,0.3696,0.322,0.2742,0.1926,-0.4338,0.0698,0.1286,0.2096,-0.5552,-0.886,-0.9228,-0.8272,-0.7758,-0.7942,-0.603,-0.592,-0.467,-0.397,-0.5478,-0.6876,-0.6544,-0.3382,-0.25,-0.0404,0.6728,0.6986,1,0.8052,0.7868,0.9412,0.9008,0.8824,0.6618,0.4412,0.342,0.2574,-0.5674,0.013,0.0314,0.1756,-0.3864,-0.9298,-0.756,-0.7744,-0.8484,-0.9186,-0.7154,-0.708,-0.634,-0.6598,-0.6598,-0.719,-0.6562,-0.56,-0.294,0.109,0.4196,0.9852,1,0.7376,0.6784,0.5416,0.7818,0.841,0.6008,0.4306,0.2014,0.1312,-0.4674,0.6272,0.4202,0.2308,-0.3196,-0.5266,-0.5208,-0.6154,-0.71,-0.8284,-0.5976,-0.5502,-0.4438,-0.6746,-0.5088,-0.4142,-0.5088,-0.5384,-0.6094,-0.1952,0.4142,0.8344,1,0.781,0.7928,0.9526,0.9882,0.9644,0.5148,0.0414,-0.355,-0.2486,0.5334,0.2666,-0.2666,-0.4,-0.8,-0.4,0,-0.1334,-0.6666,-0.4,-0.2,-0.0666,0.0666,-0.1334,-0.2666,-0.3334,-0.3334,0.4666,0.7334,0.9334,0.8666,0.1334,0.6,1,0.9334,0.6,0.8,0.3334,0.5334,0.6,0.2,-0.1334,0.4376,-0.1876,-0.3124,-0.375,-0.6876,-0.3124,-0.5,-0.4376,-0.3124,-0.8124,-0.75,-0.1876,-0.25,-0.25,-0.1876,-0.1876,-0.5,0,0.25,0.875,1,0.5624,0.0624,0.6876,0.9376,0.8124,0.75,0.625,0.0624,0.3124,0.3124,-0.1876,-0.179,0.179,0.3684,0.4526,-0.0736,-0.5158,-0.4106,-0.2842,-0.3264,-0.979,-0.4106,-0.2632,-0.2842,-0.2842,-0.2632,-0.2842,-0.179,0.0106,0.221,0.4948,0.8736,1,0.4736,0.6,0.7474,0.5158,0.5578,0.579,0.4526,0.2842,0.3894,0.3894,-1,-1,-1,-1,-1,-0.9444,-0.9572,-0.9358,-0.12,1,0.6574,0.3298,-0.107,-0.2784,-0.364,-0.4326,-0.4882,-0.5504,-0.6188,-0.6638,-0.6916,-0.8052,-0.9144,-0.938,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9004,-0.9196,-0.454,0.3046,1,0.8832,0.41,0.251,0.2108,0.366,0.3046,0.1954,0.0708,-0.115,-0.136,-0.4386,-0.7184,-0.8524,-0.8832,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9264,-0.9334,-0.8134,-0.58,-0.6934,-0.7868,-0.908,-0.53,-0.304,-0.152,-0.132,-0.046,-0.024,0.008,0.0308,-0.5928,-0.751,-0.9,-0.86,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-0.2572,1,1,-0.5428,-0.3714,0.0286,0.1428,-0.9142,-0.8572,-1,-0.9714,-1,-1,-0.8286,-0.3714,-0.1428,-0.7428,-0.9714,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9928,-0.9448,-0.9232,-0.906,-0.8302,-0.7886,-0.6754,-0.5632,-0.4614,0.6708,0.686,0.7148,0.7244,0.7114,0.6936,0.7292,0.76,0.836,0.8484,-0.6266,0.2118,0.5058,0.0978,-0.002,0.7356,0.59,1,0.0254,-0.091,-0.0982,-0.0254,-0.0254,-0.069,0.3236,0.4472,0.6946,0.9418,0.8764,0.891,0.7382,0.5128,0.4254,0.949,1,0.7818,0.6728,0.7964,0.9054,0.9272,0.8328,0.6218,0.629,0.6582,0.6364,0.6364,0.52,0.411,0.3164,-0.2,0.623,0.163,0.0096,-0.0608,-0.0862,-0.3546,-0.0926,0.0032,0.2268,0.8274,0.7252,0.802,1,0.5846,0.329,0.329,0.9488,0.9298,0.8274,0.9042,0.8146,0.6486,0.4824,0.508,0.3546,0.6294,0.7316,0.5592,0.3418,0.2844,0.1694,-0.0352,0.6118,-0.0842,-0.2234,-0.2088,-0.1868,-0.282,-0.2674,-0.077,0.1722,0.8974,1,0.7362,0.956,0.8754,0.5018,0.3554,0.3626,0.8828,0.7876,0.5312,0.9926,0.7948,0.7436,0.5018,0.5458,0.6336,0.8168,0.5312,0.4066,0.2528,0.3992,0.2234,1,-1,-1,1,-1,-1,-1,-0.3,-1,-0.1042,0,0.3334,0.2708,0.125,0.5834,0.5624,0.5416,0.7084,1,0.6458,0.3124,0.7292,0.6458,0.6042,0.3542,0.5834,0.6876,0.6666,0.7708,0.75,0.6666,0.375,0.5624,0.4166,0.4376,0.625,0.6876,0.375,0.1876,0.125,-0.4166,'16'
-0.3648,-0.0088,0.3438,0.4172,-0.3682,-0.63,-0.6126,-0.3996,-0.4904,-0.5812,-0.6196,-0.4136,-0.2112,-0.1658,-0.1308,0.0262,0.5916,0.6964,1,0.9162,0.787,0.6614,0.6614,0.2112,-0.0088,-0.0088,-0.0018,-0.061,-0.0018,0.1658,0.1832,0.3856,-0.212,0.2248,0.9614,0.9444,-0.2634,-0.3404,-0.3534,-0.075,-0.3618,-0.5118,-0.2806,0.0322,0.092,0.4176,0.7474,0.803,0.8886,0.7774,0.8244,0.8544,0.9014,1,0.5374,0.1264,0.0706,-0.1478,-0.1564,-0.1434,-0.0406,0.0792,0.2248,0.4646,-0.213,0.2092,1,0.962,-0.251,-0.2396,-0.175,-0.0076,-0.384,-0.1902,0.1178,0.6806,0.5666,0.5552,0.2548,0.2092,-0.0836,0.0988,0.0874,0.2738,0.7756,0.768,0.2358,-0.0722,-0.1788,-0.3232,-0.2738,-0.2472,-0.3042,-0.0608,-0.0342,0.1064,-0.223,0.172,1,0.9448,-0.0574,-0.1848,0.1082,0.2696,-0.1678,0.4098,0.5838,0.138,0.0022,-0.1592,-0.2782,-0.3928,-0.5414,-0.431,-0.2356,-0.1422,0.3036,0.1932,0.2908,-0.3546,-0.4946,-0.5966,-0.3842,-0.5202,-0.3928,-0.2102,-0.053,0.07,-0.1524,0.3246,1,0.9956,-0.2494,-0.0286,0.0596,0.4658,0.3996,0.3952,-0.1524,-0.4438,-0.4922,-0.5762,-0.4216,-0.4216,-0.5012,-0.4216,-0.3156,-0.298,-0.0022,0.2274,0.0772,-0.0552,-0.4438,-0.4966,-0.5894,-0.6998,-0.4526,-0.373,-0.3554,-0.3642,-0.2696,0.4006,0.854,1,0.0226,0.0378,0.476,0.8136,0.743,-0.34,-0.5062,-0.5466,-0.4458,-0.6676,-0.592,-0.5768,-0.5566,-0.6172,-0.7078,-0.5416,-0.2544,-0.1032,-0.063,-0.2644,-0.325,-0.5516,-0.6726,-0.5718,-0.6726,-0.6524,-0.5416,-0.5718,-0.4464,0.5262,0.4314,0.3168,0.0474,-0.2418,0.8404,1,0.3566,-0.0374,-0.3866,-0.4014,-0.5262,-0.4614,-0.8504,-0.5462,-0.5412,-0.5512,-0.621,-0.7206,-0.3068,-0.2968,-0.177,-0.0574,-0.237,-0.631,-0.5412,-0.5512,-0.6958,-0.7108,-0.581,-0.621,-0.3658,-0.0244,0.0244,0.1708,-0.4146,-0.561,-0.5122,-0.4146,-0.7074,-0.4634,-0.4146,-0.4146,-0.1708,-0.3658,-0.122,0.0244,0.3658,0.6098,1,1,0.8536,0.8048,0.9024,0.317,0.1708,0.122,0.0732,0.2196,0.122,-0.0244,0.317,0.6098,-0.2,0.1272,0.4182,0.4546,-0.0546,-0.3454,-0.2728,-0.1636,-0.2,-0.2364,-0.4546,-0.3454,-0.1636,-0.0546,-0.0546,0.0546,0.4546,0.7818,1,0.9636,0.6728,0.7454,0.6728,0.2728,0.1272,0.1636,0.1636,0.1272,0.1636,0.309,0.3454,0.491,-0.183,0.3802,1,0.9154,-0.0986,-0.183,0.0704,0.2394,-0.0704,0.2676,0.4648,0.7464,0.6338,-0.2676,-0.183,-0.2676,-0.4366,-0.2394,-0.155,0.0704,0.4648,0.4084,0.2394,-0.0986,-0.183,-0.6338,-0.324,-0.3802,-0.2958,-0.1268,-0.0422,0.0704,-1,-0.9486,-0.9258,-0.9258,-0.9286,-0.923,-0.883,-0.7718,-0.9144,-0.9088,-0.5748,0.3838,0.7318,0.9544,0.9144,0.6718,0.4066,0.2068,0.07,-0.1698,-0.3808,-0.5606,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.919,-0.9036,-0.7474,-0.622,-0.1148,1,1,0.1418,-0.4002,-0.3578,0.7724,0.8284,0.8746,0.7242,0.4812,0.1398,-0.0724,-0.1186,-0.246,-0.4098,-0.5544,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.953,-0.9,-0.8,0.1,0.66,0.7266,0.6332,0.5866,0.5332,-0.13,-0.3468,-0.5712,-0.7356,-0.8978,-0.9334,-0.9356,-0.9356,-0.92,-0.85,-0.868,-0.954,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2,-0.6858,1,1,1,1,0.0858,0.5142,0.1714,1,1,-0.5428,-0.6572,-0.6286,-0.6,-0.6858,-0.8572,-1,-0.7428,-0.7142,-0.4858,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.193,-0.222,-0.2118,-0.2102,-0.1886,-0.1504,-0.1156,-0.0684,0.0384,0.3346,0.0574,0.029,0.005,-0.0442,-0.1092,-0.22,-0.3458,-0.5634,-0.6168,-0.3772,-0.5334,0.0942,-0.4812,0.5062,0.8014,0.8958,0.8322,-0.6834,-0.496,-0.4864,-0.3716,-0.26,-0.1898,-0.2536,-0.1196,-0.0718,-0.1324,-0.0622,0.3334,0.6012,0.8086,0.6492,0.5598,0.4928,0.5662,0.7448,0.917,1,0.8342,0.6044,0.496,0.48,0.461,0.3844,0.4546,0.4832,0.2154,0.413,0.1994,-0.1356,-0.8334,-0.5862,-0.5416,-0.2362,-0.3278,-0.2806,-0.1916,-0.0694,0.0166,0.3638,0.4722,0.8056,0.8388,0.7416,0.5362,0.5612,0.7084,0.6166,0.8334,1,0.975,0.7222,0.5944,0.4916,0.6028,0.4444,0.4194,0.4888,0.2112,0.4638,0.3222,0.0612,-0.5044,-0.2162,-0.2302,-0.2162,-0.2408,-0.3006,-0.1776,-0.0932,0.1318,0.529,0.5922,1,0.7926,0.645,0.4904,0.638,0.7294,0.5396,0.7048,0.877,0.9544,0.6906,0.7118,0.6204,0.5958,0.536,0.5606,0.5818,0.4516,0.4446,0.3568,-0.311,-0.0318,-1,1,-1,-1,-1,-1,0.5,-1,0.5834,0.8334,0.1388,0.9722,1,0.6388,0,0.1666,0.2778,0.25,0.4166,0.4166,0.3056,0,0.2222,0.2778,0.6112,0.3888,0.2778,0.25,0.3334,0.25,0.1666,0.0834,0.1112,0.1666,0.3056,-0.1388,0.1112,0.2222,0,-0.1112,'17'
-0.2562,0.1336,0.4468,0.4686,-0.5722,-0.8038,-0.733,-0.4414,-0.6404,-0.643,-0.7738,-0.624,-0.4822,-0.2016,-0.2862,-0.1416,0.485,0.7138,0.9946,0.9156,0.951,1,0.8392,0.4468,0.1608,0.0436,0.0382,0.0626,0.0954,0.237,0.4442,0.5886,-0.2968,0.105,0.7596,0.729,-0.726,-0.7626,-0.7626,-0.6774,-0.522,-0.5678,-0.7626,-0.312,-0.2602,-0.041,0.248,0.659,0.8722,0.6774,0.5982,0.8144,0.9574,1,0.4916,0.0654,-0.1812,-0.2998,-0.2512,-0.2208,-0.2054,-0.0502,0.0564,0.4978,-0.2088,0.2526,1,0.8484,-0.2154,-0.3334,-0.4546,-0.3804,-0.1818,-0.3872,-0.0842,0.2222,0.6398,0.5824,0.6094,0.074,0.1178,0.1112,0.2458,0.5016,0.7442,0.7744,0.6398,0.0808,-0.175,-0.34,-0.276,-0.3064,-0.1314,-0.091,0.0708,0.495,-0.1368,0.4296,1,0.7382,0.086,-0.2266,-0.1954,-0.0078,0.2304,0.543,0.5664,0.3164,0.082,-0.3594,-0.5118,-0.664,-0.4844,-0.4414,-0.4376,-0.0782,0.1954,0.707,0.539,-0.0586,-0.4726,-0.7656,-0.7422,-0.6172,-0.496,-0.504,-0.4454,-0.1172,-0.0336,0.3824,1,0.731,0.1722,-0.1176,0.4706,0.5252,0.5042,0.3488,-0.0462,-0.4748,-0.6596,-0.605,-0.7436,-0.9244,-0.8614,-0.7184,-0.8362,-0.458,-0.1638,0.1092,0.2352,0.0378,-0.6806,-0.668,-0.647,-0.6974,-0.7142,-0.7732,-0.6092,-0.1764,0.1096,0.754,1,0.9642,-0.1722,0.8076,0.9776,0.8926,0.4988,0.0694,-0.3736,-0.2036,-0.2304,-0.5704,-0.2706,-0.387,-0.3378,-0.3512,-0.4408,-0.566,-0.2976,-0.3512,-0.557,-0.4944,-0.6242,-0.7404,-0.5884,-0.6332,-0.5884,-0.6332,-0.6196,-0.3512,-0.1462,0.6498,0.247,-0.0552,-0.4916,0.199,0.5156,0.8706,1,0.6116,-0.2998,-0.2182,-0.0408,-0.1462,-0.2662,-0.5972,-0.6834,-0.5588,-0.645,-0.861,-0.5492,-0.3956,-0.4964,-0.5684,-0.4388,-0.6164,-0.6546,-0.506,-0.5924,-0.7074,-0.7938,-0.645,-0.0732,0.2682,0.2682,0.317,-0.4634,-0.5122,-0.3658,-0.317,-0.5122,-0.3658,-0.4634,-0.4634,-0.1708,-0.4146,-0.4634,-0.0732,0.5122,0.5122,0.9512,0.9512,1,0.756,0.7074,0.756,0.317,0.3658,0.2196,0.317,0.4146,0.4146,0.6586,0.8536,0.1072,0.4286,0.5358,0.5358,-0.0714,-0.2858,-0.4642,-0.1072,-0.0714,-0.1428,-0.3214,-0.1072,-0.1072,0.1428,0.1072,0.1072,0.2858,0.6072,0.7858,1,0.9286,0.8572,0.7858,0.6786,0.4286,0.3928,0.3572,0.3214,0.4286,0.5,0.5,0.75,-0.0492,0.5082,1,0.8032,0.082,0.0492,-0.541,0.0492,0.1476,0.2786,1,0.7704,0.377,-0.082,-0.4098,-0.3114,-0.246,-0.1148,-0.2132,0.0164,0.377,0.8032,0.705,-0.0492,-0.1804,-0.4426,-0.3442,-0.3114,-0.0492,-0.1804,-0.082,0.246,-0.9264,-0.9442,-0.9352,-0.9206,-0.847,-0.9,-0.9088,-0.8824,-0.8824,-0.897,-0.4294,0.397,0.7382,0.8882,0.8588,0.5206,0.2912,0.0942,-0.1442,-0.3352,-0.4706,-0.6852,-0.8618,-0.9118,-0.9206,-1,-1,-1,-1,-1,-1,-1,-1,-0.9154,-0.9174,-0.709,-0.2938,0.2864,0.2206,0.3052,0.6,0.4348,-0.0572,-0.2188,0.6282,0.8874,0.7408,0.5924,0.3146,0.0084,-0.1174,-0.2846,-0.4292,-0.5418,-0.7052,-0.8536,-0.9024,-0.891,-1,-1,-1,-1,-1,-1,-1,-1,-0.9058,-0.9468,-0.93,0.0866,0.42,0.5766,0.7066,0.7566,0.6332,0.5766,-0.0534,-0.2484,-0.4094,-0.6354,-0.7662,-0.8694,-0.854,-0.8508,-0.8094,-0.8032,-0.8094,-0.8032,-0.7768,-0.8568,-0.86,-1,-1,-1,-1,-1,-1,-1,-1,-0.4286,-0.5142,1,1,1,-0.5714,-0.9142,-0.9714,-0.5142,-0.1714,0.3428,0.2,-0.8858,-0.7428,-0.7142,-0.5714,-0.5428,-0.8572,-0.6572,-0.8858,-0.7142,-0.7428,-0.8858,-0.9428,-0.4,-1,-1,-1,-1,-1,-1,-1,-1,-0.516,-0.5246,-0.537,-0.5098,-0.532,-0.53,-0.5246,-0.4882,-0.3652,0.1046,0.2674,0.2638,0.2212,0.158,0.0972,0.0126,-0.0898,-0.2908,-0.4228,-0.3776,-0.4266,0.553,-0.2394,0.17,0.4384,0.739,0.8704,-1,-0.6594,-0.5226,-0.4382,-0.2896,-0.3276,-0.1674,-0.0568,-0.083,0.0888,0.4236,0.8108,0.8544,0.834,0.6012,0.4498,0.6302,0.6798,0.8458,0.9156,1,0.7468,0.5546,0.4062,0.342,0.2286,0.3014,0.3654,0.345,0.2402,0.179,0.182,-0.147,-0.7856,-0.6546,-0.623,-0.4446,-0.4154,-0.2754,-0.2234,-0.1264,0.0226,0.3296,0.4944,0.693,0.5598,0.4198,0.3656,0.4898,0.5102,0.6344,0.8872,1,0.7698,0.6636,0.492,0.4672,0.377,0.3928,0.4312,0.3702,0.2484,0.316,0.2326,0.0294,-0.5104,-0.2578,-0.2836,-0.4176,-0.348,-0.366,-0.1418,-0.085,-0.0026,0.536,0.5336,0.7964,0.7628,0.4304,0.402,0.768,0.7088,0.366,0.8068,1,0.7372,0.5618,0.3118,0.317,0.4226,0.4382,0.5438,0.2294,0.2526,0.366,0.1984,-0.2886,1,-1,1,-1,-0.6,-1,-1,0.6666,-1,0.2924,0.3538,0.2616,0.4462,0.6924,0.5692,0.6308,0.4154,0.323,0.6308,0.2924,0.477,0.4462,0.2924,0.3846,0.6924,0.7538,-0.0462,0.6,0.6308,0.1692,1,0.0154,-0.1692,-0.1384,0.1384,0.077,0.2924,0.323,0.1076,-0.2924,-0.323,'17'
-0.4376,-0.1618,-0.0558,0.1352,0.4562,0.6154,0.8726,1,1,0.5146,0.2308,-0.0584,-0.305,-0.4058,-0.5756,-0.6446,-0.6392,-0.5756,-0.496,-0.3262,-0.2572,0.1008,0.183,0.0398,-0.1724,-0.061,-0.0478,-0.053,-0.13,-0.008,0.199,0.3794,-0.4142,-0.193,-0.1506,0.0918,0.5458,0.6682,0.8636,0.9976,1,0.6706,0.3036,-0.0706,-0.4588,-0.4752,-0.4212,-0.4848,-0.607,-0.6,-0.4306,-0.3364,-0.1624,0.0448,-0.0542,-0.2164,-0.2588,-0.1318,-0.1976,-0.2542,-0.1812,-0.0118,0.3412,0.4258,-0.4582,-0.2652,-0.2814,-0.0232,0.5372,0.5884,0.7162,1,0.7976,0.6372,0.2162,-0.1046,-0.214,-0.3768,-0.4558,-0.579,-0.521,-0.4488,-0.186,-0.1582,-0.221,-0.4396,-0.6674,-0.6674,-0.4954,-0.5232,-0.579,-0.4814,-0.3906,-0.272,0.0512,0.1604,-0.461,-0.2708,-0.3854,-0.1586,0.4682,0.5074,0.7074,1,0.7902,0.561,0.6488,0.2122,0.1024,0.0586,0.0122,0.0464,0.1682,0.1488,-0.0708,-0.2952,-0.5732,-0.8122,-0.9732,-0.9122,-0.7488,-0.7708,-0.856,-0.8732,-0.8512,-0.7878,-0.578,-0.4268,-0.3588,-0.1246,-0.169,0.053,0.5832,0.7066,0.783,0.6966,0.6794,0.6646,1,0.8914,0.889,0.8052,0.857,0.7262,0.2552,0.0506,-0.0974,-0.2134,-0.4426,-0.6966,-0.7632,-0.7288,-0.6646,-0.534,-0.4402,-0.3662,-0.3564,-0.275,-0.0654,-0.0036,-0.424,-0.186,-0.147,0.0256,0.3244,0.5286,0.48,0.4022,0.3414,0.2102,0.6866,0.808,1,0.8712,0.7838,0.8128,0.1592,-0.147,-0.1908,-0.3924,-0.6622,-0.7448,-0.74,-0.8518,-0.7716,-0.7812,-0.74,-0.7594,-0.706,-0.5748,-0.475,-0.7326,-0.3018,0.0878,-0.3614,-0.2492,0.1544,0.6808,0.4912,0.172,0.0948,0.028,0.3192,0.593,1,0.9018,0.6702,0.435,0.2666,-0.035,-0.365,-0.5508,-0.5404,-0.6912,-0.6526,-0.6,-0.5298,-0.5018,-0.6246,-0.6912,-0.9158,-0.772,-0.786,-0.779,-0.05,0.2,0.1,0.05,0.35,0.75,0.7,1,0.95,0.3,0.1,0.25,-0.25,-0.05,-0.2,-0.35,-0.3,-0.55,-0.3,-0.3,-0.15,0.05,0.25,0.05,-0.05,-0.15,-0.05,0.1,0.05,0.2,0.2,0.35,-0.1034,0.138,0.2414,0.3448,0.5862,0.7242,0.862,1,0.931,0.6896,0.4138,-0.069,0.0344,0,-0.0344,-0.1724,-0.138,0.1034,-0.0344,0.1034,0.1724,0.2758,0.3104,0.2758,0.2068,0.3104,0.2414,0.1724,0.1034,0.138,0.2068,0.138,-0.4216,-0.229,-0.3012,-0.1808,0.4216,0.518,0.7832,1,0.7108,0.5904,0.4698,-0.1326,-0.0602,-0.2772,-0.4458,-0.4216,-0.518,-0.4216,-0.0602,-0.229,-0.2048,-0.6626,-0.6626,-0.759,-0.7832,-0.6386,-0.6626,-0.4458,-0.5422,-0.494,-0.012,0.2772,-1,-1,-1,-1,-1,-1,-0.8912,-0.8602,-0.8238,-0.3626,-0.3834,0.4352,0.627,0.8238,0.917,0.5544,0.5596,0.7564,0.601,0.3524,0.0208,-0.3834,-0.6528,-0.7046,-0.8082,-0.8134,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9474,-0.9332,-0.8556,-0.4854,-0.4986,0.1844,0.6268,0.7614,0.7932,0.3772,0.446,0.8742,0.722,0.2742,-0.3278,-0.7592,-0.885,-0.8698,-0.885,-0.9048,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.945,-0.9,-0.86,-0.56,-0.4034,-0.6924,-0.6248,-0.6632,-0.6632,-0.6462,-0.6508,-0.76,-0.8022,-0.7398,-0.706,-0.9216,-0.9312,-0.8244,-0.7178,-0.7844,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4572,-0.6572,1,1,-0.5142,-0.4286,-0.7428,-0.9714,-0.8,-0.6,-0.8572,-0.6572,-0.9428,-0.8286,-0.7142,-0.6572,-0.8572,-0.9714,-0.8858,-0.8572,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.2782,0.2804,0.334,0.3402,0.3376,0.294,0.2886,0.1888,-0.1976,-0.9122,-0.3466,0.5882,-0.5446,-0.4756,0.017,0.1932,0.5184,0.375,-0.8732,-0.831,0.1972,0.7184,1,0.4366,-0.2394,-0.3802,-0.2816,-0.2816,-0.155,0.1268,0.0846,0.169,-0.0422,0.3098,0.3662,-0.1972,-0.5774,-0.155,-0.1408,0.0986,0.1408,0.3944,0.5492,0.3522,0.2394,-0.0282,0.169,-0.014,0.2958,-0.1126,-0.0408,-0.0408,0.4694,0.8572,1,0.8368,0.0612,-0.153,-0.2244,0.0612,0.1632,0.5816,0.3164,0.2756,0.051,0.4592,0.4286,0.153,-0.2346,-0.0816,0.1632,0.1632,0.3572,0.653,0.653,0.7142,0.8266,0.7346,0.5408,0.551,0.5408,0.2858,-0.425,-0.2874,0.4,0.7626,1,0.55,0.075,-0.175,-0.2374,0.1,0.0376,0.5876,0.2626,0.1124,0.275,0.4,0.725,0.0624,-0.4,-0.0624,0.4874,0.525,0.425,0.725,0.9124,0.7126,0.6,0.4626,0.45,0.225,0.375,0.0874,-0.433,-1,-1,1,-0.8,-1,-1,-0.5334,-1,-0.1034,-0.2184,0.3564,0.6322,0.1724,0.3794,0.931,0.6552,0.5632,0.7242,0.7702,0.7242,0.5402,0.2414,0.1954,0.3334,0.1494,0.2414,0.4252,0.6322,1,0.977,0.3104,0.5402,0.5632,0.3564,0.4712,0.5862,0.3334,0.4712,0.3334,-0.0574,'18'
-0.4462,-0.1752,-0.0934,-0.1308,0.3574,0.6566,1,0.9976,0.764,0.6986,0.6238,0.049,-0.18,-0.3644,-0.3878,-0.5514,-0.3996,-0.4018,-0.4088,-0.3878,-0.3412,-0.2944,-0.049,0.4228,0.514,0.0794,0.1168,0.1542,0.0468,-0.0046,0.1308,0.2266,-0.45,-0.2076,-0.174,-0.1402,0.5376,0.715,1,0.8676,0.7172,0.8226,0.4726,0.0708,0.037,-0.156,-0.3828,-0.4882,-0.4366,-0.349,-0.2076,-0.2054,-0.0438,0.23,0.5534,0.551,0.2974,-0.1582,-0.0438,-0.0012,-0.0662,0.0684,0.2616,0.4298,-0.516,-0.2858,-0.4188,-0.1672,0.5706,0.6584,0.898,0.7722,0.9028,1,0.6442,0.3998,0.248,-0.0914,-0.267,-0.4946,-0.338,-0.2692,-0.1506,0.2076,0.2954,0.3048,0.1814,-0.153,-0.3832,-0.3546,-0.1056,-0.1436,-0.1388,-0.0652,0.1412,0.4022,-0.4326,-0.2092,-0.4414,-0.1852,0.3626,0.472,0.7546,0.735,0.7218,0.8072,1,0.816,0.3122,0.3822,0.1456,0.1062,0.3188,0.4852,0.3714,0.2684,-0.001,-0.356,-0.483,-0.529,-0.5684,-0.6056,-0.2376,-0.3296,-0.2684,-0.0536,0.1786,0.4282,-0.2814,-0.077,-0.2166,-0.0182,0.5668,0.6802,0.834,0.6154,0.5426,0.8016,1,0.9778,0.9372,0.7308,0.6558,0.5748,0.4454,0.334,-0.0142,-0.1214,-0.166,-0.5648,-0.5122,-0.6214,-0.5446,-0.67,-0.3482,-0.0992,-0.1094,-0.081,0.0506,0.4312,-0.4782,-0.233,-0.3914,-0.1974,0.213,0.398,0.2576,0.1794,0.2576,0.2798,0.6744,0.864,1,0.7324,0.6032,0.6076,0.0012,-0.2308,-0.4738,-0.543,-0.661,-0.855,-0.7882,-0.7258,-0.6432,-0.8104,-0.5742,-0.476,-0.456,-0.4938,-0.4828,-0.3624,-0.4736,-0.1188,-0.3362,-0.2818,-0.0158,0.5622,0.4048,-0.113,0.3104,0.236,0.4764,0.7396,0.8626,1,0.5108,0.2188,-0.2418,-0.196,-0.4364,-0.6138,-0.6108,-0.7796,-0.8284,-0.648,-0.6338,-0.8168,-0.6766,-0.8912,-0.8254,-0.7052,-0.7396,-0.5508,-0.5152,-0.0304,-0.2728,-0.2122,0.697,1,1,0.697,0.8182,0.5152,0.1516,0.0304,-0.0304,-0.091,-0.2728,0.1516,-0.3334,-0.0304,-0.1516,-0.3334,-0.2728,-0.091,0.091,0.697,0.7576,0.6364,0.3334,0.6364,0.6364,0.394,0.5152,0.6364,-0.5428,-0.2,-0.1428,-0.1428,0.4286,0.6572,0.9428,1,0.8858,0.4858,0.5428,0.0858,-0.0286,-0.0858,-0.3714,-0.6,-0.5428,-0.5428,-0.7142,-0.9428,-0.3142,-0.2572,-0.4286,-0.2572,0.0286,-0.1428,-0.5428,-0.2,-0.1428,-0.4858,-0.1428,0.1428,-0.4146,-0.1952,-0.3414,-0.1464,0.439,0.5122,0.6098,0.3902,0.1952,0.561,0.878,1,0.9756,0.7074,0.6586,0.5366,0.1952,0.0244,-0.0976,-0.244,-0.3902,-0.6342,-0.4878,-0.5366,-0.561,-0.5854,-0.317,-0.3658,-0.1952,-0.122,-0.122,0.0244,-1,-1,-1,-1,-1,-1,-1,-0.9022,-0.8776,-0.5046,-0.3212,0.3456,0.7248,0.8226,0.8838,0.6514,0.4128,0.474,0.3884,0.1682,-0.003,-0.2232,-0.4678,-0.5964,-0.6452,-0.7432,-0.841,-0.8288,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9466,-0.9466,-0.3252,-0.0672,0.2784,0.5968,0.6804,0.8998,0.6968,0.664,0.797,0.5898,0.14,-0.358,-0.6118,-0.7984,-0.8464,-0.8642,-0.8902,-0.904,-0.908,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.9334,-0.65,0.0266,-0.5944,-0.5958,-0.623,-0.6544,-0.5628,-0.5228,-0.712,-0.684,-0.544,-0.4508,-0.5734,-0.7268,-0.6068,-0.66,-0.7534,-0.7668,-0.68,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,0.2572,-0.9714,-0.9142,-0.8572,-0.8,-0.8572,-0.9428,-0.7428,-0.7142,-0.8572,-0.5142,-0.7714,-0.8858,-0.9714,-0.9142,-1,-0.8572,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.5132,0.498,0.479,0.479,0.502,0.4966,0.4604,0.3092,-0.0232,-0.7982,-0.4,0.7764,-0.1016,-0.3594,0.277,0.3868,0.3854,0.0916,-0.585,-0.3962,0.585,0.717,0.7548,0.3774,0.3396,0.2264,0.1698,0.3774,0.283,0.5472,0.849,0.849,0.6792,0.868,1,0.868,0.5472,0.585,0.6982,0.415,0.0566,0,-0.0188,0.3774,0.5094,0.415,0.5472,0.3774,0.434,-0.2452,-0.5556,-0.5186,0.0926,0.2222,0.2962,0.2038,-0.2408,-0.0556,-0.2038,0.0926,0.0926,0.7408,1,0.4814,0.5926,0.8888,1,0.5186,0.4444,0.7038,0.8704,0.6482,0.1852,0.074,0.3334,0.6852,0.463,0.5,0.574,0.537,0.3704,0.0556,-0.4086,-0.3392,0.3914,0.513,0.8086,0.4782,-0.0086,-0.113,-0.2348,0.0956,0.0956,0.6696,0.913,0.513,0.4086,0.374,1,0.6,0.4086,0.374,0.4608,-0.2696,-0.3392,-0.5478,0.0956,0.2174,0.5478,0.7566,0.2174,0.4956,0.426,-0.0782,0.6818,-1,-1,1,-1,-1,-0.4,-0.7666,-1,0.284,0.3086,-0.5062,0.5062,0.037,0.358,0.4814,0.5802,0.753,0.1604,-0.1112,0.1604,0.0618,-0.037,-0.1358,-0.1852,-0.1358,0.3828,0.4568,0.037,-0.0618,-0.284,0.2098,0.358,0.4568,0.605,1,0.8766,0.1112,0.284,0.1604,-0.1604,'18'
-0.5706,-0.3,-0.3764,0.0176,0.2412,0.2294,0.0942,-0.0588,-0.3,-0.3412,-0.4118,-0.1706,-0.0352,0.0412,0.1706,0.2352,0.5882,0.8118,1,0.9,0.7236,0.7352,0.7764,0.6764,0.5882,0.3352,0.1824,0.1058,0.4176,0.4176,0.3412,0.1412,-0.4574,-0.1862,-0.041,0.1608,0.2808,0.4826,0.287,0.1168,0.0726,-0.0348,-0.0284,0.1672,0.2744,0.4132,0.5268,0.7666,0.981,1,0.8296,0.836,0.7918,0.7982,0.8802,0.8486,0.5394,0.3564,0.224,0.3312,0.6466,0.5962,0.4384,0.3376,-0.4064,-0.1412,-0.0318,0.0318,0.366,0.5332,0.4236,0.3142,0.2046,0.1066,0.1586,0.3142,0.4294,0.5504,0.8098,0.8732,0.9078,0.7118,0.7118,0.8444,0.8674,0.8386,1,0.706,0.4236,0.1988,0.1412,0.464,0.464,0.4352,0.3488,0.3026,-0.4178,-0.1696,0.0278,0.1392,0.5088,0.7164,0.6556,0.7114,0.3924,0.3114,0.3518,0.3974,0.676,0.8734,1,0.9898,0.6304,0.6,0.7114,0.7974,0.9088,0.9494,0.7368,0.5898,0.362,0.119,0.286,0.4582,0.438,0.3216,0.3216,0.3012,-0.4764,-0.197,0.0274,0.1222,0.3216,0.571,0.571,0.7158,0.3516,0.177,0.4164,0.571,0.7456,1,0.9352,0.7806,0.586,0.5112,0.5112,0.7008,0.8754,0.9552,0.6708,0.5212,0.3716,0.1472,0.0624,0.0972,0.3216,0.3216,0.2418,0.2418,-0.4516,-0.1024,-0.047,0.1524,0.4182,0.4958,0.5512,0.529,0.252,0.2022,0.3352,0.6122,0.7174,0.8504,0.806,0.6676,0.446,0.457,0.3574,0.4404,0.5734,0.7728,1,0.8836,0.3962,0.1856,0.0748,0.0526,-0.2244,-0.0692,0.1524,0.0138,-0.22,0.361,-0.029,0.0124,0.502,0.419,0.751,0.6266,0.1868,-0.0622,0.1286,0.1784,0.361,0.6266,0.8672,0.61,0.3942,0.585,0.6432,0.5684,0.693,0.8506,1,0.9918,0.8008,0.6348,0.6846,0.5104,0.2946,0.4356,0.502,0.336,-0.6818,-0.3636,-0.3182,0.1364,0.2728,0.1818,0,-0.091,-0.4546,-0.1818,-0.6364,-0.3182,0,0.1364,0.0454,0.1364,0.5454,0.7728,1,0.8182,0.591,0.7272,0.8182,0.591,0.591,0.3636,0.2272,0.1818,0.3182,0.5,0.2728,-0.091,-0.44,-0.2,-0.36,0,0.4,0.4,0,-0.04,-0.2,-0.4,-0.32,-0.12,0,0.08,0.28,0.48,0.6,0.88,1,0.84,0.64,0.76,0.76,0.56,0.48,0,0.04,0.04,0.4,0.2,0.2,0.2,-0.5058,-0.1764,0.0352,0.1294,0.2942,0.4118,0.5294,0.7176,0.4824,0.0352,0.3882,0.7176,0.6942,0.8824,0.9058,0.9058,0.6,0.4588,0.5294,0.6,0.6706,0.8118,1,0.8352,0.4118,0.3648,0.2706,0.2706,-0.1058,0.2236,0.3648,0.2706,-1,-1,-1,-1,-1,-1,-1,-0.8728,-0.9018,-0.8498,-0.607,0.1446,0.526,0.555,0.7456,0.8902,0.8902,0.8612,0.896,0.8266,0.526,-0.2716,-0.7514,-0.8092,-0.8324,-0.867,-0.8324,-0.8554,-0.8612,-0.8554,-0.8786,-0.792,-0.9018,-1,-1,-1,-1,-1,-1,-1,-0.9612,-0.9622,-0.8884,-0.574,0.3436,0.0292,0.1238,0.52,0.548,0.8478,0.693,0.575,0.1968,-0.276,-0.4822,0.331,0.701,0.077,0.2806,0.3138,0.3238,-0.0868,-0.1634,-0.1086,-0.3426,-0.4542,-1,-1,-1,-1,-1,-1,-1,-0.9136,-0.9668,-0.92,-0.57,0.004,-0.104,-0.296,-0.2,-0.256,-0.424,-0.48,-0.3534,-0.3734,-0.5034,0.1966,1,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-0.2286,-0.7428,1,1,1,0.2,-0.9142,-0.9428,-0.8858,-0.9142,-0.9714,-0.8286,0.0858,1,1,1,-0.6858,-0.9142,-0.8572,-0.8858,-0.8858,-0.7428,-0.7714,-0.8572,-0.8572,-0.9428,1,1,1,1,1,1,1,1,1,1,0.1078,0.1078,0.07,0.0254,-0.0518,-0.092,-0.1528,-0.2378,-0.427,-0.5194,-0.8666,-0.4118,-0.6362,-0.1058,0.5254,-4e-04,0.0598,1,-0.628,-0.2558,0.1628,-0.0466,-0.1162,-0.1162,0.093,0.3488,0.9534,1,0.9302,1,0.9302,0.628,0.372,0.628,0.5116,0.5582,0.4418,-0.1628,0.1162,0.3954,0.5116,0.5348,0.372,0.2094,0.5582,0.6976,0.628,0.4186,0.3954,-0.0698,-0.3414,-0.0976,0.561,-0.0732,-0.0732,0.0244,0.0976,0.0976,0.9756,1,0.2926,0.6586,0.2682,-0.0244,0.4878,0.561,0.1464,0.1464,0.122,0.0488,0.244,0.2196,0.3414,0.3414,0.2196,0.1708,0.439,0.4634,0.4634,0.3658,0.439,0.3658,-0.4464,-0.1608,0.4642,0.0536,-0.0892,0.0358,0.4108,0.2858,0.9286,1,0.8392,0.8036,0.7858,0.3036,0.4464,0.5,0.5178,0.4286,0.1608,0,0.1072,0.5358,0.8928,0.7142,0.6964,0.4822,0.5714,0.8572,0.6786,0.6608,0.5714,-0.0178,1,-1,-1,1,-1,-1,-1,-0.7666,-1,-0.8058,-0.7942,-0.5542,-0.5428,-0.5428,-0.3942,-0.3942,-0.3028,-0.3028,-0.3828,-0.3142,0.04,-0.0058,0.0628,0.1086,0.1886,0.0742,0.2342,0.3486,0.4972,0.5658,0.6,0.7828,0.9772,1,0.8628,0.7942,0.6686,0.9542,0.8514,0.4972,-0.0172,'19'
-0.3372,-0.0828,-0.2662,-0.2248,-0.1124,0.1242,0.0356,-0.0532,-0.1006,-0.361,-0.2722,-0.2604,-0.1598,0.0236,0.219,0.2958,0.5502,0.7456,0.7574,0.6686,0.5976,0.8344,1,0.8344,0.3786,0.1894,0.1538,-0.0236,-0.3314,-0.3846,-0.1834,0.2248,-0.2962,-0.0432,-0.1358,0.0186,0.395,0.5802,0.3828,0.2408,0.1852,0.0802,0.074,0.0926,0.1914,0.3024,0.5,0.716,0.7962,0.8334,0.716,0.784,0.8272,1,0.9012,0.895,0.2592,0,0.037,-0.216,-0.4444,-0.4136,-0.2038,-0.0926,-0.4424,-0.1794,-0.25,0.0384,0.391,0.5706,0.4872,0.3334,0.1924,0.141,0.173,0.282,0.4102,0.577,0.9488,0.9616,0.5962,0.7116,0.7372,0.8206,0.8526,1,0.923,0.468,0.0706,0.0192,0.0642,-0.077,-0.4038,-0.6794,-0.3398,-0.0898,-0.4604,-0.2082,-0.1086,0.1144,0.613,0.8768,0.7302,0.654,0.3196,-0.0088,0.0792,0.3314,0.566,0.7068,0.9706,1,0.4194,0.3372,0.3666,0.5602,0.6774,0.5308,0.5894,0.2434,0.003,-0.132,-0.091,-0.22,-0.308,-0.5308,-0.437,-0.0088,-0.4312,-0.0886,0.1376,0.3884,0.6636,1,0.8776,0.5902,0.2538,0.1438,0.2172,0.3884,0.5718,0.7186,0.6636,0.5474,0.052,0.2172,0.0948,0.1744,0.6146,0.7492,0.8166,0.3578,0.1744,-0.0764,-0.0764,-0.2048,-0.2906,-0.3028,-0.1314,0.0582,-0.418,0.0434,0.117,0.4582,0.8596,0.719,0.7792,0.4448,0.3512,0.0836,0.3244,0.485,0.699,1,0.9198,0.6856,0.2842,0.1638,0.4248,0.3846,0.5118,0.5518,0.719,0.8394,0.6322,0.2776,0.0168,-0.0234,-0.117,-0.2174,-0.184,-0.1638,-0.7328,-0.1768,-0.4008,-0.4874,-0.3574,-0.148,-0.0902,-0.2346,-0.4512,-0.5234,-0.5162,-0.3646,-0.083,-0.0252,0.1408,0.018,-0.2418,-0.0324,-0.0686,-0.083,-0.1552,0.4946,0.9422,1,0.675,0.3646,0.2636,0.2346,0.249,0.1408,-0.0252,-0.1046,-0.3334,-0.1428,-0.3334,-0.381,-0.4762,-0.2858,-0.0952,-0.0952,-0.238,-0.238,-0.381,-0.2858,-0.1904,0,0.0952,0.238,0.619,0.762,0.7142,0.762,0.619,0.7142,1,1,0.4286,0.238,0.0476,-0.0952,-0.238,-0.381,-0.1428,0.619,-0.2444,-0.0222,-0.1112,-0.0666,0.2888,0.3778,0.3334,0.2,0.1112,-0.3778,-0.2444,-0.1556,-0.2,0.2,0.2,0.0666,-0.0222,0.2444,0.7334,0.7778,0.6888,0.8666,1,0.9112,0.6888,0.4666,0.6,0.3334,-0.3334,-0.5556,-0.3778,-0.0666,-0.493,-0.2676,-0.155,0.155,0.662,0.9154,0.662,0.6056,0.3522,-0.0422,0.0986,0.155,0.3802,0.662,1,0.9718,0.4366,0.324,0.3802,0.5212,0.6902,0.5492,0.4366,0.2112,0.014,-0.2958,-0.1268,-0.155,-0.155,-0.5212,-0.183,0.2394,-1,-1,-1,-1,-1,-0.832,-0.84,-0.696,-0.208,-0.112,-0.296,0.256,0.592,0.752,0.816,0.792,0.84,0.624,0.384,0.76,0.328,-0.344,-0.76,-0.776,-0.72,-0.632,-0.616,-0.592,-0.72,-0.712,-0.8,-0.768,-0.84,-1,-1,-1,-1,-1,-0.9158,-0.9054,-0.3608,-0.0196,0.0832,0.593,0.147,0.2272,0.4944,0.7822,0.9198,0.6218,0.1758,-0.0956,-0.0318,-0.1654,0.2292,1,1,1,1,1,1,0.8644,0.8252,0.9178,0.8992,1,-1,-1,-1,-1,-1,-0.9668,-0.92,-0.74,-0.3,0.0932,0.3166,0.0532,-0.25,-0.32,-0.4868,-0.53,-0.6768,-0.78,-0.6734,-0.7,-0.46,0.6742,1,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-0.5428,-0.0286,1,1,0.3714,-0.5428,-0.3428,-0.4572,-0.8286,-0.6858,-0.7142,-0.4572,-0.5714,-0.8858,-0.6286,1,1,1,-0.6286,-0.8572,-0.8286,-0.8,-0.7142,-0.8572,-0.8572,-0.9428,-0.9428,-0.9142,0.7848,0.8326,0.8564,0.8798,0.9054,0.921,0.9908,1,1,1,0.1438,0.076,0.0536,0.0142,-0.0424,-0.1332,-0.1674,-0.2884,-0.5312,-0.4792,-0.4534,-0.3294,0.7574,0.4224,0.1346,0.0832,0.2332,0.3166,-0.5472,-0.3736,0.3812,0.351,0.0188,-0.049,0.0792,0.4114,1,0.985,0.6,0.8566,0.7056,0.4264,0.0642,0.2378,0.268,0.5622,0.5548,0.1924,0.0188,0.4944,0.6378,0.3208,0.351,0.2982,0.5472,0.615,0.4114,-0.0566,0.0114,-0.2982,-0.6428,-0.3214,0.3142,0.2642,-0.1214,-0.2358,0.0786,0.1572,0.6358,0.8714,0.75,1,0.8214,0.2,0.0928,-0.0428,0.2642,0.4286,0.2928,0.15,-0.3286,0.3714,0.6142,0.6928,0.6786,0.7714,0.65,0.7428,0.6786,0.6072,0.4,0.1714,-0.5468,-0.583,-0.0392,-0.0272,-0.2508,-0.432,-0.136,-0.0152,0.5046,0.6978,0.5468,0.728,0.6254,0.1904,-0.0454,0.3294,0.438,0.1722,0.2568,0.003,-0.0694,0.6436,0.728,0.9818,1,0.7764,0.6436,0.7824,0.722,0.4924,0.5528,0.3052,1,-1,-1,1,-0.6,-1,-1,-0.2666,-1,-0.7204,-0.828,-0.7312,-0.5592,-0.5376,-0.4838,-0.3656,-0.3334,-0.301,-0.1398,-0.2044,-0.129,-0.1076,-0.1076,-0.086,-0.2366,-0.2474,0.1398,0.3334,0.4624,0.5914,0.8602,0.7204,0.7526,0.742,0.6236,0.5698,0.7742,0.9032,1,0.957,0.258,'19'
-0.1892,0.2826,0.2972,0.3808,-0.3316,-0.8918,-0.6708,-0.4348,-0.6118,-0.6756,-0.6462,-0.5282,-0.5086,-0.5136,-0.484,-0.425,-0.1254,0.14,0.2924,0.7002,0.9706,0.887,0.5922,0.7298,0.7592,1,0.8476,0.6954,0.3514,0.3366,0.1744,0.204,-0.2156,0.1768,0.5086,0.5258,-0.5044,-0.806,-0.7328,-0.4956,-0.612,-0.556,-0.6164,-0.6078,-0.444,-0.3664,-0.3966,-0.3836,0.0302,0.0518,0.25,0.8578,0.9526,1,0.888,0.8232,0.9396,0.9052,0.7716,0.5216,0.5302,0.3448,0.2328,0.3318,-0.1958,0.1452,0.4652,0.4736,-0.5326,-0.8106,-0.6758,-0.5368,-0.5958,-0.579,-0.5664,-0.4864,-0.4148,-0.4316,-0.5158,-0.4274,-0.0526,-0.1116,0.0822,0.7222,0.7052,0.9452,0.7978,0.8106,0.7726,0.941,1,0.5748,0.4232,0.499,0.2464,0.259,-0.3388,-0.002,0.3098,0.3056,-0.763,-0.709,-0.709,-0.6632,-0.6424,-0.6466,-0.684,-0.5384,-0.4844,-0.788,-0.5344,-0.4386,-0.3596,-0.1018,0.0188,0.4428,0.8336,1,0.6632,0.5718,0.6548,0.713,0.7172,0.6008,0.397,0.2682,0.156,0.1476,-0.3244,0.0308,0.2934,0.3012,-0.7414,-0.695,-0.6602,-0.6178,-0.7876,-0.7954,-0.8108,-0.637,-0.5792,-0.78,-0.5984,-0.4904,-0.583,-0.2084,-0.027,0.2586,0.7722,1,0.7568,0.417,0.6024,0.5714,0.6294,0.7606,0.6178,0.2432,0.193,0.1158,-0.2936,0.0446,0.2454,0.2528,-0.6096,-0.8142,-0.6952,-0.5168,-0.6542,-0.6208,-0.5762,-0.5948,-0.6022,-0.5428,-0.5428,-0.4908,-0.3978,-0.3866,-0.1822,0.2566,0.591,1,0.8402,0.4758,0.4982,0.42,0.554,0.6914,0.6692,0.3048,0.2454,0.275,-0.3004,0.1106,-0.079,-0.0672,-0.672,-0.7826,-0.6086,-0.5454,-0.6246,-0.7866,-0.7628,-0.6126,-0.3834,-0.581,-0.6166,-0.664,-0.4466,-0.3044,-0.1028,-0.0356,0.3242,0.925,1,0.3794,0.2372,0.3914,0.6246,0.6126,0.5256,0.2688,0.083,0.1186,-0.0232,0.3488,0.1628,0.1628,-0.0232,-0.4418,-0.5348,-0.2094,-0.0698,-0.3024,-0.2094,-0.3488,-0.2094,-0.3954,-0.3954,-0.2558,0.0698,0.1628,0.0698,0.5814,0.6744,0.3024,0.4884,0.8604,0.6744,0.6744,1,0.7674,0.4884,0.5348,0.2094,0.3954,0.098,0.4118,0.255,0.3334,-0.0588,-0.255,-0.098,-0.098,-0.9608,-0.3726,-0.2156,-0.098,0.098,0.0588,0.0588,-0.098,-0.255,0.255,0.4118,0.5686,0.4902,0.5686,0.6862,0.647,0.8432,1,0.9216,0.7254,0.4902,0.451,0.2156,0.1372,-0.3024,-0.0232,0.3024,0.3256,-0.6046,-0.6976,-0.5582,-0.4186,-0.5814,-0.628,-0.7674,-0.6046,-0.5116,-0.6976,-0.3488,-0.279,-0.372,-0.1396,0,0.3488,0.814,1,0.6512,0.4884,0.6046,0.5582,0.628,0.628,0.4652,0.186,0.186,0.093,-1,-1,-1,-1,-0.9448,-0.9578,-0.7666,-0.4166,0.141,0.368,-0.6078,0.2772,0.9514,0.867,0.7406,0.5072,0.3388,0.2026,0.0956,-0.0178,-0.167,-0.3388,-0.5268,-0.6952,-0.8022,-0.8542,-0.8866,-0.9158,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9228,-0.921,1,1,1,0.849,0.0746,0.0852,0.8526,0.9228,0.777,0.6224,0.468,0.3362,0.2028,0.1642,0.0764,-0.2642,-0.5154,-0.6576,-0.7226,-0.7892,-0.828,-0.8718,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9134,-0.9668,0.29,1,0.82,-0.07,0.4332,-0.44,-0.33,-0.405,-0.4676,-0.3476,-0.2526,-0.245,-0.3402,-0.3672,-0.3798,-0.4922,-0.464,-0.3272,-0.254,-0.5906,-0.694,-0.8406,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,1,1,1,-0.1428,-0.1714,0.0858,-0.1714,-0.4858,-1,-1,-1,-0.8858,-0.8286,-1,-1,-0.9142,-0.5714,-0.6286,-0.7428,-0.4572,-0.2,-0.6286,-0.6,-1,-1,-1,-1,-1,-0.4622,-0.4518,-0.4332,-0.4298,-0.415,-0.4376,-0.4198,-0.4792,-0.4794,-0.4562,0.9142,0.9018,0.8998,0.9038,0.909,0.909,0.9392,0.9894,1,0.9732,-0.56,-0.0942,0.0238,-0.0904,0.0536,0.424,0.7946,1,-0.8458,-0.8458,-0.6402,-0.6874,-0.516,-0.3876,-0.4048,-0.3832,-0.1648,0.0664,0.0364,0.3832,0.5246,0.4304,0.2934,0.3704,0.576,0.6702,0.7302,0.7088,0.7902,0.9486,1,0.9872,0.7858,0.7602,0.9058,0.7302,0.7002,0.5418,0.4004,0.0064,-0.3106,-0.6212,-0.468,-0.417,-0.2426,-0.1958,-0.3106,-0.3276,-0.1872,0.2808,0.3532,0.2426,0.8,0.7148,0.3234,0.0468,0.3914,0.6128,0.3914,0.5446,0.7744,0.8042,1,0.9446,0.5618,0.566,0.6086,0.7958,0.4468,0.4724,0.2468,-0.0042,-0.342,-0.3464,-0.2554,-0.1992,-0.1774,-0.316,-0.29,-0.1904,0.0174,0.3852,0.3896,0.5368,0.8874,0.8614,0.7056,0.238,0.42,0.567,0.5022,0.6666,0.606,0.6666,0.8918,1,0.7922,0.6536,0.6796,0.6364,0.4936,0.3204,0.3334,-0.0476,1,-1,-1,1,-1,-1,-0.6,0,-1,0.0526,0.1128,0.0828,0.173,0.0526,-0.1428,-0.0978,0.1578,0.3384,0.5488,0.6542,0.624,0.8496,1,0.97,0.564,0.579,0.9098,0.8346,0.639,0.7294,0.8796,0.9098,0.7744,0.4888,0.5488,0.4136,0.3384,0.2632,0.0978,0.0676,-0.5488,'20'
-0.536,-0.7216,-0.8464,-0.968,-0.9072,-0.8784,-0.8144,-0.8112,-0.8496,-0.7216,-0.6928,-0.6512,-0.5584,-0.6128,-0.664,-0.5424,-0.5392,-0.296,0.2256,0.6352,0.5808,0.1232,0.2992,0.728,1,0.9712,0.7504,0.4624,0.4176,0.2544,0.0784,0.0016,-0.4186,-0.0346,0.384,0.3946,-0.624,-0.7334,-0.6986,-0.6346,-0.7654,-0.7226,-0.8,-0.6266,-0.5254,-0.528,-0.4934,-0.504,-0.2134,0.0666,0.3894,0.7546,1,0.9146,0.7546,0.7574,0.8294,0.8746,0.6214,0.4026,0.3334,0.2026,0.1334,0.232,-0.3622,-0.0804,0.3226,0.236,-0.6044,-0.7776,-0.6614,-0.6168,-0.7726,-0.7924,-0.738,-0.6614,-0.5896,-0.6416,-0.5846,-0.6464,-0.2262,-0.11,0.1892,0.686,0.8468,1,0.817,0.7602,0.864,0.7256,0.6316,0.3894,0.2658,0.2238,0.1546,0.2014,-0.321,-0.0588,0.1764,0.076,-0.6862,-0.9486,-0.6838,-0.5906,-0.7206,-0.9682,-0.8236,-0.7916,-0.6544,-0.6422,-0.5932,-0.723,-0.4534,-0.3284,0.022,0.3676,0.723,1,0.7794,0.6324,0.7058,0.5808,0.5196,0.4068,0.2844,0.174,0.1348,0.1618,-0.3966,-0.0938,0.217,0.1246,-0.7766,-0.887,-0.7766,-0.6996,-0.8664,-0.697,-0.6662,-0.6766,-0.6406,-0.6406,-0.6302,-0.697,-0.4762,-0.466,-0.0886,0.1836,0.5636,1,0.8588,0.5816,0.5404,0.407,0.4146,0.3376,0.1964,0.1348,-0.0166,0.0012,-0.4156,-0.0076,0.2238,0.1812,-0.7412,-0.863,-0.72,-0.656,-0.6926,-0.8508,-0.6042,-0.522,-0.4582,-0.4794,-0.5494,-0.7778,-0.6408,-0.5464,-0.1324,0.2086,0.5526,1,0.9878,0.7412,0.513,0.5252,0.583,0.5646,0.4704,0.3212,0.0472,0.0838,-0.527,0.0982,-0.2304,-0.2384,-0.9118,-0.6794,-0.4268,-0.3146,-0.6834,-0.7114,-0.6914,-0.5552,-0.2866,-0.2786,-0.479,-0.5752,-0.3588,-0.2224,-0.0982,0.1944,0.3948,0.7234,1,0.8156,0.6392,0.6674,0.6634,0.4188,0.2264,0.014,-0.1944,-0.2666,-0.0196,-0.3726,-0.3334,-0.7254,-0.2942,-0.3726,-0.5686,-0.9608,-0.2942,-0.255,-0.2156,-0.2156,0.1764,0.2156,-0.1372,0.0588,0.0196,0.098,0.5294,0.7648,0.7648,0.4118,0.7254,0.9608,0.9216,0.9608,0.9608,1,0.9608,0.6078,0.3334,0.4118,-0.1836,-0.3878,-0.6734,-0.8368,-0.5918,-0.4694,-0.796,-0.8368,-0.8368,-0.551,-0.4694,-0.4286,-0.5102,-0.3878,-0.2654,-0.1428,-0.1836,0.1428,0.1836,0.3062,0.347,0.2244,0.0612,0.7552,1,1,0.551,0.3062,0.1836,0.3062,0.2244,-0.1836,-0.159,0.0454,0.3182,0.2272,-0.4318,-0.841,-0.591,-0.5228,-0.5,-0.6364,-0.5682,-0.4772,-0.4546,-0.3636,-0.341,-0.3864,-0.25,-0.1136,0.1364,0.5,0.7046,1,0.8636,0.75,0.7954,0.6364,0.6136,0.4546,0.3636,0.25,0.25,0.341,-1,-1,-1,-1,-1,-1,-0.9002,-0.9002,-0.7596,-0.56,-0.3832,-0.0702,0.1202,0.8594,0.7278,0.4648,0.1428,0.084,-0.0476,-0.1792,-0.4014,-0.6644,-0.864,-0.8912,-0.8866,-0.9092,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.937,-0.9356,0.7596,1,0.701,0.2718,-0.2404,0.319,0.4234,0.1102,-0.1102,-0.2818,-0.4234,-0.515,-0.6166,-0.8068,-0.8898,-0.897,-0.9142,-0.9228,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.94,0.2732,1,0.7266,0.306,-0.1786,-0.2216,-0.2448,-0.194,-0.0678,-0.2416,-0.354,-0.3116,-0.3844,-0.5758,-0.6534,-0.69,-0.85,-0.9268,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,1,1,1,-0.3428,0.3428,0.1714,-0.9428,-1,-1,-0.9142,-1,-1,-1,-0.4286,0.2,-0.8858,-0.9142,-0.9142,-0.5714,-1,-1,-1,-1,-1,-1,-1,-0.0144,0.0238,0.0458,0.0198,-0.0654,-0.0846,-0.151,-0.2304,-0.2976,-0.2704,0.8642,0.9288,0.926,0.922,0.9018,0.8884,0.9274,0.9438,0.9492,0.8692,-0.4934,0.6,0.7926,0.3992,0.7596,0.2404,-0.0786,1,-0.8426,-0.5082,-0.5082,-0.2656,-0.2918,-0.2786,-0.1738,-0.305,0.1868,0.2722,0.2984,0.3704,0.5148,0.2262,0.246,0.3902,0.4426,0.5016,0.5804,0.7442,0.9148,1,0.8492,0.764,0.7836,0.8886,0.8164,0.7312,0.4296,0.3378,-0.0688,-0.3574,-0.6738,-0.6984,-0.6246,-0.6062,-0.5384,-0.5692,-0.3354,-0.3662,-0.243,0.1938,0.0892,0.1446,0.397,0.2246,0.1446,0.4462,0.5876,0.643,0.6738,0.4584,0.7354,0.8154,1,0.7846,0.76,0.7784,0.8462,0.8646,0.6738,0.5876,0.3476,-0.157,-0.6576,-0.7588,-0.7276,-0.5486,-0.502,-0.3386,-0.323,-0.1674,-0.175,0.175,0.3152,0.5486,0.9222,0.6732,0.5098,0.2918,0.4942,0.5408,0.6186,0.6264,0.7666,0.9922,0.9066,1,0.8054,0.712,0.8754,0.9766,0.7432,0.5798,0.6576,0.3152,1,-1,-1,1,-1,-1,-1,-0.4,-1,0.16,0.26,0.38,0.24,0.3,0.26,0.14,0.44,0.64,1,1,0.94,0.94,0.68,0.68,0.26,0.3,0.58,0.9,0.92,0.86,0.84,0.6,0.52,0.4,0.16,0.32,0.4,0.2,0.22,0.3,-0.38,'20'
0.2378,0.8414,0.3658,0.1036,-0.5426,-0.6098,-0.1952,0.006,-0.4452,-0.6952,-0.5976,-0.433,-0.2622,-0.567,-0.494,-0.567,-0.4024,-0.4756,0.1464,0.8232,0.7744,0.4146,0,0.4634,0.7074,0.9512,1,0.5426,0.622,0.3964,0.8658,0.7744,-0.0964,0.2224,0.2364,-0.0402,-0.6532,-0.9124,-0.7654,-0.6918,-0.965,-0.8144,-0.6428,-0.6848,-0.5482,-0.4536,-0.5516,-0.4712,-0.331,-0.0158,0.4712,1,1,0.5972,0.6918,0.7338,0.8214,0.7444,0.5516,0.394,0.324,0.5236,0.5166,0.944,-0.2706,0.124,0.737,0.5784,-0.2646,-0.8206,-0.5366,-0.6204,-0.6802,-0.7728,-0.6652,-0.5156,-0.3424,-0.417,-0.2646,-0.0852,0.3214,0.8536,0.8566,0.9522,0.994,1,0.9162,0.4918,0.1062,-0.2914,-0.3542,-0.3932,-0.426,-0.2556,-0.0942,0.0822,-0.2298,0.4712,1,0.6514,0.3256,-0.6628,-0.3832,-0.0306,-0.2108,-0.364,-0.0996,0.4522,0.5478,0.5402,0.479,0.1686,0.0652,0.1226,0.0728,0.2606,0.6168,0.8928,0.9158,0.0652,-0.4904,-0.6054,-0.682,-0.7204,-0.6514,-0.5978,-0.3372,0.1532,0.097,0.4466,1,0.6052,0.5696,-0.2848,0.081,0.3236,0.3722,0.4078,0.1488,-0.0712,-0.1812,-0.233,-0.5146,-0.631,-0.5372,-0.4402,-0.4596,-0.508,-0.3268,0,0.1522,-0.1748,-0.5114,-0.508,-0.835,-0.9288,-0.987,-0.8252,-0.5696,-0.6472,-0.1318,0.3334,1,0.9256,-0.0356,-0.1844,0.3706,0.5566,0.4294,-0.3674,-0.7922,-0.4666,-0.3612,-0.4264,-0.541,-0.5318,-0.5286,-0.6714,-0.7768,-0.7488,-0.572,-0.541,-0.386,-0.3086,-0.3984,-0.5906,-0.7798,-0.7086,-0.7644,-0.7892,-0.659,-0.8078,-0.2864,0.8544,0.6796,1,0.2282,-0.2428,0.3496,0.2912,0.3884,0.0922,-0.4514,-0.1748,-0.0534,-0.3496,-0.2184,-0.364,-0.1796,-0.3204,-0.7088,-0.8156,-0.398,-0.4466,-0.4708,-0.3738,-0.5,-0.7378,-0.7718,-0.835,-0.8496,-0.8106,-0.7136,-0.7234,0.4194,0.742,0.613,0.6774,-0.2904,-0.0322,0.2258,0.4194,-0.0322,-0.0968,-0.0322,-0.4838,0.0968,0.2904,0.2904,0.3548,0.3548,0.3548,0.0968,0.871,1,0.6774,0.3548,0.1612,0.871,0.8064,0.5484,0.2904,0.2904,0.2904,0.742,0.613,0.1304,0.7392,0.4782,0.0434,-0.5652,-0.2174,-0.4782,0.1304,0.1304,-0.1304,0.1304,0.4782,0.6522,0.2174,0.2174,0.1304,0.0434,-0.3044,0.1304,1,0.6522,0.7392,0.1304,0.2174,0.0434,0.6522,0.7392,-0.0434,0.3044,0.6522,0.6522,0.4782,0.0294,0.5,0.853,0.5294,0.4118,-0.2058,-0.0882,0.2942,0.0882,0.2352,0.7648,1,0.647,0.0882,-0.2352,-0.147,-0.147,-0.2058,-0.2352,-0.0882,0.2648,0.5294,0.6176,-0.147,-0.4706,-0.3236,-0.353,-0.7648,-0.5,-0.4118,-0.4412,-0.1176,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7484,-0.6336,-0.5808,-0.2764,0.5496,0.9566,0.6646,0.3976,0.1708,0.0466,-0.1336,-0.5434,-0.8478,-0.9068,-0.9472,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7826,-0.675,-0.5466,-0.1678,0.5838,0.9254,0.5734,0.2028,-0.089,-0.1842,-0.2754,-0.6004,-0.8136,-0.8862,-0.909,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.93,-0.8908,-0.8462,-0.6678,-0.58,-0.7848,-0.873,-0.8716,-0.8858,-0.88,-0.85,-0.9316,-0.85,-0.92,-0.9734,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4286,-0.7428,-0.3428,-0.6,-0.6286,-0.8286,-0.2572,-0.0858,-0.6286,-0.9428,-0.9142,-0.8286,-0.8,-0.7428,-0.2286,-1,-1,-1,-1,-1,-1,-1,-1,-0.1896,-0.2232,-0.2286,-0.2198,-0.234,-0.3352,-0.409,-0.4354,-0.3712,-0.068,0.2226,0.2858,0.3266,0.329,0.3578,0.4424,0.5252,0.4892,0.1518,-0.2014,-0.3866,0.6352,-0.7598,-0.6646,-0.6502,-0.708,-0.6978,-1,-0.0334,0.1,0.5666,0.2666,0.4666,0.5334,0.7334,0.7,0.9,0.6334,0.7,0.6666,0.5334,0.3,0.1,0.6,0.4666,0.6334,0.4666,1,1,0.5666,0.7334,0.6666,0.4666,0.2666,0.5334,0.3334,0.1334,-0.4666,0.2666,-0.2334,0.1594,0.3624,0.6232,0.942,0.6522,0.6522,0.7682,0.6232,0.4202,0.913,0.3334,0.826,0.5942,0.5652,0.6522,0.855,1,0.7972,0.4492,0.2464,0.7682,0.7102,0.5072,0.3334,0.4492,0.942,0.942,0.4202,0.5072,0.913,0.7392,-0.5362,0.9158,0.9158,0.4948,0.4316,0.3474,0.2842,0.579,0.579,0.621,0.7894,1,0.4316,0.579,0.3264,0.3052,0.4736,0.2842,0.4736,0.0526,0.3052,0.221,0.1368,0.179,0.0948,0.3474,0.2632,0.0736,0.0106,0.0526,0.621,0.621,-0.2,-0.8096,1,-1,-1,-1,-1,-1,-1,-1,0.3888,0.6944,0.1388,0.8056,1,0.6666,0.8334,0.6388,0.6666,0.3056,0.4444,0.4166,0.5,0.4444,0.0278,-0.1112,-0.0834,0.1944,0.5,0.4166,0.25,0.4444,0.1944,0.0278,0.3612,0.25,0.6388,0.4166,0.3056,0.3612,-0.3056,-0.6388,'21'
-0.0272,0.3034,0.3354,-0.1268,-0.6212,-0.833,-0.756,-0.6726,-0.6918,-0.7528,-0.5988,-0.4254,-0.4638,-0.5346,-0.406,-0.573,-0.5762,-0.2264,-0.2038,0.1622,0.297,0.2006,0.1556,0.4254,0.6468,0.894,1,0.6276,0.4736,0.4864,0.663,0.7078,0.11,0.4734,0.86,0.47,-0.2766,-0.6866,-0.9034,-0.8,-0.8266,-0.99,-0.9134,-0.7234,-0.5334,-0.4634,-0.4766,-0.41,0.0234,0.2366,0.5566,0.6334,0.8134,0.9834,1,0.7934,0.7466,0.5434,0.47,0.49,0.49,0.2534,0.6334,0.6834,-0.0726,0.4012,1,0.593,-0.189,-0.718,-0.6774,-0.564,-0.7442,-0.7588,-0.6512,-0.3576,-0.2616,-0.0784,0.1774,0.2936,0.2848,0.3662,0.3226,0.311,0.7442,0.8488,0.3082,-0.5784,-0.7094,-0.936,-0.9418,-0.875,-0.8838,-0.7006,-0.6918,-0.3344,0.0114,0.6658,1,0.5086,0.12,-0.3428,-0.2858,-0.0828,-0.1658,0.1914,0.1142,-0.1628,-0.14,-0.3286,-0.6028,-0.6028,-0.7714,-0.7114,-0.72,-0.8142,-0.3942,-0.2486,-0.5942,-0.7228,-0.7428,-0.86,-0.9886,-0.8172,-0.8458,-0.8314,-0.8058,-0.7542,0.2336,0.5078,1,0.514,0.1308,-0.3738,0.0186,0.4018,0.5482,0.1246,-0.4018,-0.57,-0.4518,-0.3956,-0.5576,-0.5794,-0.6418,-0.5482,-0.6978,-0.6292,-0.5764,-0.3926,-0.4984,-0.5576,-0.6948,-0.6698,-0.6448,-0.6138,-0.7072,-0.7788,-0.782,-0.8786,0.1144,0.5984,1,0.696,-0.077,-0.0356,0.1894,0.4372,0.0694,-0.7224,-0.5834,-0.471,-0.302,-0.501,-0.5722,-0.5872,-0.7712,-0.546,-0.6472,-0.7448,-0.6248,-0.711,-0.7224,-0.711,-0.7862,-0.7186,-0.7898,-0.7898,-0.7748,-0.8312,-0.6586,-0.6436,-0.1566,0.5948,0.3886,0.499,-0.429,0.2892,0.396,0.9926,1,0.0828,-0.4548,-0.2892,-0.2744,-0.2524,-0.4844,-0.4696,-0.7238,-0.547,-0.8048,-0.5948,-0.278,-0.1454,-0.4438,-0.2008,-0.3002,-0.7312,-0.639,-0.5248,-0.6574,-0.6244,-0.7754,-0.6206,0.4546,0.6364,0.6364,0.5758,-0.091,-0.091,-0.394,-0.091,-0.091,-0.5152,-0.3334,-0.091,0.2122,0.3334,0.2728,-0.2728,0.2728,0.3334,0.0304,1,1,0.6364,0.6364,0.6364,0.3334,0.394,0.697,0.5152,0.394,0.5152,0.4546,0.4546,0.0834,0.75,0.8334,0.5834,-0.1666,-0.5,-0.1666,-0.1666,0,-0.25,-0.0834,0,0.25,0.4166,0,0.25,0.25,0.1666,0.5834,0.75,0.4166,0.8334,0.75,0.25,0.0834,1,1,0.0834,-0.0834,0.0834,0.1666,0.1666,0.3124,0.5938,0.9688,0.75,0.0312,-0.125,-0.25,-0.375,-0.2188,-0.5624,-0.4376,-0.875,-0.0938,-0.0938,-0.3124,-0.3438,0.3438,0.625,0.5,0.875,0.9062,1,0.9062,0.75,0.125,-0.2188,0.1562,0.125,-0.0624,0.1562,0.0624,0.8438,-1,-1,-1,-1,-1,-1,-1,-0.9076,-0.9116,-0.8274,-0.5904,-0.4258,-0.3092,0.3172,0.8956,0.8032,0.4378,0.1686,0.0402,-0.1124,-0.2168,-0.522,-0.7792,-0.8714,-0.8836,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.853,-0.8466,-0.7636,-0.5878,-0.393,-0.032,0.476,0.869,0.6806,0.3226,0.0608,-0.0798,-0.179,-0.2012,-0.444,-0.7284,-0.8052,-0.8146,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9,-0.9668,-0.8134,-0.9,-0.8706,-0.4754,-0.6342,-0.7424,-0.8636,-0.8812,-0.8834,-0.9156,-0.8668,-0.8112,-0.7324,-0.8068,-0.8668,-0.8534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,-0.8286,-0.8286,-0.8,-0.4,-0.5142,-0.2572,-0.6858,-0.6572,-0.7714,-0.9428,-0.8572,-0.8858,-0.7428,-0.6572,-0.8286,-1,-0.8572,-1,-1,-1,-1,-1,-1,-1,-1,-0.485,-0.4704,-0.4464,-0.449,-0.448,-0.5048,-0.5422,-0.5888,-0.502,-0.1928,0.5024,0.5078,0.5566,0.6102,0.6428,0.6926,0.6546,0.3904,-0.0234,-0.226,-0.32,1,-0.5782,-0.556,-0.4856,-0.3738,-0.3674,-1,0.3684,0.5878,0.6052,0.4386,0.579,0.9562,0.886,0.6666,0.7544,0.8334,1,0.8684,0.9736,0.7894,0.7982,0.5526,0.6316,0.4824,0.6666,0.6316,0.7368,0.7018,0.6404,0.4824,0.421,0.9036,0.9298,0.7632,0.4562,0.5964,0.5,0.0964,0.0834,0.2084,0.427,0.4166,0.427,0.7396,1,0.7188,0.4792,0.6458,0.5104,0.8124,0.7708,0.5938,0.823,0.5,0.5104,0.625,0.0624,0.3854,0.573,0.9896,0.4166,0.5208,0.7708,0.7188,0.573,0.5,0.4062,0.6354,0.625,0.0312,0.7412,0.8588,0.1648,0.6118,0.3176,0.4118,0.6118,0.4118,0.1648,0.7294,0.9648,0.9412,0.9058,0.6,0.6706,0.3764,0.8824,0.8,0.2,0.353,0.2706,0.2824,0.4118,0.3412,0.9764,1,0.6824,0.2942,0.2942,0.5294,0.6588,-0.2236,-0.9744,1,-1,-1,-1,-0.8,-1,-1,-1,0.6964,0.7142,0.6964,0.7142,1,0.8036,0.5,0.4464,0.3928,0.2322,0.6072,0.6072,0.4642,0.3214,0.0892,0.3572,0.4464,0.2858,0.2322,0.3036,0.6964,0.5892,0.4642,0.1608,0.25,0.1072,0.4464,0.5714,0.625,0.3036,0.5892,0.0178,'21'
-0.3272,-0.0152,0.5122,0.4242,-0.4334,-0.7666,-0.5818,-0.5122,-0.7304,-0.7334,-0.706,-0.6696,-0.4546,-0.4424,-0.4606,-0.0484,0.097,0.4394,1,1,0.7304,0.7758,0.7696,0.8394,0.5576,0.3364,0.103,-0.0758,-0.1242,-0.1122,-0.1304,-0.003,-0.4046,-0.0826,0.5186,0.4132,-0.681,-0.869,-0.7578,-0.7378,-0.9744,-0.772,-0.6838,-0.5926,-0.6552,-0.661,-0.5642,-0.339,-0.1938,0.02,0.2934,0.9972,1,0.6068,0.7692,0.6894,0.8148,0.4046,0.2878,0.0512,-0.245,-0.3362,-0.3304,-0.3676,-0.1796,0.1972,0.831,0.743,-0.683,-0.817,-0.6162,-0.5,-0.824,-0.817,-0.7712,-0.6936,-0.4578,-0.3486,-0.3908,-0.5528,-0.3098,-0.1654,0.4964,0.7324,1,0.8908,0.933,0.757,0.8944,0.8978,0.405,-0.0774,-0.1198,-0.405,-0.486,-0.5316,-0.2862,0.1038,0.6006,0.588,-0.6604,-0.9372,-0.6792,-0.6856,-0.9402,-0.8554,-0.632,-0.585,-0.5566,-0.5692,-0.5534,-0.5504,-0.6478,-0.346,-0.066,0.3868,0.8962,1,0.7106,0.4716,0.5158,0.7862,0.6856,0.2452,0.1352,-0.0566,-0.066,-0.0818,-0.3374,0.0706,0.5306,0.5368,-0.6902,-0.7792,-0.635,-0.543,-0.8344,-0.7484,-0.7024,-0.5644,-0.5,-0.6718,-0.592,-0.5644,-0.322,-0.3958,-0.1994,0.4356,0.7546,1,0.7148,0.5644,0.4602,0.638,0.6748,0.7056,0.4938,0.0766,0.0858,-0.0552,-0.3538,0.0662,0.4378,0.4282,-0.6252,-0.9096,-0.6672,-0.5896,-0.6672,-0.7738,-0.719,-0.5218,-0.4378,-0.6058,-0.5542,-0.5316,-0.328,-0.3862,-0.2246,0.3506,0.7028,0.9256,0.7512,0.7124,0.5186,0.567,0.6802,1,0.7932,0.3732,0.2924,0.118,-0.5712,0.0702,-0.0778,0.0702,-0.7686,-0.742,-0.6166,-0.4498,-0.8102,-0.8634,-0.8938,-0.7002,-0.5218,-0.5674,-0.351,-0.5256,-0.3662,-0.4308,-0.2372,-0.0968,0.332,0.8064,1,0.7686,0.5864,0.7534,0.8102,0.628,0.2714,-0.0056,-0.112,-0.1954,-0.0476,0.238,0.4762,0.4762,0.1904,-0.1904,0.0952,0.0952,-0.238,-0.0952,-0.0952,-0.2858,-0.0952,-0.0476,-0.238,0.1904,0.6666,0.8096,0.9524,1,0.9048,0.619,0.8096,0.6666,0.4286,-0.1428,0,0.0952,-0.0476,0.381,0.4762,0.5714,-0.4594,0.027,0.2972,0.1892,-0.4054,-0.8378,-0.6216,-0.5136,-0.7298,-0.6756,-0.6756,-0.946,-0.5676,-0.4594,-0.3514,-0.1352,0.1892,0.4594,1,0.8918,0.5676,0.6756,0.6216,0.8378,0.5136,0.1892,-0.081,-0.2972,-0.2972,-0.2972,-0.2972,0.027,-0.2432,0.2432,0.6756,0.5406,-0.5676,-0.6486,-0.3784,-0.3244,-0.7568,-0.8648,-0.5676,-0.4594,-0.5136,-0.4324,-0.3514,-0.4054,-0.1352,0,0.3244,0.946,1,0.919,0.973,0.973,0.946,0.7028,0.4324,0.081,-0.2432,-0.2702,-0.3244,-0.2972,-0.9132,-0.8916,-0.7252,-0.6926,-0.7216,-0.7252,-0.7866,-0.8048,-0.8916,-0.8988,-0.4612,0.6312,0.9602,0.9024,0.5444,0.273,0.1392,0.1428,0.0126,-0.1682,-0.396,-0.66,-0.783,-0.8554,-0.8806,-0.9312,-0.8878,-1,-1,-1,-1,-1,-1,-0.8966,-0.9004,-0.8192,-0.8082,-0.8062,-0.8044,-0.8118,-0.7786,-0.8432,-0.8154,-0.4742,0.5572,0.7602,0.6752,0.1772,-0.0702,-0.1144,-0.1292,-0.1956,-0.2232,-0.4392,-0.6236,-0.7988,-0.8322,-0.8616,-0.8966,-0.8838,-1,-1,-1,-1,-1,-1,-0.8134,-0.86,-0.8734,-0.89,-0.85,-0.7134,-0.14,-0.24,-0.22,0.0366,-0.2834,-0.402,-0.4982,-0.5784,-0.6384,-0.7284,-0.5218,-0.6468,-0.5384,-0.505,-0.5034,-0.5668,-0.7268,-0.6734,-0.82,-0.8768,-0.8634,-1,-1,-1,-1,-1,-1,-0.9428,-0.9714,-0.9428,-0.9714,-0.8858,-0.5142,-0.6858,-0.9428,-0.8,0,0.7142,0.5428,-0.8572,-0.9142,-0.7428,-0.8286,-0.9428,-1,-1,-1,-0.7714,0.2286,-0.0286,-0.9142,-0.8,-0.8572,-0.6858,-1,-1,-1,-1,-1,-1,-0.2132,-0.2566,-0.2652,-0.3074,-0.3644,-0.409,-0.4168,-0.3918,-0.4236,-0.3276,0.3216,0.3556,0.4096,0.4156,0.4668,0.5078,0.5606,0.6218,0.6538,0.7358,-0.56,0.4118,-0.4798,-0.1034,0.559,0.7694,0.749,-0.9166,0.0442,-0.0384,-0.2448,-0.115,-0.1918,-0.0088,0.0796,0.0384,0.1504,0.0266,0.239,0.1446,0.1504,0.1622,0.115,0.2036,0.292,0.3098,0.292,0.5576,0.6578,0.8526,1,0.6578,0.587,0.6342,0.711,0.9646,0.8172,0.8054,0.7228,0.416,-0.5252,-0.46,-0.4124,0.181,0.003,-0.0504,-0.0268,0.003,-0.0386,-0.1216,0.0802,0.359,0.359,0.0802,0.1514,0.1098,0.4244,0.5786,0.2998,0.5846,0.905,0.9466,0.644,0.5134,0.6736,0.5964,0.8576,1,0.8456,0.816,0.5134,0.264,-0.0708,0.0424,-0.2918,0.0142,-0.0652,-0.1274,-0.0878,0.2238,0.728,0.609,0.7678,0.796,0.7224,0.3484,0.4164,0.8526,0.813,0.5694,0.6204,0.8584,1,0.915,0.7848,0.762,0.6828,0.592,0.8186,0.8016,0.4788,0.541,0.575,0.3372,-0.8856,-1,1,-1,-0.2,0.6,-1,0.1,-1,0.1578,0.3474,0.2632,0.3684,0.1578,0.1368,0.4316,0.3264,0.5578,0.579,0.6,0.8316,1,0.6422,0.4316,0.3474,0.0948,0.4736,0.5158,0.1368,0.5368,0.621,0.3894,0.3684,0.2,0.3264,0.221,0.4948,0.3894,0.0106,-0.221,-0.6842,'22'
-0.3954,-0.0466,0.43,0.2756,-0.209,-0.5872,-0.6484,-0.6592,-0.763,-0.6592,-0.6246,-0.5154,-0.2996,-0.3262,-0.1692,-0.0758,0.201,0.5898,0.9494,1,0.7736,0.8296,0.936,0.8962,0.566,0.3688,0.0812,0.004,-0.0306,0.0466,0.028,0.0918,-0.4582,-0.1554,0.2888,0.0424,-0.2812,-0.828,-0.9256,-0.5558,-0.6636,-0.8178,-0.6842,-0.484,-0.4942,-0.4378,-0.389,-0.3864,-0.1066,0.1708,0.62,1,0.9666,0.8254,0.941,0.9306,0.8382,0.4994,0.1938,0.1296,0.0424,-0.0474,0.0474,0.0296,-0.2922,-0.0974,0.354,0.1378,-0.221,-0.8004,-0.6294,-0.5392,-0.6152,-0.8194,-0.7814,-0.5582,-0.4704,-0.354,-0.5106,-0.3658,-0.2446,-0.095,0.3848,0.7768,0.905,1,0.9002,0.9192,0.924,0.6674,0.4038,0.2376,0.1164,0.1068,0.0476,0.0404,-0.3632,-0.0736,0.3132,0.1422,-0.4132,-0.8368,-0.771,-0.8078,-0.8606,-0.7578,-0.6948,-0.6184,-0.571,-0.6,-0.5422,-0.5632,-0.4474,-0.179,0.1868,0.4342,0.7052,1,0.9842,0.8236,0.8658,0.771,0.5736,0.3236,0.0894,0.0448,-0.0316,0.0106,-0.2662,0.0234,0.3544,0.211,-0.5752,-0.8206,-0.7932,-0.6966,-0.9256,-0.8482,-0.7518,-0.6882,-0.5668,-0.5256,-0.542,-0.6166,-0.4096,-0.3268,-0.1282,0.3296,0.6772,0.8704,1,0.8428,0.8042,0.8896,0.7104,0.4428,0.1062,0.0372,0.04,0.0234,-0.3126,0.0738,0.287,0.2472,-0.7414,-0.892,-0.9262,-0.8636,-0.6762,-0.662,-0.6392,-0.625,-0.6108,-0.6306,-0.537,-0.534,-0.3722,-0.4802,-0.2472,0.1478,0.5312,0.892,1,0.838,0.7556,0.7728,0.7386,0.5142,0.3522,0.1932,0.0454,-0.0768,-0.1364,0.4508,0.1402,0.178,-0.7196,-0.6174,-0.6856,-0.6098,-0.7084,-0.8674,-0.4886,-0.3258,-0.4128,-0.4734,-0.481,-0.3334,-0.4016,-0.284,-0.1666,-0.0076,0.4054,0.9318,0.928,1,0.8446,0.875,0.591,0.216,0.0416,-0.0834,-0.0834,-0.125,-0.2,0.1,0.5,0.5,0.05,-0.15,-0.25,-0.2,-0.45,-0.3,-0.4,-0.4,0,0.05,0.1,-0.05,0.5,0.65,0.8,0.75,0.6,0.75,1,0.9,-0.05,0.25,-0.15,-0.25,-0.2,0,0.1,0,-0.1064,0.3192,0.4894,0.3192,0.1064,-0.2766,0.0212,-0.0638,-0.4042,-0.1914,-0.2766,-0.3618,0.0212,0.0638,0.1914,0.3192,0.4468,0.6596,0.7872,0.9148,0.8724,0.9148,1,0.8724,0.4894,0.4042,0.2766,0.1064,0.1064,0.149,0.149,0.0212,-0.4246,-0.2054,0.2602,0.0136,-0.2876,-0.8082,-0.8356,-0.7534,-0.6986,-0.6164,-0.863,-0.726,-0.589,-0.4246,-0.6164,-0.7534,-0.452,-0.2054,0.3424,0.7534,0.8082,0.9726,0.863,0.9452,1,0.726,0.3698,0.1506,0.1232,-0.0684,0.041,-0.0958,-1,-0.8526,-0.7222,-0.6884,-0.6548,-0.6884,-0.8232,-0.8148,-0.8106,-0.5916,-0.2674,0.6252,0.8822,0.68,0.6168,0.4526,0.339,0.2464,0.061,-0.061,-0.1916,-0.4526,-0.6758,-0.7474,-0.8864,-0.8822,-0.8822,-0.899,-1,-1,-1,-1,-1,-1,-0.9052,-0.873,-0.8456,-0.8166,-0.7996,-0.7522,-0.734,-0.6804,-0.6224,-0.5046,0.1422,0.8746,0.7752,0.4618,0.2126,0.0902,-0.0764,-0.2386,-0.3104,-0.4588,-0.7048,-0.8242,-0.8578,-0.8792,-0.9082,-0.8976,-0.9114,-1,-1,-1,-1,-1,-1,-0.9,-0.7868,-0.84,-0.86,-0.4234,0.3966,0.6,0.4232,0.0766,-0.4634,-0.477,-0.3124,-0.2708,-0.4124,-0.3478,-0.3816,-0.3494,-0.3554,-0.3032,-0.3958,-0.88,-0.8768,-0.8168,-0.68,-0.78,-0.9334,-0.9734,-1,-1,-1,-1,-1,-1,-0.8,-0.6858,-0.3714,-0.4286,-0.4286,-0.5142,-0.8858,-0.6,-0.0572,-0.1142,0.0572,-0.6286,-1,-1,-1,-1,-1,-1,-1,-0.1428,0.0286,-0.9714,-0.9142,-0.9428,-0.9142,-0.9714,-0.7714,-1,-1,-1,-1,-1,-0.2436,-0.2334,-0.237,-0.222,-0.2072,-0.2324,-0.3006,-0.3204,-0.3774,-0.4312,0.3154,0.3416,0.3838,0.3926,0.4504,0.4918,0.5554,0.6202,0.713,0.786,-0.44,0.5882,-0.4634,-0.341,-0.1208,0.1636,0.3486,-1,-0.238,-0.381,-0.6508,-0.4286,-0.5874,-0.3862,-0.1746,-0.1852,-0.217,-0.2592,-0.0952,0.217,0.2328,0.2222,0.1588,0.291,0.418,0.3492,0.3544,0.6456,1,0.783,0.8412,0.672,0.6456,0.6932,0.799,0.7936,0.5768,0.6614,0.4974,-0.0158,-0.408,-0.4036,-0.3856,-0.4798,-0.3902,-0.296,-0.3632,-0.2422,-0.1884,-0.157,0.0044,0.269,0.3408,0.3408,0.3004,0.6368,0.5606,0.5112,0.5022,0.6502,0.852,0.87,1,0.6996,0.6098,0.6458,0.7938,0.8744,0.713,0.8252,0.6278,0.3542,0.2176,0.1956,-0.178,-0.288,-0.099,0.011,-0.099,0.4022,0.6088,0.7098,0.5516,0.8594,0.4946,0.3846,0.1032,0.5032,0.833,0.5164,0.2924,1,0.9736,0.7714,0.6352,0.5604,0.4286,0.411,0.4946,0.7494,0.5164,0.4726,0.2704,0.0374,-0.893,-1,1,-1,0,0,-0.4,0.1666,-1,-0.553,-0.2,-0.0824,-0.0588,-0.1294,-0.247,0.0824,0.5058,1,0.4588,0.2706,-0.1294,0.5058,0.5764,0.0352,-0.0118,0.2236,0.5294,0.5294,0.4824,0.647,0.2236,0.153,-0.0118,-0.1058,-0.0824,0.1764,0.153,0.1294,-0.1058,-0.1058,-0.2942,'22'
-0.3984,-0.088,0.3214,0.4038,0.805,1,0.8654,0.7252,0.4698,0.3516,0.5714,0.7884,0.7116,0.6318,0.5962,0.1484,-0.1566,-0.0522,0.0468,0.327,0.3598,0.467,0.434,0.2994,0.1978,0.0686,-0.0412,-0.0138,-0.099,0.066,0.1098,0.2968,-0.1776,0.218,0.1596,0.2988,0.8426,1,0.9146,0.8876,0.5686,0.8832,0.6944,0.5056,0.1686,-0.146,-0.4338,-0.3618,-0.564,-0.6808,-0.4742,-0.3214,-0.1056,0.4606,0.6314,-0.1596,-0.4786,-0.3662,-0.8966,-0.8112,-0.7618,-0.4832,-0.5012,-0.2134,-0.0542,0.394,0.128,0.7832,0.798,0.6946,0.5172,0.5024,0.6996,0.9902,1,0.6158,0.2316,0.0542,-0.5518,-0.601,-0.537,-0.7192,-0.729,-0.2364,-0.0444,0.5124,0.66,0.3448,0.0444,-0.1922,0.0936,0.3448,0.5074,0.3104,-0.0936,-0.6108,-0.026,0.4042,0.2434,0.74,0.5508,-0.2246,-0.3664,-0.7446,-0.7116,-0.5982,-0.3476,-0.0544,0.2766,0.4042,0.253,-0.1442,-0.494,-0.3758,-0.7636,-0.39,-0.1394,0.3758,1,0.8014,0.5414,0.182,0.182,0.1348,-0.182,-0.1726,-0.3712,-0.4138,-0.163,0.2282,0.4022,0.326,-0.058,-0.5472,-0.6702,-0.5508,-0.6014,-0.6086,-0.616,-0.5,-0.2356,-0.3116,-0.413,-0.1014,0.587,0.826,1,0.7898,0.6522,0.3406,0.145,0.0834,-0.0652,-0.2536,-0.4022,-0.4492,-0.5834,-0.6558,-0.7754,-0.6414,-0.1494,0.3526,1,0.8672,0.3196,0.0706,-0.112,-0.3236,-0.2116,-0.058,0.0746,0.2324,0.6432,0.668,0.4398,0.3984,0.3444,0.5768,0.2406,0.1702,0.4814,0.4688,0.4398,-0.2448,-0.3858,-0.6224,-0.8092,-0.863,-0.6846,-0.5934,-0.6514,-0.6556,-0.2304,0.6702,0.2042,0.356,0.1308,0.4922,0.7172,0.1728,0.8116,1,0.7802,0.2042,-0.2514,-0.2356,-0.3508,-0.4398,-0.288,-0.1048,-0.4294,-0.3036,-0.309,-0.3612,-0.1466,-0.0732,-0.0418,-0.1728,-0.398,-0.4764,-0.6858,-0.7068,-0.6126,-0.5288,-0.5294,-0.1176,0.4706,0.5294,0.647,0.5882,0.0588,-0.1764,0.0588,-0.1176,-0.2942,0.1176,0.2352,0.2942,0.2352,0.1764,0.0588,0.1764,0.2352,-0.0588,0.353,0.5294,0.7648,1,0.8824,0.5882,0.2942,0.0588,-0.2942,-0.5294,-0.353,-0.7058,-0.4706,0,0.353,0.647,1,0.5882,0.7058,0.353,0.1176,0.1764,-0.1176,0.1764,0.5882,0.7648,0.7058,0.5294,0.2942,0.1764,0,0.2352,0.1176,0.5882,0.7058,0.5294,0.2352,0.5882,0.1764,0.1764,0,0,-0.1176,-0.1176,0.6216,0.8378,0.027,0.3514,0.2432,-0.4054,0.946,1,0.4054,0.946,0.6756,0.4594,0.8378,0.7298,-0.3514,0.7298,0.8918,0.6216,0.6756,0.5136,0.7838,1,0.7838,0.8378,0.946,0.7838,0.5136,0.3514,0.2972,0.8918,0.946,0.7298,-1,-1,-1,-1,-1,-1,-1,-1,-0.8706,-0.8806,-0.4228,0.791,0.6616,0.1294,-0.184,0.4626,0.1394,-0.189,0.02,-0.0896,-0.2836,-0.5074,-0.7064,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9384,-0.942,0.0168,0.211,0.8046,-0.2992,-0.6646,-0.3016,-0.626,-0.6442,-0.6406,-0.6756,-0.7552,-0.8106,-0.8854,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.9168,-0.3968,-0.6954,-0.6678,-0.8144,-0.8416,-0.7858,-0.7986,-0.6558,-0.673,-0.7572,-0.833,-0.7816,-0.9268,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,0.4,1,0.6286,-0.3714,0.3714,0.6,-0.6572,-0.6572,-0.8,-0.5714,-0.9714,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,0.9372,0.533,-0.6312,-0.6532,-0.672,-0.678,-0.694,-0.6932,-0.638,-0.5778,-0.404,-0.418,-0.3866,0.6706,0.3318,-0.2268,0.0542,0.1724,0.4536,1,-0.4694,-0.2244,-0.0204,0.102,0.0612,0.2244,0.3878,0.6326,0.7142,0.8776,0.8776,0.9184,0.9592,0.796,0.551,0.347,0.7142,0.7142,0.8776,0.9184,1,1,0.8776,0.4694,0.2244,0.347,0.2244,0.3062,0.102,0.102,0.0612,-0.3062,-0.449,-0.0408,-0.1224,0.0408,-0.1632,0.0612,0.2654,0.7346,0.4694,0.7142,0.6326,0.9592,0.9184,0.551,0.3674,0.4898,0.4694,0.4286,0.8164,0.6734,0.9592,1,1,0.4898,0.5918,0.6734,0.5102,0.5102,0.3062,0.1836,0.1632,-0.0612,0.0588,0.549,0.549,0.255,0.1372,0.0392,0.353,0.745,0.3922,0.3922,0.4902,1,0.9804,0.3334,0.1568,-0.0784,0.0784,0.3726,0.745,0.5098,0.5098,0.647,0.4902,0.4706,0.1764,0.4314,0.2942,0.255,-0.0392,-0.0392,0.098,-0.0784,1,-1,-1,1,-1,-1,-0.8,-0.8334,-1,0.3636,0.409,0.409,0.7728,0.9546,0.9318,0.75,0.659,0.909,0.591,0.591,0.9546,1,0.8864,0.7046,0.6818,0.6136,0.5454,0.4772,0.4772,0.6364,0.659,0.75,0.5682,0.341,0.409,0.6818,0.8182,0.75,0.909,0.4546,-0.25,'23'
-0.2244,0.0816,0.3436,0.7552,0.8572,0.9898,0.7074,0.9048,0.9728,1,0.6802,0.1258,0.0986,-0.1088,-0.3062,-0.364,-0.2722,-0.2518,-0.2414,-0.0816,0.034,0.2142,0.3504,0.2074,0.0204,-0.2756,-0.1632,0.0714,0.2006,-0.0986,-0.3844,-0.3572,-0.1318,0.217,0.4362,0.9472,0.8946,0.8094,0.6268,0.355,0.7282,0.785,0.9676,0.9676,0.8336,0.5618,0.1522,-0.2576,-0.2374,-0.1764,-0.1724,0.14,0.3022,0.7282,1,0.712,0.2414,-0.0182,-0.0548,0.1522,0.0224,-0.002,-0.2008,-0.3672,0.3962,0.8436,0.4124,0.0836,-0.3316,-0.3854,-0.3208,-0.2884,-0.6172,-0.655,-0.353,-0.159,0.0944,-0.0134,0.256,0.1806,-0.0188,0.2938,0.3046,0.2346,0.434,0.5364,0.8868,1,0.6388,0.1428,0.2992,0.3746,0.5742,0.7196,0.752,0.7358,0.076,0.4514,0.3798,0.1562,-0.1518,-0.3206,-0.8438,-0.5992,-0.5106,-0.6752,-0.616,-0.4388,-0.2406,-0.1392,-0.1224,0.3798,0.9494,0.7722,0.8734,1,0.7764,0.249,0.1392,0.1012,0.0338,-0.346,-0.2742,-0.3122,-0.211,-0.0254,0.1814,0.578,0.1042,0.5642,0.7676,0.5254,0.1284,-0.2204,-0.4916,-0.4866,-0.3026,-0.7628,-0.3946,-0.08,0.2058,0.5012,0.4238,0.4334,0.8256,0.4722,0.3318,0.5302,1,0.8934,0.0702,-0.0072,-0.1042,-0.0508,-0.4964,-0.603,-0.6222,-0.5302,-0.6368,-0.2494,0.2272,0.7728,1,0.8282,0.3888,0.2172,0.0202,0.0354,0.2526,0.5252,0.5808,0.5252,0.3636,0.2424,-0.1718,-0.6566,-0.202,-0.101,-0.2474,-0.096,0.0454,0.3536,-0.1464,-0.4748,-0.7324,-0.5656,-0.5808,-0.5858,-0.7424,-0.6464,-0.697,-0.601,0.2034,0.9436,0.4576,-0.0226,0.0564,0.418,0.5028,0.1808,0.8984,1,0.096,-0.2372,-0.2598,-0.2656,-0.356,-0.418,-0.3276,-0.3334,-0.4068,-0.3446,-0.1074,-0.1242,-0.1074,-0.2372,-0.5762,-0.791,-0.7684,-0.644,-0.4124,-0.6158,-0.6836,-0.5706,-0.1538,0.3076,0.4616,0.6154,0.8462,0.5384,1,0.923,0.8462,0.7692,0.5384,0.077,-0.3076,-0.5384,-0.8462,-0.3846,-0.3076,-0.6154,-0.4616,-0.3076,-0.2308,-0.3076,-0.077,0.077,-0.6154,-0.4616,-0.3076,0.1538,-0.077,0.6154,0.3076,-0.077,-0.0732,0.1708,0.5122,0.8536,1,0.9512,0.7074,0.9024,1,0.9512,0.6098,0.317,-0.0732,-0.0244,-0.0732,-0.4146,0.0244,0.0244,-0.317,0.0732,0.122,0.1708,0.1708,0.2682,0.2196,-0.1708,0.0244,0.317,0.2196,0.0244,0.0244,0.1708,0.3612,0.6112,0.4444,0.5278,0.4722,0.3612,0.2778,0.3056,-0.0834,0.1944,0.2222,0.25,-0.0278,0.1666,0.2778,0.4166,0.5278,0.6944,0.9722,0.9444,0.8612,0.6666,0.5278,0.75,0.5834,0.6112,0.7778,0.7222,0.9722,0.9166,1,0.8334,-0.9082,-0.9294,-0.7138,0.1802,1,1,1,0.6644,-0.4098,-0.576,-0.5972,0.629,0.689,0.5654,-0.1308,-0.3604,-0.1024,-0.1096,-0.2438,-0.3322,-0.364,-0.4946,-0.735,-0.848,-0.887,-1,-1,-1,-1,-1,-1,-1,-1,-0.9196,-0.9246,0.1884,0.4982,1,1,1,1,-0.613,-0.7346,-0.6832,0.6542,0.7192,0.4452,-0.4538,-0.3938,-0.4024,-0.3972,-0.5052,-0.5994,-0.5668,-0.6746,-0.8202,-0.8768,-0.8938,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.9134,-0.6668,-0.4334,-0.6234,-0.66,-0.6968,-0.7268,-0.8734,-0.8734,-0.7368,-0.715,-0.7168,-0.74,-0.7968,-0.8168,-0.7768,-0.775,-0.8268,-0.8708,-0.8708,-0.9294,-0.8734,-0.84,-0.8268,-1,-1,-1,-1,-1,-1,-1,-1,-0.6286,1,1,1,1,-0.1428,1,1,1,-0.3714,1,1,-0.8572,0.8286,0.9142,1,-0.1428,-0.9428,-0.8,-0.8,-0.9428,-0.7142,-0.8858,-0.9714,-0.0572,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,0.8392,0.4604,0.2522,-0.1412,-0.155,-0.1738,-0.1592,-0.1568,-0.178,-0.2192,-0.2338,-0.196,-0.3914,-0.4534,0.4706,-0.673,-0.1592,0.5496,0.7706,0.9538,0.5834,-0.2632,0.0526,0.1754,0.193,0.2808,0.3158,0.1228,0.4736,0.4912,0.7018,0.7018,0.9298,0.965,0.9298,0.7192,0.7894,0.7544,0.5088,0.5614,0.579,0.7544,0.8948,1,0.965,0.6842,0.3158,0.386,0.3508,0.2808,0.1754,-0.035,-0.579,-0.1398,0.2044,0.3334,0.1182,-0.1612,0.0538,0.2904,0.4838,-0.0108,0.1398,0.1398,0.957,0.8494,0.5268,0.3978,0.613,0.5484,0.4624,0.1828,0.4408,0.5054,0.8924,1,0.656,0.6774,0.5914,0.656,0.4194,0.3334,0.3978,0.2474,-0.5268,0.1778,0.4666,0.6444,0.2222,0.2222,0.2888,0.7112,1,0.1112,0.4888,0.5334,0.8888,0.8888,0.6222,0.4222,0.5334,0.4666,0.7112,0.6444,0.5778,0.7556,0.7334,0.5778,0.7556,0.4444,0.5778,0.5334,0.5112,0.5112,0.4444,0.1778,-0.1112,1,1,-1,-1,-1,-1,-1,-0.8,-1,0.6232,0.5072,0.2754,0.6522,0.826,0.4202,0.6232,0.4782,0.5652,0.5362,0.7682,0.5942,1,0.6522,0.3914,0.971,0.4492,0.5072,0.5652,0.6812,0.4782,0.6232,0.5942,0.7972,0.4492,0.2464,0.3334,0.6522,0.5942,0.3914,0.2174,-0.7392,'23'
-0.7882,-0.4118,-0.1648,-0.2352,0.8,0.8706,0.5764,0.447,0.4236,-0.0236,0.0118,0.247,0.0706,0.4236,0.3882,0.553,1,0.753,0.8,0.8942,0.5764,0.6118,0.6,0.2118,0.153,0.0588,-0.3648,-0.4588,-0.6118,-0.4236,-0.0942,0,-0.5566,-0.3302,-0.0472,0.1038,0.5284,0.6982,0.5188,0.4434,0.1886,0.0284,0.085,0.1226,0.1698,0.349,0.6698,0.7924,1,0.8868,0.7358,0.717,0.8018,0.783,0.6416,0.2642,0.2452,0.2358,0,-0.1792,-0.1982,-0.085,0.3018,0.2548,-0.4468,-0.2198,0.0496,0.078,0.539,0.8086,0.6312,0.61,0.4398,0.2412,0.2198,0.305,0.305,0.5602,0.6028,0.8086,1,0.9574,0.7234,0.8794,0.773,0.8298,0.5958,0.5036,0.4042,0.3334,0.1844,0.0992,-0.0852,0.0852,0.305,0.3546,-0.5776,-0.2908,0.0438,0.0438,0.227,0.8008,0.6972,0.753,0.4662,0.2908,0.227,0.3148,0.4662,0.522,0.8088,0.9044,1,0.9204,0.8566,0.8884,0.9602,0.7928,0.7848,0.5698,0.3626,0.235,0.243,-0.0278,-0.1076,-0.1474,0.2112,0.2192,-0.4628,-0.0744,0.1322,0.2396,0.5702,0.6528,0.6776,0.6776,0.5206,0.2562,0.3058,0.3554,0.471,0.6034,0.8678,0.9918,0.9586,1,0.843,0.8678,0.909,0.9834,0.8678,0.6116,0.2148,0.1818,0.124,0,-0.1404,-0.1488,0.0578,0.1652,-0.3828,0.247,0.0618,0.0988,0.6172,0.5556,0.716,0.4074,0.321,0.0124,-0.074,0.0864,0.4444,0.5556,0.8518,0.8272,1,0.8766,0.358,0.5802,0.4568,0.9012,0.8148,0.5308,0.2716,-0.074,0.2592,0.3086,-0.1482,-0.2962,-0.2098,-0.0864,-0.8928,-0.7142,-0.6608,-0.2322,0.3214,0.1072,0.1608,0.2322,-0.1608,-0.1786,0.0536,-0.1428,0.0892,0.3928,0.7142,0.9822,1,0.5,0.3036,-0.1786,-0.1072,0.1428,0.2678,0.125,-0.0536,-0.3572,-0.5358,-0.4464,-0.2142,-0.2142,-0.1786,-0.1072,-0.8974,-0.641,-0.1282,0.0256,0.6924,0.7948,0.641,0.4872,0.5384,0.2308,0.4872,0.5384,0.282,0.5384,0.5384,0.6924,0.9488,0.8974,0.9488,1,0.8462,0.7948,0.7436,0.3846,0.2308,0.1794,-0.1794,-0.1282,-0.077,0.1794,0.3334,0.3846,-0.3044,0.087,0.1304,-0.2174,0.8696,0.9566,0.7826,0.4782,0.3044,0.087,-0.1304,0.2174,-0.174,0.3914,0.4348,0.5652,1,0.8696,0.3478,0.7826,0.5652,0.4348,0.6086,0.174,0.3478,0.2174,-0.174,-0.3044,-0.3478,-0.174,-0.174,0.0434,-0.4626,0.0746,-0.0448,0.0448,0.7314,0.612,0.791,0.582,0.403,0.015,-0.1344,0.015,0.403,0.582,0.7014,0.6716,1,0.6418,0.6418,0.403,0.5522,0.8508,0.7014,0.4626,0.1344,-0.1344,0.1642,0.1044,-0.3134,-0.5224,-0.5522,-0.4926,-1,-1,-1,-1,-1,-1,-1,-0.896,-0.8762,-0.8564,-0.7722,0.3812,0.896,0.8564,0.7326,0.9702,0.7722,0.49,0.391,0.1238,-0.5446,-0.8118,-0.8762,-0.8664,-0.9208,-0.8712,-0.906,-0.708,-0.8218,-0.896,-0.8614,-0.896,-0.8664,-1,-1,-1,-1,-1,-1,-1,-0.9594,-0.9586,-0.926,-0.8486,-0.2034,0.1,0.6826,0.747,0.9422,0.948,0.5964,-0.0024,-0.5044,-0.8552,-0.9194,-0.9512,-0.9528,-0.9626,-0.9602,-0.9602,-0.8258,-0.4598,-0.3848,-0.3596,-0.4458,-0.3662,-1,-1,-1,-1,-1,-1,-1,-0.9588,-0.8934,-0.8834,-0.5834,-0.54,-0.5534,-0.5734,-0.58,-0.64,-0.6,-0.465,-0.295,-0.395,-0.51,-0.69,-0.82,-0.9068,-0.96,-0.9134,-0.8134,-0.56,0.67,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,0.2,-1,0.3142,1,1,1,1,-0.5428,-0.9142,-0.8858,0.1714,1,1,1,1,-0.0572,-0.8572,-0.9428,-0.8572,-0.0858,1,1,1,-0.6858,-0.8572,-0.9714,1,1,1,1,1,1,1,1,1,1,-0.7044,-0.7044,-0.6638,-0.6638,-0.6542,-0.684,-0.6724,-0.673,-0.6788,-0.707,-0.4934,-0.647,-0.869,-0.542,0.105,0.4622,0.7332,0.625,0.1064,0.2482,0.3758,0.7304,0.9432,0.4894,0.844,0.9148,0.8866,0.9858,0.5886,0.461,0.5886,0.546,0.4468,0.39,0.1064,0.5036,0.5036,0.3618,0.3192,0.7872,0.4468,0.3192,0.0922,0.0496,0.39,0.1348,0.4042,0.461,-0.078,-0.5036,0.2048,0.6024,0.3132,0.7832,0.5784,0.5904,0.8554,0.9638,0.6626,0.9156,1,0.8072,0.747,0.4096,0.3374,0.6988,0.5302,0.4458,0.518,0.506,0.6868,0.1808,0.4578,0.5422,0.4578,0.518,0.4578,0.253,0.0844,0.229,0.241,-0.5542,-0.2678,-0.2142,0.8214,0.7142,0.4196,0.375,0.5358,0.5624,1,0.741,0.634,0.491,0.2946,0.0446,-0.3036,0.3304,0.375,0.4642,0.3928,0.3124,0.375,0.625,0.6608,0.3214,0.25,0.2946,0.5892,0.3392,0.1608,0.259,0.375,0.0804,-0.9838,1,-1,-1,-1,-1,-1,-1,1,-0.7198,-0.656,-0.5032,-0.4522,-0.5286,-0.3886,-0.3122,-0.2738,-0.1848,-0.2484,-0.5286,0.0574,0.0064,-0.2484,-0.2994,0.0064,-0.0064,0.0574,0.3758,0.414,0.2356,0.7324,0.605,0.5924,0.8472,0.9236,0.8344,0.8216,0.8598,0.8344,1,0.8726,'24'
-0.8258,-0.5736,-0.3754,-0.1112,0.3634,0.3574,-0.1172,0.1232,-0.033,-0.1952,-0.1652,-0.015,-0.081,0.081,0.2432,0.5976,0.7958,0.8558,0.7118,0.8918,1,0.6576,0.5616,0.8558,0.7358,0.5556,0.2432,0.2312,0.1712,0.1052,-0.015,0.1232,-0.552,-0.3124,-0.099,-0.1094,0.0678,0.3854,0.25,0.1302,-0.0312,0.125,0.1302,0.1042,0.151,0.3178,0.474,0.5886,0.9376,1,0.7708,0.7136,0.7604,0.5572,0.5468,0.651,0.6146,0.3646,0.2812,0.0156,-0.1928,-0.0624,0.026,0.1406,-0.5096,-0.2122,0.0688,0.0744,0.3664,0.752,0.6584,0.3608,-0.0192,0.0468,0.157,0.372,0.4656,0.5758,0.8402,0.8622,0.967,0.9284,0.8458,1,0.9338,0.8842,0.5978,0.5868,0.4656,0.394,0.1846,0.1404,0.0028,-0.0028,0.179,0.2506,-0.5612,-0.286,0.0322,0.015,0.2344,0.613,0.6216,0.4538,0.2,0.2086,0.2646,0.3506,0.3936,0.6688,0.7978,0.8666,1,0.8666,0.6946,0.8838,0.785,0.6688,0.2818,0.299,0.3892,0.1226,0.1054,0.0322,-0.1784,-0.157,0.0408,-0.0624,-0.6376,-0.3648,0.0542,0.1058,0.3082,0.8118,0.7552,0.4258,0.3882,0.3412,0.1436,0.473,0.4448,0.6658,0.9952,1,0.9436,0.8164,0.6848,0.9248,0.9012,0.7176,0.3036,0.2518,0.0964,-0.0636,-0.1058,-0.3318,-0.4918,-0.407,-0.3694,-0.327,-0.648,-0.376,0.04,0.12,0.2106,0.5894,0.4186,-0.0134,0.1786,0.0186,-0.0346,0.1094,0.424,0.568,0.776,1,0.9734,0.728,0.8294,0.872,0.9734,0.76,0.5466,0.3066,-0.072,-0.0186,-0.0666,-0.1894,-0.232,-0.3014,-0.2854,-0.4134,-0.431,-0.888,-0.4138,0,0.0862,1,0.8966,0.388,0.112,-0.1034,-0.0172,0.2758,0.4482,0.3104,0.6206,0.7242,0.7414,0.6294,0.4482,0.5258,0.6206,0.4052,0.069,0.1034,0.0086,0.0258,0,0.0258,-0.1724,0.1034,0.1034,0.0776,-0.8334,-0.5834,-0.2084,0.1666,0.375,0.4166,0.375,0.25,0.2916,0.2916,0.0834,-0.0834,-0.2916,0.1666,0.4584,0.6666,0.75,0.875,0.9584,1,0.9584,0.8334,0.8334,0.875,0.8334,0.6666,0.4584,0.375,0.2916,0.25,0.1666,0.0416,-0.7894,-0.7368,-0.4736,-0.3684,0.3158,0.3684,-0.1578,0.1052,-0.0526,-0.6316,-0.579,0,-0.1578,-0.1052,-0.1578,-0.1052,0.7368,0.6842,0.1052,0.6316,0.7368,0.421,0.2106,0.8948,1,0.6842,0.1578,0.1052,0.2632,0,0.1578,0.3158,-0.6904,-0.4286,0,0.1428,0.3334,0.8096,0.6428,0.1904,0.3572,0.1904,0.119,0.3572,0.3334,0.5714,0.762,0.9286,0.9286,0.6666,0.762,0.8096,1,0.6666,0.5,0.2858,0.0952,-0.0476,-0.262,-0.0952,-0.1666,-0.5238,-0.3572,-0.4048,-1,-1,-1,-1,-1,-1,-1,-0.8436,-0.83,-0.8164,-0.8232,0.102,0.2244,0.449,0.8164,0.8368,0.7278,0.7278,0.932,0.6666,-0.4286,-0.796,-0.796,-0.8572,-0.8504,-0.8164,-0.8368,-0.7482,-0.7688,-0.7346,-0.8504,-0.7824,-0.8028,-1,-1,-1,-1,-1,-1,-1,-0.942,-0.9486,-0.8604,-0.9296,0.273,-0.052,0.1826,0.6282,0.8258,0.9342,0.7856,0.819,0.4696,-0.6672,-0.9006,-0.9408,-0.9464,-0.9452,-0.9408,-0.8772,-0.838,-0.5958,-0.1592,0.0228,0.2318,0.3478,-1,-1,-1,-1,-1,-1,-1,-0.9868,-0.92,-0.6268,-0.7468,-0.2134,-0.0534,-0.14,-0.24,-0.3968,-0.4368,-0.42,-0.47,-0.3568,-0.4734,-0.7086,-0.86,-0.8734,-0.8768,-0.8968,-0.8668,-0.5134,0.3932,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-0.8,-0.0572,0.2858,1,1,0.4286,-0.8286,-0.9142,-0.9714,-0.8858,-0.9142,-0.6,1,1,1,-0.7714,-0.9142,-0.9714,-0.9142,0.3142,1,1,1,-0.6286,-0.7428,-0.9714,1,1,1,1,1,1,1,1,1,1,0.1346,0.0976,0.0486,0.0294,8e-04,-0.0402,-0.0898,-0.1984,-0.4282,-0.6738,-0.5466,-0.3294,-0.9352,0.0496,0.2988,-0.292,0.0474,1,0.1676,0.1028,0.5244,0.546,0.5892,0.9676,0.773,1,0.7838,0.8054,0.4594,0.4378,0.2972,0.5244,0.546,0.546,0.6,0.6,0.3838,0.6864,0.6324,0.6864,0.7082,0.5784,0.481,0.3406,0.4486,0.4918,0.3622,0.254,0.2216,-0.3298,0.172,0.4194,0.613,0.7312,0.4194,1,0.9892,0.8172,0.6236,0.4732,0.5054,0.5698,0.7096,0.656,0.4408,0.6344,0.742,0.8064,0.8064,0.5592,0.5162,0.7526,0.4086,0.5914,0.6236,0.7096,0.344,0.4516,0.3764,0.4946,0.3548,-0.2688,-0.2716,-0.0662,-0.0332,-0.086,-0.0066,0.245,0.1456,0.1258,0.6226,0.4636,0.457,0.437,0.4834,0,0.1722,0.0066,0.1192,0.2384,0.192,0.1456,0.0994,0.3908,0.8808,0.7152,0.4106,0.4106,0.7948,1,0.2782,0.437,0.3642,0.1192,-0.9642,1,-1,-1,-1,-1,-1,-1,1,-0.7674,-0.628,-0.5232,-0.5814,-0.4418,-0.5348,-0.3256,-0.3256,-0.314,-0.2442,-0.314,-0.0116,0,0.0348,-0.2442,0.0348,0.279,0.2906,0.4418,0.6512,0.6976,0.7558,0.814,1,0.9418,0.8372,0.872,0.7094,0.6744,0.5466,0.8604,0.4652,'24'
-0.3832,-0.3084,-0.09,0.2614,0.7012,0.859,1,0.8948,0.8396,0.2946,-0.0568,-0.3748,-0.4994,-0.5518,-0.6072,-0.7068,-0.7178,-0.5712,-0.5656,-0.6404,-0.563,-0.5546,-0.0318,0.0954,0.1674,-0.231,-0.1674,-0.184,-0.2532,0.0402,-0.0456,-0.0788,-0.5046,-0.307,-0.1738,-0.0094,0.5026,0.6004,0.7648,0.9604,0.925,1,0.7566,0.5234,0.1822,0.1134,-0.0802,-0.1966,-0.1468,-0.0884,-0.1218,0.0052,0.0032,0.155,0.3798,0.1946,0.2862,0.309,0.4734,0.3756,0.3694,0.409,0.357,0.2092,-0.4304,-0.2344,-0.1434,-0.0102,0.5434,0.608,0.701,0.9354,0.8808,0.897,1,0.7394,0.4526,0.3334,0.1696,-0.0162,-0.0242,0.006,0.0162,0.1132,0.1292,0.3334,0.4344,0.3656,0.608,0.5878,0.4646,0.3576,0.305,0.3152,0.3676,0.2162,-0.5964,-0.4024,-0.354,-0.129,0.4178,0.4288,0.506,0.87,0.8126,0.861,1,0.7706,0.5678,0.323,0.248,-0.0518,0.065,-0.01,-0.0254,0.0982,0.14,0.1908,0.3518,0.462,0.506,0.2106,0.162,0.0496,-0.1312,-0.0628,-0.0738,-0.021,-0.4796,-0.285,-0.2602,-0.2488,0.4072,0.4932,0.6244,0.88,0.8756,0.7964,0.8552,0.9412,1,0.8642,0.8394,0.5928,0.4254,0.4842,0.6742,0.681,0.6856,0.1924,0.4186,0.5634,0.6132,0.3122,0.1064,0.0408,-0.0476,-0.0678,-0.0046,-0.1244,-0.5288,-0.2878,-0.3494,-0.1326,0.5234,0.601,0.6734,0.5742,0.3414,0.2022,0.2208,0.352,0.478,0.6788,0.8822,1,0.976,0.8742,0.8018,0.9036,0.8608,0.7456,0.3038,-0.2664,-0.0736,0.3306,0.3602,0.3386,0.0602,-0.1004,-0.1432,-0.1754,-0.505,-0.2348,-0.2546,-0.0858,0.2406,0.46,0.0718,-0.1618,-0.2264,-0.3474,-0.4206,-0.3192,-0.159,-0.0098,-0.052,0.2236,0.5246,1,0.8932,0.7524,0.6456,0.8762,0.8172,0.263,-0.2462,-0.2856,-0.1984,0.142,0.1984,0.1448,0.1026,-0.0662,0.4054,0.4594,0.3514,0.8378,1,0.946,0.7298,0.4594,0.4054,-0.027,-0.2432,-0.1892,-0.3514,-0.4594,-0.2972,-0.081,-0.1352,-0.5676,-0.5676,-0.5136,-0.5136,-0.7838,-0.4054,-0.4594,-0.1892,-0.1892,-0.1892,-0.2972,-0.6216,-0.1352,-0.027,0.027,0.3192,0.3192,0.3192,0.7446,0.8724,1,0.7022,0.7022,0.617,0.1914,-0.0212,-0.3192,-0.4042,-0.4894,-0.3192,-0.3618,-0.3192,-0.149,-0.2766,-0.234,-0.3192,-0.3618,0.0212,0.2766,0.1064,-0.2766,-0.0638,-0.234,-0.3618,0.0212,0.0638,-0.1064,-0.575,-0.4,-0.35,-0.25,0.275,0.35,0.475,0.725,0.725,0.675,0.475,0.65,0.85,1,1,0.6,0.475,0.525,0.75,0.725,0.7,0.225,0.175,0.425,0.45,0.325,0.025,0.025,-0.05,-0.125,-0.025,-0.2,-1,-1,-1,-1,-0.8096,-0.7592,-0.6666,-0.6274,-0.5714,-0.4342,0.0812,0.4594,0.1204,-0.0252,-0.1204,-0.1764,-0.2436,-0.367,-0.4034,-0.4258,-0.5042,-0.6414,-0.689,-0.6946,-0.7254,-0.7732,-0.8152,-0.846,-0.8656,-0.902,-0.8852,-0.9328,-1,-1,-1,-1,-1,-0.9142,-0.9,-0.8704,-0.8522,-0.8256,-0.7616,-0.5462,0.1172,0.7292,0.7188,0.6712,0.6912,0.674,0.6396,0.4614,0.0686,-0.305,-0.632,-0.7312,-0.7722,-0.8132,-0.858,-0.897,-0.8914,-0.9132,-0.9246,-0.9246,-0.9342,-1,-1,-1,-1,-1,-0.9068,-0.9668,-0.9334,-0.9,-0.8734,-0.9,-0.89,-0.8186,-0.6416,-0.623,-0.6058,-0.59,-0.5772,-0.5916,-0.6486,-0.7086,-0.6744,-0.4844,-0.5334,-0.5734,-0.6934,-0.6068,-0.6668,-0.76,-0.6234,-0.74,-0.71,-0.8534,-1,-1,-1,-1,-1,-0.8286,-0.9714,-0.9714,-0.9714,-0.9142,-0.8572,-0.1142,0.7428,0,-0.8572,-0.9714,-1,-0.8572,-0.8572,-0.6572,-0.6858,-0.6572,-0.8858,-0.6572,-0.6572,-0.8,-0.5714,-0.8572,-0.9428,-0.9714,-0.8,-0.8858,-0.8858,-1,1,1,1,1,1,1,1,1,1,1,0.2892,0.2982,0.3406,0.3666,0.3694,0.3934,0.4108,0.4186,0.273,-0.2264,-0.36,0.6942,-0.5082,-0.2716,-0.0782,0.0142,0.3604,-1,0.4074,0.7284,1,0.6544,0.284,-0.0618,0.0124,-0.1852,-0.037,-0.358,-0.0618,-0.1358,-0.0618,-0.0124,-0.1358,0.0124,0.0124,-0.2098,-0.2098,-0.1604,-0.037,-0.0864,0.0124,-0.0864,-0.0864,0.037,-0.0864,-0.3086,-0.2592,-0.0124,-0.0124,-0.605,0.4146,0.683,1,0.6586,0.439,-0.1464,-0.0488,0.0488,-0.1708,-0.0976,-0.1952,-0.0244,0.0488,-0.0732,0,0.122,-0.2926,-0.2926,-0.2926,-0.4634,-0.0488,-0.1708,0,0.0488,-0.0244,-0.0244,-0.0732,-0.0976,-0.2926,0.0244,0.0244,-0.561,0.534,0.6894,1,0.8058,0.4952,0.0292,0.2038,0.1262,0.1844,-0.0098,-0.0874,-0.0098,0.1844,0.2234,-0.068,0.1068,0.1068,-0.0098,-0.0098,0.0098,0.0292,0.165,0.2234,0.1456,0.0874,0.4758,0.4952,-0.1456,-0.1456,0.0098,0.1262,-0.1456,-0.5424,-1,-1,1,-1,1,1,-0.8,-1,0.0162,0.0162,0.3064,0.2904,-0.1936,-0.3064,0.113,0.0162,0.5968,0.9516,0.7258,1,0.4516,-0.0806,0.3548,0.4838,0.3226,0.113,0.0322,0.1452,0.5806,0.758,0.5646,0.4194,-0.129,0.242,0.387,0.4838,0.1612,-0.0968,-0.0162,-0.1612,'25'
0.4834,0.9478,1,0.9146,0.4834,0.3508,0.3508,0.2418,-0.0806,-0.5592,-0.5308,-0.2086,-0.09,-0.417,-0.7014,-0.6446,-0.7488,-0.583,-0.545,-0.763,-0.4218,-0.256,-0.071,-0.3128,-0.2132,-0.4312,-0.7868,-0.7962,-0.872,-0.9574,-0.8342,-0.673,-0.494,-0.275,-0.4794,0.161,0.6376,0.7074,0.8178,1,0.8546,0.5952,0.2402,-0.2586,-0.2862,-0.3486,-0.516,-0.6596,-0.5106,-0.5528,-0.516,-0.5014,-0.2346,-0.1886,0.367,0.5088,0.1886,-0.2788,-0.2916,-0.1518,-0.0046,0.1242,0.2586,0.2806,-0.4772,-0.2792,-0.4924,-0.2284,0.2368,0.3452,0.7902,1,0.9526,0.9324,0.9154,0.406,0.1946,-0.0914,-0.2148,-0.2944,-0.2504,-0.176,-0.247,-0.1168,-0.071,0.1658,0.4382,0.472,0.1878,-0.0964,0.2656,0.3266,0.1878,0.2572,0.4822,0.4248,-0.5192,-0.3344,-0.6116,-0.384,0.0898,0.2404,0.6852,0.8666,1,0.8494,0.8152,0.562,0.2866,-0.0538,-0.1206,-0.1412,-0.2814,-0.0932,-0.0966,-0.018,-0.023,0.213,0.4132,0.2044,-0.0728,0.0042,0.1668,0.2558,0.119,0.0984,0.314,0.4148,-0.4536,-0.2696,-0.5484,-0.3142,-0.0446,0.251,0.6728,0.8066,1,0.751,0.79,0.8142,0.816,0.5558,0.342,0.2044,0.197,0.2696,0.2044,0.5298,0.565,0.4926,0.225,-0.0148,-0.3104,-0.2956,0.1748,0.2138,0.1078,0.067,0.2844,0.4164,-0.4094,-0.1608,-0.611,-0.3992,0.3218,0.3666,0.5274,0.5642,0.2506,0.0062,-0.112,-0.0082,0.3156,0.5948,0.607,0.666,0.721,0.7394,0.668,0.886,1,0.6252,0.2362,-0.0102,-0.1732,-0.3992,-0.3096,0.0794,0.1832,0.0672,-0.0448,0.059,-0.3872,0.0356,-0.3372,-0.1068,0.2446,0.4726,0.4134,-0.1188,-0.4394,-0.62,-0.3682,-0.2802,-0.2328,-0.266,-0.1662,0.095,0.6342,0.7388,0.9596,1,0.7744,0.8124,0.6248,0.589,0.4324,-0.1496,-0.2518,-0.43,-0.5748,-0.1496,-0.0546,-0.1354,0.4166,0.5,1,0.3334,-0.25,0.5,0.4166,0.5,0.5,0.25,0.3334,0.5,0.5,0.5,-0.4166,0,0.25,0.1666,0.0834,-0.1666,0.0834,0.0834,0.5834,0.3334,-0.1666,0.0834,0.5,0.6666,0.4166,0.1666,-0.6666,-0.5834,0.3636,0.5454,0.3636,-0.091,-0.3636,0.091,-0.3636,0.3636,0.3636,-0.1818,-0.2728,0.1818,0.1818,-0.3636,0.3636,0.1818,0.1818,-0.3636,0.091,0.2728,-0.091,0.6364,1,0.909,0.091,-0.4546,-0.091,0.2728,0.091,-0.091,-0.1818,0.091,-0.3422,-0.1316,-0.4736,-0.2368,0.2632,0.2894,0.6578,0.8948,0.6316,0.2632,0.1578,0.2368,0.5264,0.8948,0.7894,0.7632,0.579,0.6842,0.6578,0.8422,1,0.7106,0.0264,-0.1316,-0.1316,-0.0264,-0.1052,0.3684,0.1578,0.1316,0.2368,0.2368,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7932,-0.6924,-0.3702,0.399,0.8846,0.3318,-0.0576,-0.1154,-0.1778,-0.2116,-0.1682,-0.25,-0.4568,-0.524,-0.577,-0.5818,-0.6826,-0.7116,-0.7836,-0.8124,-0.8702,-0.899,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9318,-0.9096,-0.8372,-0.3774,0.8254,0.6584,0.3816,0.3124,0.2006,0.0846,-0.208,-0.5944,-0.7296,-0.7764,-0.8286,-0.8308,-0.8564,-0.8894,-0.902,-0.902,-0.916,-0.9286,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.86,-0.9068,-0.9528,-0.8454,-0.6706,-0.5822,-0.5874,-0.617,-0.7012,-0.798,-0.777,-0.693,-0.664,-0.66,-0.5334,-0.56,-0.4634,-0.5834,-0.6468,-0.6734,-0.8068,-0.8734,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,-0.9714,-0.7714,0.8,0.5142,-0.9714,-1,-0.9714,-0.9142,-0.7428,-0.6858,-0.8572,-0.9714,-0.8,-0.8,-0.8858,-0.8286,-0.7714,-0.9142,-0.9428,-0.8572,-0.5142,-1,-1,-0.1002,-0.043,0.0542,0.1812,0.351,0.584,0.8314,1,1,1,-0.2904,-0.296,-0.3272,-0.2914,-0.226,-0.093,0.0158,0.1072,0.0588,-0.2668,-0.3066,1,-0.9052,-0.884,-0.8594,-0.852,-0.8456,-1,0.2084,-0.0834,0.6458,0.7708,0.6458,0.5626,0.9166,0.8334,0.6666,0.8958,0.8958,1,0.7292,0.5416,0.6042,0.5208,0.3542,0.25,0.6876,0.6458,0.4584,0.4584,0.3542,0.5,0.5208,0.1042,0.4792,0.375,0.5,0.1876,0.1458,-0.5,0.426,0.8334,0.3334,0.0186,0.3888,0.7408,1,0.8518,0.6482,0.6296,0.4074,0.7222,0.963,0.5556,0.2408,0.2778,0.2962,-0.0186,0.3888,0.4814,0.6112,0.4074,0.4444,0.074,0.426,0.1852,0.6112,0.574,0.426,0.2408,0.2038,-0.3148,0.8646,0.8646,0.4136,0.564,0.594,1,0.9548,0.985,0.8496,0.7142,0.3984,0.9548,0.8646,0.594,0.1128,0.173,0.4436,0.2932,0.2782,0.564,0.5338,0.5038,0.8796,0.233,0.4286,0.7142,0.2482,0.0226,0.5338,0.639,-0.0076,-0.594,-0.9404,1,-1,-1,-1,-1,0.8,-1,-1,0.098,0.1568,-0.0588,-0.0588,-0.1764,0.0392,0.1176,-0.1764,0.2156,0.7648,0.5294,0.6274,0.647,0.4902,0.0784,0.0196,0.196,0.2156,0.4706,0.196,0.4706,0.9608,1,0.5098,-0.1764,0,0.0392,0.647,0.5686,0.2942,0.0588,-0.1764,'25'
-0.2982,0.0224,0.5132,0.3388,-0.0264,-0.5092,-0.566,-0.6714,-0.6348,-0.6308,-0.5578,-0.4848,-0.2536,-0.2374,0.006,0.1562,0.5578,0.789,0.7038,0.3996,0.355,0.29,0.4158,0.6796,1,0.9878,0.3468,0.0832,-0.1116,-0.1116,-0.1968,-0.1724,-0.3886,-0.0222,0.5446,0.43,-0.4012,-0.5032,-0.6688,-0.7612,-0.691,-0.828,-0.8152,-0.6496,-0.5956,-0.4936,-0.3854,-0.344,-0.0668,0.105,0.5096,0.9426,1,0.535,0.535,0.516,0.6434,0.6592,0.605,0.2198,-0.07,-0.344,-0.2708,-0.5,-0.372,-0.0116,0.5702,0.4578,-0.3586,-0.5438,-0.6364,-0.6166,-0.9702,-0.6826,-0.752,-0.8348,-0.491,-0.5338,-0.4546,-0.3852,-0.1074,0.0446,0.2926,0.8248,0.8446,1,0.762,0.6628,0.7356,0.914,0.7422,0.5074,0.1206,0.0512,0.028,-0.1074,-0.369,-0.058,0.438,0.3312,-0.4662,-0.661,-0.6924,-0.664,-0.7802,-0.7048,-0.7142,-0.7048,-0.6076,-0.6044,-0.529,-0.4788,-0.325,-0.2088,0.1428,0.5322,0.777,1,0.7676,0.639,0.6326,0.7552,0.6734,0.5102,0.1836,0.055,0.0362,-0.0644,-0.3666,-0.0568,0.4906,0.4114,-0.5456,-0.8142,-0.6352,-0.5456,-0.8072,-0.766,-0.7142,-0.8658,-0.7142,-0.6352,-0.556,-0.5078,-0.4252,-0.2598,0.0774,0.253,0.4974,1,0.9794,0.5388,0.5628,0.525,0.7142,0.5456,0.308,0.0672,0.0602,-0.0464,-0.3534,0.0338,0.4706,0.4494,-0.627,-0.8508,-0.7088,-0.6306,-0.7194,-0.6874,-0.5772,-0.5026,-0.5488,-0.588,-0.5702,-0.556,-0.5276,-0.3464,0.0302,0.254,0.6412,0.9006,1,0.8436,0.762,0.7868,0.6802,0.7016,0.3428,0.0374,0.0516,-0.048,-0.4884,0.0232,-0.1744,-0.1318,-0.7596,-0.7558,-0.6472,-0.7364,-0.6628,-0.7558,-0.6356,-0.4844,-0.4962,-0.4844,-0.562,-0.4534,-0.531,-0.3566,-0.2286,0.0698,0.314,0.9148,1,0.5736,0.4844,0.6512,0.4264,0.283,-0.252,-0.2906,-0.1318,-0.2364,-0.1764,0.2942,0.353,0.2352,0,-0.4118,-0.1764,-0.2352,-0.2352,-0.4118,-0.5294,-0.0588,0.1176,0.1176,0.4706,0.5882,0.7648,0.5882,-0.1176,-0.5882,-0.0588,0.1176,0.4118,0.4706,1,0.8824,0.0588,0.353,0.353,0.4118,0.4706,0.2942,-0.1578,0,0.4736,0.421,0.2106,-0.2106,-0.579,-0.7368,-0.3158,-0.2632,-0.2632,-0.1052,-0.1052,-0.1052,0.1052,0.3684,0.4736,0.7368,0.3158,0.1578,0.1578,0,0.3684,0.6316,1,0.6316,0.2106,0,-0.0526,0,0.2106,0.2106,-0.2584,-0.0112,0.4382,0.3484,-0.3484,-0.618,-0.5056,-0.4382,-0.7304,-0.5506,-0.5056,-0.5956,-0.618,-0.5956,-0.4832,-0.3932,-0.1236,-0.0338,0.2134,0.573,0.7978,1,0.8202,0.663,0.663,0.7528,0.7304,0.4832,0.2134,0.2134,0.0786,0.0338,-0.773,-0.7434,-0.7402,-0.75,-0.8322,-0.8914,-0.8422,-0.8224,-0.7566,-0.6612,-0.296,0.296,0.773,0.9704,0.8782,0.7434,0.4968,0.3224,0.1218,-0.1218,-0.352,-0.6382,-0.7928,-0.8388,-0.8848,-0.8848,-0.9078,-1,-1,-1,-1,-1,-1,-0.8456,-0.811,-0.6116,-0.186,0.6492,0.5608,0.5878,0.961,0.9656,0.7226,0.8126,0.2308,0.3958,0.4498,0.4588,0.5038,0.3254,-0.0404,-0.2504,-0.3644,-0.4288,-0.7076,-0.841,-0.847,-0.874,-0.8726,-0.892,-1,-1,-1,-1,-1,-1,-0.7634,-0.8368,0.3832,1,1,1,1,1,1,1,1,-0.398,-0.592,-0.58,-0.702,-0.674,-0.628,-0.634,-0.7,-0.762,-0.3946,-0.802,-0.87,-0.7768,-0.7934,-0.85,-0.8434,-1,-1,-1,-1,-1,-1,-0.2858,1,1,0.2286,-0.4572,-0.9142,-0.9142,-0.9142,-0.9142,-0.3714,0.6858,0.8286,-0.7142,-0.9428,-0.9142,-1,-0.7428,-0.9428,-1,-0.8572,-0.2286,0.0858,-0.6572,-0.9428,-0.9714,-0.9428,-0.6286,-1,-1,-1,-1,-1,-1,-0.1822,-0.1908,-0.2026,-0.1586,-0.1312,-0.1424,-0.199,-0.2756,-0.2948,-0.3226,0.2214,0.2504,0.3032,0.3668,0.4116,0.4782,0.5592,0.6384,0.7406,0.8436,-0.4934,0.2118,0.7946,0.6566,0.156,0.144,0.2954,-0.8834,-0.474,-0.5514,-0.7864,-0.6022,-0.7222,-0.4874,-0.5354,-0.434,-0.5114,-0.5994,-0.562,-0.3164,-0.2364,-0.3432,-0.2924,-0.0628,0.028,-0.0922,-0.2176,-0.0226,0.271,0.4712,0.6956,0.8692,1,0.9066,0.9012,0.9226,0.936,0.57,0.5328,0.0788,-0.863,-0.7644,-0.8522,-0.6232,-0.7174,-0.7216,-0.6316,-0.4668,-0.5632,-0.6188,-0.636,-0.364,-0.2762,-0.394,-0.2142,-0.0128,-0.1564,-0.2184,-0.0128,0.045,0.2612,0.454,0.5654,0.666,0.8094,0.8352,1,0.9658,0.985,0.9358,0.7174,0.4154,-0.517,-0.4762,-0.5284,-0.6916,-0.737,-0.6894,-0.6054,-0.3016,-0.2744,-0.5124,-0.5692,-0.1996,-0.068,-0.415,-0.331,-0.1496,-0.2154,-0.1202,-0.0816,0.1156,0.2834,0.4988,0.6054,0.7732,0.975,0.864,0.9184,1,0.9456,0.8322,0.678,0.3946,-0.5052,-1,1,-1,1,0,-0.8,0.8666,-1,-0.0172,0.2068,0,0.3448,0.2586,0.4138,0.3104,0.2242,0.3966,1,0.9482,0.7414,1,0.7586,0.1552,0.569,0.431,0.4482,0.2068,0.0862,0.1206,0.0862,0.362,0.0518,0.1724,0.2758,0.069,0.0344,-0.0862,-0.1206,-0.2586,-0.2414,'26'
-0.1238,0.2952,0.8248,0.7676,-0.1772,-0.5352,-0.5086,-0.3638,-0.6152,-0.6266,-0.5276,-0.322,-0.2952,-0.1734,0.0286,0.1734,0.5504,0.9886,1,0.962,0.882,0.5886,0.92,0.8248,0.9504,0.7676,0.5086,0.002,-0.1466,-0.2114,-0.2952,-0.318,-0.2846,0.082,0.5886,0.5916,-0.535,-0.7944,-0.6482,-0.5172,-0.6632,-0.6752,-0.6752,-0.538,-0.4188,-0.398,-0.5022,-0.4784,-0.1564,0.073,0.3056,0.9822,1,0.6424,0.4932,0.526,0.5172,0.383,0.2846,-0.1236,-0.243,-0.2518,-0.5738,-0.5828,-0.3296,0.023,0.4584,0.4442,-0.6676,-0.8138,-0.8568,-0.6618,-0.6906,-0.682,-0.768,-0.5358,-0.5128,-0.4958,-0.5816,-0.467,-0.2808,-0.0372,0.1748,0.6762,0.9084,1,0.7994,0.6962,0.404,0.6734,0.6104,0.1404,0.0688,0.0316,-0.1748,-0.2034,-0.314,0.0448,0.3864,0.3864,-0.6904,-0.9392,-0.7396,-0.6324,-0.78,-0.7626,-0.7134,-0.5716,-0.4934,-0.508,-0.5254,-0.45,-0.314,-0.2098,-0.0072,0.5832,0.7222,1,0.754,0.6498,0.5138,0.4934,0.5918,0.2244,0.1288,0.0072,-0.0218,-0.0854,-0.3438,0.0624,0.2188,0.2728,-0.571,-0.8664,-0.7756,-0.662,-0.7358,-0.7358,-0.625,-0.5994,-0.4858,-0.5482,-0.6022,-0.5624,-0.4432,-0.2784,0.159,0.2244,0.5966,0.8892,1,0.554,0.4772,0.7018,0.4518,0.2614,0.2756,0.1278,-0.1164,-0.037,-0.3454,0.1802,0.2926,0.4016,-0.4082,-0.7686,-0.9174,-0.6,-0.6628,-0.6562,-0.5306,-0.329,-0.5736,-0.6132,-0.5338,-0.5604,-0.5504,-0.2562,0.1174,0.3554,0.9108,1,0.99,0.8214,0.6496,0.8016,0.795,0.4876,0.309,0.1306,-0.038,-0.1636,-0.5356,0.2246,0.1094,0.3052,-0.1594,-0.739,-0.3704,-0.3742,-0.5892,-0.6968,-0.7236,-0.6276,-0.6506,-0.6546,-0.6814,-0.547,-0.1478,0.2592,0.4664,0.739,0.7774,0.9348,1,0.9962,0.7774,0.7736,0.6354,0.4358,0.048,-0.0786,-0.1786,-0.0672,-0.1352,0.2432,0.3514,0.2972,0.1892,-0.027,-0.1352,-0.2972,-0.5676,-0.5136,-0.1892,-0.2972,-0.027,0.027,0.1892,0.6756,0.946,0.946,0.6216,0.3514,0.2972,0.4594,0.7298,0.946,1,0.946,0.4594,0.3514,0.1892,-0.027,0.081,0.081,0.027,0.4594,0.6216,0.5136,0.081,-0.1892,-0.081,-0.081,-0.1352,-0.4054,-0.5136,-0.081,0.1892,0.2432,0.3514,0.5676,0.6756,0.8918,0.946,0.6216,0.5676,0.6756,0.6756,0.6216,0.8918,1,0.4054,-0.027,-0.027,0.027,0.1352,0.1352,-0.2958,0.0422,0.6056,0.6056,-0.6902,-0.7464,-0.6056,-0.4084,-0.5212,-0.5774,-0.6338,-0.5492,-0.6056,-0.5492,-0.7184,-0.6902,-0.3522,0.1268,0.2676,1,0.9718,0.7464,0.6902,0.6902,0.4648,0.5492,0.5212,0.0704,-0.155,-0.183,-0.493,-0.5492,-0.7536,-0.6512,-0.6096,-0.5776,-0.6128,-0.728,-0.792,-0.792,-0.7248,-0.488,-0.2064,0.4112,0.8912,0.7728,0.5808,0.344,0.1648,-0.0016,-0.1648,-0.2832,-0.4048,-0.5424,-0.7568,-0.8944,-0.9264,-0.8656,-0.9008,-1,-1,-1,-1,-1,-1,-0.7514,-0.6346,0.9394,1,1,1,1,1,1,1,1,0.734,0.933,0.8292,0.6692,0.481,0.36,0.2822,0.0336,-0.0508,-0.1028,-0.3644,-0.7082,-0.8292,-0.8378,-0.8032,-0.8422,-1,-1,-1,-1,-1,-1,-0.8134,-0.7468,0.3466,0.9766,1,1,1,1,1,1,0.5932,-0.4382,-0.6382,-0.6528,-0.66,-0.6528,-0.5546,-0.3168,-0.4418,-0.33,-0.2868,-0.5634,-0.6834,-0.6268,-0.81,-0.8734,-0.72,-1,-1,-1,-1,-1,-1,0.5714,1,1,-0.1428,-0.7714,-0.6572,-0.8,-0.8572,-0.6286,-0.3142,1,1,-0.8572,-0.8,-0.8572,-0.9142,-1,-0.9714,-0.9714,-1,-0.9142,0.7714,0.1142,-0.9428,-1,-0.8286,-0.2,-1,-1,-1,-1,-1,-1,-0.2358,-0.222,-0.2302,-0.252,-0.259,-0.3006,-0.3408,-0.3656,-0.4182,-0.3898,0.2882,0.3016,0.3008,0.342,0.3786,0.3736,0.43,0.5194,0.6212,0.732,-0.56,0.3648,1,0.8768,0.654,0.5978,0.7924,-0.7334,-0.267,-0.355,-0.5446,-0.681,-0.755,-0.593,-0.5306,-0.348,-0.5792,-0.593,-0.3456,-0.1052,-0.163,-0.4336,-0.3618,-0.1908,0.0242,0.082,0.3872,0.4752,0.6578,0.8336,1,0.956,0.8798,0.6532,0.7202,0.5862,0.5306,0.429,0.311,0.0612,-0.7018,-0.5828,-0.754,-0.6664,-0.6746,-0.5934,-0.5224,-0.364,-0.4014,-0.3744,-0.2116,-0.2368,-0.0802,-0.1742,-0.2262,-0.1386,0.0302,0.0448,0.3118,0.4808,0.5766,0.5934,0.6934,0.7956,0.7142,0.7726,0.877,1,0.8998,0.8206,0.6372,0.4494,-0.4242,-0.5594,-0.637,-0.6496,-0.7246,-0.5068,-0.4718,-0.0514,-0.0188,-0.194,-0.279,-0.0664,0.0112,-0.0888,-0.204,-0.204,0.0614,0.1914,0.4618,0.4768,0.6446,0.8924,0.9924,0.965,0.995,0.9024,1,0.9774,0.945,0.7948,0.5144,0.244,1,-1,1,-1,1,-0.4,-1,0.9,-1,-0.2904,0.2044,0.1398,0.2044,0.1612,0.4194,0.3118,0.1612,0.742,0.6344,0.5698,0.7634,0.9354,0.6344,0.2688,0.3978,0.3764,0.4408,0.8064,0.6774,0.5054,1,0.7204,0.2688,0.0108,0.0968,0.0752,0.4194,0.3548,0.0968,-0.0538,-0.5268,'26'
-0.3666,-0.1154,0.4698,0.9002,1,0.7624,0.58,0.494,0.2254,0.0706,0.0774,0.1738,0.3804,0.4526,0.5732,0.9346,0.8382,0.9518,0.7212,0.759,0.8278,0.883,0.8072,0.8038,0.3942,0.4044,0.4182,0.339,0.5766,0.5938,0.587,0.4974,-0.5014,-0.1736,0.2506,0.7272,0.8016,0.3912,0.2644,0.2782,0.19,0.0798,0.0578,0.0304,0.2644,0.3802,0.4546,0.5786,0.9532,1,0.6226,0.664,0.7272,0.8292,0.7024,0.6776,0.5068,0.3472,0.4794,0.5316,0.5262,0.7824,0.7988,0.6198,-0.627,-0.1746,0.2302,0.7752,0.754,0.1772,0.1164,0.1428,0.164,0.0424,0.008,0.0264,0.164,0.2778,0.3254,0.627,0.8916,0.9418,0.6534,0.6138,0.7646,0.8784,0.7936,0.6826,0.5688,0.4814,0.5634,0.5344,0.754,1,0.9708,0.9022,-0.6046,0.0398,0.525,1,0.9036,-0.2624,-0.093,-0.02,-0.0564,-0.1096,-0.2326,-0.1162,0.0432,0.0864,0.1428,0.2192,0.8504,0.99,0.8504,0.7674,0.774,0.9734,0.9634,0.814,0.6678,0.5116,0.5814,0.4784,0.7906,0.9734,0.9868,0.8206,-0.5294,0.364,0.5736,0.6102,0.4486,-0.2574,-0.3346,-0.3676,-0.5368,-0.5294,-0.3898,-0.386,-0.386,-0.1838,-0.158,-0.0294,0.2794,0.7426,0.9376,1,0.7058,0.8162,0.8456,0.783,0.5368,0.3786,0.5404,0.4118,0.625,0.8014,0.9338,0.6912,-0.4576,0.6886,0.901,0.4858,0.1746,-0.4528,-0.5094,-0.6934,-0.6792,-0.7972,-0.599,-0.6792,-0.5236,-0.585,-0.5284,-0.4576,-0.118,0.3114,0.9812,1,0.7878,0.7312,0.8868,0.7642,0.5,0.2264,0.5048,0.2594,0.4576,0.8632,0.9198,0.2924,-0.0388,0.3672,0.4508,0.4986,-0.0328,-0.8626,-0.8388,-0.8268,-0.8448,-0.9164,-0.8508,-0.7432,-0.6298,-0.6776,-0.4508,-0.4448,-0.4268,0.1642,0.9104,1,0.785,0.9462,0.9344,0.7374,0.588,0.2358,0.009,0.0746,0.2776,0.6896,0.6716,0.2598,-0.5264,0.0526,0.421,0.8422,0.8948,0.7368,0.6842,0.4736,0.2106,-0.1578,0.0526,0.1578,0.1052,0.3158,0.6316,0.8422,0.7368,0.6842,0.7368,0.579,0.579,1,0.8948,0.4736,0.1052,0.421,0.4736,0.1578,0.421,0.5264,0.2632,0.3158,-0.2766,-0.1064,0.3192,0.7446,0.8724,0.7446,0.3192,0.3618,0.1914,0.1064,-0.0212,0.149,0.1914,0.532,0.532,0.8724,1,0.9148,0.7022,0.532,0.8298,0.9574,0.7446,0.6596,0.234,0.2766,0.2766,0.3618,0.4042,0.7022,0.7022,0.4468,-0.6304,-0.0652,0.5,1,0.913,-0.3478,-0.1086,0,-0.0218,-0.087,-0.2608,-0.1956,0.0218,0.1086,0.0218,0.2174,0.8044,0.913,0.7174,0.6086,0.8696,0.9566,0.9348,0.7174,0.674,0.5218,0.6522,0.4782,0.7608,0.8696,0.9566,0.7826,-1,-1,-1,-1,-1,-1,-1,-0.9886,-0.9836,-0.9366,-0.4884,-0.2286,0.1182,0.3902,0.5676,0.8714,0.4858,-0.174,-0.4454,-0.5448,-0.718,-0.8592,-0.9036,-0.9156,-0.9424,-0.9722,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9864,-0.9858,-0.91,-0.4954,-0.4322,-0.0996,0.2742,0.7468,0.9528,0.0882,-0.4176,-0.635,-0.7522,-0.8096,-0.9222,-0.9388,-0.9398,-0.955,-0.9622,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.9268,-0.69,-0.6234,-0.809,-0.74,-0.54,-0.4578,-0.4912,-0.669,-0.5756,-0.8646,-0.9512,-0.849,-0.8646,-0.9168,-0.7668,-0.6534,-0.45,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7142,-0.0858,1,1,-0.4,-0.5714,-0.8286,-0.7714,-0.3142,-0.0572,-0.6572,-0.3428,-0.2286,-0.4286,-0.5428,-0.8,-0.7428,-0.8,-0.8,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.4448,-0.3118,-0.3052,-0.2996,-0.2858,-0.2728,-0.244,-0.2118,-0.1422,0.0068,0.2496,-0.36,0.047,-0.4224,-0.4718,-0.4464,-0.4066,-0.2878,1,-0.2034,-0.1186,-0.017,-0.0508,0.1694,0.017,0.1694,0.5084,0.356,0.2204,0.1526,0.339,0.4746,0.4068,0.1864,0.1356,0.2034,0.3728,0.4068,0.4238,0.5424,0.7458,0.6102,0.8474,0.8984,1,0.9662,0.8474,0.7288,0.4576,0,-0.1016,0.0412,0.4226,0.4846,0.4432,0.1958,0.2578,0.299,0.7938,1,0.7526,0.9382,0.866,0.701,0.536,0.7628,0.8144,0.7114,0.5154,0.1546,-0.2372,-0.1958,-0.299,-0.2164,-0.134,0.0722,-0.0722,0.1134,0.0824,0.0516,0.0722,-0.0206,-0.3506,0.0974,0.538,0.834,0.7618,0.4224,0.2708,0.4368,0.5668,0.9278,0.834,0.9856,1,0.6824,0.6678,0.7256,0.7906,0.6606,0.5812,0.2636,-0.2346,-0.4008,-0.3358,-0.0686,-0.0974,-0.0252,0.0324,0.1696,0.1552,0.018,0.148,0.0974,-0.3574,-0.4576,-1,-1,1,-0.6,-1,-1,-0.5666,1,-0.3452,-0.3628,0.1504,0.3274,0.1328,0.1504,0.593,0.7346,0.3982,0.3982,0.6106,0.5752,0.6814,0.6106,0.947,1,0.3982,0.3452,0.5398,0.9116,1,0.5044,0.3982,0.3628,0.1682,-0.1504,-0.2036,0.0088,0.1858,0.3098,0.3274,-0.1504,'1'
-0.464,-0.1428,0.2326,0.5374,0.9074,0.8312,0.3904,0.3578,0.3878,0.3552,0.2436,0.3688,0.4912,0.6,0.9102,0.9102,1,0.7796,0.7714,0.853,0.8694,0.9402,0.7796,0.7252,0.5184,0.521,0.5864,0.502,0.63,0.9428,0.9346,0.9728,-0.5194,-0.199,0.199,0.4512,0.8728,0.8446,0.218,0.086,0.0058,0.0766,0.0694,0.3216,0.305,0.4158,0.6962,0.7244,0.9316,0.8586,0.7408,0.795,0.8328,0.8916,0.8516,0.6654,0.5194,0.536,0.5454,0.5312,0.6726,0.8398,0.9364,1,-0.4628,-0.1534,0.3316,0.3936,0.7524,0.6906,0.2624,0.0544,-0.01,0.0372,0.0148,0.146,0.2624,0.3144,0.5594,0.8144,0.9356,0.906,0.8738,0.8366,0.8936,0.9752,0.854,0.7872,0.5916,0.5694,0.6164,0.599,0.7798,0.9654,0.958,1,-0.4766,-0.158,0.386,0.4094,0.588,0.4094,0.1424,-0.1088,-0.088,-0.0362,0.013,0.013,0.1192,0.241,0.3756,0.5932,0.9146,1,0.9482,0.759,0.7928,0.9196,0.9404,0.7668,0.5648,0.5208,0.544,0.5518,0.7616,0.9586,0.987,1,-0.5276,0.0298,0.4512,0.4398,0.4964,0.0326,-0.1456,-0.239,-0.1486,-0.1288,-0.174,-0.1486,-0.058,0.0948,0.1994,0.3494,0.587,0.9236,1,0.8728,0.7624,0.8868,0.9434,0.7142,0.553,0.4512,0.4852,0.4398,0.6182,0.85,0.8614,0.8528,-0.5934,0.2528,0.5538,0.2892,0.2132,-0.2892,-0.3224,-0.3586,-0.3884,-0.5074,-0.428,-0.3752,-0.3786,-0.2166,-0.0644,0.0414,0.2596,0.6298,0.967,1,0.7388,0.7786,0.8016,0.6662,0.4182,0.2826,0.2496,0.233,0.3586,0.6528,0.6694,0.6596,-0.5564,0.3592,0.595,0.331,-0.1162,-0.2922,-0.4436,-0.6022,-0.655,-0.6972,-0.6866,-0.7464,-0.5282,-0.4508,-0.3274,-0.2288,-0.0282,0.4402,1,0.9226,0.7042,0.7816,0.7606,0.5282,0.243,0.081,0.162,0.0106,0.1056,0.4754,0.493,0.5458,-0.4154,-0.2,0.2308,0.3846,0.6924,0.6308,0.3538,0.3538,0.2924,0.2616,0.2616,0.2616,0.3846,0.5692,0.7846,1,0.9384,0.6616,0.5384,0.5692,0.877,0.7538,0.7538,0.5076,0.4154,0.477,0.3846,0.477,0.5692,0.8154,0.877,0.8154,-0.4154,-0.1384,0.2308,0.3846,0.7538,0.6924,0.4154,0.323,0.3846,0.2924,0.1692,0.2924,0.477,0.5076,0.7538,0.9692,1,0.6308,0.6616,0.7846,0.7846,0.8154,0.6616,0.6924,0.4154,0.477,0.5692,0.477,0.5692,0.7846,0.8154,0.877,-0.6086,0.1086,0.4782,0.2826,0.2392,-0.2608,-0.326,-0.3478,-0.3044,-0.4782,-0.413,-0.3044,-0.2826,-0.1956,-0.0434,0.0218,0.2608,0.7174,0.9348,1,0.6086,0.8696,0.8478,0.6086,0.3478,0.3044,0.326,0.1304,0.4348,0.7174,0.7608,0.6304,-1,-1,-1,-1,-0.9896,-0.9896,-0.9618,-0.953,-0.7348,-0.4764,-0.177,0.2676,0.9028,0.7464,0.146,-0.0356,-0.134,-0.204,-0.3482,-0.3742,-0.452,-0.5868,-0.7714,-0.8552,-0.9166,-0.9464,-0.9774,-0.9774,-0.9846,-1,-1,-1,-1,-1,-1,-1,-1,-0.9934,-0.993,-0.951,-0.9426,-0.7052,-0.359,0.101,0.5138,0.9146,0.6094,0.256,0.237,0.1844,-0.0376,-0.386,-0.6004,-0.678,-0.7906,-0.8998,-0.9282,-0.9464,-0.9606,-0.965,-0.9686,-0.9636,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.92,-0.6268,-0.72,-0.5368,-0.4334,-0.5134,-0.5176,-0.59,-0.4534,-0.3734,-0.14,0.02,-0.1956,-0.3312,-0.6046,-0.7268,-0.8268,-0.9168,-0.66,-0.6168,-0.4334,-0.3234,-0.3368,-0.3168,-1,-1,-1,-1,-1,-1,-1,-1,-0.6858,0.8,1,1,1,1,-0.4572,-0.4,-0.8286,-0.6858,-0.7142,-0.9428,-0.9428,-0.9428,-0.6858,-0.5714,-0.5428,0.5142,0.1428,-0.7428,-0.6,-0.7428,-0.7714,-0.9142,-0.5428,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.7424,-0.424,-0.4164,-0.3988,-0.3942,-0.375,-0.329,-0.2716,-0.2002,-0.089,0.1558,-0.56,0.0236,0.1646,0.4264,0.413,0.6722,0.9044,1,-0.099,0.3394,0.7718,0.6756,0.4234,0.3094,0.7118,1,0.8978,0.8258,0.8378,0.8378,0.7298,0.5916,0.5796,0.8378,0.8918,0.7718,0.7058,0.4894,0.3634,-0.027,-0.2372,-0.075,0.015,0.099,0.021,-0.081,0.1172,0.2432,0.051,-0.4894,-0.25,0.2778,0.7112,0.7056,0.3334,0.2834,0.4666,1,0.9612,0.7944,0.8778,0.7834,0.6666,0.4722,0.5556,0.8056,0.8944,0.7944,0.3944,0.3278,0.1944,-0.3556,-0.4056,-0.0834,-0.0222,-0.1,-0.0444,-0.1888,-0.0944,0.0166,-0.3444,-0.5388,-0.1954,0.2372,0.7348,0.5024,0.3768,0.3116,0.5396,1,0.9256,0.7348,0.8466,0.7954,0.6232,0.4838,0.7628,0.8232,0.9768,0.8046,0.3442,0.279,0.0744,-0.414,-0.4512,-0.307,-0.2558,-0.307,-0.3768,-0.5116,-0.3674,-0.372,-0.4558,-0.521,-0.3778,-1,-1,1,-0.6,-1,-0.2,-0.3666,1,-0.6034,-0.1552,-0.1896,0.2758,0.1896,0.138,0.1206,0.7758,0.8448,0.7932,0.7586,0.638,0.3966,0.569,0.7758,1,0.3276,-0.0172,0.5518,0.4482,0.3966,0.2414,0.2586,0.6034,0.138,0.1896,0.1206,0.1552,0.0172,-0.2414,-0.3448,-0.4656,'1'
-0.3524,0.095,0.095,0.2666,0.1184,-0.095,-0.4044,-0.342,-0.3472,-0.3914,-0.225,-0.3056,-0.264,-0.0092,0.0924,0.407,0.4174,0.818,0.8128,0.792,0.7764,0.8934,0.7114,0.7322,0.5526,0.5448,0.589,0.5864,0.7816,0.805,1,0.9012,-0.4164,-0.0322,0.0524,0.2072,0.0342,-0.1006,-0.2414,-0.2314,-0.4144,-0.4588,-0.2938,-0.3964,-0.3562,-0.2214,-0.1448,-0.0442,-0.0282,0.3762,0.4748,0.7424,0.6498,0.509,0.5896,0.676,0.7284,0.7566,0.6136,0.5876,0.5634,0.823,1,0.8652,-0.4486,-0.0898,0.145,0.258,-0.061,-0.154,-0.3244,-0.3998,-0.3776,-0.371,-0.3266,-0.3888,-0.4242,-0.2934,-0.2758,-0.1938,0.0564,0.185,0.5726,0.7188,0.7452,0.5482,0.5946,0.7808,0.8648,0.7918,0.6302,0.7142,0.67,0.9048,0.9912,1,-0.4832,-0.2064,0.2202,0.2342,-0.2342,-0.414,-0.5664,-0.4948,-0.5156,-0.4718,-0.5086,-0.5478,-0.5364,-0.354,-0.2688,-0.255,-0.195,-0.022,0.3656,0.6608,0.7624,0.6748,0.534,0.6402,0.8062,0.7302,0.5732,0.6332,0.5732,0.82,1,0.9678,-0.5022,0.145,0.59,0.4494,0.0834,-0.631,-0.7482,-0.6164,-0.549,-0.8624,-0.8536,-0.8536,-0.757,-0.4758,-0.432,-0.4846,-0.2328,-0.0572,0.265,0.795,0.9122,0.795,0.6984,0.833,0.9444,0.7482,0.4788,0.555,0.5226,0.7336,1,0.9912,-0.3284,0.649,1,0.6566,0.0038,-0.751,-0.8642,-0.8716,-0.8452,-0.8642,-0.883,-0.766,-0.668,-0.6528,-0.7736,-0.8038,-0.6114,-0.3472,-0.117,0.4114,0.7056,0.5698,0.4038,0.6,0.6906,0.3434,-0.1434,-0.0264,-0.1584,-0.1246,0.2868,0.385,0.023,0.3994,0.5166,0.3384,-0.084,-0.6946,-0.5726,-0.7302,-0.7964,-0.8118,-0.6998,-0.7048,-0.5012,-0.5624,-0.5166,-0.4402,-0.1298,0.5726,0.9084,0.9134,0.9848,0.8576,1,0.8372,0.5012,0.3078,0.0128,0.2926,0.374,0.2722,0.7048,0.5726,-0.2,0.05,-0.45,-0.4,0.1,0.1,0.15,0.2,0.2,0.05,0.05,0.35,0.55,0.7,0.8,0.95,0.95,0.95,0.65,0.85,1,0.95,0.65,0.75,0.75,0.6,0.6,0.65,0.65,0.65,0.55,0.45,-0.4166,0.125,0.25,0.3334,0,-0.1666,-0.5834,-0.5416,-0.375,-0.5,-0.375,-0.4584,-0.375,-0.0416,0.0416,0.5,0.7084,0.7916,0.75,0.875,1,0.9584,0.75,0.5,0.4166,0.375,0.5,0.5416,0.875,1,1,0.7084,-0.4216,0.2048,0.6144,0.4698,0.1084,-0.5662,-0.4458,-0.518,-0.6144,-0.759,-0.6626,-0.759,-0.6868,-0.6386,-0.6144,-0.4216,-0.253,-0.1084,0.3254,0.8554,1,0.976,0.759,0.759,0.9036,0.8072,0.5422,0.3976,0.494,0.735,0.9518,0.9518,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.716,-0.728,0.664,0.812,0.594,0.456,0.448,0.39,0.474,0.37,0.306,-0.03,-0.636,-0.724,-0.82,-0.878,-0.906,-0.94,-0.946,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.937,-0.9406,0.2496,0.768,0.813,0.885,0.5382,0.294,-0.0732,-0.5452,-0.6906,-0.7474,-0.901,-0.9124,-0.9382,-0.9522,-0.9612,-0.9598,-0.971,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9568,-0.96,-0.248,0.166,0.306,0.258,0.302,0.26,-0.0092,-0.6346,-0.9238,-0.8474,-0.8074,-0.8668,-0.6068,-0.6634,-0.71,-0.7068,-0.78,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,-0.2572,-0.8286,-0.8858,-0.9428,-0.9714,-0.1714,0.3142,-0.4286,-0.6286,-0.6286,-0.7428,-0.8286,-0.8286,-0.9714,-1,-0.8,-1,-1,-1,-1,-1,0.3058,0.3172,0.3276,0.344,0.3784,0.4048,0.4294,0.4456,0.3878,0.0284,0.1384,0.1862,0.2612,0.321,0.4012,0.4758,0.5532,0.6658,0.7778,0.7194,-0.56,0.2352,-0.9402,-0.5984,0.1842,0.5244,0.6868,1,0.8834,0.9666,0.25,0.4166,0.1834,0.1834,0.75,0.5,1,0.5834,0.3834,0.2834,0.6,0.4334,0.3666,0.3,0.4166,0.45,0.15,0.4666,0.1,0.55,0.05,0.2834,0.3834,0.45,0.4834,0.4666,0.2166,0.2,0.25,-0.6666,0.9224,1,0.0292,0.097,0.0874,0.0776,0.3786,0.3884,0.466,0.2234,0.2718,0.2428,0.3786,0.3398,0.097,0.136,0.1456,0.068,0.3496,0.2912,0.3106,0.233,0.1068,0.2816,0.1748,0.0776,0.233,-0.2038,-0.33,-0.1844,0.0776,-0.5146,0.9772,1,0.4546,0.2386,0.159,0.5,0.5,0.3522,0.659,0.5796,0.25,0.1932,0.5568,0.3978,0.5,0.1704,-0.0454,0.0568,0.2046,0.3296,0.2614,0.5228,0.2954,0.4886,0.125,0.3068,0.1932,0.1136,0.1704,0.0568,0.0682,-0.3522,-0.9522,1,-1,-1,-1,0.2,-0.8,-1,-1,0.1552,0.1552,0.2068,-0.0344,-0.138,0.0862,0.2932,0.6896,0.7242,0.7068,1,0.8448,0.5344,0.6034,0.8276,0.4482,-0.0172,0,-0.069,0.0862,0.2758,-0.1034,0.1034,0.1552,-0.1034,-0.1896,0.2242,0.069,-0.1206,0.0518,0.0344,-0.1724,'2'
-0.3408,0.093,0.4002,0.554,0.3408,-0.021,-0.259,-0.2516,-0.1796,-0.2366,-0.2688,-0.2242,-0.083,0.1028,0.1698,0.4474,0.5836,1,0.953,0.7546,0.7298,0.8836,0.6926,0.72,0.4696,0.4646,0.4672,0.5986,0.8266,0.7324,0.891,0.839,-0.3876,0.0264,0.1342,0.3368,0.2122,-0.0348,-0.2164,-0.1384,-0.206,-0.17,-0.2164,-0.2186,-0.1616,-0.1954,0.0708,-0.0074,0.2122,0.6452,0.7782,0.662,0.7444,0.7572,0.8014,0.829,0.8374,0.66,0.622,0.586,0.6178,0.8248,0.8542,1,-0.4052,0.0074,0.0052,0.236,0.1112,-0.1598,-0.2656,-0.1852,-0.2592,-0.219,-0.2424,-0.2424,-0.236,-0.272,0.0074,-0.056,0.1366,0.3798,0.5386,0.7566,0.8794,0.6634,0.7122,0.7608,0.7884,0.6868,0.672,0.5788,0.5598,0.7524,0.7778,1,-0.4238,-0.0576,0.1142,0.2384,-0.0146,-0.1548,-0.2724,-0.3242,-0.3288,-0.444,-0.3424,-0.426,-0.3786,-0.218,-0.191,-0.0984,-0.0396,0.1752,0.5074,0.7966,0.8916,0.8328,0.6656,0.8012,0.8666,0.8508,0.6498,0.5684,0.7762,0.8306,0.9322,1,-0.4876,-0.2076,0.1198,0.1578,-0.21,-0.319,-0.497,-0.6322,-0.6488,-0.5374,-0.6322,-0.599,-0.5564,-0.5112,-0.3832,-0.312,-0.2124,0.0178,0.2574,0.561,0.7604,0.7722,0.637,0.6536,0.7674,0.6488,0.58,0.5706,0.6156,0.7106,0.9194,1,-0.4748,-0.0606,0.3636,0.2804,0.048,-0.4748,-0.75,-0.7878,-0.596,-0.6288,-0.6364,-0.6894,-0.5858,-0.4874,-0.341,-0.3612,-0.2576,0.0126,0.2374,0.654,0.8838,0.8258,0.5934,0.6692,0.7778,0.7298,0.6112,0.4824,0.6136,0.6464,0.8888,1,-0.197,0.6024,0.942,0.637,-0.1312,-0.7644,-0.9884,-0.7992,-0.8108,-0.8996,-0.664,-0.7838,-0.7876,-0.7644,-0.7066,-0.5752,-0.4286,-0.2316,0.0154,0.641,0.834,1,0.8146,0.8764,0.6912,0.7258,0.4634,0.22,0.3204,0.336,0.7414,0.8146,-0.4,0.15,0.65,0.8,0.45,-0.2,-0.35,-0.35,-0.25,-0.25,-0.35,-0.1,-0.1,0.15,0.3,0.9,0.95,0.9,0.9,1,0.7,0.95,0.75,0.5,0.25,0.35,0.4,0.65,0.85,0.85,0.95,0.9,-0.4166,0.0416,0.375,0.5834,0.375,-0.125,-0.2916,-0.375,-0.3334,-0.3334,-0.375,-0.1666,-0.0834,0.0834,0.2084,0.5834,0.625,1,1,0.75,0.6666,0.9584,0.875,0.5834,0.3334,0.3334,0.25,0.625,0.875,0.7916,0.8334,0.875,-0.4046,0.0076,0.0382,0.2214,0.0992,-0.1298,-0.2978,-0.1756,-0.2366,-0.1756,-0.1908,-0.1908,-0.1756,-0.252,0.0382,-0.0534,0.1908,0.3282,0.5114,0.8016,0.8932,0.6642,0.7252,0.6946,0.7404,0.6946,0.6946,0.5878,0.542,0.7404,0.7862,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9692,-0.9768,-0.4608,0.9782,0.7728,0.3902,0.2208,0.1424,0.104,0.0898,0.045,0.0796,0.063,-0.2246,-0.688,-0.8626,-0.864,-0.8858,-0.9332,-0.9692,-0.973,-0.9782,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9864,-0.9878,-0.7464,0.27,0.76,0.9074,0.6876,0.8022,0.6838,0.5492,0.1574,-0.1362,-0.5518,-0.7672,-0.9004,-0.9186,-0.9478,-0.9528,-0.9672,-0.978,-0.9768,-0.982,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.9268,-0.5634,-0.3312,0,0.2044,0.184,0.156,0.364,0.26,0.288,-0.076,-0.65,-0.954,-0.62,-0.4968,-0.6768,-0.72,-0.7268,-0.8334,-0.7734,-0.8734,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,0.4572,-0.8286,-0.9428,-0.8,-0.9714,-0.8572,-0.8,-0.2858,0.6858,-0.1714,-0.2858,0,0.0858,-0.4572,-0.5142,-0.9142,-0.9428,-0.8286,-1,-1,-1,0.3674,0.37,0.3828,0.405,0.4136,0.446,0.4754,0.5056,0.4964,0.1602,0.1066,0.1378,0.1754,0.2394,0.2806,0.372,0.4468,0.5396,0.6648,0.8042,-0.68,0.1412,-0.7478,-0.2052,0.2316,0.4932,0.6122,1,-0.6666,0.0666,0.1334,0.2,0.2,0.6666,0.9334,0.7334,0.4666,0.7334,0.6666,0.3334,0.6,0.4666,0.4,0.2,0.6666,0.6666,0.8,1,0.9334,1,0.7334,0.7334,0.7334,0.8666,0.8666,0.8,0.5334,0.3334,0,-0.3334,-0.0986,0.493,0.3802,-0.014,-0.155,0.4084,0.9154,1,0.9436,0.8028,0.8874,0.493,0.5492,0.4648,0.9154,0.662,0.7746,0.7184,0.7746,0.5492,0.7746,0.7184,0.7464,0.5212,0.6056,0.5212,0.6902,0.4084,0.2394,0.2958,0.2394,-0.155,0.2076,0.4716,0.4906,0.0754,-0.0378,-0.0754,0.2264,0.7548,0.9246,0.9056,1,0.6982,0.3774,0.5094,0.8302,0.7358,0.6792,0.566,0.3962,0.4528,-0.1132,-0.283,-0.566,-0.283,-0.434,-0.3962,-0.0754,0.0754,-0.0566,-0.0188,-0.2642,-0.4716,-0.1094,-1,-1,1,-1,-1,-0.6,-0.8334,-1,0.1428,0.1836,0.1972,-0.0612,-0.0884,0.0204,0.238,0.1564,0.0612,0.6462,0.864,0.8912,1,0.6734,0.6734,0.8096,0.9048,0.8232,0.9048,0.9592,0.5102,0.3742,0.3606,0.3062,0.4286,0.4966,0.7414,0.7414,0.5918,0.4966,0.3062,-0.0612,'2'
-0.3296,0.3406,0.4286,0.5164,0.425,0.0402,0.0842,0.0476,0.0732,-0.1794,-0.0256,0,0.1392,0.282,0.5092,0.7838,0.945,0.8206,0.674,0.6374,0.8974,0.912,0.8792,0.7728,0.586,0.4762,0.3772,0.4578,0.6118,0.6118,0.9964,1,-0.4234,0.1688,0.1534,0.4142,0.362,-0.0122,-0.0644,-0.1196,-0.1902,-0.1042,-0.1902,-0.1042,-0.1718,0.1472,0.0706,0.368,0.4938,0.8742,0.8344,0.7822,0.681,0.9448,0.9202,0.8252,0.727,0.5552,0.5062,0.8036,0.7944,1,1,0.9816,-0.4302,0.0056,0.037,0.2508,0.1026,-0.1452,-0.3504,-0.2906,-0.3988,-0.3732,-0.2564,-0.285,-0.285,-0.2194,-0.0656,0.057,0.2792,0.5384,0.7464,0.8148,0.678,0.6354,0.775,0.7778,0.735,0.5926,0.5498,0.7008,0.7578,0.9316,1,0.906,-0.5008,-0.1768,0.162,0.2304,-0.1708,-0.2512,-0.3908,-0.5334,-0.5542,-0.468,-0.471,-0.4622,-0.4978,-0.3372,-0.2124,-0.1412,0.0758,0.3106,0.7206,0.8188,0.7118,0.6256,0.7206,0.8514,0.8424,0.6256,0.5364,0.7118,0.7712,0.9494,1,0.8396,-0.5526,-0.1452,0.3256,0.2654,-0.1018,-0.4924,-0.6528,-0.6862,-0.5258,-0.6694,-0.646,-0.7296,-0.5994,-0.399,-0.359,-0.2788,-0.0484,0.1752,0.5726,0.7896,0.813,0.6428,0.6494,0.7596,0.7228,0.6228,0.5526,0.6794,0.6394,0.9098,1,0.8964,-0.581,0.2252,0.5296,0.2924,-0.0632,-0.7786,-0.672,-0.585,-0.6482,-0.7786,-0.7866,-0.7352,-0.6758,-0.6442,-0.5098,-0.4426,-0.2056,0.004,0.3952,0.9052,0.996,0.7588,0.6838,0.743,0.7352,0.5336,0.494,0.585,0.5178,0.9288,1,0.8182,-0.4344,0.7242,0.8942,0.3518,-0.2782,-0.6644,-0.5402,-0.5494,-0.6092,-0.6874,-0.5908,-0.646,-0.508,-0.4758,-0.2552,-0.2644,0.0068,0.1816,0.8022,1,0.9448,0.9954,0.8712,0.8758,0.7472,0.4712,0.1954,0.4114,0.3702,0.7334,0.715,0.4206,-0.2122,0.5152,0.697,0.697,0.394,-0.2728,0.1516,0.0304,-0.394,-0.5758,-0.0304,0.1516,0.2122,-0.2122,0.091,0.394,0.6364,0.3334,0.394,0.394,1,1,0.5758,0.394,0.5152,0.5152,0.1516,0.3334,0.3334,0.394,0.5152,0.7576,-0.2156,0.5294,0.5294,0.451,0.5686,0.098,0.1764,0.1764,0.2156,-0.098,-0.0196,0.0196,0.2156,0.1372,0.6862,0.8432,0.6862,0.6862,0.647,0.6862,0.8432,1,0.8824,0.6078,0.2942,-0.0196,0.255,0.4118,0.3334,0.451,0.7254,0.7648,-0.4906,-0.0944,0.3018,0.2076,-0.0188,-0.3962,-0.7358,-0.5472,-0.434,-0.6604,-0.585,-0.6416,-0.6604,-0.3396,-0.2642,-0.3018,-0.0944,0.1132,0.5094,0.8114,0.8302,0.585,0.566,0.6226,0.7548,0.6416,0.4716,0.5094,0.5472,0.868,1,0.8868,-0.9512,-0.9582,-0.9564,-0.9512,-0.9564,-0.9598,-0.9598,-0.9598,-0.953,-0.9564,-0.9564,0.646,0.7192,0.5972,0.4578,0.1682,0.0236,0.1054,0.0864,0.0462,0.1072,-0.1822,-0.7298,-0.8728,-0.911,-0.9198,-0.9302,-0.9512,-1,-1,-1,-1,-1,-0.9292,-0.8564,-0.7784,-0.7002,-0.5574,-0.5612,-0.4004,-0.5628,-0.5956,-0.2896,-0.365,-0.3342,0.5982,0.6656,0.84,0.6028,0.5948,0.2612,-0.178,-0.4454,-0.5766,-0.751,-0.8988,-0.9396,-0.9512,-0.9608,-0.9662,-0.9716,-1,-1,-1,-1,-1,0.31,1,1,1,1,1,1,1,1,1,1,-0.1258,-0.123,0.0914,0.0424,0.15,0.1,0.065,-0.1626,-0.53,-0.7526,-0.8676,-0.7234,-0.5,-0.6468,-0.7468,-0.8868,-0.88,-1,-1,-1,-1,-1,1,0.0858,-0.6286,-0.7714,-0.8,-0.9714,-0.9428,-1,-0.8572,-0.3428,1,1,1,-0.4572,-0.7714,-1,-1,-0.5142,0.1428,-0.5428,-0.2572,-0.1142,-0.2858,-0.7428,-0.4,-0.7142,-0.9142,-0.6286,-1,-1,-1,-1,-1,0.5002,0.5074,0.5216,0.5288,0.5288,0.5324,0.5342,0.5322,0.5054,0.1438,-0.118,-0.1006,-0.0758,-0.0316,0.0216,0.0798,0.155,0.2836,0.4342,0.6082,-0.6266,-0.1176,-0.3288,-0.4886,-0.3462,0.0448,0.612,0.6834,-0.626,-0.4896,-0.3658,-0.159,-0.1962,-0.1694,-0.0248,0.1962,0.1158,0.1158,0.283,0.3636,0.1798,0.1426,0.186,0.2294,0.4814,0.4298,0.4132,0.469,0.779,0.8162,0.783,0.5434,0.5786,0.7954,0.8842,1,0.8264,0.6136,0.7458,0.4732,-0.8138,-0.7692,-0.6754,-0.5274,-0.4718,-0.3254,-0.2696,-0.179,-0.1202,-0.1074,-0.0596,0.004,-0.031,0.0278,0.012,0.2076,0.23,0.2586,0.4112,0.4542,0.607,0.623,0.6198,0.5736,0.6658,0.9618,1,0.9634,0.8822,0.6754,0.8028,0.5752,-0.788,-0.7044,-0.6716,-0.5074,-0.491,-0.3642,-0.3074,-0.1074,-0.1552,-0.0732,-0.0448,0,0.0956,0.0284,0.1238,0.1956,0.3478,0.2656,0.4268,0.5746,0.7044,0.6582,0.612,0.5238,0.6836,0.8686,0.9358,1,0.915,0.7746,0.8418,0.7298,-0.97,-1,1,-1,-1,-1,-0.8,1,-1,-0.017,0.1016,-0.1356,-0.1356,0.0848,-0.017,0.2372,0.2034,0.5424,0.3898,0.5932,0.9152,0.678,0.5084,0.7628,0.4916,0.5424,0.8644,1,0.7966,0.5762,0.339,0.322,0.3728,0.1526,0.0508,0.356,0.3898,0.4238,0.305,0.1864,-0.4406,'3'
-0.407,0.3176,0.3598,0.4268,0.412,0.0298,0.1042,0.0546,0.1364,-0.0744,0.067,0.0074,0.2184,0.2854,0.6576,0.6254,0.7444,0.742,0.521,0.5384,0.8636,0.938,0.6626,0.5112,0.392,0.4988,0.2952,0.3746,0.4318,0.6972,0.6476,1,-0.5214,0.0902,0.1038,0.3544,0.3656,-0.052,-0.0248,-0.0836,-0.0362,-0.061,0.0136,-0.052,0.0406,0.1264,0.246,0.386,0.5576,0.6862,0.8082,0.6884,0.7336,0.6704,0.8216,0.7494,0.5846,0.535,0.4312,0.4154,0.8398,0.8488,0.9774,1,-0.3614,0.1386,0.1068,0.4272,0.3296,0.0114,-0.1272,-0.091,-0.1886,-0.0636,-0.1478,-0.0614,-0.1022,0,0.1978,0.2704,0.4432,0.659,0.7886,0.875,0.8318,0.8522,0.8386,0.7728,0.5932,0.6568,0.5932,0.6296,0.784,0.8772,0.9318,1,-0.4748,-0.1338,0.1868,0.2702,-0.0984,-0.2272,-0.442,-0.4772,-0.4242,-0.3738,-0.3964,-0.4898,-0.4166,-0.1868,-0.1364,-0.1212,-0.0252,0.2878,0.6844,0.9368,0.9242,0.6338,0.8006,0.8738,0.8586,0.7626,0.591,0.6112,0.841,0.9646,1,0.9974,-0.5212,0,0.4,0.2874,0.0282,-0.5634,-0.7184,-0.5888,-0.5944,-0.645,-0.7522,-0.6676,-0.5972,-0.4788,-0.4846,-0.3606,-0.0338,0.155,0.4788,0.8704,0.9634,0.9042,0.924,0.8,0.6788,0.5522,0.507,0.4902,0.676,0.7492,1,0.9972,-0.4776,0.5932,0.8358,0.4478,-0.2276,-0.668,-0.6828,-0.7276,-0.8246,-0.8694,-0.7762,-0.7462,-0.735,-0.7164,-0.4068,-0.4142,-0.0298,0.112,0.612,0.9216,1,0.8284,0.9328,0.7314,0.3656,0.2724,0.153,0.0858,0.2762,0.3732,0.6418,0.7014,0.085,0.578,0.6768,0.1452,-0.5014,-0.7808,-0.715,-0.4958,-0.463,-0.7424,-0.4356,-0.4684,-0.348,-0.3864,-0.3096,-0.041,-0.0028,0.5836,0.6822,0.7534,0.9014,0.8356,1,0.5836,0.2438,0.3972,0.1946,-0.1726,0.3316,0.4356,0.5452,0.4136,-0.5428,0.6,0.7714,0.6572,0.0286,0.0286,-0.2,-0.2572,0.0858,0.0286,0.1428,0.3714,0.2,0.3142,0.6572,0.3714,0.6,0.6572,0.4858,0.5428,0.5428,1,0.8858,0.2572,0.6,0.4286,0.2,0.4858,0.3714,0.3714,0.6,0.6572,-0.3878,0.4286,0.4694,0.5102,0.5102,0.102,0.1836,0.0612,0.1428,-0.2654,-0.0204,0.0204,0.3062,0.4286,0.9592,1,0.5102,0.551,0.7552,0.796,0.8776,0.9592,0.5918,0.347,0.1836,0.3062,0.1836,0.2244,0.1836,0.5918,0.5918,0.9184,-0.4898,0,0.4082,0.3062,0.0204,-0.5102,-0.6326,-0.5918,-0.4694,-0.653,-0.796,-0.7346,-0.5918,-0.3674,-0.4286,-0.2244,-0.0612,0.1224,0.449,0.7552,0.9592,0.9184,0.9796,0.7142,0.4898,0.4898,0.5306,0.3674,0.653,0.796,1,0.9592,-0.9736,-0.9736,-0.9632,-0.9632,-0.9632,-0.9706,-0.9618,-0.9574,-0.9632,-0.9472,-0.9354,0.6328,0.8664,0.508,0.395,0.2158,-0.0206,-0.1366,-0.0162,0.0882,-0.3436,-0.7534,-0.837,-0.8826,-0.9486,-0.975,-0.9676,-0.972,-1,-1,-1,-1,-1,-0.9474,-0.8792,-0.6766,-0.5742,-0.4418,-0.478,-0.237,-0.4484,-0.4902,-0.4132,-0.32,-0.1368,0.612,0.4666,0.2886,0.122,0.1758,0.0668,-0.3254,-0.613,-0.8196,-0.9274,-0.9484,-0.9568,-0.9738,-0.978,-0.9782,-0.9796,-1,-1,-1,-1,-1,0.31,1,1,1,1,1,1,1,1,1,1,0.0554,0.1044,0.18,-0.0156,-0.0112,0.046,0.1854,-0.096,-0.622,-0.794,-0.678,-0.72,-0.57,-0.6368,-0.6568,-0.6334,-0.8068,-1,-1,-1,-1,-1,1,1,0.3714,-0.5428,-0.9428,-0.8858,-0.8,-0.9142,-0.8286,-0.6858,1,1,0.6572,-0.5714,-0.7714,-0.8572,-0.8572,-0.5142,0.0286,0.2286,0.3142,-0.7142,-0.7714,-0.8286,-0.7428,-0.9428,-0.9714,-0.3714,-1,-1,-1,-1,-1,0.582,0.5848,0.5958,0.612,0.611,0.6244,0.6216,0.6314,0.5894,0.1246,-0.349,-0.3084,-0.2478,-0.1924,-0.1528,-0.059,0.0152,0.1346,0.3232,0.4454,-0.64,0.1176,-0.308,-0.4846,-0.2816,0.1066,0.3146,0.8166,-0.7232,-0.7464,-0.6058,-0.499,-0.3542,-0.1802,-0.1216,-0.0902,0.0272,0.0524,-0.0608,0.1488,0.1844,0.1194,0.1824,0.2914,0.4676,0.3774,0.4444,0.6184,0.631,0.7946,0.7106,0.652,0.6876,0.826,0.9644,0.9896,1,0.7044,0.6814,0.4424,-0.7756,-0.7798,-0.6414,-0.4468,-0.362,-0.2858,-0.2674,-0.1446,-0.1136,-0.0826,-0.0148,-0.0078,0.0134,0.0304,0.0812,0.2054,0.2096,0.2774,0.4284,0.465,0.369,0.5498,0.619,0.6894,0.6344,0.7742,0.9464,1,0.9648,0.9408,0.7628,0.6626,-0.8278,-0.7434,-0.5608,-0.4436,-0.3992,-0.2878,-0.3026,-0.0652,-0.1186,-0.0594,0.0148,0.0802,0.1232,0.095,0.129,0.227,0.3636,0.405,0.3814,0.4184,0.3664,0.7048,0.6854,0.7508,0.779,0.7998,0.9704,1,0.9644,0.8992,0.8962,0.7226,-0.9112,-1,1,-1,-1,-1,-1,1,-1,0.2234,0.3592,0.1456,0.1068,0.0098,0.0874,0.3204,0.3786,0.7282,0.8058,1,0.6504,0.1844,0.1068,0.7282,0.3592,0.2622,0.2038,0.2428,0.2622,-0.0874,-0.165,0.0098,-0.0098,-0.2428,-0.2428,-0.0292,-0.0874,-0.3786,-0.068,-0.0098,-0.2038,'3'
-0.3446,0.0824,0.3378,0.4522,0.0488,-0.1394,-0.5026,-0.4218,-0.2672,-0.3648,-0.2974,-0.395,-0.2572,-0.0858,-0.0252,0.1462,0.553,0.6236,0.6638,0.5764,0.516,0.647,0.8118,0.7648,0.6908,0.4286,0.4656,0.3176,0.4858,0.684,0.8488,1,-0.4088,0.0322,0.1332,0.3048,0.1148,-0.1454,-0.3936,-0.3568,-0.363,-0.3966,-0.2924,-0.3814,-0.3078,-0.1976,-0.0964,0.0904,0.124,0.4978,0.565,0.8836,0.7978,0.5742,0.8376,0.9572,0.758,0.6814,0.5896,0.5834,0.8162,0.853,0.9388,1,-0.3482,0.0568,-0.0124,0.1844,0.0264,-0.1622,-0.3564,-0.3232,-0.412,-0.4202,-0.2622,-0.3204,-0.226,-0.2926,-0.1428,0.0208,0.104,0.301,0.3786,0.9334,0.9306,0.545,0.6422,0.8862,0.7614,0.7448,0.5728,0.6532,0.9612,1,0.9834,0.9694,-0.3692,0.0618,0.0492,0.2044,-0.0522,-0.1918,-0.4454,-0.4802,-0.534,-0.553,-0.4104,-0.4992,-0.4232,-0.2234,-0.233,-0.1538,-0.0936,0.1062,0.6006,0.8256,0.8162,0.775,0.6988,0.7844,0.8004,0.813,0.832,0.7116,0.9462,0.9746,0.9652,1,-0.3658,-0.0016,0.226,0.2814,-0.1578,-0.278,-0.5708,-0.5284,-0.5318,-0.4406,-0.6098,-0.639,-0.4796,-0.4406,-0.3464,-0.2228,-0.122,0.0276,0.356,0.8082,0.9838,0.9024,0.73,0.7854,0.7854,0.7658,0.7952,0.6488,0.883,1,0.9544,0.9642,-0.3918,0.0244,0.5836,0.4654,0.0858,-0.596,-0.5836,-0.5796,-0.596,-0.6816,-0.7552,-0.9306,-0.5836,-0.5184,-0.5836,-0.5184,-0.1796,-0.1388,0.3102,0.8244,1,0.9918,0.7306,0.804,0.8082,0.7714,0.7836,0.4326,0.853,0.9388,0.8326,0.7346,-0.3644,0.418,0.7604,0.4278,-0.1052,-0.6772,-0.6234,-0.7556,-0.8582,-0.8338,-0.7556,-0.775,-0.7262,-0.7996,-0.8092,-0.56,-0.335,-0.4524,0.0612,0.7164,1,0.8044,0.6772,0.7506,0.7604,0.3888,0.247,0.0416,0.1246,0.2762,0.467,0.5354,-0.25,0.2,0.45,0.6,0.15,-0.4,-0.3,-0.1,-0.05,-0.3,-0.35,-0.35,0.05,0.15,0.25,0.4,0.95,0.85,0.55,0.7,0.7,0.9,0.9,0.9,0.4,0.4,0.4,0.3,0.35,0.8,0.75,1,-0.3962,-0.0566,0.3208,0.3962,-0.0188,-0.132,-0.8114,-0.3584,-0.283,-0.1698,-0.2452,-0.434,-0.3208,-0.2452,0.0944,0.132,0.5472,0.5094,0.585,0.434,0.434,0.6982,0.6226,0.8114,0.585,0.3208,0.434,0.3584,0.3584,0.5472,0.4716,1,-0.3256,-0.0698,0.4884,0.4418,0.0698,-0.372,-0.5116,-0.4186,-0.3488,-0.4652,-0.6744,-0.907,-0.3954,-0.3256,-0.279,-0.2558,-0.186,-0.1628,0.5348,0.6046,1,0.9302,0.8604,0.9768,0.8604,0.814,0.7442,0.5582,0.814,0.9768,0.907,0.9302,-1,-1,-1,-1,-1,-1,-1,-0.9354,-0.9568,-0.9304,-0.4096,0.8276,0.9038,0.6684,0.4162,0.3946,0.2504,0.2256,0.1558,0.2354,0.0116,-0.2438,-0.6004,-0.8574,-0.8872,-0.9022,-0.937,-0.9618,-0.9502,-0.9668,-0.9552,-0.9652,-0.9718,-1,-1,-1,-1,-1,-1,-1,-0.9784,-0.9814,-0.8788,-0.5882,-0.044,0.4586,0.5872,0.9286,0.696,0.3894,0.116,-0.1782,-0.4592,-0.6364,-0.7808,-0.8592,-0.921,-0.9448,-0.9584,-0.9686,-0.9756,-0.9766,-0.978,-0.9786,-0.98,-0.9832,-1,-1,-1,-1,-1,-1,-1,-0.8722,-0.9668,-0.7068,0.68,-0.243,0.0274,0.2324,0.2424,0.2074,0.2224,0.1224,0.0174,-0.455,-0.57,-0.8176,-0.6434,-0.24,-0.3234,-0.4634,-0.58,-0.7268,-0.7268,-0.86,-0.7668,-0.8,-0.9334,-1,-1,-1,-1,-1,-1,-1,0.0286,1,1,1,1,-0.0286,-0.6858,-0.8858,-0.8572,-0.8572,-0.9428,-0.5142,-0.0286,-0.2572,-0.0286,-0.3714,-0.4572,0.2,-0.4,-0.7142,-0.9142,-1,-0.9428,-0.9714,-0.9428,-0.9714,0.0144,0.0468,0.0814,0.1228,0.1608,0.1876,0.2164,0.2662,0.2728,0.0346,0.3386,0.367,0.4064,0.441,0.4896,0.5394,0.5792,0.6522,0.749,0.8204,-0.6934,-0.0942,-0.6072,-0.461,0.0342,0.1668,0.4232,1,-0.8088,-0.3676,-0.1912,0.2648,0.103,-0.0442,0.2942,0.353,0.5882,0.2352,0.25,0.5148,0.353,0.147,0.6912,0.6912,0.647,0.6324,0.8824,1,0.853,0.603,0.603,0.5736,0.5294,0.6176,0.5882,0.5148,0.6324,0.6324,0.0588,-0.3824,-0.39,-0.2624,-0.4184,-0.5886,-0.6312,-0.2624,-0.2624,-0.1206,0.2908,-0.0212,0.078,0.3758,0.2056,0.2908,0.2482,0.5744,0.8582,0.461,0.5178,0.929,1,0.6454,0.844,0.9008,0.8298,0.7304,0.532,0.929,0.9858,0.7588,0.5744,0.3192,0.1206,0.2482,0.1632,-0.5602,-0.2624,-0.3618,-0.2766,0.0638,0.5602,0.4752,0.3758,0.6454,0.2908,0.3618,0.1632,0.4894,0.7872,0.4042,0.2056,0.9432,1,0.8298,0.9574,0.773,0.6028,0.5178,0.6596,0.7164,0.6454,0.546,0.5036,0.1774,-0.417,-1,-1,1,-0.6,-1,-0.4,-0.7,-1,-0.2198,0.0354,-0.078,-0.007,-0.007,-0.3192,-0.3618,0.0496,0.0922,0.4468,0.3192,0.773,0.8724,0.5036,0.461,0.688,0.2056,0.5602,0.8156,1,0.4184,0.546,0.3334,0.2482,0.1774,0.3618,0.2482,0.2766,0.2624,0.2056,-0.0638,-0.234,'4'
-0.2838,0.1984,0.3416,0.4958,0.2066,-0.0798,-0.5096,-0.5014,-0.3112,-0.427,-0.281,-0.4078,-0.2892,0.1378,0.1818,0.325,0.6364,0.9476,0.8154,0.6336,0.5234,0.7382,0.9918,0.9724,0.7052,0.6418,0.5096,0.4932,0.5648,0.763,0.9366,1,-0.374,0.03,0.112,0.2786,0.1032,-0.1166,-0.2764,-0.2542,-0.5406,-0.5604,-0.2742,-0.3696,-0.3962,-0.1342,-0.0456,0.0988,0.1254,0.5006,0.5184,0.8402,0.7758,0.6692,0.6626,0.7846,0.6692,0.7402,0.6958,0.707,0.6538,0.7358,1,0.8912,-0.3668,0.0128,0.1386,0.269,0.0012,-0.0966,-0.2386,-0.2806,-0.5552,-0.5134,-0.3946,-0.539,-0.4924,-0.192,-0.2038,-0.1222,0.043,0.2108,0.6834,0.823,0.8486,0.6718,0.6088,0.723,0.9232,0.865,0.7602,0.6974,0.6856,0.9232,1,0.986,-0.4408,-0.1134,0.165,0.219,-0.1082,-0.2164,-0.4948,-0.5464,-0.567,-0.6186,-0.6494,-0.6676,-0.5438,-0.464,-0.366,-0.25,-0.098,0.147,0.4382,0.8118,0.8944,0.7578,0.6108,0.7088,0.8738,0.8196,0.6932,0.701,0.732,0.9124,1,0.9974,-0.428,-0.0402,0.485,0.398,0.1506,-0.4214,-0.7392,-0.8596,-0.7224,-0.7558,-0.786,-0.9332,-0.709,-0.4816,-0.3444,-0.408,-0.204,0.0668,0.4382,0.7692,1,0.8964,0.582,0.7358,0.8394,0.776,0.6556,0.729,0.6924,0.8194,0.99,0.9432,-0.3606,0.5286,0.9058,0.6148,0.1312,-0.709,-0.959,-0.836,-0.873,-0.9632,-0.8196,-0.8852,-0.8484,-0.7008,-0.541,-0.4344,-0.2214,-0.205,0.1516,0.7828,1,0.8812,0.5656,0.541,0.6926,0.4754,0.3606,0.2704,0.2418,0.496,0.9016,0.8278,-0.021,0.7158,1,0.5158,-0.4526,-0.8106,-0.8052,-0.9316,-0.8052,-0.7736,-0.879,-0.6474,-0.3,-0.379,-0.5,-0.4578,-0.479,-0.1,0.3052,0.6894,0.7474,0.621,0.3842,0.6948,0.6948,0.4316,-0.021,0.0842,-0.0158,0.3526,0.5368,0.4052,-0.2888,0.1556,0.2444,0.4222,0.0222,-0.3778,-0.6888,-0.3334,-0.2888,-0.5556,-0.4666,-0.2444,-0.1556,-0.1112,-0.2,0.0222,0.7778,0.7778,-0.0222,0.5112,0.6,0.7778,1,0.8666,0.4666,0.4666,0.2,0.1112,0.3334,0.1556,0.6444,0.7334,-0.1636,0.2728,0.4182,0.5636,0.2364,0.1272,-0.309,-0.4182,-0.1272,-0.1272,-0.0182,-0.2728,-0.1272,0.309,0.2364,0.4546,0.8546,1,0.7454,0.5636,0.491,0.6,1,0.8546,0.6728,0.491,0.4546,0.491,0.491,0.7454,0.709,1,-0.3862,-0.0694,0.3268,0.2674,0.109,-0.3268,-0.5644,-0.6436,-0.5644,-0.505,-0.4456,-0.7624,-0.6436,-0.3664,-0.2476,-0.3664,-0.1882,-0.0892,0.2476,0.7822,0.9208,0.6832,0.5248,0.5248,0.7426,0.604,0.505,0.6238,0.703,0.7228,1,0.9208,-1,-1,-1,-1,-1,-1,-1,-0.9654,-0.967,-0.9292,-0.5172,0.7814,0.8774,0.533,0.2688,0.1746,0,-0.0268,-0.0912,-0.0974,-0.2688,-0.6164,-0.7672,-0.8774,-0.9434,-0.9576,-0.9544,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9824,-0.9822,-0.7648,-0.32,0.1212,0.624,0.5558,0.7762,0.4412,0.2804,-0.1332,-0.6306,-0.7322,-0.7954,-0.8952,-0.9244,-0.9554,-0.9612,-0.967,-0.9678,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8868,-0.9134,-0.39,1,-0.209,0.0732,0.2332,0.212,0.286,0.23,0.012,-0.662,-0.91,-0.952,-0.818,-0.7868,-0.6468,-0.4868,-0.5234,-0.6034,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7428,1,1,1,1,0,-0.9714,-0.7428,-0.7714,-0.8572,0.2858,0.2572,-0.6858,-0.4572,-0.4858,-0.5714,-0.8572,-0.8572,-0.9142,-0.8572,-1,-1,-1,-1,-1,-1,0.0032,0.0234,0.0554,0.084,0.1152,0.1682,0.227,0.296,0.3278,-0.0238,0.288,0.302,0.3402,0.368,0.405,0.4598,0.5222,0.6116,0.7136,0.6716,-0.5866,0.1412,-0.3504,-0.4284,0.0086,0.4412,0.6296,1,-0.7,-0.4,-0.3,-0.1142,0.0142,0.1858,0.2572,0.2428,0.4,0.0572,0.5142,0.7286,0.6714,0.7572,0.7428,0.7,0.5858,0.7286,0.9142,1,0.9572,0.6428,0.4286,0.5714,0.7142,0.7714,0.8428,0.8286,0.6428,0.3858,0.1142,-0.2,-0.9322,-0.4124,-0.4916,-0.3334,-0.3898,-0.3672,-0.4238,-0.2204,0.0848,0.0622,0.1752,0.1978,0.1978,-0.0056,0.0622,0.2768,0.3672,0.5254,0.8758,0.8644,0.8644,0.5142,0.435,0.5706,0.8306,0.8984,1,0.921,0.7176,0.6384,0.5706,0.4916,-0.1876,-0.073,-0.2604,-0.8124,-0.6042,-0.4896,-0.5416,-0.0208,0.2292,0.0938,0.25,0.6458,0.1458,0.1042,0.1562,0.4792,0.5,0.5312,0.5,0.6666,0.6354,0.5416,0.4166,0.677,0.7604,1,0.9062,0.8334,0.7292,0.5416,0.6876,0.2396,-0.1534,-1,-1,1,-0.8,-1,-0.8,-0.6666,-1,-0.3504,-0.0256,-0.0598,-0.2308,-0.1282,-0.2478,0.1452,0.8462,1,0.4018,0.5556,0.624,0.282,0.265,0.4188,0.1794,0.2308,0.1966,0.7948,0.7264,-0.0256,-0.094,-0.0086,0.0256,-0.077,-0.077,0.2136,0.4188,-0.2478,-0.0598,-0.282,-0.4018,'4'
-0.5534,-0.0416,0.0864,0.1694,-0.1022,-0.2278,-0.4928,-0.5578,-0.5646,-0.5308,-0.4546,-0.5196,-0.5758,-0.4052,-0.3244,-0.1672,-0.1448,0.0998,0.643,0.706,0.6476,0.4792,0.4568,0.605,0.807,0.7598,0.7194,0.715,0.7486,0.9552,1,0.8698,-0.316,0.1456,0.0852,0.2494,0.104,-0.1392,-0.314,-0.2246,-0.3638,-0.3222,-0.3514,-0.3638,-0.318,-0.3722,-0.1018,-0.156,0.0396,0.2952,0.4864,0.792,0.8712,0.5468,0.5822,0.682,0.6612,0.79,0.7422,0.896,0.7858,0.919,0.9356,1,-0.3156,0.144,0.0828,0.191,0.0542,-0.2176,-0.3156,-0.2236,-0.3544,-0.3136,-0.33,-0.332,-0.2992,-0.3544,-0.1216,-0.1808,0.0296,0.236,0.385,0.7998,0.8978,0.6138,0.4566,0.6588,0.663,0.7854,0.7528,0.8856,0.8162,0.9632,0.8938,1,-0.4004,-0.0274,-0.0528,0.086,-0.1464,-0.2812,-0.4102,-0.4356,-0.4434,-0.5352,-0.4786,-0.5762,-0.5898,-0.295,-0.2852,-0.2578,-0.1542,0,0.3516,0.629,0.6738,0.5292,0.4102,0.4668,0.621,0.623,0.7324,0.752,0.7148,0.7988,1,0.955,-0.4454,-0.1462,0.259,0.2544,-0.1876,-0.4454,-0.634,-0.6662,-0.6616,-0.6594,-0.6824,-0.6364,-0.6686,-0.6042,-0.5466,-0.3924,-0.222,-0.0932,0.2842,0.6708,0.7698,0.6778,0.3994,0.4752,0.664,0.5996,0.5398,0.5904,0.5052,0.756,1,0.9218,-0.0834,0.5524,1,0.787,0.1388,-0.6482,-0.7284,-0.7778,-0.9692,-0.7654,-0.6944,-0.676,-0.6636,-0.503,-0.503,-0.3796,-0.2994,-0.1234,0.3396,0.6914,0.8672,0.7686,0.463,0.7808,0.747,0.6172,0.392,0.5556,0.4722,0.7192,0.9136,0.8828,0.3826,0.657,0.7836,0.868,0.3984,-0.7678,-0.9526,-0.5514,-0.789,-0.8258,-0.562,-0.62,-0.7994,-0.6042,-0.335,-0.409,-0.0184,0.504,0.8154,0.8258,0.6782,0.7308,1,0.6834,0.5568,0.2824,0.008,0.1716,0.0976,0.5462,0.9788,0.6622,-0.5556,0.1482,0.4444,0.4074,-0.1112,-0.1112,-0.4444,-0.3704,-0.3334,-0.1482,-0.2592,-0.2222,-0.3334,-0.2592,-0.1852,-0.037,-0.4074,0.1112,0.7038,0.926,0.926,0.6666,0.8148,0.8148,0.8518,1,0.8888,0.5556,0.8888,0.8518,0.926,0.926,-0.4482,0.138,0.138,0.2414,0.0344,-0.2068,-0.3794,-0.4138,-0.5172,-0.4138,-0.4482,-0.4138,-0.4138,-0.3448,-0.2414,-0.2758,0.138,0.1724,0.6206,0.6552,0.6552,0.4138,0.5862,0.5862,0.7932,0.5518,0.7242,0.6206,0.7586,0.9656,1,0.7586,-0.3626,-0.099,0.4506,0.4286,-0.055,-0.5164,-0.6044,-0.5164,-0.5604,-0.5604,-0.4726,-0.5384,-0.7142,-0.6484,-0.5824,-0.3186,-0.1648,-0.077,0.4286,0.7802,1,0.8022,0.3406,0.4066,0.6924,0.6924,0.4726,0.5824,0.5604,0.5164,1,0.912,-1,-1,-1,-1,-1,-1,-1,-1,-0.9372,-0.9664,-0.9224,0.3102,0.3584,0.849,0.977,0.7714,0.392,0.3606,0.6332,0.6226,0.1678,-0.455,-0.761,-0.849,-0.9266,-0.9434,-0.9392,-0.9496,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.984,-0.9844,-0.9622,-0.2144,0.1512,0.0568,0.2228,0.6288,0.3256,-0.0104,-0.5054,-0.6274,-0.7788,-0.8972,-0.9404,-0.9586,-0.9582,-0.9656,-0.9678,-0.9684,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9198,-0.88,-0.8668,0.1418,0.3344,0.2,0.3254,0.2744,0.4344,0.409,-0.4364,-0.7892,-0.9074,-0.8718,-0.6834,-0.56,-0.4534,-0.4268,-0.4634,-0.56,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2,-0.8858,1,1,-0.8,-0.7714,-0.7142,-0.7428,-0.8858,0.1428,0.8,-0.6286,0.3428,-0.3714,-0.2572,-0.8286,-0.8572,-0.9714,-0.8858,-0.5142,-1,-1,-1,-1,-1,0.2282,0.2378,0.2484,0.2656,0.2804,0.2976,0.3142,0.3192,0.3156,-0.0096,0.8806,0.8706,0.8742,0.8758,0.8708,0.8616,0.8638,0.8946,0.9014,0.8068,-0.6934,0.3176,-0.9834,-0.7652,-0.2606,-0.0362,-0.0082,1,0.082,0.5246,0.5246,0.459,0.4918,0.6722,1,0.7214,0.3114,0.5902,0.7868,0.9016,0.9508,0.6886,0.459,0.5738,0.3606,0.5082,0.623,0.7378,0.7868,0.5082,0.623,0.6558,0.541,0.541,0.5738,0.2786,0.3442,0.2132,-0.2296,-0.6722,-0.0344,0.2414,0.3966,0.6724,0.8448,0.7242,1,0.9138,0.8794,0.5862,0.5862,0.362,0.9482,0.7414,0.6724,0.2758,0.5172,-0.0862,0.3276,0.4656,0.3276,0.431,0.362,0.4656,0.2932,0.4656,0.0862,0.362,-0.0862,0.0862,0,-0.2586,-0.068,0.2038,0.5146,0.3398,0.165,0.4758,0.7088,1,0.9418,0.5922,0.8058,0.7864,0.4758,0.767,0.1456,0.2234,0.767,0.398,0.4368,0.301,0.6504,0.6504,0.068,0.6116,0.4368,0.7282,0.864,0.3592,0.398,0.4174,-0.1456,-0.7864,-0.9944,1,-1,-1,-1,-1,-0.8,-1,-1,-0.2182,-0.0364,0.091,0.3818,0.1272,0.2,0.3454,0.7818,0.6364,0.5818,1,0.9818,0.509,0.6728,0.7636,0.5272,0.309,0.091,0.7818,0.8182,0.491,0.3454,0.6,0.0182,0.0182,-0.1272,0.109,0.109,-0.0182,-0.0182,-0.2182,-0.909,'5'
-0.4166,-0.017,0.0352,0.1828,-0.0352,-0.1556,-0.4438,-0.4552,-0.6868,-0.6072,-0.4212,-0.5414,-0.5096,-0.3394,-0.3234,-0.067,0.0102,0.2918,0.7276,0.8774,0.7502,0.2986,0.3984,0.4642,0.6686,0.7276,0.8752,0.8116,0.8592,0.9614,1,0.8094,-0.3292,0.088,0.023,0.132,-0.0168,-0.1782,-0.4486,-0.4466,-0.5618,-0.5556,-0.3502,-0.4026,-0.411,-0.4318,-0.2788,0,0.0986,0.26,0.3354,0.9288,0.9308,0.4088,0.3438,0.5262,0.4822,0.6582,0.6708,0.7904,0.9392,1,0.9434,0.9538,-0.3686,0.0382,-0.0304,0.0304,-0.128,-0.2942,-0.5796,-0.5894,-0.5522,-0.5718,-0.4252,-0.5014,-0.4722,-0.4174,-0.2786,-0.1006,-0.0206,0.1242,0.3138,0.8202,0.7966,0.39,0.304,0.4838,0.4858,0.5992,0.8182,0.8984,0.9766,1,0.9452,0.912,-0.3644,0.0062,0.0042,0.12,-0.1408,-0.1946,-0.5156,-0.5652,-0.6004,-0.559,-0.468,-0.7454,-0.5134,-0.2464,-0.294,-0.205,-0.0414,0.089,0.4638,0.6502,0.6998,0.59,0.4534,0.4906,0.5446,0.795,0.9276,0.9068,0.944,0.9586,1,0.942,-0.4022,-0.1008,0.1756,0.1856,-0.1008,-0.2976,-0.7858,-0.7136,-0.716,-0.6986,-0.6514,-0.6662,-0.6438,-0.4944,-0.482,-0.3126,-0.1632,0.051,0.3824,0.7286,0.8082,0.624,0.472,0.4694,0.4496,0.8306,0.9378,0.863,0.9228,0.9602,1,1,-0.0352,0.316,0.8596,0.6746,0.3382,-0.5934,-0.7264,-0.8448,-0.8558,-0.8448,-0.889,-0.8522,-0.7338,-0.5638,-0.5822,-0.4418,-0.3012,-0.1756,0.2902,0.9224,0.9926,0.6044,0.2126,0.4492,0.5452,0.9852,1,0.8558,0.708,0.793,0.867,0.682,0.0284,0.3522,0.6806,0.4224,-0.3566,-0.8424,-0.755,-0.755,-0.8074,-0.755,-0.8336,-0.6062,-0.4136,-0.3042,-0.7242,-0.5668,-0.2778,-0.0548,0.466,0.7506,0.5754,0.2254,0.5448,1,0.9256,0.768,0.6892,0.2648,0.5404,0.6498,0.5624,0.6586,-0.6296,-0.2592,-0.1482,0.037,-0.2222,-0.1852,-0.4074,-0.7038,-0.7038,-0.4444,-0.4444,-0.7038,-0.6666,-0.5556,-0.4444,-0.2222,0.1112,0.3334,0.6666,0.7038,0.6296,0.5186,0.4814,0.7408,0.7038,0.8888,0.7778,0.7778,0.926,0.7038,1,0.6666,-0.5358,-0.1428,-0.0714,0.1072,-0.1428,-0.1428,-0.4286,-0.5,-0.7858,-0.4642,-0.3572,-0.6072,-0.6428,-0.4286,-0.5358,-0.1072,0.0714,0.2858,0.5714,0.7142,0.4642,0.3214,0.5714,0.4286,0.6428,0.6786,0.7858,0.6428,0.6786,1,0.8928,0.7858,-0.4118,-0.1294,0.2942,0.247,-0.0118,-0.5058,-0.8352,-0.6942,-0.7176,-0.7412,-0.7176,-0.6942,-0.6706,-0.6942,-0.6706,-0.2706,-0.247,0.0118,0.2,0.4588,0.7648,0.6942,0.4118,0.4118,0.4352,0.553,1,0.9294,0.7176,0.8824,0.9294,0.9764,-1,-1,-1,-1,-1,-1,-1,-0.9694,-0.953,-0.9638,-0.4224,0.1824,0.538,0.7328,0.9458,0.7618,0.4784,0.3718,0.1878,0.0434,-0.0992,-0.3574,-0.6642,-0.7798,-0.8628,-0.908,-0.9512,-0.9494,-0.9368,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.987,-0.9862,-0.9878,-0.69,-0.011,0.1818,0.4026,0.7982,0.9336,0.5658,0.2192,-0.4022,-0.7548,-0.8106,-0.86,-0.9174,-0.9146,-0.9258,-0.9246,-0.9378,-0.937,-0.9588,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.8334,-0.8534,-0.6234,0.158,0.13,0.122,0.118,0.2744,0.1854,0.1162,-0.151,-0.6964,-0.8656,-0.82,-0.8634,-0.58,-0.4068,-0.3534,-0.44,-0.39,-0.3368,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,1,1,1,-0.5714,-0.8,-0.9142,-0.6858,-0.8,-0.4572,1,0.7142,-0.6,-0.5142,-0.3714,-0.5714,-0.8,-0.7142,-0.7142,-0.6858,-0.6,-1,-1,-1,-1,0.3872,0.3596,0.3528,0.3154,0.3016,0.2956,0.2838,0.232,0.186,-0.1086,0.9418,0.947,0.9322,0.9244,0.9136,0.902,0.8894,0.8924,0.8986,0.8372,-0.68,0.2588,-0.679,-0.1282,-0.1082,0.145,0.0798,1,-0.5112,0.0222,0.0222,-0.0666,-0.1112,0.0222,0.1112,0.1556,0.3334,0.6444,0.8222,0.8666,0.9112,0.9556,1,0.9556,0.8666,0.7334,0.5556,0.2,0.1556,-0.2,0.0666,0.3778,0.3778,0.3778,0.4222,0.3334,0.2888,0.1556,0.0222,-0.2888,0.0616,0.4154,0.1846,-0.0924,-0.1384,-0.123,0.0308,0.1076,0.3846,0.6154,0.6308,0.7538,0.7384,0.7538,1,1,0.7538,0.8462,0.3846,0.1846,0.2308,-0.3384,0.1692,0.5384,0.5384,0.4154,0.4,0.2616,0.6616,0.6924,0.277,-0.2154,0.0828,0.4286,0.3082,-0.0376,-0.203,-0.1128,0.0076,0.0226,0.4136,0.8796,0.8346,0.624,0.8346,0.985,0.9398,1,0.9398,0.8046,0.5338,0.173,-0.1128,-0.1278,0.203,0.233,0.3684,0.3684,0.2482,0.3684,0.5038,0.624,0.0978,-0.3534,0.0836,-1,-1,1,-1,-1,0,-0.8334,-1,-0.3208,-0.4214,0.195,0.2328,0.107,0.3334,0.5472,0.6856,0.2578,0.2452,0.8868,1,0.5974,0.6478,0.5094,0.5094,0.0944,0.3334,0.5598,0.585,0.5346,0.3584,-0.0692,-0.107,-0.0818,-0.0188,-0.0188,0.522,0.2328,0.044,-0.044,-0.4968,'5'
-0.4966,-0.1744,0.2618,0.4026,0.5704,0.8658,0.8724,0.6174,0.4026,0.2954,0.2214,0.5034,0.5504,0.7584,0.886,0.9396,0.8188,0.5906,0.5638,0.5838,1,0.9798,0.7516,0.5436,0.4496,0.557,0.3892,0.3826,0.5974,0.8256,0.839,0.859,-0.504,-0.248,0.2208,0.346,0.5096,0.9674,0.94,0.5694,0.3732,0.3352,0.2262,0.4986,0.504,0.673,0.7984,0.7984,0.7058,0.5694,0.5368,0.624,0.951,1,0.624,0.504,0.5258,0.4332,0.3242,0.4386,0.4986,0.782,0.891,0.7602,-0.517,-0.244,0.1758,0.2704,0.4698,0.9738,1,0.5538,0.4226,0.2808,0.3544,0.4698,0.559,0.8216,0.7638,0.601,0.559,0.538,0.454,0.7428,0.7638,0.8898,0.7428,0.4068,0.475,0.3964,0.2074,0.433,0.412,0.5906,0.8582,0.853,-0.5284,-0.2538,0.1814,0.2694,0.4456,0.9896,1,0.5388,0.3886,0.3782,0.5026,0.6994,0.7462,0.974,0.8652,0.5182,0.5284,0.4716,0.456,0.715,0.798,0.9326,0.7254,0.4818,0.4766,0.3316,0.2436,0.4456,0.4766,0.57,0.9482,0.8704,-0.5462,-0.3018,0.1522,0.2718,0.596,1,0.9552,0.5162,0.4564,0.4364,0.5212,0.7906,0.7906,0.8604,0.5162,0.3916,0.3666,0.3816,0.3466,0.5512,0.8454,0.8852,0.631,0.3018,0.3466,0.3366,0.2668,0.3316,0.4164,0.7306,0.8404,0.7756,-0.505,-0.2058,0.1176,0.4118,0.8628,1,0.8088,0.4852,0.5344,0.5686,0.8236,0.8334,0.8088,0.6128,0.5246,0.2696,0.3432,0.304,0.2942,0.5588,0.9216,0.9412,0.549,0.2108,0.2892,0.3138,0.1372,0.3284,0.3726,0.6666,0.8922,0.8726,-0.4534,-0.1534,0.1734,0.6666,0.6534,0.64,0.56,0.4866,0.4134,0.64,1,0.9,0.3466,0.3734,0.2134,-0.12,-0.0066,0.0934,0.1334,0.52,0.8066,0.6734,0.2334,-0.2534,0.1534,0.12,-0.1134,-0.0134,0.1466,0.2534,0.6666,0.82,-0.4,-0.1334,0.2666,0.2334,0.6334,0.8334,0.8,0.6,0.5,0.3666,0.4334,0.3,0.5666,0.8,1,1,0.7666,0.6,0.5334,0.6666,0.7666,0.7666,0.7666,0.6334,0.4,0.5334,0.4,0.5,0.6334,0.6666,0.6666,0.8334,-0.625,-0.2084,0.1666,0.375,0.4584,0.7916,0.7916,0.5416,0.4584,0.3334,0.1666,0.4584,0.625,0.7084,0.6666,0.7916,0.75,0.625,0.4584,0.4584,1,1,0.625,0.3334,0.4166,0.4584,0.4166,0.25,0.4584,0.7916,0.8334,0.625,-0.6106,-0.2566,0.0796,0.3098,0.77,1,0.8584,0.469,0.469,0.5044,0.7168,0.7876,0.8584,0.7876,0.5398,0.2566,0.3098,0.3274,0.3452,0.5222,0.7876,0.9116,0.6992,0.3628,0.1328,0.2744,0.2566,0.292,0.3274,0.7346,0.8054,0.8584,-1,-1,-1,-1,-1,-1,-1,-1,-0.9802,-0.9834,-0.5586,-0.2306,-0.051,0.1528,0.292,0.321,0.479,0.5966,0.831,0.9652,0.6372,-0.2978,-0.827,-0.937,-0.9528,-0.9602,-0.976,-0.9726,-0.9818,-0.9802,-0.9842,-0.9792,-0.981,-1,-1,-1,-1,-1,-1,-1,-1,-0.9908,-0.991,-0.4512,-0.2526,-0.004,0.2088,0.4404,0.5712,0.9264,0.9476,0.8422,0.6496,0.0334,-0.6328,-0.903,-0.9146,-0.9292,-0.942,-0.9636,-0.9702,-0.9728,-0.9696,-0.9698,-0.969,-0.9666,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.9134,-0.43,-0.51,-0.6,-0.625,-0.675,-0.66,-0.565,-0.6,-0.62,-0.668,-0.604,-0.516,-0.3334,0.23,0.37,0.3666,0.3466,0.1732,-0.0168,-0.0134,0.1332,0.1966,0.3,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,-0.6572,-0.8858,-0.8,-0.9142,-0.9714,-0.9714,-0.9142,0.5142,1,1,1,0.0858,-0.7428,-0.5142,-0.6572,-0.7428,-0.9142,-0.9714,-0.8858,-0.8572,-0.7714,1,1,1,1,1,1,1,1,1,1,-0.6658,-0.6832,-0.6936,-0.6936,-0.6694,-0.6824,-0.6536,-0.671,-0.7336,-0.7928,-0.5466,-0.553,-0.2998,-0.2832,-0.2066,0.0514,0.2084,1,-0.1686,0.2584,0.3258,0.4606,0.4382,0.4158,0.7078,0.9326,0.9102,0.8426,1,0.955,0.8202,0.7304,0.7978,0.9326,0.9326,0.955,0.7752,0.6404,0.4606,0.2808,-0.2134,-0.191,-0.146,0.1236,0.2134,0.0562,0.0562,0.1686,-0.0338,-0.573,-0.0082,0.4146,0.5934,0.5934,0.4308,0.4308,0.691,1,0.9186,0.6748,0.9024,0.9512,0.7398,0.6098,0.7236,0.8862,0.8862,0.8536,0.626,0.4146,0.252,0.122,-0.3984,-0.2682,-0.122,0.1056,0.0082,-0.1544,0.1708,0.2358,-0.0082,-0.252,-0.156,0.341,0.711,0.8612,0.6184,0.4336,0.6532,1,0.9422,0.7226,0.9538,0.9306,0.6416,0.5722,0.6764,0.9654,0.9654,0.9654,0.4104,0.237,0.133,-0.0868,-0.2832,-0.133,-0.1098,0.0636,-0.156,-0.052,-0.1098,-0.0982,-0.052,-0.1792,-0.0812,-1,-1,1,-1,-1,-1,-0.7666,-1,-0.4084,-0.1972,0.2676,0.2676,0.0422,0.5634,0.507,0.5212,0.3802,0.5774,0.5212,0.3662,0.6056,0.5352,0.7464,0.7746,0.6338,0.817,0.7464,0.986,0.9436,0.7888,0.9154,0.7324,0.7184,0.9296,0.7606,0.9014,1,0.817,0.7324,-0.183,'6'
-0.5306,-0.2448,0.1428,0.2722,0.6054,0.5918,0.7142,0.4898,0.4762,0.3946,0.3334,0.415,0.6938,0.864,1,0.796,0.5238,0.6258,0.5578,0.5986,0.9184,0.9048,0.7688,0.6326,0.5374,0.5238,0.483,0.4762,0.7006,0.7414,1,0.9252,-0.5286,-0.2458,0.1582,0.266,0.6026,0.6296,0.7374,0.495,0.4882,0.441,0.3804,0.4478,0.7576,0.8586,1,0.8316,0.5556,0.5556,0.5084,0.5622,0.9528,0.973,0.7508,0.6632,0.5016,0.5286,0.5218,0.6094,0.6768,0.7644,0.9932,0.9664,-0.4648,-0.1606,0.2,0.3014,0.5944,0.7522,0.8592,0.583,0.5606,0.4478,0.4084,0.5212,0.831,0.8198,0.938,0.6846,0.5718,0.6226,0.5436,0.6226,1,0.9662,0.786,0.6394,0.5662,0.6056,0.5436,0.5154,0.7972,0.7916,0.9662,0.831,-0.4028,-0.1652,0.2754,0.3856,0.6348,0.9478,1,0.6522,0.542,0.5884,0.5652,0.7972,0.9362,0.9826,0.9942,0.6464,0.5768,0.658,0.6058,0.7856,0.913,0.9362,0.9014,0.5826,0.5188,0.5478,0.4666,0.6464,0.7508,0.8376,0.8898,0.942,-0.5528,-0.2268,0.1694,0.425,0.5528,1,0.9616,0.4696,0.4824,0.4824,0.591,0.9106,0.917,0.9552,0.7636,0.5974,0.4632,0.5016,0.508,0.7252,0.8786,0.885,0.6932,0.476,0.3418,0.3354,0.2908,0.476,0.5846,0.6614,0.853,0.8338,-0.4954,-0.301,0.1914,0.465,0.7326,1,0.8784,0.459,0.3556,0.465,0.7022,0.8844,0.7446,0.69,0.4772,0.2888,0.2402,0.3314,0.2706,0.611,0.7386,0.5684,0.4408,0.2462,0.1124,0.1306,0.076,0.1368,0.3556,0.38,0.6232,0.6596,-0.3974,0.0044,0.345,0.6768,0.7642,1,0.8428,0.5458,0.3362,0.3712,0.7292,0.9302,0.5808,0.2664,0.2576,0.1092,0.0306,-0.083,0.0568,0.4586,0.5808,0.31,0.048,-0.048,-0.048,-0.1442,-0.0218,0.0218,0.3362,0.441,0.3712,0.4324,-0.5,-0.2334,0.2,0.2,0.6334,0.6666,0.7334,0.5334,0.5,0.4334,0.3334,0.4334,0.7,0.9,1,0.8334,0.6,0.7,0.5666,0.6666,0.9,0.9,0.8,0.6666,0.5334,0.5666,0.5,0.5334,0.7334,0.8666,1,0.9666,-0.614,-0.2982,0.0878,0.2632,0.579,0.5438,0.6842,0.5438,0.4036,0.3684,0.3684,0.4736,0.6842,0.8948,1,0.8596,0.4386,0.5088,0.5438,0.6492,0.9298,0.9298,0.7192,0.6492,0.5088,0.5088,0.4386,0.5088,0.6492,0.7894,0.965,0.9298,-0.4656,-0.2586,0.1896,0.4482,0.6896,1,0.9138,0.4656,0.4138,0.4828,0.6896,0.9482,0.862,0.7932,0.569,0.5,0.3276,0.4482,0.3448,0.5862,0.7932,0.6896,0.5518,0.362,0.3104,0.362,0.1724,0.4138,0.5,0.6206,0.8104,0.8276,-1,-1,-1,-1,-1,-1,-0.9864,-0.9848,-0.4226,-0.0114,-0.0726,0.0336,0.1236,0.194,0.2186,0.1822,0.3562,0.4878,0.8768,0.8692,0.4854,-0.2366,-0.746,-0.9176,-0.9414,-0.966,-0.9678,-0.9728,-0.9712,-0.9652,-0.9746,-0.9754,-0.9822,-1,-1,-1,-1,-1,-1,-0.992,-0.993,-0.4902,0.3438,0.3386,0.5978,0.8328,0.9276,0.9718,0.8292,0.7306,0.7884,0.7132,0.4314,-0.1062,-0.6594,-0.9034,-0.915,-0.9326,-0.9466,-0.942,-0.942,-0.9364,-0.9406,-0.9434,-0.9448,-0.9536,-1,-1,-1,-1,-1,-1,-0.9488,-0.922,-0.6388,-0.422,-0.3388,-0.442,-0.442,-0.3088,-0.3554,-0.517,-0.602,-0.562,-0.532,-0.712,-0.687,-0.712,-0.4554,0.2112,0.348,0.2812,0.349,0.3632,0.28,0.39,0.4732,0.5932,0.5266,-1,-1,-1,-1,-1,-1,-0.7714,1,1,1,-0.6,-0.9714,-1,-1,-0.9714,-0.8572,-0.6572,-0.7714,-0.0286,1,1,1,1,0.9142,-0.8,-0.8572,-0.9428,-0.9714,-0.9142,-1,-1,-0.9142,-0.9142,1,1,1,1,1,1,1,1,1,1,-0.7004,-0.7004,-0.733,-0.733,-0.723,-0.7428,-0.7412,-0.756,-0.7934,-0.9266,-0.52,-0.647,0.3918,0.5068,0.7716,0.9076,0.9476,1,-0.1276,0.3176,0.816,0.7864,0.5014,0.454,0.8042,0.911,0.7922,0.6914,0.8814,1,0.6498,0.46,0.638,0.7864,0.822,0.6024,0.4184,0.27,0.0504,-0.0148,-0.3828,-0.4658,-0.359,-0.3116,-0.371,-0.1454,-0.0208,0.175,0.1928,-0.1928,-0.1906,0.2742,0.6292,0.7494,0.5614,0.3682,0.7964,0.9164,0.859,0.645,0.9686,0.9792,0.5926,0.5456,0.7806,1,0.9216,0.8224,0.3682,0.3264,0.2532,0.1332,-0.081,-0.4046,-0.0444,-0.0234,-0.0862,0.1018,0.2532,0.3942,0.3994,-0.0078,-0.2686,0.2114,0.5942,0.7028,0.5142,0.3542,0.6742,1,0.6972,0.6972,0.8742,0.8686,0.5372,0.5542,0.7142,0.9258,0.9828,0.8058,0.3542,0.1942,0.0742,-0.1486,-0.3658,-0.5142,-0.1658,-0.0972,-0.1428,0.0514,0.16,0.4572,0.4742,0.0458,0.1714,-1,-1,1,-0.4,-1,-1,-0.4,-1,-0.6204,-0.4744,-0.4452,-0.3576,-0.124,0.0948,0.1532,0.2554,0.1386,0.2262,0.3868,0.3138,0.781,0.4744,0.6204,0.5912,0.6788,0.3722,0.5036,0.5328,0.8394,0.8978,0.854,0.5766,0.6058,0.7956,1,0.9562,0.6788,0.5036,0.5912,0.2408,'6'
-0.2314,0.2386,0.4316,0.5446,0.031,-0.2314,-0.388,-0.4572,-0.3442,-0.3406,-0.3296,-0.297,-0.1366,0.0274,0.2094,0.5154,0.989,0.8724,0.6502,0.7232,0.8106,0.9454,0.9526,0.705,0.6284,0.541,0.694,0.7304,1,0.9418,0.9636,0.7668,-0.4436,-0.0858,0.3052,0.3744,-0.1278,-0.212,-0.5368,-0.3594,-0.3264,-0.3624,-0.4496,-0.4526,-0.2752,-0.2572,-0.0106,0.2452,0.4346,0.7384,0.7894,0.6452,0.6962,0.7564,0.7022,0.6692,0.5068,0.5308,0.63,0.7082,0.8676,1,0.988,0.8556,-0.4832,-0.1642,0.3526,0.3466,-0.2402,-0.4742,-0.5928,-0.3586,-0.459,-0.4134,-0.5592,-0.5806,-0.386,-0.237,-0.2706,-0.07,0.1914,0.5228,0.848,0.839,0.608,0.5562,0.6292,0.7478,0.696,0.6262,0.696,0.7598,0.9332,1,0.9058,0.7902,-0.467,0.1654,0.514,0.3938,0.0396,-0.593,-0.4084,-0.4144,-0.3412,-0.5226,-0.5286,-0.6076,-0.4554,-0.3324,-0.268,-0.1362,0.0746,0.4114,0.8038,0.8506,0.7102,0.5754,0.7394,0.7862,0.8418,0.6428,0.798,0.7424,0.921,1,0.9268,0.8302,-0.4732,0.418,0.6686,0.3996,-0.1676,-0.72,-0.6464,-0.6906,-0.8158,-0.7164,-0.6354,-0.7312,-0.6942,-0.5174,-0.4476,-0.1934,-0.127,0.1528,0.6058,1,0.9042,0.429,0.4254,0.7422,0.779,0.4548,0.7274,0.6648,0.779,0.8822,0.838,0.6538,-0.4172,0.7716,0.958,0.352,-0.5432,-0.655,-0.7622,-0.641,-0.6644,-0.8834,-0.8276,-0.9114,-0.7016,-0.5478,-0.3194,-0.394,-0.0956,0.0396,0.5758,1,0.986,0.7762,0.5292,0.7156,0.669,0.2634,0.4452,0.408,0.6038,0.9488,0.7996,0.268,-0.216,0.4944,0.7386,0.142,-0.5284,-0.8182,-0.8694,-0.8352,-0.7444,-0.6648,-0.608,-0.6194,-0.5228,-0.5228,-0.3182,-0.5512,-0.233,0.1136,0.5966,1,0.8978,0.7898,0.8182,0.4602,0.3352,0.0056,0.1306,0.0852,0.375,0.6136,0.625,0.1136,-0.1516,0.4546,0.4546,0.5152,-0.1516,-0.5152,-0.6364,-0.5152,-0.5758,-0.697,-0.6364,-0.5152,-0.4546,-0.0304,-0.0304,0.3334,0.9394,0.8788,0.4546,0.6364,0.6364,0.8182,1,0.7576,0.5758,0.5758,0.091,0.5152,0.8788,0.5758,0.8182,1,-0.35,0.05,0.35,0.5,0.05,-0.35,-0.6,-0.4,-0.4,-0.45,-0.5,-0.3,-0.05,0.1,0.2,0.6,0.8,0.35,0.5,0.65,0.75,0.95,0.6,0.55,0.6,0.55,0.55,0.7,0.8,1,0.9,0.65,-0.4256,0.383,0.617,0.4042,-0.0638,-0.5744,-0.532,-0.851,-0.8724,-0.6596,-0.532,-0.532,-0.468,-0.4042,-0.3192,-0.0638,-0.0212,0.1064,0.7022,0.9148,0.7022,0.4894,0.5744,0.6808,0.7872,0.5744,0.6596,0.6808,0.766,1,0.9574,0.5744,-1,-1,-1,-1,-0.9638,-0.9236,-0.9046,-0.937,-0.9542,-0.9408,-0.5076,0.7062,0.8646,0.7844,0.6012,0.79,0.9008,0.7404,0.519,0.2386,-0.061,-0.605,-0.8034,-0.8894,-0.9522,-0.9542,-0.9562,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.975,-0.9696,-0.9662,-0.7194,-0.29,0.0382,-0.116,-0.0152,0.5044,0.906,0.7032,0.5138,0.3806,-0.0314,-0.3942,-0.6068,-0.6886,-0.8654,-0.924,-0.9368,-0.9666,-0.9648,-0.9676,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9,-0.9368,-0.77,0.08,0.7166,0.56,0.3366,-0.3126,-0.1626,-0.0326,0.0474,-0.0676,-0.125,-0.35,-0.7668,-0.8912,-0.949,-0.8312,-0.85,-0.6268,-0.8,-0.8934,-0.9,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,-0.9428,1,1,1,-0.1142,1,1,-0.2858,-0.8572,-0.8572,-0.8,-0.7714,-0.3142,-0.2572,-0.6858,-0.6286,-0.4572,-0.7428,-0.8286,-0.7428,-0.9428,0.1428,-1,-1,-1,-1,-1,-1,-0.0888,-0.0594,-0.0296,0.02,0.0456,0.0708,0.0954,0.0762,0.076,-0.2066,0.343,0.3412,0.3462,0.3528,0.351,0.3636,0.4126,0.4888,0.5836,0.5922,-0.4266,-0.0352,-0.2198,-0.4016,-0.0416,0.2644,0.4804,1,-0.6868,-0.5542,-0.5844,-0.4036,-0.1928,-0.1868,0.006,0.1084,0.1386,0.229,0.4638,0.7772,0.6808,0.9096,1,0.9518,0.771,0.7048,0.7048,0.7108,0.6144,0.5722,0.5362,0.6326,0.494,0.5362,0.506,0.3072,0.235,0.2048,-0.1024,-0.6204,-0.7478,-0.7,-0.6,-0.6522,-0.3956,-0.2086,-0.2392,0.0478,0.0956,0.2434,0.474,0.7044,0.6782,0.9608,1,0.8652,0.674,0.874,0.8956,0.9218,0.9782,0.7522,0.7044,0.8696,0.8086,0.7086,0.513,0.4782,0.3956,0.3478,0.2956,-0.0392,-0.6046,-0.4976,-0.5488,-0.6652,-0.4744,-0.4326,-0.3024,0.0326,0.2976,0.5024,0.8744,0.8838,0.7674,0.6884,0.9906,0.9906,0.7534,0.8326,0.907,0.772,0.721,0.7256,0.8466,1,0.8976,0.7674,0.5954,0.5442,0.414,0.4838,0.3488,0.028,-0.38,-1,-1,1,-1,-1,-1,-0.1666,-1,-0.0732,-0.122,-0.252,0.057,-0.0082,-0.0406,-0.0244,0.3334,0.3822,0.122,1,0.9512,0.5284,0.2846,0.496,0.2196,0.0732,-0.1056,0.3984,0.4146,0.2358,0.0406,0.0732,0.0406,0.1056,-0.0244,0.2358,0.0082,-0.252,-0.0732,0.122,-0.0082,'7'
-0.197,0.2992,0.2424,0.3446,-0.2878,-0.5568,-0.5758,-0.7008,-0.6288,-0.7386,-0.6478,-0.5114,-0.4054,-0.394,-0.0114,0.2652,0.659,0.7084,0.519,0.4394,0.8598,0.9734,1,0.9016,0.5758,0.4848,0.5152,0.841,0.841,0.8258,0.6818,0.591,-0.2874,0.1954,0.1782,0.3564,0.1322,-0.089,-0.1926,-0.1782,-0.3046,-0.365,-0.2558,-0.3794,-0.2242,-0.0748,0.023,0.2874,0.4426,1,0.9512,0.4712,0.6006,0.7558,0.615,0.7068,0.4798,0.5028,0.546,0.4886,0.7472,0.6436,0.6982,0.638,-0.315,0.085,0.1972,0.326,0.0164,-0.0932,-0.2712,-0.3288,-0.3342,-0.3698,-0.2876,-0.263,-0.2712,-0.1562,-0.1206,0.0466,0.2548,0.5644,0.8028,0.822,0.663,0.7288,0.7918,0.8328,0.7616,0.685,0.6028,0.7342,0.9068,1,0.9726,0.9288,-0.4546,-0.1316,0.2402,0.2348,-0.137,-0.3948,-0.6364,-0.555,-0.5848,-0.5766,-0.555,-0.593,-0.6146,-0.5414,-0.3894,-0.2592,-0.0964,0.118,0.4626,0.7694,0.7856,0.6256,0.6066,0.6228,0.677,0.669,0.6146,0.6066,0.8074,1,0.9702,0.8644,-0.4224,0.1458,0.5106,0.3344,0.0396,-0.5472,-0.7082,-0.4802,-0.4954,-0.6292,-0.693,-0.7326,-0.538,-0.5288,-0.4012,-0.3738,-0.2492,0.0942,0.4012,0.7508,0.9028,0.8086,0.7812,0.7902,0.8054,0.7902,0.6778,0.6322,0.8238,1,0.9848,0.9878,-0.5672,0.4262,0.5804,0.095,-0.3246,-0.7214,-0.7804,-0.6722,-0.7214,-0.7868,-0.705,-0.6296,-0.6066,-0.6032,-0.6,-0.4622,-0.3804,-0.2032,0.1278,0.646,1,0.9476,0.6688,0.6852,0.7574,0.6032,0.4296,0.3378,0.5672,0.6886,0.7508,0.823,-0.5688,0.3298,0.4312,-0.163,-0.7028,-0.7898,-0.8478,-0.8116,-0.75,-0.721,-0.8298,-0.7428,-0.6956,-0.6014,-0.616,-0.6376,-0.3586,-0.1304,0.134,0.605,0.9782,1,0.8442,0.7356,0.4964,0.3732,0.3008,0.1486,0.2718,0.3732,0.6268,0.924,0,0.2758,0.2414,0.1724,-0.4138,-0.4482,-0.3794,-0.6552,-0.6552,-0.5862,-0.138,-0.2068,-0.1034,-0.1034,0.0344,0.3448,0.4482,0.4482,0.5172,0.6206,0.8966,0.931,0.8276,1,0.8966,0.6896,0.7586,0.8966,0.9656,0.9656,0.862,0.6896,-0.0212,0.3618,0.3618,0.3618,-0.234,-0.234,-0.532,-0.4042,-0.5744,-0.532,-0.4042,-0.3618,-0.149,-0.2766,-0.234,0.4042,0.5744,0.6596,0.532,0.4894,0.8298,1,1,1,0.6596,0.4894,0.4468,0.7446,0.8298,0.8298,0.8298,0.6596,-0.2142,0.2142,0.2142,0.375,0.1786,0.0178,-0.1072,-0.0536,-0.1428,-0.1964,-0.0714,-0.2322,-0.1428,0.0178,0.1608,0.25,0.3214,0.9286,0.9642,0.7322,0.6428,0.875,0.7322,0.8392,0.5714,0.7142,0.6786,0.6964,1,0.9642,0.8392,0.7322,-1,-1,-0.9466,-0.9562,-0.808,-0.8104,-0.927,-0.9296,-0.927,-0.8128,-0.2612,0.3706,0.949,0.8784,0.548,0.3998,0.3122,0.3974,0.4386,0.3778,0.181,-0.2832,-0.723,-0.842,-0.8178,-0.7668,-0.7522,-0.8056,-0.8882,-0.9246,-0.9368,-0.9296,-0.9538,-1,-1,-0.9676,-0.971,-0.932,-0.7358,-0.6792,-0.2504,0.1392,0.355,0.7122,-0.0604,0.1648,0.5598,0.7492,0.7136,0.4756,0.3698,-0.086,-0.2834,-0.2882,-0.5766,-0.8706,-0.8652,-0.87,-0.8956,-0.8996,-0.9016,-0.9272,-0.9434,-0.9474,-0.9474,-0.9622,-1,-1,-0.9,-0.95,-0.82,-0.41,0.43,0.55,0.65,0.58,0.49,0.0132,-0.4,-0.1956,0.0332,0.1932,0.2332,0.0022,-0.46,-0.618,-0.548,-0.584,-0.62,-0.28,-0.1634,-0.56,-0.6368,-0.56,-0.55,-0.5934,-0.7068,-0.78,-0.9268,-1,-1,-0.8,-1,0.8572,1,1,1,-0.4,-0.6572,-0.2858,1,1,-0.5428,-0.7142,-0.7428,-0.9428,-0.7142,-0.7142,-0.8858,-0.9428,0.4286,-0.0286,-0.7714,0.0286,-0.0572,-0.8286,-0.8,-0.8286,-0.8858,-1,-1,-1,-0.4546,-0.4116,-0.3674,-0.286,-0.187,-0.111,-0.0124,0.1082,0.129,-0.1568,0.5192,0.5058,0.4806,0.4606,0.4346,0.417,0.4274,0.4898,0.6104,0.7208,-0.52,0.0824,0.7,0.003,-0.1352,-0.0704,0.0118,1,-0.4742,-0.4542,-0.4462,-0.1992,-0.1674,-0.0678,0.0996,0.1314,0.3306,0.4542,0.5698,0.9164,0.7848,1,0.992,0.7052,0.8088,0.773,0.6374,0.5776,0.7172,0.6454,0.5698,0.6654,0.749,0.737,0.733,0.49,0.4702,0.1992,0.1992,-0.275,-0.8084,-0.6332,-0.6656,-0.6104,-0.5616,-0.448,-0.2402,0.052,0.1364,0.2272,0.3928,0.7824,0.5812,0.909,1,0.6396,0.685,0.6494,0.4968,0.802,0.7922,0.8084,0.6428,0.7208,0.75,0.711,0.698,0.4708,0.341,0.1558,0.0812,-0.2694,-0.1732,-0.1492,-0.5314,-0.4686,-0.397,-0.3492,-0.2686,0.0568,0.0598,0.3284,0.6986,1,0.782,0.8896,1,0.8956,0.9134,0.8238,0.7104,0.812,0.9732,0.9792,0.9164,0.8866,0.9374,0.8358,0.6358,0.5164,0.4448,0.3552,0.2208,-0.1732,-0.5052,-1,-1,1,-0.2,-1,0.2,0.1334,1,-0.353,-0.3138,-0.3922,-0.3922,-0.255,-0.1568,-0.196,0.0196,0.1176,0.647,0.7648,0.902,0.6862,0.4706,0.6666,1,0.7844,0.8628,0.9804,0.7648,0.5686,0.451,0.4902,0.353,0.2156,0.2942,0.451,0.4706,0.2352,0.1764,0.2746,0.0784,'7'
-0.7164,-0.3284,-0.0224,0.515,0.597,0.2686,0.015,-0.0224,0.0448,-0.194,-0.097,-0.0448,0.1194,0.2314,0.3956,0.6866,1,0.9552,0.6568,0.6344,0.8284,0.8508,0.8508,0.4402,0.388,0.5,0.3806,0.4478,0.5298,0.7314,0.8806,0.9328,-0.5406,-0.2442,0.25,0.4302,0.5174,0.1744,-0.0814,-0.0406,-0.128,-0.186,-0.0988,0.0406,-0.0174,0.0988,0.1918,0.5058,0.7906,0.8546,0.7848,0.7326,0.7442,0.8024,0.8024,0.686,0.4942,0.5814,0.4942,0.4012,0.7848,0.7094,0.7848,1,-0.457,0.031,0.6082,0.5946,0.3196,0.1134,0.0516,0.1272,0.0034,-0.0652,-0.1408,-0.0652,0.0446,0.1272,0.1478,0.3058,0.7938,0.842,1,0.7938,0.8006,0.897,0.8144,0.7732,0.6288,0.5876,0.5532,0.677,0.7044,0.8626,0.9244,0.945,-0.4152,0.1914,0.7906,0.7472,0.0614,-0.018,-0.1046,0.047,-0.2636,-0.3212,-0.1552,-0.2058,-0.2418,-0.2418,0.1046,0.1264,0.3574,0.8194,0.9062,1,0.769,0.8556,1,0.834,0.5452,0.6678,0.473,0.538,0.834,0.8412,0.8772,0.8484,-0.3736,0.3736,0.8944,0.8038,-0.2378,-0.2604,-0.268,-0.2,-0.683,-0.5094,-0.4264,-0.3584,-0.532,-0.351,0.0188,-0.1698,0.034,0.2754,0.9548,1,0.7132,0.849,0.834,0.6226,0.5548,0.585,0.3284,0.2076,0.4114,0.615,0.532,0.4188,-0.3628,0.3982,1,0.9116,-0.0442,-0.584,-0.4778,-0.407,-0.9292,-0.531,-0.4956,-0.6814,-0.469,-0.2478,-0.0974,-0.416,0,0.3008,0.8762,0.9912,0.9734,0.9116,0.9912,0.8584,0.885,0.9646,0.5576,0.4248,0.469,0.6548,0.6638,0.6548,-0.2478,0.5398,0.8408,0.6372,0.0708,-0.3274,-0.2744,-0.3008,-0.2212,-0.6018,-0.4248,-0.416,-0.6106,-0.3362,-0.0266,-0.1062,0.0176,0.6814,1,0.7964,0.593,0.761,0.7434,0.5664,0.5486,0.5398,0.2832,0.1592,0.1946,0.0266,0.5132,0.7876,-0.661,-0.356,-0.0848,0.4916,0.5594,0.2542,-0.017,-0.017,0.0848,-0.1526,-0.1186,0.017,0.1186,0.2204,0.356,0.695,0.8984,0.7628,0.6272,0.5932,0.7288,0.7966,0.8644,0.356,0.3898,0.356,0.4576,0.4916,0.5594,0.661,0.8306,1,-0.7778,-0.3704,0.1852,0.5926,0.5926,0.1112,-0.037,-0.037,-0.074,-0.1852,-0.1112,0.037,0.1112,0.1482,0.3334,0.6666,1,0.963,0.5556,0.6666,0.8148,0.8148,0.7038,0.4814,0.5186,0.5556,0.3704,0.4074,0.5926,0.7408,0.8518,0.7038,-0.4256,0.234,0.766,0.7022,-0.1064,-0.0638,-0.1702,-0.0638,-0.3192,-0.4256,-0.2978,-0.3618,-0.4256,-0.4256,-0.0852,0.0426,0.2128,0.617,0.7872,1,0.8298,0.6596,0.8936,0.7234,0.4042,0.4468,0.2554,0.3404,0.6596,0.7022,0.7446,0.6808,-1,-1,-1,-1,-1,-0.9774,-0.9754,-0.9744,-0.94,-0.737,-0.3744,0.0482,0.73,0.6758,0.138,0.4512,0.7518,0.9812,0.8562,0.4946,0.1202,-0.4138,-0.8542,-0.9536,-0.9546,-0.9566,-0.9754,-0.9784,-0.9734,-0.9734,-0.9606,-0.9646,-0.937,-1,-1,-1,-1,-1,-0.9692,-0.9738,-0.9762,-0.9402,-0.7216,-0.221,0.2232,0.7672,0.9326,0.4372,0.1784,0.1682,-0.0028,-0.0864,-0.3182,-0.4652,-0.7258,-0.9326,-0.9738,-0.926,-0.727,-0.597,-0.5362,-0.4904,-0.4524,-0.3898,-0.5742,-0.761,-1,-1,-1,-1,-1,-0.5534,-0.7468,-0.8334,-0.86,-0.74,-0.4868,-0.18,-0.3134,-0.22,-0.45,-0.585,-0.575,-0.77,-0.795,-0.77,-0.785,-0.705,-0.8534,-0.7868,-0.82,0.33,0.3932,0.4132,0.42,0.4432,0.3966,0.2832,0.2366,-1,-1,-1,-1,-1,-0.7142,-0.6572,-0.5428,1,1,1,1,-0.3142,-0.6,-0.4858,-0.4572,-0.2572,0.1714,-0.1142,-0.5714,1,1,1,-0.4858,1,1,0.5428,-0.9142,-0.8572,-0.8858,-0.4286,-0.0858,-0.2286,1,1,1,1,1,1,1,0.9566,0.8432,0.423,-0.0662,-0.0662,-0.042,-0.042,-0.029,0.0286,0.0978,0.1564,0.2684,0.3996,-0.5066,-0.6352,-0.1926,0.0446,0.6122,0.9176,0.7322,0.4166,-0.1112,0.4888,0.6222,0.4666,0.1778,0.2888,0.4444,0.6,0.7666,0.9112,1,0.9112,0.6888,0.7,0.7222,0.7666,0.9334,0.9778,0.6888,0.1888,0.0222,-0.1666,0.0444,0.3334,0.2888,0.1334,0.4112,0.5222,0.4666,-0.1222,-0.1334,-0.3666,-0.4796,0.398,0.8062,0.1122,-0.0918,0.0612,0.1632,0.5918,0.7346,0.602,0.898,0.6836,0.4796,0.4796,0.6224,0.6836,1,0.9898,0.1938,0.0408,0.0918,0.0816,0.102,0.0816,-0.0204,0,0.1428,0.347,0.2654,-0.153,-0.153,-0.5918,-0.3554,0.4462,0.6198,0.2232,0.1074,0.0744,0.3388,0.6694,0.8926,0.7356,0.7438,0.752,0.5786,0.529,0.686,0.9008,1,0.7438,0.4546,-0.0662,-0.3636,-0.471,-0.1074,-0.1652,-0.1818,-0.1158,0.2066,0.0662,-0.0248,-0.0744,-0.3636,-0.562,-0.1138,-1,-1,1,-1,-1,-1,-0.6334,1,-0.7192,-0.5556,-0.4386,-0.4386,-0.4502,-0.0176,-0.0644,0.1346,0.0994,0.5322,0.8596,0.8596,0.7544,1,0.9532,0.8948,0.7426,0.731,0.8362,0.7544,0.9064,0.7076,0.9064,0.8714,0.8714,0.8128,0.9298,0.965,0.7076,0.3918,0.5438,0.1346,'8'
-0.5584,-0.1168,0.2556,0.754,0.817,0.2556,0.1608,0.1356,0.0978,-0.1104,-0.1168,0.0662,0.0914,0.0978,0.1988,0.5394,0.7414,0.9432,0.8864,0.8108,0.8612,1,0.9936,0.899,0.735,0.6404,0.5458,0.5268,0.8108,0.7918,0.8296,0.9748,-0.4832,-0.1516,0.3988,0.4944,0.6068,0.2808,-0.0168,0.0224,-0.0224,-0.0394,-0.1012,-0.0112,-0.0394,-0.0168,0.2752,0.3484,0.5842,0.927,0.9044,0.7808,0.7978,0.8596,0.8876,0.8146,0.7584,0.573,0.5,0.5394,0.8258,0.837,0.7696,1,-0.4896,-0.1134,0.433,0.4226,0.3144,0.098,-0.0722,-0.0206,-0.0722,-0.0722,-0.098,-0.0154,0.031,0,0.201,0.2628,0.469,0.835,0.9432,0.7526,0.7628,0.8918,0.8712,0.835,0.7372,0.634,0.6134,0.5876,0.9278,0.9382,0.8506,1,-0.4968,0.002,0.4884,0.4634,0.0146,-0.1656,-0.2536,-0.132,-0.2536,-0.241,-0.2034,-0.1446,-0.1194,-0.1824,0.0944,0.1446,0.2914,0.6226,0.7024,0.8072,0.7568,0.803,0.8114,0.761,0.7024,0.4884,0.4758,0.5598,0.8616,0.8658,0.8072,1,-0.4632,0.0308,0.5962,0.563,-0.0784,-0.2826,-0.5866,-0.373,-0.4916,-0.449,-0.4062,-0.43,-0.3586,-0.297,-0.0832,0.0118,0.1258,0.468,0.6438,1,0.981,0.6864,0.848,0.8432,0.6912,0.544,0.4964,0.4964,0.8148,0.8908,0.8718,0.9098,-0.4638,-0.1368,0.4798,0.4638,-0.0402,-0.3352,-0.5872,-0.4316,-0.6462,-0.6408,-0.732,-0.5174,-0.5174,-0.5282,-0.2976,-0.1636,-0.0348,0.2922,0.6998,0.9518,0.8766,0.866,0.748,0.7212,0.7266,0.5656,0.4316,0.378,0.6568,0.7856,0.8552,1,-0.3894,0,0.3816,0.1832,-0.3436,-0.6642,-0.8702,-0.519,-0.6794,-0.748,-0.8854,-0.7328,-0.7252,-0.7328,-0.4274,-0.1984,-0.2672,0.29,0.939,1,0.8092,0.5954,0.5496,0.6412,0.3816,0.1756,-0.1526,-0.0306,0.2138,0.519,0.5114,0.7252,-0.44,-0.08,0.24,0.64,0.72,0.2,0.24,0.28,0.16,-0.12,-0.04,0.2,0.2,0.16,0.16,0.72,0.64,1,0.88,0.76,0.92,0.92,0.92,0.88,0.76,0.64,0.48,0.56,0.8,0.88,0.84,0.96,-0.6086,-0.2174,0.3478,0.7826,0.826,0.2608,0.1304,0.087,0.0434,-0.087,-0.1304,0.0434,-0.0434,0,0.087,0.3914,0.6956,0.6086,0.7392,0.6956,0.913,0.913,1,0.9566,0.7826,0.6086,0.4348,0.4782,0.6522,0.6086,0.6956,0.826,-0.5146,0.068,0.6116,0.5728,-0.1262,-0.2816,-0.631,-0.398,-0.4564,-0.4174,-0.3398,-0.4174,-0.3592,-0.2622,-0.0874,0.0292,0.1068,0.4758,0.6504,1,0.9612,0.767,0.903,0.8446,0.67,0.5146,0.5146,0.5534,0.864,0.864,0.903,0.864,-1,-1,-1,-1,-1,-1,-1,-0.9698,-0.9754,-0.9642,-0.3658,0.2798,0.943,0.3902,0.2072,0.5132,0.856,0.9374,0.387,0.005,-0.2228,-0.7376,-0.876,-0.9564,-0.9642,-0.9654,-0.9698,-0.9564,-0.9498,-0.9698,-0.9676,-0.9664,-0.9688,-1,-1,-1,-1,-1,-1,-1,-0.9834,-0.9846,-0.981,-0.5656,0.0342,0.309,0.1336,0.5304,0.8786,0.8216,0.4642,0.1462,-0.0698,-0.3554,-0.8518,-0.944,-0.9768,-0.9398,-0.8658,-0.6378,-0.4522,-0.32,-0.2778,-0.3018,-0.4038,-0.4824,-1,-1,-1,-1,-1,-1,-1,-0.9,-0.9734,-0.85,-0.7368,-0.455,-0.6,-0.28,-0.244,-0.124,-0.216,-0.38,-0.32,-0.204,-0.232,-0.652,-0.8,-0.8134,-0.7434,0.31,0.57,0.57,0.5932,0.7,0.6132,0.4532,0.4132,-1,-1,-1,-1,-1,-1,-1,-0.8286,-0.8858,1,1,1,-0.3142,-0.8,-0.8858,-0.8572,-0.5428,-0.2858,-0.5142,0.0572,1,1,1,-0.6572,1,1,1,0.0858,-0.8286,-0.8572,-0.8858,-0.8572,0.0858,0.9878,0.9878,0.9692,0.9502,0.916,0.9062,0.8862,0.8692,0.7848,0.3576,0.3574,0.3574,0.377,0.3778,0.3792,0.405,0.404,0.4646,0.5284,0.5944,-0.5466,-0.4942,-0.542,-0.173,0.1372,0.3872,0.0888,1,0.0736,0.7264,0.8106,0.6422,0.3052,0.2422,0.3894,0.6632,1,0.9158,0.8106,0.8316,0.7264,0.579,0.6422,0.7894,0.8948,0.3894,0.1578,-0.2,-0.3052,-0.2842,-0.3474,-0.1578,-0.2632,-0.4526,-0.179,-0.0948,-0.1368,-0.0526,-0.179,-0.4526,0.0186,0.7592,0.7408,0.5,0.3334,0.1666,0.3704,0.463,0.9444,1,0.8704,0.9444,0.5926,0.3334,0.5556,0.7778,0.8518,0.463,0.2408,0.0186,-0.2222,-0.2592,-0.2962,-0.3704,-0.3334,-0.0926,0.2962,0.2962,0.037,0.1666,0.1112,-0.2592,0.0358,0.6428,0.7322,0.3572,0.2858,0.2322,0.1786,0.5536,0.9464,0.9642,0.7678,1,0.6428,0.6786,0.8214,0.9286,1,0.9108,0.6428,0.3572,0.0358,-0.0892,-0.6072,-0.5536,-0.1072,0.1428,0.5178,0.5,0.1786,0.3036,0.1072,-0.375,-0.1294,-1,-1,1,-0.6,-1,-1,-0.8,1,-0.7714,-0.76,-0.52,-0.5314,-0.44,-0.36,0.0286,0.4172,0.5314,0.3942,0.6686,0.7486,0.7486,0.9314,0.9314,0.6686,0.76,0.8058,0.8172,0.76,0.8286,0.8172,0.9542,0.9542,1,0.7828,0.7828,0.7258,0.7942,0.5772,0.4628,0.2458,'8'
-0.446,-0.169,0.23,0.2794,0.5,0.9836,1,0.5962,0.892,0.9484,0.608,0.4906,0.0774,0.1502,0.0634,-0.2394,-0.176,-0.2136,-0.3286,-0.2512,-0.0352,0.176,0.3756,0.3616,0.115,0.0938,-0.0094,-0.04,0.0868,0.2652,0.2816,0.4202,-0.4606,-0.162,0.1968,0.2592,0.507,0.9422,0.993,0.5532,0.8958,1,0.6644,0.5278,0.1598,0.1504,0.1666,-0.1458,-0.2314,-0.1666,-0.213,-0.2662,-0.1388,0.294,0.3194,0.2546,0.0972,0.176,-0.081,-0.0532,0.176,0.2268,0.2222,0.3912,-0.4574,-0.207,0.1836,0.2748,0.49,1,0.9812,0.8198,0.7918,0.8386,0.9532,0.8432,0.5626,0.1766,0.041,-0.062,-0.0878,-0.2046,-0.2024,-0.0526,0.1368,0.3052,0.2632,-0.0058,-0.1766,-0.083,-0.2398,-0.2772,-0.062,-0.0082,0.076,0.1018,-0.4912,-0.2254,0.1444,0.3898,0.8026,1,0.8532,0.8228,0.6228,0.5038,0.5646,0.7164,0.767,0.6962,0.5696,0.1974,0.1798,0.195,0.1594,0.1722,0.314,0.243,-0.0152,-0.0406,-0.0406,-0.0152,-0.0988,0.0912,0.3292,0.2936,0.2582,0.2784,-0.4926,-0.091,0.213,0.6336,0.9918,1,0.4192,0.3812,0.3052,0.1642,0.1262,0.2294,0.2972,0.5062,0.6744,0.669,0.5142,0.3242,0.3868,0.5766,0.6608,0.5116,0.403,0.2076,0.1668,0.2238,0.0692,0.2294,0.3704,0.3758,0.3596,0.2998,-0.446,0.1778,0.7038,1,0.77,0.439,0.2752,0.129,-0.1254,-0.338,-0.3066,-0.345,-0.4042,-0.3658,-0.2926,-0.0348,0.4182,0.439,0.4356,0.655,0.7596,0.7492,0.446,0.0452,-0.1916,-0.0662,-0.1986,-0.1114,0.1568,0.244,0.2682,0.237,-0.2224,0.377,0.5926,0.794,0.2552,-0.1756,-0.4754,-0.6066,-0.5972,-0.7798,-0.8782,-0.6018,-0.5362,-0.274,-0.171,0.0444,0.5456,0.7284,0.6814,0.8174,0.9906,1,0.6394,0.2646,0.0444,0.0538,-0.5738,-0.2366,0.0258,0.082,0.349,0.4192,-0.5652,-0.1304,0.174,0.3478,0.5218,0.8696,1,0.7826,0.6086,0.8696,0.6086,0.3044,-0.4348,-0.2174,-0.1304,-0.4782,-0.4348,-0.3044,-0.2608,-0.4348,0,0.3044,0.3914,0.3044,0.174,0.2608,0.1304,-0.174,0.174,0.2174,-0.087,0.087,-0.48,-0.2,0.2,0.2,0.44,0.96,1,0.48,0.88,0.96,0.52,0.48,-0.04,0.16,0.12,-0.28,-0.36,-0.32,-0.32,-0.48,-0.28,0.28,0.28,0.36,-0.16,-0.2,0.16,0.08,-0.08,0.12,0.32,0.28,-0.5142,0.0572,0.5428,0.9142,1,0.8572,0.4,0.3142,0.0286,-0.1428,-0.2286,-0.0572,0.0858,0.1428,0.1428,0.5142,0.3428,0.2858,0.5428,0.7428,0.9142,0.8,0.7428,-0.0286,0.0572,0.3428,0.2572,0.3714,0.5142,0.6,0.5428,0.3428,-1,-1,-1,-1,-1,-1,-1,-1,-0.9752,-0.9786,-0.5112,0.2048,0.342,0.3704,0.497,0.6474,0.6,0.8828,0.387,0.1656,-0.0568,-0.6154,-0.8036,-0.852,-0.9112,-0.955,-0.974,-0.9644,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.984,-0.9848,-0.4204,0.2214,0.4062,0.5602,0.8182,0.7582,0.3464,0.2956,-0.1788,-0.4918,-0.6134,-0.8388,-0.9,-0.9076,-0.934,-0.953,-0.9634,-0.9654,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8868,-0.9734,-0.7634,-0.644,-0.6692,-0.6582,-0.6528,-0.6838,-0.702,-0.722,-0.7564,-0.862,-0.9056,-0.74,-0.6634,-0.5934,-0.53,-0.41,-0.62,-0.64,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,-0.9714,-1,-0.7428,-0.7428,-0.6,-0.7142,-0.4,-0.4,-0.4,-0.4572,-0.8572,-0.7714,-0.8572,-0.8,-0.8572,-0.9142,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.0086,-0.0392,-0.0124,-0.0538,-0.0916,-0.1058,-0.1316,-0.2302,-0.5272,-0.5016,-0.44,0.2942,-0.3426,0.0096,0.1788,0.3118,0.3548,1,0.0508,0.4238,0.661,0.9662,1,1,0.661,0.4916,0.4916,0.4916,0.5594,0.8306,0.8306,0.7288,0.5594,0.8644,0.8984,0.8644,0.661,0.5254,0.5594,0.4238,0.0508,-0.0848,0.017,-0.2542,-0.1186,-0.1526,0.017,0.0848,-0.1186,-0.4238,-0.0468,0.1028,0.6448,0.9626,1,0.9814,0.4018,0.3272,0.1588,0.0654,0.2898,0.7944,0.701,0.5328,0.4018,0.757,0.7196,0.6074,0.3458,0.4018,0.4766,0.1962,-0.1962,-0.271,-0.3458,-0.3644,-0.4206,-0.4766,-0.0654,-0.028,-0.3458,-0.57,0.035,0.3684,0.6492,0.9474,0.9298,1,0.4562,0.2982,0.1404,0.035,0.1578,0.421,0.5088,0.2808,0.3158,0.5964,0.579,0.3684,0.4036,0.2106,0.2456,0.035,-0.035,-0.1404,-0.4562,-0.4736,-0.4386,-0.3508,-0.1578,-0.1404,-0.1578,-0.3334,0.0118,-1,-1,1,-1,-1,-0.8,-0.8334,-1,-0.2942,0.1428,0.2268,0.3614,0.479,0.1596,0.5798,0.9328,1,0.6302,0.8992,0.7478,0.6302,0.5126,0.731,0.3446,0.2606,0.1596,0.1764,0.5966,0.4286,0.4622,0.1932,0.311,0.3278,-0.042,-0.042,0.042,0.1428,0.0252,0.2942,-0.2268,'9'
-0.5246,-0.3044,0.0934,0.2562,0.5634,0.8502,0.778,0.8038,1,0.8428,0.5542,0.2082,0.0306,-0.0084,-0.1082,-0.147,-0.1822,-0.2082,-0.075,-0.112,-0.0786,0.2452,0.5172,0.569,0.2358,0.1564,0.1248,0.1212,0.2396,0.371,0.3654,0.5226,-0.522,-0.3206,0.1026,0.2802,0.6154,0.912,0.848,0.8534,1,0.8772,0.6356,0.262,0.1154,0.0274,-0.0512,-0.1374,-0.2106,-0.2162,-0.1374,-0.1098,-0.0146,0.2142,0.4798,0.5568,0.2528,0.1374,0.1758,0.1556,0.3974,0.4542,0.3608,0.5184,-0.5438,-0.321,0.0114,0.2502,0.5278,0.703,1,0.9134,0.6162,0.7878,0.7932,0.5968,0.275,0.0982,0.0982,0.0628,-0.0858,-0.1,-0.038,0.0238,0.1972,0.4358,0.3916,0.2944,0.1724,0.1194,0.1,0.1582,0.321,0.4076,0.351,0.2626,-0.5268,-0.1584,0.068,0.3992,0.7962,0.9238,1,0.716,0.4444,0.4012,0.5556,0.7614,0.8374,0.8478,0.7428,0.5308,0.358,0.3992,0.537,0.747,0.8024,0.64,0.3828,0.247,0.1914,0.1564,0.1646,0.2428,0.467,0.6234,0.607,0.465,-0.5788,-0.0376,0.2506,0.5832,0.7628,0.612,0.1618,0.0066,0.0022,-0.1198,-0.0022,0.091,0.1552,0.3836,0.663,0.8292,0.8848,0.785,0.7428,0.7804,0.9468,1,0.7384,0.459,0.3304,0.2506,0.1464,0.2794,0.5166,0.6386,0.592,0.6076,-0.4892,0.2514,0.6352,0.9082,0.6108,0.0406,-0.2594,-0.2028,-0.354,-0.5514,-0.5108,-0.554,-0.5028,-0.2864,-0.1216,-0.0594,0.4082,0.8622,0.9108,0.6648,0.6838,1,0.8756,0.4972,0.2702,0.1136,0.1136,-0.0054,0.2216,0.3946,0.4054,0.4622,-0.0218,0.4848,0.5982,0.8602,0.5372,-0.5328,-0.786,-0.559,-0.8908,-0.9432,-0.8778,-0.4978,-0.4148,-0.3362,-0.3624,-0.035,0.2008,0.9258,1,0.9258,0.7816,0.9956,0.8864,0.5458,0.0874,0.035,-0.2052,-0.3276,-0.1966,0.0174,-0.0174,0.1572,-0.5384,-0.3846,0.077,0.2692,0.6538,0.923,1,0.923,0.8462,0.7692,0.6538,0.3462,0.1538,0,0.0384,0,-0.1538,-0.1538,0.0384,0.0384,0.1154,0.423,0.7692,0.7692,0.5,0.2692,0.2692,0.2692,0.4616,0.6538,0.6154,0.6538,-0.6444,-0.2,0.0222,0.2444,0.6,0.8666,0.7778,0.9112,1,0.6444,0.6444,-0.0222,0.0222,0.0222,-0.1556,-0.2888,-0.2444,-0.3334,-0.3778,-0.2,0.0222,0.0222,0.6,0.5556,0.3778,0.0666,0.2,0.2444,0.2888,0.4222,0.5556,0.4666,-0.6098,-0.0244,0.4634,0.683,0.4146,0.1952,-0.0244,-0.2682,-0.3414,-0.244,-0.3414,-0.2682,-0.1464,0.0488,0.2682,0.3902,0.6342,1,0.8292,0.683,0.8536,0.9756,0.7804,0.4634,0.3414,0.1708,0.1464,0.1464,0.2682,0.6098,0.5854,0.5122,-1,-1,-1,-1,-1,-1,-1,-1,-0.9676,-0.9796,-0.4142,0.3122,0.617,0.8128,0.7274,0.8692,0.7394,0.7516,0.1668,0.18,-0.383,-0.7322,-0.8536,-0.91,-0.9604,-0.9724,-0.9736,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.987,-0.9902,-0.538,0.133,0.5054,0.6476,0.6632,0.8908,0.4168,-0.0204,-0.4422,-0.6328,-0.8032,-0.923,-0.9464,-0.9682,-0.9786,-0.9818,-0.9794,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8468,-0.9634,-0.6368,-0.6662,-0.634,-0.6878,-0.6554,-0.6154,-0.62,-0.6124,-0.6958,-0.87,-0.8672,-0.73,-0.74,-0.6668,-0.7068,-0.7134,-0.84,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,-0.9428,-0.8858,-0.7428,-0.5714,-0.6858,-0.6858,-0.1428,-0.2286,0.0286,-0.8,-0.7428,-0.7714,-0.6858,-0.9142,-0.7142,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.495,0.5226,0.5124,0.4848,0.4948,0.482,0.4592,0.426,0.0578,-0.1092,-0.32,0.6118,-0.4694,-0.048,0.0544,0.097,0.2088,1,-0.174,0.0434,0.6522,1,1,0.8696,0.5218,0.2608,0.3044,0.3478,0.5218,0.826,0.7826,0.4782,0.6522,0.913,1,0.913,0.6956,0.5218,0.5218,0.4348,0.2174,0.2608,0,-0.3478,-0.2608,0.0434,0.087,0.0434,-0.087,-0.6086,-0.0208,0.3334,0.6876,1,0.9584,0.9792,0.25,0.1876,0.1666,0.2084,0.4166,0.7916,0.7084,0.4792,0.6042,0.875,1,0.7708,0.75,0.4584,0.5208,0.4584,0.2084,0.3334,-0.0208,-0.4376,-0.125,0,0.2292,0.3958,0.1042,-0.2084,-0.1312,0.3114,0.8032,1,0.9016,0.8524,0.3606,0.1968,0.0984,0.2296,0.4426,0.7868,0.6394,0.4098,0.6394,0.705,0.836,0.5902,0.4098,0.246,0.164,0.2296,0.1312,0.2132,0.0164,-0.4098,-0.3606,-0.082,0.1476,0.1968,0.0164,-0.1148,0.039,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.3654,-0.25,-0.0576,0.0192,-0.1154,0,0.25,0.7308,0.5962,0.3846,0.7884,1,0.1538,0.2308,0.8846,0.9616,0.25,0.173,0.173,-0.25,0.3846,0.0576,0.5192,0.1924,-0.25,-0.1538,-0.0962,0.1538,-0.423,-0.423,-0.4616,-0.5962,'9'
-0.3366,0.1232,0.8654,0.8818,0.4976,0.1396,0.1362,0.133,-0.0312,-0.1166,-0.1264,0.1462,0.1462,0.3858,0.7668,0.8358,1,0.7636,0.7372,0.8226,0.8784,0.9474,0.7142,0.468,0.4548,0.583,0.4516,0.7536,0.8522,0.7274,0.7832,0.5534,-0.5192,-0.1836,0.2682,0.7174,0.8072,0.5904,0.3686,0.395,0.3394,0.1942,0.1784,0.247,0.4874,0.7068,0.8178,1,0.8812,0.8072,0.6698,0.9154,0.9208,0.8388,0.6672,0.535,0.5746,0.4664,0.6064,0.7332,0.7808,0.8256,0.8864,0.7966,-0.551,-0.2362,0.1304,0.4684,0.5922,0.76,0.5588,0.378,0.347,0.187,0.1588,0.2412,0.4116,0.7446,0.8838,0.9768,0.7496,0.6748,0.587,0.8168,1,0.9742,0.5716,0.4838,0.4632,0.5046,0.489,0.6052,0.7084,0.9226,0.9768,0.9148,-0.5472,-0.1336,0.1674,0.5528,0.8396,0.9184,0.367,0.2968,0.218,0.038,0.1364,0.3248,0.2968,0.6652,0.9466,0.9804,0.8762,0.6146,0.6708,0.8594,0.9494,0.9044,0.6456,0.5358,0.533,0.3586,0.5106,0.5444,0.5444,0.9662,1,0.8678,-0.5462,-0.0102,0.2796,0.6194,0.795,0.7248,0.3734,0.2592,-0.0132,-0.0308,0.0806,0.142,0.227,0.473,0.7452,0.956,1,0.8624,0.7042,0.8068,0.9678,0.9912,0.833,0.5402,0.4876,0.3938,0.432,0.4934,0.5374,0.795,0.833,0.6866,-0.579,0.0558,0.5438,0.713,0.3684,0.161,0.0366,-0.11,-0.26,-0.2696,-0.193,-0.1994,-0.0814,0.1834,0.2154,0.6746,0.9554,0.9904,0.7608,0.78,0.9776,1,0.7576,0.4578,0.4036,0.3334,0.3588,0.3812,0.4704,0.8468,0.9298,0.7066,-0.3366,0.2432,0.7986,0.9902,0.1106,-0.4448,-0.4496,-0.597,-0.7248,-0.769,-0.7592,-0.7838,-0.4546,-0.3808,-0.3072,0.027,0.4792,0.9066,0.8132,0.8624,0.8526,1,0.6364,0.0566,0.1204,-0.1008,-0.1204,-0.0614,-0.0466,0.1302,0.602,0.4546,-0.0698,0.3488,0.907,1,0.3954,-0.3024,-0.1162,-0.0232,-0.0232,-0.2558,-0.1162,-0.0232,-0.2558,0.3954,0.4884,0.628,0.6744,0.4418,0.5348,0.814,0.6744,0.8604,0.907,0.5814,0.3488,0.4418,0.2094,0.2094,-0.0232,0.5348,0.628,0.4884,-0.4146,0.2196,0.9512,1,0.4146,-0.0244,-0.0732,-0.1708,-0.317,-0.2682,-0.561,-0.0244,-0.0732,0.317,0.6586,0.6586,0.5122,0.7074,0.5122,0.561,0.9024,0.9512,0.561,0.4634,0.3658,0.5122,0.4634,0.4634,0.9024,0.561,0.6586,0.5122,-0.6444,-0.1112,0.3112,0.5334,0.4444,0.2888,0.1778,0.0222,-0.1112,-0.2888,-0.0666,-0.0666,-0.1112,0.2888,0.3778,0.7556,1,0.9112,0.5334,0.6666,0.8888,0.9778,0.7112,0.2666,0.3556,0.2,0.3778,0.3778,0.3778,0.7556,0.7778,0.5334,-1,-1,-1,-1,-1,-0.983,-0.9796,-0.9736,-0.977,-0.9762,-0.6206,0.4964,0.3254,0.5628,0.009,0.1732,0.1926,-0.0114,-0.2684,-0.3398,-0.4164,-0.7372,-0.874,-0.9174,-0.943,-0.9574,-0.9736,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9832,-0.9822,-0.915,-0.7392,-0.4852,-0.6706,-0.1378,0.1706,0.783,0.7948,0.8068,0.5174,0.0426,-0.2482,-0.438,-0.6282,-0.8518,-0.9284,-0.9484,-0.9592,-0.9666,-0.9712,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8734,-0.94,-0.4334,0.8132,0.6632,0.0932,-0.709,-0.46,-0.602,-0.326,-0.452,-0.584,-0.516,-0.556,-0.702,-0.858,-0.86,-0.9168,-0.7534,-0.7334,-0.83,-0.8234,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,1,1,1,0.5428,-0.6858,-0.9142,-0.8,-0.8,-0.9714,-0.6286,0.3428,0.8858,0.1428,-0.7714,-0.7428,-0.6858,-0.6858,-0.9714,-1,-1,-1,-1,-1,-1,0.3902,0.4618,0.5032,0.5644,0.6222,0.7026,0.8288,0.9558,1,0.8752,-0.2238,-0.2326,-0.23,-0.2228,-0.2328,-0.257,-0.2862,-0.3218,-0.4012,-0.276,-0.3734,0.153,-0.7018,-0.4672,-0.1112,-2e-04,-0.0936,1,-0.5834,-0.2986,-0.2708,-0.3402,-0.1736,-0.0278,0.0902,0.132,0.257,0.0486,0.4514,0.6598,0.632,0.8124,0.9652,1,0.8888,0.9792,0.8334,0.9236,0.7848,0.8612,0.8888,0.9514,0.8264,0.6458,0.5556,0.5764,0.1806,0.2708,0.0694,-0.3056,-0.8374,-0.7704,-0.6124,-0.5646,-0.5502,-0.445,-0.1962,0.0382,0.0718,0.2822,0.6364,0.732,0.78,0.5742,0.7272,1,0.78,0.6986,0.7512,0.6602,0.8564,0.8086,0.9378,0.8708,0.8422,0.7608,0.7656,0.6364,0.4976,0.555,0.0382,-0.0862,-0.3276,0.151,-0.0086,-0.396,-0.3676,-0.265,-0.1168,0.3676,0.527,0.4416,0.8462,1,0.8404,0.51,0.812,0.8804,0.5612,0.5898,0.8404,0.8234,0.7038,0.6638,0.6638,0.7322,0.7264,0.681,0.6866,0.886,0.641,0.4132,0.396,0.1966,-0.8058,-1,-1,1,-0.8,-1,-0.8,-0.2334,-1,0.2478,0.1112,0.0256,-0.1794,-0.0086,0.077,0.3504,0.2992,0.5556,0.641,1,0.47,0.5384,0.2992,0.6924,0.9316,0.3846,0.3334,0.5042,0.5556,0.1794,-0.0256,-0.0428,-0.077,0.0428,0.0428,0.0598,0.3334,-0.1112,-0.1966,-0.6582,-0.5898,'10'
-0.4144,0.043,0.706,0.8872,0.6884,0.5204,0.39,0.3348,0.2862,0.1382,0.2708,0.3348,0.3856,0.8386,0.7878,1,0.852,0.7348,0.7702,0.8298,0.9536,0.9338,0.7082,0.5712,0.5314,0.4962,0.589,0.8984,0.8784,0.821,0.7016,0.8298,-0.457,-0.1164,0.2886,0.493,0.9526,0.9338,0.5988,0.4438,0.5118,0.4834,0.4438,0.544,0.8108,0.8978,1,0.981,0.718,0.6802,0.7068,0.8544,0.9072,0.9168,0.7842,0.6538,0.5592,0.5422,0.5742,0.7426,0.8032,0.8694,0.8864,0.981,-0.5198,-0.253,0.1666,0.3284,0.564,0.6964,0.7608,0.5068,0.4314,0.3818,0.4296,0.461,0.61,0.9558,1,0.7314,0.575,0.6154,0.6412,0.7976,0.9024,0.794,0.6614,0.5106,0.461,0.4794,0.3762,0.5566,0.6302,0.7258,0.8564,0.8952,-0.525,-0.265,0.1926,0.4526,0.5836,0.7694,0.7224,0.48,0.388,0.347,0.3216,0.4018,0.5778,0.8084,0.914,0.9492,0.695,0.6814,0.6384,0.7712,0.8866,0.9238,0.654,0.5582,0.4272,0.4214,0.4214,0.5074,0.6716,0.7146,0.8768,1,-0.4762,-0.087,0.2298,0.733,0.6916,0.6688,0.3436,0.2588,0.1678,0.1966,0.1988,0.2816,0.3624,0.528,0.793,0.9834,1,0.882,0.6936,0.762,0.909,0.9524,0.8902,0.6604,0.4948,0.5094,0.4202,0.53,0.6812,0.7454,0.8964,0.9378,-0.5602,0.049,0.5788,0.9126,0.7324,0.1656,-0.0146,-0.0966,-0.192,-0.2026,-0.1736,-0.1974,-0.0252,0.0358,0.1736,0.5736,0.8622,1,0.857,0.7456,0.8702,0.9524,0.9126,0.5842,0.3006,0.208,0.1576,0.094,0.314,0.51,0.5736,0.6556,-0.0802,0.2138,0.332,0.6184,0.5038,-0.397,-0.3854,-0.5534,-0.7022,-0.8816,-0.9542,-0.7328,-0.477,-0.4466,-0.29,0.0572,0.21,0.5344,0.5572,0.6564,0.6756,1,0.8206,0.21,-0.0534,-0.1374,-0.355,-0.5648,-0.4046,-0.1298,0.3016,0.3626,-0.1538,0.2308,0.8076,1,0.7692,0.1538,0.1538,0.0384,0.0384,-0.1154,0.1154,0.1154,0.2308,0.5384,0.577,0.8846,0.8076,0.423,0.577,0.6154,0.423,0.577,0.577,0.423,0.423,0.2692,0.3846,0.5,0.3076,0.3462,0.0384,0.423,-0.2068,0.138,0.8276,1,0.8276,0.069,0.3794,0.2758,0.3104,0.0344,0.2414,0.3794,0.3794,0.6206,0.8966,1,0.7932,0.5862,0.4138,0.6552,0.931,0.8276,0.5518,0.4482,0.4138,0.6552,0.6206,0.7242,0.8276,0.8966,0.6552,0.5172,-0.5,-0.1154,0.173,0.7116,0.6538,0.5962,0.2692,0.2116,0.1346,0.2308,0.2116,0.2692,0.327,0.4424,0.7116,1,1,0.75,0.6346,0.75,0.9038,0.9808,0.7884,0.577,0.4616,0.5962,0.423,0.4808,0.5962,0.673,0.8462,0.9424,-1,-1,-1,-1,-0.9892,-0.9872,-0.9886,-0.972,-0.9802,-0.8722,-0.1712,0.4796,0.097,0.6142,-0.1656,-0.2292,-0.198,-0.2094,-0.182,-0.1426,-0.5876,-0.8106,-0.8938,-0.9244,-0.9586,-0.9764,-0.986,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.992,-0.9916,-0.9746,-0.8846,-0.7588,-0.7042,-0.668,-0.3112,-0.133,0.7774,0.61,0.381,0.2492,-0.0628,-0.4038,-0.5538,-0.8046,-0.9226,-0.9512,-0.964,-0.975,-0.9738,-0.9784,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.9268,-0.76,0.2632,0.8466,0.3632,-0.6134,-0.6918,-0.455,-0.4884,-0.2868,-0.37,-0.4168,-0.57,-0.7,-0.7168,-0.7784,-0.8648,-0.8234,-0.76,-0.5534,-0.4234,-0.4668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7142,-0.6,1,1,1,1,1,1,-0.3428,-0.3428,-0.9714,-0.9714,-0.9714,-0.6286,-0.4858,0.1714,0.5142,-0.3714,-0.8572,-0.8286,-0.8286,-0.8286,-0.8286,-1,-1,-1,-1,-1,-1,0.8128,0.8326,0.8758,0.921,0.9554,0.9972,1,1,1,0.9672,-0.5166,-0.5234,-0.5068,-0.469,-0.4434,-0.4728,-0.575,-0.6726,-0.7664,-0.5256,-0.5334,0.447,-0.6446,-0.5298,-0.3002,-0.215,-0.2906,1,-0.6548,-0.3554,-0.4314,-0.2182,-0.1218,-0.0812,0.0254,0.1828,0.2538,0.4314,0.5026,0.7564,0.7564,1,0.9188,0.67,0.4924,0.5532,0.4518,0.3452,0.4874,0.3706,0.4162,0.4924,0.4468,0.67,0.4416,0.528,0.269,0.1928,-0.0152,-0.1116,-0.6174,-0.466,-0.3712,-0.3826,-0.3372,-0.303,-0.216,0.2576,0.3106,0.4394,0.9016,0.9622,0.6098,0.7424,1,0.9924,0.909,0.8522,0.8636,0.8068,0.7272,0.9622,0.9242,0.8334,0.8598,0.9546,0.9734,0.9016,0.4772,0.4432,0.3446,0.1364,0.3514,0.7048,0.6882,0.1268,0.0562,-0.0228,0.2558,0.6882,0.792,0.6632,1,0.8378,0.5676,0.5468,0.817,0.7422,0.8544,0.867,0.8544,0.4262,0.3556,0.343,0.2766,0.264,0.289,0.4054,0.5052,0.368,0.0436,0.2224,0.2848,0.0894,-0.7688,-1,-1,1,-0.2,-1,-1,-0.1,-1,-0.3488,-0.0698,-0.0542,0.4418,0.4574,0.2094,0.69,0.9224,0.6124,0.4884,0.8604,0.783,0.5504,0.2714,0.5658,0.5194,0.5658,0.6124,0.752,0.8294,1,0.659,0.5658,0.5968,0.0698,-0.1938,-0.2248,-0.1318,-0.1782,-0.2404,-0.2094,-0.3644,'10'
-0.3256,0.2148,0.4396,0.708,0.8422,1,0.6442,0.3456,0.4094,0.3088,0.2718,0.2114,0.4162,0.688,0.7718,0.8558,0.9766,0.7282,0.7148,0.859,0.8624,0.8724,0.7484,0.688,0.6778,0.614,0.5402,0.5202,0.5302,0.7484,0.7986,0.7316,-0.4786,-0.1518,0.2322,0.4552,0.9326,0.9196,0.4708,0.4422,0.5252,0.4916,0.4734,0.4164,0.5564,0.6524,0.9534,0.9766,0.987,0.8962,0.8754,0.8858,0.9456,0.9584,0.8106,0.738,0.6964,0.655,0.5564,0.694,0.7016,0.8832,1,0.9974,-0.55,-0.263,0.1814,0.505,0.775,0.6428,0.505,0.474,0.398,0.3784,0.2856,0.2602,0.4458,0.6794,0.8002,0.9634,0.9466,0.8846,0.8116,0.8594,0.9746,0.9522,0.806,0.6512,0.623,0.5528,0.5528,0.6316,0.623,0.7722,1,0.9718,-0.5502,-0.2514,0.2012,0.6124,0.6924,0.5208,0.4054,0.358,0.3136,0.2012,0.21,0.2012,0.3964,0.5296,0.6598,0.8432,0.9674,0.8816,0.7958,0.8136,0.9852,1,0.7958,0.6214,0.5148,0.4764,0.5296,0.6214,0.6272,0.7338,0.9082,0.9172,-0.632,-0.1166,0.362,0.77,0.684,0.3496,0.2116,0.1994,0.1504,-0.0246,-0.0154,0.092,0.181,0.2852,0.4264,0.7454,1,0.954,0.7332,0.862,0.9908,0.911,0.8128,0.5276,0.549,0.4938,0.4202,0.5552,0.6134,0.8282,0.8712,0.862,-0.726,-0.0722,0.5376,0.6142,0.2194,-0.0898,-0.0928,-0.1988,-0.2606,-0.299,-0.243,-0.2312,-0.1752,0.022,0.1252,0.243,0.6878,0.9382,0.9116,0.785,0.9706,1,0.8144,0.402,0.3814,0.293,0.293,0.346,0.3372,0.6494,0.8438,0.782,-0.5898,0.0842,0.5202,0.5824,-0.0402,-0.4358,-0.359,-0.4468,-0.5714,-0.4688,-0.3992,-0.3956,-0.326,-0.2968,-0.1172,0.0842,0.3882,0.7838,0.9816,0.901,1,0.8902,0.7216,0.348,0.1282,0.0074,-0.1208,0.1282,0.2272,0.359,0.8352,0.8534,0,0.7,0.5,0.95,0.75,1,0.85,0.7,0.5,0.5,0.55,0.45,0.5,0.45,0.75,0.8,0.65,0.6,0.1,0.25,0.5,0.65,0.4,0.65,0.7,0.55,0.5,0.45,0.45,0.65,0.8,0.6,-0.3182,0.3182,0.4546,0.8636,0.7272,0.9546,0.7272,0.6818,0.409,-0.1364,0,0.2272,0.091,0.2728,0.9546,0.909,0.8636,0.7728,1,0.8636,0.6818,0.8636,0.909,0.7728,0.6364,0.1364,0.4546,0.409,0.2728,0.3636,0.3636,0.5,-0.68,-0.14,0.46,0.62,0.38,-0.08,-0.08,-0.12,-0.08,-0.22,-0.18,-0.08,-0.06,0.14,0.2,0.4,0.82,0.88,0.8,0.78,0.98,1,0.9,0.48,0.4,0.32,0.42,0.46,0.48,0.78,0.98,0.94,-1,-1,-1,-0.9822,-0.9862,-0.9814,-0.9282,-0.9396,-0.9162,-0.9282,-0.5178,-0.088,0.4388,0.8928,0.446,0.113,0.0146,0.0346,0.0274,-0.1436,-0.421,-0.6548,-0.8758,-0.9282,-0.937,-0.9444,-0.963,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.991,-0.9912,-0.9566,-0.8296,-0.855,-0.9008,-0.9052,-0.8164,-0.5228,0.2928,0.8878,0.5668,0.2996,-0.0094,-0.2844,-0.3992,-0.4292,-0.643,-0.8056,-0.9502,-0.9682,-0.9704,-0.9752,-0.9796,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.9268,-0.8868,0.1666,0.5166,0.31,0.1732,-0.5034,-0.7,-0.565,-0.59,-0.5926,-0.435,-0.3512,-0.4468,-0.549,-0.429,-0.489,-0.5268,-0.6868,-0.6368,-0.48,-0.4134,-0.55,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2,-0.5142,1,1,0.0286,0.0572,-0.0572,0.9428,1,1,-0.8286,-0.9428,-0.8572,-0.6858,-0.7714,-0.7142,-0.1428,-0.7428,1,0.5428,-0.7714,-0.8286,-0.8286,-0.8286,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.9624,-0.2802,-0.2732,-0.2796,-0.2862,-0.2982,-0.298,-0.3164,-0.3386,-0.3108,-0.129,-0.4,-0.0118,-0.8044,-0.7128,-0.5752,-0.356,0.0282,1,-0.7654,-0.4116,-0.3176,-0.1856,-0.1386,0.0192,0.0534,0.1642,0.1812,0.2538,0.4542,0.7782,1,0.7826,0.6034,0.5224,0.5054,0.531,0.5906,0.6802,0.6886,0.7186,0.4584,0.4498,0.5906,0.6504,0.6376,0.6248,0.5224,0.3816,0.2068,-0.13,-0.4846,0.0432,0.167,0.0144,0.0062,0.035,0.2124,0.2248,0.6824,0.6578,0.7402,1,0.8804,0.732,0.6908,0.765,0.736,0.9092,0.8268,0.798,0.897,0.8804,0.8846,0.7608,0.703,0.8432,0.7238,0.633,0.5216,0.3608,0.3896,0.2494,0.18,0.2972,0.2278,0.5054,0.18,0.0802,0.3102,0.4968,0.922,0.8482,0.8958,1,0.796,0.6616,0.666,0.8916,0.7484,0.6702,0.6356,0.4404,0.4968,0.5358,0.5574,0.4446,0.4316,0.2364,0.2234,0.4014,0.2754,0.41,0.3622,-0.0196,-0.585,-1,-1,1,-0.4,-1,-1,0.0666,-1,0,0.0834,0.2292,-0.1666,-0.3334,0.0834,0.375,0.625,0.8334,0.7916,1,0.7916,0.0834,0.0416,0.3124,0.4792,0.125,-0.125,-0.2084,0.3124,0.2708,0.25,0.0624,0.1458,-0.1458,-0.1874,-0.2916,-0.0416,-0.0208,-0.2916,-0.1666,-0.4792,'11'
-0.3672,0.0878,0.2534,0.4512,0.8788,1,0.7182,0.5574,0.4338,0.424,0.3448,0.2954,0.4784,0.6538,0.8146,0.822,0.9134,0.6762,0.6662,0.7008,0.7478,0.8542,0.738,0.5228,0.508,0.4808,0.3448,0.3448,0.4536,0.4882,0.5896,0.6118,-0.4802,-0.1632,0.2332,0.38,0.8578,0.8136,0.6574,0.5222,0.5758,0.5082,0.4568,0.4406,0.5268,0.6876,0.8508,0.9138,0.8578,0.8206,0.7086,0.7692,0.9836,1,0.8788,0.6946,0.5804,0.5898,0.5338,0.5898,0.6248,0.7086,0.8764,0.9184,-0.5064,-0.2676,0.2028,0.5134,0.6988,0.5318,0.5202,0.4068,0.321,0.3766,0.3464,0.3002,0.3766,0.555,0.8076,0.9514,0.9328,0.9142,0.7612,0.9212,0.9698,1,0.8934,0.701,0.5458,0.504,0.46,0.548,0.5736,0.6872,0.9142,0.9374,-0.6146,-0.2976,0.1366,0.6244,0.7048,0.3804,0.2708,0.2536,0.1952,0.0952,0.0952,0.161,0.261,0.3658,0.5318,0.7878,1,0.9366,0.7512,0.7708,0.961,0.9464,0.8268,0.5804,0.478,0.456,0.4292,0.4756,0.5732,0.6634,0.7902,0.9,-0.6086,-0.1018,0.421,0.8632,0.799,0.016,-0.0482,-0.0026,-0.0402,-0.0616,-0.0402,0.051,0.1206,0.2198,0.3592,0.5202,0.8766,1,0.9116,0.7748,0.9356,0.9624,0.9142,0.6246,0.4612,0.4718,0.3726,0.3646,0.5282,0.6246,0.7882,0.858,-0.627,0.0632,0.2792,0.613,0.4558,-0.1248,-0.3436,-0.3914,-0.4306,-0.3324,-0.4082,-0.296,-0.2006,-0.0744,0.0576,0.2314,0.582,0.9158,1,0.8346,0.8934,0.9158,0.8288,0.512,0.3548,0.3296,0.237,0.2454,0.3828,0.4222,0.7644,0.8148,-0.2142,0.2904,0.6524,0.7904,0.538,-0.3,-0.6048,-0.7142,-0.7048,-0.9334,-0.862,-0.5952,-0.662,-0.6238,-0.2714,-0.2334,0.362,0.8286,0.762,0.7238,0.8476,1,0.8904,0.3334,0.0476,-0.2,-0.481,-0.319,-0.238,-0.0904,0.438,0.8048,-0.0834,0.4584,0.375,0.6666,0.875,1,0.75,0.5416,0.625,0.5834,0.5834,0.4166,0.7084,0.5416,0.7084,0.5416,0.7916,0.6666,0.3334,0.1666,0.625,0.75,0.625,0.25,0.4584,0.5834,0.25,0.25,0.4584,0.5,0.4166,0.4166,-0.0434,0.3624,0.4202,0.6522,0.884,1,0.7682,0.6232,0.3334,0.4202,0.3624,0.3624,0.5942,0.7102,0.942,0.884,0.913,0.6522,0.7972,0.6522,0.7102,0.7972,0.7682,0.3624,0.3624,0.3624,0.4782,0.3624,0.5362,0.5942,0.5362,0.6232,-0.5926,-0.1296,0.3888,0.7962,0.7222,-0.0556,-0.1112,0,-0.074,-0.0556,-0.074,-0.0556,0.0926,0.1482,0.2408,0.3704,0.926,1,0.6666,0.574,0.8704,0.926,0.7592,0.5186,0.3704,0.426,0.2592,0.2038,0.4074,0.5556,0.6852,0.7408,-1,-1,-1,-0.9828,-0.982,-0.9042,-0.9522,-0.9106,-0.8762,-0.5518,-0.2174,0.4902,0.9232,0.7072,0.3104,0.4108,0.5174,0.6286,0.671,-0.2028,-0.5012,-0.719,-0.8454,-0.8852,-0.9088,-0.9448,-0.9638,-0.9746,-1,-1,-1,-1,-1,-1,-1,-1,-0.9898,-0.9912,-0.7596,-0.8292,-0.8428,-0.833,-0.7236,-0.667,-0.045,0.8476,0.7386,0.596,0.4172,0.225,-0.0104,-0.2546,-0.4914,-0.781,-0.9144,-0.9342,-0.9488,-0.9548,-0.975,-0.98,-0.9796,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.9868,0.0166,0.7632,0.3966,0.2532,-0.2968,-0.58,-0.7068,-0.5512,-0.4624,-0.396,-0.376,-0.44,-0.506,-0.722,-0.42,-0.716,-0.878,-0.7234,-0.6134,-0.6334,-0.5734,-0.5534,-0.6468,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,-0.2,-0.1714,-0.3142,0.6286,1,0.3428,-0.9142,-0.8572,-0.7714,-0.9714,-0.4572,-0.3714,-0.0286,1,-0.3428,-0.6,-0.9428,-0.8,-0.8,-0.9428,-0.9142,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.878,-0.5918,-0.5656,-0.5398,-0.5488,-0.544,-0.5222,-0.5126,-0.4504,-0.4014,-0.1734,-0.56,0.1412,-0.6532,-0.5532,-0.1874,0.2402,0.564,1,-0.8254,-0.4,-0.1818,-0.1454,0,0.029,0.149,0.2436,0.4436,0.549,0.7236,0.9854,1,0.7636,0.56,0.549,0.6582,0.7454,0.7054,0.7672,0.7636,0.851,0.7528,0.5128,0.6146,0.5272,0.5564,0.5964,0.651,0.44,0.2146,-0.029,-0.3988,-0.1428,0.102,0.0464,0.1688,0.2394,0.3432,0.499,0.885,0.8478,0.8628,0.9888,0.8294,0.7254,0.7218,0.9704,1,0.7884,0.7922,0.7366,0.8478,0.9704,0.9294,0.7588,0.6364,0.666,0.5548,0.5732,0.462,0.3246,0.358,0.0834,0.4592,0.5564,0.5078,0.65,0.6188,0.3692,0.4974,0.6984,0.7746,0.7642,1,0.9896,0.7816,0.636,0.6292,0.6984,0.6256,0.702,0.6776,0.7054,0.6708,0.785,0.6118,0.1994,0.3068,0.3032,0.1578,0.1404,0.2444,0.0018,0.1092,-0.026,-0.5242,-1,-1,1,0.2,-1,-0.2,0.2,1,0.094,0.1282,-0.0086,-0.1112,-0.077,0.0256,0.3504,1,0.7094,0.6582,0.7436,0.7264,0.4018,0.3162,0.3334,0.624,0.453,0.3504,0.3846,0.6752,0.5898,0.5898,0.5384,0.3162,-0.077,-0.1452,-0.1452,0.0428,-0.0598,-0.3846,-0.1282,-0.47,'11'
-0.3896,-0.097,0.3832,0.5994,0.7742,0.8474,0.806,0.5326,0.3482,0.291,0.326,0.3832,0.6376,0.7996,1,0.9492,0.8092,0.4912,0.5644,0.6756,0.9682,0.9586,0.7298,0.5708,0.5994,0.3608,0.5136,0.5834,0.434,0.8124,0.841,0.647,-0.4682,-0.2334,0.2842,0.4766,0.6182,1,0.9434,0.6746,0.4456,0.4456,0.5756,0.8642,0.9124,0.9632,0.6294,0.4992,0.5786,0.4654,0.4766,0.6124,0.9858,0.9292,0.7284,0.5814,0.519,0.5022,0.6012,0.6718,0.7426,0.9434,0.8896,0.8698,-0.4854,-0.231,0.2836,0.5464,0.6736,1,0.9446,0.7732,0.9142,0.8782,0.8008,0.5712,0.4522,0.314,0.0706,0.0484,0.137,0.1286,0.0872,0.1314,0.3638,0.5796,0.787,0.8202,0.8424,0.6792,0.7316,0.74,0.8534,0.9724,0.9806,0.8396,-0.5412,-0.1374,0.261,0.6924,0.7032,0.7226,0.8406,0.9368,1,0.4148,-0.0494,-0.044,-0.151,-0.3406,-0.4698,-0.4808,-0.4642,-0.5494,-0.5082,-0.3626,-0.3462,-0.2446,-0.2226,0.2336,0.522,0.5494,0.3242,0.4424,0.4368,0.4752,0.522,0.4368,-0.6074,-0.0258,0.5014,0.917,0.8252,0.8654,1,0.6504,0.4786,-0.0744,-0.4212,-0.4098,-0.5014,-0.596,-0.6934,-0.8912,-0.7422,-0.7536,-0.7564,-0.6074,-0.5616,-0.4642,-0.3724,-0.0516,0.1002,0.3668,0.4326,0.3954,0.341,0.3954,0.5816,0.4642,-0.5268,0.0844,0.6406,0.9938,0.8434,0.9478,1,0.3886,-0.0998,-0.5208,-0.7204,-0.6222,-0.6712,-0.6222,-0.7358,-0.8464,-0.7174,-0.7634,-0.8188,-0.8678,-0.7942,-0.613,-0.4286,-0.5176,-0.0322,0.0446,0.1798,0.106,-0.1706,0.149,0.2228,0.0814,-0.2968,0.1342,0.3498,1,0.8834,0.4628,0.6008,0.0918,-0.2898,-0.6466,-0.7526,-0.7138,-0.682,-0.8552,-0.7668,-0.7068,-0.7492,-0.795,-0.94,-1,-0.9328,-0.7138,-0.6784,-0.5054,-0.3144,-0.2686,-0.258,-0.2402,-0.3852,-0.3462,0.0176,0.0494,-0.1864,0.0508,0.4238,0.4916,0.695,0.7288,0.695,0.5932,0.4238,0.4238,0.1864,0.4916,0.3898,0.661,0.9322,1,0.8984,0.5932,0.7288,0.661,1,0.9322,0.6272,0.7288,0.7628,0.5594,0.5254,0.7628,0.695,0.7288,0.8644,0.7966,-0.5,-0.091,0.2728,0.591,0.6818,0.7272,0.6818,0.409,0.2728,0.1818,0.2728,0.2272,0.591,0.6818,0.9546,1,0.7728,0.5,0.591,0.7272,1,0.9546,0.4546,0.591,0.5454,0.409,0.409,0.4546,0.5,0.8636,0.8636,0.5,-0.5354,-0.1718,0.2526,0.5354,0.6566,0.9394,0.9192,0.798,1,0.9394,0.5556,0.4344,0.3536,0.0506,-0.0506,-0.0506,-0.0304,-0.0102,-0.0102,0.0708,0.1718,0.4142,0.6162,0.8788,0.9394,0.6566,0.7172,0.697,0.7778,0.8384,0.8586,0.7576,-1,-1,-1,-1,-1,-1,-0.9696,-0.9816,-0.9154,-0.695,-0.1934,0.0768,0.2338,0.6408,0.7776,0.6104,0.7602,0.9274,0.9174,0.6004,0.2696,-0.3358,-0.841,-0.8916,-0.932,-0.9614,-0.9678,-0.9678,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9886,-0.9914,-0.913,-0.7142,-0.2694,-0.3458,-0.0144,0.8078,0.5948,0.285,0.1982,-0.0964,-0.1938,-0.3948,-0.6156,-0.824,-0.9542,-0.9586,-0.972,-0.9744,-0.9732,-0.9726,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.9668,-0.6568,-0.5034,-0.4834,-0.5978,-0.6424,-0.6068,-0.6,-0.6024,-0.6978,-0.8156,-0.8646,-0.868,-0.906,-0.884,-0.9134,-0.65,-0.5334,-0.5,-0.37,-0.7068,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6858,0.8858,1,1,1,-0.7142,-0.3428,-0.2858,0.4858,0.5142,-0.2858,-0.7714,-0.6858,-0.5142,-0.6,-0.2572,-0.1142,-0.2572,-0.5428,-0.6,-1,-0.6,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.5564,-0.5394,-0.5548,-0.572,-0.6334,-0.6704,-0.645,-0.3934,0.028,0.3294,-0.5334,0.0824,-0.2602,-0.3682,-0.325,-0.3784,-0.253,1,-0.4104,0.243,0.6016,0.4582,0.3228,0.3068,0.49,0.9522,0.9362,0.6176,1,0.9362,0.6574,0.522,0.8088,0.8964,0.737,0.7928,0.4262,0.1792,-0.0836,-0.1314,-0.1792,-0.0598,-0.1314,-0.0438,0.1714,0.251,0.3546,0.243,-0.1314,-0.5538,-0.0704,0.4226,0.7746,0.7536,0.4296,0.3592,0.5704,0.9296,0.993,0.7536,0.9366,1,0.683,0.7888,0.9014,1,0.8802,0.8522,0.345,0.2958,0.1408,0.2958,0.2746,0.2746,0.2464,0.3028,0.3802,0.324,0.5774,0.1972,0.0352,-0.345,-0.0674,0.427,0.764,0.7866,0.528,0.472,0.6124,1,0.955,0.7922,0.9326,0.927,0.7584,0.7022,0.854,0.9832,0.9662,0.7192,0.2808,0.0056,-0.2134,-0.1966,0.0338,0.0168,-0.0056,0.0842,0.354,0.4438,0.427,0.2416,-0.028,-0.337,-0.5036,-1,-1,1,-0.8,-1,-1,-0.4666,-1,-0.4594,-0.2432,0.1892,0.3874,0.7838,0.7478,0.3694,0.2252,0.1892,0.045,0.1532,0.2072,0.7478,0.7838,0.8918,0.8558,0.4954,0.7298,1,1,0.6936,0.4954,0.2072,-0.099,-0.081,-0.009,-0.099,0.081,-0.2072,-0.1172,-0.1172,-0.3514,'12'
-0.4604,-0.175,0.3358,0.6858,0.8586,0.6666,0.6594,0.4964,0.3694,0.3884,0.386,0.518,0.6306,0.9208,0.976,1,0.6258,0.506,0.5612,0.6426,0.8178,0.8058,0.7194,0.6858,0.4916,0.4196,0.2446,0.3262,0.494,0.5588,0.5924,0.6522,-0.407,-0.0906,0.3744,0.593,0.9466,0.8302,0.8674,0.6954,0.6534,0.6186,0.5906,0.7604,0.9744,1,0.9372,0.6302,0.4652,0.5674,0.6302,0.7906,0.8884,0.872,0.7604,0.572,0.5116,0.4256,0.4558,0.4186,0.7,0.8326,0.8046,0.707,-0.4314,-0.1122,0.3272,0.5152,0.8414,0.8958,1,0.8166,0.7802,0.9184,0.769,0.778,0.5334,0.4314,0.316,0.1506,0.1054,0.1982,0.273,0.3454,0.5084,0.7056,0.7532,0.7464,0.5946,0.3636,0.3862,0.4314,0.7576,0.8528,0.7984,0.7508,-0.4592,-0.1794,0.317,0.7296,0.8718,0.8624,0.8834,1,0.7576,0.6946,0.2332,-0.0094,-0.0256,-0.3076,-0.2052,-0.1982,-0.401,-0.3822,-0.3006,-0.2052,-0.254,-0.1656,0.1702,0.3706,0.4872,0.4312,0.3682,0.3146,0.3986,0.5314,0.6108,0.5664,-0.5878,-0.124,0.276,0.8674,0.8896,0.6098,1,0.8994,0.1214,-0.205,-0.4724,-0.5706,-0.568,-0.6614,-0.6858,-0.784,-0.7938,-0.7792,-0.7424,-0.708,-0.7596,-0.6368,-0.4774,-0.3522,0.0012,0.357,0.3496,0.0872,-0.1018,0.0846,0.0994,0.1288,-0.5328,0.0598,0.527,1,0.8832,0.6696,0.7806,0.3048,-0.3846,-0.4132,-0.5926,-0.5584,-0.7664,-0.7892,-0.7464,-0.869,-0.9374,-0.9488,-0.9316,-0.8348,-0.926,-0.9402,-0.7378,-0.6838,-0.3562,0.0056,-0.0086,-0.51,-0.3732,-0.1566,-0.0684,0.0284,-0.454,0.2562,0.7118,1,0.7354,0.9096,0.8626,0.2964,-0.3132,-0.7654,-0.7454,-0.7454,-0.742,-0.9128,-0.8426,-0.7118,-0.866,-0.8928,-0.9564,-0.9196,-0.7722,-0.6582,-0.4238,-0.4438,-0.3266,-0.1892,-0.3098,-0.5746,-0.2664,-0.1156,0.1926,0.1592,-0.3538,-0.1384,0.2616,0.477,0.6308,0.6,0.4462,0.4154,0.2924,0.323,0.2924,0.477,0.4462,0.877,0.9692,0.8462,0.6308,0.6,0.5692,0.6,0.877,1,0.9384,0.5692,0.477,0.5384,0.5384,0.3538,0.4462,0.6308,0.8462,0.8462,-0.625,-0.2084,0.1666,0.5834,0.6666,0.4584,0.5,0.3334,0.25,0.25,0.25,0.375,0.5834,0.5834,1,1,0.5834,0.4166,0.25,0.5416,0.875,0.875,0.6666,0.3334,0.2916,0.3334,0.2916,0.1666,0.375,0.4584,0.4584,0.375,-0.4902,-0.1568,0.255,0.5882,0.7648,0.8236,0.8432,0.902,1,0.9608,0.255,0.1176,0.0196,-0.3334,-0.2156,-0.1176,-0.255,-0.353,-0.2352,-0.098,-0.098,-0.0392,0.2156,0.0784,0.6274,0.5098,0.4118,0.255,0.6078,0.7058,0.7254,0.6666,-1,-1,-1,-1,-1,-1,-1,-0.9812,-0.9812,-0.7982,-0.3404,0.068,0.3336,0.2996,0.2698,0.3286,0.7148,0.9268,0.566,0.2154,-0.1456,-0.4656,-0.8086,-0.9004,-0.9456,-0.9582,-0.9744,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.987,-0.9848,-0.678,-0.007,0.2388,0.572,0.919,0.7324,0.7822,0.7954,0.6712,0.0256,-0.319,-0.536,-0.7164,-0.9106,-0.9488,-0.9506,-0.9576,-0.9692,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.9534,-0.7168,-0.4668,-0.45,-0.58,-0.6074,-0.602,-0.562,-0.722,-0.662,-0.7782,-0.9364,-0.9492,-0.9238,-0.9668,-0.6968,-0.55,-0.5068,-0.59,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7428,1,1,1,-0.6,-0.6286,-0.6572,-0.5714,-0.4,-0.2572,-0.3428,-0.4858,-0.6,-0.8286,0.1142,-0.2286,-0.1428,-0.6286,-0.6,-0.7142,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.8524,-0.8442,-0.867,-0.888,-0.9098,-0.95,-0.9776,-0.8384,-0.396,0.0692,-0.5334,0.2942,0.0572,0.3102,0.237,0.2068,0.2434,1,-0.362,0.2586,0.7932,0.6552,0.1552,0.2758,0.5,1,0.7758,0.6206,0.9482,0.9482,0.6552,0.5,0.7586,0.8448,0.8966,0.8966,0.7758,0.2586,0.1724,-0.0172,-0.1552,-0.1724,-0.0344,-0.0344,-0.1552,-0.1206,0.1034,0.2242,0.1034,-0.4138,-0.186,0.3604,0.7906,0.5814,0.372,0.3488,0.6628,1,0.6744,0.593,0.9768,0.9186,0.5116,0.4768,0.6162,0.6628,0.6396,0.721,0.4652,0.3488,0.0698,0.0232,-0.1976,-0.372,-0.2326,-0.093,-0.1512,-0.1744,0.0232,0.093,-0.0116,-0.3954,-0.1848,0.413,0.6848,0.587,0.4566,0.3696,0.75,1,0.7392,0.7066,0.9456,1,0.6848,0.5652,0.5544,0.8586,0.9022,0.7392,0.5108,0.3914,0.424,0.0978,-0.163,-0.3914,-0.0978,-0.1086,-0.3914,-0.2282,-0.0978,0.174,-0.1522,-0.3152,0.3882,-1,-1,1,-0.8,-1,-0.8,-0.7334,-1,-0.077,-0.0616,0.3538,0.477,0.4616,0.3846,0.2924,0.2924,0.2154,0.2154,0.3692,0.9538,1,0.3846,0.5076,0.6154,0.6616,0.477,0.3384,0.5076,0.7846,0.4462,0.6924,0.6,0.477,0.4154,0.3076,0.323,0.4462,0.5846,0.1538,-0.2154,'12'
-0.5034,-0.2332,0.0746,0.0992,0.3446,0.407,0.4466,0.2918,0.2106,0.203,0.0822,0.1086,0.2748,0.4108,0.609,0.8848,0.8942,0.7204,0.524,0.628,0.781,0.8092,0.796,0.6676,0.5372,0.509,0.4996,0.4278,0.7092,0.7678,0.8904,1,-0.4706,-0.1396,0.128,0.205,0.4744,0.4322,0.515,0.4264,0.4764,0.4398,0.386,0.3648,0.6092,0.6612,0.9056,0.844,0.8306,0.6382,0.538,0.6862,0.7228,0.9056,0.7536,0.6188,0.3686,0.3416,0.5246,0.5072,0.5766,0.796,0.8344,1,-0.3998,-0.0404,0.2398,0.3208,0.5826,0.539,0.7238,0.6034,0.674,0.624,0.6636,0.838,0.8754,0.9314,0.5328,0.5098,0.728,0.5868,0.431,0.4414,0.7092,1,0.867,0.5058,0.3312,0.3104,0.543,0.5534,0.6698,0.9314,0.9314,0.9148,-0.1004,0.3592,0.6796,0.6634,0.3786,0.1262,0.1326,0.3948,0.8026,0.9742,0.8122,0.7378,0.411,0.4692,0.2686,0.5404,0.7184,0.7994,0.7088,0.4952,0.5502,0.5372,0.4596,0.0226,-0.1198,-0.3852,0.1036,0.398,0.8058,0.7638,0.7216,1,0.0314,0.407,1,0.7746,0.6368,-0.4112,-0.3696,0.2652,0.4154,0.5574,0.474,0.0146,-0.0606,0.0522,-0.261,0.073,0.2902,0.4488,0.3362,0.0688,-0.1356,-0.073,0.1482,-0.1482,-0.6784,-0.8288,-0.5782,0.0856,0.1316,0.0354,0.1398,0.6158,0.1728,0.6544,1,0.4814,0.2304,-0.712,-0.2428,0.0946,0.2182,0.2716,0.4238,0.1194,-0.2634,-0.1482,-0.2264,-0.2592,0.0782,0.1358,0.0824,0.0246,-0.251,-0.1522,-0.0576,-0.3086,-0.6666,-0.9176,-0.4732,-0.1194,-0.1152,-0.107,-0.0988,0.214,0.0476,0.3838,0.591,-0.1428,-0.5406,0.2492,0.2156,0.5014,0.7422,0.6302,1,0.7816,0.1372,0.2718,-0.0252,-0.2436,0.1764,-0.0868,-0.507,-0.675,-0.6302,-0.5406,0.2324,0.2662,0.1652,-0.042,0.2044,0.3222,0.4846,0.2774,-0.21,-0.3054,-0.7038,-0.3704,-0.1112,0.074,0.2592,0.5186,0.3704,0.1482,-0.037,0,0.037,0,0.074,0.2222,0.4444,0.6666,0.7778,0.7778,0.5556,0.5186,0.6296,0.7408,0.6666,0.6296,0.4074,0.4074,0.3334,0.4444,0.5556,0.5926,0.8148,1,-0.5238,-0.3016,0.0794,0.0476,0.2064,0.4286,0.3968,0.238,0.0476,0.0794,0.0794,0.1746,0.2064,0.238,0.5556,0.7142,0.9048,0.746,0.5238,0.6508,0.5556,0.746,0.7778,0.6826,0.492,0.492,0.4604,0.3968,0.746,0.7142,0.8096,1,-0.2708,0.0834,0.3958,0.4166,0.5624,0.4166,0.3334,0.5416,0.7292,0.875,0.7292,0.7708,0.4376,0.3542,0.375,0.5416,0.5624,0.6458,0.5416,0.3334,0.4376,0.5416,0.4792,0.25,0.1876,-0.0208,0.4792,0.5208,0.9584,1,0.5624,0.9376,-1,-1,-1,-1,-1,-1,-1,-0.9738,-0.9696,-0.9652,-0.1966,0.2256,0.4924,0.8288,0.9376,0.823,0.3284,0.0994,-0.1066,-0.2124,-0.2806,-0.5344,-0.8114,-0.91,-0.958,-0.971,-0.9666,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.991,-0.9906,-0.9904,-0.571,0.1778,0.5824,0.7578,0.8734,0.1846,-0.6896,-0.7786,-0.8306,-0.8612,-0.8606,-0.8958,-0.939,-0.9674,-0.9778,-0.9842,-0.9884,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.95,-0.91,-0.85,-0.72,0.0126,0.0126,-0.17,-0.2534,-0.3418,-0.4518,-0.5634,-0.8068,-0.93,-0.8918,-0.8268,-0.81,-0.6434,-0.6568,-0.86,-0.9134,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,-0.9428,1,1,1,-0.9142,-0.7142,-0.7714,1,1,-0.7428,-0.7714,-0.9428,0.2,-0.5142,-0.7428,-0.7428,-0.8286,-0.7714,-0.8572,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.5898,-0.023,-0.0412,-0.0746,-0.1094,-0.1604,-0.2262,-0.3336,-0.4758,-0.5482,-0.5602,-0.56,0.4118,-0.5418,-0.0404,0.09,0.1562,0.4322,1,-0.1818,0.4546,0.5454,0.5,0.591,0.4546,0.409,0.5,0.2728,0.8636,1,0.9546,0.909,0.8636,0.909,0.9546,1,0.909,0.591,0.2728,-0.3636,-0.3636,-0.5,-0.409,-0.1364,-0.409,0.409,0.5,0.409,-0.409,-0.409,-0.6364,0.2452,0.566,0.868,0.9056,0.5284,0.434,0.5094,0.7358,0.849,0.6982,0.849,0.7736,0.6226,0.6226,0.8302,0.8114,1,0.6982,0.3396,-0.0754,-0.2642,-0.5094,-0.1132,-0.2076,-0.0566,-0.2264,0.6416,0.7924,0.5472,-0.2076,-0.0944,-0.2452,-0.008,0.312,0.68,0.744,0.344,0.264,0.504,0.904,0.984,0.824,0.904,0.936,0.792,0.68,0.872,1,0.984,0.6,0.376,0.152,-0.296,-0.072,0.008,-0.152,-0.056,0.152,0.504,0.456,0.328,-0.184,-0.088,-0.216,0.3172,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.5354,-0.4546,-0.2728,0.3536,0.091,0.7576,1,0.9596,0.091,0.0304,0.1112,0.596,0.7576,0.2122,-0.2122,-0.2728,0.0304,0.0506,0.6364,0.2728,0.1314,0.0506,-0.495,-0.0506,-0.0506,-0.1314,-0.091,-0.192,-0.0304,0.2324,-0.5152,-0.6364,'13'
-0.4654,-0.1486,0.1442,0.1926,0.4874,0.45,0.549,0.4962,0.461,0.2828,0.2278,0.2894,0.4192,0.6128,0.824,0.978,1,0.7338,0.6502,0.7074,0.9032,0.9362,0.8086,0.6524,0.6128,0.5006,0.4192,0.5644,0.604,0.7734,0.9516,0.9252,-0.4432,-0.1038,0.1616,0.2476,0.539,0.523,0.489,0.4352,0.531,0.3872,0.3852,0.3792,0.497,0.6228,0.974,0.99,0.7644,0.6906,0.6208,0.7306,0.7824,1,0.956,0.5628,0.511,0.6088,0.5508,0.545,0.6786,0.8204,0.968,0.99,-0.4278,-0.0988,0.1784,0.2702,0.5374,0.5174,0.5494,0.5094,0.6032,0.4716,0.4596,0.5614,0.8246,0.9122,0.7208,0.7228,0.6032,0.5054,0.4158,0.5932,0.689,1,0.9522,0.5194,0.4876,0.5454,0.5114,0.5374,0.7168,0.8524,0.9322,0.9102,-0.3124,0.0462,0.2908,0.318,0.2664,0.106,0.0734,0.3044,0.3804,0.4782,0.6114,0.6142,0.3586,0.356,0.4184,0.3396,0.3858,0.413,0.125,0.0924,0.3614,0.4048,0.3886,0.2364,0.049,0.0434,0.0842,0.5842,0.8832,0.9104,0.807,1,0.0804,0.456,0.6514,0.5708,0.3218,-0.2606,-0.4712,-0.138,0.3564,0.4482,0.479,0.3448,0.1724,0.2108,0.1954,0.295,0.4598,0.3564,0.0996,-0.092,0.092,0.521,0.682,0.341,-0.3946,-0.9732,-0.387,0.341,0.6974,0.5326,0.6552,1,0.2664,0.6682,0.6496,0.4206,0.1728,-0.785,-0.9112,-0.3598,-0.1214,0.6122,0.3458,0.243,-0.07,-0.1682,-0.1122,-0.056,0.3272,0.1168,-0.2336,-0.3644,-0.1496,0.5748,0.813,0.4112,-0.6074,-0.9066,-0.5888,0.5608,0.6308,0.2524,0.4766,1,0.4042,1,0.2862,-0.0974,-0.6578,-0.8526,-0.5694,-0.5398,-0.6106,-0.1976,-0.3274,-0.3392,-0.5576,-0.4396,-0.0206,-0.2862,-0.4868,-0.4042,-0.652,-0.7228,-0.7464,-0.1918,-0.3038,-0.3274,-0.475,-0.6224,-0.41,-0.2802,-0.3334,-0.4632,-0.1858,0.0206,-0.617,-0.3192,0.0212,0.2766,0.234,0.7872,0.6596,0.4894,0.3192,0.234,0.149,0.3618,0.4468,0.4894,0.7446,0.8724,1,0.7872,0.617,0.7022,0.7872,0.7446,0.7872,0.617,0.4894,0.4042,0.3618,0.4894,0.532,0.6596,0.7872,0.7872,-0.4238,-0.1864,0.1526,0.1526,0.3898,0.4576,0.5254,0.4916,0.3898,0.2542,0.2542,0.2204,0.356,0.5932,0.661,1,0.8984,0.695,0.661,0.5594,0.7966,0.8984,0.8984,0.5594,0.3898,0.5594,0.5254,0.4916,0.5254,0.7966,0.8306,0.9662,-0.3536,-0.091,0.2526,0.3132,0.4142,0.293,0.4142,0.5556,0.5354,0.5354,0.9192,0.899,0.4748,0.394,0.3536,0.293,0.2728,0.3334,0.1314,-0.0304,0.2122,0.1314,0.2526,0.0506,-0.0102,0.2526,0.2122,0.4344,1,0.899,0.5152,1,-1,-1,-1,-1,-1,-1,-1,-0.973,-0.9756,-0.967,-0.4786,0.0636,0.4834,0.809,0.9412,0.7504,0.3574,0.126,-0.0514,-0.2154,-0.3624,-0.5434,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9906,-0.9916,-0.9878,-0.7612,-0.0646,0.5122,0.8098,0.9566,0.7462,-0.3476,-0.732,-0.7958,-0.844,-0.8848,-0.9208,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9496,-0.9134,-0.84,-0.6268,-0.336,-0.152,-0.3838,-0.1382,-0.2728,-0.1456,-0.382,-0.6964,-0.9056,-0.94,-0.9492,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2858,-0.9142,1,1,1,-0.5428,-0.8858,-0.7714,0.6572,1,0.2,-0.8,-0.8,-0.1428,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.3934,-0.3942,-0.3796,-0.3726,-0.3578,-0.3564,-0.3468,-0.3486,-0.3966,-0.4736,-0.527,-0.5734,0.2824,-0.7286,-0.4214,-0.1654,0.0842,0.1466,1,0.0312,0.2812,0.5,0.625,0.4688,0.3438,0.5,0.8438,0.9062,0.8124,0.9688,1,0.8438,0.7188,0.7812,0.9062,0.9062,0.8438,0.8124,0.7188,0.4376,0.0938,0.0312,-0.0312,0.0312,0.1876,0,0.3438,0.3438,0.0624,-0.0938,-0.3124,0.2334,0.45,0.65,0.8,0.6166,0.2666,0.4166,0.8334,0.9,0.7,0.9334,1,0.7,0.5834,0.6166,0.8834,0.85,0.8,0.65,0.5834,0.1,-0.2334,-0.1834,-0.1334,0.05,0.1166,0.0666,0.3666,0.5166,-0.05,0,-0.6166,0.3006,0.5524,0.93,0.8882,0.5944,0.5104,0.6924,0.986,1,0.7902,0.8742,0.8462,0.6084,0.3566,0.5104,0.6924,0.7622,0.7202,0.4126,0.3566,-0.091,-0.1468,-0.1888,-0.091,0.035,0.2168,0.1048,0.3846,0.5244,-0.021,0.1468,-0.1328,-0.2576,-1,-1,1,-1,-1,-1,-0.8334,-1,0.8,0.8286,0.2858,0.4286,0.6,0.9142,0.5428,0.8858,0.2286,0.1428,0.5428,1,0.9714,0.5428,0.6,0.3428,0.7142,0.8286,0.4572,0.5142,0.5428,0.6572,0.1714,0.0286,-0.0572,0.1428,0,-0.1428,0.4572,0.5714,-0.0286,-0.5714,'13'
-0.4342,-0.1642,0.185,0.2084,0.3924,0.5228,0.5622,0.411,0.3062,0.1944,0.1036,0.1432,0.2782,0.4342,0.7044,1,0.9138,0.8138,0.6508,0.716,0.8416,0.9254,0.8998,0.7486,0.553,0.4506,0.5204,0.425,0.5972,0.7742,0.7764,0.9394,-0.464,-0.1684,0.1334,0.1828,0.4436,0.3572,0.4168,0.3778,0.3656,0.3942,0.2382,0.1972,0.4004,0.5708,0.7248,0.9898,1,0.6078,0.5708,0.6736,0.8316,0.8194,0.9342,0.768,0.614,0.4866,0.4908,0.458,0.7248,0.731,0.7598,0.965,-0.4504,-0.119,0.1468,0.24,0.5654,0.5476,0.4306,0.3412,0.4424,0.371,0.373,0.3214,0.4822,0.6112,0.9504,0.9662,0.6588,0.5874,0.4564,0.6448,0.7004,0.9404,0.9186,0.748,0.629,0.508,0.5754,0.5674,0.6806,0.6944,0.7678,1,-0.3796,-0.0552,0.3066,0.3254,0.49,0.3278,0.4124,0.3702,0.2596,0.2714,0.2056,0.2104,0.5652,0.7626,0.906,0.8402,0.725,0.577,0.3232,0.3514,0.4994,0.7274,0.953,0.9436,0.4948,0.3654,0.3936,0.2762,0.4312,0.5488,0.6922,1,-0.032,0.3688,1,0.8892,0.8208,-0.0278,0.3176,0.322,-0.096,-0.4328,-0.2196,-0.403,0.4926,0.7186,0.4926,0.4498,0.629,0.6162,0.5692,0.3732,0.2452,0.3134,0.4286,0.2366,-0.1898,-0.6418,-0.7442,-0.7654,-0.6716,-0.4542,0.0874,0.7484,0.0966,0.5852,0.9836,1,0.8152,-0.0144,-0.0514,0.388,0.0308,-0.3388,-0.191,-0.191,0.425,0.3758,-0.0882,-0.039,0.1664,0.4332,0.3306,-0.1334,-0.4086,0.0266,0.1582,-0.1704,-0.4046,-0.5894,-0.811,-0.77,-0.5934,-0.3716,-0.0842,0.2566,0.0404,0.6388,1,0.1752,-0.4664,-0.0836,-0.0512,-0.0458,-0.4824,-0.6604,-0.8168,-0.2938,0.558,0.8544,0.3208,-0.3908,-0.2076,-0.3316,-0.7628,-0.8436,-0.4286,-0.159,0.6712,0.5634,0.0134,-0.256,-0.062,-0.3262,0.3854,0.7304,0.5472,0.1536,-0.5,-0.2692,0.077,0.1538,0.423,0.577,0.5384,0.2308,0.1538,0.077,0.077,0.077,0.2692,0.3846,0.6538,1,0.9616,0.577,0.6154,0.6538,0.7692,0.8462,0.8076,0.7692,0.5384,0.4616,0.5,0.3846,0.6538,0.6924,0.6538,0.923,-0.5,-0.091,0.2272,0.3636,0.3636,0.6364,0.6818,0.409,0.2728,0.0454,0.1364,0.1818,0.1818,0.4546,0.8636,0.8636,1,0.9546,0.6818,0.7272,0.8182,0.909,0.8636,0.909,0.6364,0.6364,0.6364,0.409,0.8636,0.909,0.7728,0.9546,-0.2558,0.093,0.4884,0.4418,0.4418,0.3024,0.3024,0.3024,0.0698,0.1628,0.0466,0.279,0.6976,0.9534,0.7906,0.6976,0.6976,0.6046,0.3024,0.1396,0.1162,0.4418,0.907,0.907,0.4186,0.3024,0.3256,0.0466,0.3024,0.3256,0.5348,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9796,-0.9736,-0.4144,0.074,0.264,0.5358,0.8846,0.9386,0.412,-0.0438,-0.2568,-0.3566,-0.4588,-0.5298,-0.7426,-0.8678,-0.9266,-0.9652,-0.9712,-0.9592,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.991,-0.9908,-0.6316,-0.2464,0.3086,0.8212,0.8512,0.7116,-0.139,-0.7502,-0.8342,-0.8644,-0.881,-0.9024,-0.941,-0.963,-0.9748,-0.979,-0.9788,-0.98,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.9534,-0.5868,-0.2074,-0.2292,-0.1674,-0.091,-0.3746,-0.2092,-0.5274,-0.6438,-0.8728,-0.9718,-0.935,-0.9134,-0.6368,-0.62,-0.5634,-0.41,-0.6668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,-0.5714,-0.9428,-0.8286,-0.7714,1,1,-0.5428,-0.8286,-0.2572,-0.7428,-0.7714,-0.8,-0.8572,-0.9142,-0.9142,-0.9142,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.7554,-0.131,-0.128,-0.1318,-0.142,-0.1476,-0.1518,-0.1666,-0.1594,-0.2338,-0.4724,-0.5734,0.3294,-0.537,-0.2582,-0.4022,-0.1592,-0.1524,1,-0.3024,0.0232,0.3024,0.4418,0.3954,0.3488,0.4884,0.7674,0.907,0.8604,0.9534,1,0.814,0.6744,0.6744,0.814,0.8604,0.721,0.5814,0.4418,0.2094,-0.2094,-0.3024,-0.1628,-0.2094,-0.2094,-0.0232,0.0232,0.0232,-0.1162,-0.1628,-0.7674,0.1382,0.3658,0.7074,0.7236,0.3008,0.3334,0.3658,0.756,1,0.7724,0.8212,0.9512,0.6098,0.5448,0.5448,0.7886,0.8212,0.6586,0.561,0.4146,0.1708,-0.187,-0.2358,-0.0894,-0.0732,-0.252,-0.2032,0.0894,0.3984,0.4472,-0.0732,-0.691,0.0684,0.3562,0.6576,0.6986,0.4246,0.3424,0.4794,0.8082,0.9726,0.7672,0.863,0.9178,0.7808,0.6302,0.7672,0.8356,1,0.8768,0.6028,0.3288,0.1918,-0.2192,0,-0.0136,-0.0548,-0.0136,-0.1644,0.2192,0.1918,0.1644,-0.137,-0.4246,0.086,-1,-1,1,-0.8,-1,-0.6,-0.8334,1,-0.3518,-0.3148,-0.2408,0.1852,0.0186,0.5,0.8518,0.537,0.4814,0.2592,0.1852,0.7408,1,0.6112,0.5556,0.3518,0.3704,0.3148,0.7778,0.8888,0.3888,0.2222,-0.0186,0.1482,-0.0926,0.0556,0.4444,0.4814,0.1112,0.0186,0.037,-0.1666,'14'
-0.4704,-0.1778,0.097,0.1224,0.3292,0.5108,0.5436,0.4098,0.309,0.082,0.1552,0.1122,0.2106,0.5082,0.6344,0.831,0.8866,0.8512,0.6796,0.6796,0.72,0.9546,0.8738,0.8612,0.705,0.647,0.5612,0.5838,0.5864,0.7478,0.9546,1,-0.467,-0.1758,0.093,0.149,0.3796,0.4064,0.5162,0.4222,0.3886,0.1892,0.196,0.2296,0.337,0.5768,0.691,0.935,0.9148,0.682,0.5902,0.6574,0.7782,0.8478,0.9776,0.7828,0.8006,0.5454,0.5678,0.6686,0.7268,0.8186,1,0.9664,-0.4914,-0.2072,0.0748,0.1176,0.3504,0.3952,0.4914,0.4082,0.3804,0.1902,0.2436,0.2864,0.3248,0.6474,0.7522,0.8482,0.8312,0.5684,0.5534,0.6154,0.688,0.765,0.9294,0.7222,0.7308,0.4424,0.5236,0.6068,0.6196,0.7606,0.9508,1,-0.4296,-0.163,0.163,0.1654,0.2864,0.4766,0.4766,0.3704,0.2098,0.0494,0.153,0.1284,0.358,0.6888,0.8494,0.9358,0.6,0.4074,0.3432,0.3358,0.5654,0.7754,0.8814,0.8346,0.5728,0.4024,0.3902,0.3704,0.4172,0.5902,0.842,1,-0.2,0.132,0.528,0.364,0.308,-0.112,0.244,0.3,-0.548,-0.356,-0.436,-0.32,-0.032,0.512,0.648,0.376,0.42,0.404,-0.044,-0.268,0.164,0.508,0.584,0.252,-0.224,-0.192,-0.512,-0.568,-0.332,0.02,0.516,1,0.2854,0.7174,1,0.784,0.7674,-0.3408,0.1912,0.025,-0.7618,-0.6566,-0.435,-0.518,-0.1192,0.784,0.6398,0.3296,0.518,0.2576,0.18,-0.2742,-0.0084,0.374,0.579,0.0914,-0.651,-0.7174,-0.9778,-0.9556,-0.5568,-0.6066,0.0194,0.9058,0.39,0.745,0.695,0.52,0.48,-0.645,-0.2,-0.21,-0.475,-0.705,-0.555,-0.635,-0.065,0.2,-0.11,-0.235,-0.075,0.02,-0.225,-0.53,-0.445,-0.05,0.045,-0.125,-0.57,-0.72,-0.8,-0.695,-0.85,-0.61,0.04,1,-0.4814,-0.1482,0.037,0.1112,0.4814,0.4814,0.4814,0.2962,0.3334,0.1482,0.037,0.1852,0.3334,0.2962,0.6296,0.8888,1,0.6296,0.5926,0.6666,0.7778,0.8518,0.963,0.8148,0.7408,0.4444,0.5556,0.6666,0.5556,0.7408,0.963,0.963,-0.25,-0.0312,0.25,0.2188,0.4376,0.625,0.5938,0.5,0.3438,0.1876,0.2812,0.1562,0.3124,0.5312,0.625,0.875,0.9376,0.9062,0.7188,0.6876,0.8124,0.9688,0.9688,0.9376,0.75,0.6876,0.625,0.6876,0.625,0.8438,0.9688,1,-0.4652,-0.2326,0.1162,-0.0232,0,0.1162,0.0232,0.093,-0.4652,-0.3256,-0.279,-0.2094,0.3488,0.3954,0.7442,0.628,0.3024,0.0232,-0.1162,-0.1162,-0.0232,0.4652,0.5348,0.3024,0.2094,0.2094,-0.0232,-0.093,0.0466,0.186,0.7906,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9636,-0.9672,-0.4982,0.4416,0.7956,0.938,0.907,0.9526,0.9562,0.5694,0.1898,0.0128,-0.0802,-0.3048,-0.4526,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9904,-0.9898,-0.7814,0.0946,0.4214,0.9086,0.887,0.6576,0.1706,-0.597,-0.7938,-0.8402,-0.865,-0.8988,-0.9144,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9634,-0.9168,-0.6768,-0.296,-0.274,-0.218,-0.174,-0.21,-0.26,-0.226,-0.406,-0.682,-0.906,-0.9146,-0.9668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,-0.7714,-0.9714,-1,-0.8572,1,1,0.3142,-0.8286,-0.8858,-0.5714,0.6858,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.7648,0.0752,0.0672,0.0722,0.0814,0.0932,0.0866,0.0844,0.037,-0.0076,-0.3326,-1,0.1882,-0.873,-0.0648,0.127,0.0724,0.1966,1,-0.125,0.4166,0.375,0.5416,0.3334,0.3334,0.3334,0.625,0.7916,0.875,0.9166,1,0.9584,0.625,0.7084,0.8334,0.875,0.875,0.3334,0.25,-0.125,-0.0834,0,0.0834,0.1666,-0.0416,0.1666,0.1666,0.3334,0.3334,0.0416,-0.625,-0.0588,0.353,0.647,0.549,0.255,0.0784,0.4902,0.7254,1,0.647,0.647,0.7648,0.5294,0.4706,0.3922,0.647,0.5098,0.4314,0.2746,0,-0.255,-0.353,-0.196,-0.2352,-0.196,-0.196,-0.1568,0,0.4314,0.1568,-0.0588,-0.4118,-0.077,0.3334,0.6752,0.5556,0.5384,0.4872,0.6582,0.8974,1,0.7948,0.829,0.9146,0.812,0.7778,0.7948,0.9146,0.8462,0.812,0.47,0.2478,-0.094,-0.2478,0.0598,-0.0086,-0.0086,0.0086,0.094,0.4018,0.5384,0.1452,-0.077,-0.4188,0.411,-1,-1,1,-1,-1,-0.6,-0.8334,-1,0.7334,0.6534,0.0666,0.2534,0.0134,0.0666,0.28,0.4934,0.28,0.04,0.2266,0.0666,0.1466,0.1734,0.28,1,0.9466,0.52,0.7066,0.2,0.2534,0.04,0.12,0.12,0.0934,0.2534,-0.04,-0.0666,-0.0134,-0.2,-0.1466,-0.76,'14'
-0.4072,-0.0802,0.3256,0.4716,0.7898,0.9036,1,0.8686,0.7928,0.9182,0.6468,0.492,0.2116,0.1416,0.197,0.0716,0.0306,0.13,0.1942,0.4132,0.7284,0.6642,0.4802,0.2526,0.238,0.273,0.4424,0.5008,0.67,0.6992,0.6614,0.5008,-0.4502,-0.1606,0.2908,0.5618,0.8778,0.7584,0.822,0.915,0.8726,1,0.7954,0.235,0.1926,0.0996,0.1394,0.097,0.0756,0.1554,0.3068,0.6042,0.9708,0.8912,0.3306,0.2564,0.2564,0.3228,0.5884,0.6626,0.8248,0.769,0.5192,0.599,-0.4496,-0.1812,0.3288,0.745,0.9516,0.7692,0.7288,1,0.8712,0.8416,0.4228,0.2108,0.1356,0.0712,0.039,-0.1222,0.098,0.1006,0.2,0.659,0.7476,0.6134,0.2994,0.1704,0.2348,0.2564,0.439,0.7154,0.761,0.541,0.5624,0.5974,-0.5056,-0.094,0.3812,0.9088,1,0.4918,0.8426,0.8784,0.5442,0.3756,-0.0082,-0.1824,-0.2044,-0.2458,-0.3012,-0.4448,-0.3454,-0.2596,-0.0884,0.2762,0.4338,0.3454,-0.0056,-0.1658,-0.1464,-0.0856,0.1988,0.4006,0.4226,0.1104,0.1104,0.127,-0.5312,0.141,0.4394,1,0.9442,0.7246,0.9344,0.6786,-0.0098,-0.354,-0.5836,-0.5902,-0.6262,-0.7246,-0.741,-0.7868,-0.7902,-0.6558,-0.505,-0.1508,0.1672,0.1082,-0.3278,-0.5606,-0.4722,-0.5214,-0.259,-0.059,0.0722,-0.4098,-0.5606,-0.5672,-0.4234,0.3686,0.6204,0.9014,0.697,0.876,1,0.4124,-0.2408,-0.3394,-0.854,-0.9344,-0.876,-0.8322,-0.803,-0.8906,-0.7774,-0.8102,-0.9088,-0.657,-0.365,-0.2992,-0.5256,-0.8176,-0.876,-0.8796,-0.6752,-0.2446,-0.303,-0.5694,-0.6862,-0.708,-0.0694,0.3214,0.4652,1,0.784,0.234,0.4294,0.6504,0.563,-0.0694,-0.5064,-0.7378,-0.8098,-0.7686,-0.5938,-0.7686,-0.6246,-0.6556,-0.9074,-0.5168,-0.0232,0.2186,-0.275,-0.5012,-0.712,-0.7326,-0.563,-0.126,-0.0746,-0.4294,-0.5168,-0.6196,-0.25,0,0.4286,0.3214,0.7858,1,1,0.8928,0.6786,0.8572,0.75,0.6072,0.3928,0.25,0.2142,0.1072,0.1786,0.25,0.25,0.5358,0.7858,0.8214,0.7142,0.2858,0.3928,0.4286,0.3928,0.6786,0.6786,0.8928,0.7858,0.5714,-0.3726,-0.098,0.3334,0.451,0.7648,0.9608,1,0.8432,0.804,0.804,0.6078,0.5686,0.255,0.1764,0.1764,0.098,0.098,0.2156,0.1372,0.451,0.6078,0.5686,0.4902,0.1764,0.1372,0.2156,0.4118,0.5686,0.647,0.804,0.804,0.451,-0.495,-0.1112,0.3536,0.899,1,0.5556,0.8384,0.8788,0.697,0.5556,0.1718,-0.2324,-0.1112,-0.0506,-0.192,-0.293,-0.3132,-0.192,0.0708,0.394,0.5758,0.3536,0.1314,-0.0708,-0.1718,-0.0304,0.0506,0.6768,0.697,0.2526,0.2526,0.2324,-1,-1,-1,-1,-1,-1,-0.9876,-0.9894,-0.8922,-0.5256,-0.3478,-0.1872,0.1036,0.3878,0.7058,0.8882,0.8452,0.2996,0,-0.3084,-0.5186,-0.7716,-0.8828,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.991,-0.9904,-0.8786,-0.4428,-0.1614,-0.0176,0.3616,0.826,0.927,0.6908,0.2054,-0.2016,-0.4306,-0.6142,-0.7698,-0.8924,-0.9424,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.913,-0.9034,-0.9,-0.5868,-0.5634,-0.6378,-0.5556,-0.5846,-0.689,-0.6712,-0.8556,-0.8668,-0.8756,-0.9,-0.902,-0.916,-0.9634,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2572,0.0572,1,1,-0.1428,-0.8858,-0.7428,-0.5428,-0.6858,-0.2858,0.2572,-0.1714,-0.3142,-0.7714,-0.8572,-0.7142,-0.6286,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.2328,0.2502,0.2394,0.2968,0.324,0.3688,0.4288,0.4844,0.4744,0.3138,-0.4666,0.0824,-0.1614,-0.111,-0.0884,0.036,0.2564,1,0.0312,0.5782,1,0.9454,0.8906,0.961,0.6876,0.3984,0.1876,0.3828,0.961,0.8828,0.4766,0.5704,0.8516,0.9218,0.8046,0.8204,0.7734,0.6484,-0.086,-0.1954,-0.289,-0.2266,-0.375,-0.2578,-0.1484,-0.125,0,-0.0782,0.1172,-0.086,0.0148,0.5074,0.8236,1,0.9338,0.9558,0.5956,0.4412,0.1986,0.4044,0.7648,0.8308,0.4926,0.4926,0.8456,0.853,0.853,0.8676,0.8308,0.647,0.0368,-0.2132,-0.4706,-0.4044,-0.522,-0.2794,-0.2574,-0.1398,-0.1764,-0.0074,0.0662,-0.2794,0.1048,0.5048,0.8158,1,0.8984,0.7968,0.562,0.4096,0.3524,0.4412,0.892,0.892,0.492,0.6254,0.8604,0.8158,0.7142,0.7968,0.7524,0.619,-0.1366,-0.1112,-0.3016,-0.4222,-0.492,-0.346,-0.1746,-0.162,-0.1874,-0.1174,-0.0032,-0.2064,-0.2464,-1,-1,1,-0.8,-1,-1,-0.5,-1,0.644,0.5084,0.5594,0.7118,0.8136,0.6102,0.1356,0.1016,0,0.3898,0.4406,0.6102,0.1694,0.1694,0.4238,0.322,0.017,0.0508,1,0.8306,0.0508,-0.1186,0.0508,0.1016,0,-0.1186,0.017,0.2712,0.1186,0.1526,-0.1526,-0.3898,'15'
-0.4988,-0.2074,0.2052,0.4336,0.8042,0.746,0.6644,0.7856,0.8088,1,0.9138,0.3682,0.1468,0.1702,0.1748,0.0816,0.1096,0.2984,0.3006,0.4802,0.7552,0.8438,0.5688,0.5104,0.303,0.3474,0.4382,0.6434,0.7016,0.9114,0.7926,0.6364,-0.522,-0.228,0.2108,0.5196,0.8504,0.7598,0.652,0.8236,0.8112,0.8578,0.7254,0.3848,0.1666,0.1176,0.0686,0.1274,0.1642,0.2892,0.3628,0.4878,0.9608,0.9706,0.4878,0.375,0.3382,0.451,0.4362,0.6078,0.9338,1,0.6446,0.7794,-0.4728,-0.208,0.3192,0.7668,1,0.8544,0.6716,0.9948,0.9046,0.9072,0.5656,0.3828,0.1788,0.0544,0.0754,0.1232,0.1364,0.2026,0.3802,0.7246,0.865,0.714,0.502,0.3802,0.2874,0.3536,0.4702,0.6688,0.8596,0.8888,0.7536,0.7722,-0.5216,-0.169,0.2626,0.894,1,0.6424,0.7632,0.8372,0.6522,0.5684,0.2306,-0.0506,-0.1294,-0.1048,-0.1442,-0.1886,-0.1812,-0.058,0.1172,0.3366,0.5438,0.4748,0.1146,0.0604,-0.0036,0.0802,0.2356,0.4452,0.6818,0.635,0.2972,0.3612,-0.5458,0.02,0.4,1,0.9714,0.3914,0.64,0.5028,0.32,0.0686,-0.2258,-0.3942,-0.5,-0.4342,-0.4514,-0.48,-0.52,-0.4142,-0.2028,0.1886,0.3742,0.2314,-0.1714,-0.2142,-0.3058,-0.1942,0.0228,0.2286,0.4228,0.3172,-0.02,-0.0772,-0.3308,0.501,0.777,1,0.9092,0.7504,0.7996,0.2742,-0.2326,-0.4328,-0.656,-0.5614,-0.5992,-0.811,-0.7656,-0.603,-0.777,-0.8828,-0.7958,-0.5728,-0.3232,-0.3876,-0.5388,-0.501,-0.5198,-0.6068,-0.4934,-0.3194,-0.1418,-0.2628,-0.6332,-0.603,-0.015,0.3084,0.6666,0.8308,0.6716,0.6318,0.9354,1,0.5522,-0.3532,-0.5572,-0.796,-0.612,-0.7314,-0.4826,-0.4976,-0.612,-0.8458,-0.7512,-0.5024,0.015,-0.1742,-0.383,-0.388,-0.592,-0.6616,-0.8208,-0.612,-0.1792,-0.1542,-0.4826,-0.7064,-0.6206,-0.2758,0.0344,0.4138,0.6896,0.5518,0.6206,0.6896,0.6552,1,0.8966,0.138,0,0.1034,0.069,0,-0.0344,0.1724,0.2758,0.3448,0.6896,0.7932,0.4482,0.4138,0.1724,0.2414,0.3448,0.5172,0.6206,0.7932,0.5862,0.6896,-0.6206,-0.2414,0.1034,0.4482,0.7586,0.6552,0.6206,0.7586,0.7242,1,0.8966,0.2758,-0.0344,0.069,0.069,0,-0.0344,0.2068,0.2414,0.3794,0.6896,0.7932,0.4482,0.4828,0.2414,0.2068,0.3448,0.6206,0.4828,0.862,0.6552,0.5862,-0.5368,0.0316,0.3684,1,0.9578,0.3894,0.4106,0.3264,0.2422,-0.0106,-0.221,-0.4526,-0.5578,-0.4106,-0.3264,-0.3684,-0.5158,-0.5368,-0.3052,0.3474,0.4948,0.1368,-0.2,-0.2,-0.3264,-0.2422,0.0736,0.2422,0.4736,0.2842,0.1158,0.0948,-1,-1,-1,-1,-1,-0.993,-0.989,-0.6686,-0.5394,-0.2956,-0.1154,0.0764,0.1716,0.2264,0.4522,0.7168,0.9602,0.6962,0.0244,-0.4792,-0.662,-0.8392,-0.9128,-0.9434,-0.9746,-0.983,-0.9872,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9934,-0.993,-0.6474,-0.3534,0.1214,0.779,0.964,0.8374,0.7896,0.8104,0.6908,0.4466,-0.0324,-0.4706,-0.7378,-0.8412,-0.9168,-0.955,-0.9678,-0.9762,-0.9812,-0.9846,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.9068,-0.71,-0.58,-0.5234,-0.51,-0.5046,-0.6446,-0.6156,-0.649,-0.6912,-0.72,-0.8178,-0.9,-0.934,-0.964,-0.868,-0.9234,-0.8268,-0.57,-0.64,-0.6334,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,0.5428,-0.7142,-0.9428,-0.8286,-0.8,-0.9428,-0.8,-0.6858,0.4,0.6572,0.5714,-0.8858,-0.6286,-0.7142,-0.6286,-0.7428,-1,-0.3142,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.6194,0.6042,0.6286,0.6288,0.6476,0.6446,0.63,0.6348,0.6192,0.4006,-0.52,0.0824,0.8072,0.9284,0.9558,0.9908,0.8844,1,-0.2934,0.413,1,0.9674,1,0.962,0.4184,0.2282,0.0598,0.1358,0.8098,0.6142,0.25,0.2446,0.8206,0.875,0.9566,0.8968,0.8152,0.674,0.201,0.1142,-0.0326,-0.2174,-0.6032,-0.6086,-0.7446,-0.6902,-0.6358,-0.3914,0,-0.1086,-0.2072,0.3052,0.7328,0.7684,1,0.9198,0.4164,0.3364,0.1714,0.3496,0.7594,0.7328,0.4298,0.3986,0.7906,0.844,0.9376,0.8486,0.6704,0.6124,0.1358,0.1092,-0.127,-0.167,-0.5456,-0.4032,-0.608,-0.3318,-0.2918,-0.0468,-0.029,-0.225,-0.2782,0.2072,0.6726,0.6214,0.9842,1,0.2072,0.1992,0.144,0.3728,0.7554,0.6214,0.2268,0.4398,0.7672,0.7318,0.8382,0.7554,0.6332,0.4004,0.148,-0.0612,-0.1598,-0.1558,-0.5346,-0.4516,-0.4674,-0.2386,-0.219,-0.006,-0.0848,-0.286,-0.5528,-1,-1,1,-0.4,-1,-1,-0.2,-1,-0.129,0,0.2096,0.7258,0.7096,0.5806,0.3548,0.3548,0.3388,0.2096,0.5162,0.3064,0.4516,0.6452,0.5806,0.4838,0.4516,0.4032,0.758,0.9032,1,0.4354,0.5484,0.629,0.2904,0.0646,0.0322,0.3226,0.2258,0.2904,-0.0968,-0.6452,'15'
0.026,0.6856,0.6338,0.8652,0.7236,0.0362,0.0328,-0.0604,-0.1952,-0.2436,-0.3298,-0.2332,-0.1676,-0.0466,-0.0708,0.1434,0.2642,0.6822,0.8584,1,0.8238,0.817,0.886,0.855,0.8204,0.6028,0.4162,0.5648,0.5752,0.7306,0.7512,0.9068,-0.4106,0.1238,0.101,0.4266,0.3716,0.0184,-0.0504,-0.1354,-0.2134,-0.1444,-0.2202,-0.117,-0.2042,-0.016,-0.0412,0.1536,0.2408,0.5344,0.7614,0.9036,0.812,0.7294,0.7844,0.8876,0.8302,0.6628,0.594,0.7478,0.8004,0.9244,1,0.9334,-0.4244,-0.0298,0.1308,0.2752,0.0666,-0.117,-0.289,-0.2844,-0.3188,-0.367,-0.3142,-0.3486,-0.3004,-0.2042,-0.149,-0.1056,0.117,0.3372,0.562,0.7592,0.7958,0.672,0.7294,0.828,0.8212,0.7178,0.6262,0.695,0.7638,0.9174,1,0.9564,-0.4994,-0.2074,0.3116,0.3272,-0.1812,-0.3716,-0.5046,-0.5124,-0.6062,-0.5724,-0.5384,-0.5698,-0.5072,-0.4238,-0.3742,-0.2646,-0.103,0.1056,0.455,0.8148,0.8956,0.7236,0.7262,0.7654,0.841,0.7054,0.5098,0.622,0.622,0.8488,1,0.94,-0.3658,0.4194,0.8288,0.6276,0.2382,-0.5536,-0.5234,-0.4464,-0.4496,-0.641,-0.6846,-0.5906,-0.5906,-0.3658,-0.2652,-0.2786,-0.302,0.0202,0.5504,0.8624,1,0.9496,0.9026,0.9766,0.7986,0.6846,0.3792,0.4162,0.4362,0.547,0.943,0.9194,-0.4818,0.7166,0.996,0.6194,-0.166,-0.6154,-0.6964,-0.745,-0.8988,-0.8664,-0.8744,-0.7814,-0.7774,-0.7732,-0.6396,-0.583,-0.3522,-0.1094,0.3886,0.8056,1,0.8664,0.834,0.6032,0.6276,0.4008,-0.0566,0.0648,0.255,0.417,0.8786,0.8422,0.0224,0.5718,0.6996,0.3226,-0.1884,-0.9616,-0.7892,-0.8466,-0.706,-0.7572,-0.7572,-0.7764,-0.5592,-0.5528,-0.5528,-0.7636,-0.214,0.0608,0.7124,0.8722,0.706,0.8658,1,0.5272,0.476,0.2844,-0.016,0.0352,0.131,0.5464,0.8274,0.54,-0.0322,0.613,0.4194,0.8064,0.3548,-0.5484,-0.4194,-0.5484,-0.613,-0.4838,-0.5484,-0.6774,-0.4838,-0.5484,-0.2904,-0.0322,-0.0322,0.8064,1,0.742,0.9354,0.6774,0.871,0.8064,0.8064,0.4838,-0.1612,0.3548,0.3548,0.742,1,0.742,0.2106,0.8422,0.6842,0.8948,0.7368,0,0.3684,0.2632,-0.5264,-0.3684,-0.7894,-0.579,-0.5264,-0.579,-0.2632,-0.4736,-0.0526,-0.0526,0.421,0.7368,0.6842,0.3684,0.0526,0.5264,0.579,0.4736,0.3684,0.3684,0.3158,0.7894,0.6842,1,-0.5186,-0.2778,0.2592,0.2408,-0.2222,-0.426,-0.6112,-0.537,-0.574,-0.5926,-0.5,-0.574,-0.6296,-0.4444,-0.3148,-0.3334,-0.1852,0.037,0.4074,0.926,0.9444,0.5186,0.6296,0.7038,0.8148,0.6482,0.4074,0.537,0.5186,0.5926,1,0.926,-1,-1,-1,-1,-1,-0.9726,-0.9726,-0.9002,-0.7716,-0.9118,-0.6848,0.5386,0.9104,0.5516,0.3724,0.0774,0.0686,0.2032,0.1482,0.1728,-0.2104,-0.6818,-0.828,-0.9162,-0.945,-0.9624,-0.961,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9864,-0.983,-0.92,-0.8412,-0.8636,-0.8306,-0.5232,0.2258,0.7874,0.7062,0.3638,0.097,-0.3574,-0.6098,-0.6598,-0.7352,-0.9128,-0.9434,-0.9628,-0.9688,-0.971,-0.9698,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.946,-0.9068,-0.8568,-0.4468,0.0232,-0.14,-0.7556,-0.1846,0.2466,0.3222,0.3288,0.2132,-0.3,-0.784,-0.934,-0.834,-0.848,-0.8034,-0.6534,-0.6934,-0.6734,-0.7334,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6572,-0.4,1,1,-0.2858,0.2572,1,1,-0.5142,-1,-0.9142,0.4572,0.6286,-0.7142,-0.3428,-0.5142,-0.4286,-0.7714,-0.8858,-0.9142,-0.9428,-1,-1,-1,-1,-1,-1,-1,0.1268,0.151,0.2172,0.2344,0.2938,0.3396,0.3988,0.4322,0.413,0.0118,0.47,0.4848,0.5196,0.5144,0.5524,0.5592,0.6112,0.6568,0.7516,0.68,-0.5734,0.1058,-0.8352,-0.7062,-0.5896,-0.4296,-0.1676,0.9,-0.242,0.2786,0.3242,0.2786,0.306,0.452,0.8174,0.8996,0.726,1,0.8082,0.799,0.9086,0.726,0.6712,0.8448,0.5982,0.7168,0.7352,0.8174,0.8538,0.7352,0.6164,0.6894,0.6804,0.6438,0.6622,0.7626,0.443,0.379,0.2512,0.0684,-0.5018,-0.1946,-0.0444,0.017,0.0034,0.0648,0.256,0.5358,0.9726,1,0.8566,0.9796,0.6314,0.4744,0.6314,0.7406,0.6382,0.4402,0.57,0.9658,0.9044,0.7884,0.4676,0.5222,0.3856,0.2218,0.454,0.5836,0.4812,0.3448,0.3242,-0.0308,0.1152,0.1838,0.1464,-0.0654,-0.0778,0.0218,0.134,0.3022,0.8318,1,0.8754,0.9004,0.8068,0.6012,0.7446,0.7384,0.8006,0.4954,0.5638,0.863,0.8006,0.3956,0.3396,0.2648,0.2834,0.433,0.7384,0.6636,0.5452,0.489,0.5328,0.1526,-0.5226,-1,-1,1,-1,-1,-1,-0.3334,-1,0.0468,0.0842,0.1402,-0.2336,-0.3644,-0.2898,0.0094,0.458,0.6262,0.4954,0.944,1,0.1776,0.1214,0.6262,0.514,-0.0842,-0.1402,0.1214,0.2524,-0.0094,0.028,0.2336,0.1776,-0.215,-0.2524,0.1588,0.1588,-0.1402,-0.3084,-0.2336,-0.5888,'16'
-0.1438,0.5364,0.516,0.8072,0.7632,0.0558,0.1168,0.083,-0.0016,-0.0694,-0.1236,-0.11,-0.0424,0.0862,0.1236,0.2386,0.3808,0.7394,0.8816,0.929,1,0.9018,0.9154,0.9358,0.9796,0.7394,0.56,0.5702,0.709,0.6006,0.868,0.9222,-0.4536,0.0626,0.0626,0.4536,0.406,0.0852,0.01,-0.0176,-0.1078,-0.1152,-0.228,-0.0376,-0.1704,-0.0652,-0.1354,-0.02,0.218,0.5214,0.6716,0.9148,0.8522,0.6616,0.7068,0.8848,0.8596,0.797,0.6918,0.6516,0.7294,0.8422,0.9674,1,-0.3846,0.041,0.1642,0.3718,0.223,0.0102,-0.1436,-0.082,-0.2,-0.1974,-0.1872,-0.223,-0.259,-0.2794,-0.1102,0.0358,0.1692,0.3642,0.5358,0.7846,0.8616,0.7846,0.7744,0.9,0.8794,0.7924,0.6436,0.6462,0.7384,0.8384,0.9846,1,-0.4682,-0.1362,0.1388,0.2478,-0.0532,-0.1284,-0.2788,-0.3696,-0.4838,-0.4294,-0.4008,-0.4604,-0.5226,-0.4216,-0.2192,-0.1466,-0.0142,0.0844,0.406,0.7146,0.8832,0.834,0.6394,0.6368,0.8522,0.8028,0.6784,0.5876,0.6134,0.7562,0.9118,1,-0.5322,-0.2414,0.2036,0.1908,-0.1074,-0.3426,-0.5878,-0.7294,-0.6208,-0.5372,-0.5778,-0.6208,-0.6006,-0.4084,-0.2844,-0.196,-0.1758,-0.019,0.2338,0.6788,0.8836,0.8154,0.512,0.5702,0.8002,0.8002,0.6308,0.4792,0.5904,0.7016,0.952,1,-0.6058,0.0706,0.3442,0.1676,-0.0912,-0.5648,-0.8676,-0.7088,-0.6942,-0.8176,-0.8676,-0.7824,-0.6382,-0.547,-0.5352,-0.4912,-0.2736,-0.0618,0.0558,0.5706,0.7794,0.7558,0.6382,0.603,0.6852,0.7176,0.5324,0.4442,0.4618,0.5118,0.8912,1,-0.2824,0.699,0.9382,0.501,-0.464,-0.7484,-0.831,-0.699,-0.7856,-0.8886,-0.8226,-0.6164,-0.5298,-0.5176,-0.5546,-0.5258,-0.5052,-0.3196,0.1752,0.769,1,0.8556,0.6412,0.6824,0.7774,0.5794,0.233,0.134,0.2742,0.3568,0.6578,0.8144,0.1578,0.8948,0.8422,0.6842,0.6842,0,0.2632,0.421,0.0526,-0.5264,-0.4736,-0.4736,0,0.0526,0.0526,0.2632,0.1578,0.3684,0.8948,1,0.9474,0.8948,0.6842,0.7368,0.6316,0.3684,0.2106,0.1578,0.421,0.4736,0.5264,0.6842,-0.077,0.6924,0.5384,1,0.8462,0.1794,-0.0256,-0.2308,-0.1282,0.1282,-0.1282,-0.1282,-0.077,0.1282,0.077,-0.3334,0.2308,0.641,0.7948,0.8462,0.7948,0.7948,0.3846,1,0.9488,0.4358,0.4872,0.5898,0.6924,0.3846,0.4872,0.5898,-0.4822,-0.0536,0.3036,0.2142,0.0892,-0.3036,-0.7322,-0.75,-0.7142,-0.4108,-0.4642,-0.5536,-0.6964,-0.3572,-0.2322,-0.2322,-0.1428,-0.0892,0.1608,0.7322,0.7858,0.8036,0.6608,0.6608,0.8928,0.75,0.5358,0.4108,0.7322,0.7322,0.7858,1,-1,-1,-1,-1,-1,-0.9786,-0.9764,-0.7688,-0.9016,-0.9112,-0.6662,0.6736,0.5708,0.2316,0.1642,0.0272,-0.069,-0.1482,-0.161,-0.2006,-0.1376,-0.3516,-0.7592,-0.8748,-0.9166,-0.9422,-0.9754,-0.9678,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9878,-0.9862,-0.7624,-0.8434,-0.7564,-0.7646,-0.241,0.8318,0.7842,0.6248,0.5536,0.655,0.5642,0.0826,-0.3132,-0.5142,-0.768,-0.9136,-0.9428,-0.9576,-0.9658,-0.9772,-0.9804,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.9534,-0.5968,0.09,0.0666,-0.0168,-0.7226,-0.0476,0.2024,0.2324,0.1324,0.1866,0.2488,0.1888,-0.1212,-0.6346,-0.9412,-0.8422,-0.6522,-0.5656,-0.719,-0.8322,-0.7256,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,-0.2572,0.4,1,1,-0.8572,-0.8286,-0.9142,-0.9714,-0.8572,-0.5714,-0.5142,1,1,-0.6286,-0.5714,-0.5428,-0.6,-0.9714,-0.6858,-1,-1,-1,-1,-1,0.2882,0.3012,0.3344,0.398,0.4414,0.4978,0.5424,0.5754,0.578,0.198,0.4224,0.447,0.486,0.5366,0.5678,0.6064,0.6656,0.7198,0.7912,0.83,-0.6534,-0.0118,-0.7738,-0.6422,-0.314,0.0812,0.6302,1,-0.2642,0.0568,0.1304,-0.0568,-0.0836,0.2842,0.5452,0.9464,0.9598,0.893,0.8528,0.8528,0.8462,0.7392,0.418,0.485,0.5786,0.592,0.592,1,0.9732,0.786,0.6522,0.4448,0.4516,0.4448,0.5786,0.4248,0.3512,0.1974,0.291,0.0302,-0.5966,-0.0994,-0.0994,-0.453,-0.2044,-0.0442,0.022,0.4972,0.8398,1,0.9614,0.8398,0.7182,0.5248,0.442,0.7624,0.8454,0.4198,0.3204,0.6244,0.7128,0.6022,0.5248,0.558,0.315,0.315,0.6188,0.6408,0.221,0.337,0.2818,-0.094,0.0858,0.18,0.18,0.1412,-0.0028,-0.1302,0.0748,0.1468,0.6676,0.9446,0.9502,1,0.9944,0.529,0.6676,0.9612,0.9168,0.5402,0.4182,0.457,0.8836,0.8726,0.6566,0.5956,0.374,0.7728,0.8614,0.4404,0.4016,0.7396,0.723,0.1634,-0.414,-1,-1,1,-1,-1,-0.6,-0.2,-1,0.264,0.088,0.2,0.072,0.056,0.36,0.376,0.088,0.92,1,1,0.968,0.568,0.568,0.584,0.648,0.648,0.616,0.504,0.44,0.568,0.296,0.264,0.376,0.312,0.312,0.632,0.696,0.6,0.2,0.136,-0.12,'16'
-0.1808,0.553,0.5598,0.2458,0.2764,-0.0648,-0.0546,-0.1502,-0.1296,-0.2252,-0.1604,-0.075,0.0274,0.1774,0.3106,0.7576,0.826,0.7098,0.6144,0.8874,0.9726,0.7474,0.7236,0.6552,0.761,0.5972,0.686,0.8532,1,0.925,0.9078,0.768,-0.3802,0.1956,0.1764,0.4518,0.3994,0.0688,0.0082,-0.0082,-0.0882,0.044,-0.0496,0.0578,-0.0248,0.3196,0.7052,1,0.887,0.8622,0.7714,0.9008,0.7686,0.471,0.3444,0.471,0.405,0.4352,0.5152,0.8842,0.8374,0.9642,0.8954,0.81,-0.1882,0.3392,0.4548,0.7866,0.6682,0.3274,0.1614,0.1614,0.12,0.2326,0.3244,0.4518,0.8312,0.8312,0.7038,0.6948,0.7334,0.7422,0.9348,0.8666,0.4696,0.3244,0.2652,0.2712,0.3156,0.3748,0.5348,0.6652,0.8192,0.994,1,0.7808,-0.2256,0.2824,0.8294,1,0.5276,0.1404,0.0516,0.2434,0.4104,0.6092,0.666,0.3392,0.2042,0.0302,-0.0622,-0.0692,-0.0088,0.3784,0.492,0.5452,0.2184,-0.2184,-0.2362,-0.1866,-0.2326,-0.215,0.0018,0.2042,0.5204,0.8224,0.8366,0.6164,-0.382,0.4734,1,0.8648,-0.0968,0.0458,0.298,0.2906,0.1554,-0.086,-0.5028,-0.532,-0.4406,-0.5686,-0.5722,-0.5942,-0.5246,-0.2432,-0.1846,-0.1554,-0.2688,-0.5246,-0.7368,-0.7148,-0.788,-0.7038,-0.7002,-0.6636,-0.3638,0.086,0.1956,-0.0348,-0.2892,0.7852,1,0.529,-0.0206,0.0042,0.1652,0.2272,-0.3512,-0.5662,-0.595,-0.5166,-0.5372,-0.7976,-0.7024,-0.6446,-0.562,-0.4504,-0.5166,-0.5786,-0.6364,-0.5702,-0.5662,-0.7272,-0.5702,-0.6736,-0.9008,-0.872,-0.7644,-0.5744,-0.3472,-0.4174,-0.0964,0.8006,1,0.9004,0.0764,-0.1162,0.4818,0.515,-0.1496,-0.8936,-0.7076,-0.6612,-0.628,-0.5946,-0.5482,-0.4486,-0.3954,-0.6878,-0.701,-0.681,-0.5814,-0.5814,-0.3888,-0.4286,-0.3622,-0.6212,-0.8804,-0.8538,-0.6346,-0.7076,-0.6544,-0.701,0.0476,0.7142,0.8096,0.2858,-0.1428,-0.1428,-0.4762,-0.1904,-0.1428,-0.3334,-0.1904,-0.2858,-0.1904,0,0.238,0.3334,0.1428,0.4762,0.1428,0.5238,0.5714,1,0.9524,0.9048,1,0.619,0.0476,-0.0476,0.381,0.3334,0.381,0.3334,0.0434,0.8696,0.913,0.4348,0.4348,0.174,0.2174,-0.174,-0.2174,-0.174,-0.087,-0.087,0.2174,0.2608,0.2608,0.6956,0.8696,0.7392,0.5652,0.8696,1,0.8696,0.6522,0.5652,0.6522,0.6086,0.6956,0.826,0.8696,0.913,0.913,0.6956,-0.3636,0.2046,0.3636,0.659,0.4546,0.1364,-0.091,-0.0228,0.0682,0.1136,0.4546,0.409,0.5454,0.409,0.2046,0.25,0.4318,0.591,0.75,0.3636,0.4318,0.0454,0.0228,0.0682,0,0,0.0228,0.3636,0.75,1,0.7954,0.591,-1,-1,-1,-1,-0.9588,-0.9576,-0.8912,-0.9004,-0.897,-0.7986,-0.533,0.5078,0.1814,0.2044,0.376,0.4494,0.5146,0.834,0.5512,0.0234,-0.4322,-0.6726,-0.8558,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.979,-0.9766,-0.716,-0.7812,-0.619,-0.6066,-0.6382,-0.2238,0.849,0.5698,0.0914,-0.14,-0.26,-0.249,-0.4356,-0.646,-0.8026,-0.8776,-0.9324,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.93,0.11,0.66,0.5932,0.4732,0,-0.7026,-0.1926,-0.2976,-0.46,-0.6356,-0.869,-0.9312,-0.94,-0.9712,-0.9846,-0.9734,-0.8868,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,0.6572,-0.5428,-0.4,1,1,1,-0.6,-0.2858,0.1428,0.1142,-0.1714,-0.3428,-0.4572,-0.8858,-0.6286,-0.8286,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.0514,0.0876,0.1174,0.1836,0.2184,0.2894,0.349,0.4292,0.4782,0.454,0.34,0.323,0.3092,0.2996,0.26,0.1956,0.1178,-0.0844,-0.3906,-0.4302,-0.6534,0,-0.655,-0.6876,-0.3592,0.1808,0.8416,1,-0.8446,-0.3738,-0.369,-0.267,-0.1504,-0.2136,-0.1166,-0.0486,-0.131,0.2428,0.5292,0.4708,0.8884,0.8252,0.7184,0.631,0.4806,0.636,0.699,0.9758,1,0.7282,0.636,0.7234,0.8156,0.7962,0.9224,0.8592,0.8106,0.5874,0.335,0.165,-0.6182,-0.444,-0.3818,-0.3858,-0.2324,-0.1162,-0.1992,0.0374,0.2698,0.3196,0.498,0.863,1,0.61,0.7468,0.5312,0.3734,0.6266,0.7926,0.9876,0.9626,0.6016,0.6722,0.6348,0.6556,0.8174,0.7926,0.859,0.6016,0.3486,0.2406,0.0456,-0.0354,0.002,-0.2972,-0.3596,-0.2016,-0.1102,0.0312,0.1892,0.2682,0.5052,0.7422,1,0.8794,0.7338,0.7422,0.659,0.4554,0.7338,0.8794,0.9876,0.7298,0.709,0.7506,0.7214,0.7506,0.8918,0.9626,0.8254,0.5966,0.5676,0.3388,-0.1434,-0.5078,-1,-1,1,-1,-1,-0.8,0,-1,0.3118,0.2258,-0.0108,0.3978,1,0.6344,0.1828,0.2688,0.2044,0.1612,0.4624,0.3764,0.1398,0.1828,0.1182,0.0108,-0.2258,-0.0538,0.2474,0.2044,0.1182,-0.2258,0.2474,0.2044,-0.0968,-0.2474,-0.0108,0.1398,-0.0108,-0.2688,-0.5054,-0.4624,'17'
-0.4148,0.0646,0.4548,0.8002,0.7274,0.1468,0.0388,-0.0152,-0.06,0.0788,0.0458,0.1728,0.3748,0.4876,0.9248,1,0.6992,0.779,0.9412,0.9812,0.6968,0.5252,0.403,0.3842,0.4712,0.4524,0.631,0.7602,0.9294,0.8896,0.7298,0.8002,-0.4236,0.0074,0.6896,0.8916,0.7316,0.2316,0.3078,0.3522,0.3794,0.3646,0.4088,0.5788,0.7832,0.7906,0.9138,0.6822,0.633,0.8866,0.9064,0.8104,0.7882,0.5764,0.4976,0.399,0.3646,0.463,0.6232,0.803,0.9852,1,0.7364,0.8572,-0.3458,-0.0024,0.729,0.8248,0.5186,0.4556,0.3832,0.299,0.4112,0.514,0.694,1,0.9136,0.4814,0.4742,0.472,0.5046,0.715,0.9042,0.9112,0.6192,0.3902,0.3318,0.2266,0.285,0.3482,0.444,0.6588,0.8856,0.9112,0.701,0.7546,-0.3868,0.1592,0.7956,0.781,0.6262,0.3256,0.311,0.489,0.6818,0.6408,0.7022,0.5912,0.2846,0.165,0.1738,0.2176,0.273,0.5008,0.7898,0.7986,0.5036,0.1678,0.0598,-0.0656,0.019,0.2204,0.2408,0.53,0.9854,1,0.676,0.524,-0.4446,0.534,0.9378,0.8368,0.8136,0.367,0.5728,1,0.93,0.3166,-0.0564,-0.134,-0.1884,-0.235,-0.2622,-0.2738,-0.2776,-0.1146,0.1728,0.3748,0.2504,-0.4446,-0.398,-0.6194,-0.5106,-0.4524,-0.165,-0.064,0.5612,0.7166,0.2116,-0.0796,-0.262,0.6394,1,0.7904,0.6898,0.4172,0.4758,0.346,0.1656,-0.3124,-0.6058,-0.5808,-0.6856,-0.6856,-0.455,-0.589,-0.7484,-0.7148,-0.5514,-0.3334,-0.5472,-0.8156,-0.74,-0.9412,-0.7106,-0.652,-0.6016,-0.6058,-0.1278,-0.0776,-0.2244,-0.4884,0.1696,0.4854,0.731,0.848,0.6842,-0.1346,0.2456,1,0.9122,0.3684,-0.3918,-0.6784,-0.6258,-0.6432,-0.4036,-0.5672,-0.766,-0.503,-0.538,-0.3508,-0.1638,-0.3684,-0.8422,-0.9356,-0.573,-0.655,-0.7018,-0.7018,-0.3568,0.0644,-0.1872,-0.766,-0.3846,0.1076,0.3538,0.6924,0.6616,0.2924,0.1692,0.1076,-0.0154,0.1384,0.0154,0.1692,0.1076,0.323,0.7846,0.9692,0.8462,0.8154,0.877,1,0.7846,0.5692,0.3846,0.4154,0.4462,0.5692,0.6308,0.723,0.8462,0.9076,0.7538,0.9076,-0.5172,0.0344,0.2758,0.7242,0.6552,0.1034,0.069,0,-0.138,0,-0.138,0.069,0.1724,0.3794,0.7932,0.931,0.6552,0.8276,0.8966,1,0.6552,0.5518,0.3104,0.4138,0.3448,0.4138,0.6552,0.6896,0.8966,0.931,0.7586,0.8276,-0.3424,0.6164,0.9726,0.8356,0.7808,0.4794,0.8082,1,0.8356,0.0684,-0.2054,-0.0958,-0.2328,-0.315,-0.2328,-0.2328,-0.315,-0.0684,0.1506,0.315,0.2876,-0.6438,-0.589,-0.8082,-0.5616,-0.3972,-0.178,-0.2328,0.3972,0.5616,-0.041,-0.2876,-0.994,-0.989,-0.9652,-0.9812,-0.9826,-0.9728,-0.9796,-0.7562,-0.4304,-0.445,-0.299,0.2268,0.9048,0.7868,0.4126,0.1322,-0.239,-0.3748,-0.479,-0.6218,-0.749,-0.857,-0.9234,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9898,-0.8768,-0.7764,-0.8662,-0.798,-0.7616,-0.8056,-0.825,-0.5176,-0.0122,0.1886,0.3788,0.9218,0.7288,0.461,0.044,-0.4106,-0.591,-0.6702,-0.804,-0.8696,-0.914,-0.9538,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9134,-0.7834,0.46,0.77,0.47,0.5366,0.59,0.0332,-0.69,-0.21,-0.2468,-0.449,-0.5134,-0.6024,-0.5424,-0.7646,-0.7868,-0.8978,-0.872,-0.926,-0.928,-0.886,-0.9,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.8286,1,1,-0.0858,-0.3142,-0.9142,0.1714,1,1,1,-0.5714,-0.8,-0.6858,-0.6286,-0.6572,-0.4286,0.0572,0.1428,0.3142,0.1428,-0.8572,-0.5714,-0.2572,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.727,0.7174,0.709,0.7044,0.7142,0.735,0.7662,0.8068,0.8288,0.759,-0.352,-0.377,-0.3998,-0.4394,-0.5124,-0.5798,-0.6616,-0.7394,-0.7624,-0.6032,-0.52,0.0942,0.2012,0.2344,0.3236,0.446,0.7206,-0.1,-0.796,-0.4972,-0.3742,-0.2422,-0.2444,-0.087,0.029,0.1888,0.2398,0.3742,0.5412,0.796,0.854,0.664,0.6802,0.6546,0.569,0.7544,1,0.8564,0.6686,0.5202,0.3928,0.6106,0.3256,0.4414,0.5202,0.504,0.3998,0.5134,0.3858,0.1124,-0.81,-0.3756,-0.3506,-0.328,-0.2444,-0.2104,-0.0452,0.12,0.4616,0.5,0.7556,0.9162,0.8914,0.7036,0.699,0.638,0.5746,0.7534,1,0.9322,0.7828,0.5136,0.6628,0.8348,0.552,0.6132,0.742,0.7286,0.7058,0.6856,0.4616,0.3144,0.2818,0.5056,0.6714,0.298,0.2142,0.1852,0.3188,0.6426,0.9678,0.7342,0.9098,0.6426,0.5684,0.7134,1,0.9098,0.7794,0.636,0.4718,0.388,0.0724,-0.2818,-0.1062,0.0724,-0.1256,0.0772,0.1674,0.2624,0.4814,0.3574,-0.1368,-0.3334,-0.4922,-1,1,-1,1,-1,-1,0.9334,-1,0.718,0.6154,0.4102,0.8974,1,0.8974,1,0.7948,0.4616,0.5128,0.641,0.6154,0.5642,0.3846,0.641,0.282,0.3334,0.359,0.6924,0.6666,0.4616,0.3076,0.4872,0.1794,0.1282,0.1282,0.1282,0.2052,-0.2308,0.1282,0.0512,-0.282,'17'
-0.4388,-0.201,0.2156,0.3628,0.5956,1,0.9362,0.7328,0.6594,0.5564,0.1176,-0.0858,-0.2132,-0.2892,-0.3872,-0.429,-0.3432,-0.4436,-0.576,-0.3578,-0.277,0.0368,0.2352,0.321,0.1078,0.0074,-0.1348,0.0148,0.0122,0.1862,0.3946,0.277,-0.4458,-0.1524,0.2102,0.3394,0.5982,0.9192,0.9654,1,0.903,0.4364,0.1062,0.0278,-0.1454,-0.254,-0.2424,-0.3834,-0.3188,-0.2564,-0.5866,-0.187,-0.067,0.2148,0.2332,0.0578,-0.0994,-0.0808,-0.2148,0.0438,0.1132,0.0994,0.2148,0.1848,-0.457,-0.1788,0.2104,0.396,0.595,0.9728,1,0.862,0.8054,0.6154,0.2534,0.1334,-0.0384,-0.0702,-0.1064,-0.2104,-0.172,-0.0928,-0.0656,0.2398,0.2714,-0.0702,-0.1968,-0.4932,-0.3212,-0.328,-0.3394,-0.1018,-0.0316,0.0634,0.0566,0.0204,-0.5306,-0.2948,0.1412,0.3438,0.6196,1,0.9088,0.4328,0.6796,0.7686,0.8132,0.3548,0.1612,0.1814,0.2102,0.2348,0.2592,0.1256,-0.059,-0.3214,-0.5618,-0.5172,-0.5306,-0.6908,-0.693,-0.742,-0.5928,-0.4394,-0.4572,-0.217,0.0634,0.039,-0.5404,-0.2266,0.1314,0.4078,0.8542,0.9802,0.7724,0.5536,0.6442,0.9624,1,0.821,0.4674,0.6266,0.706,0.6376,0.2862,-0.0718,-0.3636,-0.4962,-0.611,-0.6574,-0.7458,-0.779,-0.6774,-0.7524,-0.7172,-0.6066,-0.631,-0.421,-0.253,-0.1558,-0.5632,-0.105,0.086,0.537,0.938,0.9094,0.6658,0.4868,0.5084,0.8114,1,0.9714,0.6992,0.8378,0.8854,0.4416,-0.086,-0.2936,-0.685,-0.8448,-0.7662,-0.735,-0.6682,-0.6826,-0.6444,-0.7756,-0.6898,-0.6802,-0.5848,-0.2984,-0.0572,0,-0.4828,-0.0312,0.1838,0.3894,0.5732,0.5982,0.4548,0.3364,0.3052,0.5482,0.81,1,0.785,0.947,0.9252,0.109,-0.2462,-0.5576,-0.7912,-0.8006,-0.8286,-0.6542,-0.5608,-0.7134,-0.7664,-0.8848,-0.9876,-0.7664,-0.7508,-0.6542,-0.2616,-0.2212,-0.628,-0.1628,0.0698,0.2558,0.3954,0.9534,1,0.814,0.3024,0.4884,0.3024,0.0232,-0.0698,-0.0698,-0.2558,-0.3024,-0.2558,-0.3024,-0.3954,-0.0698,0.0232,0.0232,0.4884,0.5348,0.3954,0.0698,0.2094,0.1162,0.1628,0.4884,0.5348,-0.0698,-0.423,-0.2308,0.1924,0.3846,0.6538,1,0.8462,0.9616,0.923,0.3846,0.3462,-0.1154,-0.3076,-0.2692,-0.1924,-0.5,-0.3846,-0.3076,-0.4616,-0.2692,-0.1538,0.2692,0.5,0.4616,0.1924,0.077,-0.423,0.0384,-0.1538,-0.0384,0.1538,0.0384,-0.5354,-0.2324,0.1718,0.4142,0.596,0.9798,1,0.8586,0.697,0.5758,0.2728,0.091,-0.091,-0.1112,-0.192,-0.091,-0.2728,-0.1516,-0.091,0.3536,0.3738,-0.2728,-0.3334,-0.4748,-0.4142,-0.5152,-0.3536,-0.0506,-0.0506,0.091,-0.0102,0.0102,-1,-1,-1,-1,-1,-1,-1,-0.9716,-0.9758,-0.745,-0.3452,0.1092,0.236,0.3348,0.448,0.7628,0.8782,0.8448,0.7072,0.5142,-0.0188,-0.4964,-0.8142,-0.8678,-0.9046,-0.9444,-0.958,-0.9706,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.985,-0.9854,-0.6928,-0.2988,-0.066,0.0856,0.538,0.4598,0.6824,0.8718,0.791,0.6444,0.3086,-0.0494,-0.6146,-0.8988,-0.9216,-0.9282,-0.946,-0.9638,-0.9708,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.9268,-0.82,-0.63,-0.7146,-0.722,-0.6764,-0.711,-0.7292,-0.7346,-0.7492,-0.6874,-0.8346,-0.751,-0.765,-0.8334,-0.85,-0.73,-0.72,-0.68,-0.82,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6858,1,1,1,-0.6572,-0.8858,-0.7714,-0.4572,-0.3428,-0.7142,-0.6572,-0.7428,-0.8286,-0.5714,0.9428,-0.7428,-0.8286,-0.8,-0.8286,-0.6858,-0.6858,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.3862,0.3498,0.3216,0.3276,0.3048,0.2594,0.2214,0.1428,-0.3062,-1,-0.52,0.3176,-0.2674,-0.2278,0.1152,-0.0572,-0.1414,1,-0.3826,0.141,0.9464,1,0.9598,0.3558,0.0604,-0.141,-0.0738,-0.1276,0.3154,0.7316,0.6644,0.5838,0.7718,0.9732,0.812,0.6242,0.396,0.4094,0.4094,0.1276,0.0872,-0.463,-0.4228,-0.3422,-0.3558,-0.5168,-0.1812,-0.0336,-0.3288,-0.6376,-0.1574,0.2696,0.9102,0.9214,0.8764,0.4382,0.191,0.1686,0.1012,0.0338,0.528,0.6516,0.6966,0.4832,0.8652,1,0.7978,0.764,0.3708,0.427,0.3932,0.2022,0,-0.2922,-0.4944,-0.382,-0.236,-0.1574,-0.1798,0.1124,-0.0674,-0.2696,-0.0594,0.322,0.8728,1,0.9152,0.3814,0.1102,0.0678,-0.1526,-0.2204,0.1694,0.644,0.5932,0.3644,0.5594,0.7542,0.6102,0.2882,0.1694,0.3474,0.3898,0.0678,0.0594,-0.2458,-0.5,-0.4576,-0.4152,-0.4068,-0.0254,0,-0.2118,-0.3136,0.1066,-1,-1,1,-0.8,-1,-1,-0.6666,-1,-0.3462,0.0192,0.0384,0.077,0.2116,0.5,1,0.923,0.7116,0.5576,0.327,-0.0384,0.2308,0.6346,0.7308,0.0576,0.0576,-0.0192,0.8846,0.423,-0.1154,-0.0192,0.0576,0.0576,-0.0192,-0.2116,0.0384,-0.0384,-0.4038,-0.6538,0,-0.423,'18'
-0.498,-0.2058,0.1154,0.175,0.5116,0.802,0.9134,1,0.9884,0.448,0.275,0.2346,-0.002,-0.0384,-0.0846,-0.2,-0.1634,-0.352,-0.2038,-0.0884,0.202,0.3038,0.5096,0.3904,0.3826,0.2808,0.2442,0.402,0.5384,0.573,0.4384,0.3904,-0.5208,-0.236,0.0882,0.1838,0.5172,0.7262,0.8486,0.9874,1,0.4684,0.319,0.2612,0.0558,0.045,-0.1064,-0.1568,-0.0864,-0.101,-0.1316,-0.0666,0.3442,0.4,0.5676,0.5154,0.254,0.2738,0.3064,0.5226,0.4846,0.5406,0.5748,0.5874,-0.5212,-0.2526,0.1492,0.2564,0.5324,0.9212,1,0.9982,0.953,0.5342,0.2996,0.3052,0.155,0.0366,0.0442,-0.031,-0.0874,0.0384,0.0666,0.2864,0.5492,0.508,0.5906,0.3296,0.232,0.3464,0.3728,0.5324,0.6882,0.6658,0.6902,0.5512,-0.544,-0.2972,0.1452,0.315,0.5716,1,0.9644,0.7492,0.852,0.8894,0.7986,0.4828,0.3978,0.2122,0.2082,0.1944,0.3484,0.4374,0.532,0.6288,0.4728,0.23,0.161,0.0918,0.0504,0.0602,0.0878,0.3504,0.5162,0.5932,0.5834,0.5598,-0.5954,-0.2862,0.04,0.292,0.6736,0.8034,0.6852,0.645,0.6756,0.8988,1,0.895,0.4312,0.5058,0.6374,0.6374,0.708,0.4752,0.042,-0.0096,-0.147,-0.2462,-0.25,-0.3282,-0.4008,-0.332,-0.313,-0.1298,-0.0688,0.1432,0.3264,0.4274,-0.597,-0.17,0.0292,0.3782,0.8894,0.8982,0.6034,0.5926,0.597,0.8764,0.9566,1,0.74,0.9004,0.9264,0.7334,0.3586,-0.1484,-0.376,-0.5102,-0.7768,-0.6534,-0.6598,-0.7184,-0.779,-0.7746,-0.7204,-0.5774,-0.5666,-0.3824,-0.0596,0.2568,-0.113,0.207,0.3044,0.1408,0.8156,0.774,0.513,0.3426,0.2904,0.6034,0.7044,0.8018,0.7078,0.9096,1,0.6174,-0.04,-0.4122,-0.6278,-0.8226,-0.8678,-0.8992,-0.7496,-0.833,-0.5548,-0.5652,-0.8922,-0.9514,-0.7878,-0.586,-0.0122,0.1096,-0.647,-0.3334,0.0196,0.2156,0.3726,0.804,0.8824,1,0.9608,0.4902,0.2156,0.098,-0.0196,-0.0588,-0.0196,-0.3334,-0.3726,-0.4118,-0.2156,-0.255,-0.0196,0.3726,0.5294,0.5294,0.4118,0.4118,0.1764,0.2156,0.6078,0.4118,0.5294,0.4118,-0.323,-0.0462,0.2616,0.2616,0.5692,0.8462,0.9384,1,1,0.5692,0.2308,0.3538,0.1076,-0.0154,0.077,-0.077,-0.077,-0.1384,-0.0154,0.077,0.2308,0.3538,0.477,0.3538,0.4462,0.323,0.2308,0.4462,0.6,0.6,0.5692,0.4462,-0.5714,-0.25,0.125,0.3036,0.4464,1,1,0.6608,0.8928,0.9108,0.5178,0.375,0.3036,0.1786,0.1072,0.1428,0.2142,0.375,0.5178,0.8036,0.6964,0.2678,0.1786,0.0714,0.1072,0.1786,0.2142,0.3214,0.6786,0.6786,0.6428,0.5892,-1,-1,-1,-1,-1,-1,-1,-1,-0.9864,-0.9844,-0.6346,-0.0982,0.056,0.203,0.4278,0.7274,0.8852,0.547,0.2844,0.263,-0.1966,-0.7388,-0.8652,-0.925,-0.9594,-0.9794,-0.9772,-0.98,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9926,-0.9924,-0.617,-0.0444,0.316,0.4634,0.5996,0.5486,0.8106,0.6968,0.2248,-0.118,-0.5572,-0.8974,-0.9456,-0.951,-0.9642,-0.9728,-0.9774,-0.9812,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.88,-0.9268,-0.77,-0.631,-0.5892,-0.582,-0.5984,-0.6618,-0.6384,-0.5268,-0.4934,-0.7768,-0.8868,-0.9168,-0.8834,-0.7534,-0.67,-0.68,-0.6834,-0.73,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,1,1,1,-0.4858,-0.9714,-0.8286,-0.6858,-0.3428,-0.6286,-0.6572,0.1714,0.2286,-0.0572,-0.8858,-0.9142,-0.8572,-0.9142,-0.9428,-0.5714,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.532,0.5454,0.5354,0.5458,0.5654,0.6162,0.6464,0.6872,0.515,-0.6286,-0.52,0.4,-0.5812,-0.1048,-0.102,-0.0478,0.0528,1,-0.1064,0.0638,0.7872,0.9574,1,0.7872,0.4468,0.3192,0.3192,0.3192,0.6596,0.9148,0.9148,0.7446,0.9574,1,0.8724,0.6596,0.6596,0.7022,0.5744,0.4042,0.149,-0.149,-0.2766,-0.0212,0.3192,0.234,0.1064,0.1064,-0.1914,-0.4894,0.1428,0.365,0.8412,0.9524,1,0.7142,0.4126,0.3174,0.2064,0.1746,0.508,0.7936,0.7302,0.6508,0.8412,0.873,0.7778,0.5396,0.4444,0.6032,0.4604,0.3174,0.1112,-0.254,-0.0318,0.0634,0.3016,0.381,0.2064,0.1428,-0.0158,-0.1428,0.0312,0.3906,0.7968,1,0.9532,0.6406,0.3282,0.2188,0,0.0938,0.4218,0.8124,0.7032,0.4688,0.7968,0.7968,0.6718,0.3438,0.375,0.3594,0.3282,0.0156,-0.125,-0.4218,-0.1876,-0.0782,0.2344,0.3124,0.0938,0.0468,-0.0938,-0.2968,-0.2216,-1,-1,1,-1,-1,-0.8,-0.8334,-1,-0.4688,-0.5156,0.1406,0.125,0.1718,0.5468,0.7344,0.8594,1,0.1876,0.0468,-0.0156,0.125,0.1876,0.3906,0.5626,0.0782,-0.0624,0.2032,0.2032,0.1562,0.0938,-0.125,-0.0624,-0.1718,-0.1094,-0.1094,0.0938,-0.1718,-0.6406,-0.5782,-0.6094,'18'
-0.5088,-0.228,0.2702,0.4666,0.7334,0.8736,0.7894,0.5508,0.4736,0.2772,0.3684,0.4316,0.621,0.8456,0.972,1,0.8808,0.7614,0.6562,0.6842,0.8456,0.972,0.8316,0.621,0.5298,0.2632,0.2912,0.4808,0.4666,0.7334,0.8176,0.8176,-0.521,-0.2994,0.1616,0.3892,0.5568,0.8024,0.7246,0.3592,0.3652,0.2814,0.3234,0.3354,0.5508,0.6706,1,0.9042,0.5688,0.509,0.5748,0.6168,0.7426,0.7366,0.7426,0.497,0.3832,0.3474,0.2994,0.4432,0.473,0.6706,0.8204,0.8264,-0.5422,-0.3134,0.1542,0.3582,0.4776,0.8806,0.8258,0.403,0.2936,0.2388,0.3134,0.418,0.5722,0.791,1,0.8956,0.602,0.4528,0.4676,0.612,0.7612,0.7562,0.6866,0.4726,0.3732,0.3184,0.3582,0.5024,0.5274,0.7364,0.8956,0.8258,-0.5408,-0.3316,0.1734,0.4082,0.5664,0.9898,0.949,0.4948,0.3928,0.3316,0.4234,0.5306,0.7244,0.8368,0.9082,0.847,0.6888,0.5714,0.5154,0.6224,1,0.9694,0.6582,0.3878,0.3572,0.4388,0.4642,0.4234,0.546,0.9184,0.9082,0.898,-0.596,-0.3248,0.0792,0.3658,0.693,1,0.8874,0.3146,0.2788,0.3402,0.3862,0.514,0.7698,0.826,0.9386,0.6982,0.5038,0.4732,0.4732,0.6368,0.7034,0.7852,0.6676,0.4066,0.3402,0.2736,0.202,0.3504,0.3402,0.5754,0.7442,0.7544,-0.536,-0.2,0.088,0.4346,0.9146,1,0.6106,0.3174,0.3014,0.2746,0.3814,0.6106,0.8774,0.9894,0.8134,0.3866,0.3386,0.2266,0.312,0.4666,0.744,0.8026,0.5786,0.248,0.2534,0.1894,0.056,0.0934,0.1146,0.2054,0.5146,0.552,-0.4722,0.026,0.2714,0.7472,0.9776,0.9926,0.4944,0.316,0.1226,-0.026,0.145,0.4276,1,1,0.6282,0.0038,0.145,0.1152,0.0038,0.3012,0.5762,0.6878,0.3086,0.1822,0.0112,-0.2862,-0.4944,-0.3308,-0.4424,-0.0706,0.1598,0.0856,-0.5686,-0.2156,0.1764,0.255,0.7254,0.9216,0.804,0.5294,0.3334,-0.0196,0.3334,0.4118,0.5294,0.647,0.7254,1,0.8432,0.7254,0.4902,0.451,0.8824,0.804,0.7648,0.5686,0.3726,-0.0196,0.0588,0.4118,0.3334,0.6078,0.7254,0.7648,-0.3794,-0.2068,0.2414,0.4482,0.6206,0.6896,0.6896,0.4482,0.4828,0.4138,0.3794,0.3448,0.5518,0.8276,1,0.931,0.7242,0.6206,0.6206,0.6552,0.7586,0.862,0.7586,0.4828,0.5172,0.3104,0.2414,0.4828,0.4138,0.6896,0.7932,0.7586,-0.5088,-0.193,0.1404,0.4036,0.8772,1,0.807,0.3508,0.4036,0.3158,0.4736,0.5614,0.7368,0.965,0.9298,0.4912,0.4736,0.386,0.3684,0.5088,0.8422,0.807,0.614,0.3334,0.386,0.386,0.1052,0.3334,0.2456,0.4386,0.7192,0.7192,-1,-1,-1,-1,-1,-1,-1,-1,-0.9866,-0.9786,-0.4956,-0.0546,0.1458,0.11,0.4026,0.4598,0.457,0.8014,0.9786,0.8908,0.6296,-0.0858,-0.636,-0.9204,-0.9294,-0.9588,-0.9732,-0.9714,-0.9776,-0.9704,-0.9794,-0.9812,-0.9786,-1,-1,-1,-1,-1,-1,-1,-1,-0.9782,-0.9878,-0.605,-0.1014,0.078,0.1714,0.5922,0.7562,0.7068,0.8684,0.9974,0.7236,0.1558,-0.5072,-0.8424,-0.7216,-0.614,-0.6614,-0.6784,-0.7114,-0.7566,-0.7158,-0.7748,-0.7938,-0.7718,-1,-1,-1,-1,-1,-1,-1,-1,-0.8534,-0.9534,-0.8034,-0.615,-0.48,-0.435,-0.6,-0.59,-0.65,-0.72,-0.71,-0.776,-0.776,-0.728,-0.2868,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2286,1,1,1,-0.2572,-0.9142,-1,-1,-0.9142,-0.8858,-0.6,0.6,1,1,1,1,-0.4858,-0.6572,-0.9142,-0.9714,-1,-1,-0.9428,-0.9142,-0.8858,1,1,1,1,1,1,1,1,1,1,-0.7598,-0.7896,-0.7896,-0.8112,-0.7816,-0.7634,-0.783,-0.8554,-0.868,-0.9814,-0.5066,-0.5648,-0.5696,-0.081,-0.076,0.078,0.1124,1,0.1384,0.6,0.6924,0.5692,0.5384,0.8154,0.877,1,1,0.6924,0.9076,1,0.9692,0.8154,0.7846,0.7846,0.723,0.8462,0.7846,0.6,0.3538,0.0462,-0.0154,0.1384,0.2,0.2308,0.3538,0.2,0.1076,0.1076,0.0154,-0.2616,0.0732,0.496,0.87,0.8048,0.3008,0.4472,0.3822,1,0.935,0.5284,0.691,0.8048,0.5122,0.5122,0.4146,0.8048,0.7886,0.8536,0.4308,0.317,-0.0894,-0.3008,-0.2846,-0.1382,-0.0894,-0.0406,0.0406,0.0406,0.0894,0.0894,-0.0406,-0.2358,0.091,0.4876,1,0.9338,0.5042,0.5206,0.5868,0.9338,0.967,0.7686,0.8016,0.719,0.6364,0.438,0.5538,0.7852,0.7852,0.7852,0.3388,0.0578,-0.2562,-0.2396,-0.3554,-0.2232,-0.19,-0.0744,-0.1074,-0.2892,-0.0414,-0.0082,-0.0578,-0.2232,0.0396,-1,-1,1,-0.8,-1,-1,-0.8334,-1,-0.785,-0.742,-0.5484,-0.6022,-0.5806,-0.5592,-0.4086,-0.2366,-0.2904,-0.1182,-0.0216,-0.0322,-0.0322,0.0322,0.0322,0.1398,0.172,0.1506,0.3656,0.3334,0.3118,0.4838,0.742,0.5698,0.6236,0.5806,0.9354,1,0.6344,0.6022,0.4302,0.344,'19'
-0.5354,-0.286,0.1736,0.4572,0.6382,0.9266,0.8092,0.5062,0.2762,0.242,0.3008,0.467,0.599,0.7506,1,0.907,0.4914,0.4816,0.4084,0.6088,0.8386,0.7702,0.7556,0.4866,0.3594,0.3448,0.3056,0.3546,0.5062,0.555,0.7262,0.7408,-0.479,-0.1812,0.2656,0.5038,0.6724,1,0.99,0.6426,0.454,0.325,0.3598,0.4988,0.588,0.8312,0.876,0.9354,0.598,0.5682,0.6178,0.7568,0.7966,0.8908,0.727,0.6476,0.3846,0.4442,0.3946,0.459,0.608,0.6972,0.8264,0.7966,-0.5146,-0.2314,0.2044,0.3618,0.6,0.7978,0.8562,0.6044,0.5102,0.4516,0.3618,0.5146,0.663,0.9596,0.9596,0.672,0.6224,0.6764,0.573,0.8158,0.928,0.9236,0.8922,0.4922,0.564,0.591,0.4292,0.582,0.6494,0.8338,0.8338,1,-0.524,-0.2818,0.1316,0.2568,0.5114,0.6534,0.7202,0.5282,0.4446,0.4238,0.3778,0.4572,0.6534,0.9666,1,0.5616,0.5198,0.6076,0.5032,0.6702,0.8372,0.8706,0.8872,0.5032,0.4948,0.5742,0.4446,0.5156,0.666,0.7578,0.7912,0.9958,-0.5488,-0.282,0.1166,0.3722,0.5112,0.703,0.703,0.4398,0.3796,0.3834,0.3722,0.5112,0.7218,0.9774,0.8872,0.5338,0.485,0.4736,0.5112,0.6354,0.8196,0.8984,0.8234,0.5564,0.436,0.4512,0.3684,0.4662,0.5338,0.6428,0.936,1,-0.5044,-0.1696,0.2348,0.6478,0.713,0.9,0.626,0.4304,0.4566,0.3956,0.4086,0.687,0.9566,0.9826,0.9782,0.674,0.526,0.4914,0.4304,0.5566,0.8348,0.8956,0.7696,0.4914,0.3348,0.3392,0.1782,0.2434,0.4086,0.3608,0.826,1,-0.331,0.1778,0.4982,0.791,0.9442,1,0.5888,0.2752,0.1916,0.0034,0.0662,0.331,0.791,0.9094,0.7004,0.129,-0.094,-0.129,-0.115,0.0732,0.317,0.6724,0.568,0.0034,0.0662,0.1986,-0.1498,-0.0872,0.0592,-0.115,0.2264,0.4426,-0.7022,-0.3192,0.0638,0.3618,0.7872,0.8724,0.7022,0.4468,0.3618,0.3618,0.3618,0.4894,0.7446,0.8298,0.8724,0.9148,0.617,0.617,0.6596,0.8724,1,0.9148,0.9148,0.6596,0.532,0.532,0.4894,0.4894,0.6596,0.7022,0.7446,0.8298,-0.6326,-0.1836,0.1428,0.4694,0.4694,0.9184,0.796,0.5102,0.2244,0.102,0.2244,0.347,0.5102,0.7552,1,0.7142,0.5102,0.3062,0.4286,0.5918,0.6734,0.6734,0.6326,0.3878,0.2244,0.102,0.2654,0.3062,0.4286,0.5102,0.6326,0.5918,-0.5358,-0.2858,0.1428,0.5358,0.6072,0.8392,0.7322,0.4286,0.3572,0.375,0.3392,0.5178,0.9108,0.8928,0.875,0.6428,0.4642,0.5,0.4822,0.6786,0.75,0.9286,0.8928,0.5178,0.4108,0.2678,0.2322,0.2858,0.4286,0.4822,0.8036,1,-1,-1,-1,-1,-1,-1,-1,-0.979,-0.9768,-0.857,-0.596,0.3078,0.4886,0.5666,0.5234,0.4372,0.4614,0.5528,0.8316,0.9452,0.5182,-0.0742,-0.6454,-0.9254,-0.9464,-0.9538,-0.9568,-0.961,-0.961,-0.979,-0.9684,-0.9716,-0.9726,-1,-1,-1,-1,-1,-1,-1,-0.9928,-0.9916,-0.9188,-0.6668,-0.0982,-0.0992,0.0878,0.3314,0.5768,0.7702,0.959,0.8936,0.375,-0.214,-0.7582,-0.8568,-0.7822,-0.667,-0.7422,-0.7628,-0.7428,-0.68,-0.733,-0.7402,-0.7668,-0.7964,-1,-1,-1,-1,-1,-1,-1,-0.88,-0.92,-0.6934,-0.5434,-0.56,-0.612,-0.564,-0.448,-0.368,-0.352,-0.228,-0.23,-0.3834,-0.5734,-0.7,0.0966,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-0.8572,0.5142,1,1,1,-0.9142,-0.5142,-0.2858,-0.5428,-0.9142,-0.8286,-0.7142,1,1,1,1,1,-0.6858,-0.8286,-0.9714,-0.9714,-0.9142,-0.9714,-0.9142,-0.9714,-0.9428,1,1,1,1,1,1,1,1,1,1,-0.8814,-0.9382,-0.9232,-0.895,-0.8768,-0.866,-0.828,-0.832,-0.8194,-0.8522,-0.5734,-0.4236,-0.6004,-0.1222,-0.1262,-0.1084,-0.074,1,-0.1578,0.1052,0.6316,0.7368,0.579,0.6316,0.8422,1,1,1,1,0.9474,0.8948,0.7894,0.8422,0.8948,0.8948,0.8422,0.7368,0.579,0.421,0.3684,0.1578,-0.1052,0.3158,0.2632,0.2632,0,-0.2106,-0.1052,-0.2632,-0.579,-0.109,0.3454,0.4182,0.5636,0.4182,0.3636,0.7818,0.9272,0.709,0.6728,1,0.9636,0.5454,0.5272,0.5818,0.7818,0.8364,0.6728,0.491,0.4182,0.309,0.0364,-0.109,-0.2182,-0.291,-0.491,-0.3272,-0.3272,-0.2364,0,0.0182,-0.6364,-0.0896,0.403,0.791,0.806,0.4926,0.5374,0.9104,1,0.7164,0.7014,0.9552,0.9552,0.5672,0.5224,0.6716,0.8358,0.8508,0.7014,0.3134,0.1792,0.0598,-0.0448,-0.3134,-0.3432,-0.3432,-0.2836,-0.3134,-0.388,-0.1792,-0.1492,0.1642,-0.4328,0.04,-1,-1,1,-0.8,-1,-1,-0.8334,-1,-0.67,-0.45,-0.3,-0.2,-0.25,-0.27,-0.25,-0.17,0,0.06,0.08,0.23,0.22,0.23,0.22,0.22,0.19,0.18,0.44,0.55,0.64,0.3,0.51,0.59,0.55,0.87,0.94,0.95,1,0.85,0.77,0.6,'19'
-0.045,0.7042,0.6516,0.7004,0.573,-0.045,-0.1686,-0.2098,-0.2022,-0.3184,-0.3108,-0.2022,-0.146,-0.0188,-0.06,0.0188,0.1836,0.7228,0.9026,0.734,0.869,0.6442,1,0.985,0.9738,0.6966,0.6368,0.5318,0.648,0.7116,0.809,0.9776,-0.4976,0.0122,-0.0294,0.2378,0.1618,-0.1226,-0.2304,-0.2648,-0.3898,-0.277,-0.2844,-0.196,-0.2746,-0.2254,-0.0932,0.0466,0.201,0.4878,0.696,0.7598,0.701,0.6372,0.7622,0.8014,0.755,0.63,0.6004,0.5318,0.7476,0.8848,0.8946,1,-0.4412,-0.0746,0.0948,0.2086,-0.11,-0.1934,-0.464,-0.4614,-0.3604,-0.4842,-0.426,-0.4084,-0.3958,-0.34,-0.1934,-0.1428,-0.0544,0.201,0.469,0.7042,0.6688,0.6208,0.8104,0.828,0.7194,0.5702,0.646,0.5322,0.7826,0.904,0.8988,1,-0.406,-0.1354,0.3158,0.297,-0.1788,-0.4588,-0.6236,-0.4588,-0.5024,-0.5864,-0.6796,-0.6206,-0.6018,-0.5242,-0.3934,-0.4402,-0.2722,-0.0264,0.3872,0.7262,0.8632,0.8196,0.86,0.8942,0.8476,0.6858,0.6174,0.5956,0.7542,0.888,0.9066,1,-0.452,0.2292,0.4984,0.2694,0.0216,-0.5264,-0.7182,-0.486,-0.5016,-0.6006,-0.6656,-0.6842,-0.5542,-0.4706,-0.4086,-0.4954,-0.3004,0.1424,0.3932,0.777,0.9722,0.9072,0.9938,1,0.87,0.5634,0.5604,0.483,0.6532,0.8174,0.8854,0.9474,-0.5896,0.44,0.5826,0.0852,-0.4086,-0.767,-0.7566,-0.767,-0.854,-0.7322,-0.6174,-0.7704,-0.746,-0.5478,-0.3356,-0.3322,-0.2382,0.0504,0.454,0.774,1,0.9408,0.9548,0.8608,0.607,0.454,0.4956,0.3948,0.6104,0.826,0.8296,0.8608,-0.3512,0.1804,0.2976,-0.0536,-0.7804,-0.8048,-0.8196,-0.717,-0.761,-0.7318,-0.5366,-0.5804,-0.4878,-0.5318,-0.2342,-0.278,-0.3902,0.039,0.5122,0.756,0.878,0.8146,0.9952,1,0.478,0.3414,0.3366,-0.0878,0.3854,0.4586,0.4536,0.5902,-0.3142,0.3142,0.1428,0.2,-0.0286,-0.3714,-0.6,-0.7714,-0.4858,-0.6,-0.2,-0.3142,-0.4286,-0.3142,-0.3714,0.1428,0.2572,0.7142,0.8858,0.7142,0.4858,0.4858,0.8286,1,0.3714,0.1428,0.5428,0.3714,0.1428,0.4286,0.4286,0.8286,0.2,0.85,0.8,0.75,0.6,-0.2,-0.1,-0.1,-0.3,-0.55,-0.8,-0.45,-0.05,-0.1,-0.2,-0.45,-0.1,0.45,0.7,0.95,0.9,0.5,0.85,1,1,0.7,0.8,0.35,0.5,0.6,0.65,0.75,-0.287,0.026,0.2522,0.3044,-0.0956,-0.2,-0.426,-0.3044,-0.287,-0.374,-0.5826,-0.4782,-0.2348,-0.287,-0.1304,-0.1304,-0.1304,0.1826,0.4434,0.6696,0.6174,0.7218,0.774,0.774,0.7044,0.6522,0.6522,0.6174,0.7392,1,0.9652,0.9652,-1,-1,-1,-1,-0.9646,-0.9628,-0.945,-0.8194,-0.8254,-0.8744,-0.7566,0.5408,0.682,0.2424,0.213,0.16,0.1364,0.1462,0.2698,0.1972,-0.2444,-0.6918,-0.6998,-0.8568,-0.9214,-0.9274,-0.9608,-0.945,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9784,-0.9792,-0.8114,-0.479,-0.4808,-0.7072,-0.7662,-0.4946,0.4252,0.9364,0.7718,0.2822,-0.095,-0.1956,-0.257,-0.357,-0.685,-0.8962,-0.9026,-0.944,-0.9548,-0.9526,-0.9432,-0.9526,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.98,-0.5834,0.94,0.9366,0.61,0.1732,-0.6556,-0.0356,0.2644,0.2976,0.22,-0.049,-0.2778,-0.5534,-0.7978,-0.7624,-0.8424,-0.7,-0.7068,-0.7268,-0.7668,-0.4934,-0.74,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5142,1,1,1,0.0286,0.6572,0.6286,1,1,-0.4286,-0.7142,-0.3714,-0.7714,-0.8858,-0.9428,-0.4858,0.4,0.1714,-0.8572,-0.8858,-0.9142,-0.9142,-1,-0.3714,-1,-1,-1,-1,-1,-0.1202,-0.0432,-0.0022,0.0586,0.1194,0.191,0.272,0.3282,0.2434,-0.071,0.63,0.6162,0.6282,0.6536,0.6672,0.6654,0.6972,0.7534,0.8452,0.7906,-0.5466,0.047,-0.7736,-0.6942,-0.5372,-0.3868,-0.1514,1,-0.8984,-0.4416,-0.406,-0.1522,-0.203,-0.1928,-0.1676,-0.0152,-0.0204,0.0862,0.1066,0.3908,0.406,0.3654,0.4162,0.4468,0.8832,0.863,0.8832,0.995,1,0.8172,0.9492,0.731,0.599,0.6396,0.7208,0.7412,0.665,0.5736,0.533,0.3046,-0.9424,-0.4856,-0.4664,-0.2692,-0.274,-0.3414,-0.1058,0.0866,0.2212,0.2308,0.2836,0.2692,0.3606,0.1298,0.149,0.375,0.6972,0.6346,0.5576,0.75,1,0.8076,0.8654,0.5914,0.6154,0.6924,0.7356,0.6634,0.5432,0.6826,0.226,0.0674,-0.4096,-0.1366,-0.2114,-0.0484,-0.0176,0.066,0.1454,0.1586,0.6652,0.718,0.6124,0.8722,0.815,0.6476,0.6476,0.74,1,0.6344,0.6696,0.9692,0.7488,0.6608,0.6564,0.6432,0.5286,0.5506,0.5066,0.4406,0.4186,0.2952,0.2556,-0.1014,-0.3486,-1,-1,1,-1,-1,-1,-0.0666,1,-0.3162,-0.3504,0.1112,0.1966,0.1452,0.2992,0.5556,0.9316,0.7948,0.641,1,1,0.4018,0.4018,0.7778,0.5898,0.282,0.2992,0.7606,0.7606,0.5214,0.1966,0.4018,0.4358,-0.0428,-0.4358,0.0086,0.1624,-0.1966,-0.1624,0.0598,-0.1112,'20'
-0.0238,0.6518,0.6006,0.9078,0.7952,-0.0034,-0.0478,0.0034,-0.1604,-0.1502,-0.372,-0.4164,-0.2902,-0.1058,-0.0478,0.1092,0.2458,0.6416,0.9624,1,0.8566,0.6928,0.8498,0.8806,0.703,0.6484,0.5802,0.2696,0.6246,0.6484,0.6792,0.7202,-0.3954,0.1174,0.176,0.5154,0.421,0.051,-0.0892,-0.1352,-0.3138,-0.199,-0.2066,-0.0918,-0.0562,0.0382,0.0408,0.1096,0.324,0.3776,0.8826,0.9414,0.7832,0.778,0.8164,0.8036,0.7908,0.7576,0.7654,0.6862,0.9948,0.921,1,0.9158,-0.3858,0.0816,0.1304,0.3316,0.1494,-0.1142,-0.3804,-0.3342,-0.4048,-0.4294,-0.1902,-0.2854,-0.2282,-0.269,-0.1712,-0.0218,0.0624,0.288,0.5734,0.8424,0.9158,0.7066,0.7608,0.8452,0.8722,0.8914,0.8532,0.7392,0.9184,1,0.9702,0.981,-0.4192,-0.0652,0.255,0.3372,-0.0454,-0.1076,-0.51,-0.541,-0.4958,-0.374,-0.442,-0.5184,-0.408,-0.3712,-0.3116,-0.2012,-0.0454,0.1474,0.541,0.8272,0.9632,0.8414,0.7932,0.8754,0.8896,0.9802,0.881,0.7224,0.9462,1,0.9716,0.9236,-0.4772,-0.1286,0.3686,0.3142,0.0514,-0.3742,-0.62,-0.6142,-0.6858,-0.6286,-0.6058,-0.7142,-0.5428,-0.3542,-0.3828,-0.3914,-0.1372,0.1142,0.4372,0.8658,0.9942,0.8972,0.9,0.9314,0.94,0.8658,0.8028,0.6572,0.88,0.9486,1,0.8828,-0.5264,0.2878,0.6106,0.372,-0.1474,-0.6246,-0.772,-0.814,-0.779,-0.793,-0.8702,-0.814,-0.786,-0.7228,-0.628,-0.4632,-0.3088,-0.0842,0.2736,0.8878,1,0.6842,0.5684,0.7018,0.5964,0.5438,0.4106,0.1088,0.4246,0.6,0.5438,0.565,0.1342,0.6494,0.9014,0.5342,-0.0302,-0.863,-0.7042,-0.6602,-0.6328,-0.5014,-0.4466,-0.6274,-0.5616,-0.611,-0.3754,-0.315,-0.2328,-0.0356,0.5124,0.9288,1,0.7864,0.737,0.7972,0.7096,0.178,0.1562,-0.063,0.2876,0.441,0.315,0.1836,-0.1364,0.409,0.3182,0.4546,0.2728,-0.3182,-0.0454,-0.1364,-0.3182,-0.5,-0.409,-0.8182,-0.409,-0.409,-0.591,-0.1818,0.2728,0.6364,0.9546,1,0.7728,0.1364,0.5,0.5,0.2728,0.1818,0.1818,0,0.409,0.5,0.2272,0.6364,0.2272,0.8636,0.8182,0.8182,0.7272,0.1364,0.1818,0.3182,0.2272,0.1364,-0.3636,-0.3182,0.1818,0.2728,0.1818,0.2272,0.2728,0.7728,0.8636,0.6364,1,0.8636,0.7728,0.5454,0.6818,0.6364,0.8182,0.3182,0.409,0.6364,0.409,-0.0454,-0.4782,0.1956,0.4782,0.326,0.1304,-0.4566,-0.5218,-0.5434,-0.587,-0.6086,-0.7608,-0.6956,-0.3914,-0.3914,-0.5218,-0.2174,-0.1956,0.0652,0.4348,0.8914,1,0.913,0.7826,0.913,0.7392,0.674,0.674,0.4566,0.6956,0.8696,0.8914,0.8044,-1,-1,-1,-1,-1,-0.977,-0.962,-0.8996,-0.924,-0.8738,-0.7028,0.54,0.783,0.323,0.1262,0.0732,0.0068,-0.129,-0.1574,-0.0706,-0.2022,-0.6282,-0.8006,-0.8684,-0.9254,-0.9512,-0.9702,-0.9552,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9812,-0.9766,-0.2766,-0.3062,-0.6826,-0.6404,-0.2824,0.3834,0.8366,0.8338,0.6902,0.697,0.3674,-0.066,-0.3876,-0.6538,-0.8384,-0.8926,-0.9146,-0.908,-0.9218,-0.9322,-0.9412,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.96,0.4466,0.8766,0.4366,0.09,-0.7334,-0.4534,-0.0224,0.0954,0.1154,0.1022,0.0266,-0.0846,-0.6424,-0.948,-0.73,-0.6534,-0.56,-0.5068,-0.3068,-0.3368,-0.4068,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,0.3142,0.1714,0.1714,0.5714,-0.6858,-0.8572,-0.8286,-1,-0.8858,-0.6572,1,1,-0.8,-0.5714,-0.5714,-0.8,-0.8858,-0.7142,-0.8,-1,-1,-1,-1,-1,0.1832,0.2074,0.231,0.2738,0.3158,0.3726,0.4138,0.4362,0.377,0.042,0.4326,0.4466,0.4358,0.4454,0.4952,0.5322,0.5464,0.6634,0.7718,0.7442,-0.6134,0.0706,-0.6462,-0.4934,-0.3938,-0.1312,0.0324,1,-0.9436,-0.6924,-0.5744,-0.4206,-0.3948,-0.2154,-0.0872,0.1334,0.3898,0.1898,0.0924,0.2102,0.2924,0.277,0.3076,0.482,0.6564,0.641,0.759,0.5948,0.5282,0.5076,0.7026,1,0.918,0.8308,0.9538,0.8718,0.6872,0.677,0.5128,0.1538,-0.8462,-0.51,-0.2992,-0.379,-0.2136,-0.1566,0.2022,0.339,0.584,0.584,0.4928,0.9032,0.698,0.5556,0.4758,0.6012,0.8974,0.6582,0.5556,0.869,0.6638,0.7322,0.8576,0.9944,1,0.9088,0.8918,0.829,0.6638,0.6582,0.681,0.4074,-0.2,-0.0872,0.0718,0.077,-0.1128,-0.0358,0.0308,0.1846,0.518,0.8872,0.9026,0.8462,0.9488,0.6308,0.5026,0.723,0.6666,0.518,0.5334,0.4924,0.3334,0.6872,0.6102,0.6256,0.841,1,0.6154,0.5642,0.5794,0.6462,0.4666,0.1384,-0.0776,-1,-1,1,-0.8,-1,-1,-0.2,-1,-0.4958,-0.2606,-0.0756,0.1092,0.1596,0.311,0.4286,0.7142,0.7142,0.5966,0.7816,0.8488,0.6134,0.5462,1,0.563,0.0588,0.2436,0.2436,0.3782,0.1932,0.21,0.0252,-0.21,-0.2606,-0.5126,0.042,0.0588,-0.1428,-0.042,0.2436,-0.1932,'20'
-0.1744,0.2332,0.4784,0.4508,-0.285,-0.589,-0.6408,-0.6926,-0.8238,-1,-0.7236,-0.5786,-0.6442,-0.5786,-0.2884,-0.0604,0.354,0.5026,0.4162,0.1952,0.133,0.164,0.468,0.5026,0.7098,0.8688,0.8032,0.8652,1,0.9862,0.8134,0.6132,-0.3016,0.1106,0.3248,0.4482,0.113,-0.113,-0.2434,-0.2852,-0.1338,-0.3294,-0.269,-0.1338,-0.1502,0.1246,0.2434,0.518,0.8882,0.9068,0.7626,0.7486,0.837,0.8742,0.7672,0.6764,0.574,0.7626,0.802,0.9208,1,0.9418,0.7508,0.844,-0.3326,0.0636,0.4252,0.563,0.3046,-0.0096,-0.1432,-0.1604,0.029,-0.128,0.0032,0.1496,0.3304,0.619,0.5566,0.634,0.5414,0.5738,0.873,0.9246,0.7158,0.522,0.3928,0.3326,0.3132,0.4446,0.5694,0.83,1,0.8666,0.5996,0.7072,-0.3412,0.1588,0.95,1,0.153,-0.0264,-0.0588,0.347,0.2588,0.2088,0.5206,0.4824,0.247,0.1942,-0.0706,-0.0206,0.0206,0.3558,0.5352,0.7118,0.5676,0.0824,0.0118,-0.0264,-0.2058,0,0.0882,0.4442,0.9088,0.8882,0.5764,0.5176,-0.374,0.5542,1,0.832,-0.084,0.0106,0.1084,0.1358,-0.0504,-0.3496,-0.4534,-0.545,-0.5726,-0.597,-0.5816,-0.5878,-0.6488,-0.487,-0.2886,0.1114,0.0534,-0.4138,-0.5512,-0.713,-0.6978,-0.6886,-0.6366,-0.4748,-0.09,0.1938,0.2062,-0.2152,-0.308,0.7826,1,0.5544,0.087,0.221,0.5182,0.5724,-0.2862,-0.4456,-0.8478,-0.9818,-0.855,-0.6956,-0.645,-0.6414,-0.7246,-0.7682,-0.8298,-0.4384,-0.3298,-0.616,-0.6884,-0.913,-0.7318,-0.779,-0.8116,-0.884,-0.7392,-0.3044,-0.3008,-0.5472,-0.0092,0.6284,0.8716,1,0.6146,0.2752,0.5276,0.6926,0.2294,-0.3532,-0.8302,-0.4908,-0.5734,-0.7432,-0.711,-0.61,-0.5138,-0.5366,-0.6422,-0.4312,-0.2982,-0.3394,-0.2982,-0.477,-0.4816,-0.4634,-0.7706,-0.6744,-0.5458,-0.0412,-0.1744,-0.5872,0.027,0.4054,0.7298,0.6216,0.1892,-0.1352,-0.3514,-0.2972,-0.3514,-0.8378,-0.2432,-0.1892,-0.4594,-0.1892,-0.1892,-0.8378,0.2972,0.2972,0.027,0.1352,0.081,-0.1352,0.2432,0.4054,0.7298,0.5676,0.8918,0.946,1,1,0.7838,0.8378,0,0.25,0.55,0.45,-0.15,-0.45,-0.6,-0.6,-0.65,-0.65,-0.9,-0.75,-0.45,-0.1,0.05,0.1,0.4,0.5,0.4,0.35,0.1,0.05,0.35,0.45,0.5,0.95,1,0.85,0.85,0.9,0.9,0.5,-0.3118,0.0538,0.742,0.8494,0.2688,0.0752,-0.1182,0.2688,0.3118,0.2258,0.4194,0.656,0.5914,0.613,0.1612,0.0968,0.2688,0.613,0.6344,0.785,0.7204,0.3548,0.2688,0.3334,0.1398,0.1612,0.2904,0.871,1,0.8064,0.5914,0.6344,-1,-1,-1,-1,-1,-1,-1,-1,-0.9754,-0.972,-0.8052,-0.6242,-0.3838,-0.1506,0.1272,0.433,0.6372,0.9324,0.4562,-0.1692,-0.4702,-0.6324,-0.7794,-0.8414,-0.9124,-0.9638,-0.9662,-0.9684,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9736,-0.972,-0.8906,-0.7524,-0.3308,0.5544,0.8338,0.3264,0.0938,0.0262,-0.3116,-0.599,-0.719,-0.7984,-0.878,-0.8916,-0.9338,-0.9334,-0.9396,-0.9442,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8234,-0.8834,-0.7768,-0.56,-0.322,-0.0946,-0.142,-0.4164,-0.7746,-0.8364,-0.862,-0.8838,-0.942,-0.9182,-0.9668,-0.7334,-0.7368,-0.4968,-0.4434,-0.3968,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6858,-0.6286,1,1,0.8286,0.2572,-0.7714,0,0.2,-0.1142,-0.1714,-0.5714,-0.9428,-0.5428,-0.5428,-0.9142,-0.7714,-0.8858,-0.8,-0.7428,-1,-1,-1,-1,-1,-0.664,-0.6514,-0.6184,-0.5618,-0.5006,-0.3934,-0.2276,-0.0516,0.1244,0.3286,0.6716,0.6572,0.6646,0.6796,0.6954,0.6796,0.607,0.4888,0.124,-0.096,-0.6,0.2824,-0.8578,-0.8342,-0.798,-0.7034,-0.6764,-0.6,0.1258,0.1524,0.51,0.8278,0.6026,0.5364,0.7218,0.6424,0.8676,0.788,0.7218,1,0.7484,0.4966,0.9338,1,0.51,0.3112,0.404,0.563,0.5762,0.2582,0.3112,0.7218,0.5894,0.563,0.1126,0.4702,0.3642,0.6688,-0.0596,-0.192,0.096,0.328,0.272,0.288,0.592,0.448,0.8,0.752,0.8,0.608,0.568,0.648,0.672,0.576,0.944,1,0.84,0.888,0.968,0.8,0.32,0.48,0.536,0.584,0.304,0.456,0.56,0.584,0.512,0.376,-0.024,-0.456,0.2526,0.4422,0.1264,0.0736,-0.021,-0.0106,0.2316,0.2,0.4736,0.3894,0.3894,0.8422,0.7474,0.8526,0.9474,0.9474,1,0.7578,0.6632,0.1474,0.0948,0.1578,0.0526,-0.0106,0.0106,0.1052,0.0632,0.1894,0.2632,0.1474,-0.1264,-0.7052,-0.9824,1,-1,-1,-1,-1,-0.2,-1,1,-0.4824,-0.3176,0.1764,0.3648,0.247,0.9294,1,0.647,0.6,0.4588,0.247,0.6,-0.0352,0.1058,0.6236,0.1764,0.247,0.2706,0.9294,0.953,1,0.4588,0.9764,0.4118,0.553,0.3412,0.3412,0.3882,0.8588,1,0.553,0.2942,'21'
-0.0558,0.409,0.4498,0.435,-0.2788,-0.6914,-0.9554,-0.7286,-0.7434,-0.829,-0.8624,-0.7546,-0.6468,-0.6878,-0.5986,-0.3346,0.1302,0.42,0.4982,0.2342,0.1264,0.1376,0.4796,0.7918,0.736,0.6022,0.6618,0.6878,0.9516,1,0.9666,0.777,-0.266,0.2188,0.1522,0.2994,0.1442,-0.1462,-0.3228,-0.2286,-0.264,-0.2248,-0.2914,-0.2876,-0.1148,-0.048,0.2032,0.4072,0.8038,0.839,0.68,0.5642,0.7742,0.8038,0.7606,0.7194,0.584,0.635,0.7626,0.89,1,0.998,0.794,0.8508,-0.361,0.185,0.1928,0.5548,0.46,0.1216,-0.0208,0.0306,-0.0782,0.0642,0.0662,0.179,0.2384,0.4026,0.8358,0.8892,0.8496,0.901,0.9446,0.9446,0.8398,0.822,0.5846,0.5252,0.3512,0.4342,0.6834,0.7428,0.9486,1,0.7032,0.8022,-0.3654,0.0862,0.699,0.832,0.4526,0.2214,-0.0316,0.0098,0.156,0.1908,0.4722,0.603,0.5704,0.555,0.5246,0.3238,0.313,0.542,0.7644,0.867,0.71,0.3174,0.23,0.2082,0.1472,0.2476,0.4112,0.566,0.9018,1,0.8124,0.6008,-0.423,0.529,1,0.8618,0.2946,-0.085,0.4156,0.7114,0.7016,0.1812,-0.0012,-0.1146,-0.3046,-0.4944,-0.4204,-0.3736,-0.3612,-0.164,0.2602,0.3736,0.275,-0.201,-0.3662,-0.4032,-0.423,-0.4648,-0.2726,-0.2774,0.307,0.593,0.5462,0.132,-0.4252,0.7688,1,0.5318,0.2,0.6978,0.68,0.3512,-0.2,-0.597,-0.4756,-0.526,-0.5822,-0.683,-0.7126,-0.8312,-0.8222,-0.6504,-0.6,-0.274,-0.2,-0.526,-0.6534,-0.7334,-0.8252,-0.9082,-0.7214,-0.7926,-0.4074,0.0608,0.197,-0.2118,-0.0816,0.7042,0.8764,1,0.6644,0.0906,0.2804,0.638,0.5056,0.139,-0.3334,-0.7306,-0.638,-0.6778,-0.6644,-0.6512,-0.8544,-0.7218,-0.6026,-0.17,0.1434,-0.223,-0.276,-0.5188,-0.6732,-0.7748,-0.6822,-0.5144,-0.2362,-0.0596,-0.3024,-0.6866,0.0434,0.4348,0.4782,0.3478,0.0434,-0.174,-0.4348,-0.2608,-0.3044,-0.174,-0.174,-0.2174,-0.3044,-0.5652,-0.3044,-0.3914,0.087,0.0434,0.174,0.174,0.0434,0.0434,0.174,0.5218,0.5218,0.0434,0.5652,0.5218,0.6522,1,0.913,0.6522,0.1666,0.3888,0.4444,0.3888,-0.2778,-0.7778,-0.7222,-0.6666,-0.5,-0.3334,-0.4444,-0.5,-0.0556,-0.2778,-0.6666,-0.1666,-0.2222,0.0556,0.3888,0.3888,0.2222,-0.2222,0.6112,0.7222,0.6666,0.3888,0.6112,0.6666,0.5,0.5556,0.9444,1,-0.2916,0.5208,1,0.9166,0.3124,-0.1458,0.3958,0.5624,0.75,0.4376,0.1666,-0.0624,-0.3958,-0.2916,-0.2708,-0.2084,-0.25,0.125,0.5834,0.8124,0.6666,-0.1876,-0.1876,-0.1458,-0.2084,-0.2708,0.125,0.125,0.625,0.8958,0.7708,0.3124,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.891,-0.8026,-0.7162,-0.485,-0.235,-0.0592,0.0762,0.421,0.8516,0.4596,-0.1044,-0.3486,-0.641,-0.8694,-0.9266,-0.9568,-0.9642,-0.9708,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9464,-0.9204,-0.8772,-0.578,0.3556,0.5938,0.0154,-0.1616,-0.097,-0.397,-0.6674,-0.7494,-0.8612,-0.923,-0.9494,-0.956,-0.9514,-0.969,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8268,-0.92,-0.8068,-0.4468,-0.025,-0.05,-0.3534,-0.615,-0.8118,-0.96,-0.9616,-0.9678,-0.9154,-0.79,-0.6468,-0.4868,-0.4268,-0.4234,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-0.4572,0.4858,1,0.7428,-0.4858,-0.3428,-0.6,1,0.9714,-0.6,-0.7142,-0.5142,-0.6858,-0.8286,-0.7714,-0.9428,-0.6858,-1,-1,-1,-1,-1,-1,-0.6998,-0.713,-0.6946,-0.6616,-0.5972,-0.4596,-0.2846,-0.0742,0.1796,0.396,0.662,0.677,0.691,0.7006,0.7086,0.68,0.6316,0.5236,0.1288,-0.093,-0.68,0.4824,-0.9118,-0.9052,-0.8952,-0.88,-0.8556,-1,0.5946,0.5676,0.3244,-0.054,-0.027,-0.054,0.1892,0.2432,0.5676,0.6756,0.3784,0.7028,0.6216,0.5406,0.7568,1,1,0.7028,0.1892,-0.081,-0.3244,0.054,-0.1622,-0.1622,0.1622,-0.027,0.1892,0.2432,-0.1082,0.1352,0.054,-0.2972,0.5048,0.9238,0.0858,-0.4476,0.1048,0.181,-0.0476,0.181,0.581,0.562,0.581,0.6572,0.7334,0.619,0.619,1,0.9048,0.7142,0.3334,-0.1238,0.0096,-0.0476,-0.162,-0.1238,0.1048,0.0666,0.0858,0.0666,-0.0858,0.3714,0.219,-0.238,0.552,0.6,0.168,-0.168,-0.152,-0.024,-0.088,-0.12,0.456,0.344,0.52,0.552,0.776,0.664,1,1,0.728,0.616,0.152,-0.12,0.024,-0.008,-0.296,-0.232,-0.008,-0.024,0.008,-0.104,-0.008,0.264,0.04,-0.52,-0.9502,-1,-1,1,-0.6,-1,-1,-0.7334,-1,-0.4432,-0.2164,0.0722,0.6288,0.732,0.7938,0.8762,0.4846,0.4432,0.3814,0.5876,0.4432,0.5876,0.4846,0.6082,0.5052,0.3402,0.5876,0.8556,0.464,1,0.9176,0.9588,0.2164,-0.0722,-0.1134,-0.031,-0.0928,0.0516,-0.0928,-0.5464,-0.5464,'21'
-0.3382,0.1202,0.1346,0.3216,0.1306,-0.1264,-0.3072,-0.223,-0.2786,-0.256,-0.2066,-0.225,-0.0154,-0.04,0.112,0.3648,0.5088,0.7492,0.854,0.7102,0.6938,0.813,0.7986,0.6362,0.6054,0.4512,0.478,0.6424,0.8314,1,0.8644,0.7492,-0.3834,0.048,0.0028,0.1968,0.0806,-0.2366,-0.3056,-0.2004,-0.291,-0.2312,-0.3056,-0.2856,-0.1496,-0.166,-0.0916,-0.0934,0.2076,0.418,0.6428,0.63,0.679,0.5358,0.6464,0.7426,0.826,0.7098,0.748,0.5702,0.6138,0.9964,0.9674,1,-0.4288,-0.022,0.0542,0.1984,-0.046,-0.2024,-0.3166,-0.3426,-0.3808,-0.453,-0.3266,-0.455,-0.3968,-0.2124,-0.2144,-0.0962,0,0.1924,0.5712,0.8678,0.8898,0.6614,0.5992,0.7194,0.7494,0.8036,0.8036,0.7536,0.8718,0.98,1,0.982,-0.4954,-0.1886,0.1968,0.219,-0.1262,-0.2754,-0.4026,-0.5318,-0.5278,-0.4894,-0.5298,-0.5702,-0.439,-0.3784,-0.328,-0.3098,-0.1726,0.009,0.3704,0.6932,0.7598,0.6528,0.564,0.6508,0.6992,0.7114,0.8042,0.7256,0.776,0.994,0.9596,1,-0.5784,-0.0116,0.371,0.2466,0.0184,-0.5414,-0.742,-0.7188,-0.6728,-0.6314,-0.7236,-0.7374,-0.6406,-0.4678,-0.4976,-0.4908,-0.2672,-0.076,0.1866,0.652,0.8364,0.7972,0.5876,0.7534,0.7626,0.7834,0.7696,0.6706,0.7718,0.9678,0.9586,1,-0.4422,0.4364,0.6878,0.341,-0.2514,-0.789,-0.7168,-0.7398,-0.7688,-0.8988,-0.8758,-0.7976,-0.656,-0.6388,-0.6474,-0.4364,-0.3786,-0.3902,0.078,0.6908,1,0.9046,0.529,0.7572,0.7862,0.5404,0.4076,0.0752,0.4768,0.8064,0.763,0.7312,0.064,0.4168,0.33,0.2276,-0.1764,-0.8108,-0.734,-0.5346,-0.5294,-0.729,-0.6112,-0.468,-0.248,-0.0946,0.0998,0.0026,-0.018,0.1764,0.729,0.9948,1,0.642,0.9182,0.9488,0.7544,0.1406,0.2174,-0.0282,0.6726,0.9182,0.734,0.3606,-0.3334,0.1666,0.2778,0.3888,-0.0556,-0.6112,-0.4444,-0.2222,-0.1666,-0.1666,-0.2778,-0.0556,0.3334,0.5556,0.4444,0.2778,0.4444,0.8334,0.7778,0.9444,0.7778,1,0.9444,0.8334,0.7778,0.5556,0.4444,0.8334,0.7778,1,0.8334,0.4444,-0.4348,0.087,0.1304,0.3478,0.1304,-0.2174,-0.4782,-0.5218,-0.3478,-0.3914,-0.2174,-0.3478,-0.174,0.0434,0.0434,0.6956,0.7826,0.7826,0.6956,0.8696,0.6956,0.9566,0.7392,0.5218,0.3044,0.3914,0.6086,0.5652,0.7392,0.8696,1,0.7392,-0.4022,0.4252,0.6552,0.3334,-0.0114,-0.4482,-0.7012,-0.6552,-0.6092,-0.6322,-0.7242,-0.5172,-0.4482,-0.6092,-0.5862,-0.2644,-0.1264,-0.2874,0.1034,0.7472,0.931,1,0.5172,0.954,0.862,0.6782,0.7242,0.3794,0.6782,0.908,0.954,0.908,-1,-1,-0.8504,-0.826,-0.8956,-0.906,-0.9286,-0.927,-0.8974,-0.7234,-0.48,0.6818,0.7096,0.4922,0.2122,0.1392,0.0956,0.1774,0.0574,0.0574,-0.4956,-0.7634,-0.894,-0.967,-0.9496,-0.9478,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9526,-0.9506,-0.9502,-0.9224,-0.867,-0.9028,-0.9172,-0.8842,-0.8228,0.2464,0.86,0.9208,0.6636,0.5218,0.4092,0.1152,-0.3002,-0.6488,-0.861,-0.9288,-0.959,-0.9722,-0.9698,-0.966,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8788,-0.922,-0.482,0.0346,0.3546,0.3046,0.2912,0.058,-0.632,-0.0894,0.1052,0.2416,0.2236,0.3382,0.2382,0.0582,-0.26,-0.8684,-0.85,-0.81,-0.8334,-0.8534,-0.74,-0.6534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,0.2,0.7142,0.9142,0,-0.4,-0.7428,-0.6572,1,1,-0.5714,-0.7714,-0.8572,-1,-1,-0.9142,-0.3428,0,0.0286,-0.5714,-0.5142,-0.8572,-0.9142,-0.1142,-1,-1,-1,-1,-1,-1,-1,0.2754,0.301,0.323,0.3364,0.3474,0.36,0.377,0.3834,0.3818,0.0466,0.2504,0.283,0.311,0.3598,0.4046,0.4798,0.5776,0.6356,0.75,0.722,-0.56,0.3882,-0.818,-0.634,0.0948,0.559,0.624,0.1334,-0.1,-0.21,-0.375,-0.26,-0.035,0.02,0.68,0.72,0.67,0.71,0.855,0.68,0.885,0.75,0.855,0.915,0.765,0.755,0.78,1,0.885,0.955,0.695,0.92,0.825,0.735,0.93,0.895,0.775,0.53,0.485,-0.425,-0.4242,-0.4396,-0.5252,-0.2568,-0.249,-0.1518,0.1828,0.2958,0.3814,0.6108,0.6848,0.6888,0.5408,0.5098,0.6498,0.6498,0.7004,0.5836,0.716,0.712,0.716,0.751,0.6848,0.7004,0.7276,0.747,0.961,1,0.9416,0.712,0.607,0.1168,0.3734,0.5046,-0.3152,-0.2204,-0.2422,-0.0602,0.2786,0.4754,0.3588,0.5374,0.6758,0.734,0.785,0.7486,0.7304,0.8214,0.847,0.7304,0.8032,0.8252,0.96,0.8398,0.8324,0.8252,0.8798,0.9526,1,0.9562,0.8398,0.8214,0.6722,0.224,-0.974,-1,1,-1,0.2,-0.6,-1,0.4334,-1,-0.3142,0.1048,0.0858,0.1238,-0.0286,0.4096,0.2572,0.8096,0.4286,0.4666,0.962,1,0.6,0.2762,0.2952,0.219,0.2952,0.3142,0.2762,0.7524,0.8286,0.4858,0.4858,0.4096,0.2,-0.181,0.3142,0.3142,0.0858,0.0476,0.1048,-0.181,'22'
-0.2226,0.2454,0.3674,0.5234,0.2852,-0.0298,-0.234,-0.1774,-0.1944,-0.2312,-0.0866,-0.1602,-0.1518,0.2312,0.3674,0.6482,0.7192,1,0.9914,0.912,0.8866,0.8724,0.8242,0.566,0.461,0.4978,0.5064,0.671,0.895,0.946,0.932,0.9518,-0.3576,0.0738,0.0624,0.285,0.1418,-0.1056,-0.285,-0.21,-0.3734,-0.353,-0.2418,-0.2622,-0.235,-0.2872,-0.0262,0.0784,0.2304,0.6118,0.7298,0.6618,0.7186,0.7956,0.8138,0.866,0.8434,0.6458,0.5686,0.6708,0.764,0.916,0.891,1,-0.353,0.0462,0.0274,0.2184,0.0882,-0.1366,-0.2962,-0.2248,-0.3676,-0.353,-0.2164,-0.2394,-0.1848,-0.2436,-0.042,-0.0462,0.0988,0.3466,0.4474,0.71,0.7774,0.5484,0.5504,0.7542,0.729,0.6912,0.6218,0.689,0.6806,0.8172,0.9012,1,-0.409,-0.0172,0.0652,0.2074,-0.0172,-0.2256,-0.2944,-0.3196,-0.4364,-0.4822,-0.3218,-0.4524,-0.37,-0.1912,-0.1822,-0.1822,-0.079,0.1088,0.4364,0.6746,0.716,0.6908,0.583,0.6678,0.8374,0.7984,0.7366,0.7206,0.709,0.8396,0.9932,1,-0.441,-0.1202,0.1762,0.237,-0.1398,-0.2272,-0.441,-0.531,-0.5212,-0.4922,-0.4994,-0.5602,-0.5456,-0.4606,-0.3488,-0.339,-0.1106,0.0086,0.2346,0.633,0.8202,0.7522,0.5626,0.701,0.808,0.8128,0.689,0.6696,0.65,0.8298,0.9612,1,-0.3828,-0.0924,0.4884,0.439,-0.043,-0.4818,-0.7392,-0.66,-0.7656,-0.769,-0.7624,-0.858,-0.736,-0.6634,-0.6402,-0.528,-0.2244,-0.099,0.2376,0.7096,0.9208,1,0.6106,0.7326,0.8284,0.6964,0.5314,0.4654,0.3762,0.462,0.703,0.7656,0.024,0.4086,0.774,0.5674,-0.2068,-0.6972,-0.6778,-0.6298,-0.6394,-0.6876,-0.6442,-0.8174,-0.7116,-0.5962,-0.3798,-0.4472,-0.5384,-0.2836,0.0192,0.327,0.9278,0.9278,0.7884,0.9808,1,0.8318,0.5144,0.452,0.3174,0.4038,0.8318,0.75,-0.3334,0.1794,0.282,0.3334,-0.077,-0.282,-0.3334,-0.1282,-0.1794,-0.282,-0.282,-0.282,0.077,0.4358,0.7436,0.7948,0.8462,0.8974,1,0.9488,0.6924,0.5898,0.282,0.4358,0.4358,0.3846,0.4872,0.7436,0.8462,0.8462,0.8462,0.8462,-0.3778,0.1556,0.3778,0.5112,0.2,-0.2,-0.5112,-0.3778,-0.2444,-0.3334,-0.2444,-0.2888,-0.1112,0.2,0.4222,0.6,0.7778,1,0.9112,0.9112,0.9112,0.9112,0.5556,0.4666,0.2444,0.2888,0.4666,0.6888,0.7778,1,0.9556,0.8222,-0.4942,-0.2184,0.3564,0.3334,-0.1034,-0.3794,-0.7702,-0.5632,-0.7012,-0.7012,-0.931,-0.6782,-0.6322,-0.5402,-0.6322,-0.3564,-0.1264,-0.0574,0.3104,0.5632,0.885,1,0.6092,0.885,0.977,0.7242,0.5632,0.6092,0.5862,0.6782,0.908,0.931,-1,-1,-0.9734,-0.9762,-0.9748,-0.9622,-0.9678,-0.9594,-0.9636,-0.8604,-0.6006,0.6396,0.729,0.4846,0.366,0.2626,0.123,0.0964,0.0084,0.0824,-0.0572,-0.507,-0.8198,-0.8688,-0.912,-0.9498,-0.9678,-0.9622,-1,-1,-1,-1,-1,-1,-1,-0.986,-0.9854,-0.9796,-0.9602,-0.9614,-0.958,-0.9232,-0.892,-0.8354,0.1562,0.8612,0.927,0.8054,0.8206,0.7998,0.5616,0.2364,-0.2842,-0.6304,-0.8368,-0.923,-0.9414,-0.9602,-0.9662,-0.9748,-0.9734,-1,-1,-1,-1,-1,-1,-1,-0.9598,-0.9068,-0.8134,-0.2334,-0.2134,-0.1334,0.47,0.1532,-0.43,-0.2778,-0.0978,0.091,0.2354,0.2576,0.3288,0.242,0.022,-0.334,-0.81,-0.838,-0.72,-0.7134,-0.6468,-0.6468,-0.78,-0.7334,-1,-1,-1,-1,-1,-1,-1,-0.4,-0.7428,0.6858,0.4286,-0.8858,0.6,0.0858,-0.2572,1,1,-0.3714,-0.2858,-0.9714,-0.7428,-0.8572,-0.9428,-0.4572,0.0858,0.0286,-0.2858,-0.1714,-0.0286,-0.6858,-0.8858,-0.9142,-0.8286,-1,-1,-1,-1,-1,0.276,0.2884,0.3082,0.3168,0.3402,0.3614,0.3846,0.4016,0.4154,0.1536,-0.0186,0.0172,0.0784,0.1074,0.1928,0.261,0.405,0.5234,0.6618,0.776,-0.7066,0.1058,-0.8374,-0.5592,0.1286,0.4526,0.699,-0.0834,-0.2772,-0.193,-0.1288,0.1436,0.2722,0.3564,0.5892,0.7128,0.6288,0.8268,0.7772,0.807,1,0.7674,0.7524,0.7376,0.6288,0.802,0.802,0.8712,0.7376,0.7476,0.8366,0.797,0.9108,0.8316,0.6882,0.6436,0.7426,0.4208,0.49,-0.0148,-0.5444,-0.41,-0.4404,-0.1366,-0.1888,-0.154,0.1844,0.2148,0.3318,0.3622,0.462,0.423,0.449,0.514,0.3926,0.4924,0.4708,0.692,0.5966,0.6746,0.5966,0.7224,0.6226,0.6052,0.731,0.77,1,0.9132,0.744,0.4968,0.384,0.206,0.208,0.3008,-0.2124,-0.0576,-0.0088,0.1504,0.4956,0.6548,0.761,0.9734,0.8054,0.7744,0.9514,0.6992,1,0.938,0.8672,0.8318,0.8274,0.8628,0.8318,0.7654,0.7346,0.7522,0.8318,0.8584,0.9116,0.8716,0.8362,0.6726,0.3716,0.0442,-0.974,-1,1,-1,-0.4,-1,-1,0.3,-1,-0.2436,-0.0756,0.0924,0.0084,-0.042,-0.0252,-0.21,0.0252,0.6974,0.2268,0.8824,1,0.3782,0.395,0.3782,0.4454,0.1428,0.2774,0.479,0.5462,-0.1596,-0.21,-0.0756,-0.21,-0.2606,-0.0588,-0.0252,0.042,-0.1596,-0.0924,-0.2436,-0.6974,'22'
-0.2548,0.1634,0.9614,1,0.666,0.6942,0.7574,0.9156,0.7856,0.7082,0.536,0.2338,0.0896,-0.1318,-0.1528,-0.1142,-0.0896,-0.058,-0.0088,0.0826,0.4024,0.6274,0.7258,0.9544,0.8804,0.529,0.6168,0.898,0.9684,0.979,0.9262,0.8312,-0.364,0.1434,0.7496,0.7134,-0.0544,-0.1928,-0.229,-0.2454,-0.3542,-0.3674,-0.1894,-0.0642,0.0642,0.2322,0.3476,0.4332,0.5454,0.5058,0.4102,0.6474,0.9802,0.9472,0.5058,0.262,0.2488,0.14,0.351,0.4136,0.6046,0.9374,1,0.7924,-0.3484,0.18,0.7666,0.692,-0.2706,-0.3258,-0.4036,-0.5364,-0.7634,-0.491,-0.5072,-0.812,-0.274,-0.1086,-0.1184,0.4554,0.8476,0.8476,0.6402,0.6078,0.812,0.8996,0.8476,0.6564,0.6726,0.4846,0.5202,0.7342,0.8152,1,0.9546,0.7764,-0.492,0.4014,0.6496,0.6468,0.4132,-0.0102,-0.1124,-0.127,-0.27,-0.2818,-0.1532,-0.1124,0.0278,0.2526,0.565,0.784,0.9446,0.9066,0.7052,1,0.9678,0.889,0.6176,0.4452,0.4482,0.4278,0.746,0.8948,0.927,0.8628,0.8102,0.67,-0.551,0.223,0.777,1,0.6624,0.0574,-0.0192,-0.0828,-0.172,-0.0828,0.1878,0.3822,0.6752,0.863,0.8376,0.3886,0.3598,0.4714,0.8726,0.898,0.6274,0.2962,0.0924,0.0606,0.0892,0.07,0.4394,0.7612,0.7962,0.4808,0.4522,0.2484,-0.59,0.23,0.8646,1,0.3976,0.0552,-0.0874,-0.1336,0.1266,0.483,0.5008,0.3796,0.098,-0.1336,-0.1978,-0.2976,-0.2192,-0.0516,0.4046,0.3404,0.1266,-0.091,-0.4082,-0.4224,-0.3226,-0.3654,-0.155,0.1194,0.3548,0.2798,0.1158,-0.1052,-0.4342,0.339,0.8186,1,0.4126,-0.136,-0.0928,0.1318,0.4342,0.4774,0.1664,-0.3304,-0.5162,-0.3736,-0.6286,-0.6458,-0.6112,-0.6372,-0.2872,-0.175,-0.1966,-0.4126,-0.4038,-0.5724,-0.6934,-0.81,-0.5724,-0.3996,-0.3564,-0.054,-0.0194,-0.2484,-0.3514,0.081,0.6216,0.6216,0.2432,0.7298,0.6756,1,0.8378,0.2432,0.081,-0.4594,-0.1892,-0.2432,-0.5676,-0.1892,0.081,0.027,-0.1352,-0.5676,-0.081,0.1352,0.4054,0.2972,0.6756,0.6216,0.4594,0.6216,0.7298,0.946,0.7838,0.5136,-0.25,0.0834,0.7084,0.8334,0.5834,0.4584,0.625,0.9166,0.9166,0.2916,0.1666,-0.1666,-0.0416,-0.2084,-0.125,-0.375,-0.2084,-0.0416,-0.2084,-0.125,0.2916,0.1666,0.375,1,0.9584,0.25,0.6666,0.75,0.7084,0.5834,0.75,0.5834,-0.6712,0.1506,0.8356,1,0.5616,0.1506,-0.0136,-0.0958,-0.0958,0.1506,0.5616,0.6438,0.5068,0.1232,0.041,0.0684,-0.041,0.2602,0.5616,0.6438,0.0136,0.041,-0.0958,-0.315,-0.0684,-0.1506,0.1506,0.589,0.726,0.2328,0.0684,0.0136,-0.9576,-0.918,-0.1092,1,1,1,1,1,0.0212,-0.6278,-0.5722,0.704,0.956,0.5838,0.0578,0.6968,0.4432,0.6396,0.5722,0.1502,-0.0916,-0.4388,-0.8168,-0.8858,-0.8916,-0.918,-0.934,-1,-1,-1,-1,-1,-1,-0.969,-0.7062,-0.165,0.931,1,1,1,1,-0.032,-0.7746,-0.6986,0.6664,0.5746,0.151,-0.063,0.1536,0.339,0.3808,-0.0256,-0.4094,-0.553,-0.6974,-0.898,-0.9252,-0.9342,-0.9456,-0.95,-1,-1,-1,-1,-1,-1,-0.8768,-0.53,0.4832,-0.56,-0.55,-0.63,-0.6468,-0.6068,-0.72,-0.89,-0.73,-0.74,-0.754,-0.55,-0.392,-0.724,-0.634,-0.758,-0.858,-0.886,-0.938,-0.92,-0.9034,-0.82,-0.8668,-0.81,-0.77,-1,-1,-1,-1,-1,-1,1,1,1,1,0,-0.6858,-0.3142,1,1,1,1,1,0.1142,0.1428,-0.8572,-0.7428,-0.6858,-0.6286,-0.2572,-0.3142,-0.5714,-0.5142,-0.5428,-0.9428,-0.9714,-0.9428,-0.1142,-1,-1,-1,-1,-1,-1,1,1,1,0.9944,0.9448,0.8598,0.6976,0.4562,0.374,0.4442,1,0.9898,0.9636,0.8954,0.6772,0.4448,0.3424,0.3472,0.3006,-0.1466,-0.3334,0.1764,-0.7056,-0.2568,0.7316,0.9664,0.924,1,-0.8788,-0.2324,-0.0304,0.0708,0.2122,0.3738,0.3536,0.4142,0.5152,0.4344,0.4546,0.6162,0.5758,0.495,0.5758,0.6364,0.8182,0.8182,0.8586,0.8182,1,0.7374,0.7576,0.7374,0.7374,0.5758,0.6162,0.3738,0.2324,0.3334,0.293,-0.192,-0.871,-0.3118,-0.3978,-0.2258,-0.0968,-0.0968,0.2258,0.2258,0.1398,0.1398,0.1398,0.2474,0.3978,-0.0322,0.2688,0.5914,0.5054,0.3978,0.6774,0.8924,1,0.9354,0.9784,0.828,0.828,0.3764,0.8494,0.785,0.7204,0.5698,0.6344,0.1182,-0.1526,0.0678,0.017,-0.2034,-0.1186,0.1356,0.3898,0.5594,0.0848,0,0.5084,0.5762,0.305,0.4238,0.2712,0.661,0.6272,0.305,0.3898,0.5594,0.8814,0.644,1,0.5762,0.7118,0.6272,0.661,0.8306,0.7966,0.7118,0.695,0.1526,0.75,1,-1,-1,-1,-1,-1,-0.7666,-1,-0.0572,0.3714,-0.2286,0.2572,0.4286,0.5428,0.7714,0.6858,0.6,0.4,-0.0858,0.4572,0.7142,0.0858,0.1714,0.2286,0.6,0.6572,1,0.9142,0.8286,0.3714,0.4572,0.6,0.5714,0.5714,0.7142,0.5714,0.5714,0.2858,0.3142,-0.6858,'23'
-0.5176,-0.1654,0.2526,0.413,0.9126,0.9056,0.6106,0.5892,0.6894,0.7852,0.781,0.7996,0.7308,0.6994,0.4044,0.3672,0.3114,0.244,0.3672,0.4302,0.635,1,0.9614,0.6622,0.5434,0.5204,0.572,0.612,0.8138,0.831,0.9312,0.8698,-0.3354,0.1278,0.4744,0.565,0.843,0.7844,0.7362,0.7522,0.8268,0.6516,0.6194,0.2166,0.1924,-0.013,-0.0816,-0.1602,-0.2186,-0.156,-0.142,-0.0654,0.136,0.3072,0.6998,0.726,0.6496,0.4864,0.44,0.5528,0.9154,1,0.9034,0.7624,-0.36,0.0216,0.79,0.875,0.6216,0.6534,0.8534,0.7934,0.67,0.4566,0.2716,0.1,-0.095,-0.045,-0.2816,-0.3866,-0.36,-0.23,-0.1334,-0.05,0.0634,0.3034,0.4416,0.6884,0.8734,0.8316,0.5784,0.6584,0.98,1,0.9134,0.64,-0.3352,0.0922,0.7834,0.7854,-0.0276,-0.265,-0.2212,-0.1776,-0.32,-0.4112,-0.1548,-0.1282,-0.077,0.113,0.263,0.4472,0.6582,0.7796,0.8196,0.926,1,0.8994,0.6316,0.3314,0.2992,0.2326,0.2972,0.4568,0.6486,0.772,0.8044,0.662,-0.504,0.1122,0.5594,0.5674,0.4098,-0.0244,0.0814,0.0406,-0.0276,-0.1528,-0.0292,0.117,0.1692,0.4422,0.7594,0.87,0.696,0.7512,0.8504,0.9674,1,0.639,0.439,0.3658,0.3692,0.4,0.496,0.774,0.9658,0.8846,0.4992,0.5024,-0.5272,0.1168,0.632,1,0.8436,0.137,0.137,0.2162,0.1058,0.1684,0.516,0.632,0.6854,0.4002,0.3376,0.275,0.2236,0.356,0.6744,0.8252,0.7314,0.2106,0.034,-0.1922,-0.1186,-0.0304,0.1554,0.5272,0.643,0.3966,-0.001,-0.0028,-0.4662,0.326,0.7392,1,0.5846,-0.0894,0.0628,0.2102,0.4758,0.599,0.0894,-0.2754,-0.4444,-0.4492,-0.5,-0.541,-0.5242,-0.4252,-0.1498,0.1426,0.1112,-0.244,-0.4734,-0.8116,-0.9154,-0.7368,-0.7222,-0.5458,-0.1112,-0.1208,-0.5724,-0.7004,-0.4716,-0.0944,0.3962,0.4716,0.7358,0.6982,0.3208,0.2452,0.3584,0.283,0.283,0.5472,0.9246,1,0.4716,0.2076,0.2452,0.0566,0.2452,0.5472,0.5472,1,0.8868,0.4716,0.434,0.4716,0.5094,0.4716,0.6982,0.8114,0.849,0.8868,-0.4334,-0.1334,0.3334,0.3666,0.8334,0.8,0.3,0.3666,0.4334,0.4334,0.3666,0.7334,0.8666,0.9,0.4334,0.3334,0.3,0.1334,0.3,0.4666,0.6,1,0.9,0.5666,0.5,0.4666,0.5,0.5666,0.7334,0.8,0.8334,0.8,-0.3902,0.0976,0.561,0.683,0.6586,0.8292,1,0.7074,0.3414,0.2196,0.2196,-0.1708,-0.0732,-0.1708,-0.3414,-0.3414,-0.4146,-0.561,-0.439,-0.3902,-0.122,0.0244,0.3658,0.4878,0.8048,0.6098,0.5122,0.683,0.8292,1,0.756,0.5366,-1,-1,-1,-1,-1,-1,-0.989,-0.9872,-0.9706,-0.5552,-0.046,0.4404,0.7552,-0.5656,0.1852,0.0576,-0.3142,-0.095,-0.2306,0.0804,-0.305,-0.6786,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9936,-0.993,-0.9076,-0.7748,-0.4892,0.4014,0.6502,-0.7322,-0.3314,-0.4066,-0.6658,-0.5184,-0.483,-0.5376,-0.785,-0.8978,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.92,-0.53,0.0732,-0.6368,-0.4976,-0.565,-0.595,-0.6688,-0.7038,-0.6126,-0.64,-0.4426,-0.8696,-0.9272,-0.9496,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4572,1,1,1,1,0.0858,1,1,1,0.7142,0.5428,-0.1428,-0.7428,0.7428,0.5714,-0.7428,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.844,-0.2428,-0.219,-0.1382,-0.0482,0.0904,0.223,0.2384,0.4048,0.4048,-0.0642,-0.5734,0.9882,-0.4936,-0.3252,-6e-04,0.4908,0.7488,1,-0.6608,-0.374,-0.1478,-0.113,-0.0348,0.0956,0.0956,0.1218,0.2696,0.374,0.374,0.4522,0.2,0.4608,0.4608,0.6,0.8956,0.8348,0.774,0.9044,1,0.8348,0.713,0.687,0.7044,0.8522,0.8,0.8348,0.487,0.087,0.426,0.1392,0.261,0.8956,0.8072,0.3734,0.1888,0.3816,0.735,0.8072,0.4618,0.51,0.7912,1,0.518,0.4698,0.6706,0.9358,0.9116,0.8394,0.751,0.5984,0.2772,0.1326,0.0844,0.1244,-0.0682,-0.012,-0.0522,0.02,0.0362,0.1888,0.1646,0.004,0.0482,0.6656,0.6656,0.4726,0.434,0.4984,0.91,0.8328,0.389,0.3826,0.9356,1,0.5756,0.5242,0.6398,0.82,0.8778,0.9164,0.8328,0.4276,0.209,-0.1832,-0.2668,-0.2668,-0.344,-0.3184,-0.2476,-0.1704,-0.016,-0.0032,-0.1318,-0.3054,-0.5988,-1,-1,1,-0.6,-1,-1,-0.5,-1,0.5136,1,0.928,0.7298,0.8558,0.7658,0.5676,0.2252,0.5496,0.5676,0.6936,0.4414,0.4594,0.4414,0.6756,0.2252,0.2072,0.4414,0.8018,0.4594,0.3154,0.2432,0.1352,0.099,0.2072,0.027,0.2072,0.099,-0.2972,-0.2432,0.045,-0.5496,'23'
-0.6116,-0.1984,0.1322,0.3884,0.595,0.9338,0.8348,0.3472,0.1322,0.124,0.2148,0.281,0.372,0.6942,0.8926,1,0.7272,0.4876,0.5538,0.81,0.7438,0.8264,0.6528,0.6364,0.5042,0.3966,0.3884,0.4628,0.7604,0.8264,0.7934,0.719,-0.453,-0.2082,0.3142,0.5102,0.6408,0.9918,0.9428,0.6654,0.3878,0.3224,0.3714,0.4612,0.5592,0.6816,0.9674,0.8938,0.902,0.6816,0.6654,0.7632,1,0.951,0.8448,0.5836,0.5266,0.3714,0.6816,0.6,0.5756,0.9836,0.8938,0.698,-0.539,-0.2592,0.2182,0.4486,0.5474,1,0.9176,0.5802,0.358,0.3004,0.358,0.3662,0.5062,0.5638,0.8848,0.8436,0.926,0.5474,0.5802,0.6378,0.9012,0.7614,0.6872,0.6132,0.4732,0.3662,0.5802,0.5062,0.4898,0.7614,0.6708,0.6872,-0.4676,-0.2662,0.1942,0.4028,0.7338,0.9928,0.8706,0.4748,0.3094,0.41,0.331,0.3884,0.5036,0.7698,0.8274,1,0.8776,0.6116,0.6762,0.8634,0.8562,0.6906,0.5396,0.4316,0.4892,0.3454,0.4028,0.3742,0.5972,0.705,0.7122,0.5252,-0.6312,-0.1774,0.1206,0.3688,0.8724,0.993,0.8368,0.6242,0.5958,0.461,0.4468,0.4822,0.6738,0.8368,0.993,1,0.9008,0.7092,0.6808,0.9646,0.9362,0.5816,0.539,0.468,0.3618,0.312,0.4184,0.3546,0.5178,0.6738,0.7092,0.4256,-0.5912,-0.073,0.1824,0.4744,0.8906,0.8686,0.6496,0.6278,0.4818,0.3942,0.4234,0.3504,0.5328,0.9344,0.9782,1,0.7956,0.7446,0.876,0.876,0.489,0.2774,0.27,0.2116,0.1752,-0.0292,0.2116,0.124,0.343,0.4964,0.5986,0.6132,-0.2888,0.2218,0.4476,0.6736,0.8578,0.8242,0.5146,0.3472,0.1632,0.1214,0.1298,0.2134,0.431,0.5984,0.7574,0.9832,1,0.9414,0.774,0.6736,0.3556,0.113,-0.021,-0.021,-0.0962,-0.3472,-0.205,-0.1966,-0.113,0.272,0.2888,0.3138,-0.6956,0.0434,0.0434,0.5218,0.5218,1,0.8696,0.3044,0.2174,0.3044,0.3478,0.4782,0.6956,0.7392,0.6086,0.913,0.7392,0.7392,0.7826,0.826,0.8696,0.8696,0.7826,0.826,0.6086,0.5652,0.6522,0.6522,0.6956,0.826,0.826,0.6522,-0.5186,-0.3334,0.1852,0.2962,0.5186,0.8148,0.7408,0.5186,0.1852,0.1852,0.1852,0.3334,0.4814,0.7038,0.926,1,0.8148,0.5186,0.5926,0.8518,0.8518,0.7778,0.7408,0.4814,0.4074,0.3334,0.4074,0.4444,0.7408,0.8148,0.7778,0.8518,-0.6382,-0.149,0.1276,0.3618,0.7872,0.766,0.5958,0.617,0.4468,0.468,0.4894,0.2554,0.5106,0.9574,0.9788,1,0.8086,0.6382,0.9148,0.9148,0.6808,0.2128,0.3404,0.3618,0.3404,-0.0212,0.234,0.2554,0.3404,0.4468,0.6382,0.617,-1,-1,-1,-1,-1,-1,-0.9784,-0.9712,-0.9794,-0.9548,-0.6642,-0.1058,-0.0196,0.0124,0.1428,0.3614,0.7218,0.9568,0.6428,0.3964,0.4158,-0.3502,-0.8644,-0.9518,-0.9518,-0.962,-0.846,-0.9436,-0.964,-0.9682,-0.9754,-0.9712,-0.9744,-1,-1,-1,-1,-1,-1,-0.9878,-0.987,-0.9872,-0.9084,-0.714,0.1358,0.2156,-0.0342,0.048,0.2992,0.7162,0.948,0.6614,0.2612,-0.1478,-0.6396,-0.9386,-0.9678,-0.9726,-0.979,-0.7946,-0.75,-0.6482,-0.6036,-0.5038,-0.474,-0.4714,-1,-1,-1,-1,-1,-1,-0.96,-0.94,-0.82,-0.86,-0.6368,-0.5934,-0.4468,-0.5334,-0.5734,-0.6334,-0.6868,-0.655,-0.61,-0.545,-0.715,-0.61,-0.66,-0.5734,-0.76,-0.89,-0.2968,0.6232,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-0.6,-0.8286,-0.6286,1,1,1,0.8572,-0.7142,-0.5428,-0.9142,-0.9142,-0.6,-0.3428,1,1,1,1,-0.4858,-0.7428,1,1,1,0.0858,-0.7428,-0.8572,-0.8858,-0.8286,1,1,1,1,1,1,1,1,1,1,-0.4336,-0.4694,-0.4694,-0.5504,-0.5188,-0.5104,-0.5236,-0.5378,-0.6176,-0.9096,-0.4934,-0.6706,-0.7174,-0.248,0.401,-0.0382,-0.0128,1,-0.3036,0.2322,0.4642,0.5358,0.375,0.4642,0.6964,1,0.9464,0.8928,1,0.9286,0.8214,0.6964,0.8928,0.9286,0.9108,0.8572,0.5714,0.2678,0.125,-0.0714,0.0892,0.1072,0.25,0.25,0.3036,0.3392,0.5358,0.5178,0.3392,-0.0892,-0.1888,0.3986,0.8182,0.8042,0.4686,0.3986,0.5384,1,0.6504,0.7062,0.8602,0.6924,0.6644,0.4686,0.5664,0.7622,0.6364,0.5104,0.1888,-0.063,-0.2448,-0.3286,-0.2448,-0.3146,-0.2448,-0.021,-0.063,-0.1048,0.1748,0.1188,0.1608,-0.4826,0.0184,0.5338,0.9142,1,0.5706,0.3128,0.497,0.8896,0.9018,0.73,0.865,0.8774,0.4234,0.4602,0.73,0.7792,0.595,0.5214,0.2638,-0.1656,-0.2024,-0.276,-0.2516,-0.3128,-0.2516,-0.2024,-0.2148,-0.092,-0.0306,0.0306,0.0674,-0.5828,-0.525,-1,-1,1,-1,-1,-1,-0.7334,1,-0.8666,-0.7142,-0.581,-0.5524,-0.4666,-0.2572,-0.2952,-0.2476,-0.1142,-0.0952,-0.0572,-0.1142,-0.0952,0.0476,-0.3048,-0.1714,0.1142,0.1048,0.3238,0.4762,0.4286,0.419,0.4666,0.4096,0.4858,0.4952,1,0.9334,0.5048,0.3428,0.362,0.2,'24'
-0.5248,-0.109,0.1882,0.4984,0.736,0.769,0.7558,0.5446,0.439,0.3268,0.3862,0.4258,0.6238,0.8548,0.9736,0.9802,0.7954,0.7492,0.6568,0.7954,0.9142,0.769,0.7888,0.6172,0.5248,0.5248,0.4258,0.5182,0.703,0.8746,0.934,1,-0.464,-0.193,0.2162,0.389,0.7002,0.6254,0.66,0.5734,0.5274,0.4698,0.3256,0.343,0.608,0.8848,1,0.7522,0.6772,0.7176,0.6946,0.7636,0.7926,0.7118,0.7522,0.5216,0.4986,0.4006,0.3314,0.389,0.6426,0.6542,0.7926,0.856,-0.5142,-0.2058,0.16,0.3658,0.68,0.5886,0.6228,0.5258,0.5086,0.4628,0.3258,0.3658,0.5658,0.8572,1,0.8058,0.6342,0.6914,0.7258,0.8114,0.8628,0.8514,0.7028,0.56,0.5486,0.4172,0.3942,0.3828,0.7086,0.7428,0.7886,0.8286,-0.565,-0.2882,0.13,0.339,0.6554,0.5706,0.6328,0.4464,0.4238,0.418,0.3616,0.4012,0.5028,0.87,0.9888,0.8248,0.7628,0.6272,0.7118,0.7966,1,0.9604,0.582,0.4012,0.452,0.5368,0.435,0.4294,0.7344,0.7628,0.8588,0.8362,-0.6456,-0.3934,0.075,0.3634,0.5496,0.6276,0.6516,0.3574,0.3214,0.3574,0.3994,0.3874,0.4594,0.8318,0.8378,1,0.7178,0.6636,0.7118,0.952,0.976,0.7178,0.5736,0.4714,0.4294,0.4054,0.4474,0.4234,0.6576,0.8498,0.8858,0.94,-0.5594,-0.3624,0.1014,0.484,0.5652,0.6232,0.5188,0.3508,0.2986,0.2754,0.3044,0.3276,0.513,0.6116,1,0.8956,0.5652,0.6696,0.8608,0.884,0.6232,0.5188,0.3624,0.2928,0.2174,0.2406,0.1884,0.1652,0.3914,0.658,0.6986,0.8608,-0.4362,-0.0038,0.305,0.8532,0.8146,0.5752,0.336,0.2818,0.2742,0.1042,0.2664,0.3436,0.4594,0.861,0.8146,0.861,0.6834,0.807,0.9692,1,0.7298,0.1584,0.081,-0.166,-0.1352,-0.1506,-0.0888,-0.197,0.0888,0.2356,0.6834,0.9228,-0.5272,-0.1272,0.091,0.3818,0.491,0.6364,0.6364,0.4182,0.1636,0.2,0.2728,0.2,0.4546,0.709,0.891,0.8546,0.6,0.5636,0.6,0.6364,0.7818,0.709,0.6,0.4546,0.5272,0.3454,0.309,0.5272,0.6,0.7454,0.891,1,-0.6666,-0.25,0.0834,0.4166,0.5834,0.6666,0.75,0.5834,0.5,0.3334,0.2916,0.5,0.5834,0.8334,0.75,1,0.9166,0.6666,0.4166,0.7916,0.875,0.75,0.7084,0.5,0.4584,0.375,0.1666,0.1666,0.5834,0.75,0.75,0.8334,-0.6206,-0.3966,0.0518,0.3794,0.4828,0.6034,0.5344,0.3276,0.2586,0.2242,0.2932,0.362,0.4828,0.5862,1,0.9656,0.5172,0.6724,0.7414,0.8448,0.6896,0.6206,0.431,0.3104,0.2932,0.3276,0.1896,0.2414,0.431,0.7586,0.7242,0.862,-1,-1,-1,-1,-1,-1,-1,-1,-0.9758,-0.9608,-0.6248,0.5146,0.7814,0.801,0.884,0.9744,0.9186,0.7302,0.7212,0.777,0.5162,-0.2224,-0.8522,-0.9366,-0.9502,-0.9502,-0.771,-0.8538,-0.9352,-0.9532,-0.9518,-0.9698,-0.9638,-1,-1,-1,-1,-1,-1,-1,-1,-0.9888,-0.9842,-0.8142,0.2774,0.4372,0.3098,0.5428,0.8212,0.9964,0.9608,0.8926,0.5428,-0.1954,-0.7454,-0.9526,-0.9714,-0.9668,-0.9556,-0.8472,-0.891,-0.833,-0.8392,-0.7594,-0.6956,-0.689,-1,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.9268,-0.76,-0.5334,-0.41,-0.33,-0.355,-0.325,-0.3,-0.27,-0.25,-0.39,-0.69,-0.71,-0.6234,-0.56,-0.5168,-0.6834,-0.5634,-0.24,0.3932,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,1,-0.6,-0.9142,-0.9142,-0.7428,-0.8286,0.5142,1,1,1,1,-0.6858,-0.6286,1,1,1,1,-0.2286,-0.5428,-0.8,-0.9428,1,1,1,1,1,1,1,1,1,1,-0.7512,-0.7512,-0.8332,-0.8184,-0.8618,-0.9164,-0.933,-0.8878,-0.8568,-0.9756,-0.6134,-0.6118,-0.7374,-0.1322,0.53,0.3448,0.298,1,-0.5676,-0.3514,0.1892,0.4054,0.2972,0.4594,0.7298,0.946,0.946,0.946,1,0.946,0.8918,0.5676,0.7298,0.946,1,0.946,0.6756,0.4594,0.081,0.081,-0.081,-0.4054,-0.027,-0.2972,0.081,0.081,-0.2432,-0.1352,-0.4594,-0.7298,-0.2884,0.1538,0.4808,0.5962,0.4616,0.4424,0.423,1,0.8076,0.75,0.9038,0.7884,0.5192,0.3846,0.5576,0.8462,0.9616,0.7116,0.6154,0.0962,0.173,-0.0576,-0.173,-0.3654,-0.1924,-0.0962,0,-0.2884,-0.077,0.2884,0.3076,-0.1538,0.2034,0.5254,0.9492,0.983,0.6272,0.5424,0.661,1,0.7796,0.7628,0.8814,0.8474,0.6272,0.5932,0.7118,0.7796,0.8814,0.7966,0.6102,0.305,0.2712,0.017,-0.1694,-0.2034,0.0678,0.0678,0.0338,0.017,0.1864,0.2204,0.305,0.1526,1,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.7546,-0.7914,-0.4602,-0.3006,-0.2024,-0.092,-0.0184,-0.0306,-0.0674,0.0306,0.092,0.1166,0.2148,0.1902,0.2638,0.4602,0.6074,0.595,0.5828,0.5582,0.7792,0.7914,0.8896,0.9142,0.8896,0.8896,0.9018,1,0.7792,0.8896,0.6688,0.5092,'24'
-0.3726,0.0188,0.7524,0.7924,0.8562,0.9246,1,0.658,0.526,0.0732,-0.1438,-0.2382,-0.3278,-0.4268,-0.5236,-0.5542,-0.5142,-0.507,-0.3444,-0.2216,0.0966,0.3702,0.3278,0.0448,-0.0496,-0.1038,-0.0142,-0.059,0.3278,0.3702,0.349,0.3232,-0.5422,-0.2522,0.1138,0.2376,0.6618,0.6414,0.742,0.9256,1,0.6896,0.3338,0.0452,0.0408,0.1078,-0.0992,-0.118,-0.0554,-0.0744,0.0174,0.1152,0.1632,0.4446,0.395,0.4548,0.2244,0.1734,0.3148,0.2798,0.398,0.6852,0.707,0.57,-0.5618,-0.2602,0.1566,0.2702,0.6162,0.855,0.9902,0.9868,1,0.8616,0.7512,0.3278,0.229,0.2076,0.1302,0.0412,0.107,0.0148,0.0824,0.2142,0.407,0.565,0.6936,0.6376,0.3872,0.3262,0.3674,0.3574,0.6342,0.7512,0.7742,0.7594,-0.538,-0.3192,0.1412,0.2686,0.4662,0.9462,0.951,0.827,0.933,1,0.9428,0.6604,0.4448,0.347,0.3078,0.1836,0.1314,0.1054,0.2342,0.3552,0.4956,0.6474,0.7012,0.5788,0.427,0.2866,0.36,0.3208,0.5804,0.7142,0.7454,0.8938,-0.563,-0.2214,0.0524,0.3902,0.7154,0.8366,0.9596,0.8752,0.7466,0.7448,0.7448,0.8512,0.9854,1,0.888,0.6346,0.484,0.4416,0.6712,0.8348,0.864,0.662,0.484,0.4398,0.3922,0.2194,0.2708,0.2672,0.6106,0.675,0.7392,0.9688,-0.6434,-0.1326,0.1592,0.5062,0.716,0.6416,0.1668,0.1992,0.2012,0.226,0.2298,0.205,0.4318,0.6034,0.7598,0.981,1,0.8456,0.8608,0.9314,0.9694,0.838,0.5978,0.5196,0.367,0.3384,0.3518,0.2756,0.5576,0.7274,0.7026,0.7922,-0.5392,0.2118,0.707,0.9468,0.5846,0.0732,-0.0838,-0.177,-0.2118,-0.3102,-0.2624,-0.3182,-0.0652,0.0786,0.1318,0.486,0.6564,0.7576,0.7124,0.771,1,0.9814,0.755,0.4248,0.1824,0.1398,0.1692,0.0812,0.2836,0.4354,0.6112,0.8402,-0.0476,0.2858,1,0.9048,0.7142,0.762,0.619,0.381,-0.1904,0.1428,-0.0476,0.0952,-0.0476,-0.2858,-0.3334,-0.5238,-0.2858,-0.2858,-0.3334,-0.2858,-0.238,-0.0952,-0.619,-0.1904,-0.238,-0.238,-0.0952,-0.5714,-0.0952,-0.1428,0.0952,-0.0952,-0.2608,0.3914,0.9566,1,0.6522,0.6956,0.7392,0.174,-0.1304,-0.3914,-0.2174,-0.2174,-0.2608,-0.3914,-0.7392,-0.4348,-0.4348,-0.6086,-0.4348,-0.3478,-0.2174,0,0.0434,-0.087,-0.5218,-0.3478,-0.4782,-0.3478,-0.0434,-0.0434,0.0434,0,-0.5556,-0.2038,0.0186,0.426,0.8518,0.8704,0.3888,0.3704,0.4074,0.3704,0.3334,0.3888,0.574,0.9074,1,0.9074,0.7778,0.574,0.8148,0.9814,0.8148,0.6666,0.3334,0.3704,0.2592,0.2408,0.2778,0.1666,0.4814,0.6852,0.6666,0.7038,-1,-1,-1,-1,-1,-1,-1,-1,-0.8188,-0.8026,-0.6428,0.3042,0.9456,0.7372,0.4598,0.498,0.6154,0.1288,0.1016,0.3296,-0.1492,-0.2608,-0.6436,-0.7788,-0.8342,-0.8716,-0.9116,-0.96,-0.9668,-0.972,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9638,-0.9604,-0.9248,-0.6204,0.1094,0.907,0.6358,0.4672,0.5658,0.2962,0.1002,-0.2596,-0.5628,-0.8012,-0.9182,-0.9448,-0.9444,-0.955,-0.9672,-0.9782,-0.9798,-0.9786,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.939,-0.919,-0.9422,-0.8738,-0.7292,-0.6616,-0.6754,-0.6984,-0.6322,-0.6064,-0.5816,-0.6786,-0.6244,-0.9386,-0.7934,-0.6268,-0.5968,-0.6834,-0.6334,-0.4268,-0.4934,-0.58,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-0.8858,0.5142,1,0.8,-0.5714,-0.9428,-0.9428,-0.6858,-0.7714,-0.6286,-0.5714,1,1,-0.7142,0.6286,0.8286,-0.0858,-0.6858,-0.8286,-0.8572,-0.8572,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.3316,0.3714,0.4298,0.4574,0.4844,0.518,0.534,0.5494,0.5282,-0.0464,-0.56,0.6,-0.9266,-0.855,-0.7448,-0.575,-0.5068,-0.3834,0.598,1,0.6082,0.3814,0.103,0.134,-0.0104,0.2578,0.0206,0.0206,-0.0412,0.1958,-0.0618,0.031,-0.0412,-0.103,-0.0618,0.0516,0.1444,-0.0618,0.0824,-0.134,0.1134,0.103,0.0412,0.031,0.0104,0.0104,-0.1752,-0.0824,-0.299,-0.4536,0.514,1,0.5234,0.3738,-0.1122,0,-0.0748,0.2524,0.1308,0.1682,-0.0842,-0.0186,0.2242,0.028,-0.0654,0.2336,0.028,0,0.0654,0,-0.1028,0,-0.056,0.0094,-0.028,-0.0094,-0.1028,-0.1588,0,-0.1588,-0.1308,-0.2804,0.5,1,0.7734,0.711,0.1094,0.0546,0.125,0,-0.039,-0.2422,0.0624,0.0782,-0.1484,-0.0546,0.0312,0.1406,-0.0624,-0.2422,0.0546,-0.0546,-0.0156,-0.1016,-0.1328,-0.0468,-0.1406,-0.2578,-0.1406,-0.125,-0.211,-0.0938,-0.2578,-0.5078,-0.9968,1,-1,-1,-1,0.4,0.6,-1,1,-0.0458,-0.0092,0.0826,0.3578,0.3212,0.2844,0.4128,0.7798,0.8166,0.4496,0.8348,0.8166,0.3578,0.5046,0.9634,1,0.1192,0.2294,0.5412,0.9266,0.7798,0.7248,0.7798,0.7798,0.688,0.633,0.6698,0.7248,0.6514,0.6514,0.3212,-0.1192,'25'
-0.2964,0.0852,0.7294,0.7374,0.8592,1,0.9972,0.5724,0.4074,0.0094,-0.188,-0.299,-0.364,-0.448,-0.437,-0.4262,-0.5074,-0.5156,-0.5562,-0.4074,-0.2152,0.0744,0.0474,-0.2232,-0.3478,-0.364,-0.3694,-0.1096,0.0446,0.188,0.1014,-0.1772,-0.5314,-0.274,0.0978,0.3088,0.545,0.7754,0.8296,1,0.9148,0.3456,0.1482,0.1056,-0.0532,-0.1482,-0.1384,-0.1888,-0.272,-0.2294,-0.1248,-0.0068,0.1248,0.5314,0.5044,0.183,0.1694,0.1946,0.123,0.2392,0.3068,0.5412,0.4928,0.3476,-0.4464,-0.1678,0.2,0.2872,0.5734,0.9146,1,0.9526,0.909,0.746,0.5582,0.3934,0.1886,0.1052,0.1944,-0.037,-0.071,-0.0446,0.0464,0.0824,0.2626,0.6492,0.7498,0.4996,0.4086,0.38,0.3138,0.3536,0.5318,0.6512,0.765,0.6682,-0.5288,-0.283,0.132,0.2406,0.4602,0.9496,0.9516,0.8752,0.9618,1,0.9214,0.716,0.4702,0.291,0.2246,0.148,0.1178,0.1158,0.132,0.2426,0.4138,0.6718,0.728,0.5388,0.3636,0.3454,0.2488,0.3514,0.424,0.5932,0.7362,0.857,-0.556,-0.2638,0.1164,0.3296,0.6308,0.8682,0.978,0.9538,0.7824,0.7252,0.8374,1,0.9626,0.8066,0.589,0.466,0.422,0.4308,0.477,0.7098,0.7868,0.734,0.6022,0.2528,0.1956,0.2154,0.1582,0.2572,0.3428,0.4946,0.7494,0.6594,-0.6064,-0.1172,0.165,0.463,0.7246,0.6838,0.4016,0.347,0.1808,0.1878,0.2082,0.3242,0.422,0.7338,0.9726,1,0.8908,0.7566,0.7862,0.9476,0.959,0.7452,0.463,0.256,0.2946,0.2218,0.124,0.2924,0.3902,0.5154,0.6292,0.5836,-0.3442,0.1496,0.5496,0.9244,0.6396,0.146,0.0666,-0.1568,-0.4882,-0.4954,-0.4414,-0.2756,-0.2684,-0.182,-0.0702,0.1208,0.8918,1,0.6396,0.6612,0.6648,0.7082,0.654,-0.0018,0.0594,0.0054,-0.128,-0.2216,0.0198,0.2108,0.6252,0.6684,0.2916,0.625,1,0.9584,0.7084,0.8334,0.6666,0.5,0.3334,0.0834,0.125,-0.2084,-0.0834,0.0834,0.2084,0.2084,0.1666,0.0416,-0.2084,-0.5834,-0.2084,0.0416,-0.125,-0.0416,-0.0834,-0.125,0.125,0.25,0.2916,0.125,0.0834,0.0834,-0.1708,0.122,1,1,0.6098,0.8048,0.756,0.122,-0.2196,-0.0732,-0.2682,-0.4634,-0.4634,-0.6586,-0.5122,-0.4634,-0.756,-0.6586,-0.5122,-0.2682,-0.1708,-0.122,-0.0732,-0.2682,-0.2682,-0.4146,-0.4634,-0.5122,-0.0732,0.1708,-0.0244,-0.2682,-0.5186,-0.2592,0.0926,0.2778,0.574,0.8148,0.9444,0.926,0.7592,0.6482,0.8148,0.8888,1,0.8518,0.5556,0.426,0.4814,0.4074,0.4444,0.6482,0.7778,0.7778,0.426,0.2408,0.1112,0.1852,0.1296,0.1296,0.2592,0.4814,0.7592,0.7592,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.878,-0.71,-0.0152,0.8626,0.7992,0.6432,0.8814,0.8146,0.5646,0.3146,0.4624,0.0234,-0.385,-0.7442,-0.845,-0.905,-0.9402,-0.9648,-0.9718,-0.9672,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9742,-0.9408,-0.7156,-0.0018,0.536,0.4744,0.5844,0.8404,0.6614,0.269,-0.0858,-0.5894,-0.8548,-0.9248,-0.9488,-0.953,-0.9626,-0.9616,-0.9676,-0.9768,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9168,-0.8934,-0.8056,-0.6528,-0.5982,-0.591,-0.6546,-0.5968,-0.4984,-0.495,-0.5168,-0.655,-0.8668,-0.82,-0.7068,-0.5668,-0.3768,-0.2568,-0.3134,-0.5334,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,0.0858,1,1,-0.2286,-0.9142,-0.9428,-0.7142,-0.8,-0.2858,-0.3714,1,1,-0.8,-0.7428,-0.8286,-0.8858,-0.8858,-0.8286,-0.4,-1,-1,-1,-1,0.9798,1,1,1,1,1,1,1,1,1,-0.0902,-0.0072,0.0128,0.0786,0.1932,0.2606,0.3268,0.4218,0.4214,-0.1808,-0.5466,0.3764,-0.9402,-0.8948,-0.7854,-0.695,-0.554,-0.675,0.585,0.9056,0.151,0.3018,0.2264,0.585,0.6604,1,0.849,0.6982,0.6038,0.3962,0.6416,0.7736,0.5472,0.868,0.566,0.3774,0.3396,0.5284,0.5284,0.3774,0.5284,0.434,0.4906,0.6226,0.4528,0.5472,0.566,0.2264,0.2642,-0.3962,0.5304,0.9304,1,0.513,0.2174,0.4956,0.774,0.5478,0.8434,0.6,0.7044,0.4956,0.6,0.0608,0.6,0.6522,0.6348,0.8086,0.826,0.8086,0.7218,0.4782,-0.0086,0.4782,0.4086,0.4434,0.4782,0.4782,0.5652,0.4608,0.1826,-0.4608,0.6084,1,0.6508,0.4814,0.0476,0.0476,0.3122,0.0264,-0.1112,0.0052,0.1112,0.1006,0.1746,-0.217,0.0264,0.0688,0.1852,-0.0476,-0.0264,0.1006,0.1006,0.037,-0.0582,-0.1322,-0.1322,-0.0582,0.0052,0.0052,-0.1006,-0.2804,-0.09,-0.7778,-0.9674,1,-1,-1,-1,-1,-0.4,-1,-1,-0.5478,-0.4434,-0.2348,-0.0434,-0.3914,0.1478,0.3218,0.9826,0.6348,0.6,0.9826,1,0.6,0.513,0.5478,0.5826,-0.026,-0.0956,-0.0956,0.7914,0.3566,0.113,-0.026,0.026,-0.4086,-0.3392,-0.4086,-0.2,-0.1826,-0.1478,-0.2174,-0.4434,'25'
-0.1884,0.2694,0.2994,0.5122,0.3688,0.0474,-0.089,-0.059,-0.1236,-0.0336,-0.0868,-0.052,0.1028,0.318,0.496,0.6208,0.6532,0.6508,0.5376,0.63,0.829,0.8034,0.6694,0.5376,0.4868,0.3596,0.3758,0.3758,0.5908,0.8104,0.8104,1,-0.4192,0.1022,0.0958,0.2702,0.2382,-0.132,-0.166,-0.1298,-0.166,-0.1086,-0.1426,-0.1212,-0.151,0.1128,0.0872,0.2766,0.2574,0.7086,0.7022,0.5234,0.5086,0.6894,0.6914,0.6234,0.632,0.4788,0.483,0.368,0.4766,0.832,0.8426,1,-0.2824,0.1542,0.1046,0.2936,0.1518,-0.1452,-0.2508,-0.1744,-0.2734,-0.2508,-0.2576,-0.3026,-0.1384,-0.0708,0.0012,0.0956,0.3048,0.4848,0.8516,0.9662,0.7998,0.6198,0.8156,0.8402,0.7616,0.5838,0.6198,0.4916,0.7728,0.8876,0.9236,1,-0.5036,-0.1796,0.2128,0.2434,-0.0898,-0.2294,-0.3404,-0.4988,-0.4988,-0.487,-0.4894,-0.558,-0.409,-0.3334,-0.2364,-0.123,0.0426,0.2198,0.6478,0.9244,0.9882,0.714,0.695,0.877,0.896,0.6832,0.6502,0.5886,0.7636,0.9692,1,0.9976,-0.6414,0.1342,0.4078,0.2244,0.0014,-0.4926,-0.66,-0.7132,-0.7982,-0.83,-0.7104,-0.7052,-0.5166,-0.4742,-0.5006,-0.2564,-0.073,0.02,0.4662,0.9096,1,0.7982,0.6946,0.8858,0.8778,0.6176,0.5352,0.4556,0.7078,0.8354,0.939,0.8964,-0.605,0.5116,0.636,0.098,-0.3438,-0.7326,-0.5272,-0.6268,-0.7512,-0.7854,-0.7418,-0.7668,-0.7108,-0.6206,-0.5708,-0.378,-0.2722,-0.1104,0.5024,0.9066,1,0.7262,0.7854,0.9254,0.8228,0.3654,0.4276,0.3592,0.4526,0.6766,0.689,0.7574,-0.2918,0.7556,1,0.4962,-0.0024,-0.7456,-0.7456,-0.6908,-0.8304,-0.8604,-0.7206,-0.7456,-0.5312,-0.576,-0.4464,-0.4514,-0.1222,0.0774,0.7906,0.9002,0.8354,0.7306,0.8054,0.7108,0.3616,-0.0274,0.0872,-0.1222,0.1322,0.4714,0.7206,0.4064,-0.317,0.1708,0.3658,0.4146,-0.122,-0.317,-0.4634,-0.2196,-0.0732,-0.2682,-0.1708,-0.122,0.317,0.5122,0.9512,1,0.6586,0.2682,0.4146,0.8048,0.8536,0.4146,0.3658,0.2682,0.2682,0.122,0.1708,0.1708,0.3658,0.756,0.8048,0.8536,-0.3726,0.0588,0.255,0.3726,0.1764,-0.1372,-0.6078,-0.647,-0.2942,-0.255,-0.2942,-0.1764,0.0196,0.3726,0.3334,0.804,0.804,0.451,0.3334,0.4902,0.8824,0.9216,0.5686,-0.0196,-0.0196,0.1764,0.255,0.1372,0.098,0.647,0.7254,1,-0.6444,0.2222,0.4666,0.2888,0.0888,-0.4666,-0.7778,-0.6,-0.7112,-0.7334,-0.8222,-0.6888,-0.5112,-0.5556,-0.2888,-0.2888,-0.0666,0.1112,0.4222,0.7778,0.9112,0.7334,0.8444,0.8444,0.8222,0.4888,0.5556,0.5334,0.6444,0.7556,0.8888,1,-0.9738,-0.9548,-0.8954,-0.8824,-0.8848,-0.905,-0.9086,-0.8396,-0.6188,-0.4192,-0.1034,0.785,0.8194,0.4086,0.1366,-0.215,-0.367,-0.2768,-0.139,-0.1532,-0.3824,-0.608,-0.7958,-0.9062,-0.9466,-0.9632,-0.9668,-0.968,-1,-1,-1,-1,-1,-0.9848,-0.9786,-0.958,-0.9012,-0.7744,-0.592,-0.3312,-0.3214,-0.2672,-0.1576,0.2074,0.2526,0.8168,0.781,0.4032,0.1996,0.0278,-0.1222,-0.5016,-0.6144,-0.7384,-0.8644,-0.9236,-0.956,-0.9604,-0.9664,-0.9692,-0.968,-1,-1,-1,-1,-1,-0.9334,-0.8534,-0.78,0.34,1,1,1,1,1,1,0.86,-0.14,0.196,0.306,0.194,0.132,0.094,0.018,-0.51,-0.766,-0.832,-0.934,-0.89,-0.6234,-0.5634,-0.5268,-0.5734,-0.56,-1,-1,-1,-1,-1,-0.3714,-0.4286,1,1,0.9142,-0.0858,-0.2858,-0.8858,-0.8,-0.0286,1,1,-0.0286,-0.4286,-0.6572,-0.6286,-0.9714,-0.3428,0.2858,-0.9428,0.1428,0.1714,-0.4858,-0.7428,-0.8,-0.8,-0.7714,-0.1142,-1,-1,-1,-1,-1,0.3008,0.347,0.3694,0.3948,0.4238,0.4446,0.456,0.4528,0.4442,0.0866,-0.309,-0.201,-0.1532,-0.0846,-0.0286,0.0392,0.1282,0.2392,0.411,0.5528,-0.6666,0.1648,0.2046,-0.034,0.192,0.4538,0.7146,-0.1084,-0.6006,-0.699,-0.89,-0.7222,-0.6672,-0.6354,-0.3892,-0.2244,-0.2794,-0.2272,-0.1462,-0.1288,-0.1056,-0.042,0.0652,0.0014,0.071,-0.0246,0.1808,0.2996,0.3662,0.4964,0.3662,0.4646,0.5166,0.806,1,0.861,0.9566,0.8726,0.6296,0.4646,-0.4192,-0.442,-0.96,-0.8054,-0.7654,-0.548,-0.422,-0.402,-0.3276,-0.2846,-0.0586,-0.1788,-0.0616,-0.1102,-0.0844,0.0042,0.0958,0.1616,0.153,0.1388,0.3018,0.3962,0.279,0.5308,0.5966,0.8684,0.96,0.9314,0.8054,1,0.8684,0.5194,-0.141,-0.1222,-0.5204,-0.6834,-0.7022,-0.489,-0.0438,0.0532,-0.2038,-0.1692,0.0564,-0.1598,-0.1786,-0.1662,-0.0344,0.0188,0.1034,0.1348,0.2884,0.301,0.2946,0.5862,0.301,0.3794,0.511,0.7524,0.9656,1,0.884,0.8214,0.5642,0.351,-0.6536,-1,-1,1,1,-0.6,-0.6,0.3,-1,-0.1812,0.0552,0.1496,0.3228,0.3386,0.2598,0.4646,1,0.6536,0.7008,0.685,0.4646,0.5276,0.6062,0.7166,0.433,0.2598,0.3386,0.433,0.496,0.6378,0.496,0.3544,0.1182,0.1654,0.1338,0.3544,0.307,0.0394,-0.4016,-0.3386,-0.4646,'26'
-0.2446,0.2344,0.71,0.855,0.4638,-0.1804,-0.1434,-0.2142,-0.2782,-0.2716,-0.1838,-0.113,0.059,0.3996,0.6392,0.7302,0.7268,0.71,0.6728,0.6256,0.774,1,0.9596,0.7572,0.4772,0.4368,0.3254,0.3828,0.5178,0.565,0.8146,0.8348,-0.3974,0.0256,0.2026,0.4154,0.2692,-0.059,-0.2026,-0.1308,-0.2794,-0.2512,-0.1692,-0.1872,-0.2488,-0.1718,0.0898,0.1846,0.3384,0.6794,0.8102,0.5744,0.582,0.8026,0.8076,0.7794,0.7512,0.5512,0.4692,0.5924,0.6334,0.7744,0.9154,1,-0.4484,-0.0656,0.2022,0.3334,0.079,-0.1486,-0.2102,-0.2584,-0.312,-0.3734,-0.2584,-0.328,-0.3066,-0.1888,-0.162,-0.0602,0.1192,0.3762,0.5876,0.7536,0.7536,0.676,0.735,0.8286,0.7752,0.6654,0.5528,0.5796,0.7028,0.8126,1,0.9974,-0.485,-0.1962,0.237,0.2644,-0.1472,-0.3106,-0.4142,-0.3924,-0.4468,-0.504,-0.3896,-0.4142,-0.5968,-0.3896,-0.2916,-0.2398,-0.1118,0.1336,0.387,0.7548,0.793,0.7166,0.7466,0.733,0.7956,0.6894,0.5122,0.613,0.6104,0.7302,0.921,1,-0.4466,-0.05,0.4666,0.39,-0.0166,-0.4566,-0.5766,-0.54,-0.5334,-0.64,-0.5966,-0.7166,-0.5834,-0.5666,-0.4334,-0.3934,-0.19,0.1034,0.4634,0.81,0.9366,0.8734,0.8566,0.8966,0.8834,0.7066,0.43,0.5066,0.5166,0.64,0.8566,1,-0.3664,0.5258,0.8492,0.569,0,-0.5906,-0.694,-0.7456,-0.7242,-0.7242,-0.6638,-0.7414,-0.8146,-0.6206,-0.6206,-0.513,-0.1896,-0.0172,0.3318,0.8492,1,0.7932,0.763,0.638,0.6206,0.2672,0.0302,0.1034,0.0948,0.1508,0.4914,0.763,-0.02,0.5556,0.8348,0.379,-0.1112,-0.9544,-0.9374,-0.886,-0.7892,-0.584,-0.51,-0.4986,-0.5612,-0.5442,-0.3846,-0.3904,-0.1852,-0.077,0.4302,0.8462,0.8974,0.6468,0.9772,1,0.6296,0.3504,0.134,0.1852,0.1452,0.2364,0.4986,0.6012,0,0.3478,0.7392,0.826,0.3478,-0.1304,-0.087,-0.2174,-0.2608,0,-0.087,0.1304,0.2608,0.7826,1,0.826,0.4782,0.5652,0.4348,0.5652,0.7826,0.913,0.6956,0.3478,0.2608,0.3914,0.2608,0.3914,0.3914,0.4782,0.7392,0.6522,-0.1764,0.2156,0.647,0.7648,0.3334,-0.0588,-0.1764,-0.3334,-0.255,-0.1764,-0.098,-0.0196,0.0588,0.3726,0.804,0.8824,0.6862,0.647,0.5686,0.4902,0.7254,1,1,0.4902,0.2942,0.255,0.1764,0.3334,0.4118,0.3334,0.6862,0.647,-0.5164,-0.1428,0.4286,0.3626,-0.033,-0.4726,-0.6484,-0.6044,-0.5164,-0.6484,-0.6704,-0.7582,-0.6044,-0.6044,-0.5824,-0.4066,-0.1208,0.055,0.2308,0.912,1,0.8462,0.8462,0.8242,0.8462,0.6044,0.4946,0.5384,0.4506,0.6704,0.7362,1,-0.9886,-0.9832,-0.984,-0.9772,-0.9596,-0.9184,-0.8438,-0.769,-0.715,-0.6394,-0.391,0.5648,0.7378,0.0282,-0.2568,-0.3598,-0.4482,-0.4436,-0.452,-0.4542,-0.5426,-0.8124,-0.8772,-0.9246,-0.958,-0.9764,-0.9818,-1,-1,-1,-1,-1,-1,-0.9846,-0.9794,-0.948,-0.8366,-0.6558,-0.5712,-0.4996,-0.3134,-0.3964,-0.2906,-0.3258,0.0986,0.6772,0.8982,0.6566,0.4066,0.269,0.04,-0.289,-0.5726,-0.7174,-0.8882,-0.9254,-0.949,-0.9608,-0.966,-0.9652,-1,-1,-1,-1,-1,-1,-0.9534,-0.9168,-0.1634,1,1,1,1,1,1,1,0.38,-0.6376,-0.49,0.0774,0.1474,0.115,0.125,-0.0776,-0.5226,-0.7356,-0.9378,-0.8112,-0.8734,-0.7334,-0.6268,-0.6268,-0.6068,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,0.4858,-0.8286,-0.8858,-0.9142,-0.7714,-0.0286,1,1,0.4572,-0.7714,-0.8858,-1,-0.9714,-0.2286,0.1428,-0.0858,-0.3142,-0.7428,-0.5714,-0.6572,-0.8,-1,-0.5714,-1,-1,-1,-1,-1,-1,0.1486,0.19,0.2102,0.262,0.2904,0.3386,0.384,0.4272,0.4356,0.0486,-0.2942,-0.2284,-0.1976,-0.104,-0.0358,0.0666,0.1702,0.3462,0.5228,0.6058,-0.5866,-0.047,-0.3508,-0.2624,0.0708,0.356,0.611,-0.2416,-0.9208,-0.7924,-0.7076,-0.776,-0.5218,-0.3852,-0.2514,-0.0602,-0.1748,-0.1092,0.1174,0.1448,-0.0082,0.0382,0.0164,0.112,0.1968,0.295,0.2786,0.5,0.4072,0.5874,0.6284,0.4208,0.8032,0.9426,0.8826,1,0.7022,0.7678,0.5574,0.2814,-0.3398,-0.3544,-0.7646,-0.881,-0.6918,-0.6286,-0.3738,-0.284,-0.2888,-0.3034,-0.131,-0.1554,-0.1602,-0.0946,-0.1068,-0.0606,0.1166,0.216,0.1918,0.2766,0.415,0.5292,0.597,0.7622,0.7888,0.903,0.9878,1,0.8616,0.886,0.9054,0.5632,-0.1562,-0.1588,-0.5502,-0.845,-0.7764,-0.4918,-0.1562,0.019,-0.3392,-0.3164,-0.0928,-0.1792,-0.3468,-0.2452,-0.202,-0.0572,0.0852,0.1944,0.174,0.2478,0.2858,0.2884,0.3952,0.4358,0.6442,0.9364,1,0.944,0.8526,0.8222,0.8628,0.5528,-0.8926,-1,1,-1,1,-1,-1,0.8,1,-0.2294,-0.0642,0.0276,0.0826,-0.0276,0.101,0.3212,1,0.9082,0.6146,0.9816,0.9082,0.3944,0.5596,0.5596,0.1926,0.266,0.3212,0.3212,0.4678,0.101,0.1744,0.0826,0.0642,-0.0092,-0.0458,0.1744,-0.0642,0.0826,-0.3578,-0.0276,-0.7432,'26'
-0.5552,-0.2636,0.1428,0.3608,0.5906,0.5052,0.4728,0.2606,0.1134,-0.0928,0.0958,0.022,0.022,0.2312,0.2812,0.4904,0.7556,1,0.9794,0.782,0.7908,0.838,0.8498,0.9322,0.9234,0.8822,0.7644,0.6612,0.679,0.6702,0.7172,0.8086,-0.5056,-0.2586,0.1164,0.446,0.5312,0.6022,0.4518,0.284,-0.1732,0.054,0.0312,-0.0654,0.1874,0.162,0.2614,0.463,0.7556,0.821,1,0.838,0.8324,0.7386,0.9574,0.9176,0.946,0.9318,0.8664,0.7728,0.6392,0.6704,0.7614,0.75,-0.4688,-0.2556,0.0284,0.5398,0.554,0.483,0.213,0.1392,-0.179,0.0028,-0.0994,0.0056,0.125,0.1932,0.2244,0.4176,0.6222,0.9432,1,0.909,0.7642,0.733,0.8268,0.9488,0.9376,0.8608,0.838,0.7444,0.5966,0.6336,0.6762,0.7386,-0.5912,-0.2456,0.0048,0.6798,0.6006,0.2742,0.0302,-0.2836,-0.2868,-0.2172,-0.2614,-0.1538,-0.1094,-0.0586,-0.122,0.2076,0.3914,0.7432,1,0.981,0.8352,0.6482,0.6704,0.8986,0.87,0.7654,0.8478,0.5912,0.4896,0.4612,0.6134,0.6292,-0.6336,-0.1802,0.41,0.6956,0.4752,-0.1428,-0.1678,-0.3788,-0.2578,-0.3696,-0.4534,-0.2236,-0.1024,-0.2204,-0.059,0.0684,0.1584,0.5218,0.823,1,0.8726,0.7018,0.7268,0.6678,0.7858,0.91,0.8386,0.5994,0.5808,0.5,0.5622,0.733,-0.9934,-0.2254,0.4084,0.5196,0.0718,-0.2908,-0.4738,-0.4772,-0.4738,-0.6406,-0.6536,-0.3726,-0.2876,-0.3006,-0.2288,-0.134,0.0032,0.3202,0.7288,1,0.951,0.817,0.7254,0.781,0.8202,0.9184,0.9314,0.866,0.6896,0.7124,0.7942,0.8072,-0.9372,-0.2034,0.086,-0.0524,-0.2998,-0.6268,-0.543,-0.501,-0.8574,-0.7736,-0.4926,-0.5598,-0.3418,-0.4004,-0.5598,-0.5932,-0.5974,-0.1908,0.0482,0.6016,1,0.8952,0.4256,0.5808,0.522,0.61,0.7442,0.5514,0.3166,0.3418,0.3376,0.4842,-0.6,-0.3454,0.091,0.2728,0.6,0.5636,0.3818,0.2728,0.1272,-0.3818,0.091,-0.0182,-0.1272,0.2,0.309,0.4182,0.8182,1,1,0.709,0.7454,0.8182,0.7818,0.9636,0.891,0.6728,0.709,0.491,0.4182,0.5272,0.5636,0.6,-0.6,-0.3454,0.0182,0.2728,0.5272,0.4546,0.1636,0.0546,0.091,-0.0546,-0.0182,-0.0182,-0.0182,0.1636,0.3454,0.491,0.7818,1,1,0.7818,0.7818,0.7818,0.9272,0.9636,0.9272,0.891,0.891,0.7454,0.709,0.7454,0.7454,0.8546,-0.6322,-0.3104,-0.0804,0.6092,0.5172,0.2644,0.1034,-0.1264,-0.3794,-0.2414,-0.2184,-0.2414,-0.1724,-0.0344,-0.1724,0.2414,0.4482,0.7242,0.977,0.908,0.862,0.7702,0.5862,1,1,0.6322,0.816,0.6322,0.4712,0.3794,0.7012,0.5172,-1,-1,-1,-1,-1,-1,-1,-1,-0.946,-0.9206,-0.5294,0.5454,0.8252,0.7838,0.6916,0.6724,0.7838,0.9174,0.6216,0.151,-0.3896,-0.6534,-0.7424,-0.8664,-0.9014,-0.8792,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9784,-0.977,-0.4634,0.3768,0.4172,0.556,0.3198,0.0416,-0.1726,-0.2342,-0.3574,-0.3428,-0.5474,-0.8628,-0.9404,-0.9436,-0.9592,-0.9592,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.9134,-0.61,-0.2912,-0.3868,-0.4868,-0.509,-0.3956,-0.3712,-0.572,-0.466,-0.256,-0.142,-0.366,-0.5534,-0.2768,-0.6168,-0.5668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6572,1,1,1,-1,-1,-1,-0.9428,-0.8858,-0.9142,-1,-0.9714,0.4286,0.7428,-0.5428,-0.7428,-0.6572,-0.2,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.8666,0.428,0.4294,0.4708,0.4812,0.5062,0.5134,0.54,0.5538,0.5884,0.6948,-0.3734,0.1058,-0.4598,0.08,0.6954,0.3588,0.1516,1,-0.5556,-0.074,0.1482,0.1112,0.037,0.074,0.3334,0.5556,0.8888,0.926,0.8518,0.7408,0.7038,0.5926,0.6666,0.8518,0.963,1,0.8518,0.7408,0.4814,0.4074,0.3704,0.3334,0.2222,-0.074,-0.2222,-0.4074,-0.4074,-0.5186,-0.6296,-0.6296,-0.307,-0.01,0.4258,0.2278,-0.0298,0.01,0.109,0.1684,0.9208,1,0.4456,0.6238,0.6436,0.505,0.3268,0.6238,0.8416,0.9604,0.6238,0.604,0.3268,0.6436,0.6238,0.3268,-0.0694,-0.0694,-0.1486,-0.1882,-0.2278,-0.2674,-0.3268,-0.703,-0.115,0.3452,0.593,0.6106,0.1504,0.2036,0.3098,0.3806,0.7522,0.8408,0.8762,0.9292,1,0.77,0.7522,0.77,0.7346,0.9116,0.7522,0.5576,0.5752,0.7346,0.7522,0.4336,0.2566,-0.0796,-0.239,-0.3628,-0.3098,-0.1858,-0.5044,-0.5222,0.8252,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.3544,-0.1182,0.0078,0.0708,0.0552,-0.2598,0.0708,0.0552,0.244,0.2756,0.6062,0.433,0.7322,1,0.748,0.7166,0.4174,0.2598,0.4488,0.559,0.433,0.5434,0.4646,0.496,0.7322,0.4646,0.307,0.4174,0.0866,0.1496,0.0394,-0.1024,'1'
-0.5896,-0.31,-0.0364,0.2228,0.441,0.4324,0.4848,0.147,0.0394,0.08,0.0742,0.2082,0.281,0.4178,0.572,0.738,1,0.9622,0.706,0.7992,0.8136,0.7904,0.9302,0.9388,0.8748,0.7148,0.607,0.671,0.639,0.6536,0.8108,0.9126,-0.558,-0.2878,0.0504,0.2796,0.4652,0.4598,0.4734,0.0804,-0.0204,0.0286,0.0696,0.176,0.2524,0.4052,0.4488,0.547,1,0.97,0.6808,0.8118,0.8062,0.7844,0.8826,0.91,0.8608,0.738,0.5688,0.6862,0.6016,0.5716,0.7736,0.8036,-0.5078,-0.2518,0.1948,0.4736,0.6386,0.4168,0.3798,0.1664,-0.0072,-0.0982,0.1124,0.0954,0.1436,0.377,0.3286,0.4766,0.9004,0.8264,0.909,0.815,0.7724,0.781,0.7838,0.7696,1,0.818,0.5306,0.633,0.5136,0.4652,0.6244,0.7468,-0.5164,-0.2168,0.273,0.5944,0.7316,0.3604,0.1544,0.1138,-0.22,-0.142,-0.0296,0.0328,0.0452,0.1514,0.301,0.3416,0.5944,0.9938,0.9532,0.8596,0.869,0.766,0.7224,1,0.9688,0.869,0.6848,0.635,0.5912,0.4322,0.6288,0.7224,-0.5202,-0.2818,0.245,0.4698,0.5302,-0.01,-0.1778,-0.2718,-0.3994,-0.312,-0.3422,-0.2416,-0.0268,-0.0436,0.0234,0.1174,0.396,0.6912,0.9966,1,0.8624,0.6912,0.6174,0.8624,0.9496,0.8256,0.6778,0.7282,0.6208,0.4362,0.6006,0.6308,-0.5506,-0.25,0.0878,0.4054,0.3614,-0.1216,-0.3378,-0.3582,-0.4594,-0.4256,-0.3784,-0.2668,-0.2972,-0.169,-0.0608,0.0338,0.1656,0.5034,0.804,1,0.9324,0.7432,0.6182,0.8142,0.9256,0.8582,0.8108,0.8074,0.6452,0.5406,0.6418,0.804,-0.892,-0.412,-0.008,0.212,-0.116,-0.576,-0.708,-0.644,-0.684,-0.66,-0.808,-0.396,-0.228,-0.276,-0.532,-0.288,-0.156,0.048,0.632,0.896,1,0.732,0.504,0.616,0.724,0.72,0.804,0.844,0.536,0.512,0.588,0.792,-0.6086,-0.087,-0.0434,0.087,0.3478,0.2608,0.3478,0.3478,0.087,0.174,0.1304,0.2608,0.3478,0.3044,0.6086,0.7392,0.8696,0.5652,0.826,0.6956,0.7826,0.7392,0.913,0.913,1,0.6956,0.7392,0.6522,0.6956,0.7392,0.7392,0.826,-0.647,-0.3334,-0.0588,0.2942,0.5686,0.5686,0.4902,0.1764,0.1372,0.1372,0.0588,0.2942,0.2942,0.3334,0.6078,0.804,0.9216,0.9216,0.804,0.7254,0.8432,0.804,0.9216,0.9608,0.9216,0.6862,0.6078,0.6862,0.6862,0.647,0.804,1,-0.5862,-0.1954,0.2184,0.5862,0.7242,0.2644,0.0344,0.0114,-0.3564,-0.2414,-0.1264,-0.1494,0.0114,0.0574,0.1724,0.2874,0.4942,0.839,0.908,0.954,0.885,0.6782,0.6782,1,0.931,0.931,0.7242,0.5862,0.6092,0.4252,0.7242,0.7242,-1,-1,-1,-1,-1,-1,-1,-1,-0.9016,-0.9434,-0.7616,0.2698,0.5738,0.7198,0.9434,0.9136,0.7288,0.3324,-0.07,-0.234,-0.3384,-0.6304,-0.7556,-0.7944,-0.7974,-0.8002,-0.8628,-0.833,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9796,-0.9828,-0.6584,0.2156,0.8142,0.6404,0.1488,-0.035,-0.2272,-0.388,-0.5108,-0.528,-0.5914,-0.7656,-0.8968,-0.9022,-0.9574,-0.954,-0.9598,-0.9578,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8834,-0.94,-0.6034,-0.2776,-0.1912,-0.2446,-0.2712,-0.3134,-0.389,-0.3624,-0.3178,-0.4556,-0.4046,-0.5112,-0.57,-0.54,-0.9134,-0.86,-0.82,-0.88,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,-0.7142,-0.7142,-0.9142,-0.8572,-0.8,-0.6286,-0.9714,-0.9714,-0.6858,0.5714,-0.1428,0.1714,-0.2286,-0.9714,-0.9714,-0.4572,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.932,0.2496,0.259,0.244,0.244,0.244,0.252,0.2578,0.2526,0.3252,0.5322,-0.52,0.0352,-0.442,-0.391,0.3262,0.4148,0.6124,1,-0.0952,0.1904,0.3334,0.381,0.4762,0.3334,0.5714,0.762,0.9048,0.9048,0.9524,1,0.9524,1,0.9524,0.9524,0.9048,0.8096,0.8096,0.619,0.6666,0.619,0.4286,0.3334,0.381,0.0952,0.1428,0.1904,0.0476,-0.238,-0.2858,-0.3334,-0.4258,-0.3466,0.4258,0.4456,0.2872,0.1486,0.5248,0.6832,0.703,0.8812,1,0.9802,0.8614,0.802,0.8218,0.7624,0.8614,0.9208,0.901,0.6238,0.2872,0.7624,0.7624,0.3862,0.1486,-0.0496,-0.406,-0.5248,-0.3862,-0.406,-0.4852,-0.604,-0.44,-0.18,0.3,0.26,-0.06,-0.06,0.34,0.7,0.76,0.76,0.8,1,0.96,0.74,0.68,0.74,0.92,0.9,0.7,0.46,0.28,0.56,0.76,0.58,0.34,0.04,-0.38,-0.48,-0.18,-0.18,-0.28,-0.38,1,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.7094,-0.1112,-0.1966,-0.4018,-0.3504,-0.5556,-0.1966,-0.5042,-0.077,0.4188,1,0.5214,0.1794,0.3846,0.2136,0.2308,0.3504,0.2308,0.094,-0.1624,-0.2308,-0.1624,0.1112,0.1966,0.1112,-0.2308,-0.5556,-0.2478,-0.1452,-0.094,-0.2308,-0.3676,'1'
-0.3922,-0.0168,0.5046,0.5834,0.0282,-0.5722,-0.6322,-0.3884,-0.3508,-0.3134,-0.3208,-0.2196,-0.2682,-0.1894,0.0844,0.0844,0.4296,0.7862,0.925,0.865,0.865,0.8574,0.865,0.9962,0.8236,0.8198,0.6924,0.5798,0.606,0.7036,0.8012,1,-0.5134,-0.141,0.3088,0.3926,-0.0872,-0.6242,-0.6812,-0.5536,-0.4766,-0.3658,-0.4396,-0.4598,-0.2684,-0.2214,-0.1342,-0.1242,0.0638,0.406,0.4932,0.9228,0.8758,0.4798,0.5336,0.5906,0.6744,0.7818,1,0.8758,0.8288,0.7852,0.7248,0.8724,-0.3742,-0.0374,0.3198,0.3742,-0.2414,-0.5918,-0.6054,-0.7722,-0.5986,-0.3844,-0.466,-0.398,-0.262,-0.3266,-0.2108,-0.0816,-0.0884,0.1666,0.568,0.7278,0.9116,0.8912,0.5204,0.517,0.5816,0.6904,0.8266,1,0.9286,0.9558,0.9354,0.8742,-0.3068,0.0546,0.5294,0.5294,-0.2436,-0.4748,-0.6302,-0.6134,-0.6806,-0.6134,-0.5294,-0.479,-0.416,-0.29,-0.3068,-0.2478,-0.0714,0.0882,0.3614,0.8992,1,0.9958,0.6596,0.6134,0.4622,0.6806,0.8908,0.8992,0.9832,0.9622,0.8614,0.8782,-0.3666,0.0872,0.6808,0.576,-0.0324,-0.591,-0.5112,-0.4664,-0.7306,-0.7806,-0.7806,-0.6558,-0.4962,-0.5112,-0.4664,-0.3866,-0.2868,-0.2418,0.1122,0.4614,0.8104,0.8754,0.6708,0.187,0.3916,0.4114,0.621,0.8604,1,0.98,0.8354,0.9252,-0.5652,0.1406,0.4782,0.1356,-0.463,-0.6572,-0.7238,-0.7392,-0.7648,-0.9898,-0.8364,-0.5448,-0.4476,-0.4168,-0.7186,-0.4578,-0.4168,-0.3862,0.0128,0.5806,1,0.954,0.5346,0.4732,0.3402,0.3402,0.8006,0.8926,0.7954,0.9642,0.9488,0.8466,-0.9366,0.0342,0.1414,-0.3414,-0.6098,-0.683,-0.844,-0.6488,-0.6976,-0.5268,-0.4536,-0.4878,-0.2926,-0.4,-0.4536,-0.3658,-0.283,-0.356,0.0244,0.517,0.9854,1,0.6,0.3854,0.3708,0.4732,0.8292,0.8976,0.8,0.8146,0.8342,0.756,-0.36,-0.04,0.48,0.52,-0.04,-0.56,-0.36,-0.48,-0.24,-0.16,-0.12,-0.24,-0.16,-0.12,0.04,0.28,0.68,0.72,0.8,0.76,0.84,0.92,1,0.96,0.48,0.28,0.48,0.28,0.44,0.76,0.96,0.96,-0.2962,0.074,0.4814,0.5186,0.074,-0.5926,-0.6296,-0.2592,-0.2222,-0.1852,-0.2222,-0.1482,-0.1112,-0.074,0.074,0.2222,0.3704,0.7778,0.8888,0.8148,0.5926,0.6296,0.8888,1,0.8888,0.4814,0.5556,0.4444,0.4074,0.5926,0.7778,0.926,-0.0926,0.2038,0.5186,0.5186,-0.037,-0.2222,-0.1482,-0.1482,-0.1852,-0.1666,-0.2408,-0.2222,-0.2038,0,-0.074,-0.0926,0.1296,0.1852,0.5186,0.8518,0.9074,0.8888,0.7778,0.7038,0.5556,0.7592,0.926,0.8334,0.8704,1,0.8518,0.8334,-1,-1,-1,-1,-1,-1,-1,-1,-0.8462,-0.82,-0.5072,0.8592,0.8774,0.7418,0.382,0.0848,0.0092,-0.0014,-0.262,-0.369,-0.5776,-0.747,-0.841,-0.841,-0.8618,-0.8984,-0.9218,-0.9426,-0.927,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.95,-0.9454,-0.727,0.1888,0.6758,0.9284,0.6294,0.2522,-0.3028,-0.6096,-0.7004,-0.7196,-0.7026,-0.8062,-0.9064,-0.9424,-0.947,-0.9546,-0.9622,-0.965,-0.9628,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9168,-0.92,-0.7068,-0.3944,-0.3316,-0.2316,-0.0826,-0.0826,-0.22,-0.54,-0.5,-0.435,-0.265,-0.2876,-0.4068,-0.78,-0.8334,-0.8068,-0.8134,-0.94,-0.9868,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,0.4286,-0.5428,-0.7428,-0.6286,-0.4858,-0.8,-0.9142,-1,-0.9142,0.0858,-0.0858,-0.4,-0.8572,-1,-0.8858,-0.9142,-0.3142,-1,-1,-1,-1,-0.1956,-0.181,-0.1754,-0.1574,-0.1682,-0.193,-0.1974,-0.1978,-0.2608,-0.2328,0.5664,0.5962,0.6192,0.68,0.7264,0.7656,0.7984,0.817,0.8506,0.802,-0.5734,-0.1176,-0.7778,-0.0346,0.1818,0.4112,0.5792,1,0.2432,0.2972,0.3514,0.2972,0.5136,0.6216,1,0.7298,0.7298,0.7298,0.946,1,0.8918,0.7838,0.7298,0.8378,0.7298,0.8918,0.946,1,1,0.8918,0.6756,0.7298,0.7838,0.7838,0.7298,0.6216,0.4594,0.3514,-0.1352,-0.1892,0.2972,0.2702,0.1352,0.1892,0.1622,0.4864,0.8648,0.8918,0.8108,0.7838,0.8918,0.7838,0.8108,0.8108,0.5406,1,0.6486,0.6756,0.8108,0.8918,0.7028,0.7028,0.4054,0.5946,0.5676,0.7298,0.6486,0.6756,0.3514,0.4054,0.2972,0,0.2336,0.4766,0.4392,-0.0842,0.0468,-0.028,0.1962,0.3644,0.8878,0.7944,0.8878,0.9814,0.5328,0.514,0.6822,1,0.701,0.6822,0.5888,0.6636,0.4954,0.1962,-0.1962,-0.0842,-0.4018,-0.4018,-0.271,-0.0468,-0.0842,0.1402,-0.0842,-0.3084,0.393,-1,-1,1,-0.8,-0.8,-1,-0.8334,-1,-0.3904,0.0096,-0.3524,-0.3904,-0.4096,-0.2,-0.162,-0.219,-0.219,-0.0096,1,0.5048,0.4096,0.8858,0.7142,0.3524,0.619,0.7904,0.3334,0.0666,0.3334,0.5048,0.638,0.4096,0.1428,-0.2762,-0.3524,-0.0476,0.2572,0.3334,0.3142,-0.162,'2'
-0.3732,0.0582,0.6096,0.7158,0.2432,-0.411,-0.3904,-0.3458,-0.2124,-0.3562,-0.3732,-0.209,-0.3048,-0.1062,0.1542,0.1918,0.6404,0.7876,1,0.863,0.7602,0.7328,0.7398,0.952,0.8494,0.8938,0.7054,0.6644,0.6746,0.6746,0.8288,0.9658,-0.4408,-0.0278,0.4494,0.5724,0.2006,-0.4524,-0.4816,-0.4524,-0.3294,-0.4114,-0.3558,-0.1654,-0.2064,-0.2064,-0.1274,0.0102,0.1538,0.3206,0.8418,0.7834,0.8682,0.7072,0.6632,0.6632,0.675,0.962,0.8682,1,0.8244,0.8068,0.7746,0.7598,-0.4562,-0.0644,0.3304,0.4298,-0.0234,-0.4094,-0.503,-0.4678,-0.3976,-0.4502,-0.4708,-0.3714,-0.2894,-0.2106,-0.2134,-0.234,-0.0204,0.2164,0.3626,0.807,0.8216,0.696,0.5584,0.5438,0.6784,0.69,0.848,0.9182,1,0.8012,0.7632,0.8772,-0.4462,-0.0714,0.3666,0.413,-0.2902,-0.592,-0.6518,-0.6452,-0.6352,-0.539,-0.592,-0.5854,-0.4296,-0.4792,-0.3432,-0.2206,-0.1078,0.0514,0.3666,0.675,0.927,0.9402,0.5422,0.5324,0.6186,0.6484,0.791,1,0.9834,0.8044,0.7248,0.718,-0.35,0.0346,0.673,0.6038,-0.1538,-0.5116,-0.5884,-0.5,-0.6846,-0.6654,-0.5538,-0.5808,-0.4192,-0.3462,-0.4692,-0.4692,-0.0692,-0.0576,0.1154,0.5962,1,0.9846,0.5192,0.45,0.523,0.4924,0.8846,0.9808,0.723,0.6,0.55,0.6692,-0.3796,0.3194,0.7268,0.4028,-0.4074,-0.6944,-0.5046,-0.4306,-0.5926,-0.537,-0.5232,-0.5416,-0.4444,-0.5462,-0.5186,-0.5648,-0.4676,-0.3612,-0.0602,0.5602,0.8842,0.9538,0.6204,0.3658,0.7038,0.662,0.875,1,0.7176,0.6574,0.3842,0.6482,-0.4104,0.0612,0.1292,-0.1292,-0.619,-0.7824,-0.5012,-0.4694,-0.56,-0.6146,-0.6236,-0.5464,-0.483,-0.424,-0.2926,-0.3514,-0.2608,-0.6326,-0.2654,0.1248,0.8322,1,0.542,0.347,0.3922,0.4376,0.5556,0.5736,0.3334,0.2018,0.0794,0.1882,-0.3334,0.0196,0.5294,0.6078,0.2156,-0.3334,-0.255,-0.2942,-0.2156,-0.1764,-0.4118,-0.2156,-0.1372,-0.2156,0.255,0.451,0.7254,0.9608,0.8824,0.647,0.7648,0.8432,1,0.9608,0.6862,0.5294,0.451,0.5294,0.451,0.6078,0.8432,0.9608,-0.2654,0.1428,0.6326,0.7142,0.3062,-0.4694,-0.2654,-0.5102,-0.3062,-0.1428,-0.1836,-0.2654,-0.1836,-0.0204,0.2244,0.3062,0.6326,0.8776,0.9592,0.6734,0.6734,0.796,0.7552,1,0.9184,0.7552,0.4286,0.5102,0.551,0.4286,0.7142,0.9592,-0.1852,0.2346,0.753,0.679,0.1112,-0.3086,-0.284,-0.3334,-0.3828,-0.4814,-0.5556,-0.4814,-0.284,-0.3334,-0.5556,-0.605,0.0618,0.1358,-0.0618,0.8766,1,0.679,0.7284,0.679,0.6296,0.6544,0.5802,1,0.9012,0.605,0.5308,0.3828,-1,-1,-1,-1,-1,-1,-1,-1,-0.8644,-0.8544,-0.526,0.8308,0.8506,0.5576,0.178,-0.0206,-0.237,-0.1642,-0.2724,-0.4336,-0.6284,-0.7582,-0.7818,-0.8368,-0.8662,-0.9312,-0.947,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.944,-0.9368,-0.6436,0.1472,0.8206,0.6124,0.6016,0.329,-0.0172,-0.4396,-0.6474,-0.743,-0.808,-0.8718,-0.911,-0.9134,-0.9356,-0.9614,-0.9662,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9234,-0.96,-0.63,-0.505,-0.3326,-0.3756,0.0154,0.031,0.031,-0.2868,-0.5578,-0.609,-0.4578,-0.5,-0.84,-0.5034,-0.7334,-0.9268,-0.88,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,1,1,1,0.2,-0.8286,-0.8572,-0.7714,-0.6858,-0.6858,-0.6,-0.8858,-0.7142,0.0286,-0.4572,-0.6,-0.2,-0.6858,-0.4572,-1,-1,-1,-1,-1,-1,0.0242,0.0042,0.0098,0.0056,-0.0032,0.0118,0.0056,0.0094,-0.0086,-0.1344,0.5124,0.526,0.5762,0.5772,0.6096,0.6642,0.7368,0.7854,0.8312,0.7838,-0.5866,0.0236,-0.6418,-0.0292,0.0654,0.347,0.6358,1,-0.7778,0.2222,0.1666,0.3334,0.4444,0.4444,0.6112,0.7222,0.6666,0.6112,0.7778,0.7778,0.7778,0.8888,1,1,0.7222,0.3334,0.2222,0.3334,0.6112,0.7778,0.8334,0.8334,0.8334,0.8888,0.8888,0.8334,0.7778,0.6112,0.2222,-0.1666,0.0816,0.449,0.1836,0,0.1836,0,0.3878,0.796,0.8164,0.5918,0.8776,0.8164,0.5714,0.551,0.8776,1,0.6122,0.3266,0.4898,0.4286,0.5102,0.4082,0.551,0.5714,0.551,0.551,0.7346,0.5918,0.551,0.6122,0.4286,0.102,0.1048,0.4096,0.3904,-0.1238,0.0476,-0.162,0.162,0.3334,0.8476,0.7524,0.7904,1,0.638,0.562,0.638,0.962,0.6762,0.619,0.619,0.6762,0.638,0.1428,-0.162,-0.2952,-0.3142,-0.3714,-0.1428,-0.1428,-0.1238,0.3142,0.0858,-0.3334,0.377,-1,-1,1,-1,-0.8,-0.6,-0.8334,-1,0.3334,0.3166,-0.2,-0.0666,0.05,0.0334,0.35,0.1334,0.0166,0.4666,0.4166,0.2,0.7,0.5666,0.0834,0.3,0.5666,0.6334,0.45,0.7166,1,0.9666,0.9334,0.9166,0.4334,0.4,0.15,0.2334,0.2666,0.05,0.2,-0.2334,'2'
-0.558,-0.0498,0.3002,0.4476,0.2854,-0.4844,-0.4622,-0.5174,-0.2634,-0.3002,-0.1712,-0.2118,0.0866,0.0534,0.2192,0.5728,0.6612,0.569,0.569,0.4548,0.5064,0.5912,0.6464,1,0.9594,0.4622,0.3038,0.348,0.1676,0.3076,0.3776,0.4218,-0.5814,-0.128,0.4108,0.5776,0.2636,-0.4418,-0.4534,-0.4962,-0.4962,-0.4032,-0.2674,-0.1472,-0.093,-0.1356,-0.062,0.1822,0.2946,0.6938,0.9264,0.872,0.7286,0.655,0.779,0.9574,1,0.9844,0.7868,0.6318,0.5116,0.5156,0.6318,0.69,-0.5228,-0.1372,0.3162,0.3956,-0.2206,-0.499,-0.658,-0.4314,-0.3996,-0.666,-0.503,-0.3558,-0.3798,-0.3996,-0.2008,-0.0736,0.0696,0.2564,0.6382,1,0.9086,0.678,0.6898,0.674,0.837,0.8846,0.8846,0.654,0.5268,0.511,0.5468,0.5626,-0.483,-0.1066,0.347,0.3378,-0.3198,-0.5828,-0.5874,-0.4876,-0.6554,-0.8458,-0.6734,-0.5148,-0.4196,-0.5238,-0.2698,-0.152,-0.1928,0.0114,0.483,0.746,1,0.8912,0.678,0.7188,0.6916,0.8912,0.941,0.882,0.5284,0.542,0.6146,0.5828,-0.5092,-0.0496,0.4934,0.3212,-0.2376,-0.7336,-0.5248,-0.457,-0.8434,-0.8642,-0.6866,-0.671,-0.4204,-0.4934,-0.4204,-0.5248,-0.457,-0.0914,0.2114,0.7284,1,0.9164,0.6032,0.504,0.671,0.9008,1,0.8224,0.457,0.504,0.4046,0.5874,-0.611,0.1562,0.4136,0.0794,-0.5726,-0.8356,-0.7042,-0.6054,-0.9232,-0.8466,-0.7808,-0.5836,-0.4684,-0.4302,-0.3206,-0.3754,-0.2548,-0.2,0.2054,0.7698,1,0.8466,0.6494,0.5726,0.5836,0.8466,0.9452,0.6274,0.5616,0.5452,0.4466,0.6328,-0.936,-0.064,0.122,-0.2326,-0.8662,-0.8314,-0.7906,-0.7558,-0.7094,-0.7268,-0.6628,-0.5988,-0.3896,-0.5582,-0.3604,-0.5582,-0.5174,-0.3662,-0.2616,0.4594,0.971,1,0.3488,0.4012,0.5232,0.7152,0.721,0.5232,0.3488,0.2094,0.2674,0.3896,-0.2364,0.091,0.4182,0.4546,0.3818,-0.0546,-0.0182,-0.0182,0.0182,0.0546,0.1636,0.0546,0.1272,0.5272,0.5636,0.8182,0.8182,0.7454,0.3454,0.4546,0.709,0.6,0.9272,1,0.9636,0.4546,0.491,0.4546,0.309,0.3818,0.4546,0.5636,-0.6154,0,0.3462,0.5384,0.3846,-0.5384,-0.3846,-0.3462,-0.1924,-0.1924,-0.0384,-0.1154,0.1924,0.1154,0.3462,0.6924,0.8846,0.7308,0.423,0.423,0.5384,0.6154,0.6924,1,0.9616,0.423,0.3846,0.3462,0.1538,0.3076,0.2692,0.423,-0.2372,0.0722,0.464,0.4432,-0.0516,-0.2578,-0.2784,-0.2164,-0.567,-0.5876,-0.4846,-0.0928,-0.1134,-0.3402,-0.0516,-0.031,-0.0516,0.2578,0.5052,0.9588,0.9794,0.7526,0.835,0.8144,0.732,0.9588,1,0.7938,0.6702,0.4846,0.6702,0.6082,-0.9368,-0.8978,-0.9248,-0.9338,-0.9188,-0.9368,-0.9098,-0.9338,-0.9248,-0.9158,-0.6572,0.7504,0.967,0.7324,0.2722,0.0466,-0.1098,-0.0526,-0.2662,-0.3834,-0.5248,-0.6512,-0.7804,-0.7534,-0.7984,-0.8796,-0.9008,-0.9308,-0.9308,-1,-1,-1,-1,-0.9176,-0.8092,-0.709,-0.5276,-0.4406,-0.4396,-0.2114,-0.1028,-0.1834,-0.3826,-0.6212,0.2778,0.957,0.9168,0.4566,0.101,-0.1366,-0.3966,-0.552,-0.5922,-0.6024,-0.7446,-0.8802,-0.8784,-0.8924,-0.9204,-0.9382,-0.9448,-0.956,-1,-1,-1,-1,-0.4968,0.78,1,1,1,1,1,1,1,1,0.5632,-0.44,-0.2116,-0.0944,-0.1258,0.0284,-0.0086,-0.2658,-0.2516,-0.3572,-0.2316,-0.323,-0.7668,-0.6368,-0.6534,-0.72,-0.7034,-0.8868,-0.9268,-1,-1,-1,-1,1,1,0,-0.8286,-0.9142,-0.8286,-0.6286,-0.7428,-0.8,0.4,1,1,-0.0286,-0.7142,-0.8286,-0.8572,-0.6286,-0.6572,-0.9142,-1,-0.6,0.8572,0.5142,-0.7714,-0.9142,-0.9142,-0.9428,-0.9142,-0.3142,-1,-1,-1,-1,0.2058,0.17,0.1404,0.174,0.1728,0.13,0.1638,0.1628,0.0856,-0.047,0.1398,0.1724,0.2312,0.3056,0.3358,0.422,0.5132,0.601,0.7062,0.7762,-0.56,-0.2118,-0.7072,-0.2104,0.2536,0.8138,0.9906,-0.075,-0.8098,-0.749,-0.5868,-0.498,-0.4626,-0.379,-0.4196,-0.232,-0.1154,-0.0342,-0.2548,-0.0444,0.0368,-0.0064,-0.1102,0.0164,-0.1026,0.09,0.024,0.1788,0.2168,0.45,0.521,0.6122,0.8936,1,0.9442,0.7566,0.7922,0.9214,0.858,0.384,-0.7992,-0.6648,-0.6538,-0.4272,-0.512,-0.4512,-0.3058,-0.3296,-0.2376,-0.1916,-0.0828,-0.0294,0,0.0736,-0.0682,0.0848,-0.1068,-0.0202,0.0644,0.1878,0.2744,0.4494,0.5562,0.6446,0.6244,0.7698,0.884,0.9042,0.873,1,0.906,0.7256,-0.9148,-0.7804,-0.7698,-0.5736,-0.4328,-0.3944,-0.3902,0.0106,0.081,-0.0298,-0.017,0.3092,0.3816,0.2132,0.1428,0.2026,0.194,0.2794,0.2558,0.4392,0.4414,0.4626,0.6012,0.8464,0.8144,0.727,0.8316,0.8592,1,0.9894,0.6674,0.5096,-0.856,-1,1,-1,-1,-1,-0.4,1,-1,0.2632,0.2632,-0.2422,0.0736,0.0106,0.2,0.0526,0.0736,0.179,0.1578,1,0.7474,0.7894,0.6632,0.2632,0.1158,0.4106,0.4526,0.1158,-0.1368,0.4526,0.2422,0.1578,0.1368,0.2842,-0.0106,0.1578,0.3474,0.0736,0.1368,-0.2842,-0.5368,'3'
-0.5448,0.0488,0.3374,0.5772,0.435,-0.3658,-0.3862,-0.3252,-0.0854,-0.0406,-0.1382,-0.1342,0.2398,0.2074,0.4756,0.7114,0.8536,0.6788,0.3414,0.4106,0.504,0.5692,0.6342,0.9878,1,0.4716,0.1788,0.317,0.244,0.2318,0.2154,0.3414,-0.5132,-0.0114,0.3774,0.5886,0.3812,-0.3774,-0.5886,-0.5396,-0.2416,-0.2416,-0.2416,-0.215,0.0528,-0.0264,0.1208,0.434,0.5434,0.7886,0.8566,0.6528,0.6226,0.6868,0.683,1,0.9774,0.9056,0.6188,0.5584,0.4604,0.468,0.4944,0.5208,-0.5708,-0.1496,0.2796,0.441,0.1062,-0.37,-0.6614,-0.6574,-0.5314,-0.4842,-0.374,-0.2874,-0.2756,-0.2048,-0.1812,0.004,0.1574,0.3346,0.807,0.8464,0.7914,0.6732,0.626,0.8188,1,0.9804,0.8426,0.6496,0.5748,0.5236,0.4922,0.5826,-0.4966,-0.0512,0.265,0.3542,-0.2874,-0.5278,-0.7016,-0.6392,-0.715,-0.5992,-0.5768,-0.5012,-0.4788,-0.4476,-0.274,-0.1804,-0.0378,0.2562,0.4788,0.8574,1,0.902,0.657,0.7372,0.9822,0.9866,0.942,0.8308,0.7104,0.608,0.5634,0.7104,-0.5176,-0.157,0.26,0.2552,-0.3536,-0.616,-0.5784,-0.5082,-0.8314,-0.8876,-0.8736,-0.6768,-0.6394,-0.5926,-0.5784,-0.3958,-0.349,-0.1194,0.1662,0.555,1,0.8688,0.3864,0.4848,0.7142,0.7846,0.7236,0.733,0.4708,0.4098,0.363,0.5362,-0.552,-0.1038,0.3716,0.1202,-0.5082,-0.623,-0.8852,-0.7378,-0.8852,-0.7704,-0.8196,-0.8032,-0.7378,-0.7596,-0.6284,-0.4808,-0.4426,-0.1092,0.071,0.6558,1,0.8142,0.4808,0.6558,0.6066,0.8088,0.9836,0.9072,0.5738,0.4972,0.541,0.5684,-0.7284,-0.0062,0.2284,-0.1604,-0.7038,-0.753,-0.7038,-0.679,-0.6666,-0.6976,-0.4814,-0.426,-0.5062,-0.5988,-0.5926,-0.5802,-0.4074,-0.4012,0.0062,0.605,1,0.895,0.5494,0.568,0.6852,0.7716,0.8642,0.6544,0.4136,0.3766,0.3518,0.5556,-0.0944,0.3962,0.3208,0.5094,0.5094,0.3208,0.2076,0.0188,0.2452,0.3208,0.1698,0.283,0.434,0.5094,0.8868,0.9622,0.849,0.5472,0.6604,0.6604,0.6982,0.6604,0.9622,1,1,0.849,0.4716,0.434,0.5472,0.3962,0.3962,0.434,-0.7022,-0.0212,0.3192,0.5744,0.3618,-0.4468,-0.4468,-0.3618,-0.0638,-0.0638,-0.1064,-0.1914,0.1914,0.234,0.3618,0.617,0.7446,0.3618,0.3192,0.2766,0.234,0.532,0.6596,1,0.8724,0.2766,-0.0638,0.234,0.1064,0.1914,0.1064,0.149,-0.4444,-0.0888,0.2888,0.3556,-0.3112,-0.3112,-0.4888,-0.5334,-0.4444,-0.3778,-0.5778,-0.5778,-0.5778,-0.5112,-0.2222,-0.2222,-0.1334,0.2444,0.5112,0.8666,0.8666,0.9334,0.6666,0.6666,0.8666,0.9556,1,0.8,0.6444,0.6444,0.6222,0.6666,-0.9258,-0.934,-0.9368,-0.9258,-0.9394,-0.934,-0.934,-0.934,-0.9312,-0.9394,-0.7744,0.5378,0.967,0.78,0.2352,-0.0152,-0.2078,-0.3452,-0.304,-0.436,-0.5186,-0.6314,-0.7716,-0.8266,-0.802,-0.8102,-0.8486,-0.8762,-0.8982,-0.945,-1,-1,-1,-0.9338,-0.9066,-0.7946,-0.6906,-0.4706,-0.3888,-0.2622,-0.0316,-0.017,-0.3402,-0.6682,0.0316,0.597,0.7664,0.8608,0.4794,0.2,-0.1932,-0.3654,-0.5222,-0.5718,-0.7032,-0.7664,-0.854,-0.891,-0.891,-0.9114,-0.9124,-0.9172,-0.9396,-1,-1,-1,-0.8668,-0.2968,0.6632,1,1,1,1,1,1,1,0.4466,-0.5486,-0.403,-0.1658,0.2342,0.0684,-0.0144,-0.0858,-0.3144,-0.2916,-0.22,-0.5086,-0.7434,-0.66,-0.85,-0.9334,-0.8334,-0.77,-0.8468,-0.9268,-1,-1,-1,0.5428,1,0.6572,0.5142,-0.6572,-0.8,-0.7714,-0.3142,-0.4858,0.3714,1,1,0.0572,-0.5428,-0.8286,-0.8858,-0.7428,-0.7714,-0.7428,-0.9714,-0.7714,-0.0572,-0.1714,-0.8,-0.7142,-0.9428,-1,-1,-0.9142,-0.8858,-1,-1,-1,0.3806,0.3772,0.3676,0.3106,0.3006,0.2852,0.2206,0.2152,0.1182,-0.0218,0.019,0.0304,0.0522,0.0622,0.077,0.1532,0.2688,0.394,0.572,0.7716,-0.6134,-0.2118,-0.6924,-0.3976,0.0102,0.3626,0.5746,-0.3,-0.7604,-0.6824,-0.5682,-0.4568,-0.4374,-0.3538,-0.3204,-0.259,-0.014,-0.103,0.0584,0.0168,0.2116,0.0864,0.1142,0.0808,0.1086,0.1728,0.273,0.2424,0.4178,0.337,0.5934,0.6602,0.869,0.883,0.7966,0.791,0.7994,1,0.713,0.4764,-0.7928,-0.6932,-0.6136,-0.4562,-0.494,-0.5638,-0.3228,-0.4104,-0.3188,-0.1654,-0.245,-0.1254,0.0718,0.0478,0.0698,-0.0976,0.1654,0.1872,0.2928,0.253,0.4224,0.3904,0.518,0.506,0.6694,0.733,0.6254,0.9164,0.9362,1,0.9462,0.7868,-0.9514,-0.819,-0.6976,-0.563,-0.5894,-0.4304,-0.3974,-0.0706,-0.0508,-0.0706,-0.0332,0.1788,0.3818,0.2604,0.32,0.192,0.2672,0.276,0.4084,0.3708,0.4614,0.4636,0.6048,0.5938,0.8146,0.766,0.7152,0.7858,0.914,1,0.6136,0.4392,-0.8872,-1,1,-1,-1,-1,-0.8,1,-1,-0.1,0.22,0.08,0.04,-0.12,-0.02,0.16,-0.2,0.2,-0.02,1,0.8,0.88,0.5,0.54,0.4,0.58,0.86,0.46,0.24,0.6,0.76,0.3,0.24,0.82,0.72,0.26,0.02,0.38,0.78,0.4,0.12,'3'
-0.4694,-0.0666,0.3916,0.5028,0.075,-0.4388,-0.5528,-0.5556,-0.4888,-0.3556,-0.2944,-0.1584,-0.1888,-0.2944,-0.0666,0.0084,0.2,0.6306,0.9222,0.8416,0.5306,0.4834,0.5222,0.6972,0.7416,1,0.9028,0.6334,0.4666,0.4694,0.4888,0.4916,-0.53,-0.1044,0.3524,0.4856,0.1618,-0.2846,-0.47,-0.53,-0.4074,-0.3968,-0.3054,-0.1384,-0.141,-0.1672,-0.2036,-0.034,0.013,0.0992,0.5692,0.637,0.9138,0.8042,0.6214,0.7232,0.7728,1,0.9582,0.6866,0.5378,0.5456,0.5692,0.598,-0.5578,-0.1216,0.303,0.4232,-0.0366,-0.4056,-0.6076,-0.5724,-0.5696,-0.6046,-0.5052,-0.3002,-0.3822,-0.426,-0.1772,-0.139,-0.1332,0.104,0.306,0.7424,0.836,0.8976,0.836,0.7188,0.6076,0.751,1,0.9912,0.5344,0.4992,0.631,0.549,-0.4814,-0.074,0.3024,0.358,-0.3024,-0.568,-0.6976,-0.5586,-0.608,-0.6914,-0.497,-0.497,-0.5,-0.534,-0.4074,-0.2314,-0.2408,-0.0556,0.2408,0.5186,0.9444,1,0.824,0.6512,0.679,0.7006,0.8148,0.8364,0.537,0.4228,0.4814,0.4476,-0.3936,-0.0252,0.6102,0.5198,-0.1156,-0.5488,-0.6788,-0.6282,-0.8122,-0.6064,-0.6498,-0.6678,-0.5342,-0.5162,-0.4838,-0.5524,-0.3322,-0.1084,-0.0398,0.5306,1,0.9892,0.74,0.6642,0.5704,0.6714,0.8086,0.7798,0.4404,0.462,0.6028,0.4332,-0.5696,0.211,0.557,0.2068,-0.422,-0.5358,-0.7764,-0.7722,-0.713,-0.5908,-0.6878,-0.5274,-0.4304,-0.4514,-0.54,-0.5486,-0.5486,-0.3882,-0.0126,0.6076,0.941,1,0.8776,0.8354,0.4726,0.9368,0.8902,0.7384,0.4852,0.4178,0.3544,0.6794,-0.547,0.1212,0.1534,-0.2768,-0.556,-0.643,-0.5058,-0.4462,-0.7986,-0.7438,-0.6156,-0.6156,-0.4554,-0.5148,-0.5606,-0.6018,-0.547,-0.5102,-0.3136,0.3226,1,0.9496,0.762,0.8352,0.6202,0.4782,0.4004,0.2724,-0.08,0.0572,0.1168,0.1212,-0.0334,0.2334,0.6,0.6334,0.1334,-0.1,-0.3,0.0334,0,-0.1334,0.1334,0.0666,0.1334,0.2,0.3,0.2334,0.5666,0.9,0.8666,0.7334,0.7334,0.6666,0.5666,0.8,0.8334,1,0.9334,0.6666,0.6334,0.5666,0.6334,0.6,-0.2632,0.1228,0.4386,0.5438,0.0878,-0.1578,-0.3334,-0.228,-0.193,-0.0878,-0.1228,-0.0526,-0.2632,-0.193,0.193,0.1578,0.2632,0.8948,1,0.7544,0.5438,0.614,0.4736,0.6492,0.8948,0.8948,0.8596,0.7544,0.5088,0.579,0.579,0.6492,-0.6304,-0.2174,0.2392,0.3478,-0.0652,-0.5434,-0.5218,-0.5218,-0.7608,-0.4566,-0.4782,-0.2174,-0.3478,-0.326,-0.2608,-0.2174,-0.1522,0.1086,0.2174,0.6522,0.7392,0.8478,0.7826,0.674,0.587,0.6522,1,1,0.413,0.5434,0.6304,0.5434,-1,-1,-1,-1,-1,-1,-1,-0.9058,-0.9382,-0.8792,-0.5228,0.4316,0.9116,0.6936,0.3166,0.0368,-0.1428,0.028,-0.1104,-0.293,-0.5346,-0.6672,-0.7378,-0.841,-0.8704,-0.9322,-0.9352,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9518,-0.9596,-0.5036,-0.2096,0.2176,0.9096,0.7166,0.4132,-0.0114,-0.335,-0.465,-0.5536,-0.6202,-0.6992,-0.8394,-0.8676,-0.9088,-0.9272,-0.9264,-0.9412,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9,-0.9334,-0.54,0.7632,-0.0912,-0.14,-0.164,-0.108,-0.074,-0.074,-0.364,-0.502,-0.696,-0.592,-0.798,-0.7568,-0.6468,-0.76,-0.7734,-0.92,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,1,1,1,1,-0.5142,-0.8858,-0.7142,-0.8,-0.9428,-0.9714,-0.9714,-0.9714,0.2,-0.0572,-0.8286,-0.9714,-0.8572,-0.7428,-0.7714,-1,-1,-1,-1,-1,-1,0.0434,0.0146,0.0042,0.0052,0.0412,0.092,0.1002,0.0686,0.0426,-0.06,0.7234,0.7652,0.7602,0.7918,0.8448,0.8834,0.9232,0.9336,0.9588,0.8812,-0.6,0.1648,-0.3,-0.3096,0.2482,0.4334,0.7596,1,-0.7986,-0.49,-0.2886,-0.2348,-0.0738,0.0604,0.1678,0.1276,0.1544,0.3558,0.3288,0.3154,0.5302,0.5436,0.5168,0.4362,0.4766,0.557,0.7046,0.8926,0.8524,0.8658,1,0.9866,0.8524,0.651,0.6108,0.6912,0.5838,0.2214,0.1946,-0.3154,-0.5634,-0.4366,-0.5634,-0.3944,-0.4648,-0.4084,-0.3944,-0.2536,-0.1268,0.0422,-0.0846,-0.0282,0.4508,0.4366,0.0422,0.2536,0.324,0.4084,0.6198,0.6902,0.986,1,0.845,0.8592,0.7888,0.831,0.7606,0.6338,0.6056,0.2254,0.1972,-0.0422,-0.1206,0.1724,0.0518,-0.5862,-0.3276,-0.3104,-0.5344,-0.1034,0.3794,0.5344,0.569,0.4482,0.8104,0.9828,0.3794,0.4656,0.6724,0.9482,0.931,1,0.931,0.6206,0.6724,0.6896,0.7586,0.6896,0.2758,0.4656,0.4482,0.5172,0.5344,0.2758,0.8702,-1,-1,1,-0.8,-1,-0.8,-0.7,-1,0.2244,0.1632,0,0.1632,0.0816,0.0816,0.2858,0.1428,0.347,0.898,0.7346,1,0.9796,0.347,0.1632,0.3062,0.7346,0.6326,0.5918,0.5102,1,0.9796,0.3878,0.1428,0.2448,0.3062,0.4898,0.7346,0.5714,0.7142,0.4082,-0.0816,'4'
-0.435,-0.0788,0.4452,0.524,0.0924,-0.5308,-0.4452,-0.291,-0.2398,-0.2774,-0.3322,-0.291,-0.1644,-0.137,0.0754,0.209,0.4486,0.7774,0.815,0.5616,0.4316,0.5376,0.541,0.6232,0.959,1,0.6678,0.5616,0.5616,0.4966,0.4898,0.6576,-0.4948,-0.1176,0.5156,0.609,0.1938,-0.4776,-0.3772,-0.3218,-0.2214,-0.3426,-0.3356,-0.3252,-0.2664,-0.1176,0.0138,0.0588,0.3114,0.5674,0.7404,0.7404,0.775,0.6298,0.5778,0.7094,0.9412,1,0.782,0.737,0.6678,0.5536,0.6056,0.7024,-0.494,-0.1104,0.4058,0.5246,0.1918,-0.3956,-0.5756,-0.45,-0.2768,-0.382,-0.3074,-0.1544,-0.185,-0.1578,-0.1444,-0.0118,0.1376,0.2564,0.725,0.6876,0.9558,0.8234,0.6298,0.7724,0.7962,1,0.932,0.8608,0.6876,0.691,0.674,0.6774,-0.5474,-0.1508,0.2702,0.3894,0.021,-0.3438,-0.6948,-0.5894,-0.435,-0.393,-0.3508,-0.2912,-0.3544,-0.2562,-0.2666,-0.1754,0,0.1264,0.5018,0.821,1,0.8106,0.4702,0.6036,0.565,0.8492,0.7474,0.8526,0.593,0.6,0.5298,0.4526,-0.5436,-0.1286,0.39,0.4772,-0.1038,-0.4564,-0.6514,-0.5892,-0.5602,-0.5228,-0.581,-0.4274,-0.4356,-0.3858,-0.1868,-0.278,-0.1494,0.1576,0.3402,0.7386,0.888,1,0.6348,0.6474,0.8298,0.7676,0.9254,0.9378,0.7966,0.581,0.502,0.581,-0.4664,-0.1694,0.4802,0.4756,-0.2576,-0.536,-0.6334,-0.5266,-0.7308,-0.7308,-0.6938,-0.5034,-0.4756,-0.4432,-0.3736,-0.4014,-0.2436,-0.0394,0.1276,0.754,1,0.9628,0.3596,0.5082,0.6102,0.573,0.8052,0.7634,0.6938,0.2436,0.3132,0.5034,-0.3858,0.338,0.7524,0.5524,-0.1666,-0.5572,-0.438,-0.3572,-0.6428,-0.7048,-0.8334,-0.4714,-0.3714,-0.3666,-0.5952,-0.4476,-0.4096,-0.1334,0,0.6904,0.9286,0.8904,0.4762,0.6096,0.7334,0.7096,1,0.9858,0.7904,0.4572,0.5476,0.5952,-0.5112,-0.1556,0.4222,0.5112,-0.1112,-0.5556,-0.4666,-0.3778,-0.4666,-0.2,-0.4222,-0.4222,-0.1556,-0.3334,-0.1556,0.4222,0.4666,0.8222,0.5556,0.5556,0.4666,0.4222,0.6,0.6888,0.7334,1,0.8222,0.4222,0.6,0.5112,0.3334,0.6888,-0.3684,-0.0526,0.4386,0.5438,0.1228,-0.4736,-0.3684,-0.2982,-0.193,-0.228,-0.2632,-0.193,-0.1578,-0.0526,0.1228,0.0526,0.5088,0.7192,0.8246,0.4036,0.4736,0.5438,0.4036,0.6842,0.965,1,0.614,0.579,0.579,0.4036,0.5438,0.7192,-0.5814,-0.2558,0.3954,0.4884,-0.0232,-0.4186,-0.4418,-0.4652,-0.4884,-0.6976,-0.5348,-0.5116,-0.3488,-0.4418,-0.1162,-0.186,-0.093,0.186,0.372,0.7906,0.5348,0.9302,0.721,0.628,1,0.9302,0.8838,0.8838,0.8838,0.5116,0.5582,0.6512,-1,-1,-1,-1,-1,-1,-1,-0.9498,-0.964,-0.939,-0.6492,0.3642,0.9044,0.9028,0.5254,0.1308,-0.0884,-0.2482,-0.408,-0.4488,-0.383,-0.48,-0.621,-0.798,-0.823,-0.8434,-0.8574,-0.8496,-0.892,-0.9232,-0.9514,-0.9546,-0.9578,-1,-1,-1,-1,-1,-1,-1,-0.9738,-0.9762,-0.8482,-0.5562,0.1536,0.8794,0.823,0.6568,0.349,0.1546,-0.1536,-0.547,-0.6806,-0.7262,-0.7446,-0.7516,-0.717,-0.8468,-0.9094,-0.923,-0.9318,-0.935,-0.9472,-0.9598,-0.9538,-0.9598,-1,-1,-1,-1,-1,-1,-1,-0.872,-0.96,-0.77,0.5132,-0.2516,-0.3716,-0.4916,-0.4172,-0.2916,-0.103,-0.1258,-0.2,-0.3172,-0.643,-0.52,-0.44,-0.228,-0.406,-0.586,-0.466,-0.676,-0.456,-0.546,-0.566,-0.596,-0.6494,-1,-1,-1,-1,-1,-1,-1,-0.1714,0.2,1,1,1,-0.2,-0.8,-0.9428,-0.8,-0.9142,-0.4858,-0.6,-0.7428,-0.7714,-0.9714,-0.9714,-0.1428,-0.2,-0.6858,-0.8286,-0.8572,-0.9428,-0.8572,-1,-0.9142,-0.8286,-0.046,2e-04,-0.0046,0.0502,0.0696,0.0974,0.105,0.0648,0.0494,-0.0148,0.7668,0.7574,0.7566,0.7446,0.7032,0.7062,0.7208,0.7788,0.8644,0.9028,-0.6666,-0.2,-0.6062,-0.325,0.2336,0.5628,0.908,1,-0.617,-0.383,-0.0426,0.0638,0.2766,0.2766,0.3404,0.1702,0.4042,0.468,0.5532,0.468,0.5958,0.7022,0.5958,0.6808,0.766,0.851,0.9574,0.8086,0.9362,0.8298,1,0.9362,0.7446,0.7446,0.7022,0.468,0.383,0.2128,0.1276,-0.0426,-0.5152,-0.3484,-0.2424,-0.5304,-0.4394,-0.1818,-0.3636,-0.4394,0.0606,0.0606,-0.1818,-0.197,0.2424,0.106,0.1666,0.106,0.591,0.4696,0.6516,0.606,0.6212,0.6516,0.9546,1,0.6516,0.697,0.5,0.4848,0.3788,0.3788,0.3636,0.2424,0.0872,0.3154,0.3154,-0.2214,-0.1006,-0.1544,-0.047,0.2618,0.8256,0.8524,0.651,0.7986,0.9866,0.9464,0.5436,0.6242,0.8792,1,0.8926,0.7852,0.839,0.7986,0.8658,0.7852,0.557,0.2484,0.2618,0.2618,0.3422,0.2484,0.2348,0.1276,-0.1836,-1,-1,1,-0.8,-1,-0.4,-0.7334,-1,-0.0656,0.1532,-0.1094,0.0948,-0.0802,-0.1678,-0.1094,-0.0656,-0.1094,0.5766,0.9708,0.9708,0.8832,0.8832,0.7372,0.6788,0.9124,0.9416,0.708,0.708,0.9854,1,0.9854,0.489,0.0072,0.2992,0.27,0.1532,0.4598,0.5328,0.3138,0.124,'4'
-0.5528,-0.012,0.1602,0.2688,0.0454,-0.4744,-0.5862,-0.5922,-0.713,-0.6042,-0.5408,-0.438,-0.4018,-0.3082,-0.3324,-0.13,-0.133,0.0694,0.432,0.6556,0.7824,0.7794,0.4712,0.4864,0.5106,0.5922,0.7584,0.8308,0.9336,0.9608,0.9516,1,-0.5262,-0.1472,0.1346,0.2644,-0.0598,-0.3392,-0.571,-0.621,-0.5362,-0.5462,-0.4788,-0.3068,-0.3266,-0.3216,-0.3068,-0.167,-0.1546,-0.0822,0.379,0.6658,0.9426,0.803,0.3242,0.5088,0.5236,0.4938,0.611,0.808,0.8428,0.9302,0.995,1,-0.4692,-0.1006,0.1844,0.281,-0.1686,-0.438,-0.7752,-0.5634,-0.4824,-0.5922,-0.5504,-0.3464,-0.4536,-0.3778,-0.1974,-0.2288,-0.1608,0.0692,0.2026,0.6576,0.7412,0.7752,0.647,0.5268,0.3986,0.4588,0.7046,0.7228,0.8588,0.9504,0.9844,1,-0.4524,-0.125,0.1786,0.1964,-0.3898,-0.5446,-0.741,-0.619,-0.6846,-0.6904,-0.6816,-0.6518,-0.503,-0.384,-0.372,-0.3602,-0.3304,-0.131,0.1994,0.5864,0.881,0.878,0.6518,0.4702,0.3928,0.4494,0.6398,0.6756,0.881,0.9584,0.9374,1,-0.349,-0.0036,0.4712,0.3956,-0.0144,-0.5252,-0.518,-0.4712,-0.7914,-0.8956,-0.6942,-0.5036,-0.4532,-0.4712,-0.392,-0.3812,-0.3418,0.0108,0.0396,0.4784,0.9928,1,0.5396,0.2086,0.151,0.223,0.4172,0.5252,0.6762,0.7914,0.7734,0.7338,-0.5702,-0.2852,0.3212,0.1004,-0.486,-0.6386,-0.5904,-0.5342,-0.7872,-0.8232,-0.8112,-0.6788,-0.6546,-0.6868,-0.6908,-0.5984,-0.5382,-0.229,-0.1726,0.5342,0.9558,0.8514,0.5864,0.514,0.4338,0.4258,0.8634,1,0.755,0.7228,0.751,0.9236,-0.3432,0.1078,-0.0098,-0.1618,-0.6618,-0.755,-0.554,-0.5392,-0.6422,-0.7254,-0.5442,-0.505,-0.353,-0.402,-0.5442,-0.6128,-0.4608,-0.1814,-0.0148,0.5294,1,0.9166,0.4558,0.6078,0.5932,0.6422,0.5686,0.2058,0.2206,0.0196,0.1912,0.2648,-0.6756,0.3514,0.3514,-0.1892,-0.1892,-0.4054,-0.5676,-0.2432,-0.4594,-0.1892,-0.1892,-0.1892,-0.2432,-0.1892,-0.1892,-0.2972,-0.081,0.081,0.1352,0.3514,0.3514,0.3514,0.5136,0.5676,0.5676,0.7838,0.7838,0.8918,1,0.946,0.8378,0.7838,-0.5686,-0.0588,0.0588,0.2156,0.0196,-0.5294,-0.4902,-0.4902,-0.6078,-0.7648,-0.5686,-0.5686,-0.3334,-0.4118,-0.2942,-0.098,-0.0588,0.1764,0.1764,0.5686,0.6078,0.647,0.451,0.4902,0.451,0.5686,0.6862,0.7254,1,0.9216,0.804,0.9216,-0.409,-0.1364,0.2728,0.2728,-0.25,-0.5,-0.8636,-0.8636,-0.7954,-0.7046,-0.909,-0.4546,-0.4772,-0.2272,-0.2954,-0.2728,-0.409,-0.0454,0.1136,0.5228,0.7272,1,0.841,0.5454,0.3864,0.5454,0.591,0.5228,0.8864,1,0.8182,0.841,-1,-1,-1,-1,-1,-1,-1,-1,-0.9128,-0.909,-0.8788,0.375,0.9508,0.8826,0.7424,0.5266,0.3258,0.3484,-0.0152,-0.284,-0.3788,-0.625,-0.7386,-0.784,-0.7954,-0.8598,-0.875,-0.8864,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9726,-0.9748,-0.8428,-0.2426,0.506,0.8864,0.684,0.3622,-0.0058,-0.492,-0.6822,-0.7164,-0.831,-0.9048,-0.9116,-0.9324,-0.9446,-0.9406,-0.9446,-0.9418,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.88,-0.9268,-0.3534,0.0266,0.2066,0.2644,0.386,0.392,0.282,-0.064,-0.168,-0.244,-0.624,-0.684,-0.6534,-0.5868,-0.6134,-0.7334,-0.6734,-0.7734,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5714,1,1,1,-0.4572,-0.9428,-0.8572,-0.8572,-0.1714,0,-0.7428,-0.3714,0.0286,-0.2,-0.8858,-0.8572,-0.9428,-0.9142,-0.8286,-0.4286,-1,-1,-1,-1,-1,-0.0824,-0.0496,-0.0024,0.0418,0.063,0.0906,0.1098,0.0404,-0.0394,-0.0706,0.7538,0.736,0.7862,0.8,0.7956,0.831,0.87,0.9112,0.9104,0.8464,-0.5734,0.1412,-0.755,-0.7668,-0.2062,-0.0618,0.0938,1,0.1892,0.2702,0.4594,1,0.7702,0.9864,0.7162,0.5676,0.8648,0.7972,0.8514,0.8244,0.7298,0.7568,0.3918,0.2702,0.6216,0.7298,0.4594,0.446,0.4594,0.7568,0.5136,0.5406,0.5136,0.6352,0.527,0.1352,0.2028,0.2028,0.1486,-0.446,0.3058,0.4236,0.5764,1,0.847,0.8588,0.7648,0.6706,0.953,0.847,0.7294,0.3764,0.8236,0.7412,0.5648,0.5058,0.6236,0.353,0.5882,0.4942,0.647,0.5764,0.6942,0.6824,0.6,0.647,0.447,0.4352,0.4236,0.1294,0.1648,-0.2,-0.195,-0.1102,-0.0848,0.178,0.0338,-0.0508,0.4068,0.2542,0.4152,0.4746,0.6186,0.5254,0.4238,0.805,0.9662,0.8306,0.9746,0.9662,0.8306,0.6694,1,0.8898,0.6356,0.4068,0.1694,0.2712,0.4746,0.5508,0.161,0.4576,0.3136,0.2034,-0.9866,1,-1,-1,-1,-1,-1,-1,-1,-0.1786,0.0536,0.125,0.1072,0.0178,0.0714,0.3036,0.5358,0.6428,0.4642,0.7858,0.7858,1,0.5536,0.5536,0.5178,0.8214,0.4642,0.3036,0.2678,0.7858,0.7858,0.6786,0.7142,0.375,0.3392,0.1786,0.125,0.1786,-0.0536,0.1072,-0.3036,'5'
-0.5696,-0.139,0.3646,0.5022,0.101,-0.347,-0.5462,-0.5812,-0.5022,-0.6046,-0.552,-0.1948,-0.2358,-0.3236,-0.1772,-0.022,0.0688,0.1772,0.7014,0.6984,0.8828,0.7072,0.4846,0.5608,0.5812,0.7248,0.8126,1,0.9122,0.8594,0.792,0.8448,-0.5198,-0.0904,0.3672,0.4858,0.0622,-0.339,-0.469,-0.5508,-0.421,-0.6498,-0.5988,-0.3276,-0.4096,-0.3192,-0.1582,-0.1046,0.0452,0.209,0.5084,0.8758,1,0.6638,0.3276,0.5564,0.5622,0.6638,0.8644,0.9124,0.9548,0.8672,0.7796,0.8842,-0.479,-0.0512,0.4232,0.5348,-0.0046,-0.4232,-0.569,-0.5876,-0.541,-0.6776,-0.6218,-0.479,-0.3644,-0.29,-0.169,-0.2124,-0.0202,0.2434,0.3396,0.7768,0.7396,0.8108,0.6372,0.5752,0.6466,0.6218,0.6528,0.876,1,0.7396,0.7364,0.8294,-0.4598,-0.0568,0.3374,0.385,-0.3104,-0.6268,-0.7432,-0.7224,-0.7344,-0.6508,-0.7402,-0.6478,-0.3702,-0.4626,-0.3164,-0.215,-0.1792,-0.006,0.3314,0.618,1,0.9314,0.3582,0.3642,0.4208,0.5194,0.6656,0.8568,0.8448,0.7732,0.606,0.7284,-0.3576,-0.0158,0.4842,0.4588,-0.2468,-0.5094,-0.5982,-0.5316,-0.6804,-0.6772,-0.5348,-0.5316,-0.3892,-0.5,-0.4906,-0.4842,-0.1614,0.0032,0.2088,0.75,0.9588,0.8482,0.5348,0.4208,0.5474,0.5632,0.5854,0.9716,1,0.7944,0.6804,0.7974,-0.3626,0.1832,0.6106,0.3358,-0.4924,-0.6374,-0.5534,-0.4656,-0.6756,-0.6298,-0.8396,-0.5114,-0.3092,-0.3512,-0.7062,-0.4848,-0.4274,-0.2442,0.2176,0.6184,0.8474,0.7596,0.5496,0.3894,0.4848,0.5992,0.6564,0.79,1,0.9848,0.6184,0.8282,-0.6314,0.2584,0.4472,0.0158,-0.546,-0.7484,-0.6944,-0.6988,-0.7124,-0.9776,-0.8652,-0.6764,-0.4606,-0.4786,-0.4966,-0.5102,-0.3888,-0.2808,-0.1102,0.6854,0.9776,0.973,0.5686,0.2808,0.4832,0.555,0.7214,0.8922,1,0.7528,0.5056,0.6764,-0.6522,-0.087,0.3044,0.3914,-0.0434,-0.3914,-0.3478,-0.3914,-0.4782,-0.6956,-0.4782,-0.3914,-0.3914,-0.4348,-0.3478,-0.2174,0,0.2608,0.5218,0.7826,0.826,0.4782,0.2608,0.5218,0.5218,0.5652,0.7826,0.826,0.8696,0.7826,0.7392,1,-0.6744,-0.3024,0.2558,0.3954,0.0232,-0.5814,-0.814,-0.721,-0.5814,-0.7674,-0.5348,-0.3024,-0.3024,-0.3488,-0.1628,-0.0698,0.1628,0.4884,0.5814,0.907,1,0.721,0.2558,0.3488,0.5814,0.5814,0.721,0.721,0.6744,0.5814,0.1628,0.5348,-0.3888,0.0834,0.5834,0.3612,-0.4722,-0.4722,-0.5556,-0.4722,-0.6112,-0.7222,-0.6388,-0.25,-0.25,-0.3056,-0.4722,-0.4166,-0.3056,-0.2222,0.4166,0.4444,0.9444,0.9444,0.6112,0.4166,0.3888,0.5834,0.5834,0.9166,1,0.9166,0.7222,0.75,-1,-1,-1,-1,-1,-1,-1,-1,-0.9128,-0.9166,-0.6334,0.499,0.9818,0.873,0.6734,0.3466,0.2124,0.3212,0.3648,0.2088,-0.089,-0.5282,-0.8112,-0.6914,-0.6842,-0.7314,-0.8112,-0.8548,-0.9128,-0.902,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9446,-0.9466,-0.7322,0.7034,0.9138,0.8778,0.291,-0.099,0.0066,-0.0682,-0.2026,-0.4808,-0.571,-0.7526,-0.8328,-0.8522,-0.846,-0.8778,-0.9046,-0.9056,-0.918,-0.9332,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.96,-0.7134,-0.1356,-0.22,-0.09,-0.14,-0.242,-0.15,-0.272,-0.382,-0.56,-0.648,-0.568,-0.5834,-0.78,-0.8234,-0.7134,-0.6334,-0.62,-0.8068,-0.81,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,1,1,1,-0.9428,-0.9714,-0.9142,-0.9714,-1,-1,-0.8858,-0.8,-0.8286,-0.4,-0.7142,-0.6858,-0.8858,-0.9142,-0.9142,-0.8572,-0.8,-0.4858,-1,-1,-1,0.193,0.1312,0.1318,0.1174,0.1306,0.14,0.1138,0.1052,0.0254,-0.0886,0.7824,0.8014,0.8174,0.8174,0.837,0.8346,0.8656,0.8726,0.8588,0.8052,-0.6,0.1648,-0.6562,0.1042,0.7598,0.8512,0.7548,1,-0.1708,-0.1708,0.122,0.2196,0.122,0.1708,0.0732,-0.0732,0.2196,0.4146,0.6586,0.6586,0.6586,0.9024,0.9024,0.9512,1,1,0.8536,0.6586,0.6586,0.4146,0.2196,0.122,0.2196,0.1708,0.2196,0.1708,0.2196,0.122,0.0732,-0.2682,-0.0516,-0.0104,0.0104,-0.0104,-0.1134,-0.031,-0.0722,-0.1546,0.134,0.6082,0.7114,0.2372,0.5876,0.835,0.8556,0.7114,1,0.8556,0.6494,0.5052,0.5876,0.567,0.031,0.2784,0.031,0.031,0.0516,-0.0104,-0.0104,0.464,0.1752,-0.3402,0.0114,0.4482,0.4022,-0.2644,-0.3334,-0.4482,-0.1954,0.0574,0.0344,0.3564,0.7702,0.4252,0.4252,0.6092,0.6552,0.7242,0.7702,1,0.908,0.5632,0.4252,0.5172,-0.1264,-0.3564,-0.2644,-0.3334,-0.1264,-0.1724,0.2414,0.3104,0.0344,-0.3564,1,-1,-1,1,-1,-1,0.2,-0.8334,-1,-0.3514,0.1352,-0.081,0.1892,0.027,-0.1532,0.1712,-0.027,-0.4594,0.4954,1,0.982,1,0.91,0.8738,0.6216,0.7118,0.6936,0.4414,0.2972,0.3694,0.4054,0.3514,0.2972,0.2972,0.2432,0.6396,0.6216,0.5856,0.6396,0.6216,0.099,'5'
-0.6776,-0.3194,0.1164,0.2598,0.8328,0.8208,0.415,0.218,0.1642,0.1582,0.1462,0.2836,0.2538,0.3374,0.4806,0.7672,1,0.815,0.8448,0.7432,0.7194,0.8448,0.8568,0.994,0.7612,0.6538,0.6538,0.582,0.5224,0.6656,0.6956,0.8208,-0.6022,-0.2752,0.1172,0.1826,0.5694,0.5204,0.5912,0.3678,0.3514,0.1772,0.1008,0.2588,0.357,0.3788,0.624,0.9074,1,0.7276,0.673,0.7602,0.8202,0.8638,0.8584,0.8692,0.7494,0.4768,0.5314,0.466,0.406,0.504,0.613,0.5804,-0.5898,-0.2506,0.124,0.1696,0.4278,0.767,0.8936,0.5594,0.433,0.3216,0.433,0.4936,0.5292,0.7822,0.924,0.995,1,0.7874,0.6506,0.757,0.914,0.8886,0.9798,0.8076,0.676,0.595,0.5292,0.4936,0.4532,0.4734,0.6406,0.6254,-0.5306,-0.2536,0.0704,0.061,0.2536,0.9062,0.9342,0.5306,0.4178,0.4742,0.6338,0.5822,0.6808,1,0.9062,0.7652,0.6292,0.6056,0.6056,0.6432,0.7982,0.8968,0.7934,0.6666,0.5258,0.4084,0.3616,0.3428,0.3334,0.3474,0.399,0.5962,-0.5178,-0.3002,0.026,0.1016,0.4562,0.8156,0.7588,0.7636,0.5602,0.494,0.5178,0.74,0.981,1,0.6454,0.5224,0.4658,0.4658,0.48,0.494,0.584,0.6644,0.6784,0.5508,0.3854,0.234,0.234,0.2766,0.182,0.2482,0.3476,0.513,-0.6374,-0.4108,-0.1274,0.1558,0.6318,0.8016,1,0.8924,0.6828,0.439,0.6374,0.864,0.9944,0.643,0.558,0.4164,0.2182,0.2068,0.2464,0.3484,0.5014,0.3882,0.3768,0.3654,0.1614,0.0424,0.1558,0.1104,0.0084,0.1444,0.2012,0.4674,-0.5212,-0.2958,-0.0352,0.1972,0.9508,1,0.9718,0.7958,0.3732,0.324,0.5,0.655,0.5282,0.683,0.2324,-0.1408,-0.0916,-0.014,0.2958,0.6478,0.7676,0.5916,0.169,0.0916,0.0564,0,0.1198,0.0212,-0.0916,0.1056,0.2606,0.4718,-0.6538,-0.3076,0.1538,0.1538,0.7308,0.6924,0.2692,0.077,0.1154,0.1924,0.1154,0.2308,0.2692,0.3462,0.5,0.6538,0.923,0.7308,0.6538,0.8076,0.6924,0.6538,0.8846,1,0.6154,0.577,0.7308,0.5384,0.2692,0.6924,0.5,0.6924,-0.6364,-0.2,0.1636,0.2728,0.8182,0.8182,0.491,0.2,0.309,0.1636,0.2,0.309,0.2364,0.3454,0.4546,0.7818,1,1,0.8546,0.709,0.7818,0.8546,0.709,0.891,0.7818,0.709,0.6364,0.5272,0.6,0.709,0.7454,0.9272,-0.5576,-0.3462,0,0.0384,0.4424,0.7884,0.6924,0.75,0.5192,0.4808,0.5384,0.6924,0.9808,1,0.7116,0.5962,0.4038,0.4424,0.4424,0.4808,0.5962,0.7308,0.7308,0.5384,0.3846,0.3076,0.2692,0.2692,0.2116,0.25,0.4424,0.5,-1,-1,-1,-1,-1,-1,-1,-1,-0.9402,-0.9452,-0.582,0.6218,0.7562,0.4054,0.316,0.6394,0.9626,0.8084,0.4502,0.1518,0.0548,-0.112,-0.5772,-0.8632,-0.883,-0.908,-0.9228,-0.9304,-0.9428,-0.9204,-0.9254,-0.9278,-0.9228,-1,-1,-1,-1,-1,-1,-1,-1,-0.9806,-0.984,-0.6892,0.0796,0.2298,0.3286,0.2274,0.4688,0.9406,0.6512,0.2286,-0.0514,-0.3244,-0.6346,-0.8868,-0.9232,-0.8552,-0.8458,-0.8714,-0.906,-0.9286,-0.9276,-0.9238,-0.902,-0.931,-1,-1,-1,-1,-1,-1,-1,-1,-0.9134,-0.9334,-0.5634,-0.405,-0.472,-0.376,-0.54,-0.524,-0.64,-0.672,-0.748,-0.744,-0.732,-0.708,-0.7,-0.0634,0.5266,0.62,0.6932,0.4066,0.38,0.3532,0.4766,0.26,0.4266,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,-0.1428,-0.6286,-0.8286,-0.8286,-0.5714,-0.1714,-0.1714,-0.2858,1,1,0.4286,1,1,-0.7428,-0.8286,-0.6572,-0.7428,-0.9142,-0.8858,-0.9428,-0.6286,1,1,1,1,1,1,1,1,1,1,0.1954,0.2666,0.2666,0.2642,0.2304,0.2002,0.1478,0.0128,-0.2334,-0.6422,-0.5734,-0.4824,-0.6196,-0.2174,0.3296,0.21,0.2966,1,-0.36,0.16,0.4,0.44,0.44,0.44,0.48,0.8,0.96,1,0.96,0.96,0.96,0.84,0.68,0.8,0.88,0.92,0.8,0.8,0.88,0.8,0.6,0.2,0,-0.12,-0.24,0.04,-0.2,-0.2,-0.2,-0.72,-0.4678,0.1376,0.578,0.5596,0.3394,0.2478,0.1926,0.633,0.945,0.8716,0.9634,0.8348,0.945,0.8166,0.633,0.7798,0.8348,0.8716,0.7798,0.7064,1,0.7982,0.5412,0.211,-0.156,-0.2844,-0.156,-0.1192,-0.266,-0.211,-0.1926,-0.3212,-0.173,0.423,0.5576,0.6538,0.3076,0.1538,0.5,0.7116,0.923,0.9038,0.8654,1,0.8654,0.7116,0.7116,0.7692,1,0.9808,0.923,0.8462,0.9038,0.8654,0.4038,-0.0192,-0.2308,-0.2884,-0.1924,-0.25,-0.2308,-0.1924,-0.2308,-0.327,0.285,-1,-1,1,-1,-1,-0.6,-0.8334,-1,-0.8488,-0.6302,-0.3278,0.0084,-0.1932,0.126,0.0084,0.0084,0.2942,0.1596,0.311,0.5966,0.7142,0.5294,0.4622,0.4118,0.6638,0.6302,0.6638,0.6806,0.7142,0.916,1,0.9328,0.7478,0.7142,0.8992,0.916,0.7984,0.7816,0.7984,-0.126,'6'
-0.7378,-0.3312,0.0622,0.1934,0.7968,0.8296,0.3246,0.2,0.2722,0.036,0.0426,0.364,0.3114,0.436,0.7114,0.8098,1,0.9868,0.5278,0.6132,0.777,0.7574,0.8164,0.836,0.7508,0.7312,0.5804,0.6328,0.659,0.6524,0.8296,0.8296,-0.651,-0.3154,0.1006,0.1946,0.8256,0.8322,0.5974,0.463,0.4564,0.1678,0.1744,0.4766,0.4228,0.5302,0.9664,1,0.812,0.745,0.6778,0.839,0.9262,0.9128,0.886,0.9262,0.8256,0.7046,0.557,0.6174,0.7382,0.7248,0.8054,1,-0.5916,-0.2464,0.0986,0.155,0.4296,0.7464,0.8592,0.5352,0.493,0.1972,0.4718,0.507,0.683,0.8944,1,0.9718,0.9366,0.7042,0.6972,0.7536,0.9788,0.9014,0.8802,0.7324,0.7394,0.5704,0.5774,0.6478,0.6198,0.655,0.7676,0.9014,-0.605,-0.3504,0.0128,0.0382,0.3184,0.8598,0.9172,0.4332,0.2994,0.1974,0.5222,0.5032,0.6624,1,0.9682,0.6114,0.465,0.465,0.6496,0.6688,0.758,0.9044,0.8472,0.6242,0.4714,0.4522,0.3184,0.4778,0.5096,0.5096,0.6688,0.7516,-0.6294,-0.3354,-0.0224,0.1118,0.329,0.8786,0.8594,0.5144,0.3674,0.3546,0.5144,0.7444,0.8658,1,0.706,0.5016,0.361,0.3802,0.4186,0.5336,0.7444,0.7572,0.623,0.3994,0.3674,0.2524,0.2396,0.2524,0.361,0.329,0.3738,0.5654,-0.6406,-0.4376,-0.0782,0.1652,0.5884,0.8144,0.687,0.6116,0.6232,0.3798,0.5768,0.8144,1,0.8898,0.4782,0.3566,0.3682,0.2928,0.3624,0.571,0.7914,0.745,0.5478,0.3682,0.2464,0.229,0.0318,0.2232,0.1478,0.1478,0.2928,0.571,-0.5652,-0.2728,0.0514,0.1858,0.7628,1,0.7944,0.5574,0.2728,0.3834,0.5336,0.8498,0.9368,0.5732,0.494,0.3438,-0.0198,0.004,0.2174,0.4862,0.8498,0.7076,0.1542,0.091,-0.249,-0.2648,-0.1542,-0.0514,-0.1068,-0.0988,0.0434,0.2412,-0.72,-0.36,0,0.12,0.68,0.72,0.2,0.12,0.16,-0.08,-0.04,0.24,0.24,0.36,0.52,0.68,1,1,0.6,0.4,0.56,0.8,0.84,0.64,0.6,0.64,0.64,0.72,0.44,0.48,0.88,0.76,-0.6862,-0.2942,0.1372,0.255,0.8432,0.8824,0.4118,0.3334,0.3334,0.0196,0.1372,0.451,0.4118,0.4902,0.7648,1,0.804,0.9216,0.5294,0.647,0.9216,0.6862,0.7648,0.9608,1,0.6862,0.5686,0.6862,0.647,0.7648,0.804,0.804,-0.62,-0.38,-0.06,0.22,0.52,0.86,0.74,0.62,0.62,0.44,0.58,0.74,1,0.98,0.42,0.48,0.38,0.28,0.4,0.64,0.72,0.54,0.52,0.5,0.34,0.16,0.12,0.26,0.14,0.26,0.28,0.6,-1,-1,-1,-1,-1,-1,-1,-1,-0.9358,-0.9468,-0.382,0.6922,0.989,0.6434,0.061,0.1096,0.3466,0.557,0.4994,0.0986,-0.052,-0.3444,-0.6566,-0.8848,-0.9048,-0.9424,-0.9336,-0.9446,-0.938,-0.9358,-0.9512,-0.9358,-0.9558,-1,-1,-1,-1,-1,-1,-1,-1,-0.9762,-0.9776,-0.365,0.5078,0.7734,0.8074,0.3958,0.5398,0.8488,0.9836,0.6152,0.0586,-0.268,-0.6422,-0.8678,-0.9176,-0.8726,-0.866,-0.9052,-0.9392,-0.9356,-0.9294,-0.9294,-0.9184,-0.9212,-1,-1,-1,-1,-1,-1,-1,-1,-0.8734,-0.9668,-0.4968,-0.34,-0.42,-0.37,-0.39,-0.415,-0.545,-0.7,-0.63,-0.62,-0.665,-0.695,-0.5368,0.0032,0.5,0.4666,0.2132,0.3032,0.1132,0.12,0.1466,0.1766,0.4566,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,1,1,1,-0.4572,-0.7714,-0.7714,-0.8572,-0.8572,-0.3714,0.3142,1,1,1,0.7714,1,0.5714,-0.6572,-0.2858,-0.7714,-1,-0.9714,-0.9142,-0.9428,-0.8,1,1,1,1,1,1,1,1,1,1,0.095,0.095,0.053,0.0418,0.0072,-0.0268,-0.0144,-0.1032,-0.3086,-0.7142,-0.52,-0.6,-0.2424,0.2746,0.754,0.7418,0.825,1,-0.3334,0.0834,0.5,0.5416,0.2084,0.1666,0.5416,0.5416,0.75,0.875,0.875,0.875,0.7916,0.8334,0.75,0.75,1,0.7916,0.7916,0.5834,0.4166,0.4584,0.2916,-0.1666,-0.3334,-0.375,0,0,0.0834,0.1666,0.0834,-0.5416,-0.291,0.1818,0.491,0.491,-0.0182,-0.0546,0.2728,0.4728,0.8364,0.6182,0.6364,0.7818,0.691,0.691,0.6728,0.7272,1,0.9272,0.8546,0.7454,0.309,0.2364,0.0546,-0.2182,-0.3272,-0.4364,-0.091,0.1454,0.2364,0.2546,0.2182,-0.309,-0.3334,0.1352,0.6036,0.4594,0.1352,0.099,0.2972,0.6036,1,0.6576,0.5856,0.7478,0.7118,0.6576,0.5316,0.7298,0.8198,0.8738,0.8738,0.8198,0.045,0.2432,-0.027,-0.3874,-0.3694,-0.4414,-0.2432,-0.099,0.099,0.1352,0.1172,-0.081,0.2588,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.4474,-0.2368,-0.0922,0.1974,0.1974,0.2236,0.1578,0.3158,0.329,0.2894,0.5526,0.8552,0.8158,0.5,0.5526,0.4736,0.6448,0.6842,0.671,0.4736,0.6052,1,0.8948,0.7632,0.75,0.671,0.6578,0.5264,0.5526,0.6578,0.6578,0.0132,'6'
-0.3238,0.0696,0.6594,0.7362,0.0744,-0.4052,-0.271,-0.506,-0.5588,-0.3286,-0.3956,-0.295,-0.1894,-0.1414,0.012,0.0408,0.2518,0.6068,0.9328,1,0.8562,0.7026,0.669,0.8706,0.8896,0.8944,0.813,0.7074,0.7986,0.813,0.7794,0.7794,-0.4004,0.0112,0.6958,0.6824,-0.1634,-0.1678,-0.1902,-0.302,-0.5168,-0.3692,-0.2662,-0.4676,-0.1186,-0.0246,-0.1678,-0.0068,0.217,0.387,0.8076,1,0.9686,0.6376,0.6466,0.754,0.8032,0.8792,0.7898,0.66,0.6062,0.6958,0.7986,0.8166,-0.4954,0.0872,0.5184,0.3532,-0.133,-0.3348,-0.4724,-0.5642,-0.5872,-0.5046,-0.5688,-0.3486,-0.211,-0.5872,-0.2478,-0.1284,-0.1146,0.3716,0.7294,0.9908,1,0.7982,0.7018,0.7202,0.8212,0.9862,0.8854,0.7294,0.6606,0.6972,0.7478,0.8394,-0.5184,0.1548,0.4348,0.1204,-0.1942,-0.2728,-0.6954,-0.8132,-0.5676,-0.5332,-0.5676,-0.4594,-0.3316,-0.3956,-0.3072,-0.2186,-0.1646,0.2088,0.6512,0.9066,0.9656,0.8918,0.7886,0.7494,0.9116,1,0.9754,0.769,0.7642,0.661,0.7886,0.882,-0.6708,0.1544,0.3418,-0.0684,-0.4684,-0.7164,-0.8482,-0.6708,-0.7114,-0.681,-0.686,-0.4582,-0.3822,-0.6202,-0.5088,-0.4026,-0.2506,0.0278,0.3316,0.8278,1,0.919,0.6354,0.5646,0.7316,0.8228,0.838,0.757,0.5544,0.5646,0.6406,0.6506,-0.9034,0.0796,0.2102,-0.3238,-0.7102,-0.841,-0.784,-0.6932,-0.6876,-0.716,-0.7272,-0.7954,-0.4944,-0.5,-0.517,-0.4716,-0.4034,-0.1306,0.159,0.8012,1,0.9602,0.6478,0.5682,0.7784,0.909,0.8296,0.7556,0.483,0.608,0.5568,0.591,-0.775,-0.1688,-0.0062,-0.4688,-0.9312,-0.8126,-0.4938,-0.3874,-0.65,-0.775,-0.65,-0.825,-0.4376,-0.4626,-0.5688,-0.6876,-0.6938,-0.5,-0.375,0.4938,1,0.7374,0.15,0.1876,0.45,0.6312,0.5624,0.2938,-0.0376,-0.05,-0.0376,0.1438,-0.1428,0.1786,0.5,0.6072,0.1072,-0.2142,-0.1072,-0.1786,-0.3214,-0.2142,-0.1072,-0.0358,0.1428,0.1072,0,0.2142,0.3214,0.5,0.9286,0.9642,0.8214,0.6786,0.8572,0.8214,0.8572,1,0.9286,0.5358,0.8572,0.8928,0.5358,0.6428,-0.2916,0.125,0.5834,0.625,0.0416,-0.3334,-0.1666,-0.5416,-0.5416,-0.3334,-0.5,-0.1666,-0.1666,-0.25,0.0834,0.125,0.0834,0.5,0.9166,1,0.7084,0.75,0.4584,0.7916,0.875,0.75,0.5,0.75,0.6666,0.75,0.875,0.75,-0.4352,0.2,0.4118,0.0588,-0.153,-0.1294,-0.7412,-0.9058,-0.6236,-0.4352,-0.3882,-0.3882,-0.2,-0.2942,-0.3882,-0.3176,-0.1294,0.153,0.4588,0.6942,0.7412,0.8588,0.6236,0.6236,0.9294,1,0.6706,0.7648,0.6706,0.5764,0.6706,0.7648,-1,-1,-1,-1,-0.9472,-0.9662,-0.922,-0.9008,-0.8966,-0.9368,-0.4556,0.2426,0.73,0.9536,0.5042,0.0148,-0.1752,-0.3734,-0.5422,-0.6518,-0.7342,-0.789,-0.8376,-0.8946,-0.9136,-0.9536,-0.941,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9492,-0.96,-0.6496,0.379,0.4962,0.162,-0.113,-0.0876,0.3472,0.8058,0.8484,0.3582,0.192,-0.2892,-0.2936,-0.4526,-0.6932,-0.8348,-0.8956,-0.911,-0.9128,-0.9438,-0.9474,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9,-0.9068,0.1432,0.59,0.6532,0.57,0.2732,-0.43,-0.5134,-0.4916,-0.4886,-0.463,-0.3,-0.2972,-0.243,-0.28,-0.2686,-0.5744,-0.76,-0.6468,-0.7,-0.9268,-0.9134,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,-0.4286,0.1714,1,1,-0.6286,-0.6286,-0.9142,-0.8572,-0.7714,-0.6572,-0.9714,-0.5428,0,0.4572,-0.4,-0.8286,-0.8572,-0.7142,-0.7714,-1,-1,-1,-1,-1,-1,-0.0114,-0.0152,-0.014,0.0166,0.046,0.052,0.1028,0.1368,0.0758,-0.0378,0.7456,0.7518,0.7476,0.729,0.7532,0.7624,0.7318,0.7294,0.7818,0.7992,-0.32,-0.2352,-0.083,-0.1566,-0.0776,0.1594,0.37,1,-0.6916,-0.4604,-0.319,-0.1178,-0.1992,-0.0706,-0.0836,-0.0664,-0.0792,0.182,0.3404,0.4776,0.5888,0.7388,0.9444,1,0.9444,0.9314,0.7002,0.576,0.7602,0.6274,0.6018,0.683,0.7174,0.6874,0.6102,0.6146,0.6746,0.4004,0.319,-0.2806,-0.869,-0.68,-0.64,-0.6436,-0.5672,-0.3964,-0.3782,-0.3564,-0.109,0.0472,0.171,0.429,0.7054,0.8072,0.9564,1,0.7018,0.5854,0.709,0.651,0.6764,0.6254,0.6072,0.651,0.6036,0.6072,0.6328,0.611,0.5454,0.44,0.1782,-0.051,-0.3158,-0.1782,-0.174,-0.502,-0.413,-0.3442,-0.1944,-0.0446,0.247,0.5426,0.4656,0.6842,0.9838,0.9554,0.9676,1,0.7732,0.6234,0.7368,0.7652,0.6114,0.8178,0.757,0.587,0.6396,0.587,0.6234,0.6396,0.5426,0.5668,0.3724,0.0162,1,-1,-1,1,-0.6,-1,-0.8,0,-1,-0.2392,-0.4782,-0.5652,-0.1956,-0.3478,0.0652,-0.1304,0.0434,0.3914,0.7392,1,0.326,0.8914,0.8696,0.0652,0.2826,0.3696,0.3478,0.2174,0.3914,0.4566,0.3044,0.0218,-0.1522,-0.1956,-0.2826,0.3044,0.2826,0.3478,0.6522,0.3914,0.2608,'7'
-0.4038,-0.0402,0.37,0.4376,-0.1332,-0.6786,-0.5518,-0.573,-0.5814,-0.3024,-0.425,-0.4926,-0.2346,-0.2854,-0.167,0.0952,0.184,0.4208,0.518,0.8224,0.6532,0.4334,0.5644,0.5392,0.6956,0.8986,1,0.7716,0.628,0.6914,0.8816,0.9028,-0.455,-0.127,0.3894,0.4386,-0.1722,-0.6886,-0.5902,-0.586,-0.5574,-0.373,-0.5164,-0.4714,-0.2378,-0.3032,-0.2622,0.0696,0.0656,0.3074,0.8032,0.9304,0.7254,0.4468,0.6352,0.7132,0.75,1,0.9836,0.9386,0.8196,0.7746,0.9344,0.9508,-0.3886,-0.0828,0.4904,0.5074,-0.3674,-0.758,-0.6942,-0.5202,-0.5372,-0.4692,-0.4098,-0.4522,-0.3716,-0.2696,-0.3206,-0.1762,0.0574,0.2484,0.5074,0.8514,0.9278,0.5754,0.5202,0.5668,0.5796,0.7708,1,0.932,0.7494,0.7198,0.792,0.7368,-0.357,0.043,0.757,0.7064,-0.3012,-0.6708,-0.4632,-0.362,-0.7216,-0.5392,-0.4632,-0.5494,-0.3418,-0.2608,-0.4228,-0.2304,-0.1038,0.0482,0.4734,0.8482,0.9898,0.8936,0.5342,0.6,0.4482,0.6658,1,0.8936,0.7368,0.6304,0.6406,0.7874,-0.4972,0.1526,0.6102,0.418,-0.4012,-0.8418,-0.6102,-0.531,-0.8306,-0.6498,-0.7062,-0.644,-0.3728,-0.4012,-0.5594,-0.3898,-0.243,-0.322,0.3502,0.7966,0.7458,0.5932,0.6666,0.661,0.305,0.8418,1,0.7966,0.7176,0.7344,0.565,0.7006,-0.7428,0.1234,0.3438,-0.0288,-0.4488,-0.6272,-0.937,-0.8006,-0.6902,-0.643,-0.7638,-0.517,-0.5224,-0.5486,-0.5854,-0.5276,-0.5014,-0.3754,0.2756,0.643,0.853,0.8478,0.6746,0.5906,0.4804,0.748,1,0.8898,0.6116,0.5906,0.6746,0.7166,-0.8176,0.1294,0.2352,-0.2412,-0.553,-0.6,-0.2352,-0.1764,-0.4764,-0.4824,-0.3588,-0.447,-0.4706,-0.6058,-0.4,-0.5058,-0.4118,-0.0236,0.1942,0.7588,1,0.9412,0.6236,0.5,0.4824,0.9118,0.8882,0.8118,0.7294,0.5118,0.6412,0.6824,-0.2084,0.125,0.5416,0.5834,0,-0.3334,-0.4166,-0.25,-0.25,0,-0.25,-0.3334,-0.0416,-0.3334,-0.0416,0.2916,0.25,0.5416,0.75,0.875,0.4584,0.4166,0.625,0.6666,0.7916,0.9166,1,0.875,0.6666,0.6666,1,0.875,-0.1724,0.138,0.5172,0.5862,0.1034,-0.2758,-0.2758,-0.3448,-0.2758,-0.069,-0.2068,-0.2068,0,-0.138,0.1724,0.3104,0.3794,0.6896,0.862,0.931,0.6206,0.7242,0.6206,0.6552,0.8966,0.9656,1,0.931,0.862,0.6896,1,1,-0.4694,-0.204,0.3674,0.3878,-0.5102,-0.6734,-0.7142,-0.551,-0.4898,-0.5102,-0.4286,-0.5102,-0.4286,-0.2654,-0.4286,-0.2654,-0.0204,0.2448,0.4898,0.8164,0.8572,0.4694,0.4694,0.4898,0.5714,0.8572,1,0.8776,0.6326,0.6734,0.6734,0.653,-1,-1,-1,-0.9384,-0.9106,-0.8828,-0.8736,-0.8798,-0.9076,-0.8614,-0.1896,0.5254,0.9168,0.9784,0.9044,0.9568,0.8736,0.3836,0.0138,-0.2634,-0.544,-0.6456,-0.7442,-0.7442,-0.7782,-0.7504,-0.8306,-0.8736,-0.9014,-0.9446,-1,-1,-1,-1,-1,-1,-0.9766,-0.9726,-0.8484,-0.4584,0.0482,0.1694,-0.1522,-0.4706,-0.2384,0.5856,0.9174,0.4848,-0.1308,-0.4614,-0.6248,-0.6988,-0.6836,-0.7014,-0.8808,-0.9184,-0.897,-0.9402,-0.9382,-0.9468,-0.9584,-0.965,-0.9696,-1,-1,-1,-1,-1,-1,-0.96,-0.9268,-0.3634,0.83,0.8866,0.87,0.6966,0.33,-0.2034,0.01,0.0132,-0.0234,-0.26,-0.5972,-0.4486,-0.4344,-0.2776,-0.2094,-0.3924,-0.5542,-0.5408,-0.7208,-0.7042,-0.7108,-0.6876,-0.8808,-0.7808,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,0.7428,-0.5428,0.2,1,1,0.2286,-0.8,-0.4286,-0.4,-0.6286,-0.8,-0.9428,-0.9428,-0.4286,-0.1428,-0.4286,-0.7714,-0.5714,-0.9142,-0.9142,-1,-0.9714,-0.9142,-1,-1,-1,-0.1914,-0.1726,-0.175,-0.1528,-0.1666,-0.1658,-0.1756,-0.2386,-0.2238,-0.175,0.773,0.7566,0.779,0.7764,0.81,0.85,0.8566,0.887,0.9262,0.9232,-0.5066,-0.2706,-0.493,-0.5046,-0.1222,0.2526,0.576,1,-0.6808,-0.4568,-0.4202,-0.3614,-0.3284,-0.2146,-0.1926,-0.1266,0.0348,0.0826,0.1266,0.3394,0.4752,0.6698,0.6478,0.8348,1,0.9596,0.9926,0.89,0.8092,0.8128,0.8826,0.9046,0.71,0.8202,0.7724,0.6624,0.5706,0.512,0.2698,-0.4422,-0.8642,-0.6746,-0.7094,-0.6146,-0.5924,-0.5418,-0.466,-0.3492,-0.2132,-0.1912,-0.0996,0.2576,0.5166,0.662,0.564,0.842,1,0.94,0.6524,0.7884,0.7314,0.8452,0.7914,0.801,0.6304,0.7062,0.6714,0.6304,0.5546,0.4186,0.3238,0.0426,-0.44,-0.3286,-0.447,-0.5374,-0.5722,-0.5686,-0.3774,-0.3878,-0.0156,0.1548,0.1652,0.4434,0.6382,0.7496,0.7044,0.847,1,0.7356,0.68,0.5966,0.593,0.7044,0.5618,0.4156,0.4782,0.5096,0.4574,0.4818,0.36,0.3218,0.127,0.0122,-0.3296,-1,-1,1,-0.6,-1,-0.2,0.1334,-1,0.1288,0.1288,-0.01,0.01,-0.0694,-0.6238,0.0496,0.0298,0.1486,0.6436,1,0.5446,0.8416,0.5842,0.1288,0.1486,0.2476,0.3664,0.0496,-0.2476,-0.0694,0.5248,0.1288,-0.1684,-0.01,-0.109,-0.1882,-0.1882,-0.208,-0.4852,-0.0298,-0.406,'7'
-0.5532,-0.0964,0.264,0.335,0.731,0.6396,0.2792,0.061,0.1624,0.1116,-0.005,0.1422,0.1422,0.0456,0.3198,0.5026,0.5686,1,1,0.995,0.7512,0.7664,0.9086,0.8934,0.9544,0.8528,0.7868,0.6446,0.6446,0.665,0.6904,0.7462,-0.4402,-0.0738,0.369,0.4198,0.7202,0.5268,0.3638,0.0992,-0.0026,0.1196,0.028,-0.028,0.1246,0.2112,0.201,0.3384,0.7202,0.888,1,0.9134,0.8932,0.7048,0.654,0.8372,0.8118,0.6794,0.5268,0.481,0.3436,0.3486,0.4758,0.374,-0.4652,-0.2224,0.2854,0.2764,0.4158,0.146,0.0832,-0.2224,-0.218,-0.2494,-0.173,-0.0292,-0.0202,-0.0112,0.0022,0.0652,0.2944,0.5686,0.7124,1,0.8832,0.3752,0.672,0.564,0.4876,0.7034,0.618,0.2854,0.3258,0.254,0.1776,0.3574,-0.3986,-0.1188,0.4266,0.38,0.2494,0.077,0.0116,-0.1328,-0.268,-0.2914,-0.1934,-0.1468,-0.1608,-0.0582,-0.0536,-0.007,0.1002,0.3892,0.725,0.8462,1,0.8602,0.669,0.7622,0.6644,0.7296,0.753,0.6178,0.4966,0.5198,0.5198,0.4546,-0.5306,0.0186,0.4454,0.296,-0.04,-0.3226,-0.3066,-0.3386,-0.6906,-0.408,-0.44,-0.472,-0.28,-0.28,-0.2746,-0.2106,-0.056,0.008,0.2694,0.76,1,0.984,0.744,0.712,0.7174,0.7654,0.8294,0.744,0.536,0.6586,0.6586,0.5466,-0.6932,0.0028,0.2,-0.0082,-0.2932,-0.5616,-0.5452,-0.5232,-0.7042,-0.7808,-0.6438,-0.7042,-0.485,-0.4794,-0.452,-0.3918,-0.3424,-0.0794,0.1342,0.441,0.978,1,0.7096,0.5288,0.6876,0.6658,0.6712,0.5014,0.5178,0.4136,0.441,0.5232,-0.9096,-0.3132,-0.1808,-0.3494,-0.6808,-0.735,-0.6566,-0.6326,-0.759,-0.8796,-0.9096,-0.747,-0.5,-0.4338,-0.5784,-0.8374,-0.7168,-0.4216,-0.247,0.1868,0.9698,1,0.4518,0.1506,0.4036,0.4398,0.1746,0.2108,-0.0542,0.0542,-0.018,-0.0302,-0.5348,-0.1628,0.0698,0.5348,0.6744,0.5348,0.2558,0.2558,0.2558,0.0232,0.1628,0.3024,0.2558,0.0232,0.3954,0.5814,0.721,0.721,0.814,0.9534,0.8604,0.2558,0.907,0.9534,1,0.4884,0.814,0.814,0.628,0.4884,0.814,0.814,-0.6522,-0.3478,0.1304,0.2174,0.5218,0.5218,0.1304,-0.087,0,-0.0434,-0.1304,-0.087,-0.0434,-0.1304,0,0.1304,0.2608,0.826,0.9566,0.8696,0.4348,0.826,0.826,0.826,1,1,0.7392,0.7392,0.7392,0.6522,0.6956,0.6956,-0.4352,0.1294,0.4588,0.247,-0.247,-0.2706,-0.2,-0.2942,-0.6942,-0.7648,-0.4588,-0.4118,-0.247,-0.247,-0.3176,-0.1294,-0.2,-0.0118,0.3648,0.6942,1,0.9294,0.8824,0.8118,0.6942,0.7882,0.8352,0.7176,0.5294,0.6236,0.6236,0.5764,-1,-1,-1,-1,-1,-1,-1,-1,-0.935,-0.9322,-0.8362,0.257,0.435,0.644,0.9096,0.7796,0.579,0.3418,0.1694,0.0112,-0.3814,-0.7402,-0.8306,-0.921,-0.9238,-0.918,-0.918,-0.9152,-0.8898,-0.9068,-0.921,-0.8926,-0.9096,-1,-1,-1,-1,-1,-1,-1,-1,-0.9516,-0.9588,-0.6512,0.5322,0.694,0.6458,0.9132,0.6494,0.458,0.4856,0.2996,0.0026,-0.2218,-0.584,-0.8856,-0.9472,-0.9534,-0.9562,-0.9552,-0.6896,-0.2156,0.0018,0.4624,0.2952,0.1726,-1,-1,-1,-1,-1,-1,-1,-1,-0.9134,-0.96,-0.5468,-0.248,-0.376,-0.376,-0.4068,-0.36,-0.4334,-0.22,-0.22,-0.0734,0.0466,-0.1468,-0.52,-0.8,-0.9268,-0.8734,-0.9334,-0.4568,0.4432,0.5666,0.57,0.6332,0.5532,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,1,1,1,-0.4572,-0.9714,-0.9428,-0.8,-0.8,-0.8286,-0.8,-0.4572,1,1,0.6286,-0.1714,-0.7428,-0.9714,1,1,1,0.3428,-0.8,-0.8572,-0.8858,1,1,1,1,1,1,1,1,0.94,0.5892,0.4264,0.4316,0.4316,0.4402,0.452,0.4384,0.3878,0.3984,0.5042,0.7154,-0.52,-0.3764,-0.5224,-0.0438,0.7898,0.8212,0.5348,1,-0.3618,0.0212,0.149,0.149,0.1064,0.1064,0.234,0.3618,0.7872,0.8724,0.9148,1,0.9574,0.8298,0.4894,0.3618,0.7446,0.8298,0.8724,0.7872,0.7872,0.8298,0.7446,0.3618,0.0638,-0.1064,-0.1064,0.0638,-0.0638,-0.1064,-0.0212,-0.5744,-0.7046,-0.25,0.2272,-0.0454,0.0228,-0.2728,0.0228,0,0.9318,1,0.7046,0.659,0.909,0.6364,0.3636,0.2728,0.5228,0.7728,0.5,0.4546,0.5454,0.909,0.7728,-0.1364,-0.3182,-0.3864,-0.3636,-0.341,-0.25,-0.2728,-0.2728,-0.5,-0.1764,0.0352,0.5058,0.2706,0.0352,0.1058,0.2706,0.5058,0.9058,0.9764,0.8824,1,1,0.8352,0.7176,0.647,0.8824,0.8352,0.6706,0.5058,0.8118,0.9294,0.7412,0.4588,0.0118,-0.2706,-0.3648,-0.0118,0.0118,-0.2236,-0.4824,-0.647,0.4454,-1,-1,1,-1,-1,-1,-0.8334,1,-0.8014,-0.6424,-0.6292,-0.6688,-0.404,-0.563,-0.2582,-0.1788,0.0066,0.2186,0.4702,0.5364,0.947,0.9602,0.8808,1,0.9736,0.8014,0.9868,0.8146,0.735,0.6556,0.9072,0.9072,0.7616,0.8544,0.6954,0.735,0.6292,0.7086,0.6688,-0.0994,'8'
-0.5608,-0.2476,0.1588,0.2898,0.6214,0.514,0.2664,0.1402,0.1214,0.0794,-0.028,0.0748,0.1636,0.1214,0.2476,0.3878,0.6822,0.8832,0.9486,0.9486,0.8832,0.7758,0.743,1,0.9346,0.771,0.7758,0.8272,0.6028,0.4906,0.5934,0.6542,-0.5648,-0.2672,0.145,0.3206,0.5534,0.3816,0.248,0.084,-0.0076,0.0076,0.0458,-0.0038,0.0878,0.2022,0.2176,0.2938,0.603,0.6832,1,0.9542,0.8358,0.6794,0.6718,0.8512,0.7672,0.8282,0.8282,0.748,0.6604,0.5916,0.5726,0.71,-0.5074,-0.2314,0.2388,0.2426,0.3768,0.1978,0.1716,0.0112,-0.1194,-0.1306,-0.0374,-0.0746,0.0224,0.1642,0.1568,0.2762,0.418,0.7014,1,0.9068,0.9738,0.832,0.7686,0.8732,0.944,0.9254,0.8768,0.75,0.7798,0.7052,0.7836,0.8432,-0.5728,-0.2504,0.297,0.2738,0.1496,-0.0718,-0.1068,-0.1922,-0.4564,-0.4408,-0.2816,-0.1224,-0.1534,-0.0602,-0.0098,0.0292,0.1766,0.4136,0.666,0.9844,1,0.7592,0.6894,0.732,0.7864,0.7748,0.7748,0.7048,0.6504,0.5728,0.6622,0.701,-0.605,-0.1276,0.2674,0.1522,0.0082,-0.3004,-0.3498,-0.3622,-0.428,-0.5226,-0.4486,-0.3168,-0.2634,-0.288,-0.2386,-0.1728,-0.1234,0.14,0.4198,0.8642,1,0.7736,0.5844,0.6214,0.6872,0.6214,0.6502,0.6914,0.4404,0.428,0.465,0.5514,-0.874,-0.2876,-0.1124,-0.0302,-0.222,-0.3864,-0.5836,-0.6768,-0.748,-0.622,-0.5232,-0.4958,-0.4466,-0.5124,-0.452,-0.578,-0.3698,-0.1232,0.1068,0.6932,0.9726,1,0.4192,0.5506,0.6164,0.5342,0.6274,0.5836,0.3698,0.337,0.2822,0.3864,-0.9052,-0.2156,-0.1206,-0.4568,-0.4568,-0.5172,-0.4396,-0.5948,-0.5,-0.4052,-0.3362,-0.2672,-0.4224,-0.4396,-0.3018,-0.3966,-0.2758,-0.1552,-0.1638,0.7414,1,0.862,0.2586,-0.069,-0.0862,0.069,0.3104,0.1294,-0.2156,-0.2932,-0.1982,-0.2932,-0.6734,-0.3878,-0.0204,0.102,0.4694,0.4694,-0.1836,-0.0204,0.0204,-0.102,-0.0204,0.0204,0.0612,0.1836,0.347,0.4694,0.7142,0.8776,1,0.9592,0.796,0.796,0.796,0.8776,0.8776,0.8368,0.6734,0.6734,0.551,0.3878,0.5102,0.4286,-0.6364,-0.2272,0.1364,0.0454,0.5454,0.3182,0.2728,0.0454,0.0454,0,-0.0454,0,0.091,-0.0454,0.1364,0.4546,0.5454,0.8636,0.7272,0.909,0.909,0.8182,0.6364,1,1,0.6818,0.6364,0.8182,0.591,0.5454,0.5454,0.6818,-0.6842,-0.2,0.1368,0.0316,-0.2842,-0.5158,-0.4106,-0.3474,-0.4948,-0.5158,-0.4526,-0.3894,-0.4948,-0.4316,-0.3474,-0.3264,-0.1368,0.0316,0.3684,0.7894,1,0.8948,0.5368,0.579,0.6842,0.621,0.6842,0.6632,0.3264,0.3474,0.4948,0.5158,-1,-1,-1,-1,-1,-1,-1,-1,-0.922,-0.9306,-0.6156,0.2572,0.6936,0.9336,0.685,0.5058,0.4566,0.263,-0.0838,-0.5,-0.6878,-0.8092,-0.8902,-0.9336,-0.922,-0.9132,-0.9162,-0.896,-0.9248,-0.9306,-0.922,-0.9162,-0.9018,-1,-1,-1,-1,-1,-1,-1,-1,-0.9784,-0.9784,-0.683,-0.092,-0.0576,0.4978,0.7684,0.907,0.6438,-0.124,-0.447,-0.7022,-0.8578,-0.96,-0.974,-0.98,-0.9792,-0.9764,-0.917,-0.6722,-0.6294,-0.623,-0.5396,-0.4954,-0.639,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.9134,-0.61,-0.3568,-0.32,-0.26,-0.16,-0.03,-0.1168,-0.2068,-0.08,-0.1144,-0.1772,-0.6744,-0.8568,-0.9168,-0.9068,-0.8534,-0.7868,0.62,0.7266,0.6566,0.7766,0.7466,0.78,-1,-1,-1,-1,-1,-1,-1,-1,-0.7428,1,1,1,-0.5714,-0.7714,-0.5428,-0.8286,-0.3714,-0.0858,0.1428,0.4286,1,1,-0.9142,-0.9142,-1,-0.3142,1,1,0.0858,-0.6858,-0.8,-0.9142,-0.8,1,1,1,1,1,1,1,1,1,0.7702,0.5498,0.5984,0.589,0.6126,0.6098,0.6198,0.647,0.6598,0.754,0.7068,-0.52,-0.3058,-0.4874,-0.219,-0.126,-0.1762,-0.0214,1,-0.4736,-0.1052,-0.0526,0.2106,0.1578,0.0526,0.3684,0.421,0.6842,0.8422,0.8948,1,0.9474,0.8948,0.7894,0.7368,0.6842,0.7368,0.6842,0.579,0.5264,0.5264,0.421,0.2106,0.2106,0.2106,-0.1052,-0.1052,-0.3158,-0.1578,-0.2106,-0.579,-0.5578,-0.1158,0.2842,0.2632,-0.0948,-0.221,-0.0316,0.2,0.8948,1,0.9158,0.979,1,0.8106,0.621,0.6,0.7474,0.579,0.5368,0.621,0.5368,0.6422,0.7264,0.5158,0.221,-0.3052,-0.3684,-0.5578,-0.4948,-0.5158,-0.4526,-0.8948,-0.1112,0.293,0.7172,0.3738,0.3334,0.192,0.2728,0.394,0.7778,1,0.6768,0.8182,0.7172,0.7374,0.6566,0.596,0.4344,0.596,0.596,0.5354,0.293,0.4142,0.495,0.2324,0.0506,-0.0506,-0.2728,-0.3738,-0.596,-0.2728,-0.3738,-0.4546,0.3664,-1,-1,1,-1,-1,-1,-0.8334,1,-0.9206,-0.6688,-0.6424,-0.6688,-0.6292,-0.5894,-0.5232,-0.351,-0.139,0.0198,0.1126,0.245,0.5894,0.4966,0.5894,0.9602,0.8808,1,0.8146,0.7484,0.9338,0.9736,0.7484,0.894,0.6822,0.7086,0.6424,0.404,0.6158,0.5232,0.3774,0.2052,'8'
-0.6776,-0.3496,-0.1356,-0.07,0.0984,0.515,0.612,0.9058,0.826,0.786,1,0.9686,0.6662,0.4408,0.3838,0.3038,0.184,0.3296,0.418,0.5978,0.7062,0.6262,0.5492,0.3752,0.2554,0.2068,0.1898,0.1698,0.244,0.3096,0.361,0.455,-0.5696,-0.361,-0.0802,-0.1016,0.1792,0.524,0.6712,0.7514,0.8048,0.9438,1,0.8022,0.6444,0.516,0.2994,0.1898,0.1952,0.2486,0.254,0.492,0.5374,0.5294,0.4332,0.2648,0.0962,0.0588,0.0722,0.0348,0.0508,0.0588,0.0402,0.0588,-0.5568,-0.338,-0.1336,-0.0938,0.2414,0.412,0.7586,0.7898,0.9034,1,0.946,0.9716,0.6364,0.4404,0.3806,0.1876,0.2216,0.2386,0.2642,0.4034,0.6704,0.608,0.3778,0.1988,0.091,0.0852,0.071,0.0056,0.0312,0.125,0.0056,-0.1732,-0.5844,-0.414,-0.142,-0.0404,0.3184,0.5784,0.7668,1,0.979,0.9372,0.979,0.997,0.985,0.6382,0.3542,0.3334,0.3154,0.3304,0.426,0.5696,0.5666,0.6024,0.5276,0.3872,0.2316,0.2168,0.1958,0.166,0.1838,0.2526,0.2436,0.1718,-0.6812,-0.4188,-0.2406,-0.0624,0.2218,0.6906,0.8062,0.9844,0.7656,0.6656,0.7532,0.9718,1,0.925,0.625,0.5624,0.4438,0.5126,0.5782,0.6344,0.7688,0.725,0.5344,0.3094,0.2406,0.1594,0.1094,0.1032,0.1406,0.1688,0.2782,0.1938,-0.8776,-0.4404,-0.1988,0.0612,0.6116,0.8594,0.6422,0.526,0.4588,0.3242,0.3364,0.4526,0.6452,0.7798,0.9848,1,0.792,0.6666,0.7126,0.7522,0.89,0.8868,0.7554,0.5382,0.3976,0.3242,0.312,0.2814,0.312,0.477,0.5444,0.4618,-0.7126,-0.3754,-0.203,0.226,0.4828,0.3564,0.0268,0.0536,-0.1954,-0.2988,-0.0842,-0.0384,0.1034,0.0652,0.4214,0.5288,0.7702,0.8506,0.7624,0.7242,0.7702,0.7892,0.9732,1,0.6054,0.4406,0.3026,0.2184,0.2874,0.3946,0.475,0.5978,-0.5454,-0.091,-0.0454,0.1364,0.3182,0.1364,0.4546,0.8636,0.8636,0.7272,0.9546,0.9546,1,0.6818,0.591,0.4546,0.3636,0.6364,0.591,0.7728,0.9546,0.6818,0.4546,0.6364,0.409,0.409,0.3636,0.3182,0.409,0.5,0.3636,0.5,-0.614,-0.3684,-0.0878,0.0176,0.2982,0.5088,0.7192,0.7894,0.7544,0.8246,1,0.9298,0.614,0.5438,0.3684,0.3334,0.2982,0.3334,0.4036,0.5438,0.614,0.614,0.5438,0.2982,0.2632,0.2632,0.228,0.1578,0.2982,0.3334,0.4386,0.5088,-0.7608,-0.5652,-0.3478,-0.1304,0,0.7392,0.826,0.8696,0.6956,0.4348,0.5652,0.8696,0.913,1,0.6522,0.5,0.3478,0.4348,0.5218,0.674,0.8696,0.7174,0.413,0.2826,0.1086,0.1304,0.1086,0,0.1956,0.3044,0.0218,0.1522,-1,-1,-1,-1,-1,-1,-1,-1,-0.9336,-0.9202,-0.877,0.3522,0.824,0.8206,0.598,0.4186,0.4086,0.2924,0.2692,0.2624,-0.0166,-0.3986,-0.7608,-0.8604,-0.9102,-0.8838,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9848,-0.9818,-0.7728,0.425,0.893,0.7162,0.618,0.393,0.3736,0.2456,0.059,-0.2322,-0.4274,-0.821,-0.936,-0.9398,-0.9676,-0.9708,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.8534,-0.7468,-0.5534,-0.5446,-0.5156,-0.5134,-0.5046,-0.5312,-0.6616,-0.63,-0.6746,-0.5968,-0.5002,-0.399,-0.2956,-0.4956,-0.809,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,-0.8572,-0.7142,-1,-1,-1,-0.6858,-0.2,-0.5142,0.5142,1,-0.5428,-0.6572,-0.5142,-0.5428,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.86,-0.8672,-0.8452,-0.8292,-0.8594,-0.917,-0.9418,-1,-1,-0.9282,-0.4,0.0588,-0.718,-0.4426,0.497,0.7116,0.789,1,-0.6098,-0.2682,0.122,0.6586,0.9024,1,1,0.7074,0.561,0.8048,1,1,0.9024,0.6586,0.756,0.9512,1,0.9512,0.7074,0.6586,0.6098,0.561,0.2682,-0.2196,-0.122,-0.317,0.0244,0.0244,0.0244,0.0244,0.0244,-0.7074,-0.4286,-0.4946,0.033,0.6264,0.6924,1,0.978,0.3846,0.1868,0.4286,0.8462,0.8902,0.4946,0.2528,0.4506,0.5384,0.8902,0.7802,0.4286,0.4506,0.6264,0.4506,0.2528,-0.099,-0.3186,-0.2088,0.033,-0.011,0.1868,0.1208,0.2748,-0.077,-0.4,-0.3556,0.1334,0.6,0.8222,0.9778,1,0.8,0.6,0.7778,0.8666,0.7778,0.7334,0.4222,0.5778,0.6,0.7334,0.6222,0.4888,0.5334,0.6666,0.4444,0.4888,0.1112,-0.4888,-0.0444,0.2888,0.3556,-0.0444,0.1112,0.2444,0.0222,1,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.043,0.043,0.0798,-0.0552,-0.1534,0.1656,0.1288,0.178,0.4356,0.8774,0.8036,1,0.7546,0.6564,0.362,0.276,0.411,0.497,0.2516,0.2024,0.4478,0.9264,0.9632,0.411,0.2392,0.2516,0.0798,0.3006,0.3374,0.1656,0.043,-0.2148,'9'
-0.6254,-0.345,-0.1514,-0.0968,0.2134,0.6154,0.737,0.856,0.9008,0.9182,1,0.861,0.732,0.4144,0.4094,0.3076,0.2506,0.4218,0.392,0.6154,0.8064,0.6674,0.3622,0.3698,0.3102,0.144,0.211,0.2532,0.1886,0.2234,0.2606,0.34,-0.5766,-0.3432,-0.0434,-0.0618,0.1624,0.6522,0.7254,0.8444,0.8582,0.8718,1,0.8032,0.7208,0.4348,0.2608,0.1762,0.2608,0.3226,0.341,0.5858,0.6636,0.6522,0.3708,0.302,0.2128,0.08,0.0916,0.1762,0.1236,0.0962,0.222,0.199,-0.662,-0.4134,-0.084,-0.0926,0.0054,0.5856,0.6794,0.8516,0.6642,0.7972,1,0.8474,0.6902,0.4438,0.2956,0.2824,0.2498,0.2738,0.3436,0.566,0.6292,0.7122,0.3718,0.289,0.2716,0.0926,0.0644,0.1908,0.2148,0.18,0.254,0.302,-0.6552,-0.4506,-0.1334,-0.0436,0.1954,0.5356,0.8368,0.8666,0.7794,0.9034,0.977,1,0.8712,0.6344,0.5196,0.3632,0.3518,0.4,0.4666,0.6092,0.8414,0.8414,0.5494,0.4138,0.3494,0.2114,0.1678,0.2804,0.2804,0.246,0.3518,0.446,-0.6382,-0.4632,-0.2512,-0.0024,0.2996,0.6222,0.795,0.887,0.8042,0.689,0.7328,0.977,1,0.8918,0.5714,0.4908,0.4862,0.3986,0.5414,0.6682,0.795,0.6798,0.5254,0.4332,0.3456,0.1658,0.242,0.2466,0.2374,0.3156,0.4332,0.4792,-0.9972,-0.5852,-0.3778,-0.0796,0.5312,0.7614,0.8154,0.659,0.3324,0.3012,0.338,0.4914,0.6222,0.7954,0.9404,1,0.858,0.5568,0.6988,0.713,0.8806,0.8722,0.8608,0.5228,0.5768,0.321,0.2812,0.3466,0.2414,0.3978,0.5682,0.5768,-0.943,-0.597,-0.5134,0.0532,0.521,0.5096,0.194,0.0152,-0.1674,-0.2396,-0.2472,-0.251,-0.1788,-0.1064,0.2966,0.6122,0.8288,0.8556,0.8518,0.6958,0.7072,0.8518,0.848,1,0.8288,0.4714,0.4334,0.3346,0.2168,0.2054,0.3422,0.3992,-0.6734,-0.3062,-0.347,-0.0612,0.4694,0.6326,0.8368,0.9592,1,1,1,1,0.9592,0.796,0.3878,0.3878,0.3878,0.4286,0.551,0.7142,0.7552,0.6734,0.5102,0.2654,0.3062,0.2244,0.1836,-0.0204,-0.1428,-0.0204,0.0612,-0.0204,-0.7084,-0.5416,-0.2084,-0.125,0.0834,0.5416,0.6666,0.9166,0.9166,0.7916,1,1,0.5834,0.1666,0.375,0.375,0.1666,0.4166,0.4166,0.5416,0.7916,0.75,0.375,0.375,0.375,0.1666,0.25,0.2916,0.2084,0.2916,0.2916,0.375,-0.8936,-0.7022,-0.2978,-0.149,0.2978,0.7234,0.8936,0.851,0.3192,0.3618,0.468,0.6596,0.766,1,1,0.7022,0.5744,0.5106,0.5106,0.5958,0.8298,0.851,0.5532,0.3404,0.4042,0,0.1064,0.2554,0.1276,0.3404,0.617,0.7022,-1,-1,-1,-1,-1,-1,-1,-1,-0.901,-0.909,-0.7306,0.39,0.7188,0.9128,0.8574,0.8812,0.6752,0.5842,0.4258,0.1168,-0.2158,-0.6514,-0.707,-0.794,-0.8614,-0.893,-0.8812,-0.9248,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9798,-0.979,-0.7834,0.4744,0.79,0.7918,0.911,0.9268,0.8348,0.843,0.377,-0.1868,-0.5374,-0.8662,-0.9342,-0.95,-0.9566,-0.9606,-0.9622,-0.9672,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.9,-0.72,-0.484,-0.4764,-0.5274,-0.5256,-0.5256,-0.471,-0.4692,-0.5038,-0.6184,-0.7226,-0.639,-0.6212,-0.6244,-0.6378,-0.6412,-0.7778,-0.8578,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,0.3142,1,1,-0.5428,-0.5428,-0.9142,-0.9714,-1,-0.4572,-0.4572,-0.4,0.4858,0.0572,-0.7142,-0.9428,-0.8858,-0.9428,-0.8572,-0.4572,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.8612,-0.8432,-0.8114,-0.7942,-0.8016,-0.8104,-0.8362,-0.8556,-0.887,-0.7976,-0.48,0.2942,-0.6182,-0.2788,0.4494,0.68,0.6958,0.8416,-0.0666,0.2,0.3778,0.7334,0.9556,0.9556,1,0.8222,0.7334,0.7334,0.8666,0.7778,0.6,0.6444,0.6,0.6,0.5112,0.5556,0.6444,0.6,0.5556,0.4666,0.4222,0.2444,-0.1556,-0.0222,0.1112,-0.0666,-0.1556,0.0222,-0.0222,-0.6,-0.2352,-0.098,0.3138,0.6274,0.8236,1,0.8824,0.4902,0.2746,0.4902,0.8236,0.647,0.3922,0.2942,0.2746,0.4314,0.353,0.3334,0.451,0.5882,0.5882,0.2942,0.1568,-0.255,-0.255,-0.196,-0.0588,-0.2942,-0.2156,-0.1568,-0.1764,-0.4902,-0.12,0.12,0.3334,0.6,0.7866,1,0.7066,0.3066,0.28,0.3866,0.76,0.44,0.28,0.2,-0.1466,-0.0134,0.04,-0.0134,0.36,0.4134,0.2534,0.28,0.12,-0.28,-0.1734,-0.2266,-0.2,-0.3334,-0.28,-0.1734,-0.3334,-0.8134,1,-1,-1,1,-1,-1,-1,-0.8334,-1,0.0208,-0.0834,-0.0624,0.2916,0.0416,0.1666,0.0416,0.0624,0.8542,0.875,1,0.8542,0.8958,0.5416,0.5,0.4792,0.1876,0.1876,0.1042,0.1666,0.0416,0.8124,0.8958,0.5416,0.3334,0,-0.25,-0.2916,-0.2708,0.0416,-0.1042,-0.4376,'9'
-0.3682,-0.05,0.5682,0.6182,0.25,-0.0272,-0.009,-0.15,-0.2546,-0.0818,-0.159,-0.1272,0.1272,0.1318,0.15,0.5318,0.841,0.9454,0.7636,0.7272,0.7272,0.65,0.7046,1,0.9228,0.85,0.8272,0.7818,0.641,0.8,0.8772,0.7228,-0.4416,-0.1396,0.2868,0.3472,0.6264,0.483,0.317,0.1622,0.1056,0.151,0.1094,0.215,0.3208,0.3208,0.5736,0.7358,0.985,0.9886,0.9736,0.8528,0.8642,0.8982,0.8944,0.9812,0.966,0.9208,0.8868,0.7622,0.7358,0.8264,0.9584,1,-0.4768,-0.2244,0.1726,0.4582,0.6252,0.6252,0.5732,0.2542,0.2244,0.18,0.2208,0.3544,0.332,0.3988,0.6474,0.7848,0.9666,1,0.9666,0.9294,0.9146,0.8962,0.948,0.9258,0.9294,0.8812,0.8368,0.8218,0.6958,0.77,0.8182,0.9406,-0.5018,-0.2808,0.0824,0.3932,0.4906,0.6368,0.5132,0.1648,0.1986,0.1386,0.146,0.1872,0.367,0.3446,0.427,0.7828,0.8614,1,0.8426,0.7192,0.7716,0.8576,0.8576,0.8988,0.9214,0.7266,0.7266,0.7528,0.5768,0.6104,0.6966,0.749,-0.4548,-0.24,0.0404,0.4664,0.474,0.5394,0.2822,0.144,-0.048,0.0978,0.0326,0.117,0.2592,0.2976,0.4166,0.5854,0.8464,0.9078,0.95,0.7428,0.7736,0.7312,0.8196,1,0.9692,0.7774,0.7428,0.689,0.4972,0.4894,0.6162,0.6392,-0.6102,-0.2796,0.055,0.5932,0.5084,0.3136,0.0508,-0.2372,-0.2034,-0.2162,-0.2458,-0.1906,-0.0296,-0.0212,0.0636,0.2162,0.6016,0.9916,1,0.6484,0.6568,0.6016,0.5848,0.856,0.928,0.6906,0.555,0.5932,0.2372,0.3516,0.4576,0.4704,-0.8928,-0.2858,0.317,0.4956,0.3036,-0.1652,-0.3348,-0.2902,-0.2768,-0.4018,-0.3706,-0.192,-0.1608,-0.1428,-0.0938,0.0892,0.2992,0.759,1,0.9822,0.7544,0.683,0.634,0.8974,0.933,0.8258,0.8928,0.7054,0.5536,0.5938,0.6608,0.7858,-0.4286,0.0476,0.4762,0.5238,-0.1904,-0.1904,-0.5238,-0.3334,-0.2858,-0.238,-0.4286,-0.238,-0.1428,-0.0476,0.0952,0.2858,0.6666,0.8096,0.381,0.4286,0.7142,0.5238,0.5238,1,0.762,0.8096,0.9048,0.8572,0.5714,0.8572,1,0.6666,-0.2444,0.0666,0.8222,0.9112,0.5556,0.1556,0.1556,-0.1112,-0.1556,0.0666,-0.2888,-0.0222,0.2444,0.1112,0.2,0.5556,0.7778,1,0.8666,0.8222,0.6444,0.6444,0.7778,0.9556,0.7778,0.9112,0.6,0.6444,0.6444,0.4222,0.5556,0.6,-0.5682,-0.2728,-0.091,0.5,0.5,0.4546,0.25,0.091,-0.2728,-0.0682,-0.0682,0.0682,0.159,0.1818,0.341,0.5228,0.6818,1,0.9318,0.7046,0.75,0.7046,0.8182,0.909,0.909,0.7728,0.6364,0.6818,0.2954,0.5454,0.5682,0.5682,-1,-1,-1,-1,-1,-0.9604,-0.9564,-0.9386,-0.9544,-0.9188,-0.707,0.6812,0.4554,0.6178,0.707,0.2238,0.103,-0.1366,-0.1524,-0.1406,-0.1702,-0.4514,-0.6298,-0.7564,-0.8238,-0.8,-0.8258,-0.8574,-0.9128,-0.9248,-0.9366,-0.9564,-1,-1,-1,-1,-1,-1,-0.9846,-0.9838,-0.8986,-0.69,-0.3736,-0.6204,-0.413,0.1164,0.5024,0.8796,0.609,0.19,-0.0402,-0.3138,-0.4888,-0.5486,-0.549,-0.7406,-0.8272,-0.868,-0.9244,-0.9528,-0.9596,-0.9658,-0.9676,-0.9782,-0.9824,-1,-1,-1,-1,-1,-1,-0.88,-0.9534,-0.5834,0.7166,0.7266,0.4832,-0.5934,-0.483,-0.363,-0.3544,-0.38,-0.4144,-0.4772,-0.4316,-0.4944,-0.503,-0.2516,-0.32,-0.28,-0.3168,-0.5434,-0.4734,-0.5868,-0.5334,-0.6068,-0.8134,-0.94,-1,-1,-1,-1,-1,-1,-0.6,0.6572,1,1,1,1,1,1,-0.0572,-0.9142,-0.8858,-0.8286,-0.9142,-0.7142,-0.8572,-0.6572,-0.3714,0.0858,-0.6,-0.2,-0.2286,-0.8,-0.8572,-0.8286,-0.6,-0.5428,-0.5142,-1,0.3896,0.442,0.4912,0.5152,0.5844,0.664,0.7588,0.8662,1,0.9938,0.5066,0.484,0.5144,0.4968,0.4726,0.4734,0.4836,0.4554,0.4382,0.5038,-0.48,-0.2236,-0.7596,-0.4454,-0.4264,-0.1978,0.1586,1,-0.5548,-0.5312,-0.3412,-0.3768,-0.2166,-0.1276,-0.0564,-0.0742,-0.0208,0.3294,0.4362,0.4896,0.5668,0.8516,0.8814,1,0.9526,0.905,0.7388,0.7744,0.8398,0.8754,0.7388,0.7864,0.7864,0.6854,0.5192,0.5192,0.4124,0.448,0.1692,-0.2106,-0.874,-0.7206,-0.5562,-0.485,-0.5342,-0.452,-0.3864,-0.1398,0.0082,0.074,0.3424,0.4466,0.7644,0.8028,0.8466,0.9672,1,1,0.9452,0.8466,0.9178,0.9452,0.8684,0.9178,0.841,0.6494,0.7754,0.6822,0.6274,0.6274,0.4576,-0.0192,-0.4412,-0.2572,-0.2698,-0.492,-0.5492,-0.3968,-0.2826,-0.035,0.3904,0.4794,0.492,0.6318,0.9174,0.9238,0.835,1,0.7904,0.9048,0.7842,0.7588,0.6444,0.7904,0.4412,0.6634,0.5492,0.5746,0.3842,0.5492,0.3396,0.5492,0.308,-0.0286,-0.4476,-1,-1,1,-1,-1,-0.6,-0.3,-1,-0.3234,0.2632,0.0676,-0.203,-0.2482,0.0526,0.0676,-0.1428,0.0526,0.8796,1,0.6992,0.7594,0.8346,0.5488,0.564,0.8496,0.8196,0.2482,0.0526,0.624,0.624,0.4736,0.233,-0.0978,-0.4736,-0.6842,-0.5188,-0.0526,0.0526,0.0076,-0.3984,'10'
-0.3598,0.0132,0.6898,0.7162,0.2542,0.033,0.0726,-0.2476,-0.0792,-0.0132,-0.1848,-0.0694,0.0528,0.1716,0.1684,0.373,0.8316,0.8944,1,0.858,0.8316,0.6666,0.8812,0.934,0.8482,0.7228,0.6534,0.538,0.5974,0.6436,0.5644,0.4818,-0.4216,-0.1166,0.3468,0.505,0.764,0.5568,0.4072,0.1684,0.1454,0.1884,0.1856,0.2058,0.272,0.4014,0.364,0.5166,0.977,0.8992,1,0.9654,0.9252,0.8158,0.9338,0.931,0.8676,0.7008,0.6316,0.6202,0.482,0.4648,0.6058,0.505,-0.455,-0.1516,0.299,0.517,0.7202,0.5964,0.5846,0.2784,0.1576,0.1634,0.2372,0.2076,0.2488,0.408,0.4138,0.5522,0.9234,0.8704,0.9528,0.941,0.8292,0.8852,0.8646,0.8438,1,0.7114,0.5994,0.62,0.461,0.4404,0.349,0.5258,-0.5074,-0.2342,0.2152,0.5508,0.6996,0.448,0.391,0.207,0.0636,-0.004,0.0772,0.1394,0.088,0.2286,0.3668,0.4722,0.7104,1,0.981,0.678,0.7754,0.724,0.6806,0.9486,0.9918,0.7158,0.586,0.586,0.41,0.3776,0.4236,0.4614,-0.544,-0.327,0.1318,0.6346,0.6428,0.2006,-0.011,-0.1154,-0.2032,-0.1566,-0.2336,-0.1182,-0.0248,0.011,0.1182,0.217,0.4918,0.7582,0.9726,0.8626,0.6594,0.6758,0.662,0.8984,1,0.8792,0.6786,0.599,0.5248,0.3874,0.4368,0.5082,-0.7102,-0.226,0.1304,0.4782,0.3072,-0.2956,-0.3914,-0.574,-0.5768,-0.4754,-0.426,-0.5276,-0.255,-0.2492,-0.2406,-0.1044,0.0956,0.4144,0.7304,1,0.9014,0.6666,0.487,0.7304,0.9102,0.8696,0.7246,0.7392,0.571,0.455,0.5014,0.6144,-0.9024,-0.226,0.0488,0.085,-0.1066,-0.5878,-0.4502,-0.3852,-0.7722,-0.7432,-0.5226,-0.5046,-0.4032,-0.4502,-0.367,-0.4576,-0.1862,-0.1428,0.3164,0.7468,1,0.8372,0.5154,0.6312,0.6746,0.7252,0.6708,0.736,0.566,0.284,0.3454,0.4394,-0.3658,-0.0244,0.561,0.6586,0.0732,-0.561,-0.6098,-0.2682,-0.3658,-0.317,-0.2196,-0.1708,-0.1708,-0.122,0.0732,0.317,0.6098,0.9024,0.6098,0.8048,0.7074,0.5122,0.8048,0.9512,1,0.9024,0.7074,0.8048,0.8048,0.7074,0.6098,0.1708,-0.2244,0.102,0.796,0.8368,0.3878,-0.1836,0.0612,-0.3062,0.0204,0.0612,-0.347,0.0204,0.102,-0.0204,0.0612,0.347,0.3062,0.6326,1,0.9184,0.6326,0.796,0.7142,0.8776,0.9592,0.8368,0.551,0.6734,0.796,0.6326,0.6734,0.551,-0.4526,-0.179,0.2632,0.579,0.7474,0.5368,0.5158,0.3052,0.2,0.179,0.2632,0.221,0.2632,0.3894,0.4106,0.621,0.9578,0.9158,1,0.8316,0.8316,0.9158,0.8106,0.8526,0.979,0.7894,0.5578,0.6,0.4948,0.4526,0.4106,0.6,-1,-1,-1,-1,-0.926,-0.9498,-0.939,-0.9478,-0.9324,-0.9324,-0.8082,0.6862,0.2832,0.7472,0.353,0.1634,0.2092,0.1634,0.1242,-0.1656,-0.5512,-0.7494,-0.8278,-0.83,-0.8366,-0.8758,-0.8976,-0.9282,-0.9368,-0.9346,-1,-1,-1,-1,-1,-1,-1,-0.957,-0.9616,-0.9554,-0.8676,-0.2638,0.4142,-0.336,0.0454,0.2968,0.8308,0.5278,0.3626,0.4862,0.2976,0.191,0.1386,-0.2428,-0.7642,-0.8856,-0.892,-0.9006,-0.9068,-0.9068,-0.9186,-0.939,-0.9326,-1,-1,-1,-1,-1,-1,-1,-0.8986,-0.9,-0.87,-0.3868,0.55,0.57,0.44,-0.7334,-0.592,-0.554,-0.56,-0.568,-0.514,-0.492,-0.416,-0.32,-0.226,-0.462,-0.8534,-0.8068,-0.8868,-0.7434,-0.7234,-0.6634,-0.8768,-0.8334,-1,-1,-1,-1,-1,-1,-1,-0.5142,-0.9428,0.4858,1,1,1,1,1,-0.5714,-0.7714,-0.8286,-1,-0.9714,-1,-0.9142,-0.8,0.6858,0.8,0.0858,-0.7142,-0.9428,-0.7714,-0.7142,-0.8572,-0.8858,-0.1142,-1,-1,-1,0.3314,0.3966,0.4322,0.4856,0.5614,0.621,0.7274,0.8434,0.9616,0.8222,0.4266,0.4172,0.4026,0.3954,0.383,0.371,0.3684,0.3658,0.3568,0.5594,-0.5334,0.1648,-0.4018,-0.2826,0.1112,0.1394,0.0024,1,-0.517,-0.5294,-0.127,-0.0712,-0.1332,0.1456,0.0712,0.1394,0.1764,0.0526,0.3436,0.4242,0.5852,0.7214,0.8514,1,0.969,0.8638,0.8204,0.74,0.6656,0.7586,0.7832,0.6718,0.7894,0.517,0.6408,0.4674,0.449,0.4428,0.0464,-0.2198,-0.7738,-0.6144,-0.6144,-0.563,-0.4962,-0.419,-0.3934,-0.2648,0.0488,0.0694,0.09,0.419,0.7326,0.7738,0.8868,0.9588,1,0.7994,0.7276,0.6606,0.6092,0.6042,0.7892,0.7634,0.5476,0.5578,0.6402,0.5218,0.4704,0.4498,0.203,-0.018,-0.8052,-0.616,-0.6734,-0.4212,-0.6276,-0.2836,-0.2664,-0.2492,0.2664,0.3524,0.341,0.4728,0.8396,0.8796,1,0.9598,0.8452,0.679,0.6218,0.5416,0.6848,0.3926,0.5014,0.5072,0.6046,0.49,0.5874,0.6104,0.4786,0.467,0.53,0.278,0.043,-1,-1,1,-1,-1,-1,-0.2666,-1,0.1352,0.0946,0.1082,0.1082,0,0.0676,0.2702,0.081,0.1892,1,0.919,0.527,0.4324,0.3784,0.2028,0.0946,0.2702,0.3918,0.1892,0.2432,0.2298,0.3784,0.2432,0.3514,0.2838,0.0136,0,-0.054,0.054,0.0136,0.1082,0.027,'10'
-0.957,-0.279,0.0902,0.5794,0.545,0.631,-0.0988,-0.1674,-0.2618,-0.545,-0.5108,-0.073,-0.0214,-0.339,-0.0644,0.3048,0.7424,1,0.897,0.8626,0.9228,0.5622,0.2618,0.7682,0.854,0.5966,0.3304,0.2532,0.2018,0.4764,0.3648,0.3134,-0.4716,-0.1606,0.3278,0.4046,0.7626,0.7392,0.4984,0.4382,0.4782,0.2474,0.2442,0.3846,0.4314,0.4782,0.679,0.8528,0.9934,1,0.9566,0.8862,0.8762,0.893,0.9096,0.893,0.8294,0.7726,0.6622,0.6756,0.592,0.6354,0.6924,0.7658,-0.5458,-0.2442,0.1184,0.3512,0.5268,0.6488,0.6336,0.4694,0.2176,0.0038,0.168,0.2558,0.271,0.3816,0.584,0.7442,0.9352,1,0.9312,0.6984,0.8702,0.8626,0.7634,0.8778,0.8168,0.6488,0.5992,0.542,0.5038,0.519,0.5916,0.6412,-0.5528,-0.3418,0.0254,0.309,0.411,0.549,0.4364,0.2618,-0.2618,0.0436,0.0654,0.04,0.1782,0.2218,0.371,0.5418,0.8582,1,0.749,0.6364,0.749,0.7346,0.6836,0.771,0.731,0.64,0.429,0.56,0.4618,0.3818,0.4872,0.5818,-0.5372,-0.2666,0.0196,0.447,0.4902,0.5176,0.3138,0.251,-0.1804,0.004,-0.0078,-0.004,0.055,0.345,0.3372,0.4706,0.847,1,0.9568,0.6942,0.7804,0.7882,0.8118,0.8784,0.8902,0.6432,0.5922,0.5372,0.4314,0.4824,0.5254,0.5726,-0.6946,-0.3496,0.0354,0.531,0.4646,0.407,0.1018,-0.177,-0.2124,-0.1946,-0.23,-0.177,0.1018,0.062,0.1062,0.3098,0.584,0.9602,1,0.8142,0.708,0.6638,0.6946,0.8716,0.9424,0.6018,0.6238,0.3938,0.3894,0.3318,0.5132,0.5354,-0.7652,-0.3304,0.2652,0.4914,0.2782,-0.0608,-0.1478,-0.287,-0.2392,-0.3566,-0.313,-0.1782,-0.0826,-0.0956,0.0478,0.1826,0.3392,0.8434,1,0.987,0.874,0.8,0.726,0.974,1,0.8608,0.8914,0.787,0.5348,0.6304,0.6652,0.7434,0.4074,0.5926,0.5556,0.7038,0.6666,0.4074,0.2592,0.2222,0.037,-0.1112,-0.1482,0.2592,0.2962,-0.1482,0,0.5186,0.7408,0.8888,0.963,1,0.963,0.5556,0.4074,0.7408,0.6666,0.7778,0.6666,0.6296,0.5926,0.7038,0.5926,0.6296,-0.68,-0.36,0.12,0.52,0.52,0.52,-0.36,0.04,0.04,-0.44,-0.36,-0.28,-0.2,-0.04,-0.12,-0.28,0.68,0.92,0.6,0.6,1,0.92,0.2,0.44,0.68,0.52,-0.2,-0.52,-0.28,0.28,0.52,0.84,-0.4594,-0.1712,0.1532,0.3334,0.5676,0.4774,0.5316,0.4954,0.4414,0.081,0.2432,0.2252,0.3514,0.4234,0.4954,0.8198,0.8918,1,0.8558,0.8378,0.7478,0.8378,0.8738,0.8378,0.8018,0.6576,0.7118,0.7118,0.4954,0.6576,0.7118,0.6756,-1,-1,-1,-1,-0.9534,-0.9378,-0.9326,-0.8186,-0.7772,-0.7332,-0.474,0.3368,0.7046,0.8808,0.3032,0.2824,0.1036,-0.0078,-0.1088,-0.0854,-0.1528,-0.2202,-0.544,-0.588,-0.684,-0.7512,-0.7902,-0.8756,-0.8912,-0.8652,-0.8834,-1,-1,-1,-1,-1,-1,-0.9758,-0.978,-0.8746,-0.668,-0.6674,-0.7184,-0.7324,-0.551,0.0774,0.9396,0.5672,0.4078,0.229,0.0486,-0.2006,-0.3338,-0.3076,-0.2898,-0.3716,-0.6658,-0.7708,-0.9104,-0.9224,-0.9408,-0.9366,-0.9408,-0.9502,-1,-1,-1,-1,-1,-1,-0.939,-0.9468,-0.7768,0.3566,0.6066,0.0332,-0.2668,-0.4534,-0.6316,-0.3458,-0.3716,-0.4316,-0.28,-0.363,-0.4658,-0.5086,-0.3486,-0.3772,-0.2934,-0.2334,-0.4368,-0.6168,-0.6068,-0.45,-0.5068,-0.56,-0.8134,-1,-1,-1,-1,-1,-1,-0.3428,0.5714,1,1,-0.4858,-0.1714,0.7142,1,1,0.1714,-0.7428,-0.8572,-0.8572,-0.9714,-0.7714,-0.8572,-0.8858,-0.6858,0,0.2,0.4286,0.7142,-0.8,-0.7714,-0.8858,-0.9428,-0.8286,-1,-1,0.7612,0.857,0.9236,0.9464,1,1,1,1,1,1,0.1712,0.0912,0.0532,0.0218,0.0378,0.0424,0.0586,0.0786,0.1132,0.2796,-0.3866,-0.2236,-0.7304,-0.6464,-0.5264,-0.3428,0.0276,1,-0.8572,-0.3956,-0.2692,-0.2528,-0.1868,-0.3516,0.0384,-0.022,0.2638,0.4726,0.6924,0.7802,0.8956,1,0.7472,0.6648,0.4946,0.5,0.3736,0.3792,0.412,0.5164,0.577,0.7418,0.7198,0.6264,0.5934,0.5164,0.522,0.2748,0.2472,0.0824,-0.8588,-0.3176,-0.1176,-0.1294,-0.0706,-0.1588,-0.1706,-0.1236,0.0118,0.2942,0.3764,0.5588,0.8764,0.8294,0.8058,0.9118,0.8236,0.7648,0.653,0.8294,0.7236,0.7764,0.8352,0.6648,0.6942,0.9882,1,0.7882,0.4824,0.4764,0.347,0.1176,0.0564,-0.1958,-0.1474,-0.3136,-0.2332,-0.142,0.0724,-0.0456,0.5764,0.866,0.9946,0.63,0.9518,0.9034,0.5924,0.6782,0.8498,1,0.8284,0.8874,0.9518,0.9572,0.807,0.6998,0.6194,0.6568,0.6622,0.5924,0.4102,0.3136,0.244,0.126,-0.3822,-1,-1,1,-1,-1,1,-0.1,-1,-0.3656,0.338,0.2276,-0.2276,-0.269,-0.3794,-0.2966,-0.1724,0.2138,0.9034,1,0.531,0.6138,0.738,0.4896,0.5586,0.669,0.7656,0.3518,0.0206,0.2552,0.4068,0.3104,0.131,-0.2276,-0.3932,-0.2552,-0.3656,-0.1724,-0.0206,-0.0896,-0.338,'11'
-0.957,-0.3648,0.0858,0.3048,0.3734,0.382,0,-0.1674,-0.1932,-0.2876,-0.3734,-0.0644,0.0042,0.0902,0.103,0.3004,0.5622,0.867,1,0.7768,0.7168,0.794,0.5966,0.7682,0.734,0.648,0.352,0.2704,0.3218,0.2876,0.2876,0.485,-0.5976,-0.2786,0.1386,0.2608,0.6394,0.5022,0.4336,0.3026,0.228,0.07,0.1118,0.1476,0.3204,0.374,0.4754,0.7348,0.8926,1,0.985,0.8628,0.854,0.8748,0.8688,0.842,0.8212,0.693,0.55,0.6244,0.5798,0.5798,0.696,0.7646,-0.523,-0.2302,0.1316,0.4276,0.5428,0.6974,0.5328,0.1678,0.1316,0.0756,0.0724,0.046,0.273,0.3256,0.4046,0.6184,0.8848,1,0.9276,0.7434,0.8454,0.8126,0.7172,0.8586,0.8092,0.6448,0.421,0.4802,0.4276,0.2764,0.3816,0.431,-0.6532,-0.2664,0.0182,0.4234,0.77,0.8248,0.2992,-0.2446,0.0474,0.0876,-0.1314,0.062,0.2518,0.2226,0.1824,0.511,0.8102,1,0.9598,0.8394,0.781,0.6642,0.7408,0.8358,0.8978,0.6606,0.4928,0.4964,0.4598,0.3832,0.5402,0.5912,-0.7616,-0.3172,0.0178,0.3462,0.3914,0.2818,0.0596,-0.2334,-0.0306,-0.1852,-0.2914,-0.1788,0.021,0.0178,0.2174,0.269,0.6136,0.9324,1,0.9228,0.752,0.7714,0.7488,0.9582,0.9774,0.9066,0.5748,0.6006,0.4912,0.4332,0.5458,0.7198,-0.9754,-0.3684,0.235,0.4176,0.0702,-0.2526,-0.5018,-0.4526,-0.4492,-0.4526,-0.4526,-0.4702,-0.193,-0.2736,-0.2808,-0.172,0.0666,0.3964,0.8666,1,0.9438,0.6386,0.565,0.7368,0.8808,0.807,0.7368,0.4878,0.5824,0.3684,0.4702,0.6456,-0.7044,-0.1384,0.0062,0.1636,-0.3144,-0.4528,-0.868,-0.7044,-0.4528,-0.629,-0.7358,-0.1886,-0.1194,-0.5094,-0.3774,-0.2452,-0.3144,-0.1636,0.2076,0.8238,1,0.8364,0.4402,0.2894,0.6226,0.805,0.7232,0.5346,0.088,-0.0126,-0.0314,0.2076,-0.3794,0.1724,-0.0344,0.2414,0.1034,-0.1724,-0.3104,-0.0344,-0.1724,-0.3794,-0.862,-0.3794,-0.1724,0.0344,-0.3794,0.1034,0.1724,0.7242,1,0.931,0.6552,0.7932,0.6552,0.4482,1,0.862,0.7242,0.3794,0.1724,0.2414,0.3794,-0.0344,-0.4,0,0.2666,0.6,0.3334,0.6666,-0.0666,0.0666,0.2,0.1334,-0.2,-0.2,0.2666,0.0666,-0.0666,0.2,0.4666,0.8,0.8666,0.5334,0.5334,0.6,0.4666,0.8666,0.9334,0.8,0.5334,0.8666,0.6,0.7334,0.8,1,-0.44,-0.14,0.2,0.48,0.64,0.66,0.66,0.36,0.2,0.06,0.2,0.26,0.3,0.5,0.56,0.72,1,0.92,0.94,0.88,0.86,0.9,0.86,0.82,0.82,0.62,0.54,0.6,0.56,0.56,0.66,0.72,-1,-1,-1,-1,-0.926,-0.929,-0.9202,-0.8314,-0.8758,-0.8166,-0.6568,0.4054,0.8876,0.648,0.4882,0.0532,0.1036,-0.1242,-0.2988,-0.3906,-0.6066,-0.6982,-0.8018,-0.9054,-0.8934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.968,-0.9648,-0.913,-0.4872,-0.6874,-0.7066,-0.75,-0.2768,0.7308,0.8484,0.1476,-0.1688,-0.1772,-0.2238,-0.2154,-0.5116,-0.7186,-0.9066,-0.931,-0.9558,-0.9482,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.887,-0.9268,-0.91,0.1632,0.2832,0.3332,0.0866,-0.5312,-0.4178,-0.3734,-0.5446,-0.5446,-0.5756,-0.5246,-0.4534,-0.449,-0.468,-0.876,-0.7968,-0.7134,-0.68,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2858,-0.7428,1,1,-0.3714,-0.0858,0.6286,1,0.2572,-0.4572,-0.4,-0.9428,-0.9142,-1,-0.6286,-0.3714,1,1,-1,-0.9714,-0.4858,-1,-1,-1,-1,-1,-1,-1,-1,0.8328,0.861,0.9218,0.9722,1,1,1,1,1,0.9088,0.236,0.2186,0.2174,0.1934,0.188,0.1946,0.1848,0.149,0.1526,0.3488,-0.36,0.0706,-0.7742,-0.6182,-0.3554,-0.1432,0.2794,1,-0.6984,-0.344,-0.1694,-0.1112,-0.1112,-0.1216,0.0264,0.074,0.2592,0.4974,0.6508,0.7248,1,0.8994,0.7038,0.6244,0.5768,0.5132,0.7196,0.5186,0.6244,0.5186,0.5026,0.4286,0.5238,0.5344,0.5396,0.4762,0.3862,0.4814,0.365,0.254,-0.6298,-0.2984,0,-0.0442,-0.0166,-0.0994,-0.0884,0.0276,0.2376,0.5028,0.464,0.6464,1,0.9338,0.989,0.6574,0.6962,0.6408,0.8012,0.7458,0.873,0.8176,0.8066,0.6022,0.4254,0.6022,0.569,0.6244,0.5912,0.4918,0.5636,0.348,-0.3334,-0.3334,-0.2542,-0.226,-0.3446,-0.3108,0,-0.0848,0.4012,0.8644,0.9774,0.791,0.9718,0.7232,0.531,0.5988,0.7684,0.7402,0.6892,0.8136,0.9604,1,0.774,0.6102,0.4464,0.4576,0.678,0.4464,0.0848,0.2598,0.2034,-0.0226,0.1944,-1,-1,1,-1,-1,-1,-0.1666,-1,-0.247,-0.3412,0.1058,0.4824,0.2,0.3176,0.3648,0.3412,0.4824,0.8118,1,0.7412,0.7648,0.6236,0.6706,0.553,0.8824,0.9058,0.4824,0.0588,0.3412,0.647,0.6236,0.3412,0.1764,0.247,0.4588,0.4352,0.4588,0.2942,0.2942,0.2,'11'
-0.4724,-0.2102,0.1754,0.2828,0.523,0.9336,0.8958,0.3996,0.3966,0.3144,0.4786,0.3966,0.6492,0.823,1,0.9494,0.82,0.6714,0.6588,0.6146,0.8452,0.9432,0.9084,0.8452,0.744,0.586,0.624,0.5418,0.5198,0.564,0.6588,0.801,-0.5306,-0.3124,0.0494,0.142,0.5426,0.9552,0.8924,0.3662,0.5128,0.5696,0.6352,0.7968,0.979,1,0.5814,0.444,0.432,0.456,0.3572,0.4708,0.6622,0.6562,0.6832,0.6712,0.5366,0.4888,0.441,0.3452,0.3602,0.411,0.5426,0.5696,-0.5228,-0.2684,-0.0016,0.1302,0.6546,0.8368,0.8712,0.821,0.6358,0.774,1,0.9844,0.4632,0.2748,0.234,0.1616,0.0612,0.0486,0.0958,0.1648,0.2872,0.4034,0.5982,0.6546,0.5918,0.4726,0.46,0.3972,0.3406,0.4222,0.4694,0.5572,-0.6392,-0.347,-0.0688,0.2028,0.7628,0.8076,1,0.8488,0.787,0.7938,0.6702,0.4502,0.1924,0.055,-0.0446,-0.2062,-0.3162,-0.2646,-0.2406,-0.2542,-0.1066,-0.0068,0.189,0.3264,0.5464,0.567,0.4158,0.3092,0.2336,0.3058,0.347,0.457,-0.8596,-0.4248,-0.1806,0.0434,0.5218,1,0.9766,0.7458,0.8428,0.5318,0.3144,0.0434,-0.097,-0.1138,-0.3444,-0.4148,-0.5284,-0.485,-0.3846,-0.3612,-0.2508,-0.204,-0.0736,0.127,0.3512,0.525,0.5318,0.3412,0.1238,0.1672,0.2442,0.224,-0.9284,-0.5284,-0.1772,0.0862,0.7626,0.948,0.717,1,0.844,0.4048,-0.0082,-0.0894,-0.2228,-0.4146,-0.4374,-0.496,-0.5056,-0.4406,-0.3822,-0.3692,-0.3106,-0.2748,-0.1708,-0.0048,0.304,0.652,0.7204,0.4926,0.2748,0.239,0.265,0.2716,-0.98,-0.6218,-0.3084,0.3782,0.8558,1,0.99,0.9652,0.8706,0.2288,-0.0896,-0.3384,-0.383,-0.4428,-0.5472,-0.393,-0.4428,-0.607,-0.602,-0.7014,-0.5772,-0.3184,-0.3482,-0.3234,0.3482,0.5074,0.582,0.2288,-0.0348,0.184,0.1792,0.01,-0.6,-0.2444,0.0666,0.2444,0.3334,0.6444,0.7334,0.5112,0.2888,0.0666,0.3334,0.2888,0.3334,0.6888,0.7334,1,0.7334,0.6888,0.6888,0.6,0.6444,0.9556,0.9112,0.8666,0.6,0.6,0.6444,0.5556,0.4222,0.6444,0.6444,0.6444,-0.5686,-0.1372,0.098,0.1764,0.3726,0.7648,0.7648,0.4902,0.2156,0.255,0.3726,0.2156,0.3334,0.647,0.9216,1,0.7648,0.7254,0.6862,0.3726,0.8432,0.8824,0.6862,0.6862,0.7648,0.5686,0.4118,0.451,0.5294,0.3334,0.4118,0.804,-0.5368,-0.3052,0.0316,0.0948,0.6422,1,0.8526,0.7052,0.621,0.6422,0.8316,0.979,0.9578,0.9368,0.579,0.3684,0.3264,0.3684,0.2842,0.4526,0.5578,0.4948,0.6842,0.7684,0.6,0.5368,0.579,0.3474,0.4106,0.4316,0.5578,0.6632,-1,-1,-1,-1,-1,-1,-0.9474,-0.9534,-0.927,-0.4488,0.0334,0.1976,0.9048,0.9676,0.6434,0.392,0.3638,0.0678,0.08,-0.1408,-0.38,-0.7142,-0.8258,-0.8764,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9842,-0.9838,-0.9508,-0.5448,-0.074,0.0656,0.733,0.8468,0.5042,0.2616,-0.0634,-0.2584,-0.2494,-0.4068,-0.6492,-0.87,-0.9588,-0.9708,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8934,-0.9168,-0.79,-0.3968,-0.4068,-0.4126,-0.54,-0.525,-0.51,-0.6776,-0.77,-0.7624,-0.8024,-0.6334,-0.7112,-0.7978,-0.9434,-0.92,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,-0.4572,1,1,1,-0.8572,-0.7714,-0.4858,-0.4,-0.6858,-0.8,-0.8,-0.9714,-0.6,0.0858,1,0.4572,-0.4,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.2518,-0.261,-0.3454,-0.4344,-0.5114,-0.583,-0.6608,-0.5588,-0.2506,0.2072,-0.3734,-0.0236,-0.0744,-0.0468,-0.065,0.271,0.586,1,-0.3952,-0.1414,0.2878,0.278,0.1414,0.239,0.4342,0.883,1,0.7952,0.678,0.883,0.9318,0.7756,0.6682,0.7074,0.7268,0.6586,0.6098,0.6682,0.6586,0.8634,0.6586,0.3854,-0.0244,-0.1122,-0.1024,-0.2488,-0.239,-0.2292,-0.3074,-0.561,-0.1578,0.3604,0.7894,0.6438,0.2712,0.1578,0.4736,0.7166,1,0.83,0.9676,1,0.9514,0.8056,0.7004,0.83,0.9434,0.9758,0.6842,0.7086,0.6276,0.579,0.7086,0.336,0.0122,-0.2712,-0.417,-0.5142,-0.417,-0.3684,-0.409,-0.7732,-0.0564,0.3024,0.628,0.6612,0.4618,0.3954,0.422,0.8738,1,0.7342,0.8272,0.9934,0.7808,0.6544,0.5814,0.7342,0.927,0.9336,0.7874,0.6544,0.4884,0.5548,0.3954,0.309,-0.0166,-0.2292,-0.4486,-0.176,-0.1362,-0.0564,-0.0632,-0.196,0.0602,-1,-1,1,-0.4,-1,-1,-0.5334,-1,0.5946,0.5406,0.2162,0.946,1,0.6486,0.3514,0.5946,0.6216,0.4324,0.4054,0.7298,0.6756,0.4864,0.1352,0.3514,0.4054,0.3244,0.5676,0.3244,0.3244,0.4864,0.1082,0.3244,0.5676,0.6486,0.6216,0.3514,0.5946,0.1352,-0.027,-0.2432,'12'
-0.4452,-0.0974,0.1544,0.3074,0.5712,0.6132,0.6372,0.5382,0.3734,0.2684,0.3284,0.2264,0.4272,0.6972,0.94,1,0.7932,0.5562,0.6222,0.6252,0.7182,0.844,0.7122,0.7182,0.6672,0.4482,0.1994,0.2534,0.1934,0.2264,0.2504,0.5322,-0.4662,-0.1856,0.1526,0.1912,0.4774,1,0.9504,0.7138,0.8486,0.78,0.6012,0.9724,0.8982,0.9202,0.7552,0.7002,0.513,0.5268,0.4746,0.4994,0.7716,0.802,0.8514,0.6918,0.6066,0.392,0.3068,0.3672,0.3068,0.2544,0.3756,0.6094,-0.5712,-0.3488,-0.0068,0.0258,0.582,0.867,0.7558,0.7666,0.7992,0.8454,0.9024,1,0.62,0.5088,0.099,0.2538,0.1208,0.1398,0.3108,0.3216,0.4056,0.6228,0.7096,0.7204,0.6066,0.3868,0.2646,0.2918,0.4138,0.3026,0.4816,0.6988,-0.5406,-0.3432,-0.1028,0.0298,0.7486,0.8702,0.9918,0.881,0.8784,1,0.754,0.5864,0.5648,0.154,0.0972,-0.0486,-0.019,0.0082,0.127,0.127,0.273,0.4082,0.4892,0.8838,0.9054,0.7594,0.4568,0.4864,0.519,0.4892,0.727,0.881,-0.7162,-0.5112,-0.2612,0.0506,0.7192,0.764,0.8596,0.663,1,0.9494,0.4102,0.3398,0.1602,0.0028,-0.118,-0.163,-0.264,-0.1714,-0.0814,-0.1404,0.1236,0.0842,0.2416,0.5956,0.8512,0.795,0.4804,0.5674,0.3932,0.5028,0.6264,0.7808,-0.97,-0.5674,-0.3378,-0.0648,0.421,0.9134,0.9002,0.777,1,0.6074,-0.0616,-0.1382,-0.1514,-0.4076,-0.5308,-0.564,-0.5608,-0.4842,-0.4576,-0.5142,-0.4076,-0.2146,-0.1448,0.178,0.5342,0.6506,0.5008,0.3544,0.2712,0.1548,0.3844,0.584,-0.8736,-0.3296,-0.3076,-0.0274,0.588,0.9726,1,0.7032,0.6924,0.1374,-0.1978,-0.2418,0.099,-0.1264,-0.3792,-0.423,-0.3352,-0.3406,-0.6428,-0.511,-0.3132,-0.555,-0.5054,-0.5714,0.0604,0.0824,0.022,0.0164,-0.2088,-0.1318,-0.1154,0.3186,-0.4166,0,0.125,0.3334,0.75,0.7916,0.7084,0.375,0.5416,0.375,0.25,0.1666,0.5416,0.625,0.875,1,0.9584,0.625,0.625,0.6666,0.6666,0.5416,0.7916,0.75,0.7916,0.5416,0.25,0.625,0.5,0.5,0.4584,0.5834,-0.5348,-0.2558,0.0232,0.3024,0.3954,0.2094,0.3488,0.4418,0.3024,-0.0232,0.1628,0.1628,0.2094,0.4418,0.814,1,0.8604,0.3954,0.5348,0.4418,0.5348,0.5348,0.721,0.721,0.4418,0.0232,0.1628,-0.1628,-0.2558,0.1162,0.2094,0.3024,-0.977,-0.3794,-0.2644,-0.1264,0.3794,0.839,0.839,0.839,1,0.7242,0.0804,0.0804,-0.0804,-0.2874,-0.4482,-0.3794,-0.4712,-0.3104,-0.3334,-0.3794,-0.2414,-0.2644,0.0574,0.1954,0.4712,0.6552,0.4252,0.2874,0.2644,0.2414,0.2874,0.5862,-1,-1,-1,-1,-1,-1,-1,-0.9192,-0.9124,-0.8922,-0.6632,0.1314,0.4444,0.9058,0.707,0.5724,0.6398,0.4882,0.1346,-0.1818,-0.5218,-0.707,-0.862,-0.8754,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9684,-0.9714,-0.823,-0.5638,-0.2128,0.3414,0.8028,0.8928,0.7306,0.5138,0.2044,0.0518,-0.2182,-0.6872,-0.8874,-0.9564,-0.9612,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.959,-0.96,-0.87,-0.3668,-0.478,-0.586,-0.658,-0.6,-0.54,-0.578,-0.528,-0.626,-0.7,-0.802,-0.851,-0.96,-0.94,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4286,-0.4286,1,1,1,-0.3714,-0.6286,-0.8,-1,-0.9714,-0.8858,-0.8,0.1142,0.3428,0.2572,-0.8858,-0.4858,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.4704,-0.4914,-0.526,-0.5778,-0.608,-0.6864,-0.734,-0.724,-0.4126,0.0512,-0.4134,0.2118,-0.7474,-0.3814,-0.3396,-0.127,0.0382,0.5834,-0.6326,-0.2858,0.2448,0.2244,0.1428,0.1224,0.4082,0.8368,0.8776,0.8776,0.9388,1,1,0.6734,0.6122,0.7142,0.9184,0.7346,0.6326,0.2244,0.796,0.7756,0.4898,0.1428,-0.0204,-0.204,-0.2448,-0.204,-0.4286,-0.2654,-0.204,-0.6938,-0.534,-0.398,0.4564,0.2428,-0.0874,-0.3204,-0.165,0.4758,0.3592,0.301,0.67,0.6894,0.7088,0.1068,0.0098,0.1262,1,0.6894,0.3398,0.1262,0.864,0.767,0.4952,-0.165,-0.3786,-0.3204,-0.2038,-0.4174,-0.3786,-0.3786,-0.4174,-0.5922,0.0452,0.1226,0.4968,0.3936,0.3936,0.3806,0.6,0.7806,1,0.8194,0.9742,0.987,0.9226,0.7678,0.7548,0.6904,0.8968,0.7032,0.458,0.4194,0.729,0.7548,0.6646,0.3162,0.1354,0.0064,0.1096,0.1484,-0.058,0.071,0.187,-0.213,0.193,-1,-1,1,-1,-1,-1,-0.7334,-1,0.6884,0.7662,0.4546,0.7922,1,0.6624,0.7402,0.4546,0.1428,0.091,0.6884,0.5844,0.7662,0.6624,0.4026,0.6624,0.7402,0.2728,0.5844,0.4026,0.8182,0.6364,0.5844,0.7662,0.6104,0.3766,0.1688,0.2468,0.3766,0.3246,0.3506,-0.065,'12'
-0.4274,-0.0456,0.2952,0.392,0.3686,0.2922,0.0808,-0.1454,-0.16,0.0014,-0.1336,-0.1072,0.0984,0.0838,0.1836,0.5566,0.6594,1,0.9354,0.7004,0.7356,0.7416,0.815,0.8854,0.9354,0.6534,0.5418,0.577,0.439,0.4186,0.671,0.6682,-0.4214,-0.091,0.1322,0.179,0.4408,0.3966,0.4986,0.1488,0.011,0.2314,0.0414,0.055,0.4326,0.4326,0.5482,1,0.9614,0.5758,0.6392,0.708,0.6612,0.7576,0.9036,0.6474,0.518,0.4656,0.3416,0.336,0.3498,0.3278,0.2258,0.4986,-0.3678,-0.0226,0.1926,0.2378,0.3254,0.7238,0.83,0.4262,0.3812,0.583,0.4396,0.6414,1,0.8726,0.8486,0.7158,0.684,0.3838,0.5034,0.5564,0.668,0.5936,0.7902,0.4768,0.2696,0.344,0.2324,0.227,0.2456,0.19,0.0784,0.4104,-0.3198,-0.0016,0.1856,0.1544,0.2512,0.8534,0.8408,0.1388,0.5788,0.6786,0.7692,1,0.9968,0.5508,0.2012,0.2636,0.145,0.1264,0.1108,0.0078,0.248,0.5382,0.457,0.2044,0.0172,0.0078,0.0608,0.1076,0.1202,0.1762,0.4072,0.5102,-0.189,0.1692,0.2836,-0.0398,-0.1144,0.0448,0.0996,0.0846,0.204,0.6518,0.8606,0.7612,0.5422,0.1542,0.0448,-0.015,0.2636,0.5422,0.388,0.0298,0.1094,0.418,0.5224,0.0996,-0.4776,-0.8906,-0.7712,-0.7762,-0.0548,0.612,1,0.9452,-0.2152,0.0922,0.305,0.1536,0.0118,-0.1962,-0.461,0.201,-0.078,0.7304,1,0.4374,0.2434,0.234,0.0354,-0.0686,0.2152,0.1536,0.1868,-0.0732,-0.2434,0.3192,0.4988,0.286,-0.1064,-0.5556,-0.8582,-0.6218,-0.0212,0.8108,0.9102,0.7588,0,0.3676,0.4054,0.1028,0.1838,0.4918,0.4162,0.7082,0.5838,0.6594,1,0.7244,0.5406,0.4702,0.0702,-0.281,-0.3568,-0.4162,-0.7298,-0.6864,-0.346,-0.2972,-0.054,0.2432,0.2162,-0.2054,-0.1352,-0.1514,-0.1298,0.1622,0.6108,0.5514,-0.4616,0,0.1924,0.423,0.3076,0.0384,-0.2692,-0.1924,-0.1538,-0.1924,-0.1154,-0.1538,-0.1154,0.077,0,0.1924,0.577,0.5,0.6538,0.5384,0.577,0.6154,0.8076,0.923,1,0.7308,0.7308,0.7308,0.5,0.6154,0.8076,0.8846,-0.52,-0.12,0.32,0.4,0.24,0.12,0.12,-0.16,-0.24,0.04,-0.16,-0.12,0.08,0.08,0.16,0.44,0.56,0.96,1,0.68,0.68,0.76,0.6,0.76,0.8,0.64,0.56,0.56,0.44,0.36,0.68,0.72,-0.4166,-0.0278,0.1666,0.1666,0.3334,0.9444,0.8334,-0.0556,0.6112,0.75,0.8612,1,0.8334,0.4444,0.0556,-0.0556,0.0278,0.0278,-0.0556,-0.3056,0.0834,0.4444,0.5834,0.1388,-0.0278,-0.1944,0.1388,-0.0834,-0.1112,0.0278,0.4444,0.5,-1,-1,-1,-1,-1,-1,-1,-1,-0.915,-0.9424,-0.6844,0.3536,0.8452,0.5114,0.3566,0.39,0.384,-0.126,-0.2686,-0.3324,-0.3566,-0.384,-0.6418,-0.833,-0.909,-0.9242,-0.9302,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9542,-0.955,-0.4634,0.2786,0.7236,0.9058,0.7566,0.666,0.1378,-0.5694,-0.6346,-0.6864,-0.7312,-0.7576,-0.8626,-0.8728,-0.9076,-0.9314,-0.9416,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.84,-0.9134,-0.57,-0.304,-0.294,-0.374,-0.508,-0.496,-0.572,-0.616,-0.682,-0.758,-0.878,-0.84,-0.83,-0.6134,-0.7168,-0.88,-0.9468,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,-0.5428,-0.5142,-0.8572,-0.6,0.5428,0.5428,-0.9428,-0.8286,-0.5142,-0.5428,-0.6572,-0.8858,-0.7714,-0.8572,-0.7428,-1,-1,-1,-1,-1,-1,0.7198,0.7224,0.7422,0.7644,0.817,0.8764,0.941,1,1,0.8566,0.4168,0.4038,0.3874,0.3632,0.3216,0.2398,0.0848,-0.1554,-0.5026,-0.5952,-0.4666,0.1764,-0.3836,0.3242,0.331,0.1598,0.3642,1,-0.4054,-0.1892,-0.2432,-0.1352,-0.027,0.1352,-0.027,0.2432,0.5676,0.7298,0.7838,0.8378,0.8378,0.8918,0.7838,0.946,1,1,0.8918,0.7298,0.6756,0.6216,0.3514,-0.081,-0.027,-0.3514,-0.3514,-0.4054,-0.3514,-0.1352,-0.2972,-0.7298,-0.464,0.0104,-0.0516,-0.1546,-0.2164,-0.1546,-0.0928,0.2784,0.5052,0.9794,0.732,0.835,0.835,0.7938,0.6288,0.7732,1,0.8556,0.7732,0.6082,0.8762,0.7938,0.464,-0.134,-0.2372,-0.2372,-0.3196,-0.402,-0.2784,0.031,0.134,-0.3196,-0.2324,0.3738,0.4546,-0.091,-0.2324,-0.1112,0.091,0.1718,0.6364,0.8586,0.697,0.9596,0.899,0.8384,0.7172,0.8182,1,0.899,0.697,0.798,0.9192,0.8182,0.4344,0.0102,-0.4344,-0.192,-0.2122,-0.2526,-0.1314,0.2526,0.3536,-0.0506,0.2718,-1,-1,1,-1,-1,-0.8,-0.8334,-1,-0.134,0.3196,0.3196,0.567,0.464,0.6494,0.9794,0.9382,0.6288,0.3196,0.1134,0.5258,0.7732,1,0.8144,0.9588,0.4432,0.4432,0.2372,0.4846,0.5876,0.4846,0.567,0.7938,0.7526,0.7114,0.3814,0.1546,0.5258,0.6908,0.5258,-0.1546,'13'
-0.485,-0.0786,0.2246,0.3334,0.3762,0.3218,-0.0158,-0.1616,-0.1302,-0.0386,-0.0758,-0.0816,0.0644,0.1244,0.2704,0.4506,0.7482,0.9656,1,0.7396,0.691,0.7712,0.7568,0.8284,0.837,0.814,0.4936,0.4334,0.5594,0.3448,0.4106,0.628,-0.512,-0.1114,0.2046,0.3004,0.6868,0.6586,0.481,0.3032,0.1114,0.2356,0.1932,0.1396,0.4302,0.5148,0.8082,0.859,1,0.8082,0.701,0.7772,0.7462,0.8702,0.715,0.78,0.7574,0.7462,0.371,0.34,0.4556,0.3004,0.3032,0.5486,-0.5204,-0.128,0.2354,0.3284,0.5466,0.5814,0.7732,0.5406,0.3226,0.4652,0.3692,0.5,0.9652,1,0.9738,0.872,0.5756,0.4534,0.5088,0.5872,0.5756,0.7616,0.5784,0.5668,0.6104,0.5232,0.2268,0.2906,0.3344,0.1716,0.2384,0.5,-0.3652,-0.0068,0.297,0.2662,0.314,0.8226,0.8464,0.5426,0.3652,0.703,0.901,0.884,1,0.8976,0.5836,0.2696,0.2696,0.1332,-0.0136,0.297,0.5904,0.5666,0.488,0.396,0.3994,0.2492,0.1502,0.256,0.3378,0.3652,0.4676,0.6758,-0.266,0.0338,0.0898,-0.0524,-0.2996,-0.2772,-0.2472,-0.1686,0.1162,0.5992,0.397,0.3446,0.588,0.2922,0.0374,0.0936,0.2622,0.1498,-0.251,-0.2172,0.3296,0.6966,0.7304,0.2472,-0.1986,-0.457,-0.824,-0.412,0.266,0.7116,1,0.9926,-0.1234,0.265,0.349,0.1602,0.0026,0.1496,-0.1234,0.517,0.6482,1,0.8582,0.832,0.8846,0.2284,0.3124,0.37,0.1286,-0.2704,-0.4436,-0.5014,-0.0656,0.2966,0.3386,0.1392,-0.3018,-0.3648,-0.8372,-0.3438,-0.202,0.6956,0.9108,0.7322,0.1672,0.686,-0.256,-0.372,0.1604,0.5358,1,0.9658,0.7134,0.645,0.9522,0.9318,0.6314,0.5836,0.4744,0.017,-0.447,-0.5154,-0.5358,-0.4608,-0.4062,-0.4334,0.2082,0.802,0.7202,0.5972,0.1126,0.2014,0.174,0.1194,0.0034,-0.2424,-0.4782,0,0.1304,0.2608,0.087,0.0434,-0.6086,-0.4782,-0.1304,-0.3044,-0.1304,-0.087,0.0434,0.087,0.0434,0.2174,0.6956,1,0.913,0.8696,0.6086,0.7392,0.7826,0.7392,0.913,0.8696,0.6956,0.6522,0.7392,0.4782,0.3044,0.913,-0.44,-0.08,0.24,0.36,0.36,0.32,0,-0.04,-0.04,-0.04,-0.16,0.08,0.08,0.08,0.2,0.52,0.72,0.92,1,0.88,0.8,0.68,0.76,0.88,0.8,0.8,0.68,0.64,0.6,0.48,0.56,0.72,-0.2352,0.147,0.4118,0.353,0.4706,0.6176,0.5588,0.5588,0.5,0.9412,0.9706,0.7942,1,1,0.4118,0.4118,0.4706,-0.3824,-0.1764,0.2352,0.4706,0.1764,0.1176,0.1764,0.0588,0,0.0294,0.2058,0.3236,0.4706,0.7352,0.6764,-1,-1,-1,-1,-1,-1,-1,-1,-0.9286,-0.9132,-0.4418,0.138,0.5628,0.9194,0.4512,0.3024,0.3364,-0.1348,-0.1938,-0.1876,-0.3116,-0.5596,-0.783,-0.8728,-0.9162,-0.9132,-0.9194,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9552,-0.957,-0.4548,0.5298,0.4926,0.8924,0.8304,0.5796,0.1154,-0.4892,-0.5012,-0.6356,-0.6098,-0.8088,-0.8914,-0.913,-0.9156,-0.9414,-0.9448,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9348,-0.9348,-0.5414,-0.146,-0.2682,-0.4322,-0.606,-0.542,-0.596,-0.51,-0.462,-0.808,-0.762,-0.856,-0.6934,-0.6334,-0.7068,-0.7134,-0.7868,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,1,1,1,-0.7714,-0.8572,-0.8,-0.6286,0.9142,0.7714,-0.4,0,-0.5142,-0.5428,-0.9714,-0.9428,-0.9142,-0.8286,-0.6572,-1,-1,-1,-1,-1,-1,0.7062,0.7584,0.7842,0.8136,0.862,0.9124,1,1,1,0.8966,0.4796,0.425,0.4066,0.3616,0.3028,0.2364,0.1222,-0.1024,-0.3818,-0.5204,-0.5466,0.153,-0.2248,0.13,0.8044,0.4686,0.3376,1,-0.3334,0.238,0.1904,0.1428,0.0476,-0.0476,-0.1428,0.238,0.762,0.9524,1,0.9048,1,0.9048,0.762,0.8096,0.8572,0.8096,0.762,0.8096,0.9048,0.8572,0.4762,-0.381,-0.381,0.0476,-0.0476,0.0476,0.0952,0,-0.0952,-0.619,-0.0858,0.3714,0.3524,0.0286,-0.0476,-0.238,-0.2952,0.0666,0.8286,0.962,0.7904,0.7524,1,0.7714,0.5428,0.6,0.7524,0.9048,0.962,0.8476,0.8476,0.7334,0.3524,-0.4666,-0.3524,-0.0476,0.0858,0.181,0.219,0.2952,0.0666,-0.0666,-0.1068,0.2428,0.301,-0.2234,-0.1262,-0.1262,0.0874,0.0486,0.8058,1,0.5922,0.7476,0.7282,0.6116,0.4368,0.534,0.6894,0.6504,0.5146,0.6894,0.8252,0.6504,0.4174,-0.2816,-0.4174,-0.1844,-0.068,0.068,0.0486,0.2816,0.2038,0.0874,1,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.2592,-0.0926,-0.074,0.4074,0.3888,1,0.9814,0.5,0.4444,0.1852,-0.1482,0.2408,0.537,0.3888,0.3334,0.0186,0.426,0.4814,0.574,0.1482,0.1666,0.3518,0.4074,0.6482,0.7038,0.0556,0.1112,0.1852,0,0.1296,0.074,-0.463,'13'
-0.5912,-0.2462,0.273,0.3702,0.129,0.0754,-0.1892,-0.2228,-0.1524,-0.1826,-0.2462,-0.1156,-0.1524,-0.0654,0.139,0.2128,0.4338,0.9296,1,0.876,0.819,0.7454,0.742,0.819,0.9396,0.8894,0.7756,0.588,0.608,0.608,0.5612,0.7386,-0.5274,-0.1788,0.1994,0.2704,0.4388,0.3884,0.1758,-0.0516,-0.0636,0.0428,-0.037,-0.0252,0.2024,0.226,0.3116,0.554,0.675,1,0.9852,0.87,0.7636,0.8404,0.9262,0.935,1,0.876,0.7932,0.6336,0.6396,0.6308,0.678,0.7872,-0.5358,-0.2058,0.1212,0.1766,0.4598,0.4248,0.5008,0.2146,0.203,0.1094,0.0336,0.1124,0.2992,0.3372,0.5504,0.962,1,0.5678,0.5474,0.67,0.638,0.6554,0.8248,0.9124,0.9942,0.7928,0.6614,0.6408,0.5182,0.4336,0.489,0.5182,-0.4826,-0.1736,0.0758,0.0884,0.1988,0.7034,0.757,0.243,0.1736,0.2586,0.284,0.246,0.41,0.672,0.8108,1,0.817,0.5078,0.3312,0.4384,0.5206,0.4416,0.653,0.877,0.836,0.7824,0.653,0.59,0.366,0.2618,0.284,0.366,-0.4464,-0.1564,0.1112,0.0358,0.5216,0.985,0.8606,0.243,0.4652,0.4012,0.4464,0.435,0.789,0.8192,1,0.9812,0.7176,0.4952,0.4012,0.4274,0.4388,0.356,0.6534,0.8268,0.8908,0.9736,0.838,0.7024,0.2882,0.1752,0.2128,0.2694,-0.2214,0.1094,0.2506,0.0998,0.4502,0.562,0.3138,0.2896,0.3918,0.0414,-0.017,0.0608,0.4112,0.8832,0.6982,0.6302,0.3772,0.5232,0.489,-0.051,0.09,0.0414,0.3674,0.7226,1,0.9172,0.2896,0.0364,-0.017,-0.1582,-0.0998,-0.2214,-0.1438,0.2534,0.4246,0.0958,0.0274,-0.3288,-0.5136,0.6232,0.7054,-0.3082,-0.6576,-0.7808,0.315,0.8424,0.4384,-0.089,0.0068,0.637,0.3698,-0.1986,-0.2876,-0.4794,0.0754,0.4932,1,0.6712,-0.048,-0.5136,-0.8288,-0.8424,-0.7534,-0.678,-0.6744,-0.3024,0.3488,0.4884,0.1162,0.1162,-0.3024,-0.2558,-0.2094,-0.2558,-0.1628,0.0232,-0.0232,-0.1628,0.0698,0.2558,0.4418,0.9534,1,0.9534,0.9534,0.7674,0.814,0.8604,0.9534,0.907,0.907,0.814,0.628,0.721,0.7674,0.814,-0.6666,-0.3334,0.1666,0.2916,0,0,-0.2916,-0.25,-0.2084,-0.2084,-0.125,-0.125,-0.0834,0.0416,0.1666,0.2916,0.5416,0.9166,1,0.8334,0.875,0.7916,0.7916,0.875,1,0.9584,0.8334,0.7916,0.7084,0.6666,0.625,0.7916,-0.443,-0.1646,0.038,-0.114,0.519,0.7468,0.4936,0.1898,0.2912,0.2912,0.2406,0.4178,0.6202,0.6962,0.7216,0.8734,0.4936,0.443,0.443,0.1392,0.1392,0.1646,0.2658,0.4936,1,1,0.3164,0.367,0.2912,0.038,0.1646,0.1646,-1,-1,-1,-1,-1,-1,-1,-1,-0.9342,-0.948,-0.622,0.1206,0.2274,0.6082,0.9096,0.263,0.3288,0.4548,0.2548,-0.1726,-0.389,-0.4246,-0.4028,-0.4136,-0.4768,-0.6246,-0.759,-0.8576,-0.915,-0.9068,-0.9342,-0.915,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9736,-0.9762,-0.6426,0.3422,0.5424,0.8894,0.9036,0.6858,0.4008,0.3314,-0.0172,-0.582,-0.8292,-0.849,-0.8366,-0.8396,-0.8546,-0.9002,-0.919,-0.9344,-0.9434,-0.9478,-0.9652,-0.9618,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9,-0.9334,-0.5868,-0.23,-0.275,-0.15,-0.255,-0.2826,-0.315,-0.42,-0.46,-0.48,-0.7046,-0.9002,-0.809,-0.6522,-0.8256,-0.879,-0.7256,-0.6022,-0.579,-0.6822,-0.7456,-0.8456,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,1,1,1,-0.8286,-1,-0.6572,-0.6858,-0.8858,-0.8858,0.0286,1,0.7714,-0.4858,0.2,-0.5428,-0.4858,-0.6,-0.9142,-0.9142,-1,-0.9714,-0.9142,-0.2858,-1,0.6312,0.658,0.6688,0.688,0.73,0.778,0.8294,0.9366,1,0.965,0.6406,0.653,0.6506,0.6504,0.6456,0.6278,0.595,0.5326,0.4138,0.0858,-0.5866,-0.0588,-0.5414,-0.1918,0.4326,0.581,0.3948,1,-0.1428,0.2,0.0286,0.2572,0.3142,0.2,0.0858,0.1428,0.4286,0.3142,0.6572,0.7714,0.8286,1,0.8858,0.8858,0.9428,0.8858,0.8286,0.7714,0.7142,0.7142,0.6,0.2,0.2,-0.3142,-0.1428,0.0286,-0.0858,-0.2,-0.0858,-0.4286,-0.153,0.0824,0.0824,-0.153,-0.153,-0.2236,-0.0824,-0.2,0.3412,0.647,0.6706,0.7412,0.8824,0.8824,0.5764,0.647,0.953,1,0.6236,0.5058,0.953,0.9764,0.7412,0.2236,-0.4588,-0.3176,-0.4352,-0.6942,-0.1058,-0.0118,-0.1294,-0.553,-0.0892,0.375,0.3572,-0.0536,-0.1608,-0.0714,-0.125,0.1608,0.5714,0.8928,0.7858,0.8036,0.8928,0.875,0.7142,0.8036,1,0.9822,0.9286,0.6608,0.7322,0.6786,0.3572,-0.2142,-0.2678,-0.3572,-0.5536,-0.3928,0.0358,0.0892,0.0892,-0.0892,0.7712,-1,-1,1,-1,-1,1,-0.8334,-1,-0.1828,-0.2258,-0.2474,0.1398,0.1182,-0.0968,0.871,1,0.0322,0.0752,-0.2258,0.2474,0.3764,0.914,0.656,0.0108,-0.2044,0.2044,-0.0752,0.742,0.6774,0.2044,0.2688,0.613,0.6344,0.3548,0.0322,-0.1398,0.0968,-0.0108,-0.0968,-0.656,'14'
-0.4094,0.045,0.266,0.4168,0.3342,0.339,0.023,-0.0766,-0.0158,-0.1494,-0.0912,0.062,0.0206,0.0814,0.1348,0.2466,0.723,0.774,1,0.9806,0.8542,0.7156,0.706,0.9392,0.949,0.893,0.8202,0.6184,0.5334,0.5918,0.5164,0.5358,-0.4108,0.0134,0.183,0.3214,0.663,0.6942,0.4018,0.3102,0.2634,0.0626,0.0916,0.279,0.2544,0.384,0.538,0.6876,0.8794,0.9174,0.8906,0.8326,0.7902,0.6608,0.788,0.9666,1,0.7724,0.7142,0.5692,0.4398,0.5156,0.4062,0.4108,-0.4402,-0.0582,0.1438,0.2514,0.5894,0.5828,0.6642,0.5302,0.3348,0.1942,0.192,0.2886,0.4818,0.6246,0.967,1,0.5214,0.4248,0.405,0.4446,0.5082,0.4556,0.4556,0.7542,0.787,0.7564,0.4862,0.3282,0.3414,0.3018,0.192,0.2778,-0.356,-0.0654,0.2486,0.2252,0.4476,0.8796,0.8482,0.2198,0.3744,0.4006,0.3246,0.445,0.809,0.9162,1,0.8272,0.5654,0.3376,0.2696,0.3586,0.2932,0.3298,0.3376,0.6126,0.8874,0.9896,0.843,0.4528,0.3482,0.3168,0.2042,0.1754,-0.0348,0.369,0.5592,0.3132,0.109,0.0626,-0.2158,0.4246,0.4896,-0.3828,-0.573,-0.1786,0.4154,0.7354,0.42,0.341,0.2064,-0.2808,-0.5592,-0.5592,-0.2344,0.0952,0.2064,0.4988,1,0.9814,0.2714,-0.2576,-0.3874,-0.6056,-0.7122,-0.7076,0.2316,0.6736,0.7684,0.5052,0.321,0.3316,0.0158,0.5578,0.5,-0.3632,-0.7052,-0.1736,0.6316,0.8106,0.579,0.4158,0.121,-0.1,-0.4684,-0.5736,-0.3842,-0.2422,-0.1264,0.1422,0.7106,1,0.5578,-0.0632,-0.2422,-0.5,-0.5474,-0.3842,0.099,0.5938,-0.0886,-0.6198,-0.2864,0.2084,0.2812,0.2292,-0.1874,-0.3958,-0.25,-0.0782,0.3438,0.4428,0.5572,0.4844,0.073,-0.1718,-0.1302,-0.1928,-0.177,-0.552,-0.2084,0.0052,0.3854,0.9688,1,0.6302,0.474,0.651,0.4376,0.6094,-0.591,0.0454,0,0.3636,0.2272,0.0454,-0.0454,-0.1818,-0.2272,-0.3182,-0.2728,-0.0454,-0.091,-0.3182,0.1364,0.1364,0.5454,0.6364,0.3182,0.7272,0.6818,0.591,0.6364,1,0.9546,0.9546,0.909,0.409,0.591,0.4546,0.6364,0.9546,-0.4468,-0.0212,0.3192,0.4894,0.234,0.2766,-0.1914,-0.3618,0.0212,-0.2766,-0.0638,0.1064,0.1064,0.0638,-0.1064,0.1914,0.7022,0.8298,0.9574,1,0.9148,0.8298,0.532,0.8724,1,0.9574,0.9574,0.7022,0.5744,0.6596,0.4468,0.6596,-0.3666,-0.1,0.0666,-0.2,0.3666,0.5666,0.1666,0.0334,0.2,0.3666,0.1666,0.4666,0.6334,0.8,0.6,0.5334,0.1666,-0.2666,-0.3334,-0.1,0.0666,-0.4334,0.2,0.4334,0.9334,1,0.2,0.3666,0.2,-0.2334,-0.2334,-0.1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9446,-0.9376,-0.769,0.0808,0.3164,0.8684,0.8152,0.2218,0.261,-0.0162,-0.2078,-0.3488,-0.4364,-0.6236,-0.8222,-0.8822,-0.9284,-0.9284,-0.9308,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9626,-0.9604,-0.5446,0.0706,0.327,0.8286,0.923,0.6104,0.3116,-0.3552,-0.6658,-0.7396,-0.7636,-0.8406,-0.8988,-0.917,-0.937,-0.9504,-0.9564,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.93,-0.8768,-0.2568,-0.2292,-0.2092,-0.2964,-0.471,-0.4146,-0.5534,-0.63,-0.895,-0.95,-0.7134,-0.7418,-0.6534,-0.52,-0.6268,-0.6934,-0.8334,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,-0.8286,-0.7714,-0.7428,-0.8286,-0.6286,1,-0.6,0.8572,0.4858,-0.6572,-0.8858,-1,-0.9428,-0.9142,-0.9142,-1,-1,-1,-1,-1,-1,0.697,0.7244,0.7404,0.7828,0.8178,0.861,0.921,1,1,0.8244,0.6602,0.6538,0.6402,0.617,0.5846,0.538,0.4756,0.3792,0.0982,-0.081,-0.4134,0.3764,-0.5856,-0.1998,0.1102,-0.0338,0.2066,1,-0.5,0,0.0476,0,-0.0714,-0.119,-0.0714,0.0476,0.381,0.5714,0.5952,0.6666,0.8334,0.8096,0.7858,0.8334,0.9762,1,0.8334,0.6904,0.6428,0.4286,0.0952,-0.2142,-0.3096,-0.1666,-0.619,-0.1904,-0.2858,-0.2142,-0.1666,-0.3334,-0.1926,0.0826,0.211,-0.1376,-0.2294,0.0458,-0.1376,-0.0826,0.3394,0.6698,0.3028,0.3578,0.89,0.7614,0.4128,0.3212,1,1,0.6698,0.5964,0.945,0.5596,-0.0092,-0.1192,-0.3578,-0.3944,-0.2294,-0.4128,-0.4862,-0.101,0.1192,-0.1192,0.013,0.1168,0.1558,-0.065,-0.2078,-0.065,-0.091,0.2078,0.3246,0.7662,0.7012,0.6494,0.909,0.8052,0.5974,0.8052,1,1,0.7142,0.6494,0.909,0.7922,0.4936,0.1688,-0.1948,-0.013,-0.1818,-0.026,0.1038,0.1168,0.1558,-0.078,0.4502,-1,-1,1,-1,-1,-0.8,-0.7666,-1,-0.2916,0.0834,0.1042,0.2084,0.1666,0.2708,1,0.8334,0.2708,0.2708,0.375,0.0834,0.2084,0.375,0.9792,0.2916,0.7292,0.2916,0.2292,0.2708,0.4584,0.3334,0.4166,0.5834,0.4376,0.2708,0.3958,-0.1458,0.25,0.25,0.2708,-0.7084,'14'
-0.5846,-0.257,0.1264,0.193,0.502,0.8428,0.96,0.6352,0.7444,1,0.8668,0.8296,0.5392,0.4222,0.313,0.2464,0.1558,0.3368,0.4806,0.7336,0.9308,0.8402,0.4834,0.3316,0.273,0.0866,0.3182,0.4274,0.4914,0.6404,0.795,0.9548,-0.4994,-0.1796,0.1534,0.266,0.5754,0.9056,0.9896,0.5466,0.8296,0.9974,0.8138,0.6672,0.5176,0.371,0.2608,0.2556,0.198,0.2686,0.4548,0.6592,0.9606,0.8872,0.5938,0.4706,0.3998,0.2686,0.3184,0.3474,0.3682,0.6382,0.8322,1,-0.4884,-0.1742,0.1742,0.3082,0.6394,0.7222,0.8198,0.8294,0.8368,1,0.7808,0.2546,0.3008,0.184,0.179,0.0742,0.045,0.123,0.2278,0.3836,0.7686,0.7028,0.5372,0.3862,0.3764,0.1376,0.2448,0.318,0.1912,0.3714,0.5176,0.7344,-0.49,-0.2042,0.223,0.5568,0.757,0.7998,0.8078,0.7758,0.9732,1,0.426,0.1322,0.0574,-0.036,-0.1402,-0.2364,-0.1296,-0.1214,0.044,0.3164,0.4766,0.6662,0.6128,0.303,-0.02,-0.0414,0.052,-0.0308,0.0094,0.2096,0.3618,0.5888,-0.4222,-0.1978,0.1866,0.7194,0.7644,0.7896,0.655,0.857,1,0.7448,0.1444,0.0042,0.0294,-0.0912,-0.3856,-0.2398,-0.2146,-0.3016,0.0126,0.0604,0.3856,0.7224,0.683,0.1922,-0.0238,-0.0406,-0.0604,-0.0042,0.0126,0.1726,0.4614,0.6718,-0.5204,-0.1376,0.5092,0.948,0.974,0.948,0.7398,1,0.9592,0.6022,0.1748,-0.1226,-0.0484,-0.145,-0.4014,-0.4758,-0.4758,-0.409,-0.249,-0.119,0.238,0.6356,0.6506,0.3234,-0.0966,-0.0706,-0.052,-0.0818,0.1116,0.4908,0.777,0.7806,-0.8864,-0.0542,0.5866,1,0.8864,0.3282,0.9174,0.9896,0.7106,-0.0388,-0.3696,-0.3436,-0.3902,-0.3746,-0.3282,-0.4884,-0.4056,-0.4316,-0.354,-0.3126,-0.1008,0.1266,0.7674,0.7572,0.4316,0.0802,-0.0388,0.0026,0.0078,0.7158,0.9328,0.8346,-0.6888,-0.4222,0.0222,0.2888,0.6,0.6,0.8666,0.6888,0.6,1,1,0.6888,0.6888,0.2444,0.2444,0.2888,0.1112,0.3334,0.4666,0.8222,0.9556,0.7334,0.2888,0.2,0.2,-0.2,0.5556,0.6888,0.3778,0.6888,0.8666,0.8222,-0.5918,-0.2654,0.102,0.2654,0.4694,0.7142,0.9184,0.6734,0.5918,1,0.796,0.7142,0.5918,0.551,0.347,0.1836,0.2244,0.3878,0.4286,0.6734,0.5918,0.796,0.551,0.3062,0.2244,0.102,0.1428,0.6326,0.6326,0.5918,0.796,0.9592,-0.4026,-0.1168,0.1168,0.922,0.8702,0.948,0.8442,0.974,0.922,0.6364,0.1428,0.1428,0.1168,-0.1428,-0.3766,-0.1688,-0.1948,-0.3506,-0.065,0.065,0.6624,1,0.8442,0.2208,0.1428,-0.1688,0.091,0.013,0.091,0.2208,0.7662,0.8182,-1,-1,-1,-1,-1,-1,-1,-0.9666,-0.9572,-0.948,-0.492,0.1238,0.7638,0.548,0.308,0.373,0.3934,0.2986,-0.1032,-0.28,-0.5404,-0.7376,-0.8232,-0.8604,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.986,-0.9858,-0.9666,-0.4578,0.2748,0.8702,0.6286,0.2668,-0.0492,-0.2924,-0.387,-0.5882,-0.73,-0.8252,-0.9212,-0.948,-0.9654,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9624,-0.8934,-0.8868,-0.29,-0.47,-0.482,-0.406,-0.46,-0.532,-0.604,-0.704,-0.752,-0.752,-0.798,-0.904,-0.9368,-0.98,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5714,-0.9428,1,1,1,-0.7142,-0.9714,-0.7142,-0.8,-0.9142,-0.8286,-0.6,-0.6858,0,0.2,-0.6,-0.9714,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.5298,-0.547,-0.5464,-0.519,-0.4716,-0.4228,-0.3554,-0.2264,-0.0612,0.0966,-0.56,0.1764,-0.357,0.0446,0.187,0.3582,0.4986,1,-0.6854,-0.2808,0.2134,0.3484,0.5056,0.618,0.528,0.2134,0.2808,0.5506,0.6404,0.1686,-0.1686,0.4832,0.4832,0.7528,1,0.8202,0.7978,0.8652,0.8876,0.618,0.191,0.0112,-0.146,-0.3484,-0.573,-0.5056,-0.4158,-0.3484,-0.3258,-0.5956,-0.301,-0.0486,0.4174,0.5728,0.67,0.7864,0.5922,0.2816,0.3204,0.5146,0.7864,0.3204,0.068,0.5728,0.4758,0.67,0.8252,0.767,0.6894,0.903,1,0.7864,0.4564,-0.0098,-0.2816,-0.2622,-0.3204,-0.398,-0.5534,-0.2622,-0.2816,-0.4952,-0.2682,0.2804,0.7318,0.7318,0.6464,0.9756,0.5854,0.2926,0.244,0.6098,0.6586,0.4634,0.3048,0.5488,0.4878,0.8658,1,0.7682,0.7074,0.878,0.8536,0.5366,0.1342,-0.061,-0.4878,-0.4756,-0.439,-0.2682,-0.317,-0.0976,-0.2074,-0.4878,0.273,-1,-1,1,-1,-1,-1,-0.7666,-1,0.292,0.5398,0.6638,1,0.8054,0.115,0.3098,0.3452,0.239,0.1504,0.2212,0.0266,0.2566,0.3806,0.4868,0.7876,0.5222,0.1504,-0.0442,0.239,0.3628,0.1682,0.2212,-0.0266,0.0442,0.1504,0.115,0.0442,-0.0442,0.0266,-0.1504,-0.3274,'15'
-0.4846,-0.1652,0.1678,0.2162,0.5892,0.8148,0.9248,0.557,0.7772,1,0.8416,0.8766,0.5624,0.49,0.2484,0.2348,0.2536,0.3316,0.4872,0.5946,0.8148,0.7288,0.31,0.1464,0.0818,0.0954,0.0308,0.0308,0.3262,0.2966,0.4256,0.608,-0.5288,-0.1858,0.178,0.2774,0.6884,0.6256,0.7618,0.6728,0.6964,1,0.8664,0.3692,0.2722,0.2618,0.1336,-0.0078,0.0366,0.1832,0.267,0.4842,0.5968,0.6728,0.2408,0.1362,0.0812,-0.0968,-0.076,0.0262,0.0236,0.1336,0.2486,0.2722,-0.525,-0.1768,0.2658,0.5222,0.8758,0.7328,0.8084,0.9272,0.8624,1,0.7732,0.2956,0.1364,0.0446,0.0094,-0.0284,-0.0608,0.0338,0.2146,0.363,0.7058,0.7058,0.4116,0.1686,0.1822,0.0014,-0.077,0.0284,0.0662,0.1524,0.3172,0.4386,-0.4514,-0.18,0.3172,0.8,0.9286,0.8114,0.7172,0.88,1,0.8886,0.3228,0.0914,0.0628,-0.1114,-0.1486,-0.1942,-0.2142,-0.0628,0.0572,0.3028,0.6058,0.72,0.6086,0.2342,0.1342,0.08,-0.0314,0.0858,0.1,0.3086,0.5542,0.7286,-0.3594,-0.0124,0.4282,0.8876,0.9812,1,0.775,0.55,0.9718,0.8906,0.1562,0.0906,0.0032,-0.15,-0.3968,-0.3282,-0.3656,-0.2062,-0.025,0.1156,0.425,0.7532,0.7282,0.2062,0.1188,0.125,-0.0906,-0.0282,0.1626,0.3062,0.6282,0.8156,-0.7084,-0.195,0.3964,0.7988,0.7002,0.421,0.5154,1,0.9302,0.2854,-0.2648,-0.347,-0.4046,-0.7864,-0.5196,-0.4826,-0.4538,-0.5072,-0.6592,-0.4496,-0.458,0.076,0.2936,0.2402,-0.117,-0.347,-0.4374,-0.4332,-0.3264,0.0432,0.3224,0.4128,-0.1186,0.4074,-0.037,0.3482,0.6888,0.6444,1,0.9112,0.7408,-0.0666,-0.4518,-0.4666,-0.0666,-0.2888,-0.2222,-0.0222,0.237,-0.1482,-0.4074,-0.6148,-0.726,-0.4962,-0.437,-0.0518,0.0592,0.0814,-0.0666,-0.1038,-0.2222,0.1926,0.7408,0.6888,-0.5416,-0.25,0.125,0.375,0.7084,0.8334,0.9166,0.7084,0.7916,1,0.875,0.875,0.8334,0.5834,0.375,0.375,0.3334,0.4166,0.75,0.9584,0.9166,0.5834,0.5416,0.1666,0.3334,0.3334,0,0.4166,0.5,0.5,0.8334,0.9166,-0.617,-0.2766,0.0212,0.234,0.4042,0.7446,0.8724,0.4894,0.8298,1,0.9148,0.9574,0.7022,0.532,0.1914,0.234,0.1914,0.149,0.4894,0.4042,0.6596,0.5744,0.1914,0.0212,-0.1914,0.0212,0.0638,0.0638,0.4468,0.4894,0.4894,0.617,-0.6944,-0.1388,0.3334,0.6666,0.6944,0.4722,0.4444,0.8334,1,0.5556,0.0834,-0.6112,-0.4166,-0.3334,-0.5,-0.5,-0.3056,-0.4444,-0.4166,-0.25,-0.1944,0.3888,0.3612,0.1112,0.0556,-0.4166,-0.1666,-0.3888,-0.0834,0.0834,0.2222,0.2222,-1,-1,-1,-1,-1,-1,-1,-0.9586,-0.9542,-0.882,-0.4344,0.4344,0.5262,0.6092,0.6572,0.9082,0.7554,0.2926,-0.0808,-0.4324,-0.6462,-0.7838,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9656,-0.9756,-0.828,-0.2252,0.9056,0.665,0.5532,0.2186,0.1062,0.0348,-0.2802,-0.4946,-0.7506,-0.8466,-0.928,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7934,-0.9468,-0.7734,-0.36,-0.584,-0.646,-0.648,-0.626,-0.616,-0.63,-0.75,-0.676,-0.796,-0.758,-0.918,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.7428,-0.0572,1,1,1,-0.4858,-1,-0.8858,-0.8572,-0.8286,-0.4572,0.2858,0.1142,-0.3142,-0.5714,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.9074,-0.9312,-0.937,-0.9272,-0.9034,-0.842,-0.7864,-0.6386,-0.3618,-0.1558,-0.5066,0.1764,-0.1908,0.785,0.9456,0.946,0.867,0.6084,-0.4374,-0.1876,0.4376,0.4532,0.375,0.9218,1,0.6718,0.375,0.3126,0.5312,0.375,0.2656,0.2656,0.375,0.3438,0.2656,0.375,0.4688,0.7344,0.875,0.6562,0.1094,-0.1876,-0.0624,-0.0938,-0.0468,-0.0312,-0.2188,-0.2812,-0.3438,-0.5938,-0.1824,-0.0498,0.1492,0.2596,0.2708,0.779,0.7128,0.3812,0.2818,0.4586,0.8342,0.4476,0.1934,0.105,0.2928,0.558,0.5802,0.4254,0.4144,0.7238,1,0.6464,0.127,-0.105,-0.0276,-0.094,-0.1492,-0.127,-0.1712,-0.1824,-0.116,-0.6244,0.0412,0.3298,0.6598,0.9278,0.7526,1,0.9484,0.433,0.464,0.9278,1,0.6804,0.3608,0.3402,0.5568,0.8248,0.8866,0.6186,0.3712,0.8042,0.835,0.7216,0.0722,-0.103,-0.4124,-0.2062,-0.2578,-0.1958,-0.2474,-0.2474,-0.3402,-0.5876,-0.5262,-1,-1,1,-0.8,-1,-1,-0.6334,-1,0.6764,0.5588,0.6176,1,0.7648,0.7352,0.2352,0.0882,0.5294,0.2648,0.2352,0.2942,0.0882,0.5588,0.647,0.8824,0.3824,0.2058,0.0588,-0.2058,0.2648,0.2352,0.2352,0.2058,0.0294,0.2058,-0.4412,0.0882,-0.2352,0.0882,-0.0294,-0.4706,'15'
0.84,0.92,0.6534,0.4934,-0.2,-0.0666,-0.04,-0.0666,-0.36,-0.0666,-0.1466,0.1734,0.2,-0.1734,-0.1466,0.5734,0.9466,0.8134,0.4934,0.6,0.6,0.9734,1,0.7866,0.68,0.4934,0.2534,0.6,0.44,0.36,0.6534,0.6266,0.9666,1,0.6,0.1666,-0.7,-0.4334,-0.2,-0.3334,-0.4666,-0.3666,-0.6,-0.8666,-0.5334,-0.7,-0.4334,-0.1,-0.2,0.0666,0.0666,0.4666,0.4666,0.4,0.5666,0.6,0.4666,-0.7334,-0.2,-0.0666,-0.4,-0.4666,-0.3334,0.0666,0.7682,0.7392,0.1594,0.2464,0.0724,0.0434,-0.5362,-0.5652,-0.7102,-0.5652,-0.7682,-0.2174,-0.1884,-0.1304,0.0144,0.0724,-0.0144,0.0144,0.1594,0.4492,0.4202,0.2754,0.4782,0.942,1,0.7102,0.5072,-0.0144,-0.2754,-0.1304,0.1884,0.2174,0.8246,0.6492,0.386,0.1052,-0.2106,-0.3684,-0.421,-0.5088,-0.772,-0.228,-0.228,-0.3508,-0.228,-0.0878,-0.035,0.1404,0.0702,0.3158,0.1404,0.2632,0.228,0.2808,0.8422,1,0.8772,0.7192,0.7368,0.5088,0.3158,0.4562,0.5438,0.5264,0.9434,1,0.2076,0.1132,0.0188,-0.6038,-0.849,-0.8114,-0.6982,-0.717,-0.6416,-0.7736,-0.4906,-0.566,-0.3962,-0.3018,-0.0944,0.0754,0.0944,-0.1698,0.0378,0.0754,0.132,0.4528,0.7358,0.6982,0.5284,0.415,0.3018,0.1698,0.2076,0.3018,1,0.8076,0.4424,0.0192,-0.0576,-0.5576,-0.577,-0.6154,-0.673,-0.4808,-0.5192,-0.6346,-0.5384,-0.5962,-0.6154,-0.577,-0.1346,0.0384,0.1346,-0.0576,0.2308,0.3462,0.1154,0.2308,0.423,0.4616,0.673,0.5192,0.0576,0.577,0.5962,0.5192,0.9604,1,0.4456,0.2872,-0.208,-0.3466,-0.2872,-0.2872,-0.8614,-0.5446,-0.7624,-0.307,-0.0496,-0.406,-0.3862,-0.2872,-0.2278,0.01,0.1684,0.5644,0.7228,0.5644,0.2674,0.4258,0.7624,0.9802,0.8218,0.3466,0.2674,0.109,0.6436,0.604,0.7728,0.909,0.5454,0.4546,0,0.1818,0.1364,0,-0.2728,-0.0454,-0.1818,0.091,0.1818,-0.2272,0.0454,0.3182,0.7272,0.5454,0.4546,0.5,0.1818,0.909,1,0.8182,0.5,0.2728,0,0.5,0.409,0.3636,0.5454,0.591,0.909,0.7728,0.2728,0.409,0.1818,0.2272,-0.2272,-0.2728,-0.4546,-0.2728,-0.409,0.091,0.1818,0.1364,0.2728,0.2728,0.2272,0.2272,0.4546,0.7272,0.6818,0.5,0.591,1,1,0.5454,0.4546,0,0,-0.0454,0.3636,0.1818,1,0.877,0.3538,0.2924,-0.2,-0.077,-0.3538,-0.5384,-0.7538,-0.477,-0.6924,-0.4462,-0.2,-0.3538,-0.1692,0.0154,-0.0154,0.077,0.1692,0.6616,0.6616,0.3846,0.477,0.9076,0.877,-0.0154,0.077,-0.2308,-0.2924,-0.2924,0.1384,0.0462,-1,-1,-1,-1,-1,-1,-1,-1,-0.9912,-0.9892,-0.9358,-0.481,0.9488,1,1,0.6876,-0.4358,-0.044,-0.155,-0.0432,-0.155,-0.5282,-0.7816,-0.8096,-0.8132,-0.8378,-0.8446,-0.8446,-0.858,-0.8882,-0.9052,-0.9282,-0.943,-1,-1,-1,-1,-1,-1,-1,-1,-0.9832,-0.9818,-0.8828,-0.4316,0.9012,1,1,0.707,-0.3646,0.0214,-0.1264,-0.0396,-0.1486,-0.4968,-0.5482,0.1234,0.0448,-0.2268,-0.4334,-0.5448,-0.6844,-0.7872,-0.821,-0.849,-0.8436,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.9268,-0.6634,-0.92,-0.9,-0.88,-0.9,-0.92,-0.97,-0.95,-0.95,-0.91,-0.89,-0.77,-0.5234,0.24,0.2832,0.1966,0.2032,0.02,-0.0634,-0.2968,-0.5268,-0.4768,-0.3968,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,0.5142,1,1,1,1,1,0.3428,-0.3428,-0.1428,0.0572,-0.3142,-0.7428,0.0572,1,1,-0.8572,-0.3142,-0.3714,-0.7428,-0.5428,-0.6,-0.9428,-0.9428,-0.6858,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.3026,0.2116,0.2116,0.2116,0.1848,0.1848,0.2008,0.4094,0.553,0.66,-0.5734,-0.9058,-0.8638,-0.1246,0.9526,-0.0576,-0.032,0.4584,-0.2238,0.1642,0.2538,0.403,0.2238,0.2836,0.7612,0.4926,0.8208,0.582,0.9104,0.7314,0.8806,0.9104,0.8208,0.9104,0.9702,0.9702,0.9702,1,0.8508,0.9104,0.9402,0.9104,0.9702,0.8806,0.9402,0.8806,0.582,0.612,0.2538,-0.1344,0.129,0.0968,0.387,0.2904,0.1936,0.1612,0.8388,0.9032,0.8388,0.6774,0.7096,0.8064,0.7096,0.6774,0.6774,0.9032,0.9032,0.871,0.9678,0.9032,0.4516,0.871,0.8064,0.5162,0.8388,0.613,1,0.871,0.6774,0.6452,0.5484,0.3226,1,0.541,0.082,-0.1148,-0.082,0.0492,0.2132,0.4754,1,0.705,1,0.836,0.7378,0.8032,0.705,0.4754,0.8688,0.9672,0.6722,0.6066,0.1476,0.705,0.7378,0.705,0.2786,0.1804,0.0164,0.1148,0.4426,0.4426,0.2786,-0.836,1,-1,-1,1,-1,-1,1,-0.8,-1,-0.3028,0.2114,0.2114,-0.52,-0.4858,-0.3828,-0.1658,-0.2114,0.1314,0.6342,0.8058,0.4858,0.5658,0.8742,0.8058,0.7486,0.7942,1,0.5772,0.5658,0.7028,0.5428,0.0628,0.0286,0.0058,-0.0286,0.0858,0.2,0.1658,0.2,0.2114,-0.04,'16'
0.4358,0.3846,-0.1282,-0.2308,-0.282,-0.1794,-0.4872,-0.7436,-0.641,-0.5898,-0.3846,-0.4872,-0.1282,-0.077,0.3846,0.282,0.7948,0.8974,0.8974,0.641,0.5898,0.5898,0.641,0.641,0.4872,0.5384,0.4358,0.1794,0.3846,0.282,0.3846,1,0.6316,0.7894,0.079,-0.4474,-0.5526,-0.4736,-0.3422,-0.3158,-0.3948,-0.6842,-0.5526,-0.5264,-0.0526,-0.0526,-0.079,0.3422,0.921,0.921,0.8684,1,0.7106,0.579,0.7106,0.7894,0.6842,0.2894,0.2368,-0.1842,0.1052,0.1052,0.2106,0.9474,0.946,0.973,0,-0.2432,-0.4054,-0.4324,-0.4324,-0.7568,-0.5676,-0.5946,-0.3514,-0.1892,-0.3784,-0.027,-0.081,-0.2162,0.1892,0.3514,0.6486,0.5136,0.4324,0.2702,0.6486,1,0.6216,0.4054,0.3244,0.081,0,0,-0.081,0.3784,0.5056,0.4832,0.0562,-0.573,-0.3484,-0.4382,-0.6854,-0.5956,-0.618,-0.9326,-0.6854,-0.2808,-0.191,-0.236,-0.2584,0.2134,0.2584,0.2808,0.3708,0.573,0.4832,0.146,0.7752,1,0.8426,0.4832,0.3258,0.4606,0.528,0.2134,-0.191,0.1686,0.8206,0.641,-0.1026,-0.3334,-0.6154,-0.6924,-0.641,-0.4616,-0.3076,-0.4872,-0.6154,-0.7436,-0.8718,-0.4616,-0.5128,-0.1794,0.1794,0.4358,0.359,0.5898,0.4102,-0.1794,0.6924,1,0.7436,0.6154,0.3846,0.5898,0.4872,0.1026,0.077,0.1794,0.5616,0.0958,-0.2328,-0.589,-0.6438,-0.5616,-0.7808,-0.6438,-0.863,-0.8904,-0.4246,-0.0684,-0.1232,-0.5616,-0.4794,-0.2054,-0.2328,0.1232,0.0958,0.315,0.178,0.5068,0.3424,0.7534,1,0.7808,0.2876,0.2602,0.0684,-0.0684,0.3424,0.4794,0.3538,-0.1692,-0.2924,-0.5076,-0.6,-0.6308,-0.5076,-0.5692,-0.5692,-0.6,-0.4154,-0.2924,-0.323,-0.723,-0.5384,-0.1384,0.1076,0.3538,0.5384,0.2308,0.0154,0.8462,0.8462,0.9692,0.477,1,0.8462,0.6924,0.5692,0.5384,0.2308,0.3538,0.3334,0.6444,0.2888,-0.3778,-0.1112,-0.3778,-0.0666,-0.1112,-0.3778,-0.3778,-0.3334,-0.2888,-0.0222,0.0222,0.0666,0.4222,0.9112,0.8666,0.9112,0.9556,0.6,0.6,0.5112,0.6,0.5112,0.4666,0.2444,-0.0666,0.3778,0.2888,0.4222,1,0.7872,0.8298,0.149,-0.1064,-0.1914,-0.3618,-0.2766,-0.4468,-0.4468,-0.4894,-0.234,-0.0212,-0.4042,0.0212,0.1064,0.0638,0.1914,0.234,0.5744,0.4042,0.4468,0.5744,0.4894,1,0.9148,0.2766,0.234,0.1914,0.3192,0.2766,0.1064,0.3618,1,0.9722,-0.0278,-0.3334,-0.6944,-0.3056,-0.3612,-0.6944,-0.4444,-0.6944,-0.5,-0.3888,-0.0556,-0.0278,-0.1944,-0.0834,0.6388,0.6666,0.7222,0.8334,0.6112,0.1944,0.8612,0.9722,0.5278,0.4166,0.3612,-0.1388,-0.25,-0.1666,-0.0834,0.6112,-1,-1,-1,-1,-1,-1,-1,-0.9842,-0.9774,-0.9834,-0.886,-0.6254,0.4614,0.4728,1,1,0.185,0.3754,0.4162,0.1058,0.0392,-0.4608,-0.6646,-0.4524,-0.5786,-0.6374,-0.7176,-0.7552,-0.7576,-0.772,-0.753,-0.8172,-0.855,-1,-1,-1,-1,-1,-1,-1,-0.9698,-0.96,-0.9494,-0.7668,-0.4696,0.5672,0.5672,1,1,0.1654,0.4514,0.478,0.1366,0.0706,-0.3944,-0.5932,-0.2842,0.4492,0.1352,0.119,-0.1142,-0.2328,-0.4042,-0.4858,-0.5638,-0.691,-1,-1,-1,-1,-1,-1,-1,-0.9362,-0.8268,-0.9068,-0.72,-0.68,-0.76,-0.78,-0.88,-0.9,-0.78,-0.8,-0.84,-0.92,-0.69,-0.7,-0.9268,-0.69,-0.0168,0.1466,0.14,0.13,0.15,0.11,-0.21,-0.0168,-0.2168,-1,-1,-1,-1,-1,-1,-1,-0.1142,-0.9714,1,1,1,1,0.6,0.1428,-0.2572,-0.5714,-0.7714,-0.6858,-0.5142,-0.3142,-0.4572,0.4,1,1,-0.8286,-0.9142,-0.9142,-0.8572,-0.8572,-1,-0.8286,0.4858,-1,-1,-1,-1,-0.6758,-0.6758,-0.8476,-1,-1,-1,0.0448,0.0448,0.0448,0.0448,0.0208,0.0208,0.056,0.1364,0.2348,0.5108,-0.72,-0.9648,-0.811,-0.176,0.8552,0.365,0.0924,-0.025,-0.6666,-0.3056,0.2222,0.1666,0.4444,0.1112,0.8056,0.8334,0.9444,0.8612,0.9444,0.9722,0.9722,0.8612,0.8612,0.75,1,0.9166,0.9444,0.75,0.8888,0.8888,0.6944,0.8888,0.5834,0.8056,0.5278,0.6666,0.4722,0.6388,0.3056,-0.1944,0.25,0.0358,0.0714,0.3572,0.5,0.3214,0.7142,0.6786,0.75,0.6786,0.8572,1,0.8572,0.75,0.6428,0.6428,0.8928,0.3572,0.6428,0.4642,0.8572,0.6428,0.7858,0.7142,0.5,0.2858,0.3928,0.4286,0.5,0.7858,0.3572,0.0358,0.4962,0.2062,-0.0534,-0.1146,-0.0688,-0.1146,0.2062,0.5878,0.7558,0.8626,0.771,0.8626,0.8168,0.603,0.542,0.6488,1,0.771,0.5878,0.4198,0.5114,0.8168,0.5878,0.3282,0.2978,0.4046,0.5572,0.6336,0.5726,0.1604,0.3436,-0.2062,1,-1,-1,1,-1,-1,1,-0.7666,-1,-0.2048,0.265,0.253,-0.5422,-0.4578,-0.4096,-0.253,-0.1686,0.024,0.3856,0.8314,0.747,0.5542,0.6266,0.6988,0.506,0.6988,1,0.976,0.3856,0.5904,0.1928,-0.0964,0,0.2048,0.265,0.506,0.3614,0.0964,0.2048,0.1326,-0.1084,'16'
-0.4542,0.1448,0.1214,0.1248,0.0782,-0.5906,-0.624,-0.554,-0.5774,-0.441,-0.431,-0.2878,-0.2412,-0.1248,0.0482,0.1714,0.4676,0.5708,0.8968,1,0.7704,0.8202,0.7836,0.817,0.5042,0.5008,0.5408,0.5108,0.5708,0.5574,0.8936,0.857,-0.4984,-0.0304,0.082,0.3192,0.1672,-0.611,-0.5532,-0.4864,-0.456,-0.4316,-0.2948,-0.3162,-0.0882,-0.1458,0.0852,0.2888,0.5168,0.8936,1,0.839,0.763,0.8572,0.8358,0.5776,0.4134,0.3404,0.3952,0.392,0.4468,0.6292,0.7812,0.9422,-0.4678,-0.074,0.5812,0.704,0.3166,-0.37,-0.241,-0.3512,-0.3008,-0.2188,-0.2472,-0.0804,0.0268,0.1182,0.3952,0.7386,0.9622,0.8582,0.789,0.8772,1,0.9874,0.7292,0.4174,0.3858,0.2504,0.2914,0.3418,0.3544,0.556,0.7922,0.9464,-0.4626,-0.0306,0.585,0.5646,0.1054,-0.068,-0.1088,-0.3538,-0.1972,-0.153,-0.0782,0.1394,0.3436,0.5374,0.8674,0.7994,0.6462,0.4694,0.6122,0.932,1,0.8198,0.3606,0.3674,0.1768,0.1122,0.2108,0.221,0.2414,0.5136,0.7688,0.9286,-0.5396,0.004,0.3968,0.25,0.1706,-0.1984,-0.369,-0.4166,-0.2262,-0.0476,0.008,0.4166,0.8294,0.996,0.754,0.2182,0.2658,0.1866,0.5476,0.9444,1,0.7342,0.1746,0.1112,-0.0358,-0.1626,0.0634,0.0596,0.0992,0.4484,0.8612,0.992,-0.683,0.0442,0.31,0.352,0.049,-0.4266,-0.3474,-0.2914,-0.3054,-0.1842,0.1888,0.669,0.6318,0.3752,-0.0256,-0.0956,-0.1328,0.077,0.3286,0.7948,0.7856,0.4872,-0.035,-0.1656,-0.2168,-0.1656,0.0256,-0.091,0.0304,0.3566,0.972,1,-0.3846,0.2404,0.327,0.6154,-0.0576,-0.5866,-0.3366,-0.2212,-0.1442,0.0384,0.5674,0.4808,0.2308,-0.1634,-0.0288,-0.1538,-0.3462,-0.3366,0.0096,0.5096,0.9616,0.5674,-0.3558,-0.4134,-0.2212,-0.1924,-0.4134,-0.375,-0.4134,-0.1346,0.4134,1,-0.3062,0.347,0.3878,-0.0204,-0.102,-0.2244,-0.551,-0.347,-0.1836,-0.2654,-0.3062,-0.1428,-0.2654,-0.1428,0.1428,0.2244,0.4286,0.6734,0.5102,1,0.9592,0.796,0.796,0.7142,0.796,0.5918,0.6326,0.5102,0.6734,0.6326,0.9184,0.9184,-0.591,0.0454,0,0.091,-0.0454,-0.8636,-0.7272,-0.6818,-0.9546,-0.591,-0.6364,-0.591,-0.2728,-0.091,-0.091,0,0.409,0.5454,0.909,1,0.7272,0.7728,0.909,0.909,0.5,0.4546,0.5454,0.5,0.5454,0.5,0.8636,0.8182,-0.7074,-0.1708,0.0732,0.2196,0.0244,-0.3414,-0.3658,-0.2926,-0.2926,-0.4146,-0.0488,0.5854,0.683,0.4878,0,0.0488,-0.0732,-0.122,0.2196,0.7804,0.756,0.244,0.0244,-0.0976,-0.1952,-0.1952,-0.0976,-0.1464,0,0.1708,0.8536,1,-1,-0.936,-0.9524,-0.9442,-0.9318,-0.9112,-0.9256,-0.9256,-0.9214,-0.909,-0.8306,0.06,0.0724,0.3512,0.7976,0.9608,0.4566,-0.1384,-0.378,-0.5352,-0.5868,-0.7852,-0.8534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9632,-0.9742,-0.969,-0.8406,-0.6012,-0.759,-0.6266,-0.5606,-0.5938,-0.7384,0.2432,0.8216,0.9358,0.408,0.1418,0.0034,-0.195,-0.49,-0.6982,-0.8096,-0.9186,-0.946,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8924,-0.9734,-0.8268,-0.7268,0.2032,0.5766,0.62,0.3666,0.3332,0.4432,-0.105,0.06,0,-0.3226,-0.5276,-0.4926,-0.435,-0.46,-0.4076,-0.7626,-0.9068,-0.9634,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2572,-0.8572,-0.2,1,1,-0.6286,-0.6572,-0.7428,-0.2,1,1,-0.3714,-0.7428,-0.4858,-0.7428,-0.7428,-0.7428,-0.5142,0.2572,1,-0.2858,-0.5428,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.285,-0.2546,-0.1472,-0.1112,-0.0444,-0.0414,-0.0602,0.0134,0.1412,0.2186,0.5674,0.5476,0.5234,0.5372,0.5042,0.4704,0.4282,0.3478,0.0608,-0.378,-0.5466,-0.0706,-0.7768,-0.3648,0.206,0.5674,0.7532,-0.1,-0.6278,-0.27,-0.2518,-0.1314,-0.2116,-0.1424,0.0256,0.135,0.2884,0.5218,0.865,0.9854,0.876,0.624,0.5584,0.562,0.5036,0.5474,0.624,0.8978,1,0.9708,0.8138,0.803,0.6386,0.5402,0.4014,0.511,0.4124,0.5656,0.354,0.0218,-0.6716,-0.3756,-0.3594,-0.4048,-0.3788,-0.3268,-0.2586,-0.07,0.07,0.3918,0.6228,0.948,0.9968,0.7334,0.6358,0.6456,0.6682,0.5448,0.6552,0.8114,1,0.9284,0.6,0.7496,0.6814,0.626,0.5318,0.4342,0.4178,0.5642,0.4048,0.1318,-0.6984,-0.4848,-0.4306,-0.4068,-0.3526,-0.2848,-0.1932,-0.1186,0.1662,0.4576,0.5424,1,0.9932,0.7728,0.495,0.695,0.678,0.5694,0.4,0.6474,0.9728,0.8406,0.617,0.7526,0.7152,0.6272,0.4814,0.3966,0.4882,0.4746,0.1898,0.0984,-0.2336,-1,-1,1,-1,-1,-1,0.3,-1,0.6232,0.4202,0.5072,0.6232,0.6232,0.3044,0.5652,0.7392,0.6522,0.6812,0.5362,0.6232,0.3044,0.4782,0.2174,-0.0724,0.5942,0.5652,0.6522,1,0.3334,0.4202,-0.0434,0.3334,0.1884,0.5652,0.4202,0.3624,0.2174,0.7392,0.2174,0.0144,'17'
-0.4474,0.0734,0.1454,0.2374,0.1108,-0.531,-0.6892,-0.6634,-0.4188,-0.4792,-0.4446,-0.3756,-0.1654,-0.1884,-0.0562,0.1654,0.2806,0.7208,0.7812,0.836,0.7468,0.8216,0.767,0.8964,0.7294,0.6748,0.5482,0.577,0.5568,0.5914,0.8274,1,-0.4706,-0.033,0.4302,0.577,0.2116,-0.5022,-0.4044,-0.4446,-0.3726,-0.531,-0.4734,-0.1366,-0.1914,-0.0906,0.1108,0.2316,0.5972,0.7036,1,0.9022,0.8878,0.8244,0.8244,0.4072,0.3526,0.1568,0.2402,0.2978,0.3036,0.4158,0.6546,0.8562,-0.384,0.0484,0.8236,0.8928,0.2596,-0.218,-0.1072,-0.436,-0.384,-0.2318,-0.2456,-0.0866,0.2076,0.3392,0.5986,0.9654,0.8996,0.6608,0.7094,0.9412,1,0.993,0.6228,0.3252,0.0588,-0.0346,0.0312,0.0484,-0.0138,0.218,0.3944,0.6644,-0.459,-0.046,0.5574,0.482,0.2394,-0.0132,-0.1344,-0.4524,-0.0688,-0.0722,-0.0262,0.3114,0.695,0.7016,0.4722,0.3574,0.341,0.2622,0.541,0.8328,0.8,0.7606,0.3378,0.2164,-0.0196,-0.023,0.023,0.0886,0.1934,0.341,0.5804,1,-0.522,-0.0404,0.4154,0.3602,0.3088,-0.022,-0.2536,-0.3124,-0.2316,-0.0184,0.1286,0.7942,0.8162,0.5514,0.2022,0.125,0.0258,0.0698,0.3162,0.7536,0.8382,0.6434,0.158,-0.0514,-0.0772,-0.1948,-0.158,0.0036,0.1176,0.3934,0.772,1,-0.5524,-0.1142,0.0334,0.3666,0.3666,-0.2858,-0.4714,-0.4,-0.2572,-0.0952,0.2286,0.3238,0.119,-0.1334,-0.3666,-0.3762,-0.4524,-0.3762,-0.481,-0.0238,0.3524,0.3858,-0.0714,-0.3762,-0.238,-0.3334,-0.4476,-0.1666,-0.2714,0.1572,0.9334,1,0.3164,1,0.102,-0.296,-0.4082,-0.653,0.1632,0.5204,-0.1122,0.4388,0.449,0.1428,0.9898,0.8674,0.4796,0.1632,-0.0816,0.0306,-0.3674,-0.2756,-0.0204,0.2756,0.3266,0.1224,0.2142,-0.051,-0.296,-0.2448,-0.2346,-0.153,0.0612,0.1122,-0.4376,0.375,0.375,-0.3124,-0.125,-0.4376,-0.3124,-0.5,-0.4376,-0.625,-0.5624,-0.5,-0.3124,-0.625,-0.125,0.25,0.125,0.5624,0.75,0.875,0.6876,0.875,0.875,0.9376,0.625,0.9376,0.75,0.625,0.5624,0.75,0.875,1,-0.3334,0.0878,0.0878,0.2632,0.1228,-0.4736,-0.3334,-0.3684,-0.4036,-0.228,-0.228,-0.3684,-0.0878,-0.0878,0.0176,0.0176,0.3684,0.614,0.7894,0.5438,0.7192,0.6492,0.6842,0.8596,0.8596,0.4036,0.4036,0.579,0.5438,0.6492,0.6842,1,-0.3674,0.0204,0.5306,0.653,0.2448,-0.449,-0.5918,-0.2448,-0.1224,-0.3674,-0.4082,-0.1428,-0.3878,-0.0816,0.2858,0.3062,0.653,0.7756,1,0.7552,0.8776,0.8572,0.8164,0.204,0,0.1224,0.204,0.2448,0.2858,0.3674,0.5714,0.7756,-1,-1,-1,-0.9264,-0.9442,-0.9118,-0.9264,-0.9118,-0.8912,-0.8794,-0.8294,0.1558,0.4294,0.653,0.8852,0.7294,0.4088,-0.1352,-0.3324,-0.503,-0.6382,-0.7882,-0.9,-0.9206,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.947,-0.9534,-0.088,-0.4156,-0.5692,-0.343,-0.3736,-0.6454,0.4778,0.9368,0.4258,0.0052,-0.0052,-0.048,-0.2732,-0.4928,-0.6678,-0.8418,-0.9042,-0.9442,-0.9498,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9134,-0.96,-0.22,0.6,0.6066,0.6466,0.5366,0.2832,-0.2156,-0.0312,-0.4112,-0.6956,-0.7556,-0.714,-0.45,-0.54,-0.616,-0.84,-0.848,-0.8868,-0.9268,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,1,1,0.9142,-0.7142,-0.6858,-0.1428,0.9428,1,-0.2858,0.1142,-0.4858,-0.6572,-0.8572,-0.8,-0.7714,0.5714,0.7428,-0.7428,-0.9428,-0.4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.1438,-0.1606,-0.142,-0.1596,-0.1406,-0.0872,-0.037,-0.0016,0.1176,0.243,0.7326,0.7308,0.7032,0.674,0.6542,0.5918,0.5032,0.296,-0.0878,-0.4126,-0.44,0.1176,-0.664,-0.5886,0.7264,0.7598,0.9712,1,-0.618,-0.463,-0.3562,-0.346,-0.2392,-0.043,0.0018,0.0362,0.229,0.37,0.5146,0.7624,0.9656,0.8624,0.8142,0.58,0.7006,0.673,0.8486,0.9036,1,0.9794,0.9932,0.6902,0.697,0.5766,0.611,0.5044,0.3838,0.3838,0.3288,0.198,-0.7398,-0.569,-0.6,-0.3826,-0.3942,-0.3748,-0.2272,-0.099,0.1224,0.2156,0.3748,0.7554,0.903,0.9418,0.8486,0.7826,0.8174,0.736,0.9378,0.8292,0.9534,1,0.93,0.7476,0.8174,0.8174,0.631,0.6582,0.6,0.5922,0.4952,0.0952,-0.8042,-0.5744,-0.5404,-0.356,-0.4576,-0.3974,-0.194,-0.2204,-0.1074,0.1564,0.2316,0.6724,0.9246,0.7816,0.4162,0.5404,0.8192,0.4764,0.5856,0.8494,1,0.6384,0.5856,0.6308,0.6046,0.6498,0.5104,0.3146,0.4312,0.371,0.3822,0.1978,0.7348,-1,-1,1,-1,-1,-1,0.2,-1,0.7284,0.6296,0.7284,0.8766,0.679,0.926,0.5556,0.4568,0.7038,0.7778,0.8518,0.8272,0.9506,0.6296,0.7778,1,0.8518,0.7284,0.5062,0.5802,0.6544,0.753,0.5062,0.7038,0.9506,0.8518,0.9754,0.926,0.4568,0.753,0.432,-0.1112,'17'
-0.6148,-0.3202,-0.0348,0.0116,0.1532,0.5894,0.71,0.689,0.7842,1,0.8816,0.5104,0.5128,0.4872,0.2854,0.2366,0.2738,0.4756,0.6032,0.6426,0.4664,0.3712,0.1508,0.1276,0.1416,0.1252,0.1902,0.2576,0.2042,0.4362,0.6078,0.5244,-0.638,-0.3226,-0.0418,0.0372,0.2668,0.5568,0.7216,0.7308,0.7772,1,0.9304,0.5754,0.478,0.5128,0.3202,0.2622,0.3248,0.515,0.6078,0.696,0.6056,0.2506,0.1484,0.1996,0.0974,0.0626,0.2366,0.188,0.1996,0.4942,0.5662,0.5568,-0.6798,-0.3662,0.011,0.079,0.3158,0.671,0.829,0.636,0.66,1,0.9342,0.66,0.5308,0.5658,0.4672,0.3882,0.4628,0.7982,0.8092,0.432,0.3508,0.2588,0.1316,0.1558,0.0834,0.0548,0.1514,0.2018,0.2742,0.5022,0.557,0.6206,-0.6188,-0.3698,-0.0366,-0.032,0.2626,0.8128,0.8264,0.5958,0.726,0.879,1,0.9246,0.6278,0.5594,0.5936,0.6644,0.7328,0.6644,0.3904,0.1736,0.041,-0.0136,-0.1028,-0.0936,-0.105,-0.1348,-0.0114,-0.0046,0.121,0.363,0.5434,0.5092,-0.5556,-0.3584,-0.1136,0.0762,0.6254,0.7928,0.7878,0.7028,0.6604,0.7678,0.975,1,0.8152,0.6828,0.8102,0.9226,0.7728,0.2958,0.161,0.0312,-0.0162,-0.136,-0.2884,-0.266,-0.2584,-0.2908,-0.186,-0.1086,-0.0362,0.2184,0.4406,0.4158,-0.757,-0.4096,-0.195,0.0396,0.579,0.9916,1,0.5368,0.4124,0.7598,0.9322,0.9662,0.9012,0.8136,0.8672,0.9322,0.7034,0.2796,0.0142,-0.1046,-0.1978,-0.305,-0.4604,-0.4152,-0.4378,-0.469,-0.4096,-0.3644,-0.1808,-0.0198,0.1016,0.13,-0.7966,-0.478,-0.1976,0.002,0.7082,0.9156,0.739,0.5548,0.4894,0.3934,0.689,0.8694,1,0.9732,0.9118,0.9808,0.8004,0.1402,-0.0442,-0.3974,-0.428,-0.5278,-0.6584,-0.5508,-0.5164,-0.4318,-0.524,-0.4588,-0.3704,-0.0596,0.0134,-0.094,-0.5862,-0.2068,0.0344,0.1034,0.3794,0.5518,0.7932,0.7932,0.7932,1,1,0.5862,0.3448,0.4482,0.2758,0.3104,0.3448,0.5172,0.6896,0.5862,0.5172,0.3794,0.3104,-0.0344,0.2068,0.2758,0.1724,0.069,0.3104,0.4482,0.5518,0.6206,-0.5806,-0.3226,0.0646,0.0968,0.1936,0.6452,0.742,0.6774,0.742,1,0.9032,0.2904,0.5484,0.5484,0.4194,0.387,0.387,0.5806,0.7096,0.7096,0.5484,0.4516,0.2258,0.129,0.258,0.2258,0.258,0.3548,0.2904,0.4516,0.6452,0.7096,-0.644,-0.339,0.0338,0.1186,0.339,0.644,0.8306,0.661,0.5932,1,0.9492,0.5594,0.5254,0.5594,0.5084,0.4576,0.356,0.8136,0.8474,0.3898,0.3898,0.356,0.1864,0.2034,0.1864,0.1186,0.2204,0.2204,0.2712,0.5932,0.5762,0.6272,-1,-1,-1,-1,-1,-1,-1,-1,-0.9436,-0.9222,-0.3208,0.3986,0.6296,0.8578,0.9356,0.6966,0.8658,0.7182,0.4684,0.208,-0.0846,-0.557,-0.6832,-0.7986,-0.8766,-0.9302,-0.9248,-0.9436,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9866,-0.9828,-0.522,0.446,0.9382,0.787,0.6096,0.3808,0.5276,0.2716,-0.0418,-0.3136,-0.5354,-0.8244,-0.9366,-0.9414,-0.9608,-0.9576,-0.9606,-0.974,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.92,-0.68,-0.484,-0.482,-0.462,-0.49,-0.49,-0.54,-0.602,-0.482,-0.708,-0.87,-0.868,-0.95,-0.6934,-0.6934,-0.5134,-0.6368,-0.8368,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,-0.9714,-0.9714,-0.6572,-0.8572,-0.9142,-0.7714,-0.8572,-0.8858,-0.1714,0.6286,-0.5142,-0.8,-0.8,-0.8858,-0.8858,-0.8286,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-1,-0.9924,-1,-1,-1,-1,-1,-1,-1,-1,-0.5734,0.1764,-0.4998,0.0144,0.2804,0.6138,0.8616,1,0,0.2666,0.6,0.9,1,1,0.8334,0.7,0.6666,0.7,0.6666,0.5334,0.4,0.4,0.4334,0.5334,0.5,0.4,0.2334,0.2,-0.1334,0,0.0666,0,-0.0666,-0.1666,-0.2,-0.2666,-0.1,0,-0.1666,-0.1334,-0.3334,0.0666,0.6222,0.7334,1,0.8222,0.5112,0.4444,0.4444,0.8444,0.8,0.4222,0.2666,0.3334,0.2444,0.4888,0.3112,0.2666,0.2666,0.3334,0.1112,-0.3112,-0.5778,-0.5556,-0.6888,-0.6444,-0.6,-0.7778,-0.4444,-0.3112,-0.2888,-0.5334,-0.1526,0.2204,0.5254,0.8814,0.8814,1,0.6272,0.4916,0.4746,0.695,0.661,0.339,0.2542,0.322,0.4068,0.7118,0.695,0.5254,0.4238,0.322,0.2372,-0.1526,-0.3898,-0.4068,-0.4406,-0.4406,-0.305,-0.1186,-0.0508,0.0848,-0.017,-0.4406,0.221,-1,-1,1,-1,-1,-0.2,-0.8334,-1,-0.5284,-0.4716,0.0566,0.0754,0.0188,0.1886,1,0.9812,0.6792,0.7736,0.717,0.0566,0.2264,0.5472,0.7358,0.7358,0.7548,0.1886,0.2076,0.7924,0.9056,0.1886,-0.3018,-0.2264,-0.151,-0.3396,-0.2076,-0.2076,-0.3584,-0.3962,0.0378,-0.4528,'18'
-0.6342,-0.295,-0.0488,-0.0088,0.1464,0.705,0.745,0.7872,0.9356,1,0.7118,0.5544,0.5498,0.3148,0.2106,0.1996,0.2306,0.3636,0.6962,0.632,0.5144,0.2084,0.113,0.1042,0.0732,0.0576,0.0954,0.2262,0.3148,0.3526,0.295,0.2084,-0.5776,-0.3082,0,0.0164,0.2204,0.7734,0.8164,0.749,0.9142,1,0.6654,0.602,0.5694,0.3142,0.249,0.196,0.1816,0.398,0.7062,0.604,0.4898,0.1346,0.0836,0.102,0.0244,0.0204,0.0142,0.153,0.196,0.2448,0.1552,0.1756,-0.5756,-0.2928,0.0772,0.0838,0.2732,0.9086,0.939,0.6888,0.9086,0.963,1,0.9064,0.5648,0.4276,0.3602,0.321,0.4364,0.5866,0.7714,0.5582,0.3536,0.1644,0.0338,-0.073,-0.062,-0.1468,-0.1426,0.1774,0.1382,0.1992,0.1882,0.1796,-0.6118,-0.3484,0.067,0.1328,0.437,0.925,0.8684,0.6232,0.8206,0.866,1,0.8864,0.7844,0.6482,0.5596,0.7162,0.832,0.512,0.3462,0.1532,0.0692,-0.0306,-0.1646,-0.2326,-0.2622,-0.185,-0.1328,-0.0012,0.1804,0.2122,0.1442,0.017,-0.6384,-0.3924,-0.075,0.1562,0.7908,0.9212,0.8154,0.7146,0.7662,0.8746,0.9976,1,0.786,0.6728,0.7736,0.882,0.7638,0.3924,0.1094,-0.0602,-0.08,-0.1586,-0.3678,-0.3752,-0.3112,-0.3162,-0.198,-0.0382,0.0136,0.0948,0.102,-0.1168,-0.855,-0.4226,-0.2078,0.1408,0.6094,0.9722,0.9052,0.4896,0.5732,0.71,0.8744,1,0.8438,0.6764,0.763,0.8578,0.7824,0.272,-0.0768,-0.2134,-0.2888,-0.4086,-0.5034,-0.4254,-0.5984,-0.5426,-0.4504,-0.2804,-0.1716,-0.152,-0.1772,-0.4532,-0.8792,-0.4416,-0.351,-0.1584,0.4906,0.5472,0.5548,0.4226,0.3548,0.2868,0.5812,0.7736,0.8982,0.9246,0.7018,0.732,1,0.7736,0.1886,0.0302,-0.2716,-0.283,-0.4302,-0.483,-0.5584,-0.5622,-0.468,-0.332,-0.1208,-0.1246,-0.3924,-0.5208,-0.5,-0.0556,-0.2778,0.0556,0.5,0.7778,0.7778,1,0.9444,0.7222,0.6666,0.2222,0.1666,-0.0556,0,0.1112,0.0556,-0.1112,0.3334,0.4444,0.1112,0.1666,-0.1666,-0.0556,0.1666,0.0556,0,-0.3888,0.1112,0.1666,0.2778,0.1666,-0.7074,-0.4634,-0.122,0.0244,0.0732,0.6586,0.756,0.8536,0.8536,1,0.9024,0.8536,0.4634,0.1708,0.122,0.317,0.2196,0.561,1,0.9024,0.561,0.4634,0.2682,0.2196,0.122,0.122,0.2196,0.2196,0.4634,0.122,0.317,-0.0244,-0.6092,-0.4482,-0.0804,0.1494,0.862,0.931,0.862,0.7242,0.6782,0.7472,1,0.954,0.885,0.7242,0.7472,0.885,0.839,0.2644,0.0114,-0.0344,-0.1954,-0.2184,-0.2644,-0.4712,-0.2414,-0.1954,-0.1494,0.0114,0.0804,0.1724,0.0804,-0.0804,-1,-1,-1,-1,-1,-1,-0.9266,-0.959,-0.9238,-0.9414,-0.8534,0.2492,0.8564,0.953,0.953,0.8944,0.7244,0.4194,0.3284,-0.1876,-0.4106,-0.7244,-0.7566,-0.786,-0.8358,-0.8856,-0.9266,-0.9238,-0.9354,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9786,-0.9838,-0.9802,-0.979,-0.8832,0.2992,0.9128,0.889,0.6996,0.6258,0.4086,0.1796,-0.0786,-0.4532,-0.6424,-0.8736,-0.9332,-0.9376,-0.955,-0.964,-0.97,-0.972,-0.9774,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8822,-0.9734,-0.84,-0.8468,-0.7534,-0.5292,-0.522,-0.5564,-0.6034,-0.6234,-0.6818,-0.6368,-0.675,-0.7234,-0.6568,-0.6184,-0.74,-0.55,-0.74,-0.5934,-0.73,-0.8434,-0.9368,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3714,-0.9714,-0.9428,-0.5142,1,1,-0.9428,-0.9428,-0.9714,-0.9142,-0.9142,-0.9714,-0.8,-0.6858,-0.6286,-0.2858,-0.7428,-0.8286,-0.8572,-0.8572,-1,-0.9714,-0.7428,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.918,-0.9316,-0.9578,-0.9852,-0.9908,-0.9952,-1,-1,-1,-1,-0.5334,0.4,-0.8512,-0.5776,0.208,0.4966,0.7074,0.875,-0.2632,-0.3894,0.1158,0.3264,0.2106,0,0.4316,0.2842,1,0.2,0.4526,0.5158,0.4316,0.2948,0.0316,0.179,0.1474,0.1158,-0.2316,-0.0632,0.2,0.0948,-0.0422,0.1158,0.0422,0.1474,0,0.1368,-0.2106,0.021,-0.4,-0.8316,0.0052,0.1282,0.1282,0.8974,0.641,0.6308,0.5076,0.7334,1,0.559,0.1076,0.4974,0.7436,0.6924,0.4564,0.5384,0.282,0.3744,0.118,0.6206,0.2102,0.2924,0.4462,0.2308,0.118,0.118,0.2308,0.3128,-0.0462,0.0872,-0.0358,-0.3538,-0.1706,-0.0156,0.2248,1,0.8528,0.6434,0.8372,0.5658,0.6666,0.69,0.5348,0.6124,0.5348,0.1472,0.5504,0.659,0.4962,0.4186,0.2714,0.4806,0.3566,0.2016,0.2248,0.186,0.0698,0.0776,-0.0388,0.0466,-0.1628,0.0776,-0.155,-0.6046,-0.9936,1,-1,-1,-1,-1,-0.6,-1,-1,0.0834,0.0334,0.2666,0.2,-0.0834,0.1166,1,0.9334,0.3834,0.7834,0.7334,0.15,0.3,0.2834,0.1666,0.2166,0.05,-0.1166,-0.0166,0.2666,0.1,-0.25,-0.15,0.0334,-0.0166,-0.2,-0.0666,-0.1166,-0.3666,-0.15,-0.0666,-0.75,'18'
-0.5106,-0.1662,0.142,0.293,0.6798,0.571,0.432,0.2386,0.2024,0.1722,0.148,0.1602,0.299,0.2508,0.4138,0.867,0.8732,0.9516,0.7764,0.728,0.7886,0.7764,0.7584,0.9516,1,0.6918,0.6314,0.6314,0.3776,0.5288,0.6374,0.6978,-0.5458,-0.239,0.1092,0.1622,0.469,0.5694,0.6224,0.2094,0.1622,0.233,0.1918,0.2154,0.351,0.3628,0.4986,0.7522,0.8762,0.9352,0.7404,0.6578,0.6814,0.705,0.6814,1,0.8348,0.6638,0.6638,0.5458,0.4926,0.475,0.6166,0.6342,-0.5218,-0.2494,0.1156,0.2082,0.3882,0.8304,0.8098,0.275,0.198,0.1774,0.2854,0.3522,0.3676,0.5116,0.6916,0.7532,1,0.8612,0.6092,0.707,0.5938,0.6658,0.9384,0.8046,0.743,0.635,0.5578,0.5168,0.4242,0.3882,0.5168,0.6402,-0.5264,-0.2998,0.058,0.1738,0.5768,0.9848,0.9144,0.1336,0.3652,0.3098,0.3702,0.4006,0.471,0.5164,0.8086,0.9848,1,0.5062,0.597,0.592,0.4962,0.7632,0.7984,0.854,0.6926,0.6322,0.5366,0.3804,0.4106,0.3954,0.5668,0.5516,-0.5248,-0.2584,-0.013,0.1958,0.7336,0.9738,0.8486,0.5614,0.5092,0.363,0.4308,0.457,0.5562,0.8276,0.8798,0.8852,0.6866,0.5666,0.3994,0.4882,0.5666,0.6292,0.9112,1,0.812,0.4934,0.457,0.5562,0.3682,0.3368,0.4622,0.598,-0.7614,-0.4802,-0.1132,0.1744,0.7492,0.9938,1,0.6392,0.4556,0.2172,0.3334,0.3884,0.5964,0.9266,0.9816,0.7432,0.3272,0.2782,0.3212,0.1132,0.1314,0.4556,0.8042,0.8532,0.8104,0.3394,0.4924,0.37,0.2538,0.0948,0.2966,0.1132,-0.8362,-0.4164,-0.089,0.2384,0.822,0.9502,0.5302,0.1316,0.1174,0.0392,0.0818,0.1886,0.4946,0.822,0.7508,0.5872,0.3736,0.21,0.1032,0.0818,0.2314,0.3808,0.7438,1,0.9716,0.3168,0.3096,0.217,-0.2314,-0.3452,-0.2028,-0.2028,-0.6086,-0.3044,-0.0434,0.3478,0.6956,0.6522,0.174,0.087,0.0434,0,0,-0.0434,0.1304,0.174,0.2174,0.6956,0.7392,0.913,0.8696,0.6522,0.7826,0.826,0.7392,0.9566,1,0.6956,0.6086,0.6086,0.5218,0.6522,0.6522,0.6956,-0.591,-0.2272,0.0454,0.3182,0.5454,0.2272,0.4546,0.2272,0.1364,0.1364,0.1818,0.2272,0.2272,0.3182,0.5,0.8636,0.8636,1,0.6818,0.7272,0.7728,0.8182,0.7728,1,1,0.7728,0.6364,0.6364,0.3636,0.5,0.7728,0.7728,-0.6086,-0.3478,-0.1304,0.087,0.6956,0.8478,0.7392,0.674,0.5434,0.174,0.4782,0.413,0.5652,0.8044,1,0.9782,0.5652,0.413,0.174,0.2392,0.3478,0.4348,0.7608,0.913,0.7392,0.3696,0.2608,0.4566,0.326,0.2608,0.4566,0.587,-1,-1,-1,-1,-1,-1,-1,-1,-0.9228,-0.9422,-0.383,0.3196,0.1652,0.1984,0.3802,0.686,0.9174,0.945,0.4766,0.0524,0.0276,-0.314,-0.617,-0.8236,-0.898,-0.9146,-0.9256,-0.9146,-0.9284,-0.9008,-0.9338,-0.7988,-0.8182,-1,-1,-1,-1,-1,-1,-1,-1,-0.973,-0.9736,-0.514,0.1716,0.3196,0.4662,0.58,0.7366,0.9466,0.904,0.4184,-0.0388,-0.1004,-0.5634,-0.7918,-0.8262,-0.7342,-0.6354,-0.7302,-0.7182,-0.4634,-0.5054,-0.514,-0.552,-0.6204,-1,-1,-1,-1,-1,-1,-1,-1,-0.8734,-0.98,-0.7268,-0.465,-0.344,-0.5,-0.444,-0.448,-0.664,-0.624,-0.616,-0.588,-0.648,-0.528,-0.5134,0.3932,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,-0.1714,-0.8572,-0.9428,-1,-0.7428,-0.5714,-0.0858,0,0.6,0.4858,1,1,0.0572,-0.4572,-0.8858,-0.8858,-0.7714,-0.6286,-0.5714,-0.7428,-0.7714,1,1,1,1,1,1,1,1,1,1,0.265,0.2468,0.2468,0.2586,0.2434,0.2342,0.2254,0.1826,0.0712,-0.1432,-0.52,-0.4824,-0.3386,0.0648,0.1746,0.3138,0.4414,1,-0.35,0.05,0.45,0.5,0.4,0.3,0.55,0.6,0.85,0.9,0.85,1,0.95,0.85,0.7,0.7,0.75,0.75,0.65,0.6,0.65,0.5,0.2,0.3,0.05,-0.3,-0.05,-0.05,-0.1,-0.05,-0.05,-0.45,-0.4382,0.0562,0.5956,0.3034,0.146,0.1236,0.2808,0.7528,0.9776,0.8876,0.9776,1,0.663,0.7078,0.4832,0.663,0.573,0.8876,0.8876,0.3708,0.7304,0.3258,0.191,0.146,-0.2134,-0.5506,-0.618,-0.8876,-0.618,-0.2808,-0.1012,-0.5056,-0.1684,0.3268,0.8218,0.6634,0.2476,0.208,0.3466,0.6436,0.9802,1,0.8218,0.9406,0.9604,0.7426,0.5644,0.7228,0.7822,0.9406,0.9604,0.4852,0.703,0.6634,0.2872,-0.1486,-0.2278,-0.4258,-0.4654,-0.3664,-0.4654,-0.1486,-0.1486,-0.208,0.1804,-1,-1,1,-0.8,-1,-0.6,-0.8334,-1,-0.641,-0.4052,-0.4154,-0.3642,-0.3744,-0.5488,-0.3538,-0.2718,-0.1384,-0.1898,-0.1692,-0.1076,-0.2,-0.2102,-0.2718,-0.0154,-0.1076,-0.0872,-0.0052,0.2,0.1898,0.1384,0.2718,0.477,0.477,0.5692,0.7128,0.682,0.918,1,0.8666,0.4666,'19'
-0.5284,-0.107,0.107,0.2076,0.629,0.6226,0.3144,0.3144,0.327,0.1762,0.0378,0.1824,0.283,0.2704,0.415,0.5284,0.7044,0.8806,0.849,0.629,0.7232,0.7232,0.6164,0.7988,1,0.8114,0.4716,0.5032,0.4528,0.3144,0.3962,0.5408,-0.5058,-0.0988,0.2268,0.3082,0.593,0.5232,0.6744,0.3546,0.1454,0.3604,0.1976,0.221,0.529,0.4942,0.4594,0.75,0.8256,0.7326,0.6744,0.471,0.529,0.5872,0.221,0.8198,1,0.686,0.2732,0.5232,0.4012,0.064,0.3082,0.3024,-0.5598,-0.1922,0.1364,0.2034,0.4262,0.6658,0.8162,0.4428,0.103,0.3426,0.1866,0.1866,0.5544,0.493,0.5432,0.9722,1,0.3204,0.3594,0.5098,0.3594,0.3928,0.5376,0.649,0.7938,0.4206,0.3594,0.3984,0.248,0.298,0.1922,0.2312,-0.5458,-0.2022,0.1246,0.1358,0.3408,0.9336,1,0.4958,0.1912,0.2854,0.2576,0.23,0.4238,0.6676,0.6952,0.9556,0.806,0.4294,0.374,0.3518,0.446,0.3796,0.457,0.7452,0.662,0.4626,0.313,0.2686,0.2022,0.2078,0.2188,0.2798,-0.517,-0.2756,0.1392,0.2178,0.5066,1,0.9422,0.433,0.2336,0.2074,0.3176,0.3124,0.4856,0.6798,0.874,0.8162,0.475,0.391,0.3438,0.3334,0.454,0.4856,0.5014,0.8636,0.9056,0.6956,0.3648,0.3754,0.3438,0.2494,0.2178,0.3544,-0.6394,-0.2842,-0.0328,0.2022,0.8688,0.9836,0.8306,0.5192,0.4154,0.295,0.2622,0.3224,0.623,0.7978,0.7924,0.6394,0.3826,0.2514,0.0492,0.2132,0.3662,0.399,0.552,0.9344,1,0.8032,0.3224,0.377,0.3006,0.1584,0.1038,0.295,-0.4498,-0.2362,0.1262,0.2298,0.8576,0.89,0.6504,0.534,0.5598,0.288,0.2492,0.424,0.7476,0.8576,0.9288,0.8446,0.2362,0.1586,-0.0486,-0.0356,0.3268,0.3334,0.4628,0.9742,1,0.7216,0.3334,0.0614,0.0938,-0.0744,-0.055,-0.0162,-0.7142,-0.0286,-0.0286,0.2,0.3714,0.4858,0.3714,0.3142,0.2,0.1428,0.0858,0.2572,0.3142,0.4286,0.5428,0.7142,0.7142,0.7142,0.7142,0.7714,0.7142,0.7714,0.9428,0.9428,1,0.8286,0.7142,0.6,0.3714,0.4286,0.4858,0.7142,-0.409,0,0.3182,0.409,0.8636,0.8636,0.4546,0.3636,0.5,0.3182,0.0454,0.3182,0.2728,0.3636,0.5454,0.7272,0.9546,1,0.8636,0.8636,0.6818,0.6364,0.7728,0.8636,0.9546,0.7272,0.591,0.7272,0.6364,0.2272,0.7272,0.7728,-0.5958,-0.3192,-0.0426,0.234,0.6808,0.8936,0.7022,0.4042,0.4256,0.2766,0.3404,0.4256,0.532,0.766,0.766,0.617,0.3404,0.2554,0.3192,0.3404,0.3618,0.4256,0.4256,0.9574,1,0.617,0.383,0.3192,0.4042,0.2128,0.2978,0.3192,-1,-1,-1,-1,-1,-1,-1,-0.93,-0.9264,-0.895,-0.7828,0.261,0.324,0.1558,0.1488,0.1734,0.5026,0.902,0.93,0.8144,0.1978,-0.1944,-0.6322,-0.8494,-0.8984,-0.8844,-0.9124,-0.881,-0.923,-0.9124,-0.881,-0.916,-0.881,-1,-1,-1,-1,-1,-1,-1,-0.9656,-0.9648,-0.957,-0.6238,-0.1104,-0.1648,-0.1402,0.013,0.302,0.6038,0.9494,0.9732,0.6744,-0.1026,-0.5426,-0.79,-0.718,-0.5004,-0.5004,-0.5126,-0.4522,-0.397,-0.3656,-0.3386,-0.154,-0.3112,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.9034,-0.7968,-0.53,-0.42,-0.476,-0.488,-0.596,-0.504,-0.616,-0.716,-0.68,-0.6768,-0.7334,-0.5568,-0.3068,0.5832,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-0.9428,-0.9142,1,1,1,-0.5142,-0.8286,-0.8286,-0.9142,-0.8858,-0.8572,-0.9142,0.0286,0.3428,0.0572,1,1,0.1714,-0.4286,-0.8,-0.8,-0.9428,-0.9142,-0.8858,-0.9142,-0.7428,1,1,1,1,1,1,1,1,1,1,0.2914,0.2548,0.2524,0.2158,0.161,0.157,0.0498,-0.0328,-0.2232,-0.279,-1,-0.4352,-0.5478,-0.3602,0.0076,-0.1432,-0.2016,1,-0.358,0.0618,0.284,0.358,0.1852,0.1358,0.284,0.5308,0.679,0.7038,0.6296,0.7778,0.8518,0.8272,0.7778,0.8766,0.9754,1,0.9754,0.7778,0.5802,0.4568,0.5062,0.0124,-0.358,0.037,-0.1112,-0.2592,0.1358,0.0618,-0.0864,-0.2098,-0.6222,-0.3556,0.2,0.1556,0.0222,0.0222,0.1556,0.3334,0.8666,0.8444,0.6,0.8,1,0.6666,0.6888,0.6222,0.9334,0.9778,0.9334,0.7334,0.6666,0.4888,0.3778,-0.1112,-0.4222,-0.3556,-0.2666,-0.4666,-0.1556,-0.1778,-0.2,-0.3556,-0.1182,-0.0108,-0.0322,0.2258,0.3118,0.2474,0.3764,0.4408,0.6774,0.828,0.8924,0.9784,1,0.6344,0.4624,0.5698,0.8064,0.914,0.6774,0.4838,0.871,0.8494,0.4624,0.3548,-0.1182,-0.4838,-0.5698,-0.0538,0.0108,0.0538,0.1398,-0.3978,0.2444,-1,-1,1,-1,-1,-0.8,-0.8,-1,-0.7354,-0.6826,-0.5556,-0.4286,-0.3228,-0.3544,-0.3544,-0.3334,-0.0794,-0.238,-0.3228,-0.2486,0.0052,0.0052,0.0688,-0.1112,0.037,0.1428,0.037,0.1958,0.1746,0.3016,0.3968,0.3862,0.6402,0.6084,0.672,0.8096,1,0.8202,0.5768,0.4074,'19'
-0.6246,0.1054,0.0592,0.3676,0.2596,-0.6246,-0.635,-0.6452,-0.4962,-0.4652,-0.6042,-0.3934,-0.2442,-0.1516,-0.1054,-0.0848,0.27,0.3778,0.9178,0.9948,0.671,0.5372,0.5424,0.7892,1,0.8766,0.7944,0.5526,0.4396,0.3264,0.4344,0.4498,-0.5154,-0.0446,0.1512,0.3676,0.1958,-0.4192,-0.787,-0.7664,-0.409,-0.4054,-0.3334,-0.2852,-0.0206,-0.1444,-0.1306,0.0412,0.1546,0.4398,0.5704,0.9656,1,0.6324,0.5224,0.8488,0.8178,0.914,0.8214,0.78,0.5738,0.512,0.6048,0.6358,-0.6148,-0.2102,0.2452,0.3852,0,-0.3618,-0.5798,-0.5486,-0.5914,-0.533,-0.4942,-0.2646,-0.2646,-0.3036,-0.2608,-0.1362,-0.0194,0.1362,0.498,0.786,0.9456,0.9534,0.7276,0.7588,0.9378,0.9806,1,0.8678,0.6926,0.5564,0.5564,0.712,-0.4832,-0.189,0.3236,0.3236,-0.4412,-0.7352,-0.6218,-0.584,-0.6092,-0.563,-0.7522,-0.5252,-0.3404,-0.3824,-0.4496,-0.2984,-0.2394,0.0084,0.3362,0.6134,0.9916,1,0.689,0.6302,0.7774,0.8446,0.916,0.8404,0.6554,0.4874,0.4874,0.5924,-0.4196,0.0892,0.5268,0.3616,-0.4508,-0.7054,-0.6428,-0.5624,-0.8482,-0.6786,-0.6876,-0.6652,-0.5536,-0.4866,-0.5178,-0.3392,-0.3036,-0.2322,0.192,0.6518,0.8974,1,0.7946,0.6206,0.7858,0.8258,0.8928,0.7634,0.6072,0.4464,0.4508,0.5178,-0.6152,-0.047,0.2438,-0.029,-0.5526,-0.5258,-0.6958,-0.6376,-0.8166,-0.7226,-0.7136,-0.8256,-0.6912,-0.5212,-0.4676,-0.4272,-0.4228,-0.2886,-0.0514,0.5526,1,0.9374,0.6196,0.642,0.7404,0.7808,0.8032,0.7898,0.4272,0.396,0.3692,0.5168,-0.7926,-0.0202,0.0086,-0.4756,-0.5678,-0.7348,-0.6484,-0.5158,-0.706,-0.7292,-0.8156,-0.7464,-0.3776,-0.3198,-0.7292,-0.3084,-0.2392,-0.441,-0.464,0.0606,0.879,1,0.683,0.487,0.7522,0.781,0.3314,0.366,-0.0836,-0.1528,-0.0952,-0.0202,-0.4782,0.4782,0.4782,0.4782,0.3914,-0.826,-0.0434,-0.2174,-0.4782,-0.826,-0.7392,-0.5652,-0.4782,-0.3044,-0.1304,-0.6522,-0.3044,0.4782,0.3044,1,0.6522,-0.5652,0.6522,0.913,0.2174,0.6522,0.826,0.1304,0.3044,0.1304,-0.1304,0.1304,-0.5,0.2778,0.2778,0.3888,0.3334,-0.3334,-0.5556,-0.2778,-0.2222,-0.2222,-0.6112,-0.3888,-0.1666,-0.0556,0.0556,0.1666,0.5556,0.5556,0.9444,1,0.6666,0.7222,0.6112,0.5,1,1,0.8334,0.6666,0.1666,0.1112,0.4444,0.2222,-0.5348,-0.1396,0.2094,0.2326,-0.5814,-0.8372,-0.7674,-0.814,-0.5582,-0.5116,-0.6744,-0.4884,-0.3256,-0.4884,-0.372,-0.2326,-0.1628,-0.0232,0.1396,0.6976,0.814,0.8372,0.7442,0.5814,0.8372,0.8372,1,0.7674,0.6512,0.4884,0.4884,0.5582,-1,-1,-1,-1,-0.9368,-0.8972,-0.8696,-0.6878,-0.581,-0.7272,-0.6798,0.4072,0.8578,0.8656,0.7234,0.3834,0.3596,0.3952,0.0474,-0.2094,-0.4072,-0.66,-0.6916,-0.7944,-0.8538,-0.8854,-0.917,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.966,-0.9646,-0.8248,-0.1578,-0.1782,-0.2212,-0.5862,-0.3942,0.6132,0.8844,0.7682,0.4268,0.0468,-0.432,-0.5838,-0.5348,-0.673,-0.858,-0.8996,-0.923,-0.9442,-0.9434,-0.9532,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.969,-0.9034,-0.8168,0.9032,1,0.88,0.4632,-0.4572,0.12,0.0456,0.1884,0.157,-0.08,-0.4348,-0.3334,-0.1518,-0.4068,-0.5494,-0.6252,-0.6386,-0.7486,-0.6918,-0.7852,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4858,-0.0286,1,1,-0.3714,-0.2858,1,1,1,-0.6286,-0.9142,-0.4858,-0.4,-0.6858,-0.9714,-0.6286,0.2,0,-0.5714,-0.9428,-0.9428,-0.8286,-0.7142,-1,-1,-1,-1,-1,-1,-0.0406,-0.0406,-6e-04,-0.0028,0.0186,0.0234,0.0044,-0.0068,0.0132,-0.0664,0.6332,0.6332,0.6922,0.6866,0.711,0.731,0.7646,0.8344,0.9282,0.9018,-0.5334,-0.1764,-0.6186,-0.6956,-0.435,0.08,0.5794,1,-0.8696,-0.3962,-0.314,-0.2706,-0.1208,-0.2368,-0.227,-0.2222,-0.1112,-0.1836,-0.1836,0.1304,0.4202,0.43,0.4252,0.488,0.599,0.7004,0.7536,0.913,1,0.971,0.9178,0.7294,0.6426,0.6618,0.628,0.6618,0.5508,0.5072,0.4444,0.0484,-0.644,-0.5854,-0.6292,-0.5708,-0.5854,-0.4976,-0.4292,-0.483,-0.1464,0.0342,-0.0976,0.1952,0.4342,0.4634,0.0878,0.444,0.3952,0.9366,0.9756,0.7366,0.9512,0.9854,1,0.8586,0.8586,0.8732,0.717,0.7952,0.7512,0.5902,0.4682,0.1756,-0.6032,-0.5352,-0.4726,-0.4256,-0.3368,-0.457,-0.3368,-0.2376,0.034,0.3264,0.2376,0.034,0.6136,0.342,0.0392,0.363,0.4464,0.7232,0.7912,0.6502,0.7336,1,0.906,0.7702,0.7284,0.6032,0.5926,0.4986,0.5092,0.4674,0.577,0.4256,0.0756,-1,-1,1,-1,-1,-1,-0.1334,1,0.22,0.22,-0.16,0.16,0.02,-0.2,0,0.02,0.08,0.1,0.84,0.82,1,0.9,0.2,0,0.18,0.68,0.44,0.06,0.14,0.16,0.02,0.08,-0.02,0.2,-0.16,0.36,0.22,0.16,0.36,-0.1,'20'
-0.4368,0.2578,0.221,0.321,0.2422,-0.3158,-0.4948,-0.6526,-0.2684,-0.1578,-0.4948,-0.4,-0.1526,-0.2,-0.1,-0.0264,0.2316,0.3578,0.8842,0.8106,0.579,0.4684,0.5368,0.7,1,0.8,0.7894,0.2948,0.4,0.1578,0.3,0.279,-0.4422,0.0588,0.055,0.3396,0.1992,-0.499,-0.5864,-0.5218,-0.37,-0.3092,-0.3548,-0.3358,-0.0056,-0.0208,0.0284,-0.0246,0.1878,0.3738,0.6584,0.6888,0.9316,0.7722,0.6432,0.761,0.8558,0.9506,1,0.666,0.6698,0.5788,0.5446,0.6092,-0.487,0.01,0.1968,0.3916,0.1172,-0.5864,-0.67,-0.674,-0.6342,-0.6182,-0.5228,-0.3678,-0.2564,-0.3002,-0.2764,-0.1094,-0.0258,0.2088,0.4274,0.7734,0.9006,0.9046,0.5984,0.6938,0.821,1,0.988,0.8768,0.6938,0.662,0.5388,0.5546,-0.5192,-0.1064,0.2298,0.3192,-0.234,-0.5106,-0.8382,-0.6852,-0.6724,-0.766,-0.7404,-0.7022,-0.4,-0.3702,-0.4766,-0.268,-0.0978,0.0724,0.3532,0.7404,0.9914,1,0.566,0.5872,0.749,0.8724,0.9276,0.9064,0.7148,0.6638,0.5148,0.5234,-0.4598,-0.091,0.465,0.3818,-0.2728,-0.6884,-0.626,-0.5948,-0.6572,-0.6936,-0.7194,-0.6624,-0.5116,-0.6624,-0.5168,-0.491,-0.4806,-0.335,0.122,0.5896,0.9428,1,0.6,0.5948,0.7766,0.8806,0.735,0.9376,0.9064,0.5844,0.3974,0.4338,-0.578,-0.1314,0.3762,0.0764,-0.6086,-0.8532,-0.6024,-0.4984,-0.4984,-0.5168,-0.7798,-0.6146,-0.5964,-0.6086,-0.6698,-0.4618,-0.315,-0.4374,-0.0582,0.5046,0.9388,1,0.7676,0.5412,0.682,0.8776,0.9572,1,0.7186,0.474,0.5412,0.3822,-0.791,-0.1568,0.1568,-0.1428,-0.6028,-0.6098,-0.6306,-0.547,-0.763,-0.5262,-0.4006,-0.4634,-0.324,-0.4146,-0.5192,-0.54,-0.4426,-0.6586,-0.4564,-0.094,0.8676,1,0.554,0.575,0.4774,0.6724,0.777,0.5332,0.4982,0.2334,0.0872,0.2822,0.1482,0.7038,0.6666,0.5556,0.4814,0.4074,0.3704,0.2222,0.2222,0.2592,0.037,0.1482,0.1112,0.1852,0.3704,0.2962,0.5186,0.4444,0.5186,0.4814,0.6296,0.7038,0.4814,0.7408,0.926,1,0.926,0.6296,0.3334,0.2962,0.3704,0.5556,-0.2272,0.3636,0.2728,0.3182,0.2272,-0.1364,-0.4546,-0.5454,-0.091,0,-0.1364,-0.091,0.091,0.1364,0.1364,0.1364,0.5,0.409,1,0.9546,0.5454,0.5,0.6818,0.5454,0.909,0.7272,0.3182,0.3182,0.5454,0.1364,0.2272,0.1364,-0.4444,-0.0888,0.2,0.2666,-0.3112,-0.3556,-0.6,-0.7112,-0.7112,-0.7778,-0.8888,-0.7778,-0.6222,-0.6222,-0.4888,-0.3112,-0.0444,0,0.1112,0.6,1,0.9112,0.4444,0.5778,0.4666,0.6,0.8444,0.7778,0.4444,0.5334,0.4222,0.3334,-1,-1,-1,-1,-0.9032,-0.9032,-0.9264,-0.7988,-0.822,-0.826,-0.7718,0.4778,0.9382,0.7718,0.8144,0.3966,0.0676,0.0368,0.002,-0.2186,-0.4506,-0.6712,-0.8104,-0.6518,-0.822,-0.8608,-0.8956,-0.8994,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.957,-0.9562,-0.8082,0.1902,0.273,-0.2854,-0.6336,-0.479,0.5154,0.9454,0.77,0.383,-0.038,-0.4004,-0.555,-0.5972,-0.7238,-0.8304,-0.8924,-0.8982,-0.928,-0.947,-0.9478,-0.9512,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.953,-0.8668,-0.8034,0.9332,1,1,0.66,-0.44,-0.1934,0.1284,0.0542,0.0628,0.077,-0.06,-0.2286,-0.26,-0.3516,-0.4286,-0.6868,-0.8368,-0.79,-0.8868,-0.9468,-0.8568,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3714,-0.1142,1,1,0.1714,0.5428,0.8858,1,1,-0.3142,-0.9428,-0.9142,-0.6,-0.5142,-0.9142,-0.7714,-0.0858,-0.6286,0.2286,-0.3428,-0.9428,-1,-0.9714,-0.6,-1,-1,-1,-1,-1,-0.0118,-0.003,-2e-04,-0.0088,-0.0232,0.0156,0.0256,-0.0086,-0.064,-0.0922,0.5158,0.5444,0.5276,0.5552,0.5952,0.6536,0.6956,0.7842,0.8798,0.8542,-0.6266,-0.2352,-0.6856,-0.7064,-0.4416,0.0876,0.6278,1,-0.8978,-0.7178,-0.5036,-0.3966,-0.421,-0.2944,-0.3188,-0.3188,-0.0608,-0.202,-0.056,-0.0754,0.309,0.343,0.2506,0.3626,0.275,0.4696,0.8296,0.8978,0.9368,0.9172,1,0.927,0.8004,0.82,0.7762,0.64,0.4744,0.4842,0.3382,-0.0948,-0.8606,-0.8074,-0.4796,-0.4754,-0.4672,-0.5492,-0.5204,-0.3934,-0.2132,-0.1598,-0.164,-0.0368,0.3442,0.209,0.205,0.336,0.5082,0.5656,0.6926,0.6352,0.8074,0.9222,1,0.8442,0.9098,0.9098,0.7254,0.6886,0.6148,0.6106,0.4632,0.3074,-0.7836,-0.6432,-0.6024,-0.497,-0.503,-0.5498,-0.4386,-0.3158,0.2456,0.304,0.304,0.4678,0.9298,0.8538,0.1404,0.1346,0.4678,0.5498,1,0.5964,0.9532,0.7252,0.9182,0.8362,0.7778,0.959,0.9416,0.7252,0.8304,0.6784,0.5556,0.076,0.4408,-1,-1,1,-1,-1,-0.8,-0.1334,-1,-0.3076,-0.077,-0.3076,0.0308,0.0462,0.0616,0.1538,0.0308,0.277,-0.0462,0.8308,0.6154,0.5846,0.5692,0.2462,0.077,0.2616,0.7846,0.7538,0.3384,1,0.7692,0.877,0.5846,0.2924,0.477,0.277,-0.077,0.3076,0.2924,0.2,0.0616,'20'
-0.3014,-0.0112,-0.1548,-0.1802,-0.5438,-0.6746,-0.799,-0.8532,-0.7768,-0.7256,-0.6938,-0.5598,-0.5312,-0.598,-0.5948,-0.4704,-0.3366,0.11,0.1674,0.4226,0.2792,-0.0176,0.0622,0.1516,0.2186,0.5502,0.5152,0.6044,0.6172,0.6938,0.7958,1,-0.3156,0.0218,0.172,0.1552,-0.4792,-0.7396,-0.9398,-0.9398,-0.8364,-0.7696,-0.6862,-0.4792,-0.419,-0.3756,-0.3522,-0.2654,0.0884,0.5192,0.646,0.8932,0.8164,0.6594,0.803,0.7328,0.7362,0.6494,0.6428,0.5258,0.626,0.656,0.9632,1,-0.4006,-0.0852,0.2966,0.3186,-0.511,-0.6972,-0.6594,-0.7318,-0.59,-0.5268,-0.5552,-0.4574,-0.3344,-0.3818,-0.1482,0.022,0.41,0.7854,1,0.7666,0.8108,0.981,0.8328,0.6026,0.3312,0.243,0.3848,0.328,0.3754,0.6056,0.8958,0.9242,-0.3714,0.0386,0.647,0.5966,-0.2672,-0.5026,-0.5966,-0.5496,-0.3782,-0.5058,-0.4522,-0.2,-0.1932,0.0152,0.4118,0.684,0.7042,0.7782,0.6874,0.869,1,0.9092,0.4858,0.3648,0.2034,0.2034,0.2236,0.2168,0.3614,0.5596,0.8656,0.9698,-0.4688,0.1586,0.6008,0.4118,-0.0482,-0.2762,-0.5864,-0.3012,-0.2122,-0.155,-0.1088,0.1586,0.2942,0.483,0.697,0.7006,0.2798,0.3012,0.401,0.8182,1,0.8538,0.0944,0.0232,-0.0338,-0.1052,0.0338,0.0696,0.1302,0.5152,0.893,0.8574,-0.716,0.168,0.396,0.392,0.104,-0.364,-0.48,-0.512,-0.384,-0.076,0.14,0.532,0.668,0.28,-0.136,-0.144,-0.18,-0.032,0.252,0.672,0.692,0.412,0.02,-0.016,-0.332,-0.172,-0.112,-0.092,0.172,0.568,1,0.996,-0.5222,0.1848,0.3248,0.344,0.1464,-0.4904,-0.2866,-0.2738,-0.191,0.1464,0.6816,0.6178,-0.1338,-0.395,-0.3822,-0.3886,-0.1592,-0.2802,-0.2802,0.1784,0.605,0.3566,-0.363,-0.3376,-0.4586,-0.1848,-0.4332,-0.3312,-0.2802,0.3504,1,0.9554,-0.3334,-0.0256,-0.1794,-0.5384,-0.5898,-0.5898,-0.6924,-0.7948,-0.9488,-0.6924,-0.4872,-0.4872,-0.5384,-0.5898,-0.5384,-0.2308,-0.1282,0.077,0.282,0.2308,0.0256,-0.2308,-0.2308,0.0256,0.1282,0.4358,0.5384,0.6924,0.7948,0.8974,0.9488,1,-0.098,0.1372,-0.098,-0.1372,-0.2156,-0.3726,-0.3726,-0.3726,-0.2156,-0.2156,-0.3726,-0.3726,-0.2156,-0.4902,-0.3726,-0.3334,-0.1764,0.1372,0.1764,0.451,0.3334,0.1764,0.255,0.098,0.3334,0.451,0.647,0.804,0.647,0.804,0.9216,1,-0.3608,0.031,0.464,0.4432,-0.402,-0.5876,-0.567,-0.5258,-0.5258,-0.5258,-0.567,-0.1958,-0.1958,-0.3402,0.1546,0.402,0.5258,0.8144,0.8144,0.7114,0.9794,1,0.464,0.2784,0.2578,0.1546,0.2784,0.299,0.2372,0.6288,0.6702,0.897,-1,-1,-1,-1,-1,-1,-1,-1,-0.9418,-0.9584,-0.8418,-0.5526,-0.2904,0.0302,0.334,0.7232,0.9626,0.438,-0.051,-0.3902,-0.5692,-0.7628,-0.7856,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9566,-0.963,-0.9164,-0.5212,-0.0446,0.3578,0.8722,0.7286,0.3814,0.1354,-0.2916,-0.5842,-0.7222,-0.8816,-0.8998,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.866,-0.9668,-0.8468,-0.16,0.051,-0.16,-0.1512,-0.3334,-0.5468,-0.5712,-0.6268,-0.6046,-0.558,-0.808,-0.9534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5142,-0.8286,1,1,-0.4572,-0.7428,-0.6858,-0.4,-0.5142,-0.6572,-0.4,-0.6572,0,0.2286,-0.7142,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6562,-0.6604,-0.6528,-0.674,-0.6574,-0.6238,-0.6402,-0.6238,-0.538,-0.2148,0.7534,0.7722,0.7954,0.809,0.8356,0.8312,0.8118,0.783,0.5782,-0.0228,-0.52,0.0706,-0.914,-0.7222,-0.5472,-0.4462,-0.2962,0.675,0.197,0.591,0.3484,0.8788,0.803,0.8788,0.803,0.8484,0.591,0.606,0.5152,0.8182,1,0.3334,0.6364,0.3334,0.7272,0.4546,0.5,0.3788,0.8636,0.6516,0.5606,0.4696,0.3484,0.5758,0.591,0.8484,0.4848,0.3788,-0.0758,-0.4848,0.127,0.1746,0.7936,0.6508,0.4286,0.4126,0.4286,0.8412,0.6666,0.4286,0.619,0.746,0.5556,0.5714,0.6984,0.873,0.8096,0.5556,0.492,0.746,1,0.6826,0.4286,0.4604,0.6032,0.1746,0.8254,0.365,0.365,0.0952,-0.0158,-0.2064,0.6666,0.9334,0.44,0.6534,0.4934,0.36,0.6666,0.3066,0.76,0.8134,0.5334,0.5466,0.8134,0.5334,0.7866,0.9334,1,0.5866,0.6934,0.88,0.8,0.56,0.56,0.5066,0.4134,0.32,0.6934,0.56,0.0266,0.0934,0.3066,-0.04,-0.9906,1,-1,-1,-1,-1,-0.8,-1,-1,0.7402,0.6104,0.2208,0.5324,0.5064,0.7402,0.4286,0.2988,0.7662,0.1948,0.5324,0.4806,0.6624,0.5844,0.2208,1,0.4546,0.1948,0.1168,0.4546,0.1168,0.2728,-0.091,-0.065,-0.1688,0.039,0.2208,0.5064,0.5064,0.1948,0.3766,-0.039,'21'
-0.3872,-0.0262,-0.1382,-0.1208,-0.5194,-0.6314,-0.7384,-0.7186,-0.721,-0.7236,-0.7384,-0.6562,-0.5516,-0.5168,-0.482,-0.2952,-0.086,0.178,0.462,0.5018,0.32,0.1382,0.1308,0.2578,0.4596,0.5916,0.7384,0.731,0.7186,0.6962,0.8754,1,-0.4184,-0.0052,0.0516,0.1908,-0.1128,-0.3404,-0.5722,-0.5828,-0.4246,-0.5806,-0.5364,-0.3088,-0.3004,-0.214,-0.2308,-0.0242,0.2856,0.4668,0.7408,0.7556,0.646,0.5786,0.6332,0.7302,0.7576,0.6754,0.57,0.5342,0.5658,0.6606,0.7428,1,-0.4246,-0.0192,0.3886,0.533,0.2484,-0.2336,-0.4204,-0.3906,-0.1804,-0.3504,-0.242,-0.017,-0.0042,0.0148,0.1508,0.4162,0.8132,0.8874,0.811,0.8366,0.964,0.9044,0.7664,0.6496,0.5286,0.378,0.378,0.4374,0.4586,0.6306,0.7792,1,-0.3934,-0.0236,0.6414,0.682,0.1162,-0.3078,-0.2402,-0.1634,-0.1816,-0.2108,-0.1296,-0.0078,0.2582,0.4272,0.6708,0.8556,0.8422,0.6302,0.6662,0.903,0.982,0.9346,0.5558,0.3258,0.2966,0.2334,0.283,0.3686,0.4206,0.6596,0.9144,1,-0.3882,0.091,0.516,0.3538,0.1426,-0.0614,-0.4496,-0.0614,0.0098,-0.0344,0.1254,0.4448,0.57,0.5848,0.57,0.3342,0.2776,0.3514,0.5552,0.9558,1,0.634,0.2286,0.0934,0.1032,0.0442,0.0982,0.2286,0.4324,0.6584,0.9288,0.909,-0.487,0.235,0.4962,0.2872,0.0906,-0.0446,-0.1214,0.0506,0.1428,0.3394,0.8832,0.8586,0.318,0.1552,-0.0692,-0.0938,-0.149,0.023,0.364,0.785,0.788,0.536,0.0998,-0.0752,-0.1428,-0.2228,-0.1336,-0.0076,0.315,0.8402,1,0.8004,-0.5658,0.5412,0.5536,0.211,0.2844,-0.315,-0.2478,0.0582,0.0886,0.4862,0.4802,0.0886,-0.2538,-0.2232,-0.2416,-0.0276,0.0152,-0.3578,-0.1988,-0.1438,0.3212,0.364,0.26,0.0948,-0.0826,-0.0764,-0.6942,-0.4678,-0.2844,0.792,1,0.584,-0.2608,0.1304,0.0434,-0.3914,-0.3914,-0.6086,-0.3914,-0.2174,-0.3914,-0.3478,-0.3044,-0.3914,-0.4348,-0.5218,-0.3914,-0.0434,0,0.174,0.4348,0.4348,0.174,0.174,0.0434,0.087,0.3044,0.3914,0.7392,0.826,0.826,0.6956,0.8696,1,-0.1154,0.1538,0.1154,0.0384,-0.1538,-0.3076,-0.3462,-0.6538,-0.5,-0.3076,-0.3076,-0.1924,-0.1538,-0.1538,-0.1154,-0.077,0.1154,0.3076,0.4616,0.3846,0.423,0.2692,0.2308,0.3462,0.4616,0.577,0.6924,0.8846,0.8462,0.7692,0.923,1,-0.26,0.2,0.48,0.26,0.16,0.04,-0.28,0.08,-0.02,0.06,0.36,0.76,0.66,0.36,0.34,0.26,0.38,0.3,0.6,1,1,0.5,0.06,0.24,0.2,0.06,0.26,0.2,0.5,0.5,0.82,0.8,-1,-1,-1,-1,-1,-1,-1,-1,-0.9426,-0.9598,-0.8352,-0.6016,-0.4004,-0.0478,0.4042,0.885,0.8066,0.32,-0.2836,-0.5632,-0.7568,-0.8026,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9624,-0.9656,-0.9274,-0.4458,0.1988,0.753,0.9532,0.8368,0.4742,0.035,-0.4604,-0.7278,-0.8626,-0.9076,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9432,-0.92,-0.94,-0.091,0.1562,0.1182,-0.0768,-0.3034,-0.4684,-0.6068,-0.4618,-0.66,-0.7318,-0.905,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2858,-0.8286,1,1,-0.1428,-0.6858,-0.9142,-0.7428,-0.5714,-0.7428,-0.2,-0.3714,-0.4286,-0.1142,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4412,-0.3808,-0.4052,-0.3644,-0.3458,-0.2828,-0.2324,-0.1132,0.0018,0.1664,0.8842,0.8996,0.9,0.8948,0.8876,0.884,0.8552,0.7658,0.469,-0.061,-0.6534,0.4118,-0.9266,-0.7582,-0.6044,-0.3812,-0.177,1,-0.0542,0.4108,0.5814,1,0.69,0.3798,0.783,0.5658,0.876,0.4884,0.5348,0.4418,0.7054,0.2868,0.4418,0.0852,0.1472,0.2558,0.2404,0.1782,0.5968,0.4264,0.2714,0.2248,0.628,0.2248,0.5658,0.3178,0.3024,0.1628,-0.1162,-0.659,0.1864,0.096,0.2768,0.9096,0.6046,0.6158,0.6498,0.8644,0.6836,0.5368,0.5368,0.7062,0.8418,0.661,0.356,0.661,0.6272,0.6724,0.4012,0.9662,1,0.6498,0.4464,0.3672,0.3334,0.3786,0.2542,0.4576,0.4464,0.435,-0.0734,-0.2656,0.5834,0.869,0.6072,0.8096,0.762,0.6428,0.9286,0.8452,0.9642,0.4762,0.5238,0.6904,0.8452,0.5596,0.6786,0.369,0.8572,0.9524,0.5714,0.9404,1,0.9048,0.3572,0.5714,0.5476,0.5238,0.6428,0.512,0.4048,0.3334,0.1666,-0.5238,-0.9908,1,-1,-1,-1,-1,-1,-1,-1,1,1,0.561,0.561,0.8048,0.756,0.6586,0.6586,0.9512,0.3658,0.6098,0.8048,0.756,0.561,0.0732,0.6586,0.561,0.6586,0.0244,0.2196,0.756,0.6586,0.756,0.122,0.1708,0.561,0.1708,0.317,0.3658,0.2196,-0.4634,-0.5122,'21'
-0.2714,0.1148,0.6722,0.7194,0.2094,-0.133,-0.2678,-0.173,-0.1948,-0.2532,-0.2642,-0.173,0.1038,0.1112,0.326,0.5992,0.7814,0.9636,0.9308,0.7304,0.6466,0.7632,0.938,1,0.9562,0.7304,0.5082,0.45,0.3516,0.501,0.6212,0.7012,-0.4466,-0.0534,0.566,0.6446,0.1478,-0.5284,-0.478,-0.2704,-0.1982,-0.305,-0.3648,-0.3114,-0.1856,-0.1038,0.0912,0.0378,0.2264,0.6636,0.761,0.9938,0.9592,0.6886,0.7044,0.8018,1,0.9842,0.805,0.6258,0.5378,0.585,0.5534,0.6918,-0.5244,-0.1264,0.4908,0.5784,-0.0016,-0.5952,-0.4908,-0.4908,-0.4672,-0.3188,-0.4266,-0.322,-0.204,-0.1838,-0.1264,-0.086,0.049,0.393,0.5312,0.9494,0.9426,0.8888,0.6762,0.6256,0.828,0.8684,1,0.8078,0.7032,0.6088,0.602,0.7336,-0.5164,-0.1324,0.4588,0.4626,-0.355,-0.5892,-0.762,-0.6468,-0.7428,-0.716,-0.6506,-0.597,-0.3974,-0.359,-0.4012,-0.3052,-0.2054,-0.0058,0.2668,0.6046,1,0.9462,0.5278,0.4588,0.501,0.6354,0.689,0.739,0.6468,0.5432,0.4588,0.5316,-0.5904,-0.0722,0.3976,0.1888,-0.51,-0.5382,-0.6306,-0.6224,-0.6988,-0.6184,-0.5864,-0.6104,-0.5382,-0.5502,-0.6144,-0.3494,-0.1726,-0.249,0.1164,0.6546,1,0.8634,0.4738,0.5662,0.4338,0.6064,0.7992,0.747,0.5582,0.5622,0.5702,0.4738,-0.8504,0.047,0.1966,-0.1924,-0.453,-0.6196,-0.5512,-0.453,-0.7778,-0.8034,-0.7992,-0.594,-0.5428,-0.5342,-0.47,-0.47,-0.5,-0.3504,0.0384,0.594,0.9146,0.8974,0.517,0.4958,0.4616,0.5556,0.9658,1,0.6838,0.6496,0.6666,0.6112,-0.7808,-0.1068,-0.1288,-0.463,-0.6164,-0.6768,-0.4028,-0.3754,-0.7698,-0.715,-0.715,-0.7206,-0.6986,-0.5616,-0.5068,-0.6658,-0.6384,-0.5124,-0.2164,0.074,0.841,1,0.463,0.359,0.4082,0.6054,0.885,0.6932,0.315,0.1068,0.1178,0.222,-0.1364,0.1364,0.5,0.5454,0.3182,-0.3182,-0.2272,-0.3636,-0.2728,-0.2728,-0.091,0.0454,0.1818,0.1364,0.409,0.8182,1,0.8182,0.409,0.5,0.409,0.591,0.7272,0.8182,0.8182,0.2272,0.3182,0.2728,0.1364,0.091,0.4546,0.7728,-0.45,0.05,0.55,0.55,0.05,-0.25,-0.35,-0.25,-0.35,-0.5,-0.35,-0.25,0,0,0.25,0.5,0.85,0.95,0.75,0.65,0.55,0.7,0.8,1,0.9,0.4,0.3,0.25,0.05,0.35,0.5,0.55,-0.5764,-0.2,0.4352,0.5058,-0.2236,-0.7648,-0.647,-0.5764,-0.6236,-0.4824,-0.6,-0.553,-0.3648,-0.3412,-0.2236,-0.0588,-0.0352,0.1764,0.6,0.7648,1,1,0.6,0.6942,0.7176,0.9294,1,0.953,0.6942,0.647,0.6,0.7176,-1,-1,-0.9596,-0.9558,-0.8848,-0.808,-0.7408,-0.716,-0.6602,-0.5854,-0.3224,0.5316,0.977,0.7198,0.2668,-0.0922,-0.3244,-0.2726,-0.4626,-0.595,-0.7408,-0.8214,-0.8214,-0.8944,-0.9252,-0.9482,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9596,-0.9578,-0.921,-0.8518,-0.7988,-0.7422,-0.6856,-0.5346,-0.4088,0.3424,0.85,0.9604,0.8176,0.2362,-0.256,-0.3406,-0.4484,-0.337,-0.655,-0.8364,-0.8724,-0.9182,-0.9264,-0.938,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.9868,-0.86,-0.66,-0.4668,-0.52,-0.4868,-0.3668,-0.4934,-0.54,-0.405,-0.405,-0.34,-0.195,-0.295,-0.38,-0.34,-0.2356,-0.3556,-0.62,-0.75,-0.78,-0.78,-0.9568,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,-0.7142,0.7714,1,-0.2858,-0.9142,-0.6858,-0.2858,0.6286,0.7714,-0.4858,-0.6572,-0.8858,-0.4572,-0.7428,-1,-0.9142,-0.7428,0.0286,-0.0858,-0.7714,-0.9714,-0.8572,-0.8572,-1,-1,-1,-1,-1,-1,-1,0.157,0.153,0.1624,0.189,0.1912,0.1692,0.153,0.0688,0.0406,0.0454,0.1778,0.21,0.2356,0.2778,0.3102,0.3736,0.4524,0.5782,0.7048,0.813,-0.5734,-0.047,-0.3926,-0.0602,0.301,0.6272,0.7584,-0.9,0.2894,0.1578,-0.1422,-0.1158,-0.0948,-0.121,0.1684,0.2894,0.1894,0.3264,0.3948,0.4684,0.3948,0.2052,0.5264,1,0.7526,0.6578,0.9106,1,0.7158,0.4,0.4894,0.6736,0.7316,0.7106,0.4578,0.5422,0.4422,0.8948,0.721,0.179,0.1452,0.0448,-0.1978,-0.4512,-0.2982,-0.3246,0.0026,0.3246,0.256,-0.0132,0.4196,0.3878,0.3034,0.2032,0.2296,0.7308,0.7414,0.3456,0.8522,1,0.6622,0.525,0.3088,0.4828,0.4986,0.525,0.5092,0.335,0.5408,0.7362,0.4776,0.0818,0.3432,0.321,0.2616,-0.1206,-0.1094,-0.1132,0.191,0.5214,0.6216,0.4322,0.551,0.6104,0.6216,0.3284,0.4656,0.6624,0.8218,0.6994,0.4508,1,0.9072,0.5808,0.3878,0.41,0.4546,0.384,0.243,0.4806,0.473,0.7254,0.5362,-0.2134,-0.9012,-1,1,-1,1,-0.8,-1,0.1334,-1,-0.372,-0.1628,0,0.279,0.186,-0.372,0.3024,0.2558,0.0698,0.4418,0.9534,0.7906,0.907,0.6512,0.2094,0.2094,0.4884,1,0.1162,-0.4652,0.6512,0.8604,0.1396,-0.1162,0.186,0.3256,0.093,0.4418,0.4652,0.2558,-0.0232,-0.4884,'22'
-0.0402,0.3316,-0.2664,-0.1056,-0.0654,-0.6834,-0.4974,-0.407,-0.5376,-0.6582,-0.3316,-0.2764,-0.3166,-0.0704,0.402,0.3768,0.01,0.1708,0.01,0.206,0.6784,0.9598,0.8694,0.583,0.4674,0.4372,0.0252,0.191,0.211,0.3166,0.6282,1,-0.2434,0.2622,0.558,0.6554,0.251,-0.06,-0.3746,-0.0112,0.0112,-0.2472,-0.2134,-0.1348,-0.0038,0.2434,0.397,0.6666,0.8128,0.9926,0.8952,0.7004,0.8614,0.9476,1,0.9102,0.7978,0.5544,0.2134,0.3708,0.4232,0.3258,0.5656,0.8652,-0.5208,0.0148,0.5532,0.7662,0.5356,-0.358,-0.3786,-0.3462,-0.1776,-0.2218,-0.2012,-0.2218,-0.0088,-0.0562,0.071,0.2514,0.2988,0.8136,0.79,0.9734,0.8876,0.784,0.8136,0.9792,0.9054,1,0.5622,0.565,0.494,0.423,0.423,0.3698,-0.6226,-0.1258,0.6092,0.8046,0.4504,-0.3278,-0.5066,-0.5298,-0.3774,-0.4934,-0.4504,-0.2616,-0.1888,-0.1092,-0.1456,0.0496,0.2152,0.4304,0.861,0.9736,0.8842,0.841,0.6556,0.712,1,0.8212,0.8708,0.692,0.7052,0.4636,0.3576,0.5364,-0.562,-0.1794,0.4518,0.5,-0.1932,-0.5276,-0.6172,-0.5068,-0.569,-0.6552,-0.6,-0.6276,-0.5034,-0.3448,-0.2518,-0.3172,-0.0966,0.2276,0.438,0.9,1,0.9,0.5206,0.5,0.7862,0.8344,0.8104,0.8068,0.7482,0.5794,0.5104,0.569,-0.5978,0.0628,0.3214,0.0556,-0.5764,-0.7272,-0.6732,-0.5188,-0.9784,-0.702,-0.5224,-0.544,-0.289,-0.386,-0.5116,-0.3932,-0.1956,-0.106,0.1598,0.6804,1,0.8672,0.4362,0.5296,0.5978,0.6014,0.7846,0.921,0.8564,0.5834,0.5584,0.6696,-0.8312,-0.1476,-0.1182,-0.232,-0.346,-0.6414,-0.5064,-0.4936,-0.6034,-0.5992,-0.6708,-0.6034,-0.519,-0.5064,-0.4092,-0.4514,-0.2406,-0.2954,-0.3544,0.2996,0.8818,1,0.5738,0.5064,0.6666,0.7258,0.7004,0.827,0.616,0.4388,0.3206,0.4852,0.25,0.55,0.1,0.25,0.35,-0.15,-0.4,0.1,0.3,0,0.1,0.2,0.2,0.45,0.65,0.65,0.6,0.55,0.15,0.1,0.6,1,0.95,0.6,0.4,0.45,0.4,0.4,0.75,0.75,0.7,0.85,-0.3846,-0.077,-0.7692,-0.4616,-0.5384,-1,-0.6924,-0.6924,-0.4616,-0.6154,-0.4616,-0.6924,-0.3846,-0.5384,0.077,0.077,-0.5384,-0.2308,-0.3076,-0.5384,0.3846,0.5384,0.4616,0.5384,-0.1538,-0.077,0.1538,0.3076,-0.077,0,0.6154,1,-0.5454,-0.0228,0.5682,0.7728,0.5,-0.3864,-0.4318,-0.409,-0.091,-0.1136,-0.159,-0.1364,0,-0.0682,0.091,0.4318,0.5,0.9772,0.9772,0.841,0.7728,0.8182,0.8864,1,0.75,0.7272,0.3864,0.4318,0.3636,0.341,0.2954,0.2728,-1,-1,-1,-1,-1,-1,-1,-0.7712,-0.7334,-0.7052,-0.6392,-0.6132,-0.3962,0.132,0.9222,0.7406,0.2712,-0.1534,-0.2854,-0.408,-0.7004,-0.7688,-0.7806,-0.8514,-0.9246,-0.915,-0.9198,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.844,-0.7912,-0.7308,-0.6214,-0.634,-0.4214,0.1246,0.893,0.839,0.2628,0.2314,-0.0528,-0.244,-0.3408,-0.7006,-0.8428,-0.8742,-0.9182,-0.9258,-0.927,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8948,-0.6414,-0.6048,-0.5648,-0.6926,-0.4838,-0.5148,-0.6482,-0.5674,-0.6634,-0.3946,-0.418,-0.336,-0.258,-0.64,-0.8134,-0.7234,-0.9068,-0.9,-0.9268,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.3142,0.3142,-0.0286,-0.3142,-0.8286,-0.2,-0.1428,-0.5428,-0.7714,-0.7142,-0.9428,-0.8,-0.8572,0.1428,0.4,-0.0286,-1,-0.9714,-0.9714,-0.9142,-1,-1,-1,-1,-1,-1,-0.3144,-0.3018,-0.2736,-0.2756,-0.2086,-0.1306,-0.1078,-0.009,0.0632,0.0646,0.0346,0.0624,0.123,0.126,0.1084,0.0772,0.078,0.172,0.3708,0.5826,-0.7066,0.1294,-0.644,-0.673,-0.6114,-0.6302,-0.5736,-1,0.1876,0.0624,0,0.0624,0.0624,0.0624,-0.0624,0.5,0.1876,0.1876,0.375,0.8124,0.75,0.25,0.6876,1,1,0.8124,0.8124,1,0.625,0.5624,0.8124,0.8124,0.75,0.75,0.5,0.4376,0.75,0.8124,0.8124,0.3124,0.1794,0.077,-0.0256,-0.2564,-0.1794,-0.2308,-0.077,0.3846,0.1282,0.077,0.1538,0.2052,0.0512,0.0256,0.1538,0.9488,0.5384,0.5642,0.7436,0.6666,0.5384,0.282,0.3846,0.4358,0.6666,0.2564,0.282,0.2308,0.7948,1,0.6154,0,0.3334,0.2778,-0.0556,-0.1388,-0.1944,-0.1944,0.25,0.1944,0.25,0.0556,0.6666,0.5278,0.3334,0.3888,0.5,0.4722,0.5834,0.4444,0.6112,0.7222,1,0.8612,0.3612,0.4722,0.75,0.5,0.5556,0.4166,0.6112,0.7222,0.5556,0.3888,-0.6328,-1,-1,1,-0.8,-0.2,-1,-0.8334,-1,0.1952,0.3902,0.2196,0.4146,0.2926,0.1464,0.3414,0.3902,0.4878,0.317,0.9268,0.878,1,0.9756,0.3414,0.3902,0.4878,0.5854,0.317,-0.0488,0.4146,0.4146,0.3658,-0.0976,0.561,0.5122,0.561,0.4878,0.2196,0.3658,0.1708,-0.0732,'22'
-0.474,-0.0218,0.587,0.6652,0.5174,0.326,0.4566,0.4044,0.4304,0.7218,0.9218,1,0.5522,0.4086,0.2348,0.0434,0.0478,0.1304,0.0826,0.2304,0.4782,0.6348,0.9044,0.7434,0.7566,0.5392,0.4566,0.4086,0.474,0.5,0.9,0.9696,-0.5062,-0.0906,0.5432,0.5432,0.0124,-0.1358,-0.0576,-0.1482,-0.1316,0.0534,0.0988,0.3744,0.646,0.6502,0.5432,0.3498,0.1934,0.0494,0.07,-0.0082,0.144,0.1564,0.4362,0.7736,1,0.9548,0.6666,0.5926,0.4486,0.5762,0.6872,0.8272,-0.3668,0.0272,0.4466,0.3626,-0.4968,-0.652,-0.6352,-0.6142,-0.5346,-0.5724,-0.564,-0.2704,-0.1362,-0.1698,0.065,0.3752,0.522,0.6688,0.652,0.3502,0.107,0.0944,0.4298,0.6562,0.9372,0.9958,1,0.7442,0.5388,0.6268,0.7484,0.8742,-0.5034,-0.0638,0.245,0.161,0.0738,-0.2046,-0.5638,-0.4798,-0.3154,-0.3054,-0.3558,-0.0704,-0.047,-0.1644,0.1242,0.2282,0.6174,1,0.9766,0.896,0.8356,0.849,0.7348,0.8792,0.8692,0.7382,0.708,0.7148,0.6108,0.6678,0.8256,0.8826,-0.7748,-0.361,-0.043,0.2682,0.4238,0.2252,-0.1424,-0.1324,0.0332,-0.3212,0.0464,0.096,0.1026,0.3774,0.5398,0.6688,0.9702,0.9106,0.7052,0.7218,0.8246,0.7218,0.9768,1,0.7186,0.5034,0.5762,0.4702,0.4072,0.5398,0.5794,0.7616,-0.8886,-0.3896,-0.2168,0.2168,0.5738,0.4972,0.3896,0.2284,0.286,0.0902,0.332,0.5548,0.716,1,0.9654,0.5778,0.405,0.3282,0.309,0.4664,0.712,0.7812,0.6046,0.5356,0.3052,0.1786,0.2246,0.0978,0.1286,0.1824,0.4664,0.6468,-0.21,0.26,-0.36,-0.63,-0.08,0.15,0.23,0.03,-0.65,-0.56,-0.14,0.19,0.66,1,0.92,-0.35,-0.05,-0.22,-0.17,-0.17,-0.15,-0.26,-0.08,0.12,0.04,-0.22,-0.25,-0.57,-0.7,0,0.13,0.01,-0.394,0.2122,0.5758,0.6364,0.3334,0.394,0.2122,0.2728,0.697,0.8182,0.9394,0.8788,0.5152,0.0304,0.2728,-0.0304,-0.0304,-0.0304,-0.0304,0.3334,0.5152,0.8182,0.7576,0.5152,0.394,0.3334,0.2122,0.0304,0.2122,0.5152,0.7576,1,-0.8286,-0.0286,0.6,0.7142,0.4858,0.2572,0.5428,0.3714,0.2572,0.8286,0.7142,0.8286,0.3714,0.3142,-0.0858,-0.0858,-0.0286,0.0858,-0.1428,0.0858,0.4858,0.3714,1,0.8286,0.4858,0.4286,0.3142,0.2572,0.4286,0.4858,0.8858,0.9428,-0.8636,-0.5228,-0.2954,0.2954,0.6818,0.6364,0.2046,0.091,0.2272,-0.1364,0.25,0.3636,0.5454,0.9546,1,0.591,0.5682,0.341,0.409,0.4318,0.7046,0.8182,0.7954,0.7046,0.2954,0.2954,0.3182,0.3182,0.25,0.2728,0.5682,0.7046,-1,-0.907,-0.9356,-0.635,0.4704,1,1,1,0.0626,-0.5706,-0.5384,0.5778,0.8712,0.7818,0.406,0.2988,0.0912,0.3488,0.1592,-0.0196,-0.5456,-0.7246,-0.8604,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9458,-0.957,-0.5296,0.3742,1,1,1,-0.362,-0.8108,-0.7944,0.1298,0.7382,0.1308,0.0328,0.2566,0.5992,0.7484,0.8324,0.5542,-0.6238,-0.8906,-0.9336,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8668,-0.96,-0.5634,0.05,-0.23,-0.3968,-0.5034,-0.59,-0.72,-0.7468,-0.575,-0.4076,-0.3326,0.23,-0.1748,-0.21,-0.19,-0.2722,-0.4412,-0.7056,-0.8968,-0.9356,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5142,1,1,1,1,0.0286,1,1,1,1,1,0.3714,-0.0286,0.0572,-0.0572,-0.5714,-0.5428,-0.5714,1,1,0.5714,-0.5142,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.965,0.9594,0.9746,0.964,0.9604,0.9258,0.8286,0.5416,0.3064,0.6348,0.2,0.1976,0.1956,0.1738,0.1568,0.1152,0.0948,0.1688,0.3414,-0.0256,-0.3334,0,-0.7956,-0.5756,0.0664,0.6206,0.8404,1,-0.4246,-0.0684,0.4794,0.452,0.5616,0.5068,0.5342,0.4246,0.5342,0.726,0.6438,0.589,0.6438,0.6438,0.5616,0.6712,0.6164,0.5616,0.452,0.8356,0.9178,0.9452,1,0.8904,0.8904,0.8356,0.863,0.8082,0.6986,0.452,0.178,-0.726,-0.5152,0.293,0.3132,0.1718,0.0506,0.2526,0.3738,0.6162,0.7172,0.4546,0.4748,0.8182,1,0.6162,0.3334,0.293,0.1516,0.293,0.3738,0.4748,0.5354,0.5556,0.7374,0.8182,0.798,0.798,0.7374,0.7374,0.5354,0.5354,0.4344,0.091,-0.525,-0.075,-0.15,-0.725,-0.675,-0.55,-0.45,0.2,0.225,-0.175,-0.35,0.375,0.65,-0.15,-0.425,-0.125,-0.125,0.3,0.325,0.225,0.375,0.525,0.7,0.675,0.75,0.95,0.975,1,0.875,0.85,0.725,0.375,0.9796,1,-1,-1,-1,-1,-1,-0.8,-1,0.5932,0.4916,0.6272,0.5594,0.5594,0.7288,1,1,0.9322,1,0.6272,0.4916,0.3898,0.356,0.695,0.9322,0.5254,0.6272,0.695,0.4916,0.4576,0.6272,0.2204,0.3898,-0.0508,0.7288,0.0848,0.5932,0.4238,0.4916,-0.1526,-0.2882,'23'
-0.4756,-0.0416,0.2478,0.4142,0.7686,0.6528,0.472,0.3634,0.3562,0.4286,0.2802,0.3526,0.7614,0.812,0.9422,0.9928,1,0.6746,0.595,0.7504,0.877,0.906,0.9892,0.7902,0.935,0.6708,0.5552,0.5334,0.472,0.4864,0.595,0.7288,-0.4744,-0.0816,0.287,0.3626,0.6676,0.5226,0.6646,0.3868,0.4138,0.7312,0.707,0.8096,1,0.9668,0.5046,0.4954,0.577,0.5498,0.728,0.9698,0.9004,0.71,0.4442,0.4048,0.3414,0.2146,0.2084,0.3504,0.3262,0.3022,0.5408,0.6556,-0.1218,0.384,0.7242,0.7656,0.7012,0.623,0.6782,0.0436,0.8252,1,0.9816,0.908,0.7242,0.4988,0.1586,0.3104,0.2552,0.1954,0.3426,0.4482,0.7426,0.7012,0.2598,0.2506,0.2644,-0.0344,0.0712,0.1264,0.0114,0.2368,0.5586,0.6184,-0.4306,0.0758,0.7634,0.8706,0.6044,0.5378,0.6598,0.3938,0.4012,0.8522,0.756,1,0.8226,0.8522,0.5564,0.4418,0.0536,0.3234,0.3604,0.1978,0.4566,0.6636,0.7264,0.793,0.8336,0.7006,0.2902,0.2866,0.3382,0.4048,0.512,0.7116,-0.5552,-0.1172,0.4,0.4448,-0.4448,-0.4932,-0.3794,-0.4932,-0.4518,-0.3518,-0.3104,-0.1828,0.2758,0.3034,0.3552,0.2242,0.2242,-0.0828,-0.1966,-0.0896,-0.0138,0.138,0.3482,0.8,1,0.7414,0.2104,0.2552,0.1448,0.031,0.2758,0.2966,-0.5574,-0.1286,0.338,0.3894,0.2042,-0.163,-0.3584,-0.5884,-0.3174,-0.3654,-0.379,-0.1252,0.0222,0.0188,0.0738,0.4306,0.6672,0.873,1,0.9622,0.8284,0.7324,0.8284,0.873,0.849,0.6776,0.6296,0.578,0.4648,0.506,0.6054,0.6466,-0.9816,-0.4322,-0.0036,0.5678,0.6594,0.271,-0.2052,-0.1576,-0.0806,-0.2528,-0.1722,0.0074,0.1758,0.3004,0.6666,0.9744,1,0.8682,0.8424,0.7838,0.8132,0.9414,0.9524,0.8608,0.8828,0.6594,0.3554,0.5458,0.5532,0.4578,0.7252,0.956,-0.4814,0.3334,0.4074,0.4074,0.5556,0.4074,0.3334,0.2592,0.1112,0.1112,0.037,0.037,0.2592,0.5556,0.8518,0.8518,0.7778,0.7778,0.6296,0.7038,0.6296,0.4814,0.7038,0.7038,1,0.8518,0.4814,0.3334,0.4074,0.1852,0.4074,0.7038,-0.5112,-0.0666,0.3778,0.4222,0.6444,0.5556,0.1556,0.1112,0.2,0.2444,0.1112,0.2,0.4666,0.3778,0.5556,0.9556,0.9112,0.3778,0.5112,0.5556,0.2444,0.8222,1,0.6,0.8222,0.4666,0.3778,0.1556,0.2,0.2,0.2444,0.3334,-0.432,-0.037,0.432,0.4814,0.6296,0.3828,0.5802,0.284,0.5308,0.8518,0.8272,0.8766,0.7284,0.679,0.0124,0.1358,0.2346,0.358,0.753,1,0.8024,0.2346,0.2346,0.1852,0.0864,0.0618,0.037,0.1358,0.0618,0.0124,0.4814,0.5062,-1,-1,-1,-1,-1,-1,-0.9094,-0.9296,-0.9026,-0.9228,-0.7416,0.6242,0.7316,0.7954,0.0034,0.1644,0.4262,0.396,-0.0234,0.2484,0.2316,-0.198,-0.4798,-0.6276,-0.755,-0.812,-0.8758,-0.8994,-0.9296,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9704,-0.9692,-0.9648,-0.9686,-0.5592,0.056,0.9082,0.5314,-0.6264,-0.5836,-0.4226,-0.4988,-0.6402,-0.3598,-0.19,-0.446,-0.5328,-0.749,-0.9238,-0.9194,-0.9328,-0.9516,-0.9648,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8534,-0.9068,-0.8468,-0.92,0.2,-0.3734,-0.3512,-0.44,-0.6156,-0.6624,-0.709,-0.676,-0.2,-0.338,-0.33,-0.482,-0.5568,-0.57,-0.7134,-0.6268,-0.5734,-0.81,-0.9434,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6,-1,-0.9142,1,1,1,-0.2286,1,1,-0.1714,-0.3428,0.0572,0.5714,0.4286,-0.6572,-0.1714,1,1,-0.2572,-0.8,-0.8,-0.7428,-0.8858,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.8252,-0.2466,-0.2784,-0.3496,-0.3962,-0.5108,-0.5718,-0.6952,-0.7372,-0.6294,-0.256,-0.6266,0.1058,-0.5232,-0.7182,0.1006,0.178,0.9938,1,-0.9428,-0.3428,-0.2,-0.0286,-0.1142,0.1428,0.0572,-0.0286,0.1428,0.2286,0.2572,0.3428,0.5142,0.4286,0.4286,0.4858,0.6286,0.5428,0.8,0.9142,0.9714,0.8286,1,0.8572,0.8,0.7714,0.6858,0.4858,0.3142,0.2572,0.1428,-0.5428,-0.6,-0.1834,0.1666,0.2,0.1666,0.1334,0.2,0.1166,0.35,0.2834,0.1666,0.2,0.45,0.35,0.3334,0.45,0.45,0.3666,0.8166,0.7666,0.8,0.7,1,0.9166,0.6666,0.7,0.8334,0.8834,0.6166,0.6834,0.4,0.2334,-0.3636,0.091,0.091,-0.1636,0.0546,-0.1818,-0.2182,0.5818,0.691,-0.0182,-0.291,0.1272,0.491,0.0182,0.1636,0.309,0.3454,0.6546,0.8182,0.4728,0.8546,0.8546,1,0.7636,0.5454,0.6,0.6728,0.8,0.6,0.5818,0.8182,0.6364,0,-1,-1,1,-1,-1,0,-0.7666,-1,-0.3958,-0.375,-0.1666,0.4376,0.1876,0.2084,0.875,1,0.4166,0.1458,0.1042,0.25,0.5416,0.4584,0.2916,0.25,0.8334,0.6042,-0.0624,0,0.125,0.1666,0.2084,0.0834,-0.2292,0.0834,0.0834,-0.1666,0.0624,0.2292,0.0416,-0.1876,'23'
-0.5984,-0.3172,0.0522,0.1808,0.5342,0.4216,0.4698,0.0682,0.0282,0.1326,0.0602,0.0764,0.261,0.261,0.4378,0.767,0.9036,0.992,0.7188,0.6626,0.7912,0.727,0.9036,1,0.9116,0.5984,0.6948,0.6788,0.4698,0.6626,0.7752,0.7028,-0.4514,-0.114,0.1814,0.2742,0.5528,0.6456,0.7216,0.2574,0.114,0.2912,0.2068,0.2152,0.4852,0.4178,0.46,0.8988,0.806,1,0.789,0.789,0.8482,0.8312,0.8902,0.9832,0.865,0.7046,0.713,0.7216,0.6372,0.7552,0.806,0.8228,-0.5154,-0.2384,0.0846,0.1924,0.3846,0.7154,0.7154,0.2846,0.0846,0.0308,0.2538,0.323,0.3538,0.4076,0.6616,0.7462,0.9538,0.7846,0.7,0.723,0.723,0.7846,1,0.9076,0.6538,0.7154,0.623,0.5076,0.5846,0.5616,0.6538,0.777,-0.4626,-0.2538,0.082,0.2164,0.4478,0.8732,0.8134,0.306,0.112,0.291,0.3582,0.3508,0.4328,0.4552,0.7238,0.9702,1,0.6866,0.6194,0.6268,0.7388,0.8284,0.8582,0.806,0.6716,0.612,0.5374,0.4402,0.3956,0.4926,0.6044,0.6194,-0.6478,-0.3754,-0.0898,0.1162,0.5084,0.887,0.774,0.2292,0.1162,0.1828,0.2094,0.2426,0.3622,0.5348,0.6744,1,0.9336,0.5348,0.5282,0.5682,0.588,0.7542,0.7608,0.7608,0.5216,0.382,0.4486,0.2558,0.2426,0.3024,0.475,0.5748,-0.7684,-0.4736,-0.214,-0.0596,0.572,0.7824,0.8036,0.4808,0.3964,0.179,0.235,0.3404,0.4386,0.5088,1,0.993,0.8456,0.5438,0.5018,0.6492,0.6772,0.6982,0.7824,0.614,0.5228,0.2842,0.3894,0.3684,0.228,0.3264,0.4736,0.607,-0.9754,-0.795,-0.4262,-0.1804,0.5656,0.8606,0.836,-0.0574,-0.0984,-0.1066,-0.1148,0.254,0.2378,0.623,0.9836,1,0.5738,0.4918,0.5082,0.5902,0.746,0.7704,0.6148,0.582,0.205,0.0328,0.0902,0.1148,0.1394,0.1312,0.2296,0.541,-0.6734,-0.3878,-0.102,0.2244,0.4694,0.2654,0.347,0.1428,0.0204,-0.0204,-0.0204,0.0612,0.1428,0.2244,0.4694,0.551,0.9184,0.9592,0.551,0.6734,0.7552,0.6326,0.8776,1,0.7552,0.551,0.6734,0.5918,0.5102,0.6734,0.6734,0.7552,-0.6522,-0.2174,0.0434,0.1304,0.4348,0.174,0.4348,0.087,-0.0434,0.087,-0.087,0.0434,0.2174,0.1304,0.2608,0.7826,0.7392,1,0.826,0.6956,0.7826,0.826,0.913,0.9566,0.9566,0.6956,0.6086,0.6956,0.4782,0.5652,0.7392,0.6522,-0.6808,-0.4894,-0.1914,0.0212,0.6596,0.8086,0.7872,0.617,0.5744,0.2554,0.2978,0.468,0.532,0.4468,1,0.9148,0.8298,0.532,0.5744,0.6808,0.7234,0.532,0.9362,0.8936,0.5744,0.234,0.468,0.532,0.2766,0.2766,0.617,0.7234,-1,-1,-1,-1,-1,-1,-1,-1,-0.9526,-0.9408,-0.4432,0.1304,-0.0236,0.0522,0.2156,0.41,0.737,0.9834,0.8578,0.1706,-0.2204,-0.4644,-0.7938,-0.929,-0.9218,-0.9336,-0.917,-0.9432,-0.8554,-0.9052,-0.936,-0.9146,-0.9384,-1,-1,-1,-1,-1,-1,-1,-1,-0.979,-0.9748,-0.368,0.527,0.2498,0.3914,0.7486,0.8352,0.8328,0.9296,0.9076,0.424,-0.0526,-0.3078,-0.8638,-0.9544,-0.9582,-0.9714,-0.967,-0.9718,-0.7642,-0.8308,-0.7778,-0.7826,-0.7938,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.94,-0.6868,-0.3134,-0.2134,-0.4,-0.4068,-0.4334,-0.5068,-0.515,-0.565,-0.53,-0.495,-0.525,-0.61,-0.6068,-0.7068,-0.8068,-0.8334,-0.92,-0.3534,0.4332,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,0.5714,-0.7428,-0.7428,-0.9428,-0.8858,-0.8858,-0.5714,0.7428,1,1,1,0.1428,-0.8572,-0.9714,-0.9714,1,1,1,-0.1714,-0.9428,-0.9142,1,1,1,1,1,1,1,1,1,1,0.3196,0.326,0.326,0.2404,0.2276,0.1854,0.1656,0.1806,0.108,-0.2444,-0.56,-0.6706,-0.1546,0.4214,0.388,0.2358,0.664,1,-0.1064,0.1064,0.2766,0.4468,0.4894,0.6596,0.7022,0.7446,0.8724,0.9148,0.9574,0.9574,1,0.9148,0.8298,0.617,0.7022,0.7872,0.7446,0.7446,0.6596,0.5744,0.4468,0.1064,0.1064,0.0638,-0.1914,0.0212,-0.149,-0.0638,-0.4042,-0.4894,-0.1652,-0.026,0.513,0.426,0.3218,0.287,0.426,0.5304,0.7914,0.8086,0.7566,1,0.9478,0.6696,0.5478,0.6,0.826,0.8608,0.7392,0.7044,0.7218,0.6348,0.4608,0.3044,-0.0782,-0.1652,-0.2,-0.2696,-0.374,-0.3044,-0.4782,-0.6522,-0.1428,0.2222,0.6984,0.635,0.238,0.1904,0.3334,0.6666,0.873,0.7936,0.7778,1,0.9524,0.6984,0.7142,0.7936,0.9048,0.8572,0.8572,0.8412,0.6508,0.6826,0.8096,0.365,0.1746,-0.0158,-0.0634,-0.0158,-0.3334,-0.3334,-0.3174,-0.5556,0.2922,-1,-1,1,-1,-1,-1,-0.8334,1,-0.7672,-0.7808,-0.411,-0.5068,-0.3972,-0.0958,0.1096,0.1096,0.0684,0.0136,0.1096,0.0136,0.0958,0.2466,-0.041,0.1644,0.1506,0.2602,0.3288,0.3014,0.3424,0.4794,0.726,1,0.589,0.6986,0.9042,0.822,0.822,0.7398,0.9316,0.7534,'24'
-0.5268,-0.1168,0.1608,0.3312,0.7288,0.653,0.5646,0.2934,0.1988,0.1862,0.1672,0.2492,0.4322,0.4448,0.7728,0.899,1,0.937,0.716,0.7414,0.6846,0.7918,0.817,0.8928,0.7728,0.6152,0.6088,0.59,0.6278,0.59,0.7666,0.817,-0.529,-0.2022,0.108,0.1524,0.507,0.457,0.5844,0.2354,0.1856,0.2742,0.1524,0.2078,0.4736,0.4958,0.6454,0.9722,1,0.6842,0.5458,0.5844,0.8504,0.8006,0.7728,0.9002,0.9668,0.446,0.4626,0.6012,0.3462,0.435,0.6178,0.5678,-0.5306,-0.25,0.0714,0.199,0.4592,0.801,0.8316,0.2654,0.3214,0.3674,0.3112,0.403,0.5102,0.6938,0.7704,0.9694,0.8776,0.7858,0.653,0.7654,0.8112,0.8878,0.8572,1,0.9082,0.7398,0.5052,0.6072,0.5562,0.4694,0.6888,0.75,-0.5426,-0.2896,0.051,0.2166,0.5086,0.9124,0.8248,0.275,0.3334,0.348,0.382,0.348,0.5912,0.6934,0.8296,0.9806,1,0.742,0.6108,0.674,0.8102,0.82,0.82,0.8394,0.8102,0.5232,0.4696,0.528,0.5036,0.4696,0.5912,0.6934,-0.746,-0.4648,-0.2702,-0.054,0.519,0.827,0.7892,0.3784,0.2648,0.2108,0.2108,0.281,0.3244,0.5514,0.9676,1,0.7406,0.5622,0.6162,0.6594,0.7622,0.9298,0.7892,0.8378,0.573,0.454,0.4594,0.4864,0.281,0.4648,0.6216,0.7352,-0.988,-0.6072,-0.4642,-0.238,0.4166,0.762,0.6964,0.0774,0.0654,-0.1786,0.0654,0.0536,0.25,0.4404,0.8334,1,0.863,0.5358,0.619,0.6726,0.8334,0.9048,0.7798,0.6726,0.4048,0.1904,0.2916,0.3036,0.2858,0.3988,0.6428,0.7678,-0.8454,-0.6618,-0.6714,-0.169,0.7392,0.7874,0.5266,0.0434,-0.5362,-0.43,-0.1208,-0.2368,-0.0048,0.285,0.6136,1,0.9614,0.4396,0.2464,0.3624,0.5362,0.7102,0.5942,0.43,-0.0434,-0.169,-0.14,-0.2078,-0.2754,-0.0434,0.227,0.256,-0.4782,-0.1304,0.087,0.4782,0.6522,0.6086,0.6086,0.3914,0.2174,0.174,0.2174,0.3044,0.4348,0.4782,0.826,0.913,1,1,0.8696,0.8696,0.826,0.913,0.9566,1,0.9566,0.7392,0.6522,0.6956,0.7392,0.6956,0.8696,0.9566,-0.6666,-0.3334,0.0476,0.238,0.7142,0.619,0.4286,0.238,0.0476,0,-0.0476,0,0.0952,0.381,0.5714,0.762,1,0.8096,0.238,0.4286,0.2858,0.3334,0.7142,0.3334,0.381,0.5238,0.5238,0.4286,0.5238,0.619,0.7142,0.8096,-0.9574,-0.5744,-0.2978,-0.1702,0.383,0.851,0.7872,-0.0426,0.0852,0.149,0.149,0.3404,0.468,0.4894,0.766,1,0.8724,0.6382,0.617,0.6596,0.7234,0.9362,0.9148,0.7022,0.4256,0.4894,0.2978,0.3618,0.4256,0.5106,0.6382,0.8724,-1,-1,-1,-1,-1,-1,-1,-1,-0.9058,-0.9314,-0.7428,0.5886,0.44,0.2828,0.52,0.8658,0.9772,0.6772,-0.0342,-0.3286,-0.5286,-0.8514,-0.9142,-0.9258,-0.9372,-0.9342,-0.9486,-0.9514,-0.9086,-0.8514,-0.9,-0.9372,-0.9286,-1,-1,-1,-1,-1,-1,-1,-1,-0.974,-0.973,-0.6388,0.1256,0.184,0.39,0.6608,0.9144,0.9936,0.6352,0.1914,-0.2848,-0.4712,-0.9312,-0.9572,-0.967,-0.973,-0.972,-0.9778,-0.9784,-0.8078,-0.824,-0.8354,-0.8048,-0.7872,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.9068,-0.58,-0.45,-0.436,-0.328,-0.328,-0.444,-0.496,-0.408,-0.508,-0.288,-0.428,-0.62,-0.75,-0.8334,-0.8734,-0.8334,-0.8534,-0.9468,-0.4534,0.1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,0.4,-0.7714,-0.8858,-1,-0.8858,-0.5428,0.0286,1,1,1,-0.5714,-0.9142,-0.9714,-0.8858,-1,1,1,1,0.2572,-0.8,-0.9142,1,1,1,1,1,1,1,1,1,1,-0.1046,-0.114,-0.114,-0.0866,-0.0906,-0.0888,-0.0932,-0.085,-0.1276,-0.2846,-0.5334,-0.4824,-0.5478,-0.1546,0.1704,0.1506,0.3036,1,-0.6326,-0.2654,-0.0612,-0.1428,-0.102,0.2244,0.4694,0.8368,0.9184,0.8368,0.5918,0.5918,0.6734,0.8776,0.9184,1,1,0.7142,0.3878,0.3878,0.6734,0.796,0.796,0.4694,-0.102,-0.1836,-0.2244,-0.2244,0.102,0.0612,0.0204,-0.4694,-0.6436,-0.505,-0.1288,-0.3664,-0.2476,-0.1288,0.109,0.7228,1,0.6436,0.2674,0.4456,0.307,0.6436,0.6436,0.802,0.8812,0.703,0.0496,-0.0496,0.5644,0.7822,0.802,0.4456,-0.1882,-0.3862,-0.5446,-0.3862,0.1882,0.1882,0.2674,0.0298,-0.0112,0.2584,0.528,0.618,0.1686,0.3484,0.5956,0.8426,1,0.8876,0.8426,0.7752,0.7304,0.5956,0.4606,0.7078,0.4606,0.3932,0.2584,0.2808,0.2134,0.4832,0.3932,0.1686,-0.3258,-0.4158,-0.3034,-0.3484,-0.2134,-0.0562,0.0786,-0.0112,0.4432,-1,-1,1,-1,-1,-1,-0.8334,1,-0.7278,-0.5102,-0.4014,-0.2654,-0.2518,0.0204,-0.102,-0.0612,-0.034,0.2108,0.2244,0.238,-0.0884,0.1836,-0.0612,0.1428,0.2926,0.347,0.2518,0.483,0.4558,0.2926,0.6598,0.8912,1,0.864,0.9456,0.932,0.6734,0.9592,0.9184,0.5102,'24'
-0.3898,-0.0136,0.6406,0.6474,0.8848,0.895,0.9322,1,0.8338,0.1288,-0.078,-0.1628,-0.2136,-0.3458,-0.356,-0.4102,-0.295,-0.356,-0.4272,-0.0712,0.3186,0.5152,0.4068,0.139,-0.139,-0.1898,-0.0746,-0.0984,0.183,0.417,0.817,0.8474,-0.504,-0.205,0.0452,0.1194,0.3974,0.7358,0.803,1,0.9166,0.986,0.6478,0.46,0.2816,0.0984,0.1008,0.1054,0.08,0.1448,0.328,0.5574,0.6872,0.5758,0.5596,0.365,0.1912,0.205,0.2886,0.1912,0.2654,0.5366,0.6964,0.8772,-0.5404,-0.2708,-0.0034,0.0012,0.1712,0.7082,0.7238,0.9712,0.905,0.9514,1,0.9006,0.5646,0.2066,0.2266,0.337,0.2376,0.2862,0.4342,0.6796,0.6774,0.7966,0.631,0.505,0.337,0.3194,0.379,0.3702,0.3988,0.4962,0.7194,0.6774,-0.5676,-0.3392,-0.0598,-0.0222,0.1862,0.6342,0.7894,0.9002,0.847,0.9024,1,0.867,0.6784,0.439,0.3482,0.2994,0.2838,0.3414,0.3702,0.6208,0.8204,0.776,0.572,0.4944,0.408,0.2772,0.3392,0.337,0.3238,0.4634,0.5876,0.6874,-0.6912,-0.4862,-0.242,-0.0806,0.3202,0.5,0.7558,0.9654,0.9632,0.8434,0.8778,1,0.9194,0.6382,0.4608,0.5,0.3894,0.4448,0.5254,0.5876,0.7788,0.788,0.6268,0.3664,0.2788,0.2142,0.1912,0.205,0.1844,0.1728,0.387,0.4102,-0.787,-0.45,-0.2344,0.0012,0.3968,0.9366,0.9366,0.635,0.668,0.5488,0.4676,0.6578,0.8682,0.8784,0.9594,1,0.8404,0.6122,0.6882,0.7516,0.8606,0.9088,0.739,0.569,0.4348,0.3308,0.2548,0.3182,0.2878,0.3384,0.5134,0.564,-0.6754,-0.2226,-0.0226,0.2716,0.6264,0.532,0.468,0.0716,-0.2,-0.117,-0.1434,0.166,0.2754,0.1812,0.2754,0.4792,0.8452,0.8642,1,0.8642,0.8642,0.634,0.9284,0.7094,0.6378,0.4114,0.5396,0.3886,0.1736,0.1132,0.2302,0.2416,-0.2258,0.2904,0.742,0.8064,1,1,1,0.742,0.4194,0.0968,-0.1612,0.2258,0.2904,0.0968,0.0968,-0.2258,-0.1612,-0.2904,-0.5484,-0.613,0.2258,0.3548,0.0322,0.0968,0.2258,0.0322,-0.1612,-0.1612,0.3548,0.6774,0.742,0.3548,0.0244,0.4634,0.8536,0.7074,0.9024,1,0.9024,0.8536,0.7074,0.2196,0.0244,0.0244,-0.122,-0.0732,-0.3658,-0.122,-0.1708,-0.4146,-0.561,-0.122,0.122,0.4634,0.5122,0.2196,0.0732,0.0244,0.1708,0.0732,0.2682,0.5122,0.7074,0.8048,-0.562,-0.3142,-0.0096,0.0096,0.1238,0.7334,0.8096,1,0.9048,0.981,1,0.8858,0.5428,0.238,0.2,0.3334,0.238,0.2572,0.4286,0.7334,0.7524,0.7714,0.6,0.5428,0.3334,0.3334,0.4476,0.3524,0.4096,0.581,0.7142,0.7334,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9508,-0.7588,-0.0428,0.808,0.6602,0.6058,0.5356,0.3982,0.035,0.0558,0.0168,-0.0998,-0.5408,-0.7536,-0.8548,-0.904,-0.9404,-0.9274,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9834,-0.9554,-0.7612,-0.1014,0.6496,0.896,0.9736,0.6496,0.4574,0.2618,-0.1238,-0.4906,-0.8648,-0.9378,-0.9496,-0.9538,-0.96,-0.9672,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.86,-0.7692,-0.682,-0.5182,-0.5238,-0.4782,-0.5528,-0.4964,-0.5556,-0.6236,-0.6036,-0.5804,-0.5536,-0.357,-0.3904,-0.3304,-0.2104,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,0.9714,-0.0286,-0.6286,-0.7714,-0.8572,-1,-0.7714,-0.5428,0.6286,0.2858,-0.9428,-0.9428,-0.9142,-0.9714,-0.8572,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.2162,0.2168,0.2686,0.283,0.298,0.3156,0.27,0.1894,0.0582,-0.3404,-0.52,0.3176,-0.954,-0.8834,-0.818,-0.7782,-0.6154,-0.5334,0.3228,0.5906,0.685,0.9056,0.811,0.8898,0.9056,0.8582,0.9212,0.9212,0.6062,0.9212,1,0.4488,0.622,0.7952,0.5906,0.6692,0.748,0.7796,0.7952,0.6378,0.37,0.5906,0.6062,0.37,0.5276,0.5748,0.0866,0.37,0.0708,-0.2126,0.1314,-0.0708,0.1112,0.9798,0.7172,0.697,0.899,0.5758,0.8384,0.7778,0.0304,0.8788,1,1,0.3536,0.495,0.1112,0.5556,0.7172,0.4142,0.2728,0.3334,0.798,0.7172,0.5556,0.2324,0.2728,0.1314,0.2122,0.3536,-0.091,-0.4546,0.5276,0.748,0.3228,1,0.6378,0.3228,0.496,0.4646,0.1496,0.2756,0.5906,0.3228,0.4646,0.2284,0.1496,0.307,0.433,0.4646,0.4016,0.2756,0.1968,0.1024,0.2598,0.4016,0.2756,0.0708,0.0552,-0.2126,0.0078,0.0078,-0.2284,-0.6692,-0.9986,1,-1,-1,-1,-1,-0.8,-1,-1,-0.4608,-0.2696,-0.287,0.2522,0.1478,-0.0086,0.0608,0.0608,0.8086,0.7914,0.8086,0.7914,1,0.5826,0.1826,0.1652,0.426,0.6174,0.3566,0.0782,0.113,0.9826,0.7218,0.3044,-0.0434,0.0434,-0.2696,0.2174,-0.0086,-0.113,-0.2348,-0.4086,'25'
-0.3314,0.044,0.5542,0.6042,0.8974,0.9178,1,0.9736,0.8388,0.4046,-0.0498,-0.1348,-0.2082,-0.4018,-0.3958,-0.1848,-0.258,-0.1496,0.1906,0.2052,0.308,0.0088,-0.1144,-0.2874,-0.3548,-0.2844,-0.3724,-0.2874,-0.2024,0.0264,0.393,0.4222,-0.4218,-0.1306,0.0514,0.1478,0.439,0.7088,0.7774,0.9614,0.878,1,0.7152,0.484,0.3748,0.1948,0.1434,0.1928,0.2784,0.3726,0.6168,0.5632,0.2592,-0.0022,0.0172,-0.0536,-0.1006,-0.03,-0.1156,-0.105,0.0214,0.1242,0.1134,0.0642,-0.5186,-0.2492,0.0222,0.035,0.1664,0.7582,0.788,0.8452,0.9342,1,0.8494,0.7646,0.5844,0.2682,0.1474,0.2768,0.2216,0.3764,0.5864,0.5694,0.4698,0.2046,0.0774,0.0054,0.0286,-0.0372,-0.0752,-0.018,-0.069,-0.016,-0.1346,-0.1028,-0.5086,-0.2434,0.0766,0.04,0.2662,0.8012,0.8422,0.9818,0.9062,0.872,1,0.904,0.8194,0.5428,0.3486,0.3006,0.3302,0.3692,0.5018,0.6594,0.6662,0.5566,0.328,0.1132,0.1268,0.1108,-0.0308,-0.0126,0.0468,-0.0354,-0.056,0.1268,-0.6632,-0.3912,-0.1398,-0.0104,0.3472,0.6296,0.816,0.8394,0.873,0.8108,0.8108,0.943,1,0.9222,0.5932,0.5336,0.4326,0.4404,0.5804,0.627,0.816,0.855,0.6424,0.3576,0.342,0.259,0.057,0.1502,0.158,0.101,0.2436,0.3964,-0.8292,-0.3712,-0.2056,0.0194,0.3506,0.9094,0.8526,0.6094,0.6946,0.4386,0.4256,0.6662,0.7154,0.8654,0.9354,0.9094,0.7568,0.661,0.6584,0.7646,0.9042,1,0.9456,0.7024,0.5756,0.5006,0.2574,0.3324,0.3738,0.348,0.4024,0.586,-0.5046,-0.0972,-0.0926,0.5232,0.6574,0.2454,-0.0324,-0.1064,-0.1112,-0.2038,-0.1158,0.1528,0.1898,0.037,0.3612,0.4398,0.7176,0.9862,0.9538,0.8936,0.9212,1,0.7916,0.963,0.9352,0.8842,0.2546,0.324,0.1806,0.0232,0.213,0.2778,-0.2432,0.1352,0.8918,1,0.8378,0.7838,0.8918,0.6216,0.4594,-0.027,-0.027,-0.081,-0.2972,-0.7298,-0.6756,-0.2972,-0.3514,-0.3514,-0.2972,0.1352,0.3514,0.1892,0.081,-0.2972,-0.027,-0.1892,-0.2432,-0.081,-0.027,0.3514,0.4594,0.5676,-0.2196,0.122,0.7074,0.756,0.7074,0.9024,1,0.8048,0.6098,0.317,-0.122,-0.122,-0.4146,-0.2196,-0.3658,-0.0732,-0.2682,-0.3658,0.0244,0.317,0.4146,0.2682,-0.1708,-0.0732,-0.3658,-0.2196,-0.122,-0.2196,-0.2682,0.2196,0.2682,0.122,-0.4108,-0.1428,0.0536,0.0892,0.3572,0.6786,0.7142,0.8928,0.875,1,0.75,0.6608,0.4642,0.25,0.1786,0.2678,0.2858,0.3572,0.6072,0.5536,0.2678,0,0,0.0358,0.0358,0.0536,-0.0714,-0.125,-0.0358,0.1072,0.0358,-0.1072,-1,-1,-1,-1,-1,-1,-1,-1,-0.9206,-0.959,-0.7534,0.2164,0.885,0.652,0.578,0.6028,0.422,0.0986,-0.074,-0.1754,-0.411,-0.663,-0.8,-0.8876,-0.8904,-0.8986,-0.8548,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9772,-0.9798,-0.9384,-0.6148,0.1792,0.7534,0.8718,0.9772,0.6376,0.3164,0.1554,-0.1188,-0.5724,-0.908,-0.9464,-0.9598,-0.963,-0.9674,-0.962,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.9468,-0.8668,-0.8238,-0.7292,-0.562,-0.56,-0.5834,-0.605,-0.56,-0.4434,-0.5434,-0.4434,-0.6434,-0.62,-0.5268,-0.6,-0.87,-0.67,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,-0.9428,1,1,0.8572,-0.6572,-0.8572,-0.8858,-0.9714,-0.7428,-0.8572,-0.5714,1,1,-0.9428,-1,-1,-0.9142,-0.1428,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.184,-0.2512,-0.316,-0.3522,-0.439,-0.5276,-0.6924,-0.8032,-0.9556,-0.8014,-0.5334,0.3882,-0.958,-0.7722,-0.7244,-0.6148,-0.4098,-0.4584,0.0394,0.4174,0.0078,0.4016,0.5276,0.622,0.5748,0.685,1,0.7008,0.5906,0.6692,0.9528,0.6536,0.3386,0.433,0.37,0.2914,0.244,0.0552,0.244,0.2756,0.3544,0.3544,0.1182,0.2914,-0.0078,0.0552,-0.1812,0.0236,-0.307,-0.433,0.1764,0.0736,0.353,0.8236,0.7058,0.8382,0.9706,0.6618,0.9264,0.7648,0.8236,0.8676,0.9118,0.6324,0.2794,0.5882,0.353,0.8088,0.647,0.7942,0.5148,0.5294,0.5736,0.3382,0.603,0.4118,0.75,0.2648,0.4706,0.3088,-0.1176,-0.7352,0.5602,0.8724,0.6596,0.6596,0.688,0.39,0.8298,0.4752,0.7164,0.6028,0.8014,1,0.844,0.4326,0.5036,0.3758,0.5178,0.6028,0.546,0.4752,0.5886,0.5744,0.3476,0.5886,0.7164,0.5602,0.234,0.1774,0.1206,0.3758,-0.1632,-0.6312,-0.9866,1,-1,-1,-1,-1,-1,-1,-1,0.181,0.219,0.219,0.238,-0.0666,0.1238,0.6762,0.3714,0.5428,0.6952,0.7714,0.8286,0.8286,0.8096,0.3524,0.4858,0.8286,0.8666,0.3524,0.2952,0.3142,0.8476,1,0.5428,0.3904,0.0286,-0.0096,0.0286,0.238,0.2762,0.162,-0.1238,'25'
-0.2698,0.2094,0.586,0.679,0.2186,-0.4186,-0.4466,-0.1534,-0.0744,-0.228,-0.2604,-0.228,-0.1628,0.214,0.5348,0.7768,0.9396,0.8512,0.5348,0.4976,0.5348,0.628,0.8,1,0.9814,0.7162,0.4976,0.4232,0.293,0.2418,0.3116,0.386,-0.5092,-0.1194,0.3344,0.469,0.1732,-0.4218,-0.4588,-0.4622,-0.2572,-0.3848,-0.2606,-0.1092,-0.0858,-0.116,-0.042,0.1966,0.5328,0.6638,0.6268,0.6638,0.5058,0.4454,0.5832,0.8722,1,0.731,0.4824,0.3714,0.3176,0.368,0.3648,0.489,-0.468,-0.0284,0.3688,0.4964,0.1064,-0.3404,-0.6348,-0.454,-0.273,-0.3156,-0.273,-0.0816,-0.1064,-0.1774,-0.078,0.039,0.2164,0.461,0.8758,0.8724,0.9326,0.7554,0.6844,0.9716,0.961,1,0.8688,0.7304,0.539,0.5496,0.6524,0.6348,-0.4372,-0.0494,0.3004,0.3726,-0.2472,-0.5856,-0.7832,-0.5438,-0.5552,-0.5134,-0.5704,-0.5362,-0.2244,-0.2434,-0.327,-0.152,-0.0912,0.2016,0.5704,0.886,1,0.9506,0.6236,0.768,0.8442,0.9848,0.9848,0.8708,0.6616,0.5476,0.5932,0.6502,-0.433,-0.0946,0.2924,0.2572,-0.3098,-0.556,-0.8154,-0.7626,-0.855,-0.8858,-0.723,-0.5692,-0.4154,-0.4374,-0.433,-0.3978,-0.3406,-0.1384,0.2616,0.701,0.899,0.899,0.688,0.556,0.5428,0.7934,1,0.9076,0.4242,0.5252,0.4462,0.4242,-0.5422,-0.1244,0.1778,-0.0622,-0.5022,-0.7066,-0.6222,-0.56,-0.8488,-0.76,-0.52,-0.56,-0.4312,-0.4088,-0.6622,-0.84,-0.6622,-0.3422,0.0578,0.5822,0.8,0.7422,0.4578,0.5022,0.4888,0.5822,1,0.9288,0.4178,0.4222,0.5112,0.4978,-0.81,0.0682,0.2404,-0.2226,-0.5786,-0.6558,-0.4718,-0.4066,-0.6202,-0.7626,-0.6676,-0.6142,-0.4718,-0.5074,-0.7686,-0.7626,-0.6796,-0.448,-0.1276,0.371,0.8338,1,0.5548,0.3294,0.3412,0.6262,0.7922,0.6914,0.2878,0.1692,0.2048,0.276,-0.0232,0.3024,0.4884,0.5348,0.2558,0.0232,-0.0698,-0.0232,-0.1162,0.0698,-0.0232,-0.3488,-0.2094,0.4418,0.4884,0.6744,0.5348,0.3024,0.628,0.4418,0.5348,0.721,0.6744,0.9534,1,0.7674,0.628,0.4418,0.4418,0.2094,0.0698,0.3488,-0.3846,0.1282,0.4872,0.5384,-0.0256,-0.6924,-0.4358,-0.2308,-0.1794,-0.3334,-0.3334,-0.1794,0.0256,0.0256,0.4358,0.8974,1,0.6924,0.1794,0.3846,0.3334,0.4872,0.7436,0.8462,0.8462,0.5384,0.3846,0.2308,-0.0256,0.1794,0.1282,0.1282,-0.4286,-0.077,0.1208,0.1648,-0.4726,-0.5604,-0.8022,-0.6044,-0.6044,-0.6044,-0.8902,-0.6484,-0.2308,-0.3186,-0.5164,-0.1868,-0.2088,-0.033,0.4946,0.5384,1,0.912,0.4506,0.6704,0.6484,0.8022,0.8242,0.8682,0.5824,0.4946,0.5604,0.5824,-0.956,-0.9318,-0.9366,-0.7732,-0.7196,-0.7732,-0.783,-0.8244,-0.8146,-0.744,-0.5268,0.2244,0.8682,0.9024,0.6048,0.2512,0.0074,-0.2976,-0.3122,-0.539,-0.6342,-0.7342,-0.7976,-0.761,-0.878,-0.9,-0.9342,-0.939,-1,-1,-1,-1,-1,-0.9626,-0.9556,-0.9574,-0.8836,-0.741,-0.6158,-0.6184,-0.5976,-0.555,-0.5628,-0.5002,-0.2552,0.409,0.8922,0.9496,0.7828,0.395,-0.043,-0.4402,-0.5428,-0.648,-0.7844,-0.8896,-0.887,-0.921,-0.92,-0.934,-0.9444,-1,-1,-1,-1,-1,-0.9468,-0.8734,-0.8468,-0.6968,0.0832,0.9232,1,1,1,1,0.2966,-0.4658,-0.2886,-0.0058,0.0656,0.2314,0.0084,0.0234,-0.2372,-0.2348,-0.3222,-0.6098,-0.749,-0.7022,-0.799,-0.7556,-0.6356,-0.8556,-1,-1,-1,-1,-1,-0.1714,-0.9428,0.0286,1,1,-0.3142,-0.9142,-0.9142,-1,-0.3428,0.7714,1,0.6,-0.6572,-0.8286,-0.8572,-0.5428,-0.4286,-0.6858,-0.9714,-0.5142,0.8,-0.1428,-1,-0.9142,-0.9142,-0.8858,-0.8858,-1,-1,-1,-1,-1,-0.058,-0.0558,-0.0318,-0.022,0.0164,0.005,0.0452,0.0524,-0.0144,-0.0558,0.1816,0.1736,0.1842,0.2142,0.2382,0.3002,0.3908,0.5176,0.6894,0.7804,-0.6266,-0.153,-0.4932,-0.495,-0.2524,0.0074,0.355,-0.8334,-0.1978,-0.2914,-0.6188,-0.4568,-0.4892,-0.482,-0.41,-0.2986,-0.1726,-0.2518,-0.2914,-0.0144,-0.0288,-0.1224,-0.0324,-0.0828,-0.2806,0.392,0.2302,0.2626,0.295,0.4172,0.3884,0.633,0.723,0.6834,0.6942,0.6618,0.9928,1,0.867,0.5252,-0.4992,-0.5914,-0.9308,-0.5552,-0.7134,-0.5518,-0.5486,-0.4794,-0.3938,-0.3938,-0.2422,-0.1004,-0.028,-0.0708,-0.2026,-0.1532,-0.1434,0.1796,0.2258,0.2258,0.351,0.5518,0.5486,0.5914,0.654,0.631,0.6836,0.865,1,0.9538,0.8748,0.5882,-0.1846,-0.2246,-0.5508,-0.6272,-0.6606,-0.5174,-0.411,-0.0184,0.0716,-0.1414,-0.0782,0.3112,0.2646,0.1082,0.0748,0.0482,0.1548,0.3078,0.3212,0.2646,0.2678,0.4276,0.5574,0.6506,0.6106,0.807,0.8736,0.97,0.8668,1,0.8136,0.4708,-0.7774,-1,1,-1,1,-1,-1,0.5,-1,0.2874,0.2184,-0.1264,0.0804,-0.2874,0.2184,0.3104,0.0804,0.2874,0.0804,1,0.6322,0.4942,0.954,0.1724,0.2184,0.4712,0.5172,0.5632,0.1494,0.4022,0.3564,0.5632,0.6552,0.4712,0.4942,0.3104,0.3104,0.5402,0.3794,0.0804,-0.4942,'26'
-0.403,0.184,0.4876,0.6766,0.3682,-0.3682,-0.617,-0.5224,-0.1394,-0.204,-0.2786,-0.2288,0.0448,0.01,0.3034,0.7264,0.8208,0.6368,0.5672,0.383,0.398,0.582,0.6468,1,0.9204,0.6318,0.3284,0.3184,0.1792,0.2238,0.1792,0.199,-0.4578,0.0932,0.3362,0.6052,0.41,-0.475,-0.6052,-0.5836,-0.2582,-0.2322,-0.2582,-0.2928,0.0672,-0.0456,0.0196,0.3058,0.4924,0.8482,1,0.705,0.6356,0.705,0.7006,0.961,0.8958,0.8698,0.7528,0.5878,0.397,0.4534,0.475,0.5574,-0.469,0.026,0.1338,0.3454,0.1458,-0.509,-0.6328,-0.6008,-0.453,-0.465,-0.461,-0.4212,-0.1536,-0.3134,-0.1418,-0.05,0.046,0.501,0.537,0.9002,0.9042,0.5928,0.501,0.7206,0.8404,1,0.7604,0.6926,0.5528,0.5528,0.533,0.481,-0.574,-0.0808,0.1434,0.3184,0.0224,-0.3812,-0.6054,-0.6412,-0.5606,-0.6548,-0.4798,-0.3812,-0.287,-0.269,-0.278,-0.139,-0.0852,0.139,0.4888,0.6502,0.9328,1,0.6054,0.583,0.9014,0.861,0.982,0.8116,0.7938,0.6144,0.5964,0.722,-0.584,-0.1592,0.1372,0.2478,-0.27,-0.4248,-0.6946,-0.5974,-0.5398,-0.761,-0.6726,-0.5088,-0.4248,-0.4336,-0.3496,-0.323,-0.2346,-0.0354,0.27,0.6726,1,0.9956,0.5752,0.646,0.6372,0.7478,0.916,0.9824,0.7964,0.6238,0.562,0.6194,-0.5142,-0.1162,0.3074,0.2144,-0.1008,-0.6124,-0.5452,-0.4522,-0.783,-0.8294,-0.6796,-0.7622,-0.7572,-0.69,-0.4832,-0.509,-0.4832,-0.168,0.106,0.6744,0.9174,0.752,0.5968,0.5038,0.659,0.5246,1,0.9844,0.8294,0.5866,0.4936,0.602,-0.8074,-0.0652,0.1954,-0.1672,-0.5128,-0.8526,-0.677,-0.558,-0.7848,-0.7168,-0.6318,-0.6828,-0.2804,-0.3428,-0.6318,-0.5014,-0.2804,-0.4334,-0.0368,0.5354,1,0.9376,0.5468,0.4504,0.5638,0.643,0.762,0.9434,0.7168,0.4844,0.4334,0.5978,-0.2572,0.3714,0.5428,0.6572,0.3714,-0.0858,0.0286,0.0286,0.0286,-0.2572,-0.3714,-0.1428,-0.0286,0.2572,0.7142,0.8858,0.8286,0.6572,0.4858,0.1428,0.3142,0.6,0.5428,1,0.9428,0.6572,0.3142,0.2572,0.3714,0.3142,0.1428,0.2,-0.4286,0.1904,0.5238,0.6666,0.381,-0.381,-0.619,-0.619,-0.0952,-0.238,-0.0952,0,0.1428,0.0952,0.381,0.8096,0.8096,0.619,0.5714,0.4286,0.4286,0.619,0.762,0.9524,1,0.7142,0.1428,0.238,0.0952,0.0476,0.238,0.0952,-0.5294,-0.247,0.1058,0.1058,-0.3176,-0.6,-0.4352,-0.2706,-0.5058,-0.7648,-0.4588,-0.5058,-0.6706,-0.5294,-0.247,-0.2,-0.3176,-0.4588,-0.153,0.7412,1,0.8824,0.5058,0.5764,0.6,0.5764,0.8352,0.8118,0.7882,0.4118,0.5294,0.6,-1,-1,-0.934,-0.8654,-0.6906,-0.6992,-0.722,-0.7622,-0.7392,-0.679,-0.447,0.447,0.9426,0.9026,0.51,0.2406,-0.0774,-0.2292,-0.3496,-0.3954,-0.5272,-0.6276,-0.679,-0.7594,-0.7134,-0.788,-0.8194,-0.8596,-0.9226,-0.8998,-0.9398,-0.9312,-1,-1,-1,-0.9468,-0.9202,-0.8282,-0.6758,-0.5632,-0.5376,-0.641,-0.5826,-0.552,-0.1754,0.3002,0.6132,0.8864,0.9048,0.5928,0.3268,-0.1242,-0.4424,-0.5488,-0.5294,-0.7576,-0.821,-0.8168,-0.869,-0.8966,-0.908,-0.9346,-0.9202,-0.9438,-0.9468,-1,-1,-1,-0.9268,-0.8634,-0.7734,0.2866,0.9932,1,0.91,0.91,0.07,-0.5868,-0.5634,-0.26,-0.19,-0.0772,-0.023,0.0114,-0.0344,-0.1716,-0.24,-0.1744,-0.5268,-0.4468,-0.5334,-0.8,-0.68,-0.6668,-0.6468,-0.7668,-0.8668,-0.8734,-1,-1,-1,-0.9428,1,1,1,-0.6286,-0.9428,-0.7142,-0.4286,1,1,0.5714,-0.4286,-0.7142,-0.8286,-0.8286,-0.8286,-0.6,-0.6,-0.8858,-0.0286,0.0572,-0.8858,-0.1714,-0.3142,-0.8572,-0.8858,-0.9428,-0.8,-0.8286,-0.7428,-1,0.0542,0.0682,0.0266,0.0142,-0.0148,0.0044,0.0272,0.0052,-0.008,0.0148,0.153,0.1668,0.1992,0.22,0.2714,0.2906,0.3612,0.4552,0.6418,0.7554,-0.7066,-0.2588,-0.5438,-0.3954,-0.1438,0.1416,0.3136,-0.7166,-0.17,-0.2348,-0.5708,-0.417,-0.583,-0.6478,-0.5304,-0.4292,-0.3724,-0.4332,-0.3684,-0.255,-0.255,-0.3442,-0.2996,-0.494,-0.162,-0.004,-0.1256,0.077,0.2024,0.2632,0.3968,0.4454,0.757,0.6882,0.8948,0.9312,0.8826,1,0.8502,0.6882,-0.3844,-0.4426,-0.7522,-0.6648,-0.654,-0.7522,-0.6612,-0.4682,-0.4316,-0.4062,-0.49,-0.297,-0.3042,-0.2314,-0.2276,-0.2168,-0.3042,-0.0892,-0.1002,-0.0602,0.1948,0.2568,0.4098,0.4208,0.5154,0.6904,0.6612,0.7924,0.7778,0.8798,1,0.8724,-0.168,-0.1762,-0.5614,-0.7008,-0.6558,-0.623,-0.5368,-0.0902,0.0984,-0.209,-0.0984,0.1762,0.254,0.0286,-0.0492,-0.0246,0.086,0.0532,0.0574,0.0574,0.1188,0.3524,0.5738,0.705,0.4344,0.6312,0.7664,0.7008,0.8852,1,0.6394,0.5082,-0.7136,-1,1,-1,1,-1,-0.2,0.3,-1,-0.091,0.1272,-0.2364,-0.0728,-0.3636,-0.0728,-0.109,-0.3272,-0.0728,0.0546,0.7636,0.5636,0.7454,0.6364,0.5636,0.2546,0.6182,0.509,0.2546,0.3636,0.4546,0.4728,1,0.891,0.2728,0.1636,0.1818,-0.1818,-0.1272,0.2546,0.2,0.0546,'26'
-0.732,-0.215,0.0156,0.1714,0.1526,-0.053,0.0156,-0.0592,-0.1838,0.028,-0.1214,0.028,0.0778,0.2024,0.3396,0.4392,0.6698,0.8442,0.782,0.5452,0.6138,0.6012,1,1,0.5264,0.377,0.2274,0.3582,0.3334,0.3894,0.595,0.5202,-0.6802,-0.3554,0.0456,0.0964,0.0406,-0.0508,0.061,0.2132,0.1472,-0.066,0.1218,0.1168,0.2284,0.2742,0.3554,0.3452,0.6142,0.7818,0.6244,0.6192,0.7614,0.9188,1,0.6498,0.5786,0.6548,0.4772,0.4874,0.665,0.7056,0.802,0.6852,-0.6708,-0.3924,0.0026,0.0228,-0.0026,-0.1038,-0.043,0.1696,0.0482,-0.0178,0.1342,0.0684,0.1746,0.2912,0.281,0.3722,0.6354,0.767,0.8836,0.8076,0.7114,0.9342,1,0.8482,0.595,0.6658,0.519,0.524,0.5898,0.6708,0.7518,0.676,-0.6854,-0.3802,0.1456,0.1456,0.0328,0.047,0.0422,-0.0282,-0.155,-0.1456,0.0234,-0.0846,-0.0422,0.2066,0.169,0.2018,0.399,0.7794,0.8826,0.5446,0.4132,0.5634,1,0.9624,0.54,0.4694,0.4272,0.4038,0.446,0.4554,0.6478,0.5118,-0.561,-0.2304,0.3712,0.317,-0.1328,0.2032,0.1598,-0.0894,-0.1056,-0.0624,0.1436,0.0028,0.0678,0.3224,0.2196,0.2304,0.3224,0.7506,0.8428,0.8158,0.7344,0.7506,1,0.8212,0.87,0.6694,0.5502,0.6586,0.7886,0.8048,0.9186,0.7616,-0.506,-0.199,0.295,0.2326,-0.223,0.0504,-0.0168,-0.1798,-0.1128,-0.2086,-0.1894,-0.1654,-0.06,0.036,-0.036,-0.012,0.0936,0.223,0.8848,1,0.7938,0.6834,0.7602,0.6786,0.554,0.4964,0.2182,0.1414,0.1846,0.2326,0.4292,0.5204,-0.0278,0.5186,0.074,-0.0092,-0.2222,-0.4352,-0.4814,-0.5648,-0.6204,-0.7962,-0.676,-0.5834,-0.713,-0.5,-0.5186,-0.7686,-0.537,0.1388,0.7962,0.9352,0.8148,0.9722,1,0.713,0.4074,0.2778,-0.1018,-0.2038,-0.1574,-0.1482,-0.037,0.2038,-0.75,-0.1876,-0.25,0.5,0.5,-0.1876,-0.375,-0.0624,-0.25,-0.25,-0.5,-0.4376,-0.125,-0.125,-0.0624,0.1876,0.625,0.6876,0.25,0.5624,0.625,0.25,0.8124,1,0.625,0.0624,0.3124,0.125,0.0624,0.25,0.125,-0.0624,-0.6842,-0.4736,0,0,-0.2632,-0.2106,-0.1052,-0.4736,-0.8422,-0.0526,-0.1578,-0.1578,0.0526,0.1578,0.1578,0.2106,0.7894,1,0.8948,0.5264,0.579,0.421,0.7368,0.8422,0.6842,0.2106,0.3158,0.3158,-0.0526,0.3684,0.6316,0.6316,-0.6976,-0.2558,0.2326,0.2326,-0.372,0.1396,0.093,-0.0698,-0.1162,-0.093,0,-0.093,0.0232,0.279,0.2326,0.2558,0.3488,0.8838,0.9534,0.628,0.628,0.6976,1,0.8838,0.7442,0.5814,0.4884,0.4418,0.6512,0.6046,0.6976,0.6046,-1,-1,-1,-1,-1,-1,-1,-0.8842,-0.9036,-0.8586,-0.209,0.1126,0.1126,0.1768,0.0932,0.6464,0.9292,0.3698,0.775,0.5756,0.1898,-0.1318,-0.6656,-0.6914,-0.775,-0.82,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9458,-0.9512,-0.8412,-0.0922,-0.3324,0.2306,0.6812,0.749,0.9254,0.7042,0.0814,0.232,-0.0352,-0.479,-0.7476,-0.8602,-0.8724,-0.901,-0.905,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.9268,-0.8368,0.02,-0.2468,0.0432,0.2366,0.3366,0.1132,0.06,0.0166,-0.1734,-0.4,-0.65,-0.7734,-0.6834,-0.6534,-0.5034,-0.7334,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3428,-0.6572,1,1,0.5142,1,-0.6,-0.9714,-0.9142,-0.6,-0.8,-0.6572,1,1,0.8,-0.5142,-0.8858,-0.8858,-0.8858,-1,-1,-1,-1,-1,-1,-1,0.9976,0.9654,0.977,0.9992,1,1,1,1,1,0.7906,0.0626,0.0646,0.0386,0.0518,0.1066,0.1526,0.2218,0.2678,0.3096,0.3862,-0.5466,-0.3412,-0.0014,-0.2606,-0.2632,0.0502,0.1982,0.9834,-0.6104,-0.1168,0.065,0.039,0.039,0.039,0.013,0.2208,0.4806,0.6624,0.7922,0.948,1,0.6624,0.4286,0.5324,0.4806,0.5324,0.3506,0.1948,0.4806,0.2468,0.013,0.1168,0.4286,0.5324,0.6364,0.4546,0.4286,0.6884,0.6104,-0.1948,-0.2794,0.1764,0.4118,0.2648,0.1912,0.103,0.2648,0.5294,0.9118,1,0.6324,0.9412,0.8236,0.5148,0.7058,0.7942,0.75,0.8088,0.4412,0.3824,0.5148,0.5148,0.397,0.4558,0.6618,0.9852,1,0.8676,0.4852,0.75,0.5882,-0.4706,-0.2058,0.103,0.5,0.2352,0.103,0.0148,0.2352,0.3382,0.8676,0.7206,0.5294,1,0.75,0.5148,0.4412,0.7942,0.353,0.2058,0.1764,0.4412,0.4706,0.4706,0.2352,0.2206,0.6176,0.6324,0.8382,0.5,0.2206,0.4118,0.25,-0.1176,0.0828,-1,-1,1,-1,-1,-1,-0.7334,1,-0.1556,-0.0222,0.4666,0.4,0.3334,-0.1556,0.2222,0.5556,0.5778,0.8222,0.6,0.6888,0.3334,0.7334,0.7334,0.6,0.8444,1,0.4444,0.9778,0.9334,0.1778,0.8666,0.6222,0.2666,0.4222,0.3334,0.5112,0.5334,0.4222,0.3778,-0.6444,'1'
-0.6128,-0.2202,0.0398,0.0928,0.252,0.13,0.1034,0.0664,0.0186,-0.0132,-0.0132,0.0928,0.2786,0.2466,0.3104,0.5702,0.7082,0.984,0.8568,0.4854,0.7718,0.9098,1,0.6234,0.4588,0.4854,0.3104,0.3368,0.3528,0.3634,0.4908,0.5702,-0.5708,-0.202,0.0858,0.1464,0.1718,0.0354,0.1162,0.1464,0.091,0.0454,0.1212,0.1516,0.293,0.2474,0.3586,0.6464,0.7576,1,0.8282,0.505,0.7626,0.8686,1,0.702,0.692,0.5708,0.3788,0.4394,0.5454,0.5152,0.5708,0.6718,-0.6158,-0.3,-0.0316,-0.021,0.1474,-0.021,0.0368,0.0894,-0.0684,0.021,0.1,0.0422,0.179,0.4,0.421,0.4842,0.521,0.5894,0.6948,0.6106,0.7632,1,1,0.7422,0.5158,0.5736,0.4106,0.3368,0.4,0.4632,0.421,0.4894,-0.6364,-0.3194,0.226,0.226,0.2572,0.1584,0.1896,0.0182,-0.0806,-0.013,-0.0286,0.0546,0.1636,0.2884,0.2104,0.2156,0.3038,0.7714,1,0.787,0.574,0.787,0.7246,0.7922,0.5688,0.4442,0.2312,0.3246,0.252,0.2104,0.439,0.5168,-0.5968,-0.2714,0.1782,0.1782,-0.049,0.1628,0.1782,-0.1112,-0.106,-0.044,-0.106,-0.0284,0.0542,0.1732,0.0802,0.1008,0.0802,0.814,1,0.752,0.4988,0.6434,0.8552,0.8966,0.447,0.2972,0.2404,0.1628,0.1162,0.2144,0.2558,0.4366,-0.5542,-0.2258,0.2024,0.1848,0.0088,0.1906,0.2024,-0.3548,-0.1672,-0.126,-0.214,-0.0088,0.0734,0.091,0.003,0.0088,0.0734,0.6892,0.8826,0.6304,0.607,0.4838,0.9942,1,0.3548,0.214,0.261,0.0498,0.0734,0.1554,0.1672,0.1906,-0.288,0.272,0.376,0.304,-0.024,0.032,0.008,-0.168,-0.384,-0.384,-0.52,-0.416,-0.312,-0.088,-0.024,-0.28,0.192,0.672,0.936,0.664,0.8,0.808,0.944,1,0.2,0.048,0.072,-0.328,-0.088,-0.072,-0.224,0.024,-0.65,-0.35,-0.1,0.15,0.2,0.05,0.1,-0.1,-0.1,-0.05,-0.15,0,0.15,0.3,0.25,0.3,0.55,0.65,0.6,0.5,0.6,1,1,0.55,0.35,0.5,0.25,0.1,0.25,0.2,0.35,0.45,-0.6666,-0.238,-0.0476,0.0952,0.238,0.1428,0.0476,0.0476,0,-0.0952,0,0.0952,0.1904,0.1904,0.2858,0.4762,0.6666,0.8096,0.5238,0.3334,0.762,1,1,0.6666,0.4762,0.3334,0.2858,0.2858,0.0476,0.2858,0.4286,-0.1428,-0.5814,-0.279,0.186,0.1628,0.3488,0.2326,0.186,0.093,0,0.093,0.0466,0.0466,0.186,0.372,0.3024,0.279,0.4652,0.7906,1,0.8604,0.7442,0.9768,0.8372,0.8604,0.628,0.5116,0.3488,0.4652,0.4418,0.3256,0.5348,0.5348,-1,-1,-1,-1,-1,-1,-1,-1,-0.9178,-0.886,-0.481,0.2468,0.462,0.4178,0.2278,0.405,0.943,0.6518,0.2594,0.2974,0.2912,-0.1266,-0.6646,-0.7468,-0.8164,-0.8164,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9366,-0.9268,-0.4342,0.6016,0.8944,0.787,0.6716,0.6456,0.4536,0.4244,0.0944,-0.1398,-0.3414,-0.6456,-0.8066,-0.813,-0.8634,-0.8926,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.9134,-0.4768,-0.08,-0.084,0.0332,0,-0.03,-0.2834,-0.3834,-0.35,-0.3534,-0.5534,-0.7334,-0.4468,-0.19,-0.5634,-0.84,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,-0.0572,-0.9142,-0.9714,-0.8858,-0.8286,-1,-0.8572,-0.5714,0.6286,0.5428,0.2286,-0.3428,0.1714,-0.3428,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.9244,0.0618,0.0458,0.0582,0.0576,0.0638,0.0684,0.1068,0.1046,0.1678,0.1928,-0.5734,-0.3648,-0.3756,0.291,0.7334,0.8358,0.9772,1,-0.174,0.2174,0.3044,0.3044,0.4348,0.3044,0.3044,0.6522,0.6956,0.913,0.913,1,0.913,0.6956,0.5218,0.7826,0.826,0.6522,0.5218,0.826,0.826,0.7392,0.6956,0.5652,0.2174,0.3044,0.3914,0.4348,0.3914,0.0434,0.0434,-0.174,-0.1844,0.2038,0.3786,0.398,0.4174,0.4368,0.4174,0.5534,0.767,0.8834,0.903,1,0.903,0.5534,0.398,0.7282,0.8446,0.6504,0.3786,0.7864,0.8252,0.6116,0.5922,0.6116,0.1262,0.0292,0.3592,0.4368,0.3398,0.0486,-0.0486,-0.068,-0.0358,0.3036,0.375,0.4108,0.3392,0.2678,0.4464,0.6072,0.9286,0.9108,0.875,1,0.625,0.5178,0.4464,0.5714,0.9642,0.8392,0.3928,0.5358,0.5714,0.4286,0.2678,0.4108,0.2142,0.0892,0.4464,0.375,0.3036,-0.0536,0.1072,-0.3214,0.3854,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.381,0.1746,-0.0794,0.127,0,-0.3174,0.0318,0.0318,0,0.0476,0.4286,0.4286,0.492,0.5714,0.6984,0.5874,0.873,0.4126,0.4286,1,0.6826,0.6826,0.4126,0.5556,0.1746,0.2858,0.3968,0.2698,0.508,0.4126,0.1746,-0.0794,'1'
-0.4528,0.2076,0.0628,0.1636,-0.0944,-0.0754,-0.1132,-0.1636,-0.2894,-0.4654,-0.5346,-0.2452,-0.2768,-0.2956,-0.4528,-0.2768,0.151,0.4466,0.8302,0.9686,0.9874,0.6416,0.7548,0.7422,0.9372,0.912,0.5912,0.585,0.6604,1,0.9056,0.8742,-0.4322,-0.015,-0.0754,-0.0202,-0.1508,-0.2864,-0.3066,-0.2262,-0.2914,-0.3266,-0.412,-0.3518,-0.181,-0.2412,-0.2212,-0.5276,-0.4774,-0.1758,0.4472,0.7438,0.8844,0.7136,0.5428,0.6382,0.9046,1,0.794,0.6532,0.5528,0.598,0.7136,0.9396,-0.541,-0.0928,-0.3716,-0.4864,-0.0874,-0.2786,-0.5136,-0.2786,-0.3552,-0.5356,-0.5738,-0.5792,-0.5464,-0.4754,-0.2568,-0.5574,-0.7268,-0.4316,0.2132,0.5464,0.8962,0.754,0.5956,0.5902,0.9726,1,0.765,0.754,0.6448,0.6284,0.6338,0.8142,-0.5784,-0.119,-0.3568,-0.5622,-0.1244,-0.3082,-0.5352,-0.4216,-0.4918,-0.4378,-0.6756,-0.6324,-0.3946,-0.5676,-0.5244,-0.7676,-0.573,-0.6054,0.0162,0.4486,0.9406,0.7892,0.4594,0.3514,0.6918,1,0.7514,0.773,0.5568,0.3568,0.5784,0.881,-0.4692,0.0308,-0.1482,-0.074,-0.2778,-0.4568,-0.358,-0.3456,-0.4814,-0.5,-0.8024,-0.8086,-0.6604,-0.747,-0.6604,-0.642,-0.6544,-0.6604,-0.3888,0.5802,1,0.8456,0.9198,0.426,0.716,0.8828,0.716,0.6666,0.5432,0.3828,0.432,0.4754,-0.7188,-0.4376,-0.125,-0.0468,-0.5704,-0.6796,-0.7266,-0.6172,-0.75,-0.7344,-0.7578,-0.4454,-0.4766,-0.5546,-0.4376,-0.5,-0.6094,-0.461,-0.6484,-0.039,0.539,0.5,0.6484,0.1094,0.789,0.8124,0.875,0.8672,0.961,0.9062,0.8204,1,-0.3148,-0.6654,0.2828,0.3386,0.0518,0.3068,-0.02,-0.0678,0.012,-0.0518,-0.745,-0.3386,-0.3068,0.0598,0.4024,0.1474,0.3228,0.0278,0.2828,0.3546,0.506,0.7132,0.753,0.6972,0.8008,0.7768,0.8088,0.9044,0.9362,0.8248,0.7928,1,-0.421,0.2632,0.2632,0.1578,-0.2632,-0.1052,-0.0526,0.1052,-0.3684,-0.2106,-0.579,-0.579,-0.1052,-0.2632,-0.3684,-0.0526,0.3684,0.4736,0.8948,0.6842,0.5264,0.8948,1,0.4736,0.421,0.3684,0.1052,0.5264,0.3158,0.8422,0.7368,0.2632,-0.2632,0.0526,0.0526,0.1578,-0.1578,-0.2632,0.0526,-0.1578,-0.4736,-0.3684,-0.4736,0,-0.1052,-0.3158,-0.4736,-0.3158,-0.0526,0.2632,0.8948,0.9474,0.8948,0.1052,0.8422,1,0.7368,0.7894,0.421,0.4736,0.6316,0.6842,1,0.8422,-0.1692,0.2924,0.077,0.2,-0.2308,-0.1384,0.0462,-0.1692,-0.2616,-0.2616,-0.323,-0.4154,-0.2616,-0.6,-0.5692,-0.5384,-0.477,-0.3538,-0.2,0.5076,0.877,0.9692,1,0.6,0.6,0.7846,0.6616,0.6,0.4462,0.3538,0.2616,0.4154,-1,-1,-1,-1,-1,-1,-1,-1,-0.8884,-0.8884,-0.4046,0.8604,0.4232,0.107,0.107,0.0884,0.0698,0.0232,0.079,-0.3488,-0.6838,-0.7396,-0.786,-0.814,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9026,-0.8942,-0.5104,0.0988,0.3018,0.1376,0.4688,0.7524,0.783,0.491,-0.3018,-0.5104,-0.6468,-0.783,-0.8636,-0.8748,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.6068,-0.1568,0.2028,0.1942,0.0028,0.0828,0.0456,-0.0286,-0.0172,0.28,-0.0572,-0.5944,-0.8734,-0.8934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,0.4,1,1,-0.3142,-0.9714,-0.9428,-0.9714,-1,-0.2,0.4,0.1428,-0.0286,0.1714,-0.4572,-0.2,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.5002,0.4692,0.5058,0.4482,0.4266,0.4266,0.443,0.4118,0.4512,0.453,0.6168,0.6542,0.6778,0.6968,0.7758,0.7754,0.7496,0.763,0.8138,0.7114,-0.6,-0.2236,-0.4382,0.0236,0.1294,0.2462,0.3908,0.5334,0.0952,0,0.0952,0.3334,0.2858,0.5714,0.619,0.762,0.6666,0.4762,0.5714,0.4762,0.7142,0.2858,0.4286,0.5238,0.619,0.5238,0.5238,0.619,0.9048,0.9524,0.9048,1,0.8572,0.9524,0.9048,0.762,0.7142,0.4286,0.1428,-0.0476,-0.4794,-0.3972,-0.5068,0.041,-0.2602,0.0136,0.3698,0.5068,0.6712,0.2876,0.3424,0.4246,0.2876,0.2328,0.6164,0.6712,0.452,0.3698,0.5068,0.6164,0.726,0.726,0.6986,1,0.589,0.726,0.726,0.5616,0.589,0.2328,0.2054,-0.3698,0.3976,0.8314,0.253,0.3976,0.253,0.1084,0.3494,0.4698,0.9518,0.8796,0.6386,0.759,0.518,0.4698,0.8072,0.9036,0.3734,0.2048,0.5422,0.5904,0.3012,0.0602,0.7832,1,0.7108,0.8314,0.6868,0.5904,0.5904,0.5422,0.253,-0.3254,-0.032,-1,-1,1,-1,-1,-1,-0.8334,-1,0.065,0.1688,0.4806,0.7662,0.4546,0.7142,0.065,0.3766,0.5844,0.6624,0.6104,0.3766,0.922,0.948,0.4286,0.4546,0.8962,0.5844,0.6104,1,0.8182,0.4286,0.4546,0.4026,0.4286,0.8962,0.4546,0.1688,0.4806,0.5064,0.4546,-0.6364,'2'
-0.4954,0.1324,0.0338,-0.12,-0.3416,-0.1262,-0.3846,-0.44,-0.36,-0.3292,-0.3416,-0.0338,-0.0154,0.0584,-0.0154,-0.0708,-0.083,0.6124,0.723,0.8708,1,0.9816,0.9384,0.6554,0.5876,0.3784,0.323,0.3846,0.4524,0.68,0.877,0.6246,-0.6776,-0.2358,-0.2716,-0.206,-0.3194,-0.391,-0.5402,-0.612,-0.5702,-0.5522,-0.5522,-0.4866,-0.5164,-0.5104,-0.4926,-0.4388,-0.4448,-0.1642,0.188,0.6716,1,0.9104,0.6238,0.6836,0.7492,0.791,0.5284,0.3672,0.397,0.397,0.5402,0.6538,-0.5366,-0.1202,-0.3256,-0.2082,-0.1964,-0.3432,-0.3724,-0.4722,-0.5366,-0.525,-0.2904,-0.2552,-0.3958,-0.3196,-0.2258,-0.2376,-0.2728,-0.2258,0.1554,0.4486,1,0.9296,0.5778,0.736,0.742,0.953,0.7772,0.4252,0.5542,0.478,0.5366,0.7596,-0.5064,-0.1168,-0.3038,-0.6728,-0.252,-0.3662,-0.3454,-0.335,-0.3454,-0.4702,-0.5584,-0.465,-0.1948,-0.2624,-0.387,-0.4286,-0.3714,-0.2,-0.3298,0.1688,0.9844,1,0.5376,0.6052,0.709,0.813,0.7714,0.413,0.4494,0.5012,0.465,0.5844,-0.4808,-0.0256,-0.2756,-0.3334,-0.468,-0.3526,-0.2436,-0.3206,-0.3142,-0.6666,-0.8654,-0.718,-0.391,-0.4552,-0.641,-0.468,-0.4552,-0.4488,-0.4166,0.2628,0.9488,0.9424,0.8142,0.891,0.9358,1,0.8334,0.6794,0.6538,0.5706,0.5962,0.9424,-0.2516,0.2452,-0.0516,-0.142,-0.529,-0.587,-0.5612,-0.3548,-0.5162,-0.5484,-0.6516,-0.7226,-0.6774,-0.6774,-0.7612,-0.6064,-0.4194,-0.6452,-0.787,0.1032,0.3484,1,0.858,0.2774,0.5548,0.4904,0.0322,0.071,0.058,-0.3354,-0.1612,0.0194,-0.3018,0.3018,0.5976,0.7396,-0.5266,-0.3136,0.0414,0.136,-0.4082,-0.6214,-0.4792,-0.716,-0.503,-0.4792,-0.4082,-0.2426,0.077,-0.7042,-0.5148,-0.432,0.3728,0.929,0.9644,0.8698,1,0.9172,0.6332,0.503,-0.3018,-0.0296,-0.1598,-0.065,-0.8888,0.4444,0.3334,-0.1112,0.1112,0.2222,-0.8888,-0.3334,-0.4444,-0.4444,0,0.4444,0.5556,0.4444,0.5556,0.8888,0.6666,0.6666,0.6666,0,0.5556,0.6666,0.5556,0.1112,0.5556,0,0,0.6666,0.4444,0.8888,1,-0.2222,-0.1636,0.3818,0.3818,0.0546,-0.091,0.091,0.1272,0.0182,0.0546,-0.0182,-0.0182,0.0546,0.0182,0.2,0.2364,0.2728,0.3818,0.7818,0.891,1,1,0.9272,1,0.709,0.5272,0.4546,0.3818,0.4546,0.5636,0.8546,0.9272,0.709,-0.3244,0.081,0.1082,0.1352,-0.5406,-0.6216,-0.6756,-0.4594,-0.5676,-0.7028,-0.6216,-0.6216,-0.5406,-0.5946,-0.6216,-0.7028,-0.5136,-0.7028,-0.3244,0.1622,0.5136,1,0.8918,0.081,0.4324,0.3514,0.2972,0.2162,0.1352,-0.1352,0.081,0.2162,-1,-1,-1,-1,-1,-1,-1,-1,-0.8666,-0.838,-0.8,0.619,0.5524,0.3334,0.2762,0.0096,0,0.0952,0.6,0.819,0.619,-0.3238,-0.7048,-0.7238,-0.7524,-0.7524,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8784,-0.8654,-0.7044,0.3268,0.9408,0.6978,0.3858,0.2512,0.6518,0.6092,0.3366,-0.018,-0.3104,-0.6518,-0.7734,-0.8062,-0.8326,-0.8424,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9934,-0.9868,-0.8934,-0.448,-0.08,0.07,0.0432,-0.0134,0,0.0866,-0.1368,-0.55,-0.7534,-0.64,-0.6668,-0.8734,-0.8568,-0.87,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.0858,-0.6,1,1,1,-0.7714,-1,-0.8286,-0.8286,-0.6858,0.8286,1,0.4858,-0.2286,-0.7714,-0.7428,-0.8286,-0.5142,-1,-1,-1,-1,-1,-1,-1,0.3394,0.3364,0.2844,0.2488,0.2254,0.2316,0.2678,0.3164,0.3926,0.299,-0.006,0.079,0.192,0.2308,0.2984,0.4024,0.5178,0.6392,0.7634,0.7386,-0.6134,-0.353,-0.7012,-0.2184,0.6354,0.9376,0.9474,0.6416,0.1884,-0.029,0.6666,0.5942,0.4202,0.7826,0.5798,1,0.7972,0.5508,0.942,0.7392,0.8406,0.6376,0.6232,0.4202,0.7246,0.3188,0.4638,0.6232,0.6232,0.2318,0.5798,0.6812,0.3044,0.0724,-0.116,0.174,0.2754,0.3188,0.2028,-0.1884,0.0992,-0.0382,0.4962,0.5726,0.3436,0.4046,0.4962,0.603,0.4656,0.3436,1,0.6946,0.939,0.3282,0.4046,0.0534,0.3282,0.2672,0.3588,0.5114,0.6642,0.4656,0.2214,-0.1908,0.0992,0.2824,0.3436,0.252,0.3436,-0.1908,-0.0534,-0.3436,0.131,0.0238,0.5476,0.5714,0.7262,0.5596,0.6072,0.6428,0.4642,0.5952,1,0.7976,0.7858,0.6904,0.5952,0.5714,0.5714,0.5238,0.4524,0.6072,0.6786,0.6666,0.6072,0.7262,0.381,0.512,0.4286,0.2024,0.2738,0.3214,0.2262,-0.6072,-0.9408,1,-1,-1,-1,-1,-1,-1,-1,-0.1952,0.6098,0.3902,0.2196,0.1952,0.317,0.2196,-0.0244,-0.122,-0.2682,0.6342,0.7804,0.9756,0.9512,0.3658,0.4634,1,0.6586,0.4878,0.3902,0.2196,0.1464,0.683,0.561,0.439,0.2926,-0.2682,0.0732,0.317,0.317,0.0732,-0.7074,'2'
-0.5736,0.0542,0.2868,0.5116,0.062,-0.2016,-0.2636,-0.2868,-0.0078,-0.2558,-0.2636,-0.0388,-0.0156,0.062,-0.1086,0.093,0.4496,0.6744,0.6744,0.6046,0.845,0.8914,1,0.5736,0.279,0.248,0.1938,0.248,0.3256,0.4418,0.5504,0.6202,-0.526,-0.0194,0.2078,0.3636,-0.1298,-0.2532,-0.3312,-0.2598,-0.2272,-0.2532,-0.2792,-0.2142,-0.3442,-0.2012,-0.0714,-0.052,0.2858,0.6104,0.8832,0.6754,0.5844,1,0.9806,0.5974,0.1494,0.2338,0.2792,0.2338,0.3052,0.3376,0.4676,0.6168,-0.473,0.0398,0.0614,0.1768,-0.0036,-0.0758,-0.6174,-0.1768,-0.0758,-0.083,-0.1624,-0.0758,-0.2058,-0.1192,-0.1336,-0.1914,0.0758,0.74,0.8412,0.9566,0.899,1,0.9062,0.9638,0.5524,0.4874,0.4152,0.3502,0.4658,0.6678,0.6102,0.6028,-0.4808,0.0596,-0.0036,0.1438,-0.0526,-0.1088,-0.621,-0.3474,-0.235,-0.3192,-0.3334,-0.179,-0.3334,-0.2632,-0.3264,-0.3544,0.0596,0.4526,0.6702,0.8948,0.9018,1,0.8948,0.8526,0.621,0.5158,0.5368,0.4456,0.4176,0.4316,0.5578,0.6422,-0.4106,0.0344,0.0596,0.1662,-0.4608,-0.2226,-0.0722,-0.4358,-0.4858,-0.63,-0.4608,-0.3354,-0.3794,-0.3918,-0.3982,-0.4734,-0.3668,-0.1724,0.3668,0.6426,0.605,0.6552,1,0.9436,0.605,0.3104,0.348,0.3228,0.2164,0.3354,0.3416,0.3542,-0.221,0.3122,0.193,0.3264,-0.3404,-0.2562,-0.1298,-0.2912,-0.2982,-0.6,-0.6562,-0.4878,-0.7754,-0.6842,-0.6772,-0.4666,-0.4316,-0.4736,-0.0316,0.4526,0.6842,0.7614,1,0.972,0.4878,0.3052,-0.0106,-0.0246,-0.0036,-0.172,-0.1088,-0.0246,-0.12,1,0.8286,0.3942,-0.3028,-0.3828,-0.3714,-0.3258,-0.7028,-0.4514,-0.68,-0.5314,-0.2914,-0.2,-0.2914,-0.3258,0.0058,-0.1542,0.0742,0.5086,0.3828,0.4628,0.6228,0.84,0.5886,0.28,0.1886,0.1428,0.0286,0.4742,0.4972,0.28,-0.3334,0.2122,0.4546,0.6364,0.3334,-0.2122,0.0304,0.091,0.2122,0.091,0.091,-0.2728,0.091,0.0304,0.2122,0.394,0.4546,0.8182,0.8182,0.6364,0.7576,1,0.8788,0.6364,0.6364,0.4546,0.4546,0.2728,0.5758,0.5758,0.8182,0.8182,-0.3334,0.1112,0.4444,0.5556,0.2778,-0.0556,-0.1666,-0.2778,0.0556,-0.3888,-0.1112,0.1112,-0.0556,0.2778,0,0.0556,0.6112,0.8888,0.9444,0.6112,0.5556,0.7778,1,0.6666,0.3334,0.4444,0.2222,0.2778,0.3888,0.5,0.6666,0.4444,-0.4286,0,0.0238,0.0714,-0.4524,-0.2142,-0.0238,-0.1904,-0.3096,-0.5714,-0.5238,-0.4048,-0.619,-0.619,-0.4762,-0.5714,-0.381,-0.4286,-0.0952,0.119,0.5476,0.6666,1,0.9286,0.5,0.2858,0.1428,0.1666,0.0714,0.0476,0.119,0.1666,-0.8966,-0.8542,-0.8662,-0.8966,-0.8906,-0.8724,-0.8542,-0.7934,-0.7386,-0.8176,0.1306,0.4286,0.4408,0.4772,0.2158,-0.0152,0.1428,0.38,0.4164,0.6596,0.9148,0.2402,-0.611,-0.8116,-0.7994,-0.8054,-0.8662,-1,-1,-1,-1,-1,-1,-0.2874,-0.0062,0.7462,1,1,0.6452,0.2538,0.2814,0.0062,-0.4526,0.2692,0.5168,0.5964,0.7492,0.4282,0.2538,0.3578,0.578,0.9236,0.8012,0.2752,-0.214,-0.6484,-0.7522,-0.8042,-0.8288,-0.8716,-1,-1,-1,-1,-1,-1,0.47,1,1,1,1,1,1,1,0.95,0.42,-0.43,-0.308,-0.384,-0.136,-0.244,-0.156,-0.152,-0.232,-0.24,-0.48,-0.86,-0.69,-0.4268,-0.2268,-0.7,-0.7868,-0.9668,-1,-1,-1,-1,-1,-1,1,0.8572,-0.4286,-0.5428,-0.8,-0.6286,-0.8572,-0.6,0.1428,0.4,1,0.0572,-0.9714,-0.8572,-0.9428,-0.9142,-0.9428,-0.6286,-0.3142,1,1,-0.1142,-0.5714,-0.3142,-0.2858,-0.5428,-0.4286,-1,-1,-1,-1,-1,-1,0.5316,0.5018,0.4374,0.3898,0.3936,0.4012,0.3744,0.3686,0.2748,0.1992,0.1936,0.1982,0.181,0.1926,0.1992,0.223,0.283,0.336,0.4108,0.542,-0.64,-0.4588,0.4464,0.4802,0.5474,0.5994,0.6758,-0.7,-0.6084,-0.765,-0.506,-0.3634,-0.4156,-0.3916,-0.3374,-0.3172,-0.255,-0.3916,-0.229,-0.1968,-0.249,-0.2228,-0.1788,-0.1366,0.243,0.2772,0.247,0.51,0.6446,0.8574,0.8534,0.755,0.8876,1,0.99,0.8212,0.755,0.8112,0.506,-0.002,-0.7258,-0.7382,-0.464,-0.4446,-0.4904,-0.5414,-0.4534,-0.3726,-0.376,-0.4534,-0.399,-0.304,-0.181,-0.2934,-0.2882,-0.181,0.0544,0.2408,0.0774,0.2636,0.5764,0.7716,0.9138,0.8084,0.747,0.8892,1,0.9702,0.7628,0.8224,0.6906,0.3268,-0.557,-0.3898,-0.4532,-0.3356,-0.3402,-0.218,-0.157,0.0418,0.0012,-0.0712,0.1412,0.3016,0.0282,0.0396,0.0532,0.374,0.6632,0.722,0.304,0.5954,0.8734,1,0.9796,0.5864,0.6136,0.957,0.9864,0.7514,0.426,0.4554,0.417,0.078,0.0948,-1,1,-1,-1,-1,-1,1,1,-0.3628,0.1504,0.0796,0.0266,0.0974,0.1682,-0.0442,-0.0266,0.0974,-0.0796,0.2212,0.5752,0.6284,0.239,0.416,0.7168,0.77,1,0.8054,0.9292,0.8584,0.5222,0.5576,0.3806,0.593,0.292,0.1682,0.5398,0.416,0.2566,0.0442,-0.469,'3'
-0.6666,0.0666,0.08,0.08,-0.4334,-0.4,-0.26,-0.2266,-0.1866,-0.36,-0.2134,-0.0066,0.0534,0.0266,0.2266,0.2666,0.76,0.76,0.5866,0.5666,0.92,1,0.9534,0.54,0.4334,0.2534,0.1866,0.0734,0.12,0.3,0.3934,0.5734,-0.5122,-0.0244,-0.0732,0.0244,-0.4688,-0.4906,-0.2846,-0.2466,-0.149,-0.5392,-0.3062,-0.0786,-0.252,-0.1708,-0.1112,-0.187,-0.1056,0.7398,0.87,0.6748,0.7344,1,0.962,0.8374,0.6206,0.5664,0.2086,0.2412,0.355,0.4038,0.3822,0.5014,-0.5664,-0.1056,0.1598,0.252,-0.3766,-0.5392,-0.3984,-0.328,-0.3062,-0.3766,-0.5122,-0.317,-0.3008,-0.2792,-0.5068,-0.393,-0.1598,0.5448,0.6152,0.7398,0.5284,0.6044,0.9784,1,0.767,0.5338,0.3062,0.4472,0.42,0.4418,0.4796,0.5826,-0.5428,-0.1314,0.28,0.32,-0.4114,-0.2686,-0.2342,-0.1028,-0.3258,-0.6058,-0.4458,-0.6228,-0.52,-0.5772,-0.3828,-0.3314,-0.5258,0.2628,0.4628,0.8514,0.8572,0.7942,0.9486,1,0.8858,0.6114,0.56,0.4114,0.5772,0.5886,0.56,0.7886,-0.4958,-0.0946,0.2264,0.2608,-0.5072,-0.0488,-0.02,0.1174,-0.1404,-0.3524,-0.6276,-0.765,-0.9026,-0.725,-0.4728,-0.3754,-0.5988,-0.2264,0.1346,0.937,0.9426,0.9828,1,0.9598,0.7134,0.5128,0.3926,0.192,0.2836,0.2148,0.2148,0.4326,-0.2106,0.4824,0.1666,-0.0878,-0.421,-0.5438,-0.2894,-0.1578,-0.1578,-0.614,-0.6842,-0.6492,-0.614,-0.3948,0.1492,-0.1404,-0.6316,-0.2192,-0.2982,0.2018,0.7368,0.8422,0.965,1,0.2808,0.2808,0.0614,-0.2456,-0.2192,-0.2808,-0.3772,-0.3158,-0.3908,-0.908,0.2068,0.2988,-0.2068,0.046,-0.2644,-0.161,-0.2528,-0.2414,-0.4252,0.184,0.3908,0.6436,0.7472,0.4368,-0.3564,0.069,0.2988,1,0.977,0.839,0.6552,0.6896,0.5518,0.4368,0.3334,-0.046,0.1494,0.2414,-0.0804,0.138,-0.8236,0.4706,0.647,0.4706,-0.5882,-0.5294,-0.1176,0.2942,0.1764,0,0.2942,0.5882,0.647,0.4706,0.7648,0.5882,0.8824,0.7648,0.647,0.8236,0.9412,1,0.8824,0.8824,0.5882,0.4118,0.5882,0.5294,0.4706,0.5882,0.7058,0.8236,-0.625,0.0624,0.0624,-0.125,-0.25,-0.1876,-0.4376,-0.1876,-0.25,-0.0624,-0.1876,-0.125,0,-0.0624,0.375,0.3124,0.75,0.625,0.4376,0.6876,1,0.9376,0.875,0.25,0.375,0.125,0.1876,0.25,0.1876,0.25,0,0.4376,-0.0286,0.4286,0.1428,0.1714,-0.1714,-0.1428,-0.2572,0.1142,0.1142,-0.1142,-0.2286,-0.5714,-0.6,-0.3714,-0.2572,-0.4286,-0.3428,-0.0286,0.1428,0.7714,0.8858,1,0.8286,0.6572,0.6,0.2286,-0.2572,-0.1142,-0.1142,-0.3714,-0.3142,-0.2572,-0.859,-0.8258,-0.8424,-0.834,-0.8092,-0.859,-0.776,-0.7344,-0.7594,-0.5186,-0.5934,0.3776,0.2946,0.2366,0.2864,0.5768,0.7926,0.5602,0.6266,0.361,-0.5518,-0.776,-0.7926,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.613,0.0564,0.0762,-0.3758,-0.4152,-0.5424,-0.3984,-0.4858,-0.1724,-0.0056,-0.418,0.2458,0.3842,0.5678,0.5226,0.3164,0.7034,0.6214,0.404,-0.226,-0.757,-0.8418,-0.8474,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.5232,1,1,0.8832,0.8,0.7532,0.79,0.91,0.9466,0.9266,0.3632,-0.2068,0.17,0.26,0.1732,-0.06,0.0432,0.1766,-0.0916,-0.6658,-0.6658,-0.8116,-0.8668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.1428,-0.0572,-0.8286,-0.8858,-0.9428,-0.9428,-0.8572,-0.8572,-0.3714,0.2286,0.9142,1,-0.1142,-0.8858,-0.9714,-0.9714,-0.7714,-0.9142,1,1,0.7142,-0.9428,-0.6572,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.465,0.465,0.4186,0.3866,0.3732,0.386,0.388,0.3678,0.3014,0.364,-0.1008,-0.1008,-0.1044,-0.0784,-0.0348,0.067,0.1432,0.2736,0.3938,0.36,-0.6,-0.2942,-0.4662,-0.2938,0.435,0.305,0.3306,-0.575,-0.637,-0.6326,-0.5468,-0.4434,-0.406,-0.3972,-0.263,-0.2256,-0.3664,-0.373,-0.2234,-0.3466,-0.2388,-0.2168,-0.2014,-0.175,0.1068,-0.0122,0.0738,0.406,0.6128,0.769,0.6722,0.989,0.9824,1,0.901,0.7866,0.692,0.78,0.5842,0.186,-0.663,-0.734,-0.6546,-0.5494,-0.457,-0.4484,-0.3412,-0.1932,-0.4914,-0.4742,-0.2832,-0.2188,-0.2018,-0.2982,-0.4528,-0.2532,-0.0214,0.0258,0.1158,0.397,0.4614,0.7962,0.5558,0.9012,0.7918,0.9378,1,0.9464,0.8648,0.7596,0.7168,0.176,-0.7618,-0.8304,-0.5988,-0.4656,-0.6138,-0.6866,-0.457,-0.2318,-0.4142,-0.5472,-0.1802,-0.1738,-0.221,-0.266,-0.3884,-0.1738,0.4078,0.3884,0.1052,0.4786,0.7038,0.8906,0.5644,0.6138,0.676,0.897,1,0.676,0.5752,0.5836,0.457,0.1352,-0.7458,-1,1,-1,-1,-1,-1,1,-1,-0.2286,-0.0572,0.2858,0.2,0.3714,0.7714,0.7142,0.4858,-0.1428,0.2286,0.8,0.8,0.5714,0.5142,0.5142,0.6858,0.6286,1,0.4286,0.1428,0.1428,0.1714,0.2572,0.4,0.4286,0.2572,0.6572,0.4572,0.4572,0.1714,-0.0286,-0.4286,'3'
-0.643,-0.0774,-0.2592,-0.3334,-0.4478,-0.4612,-0.468,-0.3602,-0.4748,-0.542,-0.6162,-0.5152,-0.4546,-0.569,-0.4882,-0.468,-0.4882,0.239,0.7172,0.67,0.1582,0.1582,0.5892,1,0.9192,0.4814,0.3064,0.1178,0.1986,0.2728,0.5488,0.9932,-0.5146,-0.0818,-0.2808,-0.3802,-0.2164,-0.3392,-0.421,-0.2046,-0.2398,-0.3976,-0.3568,-0.3158,-0.4678,-0.5322,-0.3274,-0.421,-0.2924,-0.1052,0.772,0.9356,0.6374,0.3626,0.7192,0.9064,1,0.7368,0.462,0.3918,0.3274,0.3742,0.5204,0.772,-0.5536,-0.107,-0.3578,-0.6698,-0.2416,-0.4068,-0.3822,-0.5108,-0.5536,-0.4496,-0.523,-0.4802,-0.5108,-0.5474,-0.3516,-0.6392,-0.6942,-0.2966,0.4984,0.6392,0.7308,0.688,0.3334,0.7676,0.841,0.89,0.7492,0.4434,0.4678,0.4618,0.6514,1,-0.5304,-0.0854,-0.3292,-0.4268,-0.2378,-0.372,-0.3902,-0.256,-0.3048,-0.4634,-0.5,-0.378,-0.5366,-0.5854,-0.3354,-0.628,-0.5792,-0.3292,0.3536,0.4818,0.756,0.689,0.4818,0.6708,0.7622,0.8658,0.756,0.628,0.5426,0.5548,0.6952,1,-0.5542,-0.0956,-0.3504,-0.4586,-0.2994,-0.4204,-0.3184,-0.5032,-0.5478,-0.6242,-0.465,-0.395,-0.6306,-0.656,-0.4714,-0.5414,-0.3504,-0.4076,0.1974,0.344,0.9108,0.8726,0.2994,0.5542,0.637,1,0.8598,0.5222,0.5032,0.5222,0.6242,0.879,-0.3094,0.3598,0.0936,0.1798,-0.2878,-0.3742,-0.3166,-0.3382,-0.4748,-0.4388,-0.5828,-0.3884,-0.446,-0.5108,-0.151,-0.3382,-0.2806,-0.3884,-0.4604,0.3094,0.7986,0.9352,0.7338,0.6978,1,0.8562,0.331,0.151,0.2662,0.2662,0.2374,0.1942,-0.214,0.476,0.2228,0.2314,-0.3712,-0.3886,-0.511,-0.3014,-0.5982,-0.511,-0.5372,-0.1442,-0.2402,-0.2314,-0.048,-0.1704,-0.441,-0.6158,-0.4324,-0.1092,0.8078,0.738,0.3624,0.476,0.7904,1,0.6768,0.083,0.4148,0.5284,0.4236,0.3538,-0.2766,0.149,0.149,-0.1064,-0.149,-0.1064,-0.3192,-0.149,-0.4042,-0.149,-0.2766,-0.149,-0.3618,-0.532,-0.234,-0.1914,-0.149,0.2766,0.5744,0.4894,0.1914,0.149,0.8298,0.9574,0.8298,0.3618,0.1064,0.0638,0.0212,0.4468,0.6596,1,-0.3726,0.1372,0.1372,-0.0196,-0.1372,-0.1764,-0.0196,-0.1372,-0.1372,0.0196,-0.0588,-0.0588,-0.0196,-0.0588,-0.098,-0.1764,-0.1372,0.4118,0.5294,0.5686,0.4902,0.5294,0.7648,0.804,0.804,0.6078,0.4118,0.4902,0.3334,0.4902,0.6862,1,-0.3888,0.0834,-0.1112,-0.0556,-0.1666,-0.1944,0,-0.0556,-0.3612,-0.4722,-0.4166,-0.1388,-0.3334,-0.3888,-0.3612,-0.5,-0.3334,-0.6112,-0.4166,0.1666,0.9166,1,0.75,0.75,0.8888,0.7222,0.5556,0.3612,0.3334,0.1666,0.0556,0.2222,-1,-1,-1,-1,-1,-1,-1,-0.8218,-0.8712,-0.7822,-0.5346,0.0792,0.1386,0.2872,0.198,0.2476,0.1584,0.1584,0.1486,0.6436,0.891,-0.0792,-0.7624,-0.7426,-0.7326,-0.8118,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9042,-0.9042,-0.7336,0.1212,0.1744,0.217,0.8376,0.6324,0.6218,0.6246,0.51,0.2144,-0.1878,-0.3288,-0.6166,-0.8482,-0.8456,-0.8642,-0.8802,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.94,-0.86,0.8466,0.508,0.16,0.29,0.43,0.2466,0.25,0.26,0.0432,-0.47,-0.6934,-0.4,-0.76,-0.89,-0.73,-0.96,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4,-0.5714,1,1,0.5714,0.4858,-0.8572,-1,-1,-1,-1,0.1428,0.9428,0.4572,-0.1714,-0.2572,-0.8286,-0.8286,-0.8572,-1,-1,-1,-1,-1,-1,-1,0.2454,0.2388,0.289,0.2562,0.2604,0.351,0.3612,0.3616,0.3814,0.2888,0.7048,0.6876,0.679,0.6782,0.6746,0.6216,0.6542,0.6776,0.7356,0.7256,-0.6266,-0.353,0.1904,0.3928,0.0946,0.0546,0.3768,1,-0.7028,-0.3514,-0.1892,0,0.1622,0.2972,0.3514,-0.027,0.054,0.1352,0.1352,0.4324,0.3784,0.4594,0.3244,0.1352,0.2702,0.5136,0.5406,0.7838,0.7028,0.5946,1,0.8108,0.6756,0.7838,0.7838,0.5676,0.6216,0.6756,0.5946,-0.5946,-0.6336,-0.3894,-0.3588,-0.2978,-0.1298,-0.0076,0.0688,-0.252,-0.023,0.0992,-0.2824,0.3436,0.2978,0.1604,0.1908,0.0382,0.3894,0.374,0.4962,0.6794,0.7862,1,0.8626,0.7862,0.939,0.8626,0.8168,0.9084,0.8932,0.6642,0.4656,-0.1298,-0.5918,-0.4558,-0.5238,-0.4558,-0.4966,-0.2926,-0.3606,-0.2926,-0.2518,-0.0884,-0.279,0.0748,0.1836,-0.1156,0.102,0.4966,0.6326,0.4014,0.2926,0.5238,0.9048,1,0.5918,0.8504,0.796,0.7006,0.932,0.9592,0.5374,0.5102,0.619,0.2926,0.3262,-1,-1,1,-1,-1,-1,-0.7334,-1,-0.3034,0.191,0.146,0.191,-0.0562,0.3708,0.4382,-0.1012,0.1686,0.4382,0.3258,0.8876,0.955,0.7528,0.5056,0.5506,0.7752,1,0.5056,0.8202,0.7978,0.3932,0.663,0.3258,0.3034,0.4158,0.5956,0.6404,0.3258,0.528,0.1236,-0.3258,'4'
-0.5424,0.098,-0.0784,-0.2876,-0.4706,-0.4184,-0.3922,-0.4118,-0.4706,-0.5294,-0.4706,-0.3986,-0.464,-0.4902,-0.5686,-0.549,-0.3268,0.451,0.817,0.8432,0.7974,0.9412,1,0.8758,0.8496,0.3726,0.2156,0.4052,0.451,0.4902,0.7844,0.9804,-0.5562,-0.1288,-0.3754,-0.2876,-0.4466,-0.4794,-0.3206,-0.3206,-0.3864,-0.6548,-0.4794,-0.4136,-0.3918,-0.4794,-0.5506,-0.578,-0.4684,-0.1342,-0.0576,0.5398,1,0.9562,0.8794,0.8136,0.9014,0.5398,0.4192,0.4028,0.5068,0.5014,0.6602,0.8794,-0.5544,-0.1414,-0.3804,-0.7554,-0.6086,-0.5218,-0.4076,-0.4294,-0.4836,-0.6304,-0.5,-0.4892,-0.6522,-0.6684,-0.6468,-0.375,-0.3858,-0.549,-0.038,0.462,0.9728,0.8424,0.674,0.8914,0.8696,0.587,0.3206,0.2664,0.4782,0.3914,0.538,1,-0.5768,-0.1478,-0.3102,-0.258,-0.5304,-0.5594,-0.4666,-0.4956,-0.5478,-0.7392,-0.5826,-0.6,-0.6464,-0.5884,-0.4492,-0.6754,-0.6986,-0.571,-0.4492,0.716,0.9884,0.8144,0.8202,1,0.8202,0.7914,0.484,0.4376,0.3856,0.484,0.5188,0.8434,-0.5522,-0.1344,-0.1104,-0.0388,-0.7194,-0.403,-0.3492,-0.7732,-0.618,-0.6,-0.6956,-0.8268,-0.7374,-0.785,-0.6896,-0.6538,-0.606,-0.5642,-0.3314,0.588,0.8626,1,0.9044,0.9402,0.7732,0.6538,0.2418,0.194,0.1522,0.218,0.3314,0.5702,-0.2728,0.25,-0.0152,0,-0.7122,-0.9166,-0.697,-0.394,-0.394,-0.5378,-0.9772,-0.5304,-0.4772,-0.7576,-0.7122,-0.5,-0.4318,-0.5152,-0.5378,-0.1818,0.2576,1,0.8334,0.4924,0.356,0.106,-0.2652,-0.4242,-0.2272,-0.2424,-0.3182,0,-0.5974,-0.2752,0.4228,0.5034,-0.7584,-0.5168,0.4362,0.5302,-0.2348,-0.1812,-0.2886,-0.2484,-0.1544,-0.208,0.3558,0.0068,0.1276,-0.5034,-0.3154,0.3422,0.6912,1,0.4362,0.7986,0.6912,0.4496,0.6108,0.4094,0.1544,-0.0068,0.208,0.2348,0.04,0.56,0.56,0.12,0.24,0.36,0.32,0.16,-0.2,-0.04,0.16,0.12,0.24,0.04,0.24,-0.04,0.04,0.76,0.88,0.72,0.6,1,0.96,0.68,0.68,0.44,0.36,0.52,0.44,0.44,0.64,0.72,-0.6572,-0.0858,-0.2572,-0.5428,-0.8858,-0.5428,-0.3714,-0.4858,-0.3142,-0.3714,-0.4858,-0.4286,-0.5428,-0.6,-0.4858,-0.6,-0.5428,0.3714,0.6572,0.8286,0.7714,0.6572,0.8858,0.9428,0.6,0.3714,0.2,0.2572,0.4286,0.3142,0.6572,1,-0.2132,0.2132,0.3442,0.4098,-0.4426,-0.4426,-0.2132,0.1148,-0.1148,-0.9016,-0.6066,-0.6066,-0.4754,-0.6722,-0.5738,-0.2786,-0.2132,-0.4098,-0.541,0.082,0.836,1,0.7378,0.705,0.5738,0.4426,0.246,-0.0164,0.1476,0.1804,-0.0492,0.2786,-1,-1,-1,-1,-1,-1,-1,-0.8502,-0.7968,-0.6578,-0.4224,0.3368,0.1978,0.2192,0.1444,0.1122,0.0802,0.1658,0.2834,0.8288,-0.155,-0.5828,-0.7326,-0.786,-0.7326,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8662,-0.8256,0.075,0.2292,0.424,0.7932,0.8782,0.781,0.6796,0.57,0.6186,0.639,0.1562,-0.5254,-0.7242,-0.7972,-0.8216,-0.8174,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9934,-0.9334,0.1532,0.8766,-0.1868,-0.0234,0.12,0.0166,-0.0834,0.0766,0.0132,-0.0716,-0.5116,-0.763,-0.7516,-0.87,-0.84,-0.94,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,1,-0.1428,-1,-1,-0.8286,-0.9142,-1,0.5428,1,1,-0.7428,-0.9714,-1,-0.4572,-1,-1,-1,-1,-1,-1,-1,-1,0.1306,0.1306,0.189,0.1778,0.218,0.2736,0.2782,0.2972,0.296,0.2294,0.5922,0.5922,0.587,0.6284,0.6466,0.641,0.6782,0.768,0.8116,0.664,-0.6,-0.2942,0.1562,0.0466,0.493,0.9188,0.6836,1,-0.5508,-0.2898,-0.087,-0.1304,0.2898,0.058,0.058,0.0724,0.0434,0.1884,-0.0144,0.3914,0.4348,0.1594,0.3188,0.2898,0.5362,0.5218,0.3478,0.5362,0.4782,0.8116,0.5798,0.6232,0.855,0.7826,0.7826,1,0.942,0.7246,0.5362,0.0724,-0.7304,-0.5956,-0.5506,-0.4044,-0.528,-0.472,-0.3708,-0.2922,-0.1686,-0.1686,-0.2696,0.2134,0.0224,-0.045,-0.0224,0.528,0.5056,0.0786,0.427,0.6966,0.8988,1,0.6292,0.8652,0.764,0.9662,0.8876,0.8314,0.4944,0.427,0.4832,0.2248,-0.4624,-0.1876,-0.65,-0.7,-0.525,-0.45,-0.3874,-0.2,-0.3124,0.075,0.15,0.475,0.025,-0.0874,0.0126,0.3374,0.25,-0.075,0.7124,0.9126,0.8876,0.8,0.575,0.925,0.675,0.85,0.7626,1,0.6124,0.2374,0.575,0.4624,1,-1,-1,1,-1,-1,-1,-0.6334,-1,-0.0264,0.1052,0.2632,0.7894,0.6052,0.3158,0.421,0.7368,0.6842,0.6052,0.921,0.6052,1,0.8422,0.4474,0.6052,0.4736,0.4474,0.579,0.5526,0.4736,0.3158,0.6578,0.3684,0.2368,0.2894,0.5,0.0264,0.1316,0.421,0.1578,-0.3948,'4'
-0.6136,0.107,-0.013,-0.4674,-0.3838,-0.3578,-0.551,-0.551,-0.53,-0.739,-0.6554,-0.5144,-0.5822,-0.6658,-0.598,-0.6084,-0.504,-0.4986,-0.1854,0.269,0.6344,0.5614,0.4256,0.2846,0.3838,0.5614,0.9216,1,0.9112,0.8172,0.8276,0.7702,-0.4594,0.063,-0.1082,-0.6262,-0.1352,-0.1712,-0.41,-0.4504,-0.4504,-0.6486,-0.7162,-0.5046,-0.5676,-0.455,-0.4324,-0.419,-0.3244,-0.3694,-0.099,0.437,0.5,0.581,0.473,0.4234,0.4594,0.554,0.964,0.9234,0.8514,0.7072,0.8108,1,-0.4112,0.137,-0.1116,-0.4924,0.005,-0.1016,-0.4416,-0.462,-0.4416,-0.731,-0.594,-0.396,-0.5584,-0.5634,-0.5432,-0.6752,-0.5126,-0.2842,-0.0964,0.3148,0.665,0.802,0.533,0.538,0.533,0.736,0.8884,1,0.929,0.8426,0.9036,1,-0.4964,-0.0172,-0.2616,-0.555,-0.1442,-0.2762,-0.3838,-0.418,-0.4426,-0.7114,-0.6186,-0.555,-0.379,-0.4866,-0.4622,-0.6724,-0.7212,-0.5648,0.1736,0.3202,0.7458,0.6968,0.2128,0.2714,0.5208,1,0.8778,0.8974,0.7262,0.7164,0.9316,0.9462,-0.3764,0.2248,-0.073,-0.6124,-0.382,-0.528,-0.2696,-0.4326,-0.6292,-0.5562,-0.5898,-0.7022,-0.4776,-0.4438,-0.2978,-0.5674,-0.646,-0.6348,-0.0898,0.2248,0.7922,0.7978,0.5224,0.427,0.7078,1,0.7696,0.837,0.5956,0.4662,0.4382,0.9832,-0.6222,-0.6036,0.2166,0.364,-0.5116,-0.53,-0.318,-0.0506,-0.4194,-0.3918,-0.493,-0.6498,-0.4654,-0.106,0.235,0.106,0.0968,-0.0046,-0.3364,0.023,0.9078,0.9632,0.5852,0.6314,1,0.7512,0.9262,0.9448,0.6406,0.4286,0.3272,0.53,-0.3666,-0.5778,-0.6,-0.3666,0.0222,0.2112,0.2778,0.2666,0.1888,0.1666,0.0222,-0.3334,0.3778,0.5334,0.5112,0.0444,0.3556,0.1666,0.1778,0.5112,0.7888,0.6444,0.7,0.7778,1,0.6112,0.7112,0.3888,0.1334,0.4444,0.4,0.8778,0.2728,0.9394,1,0.4546,0.2728,0.7576,0.6364,0.2728,0.5152,0.2728,0.4546,0.2122,0.394,0.394,0.7576,0.7576,0.5758,0.5758,0.091,0.5152,1,1,0.5152,0.8788,0.9394,0.7576,0.7576,0.7576,0.7576,0.4546,0.7576,0.7576,-0.3334,0.2916,0.25,-0.25,-0.375,-0.0834,-0.125,-0.2916,-0.2916,-0.2084,-0.2084,-0.375,-0.5,-0.5,-0.4166,-0.25,-0.2916,-0.25,0.125,0.3334,0.75,0.75,0.5,0.5416,0.5416,0.625,0.9166,0.9166,0.8334,0.9584,1,0.9166,-0.1148,0.541,0.2786,-0.4754,-0.4098,-0.0164,0.0164,-0.7704,-0.246,-0.246,-0.6722,-0.3114,-0.1148,-0.1148,0.1476,-0.1476,-0.377,-0.836,-0.1148,0.0492,0.1804,0.705,1,0.8688,0.705,0.5738,0.5738,0.8032,0.6066,0.1804,0.1148,0.4426,-1,-1,-1,-1,-1,-1,-1,-0.7752,-0.8698,-0.7988,-0.7514,0.645,0.6804,0.7396,0.6686,0.5384,0.2782,0.1242,0.3964,-0.3964,-0.6804,-0.7396,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8926,-0.9146,-0.8634,-0.739,0.339,0.878,0.7512,0.6292,0.5804,0.4976,0.078,-0.4488,-0.761,-0.8512,-0.8756,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9696,-0.9934,-0.9668,-0.5668,-0.183,0.2224,0.0974,0.1,0.195,0.235,-0.0026,-0.4976,-0.49,-0.755,-0.87,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6286,-1,0.5714,1,1,0.5142,-1,-1,-0.9714,-0.7428,0.0286,0.8,-0.1142,-0.4858,-0.7714,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.1812,0.2062,0.2244,0.2324,0.2626,0.271,0.2898,0.312,0.3174,0.437,0.6862,0.6616,0.6952,0.706,0.7572,0.7854,0.7886,0.8294,0.8752,0.6612,-0.6134,-0.0942,-0.744,-0.5122,0.4756,0.9074,0.8878,0.4666,0.1204,0.1326,0.3614,0.3734,0.4216,0.265,0.6144,0.6144,1,0.6386,0.8554,0.8916,0.6266,0.3494,0.3734,0.3012,0.1686,0.1446,0.3494,0.1808,0.3494,0.253,0.2892,0.3254,0.3254,0.229,0.2772,0.0362,0.253,-0.0602,-0.2772,-0.3734,0,-0.3846,0.2948,0.3462,0.5512,0.3462,0.2948,0.5256,0.8206,0.3974,0.641,0.923,1,0.6154,0.0512,0.1924,0.3718,0.3462,-0.1924,0.859,-0.0384,0.3846,0.2564,0.3462,0.423,0.577,0.1026,0.2052,0.0512,-0.1026,0.141,-0.1924,-0.2094,-0.248,-0.1706,0.155,-0.093,-0.062,0.155,0.2404,0.124,-0.0388,0.5658,0.372,0.4342,0.4342,0.3024,0.3566,0.5968,0.1706,-0.0852,-0.0232,0.7286,0.7752,1,0.7054,0.814,0.814,0.783,0.3566,-0.062,-0.2714,-0.3024,-0.5348,-0.9658,1,-1,-1,-1,-1,-1,-1,-1,0.2666,0.2666,0.4444,0.6666,0.5334,0.8,0.7112,0.7778,0.8666,0.8444,0.7556,0.3112,0.7778,1,0.6222,0.4444,0.5556,0.6444,0.8666,0.8666,0.8,0.6,0.7556,0.6222,0.7334,0.4444,0.6222,0.5778,0.4,0.5112,0.2222,-0.2666,'5'
-0.7028,0.029,-0.0724,-0.529,-0.4492,-0.4492,-0.5942,-0.5798,-0.7608,-0.7682,-0.8406,-0.6232,-0.645,-0.6956,-0.5508,-0.8188,-0.9492,-0.7682,-0.616,-0.0218,0.5508,0.7102,0.2682,0.5434,0.5798,0.5724,0.8334,0.8768,0.8624,0.6086,0.7682,1,-0.539,-0.03,-0.2456,-0.509,-0.3414,-0.4012,-0.5508,-0.6048,-0.5508,-0.6168,-0.7486,-0.8264,-0.9042,-0.7724,-0.6048,-0.6408,-0.6048,-0.5808,-0.5688,-0.0898,0.8324,1,0.5568,0.491,0.6586,0.7426,0.8802,0.964,0.8802,0.6826,0.7964,0.8802,-0.5476,-0.0714,-0.3096,-0.6964,-0.3274,-0.4642,-0.4642,-0.5416,-0.488,-0.6072,-0.7142,-0.6726,-0.5536,-0.5714,-0.5416,-0.619,-0.762,-0.5714,-0.6608,-0.1726,0.6904,0.619,0.8512,0.6786,0.7084,1,0.9822,0.8036,0.6428,0.762,0.7322,0.881,-0.5316,-0.0684,-0.3106,-0.721,-0.4316,-0.6052,-0.4052,-0.4948,-0.5052,-0.8106,-0.8,-0.7578,-0.8894,-0.6,-0.4264,-0.6052,-0.4158,-0.5052,-0.6632,-0.2526,0.5316,0.6158,0.8894,0.7368,0.7948,1,0.9052,0.7948,0.7736,0.779,0.6948,0.9684,-0.541,-0.0984,-0.3606,-0.6066,-0.459,-0.552,-0.4426,-0.47,-0.6394,-0.8088,-0.7814,-0.683,-0.5738,-0.5628,-0.5246,-0.6722,-0.47,-0.5684,-0.7432,-0.011,0.448,0.9126,1,0.5792,0.7486,0.9072,0.836,0.7814,0.6722,0.6666,0.612,0.8852,-0.5646,-0.0816,0.0204,0.0612,-0.9728,-0.4694,-0.4694,-0.6122,-0.6734,-0.7142,-0.7552,-0.6326,-0.5374,-0.5782,-0.5714,-0.796,-0.4898,-0.517,-0.4422,-0.0204,0.5102,1,0.864,0.3606,0.7346,0.6734,0.5442,0.5578,0.4422,0.17,0.3266,0.4558,-0.6354,-0.6454,-0.34,-0.202,-0.7142,-0.4088,-0.2118,-0.0738,-0.3892,-0.7636,-0.4384,-0.2316,-0.7734,-0.8818,-0.7932,-0.1626,-0.1428,-0.202,-0.271,-0.2906,0.33,1,0.7242,0.3794,0.5764,0.862,0.4876,0.2808,0.2906,-0.1626,0.4188,0.537,-0.3104,0.3104,0.5172,-0.1034,-0.1034,0.2414,-0.0344,-0.1724,-0.5862,0.1724,0.1724,0.2414,0.1034,-0.3794,0.1034,-0.1724,0.0344,0.2414,-0.2414,-0.0344,0.6552,0.7242,0.6552,1,0.5862,0.862,0.862,0.931,0.862,0.862,0.931,0.862,-0.1892,0.4594,0.3514,-0.1892,-0.1352,-0.081,-0.1352,-0.1352,-0.3514,-0.2432,-0.1892,-0.1892,-0.2432,-0.2432,-0.2972,-0.4054,-0.5676,-0.6756,-0.4054,0.1892,1,0.946,0.1892,0.1892,0.4054,0.6216,0.5676,0.946,0.7298,0.6216,0.8378,0.8378,-0.3914,-0.0144,0.0144,0.0434,-0.4782,-0.2464,-0.1884,-0.6232,-0.6522,-0.5652,-0.884,-0.7682,-0.1014,-0.0724,-0.3914,-0.6812,-0.3624,-0.2174,-0.2174,0.1304,0.5652,1,0.7682,0.5362,0.884,0.6812,0.7102,0.7392,0.6812,0.3624,0.6232,0.5942,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7826,-0.6956,0.6232,0.4058,0.4782,0.3914,0.6376,0.4202,0.5652,0.4202,0.4202,-0.174,-0.5362,-0.7246,-0.6376,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8556,-0.811,-0.0274,0.3746,0.7114,0.7216,0.8556,0.835,0.8488,0.6598,-0.0688,-0.653,-0.7732,-0.8042,-0.8454,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.89,-0.43,0.0366,0.1566,-0.0086,0.0314,0.1542,0.057,0.14,-0.2286,-0.3458,-0.62,-0.95,-0.8868,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,-0.9428,-1,-1,-1,-1,-0.2858,1,0.9142,-0.5714,-0.7428,-0.9714,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.1258,0.0688,0.086,0.169,0.1198,0.0968,0.1118,0.1242,0.1822,0.2598,0.739,0.7788,0.7666,0.7728,0.7886,0.8278,0.832,0.8728,0.9332,0.8508,-0.6134,-0.247,-0.8076,-0.6152,0.1994,0.292,0.3642,0.1666,0.0826,0.101,0.3212,0.4128,0.5964,0.578,0.211,0.6146,0.7064,0.4678,0.8348,1,0.9816,0.7798,0.3762,0.4678,0.4678,0.4678,0.3394,0.4678,0.3394,0.578,0.6514,0.523,-0.0276,0.101,0.3212,0.211,0.3028,-0.0276,-0.3394,-0.7248,0.1704,0.037,0.1112,1,0.7334,0.763,0.6444,0.8222,0.6,0.3334,0.5704,0.6296,0.6444,0.7926,0.5852,0.4814,0.6148,0.526,0.1704,0.5408,0.0518,0.363,0.4074,0.3334,0.5112,0.363,0.4962,0.3038,0.1112,0.0814,0.037,-0.1408,0.0252,-0.2942,0.1596,0.7984,0.6302,0.311,0.563,0.8992,0.5462,0.4286,0.7142,0.7816,1,0.6638,0.2774,0.2942,0.6806,0.5462,0.1596,0.479,0.4454,0.6302,0.395,0.6134,0.832,0.731,0.7648,0.2606,0.126,0.4118,0.0924,-0.2268,-0.9794,1,-1,-1,-1,-1,-1,-1,-1,-0.356,-0.0848,-0.356,0.1526,0.661,0.4916,0.322,0.7628,-0.322,0.1186,0.7288,0.695,1,0.6272,0.5594,0.2882,0.4238,0.3898,0.6272,0.5932,0.5932,0.5594,0.4916,0.2204,0.0508,0.1864,0.2204,-0.0848,0.2542,0.1526,0.322,-0.1526,'5'
-0.744,-0.384,-0.2,-0.104,0.256,0.32,0.344,0.208,0.296,0.376,0.328,0.416,0.712,0.808,1,0.992,0.504,0.32,0.376,0.392,0.368,0.616,0.576,0.608,0.336,0.336,0.28,0.232,0.36,0.456,0.488,0.352,-0.751,-0.4114,-0.2906,-0.2226,-0.2906,0.1924,0.366,0.2378,0.283,0.3208,0.3056,0.449,0.6754,0.7056,1,0.9094,0.2452,0.2378,0.2528,0.2302,0.3132,0.4264,0.6,0.6452,0.215,0.117,0.1698,0.2076,0.2302,0.3284,0.1924,0.2378,-0.709,-0.4104,-0.2612,-0.2164,0.0598,0.3134,0.4402,0.291,0.2762,0.306,0.4254,0.485,0.7238,0.8508,1,0.7836,0.3358,0.1642,0.0896,0.1866,0.0672,0.3806,0.7014,0.597,0.2538,0.1866,0.1418,0.1194,0.1568,0.1792,0.2388,0.5298,-0.76,-0.504,-0.192,-0.064,0.224,0.448,0.496,0.464,0.376,0.264,0.536,0.624,0.784,1,0.976,0.624,0.32,-0.024,0.288,0.216,0.176,0.568,0.624,0.416,0.208,0.248,0.224,0.208,0.192,0.304,0.376,0.592,-0.7908,-0.5398,-0.272,0.021,0.2302,0.7574,0.7238,0.5314,0.339,0.3724,0.5398,0.8662,0.8242,1,0.8158,0.6736,0.4226,0.1632,0.2134,0.3222,0.1882,0.272,0.6234,0.5564,0.431,0.272,0.2888,0.2804,0.2804,0.3054,0.3974,0.749,-0.7902,-0.5454,-0.049,0.1188,0.4336,0.8532,0.7412,0.5524,0.4336,0.4966,0.7062,0.937,1,0.979,0.6994,0.5034,0.2378,-0.028,0.2168,0.2238,0.4266,0.2308,0.2588,0.3286,0.3776,0.3216,0.1818,0.2658,0.2098,0.2728,0.2308,0.8322,-0.897,-0.433,-0.1856,0.1134,0.3814,0.866,0.866,0.4948,0.6288,0.6908,0.732,1,0.9382,0.598,0.6082,0.5876,-0.0206,0.0206,0,0.031,0.7114,0.6082,-0.0206,-0.1444,0,0.0928,-0.0104,-0.0206,0.0104,0.031,0.0928,0.8556,-0.7022,-0.4468,-0.234,-0.0638,0.4042,0.4468,0.3618,0.149,0.3192,0.3618,0.2766,0.4042,0.7022,0.8298,1,1,0.5744,0.4042,0.4042,0.4894,0.4042,0.7022,0.617,0.5744,0.2766,0.3192,0.3192,0.1064,0.4042,0.3618,0.4894,0.4468,-0.3968,-0.2064,-0.0476,0.0476,0.0794,0.3016,0.4286,0.2698,0.365,0.4604,0.365,0.492,0.7142,0.8412,1,0.9366,0.492,0.2698,0.4286,0.4286,0.365,0.5874,0.5874,0.6508,0.4604,0.4604,0.3016,0.3334,0.4286,0.5556,0.5556,0.4286,-0.78,-0.58,-0.04,0.04,0.44,0.78,0.68,0.52,0.42,0.4,0.6,0.84,1,0.98,0.64,0.44,0.42,-0.1,0.18,0.28,0.5,0.3,0.22,0.38,0.42,0.38,0.12,0.28,0.16,0.22,0.2,0.82,-1,-1,-1,-1,-1,-1,-1,-1,-0.93,-0.9114,-0.1188,0.3752,-0.0722,-0.1188,0.1282,0.4966,0.4918,0.296,0.8742,0.944,0.7668,-0.4592,-0.711,-0.7202,-0.8228,-0.8694,-0.9068,-0.9208,-0.9254,-0.8648,-0.8928,-0.9114,-0.9114,-1,-1,-1,-1,-1,-1,-1,-1,-0.9724,-0.9634,-0.1064,0.4576,0.5994,0.6532,0.9746,0.9664,0.709,0.5644,0.8262,0.8448,0.4092,-0.5538,-0.859,-0.8732,-0.9046,-0.9262,-0.9426,-0.9456,-0.9478,-0.935,-0.9516,-0.9634,-0.9628,-1,-1,-1,-1,-1,-1,-1,-1,-0.9934,-0.9468,-0.3634,-0.3068,-0.2534,-0.26,-0.26,-0.2734,-0.3468,-0.3134,-0.415,-0.455,-0.47,-0.435,-0.5268,-0.49,-0.2368,-0.4534,-0.4,-0.4734,-0.7,-0.4534,-0.7,-0.9534,-0.9134,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,1,1,1,0.4,-0.6572,-0.9142,-0.9714,-1,-1,-0.8,1,1,1,1,-0.7142,-0.8,-0.8858,-0.9428,-0.9428,-0.9428,-0.9714,-0.8,-0.6858,-0.2572,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.56,-0.6824,0.3294,0.286,0.6158,0.6196,0.8732,1,-0.0434,0.087,0.6086,0.6956,0.5218,0.6086,0.7826,1,0.913,0.6956,0.826,0.8696,0.7826,0.6522,0.6522,0.7826,0.8696,0.7392,0.6522,0.3478,0.3914,0.5652,0.6086,0.3478,0.7826,0.6086,0.5652,0.3914,0.2608,-0.087,-0.2608,-0.6522,-0.3514,-0.1532,0.4414,0.5136,0.3154,0.3694,0.7478,1,0.8738,0.4414,0.5676,0.8378,0.5316,0.3154,0.3874,0.5496,0.8018,0.7478,0.5316,0.2432,0.1712,0.2612,0.2072,0.3694,0.5496,0.4054,0.4054,0.4594,0.3334,-0.2972,-0.4054,-0.8198,-0.238,0.1048,0.638,0.619,0.4286,0.4666,0.8096,1,0.7714,0.5238,0.619,0.6762,0.4666,0.3714,0.3714,0.4666,0.6572,0.5428,0.162,-0.0096,0.1428,0.2762,0.238,0.4858,0.3714,0.4476,0.3142,0.4476,0.3714,-0.0666,-0.181,-0.7334,1,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.4846,-0.3608,0.732,0.9176,0.3608,0.2372,0.7732,0.5464,0.3814,0.3196,0.7732,0.6908,0.5258,0.5876,0.7938,0.9588,0.6908,0.7938,0.6702,0.5052,0.7114,0.9794,0.9382,1,0.7114,0.6702,0.9588,0.835,0.835,0.7114,0.7938,-0.4226,'6'
-0.6666,-0.0318,-0.1032,0.008,0.0396,0.4286,0.4762,0.3334,0.4206,0.246,0.254,0.4604,0.5318,1,0.9366,0.746,0.627,0.0794,0.119,-0.0238,0.127,0.3096,0.5238,0.5476,0.3888,0.1666,0.0556,-0.2222,-0.1826,-0.0634,-0.2936,0.1904,-0.478,0.0956,-0.0442,0,0.0882,0.1838,0.5368,0.4926,0.5588,0.397,0.4486,0.1764,0.3382,1,0.9926,0.4926,0.353,0.0294,-0.147,-0.2206,-0.1544,-0.022,0.3676,0.2868,0.4486,0.228,-0.0148,0.0956,0.1618,-0.0442,-0.0882,0.3456,-0.4448,0.1246,0.0106,-0.0534,0.0106,0.0392,0.5374,0.4946,0.6512,0.452,0.395,0.5588,0.5516,1,0.9146,0.3594,-0.0178,-0.0106,-0.153,-0.3452,-0.1316,0.0534,0.3808,0.4804,0.5018,0.1672,0.096,-0.0818,-0.0818,-0.1104,-0.1174,0.3238,-0.5522,-0.112,-0.1866,-0.0522,0.2314,0.4254,0.7164,0.4702,0.4926,0.5598,0.4552,0.6866,0.9552,1,0.5746,0.515,0.2762,0.0522,0.1642,-0.2388,-0.3284,0.1642,0.3956,0.3956,0.1568,0.1716,0,-0.3432,-0.2686,-0.2538,-0.194,0.3358,-0.6832,-0.3478,-0.205,-0.1552,0.2546,0.4782,0.5652,0.2982,0.385,0.559,0.5528,0.6832,1,0.8386,0.7018,0.3168,0.267,0.1242,-0.0372,-0.1678,-0.205,0.0372,0.1552,0.3354,0.2796,0.0994,-0.1056,-0.174,-0.1428,-0.2298,0.0248,0.3354,-0.813,-0.5264,-0.3396,-0.1714,0.028,0.5576,0.5888,0.3084,0.4392,0.5328,0.5826,0.8816,1,0.7072,0.676,0.296,-0.0156,0.0156,0.2834,0.109,-0.0218,0.1714,0.2024,0.3272,0.2648,0.2088,0.0156,0.0094,0.0032,-0.0778,0.5514,0.6012,-0.8468,-0.3468,-0.2338,-0.0968,0.3468,0.4838,0.5242,0.3952,0.3146,0.3226,0.387,0.7984,1,0.6774,0.4678,0.0242,-0.1048,-0.2662,-0.2904,-0.2984,-0.1612,-0.258,0.008,0.0322,-0.129,-0.1694,-0.258,-0.3548,-0.4758,-0.2096,0.1048,0.387,-0.625,0.0624,0.125,0.3124,0.1876,0.8124,0.8124,0.4376,0.4376,0.5,0.375,0.375,0.375,0.875,0.8124,0.8124,0.9376,0.4376,0.5624,0.1876,0.1876,0.5,1,0.9376,0.6876,0.125,-0.125,-0.125,-0.375,-0.0624,-0.375,0.3124,-0.6316,-0.1052,-0.3684,-0.0526,0.2106,0.2632,0.3158,0.2106,0.4736,0.2632,0.2632,0.3158,0.6316,1,0.9474,0.6842,0.579,0.0526,-0.0526,-0.0526,0.1578,0.3158,0.5264,0.4736,0.2632,0.1578,0.1052,0,-0.0526,-0.1578,-0.2106,0.1578,-0.6956,-0.2826,-0.087,-0.0218,0.2608,0.5218,0.587,0.326,0.5,0.6086,0.6304,0.826,1,0.8478,0.8696,0.3914,0.2392,0.174,0.1304,0.0652,-0.0652,0.1522,0.2608,0.4782,0.3696,0.3478,0.0218,-0.0434,-0.0434,-0.1086,0.1304,0.4348,-1,-1,-1,-1,-1,-1,-1,-1,-0.876,-0.8468,-0.7372,0.1678,0.4672,0.6424,0.7008,0.584,0.4306,0.7008,0.8322,0.6132,0.7738,-0.073,-0.7884,-0.6934,-0.7592,-0.7956,-0.8614,-0.8978,-0.9052,-0.8832,-0.8832,-0.8468,-0.8906,-1,-1,-1,-1,-1,-1,-1,-1,-0.9472,-0.9424,-0.8098,-0.3686,-0.203,-0.1678,-0.0986,-0.1514,-0.142,0.263,0.7078,0.9542,0.7348,-0.4706,-0.8522,-0.8298,-0.8556,-0.8662,-0.872,-0.8874,-0.9072,-0.926,-0.9296,-0.9248,-0.9448,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.9734,-0.71,-0.395,-0.5,-0.565,-0.435,-0.36,-0.39,-0.336,-0.348,-0.316,-0.428,-0.46,-0.4468,-0.3234,-0.1268,-0.1534,-0.25,-0.0434,-0.3968,-0.5734,-0.7068,-0.7534,-0.8534,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,0.6,1,1,0.0572,-0.8286,-1,-0.9714,-0.8286,-0.6572,0,-0.3714,1,1,0.9428,-0.7142,-0.9428,-0.8572,-1,-0.8286,-0.7142,-0.9428,-0.9428,-0.8858,-0.8858,1,1,1,1,1,1,1,1,1,1,-0.8396,-0.9022,-1,-1,-1,-1,-0.9424,-0.9142,-0.8688,-1,-0.6266,-0.5412,-0.811,-0.534,-0.203,-0.2184,-0.2336,0.1416,0.1048,-0.1238,0.7524,0.8286,0.5048,0.8858,1,0.562,0.7714,0.7524,0.9238,0.6952,0.581,0.6572,0.581,0.6572,0.4858,0.4476,0.3714,0.4666,0.619,0.581,0.5048,0.4476,0.1048,0.4476,0.4286,0.4666,-0.238,-0.1238,-0.219,-0.7334,0.2394,0.155,0.662,0.7042,0.4648,0.676,0.5916,0.831,0.8592,0.7464,0.8028,0.8874,0.9718,0.7888,0.2816,0.5212,0.7184,0.8028,0.2394,0.3944,0.338,0.5634,0.3662,0.5212,0.5212,0.3522,0.493,0.5492,0.1408,0.2254,0.0986,-0.2816,-0.2588,-0.1676,0.3908,0.3502,0.3096,0.3808,0.7056,0.6852,0.6346,0.3096,0.8578,0.9898,0.7258,0.3706,0.3198,0.462,1,0.8274,0.462,0.5736,0.8172,0.7158,0.594,0.6346,0.3402,0.198,0.0356,0.2792,0.1878,0.1878,0.0558,-0.269,-0.9882,1,-1,-1,-1,-1,-1,-1,-1,-0.492,-0.0952,0.1904,0.2858,0.0794,0.3492,0.4604,0.238,0.1588,0.238,0.0634,0.4444,0.635,0.4604,0.4126,0.7142,0.635,0.4444,0.6032,0.6508,0.6666,0.6032,0.3968,0.5556,0.9048,1,0.9206,0.635,0.619,0.5396,0.4126,0.2222,'6'
-0.665,-0.2058,0.091,0.2058,-0.2728,-0.4258,-0.2918,-0.0622,0.043,-0.0718,-0.1196,0.1196,0.1292,0.2536,0.2918,0.378,0.8468,0.799,0.6364,0.5886,0.7034,0.9712,0.9234,0.933,0.7894,0.9426,1,1,0.8468,0.7224,0.579,0.3492,-0.7028,-0.3424,0.1802,0.2702,-0.3244,-0.3694,-0.4414,-0.09,-0.045,-0.036,0,0.2072,0.1802,0.2072,0.1712,0.3334,0.4774,0.7928,0.8198,0.6036,0.6666,0.8108,1,1,0.6396,0.4234,0.5586,0.7568,0.7388,0.4954,0.2792,0.2972,-0.7868,-0.4508,0.4754,0.5246,-0.164,-0.336,-0.3934,0,-0.0574,-0.3032,0.1066,0.1394,0.2868,0.164,0.1312,0.2622,0.5738,0.9344,0.9262,0.6722,0.7622,0.9344,1,0.8442,0.5492,0.4918,0.459,0.5492,0.7132,0.6476,0.664,0.5246,-0.8936,-0.232,0.4372,0.4296,-0.5818,-0.4524,-0.2776,-0.0418,-0.27,-0.3232,-0.0722,-0.0494,-0.0266,-0.2396,-0.019,0.0266,0.2244,0.8708,1,0.6806,0.4372,0.5362,0.8404,0.7414,0.1026,0.2168,0.232,0.2776,0.2624,0.3992,0.4524,0.384,-0.749,-0.085,0.7004,0.6924,-0.174,-0.0608,0.1256,0.255,-0.0608,-0.1498,-0.0122,-0.0932,-0.1336,-0.0688,-0.1094,-0.1418,-0.004,0.6438,0.6276,0.7894,0.6032,0.7814,1,0.7814,0.2308,0.1822,0.2308,0.2064,0.166,0.2874,0.3198,0.2064,-0.5242,-0.1854,0.2742,0.2338,0.008,-0.0484,0.0888,0.2258,-0.1936,-0.3064,-0.4194,-0.2662,-0.137,-0.0726,-0.2742,-0.3064,-0.1774,0.0968,0.7822,0.863,0.7096,0.9516,1,0.5726,0.2904,0.3388,0.1936,0,0.0404,0.2016,0.121,0.1694,-0.3662,0.1912,0.3224,0.2786,-0.3006,-0.541,-0.5956,-0.3224,-0.552,-0.5082,-0.7924,-0.5956,-0.4536,-0.6394,-0.5846,-0.53,-0.5192,0.2022,0.4426,0.6394,0.9234,0.9344,1,0.53,0.4316,0.3334,-0.0164,0.1148,0.0274,0.0054,-0.0054,0.1584,-0.721,-0.2558,0.0232,0.0698,-0.2558,-0.4418,-0.3488,-0.1162,-0.0232,-0.1628,-0.1162,0.0232,-0.0232,0.2094,0.0698,0.3488,0.7674,0.721,0.4884,0.3024,0.5814,0.8604,0.8604,0.721,0.814,0.9534,0.9534,1,0.907,0.814,0.5814,0.3024,-0.551,-0.102,0.2244,0.3062,-0.0612,-0.3062,-0.102,0.0612,0.102,0.0612,0.1428,0.2244,0.2244,0.3062,0.347,0.5102,0.796,0.7552,0.796,0.6734,0.796,0.9184,0.9592,0.9592,0.8368,0.9184,1,0.9184,0.7552,0.5102,0.4694,0.3878,-0.976,-0.012,0.6626,0.6144,-0.5904,-0.229,-0.1326,0.012,-0.3976,-0.1566,-0.012,-0.0362,-0.0602,-0.0362,0.1566,0.1084,0.3254,0.9518,0.9036,0.7832,0.5904,0.8554,1,0.6386,0.253,0.253,0.2048,0.1808,0.3012,0.3976,0.3494,0.3254,-1,-1,-0.9444,-0.937,-0.937,-0.9592,-0.9334,-0.8482,-0.8888,-0.6704,-0.4296,-0.2296,-0.1926,-0.2112,-0.0148,0.2408,0.3704,0.874,0.774,0.0112,-0.1408,-0.2556,-0.5704,-0.837,-0.8112,-0.7222,-0.7222,-1,-1,-1,-1,-1,-1,-1,-1,-0.9366,-0.9412,-0.5158,-0.9048,-0.481,1,1,1,1,0.8888,0.8556,0.5032,0.5,0.4604,0.438,0.5048,0.3302,0.0396,0.0238,-0.4762,-0.654,-0.7936,-0.8444,-0.819,-0.7588,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.9734,-0.6468,-0.92,-0.07,0.7466,0.8166,0.4566,0.2332,-0.0468,-0.1268,-0.08,-0.1934,-0.29,-0.265,-0.545,-0.48,-0.055,0.105,-0.605,-0.3034,0.0332,-0.2934,-0.8134,-0.7768,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,0.4572,0.3714,1,1,1,-0.1428,0.3428,0.9428,0.9428,-0.0286,-0.7714,-0.6286,-0.6572,-0.6858,-0.4572,-0.4572,-0.4572,1,1,0.2858,-0.5142,-0.3428,-0.4572,-0.4,-1,-1,-1,-1,-1,-1,0.5016,0.5016,0.5312,0.5312,0.5348,0.5174,0.502,0.5144,0.558,0.5646,0.7808,0.7808,0.7842,0.7842,0.7136,0.6828,0.625,0.5562,0.4792,0.4244,-0.6,-0.647,1,1,0.8476,0.638,0.446,1,-0.435,-0.41,-0.26,-0.06,0.14,0.235,0.13,0.1,-0.09,0.21,0.26,0.49,0.73,0.85,0.95,1,0.81,0.805,0.735,0.87,0.67,0.715,0.885,0.89,0.955,0.77,0.75,0.805,0.62,0.56,0.51,0.35,-0.7564,-0.6346,-0.6006,-0.2622,-0.2588,-0.1336,-0.0762,-0.1506,-0.0152,0.2554,0.2488,0.5532,0.7124,0.8748,1,0.973,0.8206,0.7868,0.7936,0.9052,0.9628,0.9424,0.929,0.8544,0.885,0.8274,0.648,0.604,0.5296,0.462,0.3502,-0.154,-0.2986,-0.1484,-0.2024,-0.2832,-0.2138,-0.1098,-0.0058,0.0212,0.449,0.287,0.5376,0.8766,0.8766,0.973,1,0.8882,0.7534,0.6146,0.7148,0.8304,0.7572,0.6108,0.8882,0.6146,0.5722,0.4644,0.5762,0.5298,0.1214,0.079,0.129,-0.079,0.3874,-1,1,-1,-0.2,-1,-0.8,0.0666,-1,-0.3174,-0.0318,-0.1428,0.1112,0.0318,-0.0158,0.1112,-0.0952,-0.0476,0.3174,0.492,0.4444,0.3174,0.5714,0.5396,0.3492,0.9206,1,0.7778,0.9366,0.8412,0.619,0.3174,0.4604,0.1904,0.1746,0.4762,0.4286,0.1112,0.2698,0,-0.1588,'7'
-0.5,0.024,-0.0904,-0.3374,-0.2772,-0.1988,-0.1808,-0.247,-0.0904,-0.253,-0.3674,-0.259,-0.1506,-0.1808,-0.1868,-0.1626,0.1746,0.3856,0.2048,0.3012,0.6326,0.6506,0.8856,0.7772,0.8856,0.7228,0.8796,0.9458,1,0.6868,0.6446,0.3796,-0.435,0.1238,-0.0032,-0.0794,-0.1682,-0.1174,-0.1492,-0.2254,-0.054,-0.2634,-0.2952,-0.1238,-0.0604,-0.1302,-0.1682,-0.2,0.1682,0.365,0.4032,0.4794,0.7206,0.6698,0.9936,0.8666,0.892,0.727,0.8222,0.9746,1,0.9048,0.8096,0.5366,-0.352,0.1838,0.0468,-0.0778,-0.109,-0.0592,-0.053,-0.1278,-0.0404,-0.2336,-0.2524,-0.0966,-0.0716,-0.2088,-0.2772,-0.2398,-0.0468,0.134,0.8194,0.8754,0.7632,0.676,0.7196,0.8566,1,0.7694,0.8006,0.782,0.732,0.8816,0.7384,0.8816,-0.3576,0.1524,-0.0464,-0.1722,-0.1456,-0.1656,-0.2252,-0.2914,-0.1524,-0.4304,-0.4304,-0.1722,-0.139,-0.0464,-0.2516,-0.3178,-0.3708,0.3378,0.5762,0.9736,1,0.8676,0.8146,0.9868,0.914,0.9272,0.7484,0.6954,0.7218,0.7484,0.894,0.914,-0.4276,0.0216,-0.2062,-0.2246,-0.4154,-0.4092,-0.2924,-0.3108,-0.3354,-0.6308,-0.5324,-0.4646,-0.2862,-0.4216,-0.6246,-0.3724,-0.36,-0.163,0.397,0.4954,1,0.9508,0.5816,0.7724,0.8584,0.7046,0.5754,0.4892,0.5384,0.5138,0.6,0.6062,-0.1158,0.5042,0.1736,0.0248,-0.3224,-0.2976,-0.1652,-0.1404,-0.4794,-0.7768,-0.5868,-0.372,-0.3472,-0.3058,-0.3554,-0.6776,-0.5454,-0.314,0.1488,0.5786,0.9504,1,0.8348,0.5206,0.4958,0.6116,0.314,0.372,0.2232,0.2644,0.2892,0.405,-0.5172,0.069,-0.115,-0.046,-0.5632,-0.5402,-0.6666,-0.6092,-0.5288,-0.4598,-0.4022,-0.4252,-0.2068,0.5288,0.4368,0.184,0.046,0.2644,0.4828,0.4598,1,0.7472,0.4942,0.5288,0.8736,0.816,0.6782,0.4138,0.4482,0.115,0.5172,0.8506,-0.5,0.0454,-0.0454,-0.5,-0.3182,-0.2272,-0.1364,-0.1818,-0.091,-0.1818,-0.2728,-0.1818,-0.091,0,0,-0.091,0.0454,0.3636,0.3182,0.2728,0.591,0.6818,0.8636,0.9546,1,0.909,0.8636,0.7272,0.7728,0.591,0.591,0.5,-0.5,0.0454,-0.0454,-0.3182,-0.2728,-0.1364,-0.2728,-0.409,-0.0454,-0.1364,-0.3636,-0.2728,-0.1818,-0.2728,-0.3182,-0.2728,0.1818,0.409,0.2272,0.3636,0.5454,0.591,0.8182,0.7728,0.8182,0.7728,0.7728,0.9546,1,0.7272,0.591,0.409,-0.3802,0.0986,0.0422,0.1268,-0.324,-0.3522,-0.2676,-0.2676,-0.4084,-0.493,-0.6056,-0.5492,-0.4084,-0.8028,-0.8028,-0.3522,-0.493,-0.0422,0.324,0.4366,0.9718,0.8592,0.3522,0.9718,1,0.7746,0.5774,0.4648,0.6056,0.5492,0.493,0.5492,-1,-1,-1,-1,-0.8842,-0.8778,-0.8586,-0.8778,-0.8456,-0.4598,-0.1318,0.254,0.4726,0.6914,0.73,0.8778,0.5242,0.1962,0.1962,0.0868,0.3054,-0.447,-0.5434,-0.5562,-0.6848,-0.6206,-0.717,-0.7556,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.906,-0.9018,-0.6026,-0.4316,-0.1496,-0.0086,0.156,0.391,0.6154,0.6924,0.844,0.8526,0.6496,0.3418,0.0042,-0.3932,-0.391,-0.5898,-0.6752,-0.7286,-0.812,-0.8142,-0.844,-0.8654,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9134,-0.94,-0.2134,0.4932,0.6966,0.3232,0.0366,-0.216,-0.148,-0.212,-0.156,-0.088,0.056,0.016,-0.12,-0.61,-0.6568,0.04,-0.24,-0.45,-0.55,-0.8134,-0.8268,-0.7868,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,0.3428,-0.4,-0.2858,-0.4858,-0.6858,-0.7428,-0.8572,-0.8858,-0.9142,-0.4,0.5142,0.1428,-0.4,-0.5142,-0.4,-0.6572,-0.6286,-0.9142,-0.8286,-0.8572,-1,-1,-1,-1,-1,0.6316,0.6158,0.6102,0.6132,0.6066,0.5934,0.5744,0.5624,0.5248,0.3462,0.9396,0.983,0.956,0.8694,0.9024,0.882,0.8594,0.8574,0.8622,0.7026,-0.6666,-0.4236,0.1902,0.282,0.4466,0.5534,0.7308,-0.1666,-0.4308,-0.476,-0.3954,-0.2444,-0.204,-0.1234,-0.0882,-0.1032,-0.0932,0.0328,0.2494,0.4812,0.5718,0.9396,1,0.8338,0.7834,0.8288,0.7732,0.864,0.7984,0.6978,0.1586,0.2746,0.194,0.33,0.335,0.2392,0.194,0.0882,0.0026,-0.612,-0.656,-0.6652,-0.4496,-0.3394,-0.4082,-0.3716,-0.3624,-0.2798,-0.0458,0.0596,0.3578,0.4496,0.656,0.656,0.9358,0.8944,1,0.9724,0.7706,0.9588,0.789,0.8166,0.7522,0.7294,0.656,0.7936,0.601,0.5458,0.5046,0.2156,0.1422,-0.101,0.1062,0.2086,-0.059,0.0394,-0.0276,-0.0866,0,0.0196,0.3426,0.63,0.6338,0.8308,0.9174,0.9804,1,0.8898,0.7126,0.8464,0.6812,0.7048,0.744,0.8622,0.6968,0.5984,0.5708,0.5236,0.6968,0.685,0.3308,0.244,-0.0276,-0.1772,-0.1282,-1,-1,1,0.2,-1,-1,0.0334,-1,-0.2244,0.2448,0.3674,0.347,0.2858,0.449,0.449,0.5306,0.5102,0.3878,0.7142,0.7552,0.7756,0.5918,0.6938,0.7142,0.898,0.8776,0.3878,0.9592,0.9184,0.7346,0.6326,0.8368,0.7756,0.7552,0.6734,1,0.4898,0.5918,0.8368,0.5714,'7'
-0.8054,-0.5568,0.0486,0.0378,-0.1136,-0.2216,-0.2648,0.027,-0.1352,-0.0702,0.0594,0.1028,0.1568,0.2108,0.0918,0.1136,0.4162,0.6324,1,0.8378,0.6972,0.7838,0.7946,0.8378,0.5676,0.4162,0.4378,0.4054,0.4594,0.546,0.654,0.6108,-0.8,-0.2556,0.4112,0.3888,-0.1778,-0.0112,-0.0112,0.1,-0.1,-0.1666,-0.0334,0.1444,0.0334,0.1334,0.1556,0.0778,0.1334,0.5222,0.6666,0.8,0.8,0.8888,1,0.7888,0.7,0.7334,0.4444,0.4222,0.5556,0.6334,0.6,0.6556,-0.8296,-0.2108,0.2556,0.166,-0.2914,-0.166,-0.1122,-0.0672,-0.2108,-0.2736,-0.2736,-0.0314,-0.148,-0.1032,0.0044,-0.157,-0.0314,0.3902,0.9192,0.8654,0.5964,0.704,0.9462,1,0.5964,0.5606,0.5246,0.408,0.4618,0.5156,0.5964,0.5426,-0.8706,-0.0248,0.4726,0.3532,-0.2636,-0.0946,-0.0348,-0.0646,-0.4726,-0.1442,-0.1344,-0.0646,-0.194,-0.1144,-0.1244,-0.2438,0.0646,0.3732,0.7014,0.9502,0.8706,0.7512,0.8308,1,0.9402,0.7314,0.5024,0.5324,0.6616,0.5224,0.7014,0.7412,-0.3264,0.1192,0.7928,0.6994,-0.3368,-0.3368,-0.0466,0.057,-0.4508,-0.399,-0.2642,-0.3368,-0.1088,-0.1814,-0.171,-0.0984,0.171,0.285,0.8446,1,0.9482,0.7202,0.7824,0.7824,0.7306,0.513,0.3576,0.2228,0.0156,0.2746,0.4196,0.316,-0.7576,0.0758,0.8636,0.7424,-0.0606,-0.2272,-0.1666,-0.0152,-0.394,-0.1818,-0.5454,-0.3788,-0.409,-0.091,-0.1516,-0.3182,-0.1666,0.2728,0.5758,0.8636,0.6516,0.8182,0.7728,1,0.7576,0.2122,-0.197,0.106,0.394,-0.0304,0.5454,0.5606,-0.188,0.1428,0.9098,0.7744,0.1578,0.1128,0.0978,-0.1278,0.0376,-0.2632,-0.173,-0.0526,-0.188,0.0676,0.173,0.1578,0.4586,0.7142,0.8046,0.5038,0.5338,0.9098,0.6992,0.9248,1,0.7294,0.4136,0.3534,0.3534,0.2632,0.2932,0.188,-0.8334,-0.4166,-0.0416,-0.0416,-0.125,-0.3334,-0.375,0,-0.0416,-0.0834,0.0416,0.0416,0.0834,0.1666,0.0416,0.125,0.4166,0.75,1,0.9584,0.6666,0.6666,0.6666,0.7084,0.5416,0.4584,0.4166,0.375,0.4584,0.5,0.5834,0.6666,-0.8432,-0.1372,0.3334,0.2942,0.0588,0.0588,0.1372,0.1764,0.0588,0.0588,0.1372,0.2156,0.2156,0.2156,0.2156,0.255,0.451,0.7648,0.7254,0.7254,0.7648,0.8824,1,0.9216,0.7254,0.7254,0.6078,0.451,0.6078,0.647,0.6862,0.4902,-0.3648,0.0824,0.6236,0.5294,-0.3176,-0.4118,-0.247,-0.1294,-0.5294,-0.247,-0.153,-0.4824,-0.1764,-0.2942,-0.0118,-0.0118,0.0824,0.0352,0.8588,1,0.8118,0.5294,0.5764,0.6942,0.5764,0.3176,0.2,0.0824,-0.0588,0.4352,0.4118,0.153,-1,-1,-1,-1,-0.9254,-0.9094,-0.824,-0.2694,-0.1306,0.0506,0.0826,0.2106,0.8506,0.9574,0.5574,0.6746,0.5254,0.3706,0.2426,-0.1894,-0.6374,-0.6694,-0.7174,-0.8186,-0.8186,-0.8506,-0.8186,-0.7334,-0.744,-0.7226,-0.856,-0.8454,-0.8774,-1,-1,-1,-1,-0.949,-0.9452,-0.7188,0.145,-0.3852,1,1,0.8568,0.8506,0.8868,0.5892,0.6454,0.15,-0.303,-0.5408,-0.7138,-0.8432,-0.8842,-0.8968,-0.695,0.1226,0.0578,-0.0678,-0.2706,-0.165,-0.5444,-0.7872,-0.873,-0.9054,-1,-1,-1,-1,-0.98,-0.96,-0.6568,-0.1868,-0.3534,0.1666,0.3732,0.18,0.08,-0.0268,0.0266,0.0266,-0.0534,-0.5268,-0.74,-0.6534,-0.6468,-0.7,-0.7468,-0.5068,0.6832,0.76,0.6966,0.66,0.5966,0.5332,0.1166,-0.45,-0.6368,-1,-1,-1,-1,-0.6858,0.7714,1,1,1,1,-0.6858,-1,-0.8,-0.8572,-0.7428,0.5142,1,1,1,1,1,0.1428,0.0858,1,1,-0.5142,-0.8,-0.9142,-0.3714,0.4572,0.7714,0.3714,-0.2572,1,1,1,1,1,1,1,1,0.9408,0.6404,0.565,0.565,0.4614,0.4614,0.5668,0.522,0.6122,0.6326,0.6966,0.5388,-0.4934,-0.7294,1,0.9154,0.8246,0.9092,0.7126,1,-0.1066,0.401,0.335,0.1776,0.066,0.1676,0.3706,0.3554,0.802,0.8478,0.929,0.8528,0.7716,0.4264,0.5076,0.8172,1,0.67,0.797,0.8478,0.7512,0.6192,0.4314,0.3654,0.203,0.6904,0.7614,0.594,0.3198,0.3046,0.2386,-0.335,-0.224,0.377,0.2404,0.2568,0.1256,0.3278,0.3552,0.3716,0.7378,0.858,0.8908,1,0.7486,0.5792,0.7104,0.6722,0.989,0.6338,0.3716,0.4972,0.5574,0.4864,0.2786,0.1694,0.4098,0.7596,0.8252,0.7978,0.5192,0.5192,0.2896,-0.164,-0.2236,0.2362,0.0802,0.1562,0.27,0.2742,0.3756,0.4008,0.6244,0.903,0.9746,0.9874,0.8186,0.616,0.6836,0.7384,1,0.7638,0.54,0.7216,0.557,0.481,0.2194,0.2448,0.7468,0.9324,0.9536,0.8144,0.5908,0.6034,0.4556,0.1308,0.0802,-1,-1,1,1,-1,-1,-0.1666,-1,-0.6352,-0.4592,-0.5724,-0.2328,-0.2704,-0.3082,-0.2452,-0.2328,-0.0188,-0.0818,0.371,0.5974,0.585,1,0.9748,0.849,0.7988,0.7988,0.7232,0.5346,0.8114,0.7484,0.9748,0.8238,0.761,0.8238,0.912,0.8868,0.6226,0.4214,0.2452,0.0944,'8'
-0.7584,-0.3154,0.1544,0.1208,-0.3088,-0.1342,-0.0806,-0.302,-0.2014,-0.094,-0.114,-0.0672,0.047,0.0738,0.0402,-0.0336,0.1208,0.6174,0.9262,0.812,0.7516,1,0.9328,0.698,0.4966,0.5234,0.349,0.4162,0.3422,0.51,0.463,0.604,-0.619,-0.3122,0.1322,0.1534,-0.2752,-0.1428,-0.1006,-0.2434,-0.164,-0.053,-0.1852,0.0212,0.1746,0.1534,0.1482,-0.037,-0.1164,0.5238,0.9048,0.7884,0.783,1,0.9418,0.672,0.4814,0.492,0.3492,0.4022,0.4656,0.508,0.6138,0.7196,-0.6524,-0.2866,0.2804,0.2866,-0.3476,-0.189,-0.1342,-0.183,-0.2134,-0.0976,-0.1036,0.0182,0.189,0.244,0.244,-0.1402,-0.2256,0.2682,0.7622,0.872,1,0.9878,0.9696,0.6768,0.4208,0.3842,0.3292,0.2196,0.2988,0.4878,0.4024,0.5426,-0.618,-0.3134,0.3492,0.3492,-0.4508,-0.1284,-0.0866,-0.218,-0.218,-0.1462,-0.2,0.0448,0.1702,0.1224,0.0686,-0.3374,-0.2836,0.4866,0.797,0.8626,0.9164,1,0.8626,0.612,0.409,0.3432,0.188,0.2716,0.2538,0.3074,0.409,0.4388,-0.6524,-0.3192,0.4468,0.4184,-0.8866,-0.1348,-0.2128,-0.1844,-0.4398,-0.4326,-0.2554,-0.2696,-0.2056,-0.1206,-0.149,-0.2412,-0.4894,0.5036,0.7092,1,0.929,0.9788,0.993,0.9078,0.5036,0.4752,0.4114,0.2198,0.3688,0.468,0.5036,0.454,-0.6476,-0.082,0.754,0.6804,-0.4672,-0.5902,-0.3606,-0.418,-0.5246,-0.6804,-0.5328,-0.3114,-0.3688,-0.3196,-0.2378,-0.4098,-0.4508,0.1968,0.5082,0.5492,0.746,0.9836,1,0.459,0.3524,0.1558,-0.0738,-0.1476,-0.0082,0.0082,0.0738,0.0738,-0.6048,-0.0778,0.7006,0.7126,-0.6048,-0.7844,0.2336,0.4252,-0.2934,-0.3414,-0.7006,-0.3532,-0.2456,-0.6168,-0.4492,-0.1258,0.1616,0.2216,0.521,0.9042,0.9402,1,0.6048,0.6886,0.2216,0.3414,-0.1856,0.03,-0.018,-0.018,-0.3414,-0.461,-0.5,0.375,0.4376,0.25,0,-0.3124,0.0624,-0.25,-0.0624,0.25,0.125,0,-0.1876,0,0.0624,-0.1876,0.3124,0.0624,0.625,0.875,0.1876,1,0.875,0.3124,0.5624,0.625,0.3124,0.4376,0.3124,0.4376,-0.0624,0.0624,-0.7084,-0.0834,0.25,0.25,-0.1666,0,0.0416,-0.125,0,0.0416,-0.0416,0.0834,0.1666,0.1666,0.2084,0.2084,0.125,0.8334,1,0.9166,0.875,1,0.9584,0.9166,0.625,0.5416,0.5,0.5,0.5416,0.625,0.7916,0.75,-0.6756,-0.1622,0.4864,0.4324,-0.5406,-0.6216,-0.3514,-0.2972,-0.3514,-0.3514,-0.4594,-0.3514,-0.2162,-0.1622,-0.1352,-0.2702,-0.4864,0.081,0.2702,0.2162,0.3514,1,0.8918,0.4324,0.3784,0.4054,0.081,-0.054,0.1622,0.2432,0.2162,0.2702,-1,-1,-1,-1,-1,-1,-1,-0.8638,-0.9068,-0.8854,-0.8924,0.3548,0.699,0.7132,0.9498,0.9354,0.9426,0.8208,0.534,0.7276,0.025,-0.5914,-0.699,-0.7132,-0.7992,-0.7634,-0.7778,-0.8208,-0.8494,-0.785,-0.7778,-0.8352,-0.8638,-1,-1,-1,-1,-1,-1,-1,-0.9356,-0.937,-0.8976,-0.7894,0.0914,0.9692,0.7162,0.4148,0.2626,0.0972,0.0124,-0.2128,-0.3284,-0.687,-0.861,-0.9034,-0.9092,-0.8976,-0.6488,-0.2392,-0.0066,-0.1134,-0.1632,-0.2846,-0.2934,-0.5376,-1,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.86,-0.36,-0.532,-0.116,-0.084,-0.14,-0.184,-0.288,-0.292,-0.092,-0.588,-0.67,-0.78,-0.8334,-0.8068,-0.8668,-0.0468,0.6532,0.6932,0.7366,0.8032,0.7566,0.6332,0.6766,-1,-1,-1,-1,-1,-1,-1,-0.6286,-0.3428,0.8286,1,1,1,-0.4,-0.3428,-0.8,-0.8286,-0.7428,0.3142,1,1,0.4,-0.7142,-1,1,1,1,-0.4572,-0.8286,-0.9714,-0.8572,-0.6572,-0.6572,0.822,0.8384,0.825,0.8378,0.8256,0.8192,0.7844,0.7474,0.703,0.5448,0.4586,0.4788,0.503,0.4714,0.4574,0.4392,0.4368,0.4192,0.3772,0.3322,-0.56,-0.447,-0.8142,-0.5566,0.4104,0.9546,0.9532,1,0.0838,-0.1174,0.486,0.419,0.5418,0.229,0.5866,0.8212,0.7094,0.4636,1,0.7206,0.8212,0.5978,0.2402,0.1956,0.2068,0.3632,0.285,0.229,0.2514,0.285,0.3296,0.2402,0.1396,0.229,0.2178,0.0838,0.1508,-0.0614,0.162,-0.3072,0.0062,-0.371,0.0062,0.6226,0.4088,0.1572,0.434,0.6982,0.1194,0.4214,0.673,0.2956,0.761,1,0.371,0.4592,0.5472,0.6856,0.346,0.61,0.5094,0.434,0.3334,0.6226,0.585,0.7106,0.4968,0.4592,0.1194,0.3836,-0.132,-0.4842,-0.4334,-0.8584,-0.5334,0.1334,-0.175,-0.1584,-0.0084,-0.0166,0.4084,1,0.95,0.9084,0.5666,0.5084,0.2084,0.6334,0.5834,0.6666,0.4334,0.3334,0.3,0.125,0.2084,0.1084,0.0166,0.425,0.775,0.8834,0.3584,0.1084,0.1666,-0.125,-0.9562,1,-1,-1,-1,-1,-1,-1,1,-0.7162,-0.5,-0.2972,-0.2838,-0.2298,-0.1622,0,0.0676,-0.0676,0.0406,0.6352,0.6756,0.6486,0.5136,0.7028,0.7568,0.7432,0.6486,0.3784,0.7298,0.581,0.7568,0.7028,0.973,0.9054,0.8784,1,0.7702,0.6622,0.3918,0.2702,-0.1082,'8'
-0.9266,-0.5412,-0.4724,-0.3624,-0.0138,0.4588,0.7248,0.6284,0.6972,1,0.9496,0.6056,0.4312,0.3256,0.0734,-0.0322,-0.2706,-0.3028,-0.3074,-0.1514,-0.1376,0.1606,0.2936,0.2064,-0.078,-0.266,-0.1744,0.11,0.1698,0.2478,0.2568,-0.0826,-0.8678,-0.591,-0.438,-0.376,0.0082,0.5,0.6446,0.562,0.69,1,0.8636,0.971,0.6364,0.5372,0.3678,0.2148,0.1198,-0.0248,-0.0454,0.124,0.3016,0.3224,0.4752,0.3842,0.1694,-0.0578,0.0042,0.314,0.2686,0.2396,0.219,0.2232,-0.863,-0.5892,-0.3818,-0.2946,0.0248,0.4648,0.5436,0.664,0.6474,0.8132,0.9544,1,0.8672,0.7676,0.527,0.2366,0.1038,-0.0208,0.2282,0.2822,0.5228,0.4522,0.3652,0.0996,-0.0622,-0.029,-0.1244,-0.1038,0.1742,0.0746,0.1868,0.0166,-0.9448,-0.6252,-0.211,-0.0928,0.1282,0.7514,0.7514,0.5148,0.6332,0.6766,0.6726,0.783,0.8974,1,0.9606,0.574,0.424,0.3728,0.4122,0.5266,0.503,0.3846,0.2782,0.2702,0.0928,-0.0374,-0.0336,-0.0848,0.1084,0.1874,0.069,0.006,-0.8408,-0.5796,-0.1018,0.1372,0.3186,0.6504,0.6372,0.354,0.4292,0.4734,0.3408,0.3938,0.4912,0.885,0.8894,1,0.6592,0.5796,0.3362,0.3408,0.3142,0.3938,0.5708,0.5442,0.1814,-0.0044,0,-0.0884,-0.1638,-0.0442,0.261,0.1284,-0.7634,-0.4462,0.1666,0.328,0.5268,0.2796,0.3118,0.2796,0.4624,0.5108,0.2474,0.2956,0.4516,0.699,0.5698,0.7526,1,0.9732,0.3226,0.4784,0.4408,0.672,0.9408,0.9462,0.2904,0.0914,0.0376,0.0216,-0.1076,-0.0806,0.2956,0.2366,-0.4682,0.1508,0.3412,0.2778,0.3334,0.0794,-0.1746,0.2698,0.262,0.3968,0.0158,0.1112,0.365,0.5238,0.5396,0.6508,0.762,0.873,0.4444,0.246,0.2698,0.4366,0.9444,1,0.1904,-0.119,-0.0556,-0.2222,-0.3174,-0.373,-0.246,-0.127,-0.7334,-0.3334,-0.3334,-0.1556,0.2888,0.5556,0.8222,1,0.8222,1,0.8666,0.7778,0.2888,0.2444,-0.3778,-0.3778,-0.2888,-0.2,-0.4666,-0.2444,-0.2888,-0.0222,0.0222,-0.2,-0.0222,-0.4222,-0.2888,0.1112,-0.1112,0.1112,0.1556,-0.2888,-0.8432,-0.647,-0.451,-0.4118,-0.3334,0.3726,0.5686,0.3726,0.6078,1,0.9216,0.3334,0.3726,0.4118,0.0588,-0.451,-0.2156,-0.4902,-0.6862,-0.255,-0.1764,-0.1764,0.2942,0.2942,-0.0588,-0.451,-0.098,0.0196,0.0588,0.0196,0.0588,-0.255,-1,-0.6894,-0.3204,-0.1456,-0.0098,0.7088,0.7282,0.5534,0.7282,0.767,0.67,0.8834,1,0.9418,0.903,0.534,0.4174,0.3592,0.398,0.6116,0.5922,0.4174,0.165,0.1844,0.0486,-0.0292,-0.0486,-0.068,0.068,0.1456,0.0874,-0.0098,-1,-1,-1,-1,-1,-1,-1,-0.932,-0.9362,-0.9192,-0.4724,-0.2128,0.166,0.2596,0.2468,0.2128,0.949,0.366,0.166,0.217,-0.2256,-0.3958,-0.732,-0.5958,-0.566,-0.5788,-0.8382,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9842,-0.9832,-0.9568,-0.6054,-0.124,0.881,0.9728,0.773,0.6148,0.608,-0.074,-0.3746,-0.554,-0.7356,-0.8664,-0.9418,-0.9324,-0.9374,-0.9424,-0.965,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.973,-0.9234,-0.9134,-0.59,-0.4868,-0.49,-0.4868,-0.3768,-0.3668,-0.39,-0.3868,-0.3734,-0.3468,-0.2168,-0.4972,-0.4468,-0.6768,-0.7434,-0.9834,-0.8534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3428,-0.9428,1,1,1,1,-0.7714,-0.8,-0.5142,-0.3714,-0.5428,-0.6858,-0.1714,0.6858,0.9428,-0.1428,-0.8,-0.7714,-0.8286,-0.2858,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.6264,-0.648,-0.6774,-0.6946,-0.7224,-0.7608,-0.7996,-0.9524,-1,-1,-0.56,-0.3294,-0.6498,-0.5708,-0.0776,0.7112,0.936,0.7084,-0.3584,0,0.2642,0.8868,0.9812,0.7548,0.3018,0.3584,0.3584,0.1886,0.132,0.6604,0.6604,0.3584,0.4716,0.4716,0.434,0.3018,0.7736,0.7548,1,1,0.6226,0.415,0.5472,0.434,0.434,0.4906,0.151,0.1132,-0.283,-0.717,-0.2816,-0.0874,0.6894,0.8446,1,0.9612,0.4758,0.0292,0.1844,-0.068,0.2816,0.6504,0.3592,0.2038,0.3204,0.2428,0.1456,0.2816,0.5146,0.6504,0.6894,0.7864,0.4952,0.5728,0.5728,0.2428,0.4174,0.4564,0.534,0.165,-0.2622,-0.4952,-0.4154,0.077,0.5692,0.923,0.9538,0.9692,0.6616,0.2462,0.077,0.077,0.3384,0.6154,0.5846,0.3846,0.723,0.8,0.2616,0.7538,0.9384,1,0.9692,0.8924,0.4924,0.8154,0.5846,0.477,0.4924,0.4616,0.4616,0.2154,-0.3384,-0.8308,-0.1516,-1,-1,1,-1,-1,-1,-0.7666,-1,-0.4444,-0.2222,0.3778,0.2222,0.1112,0.0888,-0.1334,0.4,0.3556,0.5556,0.6444,1,0.7112,0.4888,0.0222,0.2222,0.8444,0.4666,0.5112,0.7334,0.8222,0.8666,0.2,0,0.2888,-0.0444,0.2222,0.1334,-0.3334,-0.0222,-0.4888,-0.5334,'9'
-0.6884,-0.3528,-0.298,-0.2364,-0.024,0.4246,0.5684,0.6096,0.6336,0.7636,1,0.9726,0.4178,0.2602,0.1884,-0.0376,-0.0924,-0.0788,-0.2158,-0.2466,-0.1096,0.1232,0.2124,0.2294,0.1198,-0.0308,0.2842,0.3254,0.4042,0.3732,0.4316,0.185,-0.7124,-0.4408,-0.3396,-0.3176,-0.0648,0.3586,0.4282,0.564,0.545,0.662,1,0.9906,0.5388,0.3586,0.3618,0.128,0.0268,-0.1154,-0.1154,-0.1754,-0.0048,0.3364,0.3554,0.3144,0.1786,0.128,0.0522,0.327,0.4282,0.4376,0.4408,0.3112,-0.7226,-0.465,-0.2006,-0.181,-0.0016,0.6378,0.677,0.553,0.5236,0.5954,0.7782,0.863,1,0.765,0.5628,0.2626,0.0376,-0.0114,0.1746,0.106,0.2332,0.5726,0.4682,0.4324,0.2888,0.2366,0.1092,0.2234,0.3638,0.4682,0.4584,0.527,-0.6684,-0.387,-0.1156,-0.062,0.1826,0.8492,0.8258,0.4472,0.2964,0.3534,0.5544,0.6248,0.7822,1,0.9162,0.7018,0.34,0.4204,0.4942,0.1758,0.5142,0.6114,0.655,0.5612,0.407,0.3836,0.3166,0.2262,0.263,0.32,0.5846,0.5678,-0.605,-0.2816,0.1302,0.2564,0.4118,0.5126,0.4034,0.5252,0.2016,0.0882,0.1848,0.4076,0.542,0.6386,0.6848,0.6638,0.8068,0.916,0.8278,0.29,0.5924,0.895,1,0.8362,0.7016,0.6974,0.4832,0.3614,0.4412,0.311,0.5126,0.7016,-0.4522,-0.018,-0.044,0.1732,0.354,0.0956,0.1318,0.075,-0.3488,-0.5142,-0.2352,-0.1524,-0.1524,-0.1628,-0.1008,0.0388,0.1628,0.8708,1,0.6228,0.5504,0.6692,0.8812,0.9638,0.9432,0.5142,0.1162,-0.044,-0.044,-0.0956,-0.1266,-0.106,-0.974,-0.3852,-0.2294,-0.0044,0.316,0.0216,-0.238,-0.264,-0.42,-0.5238,-0.342,-0.1516,-0.1948,-0.0476,-0.1602,-0.3506,-0.1168,-0.0304,0.1082,-0.1256,0.4112,0.619,0.8788,1,0.974,0.8874,0.6624,0.1774,0.091,0.342,0.4806,0.5584,-0.25,0.2142,0.2142,0.25,0.2858,0.6428,0.8572,0.8214,0.8572,0.9286,1,0.8928,0.5714,0.2142,0.0714,-0.1428,-0.2858,0.0714,0.0358,0.0358,0.0358,0.1786,0.4286,0.4286,0.1428,0.2142,0.0358,0.4286,0.5358,0.2858,0.3572,0.3928,-0.7358,-0.3584,-0.283,-0.1698,0.0566,0.5472,0.585,0.585,0.6226,0.7736,1,0.9622,0.3962,0.2452,0.3208,0.0944,0.0188,-0.0566,-0.0944,-0.132,-0.0944,0.2452,0.2076,0.3208,0.2076,0.1698,0.3584,0.1698,0.4716,0.4716,0.4716,0.2076,-0.5844,-0.3246,-0.065,0.1168,0.2728,0.039,0.065,0.039,-0.2728,-0.2208,-0.1688,0.013,-0.091,-0.3766,-0.013,-0.065,0.2988,0.974,1,0.065,0.4806,0.5844,0.6104,0.4546,0.5844,0.4546,0.2988,-0.013,-0.013,0.039,-0.065,0.091,-1,-1,-1,-1,-1,-1,-1,-0.9232,-0.9182,-0.8874,-0.422,0.2532,0.2328,0.4066,0.7494,0.9336,0.8006,0.3044,0.156,-0.1202,-0.4834,-0.8006,-0.821,-0.8056,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9776,-0.9746,-0.9204,-0.6148,0.3344,0.83,0.9306,0.8142,0.7106,0.256,-0.1962,-0.5098,-0.7022,-0.8926,-0.9458,-0.9554,-0.9602,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.96,-0.8668,-0.53,-0.5076,-0.43,-0.435,-0.405,-0.3826,-0.3626,-0.425,-0.1576,-0.235,-0.4926,-0.46,-0.7134,-0.5734,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6286,-0.5428,1,1,1,-0.3142,-0.8286,-0.8858,-0.4,-0.3428,-0.4572,-0.2,1,1,-0.6572,-0.7714,-0.6,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.4348,-0.4544,-0.4552,-0.484,-0.4722,-0.5306,-0.5552,-0.608,-0.8396,-0.41,-0.5466,-0.0824,-0.4502,-0.537,0.4966,0.7214,0.8034,0.425,-0.3904,-0.2,0.2572,0.581,0.6952,0.962,0.6,0.2952,0.0096,-0.1048,0.0476,0.638,0.6952,0.6952,0.7714,0.5048,0.0858,0.2,0.2572,0.7904,1,1,0.962,0.4666,-0.0096,-0.0666,-0.1238,0.0858,-0.2,0.0476,0.0476,-0.2762,-0.169,0.0986,0.4226,0.8874,0.8732,1,0.6902,0.3944,0.0282,-0.0986,0.0564,0.155,0.1126,0.0986,0.324,0.3522,-0.0704,0.0282,0.0986,0.6338,0.5492,0.6338,0.5916,0.1972,0.1126,0,0.0564,0.2676,-0.183,-0.338,-0.2394,-0.4788,-0.0312,0.125,0.3438,0.8594,0.9218,1,0.4062,0.2188,-0.0938,-0.25,-0.1874,0,-0.0468,0.2968,0.2812,0.2032,-0.0624,-0.125,0.25,0.75,0.5938,0.7032,0.6562,0.625,0.1406,0.1562,-0.0938,-0.1094,-0.3124,-0.2344,-0.1562,-0.2344,-0.1704,-1,-1,1,-0.8,-1,-1,-0.7,-1,-0.5882,-0.2352,-0.0784,0.3138,0.1568,-0.255,0.3138,0.0196,-0.0784,0.255,0.2156,0.3922,0.1764,0.2352,0.2746,-0.0588,0.8824,1,0.0784,0.4706,0.4314,0.353,0.2156,0.3138,0.196,0.1372,-0.0196,0.196,0.1176,-0.2746,-0.2352,-0.451,'9'
-0.5384,-0.1692,-0.0358,0.477,0.7744,0.5488,0.3026,0.4974,0.323,0.3948,0.3846,0.3026,0.4358,0.6308,0.6206,0.959,0.9076,1,0.8154,0.6718,0.6512,0.9076,0.7948,0.8564,0.6924,0.6308,0.3538,0.4564,0.4666,0.4052,0.3538,0.4358,-0.5834,-0.2686,0.2038,0.5092,0.7778,0.5834,0.2686,0.3518,0.2038,0.176,0.2408,0.2314,0.3148,0.6112,0.5648,0.6852,1,0.963,0.6204,0.6296,0.6296,0.6388,0.8334,0.8612,0.4352,0.2686,0.3056,0.3982,0.287,0.3148,0.4166,0.3518,-0.5826,-0.2912,0.1554,0.1748,0.4758,0.3398,0.3592,0.3398,0.1844,0.233,0.1942,0.0388,0.0776,0.4758,0.4952,0.631,0.9708,0.903,0.631,0.6116,0.602,0.6214,0.9902,1,0.3592,0.2234,0.3106,0.3496,0.2428,0.2524,0.4078,0.33,-0.5234,-0.215,-0.056,0.1028,0.3178,0.3364,0.3272,0.2616,0.1122,0.1588,0.0468,-0.1028,0.0094,0.4486,0.3644,0.4766,0.785,0.729,0.6168,0.4486,0.4206,0.6074,0.9906,1,0.3832,0.2056,0.2524,0.1776,0.1402,0.2242,0.3178,0.271,-0.4012,-0.0056,-0.1978,0.1526,0.4012,0.209,0.2542,0.243,0.0734,0.1864,-0.1186,-0.1186,0.0622,0.4124,0.356,0.1752,0.6498,0.6724,0.695,0.5368,0.5594,0.5932,0.9436,1,0.3898,0.322,-0.0056,0.0622,0.13,-0.0622,-0.096,0.1412,-0.1182,0.559,0.244,0.1654,0.5434,0.1182,-0.37,-0.0078,-0.0866,-0.1812,-0.433,-0.1496,-0.0078,-0.0394,-0.1024,0.1496,0.6378,0.622,0.1654,0.5276,0.559,0.7796,1,1,0.1654,-0.0078,-0.2756,-0.2126,-0.6378,-0.3386,-0.2126,-0.4174,-0.45,-0.075,-0.125,-0.1126,0.1626,-0.2,-0.1624,-0.0624,-0.1876,-0.4376,-0.7374,-0.825,-0.4,-0.3,-0.2374,-0.025,0.0624,-0.0376,-0.1126,0.1374,0.2376,0.4,0.85,1,0.225,-0.175,-0.3376,-0.0624,-0.15,-0.2124,-0.075,-0.3,-0.5676,-0.2432,-0.3514,0.3514,0.6216,0.3514,0.081,0.4594,0.3514,0.2972,0.2972,0.2972,0.3514,0.4594,0.6756,1,0.946,0.8378,0.7298,0.5136,0.4054,1,1,0.8378,0.6216,0.5136,0.4054,0.4054,0.2972,0.4594,0.4054,0.2972,-0.591,-0.091,0.1364,0.6364,0.8636,0.7272,0.3636,0.4546,0.409,0.409,0.409,0.409,0.4546,0.6364,0.7272,0.7728,0.9546,1,0.8182,0.7728,0.7728,0.7272,0.6818,0.8182,0.6818,0.591,0.3182,0.4546,0.4546,0.3182,0.4546,0.5,-0.322,0.2204,-0.0508,0.322,0.661,0.4576,0.2204,0.4576,0.2882,0.2204,-0.1526,-0.0848,0.1526,0.4238,0.356,0.0848,0.695,0.7288,0.8984,0.7628,0.5594,0.7628,0.9322,1,0.5254,0.4916,-0.1186,-0.0508,0.0508,-0.2882,-0.1864,0.1864,-0.9126,-0.9252,-0.6924,-0.0146,0.4178,0.106,0.289,0.3514,0.289,0.368,0.1186,0.3388,0.8504,0.9792,0.7338,0.2598,0.1434,-0.1226,-0.1934,-0.2266,-0.2516,-0.605,-0.867,-0.842,-0.8794,-0.8544,-1,-1,-1,-1,-1,-1,-1,-0.7226,-0.6634,-0.6582,-0.43,-0.068,0.2598,0.6544,0.8588,0.8084,0.5964,0.6608,0.6242,0.7566,0.9698,0.7704,0.546,0.343,0.1172,-0.1678,-0.522,-0.6658,-0.7982,-0.8878,-0.8966,-0.9218,-0.9206,-1,-1,-1,-1,-1,-1,-1,0.2866,0.4466,0.06,-0.55,-0.66,-0.4268,-0.2534,-0.26,-0.3068,-0.3234,-0.207,-0.2608,-0.5542,-0.5608,-0.3476,-0.3276,-0.3276,-0.3408,-0.3876,-0.7758,-0.7858,-0.6958,-0.5408,-0.7476,-0.8608,-0.7808,-1,-1,-1,-1,-1,-1,-1,0.5142,-0.8,1,0.9714,-0.4286,-0.0572,-0.3142,-0.8858,-0.9142,-0.8286,-0.8286,-0.8,-0.7714,-1,-0.9428,-0.7428,-0.2572,1,1,1,0.4858,-0.2,-0.6,-0.8,-1,-0.8286,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.3308,-0.397,-0.397,-0.4336,-0.4386,-0.4632,-0.485,-0.4518,-0.3298,-0.1708,-0.5734,-0.6942,0.6596,0.5726,0.657,1,0.85,-1,-0.4912,-0.3812,-0.1962,-0.1444,-0.1048,-0.0882,0.0094,0.001,0.0572,0.0966,0.2024,0.5764,0.732,1,0.9772,0.8026,0.62,0.5098,0.3956,0.5244,0.6448,0.7694,0.755,0.7134,0.6428,0.5638,0.5016,0.4248,0.3334,0.1048,0.0364,-0.2544,0.0962,0.5424,0.4354,0.4552,0.3366,0.5424,0.6872,1,0.4584,0.4436,0.5046,0.6626,0.5424,0.5456,0.5194,0.3102,0.0618,-0.1654,0.1094,0.4272,0.4732,0.2494,0.2544,0.233,0.493,0.33,0.149,0.2032,0.0568,-0.1556,-0.3958,-0.6544,0.0114,0.3378,0.5968,0.4754,0.564,0.577,0.7016,1,0.659,0.5968,0.6114,0.7132,0.446,0.4378,0.4558,0.446,0.3656,0.1098,0.2214,0.6032,0.7032,0.595,0.6492,0.6492,0.6328,0.5492,0.741,0.7378,0.5426,0.1214,-0.1278,-0.5296,-0.488,-1,1,-1,1,-1,-1,1,-1,-0.3714,-0.2762,0.1048,0.162,0.0858,-0.0286,0.162,0.2762,0.7142,0.6,0.619,1,0.7334,0.2952,0.4476,0.562,0.6,0.7334,0.219,0.5048,0.4286,0.3142,0.619,0.2762,0.0286,-0.0858,-0.0858,-0.0476,-0.0666,-0.1428,-0.3714,-0.5428,'10'
-0.3868,0.2992,0.4598,0.6716,0.1314,-0.124,0.1606,-0.0292,0.0438,0.1752,0.0656,0.2554,0.3796,0.4526,0.3576,0.2336,0.1094,0.1824,0.3212,0.2482,0.5256,0.854,1,0.9782,0.562,0.6058,0.7372,0.7008,0.803,0.6642,0.1386,0.2116,-0.5574,-0.138,0.408,0.4482,-0.2068,0.138,0.2298,0.2414,0.1494,0.1552,0.3966,0.408,0.615,0.7356,0.816,0.6782,0.592,0.5574,0.1494,0.408,0.6552,0.931,1,0.6436,0.661,0.7184,0.6322,0.615,0.7012,0.4426,0.339,0.023,-0.5912,-0.243,0.0498,0.0884,0.1988,0.127,0.1988,0.2652,0.1878,0.315,0.3592,0.453,0.663,0.8066,0.8122,0.6354,0.4476,0.1216,0.1934,0.4862,0.6354,1,0.9558,0.6574,0.558,0.5636,0.5304,0.5524,0.6464,0.6188,0.558,0.1104,-0.5958,-0.2284,0.3754,0.391,0.6062,0.3964,0.4278,0.3176,0.3386,0.4068,0.3754,0.601,0.7218,0.8216,0.748,0.6272,0.2966,0.3544,0.6116,0.5854,0.6168,1,0.8006,0.7166,0.6588,0.538,0.37,0.538,0.4698,0.538,0.4016,0.4068,-0.6186,-0.308,0.2588,0.4442,0.684,0.455,0.4496,0.2534,0.2534,0.2534,0.4168,0.4768,0.4714,0.6784,0.6512,0.733,0.237,0.6076,0.7058,0.406,0.8202,0.9564,1,0.8746,0.5586,0.4768,0.406,0.308,0.4822,0.4168,0.4006,0.842,-0.5272,-0.1696,0.4728,0.4666,0.6666,0.5758,0.5272,0.2424,0.2848,0.2182,0.491,0.3636,0.4484,0.6666,0.7516,0.697,0.3818,0.994,0.9696,0.3818,1,0.9818,0.903,0.7334,0.7696,0.3636,0.2304,0.2546,0.1152,0.3818,0.4182,0.4728,-0.0816,0.6734,0.398,0.347,0.2552,0.449,0.2756,-0.051,0.0408,0.0408,0.2756,-0.0612,0.0714,0.296,0.3266,0.1836,0.204,0.7654,0.704,0.3368,0.5714,1,0.8266,0.5816,0.5714,0.1224,-0.0102,-0.5408,-0.5204,-0.2756,0,0.0408,-0.4858,0.3142,0.2,0.3142,0.1428,0.0858,-0.0286,0.0858,-0.1428,0.0286,-0.0286,0.0286,0.4858,0.4858,0.3714,0.2572,-0.2,0.0858,0.2572,0.2,0.2572,0.4286,1,1,0.5428,0.6,0.6572,0.7714,1,0.8286,0.6572,0.6572,-0.2,0.4858,0.7142,0.8858,0.3714,-0.2,0.3714,0.3714,0.3142,0.2,0.4286,0.6,0.5428,0.4858,0.5428,0.5428,0.4286,0.1428,0.1428,0.5428,0.7142,1,0.8858,0.8286,0.6,0.8286,0.8286,0.7714,0.9428,0.7142,0.6572,0.7714,-0.5,-0.1944,0.4166,0.5834,0.8056,0.5834,0.5278,0.25,0.3612,0.3056,0.5278,0.5,0.5,0.75,0.8056,0.7778,0.4166,0.8612,0.8888,0.2778,1,1,0.8888,0.75,0.8334,0.5,0.3612,0.3888,0.2222,0.5278,0.5556,0.7778,-1,-1,-1,-1,-1,-0.7522,-0.8762,-0.8644,-0.882,-0.8584,-0.6048,0.351,0.711,0.5576,0.292,0.6932,0.9234,0.8584,0.7168,0.6992,0.2036,-0.1918,-0.6992,-0.6342,-0.5752,-0.7758,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8786,-0.9114,-0.8112,-0.4816,0.1484,-0.1136,-0.2024,0.3776,0.7804,0.8228,0.9268,0.8612,0.9248,0.8978,0.5954,-0.0328,-0.6204,-0.815,-0.8074,-0.8074,-0.8806,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8586,-0.9334,-0.8268,0.5366,0.73,0.5566,-0.4934,-0.6034,-0.4168,-0.3234,-0.3134,-0.4168,-0.5234,-0.4668,-0.32,-0.4868,-0.783,-0.64,-0.4668,-0.9468,-0.8368,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4858,-0.7142,1,1,1,1,1,0,-0.2572,-0.8,-0.8,-0.9714,-0.9428,-0.8,0.4,1,1,-0.5428,-0.8858,-0.8,-0.8572,-1,-1,-1,-1,-1,-1,-1,0.4896,0.4648,0.5056,0.4964,0.5562,0.597,0.666,0.7572,0.907,0.939,0.2622,0.2634,0.2874,0.2772,0.2386,0.2078,0.1386,0.0348,-0.108,-0.2194,-0.5734,-0.3294,-0.1098,-0.21,-0.2524,0.0964,0.4394,1,-0.4806,-0.3644,-0.1782,-0.1706,-0.1472,-0.0852,0.0156,-0.0698,-0.1086,-0.0156,0.1706,0.5582,0.5272,0.783,0.7906,0.7442,0.6744,0.6124,0.6512,0.628,0.7596,0.8838,0.8992,1,0.8528,0.6512,0.7286,0.4652,0.4574,0.3334,0.2326,-0.3798,-0.708,-0.581,-0.5366,-0.2698,-0.346,-0.3206,-0.1492,-0.1492,-0.2126,-0.0794,0.2952,0.5936,0.6572,0.8666,0.962,0.7968,0.8984,0.746,0.7778,0.9746,1,0.981,0.8666,0.892,0.7842,0.835,0.9302,0.6318,0.5746,0.4096,0.219,-0.0984,-0.3132,-0.044,-0.1704,0.0824,0.055,0.1704,0.2472,0.1814,0.1538,0.1704,0.4396,0.923,0.8462,0.8406,0.9286,0.8406,0.7198,0.8846,0.7638,0.8406,0.8626,0.9506,0.9396,1,0.8682,0.8846,0.8242,0.7142,0.5824,0.3902,0.478,0.3352,-0.2524,-1,-1,1,-1,-1,-1,-0.3334,-1,-0.1724,-0.0114,0.4022,0.1264,0.2874,0.3564,0.1034,0.2184,0.1264,0.2874,0.5862,0.7932,0.2414,0.2644,0.3334,0.5172,1,0.7472,0.2184,0.4942,0.5402,0.3794,0.5172,0.2414,0.0114,0.1264,0.3564,0.5862,0.4252,0.1494,-0.1494,-0.5402,'10'
-0.6262,0.6868,0.6666,0.7878,0.7272,0.7778,0.6868,0.5252,0.404,0.202,-0.0808,0.202,0.2626,0.5758,0.5656,0.7676,1,0.9596,0.909,0.7878,0.8282,0.7576,0.7576,0.5858,0.1314,-0.3132,-0.1616,0.101,0.0808,0.0708,0.4646,0.6364,-0.5622,-0.0414,0.1834,0.355,0.3728,0.355,0.3492,0.2012,0.2722,0.3018,0.2722,0.4082,0.5798,0.645,0.787,0.8876,1,0.8284,0.716,0.6804,0.8048,0.8758,0.787,0.5502,0.3136,0.2366,0.142,0.1006,0.1776,0.1124,0.4674,0.5798,-0.6638,-0.3278,-0.0364,0.0084,0.2156,0.1708,0.1932,0.2324,0.1372,0.2492,0.311,0.2156,0.3782,0.7142,0.675,0.86,0.9888,1,0.7592,0.7478,0.8432,0.9664,0.9776,0.647,0.479,0.4734,0.2718,0.2942,0.3726,0.3558,0.619,0.8712,-0.7168,-0.3864,0.1386,0.4514,0.6696,0.4454,0.41,0.2448,0.0856,0.1032,0.2626,0.2744,0.3216,0.5516,0.6932,0.7936,1,0.7994,0.5222,0.5812,0.7346,0.829,0.8584,0.4632,0.239,0.1386,0.056,0.0502,0.121,0.115,0.357,0.705,-0.6484,-0.2728,0.1758,0.406,0.6364,0.4728,0.406,0.1818,-0.0182,0,0.1576,0.1758,0.4484,0.594,0.4364,0.8304,1,0.7454,0.6666,0.6728,0.5758,0.6728,0.6788,0.4424,0.0848,0.0728,0.194,0.1394,0.0242,0.3152,0.2424,0.2304,-0.4788,-0.0684,0.114,0.3224,0.5766,0.2248,0.153,0.114,-0.0618,0.0228,-0.0162,0.0358,0.14,0.4332,0.4268,0.4724,0.6612,0.7264,0.8892,0.5374,0.6352,0.772,1,0.8762,0.2834,0.153,0.0294,0.0228,0.101,0.0098,0.2248,0.329,-0.7522,0.0734,-0.1376,-0.1468,0.1468,-0.3854,-0.3302,-0.367,-0.7156,-0.7522,-0.8256,-0.6422,-0.101,0.0092,-0.0184,-0.1468,-0.0734,0.422,0.3578,0.3944,0.4312,0.6972,1,0.8716,0.3486,-0.312,-0.4588,-0.3302,-0.0276,0.0276,-0.11,0.2844,-0.3572,0.4286,0.5,0.3572,0.5,0.1428,0.0714,0.0714,0,-0.0714,-0.4286,-0.1428,-0.3572,0.1428,-0.2858,0.7142,1,0.7858,0.7858,0.7142,0.7858,0.7858,0.3572,0.3572,0.0714,-0.7142,-0.1428,-0.1428,0.0714,-0.1428,0.8572,0.9286,-0.0304,0.8182,0.8182,1,0.9394,0.8788,0.7576,0.697,0.6364,0.3334,0.1516,0.5758,0.3334,0.8788,0.8788,0.8182,0.8182,1,0.697,0.9394,0.8182,1,0.6364,0.8182,0.5152,-0.0304,-0.2122,0.2122,0.1516,0.1516,-0.2728,0.697,-0.8048,-0.439,0.0244,0.317,0.5122,0.3658,0.2926,0.122,0.0732,0.122,0.1952,0.1952,0.439,0.5366,0.683,0.878,1,0.756,0.6098,0.5122,0.756,0.683,0.7318,0.4634,0.2926,0.0732,0.1464,0.1464,0.1952,0.2682,0.5854,0.8536,-1,-1,-1,-1,-0.918,-0.8772,-0.5564,-0.5494,-0.611,-0.5836,-0.727,0.331,0.7748,0.7202,0.1262,0.5426,0.7406,0.4062,0.4676,0.2696,0.0784,-0.4948,-0.7134,-0.7202,-0.7542,-0.6656,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9408,-0.9408,0.0888,-0.0204,-0.3358,-0.7134,-0.7194,-0.4602,-0.0068,0.8712,0.6952,0.7514,0.1508,-0.1812,-0.0022,-0.1842,-0.4632,-0.806,-0.8606,-0.8984,-0.9076,-0.8832,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.9868,-0.16,0.66,0.3132,-0.1334,-0.0534,-0.6034,-0.5034,-0.26,-0.03,-0.1834,-0.3668,-0.49,-0.36,-0.4234,-0.5934,-0.5716,-0.68,-0.7,-0.8834,-0.85,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,1,1,1,0.9428,0.7428,-0.0286,0.5714,1,1,-0.8286,-0.2,0.2572,-0.6572,-1,-0.5142,1,0.7428,-0.5428,-0.8286,-0.8858,-0.3714,-1,-1,-1,-1,-1,-1,-1,0.6302,0.6942,0.725,0.7564,0.8092,0.8718,0.9242,1,1,1,-0.6302,-0.677,-0.7274,-0.7208,-0.7484,-0.7622,-0.7834,-0.7424,-0.7256,-0.5788,-0.5466,-0.3294,-0.7256,-0.6178,-0.433,-0.2768,0.063,1,-0.7002,-0.297,-0.3242,-0.1934,-0.1662,-0.1008,-0.1008,-0.0844,0.1226,0.3242,0.7002,0.94,0.7058,0.5314,0.3352,0.5368,0.5858,0.7548,0.7494,0.7384,1,0.7438,0.7058,0.793,0.722,0.5968,0.782,0.7712,0.5532,0.722,0.6622,0.0954,-0.3854,-0.356,-0.1902,-0.156,-0.1366,0.044,0.3122,0.2586,0.3318,0.5268,0.761,0.917,0.6634,0.5122,0.4146,0.8244,0.9074,0.7318,0.7512,0.8244,1,0.8342,0.6878,0.7804,0.722,0.5074,0.6048,0.7024,0.556,0.4488,0.4244,0.0878,-0.1608,-0.213,-0.1478,-0.0522,0.0522,-0.0522,0.1826,0.1956,0.6914,0.6826,0.826,0.7348,0.4304,0.3086,0.387,0.8652,1,0.6,0.4608,0.6086,0.7,0.5174,0.387,0.3696,0.2522,0.3218,0.1956,0.1434,0.326,0.213,0.0478,-0.3478,1,-1,-1,1,-1,-1,-1,-0.0334,-1,-0.3684,0.0526,1,0.4736,0.3684,0.079,0.6052,0.6578,0.6842,0.579,0.5526,0.6842,0.3158,0.5264,0.6316,0.6842,0.6578,0.4474,0.2368,0.5264,0.5,0.2632,0.2106,-0.079,0.1578,0.1842,0.5,0.2894,0,0.1578,0.079,-0.2632,'11'
-0.659,0.279,0.2946,0.5194,0.4342,0.341,0.186,0.0852,-0.0852,-0.1086,-0.1396,-0.0078,0.1938,0.3798,0.3798,0.4962,0.5038,0.752,0.8062,0.6666,0.9768,1,0.6976,0.186,0.2094,0.1938,-0.0078,-0.124,0.0388,0.1086,0.3178,0.6202,-0.7302,-0.3372,-0.0498,0.0558,0.0264,-0.0322,0.1496,0.0792,0.126,0.0558,0.1848,0.2492,0.3666,0.4486,0.613,0.742,0.7654,0.8768,0.8182,0.6012,0.912,1,0.5894,0.4134,0.2024,0.1788,0.1906,0.0734,-0.0264,0.1496,0.2904,0.3138,-0.63,-0.265,0.045,0.13,0.3,0.22,0.18,0.09,0.09,0.165,0.145,0.26,0.485,0.46,0.645,0.755,0.825,0.915,0.855,0.585,0.94,1,0.65,0.56,0.215,0.24,0.25,0.14,0.04,0.185,0.3,0.33,-0.6886,-0.3114,0.0718,0.1498,0.491,0.3114,0.2036,0.1856,0.1078,0.2096,0.2574,0.2634,0.485,0.533,0.6586,0.994,0.9102,0.994,0.7186,0.6348,1,0.8444,0.7486,0.467,0.3294,0.3174,0.2276,0.2694,0.2336,0.2096,0.3114,0.8682,-0.7922,-0.5104,-0.1686,-0.0162,0.2194,0.0484,0.0762,-0.09,-0.0346,0.0254,-0.007,0.1548,0.2656,0.2886,0.284,0.4364,0.6074,0.6352,0.7598,0.7136,0.7552,1,0.8384,0.5382,0.4226,0.2886,0.2518,0.2794,0.2148,0.3302,0.3488,0.5334,-0.7718,-0.3952,0.0238,0.0292,-0.0186,0.0558,0.0822,-0.0504,-0.1088,-0.0026,-0.1618,0.0132,0.1618,0.2042,0.2042,0.3316,0.4908,0.9894,1,0.6816,0.8568,0.9046,0.9152,0.6128,0.4536,0.305,0.2148,0.2096,0.1778,0.3156,0.4164,0.3104,-0.561,0.0976,-0.1708,-0.3414,-0.0732,-0.1464,-0.1382,-0.1952,-0.4878,-0.3984,-0.5204,-0.4228,-0.4066,-0.5448,-0.122,0.0488,0.8292,0.8292,0.4796,0.5772,0.5772,1,0.813,0.2276,-0.2032,-0.2196,-0.3658,-0.439,-0.2276,-0.2602,-0.2764,-0.2926,-0.4286,0.3714,0.4286,0.1428,0.3142,0.3142,-0.2,0.0286,-0.1428,-1,-0.9428,-0.3714,-0.0286,0.2,0.3142,0.3142,0.3142,0.2572,0.4286,0.4286,0.5428,0.5428,0.3142,0.3714,0.4286,0.5428,0.4858,0.2,0.1428,0.3142,0.4858,1,-0.8,0.25,0.25,0.5,0.6,0.3,0.25,0.25,0.2,0,0.1,0.25,0.15,0.4,0.45,0.3,0.55,0.65,0.7,0.6,1,0.85,0.4,0.1,-0.15,-0.1,-0.25,-0.35,-0.05,-0.15,0.15,0.15,-0.8796,-0.518,-0.0362,-0.0362,0.0362,-0.012,-0.0362,-0.1326,-0.0602,-0.0602,-0.1084,-0.012,0.0362,0.1326,0.253,0.2772,0.4216,0.9278,1,0.518,0.8796,0.9278,0.8314,0.6626,0.3494,0.3734,0.1808,0.253,0.3734,0.253,0.3494,0.3976,-1,-1,-1,-1,-0.8422,-0.8334,-0.8158,-0.7544,-0.6578,-0.7192,-0.5176,0.6666,0.772,0.6052,0.6578,0.7192,0.386,0.421,0.7368,0.2368,0,-0.2456,-0.7192,-0.7192,-0.7018,-0.6228,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9332,-0.922,-0.8664,-0.5914,-0.6216,-0.7726,-0.7456,-0.3704,-0.0462,0.9142,0.682,0.4912,0.3068,0.496,0.5882,0.1542,-0.5438,-0.7472,-0.8728,-0.8872,-0.9062,-0.8982,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.86,-0.81,0.4932,0.4766,0.0266,-0.2434,-0.5068,-0.5134,-0.1368,-0.24,-0.4168,-0.3868,-0.1668,-0.0234,0.0066,-0.5134,-0.6868,-0.72,-0.66,-0.9268,-0.9,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3142,-0.3714,1,1,-0.4,0.6572,0.2,1,1,1,-0.8858,-0.9428,-0.7428,-0.6286,-0.2,1,1,0.5142,-0.7142,-0.7714,-0.8,-0.8,-1,-1,-1,-1,-1,-1,-1,0.5612,0.6256,0.6544,0.7056,0.8048,0.8882,0.9496,1,1,1,-0.3146,-0.332,-0.3932,-0.4358,-0.5302,-0.548,-0.5608,-0.6032,-0.633,-0.3974,-0.6134,-0.3412,-0.7282,-0.7074,-0.2194,-0.2114,-0.0334,0.7584,-0.6352,-0.4662,-0.4932,-0.0878,-0.1486,-0.2432,-0.2636,-0.2568,-0.277,-0.1824,0.3986,0.5338,0.5338,0.4798,0.3108,0.6284,0.6486,0.4392,0.5878,0.723,0.8514,1,0.8176,0.7432,0.7432,0.6082,0.8986,0.8784,0.5608,0.804,0.7568,0.3716,-0.5488,-0.4374,-0.415,-0.3204,-0.298,-0.2758,0.064,0.014,-0.0974,0.0752,0.5376,0.6714,0.6156,0.4986,0.4206,0.6714,0.7158,0.6212,0.8718,0.9888,1,0.8774,0.4596,0.3594,0.7104,0.7938,0.6156,0.532,0.5208,0.5822,0.532,0.2534,-0.277,-0.446,-0.3774,-0.351,-0.3932,-0.2138,0.0184,-0.0238,0.277,0.4196,0.7468,0.6094,0.1556,0.1716,0.1292,0.847,1,0.4142,0.2664,0.2296,0.3878,0.4618,0.1134,0.087,0.277,0.2664,0.1346,-0.0818,-0.0924,-0.1398,-0.1926,-0.4934,-0.504,-1,-1,1,-1,-1,-1,-0.1334,-1,-0.35,0.6,0.575,0.75,0.675,0.5,0.575,0.525,0.525,0.725,0.875,1,0.525,0.625,0.65,0.6,0.625,0.25,0.425,0.95,0.975,0.475,0.15,0.65,0.575,0.4,0.65,0.55,0.575,0.3,0.075,-0.275,'11'
-0.678,-0.278,-0.1414,-0.0586,0.278,0.3854,0.5024,0.2926,0.3318,0.5464,0.439,0.5414,1,0.9902,0.9414,0.8196,0.5268,0.1902,0.0634,0.083,-0.1024,0.244,0.6196,0.5464,0.3122,0.2976,0.2488,0.078,0.0634,0.083,0.639,0.6682,-0.8004,-0.5452,-0.341,-0.1786,0.16,0.485,0.5406,0.1508,0.4618,0.5824,0.522,0.8654,1,0.6798,0.4292,0.2112,0.0302,-0.0162,0.0904,0.0998,0.1508,0.123,0.1276,0.253,0.0116,-0.0024,-0.0348,-0.1926,-0.0534,0.3596,0.3504,0.2204,-0.7204,-0.4786,-0.0568,0.0236,0.2702,0.9384,0.9384,0.1516,0.8152,0.82,0.9146,1,1,0.6256,0.455,0.1184,0.0568,-0.0664,-0.2986,0.0474,-0.0048,0.256,0.7062,0.6446,-0.0948,0.1042,0.0236,-0.3176,0.2086,0.18,0.2938,0.237,-0.727,-0.454,-0.1662,0.0124,0.2754,0.9106,0.8808,0.2556,0.8958,0.871,1,0.7072,0.6774,0.2208,-0.0422,-0.0472,-0.335,-0.5682,-0.4888,-0.34,-0.3896,0.1464,0.5732,0.464,-0.206,-0.057,-0.1364,-0.3698,-0.1316,0.0522,0.1812,0.0918,-0.697,-0.409,-0.0152,0.0758,0.2474,0.8384,0.808,0.4394,1,0.9546,0.5252,0.409,0.3838,0.0404,-0.1818,-0.2676,-0.4646,-0.6616,-0.7828,-0.4596,-0.5,-0.1768,0.0606,-0.0506,-0.3434,-0.2272,-0.3738,-0.5,-0.5102,-0.0758,-0.0152,-0.2526,-0.6508,-0.3142,0.0222,0.3016,0.5366,0.7524,0.727,0.892,0.981,1,0.1366,-0.1112,-0.0858,-0.2572,-0.4222,-0.4412,-0.4222,-0.5556,-0.6888,-0.6,-0.6126,-0.5936,0.0096,-0.0604,-0.2,-0.454,-0.5428,-0.5366,-0.7142,-0.6952,-0.3778,-0.5174,-0.469,-0.0206,0.0276,0.1518,0.6,0.4414,0.4896,0.938,0.9724,1,0.262,0.0138,-0.0276,-0.5172,-0.3242,-0.3586,-0.262,-0.3104,-0.4828,-0.4896,-0.1034,-0.0896,0.0206,0.0896,0.1656,-0.2276,-0.3656,-0.4552,-0.4276,-0.4758,-0.3242,-0.5862,-0.721,-0.3954,-0.0232,0.1162,0.4884,0.4884,0.3024,0.1162,0.2558,0.4884,0.3954,0.4884,0.8604,0.9534,1,1,0.5814,0.4418,0.1628,0.1162,0.0232,0.2094,0.4884,0.5814,0.2558,0.3954,0.0698,-0.0232,0.1628,0.2094,0.4884,0.907,-0.6364,-0.3636,-0.3182,-0.2272,0.1364,0.409,0.5,0.2272,0.2728,0.5454,0.3182,0.5,0.9546,1,1,0.7272,0.591,0,0,-0.2272,-0.1818,0,0.8182,0.7728,0.1818,0.2272,0.3182,0.0454,-0.091,-0.0454,0.6818,0.6818,-0.7954,-0.4318,-0.0454,0.2046,0.409,0.7272,0.6818,0.6136,1,0.9546,0.1364,0.1136,0.1818,-0.0682,-0.2046,-0.2272,-0.2954,-0.4318,-0.7954,-0.5682,-0.5454,-0.6364,-0.25,-0.0682,0,-0.341,-0.3182,-0.2272,-0.6364,-0.4318,-0.2954,-0.5682,-1,-1,-1,-1,-1,-1,-1,-0.9416,-0.9248,-0.883,-0.215,0.1608,0.0104,0.1942,0.474,0.7746,0.6576,0.5156,0.4656,0.6784,-0.0188,-0.5282,-0.7328,-0.8538,-0.8372,-0.8748,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9646,-0.9604,-0.8098,-0.231,0.1746,0.2982,0.5432,0.9108,0.819,0.814,0.305,0.1048,-0.1014,-0.4658,-0.7746,-0.894,-0.9176,-0.9242,-0.9454,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.9434,-0.5434,-0.2334,-0.356,-0.336,-0.328,-0.4,-0.5234,-0.56,-0.54,-0.51,-0.6034,-0.6068,-0.6868,-0.6934,-0.8068,-0.7668,-0.84,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,1,1,1,1,-0.7428,-0.8,-0.7142,-0.6572,-0.1714,-0.4286,-0.2286,0,-0.1142,-0.1428,-0.4286,-0.8858,-0.8286,-0.8286,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.9826,-0.9482,-0.9482,-1,-1,-1,-1,-1,-1,-0.7246,-0.5466,-0.3764,0.061,0.1056,0.2242,0.2756,0.39,0.75,-0.2728,0.0454,0.409,0.3182,0.591,0.591,0.8182,1,0.6818,0.6364,0.591,0.591,0.7272,0.409,0.5,0.5,0.6364,0.6364,0.5,0.6364,0.8182,0.909,0.8182,0.6818,0.909,0.8636,0.8636,0.909,0.6818,-0.0454,-0.2728,-0.5454,-0.1608,0.2322,0.5892,0.6072,0.5,0.5536,0.9286,1,0.8928,0.4642,0.4642,0.7858,0.7142,0.5,0.4642,0.7678,0.9464,0.6786,0.3572,0.6072,0.5358,0.7142,0.5358,0.5,0.6786,0.6608,0.6072,0.7322,0.625,0.1428,-0.25,-0.375,-0.1892,0.2252,0.6936,0.6216,0.3874,0.4954,0.8918,1,0.928,0.2612,0.2612,0.5856,0.5496,0.4054,0.3514,0.7478,0.8018,0.5496,0.1712,0.5316,0.5316,0.5856,0.5676,0.4414,0.4594,0.5316,0.6036,0.6036,0.4594,0.027,-0.1172,-0.5136,0.8056,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.1112,0.0444,1,0.8222,0.8222,0.7112,0.4444,0.3112,0.4444,0.3778,0.4,0.2444,0.3778,0.3334,0.2,0.4888,0.3556,0.4222,0.0666,0.2,0.3778,0.3556,0.2444,0.1778,0.2222,0.1778,0.0888,0.1112,-0.0888,-0.1334,-0.4666,-0.3778,'12'
-0.6992,-0.4336,-0.1428,-0.0676,0.203,0.624,0.629,0.4236,0.193,0.2532,0.4486,0.4988,0.8396,1,0.8346,0.584,0.208,0.1528,0.233,-0.1228,0.1428,0.2732,0.4086,0.7794,0.8096,0.5588,0.3234,0.2532,0.3384,0.2982,0.2832,0.4236,-0.6594,-0.3668,-0.1092,-0.0394,0.2052,0.8296,0.834,0.38,0.3362,0.358,0.607,0.7598,0.8558,1,0.834,0.3494,-0.0918,0.0612,0.179,-0.1136,0.1966,0.3538,0.524,0.4672,0.4148,0.2664,0.2228,0.1266,0.249,0.2576,0.1528,0.4192,-0.6562,-0.3706,-0.0624,0.0134,0.2858,0.9464,0.9062,0.3706,0.567,0.6964,0.8572,1,0.942,0.7276,0.4732,0.0804,-0.25,-0.0224,-0.0358,-0.317,0.0312,0.0848,0.375,0.5044,0.5982,0.1964,0.1072,0.116,-0.0402,-0.1026,0.1786,0.509,-0.6302,-0.3698,-0.1142,-0.0456,0.2694,0.9224,0.8996,0.306,0.7398,0.8174,1,0.6758,0.4156,0.2192,-0.0046,-0.1552,-0.557,-0.2694,-0.2602,-0.589,-0.3608,-0.2968,0.032,0.5252,0.5844,0.1826,0.064,-0.242,-0.1918,-0.315,-0.1324,0.242,-0.5844,-0.291,-0.0416,0.1344,0.3448,0.9266,0.863,0.5062,1,0.9316,0.7556,0.4718,0.2568,-0.0758,-0.2616,-0.335,-0.56,-0.3056,-0.3398,-0.7018,-0.5892,-0.5892,-0.423,0.2372,0.3202,0.154,-0.1784,-0.2274,-0.4034,-0.5844,-0.1784,0.0122,-0.6354,-0.4004,-0.1224,0.108,0.199,0.5156,0.3238,0.7266,1,0.8034,0.1224,0.0264,-0.1846,-0.247,-0.4724,-0.4676,-0.458,-0.6068,-0.6882,-0.7698,-0.7458,-0.6642,-0.5924,-0.295,0.1224,0.175,-0.127,-0.4244,-0.4388,-0.5012,-0.084,-0.06,-0.481,-0.0534,0.1374,0.2672,0.5268,0.313,0.832,1,0.9084,0.7938,0.1222,-0.1604,-0.229,-0.3816,-0.1832,-0.4046,-0.229,-0.6718,-0.8396,-0.626,-0.5344,-0.687,-0.6336,-0.3664,-0.3894,0.0076,-0.0992,-0.5496,-0.6412,-0.771,-0.855,-0.0382,-0.7074,-0.5122,-0.2196,-0.317,0.0244,0.5122,0.4634,0.3658,0.2196,0.2196,0.4146,0.4146,0.756,1,0.9512,0.6098,0.1708,-0.122,0.1708,-0.122,-0.2196,0.3658,0.5122,0.6098,0.756,0.6098,0.2682,0.3658,0.2196,0.317,0.4634,0.317,-0.7334,-0.2444,-0.0666,0.0666,0.4222,0.7334,0.7334,0.5556,0.4222,0.3778,0.5556,0.5112,0.9556,1,0.8666,0.7778,0.4222,0.2888,0.2444,-0.1112,0.2444,0.3778,0.6444,0.9556,0.9112,0.6888,0.5112,0.4666,0.5112,0.3778,0.5112,0.5556,-0.618,-0.3484,-0.1012,0.0112,0.236,0.955,0.955,0.2808,0.7304,0.7978,1,0.6404,0.573,0.4606,0.191,-0.1236,-0.5056,-0.2584,-0.2134,-0.3484,-0.191,-0.0786,0.3932,0.573,0.5956,0.236,0.1686,-0.0562,-0.0338,-0.0786,-0.146,0.3484,-1,-1,-1,-1,-1,-1,-1,-0.8978,-0.9124,-0.888,-0.27,0.2214,0.5328,0.669,0.9124,0.9172,0.815,0.7128,0.5524,0.1824,0.0608,-0.2846,-0.6982,-0.7664,-0.7664,-0.7518,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9552,-0.9552,-0.8564,-0.1314,0.5112,0.8616,0.8962,0.9256,0.7362,0.7098,0.5142,0.2026,-0.0724,-0.2902,-0.6822,-0.884,-0.885,-0.9226,-0.9206,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.966,-0.9868,-0.8334,-0.31,-0.3134,-0.2268,-0.4268,-0.4668,-0.49,-0.5768,-0.6534,-0.69,-0.5944,-0.5686,-0.7172,-0.67,-0.6934,-0.8434,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4286,-0.4572,1,1,1,-0.6,-0.8858,-0.9142,-0.3428,-0.2858,-0.6572,-0.7142,-0.6858,0.6572,1,-0.1142,-0.8572,-0.7142,-0.8572,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.5744,-0.5772,-0.5804,-0.5588,-0.5854,-0.615,-0.6972,-0.7118,-0.6266,-0.4068,-0.5466,-0.3058,0.0764,0.3482,0.5326,0.7108,0.941,1,-0.4952,-0.3398,0.165,0.1456,0.0292,0.4564,0.3786,0.6894,0.67,0.1844,0.4952,0.864,1,0.6504,0.5534,0.5534,0.767,1,0.7088,0.4564,0.5728,0.7476,0.8446,0.864,0.0098,0.2038,0.4952,0.301,0.864,0.8058,0.3592,-0.1844,-0.1806,0.1112,0.375,0.625,0.5556,0.6112,0.75,1,0.6666,0.3888,0.5138,0.7222,0.8472,0.6944,0.5138,0.5138,0.625,0.7638,0.6388,0.4306,0.4444,0.6388,0.4722,0.6806,0.3056,0.3056,0.5,0.375,0.4862,0.3888,0.2638,0.1388,-0.0834,0.05,0.7334,0.6,0.4166,0.4666,0.9,1,0.65,0.4834,0.3,0.8166,0.95,0.7166,0.5334,0.6166,0.7166,0.9666,0.7334,0.5834,0.5,1,0.6166,0.8834,0.6,0.4,0.4,0.5666,0.5334,0.6,0.4834,0.15,0.5174,-1,-1,1,-0.8,-1,-1,-0.7,-1,0.215,0.6262,0.6262,0.8318,0.813,0.5328,0.3644,0.4766,0.4392,0.3832,0.458,0.2898,0.514,0.3458,0.0654,0.3644,0.9626,1,0.6262,0.6262,0.3644,0.3458,0.1776,0.701,0.3458,0.4018,0.4954,0.2336,0.215,0.215,0.1588,-0.3832,'12'
-0.5,0.0088,0.1328,0.2478,0.1992,0.407,0.6106,0.5576,0.4956,0.2876,0.5576,0.562,0.5974,0.6548,0.947,1,0.907,0.2036,0.1592,0.2566,0.0708,0.2124,0.6548,0.7654,0.823,0.5398,0.3452,0.261,0.1726,0.2346,0.2478,0.3672,-0.4768,-0.076,-0.0254,0.038,0.1562,0.5908,0.7172,0.5992,0.5358,0.4852,0.6076,0.6372,1,0.8482,0.7974,0.4726,0.3966,0.0126,0.1012,0.1392,0.2068,0.211,0.3376,0.768,0.7426,0.3544,0.3418,0.405,0.1646,0.1688,0.3418,0.5612,-0.5212,-0.171,-0.163,-0.1468,0.0182,0.5694,0.6136,0.4124,0.5332,0.6498,0.6016,0.831,1,0.7546,0.7184,0.3682,0.1912,-0.1188,0.0866,-0.0986,-0.179,-0.1228,0.2274,0.3802,0.3802,0.4044,0.0866,-0.0302,0.0462,0.0544,0.0744,0.014,-0.5136,-0.2102,-0.0194,-0.039,0.1322,0.7704,0.751,0.3814,0.5876,0.607,0.7626,1,1,0.6186,0.4552,0.1168,0.1362,0.0078,-0.0428,-0.3152,-0.3852,-0.3268,0.07,0.0778,0.144,0.0818,0.074,-0.0818,0.1128,0.0972,0.0428,-0.0116,-0.0404,0.4518,0.5016,0.4454,-0.1962,0.3956,0.3582,0.2336,0.7196,0.7694,1,0.9688,0.9626,0.19,-0.1152,-0.2212,0.0904,0.2212,0.2336,-0.2772,-0.2024,-0.1152,0.1526,-0.134,-0.3832,-0.5016,-0.514,-0.0032,0.4704,0.2524,-0.19,0.3146,0.163,0.706,0.5272,0.5016,-0.3354,0.0926,0.1374,0.3802,1,0.9936,0.6806,0.4824,0.5336,-0.0862,-0.425,-0.4824,0.0224,-0.0032,0.163,-0.3226,-0.4504,-0.1694,0.5528,0.3482,-0.0926,-0.54,-0.6932,-0.278,0.2332,0.1118,-0.2652,0.3354,0.1764,1,0.5838,-0.2488,-0.5384,-0.3846,-0.1132,0.457,0.3032,0.5022,0.2036,0.1222,-0.2218,-0.2218,-0.258,-0.3756,-0.1222,0.1312,-0.2308,-0.3756,-0.258,-0.2308,-0.1132,-0.1494,-0.1132,-0.4208,-0.3846,0.2308,0.2308,-0.4932,-0.457,-0.5656,-0.5,0.0556,0.1666,0.3888,0.1666,0.2222,0.4444,0.5,-0.3334,-0.1666,0.2778,0.1666,0.0556,0.3334,0.7778,1,0.8334,0.1666,-0.3888,-0.1112,-0.2778,-0.1112,0.6666,0.6666,0.6666,0.4444,0,0.0556,0.0556,0,0.0556,0.1666,-0.6098,-0.122,0.0244,0.1708,0.0732,0.2682,0.5122,0.4146,0.3658,0.2196,0.3658,0.5122,0.4146,0.4634,0.9512,1,0.4146,0.122,0.2196,0.122,-0.3658,0.122,0.4146,0.4634,0.0244,0.2682,0.2196,-0.0732,0.0244,0.0732,0.0244,-0.0732,-0.5676,-0.2162,-0.027,-0.081,0.054,0.7028,0.6486,0.4864,0.5136,0.8378,1,0.8108,0.8108,0.5406,0.1892,-0.1352,0,-0.027,0,-0.5676,-0.2432,-0.2702,-0.4324,-0.3784,-0.3784,-0.2162,-0.081,0.1352,0.4594,0.2702,0.054,0.054,-1,-1,-1,-1,-1,-0.9114,-0.8988,-0.8608,-0.6962,-0.3038,-0.1836,0.3734,0.4114,0.519,0.2974,0.7594,0.905,0.5886,0.6772,0.5126,0.3228,-0.1392,-0.8482,-0.8102,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9512,-0.9512,-0.8574,-0.7396,-0.5932,-0.5056,0.0388,0.5344,0.3142,0.1138,0.4918,0.8448,-0.1188,-0.5094,-0.5506,-0.6446,-0.7922,-0.9324,-0.9336,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.92,-0.5468,-0.3,-0.3468,-0.3534,-0.5086,-0.2572,-0.3726,-0.345,-0.43,-0.475,-0.6726,-0.9326,-0.8976,-0.91,-0.89,-0.9134,-0.9268,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,-0.1142,1,0.4,-0.2858,0.0286,1,0.7142,-0.2,-0.8286,-0.8572,0.0286,0.7714,-0.3142,-0.9428,-0.4,-0.4286,-0.7428,-0.3714,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.919,-0.5568,-0.5596,-0.567,-0.5696,-0.5674,-0.5888,-0.6066,-0.6374,-0.7934,-0.7342,-0.56,-0.1058,-0.4794,-0.4606,0.0676,0.4932,0.6096,-0.3666,-0.5342,-0.3972,0.169,0.0594,-0.0594,-0.0868,0.178,0.5252,0.8174,0.4064,0.0776,0.7808,0.6256,0.0776,-0.0776,-0.0136,-0.0776,0.032,-0.4794,0.1416,0.7078,0.7716,0.6894,0.1416,0.3242,0.3334,1,0.9086,0.8356,-0.169,-0.3972,-0.7442,-0.262,0.0596,0.2024,0.0714,0.0654,-0.0358,0.1488,0.3036,0.5774,0.2976,0.0654,0.7084,0.5476,0.0416,0.0476,-0.0298,0.1072,0.1786,-0.4226,0.0952,0.762,1,0.8214,0.381,0.369,0.1786,0.631,0.613,0.2976,-0.3928,-0.3572,-0.5892,0.092,0.3984,0.415,0.4708,0.248,0.2646,0.2758,0.727,0.805,0.103,-0.0194,0.6824,0.5822,0.337,0.0808,0.131,0.4038,0.3314,-0.1476,0.287,0.7494,1,0.9164,0.4874,0.4986,0.4094,0.6324,0.649,0.4262,0.2534,-0.287,-0.6824,-0.597,-1,-1,1,-0.2,-1,-1,-0.2334,-1,0,-0.1026,0.359,0.2052,0.5384,0.641,0.6924,0.6154,0.4102,0.2564,0.5384,0.8206,0.718,0.4358,0.282,0.5642,1,0.6666,0.5898,0.5384,0.718,0.5128,0.1538,0.4616,0.077,0.282,0.1538,-0.282,0.1026,-0.4102,-0.3076,-0.5128,'13'
-0.5568,0.029,-0.0448,0.0502,0.1768,0.3088,0.4036,0.2612,0.2718,0.2718,0.1768,0.3298,0.4828,0.657,1,0.9262,0.5672,0.5514,0.4828,0.0712,0.525,0.6518,0.9208,0.9156,0.6676,0.3932,0.4512,0.351,0.3774,0.3878,0.4248,0.5726,-0.5792,-0.2178,-0.0316,0.0242,0.1956,0.2626,0.404,0.3258,0.296,0.1508,0.352,0.419,0.5904,0.8622,1,0.6126,0.1546,0.4152,0.27,-0.013,0.2104,0.352,0.5716,0.5046,0.5866,0.4748,0.3744,0.1956,0.4078,0.404,0.3966,0.5642,-0.48,-0.0444,0.0106,0.0698,0.2516,0.4588,0.5984,0.5348,0.4968,0.446,0.6702,0.7252,1,0.9028,0.835,0.3868,0.1078,0.1374,0.0866,0.1712,-0.0994,0.1416,0.3658,0.4672,0.4968,0.205,0.074,0.0994,0.3954,0.3488,0.277,0.2178,-0.1978,0.3204,0.1866,0.2034,0.298,0.493,0.5766,0.7158,0.688,1,0.961,0.9498,0.6992,0.5822,-0.0864,-0.092,0.014,0.1978,-0.064,-0.3036,-0.0306,-0.0752,0.053,-0.053,-0.0194,-0.0418,0.014,0.064,0.0752,0.0864,-0.298,-0.1142,0.1018,0.6702,0.579,0.572,-0.3964,-0.2842,-0.179,0.0176,0.8948,1,0.6912,0.4316,0.1158,-0.3052,-0.1578,-0.2842,0.2982,0.235,0.1158,0.0456,0.0808,0.3474,0.0878,-0.1018,-0.3964,-0.1018,-0.1578,0.186,0.179,0.0386,-0.1088,0.235,0.0338,0.6104,0.3858,0.3108,-0.6404,-0.4756,-0.131,0.176,0.588,0.6928,1,0.3932,0.1236,-0.3408,-0.266,-0.4232,-0.1536,0.2584,0.0862,0.206,0.0786,0.0562,0.3034,-0.0188,-0.2808,-0.0486,0.3858,0.3484,0.0338,0.1012,0.0338,0.161,0.1708,1,0.5244,-0.183,-0.7074,-0.0976,-0.122,0.317,0.378,0.256,0.3902,0.0366,-0.122,-0.1708,0.1098,-0.3658,-0.256,-0.0244,-0.0732,-0.183,0.1342,-0.3414,0.1952,0.4878,0.4878,0.0976,0.2318,-0.1342,-0.317,0.0244,0.1098,0.2318,-0.091,0.8182,0.909,0.091,0.4546,0.3636,1,0.7272,0.091,0.3636,0,-0.3636,0,0.5454,0.8182,0.7272,0.909,0.3636,0.4546,0.1818,0.4546,0.6364,0.2728,0.7272,1,0.8182,0.6364,-0.1818,-0.091,-0.2728,-0.6364,0.3636,-0.5136,-0.081,-0.1892,0.027,-0.081,0.2432,0.4594,0.1352,0.1892,0.3514,0.1892,0.2432,0.6216,0.5676,1,0.946,0.6756,0.6216,0.5676,0.081,0.5136,0.6756,0.7838,0.7838,0.7298,0.4594,0.2432,0.4594,0.4594,0.3514,0.4594,0.6756,-0.4616,0.0256,0,0.077,0.3076,0.4872,0.6154,0.5384,0.5384,0.5642,0.7436,0.8206,1,0.8974,0.3846,0.1026,-0.5384,-0.0256,-0.1026,-0.0256,-0.2564,0.077,0.4358,0.3334,0.3076,-0.1538,-0.1538,-0.0512,0.3846,0.4358,-0.1026,-0.077,-1,-1,-1,-1,-1,-1,-0.8628,-0.8556,-0.834,-0.5812,-0.3068,0.4224,0.5668,0.7762,0.5956,0.5018,0.6174,0.639,0.6824,0.343,0.3212,-0.3936,-0.8556,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9302,-0.9376,-0.8736,-0.4912,-0.484,0.08,0.8982,0.7268,0.3402,0.1628,-0.0582,-0.4782,-0.4942,-0.5684,-0.638,-0.843,-0.9302,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9328,-0.94,-0.92,-0.26,-0.3868,-0.42,-0.06,-0.2486,-0.363,-0.4316,-0.6926,-0.8,-0.8726,-0.8576,-0.885,-0.855,-0.9268,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4286,-0.8286,1,1,0.2,1,1,-0.2572,0.2,0.3714,0.2,-0.4286,-0.8858,-0.8286,-0.2,-0.3428,-0.7428,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.6884,-0.3578,-0.3732,-0.3812,-0.387,-0.382,-0.3914,-0.443,-0.5252,-0.6238,-0.4392,-0.6,-0.1412,-0.3634,-0.503,0.2034,0.689,0.9578,0.2916,0.1878,0.3502,0.5026,0.6954,0.8376,0.4822,0.8884,0.9898,0.8274,0.7766,0.8274,0.7664,0.8274,0.9898,0.4518,0.3808,0.6244,0.6244,0.5228,0.5634,0.3502,0.137,0.5228,0.5126,0.401,0.2994,0.2792,-0.0254,0.2082,0.3198,0.1776,-0.594,-0.122,-0.2586,0.356,0.6098,0.4536,0.317,0.4732,0.9804,0.6488,0.6,0.6098,0.8732,1,0.7464,0.444,0.5512,0.3464,0.317,0.3756,-0.044,0.356,0.3756,0.3952,0.239,0.2196,0.278,0.1708,0.4048,0.3074,0.0048,-0.4342,-0.8536,-0.1352,0.02,0.3436,0.3968,0.2196,0.2328,0.3792,0.8892,0.8448,0.5388,0.4988,0.867,0.623,0.3348,0.419,0.4368,0.7428,0.8048,0.49,0.091,0.3348,0.4546,0.3304,0.3482,0.3748,0.2196,0.6674,1,0.9158,0.255,-0.1884,-0.8048,-0.9796,1,-1,-1,-1,-1,-1,-1,-1,0.1944,0.3612,0.5834,0.7222,0.5834,0.5556,0.25,0.8056,0.6666,0.6112,0.5834,0.7222,0.8612,0.8612,0.6944,0.6112,1,0.6666,0.6944,0.6388,0.6112,0.3612,0.6112,0.75,0.5278,0.3612,0.5556,0.5278,0.5834,0.5,0.3612,-0.1112,'13'
-0.851,-0.5018,-0.189,-0.08,0.2254,0.131,0.1018,0.2582,0.24,0.0364,0.0546,0.1128,0.2582,0.32,0.3746,0.6218,0.8182,0.9128,0.6328,0.5528,0.5128,0.749,0.8546,1,0.8946,0.7054,0.5128,0.5054,0.4764,0.4364,0.5236,0.52,-0.8092,-0.512,-0.2404,-0.1486,0.178,0.0348,0.134,0.3138,0.244,0.1522,0.167,0.167,0.2698,0.4386,0.523,0.7138,0.6184,0.666,0.4128,0.4092,0.5046,0.6478,0.71,1,0.9192,0.6074,0.3798,0.3944,0.4202,0.3394,0.4166,0.3982,-0.7758,-0.4804,-0.0916,-0.0692,0.2598,0.2412,0.301,0.3346,0.2448,0.3758,0.215,0.1626,0.3496,0.514,0.6748,0.9588,0.7906,0.6112,0.4468,0.3458,0.2598,0.5252,0.7308,1,0.8094,0.6,0.4206,0.2934,0.301,0.2598,0.2112,0.2186,-0.7518,-0.4512,-0.0564,-0.03,0.218,0.3496,0.391,0.267,0.327,0.4248,0.1428,0.1804,0.3234,0.6504,0.8346,1,0.703,0.327,0.0864,0.0414,0.1016,0.0752,0.4924,0.6016,0.4098,0.391,0.1654,-0.0112,0,-0.233,-0.297,-0.2594,-0.4102,0.0224,0.1124,0.1124,-0.0394,0.4044,0.4776,0.3988,0.5898,0.6742,-0.0618,0.2134,0.3764,1,0.8596,0.7192,0.2248,0.1124,0.1966,-0.118,-0.1236,-0.2078,0.6124,0.6966,0.2584,0.028,-0.2078,-0.337,-0.4044,-0.6404,-0.5562,-0.4662,-0.152,0.3392,0.3684,0.3274,-0.3742,-0.1286,-0.1578,0.076,0.1112,0.0584,-0.1052,0.228,0.5614,0.9182,0.462,0.2574,-0.228,0.4678,0.4854,-0.0526,0.0468,0.152,0.614,0.9122,1,0.1872,-0.234,-0.427,-0.2398,-0.4386,-0.4502,-0.1346,0.1416,1,0.6194,0.584,-0.0176,-0.1682,0.177,0.5222,-0.053,-0.23,-0.4602,0.3274,0.5486,0.5752,0.4248,0.0354,0.0176,0.0354,-0.1592,0.0884,0.0266,0.2036,0.3362,0.6372,0.2478,0.1504,-0.2212,-0.6284,-0.5044,-0.6902,-0.7876,-0.3274,-0.84,-0.24,0,0.04,0.08,0.04,0.12,0.12,0.16,0.08,0.12,0.16,0.28,0.4,0.48,0.64,0.96,0.92,0.64,0.64,0.56,0.72,0.8,1,0.92,0.68,0.64,0.52,0.48,0.52,0.56,0.6,-0.9148,-0.4042,-0.234,-0.1914,0.1064,0.1064,0.1914,0.2766,0.234,0.1064,0.149,0.149,0.234,0.3192,0.4468,0.617,0.532,0.9148,0.7872,0.4894,0.4468,0.7872,0.9574,0.8298,1,0.7446,0.5744,0.4468,0.4468,0.4468,0.4468,0.5744,-0.5714,-0.2858,-0.0286,-0.0286,-0.0572,0.3428,0.4286,0.3428,0.4286,0.5142,-0.1428,0.3428,0.4286,1,0.9142,0.6,0.0286,-0.0858,0.0286,-0.2858,-0.3428,-0.4286,0.4,0.4858,0.0858,0.0286,-0.1714,-0.3714,-0.5142,-0.4858,-0.5714,-0.4,-1,-1,-1,-1,-1,-1,-1,-1,-0.8778,-0.8602,-0.4236,0.5634,0.8078,0.5546,0.6682,0.9126,0.8516,0.3712,0.5196,0.4672,0.4586,-0.0218,-0.7206,-0.7118,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9568,-0.9532,-0.3108,0.75,0.9228,0.5912,0.556,0.5654,0.3808,-0.2278,-0.6192,-0.66,-0.7056,-0.8272,-0.9334,-0.93,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.96,-0.3934,-0.0686,0.0114,0.04,0.065,-0.085,-0.2226,-0.43,-0.82,-0.8326,-0.8776,-0.885,-0.9468,-0.8568,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,-1,-1,-0.8858,-0.8,-0.5428,1,1,-0.8286,-0.1428,-0.4858,-0.8572,-0.6,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.3212,0.3194,0.3462,0.3308,0.3176,0.3036,0.2724,0.2236,-0.0242,-0.348,-0.5866,-0.1058,-0.2524,0.6612,0.7254,0.8878,0.8738,1,-0.1698,-0.0944,0.1698,0.2452,0.2452,0.0188,0.283,0.5472,0.7736,0.849,0.7358,1,0.9246,0.7736,0.6226,0.5094,0.6982,0.6604,0.3962,0.434,0.849,0.849,0.6982,0.585,0.283,0.5094,0.5094,0.3584,0.434,0.434,0.434,-0.0188,-0.4408,-0.2258,0.0968,0.1612,0.0752,0.0322,0.2258,0.3978,0.7204,0.8064,0.699,1,0.9354,0.5268,0.3334,0.2044,0.3548,0.5054,0.1398,0.3978,0.828,0.828,0.742,0.3548,0.1182,0.3334,0.3764,0.0968,0.4194,0.4408,0.4624,-0.0108,-0.36,0.1,0.34,0.28,0.32,0.24,0.36,0.66,0.88,0.84,0.62,0.94,1,0.76,0.64,0.68,0.72,0.88,0.62,0.54,0.58,0.7,0.54,0.5,0.32,0.4,0.54,0.5,0.08,0.2,0.08,-0.34,1,-1,-1,1,-1,-1,-1,-0.8334,-1,0.132,0.4716,0.3208,0.9622,0.6982,0.6604,0.9622,0.6226,0.8868,0.6982,0.9246,1,1,0.283,0.2452,1,0.8868,0.585,0.585,0.7736,0.6982,0.6982,0.585,0.5094,0.6226,0.6226,0.3208,0.434,0.3208,-0.2076,-0.283,-0.3962,'14'
-0.573,-0.191,-0.1236,-0.06,0.131,0.06,0.0898,0.1086,0.1086,-0.015,-0.1236,-0.03,0.0188,0.0486,0.2922,0.442,0.5544,0.7978,0.764,0.251,0.6292,0.7042,1,0.9138,0.4044,0.2696,0.2958,0.0936,0.0674,0.1648,0.1274,0.3146,-0.4102,0.091,0.1752,0.295,0.459,0.4014,0.4768,0.2816,0.3482,0.3748,0.317,0.3216,0.521,0.6274,0.836,0.8404,1,0.7028,0.7028,0.3038,0.5166,0.7916,0.7606,0.867,0.5654,0.5432,0.1264,0.0998,0.193,-0.0554,-0.0954,0.4014,-0.4616,-0.0104,0.0144,0.1222,0.2836,0.2174,0.4038,0.2256,0.296,0.3498,0.263,0.3416,0.5776,0.6274,1,0.9006,0.147,0.2506,0.3126,-0.2174,0.1428,0.3624,0.4078,0.4658,0.0932,-0.0104,-0.2256,-0.2588,-0.1884,-0.4906,-0.1056,0.1926,-0.4566,-0.0264,0.1472,0.2416,0.4076,0.317,0.3812,0.3472,0.3622,0.3472,0.215,0.3434,0.7094,0.6868,1,0.8076,0.0038,0.1924,0.151,-0.3698,0.068,0.166,0.551,0.4868,-0.1284,-0.2076,-0.234,-0.6114,-0.6,-0.7774,-0.1132,0.068,-0.3162,0.1826,0.0592,0.0848,0.1568,0.0952,0.2494,0.5218,0.4294,0.4396,0.306,0.5424,1,0.7892,0.8612,0.3728,-0.1312,0.234,0.018,-0.2596,-0.203,-0.2494,-0.0026,-0.1208,-0.2082,-0.4088,-0.6658,-0.7172,-0.9126,-0.8252,-0.6196,0.3008,0.2752,0.9396,0.6712,0.7046,0.1946,0.0604,0.2148,0.6242,0.396,0.5168,-0.4496,0.7114,1,0.2684,0.349,-0.0202,0.1744,0.2282,0.1544,0.3088,0.4296,0.4026,0.5906,0.8054,0.1544,-0.2886,-0.2348,-0.49,-0.4564,-0.557,0.0672,0.1744,0.0982,1,0.4642,0.0804,-0.759,-0.5892,-0.4642,-0.0714,-0.2858,-0.4464,-0.9196,-0.1876,0.0268,-0.5982,-0.3928,-0.6428,-0.5268,-0.509,-0.4732,-0.3928,-0.3036,-0.3572,0.0982,0.1786,-0.134,-0.4018,-0.5178,-0.7142,-0.9018,-0.5982,-0.6964,-0.1608,-0.4418,-0.2094,-0.2094,-0.1628,0.0232,0.1628,0.0232,0.0698,0.0232,-0.0698,-0.2558,-0.2094,-0.3024,0.0698,0.1628,0.3488,0.5814,0.814,0.7674,0.3024,0.5814,0.814,1,0.8604,0.4884,0.4418,0.2094,0.1628,0.1628,0.2094,0.1628,0.1628,-0.628,-0.2094,-0.1162,0.0232,0.1162,0.0698,0.0232,0.0232,0.1162,0.0698,-0.1628,0.0232,0.0232,0.1162,0.2094,0.3488,0.628,0.8604,0.7674,0.3488,0.721,0.7674,1,0.9534,0.628,0.3024,0.3024,0.2094,0.2558,0.3024,0.2094,0.3488,-0.3056,0.1666,0.1666,0.1666,0.3334,0.25,0.3612,0.4444,0.3888,0.3612,0.3888,0.5834,1,0.9166,0.5834,0,-0.0834,0.3056,0.1388,-0.1944,-0.0278,-0.1666,-0.2222,-0.25,-0.3056,-0.3056,-0.4166,-0.75,-0.5834,-0.4722,-0.4722,0.4166,-1,-1,-1,-1,-1,-1,-1,-1,-0.8618,-0.8486,-0.6382,0.2566,0.671,0.8422,0.6842,0.7764,0.9672,0.5658,0.079,0.3158,0.1448,-0.171,-0.704,-0.7632,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9272,-0.9288,-0.627,0.5542,0.8762,0.421,0.2802,0.5604,0.438,-0.0356,-0.5604,-0.5604,-0.6362,-0.7554,-0.8916,-0.8948,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9068,-0.94,-0.7234,0.065,0.055,-0.2276,-0.295,-0.3226,-0.43,-0.555,-0.8276,-0.915,-0.9276,-0.9376,-0.9068,-0.86,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6,0.7714,1,1,-0.3142,0,-0.7714,-0.9428,-0.7714,0.7142,0.6858,-0.7428,-0.7428,-0.7428,-0.8,-0.8286,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.7356,0.2448,0.2208,0.1936,0.163,0.106,0.0074,-0.1356,-0.3196,-0.5846,-0.7138,-0.6266,-0.0824,-0.7662,0.3854,0.514,0.7074,0.983,1,0.0846,0.155,0.6902,0.676,0.7606,0.6478,0.7746,0.831,0.4226,0.4226,0.493,0.5916,0.9014,1,0.6338,0.2394,0.2676,0.5212,0.7324,0.3522,0.4226,0.324,0.183,0.6198,0.6056,0.3802,0.5212,0.4084,0.2816,0.3098,-0.4508,-0.831,0.2142,0.2142,0.796,0.7448,0.3572,0.4184,0.5714,0.5918,0.5204,0.5204,0.8266,0.6122,0.8572,1,0.3368,0.4184,0.5102,0.2244,0.296,0.2142,0.4286,0.2346,0.051,0.2756,0.5,0.3878,0.1836,0.2756,0.3572,0.2346,0.0408,-0.2756,-0.1058,-0.1058,0.2596,0.3846,0.3654,0.1346,0.0384,0.1538,0.7116,0.75,0.75,0.8942,0.827,0.5674,0.5096,0.452,0.8366,1,0.5384,0.0384,0.5384,0.3654,0.202,0.3942,0.1058,0.423,0.8366,0.5962,0.4038,0.423,0.3076,-0.4326,-0.9598,1,-1,-1,-1,-1,-1,-1,-1,-0.0666,0.7334,0.5778,0.8444,0.7778,0.8222,0.7778,0.9556,0.5334,0.5112,0.3778,0.7334,0.8,0.8888,0.6888,0.5556,1,0.7778,0.7334,0.6666,0.5334,0.5334,0.6444,0.5556,0.4888,0.6888,0.7112,0.6444,0.2444,0.5112,0.2,-0.1556,'14'
-0.6038,-0.169,-0.029,0.0772,0.4782,0.5314,0.5894,0.5556,0.6086,0.86,1,0.9904,0.5218,0.3864,0.2078,-0.169,-0.2898,-0.372,0.1546,0.2416,0.459,0.3236,-0.0822,-0.256,-0.2464,-0.0194,0.0338,0.0822,0.4154,0.4348,0.5652,0.4492,-0.4928,-0.1232,0.0568,0.2086,0.5546,0.4454,0.526,0.5972,0.853,1,0.801,0.801,0.4692,0.2606,-0.0616,-0.3318,-0.346,-0.5592,-0.0616,0.1374,0.5214,0.3602,-0.1896,-0.3792,-0.4598,-0.3176,-0.256,-0.1612,0.128,0.346,0.4218,0.1374,-0.522,-0.2158,0.0302,0.3874,0.6334,0.4942,0.4942,0.5082,0.9444,1,0.587,0.4386,0.2482,0.0024,-0.0998,-0.3782,-0.4802,-0.522,-0.304,-0.0904,0.0488,-0.109,-0.3596,-0.4338,-0.4106,-0.5592,-0.6194,-0.341,-0.1554,0.0024,0.1044,-0.1416,-0.5408,-0.215,0.0772,0.4364,0.6076,0.4488,0.453,0.5114,1,0.9958,0.2234,-0.0354,-0.144,-0.236,-0.3904,-0.3778,-0.6242,-0.6326,-0.549,-0.2776,-0.3028,-0.2066,-0.2234,-0.261,-0.5448,-0.4906,-0.5032,-0.3696,-0.215,-0.1316,0.19,0.0188,-0.4026,-0.0442,0.4026,0.6884,0.9064,0.6728,0.6468,0.8962,1,0.9532,0.3038,-0.0806,-0.1428,-0.3298,-0.3922,-0.387,-0.3714,-0.3818,-0.4182,-0.465,0.091,0.2052,-0.2312,-0.4494,-0.5584,-0.5584,-0.5584,-0.3766,-0.0546,0.1688,0.2832,-0.2988,-0.4094,-0.0418,0.4374,0.5766,0.805,0.8662,0.8552,1,0.5544,0.4708,-0.0194,-0.3538,-0.4038,-0.4764,-0.6212,-0.6602,-0.3204,-0.4484,-0.7048,-0.4374,-0.1866,-0.1532,-0.5654,-0.6658,-0.5544,-0.5042,-0.571,-0.4652,-0.181,0.248,0.2256,-0.8162,-0.0944,0.4174,0.0236,0.6772,0.9842,0.8346,0.811,1,0.63,0.5984,-0.5906,-0.8188,-0.7008,-0.4882,-0.2204,-0.4804,-0.378,-0.2834,-0.4488,-0.5984,-0.441,-0.3858,-0.5826,-0.4174,-0.5354,-0.4724,-0.5196,-0.5354,-0.63,-0.1182,-0.2834,-0.6062,-0.7,0,0.15,0.3,0.5,0.65,0.7,0.6,0.8,0.95,1,0.85,0.85,0.55,0.25,0.15,-0.15,0.15,0.25,0.3,0.3,0.3,0.05,0.1,0.1,0,0.2,0.35,0.45,0.55,0.6,0.45,-0.5112,-0.1556,0.0666,0.0666,0.6,0.7334,0.7778,0.6,0.4666,0.7778,0.9556,1,0.4222,0.3778,0.2444,-0.0666,-0.1556,-0.3334,0.2444,0.3778,0.4222,0.2888,0.0666,-0.2,-0.2,0.0222,-0.0666,0.1112,0.4666,0.3778,0.4666,0.5112,-0.518,-0.1808,-0.012,0.229,0.4458,0.3976,0.3976,0.5422,0.9278,1,0.735,0.6144,0.3734,0.0362,-0.0602,-0.1808,-0.3012,-0.5422,-0.3012,0.1808,0.4458,0.253,-0.1326,-0.1808,-0.3494,-0.5422,-0.253,-0.3254,-0.2048,0.3494,0.3494,-0.2772,-1,-1,-1,-1,-1,-1,-1,-1,-0.9378,-0.9572,-0.8796,0.301,0.3398,0.3398,0.4058,0.934,0.5844,0.8098,0.3436,0.2116,-0.002,-0.4874,-0.6816,-0.732,-0.5418,-0.5884,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9496,-0.9522,-0.8324,0.6108,0.8942,0.5026,0.5126,0.6662,0.5378,0.4244,-0.1624,-0.2368,-0.4006,-0.7494,-0.854,-0.8728,-0.8022,-0.8338,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9798,-0.9668,-0.8534,-0.57,-0.4468,-0.5468,-0.54,-0.5516,-0.543,-0.5886,-0.7286,-0.72,-0.703,-0.8286,-0.8468,-0.87,-0.93,-0.97,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4858,-0.5714,1,1,0.0572,0,-0.6,-0.8572,-0.8572,-0.8,-0.6858,-0.5714,-0.4286,-0.3714,-0.7428,-0.9714,-1,-0.3142,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.8774,-0.8554,-0.8418,-0.8062,-0.7842,-0.7844,-0.7784,-0.8192,-0.8078,-0.578,-0.5466,-0.247,-0.83,0.0152,0.6764,0.9848,0.8828,1,0.1094,-0.0948,0.0802,0.7226,0.562,0.5328,0.562,0.7664,0.343,0.8394,0.9562,0.562,0.9854,1,0.2992,0.5182,0.5766,0.6058,0.5766,0.1386,0.2116,0.5766,0.3576,0.051,0.2262,0.4452,0.489,0.489,0.2116,0.0218,-0.124,-0.343,0.2456,-0.018,0.461,0.7724,0.6766,0.461,0.7246,0.6168,0.9162,0.8802,1,0.8324,0.976,0.6168,0.7126,0.6048,0.533,0.3414,0.2336,0.4252,0.7126,0.2216,0.473,0.6408,0.8084,0.6526,0.521,0.7964,0.3772,0.2574,0.1616,-0.509,-0.0056,0.1978,0.2542,1,0.7288,0.695,0.582,0.6724,0.6046,0.582,0.8306,0.2994,0.7288,0.5932,0.548,0.774,0.4464,0.435,0.2768,0.5142,0.661,0.3898,0.5142,0.4012,0.4238,0.3108,0.7062,0.209,0.2542,0.209,0.0396,-0.6384,-0.9974,1,-1,-1,-1,-1,-1,-1,-1,0.2308,0.3186,0.8462,1,0.8242,0.3846,0.3846,0.4066,0.2308,0.077,-0.011,-0.077,0.5604,0.3626,0.2748,0.1868,0.4286,0.3406,0.1868,0.3186,-0.011,0.099,0.2748,0.1208,-0.011,0.2528,0.055,-0.1428,-0.2088,-0.1208,-0.2968,-0.4946,'15'
-0.5326,-0.049,0.1522,0.2608,0.7826,0.6414,0.7066,0.6902,0.7336,0.9294,0.8804,1,0.5218,0.4566,-0.049,-0.3098,-0.3424,-0.049,-0.1848,-0.2392,0.4294,0.4892,0.5924,0.3586,0.2718,0.0272,0.0164,0.2718,0.5,0.6358,0.7228,0.6304,-0.4976,-0.0718,0.177,0.378,0.8278,0.7034,0.646,0.6556,0.6938,1,0.799,0.713,0.4114,0.3398,-0.0288,-0.268,-0.579,-0.11,-0.2392,-0.3876,0.2728,0.2536,0.3732,0.2248,-0.1052,0.0526,0.0288,0.0288,0.3828,0.4546,0.5646,0.4594,-0.5614,-0.2076,0.0188,0.3538,0.7028,0.533,0.4292,0.6462,0.8538,1,0.6084,0.5284,0.2358,0.0048,-0.0944,-0.4858,-0.4764,-0.3962,-0.5378,-0.2972,-0.0518,0.335,0.3538,-0.2878,-0.1746,-0.099,-0.1746,-0.118,0.1038,0.4764,0.5142,-0.0802,-0.5898,-0.268,0.0816,0.4826,0.725,0.5058,0.5058,0.6318,0.958,1,0.296,0.1468,0.1002,-0.3006,-0.4312,-0.7062,-0.8182,-0.4452,-0.2868,-0.3892,0.1934,0.4592,0.2728,-0.1794,-0.2728,-0.4032,-0.3986,-0.1748,0.0956,0.2168,-0.0256,-0.1468,-0.4844,-0.099,0.2812,0.7552,0.9948,0.823,0.8282,0.9792,0.9948,1,0.3124,0.0572,-0.276,-0.4322,-0.5416,-0.677,-0.5626,-0.552,-0.4844,-0.4218,0.25,0.4322,0.0572,-0.1822,-0.2864,-0.2292,-0.2292,-0.125,0.427,0.427,-0.1302,-0.2812,-0.3842,0.021,0.2368,0.621,0.8842,0.721,0.7684,1,0.7632,0.3684,-0.1368,-0.3052,-0.4422,-0.5842,-0.5422,-0.6894,-0.6736,-0.6052,-0.4632,-0.8578,-0.5474,-0.4632,-0.4,-0.3948,-0.3684,-0.6264,-0.5264,-0.4158,0.1158,0.1736,-0.2736,-0.5052,-0.0672,0.5462,0.0588,0.4874,1,0.6386,0.3614,0.6218,0.4454,0.0252,-0.3278,-0.5882,-0.5126,-0.605,-0.3026,-0.4454,-0.563,-0.4874,-0.5546,-0.4454,-0.437,-0.5294,-0.1512,-0.168,0.0588,-0.4202,-0.395,-0.5042,-0.731,-0.3278,-0.395,-0.3194,-0.2258,0.1612,0.4838,0.613,1,0.871,0.871,0.8064,0.9354,1,0.6774,1,0.8064,0.4194,0.2258,-0.2258,-0.0322,0.0968,-0.1612,0.0322,0.5484,0.742,0.871,0.4194,0.613,-0.0322,0.2904,0.4194,0.4194,0.8064,0.742,0.742,-0.5556,-0.2222,-0.1112,0.2778,0.6112,0.5,0.6112,0.6112,0.6666,0.9444,0.9444,1,0.5,0.4444,-0.0556,-0.3334,-0.3334,-0.1112,-0.1666,-0.3888,0.4444,0.5556,0.5556,0.3888,0.1666,0,-0.1112,0.2222,0.5,0.6112,0.6112,0.5556,-0.3334,0.0124,0.2346,0.6296,0.8272,0.6544,0.8272,1,0.7778,0.4814,0.1112,-0.0124,-0.432,-0.605,-0.3828,-0.5308,-0.4568,-0.3086,-0.1852,-0.3828,-0.284,-0.0864,-0.0864,-0.2098,-0.284,-0.4814,-0.432,-0.1358,0.432,0.432,-0.1358,-0.1604,-1,-1,-1,-1,-1,-1,-1,-1,-0.935,-0.935,-0.7106,0.067,0.5552,0.6962,0.6782,0.4142,0.8554,0.6636,0.4538,0.3346,-0.0742,-0.5804,-0.8228,-0.6962,-0.7252,-0.6782,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9244,-0.9422,-0.5984,0.3398,0.7978,0.8748,0.8694,0.7538,0.9492,0.4966,0.2118,0.1444,-0.3742,-0.773,-0.8844,-0.8336,-0.8556,-0.8486,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.92,-0.6434,-0.54,-0.4834,-0.5534,-0.5434,-0.4916,-0.5686,-0.6172,-0.6344,-0.683,-0.7972,-0.8286,-0.9468,-0.8734,-0.8934,-0.86,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,0.9428,1,1,-0.2286,-0.8858,-0.9142,-0.7142,-0.6858,-0.6858,-0.6572,-0.4,-0.2858,-0.4,-0.8572,-0.9142,-0.9142,-0.2858,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.274,-0.2754,-0.274,-0.2756,-0.2682,-0.2662,-0.2882,-0.3006,-0.2894,-0.1708,-0.56,-0.2588,-0.4594,-0.198,0.502,0.7084,0.8212,0.2916,-0.3134,-0.1044,0.1642,0.4926,0.6716,1,0.7014,0.582,0.0746,-0.0448,0.2538,0.8508,0.582,0.4626,0.8208,0.791,0.612,0.7014,0.5224,0.6716,0.6418,0.582,0.612,0.6418,0.582,0.4926,0.3432,0.3134,0.4328,0.3432,0.2836,-0.612,-0.3,0.04,0.44,0.54,0.6,1,0.88,0.32,-0.1,-0.12,0.46,0.54,0.26,0.3,0.36,0.52,0.22,0.2,0.1,0.08,0.18,0.42,0.34,0.16,0.16,0.18,-0.06,0.16,0.2,-0.02,0.06,-0.36,0.3,0.525,0.65,0.925,0.85,1,0.775,0.2,-0.025,0.15,0.525,0.775,0.475,0.225,0.575,0.65,0.325,0.225,0.3,0.3,0.45,0.475,0.325,0.65,0.7,0.5,0.35,0.25,0.475,0.175,0.275,-0.075,0.846,-1,-1,1,-1,-1,-1,-0.8,-1,0.6056,0.2958,0.8028,0.8592,0.6338,0.6338,0.7464,0.9436,0.9154,0.8028,0.8874,1,0.831,0.7746,0.324,0.1268,0.7464,0.6338,0.4366,0.7464,0.8028,0.4366,0.831,0.6056,0.5212,0.4648,0.324,0.5492,0.183,0.2676,-0.2112,-0.2112,'15'
-0.3784,0.2028,0.027,0.2568,-0.4054,-0.7568,-0.4324,-0.446,-0.5,-0.7298,-0.6352,-0.8378,-0.581,-0.4594,-0.446,-0.4864,-0.554,-0.6352,-0.0406,0.554,1,0.8244,0.6486,0.5,0.4864,0.2838,0.1486,0.2838,0.054,0.027,0.2028,0.3648,-0.2136,0.5726,0.3504,0.1624,-0.1112,-0.5214,-0.1452,-0.265,-0.3676,-0.3162,-0.7436,-0.7778,-0.282,-0.1452,-0.1112,-0.2308,0.0086,-0.1452,-0.0598,0.0256,0.829,0.8462,0.3676,0.7264,0.6752,0.5556,0.5042,0.6582,0.8462,0.9658,1,0.9316,-0.6138,-0.0068,0.1862,0.338,-0.1034,-0.2552,-0.6552,-0.4896,-0.3518,-0.2828,-0.462,-0.3932,-0.4068,-0.5034,-0.8344,-0.669,-0.531,-0.1448,-0.1172,0.3932,0.9448,0.8206,0.6552,0.8344,0.738,0.6966,0.5862,0.6828,0.7518,0.8068,0.8068,1,-0.6732,-0.901,-0.3564,-0.406,-0.4654,-0.4158,-0.4258,-0.3366,-0.5842,-0.1782,-0.2772,-0.4654,-0.495,-0.406,-0.099,-0.2476,-0.3762,-0.1386,-0.0396,0.099,0.198,0.2674,0.2872,0.3564,0.6238,0.6436,0.1882,0.4158,0.5346,0.6138,0.6436,1,-0.338,-0.6276,-0.669,-0.4758,-0.3242,-0.6276,0.0896,0.2276,-0.062,0.062,0.0344,0.0344,0.0344,-0.2,-0.1448,0.062,-0.062,-0.1172,0.3518,0.4344,0.3518,0.5034,0.6138,0.5448,0.5034,0.6276,0.3242,0.462,0.8482,0.7932,0.5724,1,-0.7222,-0.9074,-0.2222,-0.074,-0.2038,0.1852,-0.3334,-0.5926,-0.3148,-0.3704,0.0186,0.1666,-0.8518,-0.6852,-0.1666,0,0.0186,0.074,0.2408,0.3518,0.4074,0.3334,0.4814,0.463,0.6482,0.7038,-0.0926,0.2038,0.1482,0.3334,0.4814,1,-0.7114,-0.5876,-0.7114,-0.6702,-0.031,0.1752,-0.2164,-0.2372,-0.0722,-0.0722,-0.3814,-0.2784,-0.031,0.3402,0.1752,0.2784,0.1752,0.3608,0.897,0.6494,1,0.7526,0.7526,0.567,0.6288,0.3814,0.1752,0.5052,0.5052,0.6908,0.5052,0.8762,-0.4054,0.081,-0.1352,0.1352,-0.4054,-0.5136,-0.2432,-0.2432,-0.2972,-0.7838,-0.4054,-0.2972,-0.1892,-0.1892,-0.5136,-0.4054,-0.6756,-0.1892,0.1892,0.7838,1,0.7298,0.5676,0.5676,0.4594,0.2972,0.2972,0.2972,0.027,0.1352,0.3514,0.3514,0.2222,0.6112,0.4444,0.6666,0.2778,-0.2778,-0.3334,-0.4444,-0.1666,-0.0556,-0.1112,-0.4444,-0.3334,-0.0556,0.2222,0.0556,-0.1112,-0.1666,-0.2778,0.2222,0.8888,1,0.8888,0.7222,0.6112,0.5556,0.0556,0.5,0.4444,0.2778,0.0556,0,-0.725,-0.975,-0.125,-0.075,-0.15,-0.125,-0.375,-0.45,-0.5,-0.125,-0.075,-0.275,-0.475,-0.3,-0.1,-0.25,-0.075,0.1,-0.375,-0.05,-0.05,0.25,0.35,0.3,0.4,0.5,-0.025,0.4,0.375,0.4,0.775,1,-0.8644,1,1,1,1,1,1,1,1,1,0.6158,0.6836,0.9774,0.3672,-0.2204,-0.1978,-0.548,-0.7402,-0.6384,-0.6158,-0.661,-0.6384,-0.6724,-0.7288,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8296,1,1,1,1,1,1,1,1,1,1,0.6278,0.2332,-0.2152,0,-0.0762,-0.2286,-0.5696,-0.5964,-0.6368,-0.6772,-0.731,-0.695,-0.7488,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9934,-0.8634,-0.95,-0.9668,-0.8168,-0.6868,-0.2634,-0.23,-0.1934,0.11,0.06,-0.08,-0.6534,-0.3668,0.2,0.18,0.13,-0.27,-0.56,-0.7,-0.32,-0.56,-0.7468,-0.7868,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,0.3714,0.8572,1,-0.3428,-0.8286,-0.8572,-1,-0.7428,0.4,0.7714,0.6286,-0.2,-0.4572,-0.6572,-0.3142,-0.3142,-0.5714,-0.6858,-0.6,-0.6858,-0.6572,0.3714,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.1604,0.0808,0.0808,-0.1328,-0.1594,-0.194,-0.162,-0.132,0.0928,0.5394,0.8352,0.739,0.739,0.7116,0.6566,0.6022,0.5472,0.5998,0.5656,0.3882,-0.6266,-0.6588,1,0.8386,0.314,-0.0628,-0.1346,-0.9,0.1106,0.2924,0.1186,0.17,-0.0474,-0.0554,0.174,0.1068,0.2648,0.8222,0.7748,0.992,0.8538,0.5574,0.506,0.589,0.6758,0.336,0.2016,0.3558,0.257,-0.0238,0.3636,0.7036,0.747,1,0.9842,0.7588,0.4426,0.2964,0.0988,-0.506,0.0488,0.1534,0.122,-0.0976,-0.0732,-0.237,-0.0662,-0.101,0.0732,0.547,0.8084,0.7422,0.7352,0.5574,0.4982,0.5784,0.6656,0.439,0.2858,0.331,0.0836,0.352,0.5854,0.763,0.7456,1,0.9304,0.5644,0.4564,0.3136,0.1708,-0.338,0.0456,0.1164,-0.0286,-0.1062,-0.2648,-0.2412,-0.1704,-0.1872,-0.0928,0.5852,0.8146,0.8178,0.7404,0.5716,0.4166,0.5548,0.7134,0.4704,0.2748,0.3558,0.2108,0.3626,0.747,0.747,0.7572,0.9696,1,0.565,0.2512,0.2546,0.2716,-0.2344,-0.139,-1,1,-1,1,-1,-1,0.1334,-1,-0.1666,-0.106,-0.0152,0.0606,0.1212,-0.2576,-0.1364,0.3788,0.2272,-0.1364,-0.091,0.0454,0.1516,0.1364,0.2728,0.303,0.3334,0.106,0.409,0.5758,0.5,0.3334,0.2272,0.409,0.4696,0.6364,1,0.9546,0.7576,0.606,0.197,-0.2424,'16'
0.6824,0.2824,-0.8588,-0.5412,-0.553,-0.5294,-0.5412,-0.5176,-0.4706,-0.5648,-0.553,-0.4824,0.0118,0.047,0.5764,0.2588,0.2352,0.6588,0.4236,-0.4,0.5882,0.9764,0.9294,0.553,0.5412,0.4588,-0.153,0.1648,0.4706,0.6118,0.7176,1,0.4386,0.4386,0.2514,-0.2632,-0.7544,-0.4502,-0.3802,-0.579,-0.7426,-0.4386,-0.2866,0.0292,-0.0176,0.0994,0.0058,-0.1812,-0.0526,0.5672,0.6374,0.579,0.696,0.6024,0.8948,0.9884,1,0.2748,0.5204,0.5204,0.2398,0.4502,0.4386,0.7426,-0.7534,0.2054,0.0502,-0.3972,-0.58,-0.2512,-0.58,-0.4246,-0.8264,-0.7626,-0.653,-0.653,-0.2968,-0.3882,-0.4338,-0.379,-0.2328,0.3972,0.7716,0.5252,0.5434,0.6712,0.6712,0.7352,1,0.8174,0.443,0.3242,0.4064,0.443,0.589,0.8356,-0.5034,0.069,-0.1242,-0.4206,-0.2,-0.1862,-0.1724,-0.331,-0.3448,-0.6828,-0.6758,-0.3448,-0.4138,-0.2552,-0.4414,-0.338,-0.5656,0.138,0.6896,0.5724,0.6966,0.4344,0.5724,0.9104,0.9586,0.931,0.7034,0.5656,0.6344,0.6482,0.7862,1,-0.2918,0.0918,0.027,0.0756,0.0162,-0.0702,-0.119,-0.0486,-0.1028,-0.3028,-0.3298,-0.2432,-0.119,-0.1838,-0.2594,-0.1136,-0.0432,0.254,0.4432,0.8324,0.8324,0.6216,0.5244,0.5676,0.9946,1,0.6864,0.519,0.5568,0.6432,0.6216,0.7784,-0.7294,-0.3308,-0.0752,-0.0752,-0.5564,-0.3234,-0.3082,-0.7218,-0.9172,-0.9098,-0.609,-0.4586,-0.376,-0.579,-0.6918,-0.564,-0.594,0.0602,0.3008,0.8872,0.8722,0.436,0.4888,0.5038,0.8796,0.6616,0.4512,0.5864,0.3384,0.361,0.594,1,-0.5366,-0.0656,-0.0194,0.0194,-0.5058,-0.2972,-0.2356,-0.3204,-0.4904,-0.637,-0.5676,-0.5752,-0.5598,-0.7298,-0.305,-0.4054,-0.2664,-0.0502,0.1584,0.8996,0.9692,0.722,0.6756,0.6834,1,0.8764,0.7066,0.5366,0.498,0.5058,0.583,0.8996,0.4594,0.1892,-0.4594,-0.5676,0.027,0.1892,-0.081,-0.1352,0.1892,0.3514,0.2432,-0.081,0.6756,0.8378,0.8378,0.6756,0.7298,0.8918,0.7298,0.1892,0.7838,0.946,0.8918,0.2972,0.5676,0.5136,0.1892,0.5676,0.6756,0.3514,0.946,1,0.4736,0.2106,0,-0.1052,-0.1578,-0.3158,0.1578,0.1052,0,-0.0526,0,0.0526,0.0526,0.0526,0.3158,0.2632,0.2106,0.579,0.579,0.0526,0.7368,1,0.7368,0.6316,0.6842,0.7368,0.5264,0.2106,0.1052,0.3158,0.4736,0.2106,-0.5384,0.4616,0.423,-0.6154,-0.4616,0.077,-0.2308,-0.2692,-0.6154,-0.3462,-0.577,-0.3076,-0.0384,0.1154,-0.3462,-0.1154,-0.077,-0.077,0.3846,0.1154,0.8076,0.8076,0.5,0.5,1,0.7692,0.0384,-0.1538,0.2692,0.1154,0.3076,0.2692,-1,-1,-1,-1,-1,-1,-1,-1,-0.9304,-0.918,-0.545,0.1558,0.4632,0.1598,0.1516,0.0696,0.004,-0.2622,-0.4344,-0.5656,-0.4796,-0.6106,-0.668,-0.877,-0.8566,-0.8852,-0.9222,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.875,-0.8572,-0.3988,0.0834,0.244,0.128,0.4256,0.6726,0.8096,0.6518,0.1042,-0.1696,-0.2262,-0.262,-0.506,-0.6042,-0.6518,-0.753,-0.869,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.9468,-0.8634,-0.76,-0.924,-0.9,-0.732,-0.2,-0.0634,0.1032,-0.1834,-0.0934,-0.2468,-0.16,-0.2634,0.0932,0.1632,-0.5834,-0.94,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,0.0286,-0.4,0.7428,0.7142,0.6286,-0.4858,-0.6858,-0.5428,-0.7142,-0.9714,-0.2286,0.1714,-0.5428,0.1142,0.6286,-0.1428,-1,-1,-1,-1,-1,-1,0.1036,0.1036,-0.0356,-0.135,-0.3076,-0.3472,-0.3638,-0.2186,-0.0284,0.2176,-0.0658,-0.0658,-0.1044,-0.0858,-0.0398,-0.0342,0.0912,0.166,0.4108,0.5702,-0.64,-0.4,-0.3512,-0.0178,0.1578,0.5148,-0.2262,0.0084,-0.0136,0.041,-0.1506,0.0684,0.0684,0.4246,0.6438,0.6438,0.4794,0.2876,0.5342,0.6712,0.8082,0.726,1,0.9726,0.863,0.8904,0.9452,0.8356,0.8082,0.8082,0.6712,0.863,0.7534,0.8356,0.8082,0.8904,0.8904,0.7808,0.589,0.0136,0.0228,-0.2046,-0.2046,-0.1818,-0.0682,0.1136,0.4772,0.341,0.3864,0.1364,0.2728,-0.0454,0.0228,-0.159,1,1,0.2046,0.5,0.7046,0.5454,0.4546,0.341,0.1818,0.5682,0.4318,0.159,0.5228,0.6136,0.6364,0.5228,0.4546,-0.0454,0.375,-0.25,0.05,0.075,-0.15,-0.075,0.3,0.425,0.45,0.325,0.625,0.75,0.2,0.2,0.575,0.8,0.8,0.275,1,0.925,0.525,0.575,0.375,0.6,0.4,0.3,-0.025,0.6,0.425,0.4,0.15,-0.15,-0.0834,-1,-1,1,-1,-1,-1,-0.8,-1,-0.5268,-0.374,-0.2062,-0.145,-0.4504,-0.5268,-0.2366,-0.2062,-0.1756,-0.3894,0.023,0.023,0.4962,0.4198,0.0076,0.252,0.4504,0.2214,0.4352,1,0.9542,0.2978,0.481,0.6184,0.2672,-0.084,0.1604,0.0688,0.0076,0.0382,0.084,-0.084,'16'
-0.7294,-0.6706,-0.7352,-0.7352,-0.4942,-0.4412,-0.4176,-0.5706,-0.5412,-0.4882,-0.4824,-0.6706,-0.3706,-0.253,-0.4942,-0.3176,-0.3058,-0.4706,-0.4176,-0.2764,-0.053,-0.0294,0.1882,0.3118,0.7118,0.8412,0.9882,0.8764,0.9,0.8176,0.8058,1,-0.6974,-0.0264,0.0526,-0.4606,-0.7106,-0.5856,-0.4342,-0.5066,-0.6448,-0.7434,-0.6052,-0.4474,-0.3816,-0.4934,-0.3422,-0.1776,0.0724,-0.0394,0.1184,0.0132,-0.0592,0.0922,0.579,0.7764,0.9672,0.8092,0.75,0.829,0.8356,0.7236,1,0.9672,-0.4238,0.3278,0.3278,-0.119,-0.165,0.094,0.0146,-0.0314,-0.1274,-0.1274,-0.1942,-0.0146,-0.1022,0.1232,0.0522,0.2066,0.3444,0.879,0.8622,0.6116,0.5032,0.9666,0.8748,0.833,0.7244,0.6826,0.6368,0.7578,0.7328,0.9582,1,0.9248,-0.545,0.0658,0.002,-0.018,-0.1816,-0.1616,-0.1936,-0.0538,-0.1816,-0.0978,-0.1856,-0.1536,0.0538,-0.006,0.0698,0.2336,0.473,0.457,0.7126,0.8762,0.9122,0.6488,0.4252,0.4292,0.2854,0.3374,0.4252,0.465,0.7206,0.8602,1,0.9122,-0.4794,0.1436,0.3966,0.5912,0.0852,-0.2408,-0.0122,-0.0608,0.0414,-0.1338,-0.0802,0.1338,0.3382,0.5912,0.8734,0.9076,0.489,0.6642,0.8978,1,0.5962,0.3382,0.1582,0.0998,0.1532,0.2604,0.4502,0.7178,0.961,0.9806,0.854,0.5718,-0.3284,0.3722,0.8322,0.9854,-0.1752,-0.0146,0.3358,0.1022,0.1532,0.6788,0.6496,0.9562,0.927,0.7592,0.489,0.416,0.2336,0.562,0.8978,1,0.5036,0.0656,-0.2262,-0.219,-0.0218,-0.0584,0.3868,0.5912,0.708,0.562,0.4234,-0.0292,-0.2626,-0.1244,0.7788,1,-0.189,-0.9448,-0.2904,-0.189,-0.1798,-0.189,-0.4378,-0.189,-0.189,-0.2258,-0.189,0.106,0.0506,-0.189,-0.1982,-0.1706,-0.1428,-0.1336,-0.189,-0.0322,0.106,-0.3732,-0.4562,-0.3456,-0.3364,-0.106,-0.1982,-0.613,-0.2962,-0.1852,-0.4074,-0.037,-0.1482,-0.2592,-0.1852,-0.2962,-0.2592,-0.1112,-0.037,-0.1112,0.1482,0.1482,-0.074,0.074,0.1112,-0.1482,0.2222,0.1852,0.2592,0.2592,0.3704,0.3334,0.5186,0.7778,1,1,0.8888,0.8518,0.5926,0.8148,-0.0526,-0.1578,-0.1578,-0.3684,0.1578,0.2632,-0.1052,-0.2106,0.1578,0.2106,-0.0526,-0.421,-0.421,0.2632,0.3158,0.2106,0,0.1052,-0.3684,-0.3684,0.1578,0.2632,0.2106,0.421,0.7368,0.7368,0.5264,0.8422,0.7368,1,0.7894,0.4736,-0.8874,0.324,0.3522,-0.6902,-0.7464,0.014,0.014,-0.4084,-0.7184,-0.2676,-0.2394,-0.2112,-0.0986,0.014,0.0422,0.0986,0.2958,0.2394,0.7184,0.5492,0.4084,0.4084,0.8874,0.8028,0.8874,0.8028,0.7464,0.662,0.7746,0.7464,1,0.9436,-1,-1,-1,-1,-1,-0.92,-0.9066,-0.8666,-0.8134,-0.8334,-0.5334,0.1066,-0.3866,0.3666,0.82,0.76,0.52,0.7934,0.88,0.34,0.2334,-0.08,-0.54,-0.5734,-0.5934,-0.78,-0.8466,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9182,-0.9162,-0.3096,0.243,0.4322,0.2904,0.415,-0.1226,-0.0172,0.7634,0.8022,0.8624,0.5936,0.5914,-0.028,-0.458,-0.643,-0.7956,-0.8086,-0.813,-0.8818,-0.9032,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.9734,0.1466,0.95,0.9066,0.8066,0.3914,0.6684,-0.2086,0.317,0.1084,0.097,-0.1858,-0.38,-0.615,-0.77,-0.855,-0.92,-0.8734,-0.8834,-0.98,-0.88,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6858,1,1,1,-0.6286,-0.8,-0.7428,-0.0286,1,1,-0.7714,-0.4858,-0.1142,0.2,0.4858,0.7428,-0.9142,-0.8858,-1,-0.9428,-0.9142,-0.6286,-1,-1,-1,-1,-1,-1,0.7222,0.7828,0.8532,0.8592,0.87,0.717,0.5544,0.5278,0.5538,0.45,0.6582,0.6056,0.6428,0.675,0.7696,0.7526,0.7598,0.7176,0.6518,0.064,-0.72,-0.1648,0.2818,0.542,0.456,0.0302,-0.0408,1,-0.6214,-0.5078,-0.4952,-0.2618,-0.306,-0.1798,-0.1736,-0.3564,-0.3628,-0.243,-0.06,0.1672,0.3376,0.571,0.817,0.8422,0.8422,0.9116,0.8548,0.8486,1,0.9432,0.937,0.9116,0.8802,0.8486,0.8108,0.937,0.7982,0.6088,0.5584,0.1042,-0.7064,-0.6716,-0.5024,-0.4428,-0.3084,-0.2836,-0.0448,-0.0398,-0.3234,-0.2786,-0.2438,0.0846,0.1442,0.5324,0.6866,0.5672,0.587,0.4726,0.607,0.8906,1,0.801,0.6268,0.5772,0.6966,0.6568,0.9104,0.8856,0.4428,0.2736,0.2388,-0.1642,-0.6082,-0.5618,-0.5876,-0.2474,-0.2784,-0.3042,-0.2578,-0.2938,-0.2114,-0.3042,-0.1752,0.2526,0.4742,0.8042,0.7886,0.4536,0.6598,0.6238,0.7422,0.8092,1,0.6908,0.6856,0.469,0.6186,0.7784,0.7938,0.732,0.536,0.3506,0.2422,0.0154,0.286,-1,-1,1,-1,-1,-1,-0.2,-1,0.4158,1,0.8876,0.955,0.8202,0.3932,0.4832,0.955,0.9102,1,0.7752,0.5056,0.5056,0.663,0.618,0.6854,0.7528,0.2808,0.6404,0.6404,0.5956,0.4606,0.5506,0.663,0.3932,0.573,0.4606,0.6854,0.4832,0.236,0.3258,-0.0338,'17'
-0.5164,0.2896,0.212,-0.385,-0.3732,-0.1462,-0.2776,-0.2896,-0.409,-0.391,-0.4268,-0.5044,-0.2238,-0.385,-0.3492,-0.1762,-0.0866,0.4866,0.5284,0.618,0.588,0.594,0.4746,0.7254,0.6418,0.8268,0.5104,0.5164,0.6298,0.7014,0.9104,1,-0.4224,0.1602,0.0242,-0.2622,-0.2378,-0.1796,-0.1262,-0.2282,-0.1554,-0.3932,-0.364,-0.0776,-0.0776,-0.2038,-0.3058,-0.0922,0.0098,0.4224,0.7912,0.7816,0.8932,0.8544,0.9126,0.6554,0.6166,0.4952,0.335,0.3738,0.4564,0.6214,0.7622,1,-0.5502,-0.066,0.0954,0.198,-0.3448,-0.4376,-0.2518,-0.154,-0.159,-0.3448,-0.2176,-0.11,-0.022,-0.0612,-0.0268,0.159,0.3888,0.9902,0.9608,0.7164,0.9658,1,0.4816,0.1002,0.1344,0.0562,0.0612,0.1442,0.286,0.4914,0.6968,0.7556,-0.576,-0.157,0.5078,0.576,-0.2828,-0.0366,0.0786,0.1152,-0.0052,-0.2774,0.246,0.2356,0.377,0.7434,0.7696,0.6544,0.4608,0.2304,0.1466,0.4974,0.6858,0.3718,0.1308,-0.0262,-0.0314,0.0576,0.1832,0.2514,0.4764,1,0.9686,0.424,-0.3952,0.1822,0.2372,0.244,-0.512,-0.1272,0.0378,0.0446,0.031,0.2714,0.622,0.8488,1,0.6014,0.1752,0.1134,-0.1546,-0.0034,0.244,0.2646,0.2714,0.0446,-0.0652,-0.189,-0.2646,-0.3196,-0.3264,-0.1134,0.409,0.3676,0.1752,-0.1272,-0.426,-0.166,0.8744,1,-0.3632,-0.7668,-0.5246,-0.3722,-0.2914,-0.0224,-0.1748,-0.3812,-0.2914,-0.2556,-0.139,-0.453,-0.2556,-0.435,-0.3004,-0.5516,-0.3094,-0.2556,-0.6322,-0.148,-0.2914,-0.1122,-0.1928,-0.7488,-0.3184,-0.0582,-0.2198,-0.4888,-0.8558,-0.6538,0.9424,1,-0.173,0.0288,0.298,0.4616,0.1634,0.077,0.0674,-0.1826,-0.077,0.2308,0.2308,-0.0576,-0.0288,-0.0288,-0.0288,0.1346,0.3942,0.1538,-0.298,0.4712,0.4904,-0.0674,0.2884,-0.2404,-0.0674,-0.1826,-0.3076,-0.1442,-0.25,0.45,0.45,-0.35,-0.35,0.1,0.1,-0.35,-0.65,-0.2,-0.2,-0.4,-0.15,-0.1,-0.15,0.05,0.05,0.35,0.25,0.55,0.5,0.25,0.25,0.6,0.35,0.8,0.5,0.8,0.65,0.8,0.7,1,-0.421,0.2632,0.1052,-0.2632,-0.3684,-0.1052,-0.2106,-0.1052,-0.2632,-0.3158,-0.2632,-0.2632,-0.1052,-0.2632,-0.1052,-0.0526,-0.0526,0.4736,0.6316,0.5264,0.579,0.3158,0.421,0.7368,0.6316,0.6842,0.579,0.4736,0.5264,0.6316,0.9474,1,-0.5128,-0.1282,-0.0512,-0.1026,-0.6924,-0.0256,0.0512,-0.282,-0.0512,0.2052,0.359,0.8206,1,0.641,0.4616,0.1794,-0.0256,-0.0256,0.0512,0.1282,0.4102,0.1538,-0.077,-0.0256,-0.0512,-0.4358,0.0256,0.0256,0.2052,0.4102,0.4358,-0.1026,-1,-1,-1,-0.9026,-0.909,-0.8376,-0.7858,-0.8702,-0.8506,-0.7858,-0.5,0.3052,0.2338,0.2922,0.2272,0.5714,0.7988,0.039,-0.091,0.0064,-0.2988,-0.6624,-0.578,-0.591,-0.8182,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.896,-0.9066,0.0666,0.3734,-0.2774,-0.2934,-0.3414,-0.4586,0.0134,0.2906,0.5466,0.8,0.352,0.5974,0.1226,-0.4294,-0.4986,-0.6346,-0.784,-0.7734,-0.7654,-0.8586,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.98,-0.47,0.6432,0.7932,0.6466,0.39,0.3766,-0.3434,0.0714,0.177,-0.1344,-0.3516,-0.4572,-0.46,-0.6716,-0.8,-0.823,-0.7572,-0.8968,-0.8834,-0.79,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,-0.4858,-1,-0.7428,0.5714,0.9142,-0.0572,-0.7142,-0.3428,-0.3714,-0.2286,0.7142,0.5142,-0.6,-0.7714,-0.9142,-0.9142,-0.8858,-0.9714,-1,-1,-1,-1,-1,-1,-1,-1,0.3526,0.3888,0.3766,0.3884,0.375,0.4208,0.4344,0.4442,0.4582,0.4642,0.7116,0.713,0.716,0.7264,0.7174,0.6982,0.7018,0.5926,0.2028,-0.2046,-0.6134,-0.2236,-0.544,0.0106,-0.04,0.1334,0.32,1,-0.58,-0.355,-0.42,-0.1862,-0.1948,-0.1558,0.0606,0.1558,-0.1558,0.0476,0.3464,0.4156,0.7186,0.8962,0.948,0.8484,0.8354,0.7878,0.7446,0.987,1,0.8702,0.736,0.8182,0.6754,0.632,0.8442,0.749,0.6754,0.6018,0.2684,-0.0562,-0.6542,-0.7462,-0.5318,-0.2648,-0.2822,-0.3916,-0.256,-0.186,-0.361,-0.3698,-0.1816,0.0548,0.6236,0.6936,0.7068,0.6762,0.5536,0.685,0.7068,0.86,1,0.9388,0.5448,0.5712,0.5754,0.7768,0.768,0.6542,0.72,0.4704,0.291,-0.5098,-0.251,-0.1314,-0.267,-0.0756,-0.1274,-0.1514,-0.0638,-0.012,-0.012,-0.0718,0.1554,0.3346,0.8008,0.9004,0.976,0.765,0.7212,0.6374,0.765,0.9164,0.9204,0.8964,0.749,0.737,0.6892,0.8048,0.7968,1,0.7928,0.6972,0.3466,-0.267,1,-1,-1,1,-1,-1,-1,0.1334,-1,-0.0986,0.155,0.9718,0.8874,0.4648,0.4648,0.8028,0.324,0.6056,0.662,0.8028,0.7184,1,0.9718,0.4084,0.7184,0.6056,0.2676,0.4084,0.662,0.662,0.3522,0.493,0.3522,0.0986,0.3522,0.2112,0.3522,0.4648,0.183,0.2112,0.0704,'17'
-0.642,-0.3064,-0.1544,0.132,0.405,0.83,0.7136,0.924,1,0.8524,0.3334,0.141,0.1052,0.0202,-0.123,-0.2662,-0.2886,-0.0068,0.038,-0.1006,-0.2886,-0.3558,-0.4004,-0.472,-0.4318,-0.651,-0.5168,-0.0246,0.2618,0.463,0.5168,0.2976,-0.6494,-0.3706,-0.1752,0.0796,0.243,0.745,0.7172,0.6614,1,0.9722,0.2868,0.1872,0.1674,-0.012,-0.1474,-0.1752,-0.1634,0.1156,0.0796,-0.3306,-0.5258,-0.6654,-0.6096,-0.5698,-0.5578,-0.494,-0.5896,-0.2232,0.0916,0.3386,0.3944,-0.02,-0.641,-0.3964,-0.1046,0.069,0.3018,0.8068,0.7318,0.5502,1,0.933,0.5424,0.3492,0.2782,0.2584,0.0178,0.1164,0.2228,-0.14,-0.3334,-0.3648,-0.6726,-0.712,-0.72,-0.641,-0.637,-0.7476,-0.708,-0.0572,0.0612,0.2268,0.1638,0.1716,-0.62,-0.3736,-0.1232,0.144,0.4112,0.8706,0.7578,0.5156,0.9124,0.929,1,0.6034,0.4572,0.3654,0.5616,0.3612,-0.1064,-0.5074,-0.5782,-0.6368,-0.6618,-0.5992,-0.691,-0.6368,-0.524,-0.7118,-0.5782,-0.0272,-0.0354,-0.0062,0.3862,0.3194,-0.6076,-0.3646,-0.1216,0.177,0.3774,0.774,0.629,0.5566,0.7654,0.9658,1,0.791,0.7398,0.7314,0.855,0.484,-0.386,-0.7058,-0.501,-0.565,-0.6674,-0.7398,-0.8464,-0.8082,-0.7442,-0.6844,-0.757,-0.5566,-0.1856,-0.1344,0.0362,-0.066,-0.4318,-0.034,-0.1704,0.0114,0.284,0.7784,0.6818,0.466,0.5056,0.7556,0.8806,0.767,0.733,1,0.6818,0.3012,-0.216,-0.358,-0.5682,-0.5966,-0.4772,-0.4772,-0.8352,-0.5398,-0.5624,-0.642,-0.7102,-0.875,-0.4262,-0.0512,0.0966,0.0398,-0.8608,-0.7656,-0.3772,-0.4506,-0.2454,0.348,0.1282,0.011,0.304,0.1722,0.6118,0.978,1,0.9706,0.5384,0.1282,-0.2234,-0.304,-0.4066,-0.6044,-0.5824,-0.4578,-0.4358,-0.2968,-0.1942,-0.4066,-0.5898,-0.3186,0.0842,-0.0256,0.0256,0.238,-0.5428,-0.0286,-0.2,0.0286,0.4286,0.4858,0.7142,0.9428,1,0.5428,0.5428,0.3714,0.2,0.0286,-0.0858,-0.3142,-0.2572,-0.0858,-0.4286,-0.1428,-0.0858,-0.6,-0.3142,-0.4858,-0.6572,-0.5428,-0.3714,0.1428,-0.0286,0.5428,0.1428,0.2572,-0.721,-0.5814,-0.3024,-0.0698,0.628,0.8604,0.7674,0.907,1,0.7674,0.3488,0.2094,-0.0232,-0.1162,-0.1162,-0.2558,-0.2558,-0.0232,0.0698,0.0232,-0.2094,-0.628,-0.628,-0.5348,-0.3024,-0.4418,-0.4418,0.0698,0.3488,0.3954,0.3024,0.3488,-0.3488,-0.0232,-0.0232,0.2558,0.4186,0.6976,0.6512,0.6976,0.628,0.8604,0.9768,0.907,0.9302,1,0.721,0.5814,-0.093,-0.4186,-0.5348,-0.4186,-0.4652,-0.3954,-0.6046,-0.1628,-0.1628,-0.4884,-0.628,-0.8604,-0.6976,0.1162,0.1162,0.1396,-1,-1,-1,-1,-1,-1,-1,-0.9304,-0.9254,-0.7512,-0.3134,0.5772,0.7314,0.7712,0.8956,0.9602,0.8706,0.801,0.5722,0.005,-0.582,-0.816,-0.8806,-0.8856,-0.8956,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9542,-0.9542,-0.807,-0.5224,0.3572,0.5066,0.6662,0.7132,0.7098,0.7142,0.9342,0.48,-0.3002,-0.7656,-0.8158,-0.923,-0.9342,-0.9508,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.9668,-0.69,-0.6368,-0.623,-0.5886,-0.5258,-0.563,-0.6086,-0.5972,-0.6144,-0.5458,-0.54,-0.5258,-0.5716,-0.7534,-0.8068,-0.96,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,-0.2286,1,1,1,-0.8572,-0.9714,-0.8,-0.8,-0.7428,-0.8572,0.4286,0.8572,-0.1142,-0.7142,-0.7142,-0.8286,-0.4572,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.9764,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.52,-0.2118,-0.5246,-0.106,0.5256,0.3918,0.4654,-0.6666,-0.2844,-0.266,0.7798,0.7982,1,0.5046,0.1744,-0.1926,0.1926,0.0458,0.3028,0.4496,0.1744,0.2478,0.7064,0.8532,0.101,-0.0826,0.1926,0.5964,0.7614,1,0.5596,0.2844,-0.0276,0.156,0.1376,0.1926,0.1376,-0.2294,-0.1192,-0.4128,-0.2838,0.0136,0.6756,0.7432,1,-0.0136,-0.2568,-0.2568,-0.1352,-0.2838,-0.054,-0.0406,0.027,-0.3784,0.1352,0.3514,-0.1216,-0.6352,-0.5946,-0.027,0.1486,0.5,0.2702,-0.1216,-0.3108,-0.6756,-0.3514,-0.3108,-0.3784,-0.3514,-0.554,-0.8648,0.1038,0.2568,0.847,1,0.9562,0.6502,0.0492,-0.1804,-0.0382,0.0928,0.0602,-0.2568,0.071,-0.082,0.1694,0.399,0.1694,-0.3334,-0.082,0.246,0.3334,0.7486,0.4644,0.246,0.1476,-0.1366,-0.1584,0.0054,0.0164,-0.0274,-0.0928,-0.388,-0.7008,-1,-1,1,-0.4,-1,-1,-0.6334,-1,-0.091,-0.0304,0.0506,0.394,0.4344,0.7172,1,0.8384,0.5556,0.1718,0.4344,0.394,0.4344,0.2728,0.3334,0.1314,0.4344,0.091,0.091,0.091,0.3132,0.2526,0.0304,0.091,-0.2324,-0.091,-0.0506,0.0708,0.0102,0.0506,-0.293,-0.394,'18'
-0.4858,0.0334,-0.0858,-0.019,0.2476,0.8142,0.9714,0.881,0.9142,1,0.7904,0.262,0.1096,0.0334,-0.162,-0.5524,-0.3572,-0.0238,-0.0762,-0.1762,-0.1286,0.1142,0.2048,-0.1096,-0.1666,-0.1572,-0.0904,0.2762,0.6,0.538,0.3524,0.0524,-0.5492,-0.2152,-0.2032,-0.179,0.171,0.5614,0.6298,0.67,0.847,1,0.662,0.2918,0.1188,-0.0784,-0.0382,-0.2676,-0.2314,-0.1026,-0.1228,-0.0704,0.0824,-0.2032,-0.3078,-0.3802,-0.4326,-0.348,-0.1066,0.155,0.3078,0.3844,0.34,-0.0382,-0.546,-0.2352,-0.1206,-0.0062,0.186,0.7914,0.816,0.501,0.955,1,0.6932,0.5582,0.4234,0.0756,-0.002,-0.1942,-0.0674,0.1002,0.2516,-0.0594,-0.2638,-0.276,-0.231,-0.2802,-0.3292,-0.3088,-0.133,0.2966,0.3252,0.4356,0.2556,-0.0674,-0.6498,-0.3924,-0.1872,-0.1268,0.2194,0.7948,0.7506,0.4246,0.6942,0.835,1,0.7184,0.348,0.2636,0.2194,0.167,-0.151,-0.2274,-0.2434,-0.5534,-0.3562,-0.3884,-0.4648,-0.5492,-0.505,-0.6418,-0.1872,-0.1348,0.0704,0.336,0.3602,-0.183,-0.5928,-0.3518,-0.1186,-0.1068,0.1186,0.6996,0.6522,0.3874,0.6246,0.83,1,0.7234,0.4744,0.4782,0.494,0.4546,-0.3084,-0.4072,-0.419,-0.8102,-0.5494,-0.5454,-0.5574,-0.4624,-0.498,-0.4704,-0.34,-0.1028,0.1502,0.257,0.2806,-0.2846,-0.6286,-0.308,-0.1518,-0.1518,0.0464,0.6498,0.6076,0.384,0.54,0.7764,1,0.7932,0.6456,0.6456,0.443,0.1054,-0.6034,-0.6034,-0.7638,-0.8102,-0.6414,-0.7806,-0.886,-0.692,-0.6624,-0.4852,-0.422,-0.0676,0.2362,0.135,0.059,-0.3334,-0.3452,0.1682,-0.115,-0.1446,0.233,0.9234,0.882,0.3452,0.3628,0.5812,0.8998,0.8644,0.8584,1,0.8702,-0.121,-0.4278,-0.357,-0.4808,-0.8702,-0.6992,-0.652,-0.711,-0.5458,-0.3864,-0.2566,-0.2862,-0.1622,-0.0974,-0.0796,-0.2802,-0.4868,-0.5758,0.1516,0.0304,-0.0304,0.091,0.8788,0.9394,0.9394,1,0.9394,0.697,0.3334,0.2122,0.0304,-0.0304,-0.7576,-0.394,0.0304,-0.0304,0.091,0.091,0.3334,0.4546,0.3334,0.2728,-0.0304,0.1516,0.6364,0.7576,0.8182,0.7576,0.394,-0.55,-0.05,-0.1,0.05,0,0.45,0.75,0.75,1,0.85,0.65,0.15,0.05,0,-0.65,-0.7,-0.7,-0.4,-0.25,-0.35,-0.25,0.25,0.3,-0.05,-0.25,-0.05,-0.05,-0.2,0.55,0.5,-0.2,-0.1,-0.4546,-0.1718,-0.2324,-0.1314,0.1314,0.5152,0.5758,0.5758,0.8586,1,0.5556,0.3738,0.293,0.0506,-0.0304,-0.0102,-0.0506,-0.0102,0.1314,0.2526,0.394,0.2324,0.0506,0.091,-0.1718,-0.091,0.1112,0.3738,0.4142,0.4546,0.3738,0.0304,-1,-1,-1,-1,-1,-1,-0.8998,-0.8948,-0.8898,-0.8396,-0.7594,0.3132,0.5538,0.3534,0.6542,0.9248,0.6742,0.589,0.5188,0.3634,0.173,-0.193,-0.7894,-0.8346,-0.8796,-0.8796,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9518,-0.945,-0.8898,-0.8348,-0.8406,0.159,0.2828,0.5342,0.8806,0.6936,0.9128,0.9002,0.5996,0.4688,0.1624,-0.6052,-0.8462,-0.8704,-0.9174,-0.9368,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.9334,-0.6834,-0.61,-0.6568,-0.623,-0.5858,-0.543,-0.463,-0.5972,-0.6058,-0.4058,-0.46,-0.4686,-0.5316,-0.625,-0.4734,-0.54,-0.7,-0.8134,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7142,-0.4286,-0.0286,-0.8572,1,1,-0.7142,-0.1142,-0.0858,-0.2858,-0.8286,-0.7714,-0.7714,-0.8858,0.8286,0.9142,-0.6572,-0.6858,-0.6286,-0.9142,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.0936,-0.1232,-0.164,-0.285,-0.3284,-0.367,-0.4606,-0.484,-0.6576,-0.9554,-0.5466,-0.2,-0.8624,-0.2656,0.3552,0.059,0.245,-0.3334,0,0.0322,0.1612,0.3226,0.871,0.613,0,0.6452,0.8388,0.6774,0.7096,0.9032,0.871,0.9678,0.4194,0.3548,0.4838,0.4838,0.1612,0.6774,0.9354,1,0.871,0.258,0.4838,0.3548,0.5162,0.0646,0.258,0.129,-0.129,-0.5806,-0.1764,0.2352,0.0294,0.5588,1,0.5,0.4412,0.4118,0.4118,0.4412,0.147,0.5294,0.4118,0.2058,0.6176,0.7352,0.647,0.3236,0.4412,0.6176,0.9118,0.7942,0.7942,0.4118,0.4412,-0.1176,0.1764,0.2058,0.0882,0.0294,0.147,-0.2648,-0.0746,0.2538,0.2836,0.8208,1,0.4626,0.0746,-0.194,-0.1642,0.1344,0.1344,0.403,0.1044,0.3134,0.2836,0.3732,0.5522,0.1344,-0.0746,0.5224,0.5522,0.4626,0.7014,0.3134,-0.1044,-0.1344,-0.2238,-0.1344,-0.1642,-0.1344,-0.194,-0.403,1,-1,-1,1,-1,-1,-1,-0.8,-1,0.0648,0.0648,0.1366,0.4244,0.6834,0.7554,1,0.8274,0.41,0.1798,0.3382,0.1942,0.6546,0.6402,0.6402,0.6546,0.813,0.2662,0.3094,0.3956,0.4964,0.2086,0.1942,0.0648,0.1366,0.108,0.108,0.0648,-0.036,0.367,0.108,-0.5108,'18'
-0.7748,-0.1688,-0.1342,0.0476,0.4806,0.6364,0.5064,0.238,0.2208,0.3074,0.368,0.3506,0.5064,0.8096,0.8614,1,0.8008,0.4026,0.4546,0.5412,0.5498,0.7142,0.922,0.7402,0.4632,0.4806,0.4286,0.4372,0.316,0.2728,0.671,0.749,-0.6056,-0.155,-0.0564,0.0846,0.338,0.3522,0.5564,0.4648,0.3874,0.317,0.3802,0.5846,0.6126,0.8802,0.9154,1,0.6056,0.331,0.4366,0.3522,0.3592,0.845,0.9366,0.5774,0.331,0.4014,0.2888,0.3028,0.1338,0.2184,0.6972,0.655,-0.5934,-0.1804,-0.082,0.0622,0.318,0.3508,0.4754,0.423,0.2196,0.3442,0.4622,0.4164,0.5606,1,0.9278,0.3312,0.141,0.1738,-0.0032,0.0032,0.1804,0.2656,0.5344,0.377,0.2722,0.0098,-0.0622,0.0492,-0.0164,-0.1934,0.364,0.4754,-0.6562,-0.2422,-0.0736,0.0526,0.0808,0.2632,0.5438,0.4106,0.2982,0.4526,0.4456,0.586,0.8106,1,0.8176,0.4736,0.207,0.0948,0.1368,0.0456,0.0596,-0.1508,0.165,0.2562,0.1368,-0.0666,-0.1158,-0.0878,-0.172,-0.0526,0.2912,0.2562,-0.5932,-0.2206,-0.1724,-0.1172,-0.0828,0.4966,0.6552,0.4482,0.4482,0.4896,0.6,0.7034,1,0.9862,0.5862,0.4344,0.2966,0.0966,0.0482,-0.0344,0.1104,0.138,0.3448,0.3172,0.2552,-0.0276,-0.1448,-0.0414,-0.131,-0.062,0.1172,0.1518,-0.6952,-0.3754,-0.197,-0.1004,0.2268,0.3754,0.4572,0.5168,0.4052,0.3754,0.5614,0.7026,1,0.829,0.606,0.1524,-0.0706,-0.0632,-0.1598,-0.1748,0.0038,0.197,0.2416,-0.026,-0.0856,-0.0706,-0.1822,-0.2788,-0.4052,0.1822,0.2416,-0.0632,-0.6816,-0.0746,-0.2836,-0.1542,0.2338,0.5324,0.6916,0.4328,0.3034,-0.0448,0.2836,0.612,1,0.7114,0.592,0.015,0.005,-0.3632,-0.5422,-0.5622,-0.0746,0.184,0.2936,0.1742,-0.2736,-0.3432,-0.7512,-0.5522,-0.7114,-0.4626,-0.015,0.1542,-0.9048,-0.0952,-0.0476,0.238,0.4762,0.5714,0.5714,0.3334,0.4286,0.4762,0.4286,0.381,0.7142,0.9048,1,1,0.9048,0.7142,0.619,0.6666,0.8096,0.9524,1,0.8572,0.619,0.5714,0.619,0.5714,0.4286,0.381,0.6666,0.8572,-0.7022,-0.1064,0.0638,0.1914,0.617,0.7446,0.4894,0.4042,0.3618,0.4042,0.4042,0.4894,0.5744,0.8724,0.8724,0.9574,0.8724,0.1914,0.4894,0.532,0.617,0.7022,0.9148,0.8724,0.617,0.5744,0.4894,0.4468,0.4894,0.4468,0.7446,1,-0.5882,-0.1372,-0.0392,0.0784,0.3138,0.3334,0.5098,0.4706,0.2352,0.353,0.4706,0.451,0.5294,1,0.9412,0.4706,0.3138,0.3334,0.2156,0.196,0.3138,0.3726,0.7058,0.6274,0.255,0.1372,0.1372,0.1764,0.0784,0.0588,0.5294,0.6078,-1,-1,-1,-1,-1,-1,-1,-1,-0.9006,-0.9226,-0.895,0.3204,0.9116,0.4918,0.6962,0.8342,0.5194,0.2708,0.243,0.464,-0.2266,-0.3812,-0.5966,-0.7404,-0.7956,-0.8454,-0.8618,-0.895,-0.9006,-0.8176,-0.8784,-0.884,-0.8618,-1,-1,-1,-1,-1,-1,-1,-1,-0.9562,-0.9584,-0.8102,0.1578,0.7676,0.8966,0.8358,0.9488,0.8796,0.6396,0.6344,0.5522,-0.2142,-0.695,-0.693,-0.711,-0.6962,-0.6076,-0.5906,-0.548,-0.4126,-0.5054,-0.6716,-0.8102,-0.8848,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.9668,-0.66,-0.5068,-0.4,-0.305,-0.29,-0.29,-0.365,-0.365,-0.27,-0.33,-0.27,-0.58,0.2066,0.7866,1,1,1,1,1,1,0.8966,0.54,-0.2568,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,-0.3142,1,1,1,0.1714,-0.3714,-0.4858,-0.8286,-0.8286,-0.5714,1,1,1,0.8,0.0286,-0.7428,-0.8858,-0.8572,-0.9142,-0.9142,-0.7714,-0.1714,0.0286,0.0572,1,1,1,1,1,1,1,1,1,1,-0.4694,-0.4694,-0.461,-0.4966,-0.5018,-0.6014,-0.6442,-0.7958,-0.929,-1,-0.6666,-0.6118,-0.7334,-0.1642,0.5448,0.8464,0.9052,1,0.1604,0.0076,0.71,0.8626,0.6642,0.71,0.6642,0.9236,0.7252,0.3588,0.9848,0.771,0.9542,0.4046,0.2824,0.2366,0.1908,0.2824,0.4352,0.313,0.3282,0.252,0.4046,0.313,0.4352,0.5878,0.5572,-0.0382,0.0534,0.1604,0.2366,-0.4504,0.0684,-0.1506,0.685,0.6712,0.315,0.2876,0.7534,0.589,0.959,0.548,0.6302,0.1918,1,0.7946,0.3424,0.3014,0.3288,0.2876,0.3424,0.274,0.0136,0.3424,0.6164,0.3014,0.3562,0.6028,0.5342,0.315,0.1644,0.3288,0.1918,-0.2192,-0.0378,-0.373,0.5244,0.5352,0.254,0.3298,0.8486,0.9568,0.9136,0.5028,0.9244,1,1,0.5784,0.4918,0.4162,0.8594,0.881,0.5784,0.881,0.827,0.7406,0.8162,0.7946,0.6324,0.6756,0.3946,0.481,0.3514,0.4486,0.0486,-0.2864,-0.985,1,-1,-1,-1,-1,-0.8,-1,-1,-0.7432,-0.8378,-0.7702,-0.4594,-0.3244,-0.3108,-0.4594,-0.2432,-0.3784,-0.3244,-0.2568,-0.3784,-0.3244,-0.4594,-0.2838,-0.081,0.1756,0.3378,0.3784,0.3378,0.473,0.7432,0.7432,0.6892,0.6622,1,0.9594,0.7972,0.8378,0.9594,0.8918,0.1892,'19'
-0.7378,-0.2214,-0.2214,0.1066,0.3442,0.6804,0.6886,0.5,0.4098,0.3934,0.4262,0.623,0.8032,0.9016,1,1,0.5328,0.3606,0.377,0.2786,0.5902,0.7378,0.705,0.664,0.5246,0.4836,0.2786,0.2868,0.3114,0.377,0.6312,0.8114,-0.6394,-0.3062,-0.2244,-0.1768,0.1768,0.3946,0.5306,0.381,0.3606,0.1428,0.4354,0.5034,0.7074,0.8504,1,0.7482,0.551,0.1768,0.0748,0.0136,0.4626,0.4966,0.7892,0.6394,0.5306,0.3062,0.2654,0.2858,0.2244,0.4558,0.8436,0.7824,-0.6802,-0.3532,-0.145,-0.0038,0.3308,0.606,0.6878,0.5168,0.4276,0.4276,0.606,0.7398,1,0.9034,0.9628,0.7844,0.71,0.145,0.0856,0.1004,0.3606,0.6134,0.6654,0.554,0.4126,0.42,0.1302,0.1152,0.1004,0.6728,0.7696,0.9256,-0.7032,-0.3992,-0.2792,-0.0248,0.1732,0.6042,0.6326,0.3992,0.4204,0.5054,0.4416,0.8586,1,0.8374,0.8304,0.47,0.272,0.0954,0.1378,0.1236,0.2792,0.6396,0.5478,0.4628,0.3992,0.3428,0.159,0.0248,0.2156,0.5194,0.675,0.8022,-0.7348,-0.4848,-0.0378,0.106,0.3636,0.8712,0.8864,0.4394,0.5076,0.5076,0.5378,0.8788,0.9318,1,0.841,0.4924,0.0606,0.1212,0.2348,0.0984,0.394,0.5304,0.7576,0.7196,0.3182,0.1666,0.0984,-0.091,0.1742,0.5076,0.7954,0.856,-0.7984,-0.5194,-0.1318,0.1008,0.2558,0.8294,0.783,0.4418,0.3954,0.4264,0.5814,0.8294,0.814,1,0.7132,0.3178,-0.0698,0.0232,0.0156,-0.1628,0.3334,0.4108,0.721,0.5038,0.3644,0.0852,-0.1162,-0.155,-0.124,0.6976,0.7596,0.69,-0.5744,-0.0958,-0.1596,-0.1596,0.3192,0.8724,0.8086,0.617,0.4788,0.4574,0.7022,0.8404,1,0.8298,0.6808,0.149,-0.1382,-0.2022,-0.2766,-0.266,0.1382,0.4148,0.6914,0.5212,0.383,-0.0426,-0.4256,-0.6382,-0.4894,0.2978,0.5852,0.4468,-0.7838,-0.2432,-0.2972,0.1892,0.4594,0.7838,0.7838,0.6216,0.4594,0.4594,0.3514,0.7298,0.8378,1,1,1,0.7298,0.4594,0.3514,0.3514,0.7298,0.7838,0.7298,0.7298,0.5136,0.5676,0.2432,0.1892,0.1892,0.2972,0.6216,0.7838,-0.6888,-0.3334,-0.2444,-0.0666,0.2888,0.6444,0.6444,0.2888,0.3778,0.3334,0.2444,0.5556,0.7334,0.8222,1,1,0.3778,0.2444,0.4222,0.1556,0.5112,0.8222,0.7334,0.6888,0.4222,0.4222,0.3778,0.3778,0.3334,0.3334,0.6888,0.9556,-0.7528,-0.4158,-0.0562,0.1012,0.2584,0.8426,0.8202,0.4158,0.4158,0.4606,0.5956,0.7304,0.7304,1,0.7978,0.4606,0.0112,0.0562,0.1012,0.0562,0.4382,0.4606,0.7978,0.618,0.3708,0.2134,0.1012,-0.0562,-0.0338,0.6404,0.7752,0.7978,-1,-1,-1,-1,-1,-1,-1,-0.8938,-0.9204,-0.7612,-0.618,0.199,0.5756,0.4748,0.634,0.5702,0.443,0.825,0.9894,0.756,0.5014,-0.1672,-0.6498,-0.825,-0.8514,-0.8568,-0.8726,-0.8832,-0.9046,-0.9098,-0.862,-0.9098,-0.9046,-1,-1,-1,-1,-1,-1,-1,-0.9634,-0.9616,-0.7878,-0.815,-0.0414,0.5408,0.9572,0.594,0.4832,0.6194,0.7198,0.601,0.5748,0.272,-0.5722,-0.7738,-0.6552,-0.6386,-0.5512,-0.3532,-0.361,-0.5556,-0.587,-0.5504,-0.657,-0.7932,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.9068,-0.5934,-0.55,-0.6334,-0.34,-0.24,-0.295,-0.33,-0.335,-0.375,-0.465,-0.385,-0.495,-0.45,0.2066,1,1,1,1,1,1,1,1,1,0.8766,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,1,1,1,-0.8,-0.8858,-0.7714,-0.8858,-0.8,0.2572,1,1,1,0.8572,-0.7714,-0.6858,-0.7428,-0.8572,-0.7428,-0.8572,-0.8572,-0.3428,-0.1428,1,1,1,1,1,1,1,1,1,1,-0.9888,-0.9888,-0.8932,-0.8596,-0.7996,-0.7946,-0.7748,-0.7732,-0.917,-0.9672,-0.5734,-0.6236,-0.8578,-0.4386,0.443,0.8612,0.9232,1,0.0466,-0.1046,-0.0814,0.2094,0.314,0.1744,0.4768,0.7326,0.4186,0.5,0.8372,0.8954,1,0.9186,0.5348,0.314,0.1628,0.2326,0.407,0.3604,0.4652,0.3604,0.2674,0.3838,0.407,0.5698,0.628,0.2442,0.3954,0.1628,-0.1396,-0.6628,0,-0.2524,0.57,0.701,0.3552,0.187,0.4018,0.57,0.4954,0.6356,0.785,0.8692,1,0.8878,0.3738,0.486,0.6542,0.4112,0.3178,0.3178,0.3644,0.5328,0.4018,0.486,0.3832,0.3084,0.3738,0.3926,0.0842,0,-0.1028,-0.4954,-0.2106,0.2684,0.6632,0.6578,0.5684,0.2422,0.4264,0.7632,0.9264,0.4684,0.6894,1,0.6316,0.5,0.479,0.521,0.9842,0.4842,0.1474,0.3106,0.379,0.6264,0.4,0.3578,0.0368,0.0316,0.3158,0.5264,0.7736,0.3684,0.0316,-0.1684,-0.993,1,-1,-1,-1,-1,-0.8,-1,1,-0.7268,-0.5738,-0.6502,-0.5956,-0.3552,-0.4316,-0.1584,-0.2022,-0.5082,-0.4208,-0.3114,-0.388,-0.3334,-0.2896,-0.2022,-0.1694,-0.0602,-0.071,-0.0164,0.224,0.2022,0.3662,0.399,0.6066,0.5738,0.7378,1,0.4972,0.53,0.6502,0.4426,0.235,'19'
-0.7586,-0.1022,-0.2012,-0.195,-0.3312,-0.387,-0.3188,-0.2446,-0.3932,-0.3622,-0.4304,-0.5294,-0.2136,-0.164,-0.0092,-0.0774,0.3066,0.3066,0.4922,0.5666,0.356,0.5294,1,0.9256,0.5046,0.2942,0.1888,0.1578,0.164,0.288,0.3004,0.5418,-0.7988,-0.2702,-0.2012,0.0114,-0.339,-0.546,-0.4196,-0.4712,-0.4022,-0.5402,-0.3966,-0.5058,-0.408,-0.3506,-0.3564,-0.1206,-0.1552,0.1666,0.7816,0.9138,0.6034,0.5748,1,0.954,0.7644,0.5172,0.3678,0.339,0.3908,0.3966,0.4712,0.6782,-0.6722,-0.2022,-0.0602,0.0928,-0.3114,-0.4044,-0.3934,-0.399,-0.2296,-0.3826,-0.295,-0.4372,-0.47,-0.1968,-0.2678,-0.1092,0.0602,0.1968,0.7104,0.6994,0.858,0.7868,0.8798,1,0.9672,0.6502,0.5082,0.5246,0.4098,0.5246,0.7158,0.765,-0.7904,-0.3924,-0.4946,-0.4194,-0.4408,-0.457,-0.4408,-0.4892,-0.387,-0.4462,-0.4624,-0.4408,-0.6506,-0.5054,-0.3978,-0.387,-0.2096,0.129,0.2956,0.887,0.9248,0.543,0.8118,1,0.7096,0.6076,0.5268,0.414,0.3764,0.4732,0.5484,0.672,-0.8152,-0.3858,-0.3152,-0.1794,-0.413,-0.4782,-0.4946,-0.4892,-0.6086,-0.5108,-0.5326,-0.3968,-0.576,-0.5054,-0.3642,-0.4782,-0.3696,-0.1086,-0.0218,0.5434,0.5706,0.7608,0.9674,1,0.6032,0.4892,0.3642,0.2554,0.2718,0.3098,0.25,0.4022,-0.6072,-0.1272,-0.3382,-0.2218,-0.6582,-0.491,-0.3018,-0.3528,-0.68,-0.469,-0.6218,-0.7382,-0.5928,-0.6146,-0.5782,-0.629,-0.2872,-0.411,-0.2654,0.4836,0.389,0.4254,0.9418,1,0.2872,0.0182,-0.1418,-0.251,-0.251,-0.1928,-0.309,-0.1928,-0.8242,-0.7252,0.022,0.2528,-0.8902,-0.5934,-0.6924,-0.3846,-0.3186,-0.4946,-0.6814,-0.3956,-0.3406,-0.4066,-0.2308,-0.2088,-0.077,-0.3516,-0.2748,0.3076,0.7912,1,0.6924,0.7252,0.5824,0.6154,0.2858,0.3186,0.3626,0.5714,0.6044,0.5934,-0.579,0.1578,0.1052,0,-0.1578,-0.0526,0.0526,0.0526,-0.5264,-0.2106,-0.2106,-0.1578,-0.579,0.0526,0.2106,0,0.421,0.3158,0.2106,-0.0526,0,0.3158,1,0.9474,0.3684,0.3158,-0.0526,-0.2632,-0.1578,-0.3158,-0.0526,0.4736,-0.8572,0.0952,0.1428,-0.1904,-0.238,-0.1904,-0.1428,-0.2858,-0.238,-0.1428,-0.3334,-0.2858,0.0476,0.0476,0,0,0.2858,0.4762,0.8096,0.762,0.2858,0.619,1,0.9524,0.5714,0.4762,0.4286,0.2858,0.2858,0.3334,0.381,0.5238,-0.641,-0.2052,-0.3846,-0.3846,-0.5128,-0.4616,-0.2052,-0.359,-0.6924,-0.3846,-0.641,-0.7436,-0.5642,-0.359,-0.4102,-0.2052,-0.0256,-0.2308,-0.1538,0.6154,0.641,0.6154,0.9744,1,0.2308,0.1282,0.1538,0.0256,0.077,0.1282,0,0.1282,-1,-1,-1,-1,-0.8446,-0.8342,-0.7616,-0.6476,-0.1918,0.1918,-0.2436,0.5234,0.7512,0.6166,0.4818,0.3782,-0.0362,-0.0778,0.026,-0.0674,-0.2538,-0.6788,-0.7824,-0.7616,-0.7306,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.904,-0.9064,-0.3376,1,1,0.5524,-0.3528,0.029,0.4716,0.6536,0.78,0.9696,0.8408,0.636,0.2768,-0.3754,-0.6714,-0.77,-0.8584,-0.861,-0.8534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.96,-0.4768,1,1,0.46,0.0832,-0.176,0.092,0.2432,0.34,0.5732,0.5232,0.43,-0.0134,-0.18,-0.4068,-0.5134,-0.7468,-0.7934,-0.86,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7142,1,1,1,-0.3142,1,1,1,1,-0.5428,-0.9714,-0.9714,-0.9428,-0.6,1,1,0.0858,-0.3428,-0.3714,-1,-0.8286,-1,-1,-1,-1,-1,-1,-1,-1,0.6694,0.6256,0.6572,0.672,0.652,0.6328,0.563,0.5542,0.5526,0.5588,0.3344,0.314,0.3436,0.383,0.4094,0.4728,0.5316,0.6202,0.6926,0.6666,-0.6666,-0.3648,-0.464,-0.6232,0.469,0.474,0.4816,1,-0.8316,-0.7192,-0.5206,-0.4514,-0.365,-0.352,-0.3046,-0.3694,-0.3046,-0.3088,-0.2916,0.2268,-0.0626,-0.0972,0.067,0.1534,0.2526,0.4212,0.2008,0.2916,0.5594,0.6372,0.797,0.6502,0.5896,0.6934,0.9914,1,0.905,0.6846,0.581,0.1706,-0.6738,-0.74,-0.6502,-0.5602,-0.5792,-0.3192,-0.4278,-0.4752,-0.2956,-0.2104,0.007,0.5178,0.4138,0.0354,0.1348,0.3428,0.5508,0.6028,0.2246,0.7494,0.8486,0.9244,0.844,0.721,0.5744,0.7684,1,0.8628,0.7542,0.494,0.39,0.0592,-0.1758,-0.618,-0.3216,-0.0352,-0.005,0.0402,-0.1458,-0.0402,0.1558,0.1658,0.0502,1,0.8392,0.1206,0.181,0.4222,0.6934,0.7186,0.3316,0.7036,0.6984,0.8342,0.7136,0.5628,0.3768,0.5678,0.814,0.7538,0.6582,0.2764,0.0854,-0.1256,1,-1,-1,1,-1,-1,-1,-0.1,-1,-0.0466,0.628,0.5814,0.7906,0.5814,0.279,0.2326,0.4884,0.5116,0.6744,0.8372,0.7442,1,0.4418,0.5116,0.628,0.628,0.907,0.8838,0.6744,0.8838,0.628,0.721,0.7906,0.9302,0.7442,0.8372,0.6512,0.4652,0.3024,-0.093,-0.7442,'20'
-0.6838,0.1304,0.1146,-0.4862,-0.7628,-0.5494,-0.6126,-0.494,-0.668,-0.5178,-0.6126,-0.66,-0.3044,-0.328,-0.2016,-0.2886,-0.2964,0.328,0.5098,0.8182,0.9762,0.8102,0.834,1,0.9526,0.8418,0.66,0.4862,0.4308,0.3754,0.494,0.581,-0.5548,-0.0148,-0.1514,-0.3234,-0.4302,-0.4066,-0.3946,-0.5192,-0.4836,-0.6024,-0.6024,-0.5014,-0.5964,-0.4244,-0.2462,-0.3116,-0.4302,-0.0208,0.3176,0.8278,1,0.8814,0.8338,0.9466,0.8636,0.7032,0.5014,0.365,0.4362,0.3946,0.3472,0.4718,-0.5748,-0.1286,-0.1234,-0.0236,-0.3438,-0.4384,-0.37,-0.433,-0.4174,-0.6956,-0.5906,-0.433,-0.5276,-0.538,-0.5434,-0.4278,-0.3806,-0.1706,0.1444,0.4908,0.9842,1,0.8058,0.8268,0.8058,0.538,0.3648,0.3544,0.391,0.3438,0.2966,0.3124,-0.6284,-0.2022,-0.388,-0.3606,-0.6448,-0.6174,-0.5082,-0.3278,-0.3934,-0.6338,-0.5136,-0.47,-0.612,-0.6886,-0.6666,-0.2622,-0.306,-0.4972,0.0274,0.4372,1,0.9016,0.7486,0.9508,0.9508,0.5574,0.3606,0.3716,0.2732,0.1858,0.2404,0.317,-0.6708,-0.2318,-0.25,-0.1524,-0.6708,-0.744,-0.6586,-0.75,-0.7378,-0.7744,-0.7196,-0.6524,-0.6402,-0.567,-0.3292,-0.4268,-0.5914,-0.683,-0.3354,0.3902,0.8232,1,0.9696,0.9634,0.878,0.5976,0.2134,0.128,0.0792,0.0914,0.006,0.0244,-0.5098,-0.098,0.1176,0.1764,-0.755,-0.5098,-0.6274,-0.2352,-0.4902,-0.804,-0.8726,-0.5686,-0.3726,-0.5196,-0.1078,-0.3334,-0.5882,-0.4706,-0.5098,-0.0882,0.7156,1,0.6666,0.549,0.7352,0.353,-0.147,-0.0588,-0.3236,-0.147,-0.1274,-0.1666,-0.4756,-0.6952,0.6464,0.744,-0.4268,-0.2926,0.0244,0.1586,-0.183,-0.244,-0.061,-0.4634,0.2318,0.2196,0.1464,-0.1708,-0.2074,0.1708,0.2074,0.2196,0.7682,1,0.6464,0.439,0.4146,0.6464,0.5976,0.317,0.3048,0.2074,0.5854,0.561,0.0858,0.4858,0.5428,0.1428,0.0858,-0.2,0.3714,0.3714,-0.1428,0.2572,0.0286,-0.6,0.4286,0.4858,0.6,0.4858,-0.0858,0.3714,0.5428,0.2,0.4286,0.3714,1,0.8858,0.5428,0.8286,0.6572,0.6572,0.3714,0.3714,0.7142,0.6572,-0.6316,0.1578,0.1578,-0.5264,-0.6316,-0.2632,-0.3684,-0.7368,-0.7368,-0.5264,-0.579,-0.3684,-0.421,-0.1578,-0.1578,-0.1052,-0.1052,0.3684,0.421,0.8948,0.9474,0.7894,0.6842,0.9474,1,0.579,0.5264,0.421,0.5264,0.421,0.421,0.421,-0.146,0.146,0.0338,-0.1236,-0.3484,-0.1236,-0.2134,-0.1686,-0.1236,-0.2134,-0.8202,-0.0786,-0.0562,-0.191,0.0338,-0.1012,-0.1686,-0.2584,-0.4606,0.236,0.6404,1,0.8876,0.5506,0.4832,0.3034,-0.146,0.0112,0.0338,-0.2134,-0.1686,-0.1686,-1,-1,-1,-0.8512,-0.8232,-0.8512,-0.6744,-0.7674,-0.4046,-0.2558,-0.721,0.5628,0.4976,0.2744,0.1442,0.293,-0.0232,-0.172,-0.0884,-0.0884,-0.4976,-0.6466,-0.7674,-0.7674,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.883,-0.8666,-0.857,-0.2814,1,1,0.8146,-0.4178,0.4244,0.8796,0.6456,0.574,0.613,0.3692,0.083,0.07,-0.509,-0.7008,-0.7854,-0.8536,-0.8536,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.97,-0.9768,-0.96,0.3032,1,1,0.7032,0.2732,-0.36,0.1466,0.0866,0.2766,0.36,0.1566,0.06,0.0466,-0.43,-0.5516,-0.7316,-0.8668,-0.9368,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.1714,-0.9428,1,1,1,-0.2,1,1,1,0.7428,-0.9428,-1,-1,-0.9428,-0.7714,1,1,-0.2572,-0.7142,-0.7428,-0.9428,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.0166,-0.0184,0.0618,0.0646,0.0714,0.0848,0.1532,0.2238,0.2428,0.2678,0.5664,0.6208,0.6256,0.6778,0.732,0.749,0.8116,0.84,0.891,0.6534,-0.64,-0.3176,-0.4244,-0.6326,0.961,0.8732,0.8666,1,-0.7394,-0.541,-0.5298,-0.2748,-0.2578,-0.456,-0.3484,-0.3314,-0.2238,-0.2692,-0.1048,-0.0142,0.0368,0.1614,-0.1388,0.2012,0.2012,0.2182,0.3314,0.4334,0.541,0.6318,0.813,0.8866,0.677,0.7224,0.8356,1,0.813,0.2522,0.2862,-0.2692,-0.844,-0.852,-0.804,-0.796,-0.636,-0.536,-0.404,-0.408,-0.288,0.056,0.06,0.156,0.172,-0.012,0.188,0.436,0.78,0.82,0.46,0.664,0.856,0.932,0.88,1,0.752,0.916,0.972,0.748,0.804,0.572,0.548,0.224,-0.538,-0.4988,-0.4054,-0.4398,-0.3514,-0.1548,-0.0958,0.0122,0.1498,0.3218,0.4202,0.8574,0.6412,0.371,-0.0074,0.4448,0.8624,0.8624,0.543,0.8624,0.9508,1,0.946,0.8034,0.6658,0.946,0.774,0.769,0.656,0.4644,0.4348,0.086,0.1382,-1,1,-1,-1,-1,-1,0.0666,-1,0.013,0.5844,0.2988,1,0.8962,0.2468,0.6364,0.6624,0.7142,0.5324,0.922,0.6884,0.6104,0.4286,0.4026,0.8182,0.6104,0.7662,0.6624,0.8702,0.8442,0.6104,0.4546,0.6364,0.3246,0.2208,0.5584,0.5584,0.7142,0.1688,-0.1168,-0.3246,'20'
-0.3008,0.27,0.0128,-0.6092,-0.4652,-0.5578,-0.4652,-0.5064,-0.784,-0.7018,-0.8868,-0.779,-0.6196,-0.5938,-0.311,-0.4448,-0.527,-0.5322,-0.0282,0.0386,-0.1106,-0.275,-0.162,0.018,0.1362,0.3368,0.5064,0.4138,0.4396,0.5784,0.671,1,-0.1588,0.508,0.2804,-0.5714,-0.217,-0.2962,-0.3068,-0.5608,-0.672,-0.6084,-0.656,-0.5768,-0.4286,-0.4126,-0.4708,-0.5238,-0.3544,-0.0794,0.5926,0.6138,0.1534,0.1376,0.492,0.4498,0.508,0.5662,0.4762,0.418,0.5026,0.619,1,0.9948,-0.2944,0.573,0.5192,-0.3348,-0.3348,0.0562,-0.1236,-0.3438,-0.4966,-0.3304,-0.4966,-0.3618,-0.1866,-0.0338,-0.3124,-0.1956,-0.0606,0.0562,0.8832,0.8786,0.5056,0.5236,0.7574,0.7438,0.4426,0.4202,0.3168,0.3618,0.6044,0.618,1,0.982,-0.3672,0.0994,0.5334,0.5658,-0.3026,-0.0716,-0.0392,0.0946,-0.3072,-0.1502,-0.0254,0.0438,0.0532,-0.0024,0.3118,0.2102,0.552,0.8384,0.8476,0.9308,0.9308,0.5612,0.492,0.3534,0.1778,0.164,0.3118,0.589,0.6398,1,0.8984,0.8338,-0.5244,0.061,0.6788,0.5814,-0.1178,0.2764,0.191,0.2318,-0.252,0.191,0.187,0.252,0.5,0.744,0.8496,0.63,0.4634,0.4512,0.7926,0.9512,0.9838,0.4308,0.1626,0.0244,0.1586,0.183,0.313,0.6382,1,0.8658,0.7154,0.313,-0.58,0.2814,0.8832,0.7446,0.013,0.2858,0.3204,0.2554,0.1732,0.264,0.7792,0.8138,1,0.7272,0.671,0.013,0.0476,0.2944,0.5888,0.8442,0.619,-0.0866,-0.0692,-0.1646,-0.039,-0.0044,0.3506,0.922,0.9568,0.5714,0.1602,-0.0952,-0.203,0.4252,1,0.816,0.3026,0.4176,0.8008,0.908,0.6476,0.8774,0.4712,0.3564,0.525,-0.0804,0.0882,0.0114,-0.249,0.2874,0.4942,0.9694,0.6782,0.5402,0.0268,-0.1188,0.0882,-0.203,0.0344,0.5862,0.4636,-0.0422,0.0268,-0.5556,0.027,0.5136,0.4054,-0.3514,-0.1892,-0.3514,-0.5136,-0.2432,-0.2972,-0.6216,-0.6216,-0.4594,-0.2432,-0.3514,-0.1352,-0.1892,-0.5136,-0.081,-0.2432,0.2432,0.1352,-0.2972,-0.027,-0.027,0.2972,0.2432,0.4054,0.2972,0.2972,0.5676,0.8378,1,0.0454,0.409,0.2728,-0.3182,-0.091,0,0,-0.091,-0.3182,-0.3182,-0.8182,-0.7272,-0.1364,-0.0454,0.091,-0.091,-0.0454,-0.091,0.3182,0.3182,0.1818,0.091,0.1818,0.0454,0.4546,0.5,0.591,0.591,0.6364,0.6364,0.8636,1,-0.6104,0.1428,0.7142,0.6104,-0.039,0.2208,0.091,0.013,0.013,0.013,0.4026,0.7142,0.948,0.7662,0.6104,0.1688,0.065,0.4026,0.5064,0.6884,0.5064,0.065,0.091,-0.2468,-0.1688,-0.091,0.3766,0.8702,1,0.4806,0.3506,0.1168,-1,-1,-1,-1,-1,-1,-1,-0.9396,-0.9396,-0.9006,-0.702,-0.339,-0.365,-0.067,0.4082,0.2614,0.2786,0.8444,0.7884,0.8186,0.2312,-0.4126,-0.7754,-0.7494,-0.8056,-0.866,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9198,-0.9308,-0.8614,-0.763,-0.4732,-0.4986,-0.3582,-0.0154,0.01,0.0446,0.6116,0.8596,0.6426,-0.0356,-0.6408,-0.8486,-0.856,-0.8778,-0.9016,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9134,-0.9534,-0.6868,-0.47,-0.455,-0.425,-0.345,-0.445,-0.1826,-0.045,-0.5424,-0.2912,-0.5378,-0.72,-0.8246,-0.84,-0.8368,-0.8034,-0.8134,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7428,-0.4572,0.2858,0.6858,0.0286,-0.9142,-0.7714,-0.7142,-0.6572,-0.6,-0.5428,-0.5714,0.1428,0.7714,0.8858,-0.9142,-0.9428,-0.9714,-0.4,-1,-1,-1,-1,-1,-1,-1,-0.1552,-0.101,-0.0638,-0.061,-0.0886,-0.0532,-0.0594,-0.0332,0.043,0.4214,0.6236,0.6888,0.6826,0.6798,0.6976,0.6598,0.6422,0.602,0.4972,-0.0704,-0.52,-0.0236,-0.7648,-0.515,-0.4402,-0.4896,-0.5332,-0.925,-0.2592,-0.037,-0.2408,0.3518,0.1852,0.0186,0.0186,0.0926,0.074,0.2778,0.2408,-0.0186,0.3704,0.574,0.3148,0.9074,0.963,0.1482,-0.3334,0.1666,0.037,0.8334,1,0.926,0.6296,0.9444,0.9074,-0.1112,0.1852,0.2778,-0.1666,-0.4074,-0.0828,-0.0226,-0.0526,0.3534,0.203,0.1278,0.2782,0.2632,0.2782,0.3534,0.4286,0.3384,0.2632,0.4136,0.3534,0.4586,0.5338,0.2932,0.173,0.0676,0.218,0.7744,1,0.8496,0.8948,0.8948,0.8196,0.1578,0.4436,0.5488,0.1428,-0.2932,0.0638,0.1914,-0.1348,-0.007,-0.0922,-0.2198,-0.1064,-0.1348,-0.1632,-0.0354,0.149,0.2624,0.4468,0.4752,0.6738,0.7164,0.7164,0.1064,-0.234,-0.2766,0.1774,0.3758,0.7872,0.8866,0.8866,1,0.9148,0.2624,0.2482,0.2482,0.0638,-0.4468,-0.3692,-1,-1,1,-1,-1,-1,-0.6666,-1,-0.1904,0.381,0.8572,0.8096,0.9524,0.5238,0.9524,0.9286,0.619,0.619,0.9048,1,1,1,0.7142,0.5476,0.3334,0.4762,0.6904,0.7142,0.5714,0.5952,0.5952,0.7858,0.8572,0.8096,0.619,0.5476,0.6904,0.6666,0.3334,0.0952,'21'
-0.5498,0.402,0.2218,-0.4276,-0.6012,-0.5884,-0.4856,-0.5692,-0.6464,-0.6528,-0.82,-0.6334,-0.5242,-0.5112,-0.447,-0.5434,-0.627,-0.4984,-0.3184,-0.0226,0.209,0.1126,0.016,0.0932,0.2734,0.6334,0.537,0.5692,0.7364,0.6592,0.762,1,-0.4364,0.0574,-0.187,-0.561,-0.3866,-0.4414,-0.3118,-0.3816,-0.4514,-0.6658,-0.9502,-0.8504,-0.5162,-0.4714,-0.6558,-0.7406,-0.5562,-0.227,-0.0124,0.1172,0.2968,0.197,0.1072,0.4514,0.596,0.6508,0.4962,0.4414,0.5462,0.571,0.7306,1,-0.3662,0.1748,-0.1092,-0.459,-0.1804,-0.2896,-0.164,-0.2786,-0.306,-0.5192,-0.4154,-0.3662,-0.317,-0.4262,-0.1858,-0.2186,0.0984,0.47,0.7322,0.8032,0.8306,0.6994,0.7322,0.7924,0.8032,0.5136,0.3114,0.4316,0.8524,0.7378,1,0.9946,-0.4438,0.0408,-0.0612,0.0102,-0.4592,-0.4082,-0.25,-0.102,-0.2092,-0.5816,-0.2346,-0.2756,-0.1632,-0.0766,0.0052,0.4336,0.6276,0.8266,0.602,0.6836,0.903,0.6276,-0.2398,-0.1072,-0.2398,-0.0256,0.0918,0.097,0.5256,0.903,1,0.301,-0.2912,0.2784,0.7784,0.8038,-0.4178,0.0632,0.1266,0.2912,0.0316,-0.2468,0.2342,0.3418,0.6646,0.9556,0.8164,0.6266,0.3292,0.4874,0.7594,0.867,1,0.3164,-0.0316,-0.019,-0.0696,-0.1582,0.114,0.633,0.8102,0.943,0.4494,0.1898,-0.4362,0.086,0.9584,1,-0.3294,0.264,0.2938,0.0326,0.0802,0.3056,0.7092,0.4718,0.3116,-0.0564,-0.175,-0.0148,-0.4066,0.0682,0.3056,0.2582,0.1572,-0.264,-0.4006,-0.2582,-0.2878,-0.4836,-0.2166,0.2344,0.1216,0.187,-0.4422,-0.6854,0.0918,1,0.5266,0.6328,-0.3044,0.14,0.285,0.6426,0.6136,0.7488,0.0532,-0.314,-0.227,-0.8648,-0.7102,-0.5072,-0.2174,-0.256,0.0048,-0.169,0.2078,-0.343,-0.0822,-0.1498,-0.314,-0.3914,-0.3526,-0.2368,0.0822,-0.314,-0.5846,-0.6522,-0.4616,0.8462,1,0,-0.6154,-0.923,-0.3076,-0.3846,-0.6154,-0.2308,-0.077,-0.4616,-0.1538,0,-0.1538,0,-0.6924,-0.6154,-0.1538,0.1538,0.3076,0,0.077,-0.077,0.1538,0.077,-0.3846,0,0.077,0.3846,0,-0.077,-0.125,0.5624,0.4376,-0.1876,-0.625,-0.4376,-0.3124,-0.125,-0.125,-0.5,-0.25,-0.375,-0.5624,-0.1876,0,-0.3124,-0.25,-0.125,0.0624,0.4376,0.3124,0.375,0.1876,0.1876,0.25,0.6876,0.5624,0.8124,0.8124,0.9376,1,1,-0.2982,0.228,0.5088,0.5438,-0.2632,-0.0526,-0.0176,0.0526,0.0176,-0.193,0.2982,0.228,0.5088,0.7544,0.6492,0.0176,-0.0176,-0.1228,0.0526,0.8596,1,0.4386,-0.0176,0.2632,-0.0176,-0.3334,-0.0878,0.7894,0.7894,0.6492,0.5438,0.2632,-1,-1,-1,-1,-1,-1,-1,-1,-0.8384,-0.8538,-0.6076,0.077,-0.1846,-0.0308,0.0384,0.1,0.1384,0.2462,0.7616,0.8462,0.3076,-0.077,-0.6846,-0.6308,-0.2538,-0.3462,-0.3616,-0.5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7738,-0.794,-0.598,0.1508,0.4272,0.6332,0.5126,0.5478,0.6482,0.4874,0.7286,0.789,0.3116,-0.2864,-0.6684,-0.6532,-0.407,-0.4874,-0.4674,-0.5778,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.9668,-0.8168,-0.56,-0.04,-0.1526,-0.23,-0.19,-0.3276,-0.4026,-0.6776,-0.79,-0.82,-0.9026,-0.8934,-0.78,-0.8268,-0.9268,-0.9768,-0.81,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,-0.8572,1,1,0.2,-0.8286,-0.8,-0.5714,-0.7142,-0.4572,-0.4572,-0.7142,-0.3714,-0.3142,-0.9142,-1,-0.9428,-0.9714,-1,-0.8,-1,-1,-1,-1,-1,-0.147,-0.1346,-0.1184,-0.0776,0.0154,0.0718,0.0578,0.1538,0.2142,0.313,0.5466,0.5922,0.6188,0.6528,0.6946,0.695,0.713,0.7048,0.5302,-0.043,-0.5734,-0.0942,-0.5478,-0.2562,0.2964,0.3468,0.4222,-0.3916,0.1386,0.1532,0.4598,1,0.781,0.5328,0.416,0.5912,0.6934,0.416,0.8248,0.5766,0.6642,0.9124,0.4306,0.6058,0.5328,0.3722,0.5766,0.4452,0.4744,0.2554,0.416,0.4452,0.3284,0.4744,0.489,0.3138,0.3138,0.4452,0.1094,-0.2992,-0.0822,-0.137,-0.0822,0.0958,0.3288,0.2054,0.3424,0.315,0.3836,0.2328,1,0.6712,0.6028,1,0.0136,0.178,-0.0684,-0.1096,0.2876,0.4384,0.4246,0.2602,0.3424,0.1096,0.041,0.4794,0.7808,0.2328,0.2192,0,-0.1096,-0.3698,0.0858,0.4972,0.4514,0.4172,0.6458,0.4172,0.28,0.4742,0.3486,0.12,0.6228,0.4628,0.7028,0.8172,0.7142,0.5886,0.6572,0.5428,0.1772,0.1314,0.2,0.2228,0.6686,0.8172,0.4972,0.9314,1,0.76,0.3942,-0.0286,0.1658,-0.04,-0.9396,1,-1,-1,-1,-1,-1,-1,-1,-0.1604,0.8024,0.4568,0.605,0.753,0.3334,0.7284,1,0.605,0.3828,0.8272,0.5308,1,0.5308,0.5062,0.5062,0.6296,0.7038,0.4814,0.3334,0.284,0.7778,0.3086,0.432,0.5062,0.7284,0.753,0.358,0.358,0.358,0.1604,-0.432,'21'
-0.5336,0.1872,0.0672,0.1802,-0.3992,-0.3852,-0.272,-0.258,-0.159,-0.2932,-0.2368,-0.3144,-0.1166,0.0672,0.06,0.053,0.2862,0.6114,0.9152,0.8728,0.6184,0.781,0.9646,0.9506,0.7598,0.4204,0.2932,0.4134,0.477,0.6538,0.795,1,-0.4618,0.0152,-0.0276,0.0642,-0.162,-0.266,-0.2538,-0.3334,-0.3028,-0.2354,-0.3578,-0.1926,-0.3028,-0.3028,-0.0398,-0.0582,0.0764,0.26,0.4496,0.8716,0.7186,0.6452,0.9816,0.9816,1,0.688,0.6636,0.5352,0.4496,0.523,0.6452,0.7614,-0.5152,-0.0242,0.0364,0.1394,-0.1334,-0.2122,-0.303,-0.2848,-0.2848,-0.309,-0.4424,-0.3152,-0.2848,-0.2546,-0.206,-0.2606,-0.1152,0.1212,0.1758,0.709,0.6364,0.6122,0.8424,0.8304,1,0.8546,0.6848,0.491,0.4484,0.406,0.4848,0.6122,-0.4662,-0.003,0.0792,0.1672,-0.1436,-0.2492,-0.3196,-0.3138,-0.2668,-0.3314,-0.4486,-0.308,-0.302,-0.3138,-0.2316,-0.2786,-0.1496,-0.0674,0.214,0.648,0.654,0.6892,0.7654,0.7536,1,0.7772,0.613,0.4898,0.4018,0.4194,0.4722,0.5718,-0.4968,0,-0.051,0.051,-0.191,-0.2612,-0.3886,-0.605,-0.5096,-0.4522,-0.5988,-0.3694,-0.4332,-0.395,-0.4332,-0.4458,-0.2356,-0.1274,0.0382,0.4968,0.5414,0.7198,0.777,0.8026,1,0.879,0.4268,0.4458,0.4714,0.3886,0.3248,0.465,-0.1666,0.5416,0.2916,0.35,-0.075,-0.1584,-0.2584,-0.3,-0.4084,-0.275,-0.425,-0.5834,-0.3,-0.2166,-0.4584,-0.5834,-0.2416,-0.3584,-0.1334,0.6334,0.65,0.7916,0.625,0.7666,1,0.8916,0.2666,0.125,0.075,0.35,0.3,0.125,-0.2228,0.5752,0.2954,-0.1814,-0.6892,-0.658,-0.5336,-0.3472,-0.627,-0.8756,-0.658,-0.7202,-0.8238,-0.9068,-0.5234,-0.5234,-0.4508,-0.5234,-0.658,0.1192,0.3264,0.316,0.2954,0.7306,1,0.6062,0.3472,0.1296,0.2436,-0.0362,0.3056,0.2332,-0.2778,0.2778,0.2222,0.0556,-0.1666,-0.2222,-0.3334,-0.0556,-0.1112,0,-0.0556,-0.1666,0.1112,0,0.5,0.2222,0.4444,0.6666,0.9444,0.5556,0.6666,0.8888,1,0.3334,0.6112,0.2222,0.1666,0.3888,0.2222,0.8334,0.8334,0.8888,-0.3334,0.077,0.077,0.1794,0.0256,-0.1794,-0.1282,-0.2308,-0.1794,-0.3334,-0.1794,-0.0256,0.0256,-0.077,-0.1794,-0.0256,0.0256,0.282,0.7436,0.7436,0.4872,0.4358,1,0.9488,0.5384,0.1794,0.3334,0.4358,0.3846,0.641,0.5384,0.8974,-0.3636,0.1818,0,0.1818,-0.091,-0.2728,-0.0606,-0.2122,-0.2728,-0.2424,-0.2728,-0.5454,-0.5454,-0.4242,-0.2122,-0.303,-0.1516,-0.2122,0,0.5152,0.303,0.7576,0.8182,0.9394,1,0.9394,0.4242,0.394,0.4848,0.4546,0.3334,0.5454,-1,-1,-1,-1,-0.8108,-0.8648,-0.8108,-0.8288,-0.8918,-0.8558,-0.6486,0.3784,0.901,0.5586,0.4864,0.7118,0.6756,0.6846,0.5136,0.6216,0.946,0.081,-0.6036,-0.7298,-0.7748,-0.7658,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8932,-0.8984,-0.836,-0.7448,-0.776,-0.776,-0.638,-0.013,0.625,0.6614,0.6406,0.7942,0.789,0.599,0.0886,-0.138,-0.224,-0.552,-0.7838,-0.8256,-0.8594,-0.8386,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9064,-0.98,-0.7834,-0.5334,-0.43,-0.4,-0.6068,-0.312,0.096,0.252,0.17,0.1866,0.2966,0.1632,0.0132,-0.3534,-0.6768,-0.5334,-0.59,-0.6068,-0.9068,-0.8134,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2572,-0.8,0.7428,0.6,-0.9428,-0.9142,1,1,1,-0.7428,-1,-1,-1,-0.8572,-0.3142,0.3714,0.2572,-0.1714,-0.6286,-0.7428,-0.9714,-0.8286,-1,-1,-1,-1,-1,-1,-1,0.304,0.3198,0.3198,0.2666,0.2514,0.2906,0.3266,0.3434,0.369,0.2342,0.335,0.3938,0.3938,0.437,0.4672,0.5658,0.6074,0.7058,0.8002,0.766,-0.64,-0.3764,-0.6354,-0.2812,0.138,0.5808,0.698,-0.275,-0.1536,-0.191,0.0862,0.573,0.3932,0.3334,0.5132,0.5206,0.4832,0.4382,0.4232,0.3184,0.6554,0.5806,0.7078,0.8052,0.5056,0.4756,0.588,0.5956,0.4606,0.8426,0.7154,0.7828,0.8652,1,0.8802,0.8802,0.94,1,0.7228,0.2284,-0.2746,-0.5424,-0.366,0.2222,0.1242,-0.1438,0.464,0.4248,0.2746,0.0196,0.0522,0.3268,0.4706,0.3334,0.5164,0.7516,0.4706,0.4968,0.4902,0.451,0.4968,0.6144,0.8432,0.6536,0.7254,0.7124,0.8496,1,0.7516,0.804,0.3006,0.098,-0.3284,-0.2986,-0.015,0.0374,0.0746,0.0224,0.2388,0.3806,0.5672,0.485,0.5298,0.5224,0.4478,0.4402,0.5896,1,0.6044,0.3508,0.6044,0.6642,0.6492,0.7388,0.8582,0.9328,0.903,0.8732,0.8956,0.9926,0.5672,0.597,0.5746,-0.0896,-0.651,-1,1,-1,-1,-1,-1,-0.1,-1,-0.5556,0.037,0.284,0.2346,0.5062,0.3828,0.4814,0.5556,0.4568,0.4814,1,0.5556,0.9012,0.7778,0.8272,0.5556,0.7778,0.8024,0.5802,0.432,0.5062,0.3086,0.7038,0.5802,0.6296,0.5556,0.5062,0.5556,0.4074,0.3828,0.1112,-0.7284,'22'
-0.6722,-0.041,0.1722,0.254,-0.4508,-0.541,-0.5082,-0.4016,-0.2868,-0.2132,-0.2378,-0.2296,-0.3606,-0.1476,0.0246,0.041,0.246,0.5984,0.8688,0.8524,0.8934,1,0.8688,0.5902,0.4754,0.3442,0.1476,0.1722,0.3606,0.459,0.5902,0.5574,-0.537,-0.0308,0.1604,0.2962,-0.2592,-0.3456,-0.4012,-0.5556,-0.5,-0.4692,-0.5246,-0.3024,-0.2962,-0.2222,-0.179,-0.2098,-0.2778,0.3888,0.5186,0.963,0.9444,0.8334,0.8334,1,0.6976,0.6666,0.4754,0.3272,0.426,0.5062,0.5,0.926,-0.4858,0.0532,0.2288,0.3668,-0.2978,-0.4106,-0.5424,-0.649,-0.4984,-0.5988,-0.6552,-0.3542,-0.3856,-0.2852,-0.3166,-0.3918,-0.4232,0.0532,0.2916,1,0.9562,0.5424,0.7116,0.837,0.812,0.7742,0.4294,0.3292,0.4482,0.4858,0.442,0.7994,-0.4478,0.0708,0.2728,0.3872,-0.3132,-0.4208,-0.4142,-0.4074,-0.4612,-0.5286,-0.6364,-0.5354,-0.2794,-0.3132,-0.8586,-0.6768,-0.5152,0.0236,0.293,0.697,0.8518,0.926,0.8316,0.7846,1,0.7442,0.4814,0.4276,0.3064,0.1718,0.6094,0.6768,-0.4216,0.101,-0.0314,0.0802,-0.547,-0.6586,-0.5052,-0.3938,-0.568,-0.8188,-0.5262,-0.4216,-0.2682,-0.345,-0.6586,-0.6586,-0.6168,-0.3728,0.0522,0.4146,1,0.9234,0.6376,0.7422,0.8048,0.4704,0.2892,0.1916,0.2126,0.2196,0.317,0.5818,-0.4682,0.0158,-0.0396,-0.0794,-0.6112,-0.5158,-0.4524,-0.4604,-0.6826,-0.6826,-0.7698,-0.5556,-0.4048,-0.4682,-0.492,-0.508,-0.508,-0.4604,-0.254,0.7698,1,0.5238,0.492,0.7302,0.635,0.5634,0.262,-0.0318,0.0318,-0.1508,-0.119,0.254,-0.1016,0.4974,0.155,0.155,-0.476,-0.1444,-0.3262,-0.369,-0.4118,-0.3476,-0.2192,-0.508,-0.476,-0.2942,0.3156,0.091,-0.2728,-0.508,-0.4866,0.3048,0.1336,0.4974,0.5294,0.8182,1,0.6578,0.5722,0.369,0.3048,0.2514,0.2406,0.508,-0.1876,-0.0624,0.375,0.5,-0.25,-0.375,-0.4376,0.125,0.125,-0.0624,-0.25,0,-0.375,-0.25,0.25,0.375,0.625,0.8124,0.9376,0.875,0.75,1,0.625,0.5624,0.5624,0.5,-0.125,0.3124,0.4376,0.5624,0.375,0.5,-0.5428,-0.0286,0.2,0.2572,-0.4858,-0.5428,-0.3714,-0.5428,-0.3142,-0.2572,-0.2,-0.2,-0.4858,0.0286,-0.1428,0.0858,0.2,0.5428,0.8858,0.6572,1,1,1,0.6,0.3142,0.3714,0.1428,0.2572,0.3714,0.2572,0.8286,0.7142,-0.125,0.25,0.175,0.25,-0.225,-0.225,-0.125,-0.075,-0.25,-0.45,-0.3,-0.25,0.175,0.1,-0.4,-0.65,-0.525,-0.025,0.175,0.4,1,0.975,0.8,0.65,0.75,0.525,0.375,0.325,0.4,0.375,0.425,0.6,-1,-1,-1,-1,-1,-1,-0.7962,-0.824,-0.8334,-0.7962,-0.5278,0.213,0.5648,0.574,0.7314,0.9166,0.7592,0.7686,0.3334,0.0186,0.0926,-0.176,-0.6018,-0.6944,-0.6296,-0.6944,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8132,-0.8008,-0.805,-0.6474,-0.0082,0.2324,0.8298,0.9336,0.7966,0.7428,0.6556,0.473,0.054,-0.1742,-0.2366,-0.4066,-0.5892,-0.693,-0.7262,-0.697,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9382,-0.8688,-0.922,-0.642,-0.46,-0.488,-0.116,-0.116,-0.172,-0.2068,-0.2768,-0.3034,-0.3734,-0.25,-0.47,-0.4834,-0.4534,-0.5834,-0.8968,-0.5968,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4858,-0.7428,0.2,0.5142,-0.0858,1,0.7714,-0.8858,-1,-0.9714,-0.8572,-0.7428,-0.7142,-0.6,-0.0286,-0.4572,-0.6858,-0.6,-0.7714,-0.7428,-1,-1,-1,-1,-1,-1,-1,0.1152,0.1152,0.1152,0.1224,0.1626,0.1888,0.1526,0.1528,0.1018,0.068,0.183,0.183,0.2716,0.3202,0.4066,0.4768,0.5256,0.5762,0.6652,0.6152,-0.6534,-0.3882,0.3568,-0.2448,0.502,0.776,0.9128,-0.75,-0.4546,-0.341,-0.2272,0.2046,0,-0.0682,0.2272,0.4772,0.3636,0.159,0.3864,0.5682,0.7272,0.6136,0.659,0.7272,0.341,0.25,0.3636,0.841,0.1818,0.6136,0.4772,0.7728,0.7954,1,0.8864,0.7954,0.75,0.3636,0.3636,0.091,-0.3334,-0.1818,-0.303,-0.091,0.1516,-0.0152,0.4242,0.6818,0.5152,0.303,0.5304,0.6212,0.6666,0.4848,0.6364,0.7576,0.4848,0.6666,1,0.9546,0.909,0.6666,0.8182,0.409,0.6212,0.5606,0.894,0.803,0.7728,0.5,0.3636,0.3182,0.1298,0.3588,-0.0688,-0.1298,0.0992,0.313,0.4198,0.5572,0.6946,0.6488,0.9694,0.6642,0.832,0.4352,0.771,0.8474,0.542,0.3588,0.9236,0.9542,0.6946,0.6336,0.6794,0.4504,0.5114,0.6794,1,0.71,0.1298,0.5268,0.481,0.2214,0.9586,-1,-1,1,-1,-1,-1,-0.6334,-1,-0.2352,0.1176,0.2156,0.1372,-0.0392,0.2156,0.2746,0.353,0.0588,0.196,0.5882,0.804,0.9804,0.549,0.3138,0.7648,1,0.647,0.3334,0.8824,0.647,0.804,0.6666,0.8432,0.1176,0.3726,0.3138,0.3334,0.5882,0.0392,0.0588,-0.7648,'22'
-0.67,-0.2562,0.138,0.2758,0.2464,0.2168,0.2216,0.3202,0.4286,0.3646,0.596,0.8522,0.9162,1,0.6158,0.2168,-0.0394,-0.1034,-0.1774,-0.0838,0.133,0.463,0.7094,0.6748,0.2068,0.1872,0.1576,0.1626,0.1724,0.3646,0.5222,0.7242,-0.7522,-0.437,-0.1306,0.099,0.3648,0.3784,0.4504,0.7478,0.6442,0.7522,1,0.9054,0.6712,0.4684,0.2658,-0.0586,-0.1306,-0.0946,0.1936,0.1442,0.2882,0.2162,0.1622,0.1666,0.1892,0.2162,0.1666,0.1486,0.2072,0.6442,0.6666,0.6442,-0.8252,-0.439,-0.0758,0.1816,0.485,0.3334,0.3702,0.7794,0.9264,1,0.5218,0.3518,0.292,0.0896,-0.131,-0.315,-0.4574,-0.4528,-0.1678,-0.1632,0.0666,0.4068,0.4068,-0.108,-0.0942,-0.039,-0.085,-0.0206,0.1494,0.508,0.554,0.4896,-0.7352,-0.1692,-0.0882,0.0294,0.0514,0.4338,0.4412,0.522,0.9926,1,0.4044,0.0514,-0.1912,-0.147,-0.1986,-0.4192,-0.5294,-0.5514,-0.5588,-0.625,-0.0588,0.5074,0.4338,-0.0808,-0.147,-0.5,-0.4632,0.147,0.1986,0.2426,0.1838,0.2574,-0.7992,-0.2114,0.2688,0.3906,-0.2974,0.0968,0.3548,0.4122,0.4696,1,0.8208,0.7922,0.3978,0.2688,-0.319,-0.663,-0.6272,-0.6344,-0.4982,-0.3118,-0.2402,-0.1112,0.319,-0.0824,-0.6918,-0.4266,-0.4838,-0.362,-0.0322,0.0466,0.62,0.2832,0.0156,0.75,0.4374,0.4374,-0.0468,0.0078,0.3204,0.0782,0.0156,-0.0156,-0.086,0.3282,0.2266,0.1954,0.2578,0.2032,0.2734,0.5078,0.711,0.6406,0.789,1,0.7734,0.0156,0.1484,0.0938,-0.0938,-0.164,-0.0938,0.1094,0.1954,0.7344,0.0206,1,0.598,0.4432,0.2578,-0.0104,-0.0722,-0.2578,-0.536,-0.1444,-0.433,-0.268,-0.2474,-0.1958,-0.1752,-0.3506,-0.3608,-0.0722,-0.1856,0.0412,-0.0104,0.2268,-0.0516,-0.0104,0.2784,0.2062,-0.031,-0.0928,0.0206,-0.2578,-0.0104,0.2372,-0.7058,-0.1764,0.2352,0.5294,0.2942,-0.1176,0.1764,0.0588,0.2352,0.2942,0.353,0.7648,0.8824,1,0.8824,0.1176,-0.0588,0,-0.1176,-0.2942,0.2352,0.5882,0.9412,0.8236,0.353,0,0,0.0588,-0.1176,0.1764,0.4118,0.7058,-0.7674,-0.2094,0.2094,0.3488,0.2094,0.2558,0.2558,0.3488,0.4418,0.2558,0.628,0.8604,0.9534,1,0.721,0.1628,0.0698,-0.1628,-0.0698,-0.0698,0.2094,0.6744,0.6744,0.5814,0.2558,0.2558,0.2558,0.2558,0.2558,0.3488,0.628,0.8604,-0.9466,-0.4934,0.0666,0.0666,0.3866,0.28,0.3066,0.68,1,1,0.3866,-0.0134,0.1466,-0.0934,-0.2266,-0.28,-0.5466,-0.36,-0.1466,-0.12,0.1734,0.36,0.36,-0.1734,-0.2534,-0.36,-0.4134,0.1466,0.0134,0.2534,0.5466,0.4666,-1,-1,-1,-1,-1,-1,-1,-0.8848,-0.8848,-0.7424,-0.3084,0.6814,0.6136,0.7694,0.8238,0.2542,-0.4508,0.2542,0.4372,0.2746,0.1526,0.0916,-0.1932,-0.2,0.044,0.2678,0.2882,0.078,-0.078,-0.0034,-0.5796,-0.7694,-0.8712,-1,-1,-1,-1,-1,-1,-1,-0.9558,-0.9522,-0.5248,-0.1184,0.116,0.752,0.8908,0.5888,-0.1824,-0.747,-0.3898,-0.396,-0.6414,-0.7128,-0.736,-0.7778,-0.7028,-0.639,-0.5702,-0.5518,-0.6058,-0.6734,-0.7766,-0.871,-0.8882,-0.93,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.98,-0.1768,0.78,-0.3668,-0.31,-0.4316,-0.4516,-0.5916,-0.56,-0.4944,-0.6144,-0.623,-0.8316,-0.8458,-0.82,-0.4634,-0.35,-0.6068,-0.67,-0.6334,-0.7568,-0.8734,-0.7334,-0.65,-0.9068,-1,-1,-1,-1,-1,-1,-1,-0.7714,1,1,1,1,0,-0.6,1,1,0.7714,0.3142,0.4572,0.4858,-0.4858,-0.8,-0.3714,-0.2572,-0.5714,-0.6858,-0.6858,-0.2572,0.0286,-0.1714,-0.6286,-0.7142,-0.6,1,1,1,1,1,1,1,1,1,1,-0.709,-0.7182,-0.7182,-0.737,-0.78,-0.7492,-0.7186,-0.6546,-0.4794,-0.4206,-0.6,-0.2352,-0.1664,-0.2794,0.2166,0.6034,0.784,1,-0.8116,-0.4928,-0.174,-0.1884,-0.116,0.0144,0,-0.0434,-0.2608,-0.2174,-0.2464,0.2464,0.1594,0.087,0.2608,0.3478,0.5362,0.5218,0.4058,0.8406,1,0.9856,0.6522,0.7826,0.855,0.8696,0.7392,0.6522,0.6086,0.6666,0.5652,-0.6376,-0.7484,-0.4172,-0.2716,-0.2582,-0.4172,-0.3642,-0.2582,-0.3908,-0.5364,-0.404,-0.3378,0.0994,-0.1126,-0.1126,0.2052,0.457,0.6822,0.8544,0.3908,0.8278,1,0.9868,0.6688,0.6556,0.7616,0.6954,0.5496,0.563,0.404,0.3908,0.3112,-0.086,-0.1818,0.101,0.0102,0.0202,0.0506,0.0808,0.5252,0.5656,-0.0102,0.0506,0.1818,0.3636,0.192,0.1112,0.394,0.4344,0.8686,0.9898,0.4142,0.798,0.9292,1,0.9394,0.7272,0.5252,0.6262,0.5758,0.5454,0.4748,0.4142,0.4444,0.2122,0.1148,-1,-1,1,-1,-1,1,-0.6666,-1,0.2388,0.3732,0.1642,-0.0448,0.015,-0.194,0.0298,-0.0598,0.388,0.791,0.582,1,0.6716,0.418,0.403,0.6716,0.8208,0.4478,0.582,0.7612,0.4626,0.3432,0.2986,0.4776,0.5522,0.7462,0.791,0.418,0.7014,0.5074,-0.015,-0.403,'23'
-0.7058,-0.2998,-0.019,0.0926,0.4796,0.4088,0.2698,0.5994,0.6622,0.7766,0.8228,1,0.8692,0.9182,0.4414,0.357,0.0054,0.2098,0.2698,0.2344,0.4686,0.6758,0.624,0.6566,0.4604,0.3842,0.2016,0.3706,0.4278,0.4332,0.8256,0.9892,-0.7744,-0.2852,0.2894,0.3574,0.7362,0.634,0.1788,0.5744,0.8256,1,0.4638,0.3788,0.1106,0.149,-0.366,-0.3702,-0.4426,-0.434,-0.383,-0.3234,0.1574,0.4554,0.3446,0.2808,0.149,0.034,-0.3234,0.0042,0.251,0.3404,0.3106,0.4638,-0.4554,0.2722,0.6238,0.8118,0.6534,0.51,0.3812,0.2476,0.5248,0.8614,0.6634,0.7872,0.4604,0.51,0.6288,0.6188,0.1386,0.3366,0.4356,0.505,0.9802,1,0.391,0.1386,0.0496,-0.1684,-0.0694,0.0248,0.4258,0.609,0.5594,0.7128,-0.1594,0.5362,0.5072,0.6474,-0.2706,-0.2512,0.0144,-0.2318,-0.3768,-0.343,-0.4202,-0.2706,-0.0194,0.0484,0.1208,0.1014,-0.1014,0.6426,0.8358,0.9904,1,0.9758,0.9566,0.7584,0.7392,0.6328,0.43,0.3962,0.4202,0.4638,0.5314,0.9662,-0.4636,0.0978,0.163,0.238,-0.5288,-0.4186,-0.3834,-0.4186,-0.609,-0.599,-0.5238,-0.574,-0.574,-0.5138,-0.4486,-0.619,-0.4436,0.3434,0.589,0.7344,0.7994,0.8346,0.8546,0.8646,1,0.8646,0.574,0.4086,0.3884,0.4636,0.4336,0.7694,-0.5576,-0.0924,0.7116,0.6192,-0.45,-0.0654,-0.2462,-0.1654,-0.3962,-0.2116,-0.1808,-0.3076,-0.1424,-0.0962,-0.0154,0.0424,0.3192,0.5038,0.4616,0.823,1,0.7808,0.6192,0.1924,0.027,-0.0038,-0.1346,-0.123,0.1808,0.2076,0.327,0.4038,-0.2156,0.545,0.6646,0.5928,0.03,0.4312,0.3354,-0.1676,0.036,-0.0598,-0.042,0.2096,0.7784,0.9042,0.7366,0.6706,0.5748,0.4432,0.3414,0.8862,1,0.2934,0.036,0.0538,-0.1556,0.0658,0.0718,0.0838,0.4372,0.3592,0.3772,-0.1258,-0.7436,-0.3846,0.0256,0.1794,-0.0256,-0.077,0.1282,0.3846,0.5384,0.5384,0.4872,0.8462,0.6924,0.9488,0.4872,0.4872,-0.1794,0.077,0.3334,0.3846,0.4358,0.9488,0.8974,0.7436,0.4872,0.5384,0.1794,0.1282,0.5384,0.4358,0.641,1,-0.7074,-0.4634,-0.2196,-0.1708,0.2682,0.0732,0.1708,0.3658,0.5122,0.6586,0.561,0.9512,0.9512,1,0.561,0.4634,-0.1708,0.1708,0.317,0.1708,0.561,0.9024,0.756,0.7074,0.561,0.5122,0.317,0.2196,0.3658,0.6586,0.6098,1,-0.92,-0.08,0,0.28,0.6,0.36,0.24,-0.24,0.4,0.96,1,1,0.32,-0.2,-0.2,-0.2,-0.12,0,0.08,0.16,0.52,0.56,-0.12,0.32,0.12,0.08,-0.04,0,0.68,0.84,0.88,0.36,-1,-1,-1,-1,-1,-1,-1,-0.9356,-0.9356,-0.8666,-0.0298,0.085,0.715,-0.3748,-0.338,0.0436,-0.2184,-0.5034,-0.4022,0.0068,-0.1172,-0.416,-0.7886,-0.8114,-0.839,-0.7472,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9596,-0.9606,-0.6946,-0.1054,0.534,0.5118,-0.7118,-0.6734,-0.5564,-0.6904,-0.7522,-0.7532,-0.6202,-0.6032,-0.8096,-0.9298,-0.9352,-0.9362,-0.918,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.9734,0.42,-0.17,-0.2474,-0.4856,-0.731,-0.6382,-0.4438,-0.431,-0.3638,-0.3638,-0.6856,-0.7164,-0.8274,-0.8268,-0.8134,-0.7068,-0.9534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,1,1,1,0.8858,-0.1428,-0.4,-0.9714,-0.8286,-0.6572,0.3142,0.4858,-0.8572,-1,-1,-0.7714,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,0.9808,0.6436,-0.7052,-0.706,-0.703,-0.676,-0.6236,-0.562,-0.4716,-0.4138,-0.4586,-0.2344,-0.6266,0.3058,0.001,0.3446,0.3352,0.5256,0.8596,0.9666,-0.6288,-0.497,-0.2574,-0.0778,-0.006,0.1498,0.1736,0.0778,0.0538,0.1378,-0.03,0.1018,0.2336,0.1616,0.1616,0.3174,0.4372,0.497,0.4372,0.509,0.6766,0.8204,0.509,0.7964,0.9282,1,0.952,0.8084,0.7006,0.6408,0.6288,0.1498,-0.3072,0.1174,-0.0056,0.0168,0.0392,0.2402,0.3296,0.4636,0.2738,0.0726,0.3744,0.5084,0.3408,0.162,0.2178,0.3854,1,0.9442,0.3072,0.7542,0.9106,0.81,0.5308,0.5196,0.6312,0.81,0.8324,0.676,0.5978,0.4414,0.1508,-0.3966,-0.0188,0.5754,0.566,0.4434,0.585,0.6698,0.8868,0.9716,0.5,0.3114,0.7358,0.868,0.632,0.4906,0.4906,0.6132,1,0.7548,0.3584,0.585,0.5378,0.5472,0.4812,0.6698,0.3774,0.2736,0.349,0.4056,0.5472,0.2264,-0.2076,-0.7452,-0.317,-1,-1,1,-0.6,-1,-1,-0.6,-1,-0.0684,0.315,0.1506,0.9452,0.8082,0.7808,0.8356,0.8082,0.7808,0.5068,0.7808,1,0.5068,0.9178,0.3424,0.7534,0.1506,0.4794,0.8356,0.315,0.3698,0.2602,0.3972,0.726,0.6164,0.3424,0.2876,0.1232,0.0958,0.2054,0.2876,-0.2054,'23'
-0.95,-0.45,-0.375,-0.05,0.25,0.575,0.4084,0.2584,0.3,0.2084,0.275,0.4666,0.6084,0.8416,1,0.9084,0.65,0.3584,0.2416,0.1,0.2416,0.375,0.5166,0.4,-0.1166,-0.0166,0.0416,-0.1416,-0.0416,-0.0584,0.2,0.4334,-0.9372,-0.7074,-0.1846,0.0592,0.2614,0.5332,0.561,0.5052,0.3658,0.3102,0.4634,0.575,0.7212,1,1,0.8118,0.5888,0.547,0.4216,0.317,0.3658,0.4774,0.568,0.575,0.324,0.3032,0.1708,0.1568,0.1708,0.5192,0.6724,0.6934,-0.9134,-0.66,-0.2866,-0.1134,0.2,0.3466,0.4066,0.4734,0.3866,0.2466,0.46,0.5266,0.72,1,1,0.54,0.4,0.3134,0.38,0.3134,0.0466,0.4266,0.4134,0.2334,0.14,0.1934,0.02,-0.1,0.0134,0.5934,0.5666,0.5866,-0.9604,-0.67,-0.2674,-0.0232,0.1948,0.4522,0.505,0.472,0.3532,0.208,0.5446,0.6832,0.8086,1,0.9736,0.5908,0.4192,0.2608,0.4324,0.3268,0.0958,0.2674,0.1816,0.1882,0.0826,0.0826,-0.0562,-0.1816,0.1156,0.4126,0.4324,0.5314,-0.9934,-0.7266,-0.2266,-0.1,0.18,0.5934,0.6066,0.4334,0.2734,0.26,0.5266,0.8066,0.8866,1,0.9,0.58,0.4866,0.44,0.4334,0.2134,0.1934,0.24,0.2734,0.2934,-0.02,-0.0866,-0.06,-0.12,0.34,0.4266,0.4466,0.3466,-0.9924,-0.6528,-0.3132,-0.1094,0.0792,0.5018,0.5246,0.3962,0.3434,0.366,0.366,0.6452,0.8038,1,0.751,0.5018,0.4038,0.3812,0.5472,0.351,0.2378,0.2528,0.2226,0.215,-0.1698,-0.1924,-0.185,-0.2,0.2452,0.3358,0.3584,0.2528,-1,-0.5534,-0.301,-0.2038,0.1748,0.3496,0.2428,-0.0194,0.2234,0.2718,0,0.903,1,0.7476,0.233,0.2622,0.233,0.1942,0.2622,0.0388,0.0098,0.0582,-0.2524,-0.233,-0.2622,-0.3398,-0.3592,-0.5048,-0.0194,0.3786,0.6894,0.5242,-0.9524,-0.381,-0.4286,0.1428,0.0476,0.5238,0.4762,0.2858,0.3334,0.238,0.2858,0.381,0.5714,0.8096,1,0.6666,0.762,0.0952,0.2858,0,0.0952,0.381,0.5238,0.0476,-0.5238,-0.1428,-0.0476,0.0476,0.0952,-0.0952,-0.0476,0.5238,-0.7368,-0.5264,-0.3684,-0.1578,0.5264,0.6842,0.2632,0.3158,0.421,0.2106,0.421,0.6316,0.6842,0.8422,0.8422,1,0.421,0.5264,0.3684,0.3684,0.421,0.3158,0.4736,0.579,0.0526,0.0526,0.1052,-0.1052,0,0.2106,0.2106,0.3158,-0.9354,-0.742,-0.2688,-0.2044,0.0322,0.613,0.6344,0.4194,0.2258,0.1828,0.5484,0.7634,0.828,1,0.871,0.613,0.4194,0.3118,0.4408,0.1182,0.1398,0.1828,0.2904,0.3118,-0.0322,-0.0968,-0.0108,-0.2044,0.3764,0.4194,0.5054,0.3548,-1,-1,-1,-1,-1,-1,-1,-1,-0.9008,-0.8702,-0.6106,0.1222,0.71,0.832,0.6184,0.71,0.7634,0.8244,0.8244,0.4122,-0.2672,-0.3206,-0.6642,-0.7938,-0.832,-0.6488,-0.7938,-0.7862,-0.7786,-0.8474,-0.8778,-0.855,-0.832,-1,-1,-1,-1,-1,-1,-1,-1,-0.964,-0.9632,-0.7024,-0.4562,0.3294,0.856,0.9572,0.8988,0.7204,0.801,0.8448,0.2392,-0.5394,-0.8104,-0.8988,-0.9512,-0.9296,-0.7754,-0.6862,-0.6158,-0.5326,-0.5644,-0.4494,-0.319,-0.4468,-1,-1,-1,-1,-1,-1,-1,-1,-0.9134,-0.9268,-0.6168,-0.26,-0.37,-0.27,-0.35,-0.355,-0.27,-0.31,-0.41,-0.395,-0.215,-0.435,-0.6668,-0.78,-0.82,-0.24,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7428,1,1,1,1,1,-0.6858,-1,-1,-0.7142,0.8286,1,1,1,1,-0.8,1,1,1,-0.7142,-0.9714,-0.9428,-0.9714,-0.9714,-0.8572,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5866,-0.6118,-0.62,-0.4246,-0.2898,0.8584,0.8396,1,-0.08,0.16,0.32,0.56,0.64,0.68,0.8,0.96,0.96,0.72,0.8,0.88,0.84,0.68,0.68,0.76,0.72,0.64,0.56,0.88,1,1,0.92,0.88,0.76,0.68,0.64,0.52,0.28,0.12,-0.16,-0.24,-0.5158,-0.0106,0.2422,0.3052,0.3894,0.5578,0.7264,1,0.9368,0.4316,0.4526,0.8526,0.6,0.3264,0.4316,0.7264,0.621,0.2842,0.2632,0.8316,0.9158,0.8316,0.7474,0.7052,0.6842,0.4316,0.4316,0.4736,-0.0526,-0.4106,-0.3684,-0.4526,-0.5652,-0.2174,0.1086,0.1956,0.2174,0.3478,0.6956,1,0.7392,0.2608,0.2608,0.5434,0.1956,0.174,0.326,0.5652,0.5434,0.0434,0.0434,0.3478,0.5,0.5652,0.4348,0.3478,0.4348,0.2608,0.0434,0.1522,-0.0218,-0.5652,-0.3914,-0.8696,-0.2538,-1,-1,1,-1,-1,-1,-0.8334,1,-0.7514,-0.6214,-0.3136,-0.2782,-0.1952,-0.2662,-0.0178,-0.2072,-0.1716,-0.2544,-0.2426,-0.3254,-0.1598,-0.1124,0.065,0.065,0.3254,0.3492,0.3372,0.503,0.4556,0.4912,0.6094,0.7634,0.9172,0.9054,0.9644,1,0.8816,0.8934,0.4912,0.3372,'24'
-0.7862,-0.4068,-0.0966,0.1172,0.3862,0.3656,0.4276,0.331,0.0896,0.1656,0.3034,0.3724,0.6414,0.869,1,0.6966,0.5724,0.2344,0.0276,0.0828,0.2482,0.531,0.669,0.5862,0.531,0.4276,0.2758,0.2414,0.2482,0.2344,0.2966,0.7034,-0.7072,-0.3644,-0.1714,0.1028,0.4454,0.3208,0.1838,0.2648,0.2212,0.2772,0.3084,0.352,0.6698,0.9004,1,0.5638,0.514,0.215,0.0342,-0.0032,0.215,0.2898,0.458,0.1962,0.1962,0.19,0.0654,0.1214,0.134,0.0592,0.1402,0.7446,-0.7152,-0.3356,-0.2338,0.1662,0.5594,0.4508,0.2814,0.4102,0.3628,0.3762,0.3762,0.4372,0.8306,0.878,1,0.6272,0.478,-0.0306,-0.0102,0.044,0.2814,0.4576,0.5932,0.3356,0.3628,0.1118,-0.0372,-0.0102,0.139,0.105,-0.0102,0.7356,-0.7352,-0.4006,-0.3868,0.101,0.5262,0.3728,0.352,0.4564,0.4006,0.4704,0.5192,0.554,0.9442,0.8954,1,0.575,0.5332,0.2126,0.0802,0.1358,0.324,0.2892,0.4494,0.108,0.101,-0.0244,-0.0872,-0.0384,0.0384,-0.0384,-0.0452,0.7422,-0.7994,-0.4326,-0.5018,-0.038,0.2456,0.0242,-0.038,0.3494,0.2526,0.4256,0.5086,0.7232,1,0.7924,0.8824,0.4672,0.3702,0.135,0.135,0.1696,0.1072,0.2526,0.2734,-0.2664,-0.211,-0.0866,-0.2734,-0.2388,-0.211,-0.301,0.1626,0.5502,-0.9696,-0.7868,-0.0254,0.2488,0.7056,0.4314,0.4518,-0.0356,-0.0964,0.0356,0.0254,0.7766,1,0.6954,0.5228,-0.0152,-0.5432,-0.4314,-0.2792,-0.1676,-0.1574,0.0862,-0.0254,-0.198,-0.3502,-0.5838,-0.472,-0.7664,-0.533,-0.6142,-0.0862,0.0152,-0.4838,-0.8388,0.4516,0.5484,1,0.7526,0.4302,0.4624,0.2688,-0.1076,0.3656,0.3978,0.656,0.4516,0.4838,0.0216,0.086,-0.0322,0.3764,0.4086,0.129,0.4946,0.6666,0.2044,-0.0646,0,0.0968,-0.6452,-0.5484,-0.3118,-0.3548,0.129,-0.2692,-0.1924,0.1924,0.3076,0.5,0.6154,0.5,0.5384,0.3076,0.2308,0.4616,0.5384,0.7308,0.8462,1,0.923,0.6538,0.5,0.3462,0.0384,0.5384,0.6154,0.7692,0.7692,0.577,0.6538,0.3462,0.2308,0.4616,0.423,0.3076,0.4616,-0.75,-0.5,-0.25,0,0.3,0.3,0.35,0.25,0.2,0.15,0.25,0.25,0.55,0.9,1,0.8,0.45,0.15,0.1,0.05,0.05,0.5,0.6,0.6,0.5,0.3,0.2,0.2,0.25,0.2,0.3,0.9,-0.775,-0.45,-0.2,0.2,0.425,0.175,0.2,0.125,0.175,0.15,0.25,0.85,1,0.725,0.7,0.025,-0.05,-0.325,-0.275,-0.075,-0.2,0.025,0.05,-0.375,-0.225,-0.4,-0.6,-0.8,-0.55,-0.4,-0.15,-0.05,-1,-1,-1,-1,-1,-1,-1,-1,-0.9074,-0.9074,-0.5516,0.7366,0.7508,0.9716,0.8292,0.936,0.7794,0.2954,-0.0106,-0.1174,-0.5018,-0.6298,-0.7224,-0.8362,-0.822,-0.815,-0.879,-0.8292,-0.8362,-0.6512,-0.6654,-0.8008,-0.822,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,-0.9486,-0.5242,0.6798,0.95,0.9766,0.8106,0.5992,0.5066,0.439,0.2672,-0.417,-0.8046,-0.8546,-0.8914,-0.8428,-0.7136,-0.4596,-0.4552,-0.4346,-0.2716,-0.3568,-0.2702,-0.2966,-0.2966,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.9668,-0.3768,-0.205,-0.07,-0.25,-0.305,-0.39,-0.344,-0.312,-0.288,-0.564,-0.696,-0.748,-0.8034,-0.8868,-0.6134,0.8032,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7428,1,1,1,0,-0.7714,-0.7714,-0.9714,-0.8858,-0.6572,1,1,1,-0.1142,-0.8286,0.8858,1,1,-0.5428,-0.9142,-0.9428,-1,-1,-0.9142,-0.7428,1,1,1,1,1,1,1,1,1,1,-0.7146,-0.7146,-0.778,-0.7698,-0.8552,-0.9286,-0.9968,-1,-1,-1,-0.6,-0.5294,-0.5638,0.5022,0.8414,0.9544,0.9794,1,-0.3,-0.35,0.1,0,0.25,0.05,0.6,0.7,0.65,0.5,0.8,0.65,0.8,0.75,0.5,0.75,1,0.95,-0.05,0.55,0.75,0.8,0.85,0.85,0.75,0.6,0.6,0.35,0.2,0.3,0.05,-0.2,-0.3878,-0.1428,-0.0408,0.1428,0.1836,0.0204,0.4694,0.6734,0.5714,0.2654,0.4898,0.7346,0.5918,0.5714,0.2858,0.4082,1,0.6326,0.2448,0.2448,0.7756,0.796,0.6734,0.7346,0.6734,0.5102,0.4898,0.2244,0.3674,0.3674,0.0408,-0.3062,-0.3708,-0.0338,0.3034,0.3034,0.2134,0.3258,0.4832,0.5956,0.5956,0.236,0.3258,0.7078,0.528,0.2584,0.3034,0.2808,1,0.8652,0.4382,0.3484,0.6404,0.663,0.5056,0.2584,0.5056,0.2584,0.0338,0.0338,0.1236,0.1686,0.0112,-0.2808,0.9354,-1,-1,1,-1,-1,-1,-0.8334,1,-0.7222,-0.5834,-0.5694,-0.3888,-0.4722,-0.7638,-0.4028,-0.4722,-0.5278,-0.4862,-0.3888,-0.4166,-0.375,-0.3334,-0.4722,-0.0416,0.2778,0.1666,0.2638,0.5972,0.5556,0.6112,0.5972,0.7362,0.6388,0.8612,0.7638,0.9722,0.9166,1,0.6944,0.1528,'24'
-0.5,-0.1182,0.2772,0.2864,0.5636,0.991,1,0.3272,0.1636,0.1728,-0.1636,-0.2636,-0.4,-0.3818,-0.3,-0.4682,-0.1364,-0.1228,-0.35,0.0318,0.05,-0.0864,-0.341,-0.1772,-0.15,-0.1636,0.0546,0.041,-0.109,-0.0364,-0.2954,-0.3136,-0.8142,-0.4476,-0.2762,0.181,0.5666,0.6666,0.7476,1,0.8524,0.4142,-0.1858,-0.2666,-0.281,-0.4666,-0.5048,-0.638,-0.6334,-0.5666,-0.2476,0.1714,0.2714,-0.4096,-0.5714,-0.5048,-0.4904,-0.462,-0.3666,-0.2286,-0.1572,-0.162,-0.3286,-0.4428,-0.7742,-0.4638,-0.2874,-0.0582,0.291,0.2522,0.4674,1,0.9154,0.8342,0.5202,0.1746,0.037,-0.171,-0.2098,-0.2486,-0.3722,-0.4498,-0.0618,-0.037,0.1604,-0.104,-0.097,-0.3616,-0.3862,-0.3228,-0.291,0.09,0.291,0.1394,0.1076,-0.485,-0.7816,-0.4924,-0.311,-0.1564,0.1564,0.3848,0.4488,0.6236,0.8554,1,0.7714,0.6908,0.405,0.2068,0.1194,-0.005,-0.1496,-0.3378,0.0924,0.0554,0.2202,0.1194,0.116,-0.1294,-0.247,-0.1596,-0.2168,-0.1564,-0.0184,0.2268,0.2268,-0.2806,-0.8156,-0.49,-0.2044,0.0524,0.331,0.6492,0.6746,0.519,0.6746,0.754,0.7432,0.8878,1,0.8084,0.754,0.4612,0.2116,0.2224,0.2514,0.519,0.584,0.2442,0.1464,0.1718,-0.056,-0.1104,-0.103,0.009,0.0018,0.2008,0.1972,0.0416,-0.7098,-0.3438,-0.0224,0.2858,0.567,0.4822,0.5492,0.3884,0.4286,0.5714,0.4062,0.5804,0.8036,0.7946,0.8124,1,0.7768,0.7902,0.5492,0.4018,0.3438,0.808,0.7902,0.4062,0.2634,0.2634,0.116,0.0224,0.1294,0.0624,0.366,0.5714,-0.3004,0.465,0.0452,0.0042,0.4732,0.1934,0.1688,0.1688,0.1358,0.0946,0.1276,-0.0042,0.432,0.2098,0.1194,0.4074,0.5062,0.9094,0.2592,0.2922,0.539,0.8436,1,1,0.712,0.1194,0.1194,-0.251,-0.1604,-0.0946,-0.1276,0.572,-0.4054,-0.027,0.2972,0.3514,0.7298,1,0.8378,-0.081,-0.1352,-0.1892,-0.081,-0.081,-0.2432,-0.081,-0.2432,-0.2972,-0.081,-0.027,-0.2432,-0.081,-0.081,-0.081,-0.2972,-0.3514,-0.5676,-0.4594,0.081,0.1352,-0.1352,0.081,-0.027,-0.081,-0.5,0.2,0.5,0.4,0.6,1,1,0.55,0.3,0.3,0.05,-0.05,0,0,0,0,0.25,0.2,0.05,0.2,0.05,0,0,0.35,0.35,0.1,0.3,0.35,0.05,-0.05,-0.25,-0.05,-0.8666,-0.5334,-0.2888,0,0.2888,0.5778,0.6,0.4666,0.6666,0.7334,0.7556,0.8666,1,0.8,0.5334,0.3334,0.1334,0.1556,0.2,0.4222,0.4888,0.1112,0,0.1112,-0.1778,-0.2,-0.1556,-0.0666,-0.0222,0.3112,0.1778,-0.2,-1,-1,-1,-1,-1,-1,-1,-0.8524,-0.727,-0.011,-0.3654,0.0922,0.6014,0.594,0.513,0.535,0.4982,0.749,0.8154,0.358,-0.011,-0.2842,-0.7122,-0.476,-0.7344,-0.8008,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9578,-0.937,-0.8384,-0.8688,-0.6768,-0.4284,-0.1844,0.0348,0.3938,0.6138,0.8828,0.5228,-0.025,-0.5326,-0.8264,-0.9122,-0.8904,-0.9176,-0.9414,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.8368,-0.91,-0.91,-0.7076,-0.695,-0.6026,-0.5926,-0.52,-0.4426,-0.3776,-0.33,-0.2526,-0.445,-0.6068,-0.61,-0.8768,-0.7,-0.8734,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,-0.9428,-0.9142,-0.2572,-0.2286,-0.4,-0.4286,-0.6286,-0.8,-0.7142,-0.2858,-0.2858,-0.3714,1,1,-0.6858,-0.6858,-0.9428,-0.8286,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.1454,0.1676,0.2,0.19,0.1646,0.101,0.0144,-0.0772,-0.3052,-0.6654,-0.5866,-0.0706,-0.8676,-0.783,-0.7126,-0.5846,-0.4794,-1,0.209,0.209,0.4238,0.6498,0.469,0.4802,0.548,0.582,0.921,0.887,1,0.6724,1,0.6272,0.3108,0.0508,0.5706,0.7966,0.4124,0.6724,0.4124,0.4124,0.3898,0.7062,0.695,0.6836,0.4238,0.356,0.3108,0.2656,0.096,-0.6272,-0.0118,-0.0352,0.5058,1,0.7412,0.353,0.4942,0.553,0.6352,0.1764,0.6118,0.3294,0.8588,0.1764,0.3058,0.3058,0.1412,0.2824,-0.0588,0.4,0.2588,-0.0118,-0.1176,0.0588,0.1058,0.1176,0.0588,0.153,0.1412,0.0942,-0.0118,-0.6236,0.8144,0.6908,0.5154,1,0.6392,0.3196,0.5568,0.3608,0.835,0.5052,0.732,0.3608,0.732,0.567,0.2062,0,0.0618,0.3092,0.4536,0.536,0.1752,0.0722,0.268,0.402,0.0824,0.2886,0.2268,0.2784,0.0206,-0.1238,-0.2474,-0.5876,-0.9914,1,-1,-1,-1,-1,-1,-1,1,-0.2654,0.1632,0.204,0.0816,0.204,0.1836,0.3062,0.551,0.4286,0.347,0.6734,0.8776,0.8164,0.4898,0.1632,0.7142,0.8572,1,0.347,0.4286,0.7756,0.7142,0.4286,0.3062,0.2654,-0.1224,0.1836,0.1224,0.1632,0.0612,-0.2448,-0.7346,'25'
-0.1818,0.7768,0.6364,0.719,0.091,0.8926,1,0.4628,0.1818,0,-0.6446,-0.4462,-0.2562,-0.1736,-0.0744,-0.4132,-0.0992,-0.405,-0.2396,-0.4546,-0.1736,-0.1158,-0.372,-0.2314,-0.1074,-0.405,-0.3058,-0.4462,-0.6116,-0.7108,-0.1818,-0.091,-0.5722,-0.1202,0.3028,0.3654,0.625,0.9182,1,0.7884,0.6298,0.2116,-0.274,-0.3222,-0.3318,-0.4856,-0.4326,-0.5192,-0.5624,-0.6634,-0.5528,-0.5962,-0.2884,0.2548,0.1058,-0.6586,-0.5818,-0.601,-0.5962,-0.101,0.0914,0.5336,0.4808,-0.0048,-0.6622,-0.3134,-0.0732,0.0132,0.4034,0.4146,0.5272,1,0.94,0.606,0.302,0.1106,-0.0694,-0.2532,-0.5422,-0.4784,-0.561,-0.681,-0.756,-0.5572,-0.441,-0.0244,0.0356,-0.3958,-0.5534,-0.5572,-0.3734,-0.347,-0.0132,0.3772,0.4522,-0.0882,-0.5688,-0.1666,-0.337,-0.2682,0,0.4602,0.6086,0.826,0.7972,1,0.826,0.5978,0.1196,-0.0616,-0.2102,-0.471,-0.5072,-0.5144,-0.6812,-0.7102,-0.5218,-0.4964,-0.4022,-0.4384,-0.4384,-0.7066,-0.6196,-0.4928,-0.0942,0.0398,0.2644,0.0798,-0.593,-0.213,-0.2476,-0.2246,-0.0134,0.7504,0.812,0.5202,0.5738,0.716,0.689,0.8772,1,0.762,0.5432,0.2898,0.0556,-0.1286,-0.0556,-0.1862,-0.121,0.5048,0.4318,0.0326,-0.0634,-0.0786,-0.4204,-0.4972,-0.1632,0.167,0.2514,0.263,-0.5342,-0.0776,0.2,0.247,0.2564,0.9482,1,0.5764,0.5624,0.6894,0.1764,0.327,0.4588,0.7694,0.7318,0.887,0.6564,0.3742,0.4682,0.2706,0.4824,0.9858,0.873,0.807,0.3788,0.2942,0.1342,-0.0588,-0.1248,-0.1952,0.7976,0.9294,-0.0306,0.9826,0.4672,0.083,0.6682,0.4148,0.5284,0.2228,0.0218,-0.214,-0.31,-0.1004,0.0918,0.1092,0.2314,0.1266,0.4498,0.8078,0.7904,0.3362,0.5808,0.7468,1,0.904,0.5546,0.0568,-0.1354,-0.179,-0.1004,-0.1704,-0.0218,0.6768,0.28,1,0.76,0.52,0.6,0.84,0.52,0.36,0.12,-0.28,-0.44,-0.44,-0.28,-0.04,0.6,0.6,0.36,-0.28,0.2,-0.04,0.2,0.52,0.36,0.6,0.76,0.2,0.44,0.12,-0.04,-0.36,-0.12,0.2,0.5882,1,0.8236,0.7058,0.2352,0.8236,1,0.4118,0.4118,0.4118,0.1764,0.353,0.4118,0.647,0.7648,0.4118,0.5882,0.4706,0.5294,0.2352,0.353,0.5294,0.2942,-0.1764,0.353,0.4118,0.4118,0.4706,0.2942,-0.1176,0.4706,0.4118,-0.6164,-0.2328,-0.3698,-0.315,-0.0684,0.589,0.6712,0.5616,0.4246,0.6986,0.7534,0.8082,1,0.726,0.0958,0.178,0.0136,-0.2876,-0.2054,-0.3698,-0.3972,0.3424,0.315,-0.178,-0.0684,-0.0684,-0.589,-0.6986,-0.3698,0.2328,0.1506,-0.2054,-1,-1,-1,-1,-1,-1,-1,-1,-0.8684,-0.906,-0.674,-0.1034,0.2978,0.5924,0.9122,0.2664,0.1222,0.1098,0.1974,0.141,-0.0722,-0.2414,-0.8056,-0.7868,-0.8432,-0.8308,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.925,-0.9064,-0.8336,-0.5984,-0.3216,0.2674,0.9314,0.64,0.665,0.6108,0.8002,0.434,-0.2486,-0.6378,-0.8376,-0.8648,-0.898,-0.898,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9328,-0.94,-0.92,-0.86,-0.8,-0.4826,-0.57,-0.569,-0.5178,-0.4956,-0.4756,-0.4156,-0.6068,-0.78,-0.6734,-0.7734,-0.8868,-0.7068,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2,-0.9142,-0.5142,-0.6,0.3428,0.4286,-0.6286,-0.5714,-0.8286,-0.0858,-0.2286,-0.2572,0.9714,-0.1428,-0.5714,-0.6858,-0.7428,-0.8286,-1,-1,-1,-1,-1,-1,-1,0.7086,0.7194,0.735,0.7784,0.8322,0.9358,1,1,1,1,-0.4448,-0.3968,-0.3812,-0.3508,-0.354,-0.3444,-0.3188,-0.2824,-0.4152,-0.5692,-0.6,0,-0.8294,-0.6482,-0.617,-0.5484,-0.4734,-1,0.109,0.091,0.4546,0.7454,0.6546,0.6364,0.6546,0.7454,0.9818,0.6364,0.7818,0.6546,0.9454,0.7818,0.6728,0.509,0.509,0.509,0.091,0.2728,0.2364,0.4182,0.3454,0.709,0.4546,0.3272,0.1454,0.3272,0.6728,0.109,0.2546,-0.4728,0.0984,-0.1968,0.5082,0.5738,0.0656,0.4918,0.5574,0.918,0.754,0.4754,0.8032,0.6394,0.9016,1,0.0984,0.459,0.295,0.3934,0.4754,0.2622,0.0984,0.5574,0.3934,0.5574,0.6722,0.0492,0.0656,0.0656,0.0492,0.1476,-0.246,-0.459,0.2558,0.4534,0.721,0.814,0.686,0.3954,0.7094,0.7094,0.8024,0.5582,0.8488,0.5582,0.9418,1,0.6396,0.7558,0.6744,0.4418,0.3604,0.5116,0.5232,0.2558,0.4534,0.221,0.407,0.4186,0.314,0.4652,0.2906,0.0348,0.3488,-0.2558,-0.9834,1,-1,-1,-1,-1,-1,-1,-1,-0.3932,0.3708,0.3258,0.4158,0.236,0.1012,0.1686,0.4158,0.4382,0.618,0.5056,0.663,0.5056,0.3484,0.1012,0.618,0.8876,1,0.2134,0.3258,0.3484,0.4832,0.2584,0.236,0.1012,-0.0112,0.0338,0.236,0.5506,0.4832,0.0338,-0.7752,'25'
-0.3798,0.2544,-0.0104,0.1358,-0.2264,-0.338,-0.1498,-0.345,-0.1638,-0.0662,-0.094,0.0452,0.1916,0.3032,0.5122,0.5122,1,0.763,0.4844,0.5888,0.7212,0.7074,0.2614,0.0314,-0.0174,-0.1498,-0.2126,-0.2614,-0.3032,-0.2544,0.1358,0.1986,-0.375,0.1704,-0.0114,-0.034,-0.0852,-0.108,-0.1762,-0.233,-0.125,-0.1364,-0.142,-0.0568,-0.1306,0.0568,-0.0228,-0.0056,0.3466,0.591,0.9204,0.875,0.875,1,0.966,0.5568,0.233,0.2556,0.1704,0.1364,0.108,0.216,0.3124,0.4204,-0.4726,0.0026,-0.1906,-0.5248,-0.1906,-0.2638,-0.342,-0.363,-0.436,-0.363,-0.41,-0.1906,-0.389,-0.3264,-0.3368,-0.3994,-0.2114,0.1332,0.2584,0.8798,0.8328,0.6606,0.9322,1,0.5822,0.4934,0.2742,0.1018,0.1644,0.295,0.2114,0.2428,-0.4928,-0.0204,-0.1196,-0.0262,-0.207,-0.347,-0.3412,-0.3586,-0.3878,-0.446,-0.4286,-0.3352,-0.3936,-0.481,-0.446,-0.446,-0.3994,-0.3586,0.3062,0.5744,0.8426,0.8076,0.825,0.8484,1,0.6502,0.5626,0.3352,0.2186,0.2828,0.3412,0.2828,-0.4906,-0.0378,-0.2452,-0.195,-0.4528,-0.3836,-0.3396,-0.2452,-0.3522,-0.5598,-0.4276,-0.5598,-0.5284,-0.5534,-0.5534,-0.6856,-0.6666,-0.5534,0.0628,0.6666,0.9812,1,0.893,0.8428,0.7736,0.8302,0.4276,0.4276,0.2076,0.1572,0.2328,0.2012,-0.0682,0.4924,0.0454,-0.1136,-0.6364,-0.4924,-0.3636,-0.0682,-0.2804,-0.3258,-0.9546,-0.7196,-0.606,-0.8182,-0.7878,-0.5834,-0.5454,-0.5682,-0.5378,0.1364,0.4622,1,0.856,0.7954,0.606,0.4242,-0.053,-0.0152,-0.2804,-0.4166,-0.2954,-0.409,-0.5244,-0.0918,0.4594,0.5784,-0.3622,-0.4162,-0.1244,0.027,-0.3082,-0.427,-0.9352,-0.1352,-0.0162,-0.1028,0.319,0.0378,-0.027,0.0702,-0.027,0.1784,0.7514,1,0.7946,0.5028,0.7298,0.5352,-0.0162,0.0594,0.1892,0.4378,0.6216,0.2864,-0.4074,0.1112,-0.037,-0.1112,0.037,-0.037,-0.2592,-0.7778,-0.4814,-0.037,-0.1852,-0.037,0.4074,0.3334,0.926,1,1,0.1112,0.3334,0.7038,1,0.8518,-0.3334,-0.1852,0.037,-0.4814,-0.3334,-0.2592,-0.2592,-0.1852,0.1112,0.3334,-0.4,0.2,0.1334,0.0666,-0.4666,-0.6666,-0.1334,-0.0666,-0.1334,0,-0.0666,0.1334,0.2,0.4,0.5334,0.8,1,0.8,0.4,0.5334,0.6,0.6666,0.4,0.0666,0,-0.2,-0.4,-0.4666,-0.3334,-0.4,-0.2,0.2,-0.079,0.3158,0.1052,0.1052,-0.2106,-0.2632,-0.1052,0.1316,0,-0.0526,-0.6842,-0.6316,-0.2894,-0.421,-0.6842,-0.579,-0.079,-0.1316,-0.3158,0.3158,0.8948,1,0.7894,0.8684,0.6578,0.4474,-0.1316,0.1578,0.079,-0.2632,-0.0526,0,-0.5912,-0.5466,-0.4312,-0.4134,-0.4844,-0.4844,-0.5734,-0.6,-0.5912,-0.6,-0.2534,0.2444,0.8934,0.7334,0.4044,0.4044,0.2356,0.2266,0.1288,0.4844,0.0666,-0.6534,-0.7512,-0.8134,-0.84,-1,-1,-1,-1,-1,-1,-1,-1,-0.6844,-0.6276,-0.5,-0.344,0.0248,-0.1064,0.1986,0.1206,-0.0248,-0.071,0.2908,0.078,0.4964,0.844,0.7022,0.7198,0.6524,0.4042,0.1418,-0.039,-0.422,-0.7376,-0.7766,-0.8262,-0.8156,-1,-1,-1,-1,-1,-1,-1,-1,-0.7468,-0.5934,-0.4934,-0.48,0.1532,0.6632,0.6766,1,0.97,0.8966,0.5632,-0.1768,-0.1568,0.03,-0.2268,-0.0368,0.1332,0.08,-0.3086,-0.58,-0.6572,-0.703,-0.8268,-0.8934,-0.98,-1,-1,-1,-1,-1,-1,-1,-1,-0.2858,-0.5428,-0.8858,-0.0286,0.8572,-0.2,-0.7142,-0.9428,-0.8858,-0.0572,0.6286,0.6572,-0.1428,-0.1428,-0.6,-0.7714,-0.8572,-0.8,-0.2,0.1714,0.1142,-0.5142,-0.8572,-0.9142,-0.9714,-1,-1,-1,-1,-1,-1,-1,-1,0.399,0.399,0.4124,0.3012,0.325,0.3436,0.3362,0.3558,0.3926,0.3058,-0.9302,-0.9302,-0.8938,-0.8078,-0.7454,-0.603,-0.4304,-0.1954,0.1454,0.3406,-0.6266,-0.2824,0.4114,0.1028,0.0674,0.3404,0.5036,-0.9334,-0.0438,0.1548,-0.0134,0.1414,0.1482,0.2828,1,0.7038,-0.1718,0.0034,0.3906,0.6836,0.2592,-0.0472,-0.101,-0.0808,0.596,0.8216,-0.0336,0,0.2154,0.6734,0.9462,0.505,0.1144,0.3838,0.643,1,0.9428,0.4478,0.1078,-0.3704,-0.4412,-0.4184,-0.7624,-0.5676,-0.6638,-0.608,-0.3528,-0.3174,-0.4336,-0.5904,-0.3754,-0.383,-0.431,-0.4664,-0.6284,-0.4084,-0.2136,-0.3022,-0.249,-0.0796,0.1934,0.3678,0.3426,0.3376,0.2692,0.7472,0.8482,0.9394,0.9342,1,0.77,0.1428,-0.3488,-0.3134,-0.5686,-0.2998,-0.3406,-0.365,0.0094,0.0936,-0.3324,-0.4572,-0.175,-0.3406,-0.2294,-0.3242,-0.289,-0.0394,0.1534,0.1506,0.1778,0.4518,0.5712,0.9104,0.9186,0.4546,0.4654,0.8018,1,0.9214,0.8724,0.8942,0.8996,0.1858,-0.7944,-1,1,-1,1,-1,-1,0.9666,-1,-0.1884,0.5362,0.3914,1,0.826,0.5072,0.0434,0.1304,0.7102,0.5072,0.4782,0.6522,0.3334,0.5362,0.5942,0.5652,0.5072,0.7682,0.855,0.5942,0.884,0.3334,0.0434,0.1014,0.4202,0.6232,0.7102,0.5362,-0.1304,0.1884,0.1594,-0.5652,'26'
-0.1848,0.5544,0.4022,0.1196,-0.4456,-0.076,-0.087,-0.2282,-0.2392,0.2392,0.1414,0.4674,0.5434,0.826,0.6522,1,0.3914,0.3804,0.4566,0.587,0.9674,0.5434,0.1086,-0.174,0.1196,0.2718,-0.0108,-0.0544,-0.087,-0.0434,0,0.5544,-0.519,0.1066,-0.1134,-0.086,-0.347,-0.3608,-0.3746,-0.4846,-0.5052,-0.5052,-0.4296,0.031,-0.0652,-0.0516,-0.0378,0.134,0.189,0.3884,0.6494,0.7458,1,0.6564,0.0172,-0.134,-0.2028,-0.457,-0.5808,-0.512,-0.3676,-0.3746,-0.3746,-0.4708,-0.3446,0.2636,0.0676,-0.0472,-0.1554,-0.1824,-0.2636,-0.4256,-0.4392,-0.4054,-0.4054,-0.1082,-0.3852,-0.3108,-0.2094,-0.1756,-0.277,0.3446,0.6554,0.9054,1,0.919,0.8784,0.5608,0.3176,0.3108,-0.0406,-0.1014,0.081,-0.054,-0.0406,-0.0136,-0.3224,0.3062,0.1428,0.2816,-0.1184,-0.2816,-0.1674,-0.298,-0.3142,-0.4858,-0.3632,-0.1918,-0.6082,-0.5266,-0.151,-0.3224,-0.3878,0.2816,0.4938,0.7796,0.7796,0.7552,0.8204,0.8694,1,0.7796,0.649,0.3552,0.2572,0.2734,0.2326,0.3632,-0.4708,0.0194,-0.1128,-0.1362,-0.354,-0.5642,-0.5252,-0.8444,-0.6342,-0.7042,-0.3852,-0.4474,-0.6576,-0.7198,-0.4942,-0.3074,-0.4164,-0.2218,0.2918,0.7198,0.9688,0.572,0.5176,0.7042,0.9844,1,0.7354,0.6186,0.5642,0.4008,0.3852,0.4552,-0.4646,0.1212,0.5252,0.5556,-0.707,-0.6162,-0.394,-0.5556,-0.4344,-0.6364,-0.808,-0.495,-0.6566,-0.7374,-0.3232,-0.2728,-0.3536,-0.1314,0.2526,0.8484,0.7576,0.7272,0.495,0.596,1,0.7576,0.8384,0.4646,0.293,0.4444,0.4444,0.2626,-0.1472,0.69,0.1628,-0.3334,-0.4574,-0.2404,0.0852,0.2558,-0.3024,0.0852,0.0542,-0.3798,-0.3954,-0.3178,0.4108,0.2094,-0.7054,-0.0542,0.0078,0.0698,0.5658,0.8914,-0.1008,0.5814,0.7984,1,0.969,0.5814,0.3798,0.4418,0.5194,0.8914,-0.0322,0.2258,0.2904,-0.3548,-0.2904,-0.0322,-0.0968,-0.0322,-0.1612,0.0322,0.0322,0.2258,0.1612,0.4838,0.0968,0.4838,-0.0322,0.1612,0.0322,0.0322,0.4194,0.2904,0.3548,0.1612,0.0968,0.1612,-0.0322,-0.2258,0.0968,0.2258,0.3548,1,-0.1538,0.6154,0.3076,0.3846,0,0.1538,-0.077,-0.3846,0,0.3846,0.3846,0.2308,0.3846,0.6924,0.4616,1,0.8462,0.077,0.1538,0.3076,0.7692,0.3846,0.2308,0.3076,0.5384,0.4616,0.3846,0.4616,0.2308,0.2308,-0.4616,0.6924,-0.5358,-0.0358,0.5,0.5714,-0.3928,-0.2142,-0.1786,-0.7142,-0.6786,-0.9642,-0.5358,-0.7142,-0.5714,-0.4286,-0.3214,-0.0714,-0.2142,-0.0358,0.2858,0.8572,0.8572,0.75,0.3928,0.5,1,0.8214,0.6428,0.4286,0.3928,0.5,0.5358,0.4642,-1,-1,-0.8324,-0.8212,-0.8436,-0.7878,-0.7654,-0.7654,-0.6648,-0.553,-0.5418,0.1174,0.352,0.676,0.8436,0.8882,0.5978,0.4748,0.2068,0.419,-0.028,-0.296,-0.6648,-0.7094,-0.7094,-0.6984,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.809,-0.7738,-0.5226,0.1658,0.3418,0.1306,0.814,0.3568,0.4874,0.397,0.196,0.4974,0.613,0.4422,0.407,0.5276,0.387,0.3718,-0.0552,-0.402,-0.613,-0.6734,-0.7136,-0.7688,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.9,-0.2,1,1,0.9832,0.89,0.3266,1,0,-0.436,-0.372,-0.4434,-0.4668,-0.43,-0.1234,0.06,-0.01,-0.2868,-0.58,-0.5668,-0.88,-0.8834,-0.85,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6858,0.4572,1,1,-0.2286,-0.8572,-0.8858,-0.7714,-0.5142,1,1,-0.3428,-0.6858,-0.6858,-0.8858,-0.8858,-0.8572,-0.1142,0.2572,-0.4858,-0.5714,-0.6858,-0.6572,-0.9142,-1,-1,-1,-1,-1,-1,-1,0.0522,0.0928,0.0928,0.1732,0.1924,0.158,0.1382,0.1794,0.1782,0.1346,-0.6068,-0.7014,-0.7014,-0.706,-0.717,-0.759,-0.7548,-0.5634,-0.2444,0.203,-0.6266,-0.3764,0.7036,0.9396,0.0754,0.1658,0.3116,-0.6416,-0.5976,-0.7494,-0.3018,-0.2484,-0.4168,-0.3142,-0.306,-0.4496,-0.5482,-0.306,-0.1294,-0.195,-0.2402,-0.076,-0.4456,-0.3142,-0.039,0.039,0.2936,0.421,0.7782,0.6674,0.7248,0.8644,0.922,1,0.9178,0.5524,0.6468,0.5236,0.54,0.08,-0.8402,-0.826,-0.6484,-0.46,-0.4742,-0.5418,-0.5204,-0.4316,-0.6448,-0.5986,-0.4174,-0.5204,-0.3996,-0.2896,-0.492,-0.2292,-0.1012,0.1546,0.1368,0.6412,0.7088,0.794,0.7442,0.6518,0.769,0.858,1,0.6874,0.8686,0.7976,0.6554,0.389,-0.844,-0.8688,-0.7446,-0.6206,-0.6418,-0.6276,-0.5674,-0.3404,-0.5142,-0.6064,-0.3546,-0.4326,-0.4468,-0.422,-0.4148,-0.1666,-0.039,-0.0602,0.2056,0.6774,0.7164,1,0.656,0.3262,0.5674,0.5284,0.5532,0.5532,0.5958,0.6312,0.5532,0.071,0.0654,-1,1,-1,-1,-1,-1,0.4,-1,-0.2076,0.3018,0.2076,0.283,0.3208,0.2642,0.3208,0.2264,-0.0566,0.1132,0.4716,0.4528,0.8114,0.585,0.4716,0.4528,0.7548,1,0.434,0.566,0.7924,0.8868,0.7736,0.9434,0.2642,0.3962,0.9056,0.7548,0.6416,0.4528,0.0754,-0.1886,'26'
-0.154,0.42,0.3124,0.2914,0.8924,1,0.6442,0.5486,0.0194,-0.0792,-0.2676,-0.2556,-0.163,-0.0254,-0.0014,0.0104,0.118,0.13,0.414,0.7608,0.8744,0.5964,0.4588,0.429,0.4648,0.5904,0.6174,0.5516,0.3274,0.154,-0.0074,0.0642,-0.148,0.361,0.2218,0.284,0.9526,1,0.6686,0.5888,0.2012,0.0118,0.0384,0.077,0.1184,0.1242,0.0562,0.1628,0.0858,0.2604,0.5384,0.6184,0.8224,0.7574,0.5236,0.426,0.5236,0.645,0.6776,0.429,0.3964,0.216,0.1184,0,-0.3016,0.1306,0.1356,0.2764,0.8292,0.8492,0.2964,0.2262,0.2362,0.0552,0.0176,0.1056,0.1056,0.201,0.1206,0.319,0.3768,0.4674,0.6508,0.6332,1,0.892,0.6356,0.6458,0.716,0.8392,0.8242,0.6784,0.5704,0.4222,0.191,0.2386,-0.318,0.0916,0.2774,0.3918,0.7404,0.7252,0.2162,0.0866,0.112,-0.0204,-0.0026,0.0408,-0.0432,0.112,0.1934,0.252,0.3562,0.3282,0.5624,0.888,1,0.8066,0.7786,0.743,0.7176,0.86,0.911,0.9414,0.631,0.5674,0.4732,0.3562,-0.2236,0.234,0.5038,0.6632,0.6016,0.6556,0.2802,0.252,0.0488,-0.0746,-0.0282,-0.0078,0.0232,0.0848,0.0976,0.1876,0.257,0.3214,0.509,0.7018,0.9178,0.9718,0.9768,0.8124,0.8304,0.9074,0.9538,1,0.8432,0.7172,0.5938,0.4524,-0.2698,0.4758,0.5012,0.7838,0.776,0.3486,0.3716,0.023,0.023,-0.1146,-0.0788,-0.0788,0.023,0.0152,0.0382,0.0534,0.1094,0.1552,0.2646,0.4656,0.6438,0.8372,1,0.9364,0.804,0.766,0.832,0.8422,0.7786,0.6132,0.4504,0.3716,-0.59,0.8372,1,0.5368,0.4334,0.3114,0.18,0.1674,-0.4242,-0.3928,-0.5336,-0.3302,-0.3584,-0.255,-0.399,-0.2832,-0.255,-0.3146,-0.3522,-0.421,-0.0766,0.1424,0.64,0.784,0.6244,0.543,0.4898,0.637,0.5242,0.4804,0.3334,0.0234,0.0164,0.5082,0.4754,0.4098,0.5738,0.9016,0.8032,0.5082,0.246,0.246,0.1804,0.2132,0.2132,0.246,0.3114,0.3442,0.5738,0.541,0.836,1,0.9672,0.6394,0.6066,0.6722,0.6722,0.9016,0.8688,0.705,0.705,0.5738,0.541,0.4426,-0.132,0.3962,0.283,0.283,0.8868,1,0.7736,0.4716,0.2452,0.2452,-0.132,0.0566,0.2076,0.1698,0.3208,0.132,0.2452,0.0944,0.3584,0.849,0.8868,0.6604,0.132,0.283,0.3584,0.5094,0.434,0.434,0.3208,0.3584,0.132,-0.3584,-0.2392,0.2392,0.0652,0.326,0.9566,1,0.5652,0.4348,0.3478,0.174,0.1086,0.1086,0.174,0.3044,0.2392,0.413,0.326,0.4348,0.6522,0.8044,0.913,0.8914,0.7174,0.6304,0.674,0.7826,0.8696,0.5434,0.3914,0.413,0.2392,0.1304,-1,-1,-1,-1,-1,-1,-1,-0.972,-0.9698,-0.6998,-0.1916,0.1554,0.0816,0.254,0.735,0.679,0.6602,0.5158,0.627,0.9502,0.5388,0.1438,-0.838,-0.867,-0.945,-0.948,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9778,-0.9804,-0.5666,-0.2724,0.0134,-0.1874,-0.016,0.7292,0.953,0.9344,0.5952,0.4924,0.5926,-0.0212,-0.4224,-0.8896,-0.9028,-0.9416,-0.9552,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8268,-0.9034,-0.2234,-0.4668,-0.67,-0.686,-0.704,-0.634,-0.574,-0.504,-0.7282,-0.632,-0.612,-0.8656,-0.9328,-0.55,-0.43,-0.3434,-0.5834,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,0.6858,-0.5142,-0.8572,-0.3428,-0.2,-0.8572,-0.9428,-0.9142,-0.9428,-0.4572,0.6572,0.9428,-0.1714,-0.6,-0.6,-0.9142,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.8778,0.5236,0.5396,0.5442,0.55,0.5816,0.5058,0.5168,0.5546,0.6644,0.8138,-0.6666,0.2,-0.2748,0.027,0.2204,-0.0526,-0.2766,1,-0.3678,0.1398,0.513,0.4404,-0.0778,-0.171,0.0466,0.316,0.4922,0.855,0.8756,0.5544,0.8032,1,0.8652,0.4612,0.4716,0.772,0.7616,0.5544,0.171,0.4508,0.6788,0.4196,0.3472,0.43,0.1502,0.0052,-0.2332,-0.0362,-0.3782,-0.8032,-0.0782,0.2,0.626,0.6086,0.2174,0.0696,0.2,0.174,0.3914,0.8782,1,0.5826,0.5914,0.8174,0.7652,0.2956,0.5218,0.487,0.4348,0.2086,0.1566,0.4348,0.5304,0.2,0.2696,0.287,0.2174,0.2174,0.087,0.1652,0.0174,-0.4086,0.3096,0.4946,0.8078,0.7864,0.4164,0.1316,0.1246,0.2314,0.3666,0.6726,1,0.637,0.7296,0.8576,0.6512,0.4662,0.452,0.5088,0.4448,0.3024,-0.0178,0.1744,0.2598,0.032,-0.1316,-0.0534,-0.1246,-0.1672,-0.274,-0.0604,-0.153,-0.694,-0.0266,-1,-1,1,-0.8,-1,-1,-0.5666,-1,-0.2328,0.1096,0.1918,0.2876,0.178,0.0822,0.1232,0.2466,0.2328,0.3014,0.3972,1,0.9316,0.7398,0.7808,0.5754,0.3288,0.3562,0.4246,0.3972,0.2054,0.041,0.041,0.1506,0.2602,-0.0136,0.178,0.2328,0.274,0.2466,-0.0822,-0.2876,'1'
-0.6024,0.1132,0.1398,0.4216,0.4796,0.5156,0.5036,0.2338,0.2386,0.0338,0.0796,0.118,0.1422,0.159,0.224,0.318,0.4796,0.576,0.8506,0.9518,0.8868,0.7398,0.718,0.7278,0.9494,1,0.812,0.812,0.5374,0.5422,0.4674,0.5084,-0.2892,0.2114,0.3128,0.5774,0.5962,0.7662,0.549,0.4852,0.1806,0.2114,0.1996,0.209,0.294,0.2514,0.3742,0.3648,0.5538,0.5914,0.7874,0.8842,1,0.9552,0.8654,0.837,0.9834,0.9434,0.9362,0.7828,0.6388,0.5302,0.5466,0.405,-0.2794,0.1808,0.373,0.5372,0.7068,0.7826,0.431,0.4184,0.0822,-0.0012,0.1606,0.0696,0.1834,0.282,0.3122,0.3628,0.3198,0.5298,0.646,0.828,0.919,1,0.7876,0.8028,0.9342,0.8634,0.9418,0.8204,0.6156,0.4008,0.464,0.3224,-0.2632,0.1808,0.5266,0.6756,0.7314,0.7554,0.468,0.3696,0.141,-0.0026,0.0744,0.1382,0.109,0.2022,0.1808,0.3378,0.3484,0.383,0.593,0.7102,1,0.9574,0.9256,0.8484,0.8298,0.9548,0.9096,0.9256,0.7712,0.5852,0.4228,0.407,-0.3112,0.0808,0.5682,0.6582,0.6,0.5444,0.2742,0.0702,0.1178,-0.0754,-0.1338,-0.0172,-0.049,0.0172,0.0966,0.0438,0.2026,0.2186,0.2662,0.592,0.7802,1,0.9708,0.8994,0.902,0.8622,0.9524,0.9232,0.8464,0.6,0.5576,0.4278,-0.2668,0.089,0.7822,0.8006,0.4632,0.2608,0.1964,0.1042,-0.0552,-0.2086,-0.2608,-0.2914,-0.1226,-0.2208,-0.1872,-0.0398,-0.0154,-0.003,0.0706,0.2608,0.5092,0.816,0.9846,1,0.8774,0.816,0.8588,0.8866,0.8344,0.6748,0.4018,0.2914,-0.1234,0.3358,0.981,1,0.1916,-0.131,-0.165,-0.2144,-0.4724,-0.5674,-0.7722,-0.5066,-0.4762,-0.6092,-0.4914,-0.4762,-0.3662,-0.408,-0.5598,-0.4422,-0.1044,0.2714,0.4876,0.795,0.8406,0.4952,0.3586,0.446,0.5028,0.3434,-0.0132,-0.0512,-0.6086,0.3914,0.5652,0.3914,0.7392,0.7826,0.5218,0.4348,0.4348,0.3044,0.3044,0.2608,0.174,0,0,0.2608,0.6522,0.7826,0.913,0.913,1,0.913,0.7392,0.4782,0.4782,0.8696,0.826,0.913,0.826,0.7826,0.6956,0.6086,-0.6492,0.0878,0.1228,0.4386,0.5088,0.5438,0.5438,0.193,0.2632,-0.0878,0.1228,0.0176,0.193,0.0176,0.3334,0.228,0.5438,0.4386,0.8948,0.9298,0.8246,0.8246,0.7544,0.7894,0.9298,1,0.6842,0.7894,0.4036,0.579,0.4386,0.5438,-0.2324,0.091,0.6162,0.6768,0.5354,0.4546,0.2728,0.091,0.091,-0.0506,-0.091,0.0304,0.0506,0.0304,0.0708,0.1112,0.192,0.2324,0.2324,0.4546,0.798,0.8788,0.9798,0.9394,0.899,0.8586,0.9192,1,0.9192,0.6566,0.4344,0.4546,-1,-1,-1,-1,-1,-1,-1,-1,-0.9648,-0.9568,-0.9326,0.3238,0.532,0.6506,0.8366,0.9326,0.9824,0.9086,0.782,0.5722,0.351,-0.0818,-0.7324,-0.8878,-0.9326,-0.8638,-0.9408,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9822,-0.9818,-0.9696,0.075,0.7806,0.3236,0.4112,0.283,0.1784,0.2222,-0.0696,-0.3466,-0.5614,-0.7342,-0.9064,-0.9368,-0.9594,-0.941,-0.962,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.9534,-0.7668,-0.42,-0.25,-0.528,-0.538,-0.638,-0.662,-0.532,-0.732,-0.844,-0.9582,-0.94,-0.6034,-0.3668,-0.59,-0.7734,-0.6568,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,-0.6286,1,1,-0.6858,-0.6858,-0.9142,-0.9428,-0.8286,-0.9428,-0.7714,-0.2,0.2,-0.2,-0.7142,-0.8858,-0.8858,-0.9142,0.2286,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.8158,0.7032,0.7046,0.7304,0.7374,0.7424,0.7278,0.7336,0.7436,0.7986,0.9246,-0.68,0.2,-0.9704,-0.6474,0.1118,0.235,0.4252,1,-0.168,0.2,0.008,0.168,0.488,0.312,1,0.968,0.472,0.52,0.488,0.776,0.712,0.392,0.68,0.184,0.216,0.28,0.088,0.632,0.616,0.536,0.44,0.264,0.632,0.28,0.328,0.504,0.408,0.04,-0.104,-0.536,-0.1024,0.0236,-0.1024,0.5118,0.433,0.1338,0.4646,1,0.9212,0.8426,0.685,0.7008,0.7952,0.2598,0.4804,0.685,0.4488,0.37,0.2756,0.1182,0.2126,0.5748,0.6378,0.0394,0.1338,0.2598,0.811,0.2914,0.244,0.1338,0.0708,-0.4016,-0.1458,0.2708,0.0624,0.0312,0.1666,0.198,0.3542,0.2604,0.5104,0.7084,0.9792,0.7812,0.875,1,0.5312,0.5624,0.5938,0.2708,0.1458,0.427,0.5,0.3646,0.3438,0.25,0.125,0.2292,0.2292,-0.0938,0.125,-0.073,-0.0416,-0.5834,-0.9992,1,-1,-1,-1,-1,-1,-1,-1,-0.2672,-0.0688,0.0534,0.023,0.0382,0.0076,-0.0076,-0.0076,0.1146,0.1146,0.2978,1,0.939,0.7252,0.5726,0.2672,0.3588,0.71,0.374,0.1756,0.2672,-0.0534,0.0534,-0.0382,-0.084,-0.084,-0.1298,-0.1604,-0.0382,-0.1604,-0.0534,-0.0688,'1'
-0.2276,0.3616,0.4018,0.558,0.3526,-0.1742,-0.2054,-0.192,-0.3258,-0.4018,-0.3438,-0.3392,-0.2142,-0.183,-0.116,0.009,0.009,0.1474,0.1652,0.5178,0.7678,1,0.9508,0.8258,0.8124,0.9108,0.9866,0.9018,0.7322,0.4866,0.4776,0.4642,-0.2454,0.1914,0.3574,0.5306,0.2382,-0.3394,-0.2274,-0.2672,-0.3538,-0.5162,-0.3718,-0.2924,-0.2382,-0.2418,-0.278,-0.0216,-0.1516,0.0036,0.1624,0.2382,0.4766,0.5234,0.9856,0.899,0.686,0.6896,0.7978,0.9602,1,0.6498,0.5848,0.4766,-0.305,0.1276,0.3974,0.5452,0.22,-0.2976,-0.3716,-0.4196,-0.3826,-0.5304,-0.4602,-0.3346,-0.3086,-0.2606,-0.3272,-0.1572,-0.1276,-0.0314,0.0426,0.0426,0.4306,0.7598,1,0.8522,0.7818,0.7338,0.7376,0.989,0.9076,0.8152,0.6598,0.5748,-0.247,0.2236,0.2538,0.4622,0.284,-0.1026,-0.2942,-0.2202,-0.3882,-0.3882,-0.3378,-0.395,-0.21,-0.3244,-0.2,-0.2168,-0.089,-0.0722,-0.0016,0.2436,0.2606,0.5932,0.7446,1,0.879,0.6942,0.721,0.8286,0.8488,0.8756,0.6706,0.6134,-0.1758,0.3794,0.3482,0.5206,0.4276,0.0414,-0.0794,-0.0896,-0.2276,-0.2794,-0.4414,-0.2276,-0.2724,-0.162,-0.1828,-0.0828,-0.162,-0.038,0.0448,0.1242,0.3758,0.5448,0.9104,0.9,0.9104,0.8518,0.8482,0.9206,1,0.8966,0.7896,0.6104,-0.1486,0.7916,0.827,0.5034,0.5476,0.122,0.1974,-0.2284,-0.122,-0.5122,-0.357,-0.3348,-0.193,-0.3792,-0.1618,-0.2994,-0.1752,-0.2904,-0.0732,-0.0732,0.1708,0.459,0.765,0.9556,1,0.9334,0.898,0.9068,0.9158,0.8536,0.6984,0.5742,-0.6778,0.826,1,0.4118,0.0538,-0.2992,-0.422,-0.514,-0.5396,-0.729,-0.9336,-0.6828,-0.5294,-0.468,-0.422,-0.6164,-0.6266,-0.555,-0.6828,-0.6982,-0.4272,-0.3196,0.0588,0.3862,0.4782,0.2788,0.2072,0.509,0.642,0.381,0.4578,0.3196,-0.1924,0.5,0.5,0.577,0.423,0.077,0.0384,-0.0384,-0.077,-0.1924,-0.2308,-0.077,-0.1538,0.1154,0.077,0.1154,0.1154,0.3462,0.3462,0.6924,0.6538,1,0.9616,0.8076,0.8076,0.923,1,0.7308,0.6538,0.423,0.4616,0.577,-0.2,0.36,0.2,0.56,0.4,-0.2,-0.2,-0.12,-0.28,-0.28,-0.24,-0.28,-0.08,-0.2,0,0,0.12,0.12,0.24,0.64,0.76,0.96,1,0.88,0.84,1,0.92,0.96,0.88,0.72,0.44,0.56,-0.2428,0.4758,0.4758,0.398,0.398,0.0292,0.0486,-0.1068,-0.1262,-0.3204,-0.301,-0.301,-0.2038,-0.2234,-0.1262,-0.1844,-0.068,-0.1262,0.0098,0.0486,0.2038,0.4564,0.6894,0.8446,1,0.767,0.8252,0.7088,0.9418,0.767,0.534,0.4564,-1,-1,-1,-1,-1,-1,-1,-1,-0.9656,-0.9744,-0.2252,0.8008,0.7754,0.8252,0.8774,0.7562,0.5698,0.3938,0.3198,0.2444,0.2394,-0.1346,-0.8302,-0.903,-0.972,-0.9566,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9706,-0.9734,-0.476,0.507,0.8076,0.9258,0.9596,0.7982,0.888,0.6756,0.343,-0.1438,-0.3508,-0.5702,-0.8846,-0.908,-0.9262,-0.924,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,-0.9,-0.5834,-0.4368,-0.3116,-0.2286,-0.2344,-0.2458,-0.12,-0.2316,-0.4686,-0.7772,-0.9344,-0.9716,-0.4934,-0.23,-0.2634,-0.21,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,-0.2858,-1,-1,-1,-1,-0.7142,-0.1428,0.4,0.8572,0.4286,-0.5142,-0.4,-0.6858,-0.7714,-1,-1,-1,-1,-1,-1,-1,0.2502,0.2452,0.251,0.243,0.2446,0.2342,0.2158,0.2058,0.1976,0.2024,1,1,1,1,1,1,1,1,1,1,-0.7466,-0.2236,-0.445,0.297,0.5066,0.7966,0.7854,1,-0.2174,0.174,0.3044,0,0.1304,-0.0434,0.5218,0.5652,0.826,0.7826,0.8696,0.8696,0.6522,0.6522,0.7392,0.7826,0.9566,1,0.826,0.7826,0.826,0.8696,0.8696,0.7392,0.7392,0.3478,0.2174,0.4782,0.3914,0.4348,0.3914,-0.174,0.0666,0.4444,0.2888,0.0222,-0.0666,0.0888,0.4444,0.3556,0.5556,0.6444,0.8888,0.7112,0.7778,0.6666,0.6444,0.7112,1,0.8666,0.7112,0.9112,0.7778,0.4666,0.5556,0.5334,0.6888,0.4666,0.4666,0.2666,0.2222,0.2888,0.2888,-0.1334,0.577,0.9616,0.5,0.2308,0.0384,0.0384,0.173,0.2884,0.2884,0.577,1,0.8654,0.923,1,0.5,0.3462,0.8462,0.8654,0.5576,0.4424,0.5192,0.423,0.2308,-0.0962,-0.0962,-0.0576,-0.1154,-0.0962,-0.2116,-0.3654,-0.0384,-0.2116,0.5238,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.5504,-0.2714,-0.2868,-0.1938,-0.3644,-0.3024,-0.3644,-0.1938,-0.3178,-0.3178,-0.1162,1,0.8294,0.1938,0.2714,0.1162,0.0542,0.1008,0.1782,0.0542,-0.3488,-0.1318,-0.1472,-0.4574,-0.1782,-0.3024,-0.3488,-0.4884,-0.3644,-0.3954,-0.4728,-0.8294,'2'
-0.2048,0.4808,0.4926,0.2462,0.2344,-0.1008,-0.1038,-0.2938,-0.3176,-0.3086,-0.3412,-0.2582,-0.2522,-0.089,-0.1484,-0.0268,-0.0446,0.0624,0.184,0.3264,0.6232,0.7982,0.8784,0.8962,0.7894,0.8754,0.9436,1,0.7002,0.5994,0.457,0.5014,-0.2882,0.3682,0.382,0.131,0.1504,-0.2194,-0.1834,-0.3104,-0.2442,-0.4068,-0.3186,-0.3406,-0.2304,-0.2882,-0.142,-0.3158,-0.1006,-0.1944,0.0648,0.0868,0.418,0.5752,1,0.9366,0.6524,0.6276,0.8234,0.8206,0.7048,0.7406,0.4758,0.542,-0.1528,0.5274,0.536,0.3804,0.389,0.0086,0.026,-0.1152,-0.0778,-0.2132,-0.1528,-0.196,-0.1152,-0.0864,0.0116,-0.0836,0.0404,-0.0028,0.144,0.2276,0.415,0.6916,0.928,0.9078,0.9482,0.8414,0.9136,0.9222,1,0.9194,0.6974,0.6888,-0.0756,0.4768,0.436,0.5524,0.4534,0.032,-0.1338,-0.0872,-0.2384,-0.1948,-0.311,-0.2152,-0.1512,-0.0872,-0.157,-0.0844,-0.0668,-0.0406,-0.0436,0.1424,0.2732,0.5378,0.811,1,0.9912,0.7994,0.8402,0.9098,0.9012,0.7848,0.6046,0.5378,-0.0954,0.4648,0.6764,0.8672,0.3652,-0.1908,-0.1992,-0.3984,-0.4564,-0.5518,-0.5312,-0.4108,-0.5104,-0.4648,-0.4938,-0.4232,-0.3402,-0.4232,-0.361,-0.1286,-0.0042,0.3236,0.8008,1,0.859,0.7054,0.5644,0.639,0.7552,0.581,0.2158,0.083,-0.0962,0.4138,0.9418,1,-0.029,-0.5124,-0.4228,-0.6466,-0.727,-0.7046,-0.7718,-0.8076,-0.8658,-0.8882,-0.7762,-0.6734,-0.6912,-0.6152,-0.6958,-0.5346,-0.2842,0.038,0.5168,0.7316,0.7628,0.5974,0.378,0.6018,0.642,0.4228,0.0022,-0.056,0.0596,0.5226,0.9904,1,-0.3556,-0.5178,-0.5704,-0.8186,-0.8138,-0.8712,-0.981,-0.8234,-0.852,-0.7756,-0.747,-0.7326,-0.6468,-0.7184,-0.7088,-0.6182,-0.4606,-0.3078,0.0406,0.623,0.6754,0.3366,0.2268,0.0644,0.1074,-0.0262,-0.3174,-0.4892,-0.3334,0.7142,0.8096,0.381,0.1428,-0.238,-0.1428,-0.381,-0.4286,-0.4286,-0.381,-0.3334,-0.381,-0.238,-0.4286,-0.1428,-0.0952,0.0476,0.1428,0.4762,0.9048,0.9524,0.9048,0.9048,0.9524,1,0.8572,0.762,0.3334,0.4286,0.381,0.381,-0.1924,0.5,0.5,0.2308,0.2692,-0.0384,-0.077,-0.2692,-0.2308,-0.3076,-0.1924,-0.3846,-0.1924,-0.1924,-0.0384,-0.1538,0.0384,-0.0384,0.1924,0.2692,0.577,0.6154,0.8846,0.8462,0.923,0.8462,1,1,0.7308,0.6538,0.5,0.5,-0.101,0.3762,0.3944,0.5412,0.3762,0.0092,-0.1744,-0.101,-0.2478,-0.266,-0.2478,-0.3028,-0.1376,-0.3028,-0.1926,-0.156,-0.0826,-0.2478,-0.211,0.1192,0.0826,0.3762,0.7432,1,0.9082,0.5964,0.633,0.6514,0.6698,0.6698,0.3028,0.2478,-1,-1,-1,-1,-1,-1,-1,-1,-0.9814,-0.9804,-0.49,0.7772,0.444,0.5066,0.406,0.2662,0.1442,0.0924,0.0346,-0.0758,-0.2662,-0.488,-0.6962,-0.8652,-0.9198,-0.9356,-0.9482,-0.9706,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9814,-0.9794,-0.6664,0.6216,0.8824,0.8326,0.5872,0.3656,0.1854,-0.0828,-0.3348,-0.4522,-0.567,-0.7122,-0.8204,-0.8982,-0.93,-0.9496,-0.95,-0.9636,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.96,-0.81,-0.4276,-0.275,-0.2626,-0.4,-0.5176,-0.4526,-0.5178,-0.7912,-0.9312,-0.9024,-0.9024,-0.9368,-0.6234,-0.3934,-0.7368,-0.6568,-0.8734,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,1,1,1,-0.6286,-0.8286,-0.8858,-0.8286,-0.2572,0.4858,-0.2858,-0.7714,-0.3428,-0.8572,-0.8286,-0.8286,-0.8,-0.7142,-0.8286,-0.5142,-1,-1,-1,-1,-1,0.1886,0.1978,0.1964,0.1926,0.1976,0.1902,0.1702,0.1922,0.233,-0.0088,1,1,1,1,1,1,1,1,1,1,-0.7734,-0.0236,-0.7448,0.3362,0.644,0.7248,0.9856,1,0.2572,0.4286,0.4286,0.3142,0.5428,0.4286,0.8858,0.8858,0.6572,0.6572,0.8286,0.9428,0.6572,0.5428,0.5428,1,0.9428,0.7714,0.8286,0.7714,0.6,0.6572,0.8286,0.9428,1,0.6572,0.4858,0.5428,0.7142,0.6572,0.5428,-0.3714,0.5136,0.6756,0.3514,0.2432,0.2972,0.2702,0.4594,0.946,1,0.8648,0.919,1,0.946,1,0.4864,0.8648,1,0.946,1,0.8648,0.7568,0.7028,0.7838,0.8378,0.8108,0.7028,0.3244,0.6486,0.3514,0.7568,0.5946,-0.4864,0.4748,0.9394,0.5354,0.091,-0.0506,0.0304,0.1112,0.192,0.2324,0.3536,0.798,0.9192,0.9596,0.899,0.5758,0.495,0.8586,1,0.8586,0.5758,0.6162,0.4546,0.2728,0.0708,0.0102,-0.091,0.0506,-0.0506,-0.293,-0.2324,-0.2324,-0.4344,0.8382,-1,-1,1,-1,-1,-0.6,-0.8334,-1,-0.3158,-0.0176,-0.2456,-0.4562,-0.2982,-0.4562,-0.0878,-0.1578,-0.2106,-0.386,0,1,0.807,0.7894,0.4562,0.0526,-0.2106,0,-0.035,-0.3508,-0.386,-0.4912,-0.4562,-0.5438,-0.386,-0.2808,-0.2106,-0.3508,-0.421,-0.3158,-0.4562,-0.4562,'2'
-0.0766,0.5438,0.5146,0.5766,0.4818,0.0036,-0.0548,-0.011,-0.0876,-0.0548,-0.0986,-0.073,0.0912,0.135,0.2446,0.2446,0.562,0.77,0.8614,0.8942,0.6424,0.657,0.657,0.8212,0.8722,1,0.8212,0.573,0.489,0.4088,0.4088,0.416,-0.1612,0.3484,0.4004,0.636,0.442,-0.1058,-0.2374,-0.182,-0.3344,-0.3726,-0.2616,-0.3796,-0.1612,-0.2028,-0.0398,0.0468,0.13,0.3552,0.4384,0.8128,0.8198,0.8266,0.695,0.7436,0.8128,0.9342,1,0.8822,0.5944,0.5772,0.5286,0.5286,-0.2776,0.1756,0.271,0.4516,0.2184,-0.2546,-0.3334,-0.3366,-0.445,-0.5106,-0.445,-0.4548,-0.3202,-0.3596,-0.3004,-0.1198,-0.133,0.0378,0.0936,0.3464,0.7044,0.8654,0.6684,0.711,0.7274,0.7274,1,0.9212,0.6618,0.514,0.537,0.514,-0.233,0.2628,0.2198,0.448,0.2662,-0.1736,-0.2892,-0.233,-0.3454,-0.3454,-0.3884,-0.4578,-0.2528,-0.3852,-0.233,-0.21,-0.1174,-0.0546,-0.005,0.319,0.4248,0.7818,0.719,0.8678,0.7256,0.8148,0.914,1,0.8314,0.8414,0.6166,0.5934,-0.2112,0.3012,0.2516,0.4504,0.3292,-0.1056,-0.3074,-0.1552,-0.351,-0.236,-0.4006,-0.3322,-0.1366,-0.118,-0.1242,-0.149,-0.0746,-0.1304,0.056,0.1242,0.3758,0.705,0.9162,0.823,0.8696,0.7826,0.882,0.9534,1,0.7268,0.7174,0.6614,-0.2686,0.4404,0.434,0.4276,0.4118,-0.0112,-0.0462,-0.1574,-0.1796,-0.3322,-0.364,-0.3418,-0.345,-0.2146,-0.2274,-0.1702,-0.1988,-0.132,-0.097,0.062,0.2146,0.4468,0.8888,1,0.8252,0.7616,0.7616,0.8792,0.771,0.717,0.4532,0.4754,-0.403,0.879,1,0.2944,0.261,-0.1274,0.002,-0.2484,-0.4656,-0.6368,-0.5616,-0.6534,-0.3904,-0.3862,-0.5282,-0.5198,-0.5866,-0.5574,-0.549,-0.3736,-0.3362,-0.1232,0.3028,0.8496,0.7912,0.4698,0.3444,0.499,0.549,0.2734,0.3236,0.1316,0,0.5556,0.6666,0.6666,0.4444,-0.1112,0,-0.1112,-0.0556,-0.1112,-0.6112,-0.8888,-0.1666,-0.1666,0.1112,-0.0556,0.1112,0.8334,1,0.7222,0.0556,0.6112,0.5,0.5556,0.8888,0.8334,0.2778,0.3888,0.3334,0.0556,-0.2778,-0.0556,0.2778,0.75,0.7778,0.6112,0.6388,0.3612,0.3334,0.3612,0.3334,0.25,0.1944,0.3612,0.3056,0.3612,0.4722,0.5834,0.7222,0.8334,0.7778,0.8334,0.7222,0.7222,0.8056,0.8612,0.9166,1,0.8888,0.7222,0.5834,0.6388,0.6112,0.6666,-0.282,0.265,0.2478,0.3676,0.3162,-0.0256,-0.1794,-0.1282,-0.2308,-0.265,-0.4358,-0.3504,-0.4188,-0.094,-0.2478,-0.1112,-0.1452,0.0428,-0.0086,0.1624,0.2992,0.47,0.8974,1,0.7778,0.7436,0.7436,0.8632,0.7436,0.829,0.5214,0.5556,-0.9728,-0.967,-0.965,-0.9572,-0.9524,-0.962,-0.9582,-0.965,-0.9572,-0.9172,-0.9454,0.4248,0.931,0.855,0.6672,0.4502,0.2458,0.0774,-0.0122,-0.125,-0.1524,-0.1884,-0.6254,-0.9436,-0.963,-0.965,-0.964,-1,-1,-1,-1,-1,-1,-0.9172,-0.7892,-0.5736,-0.6448,-0.471,-0.2924,-0.107,0.0616,0.131,-0.1744,-0.4492,-0.0314,0.7196,0.8694,0.7038,0.5286,0.3802,0.2784,0.2474,-0.0488,-0.5062,-0.5842,-0.8032,-0.941,-0.961,-0.958,-0.9648,-1,-1,-1,-1,-1,-1,0.2366,1,1,1,1,1,1,1,1,1,1,-0.3572,-0.3944,-0.38,-0.3076,-0.33,-0.38,-0.2276,-0.1476,-0.395,-0.895,-0.98,-0.84,-0.4334,-0.6068,-0.5534,-0.7668,-1,-1,-1,-1,-1,-1,1,1,-0.4286,-0.6858,-0.8286,-0.8,-0.8,-0.8,-0.8286,-0.2572,1,1,1,-0.6858,-0.9428,-1,-0.8572,-0.9142,-0.3714,0.4286,0.2858,0.7142,-0.4572,-0.4572,-0.6858,-0.9428,-0.5428,-1,-1,-1,-1,-1,-1,0.3732,0.3734,0.369,0.365,0.3522,0.3406,0.3148,0.285,0.2474,0.2504,0.4392,0.4776,0.5114,0.5346,0.5786,0.6284,0.6932,0.8034,0.958,1,-0.7334,-0.1058,-0.3398,-0.6428,0.0526,0.5498,0.762,0.7584,-0.7734,-0.5654,-0.2056,-0.2758,-0.2266,-0.1426,-0.0982,0.0772,0.1706,0.313,0.3412,0.0538,0.1962,0.236,0.236,0.285,0.3832,0.4672,0.5164,0.4626,0.4252,0.486,0.806,0.708,0.8412,0.9018,0.6472,0.8458,0.9228,1,0.8038,0.4252,-0.9766,-0.6978,-0.6324,-0.4736,-0.5156,-0.3956,-0.2664,-0.2274,-0.0934,-0.1138,-0.0654,-0.0094,0.0328,0.056,0.151,0.162,0.2554,0.2664,0.349,0.3832,0.5172,0.4828,0.567,0.651,0.7228,0.7538,0.7056,0.9688,1,0.9766,0.9236,0.7024,-0.95,-0.7332,-0.6134,-0.4936,-0.4136,-0.3466,-0.3024,-0.2482,0.0414,-0.0214,-0.0414,-0.0328,0.0428,0.0684,0.0442,0.1142,0.1626,0.2296,0.2126,0.1926,0.388,0.4294,0.7076,0.6576,0.7518,0.746,0.689,0.6704,0.8232,0.8688,1,0.786,-0.9558,-1,1,-1,-1,-1,-0.8,1,1,-0.523,-0.2294,-0.2844,-0.3028,-0.2478,-0.1926,-0.0276,-0.2478,-0.0642,0.0092,0.2478,0.9082,1,0.8348,0.7798,0.578,0.523,0.3212,0.5964,0.4312,0.3762,0.1376,0.266,-0.0642,0.0092,-0.0092,-0.1744,-0.3212,-0.2844,-0.1376,-0.3578,-0.688,'3'
-0.9176,0.7202,0.9548,0.7284,0.2716,0.1894,-0.1276,0.0494,-0.074,-0.07,-0.0164,-0.1316,0.2346,0.177,0.2758,0.4032,0.3252,0.716,0.6502,0.7408,0.8642,0.6666,0.6832,0.6214,0.6954,0.9136,0.8972,1,0.9548,0.5102,0.465,0.432,-0.8538,0.318,0.4692,0.2538,0.1872,0.1564,-0.2334,-0.0948,-0.3358,-0.0924,-0.118,-0.2026,-0.0642,-0.2948,0.0102,-0.0026,0.041,0.2,0.1,0.577,0.5974,0.5666,0.741,0.582,0.718,0.7256,0.7642,1,0.9154,0.5358,0.5898,0.3974,-0.5822,0.49,0.608,0.2478,0.2652,0.0922,0,-0.0432,-0.1412,-0.0548,-0.2882,-0.222,-0.2652,-0.0922,-0.072,-0.1556,-0.0058,0,0.1354,0.2594,0.464,0.7694,0.8962,0.9626,0.9424,0.7522,0.879,0.8876,1,0.9596,0.6168,0.6398,-0.276,0.3766,0.3344,0.409,0.328,-0.0812,-0.159,-0.263,-0.315,-0.4318,-0.4642,-0.4416,-0.3702,-0.3376,-0.2402,-0.2922,-0.1884,-0.1624,-0.0422,0.0552,0.2532,0.5098,0.8928,1,0.9156,0.75,0.7306,0.8734,0.922,0.763,0.5812,0.4318,-0.2644,0.1094,0.6858,0.7176,-0.1094,-0.4632,-0.4512,-0.7972,-0.6024,-0.65,-0.7814,-0.7416,-0.7018,-0.6462,-0.5746,-0.6422,-0.507,-0.4234,-0.3798,-0.3122,0.0458,0.4314,0.6938,1,0.9126,0.6382,0.662,0.6978,0.7852,0.6898,0.487,0.2008,-0.2148,0.2148,0.9704,0.8518,-0.047,-0.3728,-0.5012,-0.4618,-0.8124,-0.842,-0.8814,-0.7876,-0.7432,-0.758,-0.6444,-0.595,-0.4814,-0.595,-0.5556,-0.2888,-0.1852,0.2888,0.8666,1,0.768,0.521,0.6988,0.847,0.5456,0.3976,0.3926,0.0124,-0.0706,0.5118,1,0.8764,-0.2058,-0.5824,-0.747,-0.7352,-0.6176,-0.8706,-0.747,-0.8588,-0.647,-0.6058,-0.5176,-0.5058,-0.5236,-0.5588,-0.7706,-0.553,-0.1882,0.0236,0.6058,0.9058,0.847,0.4764,0.7942,0.8058,0.4412,0.0588,0.1824,0.0236,-0.4286,0.7142,0.9428,0.7142,0.2572,-0.1428,-0.0286,0.1428,0.0858,-0.4858,-0.4286,-0.0286,0.2,0.2572,0.2572,0.4858,0.5428,0.5428,0.5428,0.6,0.5428,0.4858,0.5428,0.3142,0.6572,0.6572,1,0.9428,0.8286,0.0858,0.1428,0.3142,-0.7826,0.6956,0.9566,0.7826,0.2608,0.1304,-0.2174,-0.174,0.0434,-0.087,0,-0.1304,0.2608,0.3478,0.1304,0.5218,0.4782,0.826,1,0.8696,0.6086,0.6086,0.4348,0.6086,0.5218,0.7826,1,0.913,0.5652,0.5652,0.174,0.3914,-0.9626,0.3458,0.514,0.2336,0.1588,0.1028,-0.1402,-0.0654,-0.3458,-0.1402,-0.215,-0.2336,-0.1402,-0.3644,-0.0094,-0.1028,0.0094,0.0842,0.1214,0.4392,0.3644,0.8692,1,0.6636,0.7758,0.5888,0.9252,0.9814,0.8692,0.7758,0.6074,0.6074,-0.9726,-0.9686,-0.9674,-0.9726,-0.9674,-0.9736,-0.9726,-0.9706,-0.9696,-0.9178,-0.9136,0.7216,0.8862,0.8396,0.747,0.3936,-0.037,-0.029,-0.0046,-0.1538,-0.3266,-0.5938,-0.8548,-0.9502,-0.9746,-0.9106,-0.9664,-1,-1,-1,-1,-1,-1,-0.862,-0.823,-0.7688,-0.7524,-0.7108,-0.6878,-0.6022,-0.3996,-0.3388,-0.3008,-0.6374,-0.1582,0.6108,0.8634,0.3312,0.1152,-0.2598,-0.4342,-0.4964,-0.6148,-0.6986,-0.8268,-0.935,-0.9658,-0.972,-0.9508,-0.977,-1,-1,-1,-1,-1,-1,0.4132,1,1,1,1,1,1,1,1,1,1,-0.61,0.0074,0.1024,-0.485,-0.5202,-0.4684,-0.5358,-0.7358,-0.8858,-0.8276,-0.8232,-0.6876,-0.5908,-0.4508,-0.6508,-0.8042,-1,-1,-1,-1,-1,-1,1,0.4286,-0.6286,-0.8858,-0.9428,-0.8572,-0.7142,-0.6,-0.8,-0.2572,1,1,1,0,0.0858,-0.7142,-0.4858,-0.5428,-0.8286,-0.8,-0.6572,0.1714,-0.6572,-0.9142,-1,-0.7142,-0.6572,-1,-1,-1,-1,-1,-1,0.3588,0.3714,0.376,0.3832,0.4246,0.4514,0.472,0.4948,0.4686,0.1232,0.3322,0.3612,0.3726,0.4032,0.5014,0.58,0.6768,0.7598,0.8826,0.9528,-0.8134,-0.0588,-0.664,-0.6608,-0.095,0.0654,0.4184,-0.0334,-0.7486,-0.5498,-0.3508,-0.2686,-0.2412,-0.1542,-0.1108,0.0034,0.2366,0.3418,0.248,0.2548,0.1772,0.3828,0.3898,0.3212,0.3258,0.3234,0.6114,0.5978,0.4652,0.5498,0.648,0.7098,0.9382,1,0.7326,0.8422,0.8492,0.9222,0.8058,0.2938,-0.8526,-0.7854,-0.5922,-0.5462,-0.448,-0.4152,-0.376,-0.1778,-0.081,-0.1188,-0.0696,-0.027,0.163,0.104,0.0762,0.1154,0.1598,0.2154,0.2744,0.3612,0.4382,0.4676,0.5298,0.5298,0.6544,0.7232,0.81,0.9066,0.9984,0.982,1,0.7412,-0.961,-0.7404,-0.5574,-0.52,-0.4152,-0.348,-0.2276,-0.215,0.0336,-0.0258,-0.1368,-0.0368,0.0368,0.1368,0.1774,0.2118,0.1588,0.2792,0.4996,0.5308,0.4918,0.695,0.731,0.6684,0.7842,0.781,0.9078,0.9374,0.8968,1,0.9766,0.7982,-0.9706,-1,1,-1,-1,-1,-1,1,1,-0.4952,-0.1844,-0.534,0.1844,-0.0098,-0.0292,0.0486,0.1068,0.2038,0.1262,0.301,0.67,0.767,1,0.7476,0.3786,0.2234,0.2038,0.398,0.4174,0.3786,0.3398,0.301,0.1262,0.0486,-0.1456,0.1068,0.3592,-0.301,0.0098,0.068,-0.4758,'3'
-0.0824,0.6202,0.61,0.4656,0.3882,-0.0588,-0.153,-0.1698,-0.3244,-0.1428,-0.284,-0.116,-0.1226,0.032,-0.042,0.0488,0.1058,0.1832,0.3916,0.5428,0.9194,0.9866,0.8554,0.889,0.8992,0.9496,1,0.916,0.5866,0.5126,0.432,0.3446,-0.1294,0.4624,0.448,0.3884,0.34,-0.0782,-0.1352,-0.1066,-0.1664,-0.1778,-0.2376,-0.1436,-0.2176,-0.0698,-0.1408,0.0612,-0.0128,0.1038,0.0328,0.4282,0.4054,0.8094,0.744,1,0.9346,1,0.9402,0.9204,0.8606,0.6786,0.6102,0.5618,-0.2006,0.3204,0.2916,0.2812,0.2084,-0.1432,-0.2422,-0.1744,-0.2864,-0.2682,-0.4192,-0.2708,-0.3204,-0.1354,-0.2448,-0.0756,-0.125,0.026,0.0052,0.1484,0.3724,0.4844,0.875,1,0.7994,0.862,0.849,0.927,0.7006,0.6822,0.474,0.5312,-0.2162,0.2882,0.2192,0.3934,0.2312,-0.1232,-0.3304,-0.2642,-0.3724,-0.3724,-0.4084,-0.4444,-0.2372,-0.3094,-0.2372,-0.2792,-0.1982,-0.1682,-0.075,0.042,0.2372,0.5406,0.8468,0.97,1,0.8528,0.931,0.928,0.901,0.6846,0.6066,0.5676,-0.3322,0.0888,0.4572,0.5526,-0.079,-0.3586,-0.5394,-0.5066,-0.5198,-0.6776,-0.704,-0.6118,-0.6052,-0.6118,-0.5756,-0.5296,-0.4144,-0.3914,-0.2828,-0.0362,0.0986,0.431,0.8322,1,0.944,0.8388,0.8948,0.9014,0.852,0.569,0.4672,0.4046,-0.2008,0.233,0.9036,0.7992,-0.502,-0.506,-0.4096,-0.3776,-0.7752,-0.7832,-0.8314,-0.7992,-0.8354,-0.6948,-0.5944,-0.6546,-0.5784,-0.4578,-0.522,-0.2972,-0.1768,0.1646,0.4618,1,0.9518,0.6908,0.8514,0.8674,0.502,0.2208,0.0642,0.0804,0.0862,0.5126,1,0.929,-0.4264,-0.5686,-0.5888,-0.6548,-0.4416,-0.7564,-0.9442,-0.6852,-0.3198,-0.2994,-0.7158,-0.665,-0.797,-0.736,-0.7818,-0.7412,-0.594,-0.203,0.4264,0.873,0.7208,0.604,0.5838,0.4874,0.203,0.0152,-0.3452,-0.2538,-0.0526,0.8422,0.9474,0.421,0.1052,-0.421,-0.2106,-0.3684,-0.3158,-0.3684,-0.3158,-0.2106,-0.0526,-0.1052,-0.1052,-0.1578,0.1052,0.2106,0.1578,0.8422,1,0.9474,0.6842,0.1052,0.5264,0.8422,0.6842,0.579,0.5264,0.2106,0.3684,0.4736,-0.1428,0.5102,0.5102,0.347,0.3062,-0.0204,-0.102,-0.1428,-0.347,-0.1836,-0.2654,-0.1428,-0.0204,0.0612,-0.0612,-0.0612,-0.1428,0.0612,0.3062,0.4694,0.5918,0.8776,0.796,0.7142,0.7552,1,0.9184,0.6326,0.3062,0.3062,0.0204,0.0204,-0.2858,-0.0238,0.6904,0.6428,-0.262,-0.5714,-0.4048,-0.3334,-0.8096,-0.5952,-0.5714,-0.6428,-0.6904,-0.4524,-0.3096,-0.4524,-0.4762,-0.4524,-0.262,-0.1428,-0.0476,0.381,0.7142,1,0.9048,0.8334,0.8334,0.8334,0.7142,0.5,0.3334,0.2858,-1,-1,-1,-1,-1,-1,-1,-0.9588,-0.9616,-0.8984,-0.577,0.6278,0.9314,0.9588,0.8366,0.6402,0.4602,0.3338,0.3516,0.1936,-0.1882,-0.5,-0.7802,-0.9258,-0.934,-0.9532,-0.9436,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9802,-0.9776,-0.8432,-0.2498,-0.1518,0.3846,0.4532,0.8502,0.6082,0.3664,0.0472,-0.1328,-0.4636,-0.6874,-0.8126,-0.9132,-0.9606,-0.95,-0.971,-0.9642,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8724,-0.8868,-0.7268,0.87,-0.5076,-0.4076,-0.355,-0.185,-0.0526,-0.0734,-0.2246,-0.4846,-0.8334,-0.9024,-0.8668,-0.9434,-0.7068,-0.7334,-0.79,-0.7568,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4572,1,1,1,1,0.1714,-0.9428,-0.9142,-0.8572,-0.8858,-0.8858,-0.1428,0.5142,-0.0858,-0.6858,-0.7142,-0.8286,-1,-0.9714,-0.7142,-1,-1,-1,-1,-1,-1,0.1312,0.1396,0.1482,0.1628,0.1522,0.1512,0.167,0.1934,0.2122,-0.0262,0.9072,0.942,0.9552,1,1,1,1,1,1,1,-0.72,-0.0118,-0.2784,-0.401,-0.236,0.116,0.3082,1,-0.7682,-0.1594,-0.145,-0.1014,-0.0724,0.2898,0.3334,0.087,0.1594,0.3188,0.4348,0.4638,0.4492,0.5218,0.5508,0.6812,0.5362,0.855,0.855,0.4492,0.7826,0.942,1,0.9566,0.8986,0.7246,0.3624,0.4782,0.2464,0.1884,0.1014,-0.2898,-0.8904,-0.5206,-0.5754,-0.3836,-0.315,-0.178,0.0548,0.0958,-0.1096,0.3698,0.4384,0.0548,0.4794,0.2602,0.1096,0.1232,0.2328,0.5754,0.589,0.5616,0.6438,0.7672,1,0.8768,0.9864,0.7672,0.6576,0.6302,0.5206,0.6438,0.6302,0.274,-0.0526,0.2046,-0.1462,-0.1112,-0.1228,-0.041,0.1346,0.193,0.0994,0.497,0.766,0.5906,0.4736,0.4736,0.4736,0.4736,0.5322,0.5672,0.5322,0.7076,0.9182,0.8714,1,0.9532,0.9532,0.8012,0.7778,0.8362,0.614,0.614,0.7192,0.2866,-0.0032,-1,-1,1,-1,-1,-0.8,-0.7,-1,0.196,0.2746,-0.0392,-0.0392,-0.0196,0,0.353,0.196,0.2746,0.0588,0.3334,1,0.9804,0.6862,0.4706,0.2352,0.3922,0.3922,0.3138,0.196,0.196,0.0196,0.0392,0.0588,0.098,0.1372,0.1568,0.0196,-0.255,0.0588,0.255,-0.2942,'4'
-0.2642,0.5524,0.6156,0.2668,0.2896,-0.0898,-0.0544,-0.2668,-0.0568,-0.1908,-0.0898,-0.1454,0.0948,0.0948,0.0568,0.1126,0.1732,0.2668,0.3198,0.5272,0.7548,1,0.9494,0.6434,0.651,0.7548,0.818,0.8508,0.8736,0.5474,0.5246,0.4008,-0.4872,0.3178,0.4024,0.0724,0.204,-0.0168,-0.059,-0.1638,-0.2062,-0.2174,-0.291,-0.2084,-0.2396,-0.0658,-0.2264,-0.019,-0.0792,0.0926,0.1148,0.2552,0.3802,0.7102,1,0.9042,0.7682,0.7614,0.8706,0.9398,0.6164,0.7726,0.6254,0.6768,-0.43,0.3862,0.4446,0.1522,0.2546,-0.123,-0.0328,-0.2278,-0.1108,-0.2228,-0.2764,-0.3032,-0.1158,-0.0792,-0.2132,-0.0742,-0.1304,0.0378,0.0036,0.1986,0.2546,0.6224,0.8172,0.9318,1,0.9294,0.8612,0.944,0.939,0.983,0.832,0.7734,-0.2948,0.2654,0.2408,0.344,0.2604,-0.0614,-0.172,-0.1426,-0.2604,-0.371,-0.3636,-0.2948,-0.2506,-0.3072,-0.2162,-0.2014,-0.1524,-0.1106,-0.0638,0.145,0.2556,0.4742,0.742,0.8992,1,0.882,0.769,0.8746,0.9484,0.9214,0.6928,0.6806,-0.304,0.1098,0.5266,0.6206,-0.0188,-0.3228,-0.304,-0.5518,-0.6458,-0.5454,-0.6082,-0.6112,-0.5548,-0.4952,-0.4044,-0.4576,-0.5236,-0.3982,-0.2602,-0.257,0.0816,0.3574,0.5736,0.9216,1,0.7524,0.6646,0.8464,0.8934,0.7618,0.5612,0.5204,-0.166,0.3158,0.8582,0.8988,-0.1052,-0.409,-0.4372,-0.7126,-0.6882,-0.587,-0.6924,-0.6924,-0.672,-0.7166,-0.668,-0.591,-0.6438,-0.5384,-0.5506,-0.3442,-0.1458,0.1296,0.6964,0.9514,1,0.8138,0.668,0.834,0.7854,0.6964,0.413,0.328,0.2416,0.8058,0.7608,0.7968,-0.097,-0.4762,-0.404,-0.4086,-0.6208,-0.72,-0.6976,-0.9278,-0.6072,-0.4808,-0.413,-0.4312,-0.4538,-0.508,-0.6524,-0.6162,-0.368,0.0204,0.3498,0.9188,1,0.6388,0.3544,0.4762,0.5712,0.4222,0.1874,0.0112,0.1228,0.8948,1,0.7544,0.4036,0.0526,0.193,0.1228,0.1228,0.228,0.0878,0.3684,0.4036,0.5088,0.2632,0.4736,0.4736,0.3684,0.5088,0.8246,0.8948,0.6492,0.6492,0.579,0.7544,0.7894,0.8246,1,0.8596,0.0878,0.3684,0.1228,-0.0666,0.6,0.6666,0.3666,0.3666,0.0334,0.1,0.0334,0.1334,-0.0666,0.0666,0.0334,0.2,-0.0334,0.2,0.0666,0.3334,0.3334,0.5334,0.5334,0.9334,1,0.7,0.8,0.7334,0.8334,0.9,1,0.8,0.5666,0.4334,0.5666,-0.4022,-0.0574,0.4482,0.5402,-0.1494,-0.4482,-0.4712,-0.6322,-0.7472,-0.7702,-0.6782,-0.6552,-0.6322,-0.5402,-0.4022,-0.6322,-0.5402,-0.3794,-0.4712,-0.3564,0.0344,0.1034,0.2874,0.954,1,0.4022,0.6322,0.7472,0.6552,0.6092,0.5172,0.3334,-1,-1,-1,-1,-1,-1,-1,-0.9744,-0.97,-0.9636,-0.7478,0.7008,0.9498,0.8996,0.7522,0.392,0.046,0.0406,0.0096,-0.2458,-0.4958,-0.6592,-0.8996,-0.9636,-0.9636,-0.9594,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9826,-0.9774,-0.879,-0.5416,0.147,0.9118,0.9228,0.786,0.749,0.3664,-0.1474,-0.4316,-0.6336,-0.7708,-0.8534,-0.9494,-0.971,-0.9656,-0.9728,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9394,-0.9,-0.7668,0.6866,-0.48,-0.0846,-0.1268,-0.2224,0.012,0,-0.1756,-0.5938,-0.7338,-0.8898,-0.8938,-0.8352,-0.6686,-0.6152,-0.8186,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.1428,-0.1714,1,1,1,0.0286,-0.4286,-0.5428,-0.6572,-0.6858,-0.5714,-0.4286,-0.6858,-0.1428,-0.6858,-0.6572,-0.8,-0.8286,-0.8572,-1,-1,-1,-1,-1,-1,-1,0.2522,0.2524,0.2722,0.2958,0.31,0.3382,0.3746,0.4094,0.4204,0.1432,0.7204,0.7146,0.7546,0.8148,0.8342,0.881,0.9302,0.9994,1,1,-0.7866,0.1294,-0.5164,-0.4018,0.0506,0.4346,0.6336,1,-0.8202,-0.3034,-0.2134,-0.1012,0.1236,0.1686,0.3708,0.2584,0.3258,0.4158,0.4832,0.6854,0.6404,0.6404,0.573,0.6854,0.7304,0.7304,0.8876,0.7752,0.8876,0.955,0.9102,0.955,0.7304,1,1,0.9326,1,0.9326,0.6854,0.1686,-0.913,-0.2754,-0.1884,0.058,0.2898,0.2318,0.3044,0.2754,0.0724,0.058,0.6086,0.4928,0.3478,0.3624,0.6522,0.5072,0.3914,0.3044,0.6812,0.4928,0.5798,0.5508,0.7682,0.7826,0.942,0.9856,0.884,1,0.8696,0.9856,0.884,0.2464,-0.4412,0,-0.3382,-0.2648,-0.3236,-0.1912,-0.0442,0.0736,0.2058,-0.0148,0.5,0.0294,0.147,0.3824,0.3382,0.25,0.1324,0.2942,0.4706,0.353,0.3824,0.5442,0.7206,0.7648,1,0.8236,0.7058,0.8676,0.6324,0.75,0.8088,0.5,-0.3238,-1,-1,1,-1,-1,-1,-0.7334,-1,-0.1352,0.2792,0.2792,0.4054,0.3514,0.1172,0.4594,0.4054,0.4954,0.4774,0.6216,0.8018,0.8198,0.8558,0.7118,0.5676,0.5676,0.6756,0.2972,0.2972,0.2432,0.5316,0.6936,1,0.5136,0.4774,0.7658,0.6756,0.2972,0.027,0.2432,0.063,'4'
-0.228,0.4588,0.4698,0.0604,0.011,-0.3544,-0.3818,-0.3874,-0.3708,-0.5028,-0.5164,-0.3572,-0.4286,-0.2528,-0.2858,-0.2252,-0.2554,-0.2336,-0.2528,0.0164,0.044,0.4642,0.599,0.9506,0.9642,0.6126,0.588,0.6538,0.8352,1,0.9258,0.8682,-0.187,0.3474,0.3364,0.1804,0.1336,-0.1894,-0.2472,-0.1894,-0.2584,-0.2962,-0.3698,-0.216,-0.285,-0.1714,-0.245,-0.107,-0.1894,-0.0378,-0.1224,0.1202,0.1292,0.4632,0.6526,0.98,0.893,0.666,0.5812,0.7462,0.7104,1,0.911,0.8776,-0.1668,0.371,0.335,0.3302,0.2436,-0.1596,-0.275,-0.1572,-0.3038,-0.275,-0.4406,-0.287,-0.2654,-0.1308,-0.2292,-0.1068,-0.1476,-0.0564,-0.0108,0.0708,0.2388,0.3398,0.784,0.8632,0.9472,0.9832,0.784,0.8032,0.9856,1,0.9496,0.9304,-0.243,0.2404,0.1686,0.312,0.105,-0.2324,-0.2802,-0.259,-0.4448,-0.4926,-0.4742,-0.5166,-0.3892,-0.4874,-0.3892,-0.405,-0.3148,-0.2828,-0.2112,-0.097,0.0252,0.3254,0.5962,0.915,1,0.8672,0.6812,0.769,0.8406,0.984,0.9096,0.8168,-0.2872,0.1188,0.5116,0.5544,-0.2608,-0.5182,-0.5544,-0.5808,-0.6798,-0.8284,-0.7492,-0.7194,-0.6238,-0.5478,-0.5974,-0.5644,-0.528,-0.462,-0.4192,-0.297,-0.198,0.1882,0.5742,0.8844,0.9802,0.924,0.726,0.759,0.8778,1,0.9108,0.7458,-0.1906,0.2652,0.8506,0.7132,-0.4302,-0.5442,-0.5718,-0.6424,-0.8664,-0.7288,-0.8192,-0.9528,-0.7014,-0.6032,-0.666,-0.7642,-0.5402,-0.5402,-0.6856,-0.442,-0.1984,-0.0492,0.3046,0.8468,1,0.8624,0.4932,0.6778,0.8154,0.8114,0.5088,0.4656,0.0142,0.4834,1,0.9052,-0.2938,-0.635,-0.7346,-0.7252,-0.7536,-0.7678,-0.9432,-0.6398,-0.6066,-0.635,-0.635,-0.5734,-0.5308,-0.417,-0.6778,-0.7014,-0.5402,-0.3176,0.0664,0.5214,0.7346,0.526,0.2322,0.3176,0.4644,0.5498,0.0048,-0.038,0.2558,0.907,1,0.8604,0.4884,0.0232,-0.0232,-0.3024,-0.0232,-0.1162,0.0698,0.0698,-0.0232,0.1628,0.2094,-0.0232,-0.1162,-0.2558,-0.0232,0.0232,-0.0232,0.4418,0.6744,0.8604,1,0.628,0.5814,0.5814,0.7674,0.907,0.814,0.5814,-0.1698,0.585,0.6226,0.2076,-0.0188,-0.283,-0.3208,-0.2076,-0.2076,-0.585,-0.5094,-0.3962,-0.283,-0.2452,-0.1698,-0.2076,-0.0944,-0.3584,-0.0188,-0.0188,0.283,0.434,0.6604,0.8114,0.8868,0.7358,0.7358,0.6982,1,1,0.9246,0.9622,-0.247,0.1764,0.5764,0.553,-0.4824,-0.4588,-0.553,-0.553,-0.6942,-0.7176,-0.6706,-0.5294,-0.553,-0.4118,-0.3412,-0.3882,-0.4588,-0.4588,-0.5294,-0.4118,-0.247,0.1764,0.4352,1,1,0.8588,0.647,0.647,0.7648,0.953,0.9058,0.6236,-1,-1,-1,-1,-1,-1,-1,-0.9674,-0.974,-0.9674,-0.9584,0.6424,0.6138,0.7308,0.6034,0.485,0.3212,0.1846,0.104,-0.1028,-0.3356,-0.5864,-0.9076,-0.9674,-0.9154,-0.974,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9822,-0.9834,-0.9794,-0.9632,0.0144,0.5918,0.8638,0.8868,0.6832,0.2992,0.0112,-0.3526,-0.6172,-0.7588,-0.8372,-0.9592,-0.9738,-0.9532,-0.9818,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.906,-0.94,-0.82,-0.4034,-0.36,0.0066,0.0622,0.0222,0.18,0.076,-0.08,-0.484,-0.664,-0.766,-0.874,-0.86,-0.7868,-0.7534,-0.8934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.0572,-0.9428,-0.0572,1,1,-0.2858,-0.9428,-0.8286,-0.8858,-0.9428,-0.8,-0.4,-0.4,-0.3428,-0.4,-0.2572,-0.8,-0.5714,-0.4572,-1,-1,-1,-1,-1,-1,-1,-0.1632,-0.1488,-0.111,-0.1006,-0.069,-0.0216,0.01,0.0542,0.1208,-0.1368,1,1,1,1,1,1,1,1,1,1,-0.7334,0.1294,-0.9644,-0.7556,0.045,0.311,0.4604,1,0.0674,0.3252,0.3742,0.6196,0.4234,0.3252,0.5706,0.4724,0.6196,0.5828,1,0.8036,0.9018,0.9142,0.5214,0.2392,0.3742,0.4724,0.4478,0.6074,0.092,0.681,0.4602,0.3742,0.1534,0.3496,0.3496,0.4602,0.227,0.0798,0.0552,-0.2638,0.0666,0.28,0.3734,0.3866,0.1734,-0.1334,0.56,0.7466,0.6,0.6934,0.8534,1,0.7466,0.4934,0.5066,0.5466,0.48,0.5466,0.4134,0.36,0.3466,0.6134,0.4934,0.56,0.4266,0.6,0.64,0.3866,0.2934,0.3334,0.1066,-0.7734,-0.3886,-0.3566,0.0192,0.0636,-0.1592,-0.223,0.0636,-0.0764,0.0764,-0.0446,0.0254,0.3886,0.3184,0.4076,0.4778,0.586,0.484,1,0.9746,0.223,0.07,0.0064,-0.172,-0.102,0.1848,0.1274,-0.0382,-0.121,0.0382,0.172,-0.223,-0.5732,-0.9984,1,-1,-1,-1,-1,-1,-1,-1,-0.2526,0.0304,-0.192,0.1112,0.1718,0.0304,0.192,-0.0506,0.091,0.091,0.596,0.697,0.5556,0.495,1,1,0.4546,0.394,0.2526,0.3536,0.495,0.3334,0.4748,0.3738,0.3738,0.4142,0.2526,0.2526,-0.091,-0.0506,0.1112,-0.5556,'5'
-0.682,0.4744,0.632,0.3298,-0.13,-0.2248,-0.2852,-0.2432,-0.5848,-0.4534,-0.5768,-0.4296,-0.456,-0.3666,-0.3062,-0.3902,-0.2668,-0.3272,-0.109,-0.1484,0.201,0.2982,0.6084,1,0.9028,0.5612,0.5664,0.6346,0.795,0.6584,0.5532,0.5532,-0.4942,0.5954,0.712,0.3048,0.1128,-0.0428,-0.0506,-0.0766,-0.2762,-0.1674,-0.4734,-0.175,-0.3022,-0.1232,-0.118,-0.1258,0.0142,-0.2582,0.092,0.0064,0.4034,0.4578,0.8132,1,0.8106,0.8702,0.8366,0.9092,0.9948,0.6264,0.8988,0.7588,-0.5058,0.511,0.6216,0.1892,0.184,-0.0064,-0.0554,-0.1326,-0.2356,-0.184,-0.3952,-0.2252,-0.4518,-0.094,-0.166,-0.0786,-0.0348,-0.1248,0.0348,-0.0836,0.3178,0.251,0.7324,0.7838,0.8276,1,0.789,0.9176,0.8558,0.8842,0.946,0.637,-0.2966,0.4226,0.4594,0.228,0.2692,-0.102,-0.031,-0.2852,-0.2164,-0.3586,-0.276,-0.3082,-0.1958,-0.1868,-0.1066,-0.0836,-0.1386,-0.095,-0.0698,0.0974,0.1408,0.4112,0.59,0.8808,1,0.9152,0.748,0.7686,0.8626,0.858,0.7458,0.6746,-0.2094,0.281,0.372,0.54,0.2314,-0.0826,-0.3112,-0.372,-0.405,-0.4462,-0.449,-0.3856,-0.3278,-0.325,-0.2672,-0.292,-0.237,-0.2396,-0.146,0.011,0.1598,0.394,0.6584,0.9228,1,0.9284,0.7438,0.7658,0.9338,0.9008,0.7134,0.5426,-0.2896,0.1582,0.7744,0.734,-0.175,-0.4546,-0.5252,-0.4748,-0.724,-0.7172,-0.7508,-0.761,-0.67,-0.5824,-0.6228,-0.6196,-0.6128,-0.6632,-0.542,-0.394,-0.1886,0.0842,0.5556,0.9494,1,0.606,0.4714,0.5218,0.6532,0.458,0.3064,0.0842,-0.2308,0.3576,0.8808,0.7346,-0.1384,-0.3116,-0.4576,-0.4424,-0.6616,-0.8,-0.8962,-0.65,-0.623,-0.8,-0.6654,-0.7808,-0.6076,-0.577,-0.6576,-0.6154,-0.3576,0.127,0.6692,1,0.8192,0.4384,0.6116,0.773,0.6384,0.3346,0.1192,-0.0846,-0.491,0.5272,0.7818,0.6,-0.0546,-0.0182,-0.2364,-0.2,-0.3454,-0.2728,-0.1636,-0.1636,-0.309,-0.3454,-0.3454,-0.0546,-0.0546,-0.2,0.0546,0.0182,0.2364,0.2728,0.8182,1,0.891,0.4546,0.5272,0.5272,0.8182,0.7454,0.3454,0.4182,-0.64,0.6,0.76,0.52,0.04,-0.16,-0.36,-0.16,-0.2,-0.4,-0.4,-0.4,-0.4,-0.24,-0.12,-0.12,-0.36,-0.04,0,0.08,0.24,0.52,0.56,1,1,0.84,0.72,0.88,0.8,0.64,0.84,0.8,-0.3,0.075,0.575,0.65,-0.1,-0.35,-0.375,-0.475,-0.525,-0.7,-0.625,-0.6,-0.55,-0.525,-0.35,-0.525,-0.525,-0.425,-0.225,-0.15,0,0.25,0.475,0.875,1,0.675,0.575,0.675,0.825,0.875,0.6,0.275,-1,-1,-1,-1,-1,-1,-1,-0.9742,-0.9676,-0.8206,-0.5442,0.466,0.981,0.9638,0.8112,0.5308,0.2408,0.032,0.0844,0.091,-0.1522,-0.5278,-0.734,-0.936,-0.9714,-0.9714,-0.9742,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9696,-0.9638,-0.8282,-0.5686,0.4892,0.8168,0.7386,0.9322,0.8632,0.8126,0.5254,0.1376,-0.1026,-0.349,-0.6318,-0.8006,-0.939,-0.9558,-0.957,-0.961,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9068,-0.95,-0.82,-0.7668,-0.6512,-0.646,-0.684,-0.644,-0.398,-0.376,-0.268,-0.624,-0.798,-0.894,-0.844,-0.8334,-0.5834,-0.68,-0.76,-0.8534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,0.8858,1,1,1,-0.4572,-1,-0.5714,-0.7428,-0.9428,-0.7714,-0.4572,-0.6572,-0.7428,-0.1142,-0.4858,-0.7142,-0.9142,-0.9714,-0.9428,-1,-1,-1,-1,-1,-1,0.0404,0.099,0.113,0.131,0.1454,0.173,0.182,0.2242,0.2738,0.1492,1,1,1,1,0.9854,1,0.9874,1,1,1,-0.8666,0.1648,-0.5374,-0.3048,0.4426,0.8748,0.9656,-0.3666,0.0464,0.3774,0.2716,0.563,0.4172,0.6688,0.9868,1,0.9602,0.7218,0.735,0.8676,0.8676,0.8544,0.6292,0.7616,0.7484,0.3774,0.457,0.2848,0.7616,0.4304,0.2186,0.8014,0.4438,0.4304,0.6822,0.245,0.6026,0.4304,-0.0464,-0.1126,-0.0384,0.3558,0.327,0.2596,0.4904,0.3558,0.5674,0.6634,0.6538,0.577,0.8076,1,0.798,0.4326,0.5866,0.577,0.4038,0.5,0.5,0.6826,0.2404,0.202,0.4134,0.3846,0.048,0.3366,0.3076,0.3558,0.4326,0.702,0.3654,-0.2116,-0.2176,0.9482,0.2384,-0.088,-0.2538,-0.3056,-0.2642,-0.0984,-0.1192,-0.114,0.5234,0.969,1,0.741,0.9586,0.6788,0.5648,0.6944,0.9068,0.6684,0.342,0.1814,0.1606,-0.057,-0.2384,-0.2642,-0.1658,-0.2902,0.1398,0.4612,0.1036,-0.0984,-0.984,1,-1,-1,-1,-0.2,-1,-1,-1,-0.353,0.3726,0.0588,0.0588,-0.2942,0,0.1568,0.1764,0.1568,-0.1568,0.098,1,0.8236,0.902,0.9412,0.3138,0.2746,0.7844,0.902,0.3922,0.0588,-0.1568,0.0784,0.098,-0.5294,-0.3726,-0.1372,-0.0392,-0.0784,0.0588,-0.0392,-0.5686,'5'
-0.1578,0.3052,0.1894,0.0948,0.5736,0.7264,0.9684,0.9316,0.5264,0.3052,0.3052,0.221,0.3106,0.379,0.4474,0.5948,0.9106,1,0.8736,0.6894,0.6632,0.679,0.7894,0.821,0.9422,0.9684,0.7316,0.5368,0.4422,0.2474,0.221,0.221,-0.2934,0.0658,-0.1498,-0.0538,0.2934,0.7366,0.8264,0.8922,0.8084,0.4072,0.2694,0.2396,0.3772,0.3772,0.485,0.7426,0.9162,1,0.6288,0.503,0.461,0.455,0.479,0.6526,0.7486,0.7006,0.3772,0.2096,0.1616,0.1796,0.0778,0,-0.359,-0.0512,-0.1642,-0.118,0.1076,0.6052,0.7436,1,0.8052,0.3436,0.3334,0.3282,0.4102,0.4564,0.6206,0.7488,0.9384,0.8462,0.4616,0.3948,0.3846,0.2718,0.4154,0.441,0.6206,0.4462,0.3846,0.0564,-0.0616,-0.077,-0.123,-0.1744,-0.3878,-0.0608,0.0468,0.0794,0.1588,0.6122,0.7102,1,0.9206,0.5468,0.3832,0.4066,0.6122,0.6214,0.7242,0.93,0.8038,0.4486,0.299,0.3178,0.243,0.285,0.3552,0.3926,0.5794,0.6214,0.3832,0.0934,0.0046,-0.187,-0.2616,-0.2664,-0.3584,0.1194,0.1416,0.3142,0.416,0.6194,0.9734,0.9778,0.7964,0.6682,0.6416,0.6328,0.7566,0.8452,1,0.885,0.5354,0.416,0.2654,0.2522,0.2212,0.2036,0.2256,0.2876,0.5176,0.5796,0.4116,0.2434,0.031,0.0088,0.0222,-0.0486,-0.2384,0.4808,0.523,0.6,0.6616,0.9076,1,0.9576,0.9808,0.7846,0.7616,0.7808,0.9384,0.977,0.873,0.6116,0.3962,0.2692,0.1346,0.2076,0.223,0.1616,0.1692,0.2962,0.423,0.55,0.5462,0.3654,0.2654,0.1384,0.1462,0.0192,-0.7334,0.4154,0.5384,0.1026,0.3488,0.5538,1,0.9436,0.2052,0.2308,0.2256,0.3538,0.4256,0.682,0.6206,0.041,-0.2718,-0.4154,-0.3642,-0.4924,-0.1794,-0.1334,-0.2924,-0.2564,-0.0974,0.3128,0.3948,0.1334,-0.0308,-0.2102,-0.2564,-0.4052,0.2468,0.5844,0.5324,0.4806,0.6104,0.8962,0.948,0.922,0.6884,0.5324,0.5064,0.4286,0.4806,0.5064,0.4286,0.5324,0.6624,0.6884,0.7142,0.6884,0.6364,0.7662,0.8182,0.8962,1,0.974,0.8182,0.6364,0.6624,0.4286,0.4026,0.3506,-0.1186,0.2542,0.1186,0.1526,0.4916,0.661,0.8984,0.8644,0.4916,0.322,0.356,0.322,0.356,0.4576,0.5254,0.6272,0.8984,1,0.8644,0.5254,0.5932,0.6272,0.695,0.7628,0.8984,0.8644,0.695,0.5594,0.4238,0.4576,0.4238,0.3898,-0.2126,0.3386,0.3386,0.4646,0.4804,0.7952,0.7796,1,0.9686,0.622,0.6692,0.748,0.7796,0.8898,0.8898,0.4804,0.496,0.307,0.1024,0.1338,0.244,0.1812,0.2126,0.3228,0.5276,0.5276,0.622,0.3386,0.2284,0.1812,0.1024,0.0236,-1,-1,-1,-1,-1,-1,-1,-0.9562,-0.9708,-0.927,-0.2106,0.3274,0.4732,0.1848,0.0988,0.1928,0.2902,0.5252,0.7876,0.846,0.9238,0.1962,-0.726,-0.8184,-0.9108,-0.9238,-0.9416,-0.9336,-0.9498,-0.9304,-0.94,-0.9238,-0.9158,-1,-1,-1,-1,-1,-1,-1,-0.9762,-0.9804,-0.8962,-0.2264,0.3944,0.613,0.2124,0.2124,0.6284,0.8516,0.7784,0.9498,0.7048,0.223,-0.3314,-0.8324,-0.869,-0.8622,-0.8396,-0.7696,-0.815,-0.7968,-0.7928,-0.7912,-0.826,-0.883,-1,-1,-1,-1,-1,-1,-1,-0.9092,-0.92,-0.9034,-0.5034,-0.588,-0.528,-0.56,-0.612,-0.612,-0.58,-0.6068,-0.59,-0.6468,-0.6934,-0.69,-0.2434,0.1132,0.1732,0.5966,0.66,0.6366,0.54,0.4,0.62,0.4,0.28,-1,-1,-1,-1,-1,-1,-1,-0.3142,-0.2286,1,1,1,-0.4,-0.7142,-0.8572,-0.8572,-0.7714,-0.8286,-0.5714,0.3428,0.9142,1,1,0.4,-0.7714,-0.7714,-0.8572,-0.8,-0.8,-0.8286,-0.8858,-0.3714,0.4286,1,1,1,1,1,1,1,1,1,1,0.3868,0.3868,0.3394,0.3006,0.1838,0.0994,0.034,-0.135,-0.3474,-0.6434,-0.6266,-0.4,-0.2278,-0.132,0.59,0.7682,0.3558,1,-0.4564,-0.0874,0.1068,0.4952,0.3786,0.3204,0.3204,0.5728,0.8834,0.9224,0.8252,0.8834,1,0.903,0.7282,0.6504,0.767,0.864,0.8252,0.7282,0.7282,0.6894,0.5922,0.4368,0.2038,0.0874,-0.0486,-0.3398,-0.2816,-0.4758,-0.4758,-0.6504,-0.2112,-0.0112,0.7444,1,0.6,0.2888,0.2444,0.3112,0.7666,0.9,0.6112,0.6222,0.8778,0.6444,0.2556,0.3334,0.3,0.4888,0.3666,0.2,0.4444,0.1222,0.1222,0.0112,-0.0444,-0.1778,-0.0778,-0.0112,-0.4666,-0.5,-0.3,-0.3666,0.1386,0.3138,0.5036,0.8978,0.708,0.197,0.3868,0.4452,1,0.9708,0.708,0.7518,0.8978,0.7226,0.5036,0.27,0.3722,0.27,0.4598,0.27,0.416,0.3138,0.2554,0.3138,0.0218,0.0218,0.124,-0.0072,-0.4744,-0.3722,-0.2408,-0.3576,0.8788,-1,-1,1,-1,-1,-0.8,-0.7334,-1,-0.5232,-0.4702,-0.404,-0.2052,-0.0994,0.2318,0.3908,0.3908,0.298,0.457,0.3774,0.4966,0.6292,0.6292,0.457,0.5894,0.4304,0.5364,0.6688,0.8808,0.7484,0.947,0.9072,1,0.7616,0.6556,0.7748,0.7086,0.351,0.6158,0.563,0.298,'6'
-0.3534,0.3984,0.436,0.406,0.4888,0.9624,1,0.9924,0.8572,0.5188,0.4286,0.421,0.391,0.4962,0.4512,0.7518,0.7594,0.8572,0.9248,0.7294,0.6616,0.6766,0.6542,0.7894,0.6842,0.8496,0.7518,0.4436,0.3834,0.3234,0.3534,0.3234,-0.3576,0.194,0.1454,0.2424,0.4,0.6848,0.6666,0.8728,0.7334,0.406,0.2606,0.4182,0.394,0.5152,0.6364,0.7454,0.9212,1,0.6424,0.6606,0.5636,0.6122,0.6484,0.691,0.8666,0.8788,0.5576,0.4424,0.3696,0.3334,0.3272,0.2728,-0.3156,0.1504,0.0914,0.2448,0.4868,0.6402,0.8054,0.9292,0.652,0.4868,0.357,0.357,0.5398,0.4572,0.6992,0.705,1,0.9056,0.5988,0.4986,0.5576,0.4808,0.5576,0.6756,0.7404,0.587,0.4336,0.2744,0.2744,0.1386,0.2154,0.2272,-0.3884,0.0214,0.052,0.1926,0.3456,0.4618,0.9694,0.9634,0.523,0.425,0.5168,0.425,0.4984,0.6758,0.682,1,0.951,0.6452,0.4924,0.5412,0.4006,0.4434,0.5658,0.578,0.7004,0.6392,0.4862,0.3088,0.2782,0.1376,0.1192,0.101,-0.374,0.0086,0.1014,0.229,0.3334,0.5188,0.8782,0.8144,0.6696,0.5014,0.5536,0.5536,0.5478,0.7218,0.8782,1,0.7682,0.6406,0.426,0.4086,0.4318,0.3392,0.426,0.658,0.716,0.6,0.571,0.3856,0.2754,0.1826,0.0956,0.1246,-0.4304,-0.0938,0.1456,0.2298,0.3398,0.5988,0.7734,0.7606,0.8058,0.547,0.4822,0.5146,0.6504,0.7088,1,0.9288,0.5598,0.3334,0.2556,0.1974,0.1068,0.1522,0.2362,0.398,0.5276,0.5922,0.3722,0.2816,0.1004,-0.081,0.0032,-0.0486,-0.2842,0.144,0.0996,0.0702,-0.0848,0.631,0.7196,1,0.8966,0.4096,0.2768,0.358,0.5572,0.8008,0.786,0.3948,0.3874,-0.2988,-0.358,-0.3654,-0.3948,-0.4096,-0.0996,0.0332,0.3874,0.2988,0.1292,-0.0848,-0.2178,-0.1956,-0.3284,-0.5646,-0.4584,0.3334,0.4166,0.25,0.5,0.6666,1,0.9166,0.5834,0.5,0.2916,0.2916,0.3334,0.1666,0.0416,0.3334,0.4584,0.6666,0.7084,0.6666,0.625,0.5834,0.625,0.625,0.6666,0.5834,0.5,0.4166,0.2916,0.25,0.2916,0.3334,-0.36,0.28,0.24,0.28,0.48,0.84,0.72,0.96,0.88,0.52,0.48,0.56,0.52,0.6,0.64,0.92,0.92,1,0.96,0.76,0.68,0.72,0.68,0.88,0.84,0.88,0.84,0.56,0.48,0.52,0.44,0.36,-0.4758,-0.1068,0.1068,0.2038,0.3204,0.5728,0.8058,0.6504,0.7476,0.5146,0.5146,0.5146,0.6116,0.7088,1,1,0.5922,0.4368,0.3592,0.2816,0.2622,0.3204,0.301,0.4564,0.5534,0.631,0.4174,0.3592,0.165,0.068,0.1262,0.0292,-1,-1,-1,-1,-1,-1,-1,-0.9488,-0.9634,-0.9468,-0.7546,0.4066,0.566,0.7088,0.8516,0.9652,0.9744,0.9396,0.9066,0.696,0.1484,-0.3132,-0.5348,-0.8572,-0.7436,-0.511,-0.903,-0.9194,-0.9524,-0.945,-0.9414,-0.9358,-0.9212,-1,-1,-1,-1,-1,-1,-1,-0.9612,-0.9776,-0.9778,-0.7862,-0.201,0.108,0.4184,0.7228,0.9514,0.9064,0.9784,0.7842,0.3724,-0.1478,-0.697,-0.7158,-0.8266,-0.9018,-0.858,-0.9166,-0.907,-0.904,-0.899,-0.8994,-0.8954,-0.8914,-1,-1,-1,-1,-1,-1,-1,-0.792,-0.92,-0.8734,-0.5368,-0.7,-0.66,-0.675,-0.675,-0.61,-0.67,-0.615,-0.63,-0.58,-0.645,-0.645,-0.5568,-0.2634,-0.2434,-0.27,0.0732,0.4232,0.5332,0.3932,0.4566,0.33,0.5466,-1,-1,-1,-1,-1,-1,-1,0.0858,-0.8,1,1,1,1,0.2,-0.9142,-0.8858,-0.8858,-0.9428,0,1,1,1,-0.2,-0.1428,0.5142,0.1142,-0.8572,-0.8286,-0.7714,-0.9142,-1,-0.9428,-0.9142,1,1,1,1,1,1,1,1,1,1,0.0774,0.0774,0.0854,0.096,0.0848,0.058,0.0408,-0.0106,-0.1956,-0.5364,-0.6934,-0.6118,-0.6778,-0.4396,0.013,0.2324,0.4444,0.8834,-0.2692,-0.1154,0.2308,0.5,0.6154,0.5,0.5384,0.577,0.7692,0.7692,0.8846,0.923,1,0.9616,0.7692,0.577,0.577,0.5,0.577,0.4616,0.577,0.5384,0.5384,0.423,0.3076,0.2692,0.1154,-0.0384,-0.1924,-0.1924,-0.1924,-0.5,-0.1428,0.042,0.3614,0.7478,0.6302,0.2774,0.395,0.5798,0.9496,0.9496,0.7984,0.731,1,0.916,0.6302,0.395,0.5294,0.6134,0.4958,0.5294,0.6302,0.479,0.3782,0.395,0.0084,0.0588,0.0756,-0.1596,-0.1596,-0.2774,-0.1764,-0.4454,0.4368,0.7088,0.7476,1,0.8058,0.4564,0.5728,0.4368,0.67,0.7476,0.7476,0.67,0.903,0.7864,0.3786,0.2622,0.4368,0.5146,0.5146,0.3786,0.767,0.3204,0.3398,0.2038,0.0874,0.0292,-0.0874,-0.0486,0.0098,-0.0486,-0.1262,-0.4758,-0.0392,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.8036,-0.5714,-0.5892,-0.3928,-0.125,-0.0714,-0.1428,0.2142,0.3036,0.4286,0.5536,0.4286,0.5358,0.6428,0.5892,0.4822,0.2322,0.2142,0.625,0.75,0.7678,0.75,0.8392,1,0.75,0.875,0.7322,0.75,0.5714,0.6786,0.4464,0.0536,'6'
-0.182,0.3542,0.2682,0.4012,0.135,-0.405,-0.276,-0.315,-0.4442,-0.542,-0.542,-0.3698,-0.2602,-0.3268,-0.2916,-0.1586,-0.1624,0.1664,0.3502,0.5852,1,0.9882,0.679,0.8434,0.9492,0.9492,0.6908,0.6164,0.6516,0.6008,0.6712,0.7964,-0.3248,0.1596,0.4826,0.6366,0.3028,-0.4166,-0.266,-0.3358,-0.3138,-0.4422,-0.3394,-0.3284,-0.3138,-0.1744,-0.233,-0.0496,-0.0202,0.112,0.3614,0.5926,1,0.9926,0.8568,0.8166,0.9376,0.9156,0.8312,0.7212,0.71,0.6036,0.633,0.7468,-0.3974,-0.0232,0.4966,0.6026,0.192,-0.3908,-0.3576,-0.4438,-0.3476,-0.5034,-0.4934,-0.2748,-0.3708,-0.2716,-0.1258,-0.1026,0.01,-0.043,0.1158,0.5066,0.6026,1,0.9536,0.8178,0.7948,0.914,0.7948,0.7716,0.7218,0.586,0.5828,0.7186,-0.3212,0.1094,0.5584,0.6678,0.219,-0.3176,-0.416,-0.5402,-0.4452,-0.4636,-0.4708,-0.3576,-0.4014,-0.2446,-0.197,-0.1716,0.011,-0.0694,0.0292,0.4198,0.4928,1,0.9526,0.8942,0.865,0.9636,0.9124,0.9052,0.7992,0.6752,0.5584,0.7226,-0.3778,0.0648,0.5458,0.668,0.168,-0.3244,-0.4046,-0.5076,-0.4352,-0.6184,-0.6756,-0.4694,-0.481,-0.4198,-0.2748,-0.2138,-0.126,-0.1642,-0.023,0.2328,0.4198,0.832,0.8664,1,0.9008,0.8436,0.8894,0.9694,0.729,0.6298,0.4962,0.5496,-0.3528,0.2086,0.384,0.6062,0.349,-0.1072,-0.4152,-0.4074,-0.3646,-0.4346,-0.4658,-0.5126,-0.4036,-0.3918,-0.345,-0.3646,-0.2592,-0.2788,-0.119,0.041,0.427,0.6452,0.9532,1,0.9572,0.7466,0.7816,0.8674,0.805,0.4386,0.4074,0.4698,-0.3808,0.6294,0.6244,0.594,0.528,-0.1574,-0.2436,-0.4924,-0.5532,-0.7158,-0.6346,-0.533,-0.5532,-0.4366,-0.6294,-0.5686,-0.4264,-0.3908,-0.6092,-0.4416,0.005,0.066,0.6954,0.9898,1,0.5888,0.7006,0.797,0.6446,0.2336,0.132,0.1878,0.0204,0.5102,0.3878,0.2654,0.0612,-0.0204,-0.2244,-0.102,-0.1428,-0.102,-0.4694,-0.3062,-0.102,-0.102,-0.1428,-0.0204,-0.1428,0.347,0.3878,0.4286,0.796,0.551,0.796,0.9184,0.8776,0.8776,0.6734,0.6734,0.2654,0.551,0.9592,1,-0.2444,0.2444,0.1112,0.3778,0.0222,-0.5556,-0.2888,-0.2888,-0.5112,-0.5556,-0.4222,-0.3334,-0.2,-0.2888,-0.1556,-0.2,-0.0222,0.2,0.3778,0.4666,1,0.9556,0.5112,0.7334,0.9112,0.7334,0.6,0.6888,0.7334,0.5556,0.4222,0.7778,-0.3978,0.0108,0.4624,0.613,0.2474,-0.4838,-0.2904,-0.3978,-0.3334,-0.4624,-0.4624,-0.2688,-0.3334,-0.2258,-0.1182,-0.0108,0.0322,0.0108,0.3334,0.5914,0.8494,0.7634,0.914,0.914,0.8924,1,0.828,0.785,0.656,0.6774,0.7204,0.613,-1,-1,-0.956,-0.9614,-0.9192,-0.9156,-0.9284,-0.9412,-0.9578,-0.9248,-0.4104,0.2672,0.7374,0.8586,0.956,0.7888,0.5354,0.3242,0.2396,-0.0028,-0.2636,-0.3608,-0.6364,-0.8934,-0.945,-0.9468,-0.9578,-1,-1,-1,-1,-1,-1,-1,-1,-0.9674,-0.966,-0.7494,-0.5892,-0.2844,0.2134,0.8726,0.6024,0.2576,-0.0546,0.503,0.703,0.9094,0.8262,0.3654,0.096,0.0084,-0.1126,-0.4704,-0.6306,-0.8146,-0.9182,-0.9472,-0.9522,-0.9646,-1,-1,-1,-1,-1,-1,-1,-1,-0.8934,-0.94,-0.65,0.2832,0.6132,0.5832,0.6532,0.7432,0.4966,-0.4372,-0.4172,-0.3572,-0.503,-0.455,-0.5076,-0.5,-0.72,-0.58,-0.6676,-0.8426,-0.7734,-0.5334,-0.4934,-0.7534,-0.9468,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,0.1428,1,1,1,0.1428,-0.2858,-0.1428,1,1,0.3142,-0.8572,-0.9142,-1,-0.9714,-1,-1,-0.6,-0.6,0.1428,-0.2572,-0.6572,-0.8286,-0.6,-0.7142,-1,-1,-1,-1,-1,-1,-0.0668,-0.054,-0.0424,-0.0086,0.0064,0.0162,0.0474,0.0684,0.065,0.0686,0.9064,0.9032,0.9396,0.928,0.9486,0.9802,1,1,1,1,-0.6666,-0.1294,0.117,-0.0272,-0.0756,0.0562,0.569,0.3,-0.579,-0.2698,-0.2172,-0.1382,-0.1118,-0.0756,0.069,0.1644,0.3718,0.6546,0.704,0.7796,0.8124,0.8224,1,0.8322,0.8388,0.5822,0.5098,0.4408,0.477,0.5032,0.5164,0.4606,0.375,0.2698,0.3092,0.0756,0.0954,0.069,-0.079,-0.4014,-0.8066,-0.7268,-0.5648,-0.451,-0.414,-0.448,-0.2318,-0.0554,0.2318,0.4224,0.67,0.69,0.778,0.8492,1,0.9318,0.8834,0.7638,0.8806,0.7952,0.8776,0.7838,0.7924,0.8406,0.8834,0.5732,0.6814,0.3684,0.4396,0.4254,0.2432,-0.0668,-0.5578,-0.414,-0.6198,-0.6056,-0.493,-0.4704,-0.4536,-0.107,0.138,0.4282,0.6816,0.6648,0.9184,0.7718,0.707,0.9578,1,0.6816,0.8422,0.8198,0.7522,0.707,0.7296,0.6478,0.8732,0.6676,0.724,0.493,0.3492,0.3662,0.386,-0.0338,-0.3452,-1,-1,1,-0.6,-1,-1,0.3334,-1,-0.3654,-0.25,-0.0192,-0.0384,-0.1154,0.0192,0.3654,0.1154,0.3654,0.0962,0.2884,0.827,0.8076,0.5576,1,0.7884,0.8654,0.7884,0.577,0.5576,0.3654,0.1924,0.5962,0.5192,0.3462,-0.0576,-0.2116,0.0962,-0.1346,-0.077,0.1154,-0.6538,'7'
-0.2874,0.474,0.5198,0.1926,0.2172,-0.211,-0.2386,-0.2232,-0.0672,-0.2844,-0.11,-0.2386,-0.0244,-0.0796,0.0826,0.0612,0.2874,0.2814,0.5536,0.578,0.9052,1,0.8226,0.8716,0.8104,0.9938,0.89,0.89,0.8502,0.7676,0.7646,0.7768,-0.1888,0.4,0.4084,0.4056,0.3888,-0.1212,-0.1324,-0.1184,-0.1126,-0.1522,-0.1408,-0.0564,-0.031,0.031,0.0846,0.1154,0.183,0.2676,0.3492,0.5578,0.6732,0.9184,1,0.8788,0.8986,0.893,0.907,0.8394,0.783,0.755,0.7464,0.755,-0.1734,0.34,0.3174,0.4132,0.337,-0.0944,-0.196,-0.1734,-0.2976,-0.3202,-0.3484,-0.1848,-0.2834,-0.148,-0.1142,0.007,-0.0352,0.0662,0.1932,0.2892,0.4724,0.5966,0.904,1,0.7856,0.7462,0.828,0.8758,0.7236,0.6812,0.6136,0.6136,-0.1288,0.3932,0.3756,0.619,0.4216,-0.09,-0.2028,-0.1746,-0.4568,-0.4814,-0.2804,-0.3616,-0.3298,-0.284,-0.1182,-0.2028,-0.157,-0.037,0.0512,0.1922,0.3262,0.7072,0.9224,1,0.9048,0.813,0.8624,0.8518,0.7884,0.7072,0.6578,0.5802,-0.1804,0.3032,0.8442,0.9632,0.3196,-0.4754,-0.2582,-0.5614,-0.6148,-0.5778,-0.705,-0.582,-0.6558,-0.5286,-0.3566,-0.4016,-0.2828,-0.2786,-0.1722,-0.0574,0.164,0.586,0.8114,1,0.9058,0.8812,0.8566,0.8894,0.8442,0.7746,0.5902,0.4796,-0.239,0.225,1,0.9258,-0.1786,-0.1416,-0.2762,-0.7354,-0.717,-0.819,-0.8608,-0.819,-0.6056,-0.5452,-0.6242,-0.7076,-0.5916,-0.6334,-0.6056,-0.3596,-0.2064,0.1276,0.717,0.819,0.6242,0.4292,0.4756,0.6194,0.5684,0.457,0.0488,0.0488,0.0192,0.5096,1,0.9064,-0.3168,-0.5042,-0.6088,-0.686,-0.752,-0.7906,-0.8622,-0.956,-0.686,-0.697,-0.7246,-0.6198,-0.5426,-0.3884,-0.5868,-0.752,-0.383,-0.1846,0.5426,0.7796,0.664,0.383,0.405,0.4326,0.405,0.1516,-0.0798,-0.0414,-0.0492,0.6394,0.705,0.3114,0.1476,0.082,0.1148,0.0164,0.1148,-0.0164,-0.0164,-0.1148,-0.1148,0.0492,-0.1804,0.1804,0.3442,0.4426,0.4754,0.377,0.705,0.6066,0.8032,0.9672,0.9344,1,1,0.7378,0.7378,0.1476,0.4426,0.7378,-0.2592,0.5186,0.5556,0.3334,0.3334,-0.2592,-0.2592,-0.2222,-0.1112,-0.3334,0,-0.1112,0.074,-0.1112,0.2592,0.1852,0.3334,0.4074,0.6666,0.7408,0.5556,0.926,0.7778,0.926,0.6296,1,0.963,0.963,0.8888,1,0.963,0.6666,-0.2,0.3334,0.92,0.9734,0.1734,-0.44,-0.2,-0.6534,-0.68,-0.5466,-0.7334,-0.7066,-0.8666,-0.4934,-0.36,-0.4666,-0.44,-0.4666,-0.3066,-0.04,0.1734,0.5734,0.6266,1,0.92,0.7866,0.7066,0.7334,0.8134,0.68,0.5466,0.4134,-1,-1,-0.9714,-0.9788,-0.9512,-0.9576,-0.9544,-0.946,-0.948,-0.9078,-0.1694,0.9078,0.9524,0.8432,0.6738,0.5476,0.4576,0.4872,0.4376,0.0996,-0.3178,-0.554,-0.876,-0.963,-0.9598,-0.93,-0.9692,-1,-1,-1,-1,-1,-1,-1,-1,-0.9836,-0.9852,-0.8562,-0.6838,-0.4022,0.1312,0.6772,0.8704,0.3382,0.2868,0.9292,0.7084,0.4188,0.1356,-0.1918,-0.296,-0.4312,-0.6102,-0.7662,-0.8498,-0.9508,-0.9744,-0.9726,-0.9656,-0.98,-1,-1,-1,-1,-1,-1,-1,-1,-0.8668,-0.9334,-0.4134,0.4666,0.69,0.6732,0.78,0.75,0.5632,-0.36,-0.19,-0.3026,-0.2026,-0.2628,-0.45,-0.7576,-0.8426,-0.9376,-0.9426,-0.9476,-0.7534,-0.6868,-0.7534,-0.7934,-0.76,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,1,0.2572,-0.2572,-0.2,1,1,0.6572,-0.6,-0.7142,-0.7428,-0.7142,-0.7714,-0.4286,-0.6572,-0.3142,-0.6572,-0.6572,-0.8572,-0.8858,-0.8,-0.4572,-1,-1,-1,-1,-1,-1,0.102,0.1156,0.116,0.135,0.14,0.1522,0.18,0.2172,0.2276,0.004,0.9286,0.9298,0.8934,0.9396,0.9738,0.9968,1,1,1,1,-0.72,-0.0942,0.2224,0.0492,0.1444,0.825,0.9886,0.3,-0.7426,-0.6106,-0.5762,-0.3344,-0.1836,-0.1712,0.0486,0.2842,0.3626,0.4442,0.4756,0.6106,0.7426,0.8712,1,0.8964,0.777,0.7552,0.6704,0.6924,0.5102,0.4882,0.5416,0.507,0.6546,0.6232,0.5792,0.416,0.4004,0.3438,0.3218,-0.0298,-0.9508,-0.7354,-0.5908,-0.4734,-0.3642,-0.266,-0.2088,-0.0778,0.135,0.457,0.4952,0.6016,0.88,0.8226,0.9536,0.9836,0.9754,0.9508,0.899,0.94,0.8826,0.8226,0.9208,0.94,0.9428,1,0.85,0.7436,0.5962,0.4298,0.4598,0.1268,-0.5404,-0.3478,-0.4814,-0.3736,-0.24,-0.2606,-0.1758,-0.0064,0.1168,0.5378,0.6432,0.7176,1,0.959,0.9614,0.9178,0.9846,0.9076,0.8024,0.846,0.9152,0.9178,0.9898,0.964,0.9538,0.8844,0.7356,0.674,0.6124,0.5328,0.5328,0.2478,-0.5134,-1,-1,1,-0.6,-1,-1,0.3334,-1,-0.1632,0.2858,-0.0204,0.102,0.102,0.1836,0.0408,0,0.7552,0.5918,0.551,0.8572,1,0.8164,0.8776,0.6734,0.6122,0.6938,0.5714,0.5306,0.347,0.2654,0.102,0.3266,0.1224,0,-0.0204,0.0816,-0.204,-0.0408,0.102,-0.3674,'7'
-0.4934,0.4324,0.4062,0.6506,0.6158,0.5022,0.3014,0.0132,-0.1616,-0.3712,-0.3974,-0.179,-0.214,-0.1354,-0.1704,-0.2314,-0.3014,-0.3362,0.0742,0.31,0.8516,1,0.773,0.8166,0.5896,0.5196,0.773,0.8864,0.572,0.6158,0.572,0.5546,-0.2888,0.2536,0.1126,0.338,0.5492,0.5916,0.1268,0.0492,-0.0212,-0.2746,-0.1056,-0.0774,-0.0492,0.007,-0.0492,0.1126,-0.014,0.1198,0.2254,0.3028,0.7184,0.8944,1,0.9154,0.7464,0.6338,0.8098,0.9226,0.8662,0.7184,0.6972,0.4366,-0.3674,0.068,0.2858,0.381,0.4966,0.4422,0.0136,-0.102,-0.034,-0.2108,-0.238,-0.102,-0.2108,-0.1632,0.0204,-0.0884,-0.0136,0.0476,0.1224,0.3538,0.5442,0.8164,0.9728,0.9184,0.796,0.6802,0.898,1,0.8708,0.6734,0.5442,0.4558,-0.4084,0.1704,0.3248,0.5112,0.2862,0.029,-0.1832,-0.1062,-0.2668,-0.344,-0.2926,-0.2412,-0.2026,-0.1576,-0.1318,-0.1512,-0.061,-0.0354,0.029,0.3054,0.4406,0.7428,1,0.9936,0.73,0.6978,0.9356,0.9036,0.672,0.5756,0.582,0.434,-0.4832,0.0842,0.073,0.455,0.3484,-0.1686,-0.264,-0.2978,-0.4102,-0.3708,-0.4662,-0.2866,-0.4044,-0.2416,-0.3314,-0.2022,-0.2248,-0.1012,0.0338,0.1404,0.382,0.4438,0.9494,1,0.7752,0.736,0.9214,0.9102,0.6012,0.5112,0.5112,0.4214,-0.5178,0.0874,0.0922,0.3192,0.2624,-0.1252,-0.1678,-0.3996,-0.4138,-0.4516,-0.48,-0.2814,-0.3096,-0.253,-0.2766,-0.2198,-0.234,-0.1016,-0.097,0.13,0.234,0.5508,0.844,0.981,1,0.8534,0.9858,0.9054,0.5178,0.357,0.4846,0.4278,-0.8732,-0.3028,-0.2184,0.1056,-0.007,-0.486,-0.5352,-0.5634,-0.8802,-0.7394,-0.817,-0.7394,-0.662,-0.5282,-0.7324,-0.4154,-0.5,-0.4366,-0.4154,-0.2042,-0.0846,0.2112,0.493,0.8944,1,0.9014,0.7816,0.486,0.1972,0.0352,-0.0492,-0.1198,-0.5136,0.4054,0.4054,0.4054,0.3514,0.3514,0.2972,-0.027,-0.027,-0.4054,-0.5676,-0.3514,-0.1352,-0.3514,-0.1352,-0.3514,-0.5676,-0.7298,0.081,0.4054,0.8918,1,0.946,0.8378,0.6756,0.4594,0.7298,0.7838,0.6216,0.6216,0.6756,0.5676,-0.5556,0.4444,0.3888,0.7222,0.6666,0.5,0.3888,0.1112,-0.1112,-0.3888,-0.4444,0,-0.1666,0.0556,-0.0556,0.0556,0,0.1112,0.3334,0.3888,1,1,0.6112,0.8334,0.4444,0.7778,1,1,0.5556,0.6112,0.5556,0.6112,-0.4656,0.0344,0.0172,0.2758,0.2068,-0.1552,-0.1896,-0.3448,-0.4656,-0.4656,-0.4482,-0.2932,-0.3966,-0.2586,-0.3276,-0.2068,-0.2586,-0.1034,-0.138,0.0344,0.2068,0.3966,0.862,1,0.7414,0.7586,0.7586,0.862,0.6206,0.4482,0.362,0.431,-1,-1,-1,-1,-1,-1,-1,-1,-0.9396,-0.9282,-0.8132,-0.066,0.0776,0.1178,0.1522,0.1752,0.6666,0.9166,0.7126,0.2672,-0.1926,-0.6466,-0.862,-0.931,-0.9166,-0.9166,-0.8706,-0.8936,-0.8534,-0.8478,-0.9052,-0.888,-0.911,-1,-1,-1,-1,-1,-1,-1,-1,-0.9564,-0.9472,-0.8974,-0.3972,-0.3174,-0.162,0.104,0.0814,0.2138,0.6934,0.998,0.8446,0.1786,-0.6778,-0.9162,-0.943,-0.941,-0.9462,-0.6136,-0.2698,0.249,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9088,-0.9268,-0.8134,-0.67,-0.605,-0.41,-0.425,-0.4,-0.304,-0.208,-0.008,0.128,0.024,-0.388,-0.65,-0.82,-0.9068,-0.8334,-0.68,0.2632,0.5432,0.54,0.5966,0.6,0.6266,-1,-1,-1,-1,-1,-1,-1,-1,-0.3428,-0.8,1,1,1,-0.3714,-0.8286,-1,-0.9142,-0.8572,-1,0.1714,1,1,1,-0.6858,-0.9714,-0.1142,1,1,1,-0.2572,-0.8858,-0.9142,-0.9142,0.7374,0.7374,0.7372,0.7224,0.7284,0.7442,0.7576,0.7662,0.7314,0.5818,0.6566,0.6566,0.7122,0.723,0.749,0.8172,0.862,0.9342,1,1,-0.7466,-0.5176,-0.9182,-0.5764,-0.303,-0.3278,-0.219,0.1584,0.2518,0.4014,0.6054,0.6734,0.7006,0.6326,0.8232,0.9184,0.687,0.7552,0.9048,0.9184,0.932,1,0.7688,0.796,0.619,0.6462,0.4422,0.8776,0.864,0.6734,0.619,0.3878,0.0476,0.687,0.6462,0.6054,0.551,0.347,0.3878,0.238,0.2622,0.4426,0.246,0.0984,0.4262,0.8196,1,0.6886,0.9672,0.7214,0.8852,0.9672,0.9508,0.7378,0.3606,0.4918,0.2622,0.4918,0.377,0.1476,0.8852,0.7868,0.5738,0.3442,0.5902,0.705,0.5738,0.6394,0.082,0.3278,0.2296,-0.3442,0.3534,0.7894,0.7444,0.3834,0.4286,0.2932,0.8046,0.6842,1,0.9098,0.8046,0.7294,0.8496,0.7142,0.609,0.7294,0.4586,0.8346,0.9098,0.7744,0.6692,0.609,0.564,0.624,0.5488,0.5188,0.4436,0.594,0.0676,0.1128,0.203,-0.3684,-0.9814,1,-1,-1,-1,-1,-1,-1,1,-0.8514,-0.9086,-0.5658,-0.5772,-0.3486,-0.4972,-0.4858,-0.1314,0.1542,0.5886,0.6686,0.4286,0.6228,0.7828,0.6,0.9428,0.9542,1,0.7142,0.6228,0.8286,0.6914,0.7486,0.7258,0.4972,0.6686,0.6458,0.5772,0.3142,0.4514,0.3258,0.04,'8'
-0.3532,0.2608,0.2446,0.3968,0.4076,0.6304,0.587,0.1304,0.0706,0.087,0.0164,0.0978,0.038,0.1086,0.1142,0.3044,0.2282,0.4348,0.4728,0.7174,0.8858,1,0.8206,0.799,0.7336,0.8098,0.8206,0.9022,0.6956,0.6142,0.5218,0.4728,-0.2064,0.3244,0.2816,0.555,0.453,0.6782,0.5282,0.1314,0.008,0.126,-0.0026,0.0884,0.0938,0.169,0.2546,0.2922,0.362,0.378,0.5496,0.5388,0.9892,0.9624,0.9196,0.8392,0.9302,0.8338,1,0.8338,0.8446,0.7266,0.7588,0.571,-0.225,0.2738,0.3766,0.6206,0.4634,0.5338,0.2358,0.1762,0.0136,0.0352,-0.0732,-0.0894,0.0732,-0.0136,0.1382,0.0406,0.1816,0.1978,0.328,0.5392,0.6314,0.9404,1,0.8212,0.7724,0.8374,0.8158,0.9728,0.9024,0.7616,0.6802,0.5718,-0.309,0.1292,0.4888,0.6348,0.337,0.1798,0.1068,0.073,-0.1516,-0.2696,-0.1574,-0.1686,-0.0786,-0.045,-0.0338,0.045,-0.0224,0.0956,0.2134,0.3314,0.6068,0.736,0.9832,1,0.8314,0.7696,0.8988,0.9102,0.8596,0.7134,0.6686,0.5674,-0.3554,0.091,0.4546,0.5978,0.2892,-0.2948,-0.2122,-0.2232,-0.3388,-0.4214,-0.3388,-0.3554,-0.2342,-0.2506,-0.2066,-0.0854,-0.113,0.0304,0.0082,0.1846,0.3994,0.5206,0.989,1,0.8732,0.8072,0.9008,0.7852,0.752,0.5426,0.5482,0.416,-0.4386,-0.0468,0.4854,0.5204,0.035,-0.1112,-0.4854,-0.6492,-0.6432,-0.538,-0.5264,-0.5146,-0.4796,-0.427,-0.3918,-0.2456,-0.2632,-0.2046,-0.0702,0.0234,0.269,0.5556,0.8888,0.9824,1,0.965,0.965,0.7778,0.6024,0.4386,0.3334,0.2808,-0.7656,0.0206,0.3034,0.069,-0.4896,-0.4896,-0.662,-0.7242,-0.7862,-0.6828,-0.5448,-0.7172,-0.7862,-0.5518,-0.4828,-0.5104,-0.4276,-0.3448,-0.2896,-0.2828,0.0482,0.3932,0.531,0.731,0.938,1,0.869,0.3724,0.1932,0.0344,0.0552,0.0482,-0.451,0.1764,0.1764,0.3334,0.4902,0.451,0.5294,0.098,0.0588,-0.0588,0.0196,0.0196,0.1372,0.0588,0.1764,0.2156,0.2942,0.3334,0.5686,0.5686,1,0.9608,0.804,0.8432,0.7254,0.8432,0.5686,0.7648,0.6078,0.5686,0.3726,0.3726,-0.3454,0.2364,0.2,0.3818,0.3454,0.6364,0.5636,0.1272,0.091,0.091,0.0182,0.1272,0.0546,0.091,0.0546,0.2728,0.309,0.4182,0.4546,0.6364,0.7454,0.9636,0.891,0.8182,0.7454,0.7818,0.8546,1,0.891,0.709,0.6,0.4546,-0.3334,0.0588,0.4314,0.5686,0.2156,-0.1372,-0.4706,-0.549,-0.4118,-0.4706,-0.3726,-0.353,-0.3334,-0.2746,-0.3726,-0.098,-0.098,0.0196,0.0588,0.0588,0.4314,0.5098,0.9216,0.8824,0.9412,0.9216,1,0.7648,0.745,0.5294,0.3922,0.4706,-1,-1,-1,-1,-1,-1,-1,-1,-0.976,-0.9788,-0.6834,-0.1338,0.0378,0.2528,0.41,0.601,0.8052,0.9856,0.8226,0.176,-0.3016,-0.7046,-0.9454,-0.9808,-0.9646,-0.9414,-0.9414,-0.9454,-0.9684,-0.9558,-0.9454,-0.9482,-0.9406,-1,-1,-1,-1,-1,-1,-1,-1,-0.9798,-0.9806,-0.5672,0.13,0.4038,0.638,0.5346,0.6194,0.7722,0.9474,0.8854,0.349,-0.217,-0.708,-0.9134,-0.9768,-0.9494,-0.9288,-0.67,-0.5818,-0.419,-0.0502,-0.0244,-0.067,-0.0708,-1,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.98,-0.6134,-0.495,-0.435,-0.46,-0.675,-0.575,-0.535,-0.46,-0.436,-0.472,-0.408,-0.384,-0.3768,-0.9268,-0.84,-0.8068,-0.5768,0.3666,0.4666,0.4232,0.69,0.6066,0.5132,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,0.1142,-0.8858,-0.9142,-0.7428,-0.8286,-0.8,-0.1714,1,1,1,1,0.7428,-0.6,1,1,1,0.5428,-0.2286,-0.8286,-1,-0.9714,1,1,0.9984,0.9862,0.9704,0.9624,0.929,0.8968,0.8544,0.5296,0.7446,0.8314,0.8572,0.8188,0.8444,0.8872,0.905,0.9542,1,1,-0.7066,-0.5412,-0.4364,-0.0182,0.2488,0.4368,0.638,1,-0.1052,0.1578,0.3158,0.421,0.3158,0.3684,0.2632,0.2106,0.579,0.7368,0.8422,0.8422,0.8948,0.9474,1,0.6842,0.579,0.6316,0.7368,0.6842,0.4736,0.421,0.1052,0.1052,0,-0.2106,-0.0526,-0.0526,-0.1052,-0.2632,-0.421,-0.7894,-0.0924,0.2774,0.6134,0.563,0.3278,0.2942,0.3446,0.311,0.4958,0.6638,1,0.9328,0.8824,1,0.8824,0.6806,0.479,0.5798,0.832,0.7478,0.6134,0.0756,0.4118,0.2436,0.1932,0.0084,-0.1428,-0.2774,-0.2268,-0.21,-0.2606,-0.647,0.1532,0.3874,0.6756,0.6576,0.2432,-0.063,0.1352,0.4234,0.4234,0.6396,1,0.8738,0.7298,0.8018,0.6936,0.4954,0.3874,0.4054,0.6576,0.5856,0.3514,0.027,0.2072,0.099,-0.009,-0.1892,-0.4234,-0.3334,-0.2972,-0.3514,-0.5856,-0.6756,0.0866,-1,-1,1,-1,-1,-1,-0.8334,1,-0.8634,-0.6646,-0.5404,-0.5776,-0.2796,-0.2174,-0.2546,-0.0062,0.205,0.4906,0.7018,0.615,0.8882,1,0.7142,0.764,0.826,0.9378,0.677,0.7268,0.7392,0.8012,0.7764,0.7888,0.826,0.7764,0.5404,0.6522,0.4906,0.5404,0.1304,0.118,'8'
-0.5524,0.0094,-0.0466,0.1142,0.3892,0.5362,0.8532,0.937,0.937,0.9114,0.9674,1,0.9906,0.8484,0.5502,0.3496,0.2984,0.1702,0.1702,0.1724,0.2704,0.1982,0.2378,0.4452,0.5944,0.6574,0.6294,0.4266,0.387,0.2378,0.2144,0.352,-0.453,-0.073,-0.0752,0.023,0.3194,0.3216,0.6326,0.8434,0.9916,0.7578,0.6952,1,0.9416,0.6388,0.4572,0.403,0.2046,0.1544,0.1044,0.0836,0.0856,0.0752,0.2088,0.2714,0.4676,0.5282,0.4968,0.2714,0.2484,0.0772,-0.0104,0.0918,-0.4566,-0.0724,-0.1446,-0.0186,0.3306,0.3326,0.593,0.8348,1,0.7892,0.6054,0.8926,0.8658,0.8326,0.7232,0.4648,0.2356,0.2686,0.1364,0.0558,0.1446,0.0578,0.1488,0.2644,0.312,0.593,0.5082,0.2272,0.033,0.0268,-0.1178,-0.06,-0.3956,0.0012,-0.006,0.072,0.3624,0.5656,0.7568,0.941,1,0.556,0.4806,0.601,0.6742,0.7498,0.948,0.9056,0.8158,0.6198,0.4758,0.36,0.294,0.2374,0.3034,0.3648,0.66,0.6128,0.523,0.3294,0.2184,-0.0154,-0.0414,0.0342,-0.2794,0.1948,0.147,0.2662,0.7298,0.804,1,0.8014,0.4146,0.2292,0.2212,0.3112,0.208,0.3668,0.4014,0.412,0.5762,0.5814,0.8198,0.5524,0.4226,0.2874,0.2742,0.4092,0.6794,0.7298,0.5576,0.3112,0.163,-0.1046,-0.0622,0.041,-0.3092,0.4306,0.3786,0.6764,0.8324,1,0.7428,0.3816,0.185,0.1272,-0.0144,0.0086,0.052,0.1156,0.1648,0.2398,0.3092,0.4046,0.659,0.87,0.841,0.578,0.5636,0.4624,0.6012,0.7832,0.9018,0.7862,0.5058,0.1098,-0.0086,0.13,-0.6086,0.837,0.9782,0.5652,0.6956,0.2682,0.4058,0.058,-0.4058,-0.5652,-0.4746,-0.4746,-0.2356,-0.2754,-0.2718,-0.2898,-0.2174,-0.308,-0.0688,0.1594,0.4746,0.7428,1,0.9202,0.674,0.826,0.6992,0.7972,0.7754,0.5254,0.134,0.2428,-0.7368,0,0.1578,0.0526,0.421,0.7368,0.9474,1,1,0.7894,0.6842,0.7368,0.5264,0.4736,0.2106,-0.2106,-0.1052,-0.2106,-0.2106,-0.3158,-0.1052,-0.1052,-0.1052,-0.1578,0.0526,0,0,-0.2632,-0.4736,-0.2632,-0.3158,-0.1052,-0.7552,-0.1428,-0.1836,0.0612,0.1428,0.3878,0.7142,0.7142,0.796,0.8776,0.8776,0.9592,1,0.6734,0.5102,0.1836,0.2654,0.102,0.0204,-0.102,0.102,0.0612,-0.0612,0.2244,0.347,0.2654,0.2654,0.2654,0.347,0.0612,0.1428,0.347,-0.439,0.0244,-0.0244,0.0488,0.439,0.8048,1,0.683,0.6098,0.317,0.244,0.3414,0.3658,0.3902,0.561,0.5366,0.8048,0.683,0.7804,0.3902,0.2682,0.2682,0.3414,0.3414,0.7804,0.7074,0.3658,0.2926,0.2926,-0.0976,0,0.0732,-1,-1,-1,-1,-1,-1,-1,-1,-0.943,-0.9484,-0.913,0.288,0.5706,0.6548,0.5298,0.356,0.2228,0.3124,0.4376,0.701,0.8586,0.1358,-0.7718,-0.9348,-0.9184,-0.9456,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9848,-0.9852,-0.9736,0.3394,0.7288,0.8166,0.7598,0.5066,0.026,-0.2954,-0.5894,-0.5558,-0.6276,-0.7862,-0.9502,-0.9776,-0.9748,-0.9804,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.96,-0.7834,-0.562,-0.4728,-0.5782,-0.5038,-0.562,-0.5674,-0.64,-0.75,-0.79,-0.755,-0.8518,-0.6868,-0.6934,-0.7734,-0.9268,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,-0.8286,1,1,-0.6572,-0.9714,-0.8572,-0.8286,-0.7142,-0.6,-0.7142,-0.8572,0.1428,0.3428,-0.4,-0.7714,-0.8858,-0.7428,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.7012,-0.6716,-0.68,-0.7022,-0.7184,-0.726,-0.7744,-0.8536,-0.9342,-0.3232,-0.64,0.3648,-0.9766,-0.592,0.156,0.6316,0.7342,1,0.0624,-0.0156,0.25,0.1562,0.4218,0.5624,0.6562,0.6406,0.5938,0.4688,0.8282,0.8438,1,0.6094,0.4062,0.5156,0.5782,0.5624,0.3124,0.5,0.3124,0.6718,0.1094,0.5312,0.1874,0.3438,0.4062,0.5156,0.2656,0.5156,0.0468,-0.1562,0.0148,0.103,0.5736,0.397,0.3382,0.7206,1,0.6912,0.9706,0.8382,0.7352,0.4558,0.897,0.4852,-0.0442,0.397,0.5,0.2648,0.5148,0.3236,0.4412,0.7352,0.7206,0.6618,0.5588,0.6764,0.7794,0.2648,0.2058,-0.0148,0.4706,-0.0442,-0.0552,0.1042,0.1534,0.178,0.4234,0.7792,0.8774,0.6688,0.5828,0.5092,0.865,0.6932,0.681,0.3374,0.5582,0.4356,0.681,0.4846,0.5092,0.5092,0.6564,0.4602,1,0.6932,0.4846,0.3866,0.4356,0.2884,0.546,0.3496,0.043,0.043,-0.9942,1,-1,-1,-1,-1,-1,-1,-1,-0.3524,0.4286,0.181,-0.0858,-0.238,0.0666,0.2,-0.0476,0.0096,0.219,0.1238,1,0.9048,0.8286,0.4858,0.238,0.4476,0.2572,0.6,0.3524,0.238,0.0476,-0.0286,-0.219,-0.1238,-0.219,0.1428,0.0096,0.0666,-0.3904,-0.3142,-0.7334,'9'
-0.679,0.2354,0.298,0.3334,0.4476,0.7388,0.9238,1,0.9836,0.8068,0.9238,0.9646,0.8312,0.3632,0.2816,0.2054,0.1972,0.0666,0.0176,0.034,-0.0232,-0.004,-0.0286,0.1918,0.3224,0.5346,0.521,0.5674,0.4994,0.2898,0.2408,0.2844,-0.3638,0.1038,0.0558,0.236,0.3044,0.4778,0.813,0.9498,0.7902,0.8152,0.9384,1,0.8084,0.6282,0.3752,0.3614,0.2908,0.2224,0.1426,0.1334,0.1722,0.122,0.1128,0.22,0.3182,0.4526,0.5096,0.5188,0.4412,0.2862,0.236,0.1608,-0.3206,0.1092,0.0404,0.2162,0.2422,0.3206,0.867,0.8884,0.9644,0.924,0.9502,0.848,1,0.8218,0.8408,0.5226,0.544,0.3562,0.3254,0.3206,0.2256,0.202,0.1662,0.2708,0.4394,0.4894,0.6604,0.646,0.3278,0.2542,0.2256,0.0832,-0.278,0.1568,0.0784,0.2376,0.3016,0.392,0.848,0.867,0.8908,0.8432,0.7102,0.6034,0.741,0.8812,1,0.8124,0.7838,0.4916,0.456,0.3824,0.2946,0.354,0.2612,0.3776,0.5844,0.6438,0.5962,0.589,0.342,0.2802,0.202,0.0666,-0.248,0.1832,0.2192,0.3772,0.5568,0.6096,1,0.9544,0.4826,0.3676,0.4132,0.3438,0.418,0.4922,0.4922,0.7438,0.6934,0.83,0.7078,0.691,0.4898,0.5234,0.5378,0.5018,0.7532,0.6072,0.7342,0.5354,0.4514,0.2,0.1952,0.1474,-0.1776,0.2988,0.5622,0.6982,1,0.9734,0.5622,0.429,0.216,-0.0296,0.0208,0.0208,-0.0592,0.0148,0.077,0.1864,0.219,0.1776,0.4674,0.5918,0.6804,0.713,0.5356,0.5976,0.642,0.7634,0.7544,0.787,0.5266,0.358,0.0858,0.1894,0.0644,0.7168,0.8198,1,0.7168,0.6008,0.1974,-0.0686,-0.3304,-0.6094,-0.7768,-0.5364,-0.6524,-0.5322,-0.4592,-0.515,-0.4206,-0.4722,-0.3476,-0.0172,0.545,0.9614,0.8284,0.7168,0.588,0.6738,0.837,0.8712,0.7254,0.06,0.1416,-0.1374,-0.7,0.2,0.3,0.2334,0.5666,0.4334,0.9334,1,0.6334,0.7,0.7334,0.7,0.7,0.3,0.3334,0.0334,0.2334,0.1666,0.0666,0.1334,-0.0334,0.2,0.0666,0.3666,0.4334,0.5666,0.6,0.4666,0.5,0.4,0.3666,0.4,-0.6666,0.1482,0.2592,0.2592,0.3704,0.5926,1,0.926,0.7778,0.7778,0.8148,0.926,0.6666,0.3334,0.2222,0.1852,0.1482,-0.037,-0.037,-0.1852,-0.037,-0.1482,0,-0.037,0.2962,0.3704,0.2592,0.4814,0.2592,0.2222,0.1852,0.2222,-0.1876,0.25,0.4166,0.625,1,0.9792,0.625,0.5624,0.3542,0.1876,0.1458,0.1666,0.1876,0.1876,0.2708,0.375,0.4584,0.5208,0.7292,0.7084,0.7916,0.6876,0.4166,0.6666,0.6876,0.7084,0.6876,0.7916,0.7084,0.125,0.1876,0.2292,-1,-1,-1,-1,-1,-1,-1,-1,-0.9722,-0.9582,-0.4872,0.182,0.6762,0.904,0.5832,0.4346,0.3648,0.5398,0.5368,0.7956,0.1556,-0.1618,-0.6514,-0.8218,-0.904,-0.9318,-0.9178,-0.9474,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9904,-0.9884,-0.7172,-0.245,0.4402,0.9736,0.9156,0.5974,0.1944,0.0558,-0.4224,-0.5234,-0.7526,-0.8416,-0.9238,-0.9448,-0.9534,-0.9582,-0.9608,-0.9744,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.86,-0.68,-0.589,-0.58,-0.524,-0.5,-0.548,-0.584,-0.616,-0.766,-0.814,-0.886,-0.914,-0.6568,-0.57,-0.3534,-0.3734,-0.4634,-0.5868,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,-0.3428,-0.8286,-0.8,-0.7714,-0.6858,-0.5428,-0.5714,0,0,-0.4,-0.7428,-0.7428,-0.8286,-0.8572,-0.8286,-0.5142,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.3914,-0.4476,-0.448,-0.4896,-0.5448,-0.5562,-0.6212,-0.7122,-0.86,-0.2474,-0.72,0.153,-0.681,-0.436,-0.2652,-0.1984,0.0898,1,-0.2142,0.6072,0.8214,1,1,0.9642,0.75,0.5,0.4286,0.1786,0.1072,0.2858,0.5,0.5358,0.3928,0.2858,0.3572,0.5358,0.5714,0.6428,0.6428,0.5714,0.4642,0.3572,0.25,-0.0714,-0.0358,0.0358,0,-0.1428,0,-0.2858,-0.2642,0.3208,0.6792,0.849,0.8868,1,0.9434,0.415,0.283,0.0944,0.132,0.2076,0.5094,0.566,0.5094,0.2264,0.3396,0.6038,0.5284,0.585,0.6604,0.6038,0.415,0.2642,0.0188,-0.0944,-0.1698,-0.283,-0.3584,-0.3774,-0.3774,-0.8302,-0.2762,0.3142,0.581,1,0.981,0.8858,0.6762,0.2952,0.219,0.1428,0.1428,0.219,0.6572,0.619,0.6762,0.3714,0.4096,0.581,0.581,0.6,0.638,0.638,0.5048,0.4476,0.1428,-0.0476,-0.162,-0.3904,-0.2572,-0.181,-0.238,-0.4666,-0.4964,-1,-1,1,-1,-1,-0.6,-0.8334,1,-0.3288,0.0068,0.4094,0.3558,0.1678,-0.114,0.0604,0.047,0.2214,0.5034,1,0.7316,0.7852,0.8256,0.4766,0.1946,0.4228,0.4094,0.4766,0.2348,-0.0336,-0.0604,0.0336,0.3154,0.1946,0.0604,-0.1812,-0.0604,0.0068,0.1006,-0.0336,-0.4766,'9'
0.0238,0.6996,0.838,0.996,0.909,0.494,0.3794,0.2134,0.0514,-0.1542,-0.0632,0.008,0.0948,0.0672,0.2924,0.4308,0.5256,0.921,0.9644,0.8458,0.7588,0.7194,1,0.9724,0.826,0.4744,0.5968,0.4506,0.5494,0.664,0.6838,0.6442,-0.2066,0.192,0.4808,0.5576,1,0.9012,0.7368,0.3674,0.2724,0.2102,0.0712,0.0786,0.3272,0.3054,0.3712,0.6198,0.755,0.9524,0.9488,0.85,0.6636,0.7112,0.6966,0.6746,0.6892,0.5686,0.3564,0.298,0.1408,0.0566,0.203,0.2176,-0.2828,0.101,0.2424,0.3804,0.6632,0.7474,0.7846,0.3334,0.1548,0.1346,0.0976,0.074,0.2054,0.2492,0.2122,0.4108,0.5926,0.6936,1,0.7946,0.606,0.4546,0.6094,0.7172,0.734,0.6464,0.3536,0.1784,0.1112,-0.1718,-0.2694,-0.2558,-0.2122,0.197,0.3522,0.5834,0.9128,0.8978,0.947,0.4924,0.2916,0.25,0.216,0.0834,0.2462,0.303,0.2424,0.356,0.5416,0.6136,1,0.8144,0.8258,0.5758,0.4584,0.5644,0.7954,0.7196,0.5,0.2348,0.1326,-0.0682,-0.2424,-0.3068,-0.2248,0.2382,0.406,0.5134,1,0.9026,0.4932,0.2214,0.2516,0.037,-0.0604,0.0536,0.037,0.0704,0.1812,0.1242,0.2416,0.386,0.6006,0.9128,0.8288,0.6744,0.6006,0.594,0.6712,0.7282,0.6544,0.406,0.0806,-0.141,-0.2852,-0.1744,-0.0512,0.6332,0.6932,1,0.8202,0.9118,0.5098,0.4462,0.037,0.0758,0.0336,0.03,0.0934,0.104,0.1464,0.2098,0.1888,0.224,0.4638,0.686,0.9612,0.993,0.753,0.6826,0.7248,0.7708,0.7708,0.7214,0.4426,0.3262,0.2276,0.1852,-0.0536,0.7138,0.6944,1,0.9056,0.4732,0.3788,-0.0634,-0.2228,-0.3366,-0.4732,-0.3886,-0.4504,-0.3268,-0.343,-0.174,-0.2488,-0.1968,-0.1934,0.0634,0.4016,0.717,0.7334,0.6228,0.3724,0.6,0.6196,0.7106,0.33,0.3886,0.2748,0.1512,-0.0476,0.762,0.8096,0.4762,0.5238,0,0.0476,-0.381,-0.2858,-0.238,-0.0952,-0.1428,-0.0476,-0.3334,-0.0952,-0.0476,0.238,0.238,-0.3334,-0.0476,0.238,0.381,0.762,1,0.9524,0.3334,0.4762,0.4762,0.619,0.6666,0.8096,0.6666,-0.0526,0.6842,0.6316,1,0.8948,0.2632,0,0,-0.1052,-0.3684,-0.421,-0.2106,-0.1578,0.1052,0.1052,0.3158,0.1578,0.6842,0.4736,0.5264,0.3158,0.421,0.421,0.421,0.579,0.4736,0.6316,0.5264,0.6842,0.6316,0.421,0.3684,-0.3076,0.077,0.359,0.359,0.6924,0.7948,0.8718,0.282,0.2308,0.2564,0,0.2052,0.3334,0.3076,0.4102,0.5642,0.641,0.5898,1,0.7436,0.4872,0.718,0.6924,0.718,0.718,0.4616,0.2564,0.3334,0,-0.2052,0.1794,0.0256,-1,-1,-1,-0.9818,-0.9788,-0.9834,-0.959,-0.9446,-0.9462,-0.962,-0.89,0.534,0.37,0.1682,-0.2432,-0.3678,-0.4126,-0.3548,-0.2888,-0.2576,-0.0132,-0.247,-0.72,-0.924,-0.9682,-0.9726,-0.9696,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9766,-0.9662,-0.9514,-0.7718,-0.396,-0.1286,0.5176,-0.1678,0.4564,0.8542,0.7392,0.3058,0.0674,-0.0642,-0.0844,0.0702,-0.1482,-0.014,-0.254,-0.7354,-0.8974,-0.9334,-0.9318,-0.9476,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.9268,-0.95,-0.1234,0.4166,0.6166,0.77,0.5332,-0.6712,-0.6712,-0.6956,-0.6756,-0.7178,-0.689,-0.8312,-0.804,-0.878,-0.838,-0.958,-0.86,-0.5934,-0.3268,-0.4734,-0.6334,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2286,-0.9142,1,1,1,1,0.1142,1,1,0.0572,-0.8286,-0.9714,-0.9428,-0.9714,-1,-1,-0.7714,-0.6572,0.2,-0.1428,-0.6286,-0.9142,-0.9714,-0.8286,-1,-1,-1,-1,-1,-1,0.4134,0.4538,0.4794,0.5424,0.609,0.6702,0.7528,0.8512,0.9604,0.8726,0.4564,0.4316,0.3964,0.3062,0.2216,0.2012,0.1474,0.1296,0.1494,0.4564,-0.5866,0.0942,-0.2208,-0.2622,0.2578,0.9018,0.8788,0.9584,-0.5842,-0.2102,-0.1074,0.056,0.1728,0.2242,0.313,0.3598,0.2944,0.7336,0.6682,1,0.9906,0.8972,0.9392,0.9954,0.93,0.6496,0.6636,0.4066,0.4018,0.3878,0.3878,0.3272,0.2804,0.2196,0.229,0.243,0.1588,0.1636,0.056,-0.43,-0.7238,-0.485,-0.2724,-0.2388,-0.2126,-0.1456,0,0.082,0.2836,0.4216,0.5672,0.6828,0.8732,0.75,0.832,1,0.903,0.8582,0.832,0.7724,0.791,0.7836,0.7276,0.7574,0.7052,0.5186,0.7462,0.6902,0.582,0.388,0.306,-0.0112,-0.9922,-0.4854,-0.4346,-0.4308,-0.5282,-0.267,-0.2514,0.041,0.2046,0.6374,0.6024,0.848,0.8986,0.5282,0.7622,0.8908,0.9532,0.8362,0.7934,1,0.9338,0.6998,0.8362,0.7466,0.7778,0.5672,0.5946,0.6024,0.5166,0.4114,0.4308,0.3372,0.0838,-1,-1,1,-1,-1,-0.6,0.0334,-1,-0.6146,0.0092,0.101,-0.0092,-0.1192,-0.5412,0.0458,-0.0092,-0.0826,-0.0092,0.578,1,0.523,0.8348,0.6698,0.3944,0.1744,0.5046,0.5596,0.0642,-0.1376,-0.0092,-0.0826,-0.1192,-0.1192,0.2478,0.101,-0.0826,-0.0826,-0.2478,-0.1192,-0.3394,'10'
-0.1412,0.5406,0.5778,0.9144,0.883,0.321,0.1982,0.3438,0.2182,0.0156,0.0156,0.0442,0.1612,0.167,0.2182,0.458,0.5464,0.7262,0.8774,0.883,0.8202,0.7032,0.749,0.9202,1,0.843,0.729,0.5264,0.4436,0.398,0.4436,0.4122,-0.1784,0.338,0.458,0.6862,0.7888,0.9116,0.6262,0.652,0.241,0.1982,0.341,0.224,0.3182,0.4152,0.5292,0.632,0.669,1,0.9686,0.9316,0.826,0.6576,0.5008,0.6662,0.7974,0.8602,0.7432,0.6862,0.4494,0.4152,0.458,0.3466,-0.3162,0.1588,0.319,0.4878,0.7912,0.8484,0.6824,0.628,0.3534,0.1846,0.259,0.2818,0.319,0.4078,0.3476,0.5508,0.5508,0.7052,0.9484,1,0.628,0.5822,0.6224,0.4736,0.5822,0.5536,0.6138,0.3992,0.3706,0.2274,0.0988,0.0672,-0.2152,0.2716,0.4736,0.596,1,0.9636,0.9106,0.7086,0.4602,0.3146,0.3014,0.255,0.2948,0.437,0.4702,0.4736,0.596,0.6788,0.8808,0.9006,0.9438,0.639,0.563,0.6092,0.7218,0.8014,0.5762,0.5198,0.3544,0.2616,0.1688,0.0894,-0.2022,0.213,0.5632,0.6064,1,0.8268,0.917,0.444,0.343,0.2816,0.101,0.0938,0.1914,0.2238,0.3104,0.3646,0.3574,0.527,0.74,0.834,0.888,0.6534,0.4946,0.491,0.686,0.7292,0.592,0.4188,0.3176,0.0686,-0.0144,-0.0506,-0.2792,0.0672,0.5584,0.8268,1,0.5584,0.47,0.212,-0.0494,-0.1342,-0.2614,-0.2262,-0.2614,-0.1554,0.0212,-0.0388,0.046,0.113,0.2862,0.5124,0.6432,0.6784,0.5548,0.477,0.4806,0.5796,0.5548,0.272,0.06,-0.1944,-0.099,-0.152,-0.0564,0.3408,0.8736,0.8014,0.9414,0.1602,-0.0112,-0.1332,-0.3228,-0.4762,-0.7608,-0.544,-0.377,-0.3364,-0.3724,-0.4944,-0.5304,-0.4854,-0.4266,0.0428,0.4808,1,0.9684,0.4672,0.5982,0.7698,0.9458,0.7336,0.4808,-0.1106,-0.106,-0.2912,0,0.8334,0.875,0.5,0.625,0.25,0.375,0.125,0.0834,-0.2084,0.0416,-0.0416,0,-0.0834,0.25,0.2916,0.1666,0.375,0.7916,1,0.9584,0.9166,0.7084,1,0.9584,0.5834,0.5416,0.5,0.5834,0.6666,0.5416,0.75,-0.2156,0.451,0.451,0.7254,0.7254,0.0196,-0.1764,0.1372,0.098,-0.2156,-0.1764,-0.0196,0.0196,-0.0196,0.0196,0.3334,0.3726,0.5686,0.647,0.647,0.6862,0.6078,0.647,0.9216,1,0.5294,0.6078,0.1372,0.1372,0.0588,0.0588,0.2156,-0.1506,0.178,0.6164,0.7808,0.9726,0.7808,0.7808,0.2876,0.1232,0.178,-0.1232,0.0136,0.0684,0.178,0.2328,0.2328,0.2876,0.2602,0.315,1,0.9178,0.7808,0.6986,0.6712,0.6164,0.8082,0.8356,0.3424,0.2054,-0.1232,-0.041,-0.041,-1,-1,-1,-0.9848,-0.9848,-0.9702,-0.9652,-0.9828,-0.9696,-0.9512,-0.6734,0.4698,0.4756,-0.1902,-0.168,-0.2448,-0.3456,-0.4134,-0.4724,-0.4984,-0.57,-0.7482,-0.8548,-0.9468,-0.9766,-0.9766,-0.9848,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9808,-0.9762,-0.7962,-0.6224,-0.5824,0.016,0.3212,-0.2586,0.3198,0.5072,0.2168,0.2896,0.1014,-0.125,-0.3428,-0.4568,-0.5488,-0.62,-0.7936,-0.885,-0.949,-0.9646,-0.9684,-0.968,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.88,-0.2868,0.3732,0.63,0.6232,0.8532,0.3732,-0.7334,-0.629,-0.6778,-0.716,-0.714,-0.702,-0.838,-0.86,-0.862,-0.866,-0.862,-0.8234,-0.7334,-0.6934,-0.61,-0.7834,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,1,1,1,1,1,-0.2572,-0.7428,-0.9142,-0.8572,-0.8572,-0.9714,-0.8572,-0.8,-0.5142,-0.6286,-0.7142,-0.8,-0.9714,-0.9428,-0.8572,-1,-1,-1,-1,-1,-1,0.4922,0.5162,0.5774,0.6202,0.6554,0.7222,0.7872,0.8786,0.9832,0.8874,0.5942,0.585,0.5608,0.52,0.4826,0.462,0.4376,0.3648,0.3082,0.4648,-0.6534,0.1412,-0.339,-0.2212,0.2454,0.591,0.8672,0.3916,-0.4778,-0.2718,-0.183,0.0018,0.0302,0.0338,0.0266,0.2576,0.2788,0.6802,0.7336,0.936,0.961,0.9894,1,0.9786,0.6768,0.6838,0.6198,0.6518,0.6944,0.6518,0.6234,0.5276,0.4564,0.286,0.0692,0.023,0.0374,-0.0728,-0.3464,-0.6022,-0.7724,-0.6048,-0.4372,-0.4102,-0.2514,-0.1646,-0.1826,0.0508,0.0718,0.4282,0.5958,0.7664,0.8444,0.8622,0.8354,0.997,1,0.9102,0.8772,0.7904,0.7246,0.8204,0.9012,0.9312,0.7934,0.7544,0.6138,0.542,0.4252,0.4312,0.2724,0.006,-0.5518,-0.3344,-0.2208,-0.301,-0.2208,-0.2776,-0.1104,-0.0168,0.3378,0.6388,0.6722,0.826,0.9766,0.8094,0.786,1,0.9096,0.816,0.7158,0.7258,0.7792,0.796,0.8328,0.8562,0.9332,0.7492,0.719,0.7526,0.5954,0.418,0.3846,0.117,-0.3074,-1,-1,1,-1,-1,-1,0.2,1,-0.2952,0.0666,0.2572,0.3142,-0.0286,-0.0666,0.1238,0.2572,0.2,0.3714,0.7714,0.7904,1,1,0.6952,0.0476,0.562,0.8476,0.4476,0.238,0.219,-0.1238,0.2952,0.3142,0.219,0.181,0.1238,0.181,0.0286,0.0858,0.0858,-0.6952,'10'
-0.1854,0.423,0.3636,0.6154,0.7168,0.8216,0.6644,0.2762,0.1014,0.1644,0.035,0.1048,0.1818,0.2202,0.2762,0.3916,0.493,0.577,0.7552,0.9616,0.986,1,0.8812,0.916,0.923,0.916,0.7378,0.6608,0.5734,0.4966,0.479,0.43,-0.3502,0.0254,0.2578,0.3682,0.8182,0.8272,0.4038,0.2488,0.1892,0.1178,0.1296,0.076,0.1446,0.222,0.2638,0.3472,0.4336,0.6214,0.8242,1,0.9792,0.7794,0.8122,0.854,0.9404,0.9434,0.7884,0.6424,0.5738,0.4814,0.4396,0.4516,-0.3756,-0.046,0.2172,0.3248,0.626,0.531,0.6196,0.233,0.1632,0.1728,0.0586,0.0586,0.2076,0.2456,0.309,0.4232,0.4896,0.626,0.9112,0.8764,0.9492,0.7844,0.7876,0.9334,0.8828,1,0.8194,0.721,0.5182,0.4548,0.4676,0.439,-0.3804,-0.059,0.1836,0.318,0.5934,0.4984,0.5606,0.164,0.0426,0.095,-0.023,0,0.1704,0.1574,0.1508,0.3114,0.3442,0.3934,0.695,0.8656,1,0.7312,0.682,0.7836,0.941,0.9574,0.7672,0.6132,0.577,0.423,0.3312,0.3016,-0.321,0.0406,0.3108,0.4528,0.8244,0.6994,0.4358,0.1622,0.1486,0.071,-0.1114,-0.0372,0.1284,0.054,0.1386,0.2534,0.2906,0.3986,0.6216,0.7736,0.9798,0.946,0.7804,0.7804,0.8548,1,0.902,0.7568,0.544,0.429,0.3952,0.3682,-0.2834,0.2382,0.447,0.6418,0.6486,0.7148,0.287,0.2592,0.0156,-0.0574,-0.0608,-0.1026,-0.026,-0.0192,0.0296,0.0748,0.2244,0.2314,0.4226,0.687,0.8052,1,0.9304,0.833,0.8608,0.9548,0.9966,0.8886,0.694,0.5096,0.4018,0.3808,-0.2146,0.7534,0.7398,0.9634,0.8538,0.3926,0.2558,-0.1278,-0.3106,-0.3608,-0.548,-0.3014,-0.2786,-0.2648,-0.2238,-0.3106,-0.379,-0.3926,-0.1964,-0.0274,0.2694,0.6484,1,0.8768,0.589,0.6622,0.6712,0.6484,0.5616,0.2192,-0.041,-0.1598,-0.1162,0.4884,0.4884,0.5814,0.628,0.4418,0.4418,0.0232,-0.2094,-0.1628,-0.4884,-0.4884,-0.3954,-0.1162,-0.0698,-0.0698,-0.0698,-0.0232,-0.0232,0.2558,0.8604,1,0.721,0.4418,0.814,0.628,0.721,0.6744,0.2558,0.3024,0.2094,0.1162,-0.037,0.5556,0.5186,0.6666,0.5926,0.7778,0.7408,0.4444,0.3704,0.2962,0.1482,0.2592,0.2222,0.4814,0.3704,0.5926,0.4814,0.5926,0.7778,1,1,1,0.8148,0.8518,0.7408,0.8148,0.7778,0.7038,0.5556,0.5926,0.4444,0.4814,-0.4566,-0.1086,0.1304,0.2392,0.5218,0.4348,0.5434,0.0652,-0.0652,0.0434,-0.1086,-0.0434,0.1304,0.1304,0.1086,0.3044,0.3044,0.326,0.7608,0.8914,1,0.7174,0.6522,0.7826,0.9348,0.9348,0.7608,0.5434,0.5218,0.413,0.2608,0.2174,-1,-1,-1,-0.9734,-0.9776,-0.9572,-0.8736,-0.896,-0.8796,-0.8522,-0.8664,0.4238,0.7186,0.9766,0.4412,0.074,0.0036,0.0332,0.1014,-0.1596,-0.2218,-0.4084,-0.8358,-0.9766,-0.9674,-0.9542,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9798,-0.9846,-0.887,-0.4748,-0.726,-0.801,-0.7834,-0.7728,-0.062,0.8444,0.8854,0.4942,0.194,0.0214,-0.1408,-0.0946,-0.3236,-0.5554,-0.744,-0.9262,-0.9768,-0.9754,-0.969,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9228,-0.9268,-0.8934,0.14,0.4766,0.31,0.13,-0.0268,-0.565,-0.4826,-0.48,-0.39,-0.425,-0.395,-0.62,-0.635,-0.68,-0.7978,-0.92,-0.7368,-0.7334,-0.7934,-0.7468,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4858,-0.5142,1,1,-0.2,-0.1714,-0.1714,0.4858,1,0.5428,-1,-1,-0.9714,-0.9142,-0.9714,-1,-0.2858,0.6572,0.8286,0.0572,-0.6286,-0.9142,-0.8,-1,-1,-1,-1,-1,-1,-1,0.8554,0.8604,0.869,0.8852,0.9086,0.938,0.9746,1,1,0.9376,0.5832,0.5856,0.5576,0.5974,0.596,0.6142,0.6314,0.6448,0.6756,0.831,-0.5866,-0.047,-0.786,-0.552,-0.0916,0.2128,0.6324,1,-0.7582,-0.2512,-0.228,-0.0326,0.093,0.172,0.2186,0.2652,0.3442,0.5628,0.614,0.7302,1,0.9582,0.893,0.6838,0.6046,0.6604,0.7116,0.7582,0.6698,0.6884,0.5954,0.4094,0.4326,0.2884,0.4046,0.293,0.2838,0.1024,0.1256,-0.0884,-0.2112,-0.0704,0.1408,0.1704,0.063,0.1444,0.174,0.1038,0.1444,0.4148,0.6038,0.9704,0.8408,1,0.9296,0.837,0.8296,0.7704,0.7962,0.9852,0.8814,0.8334,0.837,0.7778,0.5888,0.5482,0.6074,0.6296,0.437,0.3888,0.4334,0.1852,-0.4056,-0.0318,0.3308,0.3794,0.0916,-0.0616,-0.1252,0.0318,0.2672,0.5738,0.9626,0.8094,0.813,1,0.6374,0.5626,0.6486,0.671,0.4878,0.458,0.2934,0.4692,0.5066,0.3682,0.2186,0.1552,0.1888,0.2822,0.0468,0.013,-0.2186,-0.2934,0.135,-1,-1,1,-1,-1,-1,0.0666,-1,-0.44,0.12,0.04,-0.06,-0.16,-0.08,0.12,0.22,-0.2,-0.04,0.28,1,0.7,0.66,0.54,0.12,0.06,-0.02,0.2,-0.1,0.1,0.08,-0.04,-0.16,-0.14,-0.34,-0.2,-0.16,-0.36,-0.26,-0.24,-0.88,'11'
-0.1834,0.3748,0.3078,0.6012,0.7192,0.815,0.6396,0.3748,0.1802,0.1962,0.0878,0.1228,0.276,0.2982,0.343,0.4992,0.5534,0.7162,0.8022,0.965,1,0.8374,0.8628,0.9234,0.965,0.9712,0.7544,0.748,0.6108,0.4992,0.563,0.5598,-0.3576,0.0238,0.265,0.3884,0.7672,0.8064,0.4334,0.352,0.2792,0.1052,0.1528,0.2342,0.2202,0.3212,0.3688,0.4782,0.641,0.7532,1,0.9832,0.8738,0.7952,0.8374,0.9692,0.9214,0.9354,0.7812,0.7336,0.582,0.568,0.5932,0.5512,-0.4006,-0.0654,0.2046,0.3068,0.7302,0.6732,0.4546,0.2586,0.3012,0.159,0.0852,0.1448,0.2188,0.2444,0.358,0.3636,0.537,0.7728,0.8806,0.983,0.9062,0.7756,0.804,0.8892,1,0.9432,0.7556,0.6562,0.5966,0.4886,0.483,0.4744,-0.3732,-0.0216,0.2704,0.4196,0.7778,0.6218,0.5656,0.3002,0.2438,0.058,0.048,0.0714,0.1708,0.2206,0.3234,0.4394,0.393,0.592,0.9734,1,0.9238,0.791,0.8308,0.947,0.917,1,0.8142,0.7114,0.5324,0.4528,0.4826,0.4428,-0.3236,-0.0018,0.378,0.6348,0.8662,0.6348,0.4936,0.2188,0.0416,-0.0018,-0.085,-0.0706,0.0344,0.1104,0.0524,0.2296,0.2766,0.2948,0.5154,0.971,1,0.765,0.6818,0.7432,0.9168,0.83,0.8264,0.5732,0.5046,0.3092,0.2478,0.2224,-0.2304,0.1482,0.5844,0.7902,1,0.5186,0.247,-0.1112,-0.3704,-0.3868,-0.6996,-0.4362,-0.4526,-0.4116,-0.5926,-0.6338,-0.5268,-0.1646,-0.1604,0.1564,0.5638,0.642,0.3252,0.2552,0.2182,0.5556,0.4444,0.2346,-0.2264,-0.2346,-0.181,-0.4238,0.1526,0.8006,0.975,1,0.6262,0.2772,0.0592,-0.4828,-0.6884,-0.7758,-0.6262,-0.5264,-0.4704,-0.2834,-0.3208,-0.5576,-0.4018,-0.4268,-0.4518,-0.1714,0.19,0.62,0.8068,0.57,0.57,0.651,0.7196,0.3022,0.2398,-0.2648,-0.2834,-0.2834,0,0.6818,0.7272,0.5454,0.6818,0.7272,0.591,0.6364,0.409,0.0454,-0.2728,-0.1364,-0.1818,-0.0454,0.0454,0.2728,0.0454,0.091,0.1818,0.5,0.6818,0.6818,0.8182,0.5454,0.909,1,0.6364,0.6364,0.7272,0.409,0.5454,0.591,-0.3044,0.3478,0.3478,0.6086,0.6086,0.6956,0.6522,0.1304,0.2174,0.087,0.087,0.1304,0.174,0.3044,0.3478,0.4782,0.5218,0.6956,0.7392,1,1,0.6522,0.826,0.8696,1,0.6086,0.7392,0.4782,0.6086,0.2608,0.4348,0.2174,-0.3522,0.0986,0.4366,0.7746,1,0.5774,0.4366,0.0704,-0.2958,-0.2958,-0.5212,-0.2676,-0.183,-0.1268,-0.155,-0.0986,-0.014,-0.0422,0.155,0.7464,0.7464,0.8028,0.3522,0.4084,0.4366,0.8592,0.7464,0.324,-0.0986,-0.014,-0.014,-0.2112,-1,-1,-1,-1,-0.9758,-0.9678,-0.9112,-0.78,-0.8088,-0.871,-0.8756,0.4758,0.6994,0.9666,0.7304,0.4436,0.22,0.1452,0.0496,-0.2224,-0.515,-0.6762,-0.8664,-0.9458,-0.9632,-0.9746,-0.9642,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9858,-0.9798,-0.7402,-0.6188,-0.673,-0.8086,-0.8424,0.002,0.7996,0.9032,0.6536,0.4552,-0.003,-0.1794,-0.4012,-0.632,-0.8052,-0.8752,-0.9464,-0.9698,-0.9766,-0.9822,-0.976,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.9534,-0.6634,0.1732,0.26,0.09,-0.13,-0.69,-0.49,-0.5326,-0.5576,-0.5576,-0.4476,-0.609,-0.7178,-0.7934,-0.8356,-0.7712,-0.6868,-0.6734,-0.6734,-0.9068,-0.8068,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6,1,1,1,-0.0286,0.4858,0.9142,1,1,-1,-1,-0.6858,-0.8858,-0.6,0.6,0.7142,-0.6,-0.7142,-0.7142,-0.8,-0.8,-0.8858,-0.3714,-1,-1,-1,-1,-1,-1,0.8908,0.9076,0.9266,0.9494,0.9748,0.9952,1,1,1,0.8672,0.505,0.487,0.518,0.5364,0.5724,0.5894,0.609,0.631,0.6432,0.7068,-0.6,-0.0236,-0.8528,-0.6776,-0.004,0.4026,0.6806,1,-0.2976,-0.039,0.0634,0.2292,0.1024,0.2292,0.356,0.4048,0.439,0.517,0.6976,0.6342,0.9902,1,0.8926,0.8292,0.7318,0.722,0.8292,0.8146,0.7658,0.5902,0.556,0.4634,0.3366,0.2732,0.3024,0.3854,0.1366,0.083,0.0586,-0.3854,-0.3996,-0.1086,-0.0116,-0.0484,-0.1132,-0.1316,-0.0484,-0.007,0.1916,0.3718,0.5842,0.6304,0.6952,1,0.94,0.7136,0.7274,0.7182,0.9908,0.9492,0.7644,0.7506,0.7782,0.5382,0.3394,0.284,0.3856,0.4734,0.2656,0.1916,0.1548,-0.1316,-0.4492,-0.0474,0.359,0.2506,-0.0836,-0.1242,0.0836,-0.0204,0.395,0.6072,0.9864,0.9458,1,0.973,0.6794,0.553,0.4898,0.553,0.6118,0.4672,0.684,0.553,0.4854,0.255,0.1196,0.0384,0.097,0.2416,-0.1602,-0.21,-0.3318,-0.526,0.217,-1,-1,1,-1,-1,-1,-0.0666,-1,0.125,0.1458,0.125,-0.0208,0.125,-0.2916,-0.2916,-0.0834,0.0208,0.2916,0.75,1,0.7292,0.8958,0.3958,0.0834,-0.0208,-0.1042,0.25,0.2292,-0.1876,-0.375,0.0208,0.1458,0,-0.3124,-0.2292,-0.2084,0.0834,0.0208,-0.0834,-0.2292,'11'
-0.224,0.365,0.3098,0.3866,0.6472,0.9602,0.9234,0.8098,0.5184,0.3926,0.3496,0.3312,0.4142,0.503,0.6074,0.7516,0.8866,1,0.905,0.678,0.6626,0.5674,0.6442,0.7608,0.9386,0.9202,0.6258,0.5062,0.362,0.2148,0.3312,0.2914,-0.3534,0.0732,0.0864,0.2408,0.4372,0.5184,1,0.9816,0.4188,0.2774,0.424,0.3534,0.4398,0.6204,0.6256,0.7592,0.7566,0.6256,0.4554,0.3848,0.3456,0.3508,0.4346,0.5654,0.6624,0.699,0.4974,0.3822,0.2016,0.1964,0.1492,0.0864,-0.4182,-0.0142,0.099,0.2406,0.3282,0.516,1,0.9666,0.5934,0.5366,0.6706,0.7092,0.7554,0.9872,0.9408,0.6396,0.5444,0.3564,0.2046,0.287,0.1814,0.1918,0.359,0.305,0.4646,0.5984,0.6782,0.5186,0.4106,0.3128,0.2818,0.2356,-0.399,-0.0344,0.1422,0.2614,0.4082,0.64,1,0.9266,0.6308,0.7294,0.812,0.8646,0.8486,0.3968,0.3256,0.3096,0.1262,0.0734,0.0022,0.0046,0.0068,-0.0802,0.062,0.078,0.156,0.2866,0.312,0.578,0.5046,0.399,0.2432,0.305,-0.3192,0.1454,0.287,0.4882,0.7664,0.8732,0.9628,1,0.9552,0.9354,0.8212,0.6968,0.4584,0.3018,0.1552,-0.0086,0.0038,-0.1876,-0.1628,-0.21,-0.2622,-0.2,-0.1478,-0.1204,-0.051,-0.0386,0.1454,0.282,0.5504,0.4634,0.4484,0.1876,-0.4402,0.2942,0.3152,0.711,0.7214,0.9688,1,0.7422,0.8072,0.6822,0.4714,0.1432,0.0286,-0.052,-0.2448,-0.2968,-0.4688,-0.539,-0.6458,-0.5598,-0.625,-0.5938,-0.6042,-0.5,-0.5,-0.487,-0.3334,-0.3046,0.0234,0.2344,0.1928,-0.0886,-0.7228,0.6948,0.8562,0.5368,0.9298,0.7578,1,0.993,0.5824,0.6842,0.0948,-0.3684,-0.379,-0.4562,-0.365,-0.6,-0.607,-0.6,-0.765,-0.7684,-0.7754,-0.6106,-0.6596,-0.572,-0.614,-0.7052,-0.607,-0.5578,-0.3438,0.1544,0.2176,-0.0632,-0.3192,0.4042,0.4468,0.3618,0.3618,0.9574,1,0.4468,0.4468,0.234,0.2766,0.149,0.3192,0.2766,0.4894,0.532,0.7446,0.7872,1,0.7446,0.7446,0.617,0.7872,0.7022,1,0.9574,0.617,0.617,0.4042,0.4468,0.4042,0.4468,-0.3192,0.234,0.234,0.2766,0.617,1,0.8724,0.617,0.4894,0.3618,0.234,0.234,0.3618,0.4042,0.5744,0.617,0.9148,1,0.617,0.7022,0.617,0.617,0.7022,0.7446,0.9574,0.9148,0.7022,0.617,0.4468,0.4042,0.3618,0.3618,-0.3962,0.132,0.2642,0.5472,0.8302,1,0.7924,0.8302,0.9434,1,0.585,0.3774,0.2264,0.2642,-0.0566,-0.0566,-0.283,-0.283,-0.283,-0.3774,-0.3774,-0.3962,-0.2452,-0.2642,-0.1698,-0.2264,-0.0754,0.0566,0.2642,0.434,0.5094,0.1132,-1,-1,-1,-1,-1,-1,-1,-1,-0.9776,-0.9856,-0.6128,0.1716,0.4148,0.5842,0.5864,0.4974,0.5802,0.4902,0.7008,0.717,0.4056,-0.139,-0.8734,-0.9438,-0.957,-0.957,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9906,-0.9918,-0.7898,-0.3204,0.1476,0.6816,0.7866,0.6402,0.7744,0.4416,0.0466,-0.0852,-0.4158,-0.7394,-0.9572,-0.9594,-0.9566,-0.9604,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8534,-0.9734,-0.5868,-0.6356,-0.6556,-0.6378,-0.6224,-0.609,-0.6446,-0.6512,-0.8534,-0.862,-0.924,-0.946,-0.83,-0.7668,-0.6934,-0.63,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,-0.6858,-0.7714,-0.7714,-0.7428,-0.6572,-0.6572,-0.0858,-0.0858,-0.0572,0.4858,-0.1428,-0.8858,-0.8572,-0.8,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.093,0.0952,0.0744,0.0224,-0.08,-0.086,-0.1434,-0.298,-0.5416,-0.6858,-0.6934,0.0824,-0.7754,-0.5228,-0.2778,-0.2552,-0.1078,1,-0.647,-0.2236,0.2236,0.2942,0.3176,0.2942,0.3882,0.6,0.9058,0.9294,0.8824,0.8588,1,0.9764,0.6942,0.5764,0.4824,0.5764,0.4824,0.2942,0.6,0.5294,0.5294,0.2,0.2,0.153,-0.0352,-0.1058,-0.1764,-0.4118,-0.4352,-0.8118,0.0736,0.4316,0.4526,0.8526,0.4736,0.3474,0.4736,0.4736,1,0.8736,0.9158,0.8736,0.9578,0.8736,0.6422,0.4106,0.2632,0.5368,0.4526,0.2,0.5158,0.3474,0.4526,0.2422,0.3052,0.1578,0.0948,0.0106,-0.1158,-0.4736,-0.579,-0.7684,0.386,0.6666,0.807,0.9298,0.579,0.386,0.5088,0.6666,0.9474,0.8246,0.8422,0.7544,1,0.7544,0.5264,0.4736,0.5614,0.5614,0.5088,0.2982,0.4386,0.2632,0.2982,0.2106,0.2808,0.0702,-0.0176,-0.1052,-0.2106,-0.5264,-0.3334,-0.421,-0.5084,-1,-1,1,-0.8,-1,-1,-0.8,-1,-0.4808,-0.1346,0.327,0.75,0.673,0.9616,1,0.577,-0.0192,0.1154,0.1346,0.1538,0.173,0.0576,0.3846,0.4424,0.173,0.1346,0.577,0.2308,-0.0192,-0.0384,-0.0962,-0.1538,0.1538,-0.0384,0.2116,0.2308,0.327,0.077,0.077,-0.1154,'12'
-0.2838,0.3202,0.2938,0.3366,0.4884,0.8778,0.825,0.8614,0.7822,0.5182,0.4192,0.538,0.5908,0.7228,0.8184,1,0.9472,0.9736,0.7722,0.6864,0.7062,0.6666,0.7756,0.8448,0.9306,0.9208,0.7062,0.5578,0.5182,0.3862,0.4422,0.33,-0.3334,0.0962,0.0666,0.2386,0.4578,0.5644,0.9644,1,0.4814,0.3838,0.5734,0.514,0.674,0.8578,0.9408,0.5792,0.5674,0.3718,0.3452,0.3066,0.2386,0.2978,0.3452,0.4666,0.6444,0.6978,0.5466,0.5022,0.2918,0.2326,0.2088,0.1408,-0.3732,0.0058,0.137,0.2536,0.4344,0.656,1,0.93,0.4374,0.6006,0.6764,0.793,0.7638,0.3966,0.312,0.2944,0.1108,0.07,-0.0058,-0.032,-0.0466,-0.1342,-0.0204,0.0788,0.1516,0.3412,0.4402,0.5336,0.4518,0.169,0.0146,0.0846,-0.3878,-0.0068,0.313,0.398,0.738,0.796,1,0.8402,0.847,0.898,0.8232,0.4184,0.2586,0.1666,-0.0646,-0.1054,-0.187,-0.33,-0.2824,-0.3198,-0.3334,-0.4592,-0.3606,-0.2824,-0.1088,-0.119,0.0612,0.33,0.4048,0.3776,0.2722,0.0612,-0.2808,0.0824,0.4906,0.6254,1,0.8764,0.9026,0.9926,0.955,0.8202,0.5918,0.251,0.0224,-0.0862,-0.3896,-0.4194,-0.4044,-0.6142,-0.5768,-0.5206,-0.442,-0.4532,-0.7042,-0.573,-0.5018,-0.4008,-0.2734,-0.06,0.3632,0.3932,0.1798,-0.0786,-0.1704,0.2402,0.7336,0.7686,1,0.7816,0.8296,0.8602,0.7424,0.38,-0.0656,-0.3188,-0.3974,-0.559,-0.5022,-0.7336,-0.7468,-0.7686,-0.8078,-0.7118,-0.5196,-0.5414,-0.703,-0.5676,-0.6812,-0.7292,-0.7292,-0.786,-0.358,-0.1136,-0.1266,-0.524,0.0046,0.528,0.6448,0.715,1,0.8552,0.7242,0.6402,0.57,-0.187,-0.4066,-0.5328,-0.4392,-0.43,-0.6214,-0.6588,-0.5186,-0.6214,-0.7524,-0.7804,-0.6682,-0.785,-0.7476,-0.7804,-0.6496,-0.8178,-0.8738,-0.8552,-0.3738,-0.285,-0.3178,-0.6122,-0.3478,0.3478,0.3914,0.3478,0.3914,0.826,0.913,0.4348,0.6522,0.3478,0.3044,0.3478,0.2174,0.5652,0.4782,0.826,1,0.913,0.8696,0.6086,0.5652,0.6086,0.7392,0.913,0.7392,0.9566,0.7392,0.5218,0.4782,0.2608,0.3044,0.0434,-0.2858,0.3214,0.2858,0.2858,0.4286,0.8928,0.8572,0.8214,0.7858,0.5,0.4642,0.6072,0.5714,0.75,0.7142,1,1,0.9286,0.9286,0.7858,0.75,0.7142,0.7142,0.9642,1,0.8214,0.75,0.5714,0.5714,0.5358,0.5358,0.5,-0.5,-0.1154,0.1346,0.2116,0.5,0.7116,1,0.827,0.6154,0.577,0.577,0.4424,0.3076,0.1154,-0.0192,-0.0576,-0.173,-0.3076,-0.2884,-0.3846,-0.3076,-0.3462,-0.3846,-0.2308,-0.1154,-0.077,0.1538,0.3654,0.3076,0.2308,0.077,0,-1,-1,-1,-1,-1,-1,-1,-0.97,-0.975,-0.9712,-0.8308,0.2218,0.4612,0.6754,0.9148,0.9624,0.5928,0.5012,0.5188,0.188,-0.2268,-0.4022,-0.6868,-0.8646,-0.9286,-0.9436,-0.9412,-0.9462,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9868,-0.9872,-0.9782,-0.7308,0.025,0.6132,0.8572,0.8408,0.8718,0.3112,-0.0604,-0.2924,-0.5434,-0.7342,-0.8074,-0.8948,-0.9144,-0.9346,-0.9508,-0.956,-0.9666,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9434,-0.88,-0.6,-0.32,-0.5544,-0.5916,-0.6058,-0.6126,-0.655,-0.6576,-0.7676,-0.85,-0.9176,-0.9326,-0.9276,-0.9034,-0.62,-0.7068,-0.6534,-0.5934,-0.6334,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,-0.2572,1,1,1,0.0572,-0.7142,-0.4286,-0.2572,-0.1428,-0.2,-0.2,-0.2,-0.7714,-0.4572,-0.5714,-0.4858,-0.8,-0.9142,-0.9142,-0.0572,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.2034,-0.1972,-0.2116,-0.2228,-0.2608,-0.3244,-0.3898,-0.5132,-0.6078,-0.6132,-0.6534,-0.1176,-0.7336,-0.3652,0.114,0.2686,0.536,1,0.1224,0.2448,0.5306,0.4592,0.6938,0.4082,1,0.7654,0.9388,0.8164,0.9184,0.9898,0.6428,0.7552,0.4184,0.5204,0.551,0.3674,0.398,0.102,0.5,0.602,0.2346,0.3266,0.398,0.296,0.296,0.0306,0.4898,0.3572,0.4082,0.1734,-0.0602,-0.3334,0.1694,0.3552,0.6066,0.541,0.5628,0.377,0.6394,0.7378,1,0.7596,0.7486,0.7158,0.6722,0.4864,0.7704,0.6394,0.4316,0.694,0.9126,0.377,0.705,0.377,-0.1256,0.1912,0.3224,0.0274,0.4644,0.082,0.1912,-0.3442,-0.2054,0.0576,0.1616,0.5616,0.2,0.0794,0.3424,0.4466,1,0.9562,0.8136,0.8246,0.9562,0.7918,0.4136,0.3316,0.2494,0.2768,0.452,0.9068,0.841,0.6876,0.5836,0.6164,0.2164,0.0302,-0.0794,-0.063,-0.1562,-0.041,-0.052,-0.6274,-0.9944,1,-1,-1,-1,-1,-0.6,-1,-1,-0.0688,-0.0688,0.6336,0.9542,0.8932,1,0.603,0.2366,0.0076,0.0534,0.374,0.2824,0.1604,0.1756,0.8626,0.6488,0.1146,0.2978,0.0688,-0.1146,-0.2366,0.603,0.2824,-0.0382,0.0534,0.0382,-0.0688,0.0688,0.0534,0.084,0.1298,-0.1604,'12'
-0.3422,0.5096,0.5742,0.398,0.489,0.9178,0.95,0.5654,0.4068,0.1512,0.2246,0.0926,0.26,0.2658,0.3158,0.4274,0.4772,0.6476,0.9236,1,0.7944,0.6534,0.5712,0.6064,0.718,0.7768,0.8914,0.8502,0.624,0.5918,0.4008,0.4038,-0.151,0.4218,0.3682,0.3456,0.6022,0.9012,0.7376,0.811,0.6164,0.5458,0.354,0.4612,0.4866,0.5796,0.6446,0.7264,0.8928,0.921,0.9238,0.9352,0.8166,0.7122,0.6614,0.763,0.8872,1,0.9012,0.8166,0.6362,0.6136,0.4782,0.5402,-0.3068,0.1206,0.0274,0.1562,0.3836,0.4768,0.8904,0.8602,0.5424,0.4192,0.4274,0.452,0.5232,0.6466,0.7698,1,0.8876,0.7946,0.6658,0.6328,0.515,0.485,0.452,0.5562,0.7178,0.852,0.841,0.611,0.5342,0.441,0.4054,0.4302,-0.2154,0.238,0.27,0.3762,0.4084,0.5788,0.955,0.807,0.492,0.5176,0.5242,0.6882,0.865,1,0.775,0.7684,0.5628,0.4598,0.4662,0.5112,0.5692,0.3794,0.193,0.3184,0.6882,0.8392,0.672,0.5016,0.2476,0.283,0.3248,0.357,0.21,0.7924,0.8736,1,0.088,-0.0474,-0.2866,-0.0294,0.0248,0.2416,0.684,0.8826,0.2686,-0.1242,-0.4718,0.0022,0.1242,0.3996,0.3228,0.6208,0.842,0.9232,0.7246,0.5712,0.7156,0.7924,0.7066,-0.3228,-0.6794,-0.9232,-0.4266,0.1738,0.318,0.8368,0.9288,1,0.1046,-0.046,-0.3724,0.1882,0.1298,0.067,0.523,0.5984,-0.1214,-0.4352,-0.5942,-0.1758,-0.205,0.0754,-0.092,0.021,0.544,0.4728,0.318,0.226,0.2888,0.5482,0.4142,-0.502,-0.7112,-0.9246,-0.7154,-0.251,0.3194,1,0.709,0.6156,-0.3038,-0.5844,-0.7714,-0.2104,-0.2988,-0.6624,-0.226,-0.0754,-0.4858,-0.4286,-0.5532,-0.7402,-0.3402,-0.309,-0.6728,-0.3506,-0.226,-0.3142,-0.4078,-0.3922,-0.309,-0.2208,-0.5324,-0.8442,-0.9012,-0.7922,-0.9272,-0.6832,-0.6924,0.3462,0.5,0.2308,0.8462,0.9616,0.6924,0.423,0.1538,0.0384,-0.0384,-0.1538,0.2308,0.2692,0.2308,0.3846,0.3462,0.6538,0.8076,0.6538,0.8462,0.8462,0.6538,0.7692,0.6538,0.923,1,0.6538,0.7692,0.6538,0.6154,0.577,-0.5918,0.3878,0.4694,0.347,0.4286,0.347,0.6734,0.5102,0.2654,0.102,0.1428,0.0612,0.2244,0.2244,0.3062,0.4286,0.4694,0.5918,0.7142,1,0.8776,0.5102,0.551,0.5918,0.5918,0.7552,0.9184,0.6734,0.6326,0.4694,0.4286,0.1836,-0.1764,0.2058,0.4706,0.4412,0.353,0.3824,0.7352,0.5882,0.4118,0.4706,0.7648,0.8236,1,0.9118,0.2942,0.0588,0.353,0.4118,0.4118,0.5882,0.5882,0.6764,0.2058,0.2058,0.4118,0.4412,0.3236,0.147,0.0588,0.0294,0.147,0.4706,-1,-1,-1,-1,-1,-1,-1,-0.9688,-0.9702,-0.8914,-0.418,0.696,0.8928,0.7394,0.4776,0.563,0.3948,0.342,0.2618,0.1466,-0.004,-0.2252,-0.696,-0.9064,-0.924,-0.9158,-0.9294,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9848,-0.9862,-0.9124,-0.6776,-0.2106,0.0608,0.3072,0.6974,0.9032,0.1854,-0.5584,-0.639,-0.6926,-0.7392,-0.8062,-0.892,-0.9188,-0.9328,-0.9326,-0.9588,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9168,-0.93,-0.7834,-0.32,-0.6378,-0.6512,-0.5024,-0.4334,-0.4378,-0.5378,-0.7956,-0.96,-0.988,-0.984,-0.964,-0.72,-0.6268,-0.5134,-0.45,-0.7268,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,-0.2858,1,1,1,-0.6286,-0.5714,-0.7714,-0.5142,1,1,-0.7428,-0.5142,-0.6286,0.7142,-0.1142,-0.7428,-0.8572,-0.7428,-0.1428,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.4732,0.5346,0.5266,0.4974,0.4218,0.4004,0.396,0.3752,0.295,-0.0046,0.0048,-0.64,0.0824,-0.7532,-0.217,-0.241,-0.2162,-0.0766,1,-0.6364,0,0.7728,0.7728,0.3182,0.1136,0.25,0.3182,0.591,0.9546,1,0.341,0.7046,0.7272,0.5454,0.7272,0.4318,0.5228,0.6136,0.2728,0.2046,0.5454,0.5228,0.0454,-0.0228,0.091,0,-0.4318,-0.4546,-0.1818,0.091,-0.1136,-0.6406,-0.1562,0.6562,0.5156,-0.2032,-0.2968,-0.1718,-0.2344,0.1406,0.8438,1,0.5312,0.9532,0.9532,0.5156,0.6562,0.5624,0.6094,0.375,0.4844,0.125,0.6562,0.5468,0.0938,-0.0468,-0.1406,-0.1718,0.0468,0.125,-0.2656,0.1876,0.1718,-0.0632,0.6202,0.8988,0.7974,0.4684,0.3798,0.3292,0.3292,0.5696,0.924,0.9874,0.8608,0.8482,1,0.7088,0.6456,0.595,0.6202,0.443,0.4304,0.4684,0.519,0.4684,0.1772,0.038,-0.038,-0.1898,-0.3038,-0.114,-0.2406,-0.0886,-0.2152,0.1982,-1,-1,1,-1,-1,-0.8,-0.7334,-1,-0.4,0,0.4666,0.6,0.4666,0.3,1,0.95,0.0334,0.1166,0.15,-0.15,0.05,0.1666,0.2666,0.1666,0.4666,0.6334,0.5834,0.2,0.4,0.4666,0.4666,0.4834,0.2834,0.2666,0.35,0.3166,0.4166,0.4666,0.4,0.0334,'13'
-0.3904,0.4198,0.4664,0.3904,0.4736,0.8972,0.9388,0.5888,0.317,0.087,0.1946,0.2044,0.3342,0.197,0.3684,0.4026,0.6132,0.7234,0.9608,1,0.88,0.7674,0.7552,0.7528,0.8874,0.907,0.9412,0.9436,0.6768,0.667,0.5888,0.5936,-0.2728,0.3368,0.3454,0.3198,0.3198,0.8652,0.8866,0.5466,0.5828,0.3818,0.4352,0.4288,0.5058,0.4632,0.5594,0.707,0.8096,0.8824,1,0.7626,0.7284,0.555,0.6086,0.5252,0.786,0.6942,0.9444,0.8566,0.7626,0.6942,0.645,0.6,-0.2628,0.275,0.2528,0.2226,0.273,0.6294,0.5568,0.7322,0.6496,0.5548,0.4662,0.5468,0.4622,0.6436,0.7744,1,0.851,0.706,0.5952,0.5568,0.42,0.3092,0.2346,0.3696,0.3796,0.5408,0.5892,0.7744,0.6958,0.4964,0.438,0.3856,-0.0258,0.5704,0.4342,0.3858,0.8064,0.885,0.9546,0.9576,0.8034,0.7034,0.7246,0.9032,1,0.9184,0.991,0.6884,0.4886,0.3736,0.2406,0.2708,0.2768,0.0772,-0.1982,-0.1406,0.1256,0.2798,0.4856,0.5794,0.4402,0.1922,0.2194,0.3282,0.363,1,0.7282,0.8378,0.0466,-0.075,-0.4848,0.0102,0.0994,0.3306,0.286,0.1968,-0.148,-0.5538,-0.4848,-0.1562,-0.1278,-0.2494,-0.2536,0.0386,-0.0548,-0.363,-0.3266,-0.3226,-0.493,-0.2698,-0.3874,-0.647,-0.9594,-0.785,-0.7282,-0.1076,0.497,1,0.8432,0.864,-0.1464,-0.4722,-0.5134,0.0474,-0.1628,-0.101,0.4598,0.336,-0.5134,-0.6866,-0.633,-0.4722,-0.5422,-0.736,-0.534,-0.6288,-0.5092,-0.5176,-0.5506,-0.7444,-0.431,-0.435,-0.5422,-0.864,-0.8432,-0.9752,-0.7896,-0.3484,0.4334,1,0.6334,0.4,-0.5,-0.681,-0.6476,-0.5238,-0.6048,-0.5524,-0.2858,-0.4048,-0.4476,-0.5858,-0.7714,-0.6142,-0.5904,-0.3952,-0.8714,-0.8286,-0.6476,-0.538,-0.5334,-0.6666,-0.4334,-0.5524,-0.5142,-0.719,-0.9048,-0.781,-0.8428,-0.2,-0.75,0.2916,0.4584,0.2916,0.75,0.7916,0.7084,0.625,0.125,0.2916,0.125,0.2916,0.3334,0.3334,0.4584,0.25,0.6666,0.625,0.8334,1,0.75,0.7084,0.5834,0.75,0.7084,0.9166,0.75,0.875,0.7084,0.625,0.5834,0.625,-0.3794,0.3448,0.3794,0.3448,0.4138,0.5172,0.6896,0.5172,0.2068,0.1034,0.069,-0.0344,0.1724,0.1724,0.3448,0.4138,0.4828,0.6206,0.6896,1,0.931,0.6896,0.6896,0.6552,0.6552,0.6896,0.8276,0.5862,0.5862,0.5172,0.5172,0.5172,-0.0278,0.5,0.3612,0.2778,0.8334,0.75,0.6388,0.5278,0.5834,0.5,0.6666,1,0.8888,0.3888,0.25,0.1112,0.0834,0.0834,-0.0556,0.1112,0.3056,0.0556,-0.2778,-0.8056,-0.3334,-0.25,-0.0278,-0.0834,-0.3888,-0.3056,-0.2222,0.0834,-1,-1,-1,-1,-1,-1,-1,-1,-0.985,-0.972,-0.5484,0.2946,0.8366,0.856,0.528,0.5096,0.3526,0.2086,-0.0162,-0.2118,-0.3646,-0.5678,-0.8354,-0.9118,-0.943,-0.943,-0.9494,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.989,-0.9854,-0.6934,0.0318,0.5246,0.813,0.7236,0.5482,-0.0924,-0.6056,-0.7066,-0.773,-0.8214,-0.878,-0.9196,-0.9262,-0.9392,-0.9588,-0.9638,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9768,-0.9234,-0.61,-0.486,-0.57,-0.366,-0.462,-0.4328,-0.5764,-0.8582,-0.951,-0.9638,-0.971,-0.9528,-0.6668,-0.6868,-0.6334,-0.5934,-0.7334,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,1,1,1,-0.6858,-0.7714,-0.7714,-0.2572,1,1,-0.7714,-0.9142,-0.9428,-0.1142,-0.1714,-0.8858,-0.7142,-0.7142,-0.2572,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.3514,0.6416,0.6228,0.6242,0.63,0.587,0.5642,0.4872,0.2426,-0.1638,-0.3112,-0.7066,0.2588,-0.6536,-0.2342,-0.0352,0.08,0.3312,1,-0.1428,0.1836,0.551,0.6326,0.5102,0.4694,0.4286,0.4286,0.6734,0.8776,0.9184,0.8776,1,1,0.9184,0.5102,0.7142,0.7552,0.7142,0.3878,0.347,0.4286,0.3878,0.347,0.1836,0.102,-0.2654,-0.2244,-0.2654,-0.1428,-0.3878,-0.5102,-0.0576,0.327,0.5192,0.7692,0.2116,-0.0192,0.1538,0.2308,0.4038,0.75,0.8076,0.5962,0.9808,1,0.7308,0.1924,0.7308,0.6924,0.7692,0.1346,0.5962,0.423,0.5576,0.423,0.3076,0.2308,-0.0192,-0.3654,-0.0384,-0.2308,-0.2116,-0.2884,0.138,0.6034,0.8104,0.8794,0.5862,0.4482,0.4656,0.638,0.8276,0.8794,0.9828,0.8104,0.8966,1,0.6896,0.6896,0.7758,0.8276,0.7586,0.4828,0.7414,0.6034,0.6206,0.4138,0.2414,0.1034,-0.1724,-0.2586,0.0518,-0.3104,-0.2414,-0.3448,-0.2314,-1,-1,1,-1,-1,-0.8,-0.8334,-1,-0.2586,0.2932,0.431,0.7758,0.6552,0.8794,1,0.9138,0.5518,0.3966,0.3794,0.2758,0.2068,0.2242,0.6206,0.5172,0.5172,0.2758,0.1724,0.0862,0.138,-0.2242,0.2068,0.2932,0.2586,-0.2242,0,0.2932,0.138,-0.0172,-0.138,-0.5,'13'
-0.3632,0.2792,0.2954,0.3334,0.4498,0.8076,0.7616,0.3686,0.2656,0.1436,0.0948,0.1382,0.122,0.2792,0.2982,0.4336,0.4498,0.6098,0.8292,0.9972,0.9404,0.8158,0.7046,0.7534,0.7886,0.943,1,0.9268,0.8536,0.7344,0.6802,0.6124,-0.2762,0.1944,0.1406,0.2736,0.555,0.7186,0.537,0.6446,0.3376,0.4016,0.2404,0.2532,0.3914,0.358,0.4808,0.404,0.6496,0.7264,0.908,0.8286,0.9488,0.711,0.7774,0.7852,0.8286,1,0.9948,0.9002,0.8568,0.6956,0.6036,0.6342,-0.3446,0.0956,0.0302,0.1656,0.4026,0.5308,0.5284,0.6034,0.3664,0.3906,0.2238,0.202,0.3664,0.2962,0.4534,0.4608,0.6252,0.8984,1,0.7654,0.7364,0.5478,0.5646,0.6444,0.6396,0.838,0.8016,0.7848,0.6154,0.5646,0.4292,0.4824,-0.2104,0.2836,0.2012,0.3324,0.619,0.6342,0.8018,0.7104,0.381,0.1982,0.2074,0.247,0.2774,0.372,0.4908,0.7164,0.8658,0.9574,0.8932,0.8232,0.6646,0.4756,0.3048,0.4238,0.5914,0.7196,0.994,1,0.7104,0.4786,0.3568,0.3048,0.1776,0.781,0.9124,1,0.1484,-0.129,-0.1144,-0.1532,-0.1386,0.0414,-0.3188,-0.9562,-0.7762,-0.5036,-0.1776,0.3188,0.343,0.0656,0.1386,0.163,0.3528,0.343,0.1532,-0.0948,0.0122,0.1094,0.051,-0.3382,-0.8248,-0.781,-0.9756,-0.9368,0.4312,0.9378,0.9688,1,0.1912,-0.1112,-0.5644,-0.1866,-0.0622,0.04,-0.6134,-0.7378,-0.7378,-0.7778,-0.3066,-0.1466,-0.2666,-0.2666,-0.3734,-0.0978,0.0178,-0.1956,-0.2934,-0.4178,-0.2888,-0.3378,-0.3556,-0.52,-0.8622,-0.8756,-0.7956,-0.9378,0.3468,1,0.6474,0.422,-0.0346,-0.029,-0.0694,0.0174,-0.3236,-0.4336,-0.8208,-0.4914,-0.237,-0.3584,-0.2254,-0.0982,0.2658,0.2658,-0.0578,-0.3064,-0.1734,-0.081,-0.393,-0.4566,-0.2948,-0.2254,0.0232,-0.0982,-0.1098,-0.2254,-0.4624,-0.4508,-0.591,0.1364,0.2728,0.3182,0.591,0.7272,0.6364,0.4546,0.2272,0.091,-0.0454,0.0454,0.0454,0.2272,0.2272,0.2728,0.3182,0.3636,0.6818,0.7272,0.9546,0.7728,0.6818,0.6818,0.7728,0.8636,1,0.9546,0.7728,0.6818,0.591,0.5454,-0.3334,0.3704,0.3704,0.4074,0.3704,0.7408,0.7778,0.2592,0.2962,0.1852,0.2222,0.1852,0.2592,0.2592,0.4074,0.3704,0.5186,0.5926,0.8888,0.963,0.963,0.8518,0.7778,0.6666,0.8888,0.8888,1,0.8888,0.7778,0.7408,0.7038,0.7038,-0.0886,0.3418,0.4178,0.4936,0.6202,0.4684,0.5444,0.3418,0.1898,0.0632,-0.0886,0.0126,0.2658,0.3164,0.6202,0.7974,0.9746,0.7468,0.6456,0.5696,0.5696,0.1646,-0.1392,0.0126,0.367,0.4936,1,0.9494,0.1646,0.0126,0.0632,-0.0632,-1,-1,-1,-1,-1,-1,-1,-0.9742,-0.97,-0.9048,-0.8718,0.2282,0.9038,0.6326,0.4454,0.2572,0.1444,0.1434,-0.0056,-0.1308,-0.3222,-0.6058,-0.8406,-0.8986,-0.9442,-0.9494,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9852,-0.9848,-0.9116,-0.8866,0.1428,0.8884,0.8018,0.9342,0.5142,-0.2072,-0.5484,-0.6678,-0.724,-0.7924,-0.8414,-0.925,-0.9422,-0.9534,-0.966,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9068,-0.9068,-0.72,-0.6568,-0.4268,-0.4512,-0.5578,-0.42,-0.389,-0.6068,-0.7734,-0.969,-0.964,-0.972,-0.868,-0.7268,-0.5734,-0.5334,-0.69,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7428,0.4,1,1,1,-0.6858,-0.9714,-0.9142,0.3714,1,1,-0.3142,-0.6,0.0858,1,-0.6858,-0.7714,-0.6858,-0.7428,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.5454,0.715,0.7156,0.6982,0.7174,0.723,0.7014,0.6898,0.63,0.52,0.2228,-0.68,0.0824,-0.953,-0.4654,-0.0618,0.4666,0.7494,1,-0.0466,0.43,0.7306,0.772,0.4196,0.2642,0.1502,0.2642,0.5752,0.9274,1,0.6476,0.8446,0.9378,0.8756,0.5544,0.5544,0.8446,0.8342,0.917,0.6788,0.5648,0.6684,0.3368,0.1398,0.0674,0.057,-0.0052,-0.0362,0.0362,-0.0778,-0.4818,-0.46,0.12,1,0.96,0.04,-0.02,0.02,0.24,0.26,0.92,1,0.14,0.24,0.76,0.58,0.04,0.12,0.28,0.34,0.58,0.42,0.4,0.56,-0.32,-0.42,-0.16,0.06,0.08,-0.08,-0.24,-0.3,-0.76,-0.1348,0.2482,0.3618,0.3758,0.0638,0.078,0.149,0.2482,0.3618,0.8582,0.9008,0.7304,0.844,1,0.688,0.532,0.4752,0.617,0.6596,0.5602,0.3334,0.5178,0.5036,0.3192,0.234,0.1774,0.2056,0.0212,-0.2056,-0.2624,-0.2482,-0.7446,-0.645,-1,-1,1,-1,-1,-1,-0.7,-1,-0.0212,0.149,0.6382,0.617,0.617,0.234,0.617,0.6596,1,0.5958,0.8724,0.468,0.4468,0.766,0.8724,0.7234,0.6596,0.4042,0.6596,0.383,0.1276,0.1276,0.3192,0.4256,0.1276,0.2978,0.2128,-0.3192,0.1914,0.2128,-0.149,-0.6382,'14'
-0.523,0.4164,0.4916,0.2736,0.397,0.7554,0.9444,0.7578,0.4214,0.3026,0.1792,0.138,0.3486,0.3342,0.4092,0.3802,0.5884,0.5908,0.9104,1,0.9298,0.8716,0.6416,0.7506,0.6538,0.8256,0.7772,0.9274,0.8306,0.552,0.5618,0.4698,-0.3676,0.281,0.3092,0.2448,0.283,0.8006,0.871,0.4622,0.4764,0.2124,0.3576,0.14,0.3534,0.1944,0.4622,0.3554,0.6516,0.5872,1,0.9758,0.5872,0.6154,0.5046,0.577,0.6294,0.7402,0.6898,0.8328,0.6496,0.5408,0.3878,0.426,-0.1352,0.49,0.4722,0.4524,0.5432,0.9712,0.887,0.5942,0.5122,0.3726,0.275,0.3592,0.3082,0.439,0.49,0.7006,0.7694,1,0.9822,0.7318,0.6542,0.388,0.3348,0.3192,0.419,0.541,0.7006,0.7606,0.7716,0.4834,0.408,0.306,0.2684,1,0.8736,0.6992,0.3402,0.2,-0.2582,-0.3162,0.2992,0.2,-0.5214,-0.6786,-0.7196,-0.3812,-0.1042,0.5248,0.5418,0.1966,0.0018,0.0086,0.2,0.224,-0.0632,-0.1692,0.012,-0.0086,-0.1794,-0.33,-0.6102,-0.812,-0.9146,-0.8496,0.4374,1,0.7862,0.9112,0.2894,0.2468,-0.4704,0.319,0.444,0.0066,-0.1282,-0.6086,-0.5856,-0.546,-0.3388,0.0922,0.3684,0.1678,-0.1546,0.0328,0.2302,0.2006,-0.0296,-0.2138,-0.25,-0.2566,-0.2994,-0.6578,-0.8026,-0.8816,-0.8356,-0.8552,0.4426,1,0.7848,0.9012,0.2064,0.0934,-0.6438,0.365,0.3968,-0.2134,-0.3932,-0.5874,-0.5944,-0.6402,-0.5168,-0.15,-0.037,-0.4004,-0.4638,-0.1958,0.0864,0.1782,-0.365,-0.418,-0.4638,-0.231,-0.1746,-0.686,-0.813,-0.9436,-0.7742,-0.753,0.2594,1,0.7162,0.011,0.6008,0.6364,0.6008,0.4502,-0.0066,-0.3304,-0.5034,-0.2682,-0.0598,-0.091,0.0022,0.3038,0.6008,0.6542,0.4456,0.3082,0.1618,0.011,-0.1352,0.011,0.1486,0.2196,0.4456,0.6762,0.5432,0.0156,-0.193,-0.1662,-0.96,0.16,0.32,0.16,0.44,0.32,0.6,0.64,0.12,0.2,-0.16,0.24,0.16,0.24,0.28,0.24,0.52,0.4,0.88,1,0.92,0.88,0.52,0.84,0.8,0.88,0.96,0.88,0.88,0.64,0.72,0.64,-0.6596,0.4042,0.4894,0.234,0.3618,0.4042,0.8724,0.7446,0.2766,0.234,0.1064,0.1064,0.234,0.3618,0.234,0.3192,0.3618,0.4894,0.7022,0.7446,1,0.8298,0.6596,0.4042,0.7872,0.8298,0.4894,0.9148,0.7446,0.532,0.6596,0.234,-0.013,0.5844,0.5064,0.3766,0.5584,0.8182,0.6364,0.4026,0.1168,0.091,-0.1688,-0.1168,0.1688,0.2988,0.6364,0.8702,1,0.6624,0.3766,0.4026,0.5324,0.1688,-0.091,-0.1688,-0.091,0.2988,0.3766,0.3766,0.3506,-0.013,-0.039,-0.2728,-1,-1,-1,-1,-1,-1,-1,-1,-0.974,-0.963,-0.2766,0.153,0.6888,0.963,0.9456,0.7482,0.6778,0.3962,0.163,0.0234,-0.074,-0.4382,-0.7604,-0.8728,-0.895,-0.9172,-0.942,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9844,-0.979,-0.389,-0.0162,0.4568,0.883,0.5714,0.0416,-0.4386,-0.5274,-0.5936,-0.6514,-0.6912,-0.7774,-0.8368,-0.8502,-0.9052,-0.9254,-0.945,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.9534,-0.7334,-0.6164,-0.66,-0.4728,-0.5874,-0.76,-0.9346,-0.9364,-0.942,-0.9834,-0.9718,-0.8718,-0.5968,-0.5234,-0.5568,-0.48,-0.57,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,1,1,1,-0.6572,-0.6572,-0.2,1,0.5142,-0.8858,-1,-0.9142,1,-0.1142,-0.8,-0.8,-0.6858,-0.7428,-0.8286,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,0.9542,0.3966,0.4896,0.4684,0.4356,0.4386,0.4148,0.4068,0.4056,0.309,0.118,0.0034,-0.7066,0.3412,-0.1824,0.0236,-0.11,-0.1144,0.1114,1,0.0196,0.7648,0.9608,1,0.6078,0.451,0.451,0.5294,0.5294,0.7254,0.804,0.7648,0.804,0.804,0.9216,0.7254,0.647,0.7254,0.7254,0.5686,0.3726,0.3726,0.1372,0.3334,0.0196,0.1372,-0.1764,-0.098,-0.2156,-0.2942,-0.647,-0.647,-0.38,0.44,0.9,0.96,0.4,0.22,0.34,0.44,0.54,0.78,1,0.78,0.86,0.86,0.98,0.82,0.84,0.92,0.84,0.46,0.3,0.28,0.24,-0.12,-0.28,-0.5,-0.42,-0.66,-0.54,-0.52,-0.48,-0.68,-0.0534,0.4198,0.71,0.603,0.603,0.313,0.3894,0.4352,0.6488,0.7862,1,0.7862,0.8778,0.8778,0.9236,0.7862,0.8168,0.8778,0.8626,0.5726,0.4198,0.4504,0.2062,0.0688,-0.1146,-0.1756,-0.252,-0.3588,-0.5878,-0.145,-0.1298,-0.3282,0.476,-1,-1,1,-0.8,-1,-0.8,-0.8334,-1,-0.3666,-0.1166,0.5166,0.6,0.3666,0.4334,0.3,0.9334,0.8166,0.5334,0.4166,0.3166,0.2334,0.1,0.9334,1,0.4334,0.3834,0.6166,0.35,0.3666,0.35,0.3334,0.7,0.7666,-0.0334,-0.1,-0.0334,-0.4,-0.2166,-0.1666,-0.75,'14'
-0.2216,0.3354,0.2754,0.455,0.8384,1,0.7634,0.7336,0.5928,0.6676,0.8174,0.8174,0.6826,0.515,0.3174,0.1526,0.1526,0.021,0.0628,0.1468,0.1586,0.2156,0.4372,0.5658,0.53,0.491,0.2814,0.2724,0.1078,0.1826,0.2994,0.3502,-0.1794,0.3152,0.3394,0.5294,0.8824,0.9668,1,0.991,0.822,0.7406,0.994,0.807,0.8824,0.5536,0.439,0.1916,0.1734,0.1252,0.0286,0.0378,0.077,0.2126,0.4358,0.5022,0.9126,0.8794,0.4842,0.3966,0.4148,0.3334,0.445,0.6802,-0.308,0.144,0.2628,0.435,0.7316,0.7938,0.7402,0.7232,0.6242,0.822,1,0.7994,0.4802,0.2458,0.2656,-0.0508,-0.079,-0.0622,-0.1836,-0.161,-0.0396,0.0282,0.1272,0.2458,0.6752,0.6074,0.2994,0.1554,0.178,0.0762,0.1214,0.3362,-0.2666,0.165,0.3596,0.512,0.8222,0.8562,0.6812,0.6362,0.6332,0.8984,1,0.6418,0.2496,0.1142,0.0662,-0.1566,-0.2638,-0.2328,-0.3456,-0.2806,-0.1734,-0.213,-0.0634,0.1198,0.261,0.292,0.3314,0.0014,-0.0156,-0.0098,0.0042,0.1622,-0.1164,0.4344,0.6318,0.8616,0.888,1,0.8704,0.9234,0.8998,0.8438,0.5258,0.402,0.031,-0.131,-0.1428,-0.2842,-0.4492,-0.2902,-0.3372,-0.4432,-0.2518,-0.2282,-0.1222,0.025,0.3608,0.3696,0.2048,-0.1192,-0.134,-0.1016,-0.0044,0.184,-0.3094,0.4676,0.4906,1,0.9942,0.6978,0.7266,0.7526,0.7726,0.318,0.1482,-0.1742,-0.2978,-0.4158,-0.4848,-0.5856,-0.5598,-0.6892,-0.7094,-0.6834,-0.6116,-0.5972,-0.5194,-0.3094,-0.0734,-0.082,-0.3438,-0.4188,-0.528,-0.4158,-0.3496,-0.246,-0.3662,0.6528,0.7292,0.8854,1,0.5414,0.6942,0.3918,0.4522,0.2292,-0.3854,-0.4426,-0.5446,-0.5222,-0.7166,-0.6752,-0.5382,-0.6114,-0.6402,-0.535,-0.6688,-0.5318,-0.5478,-0.395,-0.277,-0.3312,-0.363,-0.4426,-0.465,-0.551,-0.449,-0.6114,-0.4468,0.1914,0.149,0.4042,0.4894,1,1,0.617,0.3618,0.5744,0.617,0.9148,0.8724,0.234,0.2766,0.0638,0.0638,-0.3618,-0.1064,-0.234,0.0212,-0.0212,0.4894,0.4894,0.0212,0.234,0.0212,0.234,0.0212,0.3618,0.3618,0.532,-0.3478,0.174,0.174,0.3044,0.7826,1,0.7826,0.6522,0.5218,0.6086,0.826,0.913,0.3478,0.3478,0.2608,0.174,-0.1304,-0.087,0,-0.087,0.1304,0.174,0.1304,0.7392,0.7392,0.2608,0.0434,0.2608,0.0434,0.0434,0.2608,0.3044,-0.3878,0.0612,0.2448,0.3878,0.7142,0.7552,0.6326,0.5918,0.551,0.898,1,0.6734,0.1836,0.0816,0.0816,-0.2654,-0.3062,-0.2244,-0.3878,-0.3878,-0.2244,-0.2654,-0.2654,0.1224,0.2448,0.2654,0.2244,0.0408,0.0408,-0.1632,0,0.1224,-1,-1,-1,-1,-1,-1,-1,-1,-0.9708,-0.9798,-0.5386,0.1822,0.373,0.464,0.5164,0.5658,0.6244,0.4014,0.3468,0.8718,0.7314,0.0066,-0.8304,-0.9142,-0.9444,-0.9626,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9762,-0.9736,-0.447,0.217,0.3744,0.6118,0.6748,0.9074,0.8058,0.2616,0.0332,0.1902,0.0558,-0.4176,-0.8884,-0.9014,-0.9322,-0.9446,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9068,-0.8934,-0.8534,-0.7578,-0.7578,-0.6756,-0.6446,-0.6534,-0.689,-0.8556,-0.889,-0.8824,-0.874,-0.976,-0.8634,-0.7034,-0.61,-0.6268,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,1,1,1,-0.7428,-0.6572,-0.8858,-0.7714,-0.8286,-0.8,-0.7714,-0.6572,-0.6286,0.3142,-0.3142,-0.4858,-0.7428,-0.9142,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.2928,-0.2996,-0.292,-0.2436,-0.2398,-0.2116,-0.1864,-0.1422,-0.1078,-0.0234,-0.7066,0.0706,-0.2984,0.1708,0.2814,0.1526,0.3048,1,-0.0526,0.579,0.8948,1,1,0.9474,1,0.8422,0.7894,0.6842,0.8422,0.7368,0.7894,0.7368,0.7368,0.6316,0.7368,0.7368,0.4736,0.579,0.579,0.3684,0.7894,0.4736,0.5264,0.421,0.3158,0.3684,0.1578,0.2106,-0.1052,-0.2632,-0.0196,0.2942,0.9412,1,0.7254,0.8824,0.745,0.451,0.2352,0.1764,0.2352,0.5686,0.7844,0.4706,0.2942,0.255,0.5098,0.4902,0.3334,0.2352,0.2352,0.4902,0.4902,0.3726,0.5098,0.353,-0.255,-0.0784,-0.3334,-0.4118,-0.6274,-0.8824,0.3158,0.5964,0.8948,1,0.7544,0.807,0.807,0.579,0.4036,0.228,0.3334,0.7368,0.772,0.421,0.5088,0.6666,0.7018,0.6842,0.3334,0.2808,0.6316,0.614,0.421,0.3334,0.421,0.1404,-0.0878,-0.1754,-0.3508,-0.193,-0.386,-0.7544,0.4154,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.3282,0.1718,0.4688,0.5,0.7032,1,0.5468,0.3124,0.3124,0.3124,0.3282,0.2656,0.375,0.3124,0.3124,0.0624,0.1718,0.7656,0.6718,0.3438,0.4062,0.3594,0.3906,0.1406,0.0156,0.3438,0.3282,0.0624,-0.0938,0.1094,0.0624,-0.0938,'15'
-0.551,0.1586,0.199,0.4462,0.5,0.9006,1,0.6854,0.4892,0.5026,0.6936,0.6882,0.7796,0.6478,0.3038,0.2904,0.2232,0.1748,0.1076,0.1102,0.199,0.2258,0.4086,0.5,0.7956,0.8334,0.5806,0.4596,0.2796,0.3818,0.3494,0.5376,-0.4242,0.1974,0.2076,0.5236,0.5542,0.9542,1,0.5516,0.6178,0.6408,0.7554,0.5796,0.7274,0.5388,0.3936,0.256,0.2408,0.144,0.1694,0.1108,0.223,0.1974,0.3936,0.4038,0.8472,0.893,0.5006,0.5414,0.302,0.4192,0.2866,0.4446,-0.3826,0.2402,0.243,0.6536,0.6368,1,0.9944,0.7012,0.6844,0.9218,0.9218,0.623,0.6396,0.377,0.3938,0.1508,0.1788,0.014,0.0586,0.0614,0.1284,0.053,0.1312,0.3436,0.5754,0.6202,0.609,0.4498,0.296,0.2794,0.257,0.296,-0.279,0.2434,0.3888,0.6854,0.816,1,0.7952,0.6736,0.8042,0.8664,0.5342,0.5342,0.2552,0.2256,0.0296,0,-0.092,-0.178,-0.175,-0.1958,-0.1632,-0.1336,-0.0446,0.1306,0.4658,0.5994,0.5252,0.2284,0.086,0.0564,0.0504,0.1158,-0.243,0.1736,0.5702,0.6958,1,0.99,0.6992,0.6628,0.7818,0.5802,0.557,0.1604,0.0182,-0.1404,-0.2364,-0.3124,-0.3918,-0.428,-0.4016,-0.4082,-0.4248,-0.405,-0.2528,-0.1372,0.2596,0.4016,0.3124,-0.0612,-0.1438,-0.2496,-0.2694,-0.1108,-0.2556,0.137,0.7342,0.7464,1,0.7506,0.7178,0.8078,0.6238,0.4478,-0.0962,-0.3252,-0.501,-0.5338,-0.587,-0.685,-0.591,-0.5746,-0.7506,-0.7996,-0.775,-0.685,-0.64,-0.4928,-0.2188,-0.0716,-0.2638,-0.595,-0.7056,-0.7546,-0.6892,-0.4438,0.0334,0.5938,0.9434,1,0.671,0.527,0.6402,0.779,0.5526,-0.4602,-0.6402,-0.5886,-0.635,-0.5836,-0.5784,-0.5836,-0.671,-0.7018,-0.7018,-0.671,-0.4858,-0.6916,-0.4652,-0.5526,-0.3008,-0.342,-0.4242,-0.7172,-0.6864,-0.6402,-0.6402,-0.5886,-0.6862,0.255,0.3334,0.4902,0.5294,0.6862,1,0.804,0.5686,0.3726,0.804,0.7648,0.804,0.6078,0.3726,0.451,0.0196,0.1372,-0.0588,0.255,0.1372,0.255,0.2942,0.5294,0.804,0.647,0.5294,0.3726,0.4902,0.1764,0.4118,0.4118,-0.4916,0.1526,0.1864,0.4576,0.5254,0.8984,1,0.7288,0.5254,0.4576,0.661,0.6272,0.7966,0.695,0.3898,0.356,0.2882,0.2542,0.1526,0.2204,0.2542,0.322,0.4238,0.6272,0.6272,0.7966,0.5932,0.4916,0.4916,0.5254,0.5594,0.661,-0.3648,0.1294,0.5294,0.6706,1,1,0.6706,0.647,0.7882,0.4824,0.553,0.1058,0.0118,-0.153,-0.3176,-0.3176,-0.3176,-0.3648,-0.4824,-0.6,-0.4824,-0.4352,-0.4352,-0.0118,0.1764,0.5294,0.3882,-0.0118,-0.1058,-0.1764,-0.2236,-0.1058,-1,-1,-1,-1,-1,-1,-1,-1,-0.9758,-0.9786,-0.3154,0.4202,0.948,0.8756,0.6242,0.634,0.685,0.49,0.3522,-0.046,-0.4308,-0.685,-0.9078,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9856,-0.986,-0.177,0.4002,0.9408,0.9256,0.6872,0.4204,0.2448,-0.0396,-0.26,-0.5254,-0.7456,-0.8836,-0.9662,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.8468,-0.6,-0.6526,-0.665,-0.665,-0.74,-0.7376,-0.7926,-0.8126,-0.8134,-0.8268,-0.9134,-0.909,-0.9,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,-0.7142,-1,-0.6572,-0.7428,-0.6,-0.3714,-0.2286,-0.2858,-0.4,-0.3142,-0.6572,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.1074,-0.0972,-0.0924,-0.0848,-0.077,-0.0666,-0.0512,-0.0442,-0.0272,0.0316,-0.76,-0.0352,0.0952,0.0242,0.377,0.668,0.8722,1,-0.2578,0.3196,0.7526,0.9382,0.7526,0.9588,1,0.7732,0.4846,0.4432,0.5052,0.8144,0.9794,0.9176,0.6494,0.7732,0.897,0.897,0.6288,0.6494,0.8144,0.6288,0.7526,0.6702,0.6494,0.4846,0.2164,-0.134,-0.0722,-0.2578,-0.5258,-0.6494,0.1594,0.4492,0.7972,1,0.7102,0.9276,0.913,0.7972,0.5652,0.5072,0.5798,0.826,0.8406,0.855,0.6956,0.7536,0.8696,0.913,0.8406,0.8406,0.884,0.4928,0.6376,0.3334,0.3768,0.3768,-0.0144,-0.2028,-0.1884,-0.174,-0.1594,-0.7682,0.1492,0.4478,0.6568,0.985,0.6716,1,0.985,0.6268,0.5522,0.3732,0.418,0.6716,0.8956,0.7762,0.5522,0.597,0.7014,0.7314,0.612,0.5374,0.612,0.5672,0.5672,0.418,0.2388,0.1792,-0.0598,-0.2686,-0.194,-0.3134,-0.2538,-0.6568,0.7344,-1,-1,1,-1,-1,-1,-0.8,-1,0.924,0.9494,0.7468,1,0.8988,0.3418,0.4936,0.443,0.5696,0.4178,0.6456,0.924,0.4684,0.5696,0.1898,0.367,0.519,0.5696,0.519,0.3164,0.0126,0.519,0.3418,0.3164,0.038,0.038,0.0886,0.038,0.3164,0.0632,0.1392,-0.519,'15'
-0.0372,0.6512,0.6418,0.414,0.4186,0.093,0.1116,-0.228,-0.2,-0.2512,-0.214,-0.1534,-0.0884,-0.1442,-0.2046,-0.028,-0.0232,0.121,0.107,0.4884,0.4604,0.814,0.8466,0.8884,0.8604,0.8558,0.907,0.9442,1,0.7954,0.6604,0.5302,-0.2076,0.2914,0.261,0.3942,0.3142,-0.1466,-0.2342,-0.1086,-0.2458,-0.2076,-0.3372,-0.2114,-0.1886,-0.0742,-0.1314,-0.0362,-0.0172,0.059,0.1734,0.238,0.482,0.5352,0.9504,1,0.7562,0.741,0.878,0.8666,0.779,0.7296,0.6496,0.5428,-0.179,0.3756,0.3276,0.5372,0.428,-0.0436,-0.2314,-0.0742,-0.3014,-0.1922,-0.2664,-0.1616,-0.1704,-0.096,-0.0918,-0.0612,0.0088,0.0088,0.1354,0.1136,0.5066,0.559,0.9912,0.917,0.9694,0.8384,1,0.8254,0.9082,0.6768,0.7816,0.559,-0.2362,0.3504,0.311,0.4488,0.3622,-0.126,-0.248,-0.1182,-0.2638,-0.2914,-0.3976,-0.2402,-0.2716,-0.1456,-0.2126,-0.1102,-0.1024,-0.0196,0.067,0.13,0.3858,0.437,0.9292,0.9448,0.996,1,0.9842,0.9566,0.9252,0.8818,0.7244,0.6536,-0.2472,0.3636,0.3672,0.32,0.3018,-0.1272,-0.1672,-0.1854,-0.211,-0.3272,-0.3418,-0.2582,-0.2582,-0.1272,-0.1272,-0.0872,-0.0728,-0.0946,-0.069,0.1528,0.1854,0.48,0.691,0.9672,1,0.8872,0.8218,0.8218,0.8,0.7454,0.629,0.5272,-0.3872,0.4936,0.5446,0.1958,0.2638,-0.2042,-0.1192,-0.4212,-0.2808,-0.4724,-0.3744,-0.4724,-0.3446,-0.4086,-0.2724,-0.2554,-0.3446,-0.2212,-0.183,-0.034,0.1574,0.332,0.6,0.9192,0.9872,1,0.8554,0.9192,0.7446,0.6936,0.5106,0.4852,-0.7742,0.8162,1,0.5644,0.0814,-0.0552,-0.3596,-0.3334,-0.517,-0.6588,-0.7166,-0.5224,-0.559,-0.5224,-0.7008,-0.4278,-0.3806,-0.496,-0.454,-0.4384,-0.3858,-0.1076,0.1968,0.4436,0.7532,0.7952,0.6326,0.685,0.5696,0.4698,0.3124,0.0342,0.1,0.95,1,0.7,0.65,0.3,0.15,-0.15,-0.45,-0.55,-0.3,-0.3,0,-0.15,-0.4,-0.3,-0.2,0.05,0,0.45,0.45,0.85,0.9,0.8,0.75,0.45,0.3,0.8,0.95,0.75,0.6,0.3,-0.0188,0.6226,0.6226,0.3584,0.3962,0.283,0.2452,-0.0566,-0.0566,0.0188,0.0188,-0.0566,0.0188,-0.0188,0.0566,0.132,0.2076,0.1698,0.283,0.4716,0.585,0.849,0.9622,0.8114,0.8114,0.849,1,0.6982,0.8868,0.7736,0.6226,0.3962,-0.3458,0.3458,0.3644,0.1402,0.1588,-0.2336,-0.1776,-0.3644,-0.271,-0.4766,-0.3644,-0.4392,-0.3272,-0.4954,-0.1962,-0.3458,-0.1962,-0.271,-0.0654,-0.0842,0.2524,0.2524,0.6822,0.757,0.944,1,0.7944,0.944,0.6262,0.701,0.4392,0.4954,-1,-1,-1,-1,-1,-1,-0.9732,-0.969,-0.845,-0.8418,-0.6698,0.9198,0.72,0.5224,0.3386,0.187,0.0908,0.031,0.0022,-0.0128,-0.0224,-0.1506,-0.7884,-0.9616,-0.9658,-0.97,-0.9712,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9834,-0.9778,-0.8494,-0.7884,-0.7802,0.1304,0.9178,0.4818,0.0428,-0.0196,-0.0542,-0.0252,-0.0732,-0.2036,-0.4866,-0.6412,-0.899,-0.9556,-0.9534,-0.961,-0.9736,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.9668,-0.6568,0.1766,-0.02,-0.7034,-0.19,-0.1534,-0.28,-0.26,-0.2068,-0.2034,-0.29,-0.54,-0.8134,-0.963,-0.48,-0.5,-0.29,-0.5768,-0.7334,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,1,1,1,-0.7714,-0.8572,-0.9142,-0.8286,-0.9428,-0.8286,-0.0286,1,1,-0.1428,-0.6858,-0.7428,-0.3428,-0.1714,-1,-1,-1,-1,-1,-1,0.2144,0.2388,0.2566,0.273,0.2942,0.3002,0.314,0.326,0.3258,0.2614,1,1,1,1,1,1,1,1,1,1,-0.7866,-0.3294,-0.8376,-0.2902,0.1248,0.806,0.9876,1,-0.1944,0.1374,0.0806,0.09,-0.0236,0.1944,0.327,0.3364,0.4692,0.763,0.8672,0.8672,0.82,0.82,0.6304,0.4124,0.8294,0.8672,0.8388,0.7062,1,0.9716,0.6966,0.6018,0.3744,0.4312,0.5166,0.2702,0.2702,0.2512,0.2038,0.0048,-0.275,-0.0438,0.0278,0.004,-0.0358,-0.1076,0.0278,0.0518,0.1952,0.2032,0.6734,1,0.8964,0.8804,0.7768,0.4742,0.4422,0.769,0.6972,0.6892,0.6334,0.5776,0.5458,0.5298,0.259,0.1952,0.0598,0.275,0.012,0.1872,0.0836,-0.2032,-0.1508,0.0666,0.0948,0.0316,-0.2912,-0.3122,-0.235,-0.2772,-0.186,0.1368,0.4316,0.7192,0.6772,1,0.9438,0.4106,0.635,0.586,0.7404,0.4386,0.4176,0.4386,0.4456,0.235,0.0386,0.214,0.207,0.0808,-0.221,-0.186,0.1368,0.0526,-0.613,-1,-1,1,-1,-1,-1,-0.4666,-1,-0.5348,-0.1162,-0.3178,-0.3644,-0.2248,-0.2248,-0.2558,-0.0542,0.0232,-0.2714,-0.0388,0.3024,1,0.783,0.3644,0.4264,0.3334,0.3024,0.2558,0.5038,0.3334,0.5504,0.4108,0.2404,0.1472,0.2094,0.1162,0.0388,-0.2558,-0.1008,-0.3178,-0.4418,'16'
-0.821,0.4596,0.7894,0.6808,0.2702,0.386,0.179,-0.2632,-0.193,-0.5052,-0.1052,-0.1228,-0.3228,0.0878,0.0422,0.0176,0.1508,-0.021,0.393,0.4842,0.372,0.986,1,0.7192,0.8562,0.807,0.7754,0.986,0.9122,0.4106,0.6036,0.4176,-0.9552,0.3204,0.5618,0.4366,0.2488,0.3532,-0.0342,-0.0044,-0.0224,-0.3562,-0.067,-0.1862,-0.0522,0.07,-0.1624,0.1118,0.1356,-0.0164,0.3204,0.2698,0.5202,0.7646,0.7974,0.8808,1,0.8302,0.9076,0.9702,0.8926,0.7406,0.7138,0.6184,-0.7446,0.3538,0.483,0.1908,0.3262,0.2184,-0.0154,0.003,-0.2462,-0.1416,-0.2554,-0.1108,-0.1262,-0.0862,-0.0092,-0.0216,0.0062,0.1108,0.1292,0.357,0.4216,0.6524,0.92,1,0.9724,0.9292,0.8646,0.9908,0.9262,0.8092,0.7016,0.597,-0.3234,0.3004,0.3104,0.3892,0.3728,-0.0476,-0.051,-0.1822,-0.179,-0.2808,-0.2776,-0.2152,-0.1756,-0.1856,-0.1626,-0.1068,-0.064,-0.0378,0.041,0.1756,0.3628,0.4976,0.7372,1,0.954,0.8292,0.7602,0.8456,0.8556,0.6912,0.5074,0.491,-0.095,0.4424,0.5232,0.7536,0.5314,0.0262,-0.1798,-0.1394,-0.3292,-0.3536,-0.3818,-0.4182,-0.3132,-0.2768,-0.2848,-0.208,-0.2122,-0.2122,-0.0666,0.0142,0.2404,0.4546,0.7778,0.9516,1,0.7778,0.8102,0.891,0.9232,0.6686,0.499,0.3858,-0.1452,0.3456,0.8998,1,0.1662,-0.4354,-0.3192,-0.7468,-0.7784,-0.773,-0.9156,-0.8048,-0.5936,-0.562,-0.6622,-0.599,-0.657,-0.6992,-0.525,-0.4406,-0.3562,-0.0238,0.3246,0.8048,0.8576,0.5408,0.5726,0.5778,0.562,0.409,0.2824,-0.0184,0.0484,0.3764,1,0.9194,0.0108,-0.2312,-0.371,-0.414,-0.5376,-0.715,-0.8226,-0.5914,-0.6076,-0.6398,-0.758,-0.6076,-0.543,-0.629,-0.4784,-0.5376,-0.328,-0.0592,0.2796,0.4892,0.4892,0.543,0.1882,0.414,0.5268,0.1182,0.1076,-0.1506,-0.5384,0.6538,1,0.923,0.4616,0.5384,0.4616,0,-0.3462,-0.423,-0.2308,-0.5,-0.3076,0.0384,0.077,-0.1154,-0.1154,0.1538,0.3462,0.5,0.5,0.7308,0.6538,0.6538,0.6538,0.6924,0.8462,0.923,0.7692,0.5,0.5,0.5,-0.923,0.3462,0.6538,0.5384,0.1154,0.2308,0.0384,-0.1154,-0.1154,-0.6538,-0.1924,-0.2308,-0.1924,0.077,-0.0384,-0.077,0.1538,0,0.3462,0.4616,0.423,0.9616,1,0.6538,0.7692,0.7308,0.6924,0.8846,0.7692,0.3076,0.423,0.2692,-0.247,0.2942,0.3882,0.647,0.3882,-0.153,-0.3412,-0.3412,-0.553,-0.6,-0.5294,-0.6,-0.4588,-0.3882,-0.3412,-0.3412,-0.2942,-0.2942,-0.2706,-0.0352,0.0588,0.247,0.8588,1,0.7176,0.7648,0.7882,0.6942,0.7176,0.6,0.4118,0.2236,-1,-1,-1,-1,-1,-1,-1,-0.9884,-0.9854,-0.9148,-0.7908,0.862,0.5852,0.1536,-0.0344,-0.1298,-0.2752,-0.2392,-0.2356,-0.2898,-0.4424,-0.6516,-0.806,-0.9294,-0.9782,-0.9776,-0.9768,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9862,-0.9866,-0.907,-0.7804,0.4194,0.8982,0.9338,0.8132,0.534,0.122,-0.1952,-0.3996,-0.5244,-0.6654,-0.8048,-0.8868,-0.953,-0.9724,-0.9748,-0.9752,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.8534,-0.4668,0.0966,-0.5772,-0.203,-0.0458,0.06,-0.0116,-0.1316,-0.463,-0.7916,-0.9316,-0.9572,-0.9772,-0.91,-0.7768,-0.74,-0.6734,-0.78,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,1,0.3142,0.2572,-0.5142,-0.5428,-0.5714,-0.2,0.2,-0.4,0,-0.4,-0.5714,-0.7142,-0.8858,-0.9428,-0.9142,-1,-1,-1,-1,-1,-1,0.5562,0.5524,0.5434,0.5438,0.5528,0.5754,0.6002,0.632,0.603,0.276,0.8364,0.817,0.8164,0.8394,0.8324,0.835,0.851,0.9122,1,1,-0.8134,-0.2118,-0.8118,-0.197,0.5262,0.6858,0.863,1,-0.0082,0.252,0.6098,0.3822,0.2358,-0.0082,0.4308,0.4146,0.561,1,0.8862,0.9186,0.8212,0.8048,0.9024,0.5934,0.5122,0.9024,0.8048,0.6098,0.5934,0.7074,0.4146,0.5122,0.496,0.561,0.6422,0.4796,0.4308,0.5772,0.4796,0.2032,-0.0416,0.0208,-0.052,0.0624,0.0312,0.1354,0.052,0.4688,0.375,0.7084,0.9584,0.7188,0.8542,0.8854,0.6042,0.4896,0.4896,1,0.875,0.552,0.8646,0.8958,0.6146,0.3854,0.3124,0.2812,0.1458,0.302,0.1876,0.2292,0.2708,-0.073,-0.275,0.3876,-0.05,-0.5,-0.4624,-0.3626,-0.4,-0.1,-0.1626,0.0376,0.7374,1,0.8,0.8374,0.775,0.5376,0.575,0.725,0.8124,0.4624,0.525,0.6876,0.325,0,-0.175,0.2124,0.1376,-0.0624,-0.25,0.175,0.4126,0.3124,-0.818,-1,-1,1,-1,-1,-1,-0.6334,-1,-0.2364,0.0182,0.3636,0.4364,0.2182,-0.309,0.1818,0.1818,0.1454,0.1818,0.1818,0.8364,1,0.8,0.7818,0.4182,0.2364,0.3818,0.6546,0.2728,-0.091,0.1272,-0.0364,0.2,0.091,-0.2364,-0.4364,0.1272,-0.0364,0.0364,-0.0364,-0.509,'16'
-0.1908,0.275,0.359,0.5202,0.2364,-0.233,-0.317,-0.317,-0.373,-0.4606,-0.3976,-0.3836,-0.2714,-0.3204,-0.2364,-0.0718,0.0508,0.1768,0.3556,0.7584,0.8634,0.972,0.8844,0.8844,0.9194,1,0.7092,0.6218,0.5936,0.5412,0.6322,0.8214,-0.2606,0.155,0.736,0.838,0.3028,-0.243,-0.433,-0.2782,-0.2324,-0.4578,-0.4788,-0.3346,-0.25,-0.1936,-0.2254,-0.0422,0.1232,0.2782,0.5422,0.8346,0.8978,1,0.926,0.9754,0.9648,0.8522,0.5986,0.433,0.4226,0.4508,0.4296,0.5916,-0.3642,0.0066,0.788,0.8278,0.1226,-0.1092,-0.0332,-0.1092,-0.2152,-0.5066,-0.212,-0.2516,-0.2052,-0.1026,-0.063,0.2814,0.2914,0.4802,0.8842,0.8014,0.649,0.659,0.7484,1,0.8278,0.4238,0.2318,0.1424,0.2384,0.2252,0.212,0.3742,-0.278,0.148,0.9458,1,0.2274,0.0686,0.195,0.0506,-0.0072,-0.2636,-0.0036,0.018,0.0614,0.3466,0.4476,0.9026,0.888,0.7726,0.4874,0.5126,0.426,0.5956,0.7148,0.834,0.751,0.4368,0.2202,0.1732,0.1552,0.2058,0.2202,0.361,-0.2736,0.2072,0.8574,1,0.6452,-0.1442,0.1012,0.0282,-0.0216,-0.151,-0.0348,0.277,0.3532,0.5258,0.612,0.4262,0.1908,0.1244,0.0282,0.0978,0.1642,0.2206,0.5124,0.5522,0.3798,0.1244,-0.0746,-0.0746,-0.1078,-0.058,-0.0316,0.0646,-0.2606,0.5388,0.5492,1,0.986,0.257,0.2324,-0.1338,-0.1056,0.1126,0.2464,0.2922,0.3838,0.2992,0.088,-0.0634,-0.2852,-0.3908,-0.3698,-0.3204,-0.243,-0.1198,0.236,0.2852,0.1408,-0.0846,-0.2852,-0.3028,-0.3662,-0.4718,-0.3486,-0.1408,-0.6682,0.8448,1,0.4526,0.513,0.1422,0.1982,0.0948,0.0646,0.1466,-0.0258,-0.0906,-0.388,-0.3966,-0.4956,-0.7068,-0.5948,-0.6294,-0.6206,-0.4568,-0.513,-0.5,-0.5258,-0.2068,-0.2068,-0.5,-0.569,-0.5302,-0.5344,-0.612,-0.6466,-0.569,-0.2444,0.2888,0.2444,0.3778,0.2444,-0.2888,-0.3778,-0.2888,-0.4666,-0.5556,-0.3778,-0.5112,-0.2444,-0.2,-0.1556,0.0666,0.1112,0.2,0.3334,0.7778,0.8666,0.8666,0.9112,0.9556,0.9556,1,0.9556,0.8666,0.7334,0.7334,0.8222,0.8666,-0.347,0.1428,0.2244,0.3062,0.0612,-0.3878,-0.3878,-0.5102,-0.5102,-0.5102,-0.5102,-0.4286,-0.347,-0.3878,-0.2244,-0.102,-0.0204,0.0612,0.347,0.6326,0.7552,0.9592,0.8776,0.796,0.9592,1,0.7552,0.6734,0.6326,0.5918,0.7552,0.8368,-0.3044,0.1522,0.8478,1,0.6304,0,0.1304,0.0652,0.0218,-0.1522,-0.0652,0.2826,0.3044,0.6522,0.5652,0.3914,0.2392,0.2174,-0.0652,0.0434,0.2826,0.2608,0.3914,0.2826,0.3696,0.0652,0.1522,-0.0218,-0.0434,0.0434,-0.087,0.1086,-0.977,-0.9854,-0.973,-0.9554,-0.9454,-0.9746,-0.963,-0.9438,-0.9324,-0.9346,0.0708,0.053,0.2224,0.633,0.963,0.8654,0.7246,0.7376,0.8154,0.2924,-0.2384,-0.4792,-0.8346,-0.9724,-0.9724,-0.9754,-1,-1,-1,-1,-1,-1,-1,-0.9748,-0.9802,-0.9342,-0.646,-0.4078,-0.6072,-0.5094,-0.4588,-0.4824,-0.5578,-0.3404,0.7526,0.5726,0.6214,0.716,0.4988,0.3914,0.305,0.3652,0.0458,-0.4596,-0.6818,-0.8896,-0.9464,-0.9582,-0.9616,-1,-1,-1,-1,-1,-1,-1,-0.8858,-0.9268,-0.77,0.4732,0.7032,0.7932,0.6132,0.62,0.83,0.62,-0.4634,-0.3526,-0.44,-0.65,-0.6976,-0.6876,-0.665,-0.88,-0.91,-0.89,-0.9556,-0.98,-0.9334,-0.6734,-0.68,-0.7468,-1,-1,-1,-1,-1,-1,-1,-0.3428,-0.4,1,1,0.6286,-0.6,-0.5714,-0.6572,-0.3142,1,1,1,-1,-0.8572,-0.9142,-0.8286,-0.8572,-0.4,-0.0572,-0.1714,0.2286,-0.1714,-0.5714,-0.8,-1,-0.9428,-1,-1,-1,-1,-1,-1,-1,0.119,0.1332,0.1178,0.1,0.079,0.0546,0.0528,0.0932,0.2096,0.3426,0.9244,0.9236,0.9406,0.9538,0.9496,0.952,0.9424,0.8568,0.6398,0.064,-0.6134,-0.0588,-0.1578,0.458,0.9848,0.5276,0.4794,-0.3416,-0.6488,-0.3878,-0.3098,-0.2196,-0.2122,-0.0804,-0.117,-0.061,0.0658,0.1196,0.2048,0.2878,0.4586,0.8756,1,0.9196,0.6902,0.8,0.8146,0.9414,0.8342,0.5196,0.4488,0.4512,0.2,0.2634,0.139,0.0464,0.1878,0.2024,0.2586,-0.0024,-0.8438,-0.5158,-0.466,-0.3326,-0.2512,-0.301,-0.199,-0.1652,0.0294,0.0542,0.1108,0.3122,0.5542,0.7828,0.8778,0.862,0.785,0.7194,0.8438,1,0.9344,0.629,0.6358,0.4322,0.2194,0.4004,0.3892,0.2964,0.242,0.2942,0.3348,0.1108,-0.0614,0.0728,-0.0204,-0.1796,-0.209,-0.2204,-0.116,-0.059,-0.009,0.2636,0.4364,0.5204,0.7272,0.8,0.8228,0.675,0.7478,0.609,0.7068,1,0.7954,0.484,0.3068,0.1886,0.2932,0.3068,0.1272,-0.0046,0.1954,0.2454,0.1614,-0.1046,0.143,-1,1,-1,-1,-1,-1,0.7,-1,-0.3504,-0.1794,-0.0256,-0.0256,0.9316,1,0.1112,0.1794,0.1624,-0.1794,0.1282,0.1282,-0.0256,0.0256,-0.1966,-0.0428,0.0428,0.0086,-0.1282,0.47,0.5898,-0.077,-0.094,-0.0086,0.0256,-0.094,0.0256,0.094,-0.1452,-0.2136,-0.2992,-0.8974,'17'
-0.6798,0.5562,0.7084,0.477,-0.046,-0.0714,-0.1442,-0.0872,-0.3376,-0.1696,-0.2394,-0.195,-0.141,-0.1474,-0.011,-0.084,0.1062,0.1094,0.347,0.5278,0.6576,1,0.9904,0.7844,0.8288,0.775,0.851,0.8732,0.7338,0.7592,0.718,0.8796,-0.693,0.289,0.4024,0.0872,0.1258,0.0042,-0.2088,-0.2226,-0.2642,-0.159,-0.4384,-0.1756,-0.2558,-0.1176,-0.0844,-0.0594,0.1038,-0.0568,0.3832,0.3306,0.9254,1,0.668,0.7262,0.621,0.7538,0.7428,0.3278,0.4854,0.3444,0.6182,0.5464,-0.4716,0.3886,0.4624,0.3118,0.4316,0.1244,-0.0292,-0.2044,0.023,-0.0446,-0.0938,-0.0752,-0.0722,0.0322,0.0968,0.2504,0.2566,0.407,0.6498,0.9784,1,0.8526,0.8064,0.8648,0.9324,0.9262,0.662,0.53,0.3918,0.5024,0.493,0.662,-0.2162,0.3724,0.4602,0.8504,0.7724,0.161,0.0764,-0.0016,-0.0504,0.0406,-0.0764,-0.0342,0.1056,0.2814,0.3724,0.5804,0.7658,0.8894,0.844,0.626,0.5578,0.639,0.7788,0.974,1,0.7822,0.4374,0.3854,0.3496,0.4114,0.509,0.5578,-0.273,0.144,0.8708,1,0.5462,-0.1292,0.1512,-0.0332,-0.1402,-0.1366,-0.1218,0.096,0.1512,0.476,0.893,0.8524,0.4096,0.1292,0.0516,0.0406,0.1846,0.2584,0.3764,0.5536,0.5498,0.3506,0.0886,-0.0774,-0.096,-0.0738,0.0074,0.107,-0.2336,0.1536,0.9916,1,0.2336,0.2042,0.2126,-0.0778,-0.1536,-0.099,0.1958,0.3768,0.4316,0.2842,0.1916,-0.3684,-0.3852,-0.4358,-0.419,-0.4568,-0.3432,-0.2126,-0.0022,0.1326,0.1536,-0.2126,-0.3684,-0.6378,-0.6294,-0.6042,-0.4442,-0.3852,-0.0628,0.4764,0.9842,1,0.1204,-0.1728,-0.1308,-0.3194,-0.021,0.1466,0.1308,-0.2774,-0.2198,-0.6126,-0.6336,-0.7644,-0.6544,-0.6492,-0.6964,-0.6492,-0.576,-0.5602,-0.4554,-0.3194,-0.2932,-0.5288,-0.6178,-0.8376,-0.5288,-0.7382,-0.8638,-0.712,-0.4634,0.756,1,0.9024,0.1708,-0.0732,-0.122,-0.2682,-0.317,-0.3658,-0.4146,-0.317,-0.4146,-0.2196,-0.2196,-0.0244,0.122,0.1708,0.2196,0.2682,0.5122,0.8048,0.6098,0.9024,0.9024,0.9024,0.6586,1,0.9024,0.561,0.9512,0.8048,-0.7,0.5334,0.6666,0.5,-0.1666,-0.1666,-0.0334,0.0334,-0.1666,-0.1666,-0.1666,-0.1,0.0334,-0.2334,0,0.0334,0.0334,0.3,0.1334,0.6,0.7,0.7,1,0.9334,0.8666,1,0.9,0.8666,0.8334,0.7334,0.8334,0.7666,-0.3636,-0.0228,0.841,0.9546,0.4546,0,0.1364,-0.0454,-0.2272,-0.159,-0.091,0.0228,0.1136,0.6136,1,0.8636,0.0682,-0.0454,-0.0228,-0.0682,0.0682,0.2046,0.4772,0.591,0.3636,0.3182,0.0682,-0.25,-0.3182,-0.1364,-0.2046,-0.091,-1,-1,-0.9822,-0.9888,-0.9428,-0.9408,-0.9724,-0.9724,-0.9658,-0.9376,-0.9192,0.7378,0.58,0.2048,0.0286,-0.166,0.0424,0.3882,0.1206,-0.3118,-0.5116,-0.6746,-0.908,-0.9724,-0.9744,-0.954,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.982,-0.9854,-0.7314,-0.6778,-0.7148,-0.561,-0.5174,-0.6832,-0.7604,0.592,0.9508,0.8366,0.621,0.3222,0.0114,0.0436,-0.2222,-0.58,-0.7252,-0.813,-0.9414,-0.9698,-0.9674,-0.9584,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9068,-0.9534,-0.1534,0.68,0.7666,0.6332,0.72,0.6532,0.52,-0.5344,-0.2658,0,-0.15,-0.2576,-0.47,-0.86,-0.9676,-0.9726,-0.975,-0.9726,-0.9768,-0.9,-0.9,-0.9134,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,-0.3142,-0.5428,-0.8286,-0.4572,1,1,0.6,-0.4286,-0.5142,-0.6858,-0.2286,0.2,0.3714,0.0286,-0.1142,-0.4,-0.5142,-0.8572,-0.9714,-0.8858,-1,-1,-1,-1,-1,-1,-1,0.1842,0.2026,0.2192,0.2426,0.2682,0.296,0.3318,0.3654,0.4266,0.3702,0.9632,0.966,0.9648,0.9444,0.9284,0.9214,0.9076,0.8698,0.7308,0.132,-0.7734,-0.1058,-0.7718,-0.3764,0.8396,0.973,0.9678,0.4916,-0.8496,-0.4324,-0.306,-0.2512,-0.1966,-0.1556,-0.0974,-0.0632,-0.0256,-0.1452,-0.0394,0.1282,0.5418,0.6512,0.9452,1,0.9522,0.8838,0.8462,0.9898,0.8018,0.682,0.4358,0.4736,0.1864,0.2582,0.2308,0.1658,0.176,0.1624,0.1042,-0.265,-0.9024,-0.631,-0.5116,-0.4898,-0.384,-0.4002,-0.175,-0.2294,-0.2592,-0.2672,-0.1588,0.034,0.4002,0.7286,0.791,0.905,0.8046,0.6608,0.7992,1,0.8752,0.5576,0.4328,0.308,0.2592,0.3324,0.5252,0.251,0.1642,0.3596,0.4084,0.0204,-0.688,-0.3556,-0.5014,-0.3906,-0.344,-0.1866,-0.2362,-0.1604,-0.1954,-0.0408,0.2186,0.382,0.4256,0.6764,0.9068,0.7376,0.7842,0.6764,0.618,1,0.8804,0.4956,0.3352,0.3002,0.3702,0.5364,0.5276,0.4052,0.0612,0.3848,0.379,-0.0438,-0.445,-1,-1,1,-1,-1,-1,0.3666,-1,-0.3414,-0.0976,0,0,0.439,1,0.5366,0.317,0.122,-0.0244,0.122,0.4146,0.439,0.0244,0.0488,0.2196,0.1464,-0.0244,0.1952,-0.0244,0.2682,-0.317,0.1464,0.1464,0.0488,0.0488,-0.0488,0.2196,-0.0488,0.0976,0.1464,-0.5366,'17'
-0.415,0.1274,0.092,0.2146,0.533,0.7004,0.9812,1,0.724,0.7264,0.776,0.7312,0.2712,0.1958,0.092,-0.0048,-0.04,-0.151,-0.0966,-0.0826,-0.0142,-0.0236,0.0636,0.165,0.3584,0.5354,0.6416,0.6202,0.467,0.4268,0.3892,0.408,-0.399,-0.04,0.0118,0.1174,0.4508,0.5752,0.9108,0.838,0.8146,0.9812,1,0.683,0.3826,0.2724,0.1502,0.1056,0.101,-0.0212,-0.0916,-0.0234,-0.0118,0.0046,0.1408,0.2042,0.3334,0.6644,0.7276,0.5868,0.4084,0.3544,0.3404,0.378,-0.3958,-0.0388,0.0836,0.156,0.4082,0.6704,0.8228,0.9876,1,0.9776,0.8702,0.935,0.613,0.4956,0.3158,0.1236,0.1886,0.0786,0.0338,0.0412,0.0686,0.131,0.3184,0.4756,0.623,0.5206,0.533,0.241,0.176,0.3008,0.236,0.2908,-0.3782,-0.0152,0.0686,0.1346,0.3832,0.5914,0.7538,0.9594,0.9822,0.802,0.8604,1,0.8148,0.8274,0.5432,0.406,0.3452,0.2258,0.203,0.2842,0.3858,0.4568,0.505,0.4416,0.2158,0.0152,0.0356,-0.1294,-0.104,0.099,0.0204,0.0862,-0.3952,-0.026,0.094,0.196,0.3794,0.59,0.8482,0.7124,0.5424,0.5832,0.6058,0.6602,0.8754,1,0.778,0.5764,0.4926,0.384,0.4246,0.5538,0.4858,0.4156,0.2638,0.171,0.0124,-0.0148,-0.0646,-0.1302,-0.1122,0.0486,0.0668,0.0328,-0.3442,0.2694,0.2494,0.4912,0.5112,0.8778,0.8504,0.9078,0.7482,0.601,0.586,0.6734,0.778,0.9152,1,0.9726,0.788,0.6708,0.7382,0.7506,0.581,0.2892,-0.0224,-0.1522,-0.3392,-0.2694,-0.227,-0.1946,-0.202,-0.1696,-0.0998,0.0574,-0.5602,0.5572,0.6702,0.4086,0.584,0.685,1,0.8158,0.3462,0.269,0.046,0.1292,0.2214,0.4206,0.6226,0.7384,0.6582,0.5364,0.4384,0.483,0.468,0.0194,-0.2748,-0.3878,-0.4264,-0.4978,-0.4502,-0.5274,-0.5572,-0.5424,-0.3164,-0.0758,-0.6444,0.2444,0.3334,0.3334,0.4666,0.6888,1,0.9112,0.8666,0.8666,0.6444,0.6888,0.1556,0.2,-0.2444,-0.3334,-0.3778,-0.5556,-0.3778,-0.4222,-0.1556,-0.3334,-0.0666,-0.2,0.2,0.1112,0.1556,0.3334,0.2,0.3778,0.3334,0.5112,-0.4426,0.0492,-0.0492,0.2132,0.5082,0.6722,0.9016,0.9344,0.8032,1,0.9672,0.7704,0.377,0.3442,0.2786,0.2132,0.1148,-0.0164,0.082,-0.0492,0.1476,0.0492,0.2132,0.377,0.4426,0.7704,0.8688,0.7704,0.6066,0.6066,0.6066,0.6394,-0.4546,-0.0708,0.0102,0.091,0.394,0.6364,0.7778,0.9596,1,0.9596,0.8182,0.8384,0.596,0.394,0.2526,0.1516,0.0708,0.0304,0.0304,0.0102,0.0102,0.091,0.2122,0.3334,0.5354,0.7576,0.7172,0.3536,0.3132,0.2526,0.2728,0.293,-1,-1,-1,-1,-1,-1,-1,-1,-0.9604,-0.9648,-0.8784,0.4272,0.7978,0.9472,0.6044,0.4726,0.3656,0.4578,0.6336,0.5296,0.6044,0.055,-0.685,-0.9208,-0.9428,-0.9428,-0.934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9874,-0.9892,-0.962,0.162,0.4416,0.8942,0.3798,0.2414,0.1524,0.1902,0.1948,-0.0466,-0.2816,-0.6986,-0.9274,-0.959,-0.9682,-0.9764,-0.9784,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.95,-0.7834,-0.646,-0.668,-0.544,-0.554,-0.618,-0.62,-0.472,-0.714,-0.65,-0.7982,-0.9274,-0.8,-0.4568,-0.6468,-0.7334,-0.8468,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,0.0572,1,1,-0.9142,-0.7142,-0.2572,-0.3714,-0.5142,-0.7428,-0.6572,-0.5714,0.2858,0.6,-0.2858,-0.7714,-1,-0.9142,-0.3714,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.2944,0.3024,0.352,0.402,0.4028,0.412,0.372,0.3068,-0.0314,-0.7292,-0.64,0.2,-0.9734,-0.5038,0.3504,0.2388,0.2452,1,0.1268,0.5352,0.4226,0.6198,0.493,0.8592,1,0.8732,0.7746,0.7464,0.3802,0.662,0.6902,0.6056,0.4788,0.8874,0.676,0.507,0.2112,0.2958,0.676,0.7888,0.5634,0.4226,0.507,0.493,0.845,0.845,0.4648,0.3098,0.0422,-0.7184,0.3058,0.247,0.1764,0.5764,0.7648,0.6118,1,0.8118,0.8118,0.8,0.6706,0.7764,0.7882,0.6236,0.5058,0.8942,0.6352,0.4,0.353,0.7058,0.7058,0.5764,0.3412,0.447,0.2706,0.3882,0.3764,0.4,0.7176,0.6824,0.2824,-0.0588,-0.1348,0.1814,0.2558,0.3582,0.5906,0.4046,0.386,0.4884,0.5256,0.2094,0.0698,0.3768,0.4418,0.5906,0.4326,0.3302,0.693,0.4976,0.1442,0.414,0.5628,0.5814,0.9628,1,0.6558,0.3024,0.2,0.3024,0.2466,0.6466,0.7396,0.1628,-0.9932,1,-1,-1,-1,-1,-1,-1,-1,-0.3794,-0.2068,0.1724,0.138,0.138,-0.0518,0.1552,0.862,1,0.8966,0.6034,0.2242,-0.0862,-0.1552,-0.0518,-0.2414,0.3104,0.0862,0.138,0.1206,-0.2068,-0.2758,-0.2932,-0.2068,-0.5172,-0.1896,-0.138,-0.1206,-0.2932,-0.6896,-0.5862,-0.8104,'18'
-0.4656,0.1532,0.1678,0.2016,0.2418,0.7106,0.7296,0.9958,1,0.8586,0.8586,0.5522,0.5332,0.2672,0.2692,0.0898,0.1172,-0.096,-0.037,-0.0432,0.0052,0.02,0.0982,0.1678,0.2778,0.4614,0.6156,0.5438,0.4614,0.282,0.3474,0.2016,-0.4178,0.1258,0.1296,0.2572,0.2398,0.6848,0.6692,1,0.9904,0.795,0.795,0.6208,0.6306,0.2572,0.2804,0.1508,0.1798,-0.0154,0.0232,-0.0522,-0.002,-0.0096,0.0542,0.1122,0.1876,0.4546,0.5416,0.2418,0.2514,0.0406,0.1548,-0.0078,-0.3946,0.113,0.092,0.2758,0.3506,0.6724,0.7068,1,0.9252,0.751,0.6704,0.8238,0.7298,0.3908,0.2702,0.2568,0.1552,0.1168,0.0268,0.0288,0.0058,0.1112,0.092,0.251,0.4022,0.5478,0.3984,0.3046,0.2146,0.1264,0.0786,0.1092,-0.3716,0.0616,0.0744,0.2484,0.4926,0.605,0.9682,1,0.6858,0.654,0.7708,0.741,0.8726,0.8556,0.673,0.4756,0.414,0.2676,0.2696,0.2484,0.2676,0.4012,0.4904,0.5754,0.5222,0.3906,0.3312,0.2016,0.0998,0.0806,0.1464,0.1444,-0.404,-0.0812,0.131,0.1896,0.368,0.7946,0.93,0.6502,0.6276,0.5756,0.4582,0.5666,0.7698,0.9074,1,0.8398,0.6794,0.5238,0.5146,0.544,0.6884,0.6772,0.4538,0.2912,0.2054,0.0678,-0.0226,0.009,0.0068,0.1084,0.228,0.0902,-0.4444,-0.1568,0.109,0.1234,0.2958,0.8898,0.909,0.4444,0.3486,0.4132,0.3414,0.3724,0.4658,0.7126,0.8778,1,0.7078,0.648,0.6024,0.6982,0.7078,0.2718,0.1018,0.0492,-0.0658,-0.1832,-0.2622,-0.236,-0.3078,-0.1426,-0.0444,-0.133,-0.2534,0.1446,0.0824,0.1664,0.378,0.9502,1,0.297,0.07,0.1446,0.0078,0.0576,0.2038,0.4744,0.7668,0.9222,0.7294,0.3592,0.4152,0.3282,0.2784,-0.0918,-0.3438,-0.5864,-0.6578,-0.6298,-0.6982,-0.6828,-0.717,-0.608,-0.3064,-0.3282,-0.6666,0.0416,0.125,-0.0834,0.375,0.6666,0.875,0.8334,0.7916,1,1,0.7084,0.5,0.5,0.125,0.0416,-0.125,-0.4584,-0.2084,0,0,0.0834,0.0416,0.25,0.375,0.2916,0.1666,0.6666,0.5834,0.1666,0.2084,-0.0834,-0.4286,0.2142,0.2142,0.3572,0.3214,0.8572,0.8572,0.9642,1,0.9286,1,0.75,0.6072,0.2858,0.3214,0.1428,0.1786,-0.1072,-0.0358,-0.0714,-0.1428,0,0.0714,0.0714,0.2858,0.4642,0.7858,0.75,0.2142,0.3572,0.2142,0.3572,-0.3794,0.069,0,0.2068,0.4828,0.569,0.8966,0.9482,0.6552,0.5862,0.7414,0.7242,1,0.8966,0.638,0.3448,0.4482,0.3104,0.3104,0.3104,0.2242,0.3966,0.5344,0.6724,0.5344,0.4482,0.2414,0.2758,0.1206,0.0862,0.1896,0.1206,-1,-1,-1,-1,-1,-1,-1,-1,-0.9698,-0.9272,-0.5212,0.4472,0.7174,0.8518,0.8614,0.985,0.8382,0.6256,0.3264,0.1962,0.015,-0.4472,-0.823,-0.8998,-0.9246,-0.9534,-0.9534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9882,-0.9752,-0.6044,0.3436,0.7368,0.8722,0.9476,0.9192,0.7626,0.3732,0.1272,-0.0466,-0.3506,-0.807,-0.9306,-0.9418,-0.9558,-0.968,-0.9784,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9134,-0.83,-0.63,-0.58,-0.586,-0.5874,-0.5946,-0.582,-0.6146,-0.6746,-0.7154,-0.7844,-0.8026,-0.919,-0.8112,-0.7678,-0.6544,-0.7344,-0.8812,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7142,1,1,1,-1,-0.9142,-0.8,-0.7714,-0.4286,-0.6286,-0.7142,-0.3142,-0.1714,-0.0858,-0.6572,-0.9714,-0.7714,-0.6572,0.2286,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.0448,0.0028,-0.014,-0.042,-0.081,-0.1306,-0.2168,-0.27,-0.4052,-0.87,-0.72,0.2824,-0.6572,-0.3856,0.3174,0.5602,0.6306,0.825,-0.1718,0.3738,0.7374,1,0.899,0.8586,0.495,0.1516,0.0506,-0.091,-0.091,-0.0304,0.3132,0.5758,0.5152,0.4142,0.4546,0.495,0.4748,0.5152,0.5354,0.2728,0.2526,0.3738,0.0708,0.0304,-0.091,-0.2728,-0.1718,-0.1314,-0.1314,-0.192,-0.6304,-0.3696,0.5,1,0.7392,0.9782,0.087,-0.2392,-0.5434,-0.587,-0.4566,-0.5218,-0.1522,0.4348,0.1086,-0.1086,0.3478,0.413,0.5218,0.413,0.4566,-0.1086,0.0218,-0.0652,-0.174,-0.3478,-0.413,-0.5652,-0.4782,-0.4782,-0.1086,-0.2174,-0.6,-0.2834,0.4834,0.9,0.9334,1,0.75,0.3834,0.05,-0.0334,-0.05,0.0666,0.3334,0.6666,0.8166,0.35,0.55,0.5834,0.65,0.6666,0.45,0.3666,0.4334,0.6,0.5834,0.4834,0.2,0.0334,0.1,0.2,0.3,-0.05,0.8238,-1,-1,1,-1,-1,-1,-0.7666,-1,-0.4622,-0.0588,0.4286,0.6134,0.3446,-0.2268,0.5798,0.6974,1,0.647,0.4286,0.3278,-0.0252,-0.1596,0.0588,0.0756,0.3614,-0.0084,0.3446,0.2942,0.563,-0.0084,-0.0252,-0.2774,-0.4118,-0.2268,-0.0756,-0.1764,-0.0756,-0.0924,-0.1092,-0.731,'18'
-0.3112,0.329,0.3112,0.3246,0.351,0.7396,0.691,0.7174,0.6424,0.426,0.329,0.4438,0.3334,0.5408,0.5188,0.713,0.819,1,0.841,0.7748,0.5806,0.6732,0.713,0.8058,0.9028,0.9912,0.5762,0.6026,0.3686,0.4304,0.2848,0.3466,-0.1792,0.3218,0.2526,0.3046,0.5638,0.7236,0.8618,0.9654,0.6414,0.5422,0.4774,0.4558,0.5508,0.5638,0.6976,0.7322,0.9784,1,0.9352,0.8142,0.7192,0.689,0.7668,0.8358,0.9654,0.9222,0.6846,0.5896,0.473,0.3262,0.3606,0.339,-0.3046,0.1274,0.0324,0.1966,0.4816,0.5334,1,0.9698,0.5378,0.4082,0.4686,0.4644,0.5292,0.594,0.5896,0.8704,0.8488,0.9956,0.8272,0.6804,0.5206,0.5422,0.6674,0.6372,0.8748,0.7106,0.6242,0.3996,0.365,0.2354,0.1922,0.2052,-0.3034,0.0724,0.1154,0.2486,0.4872,0.593,1,0.957,0.4638,0.3698,0.4872,0.5146,0.546,0.6478,0.679,0.906,0.8434,0.9296,0.6556,0.636,0.5694,0.5186,0.6438,0.7064,0.82,0.73,0.7456,0.4678,0.4324,0.3698,0.2564,0.2446,-0.3006,0.1198,0.1474,0.3202,0.5246,0.6188,0.9922,1,0.4382,0.3634,0.45,0.4028,0.5088,0.6268,0.7054,0.9764,0.9646,0.6856,0.552,0.4656,0.387,0.4184,0.4932,0.5128,0.721,0.721,0.611,0.4578,0.3006,0.2062,0.1906,0.1002,-0.3028,0.3862,0.3988,0.5198,0.5366,0.9416,0.9416,0.7954,0.7202,0.4488,0.453,0.478,0.5616,0.666,0.8706,1,0.8162,0.5532,0.3444,0.3904,0.2734,0.2192,0.311,0.3862,0.4614,0.7036,0.6994,0.4238,0.2066,0.1064,-0.002,-0.0354,-0.4848,0.6066,0.734,0.4238,0.6066,0.8116,1,0.6842,-0.0526,-0.1746,0.0084,0.1192,0.18,0.2686,0.7674,0.8892,0.4958,0.1024,0.0138,0.0416,0.108,-0.18,-0.169,-0.1856,0.0692,0.3074,0.5402,0.3074,-0.0084,-0.1358,-0.1746,-0.2686,-0.2692,0.4616,0.4616,0.4616,0.423,0.8076,0.8846,0.7692,0.6538,0.3846,0.4616,0.423,0.5384,0.4616,0.6154,0.6924,0.8462,0.923,0.9616,0.7308,0.7692,0.577,0.8076,0.7308,1,0.9616,0.7308,0.6924,0.5,0.5384,0.3462,0.3846,-0.3704,0.2222,0.1852,0.2592,0.1852,0.6296,0.5556,0.6296,0.5556,0.4444,0.2592,0.4074,0.1852,0.5186,0.3704,0.7038,0.7408,1,0.8518,0.7408,0.4814,0.6296,0.6296,0.8518,0.7038,0.926,0.7408,0.5556,0.2962,0.4444,0.1852,0.3704,-0.1826,0.3566,0.3044,0.5304,0.6522,0.8956,0.826,0.9652,0.7914,0.6522,0.4086,0.6,0.6348,0.774,0.9304,1,0.826,0.7566,0.513,0.5826,0.4434,0.4782,0.5826,0.6,0.7914,0.8434,0.7392,0.6348,0.3566,0.287,0.2,0.1304,-1,-1,-1,-1,-1,-1,-0.9662,-0.9808,-0.9684,-0.9548,-0.712,0.0684,0.1598,0.196,0.1654,0.3834,0.5392,0.6792,0.6024,0.8712,0.8792,0.1304,-0.869,-0.947,-0.947,-0.956,-0.9684,-0.9628,-0.9638,-0.9582,-0.9662,-0.9548,-0.939,-1,-1,-1,-1,-1,-1,-0.9858,-0.9896,-0.9878,-0.9832,-0.659,-0.285,-0.1444,-0.0324,0.1018,0.601,0.8784,0.9132,0.6696,0.2768,-0.1452,-0.618,-0.8858,-0.876,-0.851,-0.7328,-0.6526,-0.6632,-0.6334,-0.6788,-0.6994,-0.7992,-0.8824,-1,-1,-1,-1,-1,-1,-0.763,-0.9634,-0.88,-0.6934,-0.3534,-0.504,-0.308,-0.452,-0.6,-0.5768,-0.63,-0.64,-0.6268,-0.6868,-0.7,-0.77,0.2366,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-0.2858,-0.9714,-0.6858,1,1,1,0.0858,-0.8858,-1,-0.8858,-1,-0.6858,-0.4572,0.9142,1,1,1,-0.1142,-0.6286,-0.5428,-0.8572,-0.9142,-0.8,-0.9142,-0.8858,-0.3428,0.3428,1,1,1,1,1,1,1,1,1,1,0.3266,0.302,0.302,0.2134,0.2174,0.1898,0.1656,0.1032,-0.0302,-0.2966,-0.7066,-0.3764,-0.6156,-0.4548,-0.2256,-0.1924,-0.0592,1,-0.534,-0.068,0.4368,0.6116,0.398,0.165,0.3204,0.5146,0.864,0.9418,0.8446,0.864,1,0.9806,0.5922,0.4564,0.4952,0.5534,0.5728,0.2622,0.5146,0.3592,0.3592,-0.0486,-0.1262,-0.2816,-0.1068,-0.3786,-0.3786,-0.3592,-0.5534,-0.8058,-0.3334,0.0894,0.496,0.6098,0.3984,0.3496,0.4634,0.626,0.8862,1,0.9024,0.8536,0.935,0.9512,0.691,0.5122,0.5284,0.5772,0.5284,0.3008,0.6748,0.561,0.5448,0.3822,0.2846,0.2682,0.252,0.0244,-0.0082,-0.3496,-0.317,-0.4796,0.3644,0.57,0.5514,0.6822,0.5328,0.2898,0.4392,0.4392,0.8318,0.9814,0.5888,0.6074,1,0.7384,0.458,0.3084,0.3272,0.3644,0.4018,0.4018,0.5888,0.4954,0.3272,0.0654,-0.0468,-0.0468,-0.0842,-0.0468,-0.1962,-0.3272,-0.4392,-0.57,-0.2976,-1,-1,1,-1,-1,-1,-0.8,-1,-0.8968,-0.7162,-0.4322,-0.329,-0.3032,-0.4194,-0.2646,-0.1612,-0.071,-0.0064,0.1742,0.1742,0.0452,0.1096,0.1742,0.1226,0.0838,0.2516,0.4064,0.5612,0.4322,0.6,0.4322,0.742,0.8452,0.858,0.858,0.9096,0.8064,1,0.9484,0.5742,'19'
-0.599,0.1538,0.2088,0.2528,0.2638,0.7582,0.8572,0.7142,0.6704,0.3956,0.412,0.2032,0.412,0.3462,0.5714,0.5934,0.8736,1,0.8296,0.7198,0.6924,0.6704,0.7198,0.7858,0.8186,0.7748,0.6538,0.5164,0.456,0.401,0.3462,0.2748,-0.3746,0.1862,0.191,0.2656,0.2952,0.7468,0.7172,0.8908,0.861,0.593,0.5584,0.5782,0.5534,0.6972,0.6674,0.9256,0.9008,1,0.995,0.7816,0.7568,0.742,0.742,0.8512,0.871,0.6476,0.6328,0.4442,0.4442,0.3648,0.3698,0.3002,-0.3706,0.1262,0.1014,0.2008,0.3334,0.615,0.6646,0.9172,0.8136,0.5362,0.3664,0.4534,0.4576,0.6024,0.6564,0.7888,0.884,1,0.7598,0.7102,0.5486,0.648,0.7474,0.8178,0.706,0.7432,0.499,0.528,0.3458,0.3334,0.292,0.3084,-0.4056,0.0446,-0.0148,0.1932,0.3716,0.5244,0.8428,0.949,0.6772,0.5074,0.4734,0.4862,0.533,0.5074,0.7282,0.7452,1,0.9108,0.6348,0.499,0.5838,0.5626,0.6476,0.7708,0.8216,0.7154,0.5838,0.4394,0.4098,0.3122,0.257,0.2526,-0.405,0.0068,0.0618,0.199,0.373,0.5286,1,0.9634,0.3776,0.4142,0.5148,0.405,0.492,0.6522,0.675,0.8582,0.881,0.8078,0.6796,0.5286,0.4828,0.5102,0.5012,0.5836,0.794,0.849,0.6614,0.4324,0.3502,0.2082,0.1396,0.1808,-0.3192,0.0722,0.018,0.0722,0.1686,0.771,0.8796,0.6566,0.5722,0.229,0.1446,0.1386,0.2168,0.2108,0.2952,0.7892,1,0.7892,0.271,0.3494,0.1868,-0.0844,0.1506,0.2108,0.3976,0.741,0.747,0.4638,0.1084,0.0422,-0.247,-0.1446,-0.5186,-0.2338,-0.3084,-0.1728,0.1796,0.8306,1,0.8306,0.2542,0.0238,-0.1728,0.2068,0.2814,0.1458,0.0848,0.5186,0.8238,0.844,0.3424,0.1728,0.078,0.1594,0.0238,0.0238,0.3356,0.5186,0.6068,0.6338,0.3628,0.0238,-0.0306,0.0306,-0.796,0.1428,0.3878,0.347,0.3878,0.796,1,0.9592,0.5918,0.5918,0.3878,-0.1428,0.2244,0.347,0.347,0.551,0.8368,0.9184,0.6326,0.796,0.796,0.5918,0.796,0.8368,0.8368,0.9592,0.8776,0.3878,0.551,0.5102,0.347,0.3062,-0.4576,0.1864,0.2204,0.1864,0.2882,0.6272,0.8306,0.695,0.6272,0.4916,0.4576,0.4576,0.5594,0.6272,0.7288,0.7966,0.8984,1,0.8644,0.8644,0.7628,0.7966,0.7966,0.8644,0.8644,0.7288,0.7288,0.5594,0.5932,0.5254,0.5594,0.5254,-0.4256,-0.0212,0.1276,0.1914,0.1914,0.7234,0.9362,0.766,0.5106,0.4042,0.3618,0.234,0.3618,0.4256,0.468,0.5958,1,0.8724,0.234,0.3618,0.3192,0.0212,0.4042,0.4468,0.6596,0.617,0.5958,0.5106,0.2128,0.0638,0.0638,-0.1064,-1,-1,-1,-1,-1,-1,-1,-1,-0.9554,-0.9634,-0.6344,0.353,0.9428,0.779,0.7488,0.8586,0.8934,0.9094,0.9348,0.2338,-0.3656,-0.4516,-0.8808,-0.8808,-0.8586,-0.9158,-0.9554,-0.9476,-0.9586,-0.9476,-0.9618,-0.9492,-0.957,-1,-1,-1,-1,-1,-1,-1,-1,-0.987,-0.9892,-0.6802,-0.0916,0.7658,0.4726,0.766,0.9342,0.9856,0.8916,0.5704,-0.4004,-0.694,-0.726,-0.9248,-0.9204,-0.8662,-0.8562,-0.872,-0.7544,-0.7616,-0.7784,-0.8064,-0.817,-0.8336,-1,-1,-1,-1,-1,-1,-1,-1,-0.88,-0.9534,-0.7068,-0.5,-0.468,-0.48,-0.46,-0.436,-0.488,-0.54,-0.652,-0.616,-0.504,-0.496,-0.2168,0.1,0.6066,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7142,1,1,1,1,-0.8858,-1,-0.9714,-0.8286,-0.3714,1,1,0.4286,0,0.0572,1,1,-0.4572,-0.7142,-0.7142,-0.9142,-0.9714,-0.8858,-0.8286,-0.8572,1,1,1,1,1,1,1,1,1,1,0.157,0.1034,0.1034,0.0642,-0.0184,-0.0614,-0.125,-0.156,-0.1834,-0.2036,-0.7466,-0.4824,-0.5206,-0.5388,0.5604,0.8162,0.4276,1,-0.3334,0.2222,0.3888,0.5556,0.5556,0.5556,0.6112,0.7778,0.8888,0.8888,1,0.8334,0.8334,0.8334,0.7222,0.5,0.5,0.5,0.6112,0.5556,0.6112,0.5556,0.5,0.3334,0.1112,0.0556,-0.1112,-0.4444,-0.1666,-0.1112,-0.3334,-0.6666,-0.3728,0.2372,0.644,0.8984,0.661,0.5084,0.5254,0.695,0.9662,0.9492,0.7966,0.8136,1,0.8644,0.4746,0.4406,0.4238,0.4746,0.678,0.8136,0.7966,0.661,0.6102,0.4238,0.2204,0.0338,-0.1864,-0.2542,-0.2712,-0.305,-0.4916,-0.8814,-0.408,0.232,0.488,0.888,0.728,0.472,0.488,0.536,0.968,1,0.792,0.792,0.808,0.728,0.472,0.296,0.264,0.408,0.472,0.616,0.552,0.488,0.568,0.44,0.024,-0.136,-0.072,-0.008,-0.024,-0.152,-0.248,-0.664,1,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.7282,-0.663,-0.3696,-0.3804,-0.2718,-0.3586,-0.2392,0.0652,0.1414,0.0326,-0.076,0.0326,-0.1086,-0.0434,-0.0326,0.1086,0.2174,0.2282,0.0434,0.0978,0.2826,0.3586,0.4892,0.4782,0.587,0.6304,0.7934,0.7608,0.6956,1,0.9456,0.5544,'19'
-0.6632,0.6632,0.8316,0.546,0.1836,0.102,-0.1378,-0.0816,-0.204,-0.1174,-0.1938,-0.0816,-0.0816,-0.0766,0.0612,-0.0562,0.204,0.1684,0.4642,0.5868,0.7858,0.9898,0.9438,0.7346,0.6836,0.796,0.9744,0.9744,1,0.8316,0.648,0.6582,-0.567,0.2992,0.3838,0.0598,0.1936,0.0528,-0.1902,-0.2148,-0.1584,-0.095,-0.338,-0.1268,-0.25,-0.0846,-0.095,0.0704,0.155,0.014,0.264,0.2078,0.6936,0.7148,0.6584,0.7746,0.5422,0.817,0.7536,0.9508,1,0.6972,0.7288,0.588,-0.417,0.359,0.4324,0.193,0.2972,-0.0116,-0.112,-0.2626,-0.0926,-0.1738,-0.166,-0.1738,-0.139,-0.0734,-0.0386,0.0888,-0.0194,0.1236,0.0772,0.4634,0.5212,0.861,0.9536,0.9228,0.8572,0.7336,0.9266,0.942,1,0.9846,0.8146,0.8456,-0.3386,0.2374,0.2218,0.3308,0.2996,-0.0972,-0.1478,-0.2296,-0.2762,-0.2608,-0.2958,-0.3424,-0.3074,-0.1712,-0.1246,-0.1284,-0.0622,-0.07,0.1128,0.1674,0.4202,0.6108,0.9456,1,0.8326,0.7588,0.86,0.9338,0.9884,0.8988,0.7898,0.7976,-0.2416,0.2024,0.3556,0.505,0.226,-0.1906,-0.2378,-0.2928,-0.387,-0.4578,-0.5166,-0.4264,-0.3596,-0.387,-0.2848,-0.2612,-0.2102,-0.1316,-0.0294,0.1002,0.2456,0.6228,0.8782,1,0.9096,0.7722,0.8036,0.9096,0.9922,0.9214,0.7838,0.7406,-0.2032,0.2362,0.7528,0.8076,-0.0714,-0.4616,-0.3736,-0.7308,-0.7912,-0.6594,-0.7582,-0.7252,-0.566,-0.7088,-0.6978,-0.4616,-0.5934,-0.445,-0.3736,-0.401,-0.1594,0.3846,0.7142,1,0.7088,0.6758,0.533,0.8516,0.8902,0.6484,0.3736,0.3736,0.2132,0.6656,0.941,0.895,-0.1868,-0.4886,-0.6132,-0.4754,-0.6132,-0.8032,-0.9278,-0.6524,-0.5934,-0.5082,-0.4492,-0.6656,-0.5738,-0.482,-0.5148,-0.2786,-0.1344,0.1214,0.8426,1,0.7836,0.4688,0.7246,0.7704,0.5606,0.4754,0.1476,0.2524,-0.3334,0.7948,1,0.8974,0.3846,0.077,0.0256,0.1282,0.077,-0.5384,-0.2308,-0.2308,-0.4872,-0.4872,-0.282,-0.0256,0.0256,-0.0256,0.1794,0.2308,0.3846,0.4872,0.282,0.2308,0.1282,0.0256,0.3846,0.6924,0.7436,0.5898,0.3846,0.0256,-0.8432,0.451,0.6078,0.2942,0.098,-0.0588,-0.1372,-0.0588,-0.2942,-0.1764,-0.2942,-0.1372,-0.098,-0.3334,-0.0196,-0.1372,0.1764,0.2156,0.1372,0.5294,0.3334,0.8432,0.8432,0.6078,0.6862,0.5686,0.9216,1,0.7254,0.4902,0.2942,0.5686,-0.2326,0.1396,0.5814,0.6512,0.0698,-0.3954,-0.3488,-0.6046,-0.7674,-0.628,-0.628,-0.628,-0.3488,-0.372,-0.4418,-0.372,-0.3488,-0.2326,-0.2094,-0.1396,0.279,0.4418,0.8604,0.9302,0.8604,0.628,0.6976,1,0.8838,0.628,0.6744,0.5582,-1,-1,-1,-1,-1,-1,-0.9856,-0.9856,-0.8562,-0.9182,-0.8818,0.8254,0.709,0.3548,0.1946,-0.0248,-0.1884,-0.1788,-0.1698,-0.2524,-0.4086,-0.6514,-0.8624,-0.9566,-0.9602,-0.9504,-0.9738,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9912,-0.99,-0.8156,-0.757,-0.8222,-0.146,0.651,0.9802,0.6456,0.4348,0.189,-0.1598,-0.4578,-0.6952,-0.7868,-0.8702,-0.951,-0.9786,-0.9788,-0.9746,-0.9834,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.9534,-0.07,1,0.7432,-0.59,-0.06,0.08,0.04,0.1932,0.17,-0.0734,-0.3768,-0.75,-0.7768,-0.8734,-0.82,-0.62,-0.7534,-0.6334,-0.64,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7428,1,1,1,1,1,1,-0.5428,-0.7714,-0.8286,-0.5714,0.0572,1,1,0.2858,0.1714,-0.2286,-0.8,-0.9714,-0.9142,-0.3428,-1,-1,-1,-1,-1,-1,0.2662,0.2892,0.302,0.3094,0.3244,0.3502,0.373,0.389,0.3918,0.103,0.6994,0.7154,0.7474,0.7658,0.8132,0.833,0.8346,0.8822,0.9854,1,-0.8,-0.3412,-0.8308,-0.5916,-0.0576,0.3864,0.6716,1,-0.742,-0.1982,-0.235,0.1706,0.0414,0.06,0.2166,0.2442,0.3364,0.2074,0.4562,0.4562,0.2166,0.4562,0.5208,0.5208,0.5484,0.401,0.7236,0.53,0.5208,0.5116,0.6866,0.7972,0.8894,0.8434,1,0.9354,0.871,0.8342,0.7972,0.2166,-0.7308,-0.4102,-0.3398,-0.141,-0.1282,-0.1538,-0.0642,0.1346,0.0834,0.218,0.2628,0.25,0.3782,0.4102,0.4872,0.468,0.3462,0.3012,0.8206,0.4488,0.5834,0.7052,0.8846,1,0.8462,0.7564,0.8974,0.8718,0.7308,0.641,0.718,0.3206,-0.4086,-0.2762,-0.3464,-0.2608,-0.1284,-0.1128,0.0894,0.0972,0.1362,-0.0194,0.393,0.3386,0.354,0.7822,0.572,0.5098,0.3774,0.5642,0.8444,0.6342,0.7432,0.821,1,0.9688,0.7588,0.712,0.821,0.7588,0.3464,0.4552,0.5564,0.3308,-0.5766,-1,-1,1,-1,-1,-1,-0.4334,-1,-0.4142,0.2122,0.3536,0.0102,0.0708,-0.0708,0.1112,0.0102,0.1112,0.3132,0.394,1,0.5758,0.6768,0.7778,0.596,0.3334,0.4344,0.596,0.1718,0.3132,0.4748,0.4344,0.1718,-0.0102,0.0102,0.2122,-0.0506,-0.1516,-0.3334,-0.1112,-0.4344,'20'
-0.6666,0.5374,0.9626,0.8844,0.119,0.3266,0.2006,-0.102,-0.0034,-0.2176,-0.1054,-0.0068,-0.3946,0.0578,0.0476,-0.0714,0.2448,0.2654,0.4048,0.8198,0.8096,0.7892,0.9286,0.8742,0.847,1,0.9354,0.602,0.5748,0.2824,0.3844,0.3912,-0.8954,0.5458,0.83,0.6568,0.2418,0.3138,-0.2222,-0.2386,-0.2844,-0.255,-0.0588,-0.281,-0.0556,0,-0.3464,0.1602,0.1014,0.0326,0.2876,0.2746,0.7942,0.9836,1,0.951,0.8758,0.804,0.9346,0.9412,0.6046,0.4084,0.2386,0.2614,-0.702,0.6424,0.8014,0.4338,0.3246,0.1822,-0.043,-0.01,-0.3378,-0.1226,-0.3842,-0.2284,-0.288,-0.1788,-0.0232,-0.1324,-0.1258,-0.063,0.0464,0.3444,0.4106,0.755,0.9668,1,0.9768,0.8908,0.8014,0.861,0.6788,0.457,0.361,0.245,-0.1632,0.6284,0.6284,0.4618,0.448,0.0174,-0.0312,-0.1806,-0.2362,-0.382,-0.3646,-0.2986,-0.309,-0.375,-0.25,-0.2084,-0.2848,-0.2952,-0.0348,0.052,0.1458,0.4792,0.7778,1,0.927,0.6598,0.8124,0.875,0.7326,0.441,0.2188,0.2188,0.0116,0.6028,0.8014,1,0.4134,-0.1502,-0.1824,-0.3394,-0.7598,-0.6074,-0.5936,-0.7876,-0.7182,-0.5196,-0.4642,-0.7368,-0.5334,-0.4088,-0.478,-0.3534,-0.0578,0.1824,0.575,0.9214,0.977,0.8384,0.9584,0.9584,0.6812,0.4966,0.3072,0.0346,0,0.431,1,0.9396,-0.2068,-0.2586,-0.3362,-0.5646,-0.4612,-0.444,-0.8018,-0.6638,-0.3922,-0.4182,-0.5776,-0.6164,-0.6682,-0.681,-0.4526,-0.2414,-0.2284,0.0862,0.6638,0.862,0.75,0.7844,0.9482,0.8146,0.3794,0.1466,-0.0258,-0.0948,0.0894,0.5284,1,0.9728,-0.2682,-0.5718,-0.5718,-0.5664,-0.7344,-0.691,-0.7724,-0.7344,-0.458,-0.4308,-0.485,-0.4742,-0.4254,-0.4526,-0.5934,-0.3822,-0.4254,0.1598,0.5718,0.87,0.87,0.7182,0.7452,0.7236,0.4526,-0.0352,-0.1056,-0.2738,-0.4894,0.5744,1,0.9574,0.532,0.1914,0.234,0.0638,-0.1064,-0.2766,-0.532,-0.5744,-0.5744,-0.3618,-0.532,-0.3192,-0.4894,-0.2766,-0.1064,0.1914,0.3618,0.4042,0.1914,0.3618,0.532,0.3618,0.617,0.4042,0.234,0.1914,-0.1064,-0.1914,-0.7142,0.3572,0.7858,0.75,-0.0714,0.1428,0.1072,-0.1072,0.0358,-0.1428,-0.2858,-0.0714,-0.1786,0.0714,0.1786,-0.0358,0.2142,0.3928,0.3214,0.7858,1,0.8928,0.7858,0.7858,0.4642,0.8572,0.9642,0.7142,0.3928,0.3572,0.25,0.4642,-0.9622,0.415,0.6226,0.434,0.1132,0.151,-0.3774,-0.2076,-0.3018,-0.2076,-0.1132,-0.5284,-0.0754,-0.132,-0.0944,0.0566,-0.151,0.1132,0.132,0.283,0.5472,0.3584,0.9056,1,0.6226,0.868,0.868,0.566,0.6416,0.4528,0.2452,0.3018,-1,-1,-1,-1,-0.9876,-0.987,-0.9776,-0.9546,-0.9592,-0.9764,-0.906,0.7358,0.3336,0.112,-0.0388,-0.1822,-0.434,-0.5214,-0.529,-0.5758,-0.658,-0.7742,-0.9184,-0.9764,-0.9806,-0.9398,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9822,-0.9814,-0.8626,-0.5892,-0.4066,-0.4306,-0.6978,0.7082,0.4066,0.1978,0.0412,-0.204,-0.4688,-0.5468,-0.5882,-0.6542,-0.7216,-0.812,-0.9302,-0.9622,-0.9644,-0.9394,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.8468,-0.3868,1,1,1,0.6532,-0.675,-0.525,-0.585,-0.6276,-0.7,-0.7776,-0.8426,-0.9576,-0.965,-0.929,-0.8668,-0.7168,-0.6468,-0.5068,-0.7534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,-0.2286,1,1,1,-0.0286,-0.2858,-0.6572,-0.7142,-0.8286,-0.6,-0.5428,-0.7142,-0.5142,-0.6286,-0.7142,-0.6572,-0.6858,-0.5714,-1,-1,-1,-1,-1,-1,-1,0.4684,0.4672,0.4702,0.4714,0.4566,0.4324,0.4216,0.4312,0.405,0.069,0.8594,0.8324,0.822,0.8142,0.7794,0.775,0.7752,0.8358,0.9208,0.974,-0.8134,-0.0588,-0.746,-0.2572,0.946,0.944,0.494,1,-0.9084,-0.486,-0.3282,-0.1604,-0.1552,0.0076,0.0534,0.1704,0.196,0.1756,0.1806,0.2468,0.2926,0.2978,0.3028,0.2978,0.5726,0.4148,0.6132,0.6692,0.5776,0.71,0.8372,0.9134,1,0.9694,0.8372,0.8168,0.6692,0.7354,0.5368,0.3842,-0.9524,-0.676,-0.5162,-0.4254,-0.4126,-0.2526,-0.3046,-0.3218,-0.3304,-0.0886,-0.0886,0.1058,0.2786,0.283,0.2872,0.3304,0.4428,0.4686,0.607,0.6328,0.6026,0.5076,0.6588,0.9136,0.9136,1,0.974,0.9266,0.8402,0.7668,0.879,0.5766,-0.7938,-0.4484,-0.4432,-0.4432,-0.3918,-0.3298,-0.1752,-0.0464,-0.067,0.4794,0.4588,0.4072,0.7062,0.6702,0.2886,0.2474,0.3918,0.3918,0.9432,1,0.8092,0.8608,0.8814,0.9536,0.8762,0.8196,0.6494,0.7474,0.6494,0.5928,0.6598,0.3918,-0.5336,-1,-1,1,-1,-1,-1,-0.0666,1,-0.6808,-0.2766,-0.3618,-0.2766,-0.1914,0.0212,-0.1276,-0.1914,0.0212,-0.1064,0.3192,0.7446,0.8298,1,0.766,0.2766,0.2554,0.2554,0.3404,0.2554,0.4468,0.3192,0.4468,-0.0638,-0.2128,-0.2978,-0.234,-0.234,-0.3618,-0.5106,-0.4468,-0.851,'20'
0.1814,0.9678,0.7662,0.625,0.1088,-0.512,-0.7016,-0.6612,-0.5484,-0.613,-0.621,-0.7218,-0.5604,-0.4234,-0.5162,-0.6452,-0.5806,-0.4112,-0.363,-0.2782,0.1694,0.8266,0.988,0.5362,0.5484,1,0.9274,0.9354,0.8146,0.7056,0.738,0.8266,-0.0904,0.4824,0.3324,0.363,-0.0782,-0.5926,-0.7152,-0.7672,-0.611,-0.7488,-0.8162,-0.7612,-0.6722,-0.4702,-0.5222,-0.4854,-0.3966,-0.271,-0.118,0.0566,0.4396,0.85,1,0.8254,0.8284,0.9112,0.7764,0.6448,0.614,0.4886,0.5192,0.7764,-0.285,0.1548,0.5136,0.6192,0.118,-0.5062,-0.403,-0.5848,-0.5234,-0.5086,-0.575,-0.5528,-0.3636,-0.2728,-0.2384,-0.2948,-0.0958,0.1254,0.2628,0.6978,0.7936,1,0.887,0.9116,0.9632,0.909,0.484,0.4054,0.489,0.3464,0.462,0.7224,-0.3686,0.0024,0.7348,0.7794,0.0798,-0.115,-0.014,-0.4084,-0.4342,-0.2888,-0.277,-0.2864,-0.0938,0.054,0.1198,0.3638,0.6268,0.7324,0.6292,0.5938,0.5094,0.5892,0.655,1,0.885,0.486,0.2112,0.2136,0.3802,0.2676,0.46,0.7888,-0.2702,0.1084,0.9676,1,0.183,0.1458,0.213,-0.0312,-0.1282,-0.0136,0.1358,0.183,0.4272,0.7708,0.7684,0.5816,0.4296,0.3872,0.2054,0.1632,0.3076,0.472,0.6538,0.975,0.8082,0.4296,0.1582,0.1682,0.33,0.1806,0.4296,0.6788,-0.437,0.092,0.8418,1,0.5564,-0.0324,-0.0298,-0.0428,0.0402,0.2788,0.3852,0.3618,0.1232,-0.0946,-0.2788,-0.323,-0.3412,-0.4942,-0.419,-0.3386,-0.297,-0.2608,-0.0194,0.3722,0.4112,0.1492,-0.0584,-0.2296,-0.2788,-0.227,0.009,0.175,-0.6062,0.883,0.9884,0.9142,1,0.3294,0.5438,0.7076,0.5634,0.0682,-0.2476,-0.2982,-0.4308,-0.4814,-0.657,-0.7622,-0.5634,-0.5634,-0.6882,-0.6102,-0.6218,-0.462,-0.4074,-0.3334,-0.1734,-0.2554,-0.5946,-0.5438,-0.6062,-0.5712,-0.6998,-0.618,0.2,1,0.8858,0.3714,0.1428,-0.1428,-0.3142,-0.1428,-0.0286,-0.1428,-0.0286,-0.0286,-0.0858,-0.0858,-0.3714,-0.8858,-0.8286,-0.1428,-0.1428,-0.2572,-0.2,0.6572,0.6,-0.0286,0.0286,0.3714,0.6572,0.7714,0.7714,0.7714,0.7142,0.7142,0.1352,0.7838,0.7298,0.4594,0.081,-0.4594,-0.2432,-0.2972,-0.081,-0.2432,-0.5136,-0.1352,-0.1892,-0.027,-0.1352,-0.2432,-0.2432,-0.081,-0.1892,-0.946,-0.2972,-0.1892,0.3514,0.5676,0.6216,0.8378,0.8378,1,0.946,0.8918,0.7298,0.946,-0.134,0.3402,0.9588,1,0.4226,0.0928,0.2164,0.1958,0.1958,0.031,0.402,0.5876,0.8556,0.732,0.3402,0.2164,0.1752,0.0516,0.134,0.1752,0.0722,0.2164,0.4846,0.7114,0.7526,0.464,0.3402,0.1134,0.2578,0.2784,0.4226,0.6288,-1,-1,-1,-1,-1,-1,-1,-0.9666,-0.9722,-0.9624,-0.8118,-0.4662,-0.3338,-0.2488,0.0426,0.7588,0.8412,0.6668,0.5192,0.3994,-0.1136,-0.5568,-0.8132,-0.9582,-0.9554,-0.9694,-0.9652,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.958,-0.9604,-0.945,-0.8632,-0.6384,-0.4992,-0.2282,0.403,0.7638,0.682,0.3924,0.2428,0.0874,-0.297,-0.6586,-0.8632,-0.9386,-0.949,-0.9546,-0.9546,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8868,-0.9068,-0.6734,-0.75,-0.7638,-0.65,-0.5618,-0.2968,-0.66,-0.6718,-0.7984,-0.8218,-0.805,-0.7968,-0.8768,-0.83,-0.8268,-0.86,-0.8068,-0.82,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,-0.7142,0.1142,0.3428,-0.7142,-0.5142,-0.8858,-0.8,-0.8858,-0.7714,-0.6,-0.4572,-0.1428,-0.4572,-0.5142,-0.5714,-0.9714,-0.9714,-0.7142,-1,-1,-1,-1,-1,-1,-0.644,-0.6026,-0.62,-0.6234,-0.6454,-0.6564,-0.6214,-0.5036,-0.3008,0.1214,0.7386,0.763,0.814,0.8164,0.8216,0.872,0.9506,0.9842,0.8754,0.3642,-0.6,0.4236,-0.8454,-0.7104,-0.6586,-0.6464,-0.5768,-1,0.0482,0.4206,0.1586,0.2966,0.462,0.6,1,0.7656,0.8206,0.8482,0.7242,0.7932,0.7932,0.738,0.3794,0.6828,0.7104,0.5172,0.4758,0.2276,0.1034,0.4482,0.1862,0.4068,0.3518,0.6138,0.7794,0.6276,-0.1172,-0.0344,0.1448,-0.5586,0.0482,-0.016,0.5402,0.4546,0.3582,0.6578,0.7434,0.4866,0.6578,0.7754,0.861,0.9894,0.9894,0.7648,1,0.6042,0.5828,0.508,0.5188,0.5936,0.5294,0.5188,0.4546,0.6256,0.401,0.3904,0.6042,0.5402,-0.0268,0.0374,0.2728,-0.2192,0.1914,0.3518,-0.142,-0.0802,0.1914,0,0.3272,0.4074,0.2902,0.2038,0.3456,0.6852,0.3148,0.6544,1,0.537,0.574,0.3024,0.3642,0.2592,0.3396,0.3024,-0.1976,-0.1234,-0.0432,0.0618,0.179,-0.1728,-0.0308,-0.2346,-0.1296,-0.358,-0.9822,1,-1,-1,-1,-1,-1,-1,-1,-0.2084,0.0416,0.25,0.7916,1,0.2084,0.2916,0.2292,-0.0208,0.25,0.2292,-0.125,0.4376,0.2708,0.25,0.1876,0,0.2916,0.1876,-0.0208,0.2292,0.0624,0.0624,-0.0416,0.0834,0.2084,0.1876,0.0624,0.1876,-0.0624,-0.1042,-0.4792,'21'
0.1378,0.9434,0.9364,0.3392,0.2862,-0.007,-0.0636,-0.2686,-0.3886,-0.2826,-0.3992,-0.364,-0.3356,-0.2262,-0.3322,-0.2014,-0.159,0.0106,0.152,0.4028,0.6608,0.9188,0.9894,0.7632,0.7314,0.8056,1,0.9082,0.7386,0.675,0.7632,0.735,-0.0434,0.5568,0.5316,0.3324,0.2594,0.0154,-0.0996,-0.1388,-0.265,-0.2314,-0.3744,-0.2706,-0.3268,-0.1052,-0.1612,-0.0014,0.0042,0.1978,0.3352,0.481,0.8822,0.9916,0.8374,0.9326,0.9552,1,0.7728,0.7812,0.5988,0.6326,0.6578,0.7026,-0.217,0.3326,0.3348,0.3856,0.3718,-0.023,-0.0184,-0.0554,-0.0624,-0.1362,-0.1316,-0.0138,0.0046,0.0716,0.097,0.2194,0.261,0.4618,0.508,0.8314,0.8776,0.829,0.8938,0.9192,1,0.739,0.6374,0.4158,0.545,0.4826,0.6236,0.6536,-0.2714,0.299,0.3012,0.6998,0.6746,0.1386,0.0996,0.0104,-0.024,0.0332,0.0104,0.1066,0.079,0.2966,0.283,0.5738,0.567,0.8374,0.8214,0.6198,0.6174,0.6792,0.6954,0.9634,1,0.6656,0.5442,0.3838,0.4296,0.457,0.5052,0.6288,-0.253,0.2762,0.6784,1,0.8652,-0.009,0.0168,0.131,-0.0324,0.0324,0.0298,0.1076,0.3514,0.4682,0.655,0.6472,0.4968,0.406,0.2632,0.2762,0.323,0.3566,0.5304,0.6058,0.7796,0.7614,0.393,0.297,0.2218,0.2062,0.3256,0.3722,-0.25,0.192,0.8872,1,0.5092,0.0854,0.2682,0.0792,-0.0488,0.119,0.186,0.3536,0.5702,0.6432,0.3414,0.189,-0.0854,-0.189,-0.2226,-0.25,-0.1432,-0.125,-0.061,0.2652,0.494,0.4604,-0.0092,-0.1646,-0.3018,-0.2622,-0.2286,-0.1372,-0.0566,0.4252,0.9514,1,0.1052,0.1052,0.2064,0.0324,0.2308,0.3968,0.1418,-0.1538,-0.4656,-0.6194,-0.591,-0.753,-0.753,-0.587,-0.8056,-0.6802,-0.6478,-0.7288,-0.6924,-0.5344,-0.3644,-0.247,-0.4818,-0.8218,-0.7976,-0.8744,-0.8664,-0.6882,0,0.9474,1,0.2106,0.1578,-0.3158,-0.1578,-0.3158,-0.7368,-0.6842,-0.8422,-0.579,-0.421,-0.6842,-0.6842,-0.6842,-0.5264,-0.5264,-0.0526,0,0,0.6316,0.6316,0.2106,0.4736,0.5264,0.7368,0.5264,0.5264,0.4736,0.579,0.5264,0.149,0.8724,0.8724,0.3618,0.3192,-0.0212,-0.0212,-0.3618,-0.4468,-0.1914,-0.234,-0.3192,-0.3618,-0.0638,0.0212,0.0212,0.0638,0.0638,0.1064,0.532,0.5744,0.9574,1,0.617,0.4894,0.6596,0.7872,0.4468,0.7022,0.532,0.7022,0.5744,-0.2766,0.149,0.851,1,0.6808,0.1064,0.3192,0.234,-0.0426,0.0426,0.1276,0.3618,0.5532,0.8298,0.6382,0.4894,0.1064,0.0426,0.1276,0.0638,0,0.149,0.234,0.5958,0.7022,0.4256,0.2554,0.149,-0.0212,0,0.0426,0.0212,-1,-1,-1,-1,-1,-1,-0.9848,-0.9884,-0.9822,-0.9752,-0.733,-0.0524,-0.0536,0.1046,0.1336,0.2498,0.4562,0.711,0.923,0.3614,-0.1742,-0.563,-0.8528,-0.9614,-0.969,-0.9856,-0.9732,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9866,-0.9866,-0.982,-0.9794,-0.8658,-0.5252,-0.397,0.124,0.7228,0.8786,0.5656,0.2832,0.1978,-0.1806,-0.5776,-0.7912,-0.9166,-0.9514,-0.962,-0.9726,-0.965,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.96,-0.8068,-0.7534,-0.7168,-0.7646,-0.6468,-0.5156,-0.3446,-0.1424,-0.4624,-0.7112,-0.8512,-0.942,-0.964,-0.968,-0.9434,-0.7,-0.8068,-0.7834,-0.7534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,-0.9714,-0.7142,-0.4858,1,1,-0.5428,-0.4,-0.4286,-0.5714,-0.4858,-0.5428,-0.3714,0.6858,0.9714,-0.0858,-0.4858,-0.8,-0.8286,-0.8572,0.0286,-1,-1,-1,-1,-1,-1,-0.1274,-0.1318,-0.107,-0.0914,-0.0688,-0.0336,0.014,0.0958,0.239,0.3658,1,1,1,1,1,1,1,1,0.875,0.3118,-0.8266,0.0824,-0.8704,-0.5958,-0.536,-0.4838,-0.4772,0.1916,0.204,0.3334,0.1442,0.1542,0.7712,0.7214,0.6716,0.6716,0.9304,0.7512,0.9402,0.9502,0.8308,0.791,0.7314,0.7612,0.5722,0.5024,0.7612,0.6318,0.4528,0.3034,0.582,0.403,0.5224,0.3632,0.4328,0.5522,0.3632,0.5622,0.0746,-0.1542,-0.153,-0.204,0.0408,0.3674,0.4898,0.153,0.5612,0.602,0.5918,0.4388,1,0.8878,0.4796,0.602,0.8164,0.398,0.2244,-0.0306,0.2552,0.3266,0.5918,0.3878,0.3572,0.2142,0.1632,0.1734,0.3164,0.398,-0.3062,0.0204,-0.3776,-0.5204,0.1708,0.6898,-0.038,0.0886,0.1202,0.0822,0.2468,0.2658,0.4494,0.2722,0.962,1,0.6772,1,0.867,0.4368,0.4936,0.2784,0.6392,0.076,-0.0316,-0.076,0.038,-0.0254,0.0254,0.1266,0.057,-0.0696,-0.1898,0.2088,0.4936,0.0444,-0.9922,1,-1,-1,-1,-1,-1,-1,-1,-0.5434,-0.5218,-0.174,0.587,0.2826,1,0.7174,0.2174,0.0434,-0.1956,-0.2608,0.1522,0.0434,0.0652,-0.0218,-0.1522,-0.1522,-0.1304,-0.1086,0.5218,0.4348,0,-0.1956,-0.174,-0.2174,-0.4348,-0.1086,-0.1522,-0.087,-0.1086,-0.2608,-0.2826,'21'
-0.1366,0.5648,0.5576,0.5936,0.5288,-0.0684,-0.1188,0.1258,0.0288,-0.0936,-0.1258,0.0684,-0.0072,0.1224,0.0576,0.2914,0.2554,0.6188,0.6224,1,0.9964,0.723,0.7518,0.9748,0.9676,0.6978,0.6546,0.482,0.4568,0.2986,0.277,0.3166,-0.3234,0.2964,0.3126,0.2696,0.2776,-0.2534,-0.2426,-0.2346,-0.1968,-0.2992,-0.2452,-0.2048,-0.1294,-0.0998,0.0026,-0.0566,0.07,0.1078,0.2614,0.4232,0.6064,0.7412,1,0.8626,0.8706,0.7682,0.9164,0.8302,0.5714,0.5094,0.4664,0.4178,-0.0814,0.4332,0.4332,0.4168,0.4002,0.0012,-0.0082,-0.065,-0.0768,-0.0932,-0.098,-0.046,-0.039,0.0554,0.072,0.1074,0.131,0.2114,0.2444,0.438,0.5324,0.804,0.9504,0.993,1,0.889,0.9858,0.9952,0.8678,0.7568,0.6576,0.6552,-0.2452,0.2422,0.2036,0.4324,0.257,-0.159,-0.3314,-0.2512,-0.4384,-0.4354,-0.4384,-0.4324,-0.2868,-0.3076,-0.2332,-0.2006,-0.1322,-0.0818,0.043,0.1352,0.3522,0.5424,0.8722,1,0.9882,0.8604,0.9494,0.9554,0.9376,0.6998,0.6286,0.572,-0.3464,0.0214,0.5822,0.625,-0.1786,-0.4608,-0.4358,-0.5678,-0.675,-0.7178,-0.6572,-0.6892,-0.575,-0.525,-0.4392,-0.4786,-0.3858,-0.3892,-0.2928,-0.0928,0.0642,0.3642,0.7858,1,0.9572,0.7608,0.7928,0.8322,0.7822,0.6286,0.3892,0.2608,-0.2,0.5334,1,0.781,-0.2714,-0.1476,-0.3142,-0.5142,-0.7952,-0.6524,-0.738,-0.5762,-0.5762,-0.5714,-0.5952,-0.581,-0.4904,-0.3762,-0.4096,-0.2334,-0.1524,0.1238,0.6286,0.9476,0.862,0.5572,0.6238,0.6904,0.5762,0.2334,0.062,-0.1666,0.195,0.8806,1,0.8616,-0.4026,-0.2704,-0.5912,-0.654,-0.4466,-0.5284,-0.6666,-0.478,-0.522,-0.522,-0.7296,-0.4088,-0.3522,-0.2704,-0.3522,-0.5094,-0.478,-0.2012,0.3648,0.912,0.8238,0.6666,0.6478,0.7296,0.5284,0.3522,0.1824,-0.1384,0.05,0.7,0.65,0.6,0.45,0.15,0.2,0.3,-0.25,0,-0.1,0.1,0,0.2,0.15,0.15,0.5,0.8,1,1,0.85,0.7,0.75,0.8,0.95,0.7,0.2,0.25,0.3,0.2,0.35,-0.05,-0.3954,0.4884,0.4884,0.5348,0.4418,-0.0698,-0.1628,0.0232,-0.0698,-0.2558,-0.3488,-0.0232,-0.1162,0.0232,-0.1162,0.3954,0.2558,0.5814,0.4884,1,0.907,0.6744,0.4884,1,0.907,0.5814,0.5348,0.3488,0.2094,0.1162,-0.0232,0.2558,-0.3864,0.0228,0.5454,0.591,-0.25,-0.5,-0.3864,-0.591,-0.6818,-0.7272,-0.5228,-0.6136,-0.591,-0.4772,-0.4772,-0.3182,-0.3636,-0.341,-0.2728,-0.1136,0.0454,0.2728,0.8636,1,0.841,0.7046,0.7272,0.7954,0.7728,0.5682,0.3182,0.2728,-0.9806,-0.9798,-0.9726,-0.9242,-0.8362,-0.7822,-0.7636,-0.7644,-0.8128,-0.8056,-0.3474,0.6232,0.7612,0.4982,0.3126,0.1246,0.031,0.0116,-0.0384,-0.3312,-0.5732,-0.783,-0.9258,-0.9782,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9856,-0.9848,-0.9778,-0.9564,-0.9188,-0.8878,-0.879,-0.8746,-0.8802,-0.8444,-0.6126,0.0012,0.466,0.8632,0.844,0.6408,0.2688,-0.073,-0.385,-0.666,-0.8132,-0.9072,-0.9638,-0.9818,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9,-0.8668,-0.6668,-0.6234,-0.89,-0.8834,-0.8568,-0.75,-0.4668,-0.2568,-0.5534,-0.645,-0.3476,-0.265,-0.035,-0.115,-0.0926,-0.3926,-0.725,-0.8576,-0.9,-0.9624,-0.7368,-0.7934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,-0.4286,-0.3428,-0.5142,-0.6858,-0.8,-0.8,-0.6286,-0.7142,-0.1428,1,1,0.2,-0.4286,-0.8,-0.8572,-0.5714,0.0286,0.3714,0.2,-0.0286,-0.6,-0.8,-0.0572,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.2826,0.276,0.2862,0.2868,0.265,0.249,0.2442,0.2592,0.2806,0.0608,0.4438,0.4642,0.5098,0.5632,0.6536,0.7304,0.824,0.9422,1,1,-0.7334,-0.0588,-0.5894,-0.4218,-0.0632,0.3382,0.4346,-0.425,0.721,0.7744,-0.092,-0.175,0.0504,-0.086,0.1928,0.5312,0.5548,0.2998,0.3412,0.6736,0.7152,0.371,0.4362,0.4718,0.4124,0.5548,0.6676,0.5608,0.7152,0.9228,1,0.7982,0.6796,0.6854,0.7804,0.816,0.816,0.6024,0.537,0.3234,0.4666,0.5246,-0.4724,-0.1652,-0.2058,-0.0492,-0.0086,0.4434,0.6696,0.5942,0.6116,0.629,0.8028,0.8028,0.6754,0.7102,0.8782,0.9652,0.9942,0.6406,0.9304,1,0.9768,0.6754,0.6986,0.7334,0.7972,0.8144,0.774,0.9188,0.5768,0.1768,0.3628,0.5024,-0.2186,-0.172,-0.1906,-0.093,0.0326,0.2652,0.5628,0.6744,0.5162,0.5116,0.5488,0.4512,0.3162,0.3024,0.521,0.7162,0.6976,0.5116,0.4466,0.9442,1,0.721,0.5954,0.6186,0.572,0.5674,0.5906,0.521,0.2838,-0.028,-0.982,-1,-1,1,1,0.6,-1,-0.0334,-1,0.4048,0.4524,0.1428,0.1428,0,-0.3096,0.1428,0.2142,0.2858,0,0.238,0.881,0.7858,0.738,1,0.0476,0.4762,0.6666,0.5714,-0.119,-0.4524,-0.1666,0.1428,-0.238,-0.0952,-0.0714,-0.0714,0.1666,-0.0476,-0.0476,0.2858,0.119,'22'
-0.115,0.681,0.7126,0.5,0.5316,0.158,0.2356,0.1206,0.2242,0.0028,0.0288,-0.023,0.1896,0.0374,0.2068,0.2098,0.5258,0.546,0.8564,0.8994,0.7644,0.816,0.6868,0.7988,0.816,1,0.8218,0.4626,0.4224,0.3362,0.2932,0.2758,-0.3738,0.5032,0.5842,0.3206,0.45,0.1634,0.0114,-0.1204,0.0698,0.0164,-0.052,-0.0164,0.0266,0.1508,0.019,0.2852,0.1534,0.4068,0.3738,0.7744,0.825,0.8428,1,0.815,0.9874,0.9062,0.9722,0.9494,0.5994,0.5666,0.379,0.488,-0.4928,0.3184,0.3966,0.1352,0.2648,0.0346,-0.0368,-0.1486,-0.153,-0.171,-0.1776,-0.115,-0.2022,-0.0392,-0.1866,0.1084,0.0392,0.171,0.191,0.4146,0.5128,0.7296,1,0.8906,0.819,0.781,0.8526,0.9106,0.6358,0.515,0.372,0.4436,-0.2932,0.3174,0.3198,0.4616,0.44,0.012,-0.024,-0.137,-0.161,-0.2548,-0.2284,-0.2164,-0.1346,-0.1418,-0.0264,-0.0432,0.0072,0.0072,0.1706,0.298,0.4832,0.6972,0.9278,1,0.923,0.8558,0.887,0.8894,0.851,0.5674,0.536,0.4326,-0.2544,0.2038,0.7346,0.8768,0.3712,-0.15,-0.2132,-0.3522,-0.3586,-0.466,-0.4566,-0.4344,-0.3238,-0.3206,-0.3112,-0.3112,-0.267,-0.1912,-0.109,0.0774,0.3048,0.6462,0.8988,1,0.8042,0.741,0.7504,0.7788,0.741,0.4282,0.1374,0.1912,-0.2088,0.1888,1,0.9364,-0.0498,-0.0378,-0.1412,-0.4672,-0.6104,-0.654,-0.845,-0.6978,-0.7456,-0.6938,-0.511,-0.6104,-0.5586,-0.5944,-0.4434,-0.3042,-0.1292,0.1492,0.67,0.825,0.6342,0.3956,0.6064,0.7216,0.6262,0.2246,-0.01,-0.0458,0.0266,0.4712,1,0.9422,-0.2,-0.36,-0.4088,-0.7778,-0.7734,-0.8666,-0.9512,-0.6178,-0.64,-0.6,-0.7422,-0.7156,-0.5334,-0.6978,-0.8488,-0.7466,-0.4488,-0.2088,0.3466,0.8488,0.7422,0.4488,0.3778,0.4044,0.2312,-0.1778,-0.0756,-0.32,-0.2352,0.8824,0.8824,0.2352,0.0588,0.353,0.353,-0.1764,-0.2352,0.1764,0.2942,0.1176,-0.353,-0.4706,-0.4706,0.2942,0.1764,0.8236,0.5882,0.5882,0.7648,0.5882,0.7058,0.4118,0.647,1,0.9412,0.4706,0.4706,0.4706,0.0588,-0.0588,-0.1818,0.6364,0.6818,0.5,0.4546,0.091,0.1364,0.1818,0.2272,-0.1818,-0.2728,-0.091,0.091,-0.091,0.1364,0.2728,0.5,0.3636,0.8182,0.7272,0.6364,0.5454,0.591,0.5454,1,0.9546,0.3182,-0.1818,-0.1364,-0.091,-0.2728,-0.1364,-0.2682,0.1952,0.7804,0.9268,0.4878,-0.1708,-0.2682,-0.4146,-0.317,-0.4146,-0.4634,-0.4878,-0.317,-0.244,-0.3658,-0.3658,-0.0976,-0.244,-0.0732,0.244,0.2682,0.5854,0.7804,1,0.756,0.8048,0.9024,1,0.9512,0.5122,0.3658,0.244,-1,-0.6282,-0.5794,-0.5888,-0.6206,-0.6578,-0.6856,-0.749,-0.84,-0.838,-0.47,0.6214,0.9406,0.8802,0.7538,0.5314,0.2708,0.3742,0.5046,0.0034,-0.3676,-0.5534,-0.8284,-0.9338,-0.9608,-0.9664,-0.9482,-1,-1,-1,-1,-1,-1,-1,-0.8328,-0.8088,-0.8064,-0.8026,-0.8006,-0.8034,-0.8098,-0.8178,-0.8052,-0.6068,0.0282,0.5434,0.5536,0.7686,0.9366,0.6148,0.2836,-0.1176,-0.5036,-0.6964,-0.7862,-0.9152,-0.958,-0.969,-0.971,-0.9626,-1,-1,-1,-1,-1,-1,-1,-0.88,-0.9634,-0.95,-0.89,-0.87,-0.68,-0.4134,0.2266,0.28,-0.2968,-0.749,-0.52,-0.4756,-0.3978,-0.1468,-0.1956,-0.518,-0.878,-0.914,-0.956,-0.916,-0.8268,-0.7768,-0.6968,-0.84,-0.8134,-1,-1,-1,-1,-1,-1,-1,-0.5142,-0.4,-0.4286,-0.4,-0.4,-0.4,-0.6572,-1,-0.5714,0.9142,1,0.2286,-0.5142,-0.9142,-0.6,-0.7714,-0.2858,-0.2572,-0.6286,-0.5428,-0.7428,-0.6858,-0.8858,-0.9428,-1,-0.8286,-1,-1,-1,-1,-1,-1,0.3976,0.4082,0.407,0.4092,0.414,0.4136,0.423,0.4416,0.4702,0.2382,0.5286,0.5498,0.566,0.5848,0.631,0.6526,0.697,0.782,0.9148,0.9772,-0.8266,0.1058,-0.5628,-0.4132,-0.1046,0.297,0.4682,-0.5,0.3952,0.4312,-0.4072,-0.3414,-0.2874,-0.1796,0.006,0.1378,0.473,0.4432,0.4012,0.4192,0.4372,0.6228,0.509,0.6048,0.6526,0.7186,0.545,0.6468,0.6526,0.8144,0.9462,1,0.8204,0.8862,0.7844,0.8324,0.7066,0.6886,0.485,0.2994,0.0458,0.156,-0.4618,-0.2844,-0.37,-0.0458,0.107,0.4802,0.5046,0.6024,0.5168,0.633,0.6514,0.6392,0.6024,0.7676,0.89,0.7676,0.5596,0.7004,0.7738,0.9938,0.9144,0.8348,0.896,1,0.7432,0.8104,0.7614,0.7064,0.7308,0.4312,0.1584,0.3522,-0.4374,-0.3238,-0.1064,-0.0212,-0.0638,-0.1252,0.4562,0.5272,0.357,0.3996,0.688,0.6218,0.357,0.442,0.6076,0.6832,0.4704,0.442,0.636,1,0.9244,0.844,0.6218,0.5792,0.636,0.5698,0.409,0.4516,0.4516,0.253,-0.977,-1,1,-1,1,1,-1,-0.0666,-1,-0.1402,0.6262,0.1588,0.1588,0.1776,-0.0654,0.2336,0.0842,0.3644,0.0842,0.4206,0.9626,1,0.7196,0.8504,0.3458,0.3084,0.3832,0.4766,0.1402,-0.1214,0.2524,0.1962,0.1588,0.0654,-0.1588,-0.028,0.2898,0.2336,-0.028,0.2336,0.1214,'22'
-0.1092,0.4154,0.8556,1,0.4542,0.0246,0.081,-0.074,-0.1022,-0.1972,-0.1796,-0.0422,-0.0422,0.095,0.2922,0.3944,0.4366,0.4788,0.5986,0.5176,0.3486,0.3346,0.4226,0.5212,0.6902,0.838,0.8098,0.5598,0.3944,0.2712,0.2816,0.3874,-0.0794,0.473,0.7762,0.935,0.408,-0.2708,-0.314,-0.4548,-0.4982,-0.5884,-0.538,-0.5234,-0.5884,-0.4296,-0.3466,-0.2094,-0.0974,-0.101,0.0902,0.408,0.7834,0.8954,0.8412,0.6678,0.6824,0.9206,1,0.8808,0.7256,0.3972,0.2708,0.3068,-0.2182,0.2516,0.604,0.7182,0.151,-0.2886,-0.4194,-0.6174,-0.5436,-0.5974,-0.651,-0.5838,-0.688,-0.6242,-0.4296,-0.4698,-0.2618,-0.2046,-0.104,0.2516,0.4128,0.745,0.6812,0.7752,0.755,0.7282,1,0.8524,0.6846,0.3456,0.3256,0.2584,-0.2252,0.2344,0.6754,0.8192,0.3782,-0.1454,-0.2128,-0.3874,-0.3722,-0.3598,-0.3416,-0.32,-0.4732,-0.2924,-0.2404,-0.1762,-0.0598,-0.075,0.1976,0.663,0.7304,0.8316,0.7886,0.7274,0.8744,1,0.8254,0.6814,0.366,0.2618,0.2404,0.2588,-0.1558,0.3912,0.753,1,0.7852,0.3294,0.1088,0.1558,-0.0118,-0.0264,0.0382,-0.0058,0.1852,0.153,0.297,0.5412,0.6148,0.6852,0.6852,0.6176,0.6176,0.5058,0.5852,0.7794,0.8736,0.8676,0.6442,0.3588,0.2176,0.2176,0.1588,0.2324,-0.3894,0.472,0.5192,0.944,1,0.416,0.2508,0.0088,-0.0766,-0.1298,0.0324,0.2418,0.4306,0.6076,0.4602,0.4248,0.2036,-0.1298,-0.1416,-0.0384,0.0088,0.0088,0,0.3452,0.4542,0.3628,-0.0796,-0.2418,-0.2772,-0.289,-0.3068,-0.0708,-0.9546,0.7728,1,0.6656,0.724,0.6624,0.0358,0.159,-0.2694,-0.0584,0,0.1948,0.0324,-0.3864,-0.3896,-0.5324,-0.5942,-0.578,-0.5812,-0.513,-0.5488,-0.5162,-0.6136,-0.341,-0.2306,-0.1884,-0.4124,-0.552,-0.6202,-0.6494,-0.5358,-0.565,0.25,0.8124,0.75,1,0.5,0.375,0.4376,0,0.3124,0.25,0.25,0.625,0.625,1,0.9376,0.9376,0.375,0.375,0.125,0.3124,0.375,0.5,0.375,0.875,0.6876,0.5,0.25,0.0624,0.1876,0.0624,0.375,0.6876,-0.15,0.25,0.8,0.9,0.55,0.05,0.2,-0.1,0,-0.05,-0.15,0,0.15,0.2,0.75,1,0.95,0.5,0.2,0.1,0.1,0.1,0.45,0.6,0.85,0.95,0.75,0.25,0.2,0.35,0.35,0.65,-0.2444,0.3334,0.6666,1,0.8444,0.3334,0.1778,0.1112,-0.0444,0,0.0666,0.1334,0.3334,0.3556,0.5112,0.6888,0.9112,0.7334,0.3112,0.2666,0.3778,0.2888,0.4444,0.7334,0.8666,0.6222,0.3112,0.0444,0.0222,-0.1556,-0.1112,0.0666,-0.9706,-0.9598,-0.8508,0.491,0.7214,0.4848,0.3902,0.6768,-0.1312,-0.742,-0.7196,0.4874,0.783,0.1956,0.0776,0.0054,0.2812,0.408,0.3724,0.3294,-0.0258,-0.2196,-0.7322,-0.9688,-0.9714,-0.9474,-1,-1,-1,-1,-1,-1,-1,-0.968,-0.8816,-0.3172,0.5456,1,1,1,1,-0.0054,-0.7836,-0.7536,0.4304,0.774,0.2948,0.232,0.166,0.44,0.5622,0.4036,0.488,-0.0484,-0.3498,-0.7818,-0.9494,-0.9508,-0.9366,-1,-1,-1,-1,-1,-1,-1,-0.9068,-0.87,0.5332,-0.4868,-0.8068,-0.7134,-0.77,-0.7334,-0.8268,-0.9434,-0.9268,-0.7378,-0.7778,-0.6978,-0.6156,-0.642,-0.73,-0.76,-0.792,-0.86,-0.914,-0.97,-0.9634,-0.7268,-0.7368,-0.87,-1,-1,-1,-1,-1,-1,-1,-0.3428,1,1,1,1,-0.6572,-0.8,1,1,1,1,1,-0.2572,-0.8,-0.9142,-1,-0.8,-0.7714,-0.4,-0.2858,0.2858,0.4286,-0.1428,-0.5714,-0.8858,-0.9142,-1,-1,-1,-1,-1,-1,-1,0.4496,0.4352,0.3954,0.3282,0.277,0.217,0.1504,0.069,0.0464,0.3098,0.0624,0.1416,0.2252,0.3246,0.41,0.5394,0.6818,0.8162,0.9548,0.4388,-0.68,0.1294,-0.7492,-0.36,0.401,0.7696,0.9514,1,-0.5408,0.0666,0.1408,0.4518,0.3926,0.3334,0.4666,0.4814,0.4074,0.7334,0.526,0.5704,0.6444,0.5852,0.7334,0.7186,0.7778,0.9408,0.9852,0.9112,1,0.9704,0.8666,0.6592,0.7038,0.7778,0.763,0.3926,0.1852,0.1852,0.0666,-0.2592,-0.5324,-0.1168,-0.1558,0.013,0.1038,-0.091,-0.2338,0.013,0.3116,0.4026,0.3636,0.3766,0.3896,0.4806,0.4286,0.4026,0.7532,1,0.6234,0.5974,0.7012,0.8832,0.8962,0.987,0.7012,0.7532,0.7532,0.5064,0.3896,0.6884,0.6104,0.1818,-0.3188,0.174,0.116,0.0434,0.0724,0,0.0144,0.3044,0.3914,0.4058,0.116,0.1884,0.3334,0.3478,0.2028,-0.116,0.6522,1,0.1884,0.1594,0.8696,0.8116,0.7102,0.7536,0.2898,0.2898,0.6086,0.4638,0.1304,0.3334,0.174,0,0.4106,1,-1,-1,-1,-1,-1,-0.7,-1,-0.1926,0.0642,-0.0458,0.2478,0.266,1,0.7064,0.3028,0.101,0.6146,0.578,0.1376,0.3212,0.3944,0.1744,0.0642,0.0826,0.4128,0.4496,0.1926,0.0458,0.0458,0.101,0.101,-0.1926,-0.0092,-0.0092,-0.101,0.1744,0.101,-0.2844,-0.578,'23'
-0.2008,0.4074,0.3858,0.7578,0.7598,0.8032,0.685,0.622,0.498,0.3976,0.3426,0.4232,0.5434,0.5984,0.8562,0.8582,0.935,0.9174,0.6594,0.6004,0.559,0.5452,0.6516,0.7638,1,0.9134,0.756,0.5414,0.5196,0.3918,0.498,0.4114,-0.085,0.5312,0.4746,0.7532,0.7192,1,0.8438,0.6852,0.6648,0.5788,0.6648,0.735,0.8346,0.8708,0.6422,0.7124,0.4382,0.2978,0.1688,0.2616,0.18,0.1756,0.4066,0.5176,0.9252,0.9796,0.5424,0.4814,0.2752,0.248,0.2298,0.2752,0.032,0.744,0.6902,1,0.8514,0.2932,0.265,0.452,0.2164,0.283,0.3572,0.4904,0.744,0.8284,0.621,0.7004,0.4162,0.4162,0.0986,0.0986,0.183,0.2138,0.3112,0.283,0.685,0.6824,0.7874,0.6312,0.2906,0.1574,0.1446,0.0858,-0.0598,0.5384,0.4604,0.7362,0.497,-0.0818,-0.2722,-0.199,-0.3944,-0.4164,-0.3676,-0.414,-0.26,-0.2284,-0.1576,-0.0622,0.099,0.16,0.3578,0.453,0.6288,0.685,0.8412,0.724,0.7142,0.8706,1,0.9682,0.7852,0.4334,0.3846,0.326,-0.1932,0.2982,0.5848,0.6926,0.0354,-0.2982,-0.4218,-0.59,-0.632,-0.7346,-0.8028,-0.6584,-0.5874,-0.5612,-0.4664,-0.4218,-0.3404,-0.322,-0.18,0.0014,0.2642,0.7082,0.9816,1,0.7608,0.7872,0.8844,0.95,0.816,0.5112,0.3982,0.3588,-0.2234,0.1776,1,0.9684,0.126,-0.0258,-0.0802,-0.2578,-0.53,-0.5816,-0.49,-0.5988,-0.5014,-0.4012,-0.4298,-0.3582,-0.2006,-0.02,0.0574,0.3638,0.5558,0.447,0.4184,0.6332,0.7422,0.871,0.4786,0.1748,0,-0.341,-0.1576,-0.0802,-0.0834,0.4072,1,0.9626,0.3254,0.1142,0.063,-0.2914,-0.5094,-0.581,-0.5742,-0.5604,-0.104,0.1108,0.1346,0.0596,0.0494,-0.08,-0.3152,-0.4718,-0.339,-0.3628,-0.23,0.1142,0.3868,0.3118,-0.414,-0.6354,-0.6422,-0.6014,-0.5844,-0.6082,-0.2222,0.8888,1,0.9444,0.8888,0.5556,0.2778,-0.1666,0.0556,-0.1112,-0.0556,-0.1112,0.1112,0.1112,0.3334,0.2778,0.4444,0.4444,0.5556,0.3334,0,0.3888,0.2778,0.8334,0.9444,0.6666,0.4444,0.2222,0.2222,0.2222,0.1666,0.1666,-0.1186,0.4576,0.4916,0.9322,1,0.5932,0.4238,0.4576,0.4576,0.2204,0.2882,0.3898,0.4576,0.4576,0.5594,0.8306,0.9322,0.695,0.7288,0.3898,0.5932,0.356,0.5932,0.661,0.9662,0.8984,0.5594,0.4238,0.4916,0.4238,0.4238,0.3898,0.1594,0.7972,0.7682,0.826,0.7682,0.971,0.6522,0.6812,0.7682,0.7682,0.884,0.7392,0.6812,0.6522,0.2754,0.4202,0.2174,-0.0434,-0.1884,-0.0144,0.1014,-0.5652,-0.2174,0.6232,0.7392,1,0.7972,-0.0144,-0.0434,-0.5652,-0.4492,0.2464,-1,-1,-1,-1,-1,-1,-1,-1,-0.988,-0.9858,-0.814,0.4802,0.1464,-0.0462,-0.462,0.4928,-0.1974,-0.5018,-0.527,-0.4838,-0.691,-0.7782,-0.8986,-0.9778,-0.9798,-0.9814,-0.9848,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9886,-0.99,-0.6342,0.2674,0.8104,0.0976,-0.657,0.0108,-0.4198,-0.6038,-0.6672,-0.7024,-0.8376,-0.8836,-0.9442,-0.9812,-0.9806,-0.9792,-0.9842,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9068,-0.97,0.5632,-0.5734,-0.5318,-0.745,-0.7954,-0.7154,-0.5432,-0.4662,-0.6262,-0.8924,-0.894,-0.9386,-0.87,-0.87,-0.7734,-0.9334,-0.8868,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,-0.4572,1,1,1,-0.2,-0.8572,-0.7714,-0.6,-0.4286,-0.5142,-0.5428,-0.8,-0.9428,-1,-0.3142,-1,-1,-1,-1,-1,-1,0.8812,0.904,0.944,0.9854,1,1,1,0.8524,0.7036,0.3882,0.0542,0.0228,-0.0298,-0.1178,-0.1848,-0.2462,-0.267,-0.3114,-0.1432,0.2564,-0.7334,0.5294,-0.6042,-0.4634,0.2162,0.554,0.383,1,-0.6566,0.0102,-0.0102,-0.1112,0.0708,0.0102,0.1112,0.2122,0.3334,0.495,0.596,0.596,0.7778,0.697,0.5556,0.5354,0.495,0.7172,0.9394,0.9394,0.9192,0.8384,0.5556,0.6364,0.697,0.7778,0.9192,1,0.899,0.6768,0.3738,0.091,-0.8556,-0.5464,-0.567,-0.2784,-0.1752,-0.0928,-0.0516,-0.0104,-0.1546,0.2372,0.0928,0.0928,0.567,0.2578,0.134,-0.0516,0.134,0.2372,0.1752,0.4432,0.4432,0.2372,0.5464,0.6702,0.5876,0.402,0.6702,0.9588,1,0.5464,0.5052,0.0722,-0.5666,0.0334,-0.1834,-0.3666,-0.45,-0.3334,-0.35,-0.1334,0.3,0.3334,-0.2334,-0.2,0.7334,0.4666,-0.0166,0.2334,0.3834,0.9,0.4334,0.2334,0.3666,0.4834,0.8834,0.9834,0.8,0.6,0.9166,0.8,0.7666,0.55,1,0.85,-0.1208,-1,-1,1,-1,-1,-1,-0.7666,-1,-0.2858,0.0714,0.1666,0.619,-0.0476,1,1,0.5476,0.619,0.5,0.2858,0.119,0,0.1428,0.0714,-0.0952,0.3334,0.262,-0.1428,0.0238,0.2142,0.0952,0.0476,-0.119,0,0.0952,0.1428,0.0476,-0.6428,-0.0238,-0.0476,-0.2858,'23'
-0.6348,0.036,0.012,0.1318,0.3832,0.533,0.7186,0.7186,0.3652,0.3114,0.2216,0.1856,0.3054,0.2934,0.473,0.503,0.7066,0.8622,1,0.7486,0.6826,0.5748,0.6586,0.7366,0.7964,0.8682,0.9162,0.6468,0.5988,0.479,0.527,0.4192,-0.378,0.0402,-0.067,-0.0134,0.3942,0.4424,0.9088,0.8928,0.3888,0.2708,0.3888,0.3084,0.3298,0.4584,0.5014,0.7104,0.8552,1,0.8928,0.6944,0.6568,0.63,0.6568,0.6622,0.732,0.7962,0.7802,0.5656,0.4798,0.3726,0.3994,0.362,-0.406,-0.0242,-0.1454,-0.0606,0.4424,0.4728,0.7516,0.709,0.806,0.4788,0.394,0.4242,0.497,0.5394,0.7152,0.703,0.8666,0.9516,1,0.7334,0.6606,0.4666,0.6666,0.7454,0.6606,0.6728,0.6606,0.4,0.3758,0.3152,0.2788,0.2424,-0.4656,-0.1058,-0.0212,0.0794,0.2962,0.4498,0.6932,0.6456,0.7354,0.4814,0.4814,0.4444,0.4762,0.5978,0.7196,0.7354,1,0.9154,0.799,0.656,0.6932,0.5714,0.5874,0.7724,0.656,0.7038,0.5502,0.5186,0.3598,0.254,0.328,0.2592,-0.5408,-0.0712,-0.0132,0.2084,0.3298,0.4934,0.8312,0.8734,0.5514,0.446,0.43,0.3932,0.3984,0.5146,0.5936,0.7414,0.9578,1,0.7784,0.5778,0.5356,0.5356,0.5462,0.6412,0.6412,0.6412,0.5568,0.3826,0.2612,0.2138,0.2242,0.219,-0.512,0.2706,0.3382,0.5072,0.5894,0.8406,0.9516,0.7826,0.7584,0.5556,0.5072,0.459,0.512,0.5508,0.5362,0.6522,0.855,1,0.9228,0.6714,0.7392,0.5362,0.7102,0.802,0.7488,0.6474,0.4444,0.343,0.256,0.2078,0.2368,0.2464,-0.8948,-0.0226,0.1578,-0.1278,0.015,0.406,0.5714,0.4888,0.3082,0.2706,-0.0076,0.0902,0.1804,0.2482,0.2858,0.3458,0.5488,0.9324,0.9624,0.8496,0.797,0.5188,0.7068,1,0.9022,0.173,0.376,0.3384,0.1052,0.0526,-0.03,-0.0226,-0.5744,0.1914,0.1914,0.3618,0.532,0.7446,0.9148,0.8724,0.5744,0.4042,0.4468,0.3192,0.3192,0.4468,0.4894,0.6596,0.8298,0.8724,1,0.9148,0.8298,0.7022,0.7872,0.8298,0.9148,0.9148,1,0.8298,0.7022,0.617,0.7022,0.617,-0.491,0.091,-0.0182,0.2,0.4182,0.6364,0.7818,0.7818,0.309,0.3818,0.2364,0.3454,0.3818,0.4182,0.6,0.5636,0.7454,0.8546,1,0.8546,0.709,0.5636,0.6728,0.6728,0.8182,0.891,0.9272,0.6,0.6364,0.5636,0.6,0.491,-0.377,0.2622,0.3114,0.5246,0.5574,0.836,0.8688,0.836,0.9016,0.541,0.6722,0.5082,0.6886,0.5246,0.7704,0.705,1,1,0.9016,0.8852,0.7378,0.7378,0.836,0.8852,0.6886,0.6886,0.541,0.5574,0.3442,0.377,0.3934,0.4262,-1,-1,-1,-1,-1,-1,-1,-1,-0.9262,-0.9312,-0.5796,0.1898,0.4446,0.3834,0.3172,0.2662,0.5082,0.921,0.898,0.814,0.47,-0.5974,-0.9108,-0.9032,-0.9388,-0.9312,-0.7504,-0.6586,-0.9082,-0.9338,-0.9184,-0.9312,-0.9236,-1,-1,-1,-1,-1,-1,-1,-1,-0.9764,-0.9798,-0.5908,-0.0312,0.26,0.469,0.3218,0.3506,0.6742,0.9674,0.8986,0.1634,-0.3982,-0.6944,-0.9404,-0.966,-0.976,-0.9764,-0.8876,-0.7196,-0.7622,-0.7348,-0.733,-0.481,-0.3526,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.8734,-0.6534,-0.51,-0.4,-0.455,-0.465,-0.468,-0.436,-0.528,-0.584,-0.612,-0.64,-0.42,-0.5334,-0.6934,-0.9268,-0.9468,-0.7534,0.2,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,0.1428,-0.6286,-0.7428,-0.7142,-0.7142,-0.7714,-0.4,1,1,1,1,-0.1714,-0.9142,-0.4286,1,1,0.4286,-0.4286,-0.6858,-0.6,-0.9142,1,1,1,1,1,1,1,1,1,1,0.3828,0.3828,0.4034,0.406,0.396,0.3788,0.3394,0.1554,0.0332,-0.1,-0.68,-0.5176,-0.4982,-0.2594,0.105,0.2698,0.4428,1,-0.2068,0.069,0.5862,0.6896,0.5862,0.4828,0.5518,0.6206,0.8966,1,0.9656,0.8276,0.9656,1,0.8966,0.6896,0.7586,0.7932,0.7932,0.6896,0.7242,0.7242,0.6896,0.6896,0.5172,0.3448,0.3448,0.1034,-0.138,-0.138,-0.138,-0.2758,-0.1206,0.1724,0.7068,0.8966,0.4138,0.2068,0.362,0.3966,0.8794,1,0.7242,0.5518,0.931,0.9828,0.638,0.3448,0.5518,0.7414,0.6034,0.5344,0.6724,0.6724,0.5344,0.5172,0.3276,0.138,0.138,0.1206,-0.1896,0.0862,0.0518,-0.6552,0.0094,0.3458,0.5328,0.757,0.701,0.271,0.57,0.5888,0.8878,0.9252,0.7384,0.9252,0.9814,1,0.7196,0.3832,0.5328,0.7758,0.7758,0.5888,0.3458,0.514,0.4954,0.3084,0.2336,0.1402,-0.0094,0.0094,-0.4018,-0.2336,-0.1962,-0.57,0.0818,-1,-1,1,-1,-1,-1,-0.8334,1,-0.9322,-0.7402,-0.774,-0.6158,-0.4464,-0.4124,-0.3786,-0.2204,-0.0508,-0.2204,-0.1638,-0.1638,-0.2542,-0.0056,-0.209,-0.1526,0.0508,0.1412,0.13,0.2542,0.3108,0.243,0.4238,0.6384,0.695,0.7628,1,0.4576,0.6384,0.8306,0.9662,0.8758,'24'
-0.716,0.136,0.1834,0.0888,0.3728,0.5266,0.8106,0.9054,0.5148,0.4082,0.3728,0.3018,0.4082,0.3372,0.6804,0.6924,0.9764,0.9764,1,0.7042,0.6568,0.7988,0.8106,0.9172,0.9882,0.8698,0.6804,0.6804,0.5622,0.7634,0.716,0.6568,-0.4598,0.0236,-0.0522,0.1374,0.4028,0.5166,0.9242,1,0.5546,0.327,0.3934,0.289,0.3364,0.3554,0.583,0.7062,0.782,0.9146,0.9242,0.6492,0.6018,0.7252,0.7252,0.8578,0.82,0.8104,0.6208,0.6208,0.5734,0.4882,0.526,0.4692,-0.4208,-0.0408,-0.0136,0.095,0.3122,0.6108,0.9638,0.9004,0.5022,0.4028,0.466,0.3666,0.3484,0.5114,0.6018,0.7104,0.982,1,0.7828,0.7194,0.6924,0.7014,0.7738,0.9186,0.9186,0.7828,0.6652,0.5746,0.457,0.4932,0.4118,0.3756,-0.4178,-0.061,0.0234,0.108,0.3428,0.6432,0.953,0.831,0.568,0.4742,0.5118,0.3802,0.3522,0.5118,0.6996,0.7558,1,0.953,0.831,0.662,0.6902,0.7652,0.7652,0.9154,0.7652,0.7652,0.5306,0.5492,0.4084,0.3522,0.3708,0.2394,-0.356,0.0048,0.1318,0.2292,0.356,0.756,0.9414,0.7464,0.4926,0.5414,0.483,0.4732,0.4536,0.5318,0.7268,0.8342,1,0.8536,0.6878,0.6098,0.6292,0.6,0.6292,0.844,0.9318,0.9512,0.5318,0.3756,0.2976,0.2292,0.239,0.0634,-0.3406,0.011,0.2748,0.3406,0.4506,0.8682,1,0.7582,0.7142,0.4396,0.3406,0.4066,0.3296,0.4286,0.6264,0.8132,0.901,0.978,0.967,0.4946,0.4616,0.4836,0.6924,0.7912,0.8462,0.7032,0.6264,0.1318,0.066,0.022,0.099,0.011,-0.3496,-0.0486,0.33,0.3106,0.3204,0.8156,0.864,0.8058,0.7088,0.4466,0.33,0.2136,0.3398,0.3398,0.6214,0.7282,0.9612,1,0.7282,0.6116,0.5922,0.2912,0.6214,0.699,0.7766,0.6894,0.3204,-0.0194,-0.0388,0.068,0.097,-0.1262,-0.95,0.3,0.45,0.1,0.6,0.6,0.65,0.9,0.8,0.55,0.6,0.5,0.6,0.7,0.8,0.9,1,0.95,1,1,0.9,0.95,0.95,0.95,1,0.95,0.95,0.9,0.85,0.85,0.85,0.8,-0.4482,0.0344,-0.069,0.1724,0.4138,0.5862,0.862,0.931,0.5172,0.5172,0.4138,0.4138,0.4828,0.4138,0.6896,0.6896,0.931,0.862,0.8966,0.6896,0.7586,0.7586,0.7932,1,1,0.8276,0.7586,0.7586,0.6896,0.6552,0.5518,0.6206,-0.28,0.02,0.28,0.36,0.5,0.86,1,0.78,0.64,0.5,0.4,0.48,0.26,0.48,0.74,0.7,0.96,0.92,0.94,0.48,0.34,0.46,0.76,0.74,0.9,0.84,0.62,0.12,0.22,0.12,0.04,0,-1,-1,-1,-1,-1,-1,-1,-0.958,-0.9452,-0.6672,-0.6508,-0.1078,0.2376,0.2522,0.6106,0.9798,0.9926,0.9196,0.7276,0.5266,0.0074,-0.3126,-0.6984,-0.9342,-0.936,-0.9616,-0.9414,-0.9598,-0.7002,-0.8226,-0.8904,-0.9396,-0.9542,-1,-1,-1,-1,-1,-1,-1,-0.9846,-0.983,-0.791,-0.746,-0.2478,0.4154,0.4114,0.5716,0.9908,0.9164,0.7604,0.3076,0.0114,-0.4306,-0.6692,-0.8716,-0.932,-0.9782,-0.9842,-0.955,-0.9628,-0.6668,-0.8568,-0.7942,-0.7736,-0.651,-1,-1,-1,-1,-1,-1,-1,-0.8534,-0.92,-0.7534,-0.5868,-0.64,-0.45,-0.39,-0.51,-0.5334,-0.5534,-0.58,-0.54,-0.5934,-0.6334,-0.6268,-0.3268,-0.25,-0.7168,-0.8468,-0.7868,-0.7,-0.4934,0.0266,0.66,1,1,-1,-1,-1,-1,-1,-1,-1,-0.7142,0.8,1,1,1,1,1,1,-0.2858,-0.8572,-0.0858,0.6,0.9428,1,1,1,1,1,-0.4858,0.1714,1,1,1,1,0.2286,-0.7142,1,1,1,1,1,1,1,1,1,1,0.1958,0.2584,0.2584,0.2554,0.2554,0.2434,0.2818,0.2724,0.2028,0.0092,-0.6534,-0.7764,-0.8638,-0.4758,0.414,0.5182,0.9908,1,-0.3334,0.2482,0.7304,1,0.6312,0.3476,0.3618,0.546,0.9432,0.9432,0.6454,0.7446,0.8582,0.6454,0.617,0.6028,0.5178,0.5602,0.4468,0.1206,0.234,0.0212,-0.0496,-0.0922,-0.2624,-0.39,-0.3334,-0.688,-0.4468,-0.461,-0.6738,-0.8582,-0.6444,-0.2444,0.2296,1,0.4222,-0.3482,-0.3334,-0.2,0.526,0.5704,-0.0074,0.2148,0.2592,0.274,0.0814,0.0814,0.0814,0.0814,-0.0814,-0.2888,-0.0962,-0.0814,-0.4222,-0.2296,-0.4666,-0.363,-0.2444,-0.3038,-0.4222,-0.5556,-0.6296,-0.6296,0.0892,0.5,0.1072,0.9464,0.5536,-0.0536,0,0.4464,0.8214,1,0.3928,0.6786,0.8214,0.7142,0.3214,0.5178,0.3392,0.3572,0.2142,0.4464,0.75,0.375,0.4642,0.1964,0.125,-0.125,0.0714,0,-0.1072,-0.2678,-0.1786,-0.7322,-0.013,-1,-1,1,-1,-1,-0.8,-0.7,1,-0.8638,-0.7172,-0.665,-0.4764,-0.3822,-0.2566,-0.1938,-0.0158,-0.0052,-0.0994,-0.1624,-0.1624,-0.0576,-0.1832,-0.1414,-0.089,0.1414,0.1832,0.1308,0.2252,0.3822,0.4136,0.288,0.5812,0.4764,0.5498,0.5706,0.267,0.5392,0.9476,1,0.7278,'24'
-0.167,0.3974,0.545,0.8906,0.8434,1,0.7312,0.7872,0.2822,0.161,-0.161,-0.1994,-0.3058,-0.418,-0.4506,-0.6248,-0.5392,-0.613,-0.6012,-0.486,-0.5244,-0.3678,-0.3738,-0.0694,0.2054,0.5392,0.4122,-0.0398,-0.232,-0.0902,-0.0458,0.0074,-0.3552,0.0382,0.106,0.259,0.5454,0.6284,0.9694,1,0.799,0.7596,0.2984,0.1782,0.0908,-0.0994,-0.0404,-0.1454,-0.1366,-0.1672,-0.211,-0.1782,-0.2284,-0.1016,0.023,0.095,0.3378,0.3486,0.4994,0.4492,0.1498,0.0602,0.165,0.13,-0.4546,-0.042,0.021,0.1794,0.4428,0.5314,0.9744,1,0.8368,0.7856,0.8158,0.704,0.3892,0.1516,0.1562,0.0862,0.0932,0.0024,-0.0442,0.049,-0.0816,0.042,0.1446,0.2238,0.4802,0.4918,0.6714,0.627,0.387,0.247,0.2774,0.1632,-0.4368,-0.0606,0.0232,0.1508,0.3136,0.4412,0.8416,0.7888,0.9406,0.8944,1,0.868,0.6766,0.4808,0.3994,0.241,0.1618,0.219,0.0628,0.0672,0.1552,0.1024,0.208,0.3378,0.516,0.6722,0.6832,0.5446,0.3818,0.2982,0.274,0.208,-0.3956,-0.0572,0.0298,0.087,0.2264,0.5996,0.7364,1,0.985,0.694,0.5472,0.617,0.8782,0.8856,0.7712,0.5572,0.5448,0.2512,0.1642,0.2164,0.1916,0.1716,0.2712,0.383,0.5,0.5274,0.4204,0.2886,0.1468,0.0896,0.0722,-0.0024,-0.2932,0.0716,0.1726,0.1856,0.3258,0.9902,1,0.8892,0.671,0.4854,0.039,0.228,0.3388,0.404,0.5766,0.7558,0.658,0.5276,0.5082,0.316,0.3094,0.2964,0.1336,0.2964,0.632,0.5602,0.0554,0.0196,-0.039,-0.2084,-0.1498,-0.0456,-0.011,0.479,0.2848,0.4614,0.7704,1,0.9824,0.0022,-0.245,-0.6248,-0.638,-0.3774,-0.4084,-0.607,-0.6644,-0.5408,-0.4614,0.2494,0.5452,0.5144,0.3642,0.2142,0.0772,0.32,0.5762,0.7042,0.3996,0.0154,-0.0994,-0.2318,-0.3598,-0.3774,0.322,0.7628,0.8306,1,0.8984,0.7966,0.695,0.7288,0.356,0.0848,0.017,-0.017,0.1526,0.1186,0.0508,-0.1186,-0.1526,-0.1864,-0.1864,-0.1864,-0.322,-0.017,0.0508,0.0848,0.4576,0.5594,0.356,0.0848,-0.1186,-0.0848,0.1526,0.322,0.0334,0.4666,0.7,1,0.9334,0.6334,0.5334,0.5666,0.3,0,-0.3,-0.3666,-0.1334,-0.2334,-0.3666,-0.3666,-0.4,-0.5,-0.4666,-0.3334,-0.2334,-0.2,-0.2,0,-0.0334,0.2666,0.2666,-0.0666,-0.2,0.0334,-0.0666,0.1,-0.353,-0.0196,0.0196,0.0784,0.196,0.6078,0.7058,1,0.9412,0.6862,0.5294,0.6274,0.8824,0.7844,0.902,0.6862,0.5882,0.2942,0.255,0.2942,0.196,0.255,0.3138,0.4118,0.4706,0.6078,0.451,0.255,0.2352,0.1568,0.0392,-0.0588,-1,-1,-1,-1,-1,-1,-1,-0.9194,-0.7656,-0.6076,-0.4118,0.6286,0.4756,0.1874,0.163,-0.0278,-0.232,-0.3874,-0.4916,-0.5512,-0.5966,-0.7328,-0.826,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.973,-0.9278,-0.873,-0.8,-0.3356,0.1768,0.8172,0.7116,0.8206,0.6142,0.287,-0.1642,-0.6106,-0.7662,-0.8902,-0.929,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8868,-0.98,-0.9734,-0.9268,-0.8778,-0.77,-0.702,-0.704,-0.636,-0.652,-0.654,-0.726,-0.784,-0.834,-0.904,-0.9634,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7428,-0.3714,-0.2572,0.4286,1,1,-0.5714,-0.6858,-0.8,-0.4286,-0.2,-0.0858,-0.1428,0.2858,-0.4858,-0.6286,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.9104,0.9706,1,1,1,1,1,1,1,1,0.6028,0.717,0.7518,0.7752,0.8164,0.7972,0.781,0.6978,0.5438,0.0604,-0.68,0.1648,-0.791,-0.672,-0.3692,-0.178,-0.0976,-0.55,0.7352,0.9706,0.2254,0.6764,0.7254,0.7058,0.9804,0.7844,0.696,0.5,0.804,1,0.8236,0.4314,0.8138,0.7254,0.549,0.6568,0.5882,0.4706,0.6372,0.6666,0.5882,0.5588,0.3824,0.4902,0.5588,0.598,0.4608,0.3334,-0.0882,-0.098,0.8604,1,0.3904,0.1556,0.035,-0.1174,0.1492,0.1048,0.0412,-0.1682,-0.092,-0.0412,0.0032,0.0858,-0.1366,-0.1366,-0.1366,-0.3206,-0.2572,-0.1874,-0.1428,-0.2762,-0.3206,-0.2318,-0.2064,-0.1874,-0.1174,-0.1874,-0.2698,-0.238,-0.1936,-0.638,0.7898,1,0.9608,0.6136,0.3594,0.0856,-0.1394,-0.291,-0.2322,-0.2224,-0.2518,-0.1688,-0.0806,-0.3252,-0.3202,-0.3056,-0.1002,-0.203,-0.2078,-0.335,-0.3448,-0.1638,-0.33,-0.3008,-0.335,-0.4474,-0.4132,-0.2518,-0.3644,-0.5502,-0.5696,-0.8288,-0.9686,1,-1,-1,-1,1,-0.4,-1,-1,0.619,0.6508,0.6032,0.3334,0.1746,0.0476,0.0158,-0.127,0.0158,0.7142,0.9366,0.746,0.6984,1,0.3174,0.1746,0.3492,0.508,0.254,-0.0318,-0.2064,-0.0476,-0.0476,-0.1746,-0.4762,-0.365,-0.0476,-0.1904,-0.0794,-0.254,-0.3016,-0.619,'25'
-0.2114,0.3872,0.4798,0.8384,0.8456,1,0.7934,0.886,0.5178,0.3776,-0.0594,-0.0286,-0.285,-0.3182,-0.2992,-0.3492,-0.4466,-0.544,-0.5558,-0.6224,-0.4798,-0.494,-0.4726,-0.2446,-0.1924,0.247,0.2446,-0.0832,-0.1568,-0.1616,-0.1306,0.0522,-0.4588,0.0506,0.0258,0.2972,0.3488,0.6646,0.7142,1,0.897,0.867,0.7444,0.2848,0.1304,0.0968,-0.0364,-0.0186,-0.15,-0.1766,-0.292,-0.221,-0.2902,-0.2298,-0.1978,-0.1074,0.015,0.166,0.3416,0.3682,0.2032,0.0276,-0.0134,0.047,-0.4992,0.0354,0.0304,0.2412,0.2158,0.6122,0.5868,1,0.9814,0.7876,0.769,0.7622,0.7522,0.3576,0.349,0.2446,0.236,0.1062,0.0994,0.1112,0.1096,0.1552,0.1704,0.258,0.2816,0.5194,0.543,0.43,0.4672,0.2512,0.2952,0.1568,-0.4556,0.0226,0.0152,0.276,0.3498,0.5218,0.879,1,0.8468,0.8904,0.9432,0.9698,0.9848,0.9452,0.743,0.6598,0.4914,0.4272,0.3308,0.3252,0.3346,0.3384,0.4272,0.4952,0.6938,0.7354,0.775,0.7088,0.5122,0.4254,0.38,0.3648,-0.4352,-0.1108,0.1652,0.2092,0.3472,0.636,0.8452,0.9456,0.8996,0.6862,0.5524,0.6318,0.6694,0.8076,0.9184,1,0.933,0.7908,0.592,0.521,0.4812,0.5188,0.567,0.7302,0.8682,0.8974,0.682,0.5794,0.4874,0.3578,0.2928,0.3724,-0.3448,-0.0504,0.3474,0.4298,0.6658,1,0.87,0.5942,0.3422,0.236,0.1486,0.1724,0.114,0.2308,0.3156,0.4774,0.573,0.8144,0.7878,0.7984,0.4324,0.3396,0.4084,0.573,0.7348,0.7772,0.374,0.2546,-0.061,-0.1062,-0.053,-0.1008,0.0894,0.7298,0.5164,0.5076,0.9434,0.5686,0.207,-0.0458,-0.4772,-0.4902,-0.5642,-0.3856,-0.3594,-0.3682,-0.464,-0.2244,-0.1546,0.0284,0.0632,0.647,0.8432,0.769,0.5948,0.4858,0.4728,0.8474,1,0.4292,0.1546,-0.2592,-0.085,-0.1328,0.1914,0.7022,0.6596,1,0.8298,0.7022,0.4894,0.5744,0.0638,-0.1064,-0.532,-0.4468,-0.3618,-0.4894,-0.4894,-0.4468,-0.3192,-0.2766,-0.7022,-0.6596,-0.3618,-0.3618,-0.3192,-0.1914,-0.3192,-0.0212,-0.1064,-0.4042,-0.5744,-0.3618,-0.149,-0.0638,-0.1556,0.4222,0.6,1,0.9112,0.6444,0.4222,0.5112,0.1556,-0.1556,-0.4666,-0.4666,-0.5112,-0.4666,-0.5112,-0.4666,-0.4666,-0.5112,-0.6444,-0.6888,-0.4666,-0.5112,-0.8666,-0.5556,-0.3778,0.0666,0.1112,-0.3778,-0.5556,-0.4666,-0.3334,0.0666,-0.4894,-0.234,0.149,0.1914,0.383,0.7022,0.617,0.7872,0.5744,0.5106,0.2554,0.3618,0.4042,0.468,0.5744,0.8724,0.9788,1,0.9362,0.6382,0.5744,0.5532,0.617,0.6808,0.8086,0.9362,0.617,0.4468,0.149,0.1914,0.149,0.2128,-1,-1,-1,-1,-1,-1,-1,-1,-0.9602,-0.6978,-0.369,0.5896,0.4732,0.2834,0.1476,0.121,0.069,-0.1332,-0.3598,-0.4018,-0.561,-0.7498,-0.8714,-0.9152,-0.949,-0.9754,-0.9642,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9868,-0.9334,-0.858,-0.4812,-0.013,0.5842,0.6546,0.7636,0.8048,0.2296,-0.1402,-0.6424,-0.8502,-0.9328,-0.963,-0.974,-0.977,-0.9812,-0.979,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9234,-0.9668,-0.9368,-0.85,-0.7734,-0.6818,-0.65,-0.6618,-0.5934,-0.585,-0.5584,-0.755,-0.8918,-0.9048,-0.8634,-0.69,-0.6268,-0.5534,-0.6568,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6,-0.2,0.1714,1,0.1428,0.1714,-0.4,-0.6286,-0.8,-0.7428,0.6286,0.7714,0.1714,-0.5714,-0.9428,-0.9142,-0.9142,-0.9428,-0.8286,-1,-1,-1,-1,-1,-1,0.9688,0.9934,1,1,1,1,1,1,1,1,0.2642,0.2502,0.2458,0.2616,0.2502,0.2032,0.1128,0.0212,-0.1856,-0.1464,-0.76,0.447,-0.8546,-0.755,-0.5882,-0.4074,-0.3548,-0.7,0.136,0.3254,0.2426,0.7278,0.7278,0.6332,0.6924,0.6924,1,0.5976,0.6094,0.8698,0.645,0.6094,0.6332,0.4556,0.432,0.4674,0.1952,0.4438,0.4792,0.361,0.4082,0.361,0.5622,0.4202,0.5976,0.4556,0.3964,0.2662,0.361,-0.5266,0.8536,1,0.561,0.3854,0.2976,0.4048,0.5024,0.561,0.7074,0.3952,0.5512,0.6682,0.5804,0.678,0.2488,0.3756,0.4342,0.5318,0.3756,0.239,0.3756,0.3074,0.2586,0.3464,0.3366,0.4342,0.1708,0.4244,0.3756,0.2488,0.2878,0.0342,0.8462,1,0.9692,0.4708,0.2984,-0.1876,-0.237,-0.0338,0.0338,-0.0954,-0.1508,-0.0954,0.077,-0.0338,-0.157,-0.0462,0.1262,-0.2124,-0.1692,-0.163,-0.157,-0.083,-0.1938,-0.077,-0.1446,-0.237,-0.2862,-0.2184,-0.1384,-0.3538,-0.2492,-0.5446,-0.9936,1,-1,-1,-1,0,-1,-1,-1,-0.4392,-0.3458,-0.0468,0.1402,-0.1402,0.0094,0.028,0.3084,0.3458,0.3458,0.6822,0.9252,1,0.9252,0.1776,0.3084,0.0842,0.3084,0.3458,0.0094,-0.215,-0.1214,0.2524,0.2898,-0.1028,0.0468,-0.1028,-0.1214,-0.0842,-0.0468,-0.271,-0.7384,'25'
0.1676,0.9798,0.9798,0.6808,0.6606,0.2606,0.208,0.192,0.1758,-0.002,-0.0586,0.2646,0.2808,0.293,0.309,0.5676,0.604,0.9434,1,0.794,0.8384,0.5718,0.6484,0.7818,0.9152,0.8828,0.891,0.5636,0.6122,0.402,0.4304,0.4304,-0.1882,0.4032,0.406,0.5188,0.5026,-0.0376,-0.0376,-0.0484,-0.0484,-0.078,-0.0698,-0.0188,0.0108,0.1156,0.1586,0.2044,0.258,0.4274,0.5026,0.8334,0.9302,0.7178,0.8118,0.7474,0.8602,0.863,1,0.7822,0.6424,0.4462,0.492,0.4462,-0.2028,0.3342,0.3318,0.4034,0.3914,-0.0262,-0.0358,-0.0906,-0.0978,-0.1432,-0.1312,-0.0644,-0.043,-0.0024,0.0262,0.0836,0.1242,0.2172,0.2696,0.4964,0.5728,0.895,1,0.8282,0.7972,0.8186,0.9452,0.7996,0.7828,0.5894,0.6206,0.537,-0.22,0.2646,0.2034,0.4708,0.3342,-0.117,-0.2842,-0.2368,-0.4568,-0.4262,-0.365,-0.365,-0.2924,-0.22,-0.1672,-0.131,-0.1002,-0.0084,0.1282,0.2424,0.468,0.6658,0.9164,1,0.7938,0.7772,0.8774,0.9332,0.8942,0.7214,0.5934,0.5766,-0.3194,0.0452,0.5764,0.6354,-0.0278,-0.4166,-0.3924,-0.6424,-0.6146,-0.552,-0.6666,-0.5,-0.4444,-0.4548,-0.3298,-0.3298,-0.3194,-0.191,-0.0868,0.059,0.2848,0.5902,0.8612,1,0.9376,0.7812,0.8472,0.9548,0.8506,0.677,0.493,0.4202,-0.3836,0.1212,0.6422,0.5188,-0.2922,-0.1888,-0.4274,-0.7256,-0.5586,-0.7058,-0.7456,-0.67,-0.5984,-0.7098,-0.5188,-0.4116,-0.5228,-0.344,-0.2724,-0.3122,0.0974,0.3718,0.7972,1,0.8846,0.682,0.67,0.841,0.7694,0.2486,0.1928,0.014,-0.102,0.5372,1,0.7686,-0.1626,-0.3058,-0.664,-0.7356,-0.73,-0.8458,-0.8458,-0.8072,-0.7246,-0.6528,-0.5812,-0.7962,-0.7246,-0.697,-0.9284,-0.5868,-0.5758,-0.0192,0.719,0.9228,0.7906,0.438,0.7796,0.6584,0.4932,0.3444,0.0688,-0.0468,0.081,1,1,0.4594,0.4054,0.2972,0.1892,-0.5676,-0.027,-0.027,-0.027,-0.2972,0.027,-0.1892,0.027,0.1352,0.7838,0.8378,0.8378,0.6756,0.5136,0.5136,0.1352,0.2972,0.8918,0.946,0.7838,0.6756,0.5136,0.6756,0.7298,0.6216,0.2308,1,1,0.5898,0.5898,0.2308,0.1282,0.1794,0.1794,0.0256,-0.3334,0.077,0.1794,0.3846,0.3846,0.5384,0.5384,0.641,0.8462,0.5898,0.5384,0.5384,0.5384,0.641,0.7948,0.641,0.4358,0.1794,0.4358,0.1282,-0.1794,0.282,-0.34,0.14,0.24,0.42,0.2,-0.34,-0.4,-0.42,-0.74,-0.66,-0.52,-0.48,-0.42,-0.32,-0.28,-0.24,-0.28,-0.14,0,0.12,0.38,0.46,0.96,1,0.68,0.68,0.8,0.7,0.76,0.58,0.58,0.5,-0.9446,-0.8594,-0.7424,-0.676,-0.6722,-0.691,-0.7544,-0.799,-0.8604,-0.8652,-0.5474,0.3254,0.9306,0.9862,0.8762,0.7772,0.7336,0.7424,0.6334,0.1778,-0.1946,-0.4908,-0.7206,-0.894,-0.9702,-0.9702,-0.9564,-1,-1,-1,-1,-1,-1,-0.966,-0.934,-0.882,-0.8558,-0.8398,-0.845,-0.8346,-0.8458,-0.827,-0.7994,-0.7082,-0.4982,-0.0158,0.4944,0.8814,0.8572,0.585,0.094,-0.1772,-0.4702,-0.6986,-0.825,-0.9076,-0.9572,-0.9778,-0.9818,-0.9778,-1,-1,-1,-1,-1,-1,-0.4468,-0.5068,-0.4168,-0.57,-0.42,-0.1334,0.1932,0.3332,0.7766,0.9632,0.2632,-0.775,-0.4776,-0.15,-0.0926,-0.0776,-0.16,-0.475,-0.6026,-0.6776,-0.8534,-0.9112,-0.8968,-0.5834,-0.7,-0.8068,-0.84,-1,-1,-1,-1,-1,-1,1,1,-0.1142,-0.8572,-0.9142,-0.9428,-0.7428,-0.7142,-0.8,-0.7714,0.1714,1,1,-0.2,-0.8,-0.7142,-0.3714,-0.1714,-0.8286,0.0572,-0.1714,-0.1714,-0.3714,-0.7428,-0.8858,-1,-0.9428,-1,-1,-1,-1,-1,-1,0.2276,0.2316,0.2378,0.2432,0.26,0.2738,0.2866,0.3202,0.3406,0.0978,0.281,0.3198,0.3246,0.3566,0.4622,0.556,0.6636,0.8106,0.961,1,-0.76,-0.0588,-0.6918,-0.6562,-0.5524,-0.3542,-0.2406,-0.4416,0.2922,0.4466,-0.4126,-0.3508,-0.2272,-0.1314,-0.0046,0.1376,0.1994,0.0602,0.2242,0.3014,0.3786,0.4064,0.459,0.4158,0.4838,0.3354,0.5826,0.4744,0.3478,0.629,0.5178,0.6568,0.7682,0.7774,0.6786,0.799,0.8486,1,0.7712,0.4436,0.1346,0.1996,-0.7572,-0.5866,-0.548,-0.476,-0.5,-0.2836,-0.226,-0.1682,-0.1754,-0.214,-0.0384,-0.0674,-0.0288,-0.0914,-0.0264,0.0962,0.0938,0.1586,0.2956,0.4134,0.4496,0.4736,0.6274,0.5384,0.7164,0.7236,0.851,1,0.8342,0.5144,-0.0718,0.0396,-0.5734,-0.3654,-0.1898,-0.1382,-0.0418,-0.031,0.344,0.3226,0.1596,0.2198,0.2304,0.359,0.3654,0.3248,0.2734,0.4126,0.4962,0.4942,0.4962,0.6806,0.6934,0.7278,0.9808,0.97,0.8306,0.8756,1,0.9592,0.9378,0.6742,-0.9814,-1,1,-1,1,-1,-0.8,1,-1,-0.3036,0.25,0.0892,0.0714,-0.0178,-0.0178,-0.0358,0.0714,0.0892,0,0.2678,0.8214,1,0.8036,0.7678,0.3036,0.2322,0.3392,0.1428,0,-0.1428,-0.2678,-0.0358,0.125,0.1608,0.0892,0.1964,0.1072,-0.2142,0.0358,0.1608,-0.2678,'26'
-0.044,0.9492,1,0.4474,0.5152,0.122,0.2338,0.139,0.2746,-0.0204,0,-0.017,0.3186,0.1966,0.3694,0.305,0.7526,0.878,0.7966,0.878,0.6102,0.539,0.5492,0.6136,0.644,0.8136,0.905,0.6984,0.5728,0.3594,0.4272,0.339,-0.4258,0.4188,0.4876,0.2076,0.3358,0.0772,0.0036,-0.1174,-0.07,-0.1056,-0.1482,-0.1008,-0.0772,0.0558,-0.1008,0.1838,0.0866,0.3404,0.3358,0.8008,0.8814,0.5872,0.7248,0.5706,0.7604,0.694,0.9976,1,0.4946,0.4448,0.2004,0.4306,-0.3284,0.4682,0.523,0.3084,0.3908,-0.0486,0.0288,-0.2384,-0.0636,-0.236,-0.1586,-0.246,-0.0238,-0.0486,0.0238,0.0662,0.0436,0.1586,0.1736,0.4132,0.5182,0.8452,0.99,0.9426,0.92,0.8702,1,0.935,0.8128,0.678,0.563,0.538,-0.1714,0.4104,0.374,0.4728,0.3792,-0.0026,-0.1116,-0.1428,-0.2286,-0.309,-0.3454,-0.2546,-0.2,-0.161,-0.161,-0.1272,-0.1532,-0.0754,-0.0442,0.1948,0.3168,0.6182,0.8884,1,0.9896,0.8494,0.9064,0.8494,0.7324,0.5636,0.4234,0.335,-0.2176,0.2238,0.6808,0.784,0.1362,-0.255,-0.3114,-0.5148,-0.5274,-0.5962,-0.6182,-0.5774,-0.5086,-0.4836,-0.4774,-0.4242,-0.3208,-0.2926,-0.277,-0.0548,0.1674,0.4866,0.8748,1,0.8278,0.6714,0.7684,0.6682,0.4116,0.2738,0.1424,0.0392,-0.1826,0.262,0.996,1,-0.3412,-0.5596,-0.5318,-0.7896,-0.8968,-0.8572,-0.8572,-0.8096,-0.746,-0.6826,-0.6944,-0.5952,-0.3928,-0.504,-0.7778,-0.3334,-0.1666,0.0794,0.7262,0.881,0.623,0.4842,0.5952,0.619,0.2858,0.004,-0.0952,-0.1904,0.1436,0.6666,1,1,-0.3658,-0.588,-0.7038,-0.5926,-0.8148,-0.8472,-0.963,-0.6064,-0.6388,-0.5694,-0.4862,-0.5232,-0.4768,-0.5046,-0.662,-0.6528,-0.449,-0.0648,0.7038,0.8288,0.6158,0.2778,0.2084,0.2176,-0.0788,-0.2408,-0.4584,-0.4722,0.0556,0.9444,1,0.1666,0.1112,0.2222,0.2222,0.2778,0.2778,-0.2222,-0.1666,0,0,0.2222,0.2222,-0.1666,0.6112,0.8334,0.6666,0.6112,0.4444,0.3334,0.3888,0.2778,0.5556,0.3334,0.5,-0.0556,-0.1112,0.1666,0.0556,0.6112,0.077,1,1,0.282,0.3846,0.3846,0.3846,0.3846,0.3846,0.077,0.077,0.3846,0.4872,0.0256,0.3334,0.5898,0.7436,0.7948,0.5384,0.4872,0.641,0.4358,0.4358,0.3334,0.5898,0.4358,0.7436,0.6924,0.5384,0.4872,0.3846,0.3334,-0.2912,0.2152,0.4178,0.6202,0.2406,-0.2152,-0.3164,-0.367,-0.367,-0.5444,-0.443,-0.5696,-0.4684,-0.3418,-0.367,-0.2912,-0.3418,-0.2658,-0.1392,-0.0886,0.2406,0.5444,0.9746,1,1,0.8988,0.8988,0.6962,0.6962,0.4178,0.1646,0.114,-0.969,-0.894,-0.576,-0.4744,-0.5278,-0.6402,-0.757,-0.9014,-0.954,-0.9358,-0.5556,0.3426,0.9272,0.9614,0.7238,0.3266,0.0236,-0.0932,-0.1434,-0.2838,-0.469,-0.6402,-0.8566,-0.9528,-0.9678,-0.9582,-0.971,-1,-1,-1,-1,-1,-1,-0.9642,-0.922,-0.7706,-0.6936,-0.7308,-0.7464,-0.7234,-0.6706,-0.6114,-0.5032,-0.4028,-0.1926,0.4596,0.8556,0.89,0.4064,0.0082,-0.2904,-0.511,-0.6138,-0.7146,-0.823,-0.9238,-0.96,-0.9698,-0.9666,-0.9734,-1,-1,-1,-1,-1,-1,-0.7268,-0.47,-0.79,-0.8468,-0.7468,-0.48,0.6132,1,1,1,0.7132,-0.7756,-0.6112,-0.326,-0.336,-0.332,-0.376,-0.606,-0.836,-0.874,-0.862,-0.872,-0.8468,-0.7,-0.8134,-0.9,-0.8934,-1,-1,-1,-1,-1,-1,0.4572,0.8286,0.6858,-0.0286,-0.7714,-0.7714,-0.6572,-0.5142,-0.6286,-0.5428,0.2572,1,1,-0.2,-0.5428,-0.5428,-0.7428,-0.4858,-0.8,-0.6858,-0.5714,-0.7428,-0.8286,-0.8572,-0.9142,-0.9428,-0.5428,-1,-1,-1,-1,-1,-1,0.2614,0.2532,0.2632,0.2802,0.311,0.3332,0.3752,0.4106,0.395,0.0796,0.1456,0.19,0.213,0.26,0.3576,0.4022,0.5052,0.6418,0.843,0.901,-0.7734,0.153,-0.4404,-0.3798,-0.2238,-0.1156,0.1128,-0.4584,0.1178,0.2334,-0.6446,-0.6232,-0.6446,-0.4518,-0.4476,-0.409,-0.349,-0.0664,-0.2162,-0.0578,-0.0878,-0.1306,0.122,0.0492,0.1006,0.1948,0.2548,0.4048,0.4346,0.4604,0.5802,0.5588,0.6188,0.743,0.8544,0.7774,0.9828,0.9314,1,0.7988,-0.7088,-0.593,-0.7754,-0.5894,-0.365,-0.2632,-0.2982,-0.1474,0.0492,-0.1264,-0.228,-0.035,0,0.0036,0.0982,0.028,-0.035,0.0912,0.1158,0.407,0.4982,0.5264,0.4982,0.5228,0.6386,0.7544,0.7544,0.8,0.807,1,0.7404,0.4176,-0.398,-0.2166,-0.6592,-0.4076,-0.3248,-0.1242,-0.1496,-0.2388,0.3216,0.2356,0.0414,0.07,-0.0286,0.0636,0.1242,0.1146,0.242,0.2516,0.3216,0.2452,0.3376,0.414,0.43,0.6688,0.742,0.9012,0.7898,0.8598,0.898,1,0.8344,0.5956,-0.9606,-1,1,-1,0.8,1,-0.8,0.2334,-1,-0.4418,0.093,0.0698,0.2094,0.2558,0.0698,-0.186,0.0232,0.0698,0.1396,0.3954,1,0.6512,0.6046,-0.186,0,-0.1628,-0.0232,0.1162,0.0698,-0.0698,0.3024,0.1162,0.2094,0.0466,0.1396,0.3024,0.0698,-0.2326,-0.093,-0.0466,-0.3024,'26'
-0.3892,-0.0014,0.2804,0.3724,0.8744,0.8354,0.7434,0.576,0.5146,0.1576,0.1186,0.2022,0.0544,0.0348,0.2468,0.2804,0.325,0.5062,0.7768,1,0.986,0.8744,0.9498,0.947,0.8996,0.9694,0.9358,0.8662,0.6542,0.682,0.668,0.6262,-0.2934,0.1396,0.208,0.339,0.9402,0.943,0.7492,0.6296,0.51,0.2394,0.1396,0.114,0.057,0.0314,0.1824,0.3076,0.2678,0.3362,0.6866,0.8006,1,0.8234,0.886,0.8462,0.8092,0.8348,0.715,0.7066,0.5498,0.5356,0.396,0.3418,-0.2816,0.1264,0.2724,0.4308,0.9544,0.8812,0.7534,0.449,0.4794,0.0532,-0.0594,-0.0624,-0.2024,-0.236,-0.3182,-0.178,-0.0898,0.099,0.3882,0.7596,0.8418,1,0.93,0.8022,0.8964,0.9056,0.8904,0.7716,0.65,0.5586,0.4856,0.4734,-0.2824,0.0954,0.4004,0.6534,0.941,0.785,0.8232,0.4072,0.2166,0.0052,-0.5252,-0.3414,-0.227,-0.5148,-0.3484,-0.1612,-0.2512,0.0538,0.3344,0.7192,0.799,0.9202,0.9862,1,0.7124,0.8058,0.8474,0.8162,0.6638,0.6048,0.4524,0.4558,-0.2664,0.0876,0.5256,0.7884,0.9562,0.7554,0.6386,0.3832,0.1132,-0.0474,-0.7446,-0.489,-0.5694,-0.7846,-0.5656,-0.6716,-0.4636,-0.0036,-0.1058,0.2738,0.5402,0.6752,0.9234,0.9416,0.7446,0.8832,1,0.9708,0.8212,0.6058,0.449,0.4636,-0.338,-0.0036,0.516,0.5766,0.6228,0.2028,0.0392,-0.0462,-0.1316,-0.662,-0.726,-0.6654,-0.6904,-0.701,-0.815,-0.7686,-0.5444,-0.4378,-0.1992,0.0106,0.2812,0.4912,0.7296,0.8042,0.8186,0.7936,0.9786,1,0.6654,0.7366,0.6406,0.267,0.0188,0.4556,0.8114,0.558,0.4448,-0.116,0.062,-0.2184,-0.6442,-0.806,-0.9838,-0.6766,-0.5688,-0.5472,-0.4016,-0.5418,-0.682,-0.4232,-0.2506,-0.2452,0.1428,0.5796,0.7036,0.849,0.946,0.725,0.8976,1,0.8222,0.7682,0.5094,0.1644,-0.5714,-0.2858,0.1904,0.1428,0.6666,0.8096,0.762,0.4762,0.381,-0.0952,0,0.0476,-0.1428,-0.2858,-0.0476,0.238,0.0476,0.4762,0.8096,0.9048,0.8572,0.8096,0.9048,0.7142,0.7142,1,0.8096,0.7142,0.4762,0.381,0.619,0.381,-0.5416,-0.125,0.1666,0.4166,0.7916,0.7084,0.625,0.5,0.4584,0.125,0.0834,0.1666,0,0.0416,0.1666,0.2084,0.2916,0.4584,0.8334,1,0.875,0.8334,0.9584,0.9166,0.9584,0.9584,0.9166,0.9166,0.7916,0.625,0.6666,0.625,-0.4186,-0.0466,0.2094,0.3256,0.7674,0.6512,0.5582,0.3024,0.2558,-0.093,-0.3256,-0.2094,-0.0698,-0.2558,-0.6046,-0.1162,-0.2094,-0.186,0.3954,0.4418,0.6512,0.907,1,0.6744,0.7906,0.8838,0.6512,0.7674,0.6976,0.4884,0.186,0.2558,-1,-1,-1,-1,-1,-1,-1,-1,-0.981,-0.9788,-0.6256,0.2144,0.7248,0.9044,0.8712,0.8796,0.4802,0.29,0.1424,0.0278,-0.3738,-0.6952,-0.7402,-0.668,-0.6196,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9836,-0.984,-0.5812,0.1514,0.4304,0.6412,0.7004,0.5756,0.0224,-0.2256,-0.3484,-0.4562,-0.7102,-0.8632,-0.8948,-0.8706,-0.869,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.84,-0.9934,-0.72,-0.4846,-0.5556,-0.65,-0.604,-0.588,-0.55,-0.564,-0.568,-0.332,-0.616,-0.628,-0.85,-0.8134,-0.9,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7428,1,1,1,-0.6286,-0.5714,-0.6572,-0.5142,-0.7428,-0.6858,-0.8572,-0.1142,0.4286,-0.5142,-0.6572,-0.5142,0.0572,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.9488,0.9388,0.9088,0.9074,0.877,0.8438,0.85,0.8386,0.8602,0.8606,0.914,-0.56,0.153,-0.5032,-0.2558,0.0948,0.3506,0.3446,1,-0.3334,0,0.1666,0.2916,0.25,-0.0834,-0.0834,0,0.1666,0.5416,0.875,0.875,1,1,0.9166,0.8334,0.8334,0.8334,0.7916,0.7084,0.5834,0.375,-0.125,-0.1666,-0.0834,0,0.0834,0.125,0.1666,0.125,-0.2916,-0.75,0.063,0.3694,0.6936,0.6036,0.3154,0.1352,0.027,0.099,0.2612,0.6756,0.946,0.8558,1,0.8378,0.8018,0.6936,0.6396,0.7298,0.6036,0.6576,0.2252,0.3154,-0.1172,-0.2252,-0.081,-0.1352,0.081,0.081,0.3334,0.1712,0.027,-0.081,-0.1224,0.347,0.8368,0.8776,0.5102,0,-0.0612,0.1224,0.3674,0.8164,0.9592,0.9592,1,0.9388,0.5918,0.551,0.4694,0.3062,0.449,0.4082,0.1836,0.1224,-0.0816,-0.2448,-0.1428,-0.2858,-0.2448,-0.2244,-0.0612,-0.1224,-0.1632,-0.2858,-0.1504,-1,-1,1,-1,-1,-1,-0.8334,-1,0.562,-0.0476,-0.219,-0.3904,0.2,-0.0858,-0.0666,0.1238,0.1048,0.0858,0.4286,0.6952,0.8476,0.7334,0.6,0.581,0.4858,0.638,0.581,0.7904,0.8096,1,0.7334,0.4476,0.4096,0.3904,0.3904,0.3904,0.0666,0.181,0.219,0.0286,'1'
-0.3024,0.1076,0.4156,0.5262,0.971,1,1,0.5494,0.3896,-0.0378,-0.1424,-0.1656,-0.2588,-0.2848,0.0116,-0.0116,-0.128,0.3284,0.3866,0.5814,0.9418,0.9418,0.7732,0.7122,0.747,0.9274,0.9884,0.8634,0.747,0.7558,0.7268,0.7966,-0.2148,0.2234,0.3598,0.4736,0.9858,0.8692,0.7012,0.4566,0.4538,-0.1294,-0.2774,-0.1466,-0.4054,-0.4338,-0.2234,-0.2746,-0.1096,0.4026,0.5078,0.781,0.7952,0.872,1,0.9146,0.7098,0.7924,0.855,0.8378,0.65,0.522,0.6472,0.653,-0.2702,0.115,0.3046,0.5288,0.842,0.6436,0.615,0.316,0.1552,-0.0432,-0.319,-0.3936,-0.3592,-0.6006,-0.4942,-0.3736,-0.2242,-0.1092,0.1696,0.5804,0.727,0.885,1,0.8908,0.6522,0.6494,0.6724,0.5344,0.3678,0.2356,0.3276,0.2472,-0.2034,0.1304,0.586,0.8366,0.9792,1,0.8156,0.2348,0.2696,0.0086,-0.447,-0.346,-0.3774,-0.447,-0.833,-0.7426,-0.694,-0.4052,-0.353,0.1234,0.4748,0.7774,0.9756,0.986,0.9096,0.9722,0.927,0.8122,0.7008,0.52,0.5374,0.5618,-0.2296,0.106,0.682,0.8092,0.8374,0.8198,0.3534,0.219,0.318,-0.2226,-0.484,-0.6008,-0.4276,-0.622,-0.7704,-0.8692,-0.689,-0.4522,-0.417,-0.1838,0.1166,0.583,0.9258,0.9082,1,0.9082,0.8234,0.9788,0.8022,0.6114,0.7314,0.4416,-0.2474,0.318,0.735,0.5972,0.4734,0.5406,0.007,0.1978,0.0848,-0.1766,-0.8552,-0.675,-0.8198,-0.8658,-0.636,-0.7668,-0.8056,-0.53,-0.2014,0.0566,-0.0106,0.4558,0.8692,1,0.9082,0.7668,0.841,0.887,0.8798,0.6008,0.3356,0.2474,-0.0836,0.5696,0.8784,0.7316,0.4076,-0.1594,-0.0632,-0.1038,-0.6456,-0.681,-0.8178,-0.4784,-0.4836,-0.676,-0.3418,-0.5342,-0.7418,-0.8178,-0.286,-0.2708,-0.2202,0.114,0.8228,0.9292,0.9392,0.9494,1,0.8632,0.6912,0.6912,0.5696,0.433,-0.3878,0.1428,0.3878,0.4694,0.9184,1,0.7552,0.6326,0.3878,0.1836,0.1428,-0.0204,-0.0204,-0.0612,0.102,0.0612,0.2244,0.2654,0.2244,0.6326,0.6326,0.4286,0.347,0.5102,0.3878,0.1836,0.6734,0.6734,0.3878,0.5102,0.7142,0.7142,-0.5218,-0.2174,0.174,0.3478,0.5218,0.7826,0.7392,0.4348,0.1304,-0.3478,-0.2608,-0.2608,-0.3044,-0.5218,0,0.0434,-0.3914,0.3914,0.3044,0.6956,1,0.913,0.7826,0.6086,0.7392,0.826,0.6086,0.5652,0.5652,0.6086,0.4348,0.4348,-0.2432,0.1082,0.5406,0.6486,0.6756,0.7028,0.4594,0.1352,0.2432,-0.081,-0.1892,-0.3514,-0.2972,-0.6486,-0.6756,-0.7028,-0.7298,-0.3514,-0.2972,-0.2432,0.1892,0.7298,0.8648,0.6216,0.8918,0.8918,0.6216,1,0.919,0.5946,0.7838,0.5406,-1,-1,-1,-1,-1,-1,-1,-1,-0.9722,-0.9722,-0.4754,0.219,0.8578,0.918,0.7348,0.562,0.3964,0.2938,0.1282,-0.0506,-0.3128,-0.6132,-0.7684,-0.745,-0.8418,-0.8682,-0.962,-0.956,-0.9648,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9786,-0.979,-0.3474,0.3446,0.723,0.554,0.3416,0.073,-0.1038,-0.262,-0.3948,-0.5262,-0.6888,-0.832,-0.899,-0.8848,-0.918,-0.935,-0.9604,-0.9648,-0.975,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.94,-0.6568,-0.522,-0.4856,-0.5656,-0.5092,-0.5274,-0.6492,-0.5818,-0.5568,-0.4384,-0.6534,-0.745,-0.66,-0.7668,-0.6068,-0.8,-0.7834,-0.65,-0.9534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,-0.7142,-0.5428,-0.6286,-0.7714,-0.8,-0.5142,-0.5428,-0.8286,-0.4858,-0.4858,-0.8,-0.7714,-0.7714,-0.7428,-0.7142,-0.0858,-0.4286,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.8566,0.71,0.7032,0.7386,0.7742,0.781,0.794,0.7926,0.8348,0.8958,0.9282,-0.48,0.3648,-0.2342,-0.0754,0.4706,0.3676,0.4744,1,-0.3208,-0.0944,0.1698,0.2076,0.132,-0.0944,-0.132,0.283,0.3584,0.4716,0.8868,0.9622,0.9246,0.6604,0.7736,0.8114,0.6604,0.6604,0.9246,1,0.9246,0.585,0.5472,0.3208,-0.132,0.0566,0.132,0.0944,0.0566,0.0566,-0.0944,-0.5094,0.0244,0.3496,0.756,0.756,0.4146,0.057,0.0894,0.3008,0.3334,0.4796,0.8862,0.9512,0.7724,0.6748,0.6586,0.7074,0.5772,0.5284,0.8536,0.9674,1,0.5772,0.5122,0.2846,0.0082,0.0244,0.1708,0.122,0.3496,0.3334,0.1708,-0.0894,-0.0862,0.3276,0.862,0.8794,0.3966,0.138,0.0344,0.069,0.362,0.5,0.569,0.6034,0.5518,0.638,0.569,0.6034,0.6034,0.8276,0.9138,1,0.8276,0.6896,0.2758,-0.069,-0.1724,-0.1724,-0.0518,-0.0518,0.2586,0.0862,0.069,-0.2414,0.3372,-1,-1,1,-1,-1,-1,-0.8334,1,-0.7204,-0.0538,-0.0968,0.0752,-0.2904,-0.1612,-0.0752,0.0968,-0.0752,0.1182,0.613,0.0968,0.0968,0.5054,0.3764,0.2688,0.6344,1,0.4624,0.1828,0.5698,0.699,0.957,0.5268,0.4194,0.3764,0.1612,0.1828,0.3118,0.2904,0.3764,0.1612,'1'
0.0324,1,0.949,0.8102,0.5648,0.5092,0.1482,-0.1806,-0.4676,-0.7084,-0.875,-0.7084,-0.4352,-0.4306,-0.0788,-0.0092,0.1712,0.2038,0.5186,0.4722,0.9722,0.8704,0.5278,0.5092,0.875,0.6482,0.0926,0.2176,0.3704,0.037,0.1944,0.5788,-0.0794,0.6226,0.5496,0.735,0.5464,0.3774,0.0894,0.1854,-0.2814,-0.5298,-0.4106,-0.3742,-0.6258,-0.6888,-0.4272,-0.4536,-0.3774,0,0.3576,0.3708,0.6226,0.788,1,0.6556,0.106,0.4304,0.51,0.5928,0.6092,0.6854,0.6192,0.586,-0.0412,0.6178,0.5354,0.8484,0.6276,0.3938,0.1696,0.2652,-0.3114,-0.4234,-0.3608,-0.407,-0.4498,-0.5156,-0.5882,-0.519,-0.341,0.1828,0.3014,0.3806,0.4234,0.8418,0.8518,1,0.9242,0.6014,0.5584,0.776,0.631,0.7958,0.565,0.6508,-0.0906,0.4656,0.7032,0.8782,0.4032,0.0376,0.0906,-0.0594,-0.5062,-0.6438,-0.6188,-0.6406,-0.5968,-0.6218,-0.6532,-0.4656,-0.3,-0.175,-0.2156,-0.0032,0.2188,0.2438,0.7156,0.9938,1,0.6656,0.7282,0.975,0.9438,0.7156,0.7406,0.6968,-0.3636,0.0716,0.7518,0.743,-0.2088,-0.0044,-0.0102,-0.2876,-0.5474,-0.6176,-0.7314,-0.7052,-0.7198,-0.784,-0.6614,-0.6408,-0.5212,-0.343,-0.4394,-0.124,0.054,0.273,0.6992,0.9708,1,0.8044,0.6322,0.7256,0.7022,0.53,0.5942,0.562,-0.3836,0.417,0.9832,0.8258,-0.1624,0.0854,-0.0418,-0.1156,-0.5644,-0.7152,-0.7152,-0.6214,-0.7186,-0.7654,-0.8392,-0.6952,-0.7488,-0.4472,-0.3468,-0.3232,-0.1122,0.0788,0.4774,0.7152,1,0.866,0.484,0.5644,0.655,0.6282,0.531,0.2764,0,0.4352,1,0.699,-0.1898,0.0278,-0.4538,-0.7268,-0.699,-0.6388,-0.6342,-0.5232,-0.4954,-0.5324,-0.6296,-0.787,-0.8842,-0.9862,-0.625,-0.4676,-0.3842,-0.1944,-0.051,0.4028,0.713,0.5602,0.4954,0.7732,0.8288,0.5648,0.4074,0.2962,0.6842,1,1,0.5264,0.1052,0.2632,0.2106,-0.3158,-0.2106,-0.1578,-0.2106,0.3158,0.3158,-0.2632,0.3158,0.3684,-0.0526,0.2106,0.3684,0.3158,0.3158,0.3158,0.421,0.2632,0.3684,0.3684,-0.1052,0.1052,0.2632,0.2106,0.3158,0.421,-0.0624,0.875,0.6876,0.8124,0.5624,0.5,0.3124,-0.1876,-0.5,-0.375,-0.5,-0.75,-0.375,-0.375,-0.3124,0.125,0.5624,0.5624,1,1,0.75,0.5624,0.9376,1,0.6876,-0.25,-0.0624,-0.0624,-0.125,0.25,0.4376,0.5,-0.1708,0.2682,0.683,0.756,0.1952,-0.1708,0,-0.2196,-0.561,-0.561,-0.5854,-0.4878,-0.5854,-0.7804,-0.4146,-0.4634,-0.4146,-0.3902,-0.2926,0.0488,0,0.2196,0.9024,1,0.9512,0.8536,0.7318,0.9024,0.9756,0.7074,0.7074,0.683,-1,-1,-1,-1,-1,-1,-1,-0.8822,-0.8784,-0.8858,-0.8692,0.21,0.2596,0.2284,0.2688,0.4328,0.5452,0.7532,0.72,0.6298,0.1676,-0.4826,-0.6888,-0.6556,0.0258,-0.6648,-0.9172,-0.9282,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8966,-0.8966,-0.9056,-0.8842,-0.1074,0.0074,0.1468,0.1872,0.2872,0.3278,0.7358,0.5526,0.2772,-0.0354,-0.5976,-0.7706,-0.7672,-0.3648,-0.7696,-0.9224,-0.9292,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.91,-0.9334,-0.8634,-0.8234,-0.846,-0.82,-0.638,-0.668,-0.526,-0.6056,-0.5874,-0.6474,-0.8164,-0.7256,-0.6674,-0.6868,-0.91,-0.9368,-0.9134,-0.7734,-0.9134,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7428,-0.9428,-0.8572,1,1,-0.0858,-0.5142,-0.8286,-0.8286,-0.6286,-0.5428,-0.7428,-0.7142,0.2286,0.4286,-0.7428,-0.7428,-0.6572,-0.7142,-0.7428,-0.8572,-1,-1,-1,-1,-1,-0.011,0.0376,0.0958,0.1524,0.2068,0.256,0.304,0.3526,0.3774,0.2558,0.1584,0.178,0.2916,0.3576,0.4262,0.4508,0.5258,0.5862,0.7196,0.858,-0.6666,0.247,-0.8842,-0.6132,-0.0376,0.0118,0.0106,-0.175,0.9162,1,0.5906,0.5348,0.4046,0.4698,0.6652,0.4976,0.6466,0.5162,0.7954,0.786,0.628,0.5628,0.3024,0.5534,0.3582,0.3954,0.3674,0.2652,0.5162,0.5162,0.228,0.321,0.2372,0.5162,0.4232,0.2558,0.1256,0.3116,0.1906,-0.2838,0.901,1,0.3168,0.0892,0.307,0.7624,0.4852,0.5544,0.5446,0.406,0.4852,0.1584,0.4752,0.5446,0.4852,0.2872,0.2674,0.495,0.406,0.3466,0.3466,0.3862,0.3366,0.4456,0.2376,0.2674,-0.0496,0.4752,0.0198,-0.0396,-0.3762,-0.6238,0.8648,1,0.1788,0.314,0.285,0.5362,0.7392,0.942,0.9228,0.488,0.7778,0.6328,0.7778,0.5556,0.6038,0.5942,0.343,0.6328,0.227,0.4782,0.5072,0.4686,0.6812,0.7682,0.7488,0.3236,0.517,0.4782,0.372,0.198,0.2946,0.0434,-0.9686,1,-1,-1,-1,1,-1,-1,-1,0.3818,0.291,-0.1454,-0.1818,0.0182,-0.0182,-0.1272,0.0182,0.0364,-0.4,-0.091,0.2,0.3818,0.8,0.7454,0.4,0.4,0.491,0.7818,0.1818,0.5272,0.6546,1,0.6728,0.5454,0.1454,0.0182,0.1818,0.091,0.3454,0.0364,-0.091,'2'
-0.614,-0.026,0.1026,0.2344,0.0934,-0.4732,-0.3232,-0.3324,-0.4548,-0.4058,-0.4824,-0.5376,-0.271,-0.32,-0.216,-0.2496,-0.216,0.1088,0.216,0.5866,0.6018,0.8806,0.9264,1,0.951,0.7612,0.758,0.804,0.7856,0.7642,0.7672,0.8408,-0.6604,-0.2042,0.0344,0.2254,0.0106,-0.4986,-0.3766,-0.358,-0.5252,-0.5862,-0.6446,-0.6048,-0.4828,-0.4854,-0.366,-0.374,-0.3502,-0.183,-0.2176,0.1274,0.1062,0.3104,0.8648,1,0.7082,0.4218,0.5888,0.557,0.634,0.6896,0.8276,0.6738,-0.914,-0.4958,0.3782,0.5158,0.0916,-0.3554,-0.2292,-0.3468,-0.5416,-0.424,-0.3868,-0.51,-0.5358,-0.3638,-0.4614,-0.4012,-0.5128,-0.3038,-0.0488,-0.106,0.0144,0.3868,0.6734,0.894,0.9112,0.8166,0.6676,0.7078,0.8052,0.9198,1,0.8624,-0.9666,-0.403,0.594,0.6606,-0.0576,-0.3484,-0.2364,-0.5182,-0.503,-0.3304,-0.5272,-0.497,-0.3122,-0.397,-0.3122,-0.5122,-0.5636,-0.3546,-0.3394,-0.1788,0.009,0.1848,0.4,0.7696,1,0.8848,0.6334,0.7546,0.697,0.7454,0.9182,0.8242,-0.8518,-0.1594,0.6522,0.6458,-0.314,-0.3302,-0.3236,-0.591,-0.372,-0.3526,-0.7584,-0.6136,-0.4944,-0.5104,-0.5748,-0.6522,-0.591,-0.665,-0.4396,-0.3624,-0.2012,-0.0466,0.2078,0.6618,0.8422,0.752,0.5394,0.678,0.8648,0.9484,1,0.7778,-0.919,-0.1216,0.5268,0.4554,-0.2998,-0.303,-0.462,-0.692,-0.4166,-0.5656,-0.7406,-0.65,-0.6012,-0.5818,-0.5462,-0.6176,-0.5494,-0.5624,-0.5462,-0.2804,-0.2124,-0.0244,0.2804,0.4684,0.773,1,0.7764,0.7472,0.8574,0.7796,0.8542,0.7082,-0.9954,-0.5834,0,-0.213,-0.6666,-0.6064,-0.8102,-0.8936,-0.6482,-0.7916,-0.5602,-0.5278,-0.5092,-0.4074,-0.4862,-0.8102,-0.7038,-0.75,-0.662,-0.5186,-0.426,-0.2222,0.2176,0.4676,0.8888,0.8334,0.5972,0.676,0.8612,1,0.7592,0.4676,-0.3158,0.3158,0.4736,0.0526,-0.1052,-0.2632,-0.2632,-0.3158,-0.3158,-0.3684,-0.2632,-0.1578,0.1578,0.2106,0.2632,0.3684,0.1578,0.3158,0.6842,1,0.8948,0.6842,0.579,0.8948,0.8948,0.421,0.4736,0.421,0.6842,0.6316,0.8948,0.8948,-0.4576,-0.017,0.0508,0.2204,0.1186,-0.1864,-0.2542,-0.1864,-0.2882,-0.322,-0.356,-0.2204,-0.1186,-0.0848,0.017,-0.017,-0.1186,0.1526,0.322,0.5932,0.8984,0.9322,0.8644,0.695,1,0.9662,0.5932,0.356,0.5254,0.2882,0.4916,0.8306,-0.8762,-0.3814,0.5258,0.6082,0.1134,-0.3608,-0.1752,-0.4226,-0.402,-0.1958,-0.3608,-0.5052,-0.3402,-0.5052,-0.2164,-0.3402,-0.7114,-0.0928,-0.0516,-0.2578,0.1546,0.2784,0.567,0.8762,1,0.7114,0.6494,0.6494,0.402,0.6082,0.732,0.5052,-1,-1,-1,-1,-1,-1,-1,-1,-0.9046,-0.8994,-0.6984,0.3418,0.5478,0.5778,0.7638,0.8492,0.8542,0.7738,0.6784,0.3518,-0.2864,-0.7488,-0.8744,-0.8542,-0.9146,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9622,-0.9612,-0.8604,0.3454,0.3324,0.2162,0.0826,-0.1628,-0.2524,-0.1714,-0.2988,-0.4342,-0.7278,-0.8578,-0.9096,-0.9294,-0.944,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.94,-0.53,-0.034,0.33,0.21,-0.048,-0.37,-0.248,-0.5144,-0.487,-0.213,-0.351,-0.203,-0.489,-0.6824,-0.9424,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,0.2858,1,1,-0.4858,-0.8,-0.9142,-0.9142,-0.7714,-0.8858,-0.8572,-0.5714,-0.3714,-0.2858,0.0286,-0.6286,-0.5428,-1,-1,-1,-1,-1,-1,-1,-1,0.3484,0.367,0.3628,0.3624,0.3712,0.3614,0.3608,0.3972,0.505,0.3936,0.9254,0.9626,0.991,1,1,1,1,1,1,1,-0.64,0.1764,-0.8492,-0.5444,0.174,0.6202,0.8044,1,-0.5624,-0.1876,0.125,0.125,0.125,0.0624,0.25,0.0624,-0.0624,0.25,0.125,0.25,0.5624,0.4376,0.25,0.375,0.375,0.5624,0.5,0.5,0.6876,0.5,0.0624,0.125,0.8124,1,0.625,0.875,0.5,0.125,0.125,-0.4376,0.0732,0.3658,0.4634,0.0488,-0.122,0.1952,0.561,0.439,0.6586,0.8048,0.5854,0.5854,0.439,0.5366,0.6098,0.561,0.5366,0.7074,0.6342,0.561,0.7804,0.7804,0.4146,0.6342,0.8048,0.878,0.9268,1,0.5854,0.4878,0.4634,-0.0244,0.028,0.0842,-0.0094,-0.0468,-0.0468,0.0094,0.215,0.4018,0.5514,1,0.9626,0.7384,0.7384,0.3644,0.2336,0.4954,0.701,0.5514,0.3832,0.2898,0.2898,0.3084,0.3832,0.4766,0.1214,0.2336,0.1402,0.0842,0.2336,0.2898,0.028,-0.0468,0.156,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.5464,-0.134,-0.4226,-0.3196,0.0722,0.1134,0.0722,-0.1752,-0.402,-0.2164,0.0104,0.6908,0.7732,0.835,0.8556,0.7732,0.5876,0.7938,1,1,0.4432,0.7114,0.7938,0.6288,0.3196,0.2578,0.3814,0.1958,0.299,0.3814,0.134,-0.031,'2'
-0.1726,0.8672,0.8982,0.6018,0.5486,0.3894,0.3894,-0.3142,-0.3318,-0.6858,-0.6858,-0.6416,-0.4292,-0.5222,-0.4734,-0.3496,-0.2832,0.3274,0.4336,0.8408,1,0.7478,0.6992,0.3672,0.354,0.2434,0.6106,0.7654,0.5884,0.2964,0.3098,0.1992,-0.0688,0.7252,0.6794,0.7634,0.6412,0.5306,0.3626,0.0152,-0.1756,-0.4886,-0.6184,-0.5764,-0.5802,-0.458,-0.3016,-0.0954,-0.0496,0.103,0.1488,0.29,0.5688,0.7252,1,0.981,0.4542,0.4236,0.4924,0.5648,0.4236,0.229,0.2442,0.1984,0.0144,0.6738,0.6918,1,0.7526,0.3584,0.0932,0.1362,-0.2544,-0.2832,-0.577,-0.509,-0.4838,-0.5734,-0.4552,-0.2474,-0.2078,0.1076,0.147,0.2832,0.2724,0.5592,0.7384,0.7384,0.466,0.509,0.5448,0.4552,0.5232,0.5162,0.5304,0.319,-0.0356,0.5494,0.8182,0.9762,0.3242,0.0118,-0.1068,-0.2766,-0.1582,-0.6442,-0.7194,-0.4744,-0.506,-0.664,-0.4308,-0.415,-0.4308,-0.3202,-0.091,0.0158,0.1542,0.4744,0.834,0.9368,1,0.996,0.7154,0.8578,0.6916,0.4426,0.1462,0.0632,-0.1404,0.3184,1,0.9956,-0.0646,0.0824,0.069,-0.1714,-0.3986,-0.5858,-0.8262,-0.7906,-0.715,-0.617,-0.9154,-0.8664,-0.8574,-0.6614,-0.3096,-0.0958,-0.029,0.1626,0.519,0.853,0.7818,0.7594,0.666,0.6392,0.519,0.51,0.4254,0.1358,-0.1042,0.3436,1,0.827,-0.2018,0.0644,-0.1618,-0.3614,-0.5166,-0.8936,-0.8936,-0.7782,-0.6852,-0.6542,-0.7472,-0.836,-0.8314,-0.8714,-0.6098,-0.6364,-0.7516,-0.4368,-0.0022,0.4058,0.7118,0.5832,0.8536,0.96,0.7162,0.4368,0.4546,0.2372,0.1988,0.4718,0.4956,0.187,-0.4302,-0.4836,-0.448,-0.5192,-0.7092,-0.7804,-0.7032,-0.4896,-0.3472,-0.4422,-0.5668,-0.7744,-0.9348,-0.6084,-0.6498,-0.6736,-0.365,-0.2048,0.2878,0.638,0.917,0.816,0.8576,1,0.9406,0.2998,0.175,0.2284,-0.5,0.7858,0.9286,0.6428,-0.2858,-0.3572,-0.2142,-0.5,-0.5,-0.5714,-0.7142,-0.5,0.1428,0.0714,-0.2858,-0.5,-0.0714,0.2142,0.0714,1,1,0.4286,0.1428,-0.2858,0,0.1428,0.0714,0.2142,0.4286,-0.3572,-0.1428,0.0714,-0.1892,0.7298,0.7298,0.4594,0.4594,0.3514,0.3514,-0.4054,-0.5676,-0.6216,-0.6756,-0.3514,-0.2432,-0.4054,-0.2432,-0.3514,-0.1892,0.081,0.3514,0.5136,0.946,0.8378,0.027,0.1352,0.5676,0.5676,1,0.946,0.1892,0.3514,0.081,0.1892,0,0.3334,1,0.9394,0,0.2424,0.1516,0,-0.1212,-0.2424,-0.606,-0.1818,-0.2122,-0.4242,-0.7576,-0.6666,-0.6364,-0.2728,-0.1212,-0.0304,-0.0304,-0.0606,0.1516,0.7272,0.697,0.8484,0.8484,0.7576,0.8788,0.8484,0.697,0.3636,-0.906,-0.9244,-0.9474,-0.9336,-0.9312,-0.9358,-0.9382,-0.9564,-0.9244,-0.8786,-0.7892,0.6816,0.7412,0.6404,0.7664,0.9656,0.7938,0.8328,0.5648,0.2966,-0.2348,-0.606,-0.709,-0.3608,-0.7412,-1,-1,-1,-1,-1,-1,-1,-1,-0.773,-0.6842,-0.5226,-0.4992,-0.5692,-0.5956,-0.6018,-0.5304,-0.322,-0.1696,-0.3204,0.4292,0.7792,0.8476,0.8304,0.9176,0.8196,0.79,0.3904,0.07,-0.364,-0.6718,-0.7574,-0.5366,-0.79,-1,-1,-1,-1,-1,-1,-1,-1,0.0732,0.6632,0.8366,1,1,0.8732,1,1,1,1,0.7032,-0.6668,-0.7156,-0.5956,-0.7,-0.76,-0.6378,-0.7024,-0.724,-0.766,-0.812,-0.838,-0.8634,-0.9434,-0.8334,-1,-1,-1,-1,-1,-1,-1,-1,1,-0.3428,-0.8572,-0.9142,-0.9428,-1,-1,-0.7714,-0.5714,-0.4858,1,1,-0.3714,-0.7428,-0.8858,-0.6858,-0.6572,-0.8858,-0.5714,-0.5428,-0.3142,-0.6572,-0.8286,-0.8858,-0.8,-1,-1,-1,-1,-1,-1,-1,-1,0.2052,0.2348,0.2482,0.2714,0.3004,0.3292,0.356,0.3858,0.3402,0.116,0.7158,0.6726,0.6314,0.5852,0.6046,0.6334,0.6646,0.6926,0.7766,0.7986,-0.64,0.0942,-0.381,-0.1198,0.493,0.5366,0.7512,-0.8,-0.675,-0.576,-0.331,-0.126,-0.0506,-0.0082,-0.1778,0.046,0.2932,0.3098,0.2532,0.0224,0.2438,0.1614,0.1496,0.1072,0.0482,0.3334,0.3144,0.2768,0.3828,0.5312,0.6348,0.9082,0.8752,1,0.8564,0.9222,0.92,0.8234,0.8044,0.199,-0.8168,-0.7426,-0.6292,-0.5114,-0.385,-0.326,-0.1952,-0.3522,-0.0142,-0.0992,-0.1058,-0.0468,-0.012,0.049,0.0666,0.1166,-0.0796,0.0622,0.1124,0.2126,0.3544,0.5354,0.638,0.758,0.8974,0.952,0.8516,0.9454,0.867,0.843,1,0.4896,-0.8152,-0.7728,-0.7092,-0.4862,-0.4628,-0.4522,-0.4204,-0.465,-0.1252,0.104,0.2016,-0.0468,-0.07,-0.0424,-0.0488,-0.0042,0.0828,0.0722,0.087,0.1698,0.1082,0.5562,0.5498,0.6434,0.6922,0.8704,0.8748,1,0.775,0.7834,0.7686,0.4246,-0.7978,-1,1,-1,-1,-1,-1,1,-1,0.5764,0.5058,0.2236,0.1294,0.5058,0.6,0.6236,0.6,0.6236,0.6942,0.7882,0.9294,0.5764,0.6706,0.5294,0.6,0.5764,0.7882,0.8118,0.4588,0.5764,0.7882,1,0.5058,0.5294,0.4118,0.2942,0.4588,0.3882,0.1764,0.1058,-0.3412,'3'
-0.6282,0.1498,0.2152,0.4526,0.1808,-0.129,-0.198,-0.0534,-0.0878,-0.019,-0.4252,-0.4252,-0.1944,-0.229,-0.0636,-0.198,0.019,0.5146,0.7934,0.7178,0.8142,0.7314,0.7796,0.7624,0.8176,0.969,1,0.79,0.618,0.3494,0.3012,0.3254,-0.5568,0.0284,0.2272,0.483,0.25,-0.1732,-0.1932,-0.1506,-0.1052,-0.1478,-0.5312,-0.4744,-0.233,-0.3636,-0.3352,-0.463,-0.5056,0.1022,0.1136,0.0198,0.2784,0.6534,0.8694,0.9262,0.7102,0.7386,0.963,1,0.821,0.659,0.7272,0.6762,-0.5622,-0.1352,0.3216,0.4352,-0.0918,-0.3486,-0.1352,-0.1892,-0.1352,-0.5108,-0.5378,-0.3972,-0.4162,-0.4892,-0.554,-0.5,-0.3864,-0.4406,-0.254,0.0162,0.0756,0.2918,0.6838,0.9892,1,0.754,0.7838,0.8324,0.7946,0.746,0.5622,0.527,-0.6614,-0.0628,0.5766,0.527,-0.53,-0.016,-0.0686,0.0044,-0.3372,-0.673,-0.5036,-0.4364,-0.565,-0.6584,-0.5182,-0.5446,-0.6992,-0.2262,-0.1182,-0.1766,-0.1592,0.2438,0.6234,0.7722,0.9738,1,0.9532,0.7606,0.9678,0.9154,0.8482,0.6058,-0.7828,0.032,0.5048,0.3194,-0.492,-0.23,-0.0448,-0.1598,-0.5814,-0.5718,-0.5718,-0.5654,-0.6294,-0.4856,-0.508,-0.7924,-0.6358,-0.2716,-0.345,-0.2812,-0.1086,0.0862,0.2844,0.6166,1,0.9138,0.7636,0.8242,0.9744,0.9584,0.6134,0.5272,-0.8128,-0.1096,0.3746,0.1626,-0.6184,-0.5124,-0.5724,-0.6254,-0.6326,-0.7526,-0.7632,-0.7032,-0.5936,-0.5584,-0.6114,-0.7704,-0.6962,-0.6184,-0.4876,-0.4382,-0.4416,-0.2084,0.1732,0.424,0.689,0.7456,0.8304,0.9328,1,0.9364,0.7916,0.5936,-0.4334,0.0166,-0.45,-0.7112,-0.7388,-0.7278,-0.8612,-0.6388,-0.6222,-0.6056,-0.6556,-0.3666,-0.2388,-0.3944,-0.1722,-0.2944,-0.6612,-0.75,-0.4944,-0.5722,-0.35,-0.1612,0.2778,0.4334,0.3888,0.0888,0.4334,0.7834,1,0.9944,0.45,0.25,-0.15,0.55,0.7,0.2,-0.1,-0.15,0.2,0.2,0.05,0,-0.2,-0.1,0.15,0.35,0.5,0.45,0.5,1,1,0.9,0.8,0.35,0.4,0.7,0.7,0.65,0.25,0.15,0.15,0.3,-0.1,0.7,-0.8422,-0.0526,0,0.2106,-0.2106,-0.1052,-0.4736,-0.1578,-0.3684,-0.2106,-0.3684,-0.579,-0.3684,-0.2106,-0.3158,-0.579,0.1578,0.579,0.8422,0.7368,0.421,0.5264,0.5264,0.5264,0.6842,0.9474,1,0.7894,0.0526,-0.1578,0.3158,0.1578,-0.587,-0.1304,0.0652,0.174,-0.2174,-0.5652,-0.2608,-0.413,-0.2608,-0.5218,-0.6304,-0.4566,-0.4348,-0.4348,-0.5652,-0.7174,-0.3696,-0.3914,-0.413,-0.1086,0.0652,0.1522,0.3914,0.9782,1,0.5218,0.5,0.7608,0.8478,0.8696,0.2608,0.087,-0.9022,-0.92,-0.9156,-0.9378,-0.8756,-0.8978,-0.9022,-0.92,-0.9112,-0.9112,-0.8622,0.1556,0.48,0.4934,0.4578,0.8266,0.8134,0.5244,-0.1378,-0.3244,-0.5512,-0.7644,-0.8844,-0.9244,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.701,-0.6286,-0.5772,-0.6686,-0.6342,-0.779,-0.741,-0.6552,-0.6514,0.4686,-0.0152,0.2,0.6342,0.8762,0.6934,0.8152,0.7696,0.6896,-0.099,-0.2172,-0.6686,-0.8342,-0.8952,-0.9104,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.2966,0.82,1,0.8432,0.4366,0.2666,0.3466,0.4832,0.5232,1,1,-0.0292,-0.42,-0.2874,-0.2074,-0.2238,-0.3382,-0.3928,-0.2746,-0.1764,-0.4074,-0.6146,-0.8068,-0.9134,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,-0.9714,-0.8572,-0.8286,-0.8286,-0.8572,-0.8858,-0.8286,0.0572,0.3714,1,1,-0.5714,-0.7714,-0.7142,-0.7428,-0.8286,-0.7428,-0.7142,-0.0572,0.2,-0.6858,-0.7714,-0.6,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.497,0.5056,0.5144,0.5122,0.5164,0.5138,0.5142,0.5024,0.5334,0.391,0.6578,0.6678,0.6852,0.7064,0.7464,0.7538,0.8202,0.9214,0.981,0.9062,-0.52,0.3058,-0.1428,-0.219,0.0324,0.4362,0.4362,-0.5666,-0.5136,-0.4412,-0.387,-0.3366,-0.3748,-0.2222,-0.0914,-0.0894,-0.0954,-0.0232,0.0312,-0.0532,-0.015,-0.0232,0.0894,0.198,0.1658,0.1558,0.1236,0.3688,0.5296,0.5036,0.5658,0.6442,0.8332,1,0.9498,0.9076,0.7608,0.7588,0.6242,0.2604,-0.666,-0.666,-0.6844,-0.4032,-0.3796,-0.3448,-0.1368,-0.2646,-0.0656,-0.0346,-0.0602,-0.011,0.0346,0.02,0.062,0.0584,-0.0712,-0.0364,-0.0218,0.1862,0.2682,0.3996,0.3266,0.615,0.7208,0.7718,0.8176,0.7902,0.9306,1,0.9508,0.5274,-0.7234,-0.7476,-0.4832,-0.4122,-0.3344,-0.3242,-0.184,-0.165,-0.0648,-0.0268,-0.0372,-0.0234,-0.051,0.127,0.096,0.1098,0.0976,0.1772,0.2446,0.3708,0.395,0.509,0.5108,0.6646,0.86,0.8704,0.898,0.891,0.8444,0.9724,1,0.8358,-0.8972,-1,1,-1,-1,-1,-1,1,-1,0.1028,0.1402,0.2898,0.2524,0.1588,0.3644,0.458,0.4206,0.3084,0.2898,0.5514,0.6822,0.5328,0.6074,0.8692,1,0.3458,0.4766,0.6074,0.7384,0.4766,0.757,0.4206,0.6074,-0.0842,0.0094,0.4392,0.4206,0.2336,0.6448,0.3644,0.1214,'3'
0.018,0.8552,0.7738,0.7648,0.5566,0.5384,0.2352,-0.0724,-0.5294,-0.5566,-0.8868,-0.801,-0.5656,-0.543,-0.6018,-0.7058,-0.4978,-0.5746,-0.561,-0.3484,-0.0634,0.4796,0.7512,0.5114,0.3304,0.5476,0.6562,0.7782,0.8236,1,0.9954,0.638,-0.0806,0.6612,0.5686,0.6734,0.4516,0.3388,-0.0162,-0.0162,-0.5604,-0.5766,-0.8588,-0.8388,-0.5646,-0.625,-0.7298,-0.8306,-0.9072,-0.5646,-0.4354,-0.262,-0.1048,0.0242,0.1612,0.5888,0.496,0.633,0.5928,1,0.887,0.7178,0.6814,0.875,0.0932,0.7888,0.7184,1,0.6894,0.4492,0.0766,0.0974,-0.4244,-0.5114,-0.8924,-0.6646,-0.441,-0.6024,-0.5362,-0.4286,-0.4492,-0.3582,-0.2506,-0.0104,-0.1718,-0.2298,0.528,0.6936,0.5942,0.615,0.942,0.8716,0.7268,0.7516,0.7474,0.6854,0.0632,0.654,0.8228,1,0.46,0.1434,0.0168,-0.1688,-0.6034,-0.9114,-0.9072,-0.6752,-0.7004,-0.5822,-0.4852,-0.3502,-0.578,-0.5612,-0.2278,-0.3292,-0.3418,0.2068,0.3586,0.5612,0.8734,0.9156,0.7384,0.7764,0.7426,0.6202,0.6372,0.5696,-0.1458,0.3362,0.9196,1,0.074,-0.184,-0.057,-0.5772,-0.649,-0.5984,-0.7252,-0.7802,-0.4926,-0.628,-0.7378,-0.759,-0.8224,-0.5984,-0.3616,-0.2474,-0.1162,0.0148,0.4588,0.7464,0.8986,0.8012,0.6406,0.6194,0.6026,0.6322,0.6914,0.5392,-0.1318,0.2268,1,0.9396,-0.352,0.149,0.0324,-0.594,-0.3348,-0.473,-0.784,-0.5896,-0.6502,-0.7062,-0.758,-0.9352,-0.7538,-0.6242,-0.5766,-0.5206,-0.6242,-0.2354,0.0626,0.2916,0.6372,0.758,0.5896,0.7278,0.8402,0.7062,0.5508,0.607,0.212,0.6468,1,0.8696,-0.3206,-0.3532,-0.5924,-0.5924,-0.8804,-0.7934,-0.6902,-0.6576,-0.7066,-0.6304,-0.6848,-0.9566,-0.7934,-0.7228,-0.875,-0.5924,-0.299,-0.3478,0.1032,0.451,0.9076,0.8424,0.576,0.7066,0.6304,0.413,0.2826,0.087,0.5484,1,0.9354,0.9354,0.6774,0.742,0.3548,0.0322,-0.4194,-0.3548,-0.613,-0.742,-0.4194,-0.4838,-0.4838,-0.4838,-0.2258,-0.2258,-0.1612,0.0322,0.3548,0.742,1,0.8064,0.0968,0.5484,0.6774,0.742,0.742,0.8064,0.742,0.742,0.0256,0.7948,0.7436,0.7436,0.5384,0.5384,0.282,0.077,-0.3846,-0.1282,-0.282,-0.6924,-0.3334,-0.2308,-0.3334,-0.641,-0.4358,-0.5384,-0.1794,-0.3334,0.077,0.5384,0.8462,0.641,0.3334,0.4358,0.5898,0.9488,1,0.7948,0.8462,0.4872,0.0114,0.3104,0.885,0.862,-0.0804,0.2414,0.1954,-0.2414,-0.1954,-0.1954,-0.7242,-0.3564,-0.1264,-0.1264,-0.2874,-0.2644,-0.4252,-0.3794,-0.3104,-0.1264,-0.0114,0.0574,0.2644,0.5632,0.6782,0.954,0.816,0.7012,1,0.908,0.6322,0.862,-1,-1,-1,-1,-1,-1,-0.8598,-0.878,-0.8342,0.5028,1,0.663,0.4572,0.399,0.5118,0.6776,0.5592,0.5154,0.6976,0.5046,0.215,-0.3114,-0.4808,-0.5792,0.0072,-0.6922,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.866,-0.8852,-0.6104,0.4244,1,0.676,0.5844,0.5434,0.6624,0.7786,0.624,0.5544,0.7074,0.5078,0.1826,-0.3684,-0.5406,-0.5886,-0.2126,-0.747,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9182,-0.9434,-0.7534,-0.6534,-0.93,-0.9276,-0.7156,-0.66,-0.5712,-0.5734,-0.5756,-0.6068,-0.6868,-0.7424,-0.7778,-0.7556,-0.78,-0.71,-0.9234,-0.9568,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4572,0.5142,1,1,-0.4,-0.6,-0.8286,-0.8,-0.8572,-0.9714,-0.9142,-1,-0.8858,-0.7428,-0.0858,-0.2858,-0.8572,-0.4858,-0.0858,-0.4572,-1,-1,-1,-1,-1,-1,-1,0.1392,0.1604,0.1844,0.2194,0.2418,0.2544,0.2792,0.3038,0.2764,0.0712,0.9548,0.9816,1,1,1,0.9746,0.9674,1,1,1,-0.6666,0.0352,1,0.6856,0.8264,0.5612,0.6432,1,0.0618,0.1958,-0.0824,-0.1238,-0.3608,-0.2372,-0.2062,-0.3298,-0.3298,-0.0722,0.3506,0.3712,0.134,0.7526,0.7938,0.4948,0.4226,0.3092,0.6908,0.4226,0.3712,0.6908,1,0.6392,0.6702,0.3092,0.536,0.5258,0.1958,-0.0104,0.0104,-0.2164,0.7778,0.84,0.6266,0.4578,0.0934,-0.3688,-0.0578,-0.1378,-0.2356,0.1022,0.5112,0.6978,0.5466,0.8844,0.9644,0.44,0.4488,0.9022,1,0.1112,0.1378,0.3688,0.2266,0.1288,-0.0934,0.0134,0.2088,0.4756,0.5466,0.1378,-0.0312,-0.1734,0.7768,0.9376,0.875,0.6608,0.2142,-0.0536,0.0714,-0.1518,-0.1786,-0.0358,0.5358,0.9642,0.4108,0.7946,0.9732,0.634,0.7142,1,0.9554,0.2768,0.4464,0.634,0.6072,0.2946,0.1964,0.0982,0.4374,0.5536,0.8928,0.5358,0.2054,-0.2054,1,-1,-1,1,-0.8,-1,-1,-0.5,-1,0.3582,0.3432,0,-0.1642,0.0298,-0.209,0,-0.1044,-0.015,-0.015,0.1194,0.5224,0.582,0.2836,0.5074,0.5074,0.3432,0.2238,0.0298,0.0896,0.806,0.8806,1,0.7762,0.4776,0.2836,0.388,0.2686,0.5374,0.5672,0.2388,-0.3432,'4'
-0.5748,0.1522,0.158,-0.0114,-0.0718,0.023,-0.0748,-0.158,-0.2816,-0.6006,-0.6696,-0.388,-0.4886,-0.727,-0.5978,-0.3592,-0.477,-0.138,-0.2242,0.0604,0.2758,0.615,0.6896,0.8362,0.7068,0.6638,0.7472,0.9626,1,0.908,0.661,0.7874,-0.4162,0.2548,0.2112,0.3752,0.2624,0.1038,-0.0576,0.0346,-0.1806,-0.2446,-0.4776,-0.3444,-0.5878,-0.539,-0.539,-0.4596,-0.4802,-0.4186,-0.0986,0.0038,0.3214,0.3266,0.662,0.772,1,0.9462,0.708,0.6364,0.8874,0.8976,0.8182,0.6262,-0.4372,0.1278,0.1158,0.3666,0.1426,-0.0354,-0.0646,-0.0158,-0.1206,-0.1572,-0.693,-0.5542,-0.391,-0.486,-0.4908,-0.603,-0.598,-0.1546,-0.1304,-0.011,0.1084,0.2716,0.5396,0.8076,1,0.9586,0.749,0.6638,0.7638,0.7832,0.7734,0.6298,-0.4408,0.0546,0.3742,0.4994,-0.0572,-0.2276,-0.177,-0.2384,-0.1452,-0.6006,-0.7098,-0.566,-0.5766,-0.6138,-0.763,-0.683,-0.5952,-0.3716,-0.1824,-0.1344,-0.0066,0.0786,0.3742,0.739,0.8668,0.944,0.8722,0.8456,0.968,0.9574,1,0.936,-0.45,-0.0048,0.7424,0.7392,-0.4022,-0.008,-0.0174,-0.1574,-0.3926,-0.8092,-0.5612,-0.6026,-0.5708,-0.5198,-0.5326,-0.609,-0.5644,-0.6438,-0.415,-0.256,-0.1796,-0.1128,0.2782,0.609,0.9332,1,0.895,0.8696,0.9554,0.9842,0.9428,0.7202,-0.466,0.0246,0.6852,0.571,-0.4538,-0.0648,-0.2192,-0.5956,-0.5278,-0.676,-0.6852,-0.6544,-0.5092,-0.6358,-0.6574,-0.5926,-0.682,-0.676,-0.5802,-0.537,-0.497,-0.287,-0.0278,0.3612,0.7222,0.9104,0.8858,0.8118,0.8302,0.9382,1,0.8024,-0.2934,0.0464,0.027,-0.1584,-0.6332,-0.7104,-0.664,-0.8108,-0.942,-0.8996,-0.7066,-0.5792,-0.5638,-0.525,-0.5136,-0.4942,-0.525,-0.807,-0.5868,-0.5868,-0.3398,-0.1544,0.2162,0.7414,0.8146,0.6796,0.7992,0.7838,0.8918,1,0.8764,0.6294,-0.4666,0.0666,0.2666,-0.2,-0.4,-0.3334,-0.3334,-0.5334,-0.8,-0.2666,-0.1334,-0.4666,-0.3334,-0.4666,0.0666,-0.1334,-0.3334,0.1334,0.3334,0.0666,0.7334,0.8,0.4666,0.6,0.4666,0.4666,0.9334,0.7334,1,0.7334,0.3334,0.3334,-0.4138,0.2414,0.2414,0.069,0.069,0.1724,0.138,0.1034,0.069,-0.6552,-0.3794,-0.1034,-0.138,-0.4828,-0.1034,0.0344,0,0.1034,0.2068,0.4828,0.4482,0.6896,0.6552,0.6896,0.5862,0.3794,0.7586,0.9656,1,0.4482,0.2758,0.6206,-0.4526,0.0948,0.1368,0.4106,0.221,0.0106,-0.0736,-0.0316,-0.1368,-0.179,-0.7474,-0.5368,-0.2842,-0.4526,-0.5368,-0.579,-0.5368,-0.1158,-0.1158,0.0106,0.0736,0.3684,0.4526,0.621,0.9158,1,0.6632,0.7684,0.7264,0.6842,0.8736,0.7684,-1,-1,-1,-1,-1,-1,-1,-1,-0.9098,-0.9322,-0.544,0.7516,0.7968,0.7292,0.5846,0.517,0.5034,0.4492,0.4402,0.2686,-0.1468,-0.535,-0.6478,-0.7968,-0.8916,-0.9368,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9554,-0.9594,1,0.3804,0.212,0.0416,0.0264,-0.0112,-0.1644,-0.3032,-0.3286,-0.4088,-0.642,-0.8022,-0.8772,-0.9168,-0.9524,-0.9544,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.98,0.5632,0.3636,0.165,-0.0184,0.1082,0.12,-0.0734,-0.18,-0.12,-0.23,-0.1934,-0.23,-0.6934,-0.6268,-0.9,-0.9868,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,1,1,1,-0.5714,-0.5142,-0.7428,-0.8,-0.8572,-0.7714,-0.7428,-0.8572,-0.3714,-0.4572,-0.4858,-0.7714,-0.8,-0.6572,-1,-1,-1,-1,-1,-1,-1,0.508,0.5132,0.5258,0.5262,0.542,0.5536,0.5666,0.5952,0.5594,0.3156,0.9424,0.9538,0.9632,1,1,1,1,1,1,1,-0.68,0.4236,1,0.712,0.2252,0.4898,0.3012,1,-0.8148,-0.5926,-0.574,-0.4444,-0.3148,-0.1296,-0.0926,-0.1296,-0.0926,0,0.074,-0.0556,0.0556,0.4444,0.4444,0.3334,0.5186,0.537,0.4814,0.5926,0.9444,0.8518,0.9444,1,0.8704,0.7962,0.7592,0.6112,0.3888,0.3888,-0.1296,-0.3334,-0.826,-0.7044,-0.5478,-0.4782,-0.3044,-0.3566,-0.1478,-0.2174,-0.3914,0.026,0.2174,-0.0434,0.0608,0.4608,0.2522,0.374,0.3566,0.4956,0.3914,0.5826,0.826,0.9478,0.9826,1,0.7566,0.9304,0.8956,0.774,0.6522,0.4434,0.426,0.1652,-0.6822,-0.7196,-0.6636,-0.757,-0.6074,-0.6262,-0.4392,-0.4766,-0.458,0.0094,0.3272,0.2898,0.0842,0.3272,0.3644,0.215,0.2898,0.57,0.5888,0.6822,0.813,0.813,0.7384,1,0.757,0.9066,0.8504,0.6262,0.7384,0.701,0.3272,-0.2524,1,-1,-1,1,-1,-1,-1,-0.8,-1,0.4624,0.5268,-0.3334,-0.1828,-0.2044,-0.0752,0.0752,0.3548,0.1182,0.0538,0.0752,0.785,0.742,0.957,0.7634,0.914,0.5054,1,0.7634,0.7634,0.5914,0.656,0.7634,0.5914,0.4194,0.3978,-0.2258,0.3548,0.656,0.4624,-0.2258,-0.4194,'4'
-0.3076,0.3106,0.32,0.2086,0.014,0.0294,-0.088,-0.1036,-0.3354,-0.5858,-0.5456,-0.4436,-0.5642,-0.6198,-0.6908,-0.7032,-0.6908,-0.66,-0.4498,-0.15,-0.0788,0.054,0.4374,0.7032,0.9568,1,0.8022,0.796,0.6878,0.7188,0.7064,0.6878,0.0244,0.8322,0.7972,0.3112,0.2062,0.577,0.451,0.098,-0.0594,-0.4266,-0.556,-0.4826,-0.4686,-0.4476,-0.5664,-0.556,-0.3532,-0.1154,-0.3882,-0.3776,-0.1014,0.063,0.1468,0.4406,0.7132,0.9336,0.8112,0.986,0.8356,1,0.7482,0.7202,0.0238,0.7304,0.6314,0.628,0.413,0.4846,0.1194,-0.0342,-0.512,-0.4778,-0.6484,-0.703,-0.5904,-0.5324,-0.57,-0.6588,-0.5358,-0.4436,-0.4676,-0.3754,-0.3208,-0.3174,0.1228,0.0922,0.6212,0.6724,0.7304,0.5052,0.645,0.959,1,0.8328,-0.1224,0.4478,0.5612,0.7184,0.086,-0.1372,-0.1078,-0.3528,-0.8574,-0.9086,-0.9196,-0.8136,-0.8428,-0.8866,-0.8098,-0.7074,-0.8684,-0.5466,-0.437,-0.4552,-0.437,-0.0676,0.086,0.3564,0.9342,1,0.755,0.7112,0.7258,0.916,0.883,0.7916,-0.0852,0.406,0.9842,1,-0.0852,0.0218,0.0694,-0.5524,-0.7228,-0.6872,-0.707,-0.695,-0.6118,-0.8376,-0.9524,-0.7426,-0.802,-0.6436,-0.505,-0.3862,-0.3702,-0.0892,0.2634,0.5842,0.9168,0.9882,0.8732,0.8614,0.5486,0.806,0.897,0.7624,-0.2228,0.421,1,0.8324,0.0552,0.2114,-0.1466,-0.4286,-0.5238,-1,-0.6686,-0.642,-0.5352,-0.6496,-0.722,-0.7752,-0.8552,-0.8742,-0.6304,-0.6114,-0.619,-0.4972,-0.0972,-0.0438,0.3904,0.5886,0.7562,0.8058,0.4972,0.8324,0.821,0.482,0.1142,0.681,1,0.6762,-0.2334,-0.1334,-0.3096,-0.5048,-0.838,-0.8142,-0.6286,-0.5858,-0.4,-0.3762,-0.381,-0.5666,-0.5904,-0.7334,-0.681,-0.3238,-0.338,-0.2334,0.1238,0.2,0.6714,0.7572,0.8286,0.8666,0.8476,0.9476,0.8858,0.3952,-0.2888,0.3334,0.7334,0.7334,0.0666,0.2,0.2444,0.0666,-0.2444,-0.4666,-0.3778,-0.3778,-0.5112,-0.2888,-0.3334,-0.7334,-0.5112,-0.5112,-0.3334,-0.1112,0.0666,0.2,0.4222,0.7778,0.8666,0.9556,1,0.9112,0.8222,0.7778,0.9556,0.8222,-0.255,0.3334,0.2942,0.2942,0.1372,0.098,-0.0196,-0.0588,-0.255,-0.255,-0.451,-0.4118,-0.3334,-0.3726,-0.451,-0.6862,-0.5686,-0.451,-0.098,0.0196,-0.0196,0.098,0.451,0.6862,0.5686,1,0.9608,0.8824,0.804,0.8824,0.8824,0.8824,-0.1594,0.2754,1,0.884,-0.0144,0.3044,0.0724,-0.2754,-0.3624,-0.6522,-0.4202,-0.5072,-0.6812,-0.942,-0.5362,-0.4492,-0.5362,-0.5942,-0.7972,-0.3624,-0.2754,-0.3334,0.1014,0.1014,0.1594,0.2464,0.7102,0.826,0.6812,0.6522,0.7392,0.855,-1,-1,-1,-1,-1,-1,-1,-1,-0.9506,-0.9358,-0.3672,0.1892,0.6416,0.916,0.869,0.8888,0.78,0.8666,0.696,0.7428,0.2114,-0.335,0.068,0.0408,-0.0086,-0.3474,0.1372,-0.6144,-0.775,-0.8788,-0.948,-0.953,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9408,-0.9338,-0.3042,0.4746,0.6478,0.6788,0.6184,0.6492,0.5154,0.4226,0.3972,0.2464,-0.1084,-0.524,-0.3508,-0.3634,-0.4,-0.6154,-0.3268,-0.755,-0.8478,-0.9056,-0.9324,-0.9422,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.92,-0.6668,-0.274,-0.478,-0.708,-0.656,-0.312,-0.336,-0.58,-0.646,-0.838,-0.7,-0.7,-0.8768,-0.9234,-0.9468,-0.9468,-0.9568,-0.93,-0.9268,-0.9468,-0.6,-0.9334,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6858,1,1,1,-0.6,-0.6286,-0.8,-0.7714,-0.9142,-0.9428,-0.4858,-0.4572,-0.3428,-0.3714,-0.5428,-0.8,-0.7714,-0.8858,-0.9428,-0.8,-0.9142,-0.8286,-0.8286,-0.4572,-1,0.4082,0.424,0.4328,0.4264,0.426,0.4302,0.438,0.435,0.3728,0.1534,1,1,1,1,1,1,1,0.984,1,0.9406,-0.64,0.1764,-0.0112,0.1464,0.3112,0.5154,0.9788,1,-0.0256,0.282,0.1794,0.077,-0.077,0.0256,0.1794,0.2308,0.282,0.3334,0.5384,0.5898,1,0.9488,0.8974,0.9488,0.9488,0.8462,0.7948,0.7436,0.3846,0.4358,0.6924,0.7436,0.7436,0.7436,0.6924,0.7436,0.7436,0.7436,0.4872,-0.1282,-0.186,0.4418,0.0698,-0.1162,-0.1628,-0.4186,-0.372,-0.3488,-0.3256,-0.279,-0.093,0.0466,1,0.8604,0.7674,0.7442,0.6976,0.4418,0.6512,0.907,0.7442,0.3954,0.3954,0.186,0.1628,0.1396,0.279,0.3954,0.6512,0.814,0.4418,-0.3024,-0.0104,0.567,0.031,0.1134,-0.0722,-0.3402,-0.2578,-0.4432,-0.3608,-0.2578,0.0516,0.3196,1,0.8762,0.732,0.8144,0.6288,0.4846,0.464,0.8556,0.7732,0.1134,-0.1546,-0.1752,-0.2578,-0.3402,-0.1958,-0.299,0.2372,0.2164,0.0722,-0.6288,0.9408,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.122,0.2196,0.3902,0.439,0.8292,0.8048,1,0.7318,0.9512,0.7804,0.9512,0.878,0.5854,1,0.2926,0.9512,1,0.5366,0.561,0.5122,0.8048,0.7074,0.8536,0.7318,0.8048,0.3902,0.6342,-0.1708,0.5366,0.6342,0.4878,0.244,'5'
-0.634,-0.1008,0.0548,0.2478,-0.075,-0.1642,-0.1586,-0.193,-0.4582,-0.5044,-0.6974,-0.755,-0.7608,-0.6628,-0.4582,-0.5446,-0.683,-0.4122,-0.4322,-0.3948,-0.3286,-0.1758,0.1326,0.2478,0.5504,0.7954,1,0.8962,0.6512,0.709,0.8904,0.7752,-0.4402,0.1364,0.0296,0.1954,-0.052,-0.0268,-0.2686,-0.2406,-0.4796,-0.533,-0.595,-0.668,-0.7356,-0.5584,-0.5472,-0.7188,-0.7018,-0.415,-0.4542,-0.218,-0.3362,-0.3136,0.2348,0.3924,0.64,0.7158,1,0.986,0.7356,0.73,0.9522,0.758,-0.5072,-0.0246,0.1414,0.2814,-0.17,-0.1906,-0.2632,-0.406,-0.6238,-0.6212,-0.6472,-0.7276,-0.6836,-0.5954,-0.6394,-0.6964,-0.8366,-0.6108,-0.4578,-0.4708,-0.4812,-0.3412,0.035,0.284,0.6108,0.904,1,0.795,0.7432,0.9014,0.9766,0.9404,-0.6936,-0.2256,0.478,0.4808,-0.4752,-0.166,-0.1688,-0.4156,-0.5858,-0.6426,-0.6114,-0.7418,-0.5602,-0.532,-0.6964,-0.6908,-0.8242,-0.4412,-0.3758,-0.4382,-0.322,-0.3134,-0.1008,0.1092,0.5602,0.912,0.8156,0.7958,0.9518,1,0.9944,0.9092,-0.8202,-0.0054,0.5232,0.4196,-0.425,-0.128,-0.3324,-0.5776,-0.4796,-0.7166,-0.684,-0.684,-0.6268,-0.6758,-0.7574,-0.7874,-0.8366,-0.6212,-0.5722,-0.5668,-0.4278,-0.3624,0.0572,0.2126,0.5614,0.921,1,0.7738,0.6812,0.8148,0.8774,0.6458,-0.9218,0.0304,0.3864,0.1808,-0.2186,-0.3054,-0.534,-0.6324,-0.6614,-0.6584,-0.641,-0.537,-0.4616,-0.5426,-0.7482,-0.699,-0.6614,-0.6354,-0.6788,-0.5948,-0.4848,-0.259,0.0332,0.343,0.6266,0.9132,1,0.9566,0.8698,0.8986,0.9102,0.5862,-0.9326,-0.3558,0.2308,-0.1394,-0.8318,-0.8174,-0.5144,-0.4278,-0.6346,-0.8222,-0.5336,-0.399,-0.4134,-0.4712,-0.2356,-0.3654,-0.4134,-0.399,-0.5144,-0.4326,-0.327,-0.399,-0.1394,0.3366,0.673,0.9086,0.976,0.8124,0.7932,0.9134,1,0.7116,-0.3818,-0.2,0.1636,0.2728,-0.0182,-0.2,-0.091,-0.2364,-0.3454,-0.309,-0.2728,-0.2728,-0.4546,-0.3818,-0.491,-0.3818,-0.5272,-0.2728,-0.3454,-0.5272,-0.2728,-0.3818,0.0182,-0.0546,0.4546,0.9272,1,0.7818,0.3818,0.4182,0.6728,0.5272,-0.2882,0.017,0.2882,0.356,0.1864,-0.017,-0.1526,-0.1864,-0.0508,-0.2204,-0.2204,-0.4238,-0.5594,-0.322,-0.1186,-0.1186,-0.4916,-0.0848,0.1186,0.0508,0.017,0.2882,0.2542,0.5932,0.5594,0.8306,1,0.9662,0.7966,1,1,0.7628,-0.5,0.0384,0.4616,0.3846,-0.423,0,-0.1538,-0.4808,-0.2308,-0.3654,-0.423,-0.7692,-0.5,-0.5,-0.5384,-0.4808,-0.5192,-0.673,-0.2308,-0.3076,-0.3076,-0.0384,0.25,0.3654,0.5192,0.9808,1,0.5192,0.7692,0.7884,0.6538,0.75,-1,-1,-1,-1,-1,-1,-1,-0.8802,-0.9346,-0.8366,-0.297,0.1226,0.3406,0.4006,0.515,0.5968,0.6022,0.9128,0.733,0.1826,-0.2152,-0.6676,-0.733,-0.7384,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9522,-0.9508,-0.7622,-0.2988,0.3532,0.1938,0.6932,0.6548,0.8088,0.4316,0.271,0.0132,-0.0638,-0.583,-0.8208,-0.8712,-0.8804,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.993,-0.98,-0.7468,0.33,0.489,0.2436,0.2726,0.238,0.3362,0.2708,-0.111,-0.3782,-0.165,-0.2834,-0.2918,-0.7334,-0.58,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3714,-0.3142,1,1,0.2286,-0.8858,-0.9714,-1,-0.9142,-0.9428,-0.7428,-0.7142,-0.5142,0.6858,-0.8858,-0.8572,-0.8572,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.6584,0.6628,0.6654,0.6634,0.659,0.627,0.582,0.5354,0.5014,0.3786,1,1,1,1,1,1,1,1,1,1,-0.6534,0.3412,-0.2682,-0.0836,0.4568,0.6786,0.2138,1,-0.351,-0.1524,0.0066,-0.086,-0.0994,-0.0066,-0.1656,0.1258,-0.0596,0.0066,-0.0596,0.1524,0.5232,0.6688,0.7218,0.894,0.8278,0.6292,0.7086,0.788,0.9338,0.9736,1,0.7218,0.2318,0.139,0.1656,0.1258,0.245,0.2582,0.3642,-0.0994,-0.25,0.1944,0.1666,-0.0556,-0.2638,-0.4722,-0.2778,-0.2916,-0.2362,-0.1806,0.0556,0.0278,0.5972,0.8056,0.4584,0.8888,0.7916,0.5278,0.5972,0.7222,1,0.9028,0.7362,0.2778,-0.0138,0.0416,-0.1388,-0.1806,0.1528,0.1528,0.375,-0.1806,-0.3214,0.238,0.131,-0.1786,-0.4286,-0.3214,-0.2738,-0.3572,-0.3928,-0.1786,-0.012,-0.012,0.7858,1,0.6072,0.75,0.6904,0.238,0.4166,0.7142,0.8452,0.738,0.5358,0.4524,-0.0834,-0.131,0,0.012,0.119,0.2738,0.3572,-0.25,0.0864,-1,-1,1,-1,-1,-1,-0.7,-1,0.14,0.28,0,-0.06,-0.02,-0.02,0.42,0.08,0.34,0.24,0.28,0.64,0.5,0.26,0.74,1,0.72,0.76,0.84,0.5,0.4,0.56,0.72,0.84,0.34,0.06,-0.04,0.1,0.16,0.38,-0.04,-0.36,'5'
-0.4192,-0.048,0.2314,0.3232,0.6288,0.773,1,0.7772,0.5414,0.3014,0.1442,0.227,0.1136,0.1222,0.5152,0.5676,0.8166,0.9564,1,0.8558,0.8254,0.5852,0.572,0.655,0.6986,0.6244,0.572,0.5852,0.4716,0.4454,0.4324,0.511,-0.4152,-0.0062,0.092,0.231,0.4846,0.5338,1,0.9592,0.2556,0.1492,0.2392,0.1452,0.186,0.1534,0.501,0.7832,0.726,0.8528,0.5788,0.6646,0.3456,0.366,0.3824,0.3742,0.4314,0.4152,0.3416,0.317,0.2802,0.223,0.1902,0.2966,-0.3658,0.0204,0.1016,0.2276,0.4146,0.6016,1,0.9308,0.565,0.3862,0.4756,0.3414,0.3292,0.4308,0.7114,0.8578,0.756,0.8048,0.5,0.4512,0.2724,0.3048,0.4796,0.4308,0.2682,0.3414,0.2724,0.1544,0.1708,0.313,0.2154,0.2886,-0.346,0.0356,0.1488,0.2244,0.4884,0.761,0.9496,0.9538,1,0.5472,0.4508,0.413,0.3208,0.4842,0.719,0.6436,0.5598,0.3626,0.2746,0.3208,0.3208,0.2578,0.6142,0.6268,0.3794,0.2076,0.325,0.1908,0.0608,0.2034,0.153,-0.0356,-0.4136,-0.0928,0.1098,0.135,0.2912,0.6836,0.73,1,0.8776,0.3292,0.1518,0.1772,0.2406,0.3586,0.4136,0.5022,0.2784,-0.0506,0.097,-0.1012,0.059,0.3544,0.3164,0.2742,0.3164,0.2658,-0.1182,-0.1604,-0.2574,-0.3924,-0.3248,-0.3164,-0.379,-0.1052,0.1492,0.1394,0.3202,0.7458,0.8876,1,0.3936,0.2274,0.198,0.335,0.2812,0.291,0.3888,0.335,-0.0954,0.0024,0.0904,0.0806,0.3154,0.3252,0.2714,0.3838,0.3008,-0.071,-0.0122,-0.0318,-0.33,-0.3398,-0.2518,-0.198,-0.069,0.309,0.6218,0.411,0.4254,0.709,0.84,1,0.6654,0.2,0.3236,0.3964,0.7018,0.4182,0.4254,0.28,-0.1418,-0.3528,-0.0036,0.12,0.3382,0.411,0.6872,0.5782,0.1346,-0.1854,-0.171,-0.28,-0.389,0.1054,0.0182,-0.28,-0.551,-0.2244,0.102,0.1836,0.6326,0.9592,1,0.6326,0.3878,0.1428,0.0612,0.1428,-0.1836,0.0204,0.347,0.3062,0.6734,0.8776,0.9184,0.7552,0.5918,0.4286,0.5102,0.4286,0.5102,0.4286,0.5102,0.5102,0.4286,0.3878,0.1836,0.3062,-0.5272,-0.1272,0.091,0.2364,0.5272,0.6364,0.8182,0.709,0.3818,0.2728,0.091,0.1272,0.0182,0.0182,0.3818,0.4546,0.709,1,1,0.8182,0.7454,0.5272,0.6364,0.709,0.709,0.6364,0.6728,0.6,0.5272,0.6364,0.6,0.6364,-0.3466,0.0694,0.1882,0.2674,0.505,0.7426,1,0.8218,0.901,0.6436,0.5248,0.5248,0.4654,0.505,0.8218,0.8614,0.505,0.4258,0.4456,0.2872,0.3268,0.307,0.3268,0.4852,0.3268,0.3466,0.3862,0.3466,0.1882,0.2674,0.3466,0.307,-1,-1,-1,-1,-1,-1,-1,-1,-0.9716,-0.9732,-0.3786,0.374,0.614,0.912,0.9628,0.9568,0.7184,0.6736,0.4992,0.2862,-0.0328,-0.544,-0.6752,-0.699,-0.9076,-0.9046,-0.8718,-0.8048,-0.936,-0.9524,-0.9642,-0.9524,-0.924,-1,-1,-1,-1,-1,-1,-1,-1,-0.9856,-0.9854,-0.4628,0.3092,0.5372,0.795,0.889,0.5466,0.2432,0.2626,0.0646,-0.1302,-0.4782,-0.8216,-0.8876,-0.878,-0.929,-0.9444,-0.941,-0.9312,-0.9616,-0.9634,-0.9622,-0.958,-0.9578,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.9334,-0.6568,-0.5434,-0.6168,-0.6268,-0.6468,-0.6468,-0.66,-0.6568,-0.6434,-0.6368,-0.6534,-0.7516,-0.6634,-0.55,-0.5034,-0.46,-0.4234,-0.77,0.1232,-0.3368,-0.19,-0.0834,-0.4734,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,-0.6286,-0.8,-0.7428,-0.4572,-0.5428,-0.6286,-0.6858,-0.2858,1,0.9428,-0.2286,-0.4858,-0.8,-0.7714,-0.9428,-0.9714,-0.8572,-1,-0.9428,-1,-0.6,1,1,1,1,1,1,1,1,1,1,0.2272,0.2124,0.197,0.1622,0.1218,0.0958,0.0146,-0.1944,-0.4048,-0.4438,-0.6266,-0.3294,-0.366,0.0066,0.3734,0.518,0.5296,1,-0.2076,0.1698,0.1698,0.434,0.3584,0.0188,-0.0188,0.3962,0.5094,0.849,0.849,0.8868,1,0.9246,0.849,0.6982,0.7358,0.6982,0.7736,0.7358,0.6226,0.3962,0.283,0.3962,0.3962,0.2452,0.1698,0.1698,0.132,0.0944,-0.1698,-0.849,-0.0834,0.3,0.7834,0.8334,0.4666,0.2334,0.0666,0.2666,0.5,0.75,0.8,0.7,1,0.7334,0.7,0.5,0.6334,0.55,0.6334,0.6166,0.45,0.3,-0.0166,0.3334,0.2666,0.1834,0.1334,0.2334,0.2834,0.3166,-0.05,-0.3334,-0.1028,0.3644,0.8318,0.9626,0.6822,0.3458,0.1962,0.458,0.6262,0.9626,0.6448,0.4954,0.7758,0.6448,0.4018,0.458,0.4206,0.7384,1,0.9814,0.3832,0.1214,0.1402,0.215,0.1588,0.2336,-0.0094,0.1214,0.1776,-0.1214,-0.3084,-0.514,0.219,-1,-1,1,-0.8,-1,-1,-0.8334,-1,-0.6724,-0.3794,-0.1034,0.138,0.3104,0.138,0.2932,0.3966,0.3448,0.3448,0.569,0.4828,0.6206,0.2758,0.2242,0.5,0.2242,0.4656,0.5344,0.7068,0.569,0.5172,1,0.8104,0.7586,0.7758,0.9138,0.6034,0.7586,0.5344,0.2758,-0.0344,'6'
-0.4286,0.067,0.1312,0.2944,0.6794,0.7842,0.9766,0.8834,0.481,0.3062,0.067,0.0262,0.038,0.0612,0.2886,0.5744,0.4986,0.8834,0.9534,0.9766,0.825,0.726,1,0.93,0.8192,0.7726,0.8658,0.4518,0.2944,0.4402,0.3936,0.4752,-0.3942,0.1332,0.0548,0.295,0.577,0.7336,0.906,1,0.5874,0.6136,0.1488,0.0862,0.3002,0.222,0.2584,0.3682,0.4778,0.7336,0.8642,0.8852,0.6188,0.5926,0.6502,0.671,0.7702,0.739,0.7232,0.4622,0.4986,0.4934,0.457,0.5562,-0.2792,0.2234,0.137,0.33,0.594,0.7056,0.9492,0.9898,0.736,0.6954,0.396,0.2944,0.4874,0.3654,0.3654,0.5786,0.6346,1,0.9848,0.67,0.5838,0.604,0.6548,0.6346,0.6142,0.6852,0.6802,0.5178,0.4112,0.4162,0.401,0.3554,-0.2486,0.2542,0.1186,0.2486,0.5424,0.5706,0.904,0.8192,1,0.8022,0.4464,0.339,0.3616,0.418,0.4012,0.6666,0.7402,0.8532,0.6214,0.6836,0.5706,0.5876,0.8136,0.7344,0.8248,0.7006,0.695,0.2146,0.226,0.3842,0.2824,0.0056,-0.2482,0.173,0.1028,0.198,0.4486,0.599,0.8246,0.9298,1,0.4938,0.3534,0.2732,0.2832,0.3334,0.2782,0.4336,0.614,0.5038,0.4736,0.3984,0.4786,0.5488,0.629,0.639,0.629,0.5388,0.178,0.0828,0.1328,0.1028,0.1128,0.0526,-0.3518,0.0194,0.0914,0.1024,0.374,0.5236,0.6178,1,0.867,0.507,0.2964,0.2078,0.2686,0.2354,0.1746,0.2576,0.1024,-0.3074,0.1634,0.2188,-0.1136,0.18,0.4016,0.5512,0.435,0.1634,0.0304,-0.0914,-0.1412,-0.3462,-0.1578,0.0084,-0.25,0.1142,0.2642,0.15,0.2286,0.6786,0.9358,1,0.85,0.6858,0.1928,0.5714,0.5072,0.3858,0.1714,0.1572,-0.05,0.05,-0.0714,-0.1072,-0.2,0.0142,0.4286,0.6072,0.4358,0.2,-0.05,-0.0358,-0.3358,-0.35,-0.1714,-0.1142,-0.4894,0.0638,0.1914,0.3618,0.532,0.8724,1,0.7446,0.149,0.1914,0.1064,-0.149,-0.0638,-0.0638,0.2766,0.4042,0.3618,0.532,0.7446,0.7446,0.4042,0.617,0.7872,0.9148,0.7446,0.7022,0.6596,0.234,0.234,0.532,0.5744,0.532,-0.2858,0.1428,0.2142,0.3572,0.6428,0.7142,0.8572,0.7858,0.5714,0.4642,0.25,0.3214,0.3214,0.25,0.3928,0.5358,0.5358,0.8214,1,0.9286,0.7858,0.5,0.8214,0.7142,0.5,0.4642,0.7142,0.5358,0.0714,-0.0358,0.3928,0.5714,-0.3658,0.0488,0.122,0.1952,0.4146,0.5122,0.561,1,0.9512,0.561,0.317,0.244,0.317,0.1952,0.1464,0.4634,0.317,-0.3414,0.2196,0.244,-0.2682,0.439,0.4146,0.6098,0.4878,0.3658,0.0488,-0.0732,-0.2682,-0.1708,-0.0732,-0.0244,-1,-1,-1,-1,-1,-1,-1,-1,-0.9524,-0.9496,-0.5132,0.284,0.5944,0.8994,0.9636,0.9356,0.8658,0.8742,0.7034,0.4826,0.2028,-0.1832,-0.5608,-0.8154,-0.877,-0.9272,-0.9272,-0.9356,-0.8798,-0.8854,-0.8994,-0.9048,-0.9048,-1,-1,-1,-1,-1,-1,-1,-1,-0.9788,-0.9768,-0.331,-0.1414,0.607,0.8938,0.6126,0.4018,0.3718,0.2702,0.1212,-0.1366,-0.309,-0.6504,-0.854,-0.886,-0.8464,-0.8732,-0.8994,-0.9108,-0.9242,-0.9308,-0.9242,-0.9298,-0.9474,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.9334,-0.5368,-0.388,-0.348,-0.416,-0.532,-0.568,-0.556,-0.456,-0.5268,-0.6568,-0.5668,-0.5734,-0.5468,0.1966,0.4,0.68,0.3432,0.5132,-0.12,0.2466,-0.04,-0.0268,-0.6634,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,1,1,1,0.0858,-0.8,-0.6858,-0.5142,-0.8,-0.8,-0.4572,-0.2572,-0.1714,0.3428,0.5428,1,-0.1142,-0.7428,-0.8286,-0.9714,-0.8572,-0.8572,-0.8572,-0.5142,-0.6572,1,1,1,1,1,1,1,1,1,1,0.5214,0.486,0.4486,0.4546,0.4372,0.3724,0.4296,0.3728,0.3132,0.0238,-0.68,-0.4236,-0.0242,-0.2048,-0.0176,0.5926,0.706,1,-0.7058,-0.1176,-0.2352,-0.2352,-0.5294,0,0.0588,0.2352,0.647,0.8824,0.9412,0.8824,0.7058,0.7648,0.8824,0.9412,1,1,1,0.8824,0.7648,0.7648,0.647,0.4706,0.2942,0.0588,-0.1764,0.2942,0.5294,0.4706,0.4118,-0.1764,-0.5294,-0.1372,0.1764,0.255,0.1568,0.0784,0.0784,0.2942,0.549,1,1,0.7844,0.8236,0.7648,0.4314,0.6078,0.451,0.7844,0.6666,0.745,0.6078,0.4706,0.2352,0.0392,-0.1372,-0.0784,0.0196,0.098,0.4118,0.6862,0.6078,0.1764,-0.2094,0.2094,0.6512,0.7906,0.3954,0.1396,-0.3488,0.3488,0.5116,0.9302,1,0.6744,0.907,0.7906,0.4652,0.5582,0.2558,0.6744,0.5348,0.5348,0.628,0.279,0.0466,-0.1396,-0.2326,-0.1162,-0.186,0.0698,0.1396,0.4418,0.4884,0.3024,1,-1,-1,1,-1,-1,-0.6,-0.8334,-1,-0.5218,-0.3914,-0.0434,0.0144,0.2318,0.2174,0.1014,0.3334,0.3044,0.3188,0.4638,0.4638,0.5362,0.5508,0.5508,0.7246,0.4058,0.4638,0.5072,0.5798,0.884,0.826,1,0.9856,0.971,0.9566,0.8986,0.6956,0.7682,0.5798,0.4782,-0.116,'6'
-0.0194,0.6774,0.8194,1,0.2646,-0.0388,-0.0968,-0.387,-0.9162,-0.787,-0.7742,-0.6322,-0.542,-0.5226,-0.3806,-0.3484,-0.471,-0.342,-0.342,0.258,0.5612,0.7936,0.6194,0.7162,0.8646,0.942,0.8194,0.4646,0.542,0.6452,0.6904,0.9678,-0.2508,0.2968,0.879,1,0.2104,-0.2162,-0.0778,-0.51,-0.6196,-0.7464,-0.9308,-0.7868,-0.6888,-0.6946,-0.8732,-0.7982,-0.5966,-0.5158,-0.1412,0.1586,0.3544,0.6772,0.804,0.7118,0.5734,0.5446,0.5332,0.3776,0.0836,0.1124,0.1182,0.4006,-0.2816,0.1474,0.9786,1,-0.0616,0.2386,0.2976,-0.3298,-0.5068,-0.5442,-0.7104,-0.8016,-0.4798,-0.4906,-0.6514,-0.4424,-0.3672,-0.303,-0.0134,0.2868,0.3994,0.8446,0.9946,0.9892,0.6782,0.5656,0.6354,0.362,0.2118,0.1582,0.0724,0.2118,-0.3166,0.3216,0.985,0.9146,-0.0402,0.382,0.216,0.1608,-0.3366,-0.598,-0.598,-0.4924,-0.7688,-0.6634,-0.5126,-0.6332,-0.5428,-0.392,-0.2614,0.0604,0.181,0.5076,0.9798,1,0.8744,0.5428,0.8442,0.804,0.7186,0.6684,0.4522,0.5076,-0.4436,0.4486,0.9248,0.7594,0.0276,0.178,0.0978,-0.0326,-0.4636,-0.7192,-0.7042,-0.7444,-0.8796,-0.7544,-0.7344,-0.7294,-0.8146,-0.4938,-0.5238,-0.193,0.1028,-0.0076,0.7894,0.99,1,0.7444,0.7192,0.8196,0.7192,0.634,0.183,0.4636,-0.4376,0.5104,0.8646,0.6146,0.0782,0.1198,0.2032,-0.0834,-0.5678,-0.7292,-0.7136,-0.625,-0.7188,-0.6458,-0.6302,-0.724,-0.6614,-0.5312,-0.3646,0.1042,-0.0364,0.2448,0.5834,0.948,1,0.6198,0.8178,0.7084,0.6718,0.4322,0.4428,0.349,-0.1672,0.7126,1,0.6716,0.1202,0.1144,0.0382,-0.0382,-0.4546,-0.525,-0.8416,-0.607,-0.4838,-0.6012,-0.4662,-0.5074,-0.607,-0.4018,-0.2786,-0.3666,-0.2316,0.0382,0.3958,0.742,0.8768,0.83,0.8416,0.8944,0.8358,0.7184,0.5014,0.308,-0.1666,0.4166,0.375,0.5416,0.0834,-0.125,-0.0416,-0.2084,-0.2084,-0.375,-0.125,-0.0416,-0.4166,-0.3334,0,-0.0834,-0.0416,0.1666,0.2916,0.2916,0.875,0.875,0.5,0.6666,0.7084,1,0.875,0.6666,0.7916,0.7084,0.7916,0.875,0.4762,0.8096,0.9048,1,0.381,0.3334,0.3334,0.1904,-0.1904,-0.381,-0.5714,-0.3334,0.0952,0.1428,0.0476,0.1428,-0.3334,0.0952,0.4762,0.5714,0.9048,1,0.7142,0.7142,0.9524,0.9524,0.9048,0.762,0.619,0.6666,0.8096,0.9524,-0.3424,0.0684,0.9178,0.9178,-0.178,0.3698,0.315,0.041,-0.4246,-0.589,-0.5068,-0.7534,-0.8082,-0.6438,-0.5068,-0.6438,-0.452,-0.1232,-0.0136,0.178,0.4246,0.6986,1,0.6712,0.589,0.5068,0.6164,0.5342,0.5068,0.5342,0.3972,0.3424,-1,-1,-1,-1,-0.9198,-0.9412,-0.9424,-0.9348,-0.9674,-0.8934,-0.6804,0.089,0.604,0.9448,0.9386,0.6504,0.5526,0.3834,0.1918,-0.134,-0.2832,-0.5414,-0.6016,-0.7042,-0.718,-0.767,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9256,-0.942,-0.9006,-0.3738,0.2682,0.6116,0.0164,0.0874,0.3962,0.7812,0.9134,0.6444,0.5692,0.4048,0.1738,-0.148,-0.2742,-0.5942,-0.6738,-0.7378,-0.7482,-0.8148,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9458,-0.9222,-0.9422,0.4444,0.9644,0.8244,0.4264,-0.5372,-0.7744,-0.7344,-0.7516,-0.7316,-0.6458,-0.7086,-0.7572,-0.7716,-0.7286,-0.78,-0.78,-0.7834,-0.8434,-0.99,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.1142,-0.8572,1,1,1,-0.3428,1,1,0.0572,-0.6858,-0.8286,-0.5714,-0.6858,-0.8286,-0.7714,-0.7428,-0.6572,-0.4,-0.4,-0.5714,0.2,-0.0572,-1,-1,-1,-1,-1,-1,-1,-0.2452,-0.2534,-0.1862,-0.1252,-0.0944,-0.1204,-0.0578,0.0252,0.1864,0.302,0.7592,0.7364,0.7348,0.7046,0.7362,0.7608,0.816,0.7842,0.844,0.9818,-0.4934,-0.2118,-0.1384,0.0952,0.0606,0.1644,0.3278,1,-0.8248,-0.5932,-0.4858,-0.3954,-0.3786,-0.4124,-0.2598,-0.113,-0.209,0.0848,0.017,0.1074,0.339,0.6554,0.7344,0.8758,0.9492,0.7176,0.565,0.6046,0.8984,0.774,0.8022,0.8022,0.7232,0.9152,1,0.774,0.661,0.4294,0.3954,-0.0904,-0.8582,-0.7898,-0.6674,-0.6528,-0.6088,-0.5306,-0.247,-0.071,-0.1442,0.1394,0.4084,0.2274,0.5354,0.7066,0.8386,0.8288,1,0.775,0.78,0.7996,0.8728,0.9952,0.8826,0.8092,0.9316,0.7996,0.9658,0.9462,0.8338,0.5158,0.5648,-0.022,-0.3476,-0.219,-0.438,-0.4238,-0.4904,-0.4048,-0.4096,-0.2334,0.0714,0.2428,0.462,0.4572,0.762,0.9238,0.8524,0.8666,0.9952,1,0.8142,0.8142,0.9762,0.9286,0.8714,0.8714,0.8904,0.8714,0.8666,0.938,0.881,0.538,0.4762,0.0286,0.0848,-1,-1,1,-1,-1,-1,-0.1666,-1,0.5136,0.3514,-0.0676,0.1082,0.1352,0.1622,0.3514,0.027,0.1082,-0.1216,0.4324,0.6622,0.6892,0.6216,0.473,0.7972,0.8108,0.7838,0.7702,0.8918,1,0.8514,0.7702,0.527,0.554,0.5946,0.5406,0.2162,0.1352,0.1892,0,-0.5136,'7'
-0.1476,0.4692,0.3458,0.5588,0.1252,-0.2412,-0.1514,-0.2038,-0.828,-0.944,-0.8206,-0.7758,-0.787,-0.5476,-0.514,-0.5328,-0.4168,-0.1252,-0.17,-0.058,0.2336,0.3982,0.7906,0.686,0.6074,0.6672,1,0.7046,0.5364,0.6672,0.6412,0.7608,-0.1412,0.5052,0.8036,1,0.4764,-0.1412,0.092,-0.0552,-0.5992,-0.8936,-0.8078,-0.9222,-0.7464,-0.5502,-0.452,-0.2392,-0.3866,-0.3456,-0.0348,-0.0634,0.0184,0.6482,0.8854,0.9182,0.8896,0.8692,0.8774,0.7096,0.4724,0.5706,0.73,0.8036,-0.1866,0.3494,0.7598,0.8964,0.294,-0.1128,0.2126,-0.0018,-0.5046,-0.6672,-0.6894,-0.5304,-0.6192,-0.5416,-0.5158,-0.5232,-0.4936,-0.4824,-0.2866,0.1128,0.135,0.4788,0.7966,1,0.7006,0.6672,0.5786,0.5786,0.39,0.4528,0.3198,0.39,-0.1418,0.3242,0.93,1,0.064,0.2504,0.3708,-0.2078,-0.53,-0.3864,-0.6428,-0.5766,-0.4718,-0.5806,-0.6388,-0.5884,-0.6816,-0.5184,-0.1496,-0.0602,0.0446,0.3942,0.767,0.7436,0.4602,0.6428,0.6428,0.7166,0.5884,0.53,0.503,0.3902,-0.2088,0.2792,1,0.8814,0.0726,0.5032,0.3098,0.055,-0.5516,-0.6704,-0.7142,-0.7494,-0.5956,-0.6044,-0.4902,-0.5384,-0.934,-0.6968,-0.3582,-0.2132,-0.3098,0.033,0.455,0.4374,0.5868,0.6044,0.701,0.8374,0.833,0.7582,0.4858,0.4902,-0.1572,0.5502,1,0.7336,0.1572,0.3144,-0.1616,-0.2314,-0.227,-0.5938,-0.7816,-0.524,-0.5414,-0.6638,-0.7598,-0.8472,-0.7948,-0.7686,-0.7424,-0.572,-0.4716,-0.1442,0.4192,0.5022,0.8166,0.8254,0.6768,0.882,0.8078,0.5372,0.6724,0.4192,0.149,0.6064,0.8244,0.4202,-0.6648,-0.4522,-0.468,-0.468,-0.8564,-0.968,-0.8724,-0.5054,-0.4202,-0.351,-0.1914,-0.4096,-0.5852,-0.3724,-0.4042,-0.7074,-0.4574,-0.101,0.532,0.9468,0.8882,0.75,1,0.984,0.7022,0.75,0.3618,0.1702,-0.381,0.2858,0.238,0.1428,-0.1904,-0.4286,-0.381,-0.4762,-0.5238,-0.5238,-0.762,-0.5238,-0.4286,-0.5238,-0.381,-0.5714,-0.3334,-0.3334,-0.238,0.1904,0.4762,0.4762,0.2858,0.1428,0.8096,0.9048,1,0.9524,0.619,0.381,0.2858,0.5714,-0.1352,0.4594,0.5136,0.5676,0.1892,-0.2972,-0.1352,-0.1892,-0.7298,-0.8918,-0.4594,-0.2972,-0.4054,-0.5136,-0.5676,-0.2432,-0.2432,-0.2432,-0.1892,-0.081,0.1892,0.4594,0.7298,0.7298,0.7838,0.6216,0.946,1,0.6216,0.5676,0.8378,0.8378,-0.246,0.3442,1,0.836,0.1804,0.4426,0.246,0.0492,-0.6066,-0.6394,-0.8032,-0.8688,-0.6394,-0.6394,-0.5082,-0.377,-0.8032,-0.4754,-0.4426,-0.1804,-0.246,0.1148,0.377,0.3114,0.5082,0.7378,0.9344,0.8688,0.9016,1,0.246,0.5738,-0.8592,-0.6904,-0.803,-0.833,-0.923,-0.955,-0.9624,-0.9512,-0.9418,-0.9456,-0.5666,0.2532,0.6098,0.7748,0.9644,0.7936,0.788,0.3958,0.2082,-0.0732,-0.3714,-0.6004,-0.7618,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8782,-0.7642,-0.8444,-0.8632,-0.7616,-0.1318,0.4266,0.7728,0.7578,0.778,0.4516,0.276,0.5534,0.6788,0.941,0.6374,0.5872,0.2998,0.0828,-0.2096,-0.478,-0.6624,-0.7992,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.89,-0.91,-0.8768,-0.6868,0.9132,1,1,0.98,0.8666,0.61,-0.589,-0.5446,-0.6646,-0.622,-0.678,-0.84,-0.762,-0.866,-0.772,-0.768,-0.676,-0.96,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5142,-0.7714,-0.8572,-0.1428,1,1,1,-0.8,-0.9428,-0.6,1,1,-0.5714,-0.8858,-0.9428,-0.9428,-0.8858,-0.9714,-0.7142,-0.5142,-0.2858,-0.7714,-0.6286,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.221,-0.1692,-0.0946,-0.0528,-0.0242,-0.0052,0.0552,0.1356,0.2538,0.1986,0.9498,0.9508,0.9536,0.9816,1,0.9624,0.9816,1,1,0.941,-0.5866,0.1412,0.3752,0.2722,0.2196,0.3212,0.4654,1,-0.6032,-0.5968,-0.4178,-0.4016,-0.5056,-0.2976,-0.2488,-0.2422,-0.1448,-0.0926,0.0048,0.2716,0.4536,0.587,0.7658,0.8992,0.9512,0.8926,0.8244,0.7886,0.8082,0.8114,1,0.9642,0.9838,0.9544,0.922,0.883,0.6976,0.6488,0.3138,0.1578,-0.7942,-0.853,-0.603,-0.547,-0.5088,-0.4588,-0.4176,-0.2588,-0.2382,-0.0058,0.1324,0.2118,0.447,0.6882,0.7442,0.8852,0.8706,0.9206,0.9352,0.9412,0.847,0.7618,0.8676,0.9206,1,0.9442,0.9118,0.903,0.703,0.6824,0.4942,0.2736,-0.7688,-0.636,-0.7074,-0.6768,-0.6224,-0.5612,-0.6224,-0.466,-0.2518,-0.0782,0.2482,0.3198,0.7688,0.8912,0.653,1,0.9932,0.8096,0.762,0.7858,0.6836,0.6904,0.6598,0.7482,0.7926,0.881,0.83,0.949,0.6938,0.6564,0.4286,0.102,0.1066,-1,-1,1,-1,0.4,-0.8,0.2666,-1,0.7358,0.585,0.283,0.3962,-0.0944,0.283,0.3208,0.585,0.2452,0.0188,0.6226,1,0.7736,0.7358,0.849,0.5094,0.6226,0.7358,0.5094,0.8114,0.849,0.0566,0.132,-0.0566,0.1698,0.0566,0.2452,0.2452,0.9246,0.9622,0.0944,-0.2452,'7'
-0.393,0.0136,0.3388,0.3876,0.767,0.7398,0.4526,0.3388,0.1544,0.0136,0.0298,-0.1382,-0.2574,-0.1544,0.0678,0.046,0.1056,0.328,0.5068,0.729,0.9838,1,0.9512,0.7616,0.8536,0.9458,0.9404,0.691,0.7018,0.7506,0.5338,0.5176,-0.191,0.2656,0.474,0.6278,0.9802,1,0.4392,0.3498,0.1762,-0.067,0.0372,-0.1762,-0.2208,-0.0024,-0.1066,-0.0024,0.2952,0.3796,0.1862,0.479,0.9106,0.742,0.7866,0.6526,0.613,0.8462,0.866,0.5632,0.3746,0.6774,0.4888,0.4094,-0.2386,0.244,0.4692,0.5978,0.8982,0.8766,0.2278,0.0564,0.1636,-0.2494,-0.2868,-0.0832,-0.201,-0.3512,-0.2494,-0.1742,-0.2172,-0.3084,-0.1528,0.4048,0.5388,0.6514,0.5978,0.7748,0.732,0.764,0.9624,1,0.7104,0.6462,0.6676,0.6408,-0.2312,0.1936,0.5376,0.613,0.8656,0.758,0.1882,0.0698,0.086,-0.3172,-0.4032,-0.2796,-0.6398,-0.6182,-0.4194,-0.5968,-0.6236,-0.4784,-0.3548,-0.0162,0.2904,0.6344,0.9248,0.8334,0.9516,1,0.9946,0.9462,0.7688,0.7096,0.5592,0.5216,-0.2902,0.0648,0.5154,0.538,0.6564,0.4084,0.1718,-0.076,-0.2226,-0.476,-0.5268,-0.5718,-0.7296,-0.9324,-0.6564,-0.7916,-0.724,-0.4536,-0.4478,-0.2564,-0.1324,0.5662,0.6788,0.8254,0.8084,0.893,1,0.893,0.5718,0.6338,0.5268,0.4704,-0.2978,0.0212,0.6596,0.5638,0.4788,0.367,0.2554,-0.1382,-0.3776,-0.5054,-0.6436,-0.399,-0.5638,-0.7394,-0.5106,-0.516,-0.4894,-0.3138,-0.1862,-0.0638,0.2234,0.3882,0.5532,0.851,0.8086,0.718,1,0.9308,0.5798,0.6224,0.3564,0.2554,-0.523,0.3394,0.6942,0.633,0.3884,0.1498,-0.101,-0.1866,-0.3272,-0.6698,-0.5536,-0.5474,-0.6758,-0.523,-0.4434,-0.5474,-0.5596,-0.2048,-0.052,0.003,0.052,0.578,0.7798,0.8838,0.8776,1,0.9816,0.9388,0.6514,0.7308,0.5412,0.1192,-0.579,-0.1578,0.1052,0,-0.2632,0.3158,0.3684,0.1052,-0.2632,0.0526,0.0526,-0.3158,-0.3158,-0.1578,-0.3158,-0.421,0.1052,0.3158,0.2632,0.5264,0.7894,0.8948,0.8422,0.6842,0.579,0.7368,0.6842,0.7368,0.9474,1,1,0.8948,-0.5102,-0.102,0.1428,0.4694,0.6326,0.4286,0.4286,0.1836,0.0612,-0.1836,-0.1836,-0.1836,-0.3062,-0.3062,-0.1428,-0.0612,0.102,0.347,0.5918,0.8368,0.8776,1,0.9592,0.8776,0.8776,0.9184,0.9592,0.8368,0.551,0.6326,0.551,0.4286,-0.1818,0.2954,0.5,0.6364,1,1,0.4318,0.2954,0.2272,-0.0228,-0.0228,-0.1364,-0.2272,0.0454,-0.0228,0.0454,0.25,0.3182,-0.1364,0.409,0.8182,0.7728,0.7272,0.6136,0.7272,0.8636,0.7272,0.7272,0.75,0.8182,0.6136,0.6364,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.982,-0.9696,0.0068,0.8966,0.7218,0.7988,0.7452,0.8416,0.6418,0.4132,0.3568,0.1942,-0.31,-0.8292,-0.9518,-0.9574,-0.9656,-0.9628,-0.9504,-0.9022,-0.927,-0.9352,-0.865,-0.8484,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9798,-0.9742,0.3954,0.8982,0.6096,0.504,0.5704,0.5022,0.2346,0.0714,-0.1058,-0.247,-0.545,-0.8914,-0.964,-0.968,-0.9202,-0.7436,-0.4476,-0.3308,-0.3014,-0.3616,-0.6142,-0.7486,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.568,-0.55,-0.5868,-0.64,-0.6634,-0.7068,-0.6568,-0.6168,-0.5968,-0.5934,-0.6568,-0.5534,-0.8734,-0.88,-0.86,0.4366,0.7266,0.88,0.8066,0.74,0.46,0.36,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,-0.6,-0.6,-0.6286,-0.6572,-0.8,-0.8572,-0.0286,0.7428,1,1,-0.1714,-0.8,1,1,1,-0.3142,-0.8286,-0.4,0.0858,0.0286,1,1,1,1,1,1,1,1,0.9496,0.7856,0.669,0.7094,0.7476,0.719,0.7248,0.7314,0.7636,0.7758,0.9186,0.9914,-0.6266,-0.353,-0.973,-0.361,0.6962,0.9584,0.8374,1,-0.0352,-0.0588,0.553,0.4824,0.4824,0.0352,0.8118,1,0.4588,0.3882,0.3648,0.4588,0.6942,0.5764,0.2236,0.3882,0.647,0.2706,0.4352,0.553,0.5058,0.7176,0.6,0.0824,0.7882,0.7412,0.553,0.4352,0.2236,-0.2,-0.0824,-0.5058,0.2436,-0.1932,0.7478,0.6302,0.3446,0.9664,0.8488,0.7478,0.832,0.5294,0.8152,0.5126,0.731,0.7984,0.8152,0.3278,0.3446,0.3446,0.731,0.311,0.6974,0.2436,0.3782,0.4286,0.647,0.3446,0.2774,0.4286,0.5966,0.3446,0.395,-0.1092,0.1072,0.2322,0.0892,0.5,0.5178,1,0.875,0.9108,0.7322,0.3572,0.7678,0.8036,0.6964,0.25,0.6608,0.2678,0.5178,0.3572,0.9108,0.1608,0.6428,0.5358,0.4464,0.4642,0.4108,0.4286,0.4108,0.3928,0.1608,0.2322,-0.2322,-0.7142,-0.9978,1,-1,-1,-1,-1,-1,-1,1,-0.5624,-0.6,-0.55,-0.3874,-0.35,-0.425,-0.4624,-0.275,-0.2126,0.4,0.4,0.2,0.6626,0.5624,0.6626,0.7874,0.85,0.6124,1,0.8876,0.7124,0.8624,0.8876,0.9624,0.8876,0.8,0.975,0.6874,0.7,0.65,0.475,0.3124,'8'
-0.2828,0.154,0.361,0.4758,1,0.9632,0.6046,0.4344,0.292,-0.1034,-0.2,-0.2092,-0.3656,-0.2368,0.0344,0.0436,0.2,0.3472,0.4804,0.8482,0.9034,0.9034,0.6782,0.5264,0.6552,0.5126,0.3058,0.439,0.1264,0.2368,0.315,0.292,-0.2452,0.2736,0.4246,0.5896,0.967,1,0.2784,0.1886,0.3396,0.1274,-0.415,-0.2216,-0.2076,-0.1416,-0.0236,0.2452,0.1274,0.2548,0.3726,0.618,0.901,0.8254,0.7642,0.6886,0.783,0.585,0.4716,0.4056,0.3868,0.382,0.3208,0.368,-0.1502,0.369,0.5012,0.6744,0.995,1,0.2672,0.1858,0.374,0.0484,-0.3384,-0.1196,-0.1858,-0.2112,-0.2062,-0.0586,-0.1654,0.0788,0.3792,0.3536,0.5776,0.8474,0.9034,0.8576,0.8372,0.9592,0.888,0.766,0.5572,0.5318,0.4606,0.6438,-0.0538,0.467,0.6646,0.7784,1,0.8802,0.4252,0.2634,0.3354,-0.2514,-0.3772,-0.2036,-0.4012,-0.4012,-0.7066,-0.7066,-0.5508,0.2456,0.2156,0.2994,0.7426,0.9042,0.7964,0.7306,0.958,0.9342,0.8982,0.7604,0.6168,0.4432,0.2396,0.497,-0.142,0.3354,0.6918,0.7462,0.855,0.6194,0.2508,0.142,-0.003,-0.3414,-0.4864,-0.571,-0.5348,-0.716,-0.6738,-0.559,-0.7522,-0.2024,0.0816,0.0936,0.5166,0.861,0.9034,0.6978,0.8248,1,0.9336,0.7764,0.5952,0.5408,0.3474,0.2386,-0.163,0.2984,0.8462,0.7784,0.6984,0.52,0.44,0.1508,-0.2124,-0.4154,-0.6,-0.5076,-0.5938,-0.6246,-0.5384,-0.5016,-0.6184,-0.3784,-0.163,-0.0276,0.003,0.3724,0.8276,0.8276,0.8646,0.8276,0.9876,1,0.7046,0.7046,0.717,0.6124,-0.7614,-0.0762,0.3096,0.3046,-0.0456,-0.0964,-0.2132,-0.2792,-0.5686,-0.7766,-0.67,-0.6498,-0.7564,-0.8224,-0.67,-0.6446,-0.4974,-0.264,-0.396,-0.1066,0.0508,0.269,0.736,0.7868,0.6598,0.868,1,0.9188,0.5432,0.3148,0.3046,0.2336,-0.3044,0.1304,0.3044,0.6522,0.9566,0.913,0.6956,0.4782,0.3044,0.174,-0.087,-0.087,-0.174,-0.174,0.174,0.1304,0.2608,0.3478,0.7392,1,0.913,1,1,0.6522,0.7392,0.6522,0.4348,0.5652,0.3044,0.3914,0.3478,0.3914,-0.0176,0.3684,0.5438,0.6842,1,0.9298,0.7544,0.6492,0.5088,0.3334,0.1578,0.193,0.0526,0.0526,0.1578,0.1228,0.2982,0.3684,0.4036,0.7544,0.8948,0.7894,0.7544,0.4386,0.7544,0.7544,0.5438,0.3684,0.0878,0.228,0.4386,0.4036,-0.1688,0.3506,0.5064,0.5844,0.8702,0.8182,0.3246,0.2208,0.2468,-0.1428,-0.2468,-0.1168,-0.2208,-0.1168,-0.3506,-0.3766,-0.4286,0.091,0.1948,0.4026,0.5324,0.948,0.948,0.6104,0.8962,1,0.6364,0.5844,0.6364,0.013,0.2988,0.4546,-1,-1,-1,-1,-1,-1,-1,-1,-0.9674,-0.969,-0.3546,0.617,0.8076,0.925,0.9282,0.8696,0.6284,0.6268,0.3952,0.2046,-0.0514,-0.5794,-0.8582,-0.9576,-0.9626,-0.9528,-0.9722,-0.9658,-0.9658,-0.9478,-0.912,-0.9282,-0.907,-1,-1,-1,-1,-1,-1,-1,-1,-0.9758,-0.9764,-0.2974,0.407,0.5964,0.6218,0.549,0.5306,0.1204,-0.0506,-0.1448,-0.272,-0.4276,-0.675,-0.9166,-0.9674,-0.9716,-0.9674,-0.977,-0.8958,-0.6354,-0.1294,-0.0204,-0.0406,0.3324,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.94,-0.7134,-0.6868,-0.66,-0.5734,-0.63,-0.5234,-0.6234,-0.683,-0.6458,-0.5658,-0.6086,-0.5916,-0.74,-0.8868,-0.9134,-0.8934,-0.9734,-0.85,0.6766,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,1,1,1,-0.8572,-0.8,-0.6286,-0.6572,-0.6,-0.8286,-0.6858,-0.7142,-0.0572,1,1,-0.3428,-0.8572,-0.9714,-0.3428,1,1,1,-0.6286,-0.9428,-0.8858,1,1,1,1,1,1,1,1,0.9502,0.807,0.6044,0.6044,0.5728,0.531,0.5516,0.5728,0.602,0.675,0.7838,0.9346,-0.6266,-0.2824,0.0134,0.2726,0.3956,0.5844,0.465,1,-0.5384,-0.2308,-0.1794,0.1794,0.2308,0.0256,-0.1282,0.1794,0.5384,0.7436,0.8462,0.8462,1,1,0.8462,0.5898,0.6924,0.7436,0.7436,0.7948,0.7436,0.7948,0.7436,0.4872,-0.0256,0.0256,0.1794,0.2308,0.2308,0.2308,0.0256,-0.3846,-0.1214,0.271,0.6636,0.6262,0.1214,0.0842,-0.0094,-0.1402,0.4392,0.6262,0.5888,0.6448,1,1,0.6074,0.6636,0.7384,0.7384,0.9066,0.8692,0.8878,0.8878,0.813,0.2898,-0.3832,-0.1402,0.0842,0.1588,0.3458,0.4392,0.3084,0.028,0.0108,0.4838,0.8064,0.8064,0.1612,0.0538,0.0538,0.1828,0.4624,0.8494,1,0.9784,0.785,0.871,0.699,0.613,0.5914,0.656,0.871,0.914,0.957,0.7204,0.656,0.1182,-0.4408,-0.2258,-0.4838,-0.2258,0.1612,0.1828,0.1398,-0.2044,0.894,-1,-1,1,-0.8,-1,-1,-0.8334,1,-0.8068,-0.7614,-0.659,-0.6136,-0.534,-0.5114,-0.4886,-0.284,-0.1818,0.0796,0.0454,0.2954,0.284,0.534,0.4432,0.6136,0.6022,0.6478,0.534,0.625,0.6818,0.8182,0.716,0.7614,0.7614,1,0.784,0.784,0.7046,0.659,0.5568,0.2272,'8'
-0.5218,-0.2342,0.0072,0.017,0.1618,0.4856,0.7028,1,0.983,0.9468,0.901,0.9202,0.7972,0.5508,0.3382,0.2028,0.1642,0.1764,0.1184,0.244,0.2778,0.3068,0.5508,0.6328,0.5918,0.483,0.2246,0.186,0.198,0.174,0.2198,0.2826,-0.4162,-0.0668,-0.0036,0.0644,0.3084,0.4466,0.6132,0.9554,1,0.6366,0.6084,0.7726,0.571,0.3106,0.2286,0.1582,-0.1044,0.0504,0.116,-0.0716,-0.0176,0.0738,0.1934,0.2732,0.2426,0.1676,-0.0574,-0.0386,-0.0082,0.088,0.0222,0.1724,-0.3914,-0.0512,0.0734,0.0982,0.3002,0.5326,0.6294,1,0.8644,0.9088,0.7344,0.6626,0.4772,0.3416,0.1812,0.2144,0.0402,0.1396,0.2476,0.1148,0.1702,0.3388,0.4662,0.5712,0.563,0.3914,0.231,0.2532,0.1038,0.1674,0.09,0.1038,-0.447,-0.1774,0.0372,0.0096,0.084,0.4196,0.5764,0.7304,1,0.9614,0.205,0.5378,0.4938,0.1444,0.4278,0.4112,0.1526,0.139,0.2078,0.2544,0.0426,0.2654,0.3646,0.3288,0.3204,0.3178,0.172,0.0262,-0.073,-0.0426,-0.1086,-0.0592,-0.3398,-0.0448,0.234,0.1538,0.282,0.6186,0.952,1,0.907,0.6892,0.077,0.2148,0.0738,-0.0352,0.2244,0.4712,0.468,0.6892,0.6988,0.5738,0.4326,0.4648,0.3142,0.375,0.625,0.6956,0.5,0.3494,0.1794,0.3012,0.2084,0.0512,-0.4214,0.115,0.544,0.4368,0.9886,1,0.6974,0.3754,0.4214,0,-0.3026,-0.318,-0.2606,-0.3026,-0.2108,-0.0652,-0.0804,0.3448,0.5556,0.774,0.8774,0.9348,0.8008,0.7702,0.6322,0.636,0.7394,0.7892,0.3832,0.5058,0.567,0.2068,-0.3468,0.491,0.464,0.0946,0.1216,0.0406,0.009,-0.0046,-0.3468,-0.6262,-0.6712,-0.6982,-0.581,-0.6216,-0.554,-0.4234,-0.4954,-0.2612,-0.428,0.1622,0.3604,0.7208,0.91,1,0.946,0.6576,0.6846,0.5586,0.1712,0.2252,0.1532,-0.1216,-0.6086,-0.4348,-0.0434,-0.1304,0.0434,0.4782,0.4782,0.826,1,1,0.7826,0.7392,0.826,0.5652,0.2608,0.3044,0.2174,0.174,0.2174,0.2608,0.4348,0.3478,0.6086,0.826,0.5652,0.5218,0.3914,0.174,0.2174,0.3478,0.3044,0.3478,-0.6924,-0.2308,-0.0384,-0.077,0.1538,0.3846,0.6924,1,0.9616,0.8462,0.8846,0.923,0.8846,0.4616,0.2692,0.2692,0.1538,0.1538,0.1538,0.1924,0.1924,0.3076,0.5384,0.6538,0.6538,0.423,0.3076,0.3076,0.1924,0.3076,0.3076,0.423,-0.3334,0,0.2308,0.1794,0.3846,0.641,1,1,0.5898,0.2308,0.1538,-0.1282,-0.2564,-0.0256,0.077,0.3076,0.5898,0.8462,0.6666,0.6924,0.5128,0.3334,0.077,-0.1026,0.4872,0.5898,0.5128,0.1794,0.3076,0.359,0.0256,0.2308,-1,-1,-1,-1,-1,-1,-1,-1,-0.9544,-0.962,-0.6434,0.2946,0.866,0.9418,0.7294,0.5044,0.335,0.3122,0.3046,0.292,-0.158,-0.4994,-0.6536,-0.3628,-0.3022,-0.5878,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9862,-0.9864,-0.7058,0.643,0.9306,0.376,0.1164,-0.2354,-0.1716,-0.3044,-0.4388,-0.6222,-0.8132,-0.8898,-0.9366,-0.8992,-0.8936,-0.9352,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9868,-0.9868,-0.66,-0.55,-0.594,-0.582,-0.572,-0.568,-0.58,-0.534,-0.5674,-0.602,-0.6456,-0.6892,-0.8634,-0.78,-0.8568,-0.79,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,-0.7714,-0.6572,-0.7428,-0.8,-0.8,-0.6572,-0.2,-0.1428,0.1714,-0.5714,-0.6858,-0.9714,-0.7714,-0.3428,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.2838,-0.3052,-0.3826,-0.469,-0.5306,-0.52,-0.589,-0.5124,-0.435,-0.0274,-0.5334,0.2236,-0.6644,0.025,0.6364,0.8486,0.7674,1,-0.2222,-0.0556,0.1666,0.7778,1,1,0.7778,0.6112,0.6112,0.6666,0.6112,0.8888,0.9444,0.5556,0.7778,0.7778,0.5556,0.7222,0.7222,0.3888,0.1666,-0.1112,0.2778,0.3334,0.4444,0.1666,0.1112,0.3334,0.3334,0.3334,0.1112,-0.3334,-0.0624,0.1042,0.4792,0.7292,1,0.8958,0.8124,0.2708,0.1042,0.2916,0.2292,0.875,0.8334,0.4376,0.4584,0.5208,0.4376,0.6666,0.3334,-0.0208,0.0416,-0.1458,0.0208,0.25,0.25,0.1458,0.0624,0.25,0.2084,0.3958,0.4166,-0.2708,-0.4846,-0.0516,0.1752,0.8144,1,0.6908,0.6288,0.0722,0.0722,0.1546,0.299,0.6288,0.6082,0.402,0.2784,0.3196,0.3608,0.3196,-0.031,-0.2164,-0.2784,-0.2784,-0.2372,0.031,0.134,-0.0928,-0.0104,0.0104,-0.1546,0.134,0.1134,-0.3402,0.8434,-1,-1,1,-1,-1,-1,-0.8334,-1,0.1724,0.3104,-0.0804,0.0804,-0.1034,-0.2414,-0.2184,0.1954,0.0114,0.1264,0.6552,0.6782,0.7012,0.7702,0.3794,0.4252,0.7702,1,0.7932,0.3334,0.4022,0.931,0.4022,0.2644,0.0344,-0.1954,0.0114,0.1034,-0.1034,-0.2874,-0.2414,-0.839,'9'
-0.3796,0.032,0.0056,0.131,0.2696,0.3444,0.714,0.8438,1,0.7448,0.5116,0.6568,0.5908,0.186,0.208,0.2872,0.065,0.0738,0.0518,0.0518,0.1794,0.2102,0.351,0.3136,0.0562,-0.1992,-0.2102,-0.307,-0.3466,-0.0606,0.0804,0.153,-0.2648,0.169,0.0526,0.1622,0.347,0.3676,0.6188,0.7716,1,0.8174,0.4156,0.4908,0.4908,0.0136,0.0366,0.1392,-0.0684,-0.0822,-0.0684,-0.1986,0.0754,0.2078,0.3494,0.274,-0.0136,0.0228,-0.0434,-0.1484,-0.2284,-0.1096,0.032,0.1894,-0.314,0.0998,0.0974,0.1842,0.3766,0.4826,0.6824,0.9398,1,0.6824,0.5306,0.6028,0.4224,0.2996,0.2418,0.2082,-0.0348,-0.047,-0.0108,-0.0398,0.0204,0.0614,0.1144,0.1046,0.071,-0.0422,-0.112,-0.1432,-0.2466,-0.0446,0.0012,-0.0156,-0.276,0.0964,0.1916,0.2232,0.4002,0.4954,0.5588,1,0.8758,0.926,0.58,0.535,0.6274,0.432,0.1862,0.3342,0.1704,-0.1096,0.062,0.1096,0.2576,-0.0172,0.218,0.358,0.2444,0.1334,0.1942,0.0384,-0.1414,0.1228,0.0516,-0.115,-0.2696,0.0724,0.2318,0.1972,0.3044,0.6928,0.826,1,0.6724,0.6,-0.055,-0.0782,-0.1536,-0.029,0.3014,0.3972,0.313,0.3652,0.3914,0.4956,0.455,0.2144,0.484,0.4956,0.629,0.6028,0.5072,0.1798,0.1856,0.1246,-0.116,-0.0782,-0.2626,0.0506,0.5118,0.3704,0.7408,1,0.5792,0.2256,0.2356,-0.1886,-0.5186,-0.7878,-0.7272,-0.771,-0.4814,-0.4074,-0.1616,0.2424,0.5892,0.761,0.7676,0.7272,0.7004,0.6632,0.4984,0.5656,0.4748,0.394,0.0942,0.1852,0.1246,0.2356,-0.0434,0.3696,0.0348,-0.0956,-0.2348,-0.2392,-0.374,-0.3304,-0.5956,-0.9086,-0.874,-0.8434,-0.6608,-0.7566,-0.4044,-0.5044,-0.613,-0.5218,-0.2434,0.0304,0.326,0.8696,1,0.9086,0.8,0.7348,0.7478,0.4608,-0.0782,0.013,0.0348,-0.1782,-0.5556,-0.1556,-0.2444,-0.0222,0.0666,0.1112,0.4666,0.9112,1,0.7334,0.6444,0.8222,0.7334,0.4222,0.3334,0.3334,0.2,0.2444,0.3778,0.3778,0.4222,0.6888,0.8666,0.8666,0.5112,0.2444,0.2,0.0222,-0.0666,0.3778,0.4666,0.5556,-0.5,-0.0834,-0.0834,0,0.1666,0.4166,0.6666,0.9166,1,0.7084,0.4584,0.6666,0.5834,0,0.1666,0.2084,-0.0834,0,-0.2084,0.1666,0.25,-0.25,-0.0834,-0.2084,-0.25,-0.5,-0.1666,-0.1666,-0.3334,0.0416,0.0834,0.2916,-0.2972,0.1082,0.2162,0.1892,0.3244,0.6756,0.7568,1,0.7298,0.7568,0.1352,-0.081,-0.1352,0,0.2972,0.3514,0.3244,0.3244,-0.027,0.1892,0.4054,0.1892,0.6756,0.7568,0.7568,0.7298,0.6756,-0.1082,0.4054,0.2972,-0.1892,0.1082,-1,-1,-1,-1,-1,-1,-1,-1,-0.9352,-0.8938,-0.3334,0.472,0.7316,0.8318,0.8614,0.9086,0.7374,0.7994,0.8348,0.6342,0.0678,-0.4868,-0.6696,-0.7964,-0.8702,-0.8672,-0.9174,-0.8998,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9626,-0.9576,0.0542,0.7678,0.762,0.3614,0.5232,0.4074,0.242,0.0996,-0.022,-0.2024,-0.5778,-0.8108,-0.8828,-0.9166,-0.9288,-0.9332,-0.9518,-0.9518,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9068,-0.9334,-0.7368,-0.602,-0.5884,-0.6134,-0.63,-0.6218,-0.635,-0.5184,-0.53,-0.5634,-0.6318,-0.7668,-0.51,-0.4168,-0.55,-0.14,-0.9768,-0.5168,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,-0.9142,-0.7714,-0.8,-0.8572,-0.6858,-0.4286,-0.4858,-0.2286,-0.2858,-0.6572,-0.8572,-0.8858,-0.9142,-0.8286,-0.8,-0.3428,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.9222,-0.9234,-0.9274,-0.9458,-0.9556,-0.841,-0.774,-0.757,-0.7518,-0.157,-0.5866,0.4236,0.3728,0.9382,0.6404,0.6986,0.8706,1,-0.0698,0.2558,0.3488,0.5348,1,0.907,0.814,0.6744,0.7674,0.4418,0.9534,0.8604,0.6744,0.628,0.628,0.6744,1,1,0.5814,0.3488,0.0232,0.3488,0.5814,0.721,0.5348,0.628,0.4884,0.7674,0.6744,0.6744,0.5348,-0.3488,-0.1666,0.1876,0.2708,0.75,1,0.8334,0.5416,0.6876,0.6458,0.4584,0.7708,0.7292,0.5416,0.4376,0.3542,0.75,0.7916,0.9376,0.6876,-0.3334,-0.2084,0,0.3958,0.4584,0.2708,0.2916,0.25,0.3334,0.5624,0.6876,0.1666,-0.3124,-0.109,0.091,0.2182,0.8728,1,0.8182,0.8,0.4546,0.2546,0.3818,0.4546,0.7454,0.5454,0.0364,0.109,0.3636,0.6,0.5636,0.4364,-0.0364,-0.2,0.091,0.2182,0.3272,0.0546,0.0546,0.1272,0.091,0.4182,0.4546,0.1818,0.0364,0.9778,-1,-1,1,-1,-1,-0.8,-0.8334,1,-0.632,-0.504,-0.12,-0.184,-0.2,-0.12,-0.184,0.136,0.088,-0.12,0.344,0.264,0.536,0.52,0.104,-0.072,0.152,0.536,0.472,0.616,1,0.76,0.6,-0.072,-0.04,-0.168,-0.008,-0.376,0.072,0.168,0.008,-0.424,'9'
-0.1266,0.4462,0.405,0.6424,0.4716,0.3354,-0.019,-0.1076,-0.1518,-0.1804,-0.269,-0.3798,-0.1582,-0.1518,0.0158,0,0.1804,0.769,0.7564,1,0.9178,0.5,0.6488,0.7216,0.6518,0.5032,0.4082,0.4588,0.4526,0.4936,0.5284,0.6012,-0.176,0.366,0.4104,0.6102,0.8384,0.9112,0.3882,0.3566,0.3724,0.2234,-0.0364,0.0618,0.1506,0.1696,0.1664,0.214,0.2742,0.553,0.851,1,0.7876,0.813,0.9366,0.8858,0.8542,0.7338,0.7338,0.4802,0.1854,0.477,0.4136,0.5404,-0.1826,0.2956,0.328,0.4604,1,0.971,0.8482,0.6704,0.5122,0.0404,0.0048,0.1826,0.0372,0.1018,0.2278,0.2666,0.202,0.3668,0.5896,0.6704,0.6866,0.8094,0.7124,0.735,0.777,0.9418,0.777,0.5962,0.4216,0.5056,0.315,0.1374,-0.224,0.2136,0.4018,0.5214,1,0.8632,0.894,0.4632,0.4154,0.053,-0.1316,-0.0666,0.0736,-0.0222,-0.0736,0.135,0.1452,0.2958,0.6376,0.6684,0.8564,0.894,0.8018,0.7026,0.829,0.8736,0.7914,0.4838,0.3948,0.5146,0.47,0.2684,-0.247,0.1244,0.457,0.6848,0.9054,0.9544,0.9124,0.3556,0.1838,0.1698,-0.303,-0.0894,-0.0998,-0.429,-0.1348,-0.1244,-0.1488,0.345,0.4536,0.7374,0.9544,1,0.867,0.7794,0.9404,0.8388,0.6008,0.5236,0.1944,0.1244,0.0788,-0.0754,-0.2168,0.1244,0.5824,0.771,0.8434,0.7068,0.4738,0.261,0,-0.4738,-0.6746,-0.502,-0.6466,-0.6466,-0.7872,-0.8394,-0.4016,-0.3294,0.1888,0.7148,0.9278,1,1,0.9036,0.9558,0.767,0.5864,0.514,0.1808,0.1486,0.024,0.1124,-0.0334,0.311,0.4832,0.4546,0.3972,-0.0478,-0.0096,-0.2728,-0.5934,-0.9666,-0.8038,-0.5502,-0.4976,-0.3158,-0.555,-0.8708,-0.7942,-0.1818,-0.0814,0.1818,0.5454,0.8134,0.9952,1,0.7224,0.9378,0.8468,0.6842,0.5168,0.0334,0.0288,-0.067,-0.0588,0.647,0.5882,0.2942,0.1764,-0.1764,-0.1176,-0.1764,-0.353,-0.4706,-0.4706,-0.7058,-0.4118,-0.5294,0.0588,0.353,0.5294,0.8236,0.8824,0.9412,0.5294,0.2352,0.7058,0.7648,1,0.9412,0.1176,0.647,0.5882,0.2942,0.8236,0.9412,-0.282,0.3334,0.3846,0.5384,0.3846,-0.077,-0.3846,-0.6924,-0.4358,-0.3846,-0.3334,-0.3846,-0.4872,-0.5898,-0.4872,-0.5898,0.0256,0.641,0.7948,1,0.9488,0.6924,0.7948,0.8974,0.8462,0.3334,0.5384,0.5898,0.3846,0.641,0.4872,0.3334,-0.2836,0.0448,0.4626,0.7014,0.8208,0.8508,0.6716,0.2836,0.2238,-0.015,-0.3732,-0.1044,-0.3134,-0.4926,-0.4626,-0.6716,-0.4328,-0.194,0.2538,0.791,0.9702,1,0.791,0.8508,0.7014,0.6716,0.7314,-0.0448,0.3432,0.2836,-0.1642,0.4926,-1,-1,-1,-1,-1,-0.8942,-0.9024,-0.9312,-0.963,-0.9188,-0.6836,0.583,0.9374,0.7576,0.5654,0.393,0.3426,0.1064,-0.06,-0.211,-0.4936,-0.7606,-0.848,-0.7658,-0.8306,-0.9292,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9324,-0.9366,-0.9218,-0.6792,-0.1302,-0.146,0.3578,0.6512,0.965,0.7496,0.4882,0.4014,0.2242,-0.0464,-0.3226,-0.5892,-0.8288,-0.902,-0.868,-0.8964,-0.9482,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9348,-0.9668,-0.9334,0.3766,0.8532,0.74,-0.489,-0.549,-0.612,-0.714,-0.76,-0.642,-0.706,-0.618,-0.558,-0.544,-0.648,-0.94,-0.7934,-0.78,-0.7668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3142,-0.8286,1,1,1,1,1,-0.3714,-0.5714,-0.8286,-0.8858,-0.9142,-0.8286,-0.7142,-0.6572,-0.1428,-0.2572,-0.6572,-0.9428,-0.8858,-0.3714,-1,-1,-1,-1,-1,-1,-1,0.2678,0.3252,0.3498,0.4006,0.4636,0.5168,0.6116,0.7362,0.89,0.8444,0.475,0.4534,0.4534,0.4576,0.4492,0.4736,0.5464,0.5984,0.6892,0.7094,-0.6134,0.153,-0.1684,-0.121,0.277,0.6176,0.5644,1,-0.6194,-0.4702,-0.3208,-0.388,-0.388,-0.0746,-0.0448,-0.082,0.0298,0.1344,0.2388,0.4478,0.6194,0.9552,0.8582,0.9104,0.8956,0.7462,0.9254,0.888,0.8284,0.985,1,1,0.7986,0.709,0.806,0.6418,0.4926,0.2388,0.2762,-0.3656,-0.8698,-0.7654,-0.5114,-0.4788,-0.355,-0.4332,-0.5374,-0.3094,-0.0424,0.1986,0.3094,0.3356,0.544,0.798,0.987,1,0.8632,0.8436,0.798,0.8632,0.8762,0.987,0.9934,0.9218,0.8306,0.9218,0.8698,0.7916,0.8958,0.6286,0.4984,0.0294,-0.3506,-0.2184,-0.316,-0.2758,-0.2472,-0.3276,-0.2988,-0.0058,0.1264,0.3104,0.4252,0.3448,0.5058,0.7356,0.6552,0.8448,0.7472,0.7528,0.7126,0.7586,0.7932,0.8276,0.9368,1,0.7988,0.8736,0.7758,0.7356,0.5978,0.5402,0.385,0.1782,-0.546,-1,-1,1,-1,-0.4,-0.6,-0.3666,-1,0.3044,0.3478,0.1086,0.3478,0.1086,-0.1086,-0.1304,0.174,0.2174,0.087,0.6522,0.587,0.5434,0.5652,0.2392,0.174,0.1304,0.174,0.1304,0.0218,0.913,1,0.413,-0.3478,-0.0434,-0.1522,-0.2608,-0.3044,-0.2392,-0.2174,-0.2392,-0.3696,'10'
-0.2686,0.2606,0.3618,0.4788,0.1862,0.2368,0.218,0.141,-0.0984,-0.2872,-0.3564,-0.3324,-0.3324,-0.4148,-0.3696,-0.1356,-0.258,-0.0266,0.5452,0.5878,0.3086,0.4894,0.758,0.6196,0.6728,0.9946,1,0.593,0.5452,0.649,0.7128,0.851,-0.2018,0.3334,0.5108,0.6852,0.897,0.9198,0.7168,0.5794,0.3648,0.0672,-0.073,-0.1702,-0.2132,-0.0758,0.0816,0.2446,0.299,0.4392,0.9028,0.9228,1,0.7682,0.8226,0.6766,0.6938,0.8454,0.7968,0.5108,0.3676,0.5794,0.6366,0.6852,-0.2884,0.1566,0.3792,0.4934,0.956,0.798,0.9326,0.4788,0.4202,-0.0454,-0.268,-0.5344,-0.5724,-0.5198,-0.3324,-0.0746,0.0952,0.5374,0.8214,0.9854,1,0.874,0.8506,0.7306,0.6866,0.716,0.5286,0.429,0.4524,0.426,0.3704,0.4436,-0.3506,-0.033,0.2646,0.4134,0.6224,0.8942,0.854,0.2474,0.0414,-0.0272,-0.5908,-0.7052,-0.6938,-0.5908,-0.5078,-0.3792,0.0358,0.5794,0.691,0.8856,1,0.9886,0.7596,0.5594,0.6996,0.6452,0.6108,0.6596,0.631,0.4592,0.525,0.5594,-0.3214,-0.0082,0.442,0.4682,0.5498,0.85,0.6182,-0.0244,0.0408,-0.3376,-0.416,-0.5138,-0.5694,-0.6738,-0.5954,-0.2496,-0.2366,0.2332,0.5106,0.4454,0.8042,0.7716,0.7944,0.765,0.9086,0.8956,1,0.8858,0.4552,0.204,0.2854,0.2528,-0.2344,0.0898,0.3516,0.1406,0.1876,-0.0508,-0.1054,-0.289,-0.707,-0.8632,-0.8398,-0.8398,-0.496,-0.4414,-0.5274,-0.6132,-0.6562,-0.414,-0.0234,0.418,0.5898,1,0.9882,0.8438,0.6406,0.5898,0.7774,0.7382,0.5704,0.3476,0.293,0.1172,-0.2444,0.2102,-0.517,-0.6194,-0.642,-0.3124,-0.392,-0.3522,-0.6874,-0.8466,-0.8466,-0.534,-0.3978,-0.4432,-0.358,-0.4262,-0.5568,-0.534,-0.3068,-0.392,-0.0624,0.5966,1,0.659,0.216,0.858,0.8012,0.4716,0.591,0.1648,0.0284,0.0512,-0.4736,0.3684,0.421,-0.2106,-0.1052,-0.3158,-0.1578,-0.1052,-0.1578,-0.3158,-0.2632,-0.3158,-0.579,-0.2106,-0.1578,-0.2632,-0.1052,-0.0526,0.579,0.579,0.3684,0.579,0.6316,0.7894,0.8948,1,0.7894,0.8422,0.7368,0.579,0.421,0.3684,-0.2,0.2,0.28,0.48,0.08,0,0.04,-0.08,-0.24,-0.44,-0.36,-0.56,-0.92,-0.8,-0.56,-0.28,-0.32,0.08,0.28,0.56,0.72,0.64,0.68,0.6,0.72,1,0.96,0.6,0.56,0.52,0.72,0.68,-0.1316,0.1842,0.5264,0.5,0.5264,0.4736,0.2106,0.1052,-0.2106,-0.3158,-0.3684,-0.3948,-0.3422,-0.421,-0.2632,-0.421,0,0.2106,0.579,0.6578,0.8158,0.921,0.9474,0.8422,0.9474,1,0.9736,0.5264,0.5264,0.6316,0.5,0.4474,-1,-1,-1,-1,-1,-0.8328,-0.9002,-0.93,-0.955,-0.92,-0.7752,0.4656,0.613,0.7902,0.7454,0.618,0.2734,0.221,0.0512,-0.4308,-0.7428,-0.7952,-0.9126,-0.9426,-0.955,-0.965,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.909,-0.9362,-0.6138,0.096,0.7412,0.1132,0.2296,0.4054,0.7482,0.904,0.6502,0.3286,0.1396,-0.1506,-0.5764,-0.821,-0.8696,-0.9252,-0.9504,-0.9434,-0.9566,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8968,-0.9368,0.2532,0.92,0.9666,0.82,-0.3564,-0.5182,-0.3638,-0.402,-0.5418,-0.54,-0.4784,-0.4168,-0.4518,-0.61,-0.7384,-0.7868,-0.84,-0.6934,-0.9668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,0.4286,1,1,-0.8286,-0.8572,-0.8858,-0.8572,-0.7428,-0.8286,-0.5142,-0.2858,-0.4572,-0.7142,-0.7714,-0.8858,-0.9428,-0.3428,-1,-1,-1,-1,-1,-1,-1,0.5496,0.5916,0.6284,0.6652,0.704,0.7502,0.8264,0.9192,1,0.8062,0.9606,0.9244,0.9154,0.9072,0.872,0.8552,0.8042,0.7454,0.7046,0.6962,-0.5334,0.3882,-0.0576,-0.2608,0.0738,0.4662,0.4196,1,-0.6048,-0.6586,-0.5688,-0.3294,-0.3592,-0.3832,-0.3294,-0.0658,-0.1916,0.1856,0.1556,0.2216,0.5748,0.7246,0.8502,1,0.9222,0.8982,0.6408,0.6586,0.8084,0.8084,0.7724,0.8444,0.7964,0.8922,0.8384,0.7964,0.4192,0.467,0.3234,-0.2276,-0.6496,-0.6196,-0.53,-0.453,-0.4616,-0.3846,-0.2992,-0.094,-0.0598,0.1752,0.188,0.3974,0.6154,0.594,0.7778,0.923,0.8718,0.8718,0.7436,0.7008,0.9316,0.859,0.8248,0.8462,0.906,1,0.8974,0.7948,0.5556,0.5854,0.3846,0.1452,-0.7758,-0.4766,-0.5468,-0.5094,-0.556,-0.4158,-0.271,-0.2196,0.0608,0.4066,0.3318,0.57,0.6122,0.743,0.6214,0.8644,0.9206,0.799,0.7616,0.5794,0.6916,1,0.8504,0.785,0.9206,0.8038,0.8878,0.8926,0.7336,0.57,0.4906,0.0374,-0.2498,-1,-1,1,-1,-0.4,-1,-0.1666,-1,-0.4086,-0.3914,-0.0434,0.0434,0.0434,-0.0956,0.1478,0.3218,0.1826,-0.1478,0.287,0.1478,0.1304,0.2696,0.0434,0.113,-0.0086,-0.0782,0.2,0.2174,0.8608,1,0.287,-0.0956,-0.1304,-0.2,0.0782,-0.2,-0.3044,-0.0782,-0.2,-0.826,'10'
0.2792,0.6532,0.458,-0.1544,-0.2412,-0.4742,-0.2954,-0.3334,-0.5392,-0.7452,-0.7616,-0.8428,-0.8754,-0.9404,-0.7128,-0.756,-0.2792,0.0244,0.1056,0.4146,0.496,0.6586,0.8102,1,0.9296,0.8212,0.8048,0.729,0.4634,0.523,0.4092,0.1708,-0.519,0.3334,0.3436,0.5224,0.4914,1,0.969,0.4398,0.4054,-0.031,-0.055,0.0996,0.0756,-0.0274,0.0274,0.2336,0.2372,0.5808,0.7388,0.9382,0.8832,0.6666,0.6908,0.653,0.7354,0.8248,0.6838,0.6048,0.6324,0.6804,0.5876,0.4846,-0.2378,0.319,0.2594,0.5244,0.7892,1,0.8136,0.6486,0.3594,0.4324,0.1892,0.2486,0.081,0.1,0.346,0.3108,0.4324,0.5162,0.7892,0.681,0.4622,0.646,0.827,0.7108,0.6838,0.7108,0.719,0.5756,0.5676,0.6486,0.654,0.7082,-0.2778,0.253,0.2716,0.463,0.9228,1,0.645,0.6204,0.4876,0.358,-0.1142,-0.071,0.037,-0.1112,-0.0308,0.142,0.0956,0.3396,0.5618,0.6142,0.6728,0.7314,0.713,0.5926,0.747,0.8272,0.7778,0.608,0.6112,0.7006,0.5648,0.5462,-0.2534,0.196,0.3446,0.429,1,0.9088,0.5878,0.3648,0.3852,-0.2162,-0.321,-0.1452,-0.277,-0.2972,-0.0946,-0.125,0.0102,0.375,0.4392,0.5608,0.7534,0.8952,0.8108,0.669,0.7736,0.794,0.821,0.7838,0.5338,0.5676,0.5642,0.5304,-0.2164,0.1734,0.5166,0.7816,1,0.54,0.3684,0.2592,-0.1346,-0.4346,-0.6296,-0.5438,-0.5516,-0.5672,-0.2944,-0.3216,-0.0956,0.1656,0.2826,0.31,0.6296,0.8792,0.7972,0.6842,0.9142,0.848,0.9766,0.9572,0.7582,0.5984,0.5712,0.4658,-0.1016,0.2732,0.3996,0.3724,0.4312,-0.061,-0.1874,-0.1874,-0.693,-0.991,-0.842,-0.6298,-0.517,-0.6884,-0.508,-0.5214,-0.535,-0.5846,-0.2866,-0.0428,0.0564,0.5486,0.8104,0.8058,0.8826,0.9684,1,0.842,0.3002,0.1286,-0.07,-0.228,0.8,0.95,0.5,0.3,0.35,-0.25,-0.05,-0.4,-0.45,-0.25,-0.05,-0.2,-0.2,-0.2,-0.05,0.05,-0.15,0.2,0.05,0.4,0.75,0.7,0.85,0.9,0.85,1,0.95,0.8,0.8,0.6,0.6,0.75,0.7648,0.9412,0,-0.0588,-0.4118,-0.4118,-0.0588,0.0588,0.1764,-0.1764,-0.353,-0.4706,-0.5294,-0.5294,-0.2352,0.1764,0.4118,0.353,0.1764,0.647,0.4118,0.7058,0.9412,0.8236,0.8824,0.647,0.5294,0.8824,0.647,1,0.8824,-0.0588,-0.2942,0.1176,0.3824,0.6764,1,0.647,0.5,0.353,0.1176,-0.2352,-0.3236,-0.4118,-0.5882,-0.7058,-0.353,-0.147,0.1176,0.0882,0.3236,0.647,0.6764,0.853,0.3824,0.7648,0.9706,0.647,0.8236,0.7942,0.647,0.5,0.5588,0.353,-1,-1,-1,-1,-1,-1,-0.9782,-0.9758,-0.9758,-0.9346,-0.7898,0.575,0.0442,0.1476,0.2498,0.3268,0.3418,0.213,0.1362,-0.1774,-0.4658,-0.7324,-0.745,-0.8048,-0.8048,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9722,-0.9696,-0.8498,-0.3816,-0.6102,0.0644,0.1198,0.6808,0.937,0.8678,0.7992,0.5686,0.2916,-0.0956,-0.4702,-0.779,-0.813,-0.8546,-0.865,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9798,-0.9268,-0.8968,0.2766,0.4466,-0.8046,-0.689,-0.4424,-0.594,-0.624,-0.628,-0.6,-0.612,-0.56,-0.618,-0.622,-0.9234,-0.9568,-0.9534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.0286,-0.3428,1,1,-0.0858,-0.2286,1,0.2858,-0.7428,-0.8,-0.8572,-0.8572,-0.8572,-0.2572,-0.1714,-0.5142,-0.7142,-0.8,-0.6,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9566,-0.6986,-0.4744,-0.2952,-0.0086,0.2308,0.4724,0.7124,0.739,0.745,0.7556,0.7562,0.7618,0.7368,0.7334,0.6534,0.6064,0.6622,0.7734,-0.6934,0.1412,-0.6704,-0.1316,0.2306,0.0062,-0.1502,1,-0.5828,-0.2728,-0.091,0.016,0.091,0.1764,0.3262,0.4652,0.5936,0.754,0.9572,0.9038,1,0.8396,0.8502,0.9144,0.9786,0.8502,0.8716,0.8396,0.7006,0.7112,0.8396,0.968,0.7648,0.7754,0.6578,0.5294,0.2728,0.0054,-0.3048,-0.476,-0.384,-0.087,0.1594,0.2174,0.4782,0.4058,0.2318,0.3768,0.4638,0.7174,0.7608,0.913,0.9348,0.971,0.8914,0.7102,0.8624,0.6884,0.7608,0.7536,0.7102,0.971,1,0.942,0.8696,0.6812,0.6666,0.7174,0.5724,0.4058,0.3044,0.0144,0.0678,0.0932,0.1356,0.1102,0.1186,0.0594,-0.0084,0.144,0.161,0.1526,0.5508,0.8814,0.6694,0.8728,0.7796,0.839,0.7118,0.678,0.839,0.9238,0.8728,0.7712,1,0.8728,0.8984,0.856,0.9068,0.8728,0.6186,0.483,0.2288,-0.1272,0.4336,-1,-1,1,-1,-1,-1,-0.5334,-1,0.6666,0.574,0.3334,0.3518,-0.0186,0.074,-0.1482,0.2408,0.1112,0.574,0.7038,0.9814,1,0.926,0.537,0.6112,0.3334,0.3704,0.2408,0.6852,0.6112,0.8704,0.8888,0.4814,0.2592,0.0556,-0.2038,-0.0186,0.2778,0.4814,0.3888,-0.074,'11'
-0.466,0.6702,0.7434,0.4974,0.602,0.7486,0.932,0.4084,0.2252,-0.178,-0.2828,-0.2356,-0.178,-0.2146,-0.089,-0.0786,0.1466,0.5026,0.623,0.5864,1,0.9738,0.9528,0.8796,0.9268,0.8272,0.843,0.644,0.2828,0.2932,0.2514,0.2094,-0.4132,0.3506,0.3136,0.465,0.4354,0.9816,0.893,0.273,0.1624,0.059,-0.037,0.0554,-0.059,-0.096,-0.0996,0.2952,0.2178,0.5868,0.6974,1,0.856,0.8302,0.7306,0.8376,0.7564,0.8598,0.69,0.5462,0.5794,0.5166,0.4354,0.4392,-0.2996,0.343,0.2708,0.5234,0.6788,0.9026,0.657,0.4008,0.0938,0.2202,-0.2528,-0.1914,-0.4044,-0.3936,0.0614,0.0108,0.2202,0.4476,0.8556,0.7328,0.9638,0.8736,1,0.7762,0.7654,0.7546,0.7942,0.538,0.5884,0.6426,0.6642,0.4116,-0.2434,0.3004,0.2966,0.4942,0.787,0.848,0.4562,0.3878,0.3004,0.095,-0.635,-0.4676,-0.5172,-0.4524,-0.3308,-0.2168,-0.0114,0.384,0.5134,0.7338,0.8288,1,0.9468,0.8022,0.673,0.6464,0.7148,0.6502,0.3384,0.4828,0.5704,0.4448,-0.3088,0.1124,0.3334,0.4028,0.7792,0.6114,0.4356,0.1534,0.0594,-0.4928,-0.5664,-0.5214,-0.7178,-0.685,-0.5582,-0.4684,-0.276,0.1002,0.2966,0.5338,0.726,0.9428,1,0.9222,0.5828,0.5828,0.6564,0.3006,0.1902,0.1492,0.1656,0.2352,-0.2866,0.031,0.4144,0.4598,0.5628,0.3732,0.2206,-0.2412,-0.5258,-0.765,-0.7732,-0.6164,-0.633,-0.6784,-0.3896,-0.402,-0.4186,-0.0144,0.101,0.2536,0.435,0.7774,1,0.8928,0.5794,0.703,0.534,0.402,0.1876,0.134,0.097,0.2248,-0.3888,-0.0326,0.003,-0.2166,-0.1394,-0.448,-0.4124,-0.6084,-0.8338,-0.7508,-0.7982,-0.5906,-0.5964,-0.6024,-0.2938,-0.448,-0.7508,-0.5608,-0.5846,-0.4184,-0.0624,0.2878,0.727,0.7864,0.5134,0.8872,1,0.4184,0.2284,0.1158,0.0742,-0.0564,-0.1,0.6,0.75,0.4,0.3,0.4,0.45,0.3,-0.1,-0.05,-0.1,-0.15,-0.3,-0.15,0,0.2,0.25,0.6,0.6,0.3,0.25,0.85,0.9,1,1,0.95,0.7,0.1,0.3,0.05,0.2,0.35,-0.375,0.625,0.75,0.5,0.625,0.5624,0.875,0.5624,0.25,0.0624,-0.4376,-0.5,-0.3124,-0.0624,-0.3124,-0.3124,-0.0624,0.4376,0.4376,0.8124,1,0.8124,0.5,0.4376,0.75,0.6876,0.8124,0.5624,0.5624,0.1876,-0.3124,0.25,-0.279,0.0466,0.279,0.3488,0.7442,0.5814,0.3954,0.1628,0.0698,-0.6744,-0.5814,-0.628,-0.9302,-0.6512,-0.5814,-0.4186,-0.0466,0,0.3256,0.3488,0.6744,0.9302,1,0.6976,0.5814,0.4652,0.5116,0.0698,0.1162,-0.0232,0.0698,0.3024,-1,-1,-1,-1,-0.9354,-0.9388,-0.8538,-0.7414,-0.187,0.3334,-0.051,0.3198,0.5034,0.8028,0.8776,0.8708,0.9048,0.9116,0.881,0.5,0.0714,-0.5578,-0.7346,-0.6938,-0.738,-0.8538,-0.9116,-0.9116,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.951,-0.9448,-0.584,-0.2134,-0.4602,-0.2822,-0.4944,-0.1766,0.4662,0.8368,0.8712,0.6602,0.7644,0.654,0.4504,0.097,-0.3398,-0.7276,-0.8368,-0.751,-0.8282,-0.8884,-0.924,-0.93,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.9268,-0.4134,0.55,-0.0434,-0.6034,-0.3034,-0.58,-0.3926,-0.4276,-0.4376,-0.3826,-0.44,-0.465,-0.4426,-0.3426,-0.3224,-0.509,-0.5068,-0.5,-0.4768,-0.39,-0.8068,-0.75,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,1,1,1,-0.1428,-0.5714,0.2572,0.4,-0.1428,-0.7142,-0.7714,-0.8858,-0.8286,-0.7428,-0.4572,-0.4572,-0.1714,-0.2858,-0.9142,-0.7714,-0.6572,-0.8,-0.7428,-0.8,-1,-1,-1,-1,-1,0.8468,0.874,0.899,0.924,0.954,0.9826,1,1,1,0.8362,0.693,0.6906,0.6896,0.6918,0.687,0.6718,0.6548,0.655,0.686,0.7804,-0.68,-0.0588,-0.4736,-0.4552,-0.2294,0.011,0.2674,1,-0.5362,-0.2468,0.1072,0.0424,0.1072,0.0922,0.0224,0.237,0.2868,0.3168,0.4114,0.7256,0.9552,0.96,0.7256,0.7656,0.5412,0.561,0.7108,0.631,0.9202,1,0.995,0.7806,0.6958,0.7008,0.616,0.3816,0.3766,0.3566,0.2868,-0.1422,0.1398,-0.0088,-0.31,-0.1922,-0.227,-0.2184,-0.166,-0.2576,-0.0044,0.048,0.2358,0.6026,0.5634,0.5502,0.5676,0.6856,0.4848,0.7336,0.8034,0.773,0.7642,0.8602,1,0.9738,0.655,0.5284,0.5196,0.4236,0.4062,0.3842,0.1572,0.0436,0.1648,0,-0.412,-0.1208,-0.1208,-0.2692,-0.2032,-0.2748,0.0824,0.2748,0.434,0.8902,0.6318,0.7912,0.5934,0.6978,0.8792,1,0.8682,0.8682,0.7528,0.6814,0.5714,0.6868,0.3792,0.2692,0.3022,0.522,0.4286,0.533,0.3626,-0.3132,0.6196,-1,-1,1,-0.8,-1,0.4,-0.0334,-1,-0.3504,-0.265,-0.3504,-0.2308,-0.265,-0.1794,-0.2136,-0.1112,-0.265,-0.1112,0.453,0.282,0.453,0.1794,-0.1112,-0.1794,-0.0428,0.077,0.4872,0.7778,1,0.5042,0.1966,-0.2136,-0.1112,-0.0598,-0.1624,-0.1282,-0.265,-0.1452,0.0086,-0.4358,'11'
-0.4518,-0.0874,0.126,0.2296,0.523,0.7392,1,0.8962,0.44,0.194,0.126,0.3512,0.3096,0.3038,0.7926,0.8786,0.8786,0.8638,0.5792,0.5438,0.5912,0.4786,0.5438,0.52,0.4934,0.3986,0.354,0.3156,0.2178,0.3422,0.2444,0.2118,-0.3524,0.0408,0.1014,0.2102,0.5098,0.6702,1,0.879,0.4524,0.3706,0.3888,0.4402,0.3616,0.4704,0.8608,0.8972,0.4614,0.3162,0.292,0.1952,0.3252,0.3676,0.3706,0.3676,0.289,0.2194,0.05,0.0712,-0.062,-0.0348,-0.1952,-0.1438,-0.3196,0.053,0.2206,0.2718,0.518,0.8256,0.9556,1,0.983,0.583,0.5248,0.5932,0.4838,0.4018,0.4052,0.0804,-0.0906,0.183,0.077,0.0666,0.2718,0.2308,0.5008,0.583,0.5658,0.2548,0.1282,0.1008,-0.1316,-0.0462,-0.1488,-0.135,-0.3528,-0.0362,0.2152,0.2254,0.4286,0.945,0.9586,1,0.8554,0.8726,0.7934,0.6386,0.3528,-0.05,-0.0844,0.0672,-0.2874,-0.2772,-0.2668,-0.1222,-0.0602,-0.0396,0.1428,0.3218,0.4216,0.3908,0.1326,-0.05,-0.4424,-0.1188,-0.1498,-0.2392,-0.3996,-0.1344,0.1908,0.2072,0.3798,0.8772,0.864,0.9636,1,0.8806,0.6518,0.141,-0.1276,-0.35,-0.4462,-0.6054,-0.7214,-0.602,-0.675,-0.592,-0.5688,-0.529,-0.4394,-0.33,-0.0182,0.0548,-0.0746,-0.3532,-0.486,-0.4328,-0.4958,-0.476,-0.3406,-0.0752,0.3334,0.3942,0.7096,0.982,0.9964,0.9678,1,0.656,0.319,-0.3118,-0.5232,-0.5878,-0.6094,-0.7956,-0.81,-0.785,-0.9068,-0.8136,-0.7814,-0.853,-0.6022,-0.509,-0.1434,-0.0216,0.0682,-0.1612,-0.3118,-0.4552,-0.3692,-0.38,-0.2364,0.2068,0.4824,0.4338,0.7616,0.825,1,0.7766,0.6312,0.2216,-0.0428,-0.3854,-0.3258,-0.229,-0.2552,-0.3818,-0.486,-0.4898,-0.65,-0.5754,-0.5084,-0.4898,-0.6834,-0.4414,-0.3556,-0.1098,0.177,0.0652,-0.3818,-0.1136,-0.1732,-0.2514,-0.4546,-0.0182,0.2,0.3454,0.5636,0.9636,0.9636,0.7454,0.6364,0.4182,0.3818,0.4182,0.2728,0.2728,0.7818,0.8546,1,0.8546,0.7454,0.8182,0.7818,0.6,0.8546,0.8546,0.6364,0.5272,0.6,0.5272,0.3454,0.309,0.491,0.5272,-0.3794,0.0344,0.2068,0.3448,0.6206,0.6896,1,0.8966,0.4828,0.3104,0.1034,0.4138,0.4138,0.3104,0.7242,0.7586,0.9656,0.931,0.3794,0.5518,0.6552,0.5518,0.6206,0.4828,0.3794,0.4828,0.0344,0.1724,0,0.069,0.1724,0.1724,-0.326,0,0.2392,0.2608,0.4348,0.8914,0.9566,1,0.8696,0.6956,0.7826,0.7174,0.5218,0.2174,0.1304,0.1086,-0.087,-0.0218,-0.2826,-0.0218,0.1956,0.0434,0.2392,0.5652,0.3044,0.3696,0.174,0.087,-0.2174,-0.0218,-0.0652,0.0434,-1,-1,-1,-1,-1,-1,-1,-1,-0.974,-0.9818,-0.5286,0.2982,0.694,0.9402,0.858,0.6758,0.5494,0.4166,0.254,0.1106,-0.1628,-0.5456,-0.7748,-0.8816,-0.879,-0.8802,-0.746,-0.8294,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9852,-0.9866,-0.4432,0.4684,0.8876,0.871,0.4376,0.3986,0.489,0.4166,0.0998,-0.144,-0.513,-0.7752,-0.8926,-0.9408,-0.9468,-0.9486,-0.9202,-0.9468,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9068,-0.9668,-0.8034,-0.5826,-0.62,-0.645,-0.665,-0.6676,-0.6512,-0.6912,-0.6934,-0.7024,-0.7156,-0.7156,-0.7268,-0.58,-0.6668,-0.5734,-0.9368,-0.98,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6572,1,1,1,-0.3714,-0.5142,-0.6572,-0.5142,-0.4572,-0.6858,-0.7714,-0.4,-0.4858,-0.6,-0.7142,-0.9142,-0.9428,-0.8286,-0.5714,-0.4,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.424,-0.4172,-0.438,-0.508,-0.557,-0.683,-0.7572,-0.6928,-0.4912,-0.1908,-0.56,-0.0118,-0.178,0.0834,0.4496,0.6654,0.955,1,-0.4376,0.3124,0.4376,0.625,0.625,0.3124,0.3124,0.5,0.625,0.5624,0.625,0.5624,0.5624,0.5,0.5,0.625,0.6876,0.875,0.875,1,0.875,0.75,0.625,0.6876,0.5624,0.5,0.5,0.25,0.25,0.1876,0,-0.625,-0.2784,0.1752,0.6702,0.9588,0.7526,0.402,0.3814,0.7114,0.9382,0.8144,0.7732,0.7732,0.7732,0.6494,0.5052,0.5258,0.567,0.6702,1,0.8762,0.4846,0.2372,0.1958,0.2784,0.2372,0.1134,0.1752,0.134,0.3402,0.3402,-0.134,-0.3196,-0.1072,0.2858,0.8392,0.9108,0.8036,0.4108,0.375,0.875,1,0.8928,0.7142,0.9108,0.7142,0.6964,0.4642,0.5178,0.5178,0.7322,1,0.8572,0.25,-0.1072,-0.0714,0.0536,0.3214,0.1428,0.1428,-0.0358,0.0358,0.1786,-0.125,-0.25,0.653,-1,-1,1,-0.8,-1,-0.8,-0.8334,-1,-0.1686,0.0786,0.3932,0.4606,0.528,0.528,0.4158,0.3932,0.4382,0.2584,0.2584,0.3708,0.191,0.2808,0.2584,0.1012,0.4382,0.9776,1,0.3708,0.146,0.1686,0.0562,0.6404,0.4606,0.4158,0.8876,0.8202,0.6404,0.3932,0.4382,0.0112,'12'
-0.315,0.0856,0.156,0.2202,0.5076,0.8288,1,0.6942,0.4678,0.2416,0.11,0.0612,-0.0184,0.0582,0.3762,0.5076,0.4862,0.5626,0.5626,0.2844,0.263,0.318,0.3426,0.3944,0.5626,0.529,0.2722,0.1712,0.1376,0.0948,0.1804,0.1346,-0.1444,0.344,0.2692,0.3762,0.647,0.7612,1,0.7076,0.697,0.2656,0.1516,0.0338,0.073,0.319,0.7326,0.5794,0.2406,0.3868,0.4082,0.5794,0.4438,0.1088,0.7148,0.729,0.4796,0.3582,0.0374,-0.1586,-0.1302,-0.009,0.2122,0.319,-0.2096,0.2096,0.22,0.2818,0.5704,0.8592,0.9862,1,0.945,0.6392,0.433,0.4604,0.055,-0.0412,0.1238,-0.275,-0.354,-0.1512,-0.1924,-0.1272,-0.024,-0.0172,0.158,0.2164,0.2474,0.165,-0.1408,-0.3986,-0.378,-0.0894,0.024,-0.0378,-0.281,0.0646,0.1692,0.246,0.4694,0.9442,0.9268,1,0.8394,0.8184,0.3578,0.082,-0.2426,-0.7382,-0.5148,-0.4102,-0.7836,-0.801,-0.6788,-0.5254,-0.6336,-0.2636,0.0052,-0.075,0.2774,0.3648,0.1484,-0.4904,-0.3508,-0.2844,-0.2774,-0.2706,-0.3474,-0.0598,0.1794,0.2892,0.4668,0.8998,0.929,1,0.8094,0.6252,0.0146,-0.609,-0.8514,-0.903,-0.803,-0.748,-0.8578,-0.8804,-0.777,-0.7416,-0.6252,-0.7286,-0.4928,-0.4088,-0.1212,0.034,-0.0016,-0.5056,-0.3732,-0.2794,-0.3248,-0.105,-0.339,-0.0788,0.3014,0.4246,0.7672,0.9554,1,0.9006,0.75,0.0788,-0.3768,-0.7636,-0.6644,-0.9932,-0.7466,-0.7842,-0.6746,-0.7636,-0.8732,-0.8014,-0.8254,-0.702,-0.4966,-0.5446,-0.322,-0.072,-0.0514,-0.2124,-0.548,-0.4658,-0.4144,-0.3458,-0.1946,0.062,0.4602,0.5664,0.7744,0.8628,1,0.8054,0.6284,0.2124,-0.4778,-0.7964,-0.7964,-0.7168,-0.553,-0.6548,-0.7522,-0.7478,-0.8362,-0.9956,-0.8452,-0.8274,-0.739,-0.8628,-0.6416,-0.3318,-0.0664,-0.2036,-0.5884,-0.6194,-0.6062,-0.6504,-0.4546,-0.1364,0.0454,0.091,0.5,0.9546,1,0.7272,0.5454,0.409,0.2272,0.2728,0.1364,0.2272,0.591,0.7728,0.8636,0.8636,0.8636,0.5454,0.6364,0.5454,0.5454,0.591,0.7728,0.7728,0.591,0.409,0.1818,0.2728,0.2272,0,-0.3334,0.1112,0.1112,0.3334,0.5112,0.8666,1,0.5556,0.4222,0.2,0.0222,0.1112,0.1556,0.2888,0.5112,0.8222,0.9112,0.9112,0.7778,0.6444,0.6444,0.5112,0.2888,0.4666,0.6,0.6,0.4222,0.4222,0.4666,0.3334,0.3334,0.4222,-0.2106,0.2106,0.1842,0.2632,0.579,0.7632,1,0.8158,0.8422,0.4736,0.2894,0.079,0.1052,0.1578,0.421,0.2368,-0.3684,0.2632,0.1842,0.2106,0,0.0526,0.6052,0.5,0.421,0.0264,0,-0.3684,-0.1842,-0.1842,0.2106,0.2894,-1,-1,-1,-1,-1,-1,-1,-1,-0.973,-0.9764,-0.281,0.5628,0.7822,0.6422,0.6506,0.4784,0.4464,0.4026,0.2658,0.0886,-0.1746,-0.5696,-0.8194,-0.8126,-0.762,-0.806,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9804,-0.9788,-0.3158,0.4278,0.461,0.0158,0.2382,0.191,0.1874,0.0748,-0.0838,-0.2952,-0.4958,-0.7818,-0.9166,-0.9218,-0.9036,-0.913,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.98,-0.75,-0.64,-0.54,-0.62,-0.654,-0.596,-0.698,-0.67,-0.69,-0.7,-0.732,-0.86,-0.8468,-0.8,-0.8668,-0.86,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,1,1,1,-0.8,-0.5428,-0.4858,-0.7428,-0.7428,-0.6858,-0.8572,-0.8286,-0.6858,-0.4572,-0.6286,-0.9428,-0.9428,-0.6858,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.0212,-0.0254,-0.0214,-0.0262,-0.0442,-0.1062,-0.157,-0.2142,-0.1042,0.145,-0.5466,0.153,-0.191,0.3988,0.3584,0.2194,1,1,-0.1304,0.0434,0.5652,0.6956,0.6086,0.3478,0.3044,0.7392,0.913,0.9566,1,0.8696,1,1,0.6522,0.6956,0.6522,0.7826,0.8696,0.7392,0.6086,0.6086,0.3044,-0.2174,0,-0.0434,-0.0434,-0.087,-0.1304,0.087,0.0434,-0.3914,0.0844,0.3734,0.735,0.9278,0.6868,0.3734,0.253,0.759,0.8314,0.8796,1,0.5904,0.976,0.8554,0.2048,0.518,0.518,0.518,0.9036,0.6868,0.6868,0.8314,0.229,-0.0362,-0.1084,0.0362,-0.0844,-0.0602,0.012,0.3012,0.3012,-0.518,-0.0588,0.255,0.7058,1,0.6862,0.2746,0.2352,0.6862,0.804,0.745,0.7058,0.5882,0.3726,0.549,0.255,0.2156,0.3334,0.5294,0.6078,0.6274,0.4118,0.255,0.0784,0.0588,-0.353,-0.3334,-0.3922,-0.2746,-0.1372,0.1372,0.4118,0.196,0.3164,-1,-1,1,-1,-1,-0.2,-0.8334,-1,0.8888,0.8056,-0.0556,0.5834,0.6112,0.4444,0.5,0.6388,0.1112,-0.1112,0.0834,0.1666,-0.2222,0.5278,0.4166,0.2778,0.1388,0.9166,1,0.1112,-0.0278,-0.1666,0.2222,0.1944,0.5834,0.6666,0.6944,1,0.7778,0.8056,0.5,-0.6666,'12'
-0.0922,0.5216,0.4178,0.6138,0.8704,1,0.8472,0.8674,0.1182,-0.0606,-0.3804,-0.1816,0.0058,-0.1528,-0.023,0.2652,0.2968,0.807,0.83,0.879,0.7492,0.6024,0.6542,0.6312,0.5734,0.6456,0.66,0.5936,0.3574,0.2766,0.4122,0.49,0.0044,0.6186,0.5022,0.636,0.642,0.7642,0.9826,1,0.3216,0.2344,-0.0044,-0.016,0.1966,-0.0888,-0.0714,0.243,0.2548,0.703,0.6216,0.5254,0.4352,0.5896,0.345,0.3362,0.997,0.9796,0.444,0.473,0.3392,0.3624,0.444,0.1092,0.0526,0.6878,0.4982,0.6842,0.5684,0.5438,1,0.8,0.7964,0.5438,0.586,0.3508,0.3088,0.4772,0.4596,0.572,0.0736,0.4632,0.6948,0.435,0.1404,0.172,0.179,0.3754,0.6702,0.8,0.5088,0.4106,0.2036,0.1298,0.3018,0.1122,0.0562,0.6386,0.755,0.7992,0.3494,0.7792,0.9156,1,0.8796,0.518,0.4176,0.4378,0.6948,0.518,-0.1406,0.1366,-0.0562,0.0522,0.4378,0.237,0.1808,-0.1366,-0.5742,-0.269,-0.0804,-0.1686,-0.482,-0.1486,-0.265,-0.4298,-0.273,-0.2932,0.3306,0.8442,1,1,0.4778,0.1242,-0.3222,-0.3768,-0.2042,-0.1622,-0.2716,-0.3348,-0.1536,-0.3726,-0.621,-0.5242,-0.6968,0.099,0.3178,0.1116,0.1916,-0.0232,-0.2084,-0.4568,-0.5116,-0.6464,-0.8822,-0.9664,-0.9874,-0.7474,-0.381,-0.04,0.28,0.68,1,0.8442,0.0694,-0.6548,-0.7264,-0.6632,-0.7348,-0.7306,-0.6294,-0.6632,-0.4736,-0.5706,-0.6464,-0.6968,-0.6084,-0.5158,-0.2842,-0.0652,0.2168,0.1832,0.1368,-0.0778,-0.5158,-0.541,-0.7642,-0.9284,-0.8274,-0.8778,-0.7516,-0.2884,0.5088,1,0.595,0.4026,-0.4784,-0.3874,-0.7266,-0.6962,-0.6608,-0.367,-0.3368,-0.3064,-0.1342,-0.0278,0.0178,-0.1342,-0.3164,0.114,0.3822,0.3874,0.4126,0.3368,-0.119,-0.119,-0.038,0.0076,-0.3266,-0.2202,-0.3518,-0.4632,-0.3316,-0.0936,-0.0434,0.4782,0.4782,0.5652,0.913,1,0.7392,0.7826,0.3914,0.174,-0.2174,-0.087,-0.1304,-0.2174,-0.087,0.2174,0.4348,0.6086,0.7826,0.9566,0.913,0.913,0.7392,0.6956,0.6522,0.6522,0.6086,0.5218,0.3914,0.2608,0.5652,0.6522,-0.0588,0.451,0.451,0.5686,0.804,0.8432,0.7648,0.7648,0.3334,0.1372,-0.3334,-0.0196,0.0588,0.0588,0.1764,0.4118,0.4902,0.6862,0.8824,1,0.804,0.5294,0.647,0.6078,0.3334,0.5294,0.0196,0.1372,0.2942,0.1372,0.2156,0.3334,0.3214,0.8214,1,0.9642,0.3572,0.9642,0.9642,0.8572,0.5714,0.5714,0.3214,0.25,0.3214,0.1428,-0.1428,0.2858,-0.0358,-0.3572,0.6072,0.5,0.75,0.25,-0.4286,0.1786,0.0358,0.0358,-0.3214,-0.6786,-0.9286,-0.5714,-0.8572,-0.5714,-1,-1,-1,-1,-1,-1,-1,-1,-0.9542,-0.9522,-0.3428,0.5342,0.9456,0.9696,0.8476,0.7106,0.7432,0.382,0.26,0.099,-0.334,-0.6606,-0.8042,-0.9042,-0.9522,-0.9586,-0.9542,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9524,-0.9466,0.1492,0.7124,0.8728,0.7682,0.521,0.4426,0.4818,-0.0398,-0.1848,-0.3036,-0.5806,-0.786,-0.8574,-0.9168,-0.9478,-0.949,-0.9418,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.92,-0.44,-0.5856,-0.6038,-0.64,-0.6964,-0.671,-0.7182,-0.8568,-0.8868,-0.855,-0.88,-0.8934,-0.9134,-0.7334,-0.9468,-0.8134,-0.9534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,-0.7714,-0.7428,-0.7428,-0.7142,0,0.5142,-1,-0.8572,-0.7428,-0.9142,-0.8858,-0.8858,-0.9428,-0.9714,-0.9428,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,0.987,0.2936,0.4636,0.4468,0.4328,0.4826,0.4858,0.4846,0.4628,0.4036,0.0926,-0.1388,-0.6,0.3648,0.457,0.4842,0.5674,0.8028,0.9442,1,-0.279,-0.093,0.2326,0.372,0.186,0.3256,0.3256,0.3256,0.5814,0.907,0.9534,0.907,0.9534,1,0.814,0.6512,0.7442,0.814,0.8372,0.6046,0.3954,0.2094,-0.0232,-0.3488,-0.4186,0.0232,-0.0698,-0.0698,-0.3024,0.093,-0.5348,-0.6744,-0.2978,0.0426,0.4256,0.4894,0.0852,-0.1276,-0.0212,-0.0638,0.2978,0.8936,0.8298,0.766,1,0.9574,0.851,0.617,0.7022,0.766,0.8298,0.5532,0.3192,0.0852,-0.0212,0.0426,-0.0638,-0.0212,0.0426,-0.0426,0.0852,0.1276,-0.1914,-0.383,0.2836,0.5374,0.8806,1,0.0746,-0.2388,-0.388,-0.194,0.2538,0.9104,0.9254,0.791,0.7612,0.985,0.7762,0.4328,0.5522,0.6716,0.8508,0.5672,0.4478,0.1792,0.0448,0.0298,-0.194,0.0448,0.0746,0.1344,0.1194,0.1642,0.2836,0.0746,1,-1,-1,1,-1,-1,-0.8,-0.7666,-1,0.2602,0.4246,0.7534,0.2602,0.6438,0.5068,0.9452,1,0.9452,0.6438,1,0.863,0.452,0.5342,0.5342,0.8082,0.8082,0.5342,0.6438,0.7808,0.6986,0.3698,0.0136,0.6712,0.589,0.6438,0.178,-0.2602,0.3972,0.6986,-0.0136,-0.178,'13'
-0.4786,0.062,-0.0452,0.1358,0.5858,0.6976,0.7858,0.8024,0.2928,0.2858,0.0642,-0.0048,0.031,0.031,0.069,0.2834,0.3548,0.6548,0.812,0.9334,0.9238,0.8166,0.7666,0.819,0.9548,1,0.962,0.9048,0.6428,0.631,0.6834,0.5976,-0.248,0.3642,0.2532,0.3088,0.665,0.7704,0.9788,0.9842,0.6148,0.504,0.372,0.1398,0.1794,0.0844,0.1214,0.5726,0.6226,0.686,0.7388,0.963,0.8628,0.5726,0.665,0.6966,0.8338,1,0.913,0.8284,0.6122,0.5278,0.6412,0.5726,-0.324,0.1248,0.0644,0.1602,0.5032,0.5208,0.725,0.9798,1,0.6344,0.5032,0.3972,0.5712,0.5536,0.261,0.4074,0.4704,0.3014,0.3746,0.324,0.2988,0.082,0.2206,0.4982,0.4552,0.5082,0.4704,0.246,0.1702,0.3872,0.3594,0.2912,-0.082,0.44,0.7866,0.7676,0.5886,0.9542,1,0.8172,0.8096,0.8552,0.4514,0.2724,0.12,-0.101,-0.1162,-0.078,0.12,0.3942,0.4362,0.4514,0.5124,0.558,0.5314,0.6114,0.2762,-0.002,-0.2762,-0.4248,-0.5124,-0.44,-0.1924,0.3334,-0.0694,0.3846,1,0.9062,0.3134,-0.0994,-0.2232,-0.0018,0.5948,0.3958,-0.1182,-0.5046,-0.2946,-0.3772,-0.4296,-0.486,-0.272,0.077,0.1482,0.167,0.3808,0.2682,0.2196,0.2382,0.0168,-0.6586,-0.8836,-0.94,-0.651,-0.546,-0.4222,0.1332,-0.0902,0.3582,1,0.833,-0.367,-0.0242,0.2836,0.3538,0.2264,0.2792,0.3714,0.433,0.6,0.5428,0.3846,0.301,0.0858,0.367,0.5692,0.578,0.5604,-0.0902,-0.2308,-0.0682,0.0462,0.2132,0.222,0.1076,0.1736,0.3582,0.3538,0.6132,-0.1612,0.318,-0.235,-0.4056,-0.7374,-0.2304,0.083,0.2904,0.364,0.3272,0.4608,0.7972,1,0.977,0.9448,0.576,0.4286,0.4378,0.6866,0.4884,0.3502,-0.0922,-0.0876,0.0876,0.212,0.6406,0.8434,0.8018,0.7696,0.8342,0.9448,0.6452,-0.7022,-0.3192,-0.2766,-0.1064,0.4468,0.4468,0.617,0.532,0.234,0.1914,0.149,0.0638,-0.0638,-0.0212,0.0638,0.2766,0.3618,0.6596,0.8724,0.9574,0.9574,0.9574,0.617,0.7872,0.8724,1,0.9574,0.8724,0.7022,0.617,0.617,0.617,-0.619,-0.1428,-0.3334,0.0476,0.4762,0.619,0.5714,0.5714,0.1904,0.0952,-0.3334,-0.4762,-0.0952,-0.0952,-0.5238,0,0.0476,0,0.5238,0.8096,0.8096,0.5714,0.6666,0.619,0.6666,0.8572,1,0.762,0.3334,0.6666,0.7142,0.0476,-0.3334,0.0278,0.25,0.25,0.4166,1,0.9722,0.9444,0.6944,0.75,0.5834,0.5278,0.3334,-0.0278,-0.1666,-0.1666,0.1112,0.0556,0.1112,0.2778,0.2778,0.1944,-0.1944,0.0278,0.1944,0.0556,-0.2222,-0.2778,-0.3056,-0.4444,-0.4444,0.2778,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.941,-0.5494,0.5452,0.8736,0.8358,0.5706,0.4736,0.2632,0.2842,0.2,-0.0948,-0.4948,-0.7348,-0.899,-0.9116,-0.9242,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9836,-0.9862,-0.5898,0.0922,-0.3832,-0.4704,-0.5004,-0.5132,-0.7682,-0.8498,-0.866,-0.8828,-0.9116,-0.9434,-0.9686,-0.976,-0.9806,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9068,-0.9468,-0.52,-0.1584,-0.2618,-0.3448,-0.277,-0.5494,-0.677,-0.7878,-0.8278,-0.6816,-0.3354,-0.32,-0.48,-0.6934,-0.8668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,-0.5428,-0.8,-0.8,0.4,1,-0.9714,-0.8,0.4286,-0.5142,-0.6572,-0.7142,-0.7428,-0.6572,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.8016,0.8434,0.8504,0.8462,0.804,0.7732,0.745,0.6852,0.5236,0.2266,-0.1028,-0.5466,0.5412,-0.4468,-0.2098,-0.376,-0.455,1,1,-0.1526,-0.0508,0.1526,0.2204,0.2542,0.1864,0.2882,0.3898,0.5932,0.8644,0.9322,0.9662,1,1,0.9322,0.8644,0.8644,0.8984,0.9322,0.9322,0.8644,0.661,0.322,0.1526,0.0508,0.0508,0.1526,0.0848,0.2204,0.1186,0.0848,-0.2204,-0.6448,-0.2336,0.1214,0.215,0.1402,-0.0842,0.1028,0.0842,0.3458,0.701,1,0.813,0.7944,0.9252,0.7384,0.6074,0.6822,0.8318,0.8318,0.8692,0.7758,0.6074,0.2336,-0.0842,-0.1402,-0.0654,-0.0094,0.0468,0.2336,0.2336,0.1776,-0.3644,-0.1682,0.1858,0.4868,0.6638,0.4514,0.239,0.1858,0.2566,0.6284,0.8408,0.9646,0.8584,0.8762,0.8762,0.8054,0.6992,0.6814,0.9116,0.8054,1,0.8762,0.7876,0.4514,0.1504,0.3098,0.2744,0.2036,0.2744,0.4868,0.3806,0.2212,-0.0442,0.1348,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.5714,-0.5,-0.381,-0.0714,-0.0238,0.238,0.3334,0.5238,0.2142,0.5952,0.4762,-0.1428,0.238,0.9048,0.7142,0.7142,0.6904,0.619,0.0952,0.2858,0.4524,0.6666,0.5714,0.9286,0.6428,0.1904,0.0238,0.5714,0.262,0.738,1,-0.119,'13'
-0.2184,0.3426,0.2676,0.5354,0.8372,1,0.7752,0.6146,0.2698,0.1862,-0.075,-0.06,-0.2312,-0.2162,0.0064,0.1114,0.1948,0.3876,0.5182,0.6874,0.7044,0.651,0.4604,0.5374,0.5204,0.5738,0.5868,0.394,0.2078,0.319,0.3876,0.3234,-0.05,0.5976,0.5358,0.6262,0.6952,0.9476,0.8214,1,0.6858,0.2,0.062,0.138,-0.0048,0,0.1904,0.1714,0.2166,0.1666,0.4834,0.4214,0.4642,0.369,0.5762,0.4666,0.6142,0.7,0.819,0.4142,0.2142,0.012,0.1548,0.2524,-0.0958,0.525,0.3766,0.533,0.4736,0.5492,1,0.911,0.5168,0.2362,0.2226,0.0256,0.0554,-0.0148,0.193,0.3118,0.3388,0.6816,0.7544,0.6464,0.506,0.452,0.328,0.39,0.4224,0.4062,0.4844,0.452,0.0418,0.1578,0.1956,0.1012,0.1392,0.7468,0.7902,0.8518,0.4142,0.859,1,0.7468,0.642,0.085,-0.0994,-0.2188,0.1104,-0.0632,0.3634,0.8988,0.801,0.6202,0.642,0.226,0.0452,-0.067,-0.3128,-0.132,0.103,0.6384,0.83,0.6022,0.0308,0.0162,-0.255,-0.3888,0.3158,0.7414,1,0.9542,0.5188,0.0672,-0.09,0.031,-0.1292,-0.2734,-0.676,-0.9084,-0.7184,-0.4468,-0.0278,0.0704,-0.257,-0.077,0.0278,0.0802,0.1358,-0.0736,-0.3126,-0.2078,0.0638,0.185,0.1456,-0.149,-0.3158,-0.7086,-0.8102,-0.8986,0.1806,0.6106,1,0.7932,-0.0548,-0.2374,-0.2454,-0.217,-0.209,-0.4158,-0.6024,-0.6796,-0.647,-0.578,-0.3062,-0.1156,-0.4726,0.0588,0.1116,-0.0548,-0.3144,-0.5092,-0.781,-0.6958,-0.3226,0.0102,0.14,-0.0426,-0.432,-0.9594,-0.8824,-0.716,0.1056,0.6462,0.1598,-0.0466,-0.7886,-0.1302,0.086,0.2186,-0.2432,-0.3808,-0.4348,-0.3366,-0.0222,-0.0024,0.4202,0.4348,0.1008,0.2482,0.3316,0.0614,0.0516,-0.5528,-0.6756,-0.312,-0.258,0.2138,1,0.8624,-0.091,-0.1696,-0.3858,-0.3514,-0.3158,0.2106,0.1052,0.5264,1,1,0.6842,0.6842,0.3158,0.1578,-0.4736,-0.4736,-0.421,-0.3158,-0.2632,0.0526,0.0526,0.579,0.421,0.6842,0.3158,0.5264,0.3158,0.3158,0.6842,0.579,0.6316,0.579,0,-0.3158,0.1052,0.2632,-0.35,0.2,0.1,0.45,0.9,1,0.5,0.45,0.2,0.05,-0.3,-0.45,-0.4,-0.2,-0.15,0.2,0.15,0.7,0.65,0.95,0.95,0.75,0.75,0.7,0.7,0.55,0.6,0.4,0.3,0.3,0.4,0.35,0.1186,0.5932,0.695,0.661,0.0508,0.695,0.6272,0.356,0.2204,-0.1186,-0.4238,-0.0848,0.0848,-0.322,0.5932,1,0.7628,0.2542,0.4238,0.2882,-0.017,-0.322,-0.7288,-0.2542,0.0848,0.2882,0.9662,0.8306,-0.1526,0.0848,0.0508,-0.356,-1,-1,-1,-1,-1,-1,-1,-1,-0.9832,-0.974,-0.5282,0.7222,0.7648,0.7862,0.7114,0.5236,0.3252,0.0626,-0.003,-0.1374,-0.481,-0.768,-0.9236,-0.9634,-0.9726,-0.9726,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9726,-0.9746,-0.2078,0.715,0.6088,0.5012,0.381,0.1108,-0.0264,-0.4252,-0.4696,-0.5146,-0.7004,-0.8474,-0.9338,-0.9584,-0.9642,-0.9684,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-1,-0.52,-0.6708,-0.6708,-0.7048,-0.637,-0.6662,-0.697,-0.8878,-0.834,-0.8062,-0.8586,-0.773,-0.6368,-0.86,-0.8,-0.8468,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,-0.8286,-0.8858,-0.8572,-0.8286,1,1,-0.9142,0.8,-0.7714,-0.7714,-0.6286,-0.7142,-0.8572,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.5626,0.421,0.4826,0.514,0.5642,0.5638,0.5496,0.5764,0.5222,0.3416,0.133,-0.5866,0.5882,-0.044,0.3352,0.3992,0.9234,0.9296,1,-0.3474,0.0316,0.4106,0.3684,0.2422,0.1368,0.3684,0.3052,0.5158,0.8948,1,0.9578,1,0.979,0.8736,0.7264,0.7684,0.9368,0.9368,0.8948,0.6842,0.4106,0.221,0.179,0.2,-0.1158,-0.179,0.0106,-0.0948,-0.179,-0.1578,-0.4948,-0.5744,-0.1914,0.2766,0.3404,0.1702,-0.1914,-0.1914,0.149,0.234,0.8298,1,0.7234,0.8086,0.851,0.6596,0.532,0.468,0.7022,0.7872,0.7022,0.468,0.2128,-0.0426,0.0426,0,-0.1702,-0.1702,-0.149,0,0.0212,-0.1064,-0.4256,0.165,0.5534,0.903,0.903,0.4368,-0.0486,-0.0486,0.1262,0.5146,0.9612,1,0.6894,0.7282,0.767,0.631,0.4564,0.5146,0.4952,0.7088,0.534,0.5728,0.1262,0.165,0.1844,0.2428,0.165,0.0098,-0.068,0.4758,0.4368,0.4368,0.1844,0.7896,-1,-1,1,-1,-1,-1,-0.8,-1,0.1368,0.1578,-0.3474,0.1578,0.0316,0.2842,0.3264,0.621,0.6,0.3052,0.4736,0.1578,0.1578,0.7684,0.621,0.2422,0.2,0.2422,0.179,1,1,0.7052,0.4106,0.7052,0.579,0.4106,-0.0736,0.2842,0.0736,0.5158,0.5368,0.2842,'14'
-0.611,-0.0478,-0.0954,0.0764,0.4224,0.5848,0.5226,0.5346,0.0596,0.0812,-0.1958,-0.2816,-0.0214,-0.1122,-0.0836,-0.1622,-0.0144,0.4916,0.6062,0.8664,1,0.9094,0.8568,0.7064,0.7398,0.7208,0.7304,0.8258,0.7708,0.642,0.58,0.6182,-0.338,0.236,0.1388,0.1934,0.4828,0.6204,0.7224,0.7818,0.5706,0.5398,0.1768,0.0748,0.2716,0.089,0.2218,0.0748,0.1602,0.6964,0.7296,1,0.898,0.7154,0.6276,0.6774,0.72,0.822,0.879,0.8386,0.713,0.6346,0.6868,0.599,-0.292,0.2114,0.0666,0.1104,0.4138,0.4436,0.761,0.7058,0.8666,0.616,0.584,0.5932,0.554,0.4942,0.6,0.823,1,0.9472,0.9058,0.8988,0.7978,0.4736,0.6666,0.7586,0.8,0.8828,0.9816,0.8552,0.6758,0.5862,0.5656,0.4828,-0.32,0.038,0.1966,0.1872,0.2062,0.7014,0.718,0.8626,0.7606,0.7322,0.365,0.4312,0.5,0.519,0.628,1,0.9858,0.7986,0.6374,0.4716,0.5568,0.2962,0.2394,0.5546,0.4574,0.5688,0.6966,0.692,0.6232,0.4644,0.5094,0.3508,-0.1704,0.2918,1,0.846,-0.1606,0.095,-0.0984,0.082,0.2688,-0.1214,-0.4262,-0.423,-0.364,-0.1508,0.0852,0.4394,0.3114,0.141,0.305,0.2722,0.4,0.0688,-0.154,-0.095,-0.1606,-0.0196,0.4688,0.5704,0.1378,-0.2426,-0.1902,-0.3672,-0.167,0.4964,0.9612,0.6708,-0.0508,0.2542,0.2832,0.2542,0.3076,0.0702,-0.2204,-0.0556,0.046,-0.0896,0.5352,0.6272,0.5448,0.23,0.3318,0.23,0.4866,0.259,-0.0024,-0.3268,-0.0122,0.4188,1,0.908,0.5884,0.4382,0.138,0.0122,-0.5066,-0.119,-0.6036,-0.674,-0.7886,-0.4846,-0.2026,-0.1366,-0.2158,-0.0748,-0.1762,-0.2776,0.0264,0.0792,0.6388,0.6564,0.3436,0.4538,0.4714,0.2952,0,-0.2688,-0.4846,-0.2864,-0.0308,0.3524,0.9252,1,0.8678,0.4582,0.4846,0.4494,-0.7916,-0.6666,-0.2916,-0.1666,0.2916,0.2084,0.1666,-0.0416,-0.0416,0,0,-0.5,-0.0416,-0.1666,0.1666,0.2916,0,0.4584,0.375,0.7916,1,0.875,0.8334,0.9166,0.5416,0.9166,0.9166,0.7916,0.8334,0.375,0.5834,0.5416,-0.75,-0.5,-0.25,-0.2084,-0.25,0.375,0.4166,0.1666,-0.4584,-0.4166,-0.4584,-0.3334,0.0834,0.0416,-0.2084,-0.5416,0.0416,0.1666,0.5416,0.9166,1,0.9166,0.7916,0.125,0.7084,0.7084,0.5834,0.7916,0.9166,0.9584,0.875,0.8334,-0.228,0.1228,0.8596,0.6842,0.4736,0.7192,0.5438,0.6492,0.8596,0.4386,0.228,0.2632,0.4036,0.4386,0.4386,1,0.7544,0.3684,0.579,0.4736,0.614,-0.1578,-0.6492,-0.1578,-0.0176,0.2632,0.614,1,0.7544,0.3684,0.7192,0.4386,-1,-1,-1,-1,-1,-1,-1,-1,-0.8876,-0.9102,-0.7618,0.155,0.7124,0.8966,0.9236,0.7752,0.8248,0.7708,0.627,0.0922,-0.5056,-0.7528,-0.8966,-0.9102,-0.8966,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.964,-0.9672,-0.6574,0.2828,0.0926,0.2562,0.432,0.37,0.2798,-0.3632,-0.6162,-0.7102,-0.8058,-0.8906,-0.9396,-0.958,-0.9634,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.98,-0.6834,-0.08,-0.1294,-0.0954,0.0014,-0.28,-0.3186,-0.537,-0.8186,-0.577,-0.153,-0.1072,-0.4434,-0.6734,-0.7668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,1,1,1,-0.7714,-0.8,-0.7714,-0.8286,-0.4286,1,-0.6858,1,0.0572,-0.4572,-0.4,-0.4858,-0.5428,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.9378,0.6912,0.6862,0.6584,0.6382,0.6602,0.6554,0.6334,0.571,0.2708,0.0344,-0.56,0.5882,-0.4878,0.1834,0.8944,0.0238,-0.036,1,0.238,0.1428,0.5238,0.6508,0.5238,0.5874,0.492,0.6508,0.8412,0.9048,0.9682,1,0.9682,0.9366,0.9048,0.9048,0.9048,0.9366,1,0.9682,1,0.9366,0.8412,0.6508,0.492,0.238,0.492,0.4286,0.4286,0.238,0.365,0.2698,-0.5416,-0.2916,0.2916,0.3334,0,-0.125,0.0416,-0.0416,0.3542,0.8958,1,0.7084,0.6458,0.8334,0.6458,0.5416,0.5416,0.75,0.8542,0.8958,0.8334,0.9376,0.8124,0.3958,-0.2708,-0.1042,-0.25,-0.2292,-0.1876,-0.0208,0.0624,-0.1666,-0.2222,0.1334,0.5556,0.4888,0.1778,-0.0222,0.2888,0.3556,0.4222,0.6444,1,0.8,0.7334,0.7556,0.6666,0.6444,0.7112,0.6222,0.9334,0.8888,0.8222,0.8,0.6,0.6666,0.0888,0.2444,-0.0666,-0.1334,-0.0222,0.0444,0.0444,0,1,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.4158,-0.4158,-0.2808,0.0786,-0.0786,0.0112,0.7752,0.5506,0.5056,0.573,0.528,-0.1012,0.191,0.528,0.8652,0.7304,0.4158,0.9776,0.8202,0.4382,0.2134,0.3258,0.8876,1,0.5956,0.2808,0.4606,0.9326,0.8202,0.5506,0.6404,-0.2808,'14'
-0.2938,0.1806,0.2438,0.4414,0.9052,1,0.9052,0.9184,0.8024,0.7444,0.826,0.647,0.1436,0.0382,0.1516,-0.0118,0.0198,0.0672,0.0936,-0.075,-0.1146,0.162,0.0566,-0.0014,-0.1542,-0.1778,-0.17,-0.112,-0.091,-0.1358,-0.0592,0.0118,-0.2448,0.2282,0.2752,0.433,0.9502,1,0.928,0.881,0.964,0.8284,0.751,0.444,0.1728,-0.0484,-0.0982,-0.007,-0.1562,-0.2724,-0.22,-0.1536,-0.4274,-0.2476,-0.0926,-0.0374,-0.018,-0.1508,-0.361,-0.3832,-0.2918,-0.137,-0.1618,-0.0318,-0.267,0.1614,0.3002,0.4178,0.9668,0.9156,1,0.813,0.8734,0.7556,0.7104,-0.074,-0.1946,-0.1464,-0.2036,-0.2308,-0.3364,-0.3846,-0.3152,-0.258,-0.282,0.0226,0.1916,0.3484,0.2066,-0.077,-0.0468,-0.1494,-0.3304,0.0166,0.0166,0.0316,-0.2806,0.1,0.3936,0.6162,0.987,0.8936,1,0.8838,0.7936,0.813,0.4548,-0.329,-0.2548,-0.4194,-0.442,-0.5032,-0.6064,-0.5226,-0.629,-0.5484,-0.4452,-0.1484,0.1032,0.2484,0.1096,-0.0322,-0.1322,-0.1548,-0.1968,0.0032,0,0.1484,-0.2702,0.059,0.4348,0.7858,1,0.9938,0.9844,0.8976,0.7702,0.7608,-0.028,-0.4472,-0.4814,-0.5652,-0.6086,-0.674,-0.8106,-0.9224,-0.972,-0.8788,-0.8478,-0.6398,-0.2454,-0.056,0.0808,-0.118,-0.3136,-0.3106,-0.354,-0.0434,-0.059,-0.09,-0.1412,0.1126,0.5634,0.8944,1,0.8202,0.8858,0.963,0.5834,0.4466,-0.1812,-0.3866,-0.5464,-0.5036,-0.4808,-0.5948,-0.826,-0.7832,-0.8516,-0.843,-0.8346,-0.7888,-0.6462,-0.3838,0.0272,0.0156,-0.2524,-0.3352,-0.3866,-0.2126,-0.0214,-0.067,-0.2042,0.089,0.6056,0.8884,1,0.5148,0.8046,0.8394,0.0262,-0.253,-0.658,-0.7278,-0.7486,-0.7068,-0.5498,-0.665,-0.972,-0.9826,-0.8708,-0.8744,-0.8848,-0.9406,-0.9546,-0.8604,-0.623,-0.274,-0.2006,-0.4764,-0.5776,-0.3718,-0.3508,-0.0018,-0.4,0.04,0.24,0.36,0.8,0.76,1,0.88,0.64,0.6,0.72,0.32,0.32,-0.04,0.12,0.24,-0.08,-0.04,0,-0.04,-0.04,0,0.04,-0.16,-0.16,-0.24,-0.28,-0.12,-0.16,-0.08,0.04,0,-0.347,0.1428,0.2244,0.4286,0.8776,1,0.8776,0.9184,0.7552,0.6734,0.9184,0.796,-0.0612,-0.0204,0.102,-0.1836,-0.0612,0.1428,0.1836,-0.102,-0.1428,0.3878,0.3878,-0.0204,-0.0612,-0.102,-0.347,-0.1836,0.0612,0.102,-0.3062,0.2244,-0.2258,0.2474,0.2904,0.4194,0.957,0.957,1,0.871,0.9784,0.699,0.8064,0.2044,0.1182,-0.0752,-0.1398,0.0108,-0.2688,-0.2688,-0.2258,-0.2904,-0.4838,-0.0108,0.1182,0.2044,0.1828,-0.0752,-0.2044,-0.1182,-0.1612,-0.0538,0.1182,0.1398,-1,-1,-1,-1,-1,-1,-1,-1,-0.9784,-0.9794,-0.2846,0.5996,0.97,0.8752,0.8602,0.881,0.7638,0.638,0.5958,0.4842,0.2124,-0.2648,-0.6718,-0.7862,-0.8322,-0.6916,-0.926,-0.9166,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9816,-0.9818,-0.2176,0.6012,0.9602,0.8528,0.7498,0.6538,0.41,0.2528,0.129,-0.0066,-0.249,-0.607,-0.8346,-0.905,-0.9192,-0.8692,-0.962,-0.9612,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8768,-0.8868,-0.8134,-0.7178,-0.7178,-0.726,-0.73,-0.742,-0.736,-0.74,-0.72,-0.766,-0.706,-0.738,-0.9368,-0.89,-0.87,-0.93,-0.7668,-0.96,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,-0.8286,-0.7428,-0.7142,-0.7714,-0.9714,-0.9428,-0.8858,-0.8858,-0.7428,-0.2572,-0.3714,-0.8,-1,-0.8286,-0.8858,-0.8858,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.8142,-0.8066,-0.7914,-0.7582,-0.8148,-0.8324,-0.755,-0.5848,-0.167,0.0134,-0.5866,0.153,0.0438,0.2966,0.5068,0.8096,0.8768,1,0.125,0.625,0.7916,0.875,0.9166,1,0.6666,0.5416,0.0834,0.25,0.5834,0.7916,0.625,0.4584,0.3334,0.4166,0.7084,0.6666,0.5416,0.4584,0.25,-0.3334,0,0.0834,-0.25,-0.25,-0.0834,-0.2916,-0.2084,0.125,0.0834,-0.375,0.1908,0.5114,0.7862,1,0.7404,0.7862,0.542,0.252,0.313,0.2824,0.4198,0.6794,0.4504,0.2978,0.2978,0.4656,0.6184,0.5878,0.4198,0.1756,0.0534,-0.3282,0.0382,0.084,-0.0992,-0.2214,-0.2062,-0.2824,-0.023,0.252,0.1146,-0.1908,0.1718,0.5156,0.8906,1,0.7344,0.8124,0.5938,0.4532,0.3906,0.2656,0.3906,0.5468,0.3906,0.2656,0.25,0.375,0.5782,0.5,0.3438,0.2968,-0.125,-0.2032,0.0624,-0.0156,-0.2188,-0.3124,-0.2968,-0.2656,-0.0624,0.0938,-0.0624,-0.3906,0.7868,-1,-1,1,-1,-1,-1,-0.8334,-1,0.3124,0.3334,0.125,1,0.9376,0.0834,0.5834,0.5,0.1666,-0.0208,0.2916,0.375,0.1458,0.2084,0.1876,0.2292,0.1458,-0.0416,0.2084,0.0834,0.1876,0.0416,0.1458,0.2708,0.1666,0.1042,-0.125,-0.1874,-0.0834,0.0416,0.3334,-0.3124,'15'
-0.295,0.1842,0.2248,0.392,0.8464,0.9526,0.939,0.9074,1,0.9254,0.6564,0.4102,0.1458,-0.1662,-0.1638,-0.1096,-0.13,-0.0124,-0.0464,-0.044,-0.0802,-0.0848,0.1888,0.3176,0.3628,0.374,0.0892,0.0734,0.1638,0.304,0.435,0.6926,-0.2356,0.2492,0.15,0.3304,0.7994,0.8738,0.8264,0.8038,1,0.885,0.3574,0.1184,-0.0214,-0.328,-0.3214,-0.2808,-0.3506,-0.4926,-0.3416,-0.186,-0.4092,-0.4272,0.0846,0.1364,0.3056,0.213,-0.0508,-0.1206,-0.0778,0.1634,0.2244,0.5604,-0.1696,0.3166,0.2826,0.4218,0.8922,0.8738,1,0.8396,0.9186,0.527,0.4008,-0.1616,-0.2772,-0.527,-0.3824,-0.3378,-0.6346,-0.6952,-0.5216,-0.5768,-0.5374,-0.774,-0.2248,0.1852,0.4692,0.5138,0.2194,0.1354,0.1642,0.1564,0.1906,0.527,-0.1402,0.2978,0.4018,0.5568,1,0.8504,0.8238,0.8612,0.7918,0.3698,0.0762,-0.3832,-0.6022,-0.6822,-0.5994,-0.717,-0.8612,-0.8906,-0.8932,-0.7544,-0.8852,-0.693,-0.3778,0.036,0.3966,0.546,0.3298,0.0226,0.0414,-0.0388,0.2016,0.191,-0.0588,0.286,0.5212,0.7756,1,0.751,0.721,0.8194,0.461,0.1108,-0.6224,-0.565,-0.6114,-0.7318,-0.688,-0.7072,-0.6936,-0.6936,-0.71,-0.844,-0.7702,-0.669,-0.4802,-0.037,0.1656,0.398,0.2394,-0.0014,0.056,0.1244,0.2996,0.3024,-0.0774,0.2806,0.6774,0.8516,1,0.6678,0.4806,0.571,-0.1516,-0.6388,-0.8548,-0.7,-0.6322,-0.671,-0.5742,-0.7226,-0.6322,-0.6968,-0.8548,-0.8388,-0.8322,-0.9,-0.6904,-0.5548,-0.0838,0.0516,-0.029,-0.1646,-0.142,-0.071,0.229,0.2516,0.0898,0.687,0.7914,0.6464,0.913,0.6638,0.9014,1,0.4666,-0.1304,-0.745,-0.3682,-0.316,-0.2522,-0.2,-0.4028,-0.5942,-0.6116,-0.9014,-0.855,-0.7102,-0.6754,-0.687,-0.8144,-0.745,-0.4202,-0.2986,-0.5768,-0.6058,-0.0144,0.1304,0.316,-0.5652,-0.2174,0.087,0.3044,0.3478,1,0.8696,0.6522,0.6522,0.4782,0.6522,0.174,0.087,-0.6086,-0.3044,-0.087,-0.1304,-0.174,-0.2174,-0.5218,-0.1304,-0.2174,0.1304,0.1304,0.3044,0.087,-0.4782,-0.0434,-0.3478,0.087,0.5218,0.5652,-0.4872,-0.0256,-0.3334,-0.0256,0.5898,0.9488,0.8974,0.641,0.9488,1,0.4872,0.5384,0.2308,-0.077,-0.0256,-0.1794,-0.2308,-0.3334,-0.1282,-0.2308,-0.1282,0.1282,0.077,0.5898,0.4872,0.2308,0.0256,-0.0256,0.1282,0.4358,0.2308,0.5384,0.081,0.4594,0.7298,0.8648,1,0.8108,0.6756,0.7838,0.1352,0.027,-0.2972,-0.2432,-0.2972,-0.4864,-0.6486,-0.5406,-0.7568,-0.6216,-0.6216,-0.6756,-0.4594,-0.4054,-0.4054,-0.3784,0.4594,0.5136,0,0.081,0.081,0.1082,0.5136,0.5136,-1,-1,-1,-1,-1,-1,-1,-1,-0.9678,-0.9738,-0.5896,0.5212,0.9094,0.8752,0.7868,0.6982,0.7162,0.4144,0.2918,0.0182,-0.3782,-0.7324,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9786,-0.9808,-0.572,0.347,0.4632,0.3286,0.1064,-0.0174,-0.1396,-0.3352,-0.4498,-0.6122,-0.7798,-0.8992,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9134,-0.9534,-0.7634,-0.6884,-0.7,-0.72,-0.7268,-0.6818,-0.71,-0.8078,-0.8324,-0.8248,-0.88,-0.9708,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,1,1,1,-0.8572,-0.7714,-0.9142,-0.8858,-0.8858,-0.8858,-0.8572,-0.6286,-0.7714,-0.6,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.1798,0.1834,0.2026,0.205,0.229,0.2228,0.1758,0.2306,0.3348,0.249,-0.6,0.4942,-0.6502,0.2864,-0.0222,0.3978,0.739,1,-0.2858,0.0476,0.5714,0.9048,1,1,0.8572,0.619,0.381,0.5238,0.5714,0.9048,0.9524,0.8096,0.7142,0.9048,1,0.9524,0.762,0.762,0.5714,0.381,-0.0952,-0.0476,0.1904,0.1428,0.0476,0.0952,0.4286,0.4286,0.238,-0.238,-0.5228,-0.1818,0.75,0.8636,0.659,1,0.4546,0.159,0.1136,0.091,0.1136,0.8182,0.8636,0.2046,0.25,0.5682,0.8182,0.4318,0.5454,0.659,0.2728,0.0454,-0.1364,-0.2046,-0.2954,-0.2954,-0.1364,0,-0.1364,0.4318,0.3636,0.0454,0.037,0.5186,0.8148,0.963,1,0.8888,0.2962,0.2038,0.2592,0.2038,0.2592,0.463,0.5,0.463,0.574,0.8148,0.926,0.8888,0.537,0.4814,0.4444,0.1852,0.1296,-0.0926,-0.0926,-0.1112,-0.0556,0.1852,0.0926,0.1852,0.037,-0.0186,0.9362,-1,-1,1,-1,-1,-1,-0.8334,-1,0.6388,0.6388,0.4722,0.75,1,0.7778,0.1112,-0.0834,0.0834,0.3612,0.3334,0.0556,0.1666,0.5556,0.3888,0.4444,0.5556,0.2222,0.3056,0.3334,0.1666,0.4166,0.3056,-0.1944,0.25,0.5,0.6666,0.4722,0.4722,0.1666,0.5834,0.2778,'15'
-0.2794,0.4558,0.5588,0.8676,0.5882,0.2794,0.0148,0.0442,-0.5,-0.5588,-0.6764,-0.75,-0.397,-0.647,-0.5882,-0.6764,-0.7058,0.147,0.1618,0.0442,0.1912,0.5736,0.7648,1,0.8236,0.9264,0.4852,0.5442,0.853,0.7942,0.2942,0.3088,-0.1408,0.507,0.676,0.9296,0.6338,0.2958,0.1268,0.0986,-0.5212,-0.6902,-0.9154,-0.7888,-0.4508,-0.493,-0.6198,-0.5352,-0.2816,0.0846,-0.169,-0.2254,0.2676,0.324,0.6198,0.7324,1,0.817,0.2676,0.6478,0.7746,0.338,0.3522,0.7184,0,0.5324,0.7402,0.8832,0.3896,0.1818,0.1428,-0.026,-0.5974,-0.7142,-0.6494,-0.5324,-0.6234,-0.4936,-0.4286,-0.2858,-0.1948,-0.1818,-0.3376,-0.065,0.2078,0.1818,0.3896,0.948,1,0.5844,0.5064,0.7402,0.5194,0.2338,0.5584,0.5584,-0.0304,0.5304,0.8484,1,0.3788,0.0606,0.106,-0.1516,-0.3788,-0.7424,-0.7424,-0.409,-0.5454,-0.4848,-0.5152,-0.5758,-0.5758,-0.303,-0.2122,0.1364,0.1212,-0.0758,0.5,0.7122,0.7424,0.7728,0.7122,0.697,0.6364,0.6818,0.6666,0.2728,0.0204,0.4966,0.9184,1,0.279,0.0068,0.17,-0.2244,-0.279,-0.483,-0.619,-0.4694,-0.687,-0.6054,-0.4286,-0.6462,-0.7006,-0.0748,-0.1836,-0.1564,0.0476,-0.0204,0.415,0.796,0.9048,0.4014,0.7006,0.9728,0.8368,0.4694,0.3198,0.2654,0.076,0.4304,0.9494,1,0.0886,0.1012,0.1518,-0.0506,-0.1392,-0.3924,-0.405,-0.367,-0.4556,-0.5316,-0.886,-0.4556,-0.5316,-0.405,-0.4684,-0.3924,-0.0126,0.1518,0.4684,0.962,0.8482,0.6708,0.6708,0.6076,0.4556,0.2532,0.2912,0.0886,0.0296,0.4438,1,0.9882,0.148,0.006,0.0414,-0.0888,-0.3846,-0.5148,-0.8816,-0.645,-0.7752,-0.7634,-0.716,-0.5148,-0.6568,-0.7634,-0.4674,-0.3372,-0.2544,-0.0532,-0.1598,0.574,0.9644,0.8462,0.5976,0.7278,0.5858,0.432,0.2782,0.0888,-0.0212,0.532,0.532,0.8298,0.6596,0.4042,0.234,0.2766,-0.1064,-0.149,-0.1914,-0.4042,-0.0638,-0.1914,-0.3192,-0.3192,-0.1064,0.3192,0.3192,0.3192,0.3192,0.7022,0.6596,1,0.7022,0.8298,0.532,0.617,0.8298,0.7872,0.3618,0.4042,-0.077,0.5384,0.5898,0.9488,0.6924,0.282,0.1794,0.1282,-0.3334,-0.4872,-0.641,-0.4872,-0.1794,-0.3334,-0.4358,-0.4872,-0.077,0.3334,0.2308,-0.077,0.2308,0.4358,0.7948,0.8974,1,1,0.2308,0.5384,0.8462,0.5898,0.2308,0.5898,-0.1506,0.5068,0.6986,0.9452,0.6438,0.2876,0.1506,0.1232,-0.5616,-0.726,-0.9178,-0.7808,-0.5342,-0.452,-0.4794,-0.5068,-0.2054,-0.0136,-0.3424,-0.2876,0.3424,0.2602,0.5068,0.7808,1,0.6986,0.5068,0.8082,0.7808,0.1506,0.5068,0.8082,1,1,1,1,1,1,0.9346,0.8604,0.772,0.8374,0.8304,0.8692,0.9364,0.9824,0.984,0.9046,0.7332,0.7156,0.6784,0.652,0.6926,0.4204,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.989,1,1,1,1,1,1,1,0.8986,0.9482,0.8832,0.9724,1,0.9272,0.8148,0.709,0.4424,0.3906,0.3542,0.3928,0.3708,0.1064,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5568,-0.6734,-0.94,-0.9368,-0.78,-0.6368,-0.4934,-0.4668,-0.5068,-0.4334,-0.7334,-0.76,-0.81,-0.89,-0.84,-0.76,-0.8734,-0.9334,-0.9934,-0.9934,-0.9334,-0.88,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,0.5142,0.6858,-0.4572,-0.7428,-0.8,-0.8286,-0.7714,-0.7428,-0.8,-0.8286,-0.7428,-0.7428,-0.8,-0.8286,-0.8286,-0.8286,-0.8,-0.8286,-0.7142,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.567,0.4752,0.4752,0.4826,0.4826,0.4852,0.4674,0.453,0.3938,0.2576,0.815,0.7774,0.7774,0.882,0.882,0.8788,0.851,0.926,0.9676,1,-0.7334,-0.7764,0.8414,0.9294,0.9922,0.8348,0.709,-1,0.4428,0.6168,0.5846,0.5716,0.2464,-0.1626,-0.2882,-0.1852,0.269,0.5008,0.6006,0.9034,0.781,0.752,0.8132,0.7424,0.665,0.826,1,0.8486,0.4202,-0.1144,-0.227,0.2464,0.3012,-0.0402,0.153,0.1788,0.4332,0.5426,0.3978,0.0112,0.4624,0.6336,0.6404,0.5958,0.3322,-0.0274,-0.0034,0.0172,0.2808,0.435,0.678,1,0.952,0.887,0.8458,0.774,0.7192,0.9486,0.9898,0.8458,0.5514,-0.202,-0.1336,0.1644,0.2294,0.024,0.161,0.1028,0.3424,0.4864,0.4554,-0.0136,0.4736,0.7384,0.7862,0.5342,0.3014,-0.059,-0.1484,-0.1036,0.059,0.4194,0.4578,0.815,0.8214,0.8214,0.7162,0.7512,0.6332,0.866,1,0.8468,0.3398,0.0112,-0.0304,0.1164,0.0144,-0.043,0.043,0.0144,0.3238,0.4258,0.3492,-0.0846,-0.264,-1,1,-1,1,-1,-1,0.1334,-1,0.5218,0.913,0.5434,0.2174,0.1522,-0.2392,-0.1956,-0.174,-0.2174,0.0218,0.0218,0.2174,1,0.826,0.8696,0.5434,0.3478,0.6956,0.7392,0.587,0.174,0.1304,0.0434,-0.0434,0.0652,0.0652,0,0.0218,0.3044,0.6304,0.5,-0.0652,'16'
-0.9742,0.0774,0.1752,0.031,-0.0464,-0.5774,-0.464,-0.4432,-0.3402,-0.7836,-0.8762,-0.7474,-0.4278,-0.634,-0.835,-0.799,-0.6134,-0.6082,-0.1804,-0.2114,-0.0618,0.2164,0.567,1,0.8298,0.4278,0.5206,0.7732,0.6908,0.9432,0.8402,0.7628,-0.8068,-0.0162,0.009,0.331,0.3632,-0.3238,-0.2666,-0.2308,-0.1342,-0.3954,-0.2702,-0.5886,-0.5026,-0.6672,-0.4848,-0.6566,-0.5348,-0.4418,-0.0376,-0.145,0.2344,0.1772,0.356,0.399,0.771,0.7818,0.4168,0.4704,0.8926,1,0.7638,0.882,-0.8008,-0.0898,-0.0976,0.4726,0.4374,-0.25,-0.2852,-0.1718,-0.2188,-0.254,-0.3008,-0.5508,-0.582,-0.6718,-0.6602,-0.7344,-0.6992,-0.293,-0.289,-0.3164,-0.1836,0.1406,0.3164,0.9648,1,0.5468,0.2852,0.7188,0.75,0.875,0.879,0.5546,-0.6444,-0.0304,0.3132,0.7494,0.604,-0.293,-0.2728,-0.099,-0.2768,-0.2,-0.495,-0.4868,-0.5232,-0.4828,-0.6404,-0.6526,-0.4262,-0.4586,-0.406,-0.297,-0.006,0.2364,0.507,0.5556,0.6162,0.697,0.891,0.9758,1,0.794,0.5838,0.693,-0.723,-0.1868,0.5604,0.7758,0.389,-0.4682,-0.1868,-0.2704,-0.266,-0.4462,-0.6352,-0.5956,-0.6396,-0.833,-0.6352,-0.6484,-0.666,-0.6836,-0.3494,-0.2528,0.112,0.0814,0.3054,0.8726,1,0.7054,0.899,0.899,0.8154,0.9604,0.9868,0.7582,-0.9126,-0.5042,0.6458,0.75,0.1542,-0.3542,-0.25,-0.4416,-0.7376,-0.5958,-0.5916,-0.6084,-0.6084,-0.625,-0.6666,-0.6584,-0.6458,-0.5292,-0.4916,-0.4376,0.0126,0.0542,0.35,0.7958,0.8708,0.65,0.775,0.7626,0.7374,1,0.925,0.5166,-0.8472,-0.2984,0.7136,0.7326,-0.2554,-0.5132,-0.4702,-0.6706,-0.7566,-0.9236,-0.5704,-0.5656,-0.5942,-0.6706,-0.661,-0.6468,-0.7708,-0.6658,-0.4844,-0.2076,-0.1312,0.031,0.5226,0.8664,0.9046,0.8234,0.8424,0.8472,0.9666,1,0.833,0.6134,-0.1428,0.3714,0.4858,0.3142,-0.4286,-0.4858,-0.3714,-0.2572,-0.6572,-0.2,-0.3714,0.0286,0.2,0.0286,-0.3714,-0.4858,0.0286,-0.0286,0.1428,-0.2572,0.4286,0.4286,0.5428,0.7714,0.5428,-0.0286,0.5428,1,1,1,0.3714,0.3714,-0.8048,0.1708,0.2682,0.122,0.122,-0.4146,-0.0732,-0.2682,-0.2682,-0.4634,-0.7074,-0.7074,-0.3658,-0.4146,-0.6586,-0.6098,-0.6586,-0.317,0.122,0.2196,0.2682,0.561,0.6586,0.9024,1,0.6098,0.5122,0.561,0.7074,0.8048,0.8048,0.8048,-0.6304,-0.087,-0.087,0.3478,0.3478,-0.2826,-0.2608,-0.1956,-0.174,-0.3914,-0.326,-0.6304,-0.587,-0.5434,-0.5,-0.6522,-0.6956,-0.413,-0.1522,-0.2174,-0.1086,0.087,0.2608,0.6086,0.8914,0.7392,0.326,0.5434,1,0.913,0.9566,0.913,-1,-1,-1,-1,-1,-0.9272,-0.9088,-0.836,-0.5308,-0.4078,-0.2848,0.2346,0.2072,0.1708,0.23,0.4534,0.8588,0.8178,0.8542,0.8086,0.4852,-0.1208,-0.5536,-0.7858,-0.7494,-0.8496,-0.8406,-0.8452,-0.8724,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.93,-0.9046,-0.4474,-0.0252,-0.2004,-0.3482,0.1032,0.5758,0.607,0.7918,0.642,0.7588,0.6964,0.6148,0.4202,0.1888,-0.3814,-0.607,-0.7568,-0.7666,-0.8658,-0.8716,-0.8794,-0.8872,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9934,-0.9068,-0.6268,0.32,-0.1434,-0.33,-0.3716,-0.0344,0.12,0.0024,-0.04,-0.2976,-0.3826,-0.4876,-0.56,-0.5176,-0.4926,-0.3868,-0.18,-0.5068,-0.78,-0.8134,-0.9468,-0.9134,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,0.6572,1,1,-0.1714,-0.0286,1,0.2286,-0.6286,-0.6858,-0.8572,-0.8286,-0.8572,-0.9142,-0.8572,-0.5142,-0.4,-0.6286,-0.6858,-0.4572,-0.6,-0.9714,-0.9142,-0.7142,-1,-1,-1,-1,-0.047,0.026,0.0852,0.147,0.207,0.2684,0.3298,0.3904,0.466,0.4388,0.7636,0.7652,0.7696,0.8404,0.8318,0.8862,0.9616,0.9722,1,1,-0.7734,-0.1176,-0.4396,-0.4552,0.14,0.5758,0.57,1,-0.3356,-0.1428,-0.1162,-0.2358,-0.0898,0.1096,0.2026,0.5016,0.6478,0.8406,0.9202,1,0.7276,0.8006,0.814,0.7476,0.681,0.887,0.7408,0.7342,0.6878,0.5614,0.6678,0.5084,0.6744,0.774,0.7808,0.794,0.4818,0.2492,0.2692,0.0166,-0.0984,-0.1238,-0.0794,-0.0412,-0.0476,0.1302,0.181,-0.073,0.0032,0.2888,0.6888,0.9366,1,0.8032,0.9492,0.8286,0.8222,0.835,0.9746,0.962,0.7778,0.835,0.7778,0.7524,0.5936,0.6888,0.6888,0.8286,0.7016,0.6826,0.5874,-0.054,-0.0188,-0.3284,-0.3284,-0.3584,-0.4114,-0.2528,0.0188,-0.4114,-0.0566,0.0188,0.0944,0.6528,0.8792,0.7812,1,0.9622,0.9698,0.7358,0.9018,0.683,0.8566,0.9472,0.7358,0.6076,0.7056,0.4792,0.2906,0.532,0.3812,0.3812,0.4642,0.1472,1,-1,-1,1,-1,-1,-1,-0.3,-1,-0.4656,-0.1724,-0.3794,-0.2414,-0.3966,-0.3448,-0.1206,-0.1034,-0.1724,-0.2932,-0.0172,0.1034,0.5,0.5172,1,0.7242,0.138,0.4138,0.569,0.431,0.3104,0.3276,0.0862,0.1206,0.4138,0.069,-0.0172,-0.1724,-0.069,0.2242,-0.069,-0.5518,'16'
-0.1424,0.8792,0.965,0.2788,0.271,0.1656,0.3216,-0.15,-0.5204,-0.7816,-0.5634,-0.6218,-0.2242,-0.3684,-0.2944,-0.388,-0.1228,-0.0098,0.3802,0.3996,0.8908,0.926,0.7816,0.8558,0.8948,1,0.8168,0.7154,0.4502,0.7038,0.618,0.7466,-0.0064,0.6104,0.6078,0.618,0.5974,0.4374,0.4322,-0.0838,-0.071,-0.298,-0.311,-0.2646,-0.2594,-0.0478,-0.022,0.1612,0.2078,0.6206,0.6542,0.9612,1,0.7496,0.711,0.662,0.7446,0.3704,0.2412,0.2,0.218,0.3188,0.3962,0.4762,-0.0974,0.5402,0.5772,1,0.8558,0.3826,0.1544,0.0034,-0.3422,-0.3288,-0.4732,-0.4396,-0.0536,-0.0168,0.2046,0.5302,0.8758,0.7886,0.5672,0.4832,0.6778,0.7786,0.7684,0.745,0.443,0.037,-0.1442,-0.0638,-0.01,0.104,0.255,0.4732,-0.181,0.3278,0.8238,1,0.553,0.3834,0.354,0.2366,-0.3182,-0.2398,-0.1876,-0.3278,0.2724,0.4878,0.2756,0.0016,0.0474,0.0864,-0.1126,-0.0864,0.1712,0.2952,0.3508,0.354,0.0538,-0.1518,-0.429,-0.3508,-0.3182,-0.1288,0.0342,0.3376,-0.1364,0.2668,0.9878,1,0.5438,0.442,0.499,0.1446,0.0346,0.1406,0.1038,-0.112,-0.2138,-0.2506,-0.6334,-0.5724,-0.6456,-0.7842,-0.6782,-0.5682,-0.552,-0.2138,-0.051,-0.165,-0.5398,-0.4542,-0.727,-0.7026,-0.5152,-0.3972,-0.1568,0.1812,0.1312,0.475,1,0.8664,0.7326,0.3748,0.4606,0.5084,0.623,0.0454,-0.4702,-0.728,-0.5894,-0.5848,-0.5132,-0.7708,-0.8424,-0.809,-0.7756,-0.7948,-0.7852,-0.661,-0.8234,-0.661,-0.6992,-0.7136,-0.6324,-0.8042,-0.7756,-0.7326,-0.7614,-0.2362,0.9522,1,0.5312,-0.0382,-0.043,-0.421,-0.22,0.3684,0.4594,-0.0334,-0.4976,-0.555,-0.6364,-0.7178,-0.3924,-0.4928,-0.7224,-0.78,-0.9952,-0.7368,-0.5646,-0.598,-0.579,-0.6556,-0.4258,-0.5454,-0.7656,-0.8038,-0.7752,-0.665,-0.7942,-0.646,0.2444,0.8666,1,0.7334,0.0666,0.2,0.1112,-0.2,-0.2444,-0.1112,-0.2444,-0.7334,-0.1556,-0.0666,0.1112,0.2,0.0666,0.2,0.2444,0.2444,0.3778,0.5556,0.9112,0.8666,0.7334,0.6888,0.9556,0.6888,0.2444,0.7778,0.7334,0.7778,-0.4706,0.8824,0.9412,0.1176,0.1176,-0.1176,0.1176,-0.1764,-0.647,-0.647,-0.5882,-0.8236,-0.5294,-0.4706,-0.2942,-0.2942,-0.2942,-0.0588,0.0588,0.5294,0.4706,1,1,0.7648,0.7058,0.7058,0.9412,0.8236,0.647,0.4118,0.4706,0.5882,0.2,0.4934,1,0.8934,0.68,0.68,0.4666,0.6,0.6266,0.44,0.04,-0.44,-0.12,0.0134,-0.0934,-0.3066,-0.5734,-0.4934,-0.3866,-0.52,-0.44,-0.2,-0.3334,-0.36,-0.6534,-0.12,-0.1734,-0.12,0.0134,0.0666,-0.0666,0.44,-1,-1,-0.9822,-0.981,-0.9632,-0.8598,-0.7124,0.5176,0.8372,-0.2538,-0.4878,0.3048,0.3178,0.3726,0.571,0.9038,0.836,0.5008,0.1682,-0.2644,-0.356,0.5246,-0.028,-0.6886,-0.7172,-0.8966,-0.9334,-0.9548,-1,-1,-1,-1,-1,-1,-1,-0.9692,-0.9684,-0.276,-0.354,-0.4498,0.2864,0.5466,-0.15,-0.453,0.1606,0.3678,0.6238,0.6002,0.9334,0.7952,0.4034,-0.0354,-0.3824,-0.5084,0.0792,-0.3166,-0.77,-0.7944,-0.9106,-0.9366,-0.9528,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.9668,-0.3934,0.5432,0.3932,-0.76,-0.6768,-0.57,-0.64,-0.7712,-0.7312,-0.509,-0.629,-0.7868,-0.8178,-0.829,-0.8334,-0.838,-0.896,-0.934,-0.95,-0.95,-0.98,-0.8168,-0.8568,-0.83,-1,-1,-1,-1,-1,-1,-1,-0.7428,1,1,1,0.0286,-0.5142,-0.8572,0.0572,0.4286,1,-0.5428,-0.6,-0.6286,-0.6572,-0.6572,-0.4,-0.4,-0.3428,-0.7142,-0.5428,-0.0572,-0.0572,-0.8858,-0.8858,-0.8858,-0.2286,-1,-1,-1,-1,-1,-0.0194,0.032,0.076,0.142,0.2172,0.2694,0.3204,0.3574,0.433,0.3096,0.8562,0.8762,0.884,0.8732,0.8562,0.8292,0.738,0.5498,0.2114,-0.0794,-0.6534,0.0824,-0.5294,-0.3402,0.1986,0.314,0.2572,-0.6416,-0.4898,-0.2488,-0.108,-0.014,-0.0016,0.011,0.0046,0.3302,0.255,0.3302,0.496,0.6026,0.809,1,0.831,0.687,0.6964,0.6682,0.64,0.8216,0.9938,0.9594,0.7996,0.7184,0.6212,0.5212,0.4522,0.374,0.3646,0.18,0.0892,-0.1142,0.3966,0.1564,-0.068,-0.1154,-0.1564,-0.1658,-0.188,-0.226,-0.2512,-0.0996,-0.0206,0.1848,0.4092,0.722,0.8704,0.7884,0.5166,0.605,0.6746,0.5988,0.7156,0.9432,1,0.8168,0.7852,0.5418,0.5324,0.5166,0.3776,0.3712,0.1912,-0.071,0.3202,0.087,0.0542,-0.1462,-0.2348,-0.2282,-0.018,-0.11,-0.0148,0.1462,0.1724,0.583,0.4778,1,0.862,0.8424,0.5698,0.8194,0.7702,0.4746,0.8062,0.9738,0.9836,0.6518,0.6848,0.6256,0.5566,0.4976,0.294,0.261,0.3366,0.1756,1,-1,-1,1,-1,-1,-1,0.3666,-1,0.1168,0.1948,0.5844,0.4546,0.6364,0.6104,0.6624,1,0.6624,0.2728,0.7402,0.6884,0.5584,0.4286,0.1688,0.5584,0.4026,0.091,0.6104,0.5324,0.1428,-0.1428,0.5064,0.3246,0.3506,0.4026,0.5844,0.2728,0.2208,0.2208,-0.2208,-0.5844,'17'
-0.2948,0.7066,0.7838,0.1112,-0.1378,-0.0192,0.2,0.0014,-0.2918,-0.4222,-0.5704,-0.7126,-0.674,-0.6208,-0.4786,-0.4934,-0.4666,-0.1912,-0.123,0.2652,0.3214,0.8134,0.8726,0.7718,0.7926,0.8518,1,0.7038,0.8104,0.6148,0.8014,0.6948,-0.3894,0.6262,0.7032,0.0784,0.1754,0.2068,0.3838,-0.0128,-0.2468,-0.458,-0.826,-0.7604,-0.5378,-0.6348,-0.5464,-0.4808,-0.1498,-0.0156,0.3324,0.4836,0.746,1,0.8972,0.8316,0.6718,0.7346,0.6662,0.358,0.361,0.4008,0.572,0.4894,-0.0646,0.748,0.6716,1,0.854,0.5158,0.34,0.0714,-0.1708,-0.403,-0.5888,-0.4096,-0.3366,-0.0646,0.1742,0.5888,0.6054,0.9336,0.9238,0.6716,0.5986,0.6054,0.9004,0.8508,0.685,0.1674,0.1078,0.058,0.2438,0.4792,0.7082,0.9702,-0.1148,0.429,0.8614,1,0.3886,0.1994,0.4392,0.1858,-0.1216,-0.3614,-0.223,0.0676,0.1588,0.3006,0.1148,0.044,-0.2028,-0.1858,-0.196,-0.5136,-0.4832,-0.1182,0.2196,0.3514,0.196,-0.071,0.027,0.027,0.0236,0.25,0.3986,0.6148,-0.0552,0.4152,1,0.996,0.1984,0.5052,0.5214,0.1698,0.2188,0.2434,-0.0962,-0.3702,-0.4478,-0.5132,-0.6032,-0.816,-0.7178,-0.7628,-0.9346,-0.8404,-0.7874,-0.5992,-0.4928,-0.178,-0.1902,-0.2188,-0.456,-0.4724,-0.3578,-0.1738,-0.0798,0.2638,0.142,0.5956,1,0.8142,0.3334,0.142,0.082,0.164,0.377,-0.0164,-0.3716,-0.5846,-0.6994,-0.7432,-0.8252,-0.623,-0.5028,-0.6722,-0.7596,-0.6994,-0.754,-0.8798,-0.6558,-0.541,-0.317,-0.4316,-0.694,-0.7268,-0.7104,-0.4154,-0.377,-0.0218,0.3636,1,0.303,-0.2046,-0.4848,-0.2196,-0.1666,-0.0076,0.3334,0.3636,-0.2424,-0.3864,-0.0682,0.0378,0.1666,-0.144,-0.1894,-0.553,-0.4166,-0.4696,-0.4546,-0.4016,-0.6364,-0.3182,-0.3712,-0.3334,-0.3788,-0.394,-0.4166,-0.4242,-0.5454,-0.894,0.0834,0.5834,0.6666,0.3334,-0.0834,-0.2916,-0.25,-0.125,-0.1666,-0.5,-0.3334,-0.3334,-0.2916,-0.1666,-0.0834,-0.1666,-0.0834,-0.1666,0.0834,0.25,0.3334,0.375,0.5,0.25,0.4166,0.2916,0.75,0.8334,1,0.9166,0.625,0.4166,-0.3488,0.6744,0.7674,0.1162,-0.0232,-0.1162,0.1628,0.0232,-0.4418,-0.4884,-0.4418,-0.4418,-0.5348,-0.3954,-0.1162,-0.1628,-0.4884,0.0698,0.0232,0.3024,0.3954,0.6744,0.9534,1,0.9534,0.721,0.6744,0.5814,0.8604,0.907,0.628,0.721,-0.0602,0.5904,0.7108,1,0.8554,0.3976,0.229,0.2048,-0.0602,-0.0844,-0.3012,-0.253,-0.0362,0.1808,0.3734,0.6626,0.759,0.7108,0.759,0.4458,0.4698,0.518,0.5662,0.4458,0.518,-0.1808,-0.1084,-0.012,0.253,0.3734,0.7832,0.8314,-1,-1,-0.9566,-0.967,-0.9256,-0.742,-0.8308,-0.7936,-0.5438,-0.5438,-0.6532,0.3684,0.4242,0.4634,0.356,0.8184,0.7564,0.4406,0.0072,-0.3106,-0.6718,-0.7586,-0.8864,-0.9422,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9454,-0.948,-0.5842,0.1216,-0.089,-0.0318,0.2306,0.1786,-0.3828,0.3502,0.6128,0.601,0.579,0.8518,0.6726,0.1864,-0.1994,-0.475,-0.7492,-0.8038,-0.8934,-0.926,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.9868,-0.6268,0.7766,1,0.8,0.54,0.3332,0.1566,-0.682,-0.548,-0.5728,-0.5638,-0.7474,-0.7164,-0.8182,-0.8238,-0.8382,-0.8492,-0.8982,-0.88,-0.8734,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,1,1,1,-0.0858,-0.6,-0.6858,0.1142,0.4286,1,-0.8572,-0.5428,-0.4858,-0.4286,-0.6,-0.5142,-0.4858,-0.4572,-0.6572,-0.7428,-0.9142,-0.8,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.1518,0.216,0.2408,0.2818,0.3068,0.3518,0.4072,0.4408,0.483,0.3674,0.8854,0.9232,0.9312,0.9584,0.9684,1,0.9662,0.8494,0.4498,0.1204,-0.6534,0.2824,-0.4802,-0.1566,0.4126,0.4438,0.484,-0.6084,-0.5816,-0.3232,-0.347,-0.187,-0.17,-0.2142,-0.2654,-0.1598,-0.1292,-0.017,0.0374,0.1598,0.2994,0.5646,0.6122,0.7892,0.7108,0.6462,0.6292,0.7722,0.847,0.9728,1,0.8504,0.8878,0.847,0.6734,0.5782,0.5408,0.449,0.3946,-0.0034,-0.5132,-0.6288,-0.6008,-0.4746,-0.422,-0.4606,-0.4326,-0.3626,-0.219,-0.2504,-0.0438,0.0332,0.1174,0.331,0.5516,0.8038,0.8284,0.6988,0.6428,0.5166,0.7478,0.7864,1,0.8108,0.7198,0.7162,0.6988,0.7162,0.5412,0.4186,0.4782,0.226,-0.0646,-0.296,-0.3368,-0.3538,-0.2006,-0.2518,-0.1768,-0.1394,-0.0578,0.068,0.0952,0.4014,0.3164,0.619,1,0.9898,0.796,0.8028,0.7518,0.762,0.9728,0.9694,0.9524,0.7586,0.6768,0.8504,0.7518,0.5544,0.4966,0.5986,0.381,0.0884,0.7492,-1,-1,1,-0.8,-1,-1,0.3,-1,0.0462,0.3846,0.2924,0.6,0.8462,1,0.8462,0.723,0.8154,0.6616,0.077,0.5076,0.477,0.6,0.6308,0.477,0.1692,0.2616,0.2308,0.6,0.5692,0.5076,0.477,-0.0154,0.4462,0.4154,0.6616,0.8462,0.5692,0.877,0.6616,-0.2,'17'
-0.2916,0.1332,0.0408,0.1838,0.3994,0.4346,0.7932,0.835,1,0.8174,0.4478,0.1332,-0.1618,-0.1684,-0.2872,-0.131,-0.2388,-0.2476,-0.1156,-0.1134,0.0188,0.0804,0.3686,0.3224,0.0386,-0.109,-0.263,-0.1596,-0.2058,-0.1288,0.0958,0.0848,-0.365,0.0518,0.0216,0.1576,0.3628,0.391,0.784,0.8056,1,0.8034,0.5248,0.1102,-0.1102,-0.3672,-0.3888,-0.311,-0.54,-0.4168,-0.285,-0.2332,-0.0476,0.1858,0.324,0.1102,-0.1144,-0.3088,-0.4234,-0.3066,-0.2958,-0.1706,-0.1706,-0.19,-0.4076,-0.067,0.063,0.1496,0.3334,0.6554,0.8534,0.9236,1,0.7998,0.7708,0.4674,0.3126,0.0092,-0.3808,-0.3416,-0.3602,-0.4778,-0.261,0.0402,0.0216,0.096,-0.0238,-0.067,-0.2342,-0.2488,-0.2034,-0.2364,-0.1992,-0.0568,-0.0216,-0.0526,-0.4646,-0.157,0.0884,0.1262,0.261,0.75,0.8098,1,0.9226,0.6748,0.7234,0.7146,0.6526,0.4868,-0.0244,0.2566,0.177,0.2654,0.0686,0.0288,-0.104,-0.2412,-0.312,-0.4978,-0.5486,-0.5354,-0.3784,-0.3916,-0.542,-0.1992,-0.1592,-0.0884,-0.4154,-0.1666,0.2276,0.237,0.4836,1,0.9436,0.8052,0.6596,0.6104,0.608,0.9178,0.899,0.6408,0.7794,0.777,0.683,0.378,-0.0352,-0.2934,-0.338,-0.4882,-0.6526,-0.709,-0.8474,-0.7018,-0.7676,-0.8662,-0.7442,-0.5868,-0.5658,-0.7042,-0.3212,0.0922,0.4832,0.5754,0.8072,0.9776,0.7514,0.6732,0.5782,0.3352,0.567,0.662,0.8548,0.838,0.9414,1,0.285,-0.3156,-0.3994,-0.5336,-0.6146,-0.7012,-0.7542,-0.7262,-0.7206,-0.7542,-0.9386,-0.8716,-0.8324,-0.8044,-0.785,-0.7906,-0.019,0.4454,-0.0094,-0.289,-0.1848,0.1232,0.289,0.256,0.0236,-0.3792,0.0094,0.2086,0.2418,0.5734,0.9194,1,0.3982,-0.109,-0.3602,-0.4028,-0.3838,-0.4408,-0.5308,-0.5972,-0.5356,-0.6018,-0.6778,-0.7204,-0.7868,-0.5498,-0.5166,-0.673,-0.5102,-0.102,-0.2654,-0.0204,0.1836,0.4286,0.7142,0.9184,1,0.8776,0.551,0.347,-0.0612,-0.102,-0.3062,-0.347,-0.4694,-0.2654,-0.102,-0.0204,-0.0612,0.0612,0.0612,0.2654,0.1836,-0.102,-0.2244,-0.0204,0.0612,0.1428,0.1836,-0.0204,-0.4546,0,-0.1818,0.091,0.2728,0.5,0.8636,1,0.909,0.4546,0.3182,0.3636,0.091,-0.0454,-0.091,0,-0.1818,-0.091,0,-0.091,-0.091,0.2272,0.2272,0.2728,0.2272,0,-0.3182,-0.2272,-0.1818,-0.091,0.1364,0.091,-0.458,-0.1214,0.0654,0.1214,0.2524,0.6448,0.7384,1,0.9814,0.757,0.5888,0.6262,0.3272,0.1776,-0.3644,-0.0654,-0.0842,-0.0094,-0.0094,0.1028,-0.028,-0.0468,-0.0094,-0.1962,-0.514,-0.3458,-0.3272,-0.2336,-0.3272,-0.2336,-0.1028,0.1588,-1,-1,-1,-1,-1,-1,-1,-1,-0.9638,-0.9578,-0.2656,0.2796,0.32,0.5614,0.8772,0.9598,0.8532,0.8672,0.6358,0.2736,-0.3904,-0.7586,-0.4748,-0.2516,-0.7384,-0.9456,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9846,-0.9792,-0.3108,-0.0332,-0.1342,0.2772,0.7634,0.9374,0.7634,0.376,-0.017,-0.4304,-0.8038,-0.9306,-0.8762,-0.846,-0.9388,-0.9766,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.98,-0.6134,-0.6038,-0.6364,-0.6038,-0.655,-0.5868,-0.6118,-0.6518,-0.6218,-0.6868,-0.7468,-0.7968,-0.89,-0.9768,-0.8968,-0.9934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,1,1,0.9428,-0.8286,-0.8286,-0.8286,-0.4858,-0.4858,-0.4858,-0.7142,-0.4286,0.0286,-0.8,-0.8858,-0.7428,-0.6858,-0.5142,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.0322,-0.0262,-0.0076,0.0086,0.044,0.0492,-0.0182,-0.084,-0.34,-0.9534,-0.5866,0.4,-0.1788,0.456,-0.078,-0.1468,-0.183,1,0.0566,0.3962,0.6226,0.9622,1,1,0.6226,0.5472,0.5094,0.7358,0.849,0.8868,0.9246,0.8114,0.7736,0.7736,0.6604,0.3208,0.2076,0.0944,0.0566,-0.0188,0.0944,0.1698,0.132,-0.0188,0.0566,0.0566,-0.132,-0.0566,-0.1698,-0.283,0.2106,0.3158,0.6492,0.8596,1,0.8948,0.5438,0.5088,0.4386,0.4386,0.7192,0.8948,0.9298,0.6666,0.614,0.8246,0.8246,0.4036,0.3508,0.1754,-0.0878,-0.035,0.5964,0.579,-0.1404,-0.3158,-0.4736,-0.3158,-0.228,-0.1404,-0.3158,-0.421,0.1172,0.3104,0.4206,0.9034,1,0.7656,0.4758,0.2552,0.0206,0.2552,0.2414,0.6276,0.5724,0.1034,0.1448,0.2966,0.2552,0.1586,0.0068,-0.0068,-0.1862,-0.062,0.0068,0.0482,-0.2276,-0.3932,-0.4896,-0.5724,-0.4068,-0.3932,-0.338,-0.4068,1,-1,-1,1,-1,-1,-1,-0.8334,-1,0.326,0.3696,0.087,0.4782,0.0652,0.5218,0.413,1,0.674,0.7608,0.7392,0.2826,0.5218,0.1304,-0.2826,0,0.3044,0.4566,0.413,0.1086,0.8696,0.8478,0.4348,0.174,0.2826,0.1086,0.1304,0.087,0.0218,0.0652,0.0434,-0.7608,'18'
-0.7364,-0.4496,-0.137,-0.1308,0.0244,0.5218,0.8512,1,0.8044,0.7748,0.6834,0.3198,-0.0244,-0.2582,-0.2264,-0.1818,-0.2902,-0.2242,-0.0988,-0.1328,-0.018,0.2072,0.4368,0.4176,0.0946,-0.118,-0.0456,-0.0116,0.186,0.4156,0.441,0.154,-0.5856,-0.1926,-0.15,-0.0378,0.2352,0.5586,0.8838,0.8644,1,0.878,0.911,0.3088,-0.0572,0.15,-0.0242,-0.0126,-0.3242,-0.2236,0.03,-0.0998,-0.1268,0.1674,0.1674,-0.03,-0.0978,-0.3224,-0.1132,-0.0494,0.0358,0.2198,0.4212,0.2798,-0.5844,-0.2286,-0.0854,-0.002,0.2824,0.6262,0.817,0.9364,0.996,1,0.9384,0.4076,0.0676,0.0974,0.0418,-0.0736,-0.3976,0.0516,0.153,0.2842,0.163,-0.1312,-0.2306,-0.2306,-0.3598,-0.485,-0.3558,-0.2446,-0.2186,0.0874,0.3738,0.344,-0.6044,-0.2982,-0.0426,-0.0162,0.2616,0.7242,0.781,1,0.8946,0.8742,0.9188,0.8762,0.422,0.286,0.282,0.3286,0.4118,0.4422,0.2942,0.1784,-0.3286,-0.3428,-0.3772,-0.6532,-0.6856,-0.6734,-0.643,-0.7302,-0.4604,-0.3104,-0.1644,0.0426,-0.6126,-0.316,0.1054,0.1166,0.4836,0.8844,0.8302,0.88,0.7758,0.914,0.9682,1,0.9208,0.769,0.7056,0.5788,0.5312,0.1982,-0.1326,-0.3636,-0.2978,-0.402,-0.6852,-0.599,-0.5764,-0.6806,-0.7576,-0.7418,-0.6422,-0.4994,-0.4406,-0.3612,-0.748,-0.3436,0.0892,0.0036,0.522,0.6908,0.3816,0.6338,0.6956,0.7074,0.805,0.8146,1,0.881,0.5458,0.5766,0.0464,-0.2414,-0.3674,-0.4198,-0.641,-0.7764,-0.7194,-0.6576,-0.7384,-0.6932,-0.7288,-0.7074,-0.7502,-0.8216,-0.648,-0.598,-0.869,-0.3036,0.003,-0.2262,0,0.2262,0.5208,0.3898,0.4078,0.3452,0.2946,0.5596,0.9196,1,0.8184,0.7142,0.5684,-0.0804,-0.0922,0,-0.256,-0.4732,-0.5922,-0.6042,-0.5446,-0.6012,-0.6102,-0.5744,-0.7024,-0.6072,-0.5626,-0.5268,-0.8636,-0.7728,-0.2272,-0.2272,-0.2272,0.1818,0.9546,1,0.5454,0.8636,0.8636,0.3636,0.091,-0.3182,-0.2272,-0.2272,-0.4546,-0.3182,-0.091,-0.1818,-0.091,0.2728,0.3636,0.4546,-0.0454,0.0454,0.0454,-0.2728,0.3182,0.1818,0.4546,0.0454,-0.7778,-0.6888,-0.2444,-0.3778,-0.0666,0.3334,0.8222,1,0.6888,0.7778,0.5556,-0.0666,0.1112,-0.3778,-0.4222,-0.4222,-0.5556,-0.1556,-0.0666,-0.1556,-0.1556,-0.0666,0.5112,0.4666,0.1556,0.1112,-0.1556,0.1556,0.1112,0.6,0.5556,-0.1112,-0.6326,-0.3266,-0.0816,-0.0408,0.2448,0.6122,0.7346,1,0.9388,1,0.796,0.7756,0.1632,-0.0408,0.102,0.1224,0.0612,0.2244,0.5714,0.5714,-0.0816,-0.347,-0.2448,-0.449,-0.551,-0.5306,-0.4286,-0.5306,-0.3266,-0.347,0.0816,0.4286,-1,-1,-1,-1,-1,-1,-1,-1,-0.9498,-0.957,-0.5162,0.0108,0.5268,0.6594,0.638,0.6918,0.6954,0.8136,0.4874,0.0788,-0.276,-0.7348,-0.8028,-0.8028,-0.81,-0.8388,-0.9176,-0.9318,-0.9354,-0.9498,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9808,-0.982,-0.3764,-0.1526,0.6324,0.7506,0.686,0.6876,0.7544,0.483,0.1532,-0.2056,-0.5054,-0.8566,-0.919,-0.9256,-0.9328,-0.9442,-0.9678,-0.9656,-0.9694,-0.976,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9868,-0.98,-0.6868,-0.6084,-0.58,-0.6078,-0.54,-0.5524,-0.5154,-0.5186,-0.4586,-0.454,-0.4908,-0.3954,-0.5334,-0.5068,-0.3968,-0.6434,-0.7734,-0.62,-0.9468,-0.9,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,-0.5428,-0.9142,-0.8286,-0.6,-0.6,-0.8,-0.8,-0.8,-0.5142,-0.5428,-0.8286,-0.8,-0.8286,-0.7428,-0.7714,-0.8572,-0.8286,-0.0858,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.264,0.2468,0.2018,0.1126,0.078,-0.0096,-0.0566,-0.1894,-0.52,-1,-0.5866,0.5412,-0.2314,-0.1932,-0.1636,-0.1598,-0.1368,1,-0.451,-0.0196,0.2942,0.5686,1,1,0.3334,0.098,0.1372,0.0196,0.3334,0.4118,0.1764,0.1764,0.0588,0.3334,0.2942,0.0588,-0.098,-0.4118,-0.4118,-0.4118,-0.7254,-0.4902,-0.6078,-0.5686,-0.2156,-0.098,0.0588,0.1372,-0.1372,-0.647,-0.4906,-0.0754,0.132,0.585,0.9246,1,0.2264,0.0944,-0.0188,0.0378,0.151,0.6416,0.3584,0.1886,0.151,0.4716,0.1132,0.0944,-0.2264,-0.6226,-0.6226,-0.5284,-0.4906,-0.5284,-0.6792,-0.5094,-0.1698,-0.151,0.283,0.283,0.1886,-0.4716,-0.3334,0.0334,0.35,1,0.9,0.9834,0.3334,0.0334,-0.0166,0.1334,0.35,0.55,0.4666,0.3,0.55,0.4834,0.35,0.3334,0.0166,-0.1834,-0.1,-0.2,0.05,-0.0666,-0.1,-0.1166,-0.05,0.0166,0.2334,0.5666,0.5,-0.25,0.0734,-1,-1,1,-1,-1,-1,-0.8334,-1,0.2478,0.265,0.1794,0.5898,0.4872,0.3162,0.4872,0.4188,0.812,0.9488,1,0.4358,0.2992,0.1966,0.5556,0.641,0.6752,0.5042,0.453,0.094,0.6924,0.8462,0.4872,-0.0428,-0.265,-0.0086,0.2992,0.265,0.0428,0.3162,0.4188,0.1624,'18'
-0.3108,0.0726,0.2176,0.2902,0.7254,0.8756,1,0.6374,0.3212,-0.031,-0.2176,-0.2538,-0.0932,-0.0932,0.145,0.4042,0.4974,0.715,0.7254,0.4664,0.3108,0.2124,0.4456,0.4404,0.456,0.4456,0.1762,0.1968,0.1762,-0.2072,-0.0518,0.1554,-0.2904,0.1514,0.2208,0.335,0.7568,0.7518,1,0.8462,0.4244,0.0322,0.0074,0.1464,0.0372,0.1464,0.3846,0.4292,0.6278,0.727,0.8858,0.6378,0.5384,0.5832,0.5782,0.727,0.5632,0.6476,0.325,0.1066,-0.0124,-0.2854,-0.1564,-0.0968,-0.2722,0.145,0.2316,0.313,0.6692,0.7404,1,0.7608,0.5012,0.2672,0.1704,0.0942,-0.033,-0.0076,0.1552,0.3384,0.5114,0.8218,0.8576,0.5624,0.4758,0.2672,0.374,0.4096,0.374,0.1908,0.0382,0.0788,0.033,-0.2418,-0.1552,-0.0534,-0.2762,0.094,0.3204,0.3702,0.5912,0.9006,1,0.9226,0.8232,0.4972,0.127,0.0552,0.2652,0.0774,0.315,0.7348,0.674,0.6796,0.464,0.4364,0.4806,0.21,0.116,0.127,0.0276,-0.0774,-0.348,-0.3868,-0.4034,-0.3592,-0.3868,-0.1768,-0.3736,-0.0736,0.1474,0.1316,0.2842,0.779,0.8106,1,0.6736,0.1632,-0.1106,-0.321,-0.3106,-0.1474,0.1316,0.1526,0.021,0.1842,0.0948,0.0474,-0.1052,-0.1474,0.0052,-0.0422,-0.1052,-0.4578,-0.4526,-0.3578,-0.3894,-0.4106,-0.6264,-0.4578,-0.361,-0.0732,0.1756,0.1366,0.244,0.6488,0.922,1,0.3804,0.0244,0.0146,-0.4682,-0.1464,-0.1854,-0.1952,0.122,0.078,-0.2586,-0.0488,-0.0926,-0.239,-0.1464,0.0634,0.083,-0.117,-0.2342,-0.3366,-0.1464,-0.2098,-0.5804,-0.6488,-0.7074,-0.135,0.1904,0.4048,0.1626,0.5502,0.7994,1,0.9032,0.5502,-0.1072,-0.2318,-0.4464,0.0174,-0.2042,-0.1904,-0.128,-0.4118,-0.3356,-0.2388,-0.1972,-0.135,-0.2318,0.0726,0.0658,-0.3148,-0.1418,-0.3702,-0.4602,-0.6056,-0.9516,-0.8824,-0.9378,-0.4286,0,0.238,0.381,0.6666,0.6666,0.9524,0.762,0.1428,0.0952,-0.2858,-0.3334,-0.1904,-0.238,0.238,0.4762,0.5714,1,0.9524,0.4762,0.4762,0.1428,0.4286,0.381,0.381,0.4286,0.381,0.2858,0.1904,-0.1904,-0.0952,0.0952,0.0624,0.375,0.4376,0.5938,0.75,0.875,1,0.7188,0.4376,0.125,0.125,0.25,0.4062,0.375,0.375,0.5938,0.625,0.8124,0.75,0.5938,0.4062,0.4062,0.4688,0.4062,0.625,0.4688,0.3438,0.4062,0.3438,0.1876,0.375,0.4062,-0.2392,0.1522,0.2392,0.3044,0.6522,0.826,1,0.8044,0.5652,0.3696,0.2608,0.1522,0.0652,0.087,0.0218,0.326,0.5,0.7392,0.7392,0.4782,0.174,0.0652,0.1086,0.3044,0.1956,0.1304,0.174,-0.0434,0.0652,-0.2174,-0.1304,-0.1086,-1,-1,-1,-1,-1,-1,-1,-1,-0.9648,-0.9732,-0.4374,0.3148,0.5668,0.874,0.9412,0.9816,0.822,0.6508,0.471,0.3854,0.2644,-0.2578,-0.5936,-0.8706,-0.8522,-0.9362,-0.8706,-0.9194,-0.9294,-0.9396,-0.948,-0.9378,-0.9396,-1,-1,-1,-1,-1,-1,-1,-1,-0.9746,-0.977,-0.3926,0.094,0.22,0.6688,0.8604,0.7162,0.528,0.4998,0.288,0.1762,-0.039,-0.5824,-0.7588,-0.651,-0.6742,-0.6694,-0.6788,-0.7078,-0.657,-0.7132,-0.7676,-0.7888,-0.7232,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.96,-0.6634,-0.656,-0.71,-0.7368,-0.6034,-0.6634,-0.6834,-0.6834,-0.69,-0.6834,-0.6668,-0.7068,-0.27,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,-0.6,-0.6572,-0.5428,-0.4286,-0.7428,-0.6,-0.8286,-0.6286,-0.1428,0.2,1,1,-0.8,-0.9428,-0.8572,-0.9142,-0.9142,-0.9142,-0.9142,-0.8572,-0.8858,1,1,1,1,1,1,1,1,1,1,0.0184,0.0382,0.0726,0.0644,0.1178,0.1102,0.086,0.0634,-0.1518,-0.2864,-0.5734,-0.353,-0.3194,0.1224,0.1024,-0.0066,0.447,1,-0.423,-0.0384,0.577,0.577,0.3076,0.2308,0.1154,0.5,0.8846,1,0.923,0.8846,0.923,0.8076,0.6538,0.5,0.5,0.5384,0.6154,0.4616,0.077,-0.1154,-0.1538,-0.1538,0.1154,0.077,0.0384,0.1538,0.2308,0.3076,0.1154,-0.3076,-0.1712,0.1352,0.7298,0.6936,0.3514,0.1532,0.3154,0.3874,0.8378,1,0.6396,0.8198,0.8378,0.6756,0.6756,0.4234,0.4414,0.4954,0.7118,0.4594,0.1712,-0.1532,-0.027,-0.099,0.099,0.045,-0.027,0.1172,0.2792,0.3874,0.2252,-0.1172,0.0428,0.282,0.8804,0.9146,0.5384,0.077,0.2478,0.5384,0.829,1,0.624,0.7948,0.7606,0.5898,0.5042,0.2308,0.4358,0.6752,0.8462,0.5042,0.2478,-0.0598,-0.2478,-0.1112,-0.1282,-0.1282,-0.1966,0.0086,-0.0256,0.1794,0.1794,-0.1624,0.6594,-1,-1,1,-1,-1,-0.8,-0.8334,-1,-0.7542,-0.7878,-0.5642,-0.3854,-0.4302,-0.3296,-0.352,-0.095,-0.2402,-0.2402,-0.2626,-0.229,-0.1844,-0.1956,-0.229,-0.229,-0.0614,-0.0168,0.0614,-0.028,0.162,0.3632,0.3744,0.419,0.4078,0.553,0.6312,0.3966,0.4302,0.6312,1,0.7206,'19'
-0.484,0.0192,0.1088,0.275,0.6886,0.7442,0.838,0.774,0.42,0.2708,0.1856,0.1728,0.1386,0.1642,0.258,0.275,0.4882,0.8764,1,0.9232,0.8764,0.8166,0.7954,0.8294,0.6886,0.7526,0.6418,0.5522,0.275,0.322,0.4158,0.484,-0.268,0.2,0.1446,0.3064,0.6596,0.7192,1,0.9702,0.3958,0.2382,0.3404,0.2596,0.3022,0.383,0.366,0.4256,0.766,0.9446,0.949,0.8128,0.8086,0.7574,0.6298,0.8808,0.8766,0.766,0.6256,0.5744,0.4638,0.332,0.4212,0.3914,-0.3656,0.0344,0.099,0.196,0.3696,0.7132,1,0.8424,0.5314,0.5232,0.507,0.3696,0.305,0.402,0.4788,0.5272,0.7656,0.6728,0.7212,0.6324,0.6768,0.507,0.4748,0.5636,0.495,0.4868,0.1878,-0.0304,-0.1314,-0.103,-0.0666,-0.006,-0.3362,0.0298,0.2212,0.2596,0.4256,0.8852,0.9958,0.9958,0.9148,0.8638,0.5192,0.3872,0.6382,0.4852,0.5702,1,0.9148,0.6978,0.6426,0.668,0.5192,0.5532,0.6086,0.6086,0.566,0.4212,0.2,0.0554,0.1064,0.1106,-0.0128,-0.017,-0.353,-0.0046,0.1538,0.1494,0.2896,0.8372,0.7874,1,0.7286,0.6426,0.2308,0.2806,0.267,0.276,0.6064,0.6652,0.3168,0.2488,0.3484,0.3574,0.3212,0.0634,0.2488,0.2986,0.1448,-0.0588,-0.1856,-0.1358,-0.2444,-0.4208,-0.3212,-0.38,0,0.504,0.392,0.232,0.184,0.6,0.92,0.928,0.616,0.392,-0.016,0.088,0,0.168,0.256,0.224,0.128,0.144,0.312,0.384,0.152,0.048,0.144,0.312,0.24,0.936,1,0.536,0.144,0.192,0.048,-0.192,0.274,-0.1302,-0.5684,-0.774,-0.8904,-0.0958,-0.0548,-0.185,-0.2672,-0.2534,-0.2876,-0.3288,-0.041,-0.0342,-0.089,0.0616,0.0136,-0.0342,0.2876,0.4042,0.2398,0.4178,0.3562,0.2192,0.3082,0.8014,1,0.863,0.4178,0.5958,0.548,0.548,-0.6596,-0.3192,-0.0638,0.0638,0.4894,0.4894,0.617,0.3618,0.4042,0.0638,-0.0638,-0.0212,-0.0212,0.1064,-0.0212,0.1064,0.4042,0.6596,1,0.9574,0.7022,0.617,0.617,0.7022,0.7022,0.5744,0.0638,0.0638,0.1064,0.149,0.1914,0.1914,-0.5416,-0.0834,-0.0834,0.2084,0.5416,0.8334,0.75,0.5,0.125,0.3334,-0.0416,0.0416,0.0834,0.0416,0.3334,0.375,0.5,0.6666,1,1,0.875,0.7916,0.4166,0.5,0.4584,0.25,0.2916,0.25,0.2084,0.1666,0.25,0.5,-0.2702,0.081,0.2162,0.1892,0.4054,0.6756,0.919,1,0.6756,0.5676,0.081,0.1892,0.081,-0.081,0.2972,0.2972,0.2162,-0.027,0.1082,0.2972,0.1892,0.081,0.1892,0.1082,0.1892,0.2432,0.2162,-0.081,-0.3244,-0.3244,-0.2702,-0.2972,-1,-1,-1,-1,-1,-1,-1,-0.9554,-0.9622,-0.9554,-0.2718,0.1804,0.3452,0.5612,0.862,0.9644,0.7038,0.4476,0.2182,-0.1804,-0.1492,-0.0044,-0.7818,-0.8464,-0.931,-0.9154,-0.9554,-0.9554,-0.942,-0.882,-0.9154,-0.8596,-0.9154,-1,-1,-1,-1,-1,-1,-1,-0.9806,-0.979,-0.9662,-0.2728,0.2434,0.719,0.3894,0.6896,0.5768,0.3904,0.1688,-0.248,-0.6636,-0.6178,-0.357,-0.4154,-0.6626,-0.6062,-0.6592,-0.563,-0.5336,-0.5156,-0.7064,-0.7668,-0.8396,-0.9412,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.9334,-0.8734,-0.3,-0.3668,-0.2668,-0.37,-0.6086,-0.663,-0.5886,-0.6058,-0.5944,-0.4516,-0.1172,0.0056,1,1,1,1,1,1,1,1,1,0.5632,-0.1034,-1,-1,-1,-1,-1,-1,-1,-0.6286,-0.9428,1,1,1,-0.6572,-0.5714,-0.6572,-0.9142,-0.7142,-0.3142,0.6,0.4286,1,1,-0.1142,-0.5714,-0.8286,-0.6858,-0.8,-0.7428,-0.6858,-0.5714,-0.6,1,1,1,1,1,1,1,1,1,1,1,1,0.3142,0.365,0.3834,0.3888,0.4138,0.402,0.3354,0.158,-0.1144,-0.1412,-0.5866,-0.247,-0.047,0.0954,0.0994,1,0.5604,1,-0.2084,0.2084,0.7084,0.7084,0.5416,0.375,0.2084,0.4166,0.5416,0.7916,0.7084,0.6666,0.75,0.7084,0.5416,0.6666,0.8334,1,0.9166,0.875,0.75,0.5834,0.0834,-0.1666,-0.25,-0.0416,-0.0834,-0.125,0.2084,0.5416,0.375,-0.1666,-0.258,0.129,0.6774,0.7904,0.4838,0.2904,0.2096,0.4032,0.4678,0.8226,0.6612,0.5484,0.6612,0.6774,0.5806,0.6452,0.6936,0.871,0.887,1,0.9194,0.613,0.2258,-0.0322,-0.0162,-0.0162,0.0806,0.2096,0.242,0.2742,0.258,-0.1452,-0.1578,0.2106,0.6492,0.8772,0.4736,0.2456,0.228,0.1754,0.7368,0.9824,1,0.9122,0.8596,0.7368,0.421,0.5438,0.4562,0.5438,0.8422,0.9122,0.7894,0.2456,0.1404,-0.228,-0.0176,0.1052,0.1754,0.2456,0.4386,0.5614,0.579,0.035,0.548,-1,-1,1,-0.8,-1,-1,-0.8334,-1,-0.678,-0.2628,-0.2542,-0.2372,-0.356,-0.161,-0.0084,0.1356,-0.0424,0.0254,0.0084,0.178,0.0762,0.0762,0.161,0.144,0.178,0.2966,0.322,0.2966,0.4238,0.517,0.517,0.517,0.483,0.517,0.7288,0.7628,0.6272,0.7966,1,0.8898,'19'
-0.3078,0.9094,1,0.1504,0.1264,-0.0214,0.1886,-0.0978,-0.4224,-0.623,-0.8806,-0.8902,-0.5514,-0.728,-0.4272,-0.3604,-0.4128,-0.2984,-0.1646,-0.0978,0.0502,0.4034,0.8616,0.957,0.957,0.7708,0.8854,0.9904,0.957,0.7708,0.7374,0.6658,-0.3372,0.5722,0.58,0.0134,0.025,0.2178,0.2486,-0.2292,-0.183,-0.8074,-0.9768,-0.7032,-0.5876,-0.526,-0.368,-0.6764,-0.8074,-0.3796,-0.16,-0.1638,0.0944,0.3834,0.7804,0.657,0.6918,0.5646,1,0.9076,0.8034,0.7534,0.9344,0.896,-0.1976,0.6472,0.659,0.0698,0.0466,0.438,0.4186,-0.159,-0.1706,-0.8604,-0.6628,-0.624,-0.6124,-0.562,-0.5968,-0.7132,-0.5698,-0.1976,-0.1396,0.0156,0.0776,0.279,0.3528,0.8838,1,0.5776,0.6822,0.814,0.9574,0.7868,0.9264,0.752,-0.0934,0.661,0.5962,0.1924,0.0248,0.402,0.2038,-0.2876,-0.562,-0.8742,-0.779,-0.7638,-0.6686,-0.6496,-0.5314,-0.5352,-0.5086,-0.3866,-0.4324,-0.322,-0.04,0.139,0.5124,0.8476,0.8934,0.878,0.84,0.9696,1,0.9848,0.6876,0.6686,0.0326,0.6604,0.6652,0.8466,0.2,-0.0372,-0.2976,-0.4652,-0.5906,-0.8466,-0.8838,-0.7302,-0.7348,-0.8884,-0.6652,-0.7256,-0.6,-0.5906,-0.4232,-0.2326,-0.0046,0.0372,0.6186,0.9954,0.9814,0.828,1,0.9906,0.972,0.9488,0.9488,0.7396,0.072,0.4618,0.8794,0.8236,-0.1276,-0.0904,-0.1508,-0.4896,-0.6242,-0.833,-0.6706,-0.5406,-0.5082,-0.4106,-0.4896,-0.638,-0.5546,-0.3226,-0.2714,-0.3782,-0.2714,-0.1508,0.573,0.9536,0.9444,0.819,1,0.949,0.819,0.949,0.5684,0.4802,0.184,0.6134,0.7424,0.5582,-0.5644,-0.595,-0.7546,-0.8712,-0.7792,-0.7056,-0.6748,-0.6258,-0.73,-0.4172,-0.3252,-0.3558,-0.5092,-0.9386,-0.6442,-0.3742,-0.2576,-0.2884,0.2148,0.5522,1,0.8098,0.632,0.9142,0.7178,0.589,0.4724,0.276,0.2916,0.9166,1,0.75,0.375,0.4584,0.375,0.3334,0.0416,-0.0834,-0.125,0.1666,0.1666,-0.1666,0.3334,0.2916,0.125,-0.2084,0.0834,-0.125,0.0416,0.4166,0.5,0.8334,0.8334,0.375,0.5,0.375,0.6666,0.7084,0.75,0.5834,-0.1556,0.7778,0.8666,0.2888,0.1112,-0.2888,0.1112,0.0222,-0.1556,-0.1556,-0.4666,-0.8666,-0.7334,-0.7334,-0.5556,-0.2444,-0.2444,-0.1112,-0.0666,0.2888,0.3778,0.6,0.7778,0.3334,0.6888,0.6,0.9112,1,0.6888,0.6888,0.5556,0.5556,-0.2,0.65,0.675,0.025,0.05,0.425,0.425,-0.125,-0.125,-0.575,-0.6,-0.5,-0.575,-0.6,-0.575,-0.525,-0.375,-0.2,-0.075,0.05,0.175,0.35,0.475,0.85,1,0.625,0.6,0.7,0.875,0.675,0.825,0.725,-1,-1,-1,-1,-0.9556,-0.958,-0.879,1,1,1,-0.595,0.753,0.674,0.4494,0.405,0.3604,0.242,0.2172,0.1926,0,-0.2148,-0.5432,-0.7308,-0.8098,-0.8914,-0.9408,-0.963,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9304,-0.9286,-0.2342,1,1,0.6954,-0.5492,0.6154,0.9008,0.8138,0.6936,0.6084,0.6414,0.3926,0.2638,0.0444,-0.2638,-0.577,-0.7494,-0.805,-0.8764,-0.9164,-0.9286,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.9468,-0.6234,-0.51,-0.91,-0.8434,-0.7868,-0.73,-0.625,-0.6226,-0.63,-0.6468,-0.58,-0.4846,-0.4734,-0.5846,-0.6112,-0.6756,-0.8468,-0.7768,-0.71,-0.9468,-0.9534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6858,1,1,1,-0.2572,-0.1714,-0.2,1,-0.2572,-0.8,-0.8286,-0.8858,-0.8286,-0.9428,-1,-0.6858,-0.4572,-0.6858,-0.6572,-0.8286,-0.7428,-0.7714,-0.8572,-1,-1,-1,-1,-1,-1,-0.0398,0.0054,0.049,0.109,0.1534,0.2112,0.2388,0.2848,0.3342,0.0352,0.872,0.9058,0.8962,0.8498,0.8652,0.8706,0.9192,0.9308,0.9942,0.936,-0.7466,0,-0.53,-0.175,0.8086,0.8016,0.8016,1,0.232,0.0324,-0.0324,-0.0822,-0.2618,-0.2718,-0.0124,-0.1072,-0.0074,0.217,0.3766,0.3566,0.0822,0.232,0.2668,0.3366,0.3266,0.3866,0.3816,0.4962,0.8604,0.9302,1,0.9052,0.8604,0.965,0.7556,0.7956,0.2868,0.2418,0.2668,-0.0324,1,0.7778,0.0994,-0.0936,-0.2046,-0.2106,0.0116,-0.0116,-0.0936,0.0878,0.2632,0.5672,0.304,0.462,0.6024,0.5556,0.3568,0.5556,0.6726,0.6374,0.807,0.8772,0.8362,0.8888,0.772,0.8596,0.8538,0.766,0.7894,0.5672,0.4386,0.0234,0.3124,0.0188,-0.375,-0.3312,-0.3188,-0.125,0.0688,-0.1062,-0.0812,0.0312,0.1874,0.6812,0.7812,0.625,0.7062,0.775,0.5062,0.7938,0.8124,0.6874,0.6312,0.9624,0.825,0.8,0.85,1,0.9438,0.7124,0.8938,0.8438,0.4562,0.1562,1,-1,-1,1,-1,-1,-1,-0.1,-1,0.0312,0.0312,-0.125,-0.4376,0.0624,0.25,0.2812,0.125,0.5,0.1562,0.2188,1,0.625,0.3438,0.7188,0.0312,0.3124,0.3438,0.375,0.0938,0.25,0.2188,0.5624,0.8438,0.3438,0.25,0.3124,0.4062,0.4688,0.5624,0,-0.5312,'20'
-0.792,0.1176,0.21,-0.3372,-0.4336,-0.3294,-0.2602,-0.4836,-0.449,-0.7418,-0.7764,-0.8188,-0.6262,-0.7496,-0.5876,-0.7148,-0.603,-0.5684,-0.5144,-0.4412,-0.0404,-0.002,0.341,0.5452,0.6648,0.7456,0.6108,0.8342,0.6994,1,0.9152,0.5184,-0.7338,0.1244,0.1488,-0.0508,-0.0228,-0.0858,-0.0402,-0.1418,-0.0754,-0.6708,-0.6848,-0.5202,-0.436,-0.6742,-0.7232,-0.7302,-0.5412,-0.6812,-0.5202,-0.5342,-0.1734,-0.0438,0.4852,0.4606,0.8144,0.6848,0.9054,0.8844,0.993,1,0.9754,0.9684,-0.6322,0.1558,0.1182,0.3922,0.2946,0.0956,-0.0282,-0.0282,-0.1858,-0.3734,-0.4784,-0.3772,-0.4822,-0.6022,-0.6472,-0.606,-0.5984,-0.531,-0.4634,-0.2834,-0.2496,-0.0844,0.2382,0.666,0.7974,0.7186,0.5384,0.7636,0.94,1,0.8874,0.516,-0.5096,0.112,0.5406,0.7528,0.2934,-0.0926,-0.0232,-0.1738,-0.2972,-0.4826,-0.7258,-0.556,-0.5212,-0.5908,-0.7916,-0.5868,-0.5598,-0.2858,-0.197,-0.0772,0.0154,0.2124,0.5406,0.834,0.9806,1,0.749,0.6756,0.8146,0.946,0.7452,0.5792,-0.6574,-0.1234,0.6796,0.6722,-0.4106,-0.0718,-0.0828,-0.2044,-0.429,-0.6022,-0.7312,-0.7384,-0.6464,-0.5838,-0.5728,-0.6612,-0.6354,-0.6058,-0.4034,-0.2008,-0.0866,-0.1418,0.164,0.6132,0.8526,0.8158,0.477,0.8638,1,0.7974,0.8454,0.8268,-0.686,0.0248,0.686,0.5578,-0.4586,-0.1488,-0.409,-0.7562,-0.7148,-0.7438,-0.6652,-0.7066,-0.5454,-0.628,-0.562,-0.5992,-0.7686,-0.6198,-0.4752,-0.4752,-0.3842,-0.3224,0.0868,0.5,0.6942,0.843,0.7562,0.8264,1,0.8512,0.9422,0.8058,-0.3966,-0.1192,-0.0268,-0.2068,-0.669,-0.4112,-0.5378,-0.6496,-0.9222,-0.6448,-0.6642,-0.4014,-0.4064,-0.3528,-0.0706,-0.2554,-0.635,-0.4696,-0.4988,-0.489,-0.163,-0.129,0.1484,0.4744,0.8638,0.7372,0.7566,1,0.961,0.9026,0.9952,0.6934,0.132,0.5472,0.6604,0.434,0.0566,0.0944,-0.0188,-0.1698,-0.0944,-0.132,0.1698,0.283,0.3962,0.2076,0.3208,0.2076,0.0188,0.0944,0.1698,0.2452,0.3584,0.3584,0.5472,0.6604,0.7736,0.6604,0.849,0.9246,0.849,1,0.9622,0.8114,-0.6,0.3,0.35,-0.3,-0.25,-0.3,-0.05,-0.45,-0.35,-0.55,-0.65,-0.6,-0.5,-0.55,-0.65,-0.9,-0.4,-0.25,-0.2,0.1,-0.05,-0.05,0.75,0.85,0.55,0.6,0.75,1,0.95,0.7,0.65,0.6,-0.2642,0.2076,0.6982,0.6416,0,0.2264,0.151,-0.0188,-0.3774,-0.3396,-0.2642,-0.2452,-0.3208,-0.3396,-0.434,-0.283,-0.2642,-0.3018,0,0.0188,0.151,0,0.1132,0.4528,0.868,0.8868,0.6416,1,0.9812,0.5094,1,0.9622,-1,-1,-1,-0.9244,-0.8972,-0.7028,-0.5136,0.3514,-0.173,0.7406,-0.3946,0.4324,0.1892,0.146,0.1298,0.5136,0.6702,0.8162,0.773,0.546,-0.1298,-0.5622,-0.5784,-0.6756,-0.8648,-0.881,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9252,-0.9232,0.107,0.6448,0.8464,0.2462,0.1796,-0.4662,0.2564,0.6178,0.8338,0.9004,0.6034,0.3644,0.4538,0.4288,0.1464,-0.3748,-0.6844,-0.732,-0.7902,-0.8546,-0.8816,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.9668,-0.2168,0.74,0.54,0.63,-0.32,0.13,-0.0956,0.2022,0.2622,0.1466,-0.1578,-0.189,-0.1646,-0.1956,-0.374,-0.344,-0.3,-0.7134,-0.5268,-0.68,-0.8934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,-0.8858,-0.5428,0.6286,0.6286,0.6858,-0.6286,-0.7142,-0.8,-0.9428,-0.9428,-0.8286,-0.7142,-0.5142,-0.4286,-0.6572,-0.6572,-0.7714,-0.7142,-0.8286,-1,-1,-1,-1,-1,-1,-1,0.1672,0.2132,0.2496,0.2794,0.3376,0.381,0.432,0.5148,0.5538,0.4002,0.8558,0.917,0.9184,0.9934,1,1,1,1,1,0.995,-0.8,0.0824,-0.516,-0.4954,0.3708,0.5036,0.4994,1,-0.5128,-0.5296,-0.4872,-0.4194,-0.267,-0.178,-0.0678,-0.0848,-0.0338,0.0678,0.445,0.6652,0.5594,0.3644,0.445,0.4534,0.3432,0.589,0.7838,0.9068,0.983,0.9704,0.8728,1,0.945,0.8516,0.9026,0.6822,0.6992,0.572,0.4492,0.2372,-0.281,-0.489,-0.2738,-0.2884,-0.1678,-0.1022,-0.2008,-0.1606,-0.1424,0.1022,0.1716,0.803,0.6678,0.219,0.562,0.584,0.3358,0.354,0.6424,0.7044,0.708,0.8066,1,0.8832,0.8468,0.7336,0.8322,0.6094,0.5948,0.7262,0.4928,0.0548,0.055,-0.0726,-0.1428,-0.222,-0.033,-0.1032,0.0682,0.134,-0.0066,0.0154,0.2396,0.5604,0.8022,0.7406,0.8286,0.8462,0.8242,0.7186,0.9252,1,0.8946,0.9648,0.9824,0.978,0.9472,0.877,0.7802,0.701,0.7318,0.6792,0.8286,0.1912,1,-1,-1,1,-1,-1,-1,0.1666,-1,0.0588,0.4118,0.0392,0.0784,0.196,0.2156,0.1568,0.4902,0.2156,-0.1568,0.0588,0.7844,0.7648,1,0.8824,0.804,0.4902,0.804,0.8628,0.8236,0.6078,0.6666,0.549,0.451,0.7058,0.3334,0.4902,0.451,0.549,0.5294,0.0392,-0.098,'20'
0.0022,0.7688,0.5964,0.161,0.1248,0.2426,-0.474,-0.424,-0.6734,-0.8276,-0.796,-0.7324,-0.5782,-0.8368,-0.7868,-0.6462,-0.6554,-0.5782,-0.0976,0.17,0.0612,0.5012,0.8776,0.9774,0.6826,0.5374,0.9774,1,0.7234,0.7778,0.7596,0.7278,-0.0762,0.5674,0.4568,0.6816,0.4394,0.2698,-0.2388,-0.18,-0.256,-0.2906,-0.6678,-0.5018,-0.18,-0.3876,-0.3114,-0.1904,-0.0968,0.3634,0.3634,0.82,0.7058,0.9134,0.7198,0.699,0.8754,1,0.481,0.4222,0.4706,0.4394,0.4532,0.429,0.0172,0.6494,0.6942,1,0.7732,0.3814,-0.0618,-0.1306,-0.0516,-0.0652,-0.3608,-0.433,-0.0928,0.0034,0.1924,0.244,0.3334,0.8522,0.8728,0.464,0.4296,0.519,0.6254,0.9656,0.7698,0.5774,0.2372,0.244,0.2852,0.3264,0.4192,0.3884,-0.0774,0.528,0.7838,1,0.6,0.2756,-0.0306,-0.0918,-0.1028,-0.2936,-0.3982,-0.2684,-0.0594,0.2864,0.2684,0.3226,0.2108,-0.0738,0.0018,-0.063,-0.081,0.1172,0.3838,0.5352,0.373,0.1676,-0.164,-0.164,-0.2324,-0.1352,0.045,0.3046,-0.2008,0.2366,0.9602,1,0.3638,0.2406,0.336,0.0776,-0.0616,-0.1928,-0.002,0.1492,0.324,0.0258,-0.2326,-0.4116,-0.5706,-0.5826,-0.6422,-0.5348,-0.3836,-0.2922,-0.0536,0.0854,0.1134,-0.2962,-0.678,-0.7496,-0.821,-0.6182,-0.4752,-0.1332,-0.0114,0.3908,1,0.866,0.5058,0.5632,0.3448,0.3372,0.5402,0.2376,0.0652,-0.2222,-0.3716,-0.5978,-0.5134,-0.7892,-0.9042,-0.8812,-0.908,-0.885,-0.6896,-0.7854,-0.5862,-0.4022,-0.41,-0.567,-0.8084,-0.8506,-0.885,-0.8238,-0.6246,-0.3832,0.2784,0.6462,0.9952,1,0.8208,0.5048,0.7358,0.9386,0.7924,-0.0424,-0.5944,-0.3584,-0.2452,-0.3538,-0.415,-0.5472,-0.5142,-0.6368,-0.8254,-0.849,-0.7784,-0.6416,-0.7548,-0.6274,-0.2312,-0.2076,-0.2216,-0.382,-0.533,-0.5,-0.5378,-0.283,0.2094,0.6744,0.5348,-0.0698,0.1628,0.1162,-0.907,-0.4418,-0.4884,-0.4884,-0.3954,-0.3024,-0.3488,-0.4418,-0.5814,-0.4418,-0.4418,-0.2094,-0.0232,0.2558,0.3954,0.3488,0.3024,0.721,0.721,0.1628,0.6744,0.8604,0.907,1,0.6744,0.8604,0.6098,0.756,0.6098,0.0732,0.2682,0.317,-0.1708,-0.1708,-0.2196,-0.4146,-0.317,-0.0732,-0.122,-0.4634,-0.317,-0.317,-0.756,-0.4634,0.1708,0.1708,-0.2196,0.7074,0.9024,0.8048,0.6586,0.756,0.8048,0.9512,0.8536,1,0.9512,0.8048,0.0488,0.5122,1,0.9756,0.5854,0.6342,0.5854,0.2682,0.3658,0.3414,0.317,0.3414,0.317,-0.317,-0.2682,-0.2682,-0.7318,-0.5366,-0.6342,-0.683,-0.3414,-0.2682,-0.122,0.2682,0.317,-0.1952,-0.683,-0.683,-0.4878,-0.3658,-0.317,-0.1464,-1,-1,-1,-0.9852,-0.9834,-0.6818,-0.7134,-0.5522,-0.5012,-0.5336,-0.4738,-0.133,0.081,0.3922,0.7212,0.894,0.9588,0.735,0.454,0.0526,-0.3186,-0.5866,-0.4894,-0.6386,-0.782,-0.8438,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9686,-0.97,-0.732,-0.748,-0.5732,-0.534,-0.5528,-0.4786,-0.1322,0.1666,0.436,0.7502,0.965,0.9132,0.6494,0.3512,-0.0972,-0.4072,-0.6508,-0.604,-0.727,-0.823,-0.8768,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.9534,-0.8934,-0.7934,-0.7,-0.5934,-0.6468,-0.66,-0.6134,-0.7512,-0.6534,-0.6556,-0.7934,-0.806,-0.798,-0.832,-0.838,-0.832,-0.846,-0.9668,-0.9,-0.8,-0.8534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,0.1714,0.0858,1,1,-0.6572,-0.5428,-0.6,-0.2572,-0.3428,-0.8286,-0.8572,-0.8286,-0.7428,-0.5428,-0.3714,-0.3428,-0.7142,-0.6572,-0.6858,-0.9428,-1,-0.3428,-1,-1,-1,-1,-1,-1,-1,-0.3662,-0.3088,-0.2368,-0.1948,-0.1384,-0.0576,0.0106,0.0694,0.1394,0.3446,0.9388,0.9606,0.989,0.9878,0.9946,0.9896,0.981,0.8584,0.6082,0.1028,-0.7066,0.1176,-0.4906,-0.3394,-0.1204,-0.0734,0.0692,-0.4166,0.1954,-0.172,0.3702,0.516,0.6034,0.4694,0.93,0.6794,0.7784,0.7202,0.7142,0.6618,0.8134,0.7084,0.5802,0.7668,0.5218,0.4578,0.6326,0.691,0.6968,0.656,0.586,0.6502,0.4402,0.6794,0.5802,0.312,0.4868,0.0728,-0.0146,-0.5568,0.6814,0.978,0.5238,0.077,-0.1428,-0.1978,-0.0074,-0.1722,-0.1502,0.033,0.4102,0.8168,0.5714,0.359,0.8316,0.8352,0.8424,1,0.751,0.7766,0.4798,0.2162,0.5054,0.4946,0.1098,0.0622,0.0512,0.26,0.5568,0.6484,0.337,-0.0696,0.6406,0.75,0.2526,0.0234,-0.4532,-0.3178,-0.3256,-0.1954,-0.2136,-0.0938,0.2032,0.625,0.4296,0.3698,0.737,0.7292,1,0.9948,0.7552,0.6042,0.4036,0.5782,0.448,0.4296,0.2916,0.2162,0.2266,0.198,0.5338,0.6328,0.2006,0.0208,-0.9832,1,-1,-1,-1,1,-1,-1,-1,1,0.9,0.5,0.7,0.7,0.25,0.325,0.425,0.425,0.5,0.35,0.175,0.125,0.4,0.25,0.45,-0.15,0.1,-0.1,-0.025,0.075,0.175,0.35,0.15,-0.05,0.275,0.475,0.55,0.175,0.05,0.225,-0.075,'21'
0.049,0.9696,0.8884,0.2894,0.0762,0.1032,-0.5262,-0.6684,-0.6988,-0.6852,-0.7564,-0.6074,-0.5838,-0.3908,-0.2014,-0.3976,-0.6142,-0.7564,-0.6582,-0.5466,-0.4822,-0.3468,0.286,0.3976,0.6074,0.4348,0.0964,0.2216,0.2588,0.6988,0.7428,1,0.0566,0.8094,0.7274,-0.0012,0.1194,0.3704,0.0542,-0.5682,-0.7418,-0.6912,-0.6406,-0.5536,-0.5972,-0.5754,-0.3534,-0.2882,-0.4862,-0.3728,-0.1026,-0.129,0.129,0.4958,0.8094,0.8722,0.9976,1,0.918,0.7756,0.7804,0.8214,0.7974,0.754,0.1942,0.9618,0.9118,0.9262,0.7736,0.6924,0.4542,-0.0154,-0.3182,-0.2992,-0.3492,-0.2228,-0.373,-0.2658,0.4278,0.4852,0.4636,0.4326,0.9094,0.8212,0.4256,0.4088,0.6902,0.7234,1,0.8618,0.4016,0.3064,0.559,0.6472,0.7426,0.8666,-0.0164,0.603,0.7826,1,0.5298,0.2314,-0.0366,-0.1656,-0.11,-0.3856,-0.459,-0.2212,0.0974,0.3502,0.1706,0.0012,-0.0442,-0.1984,-0.2338,-0.512,-0.4286,-0.1934,0.1352,0.2768,0.196,0.0796,-0.0772,-0.1706,-0.0594,0.1328,0.2212,0.2794,0.0304,0.4878,1,0.9788,0.3,0.2516,0.209,0.2788,0.0666,-0.191,0.0424,-0.3394,-0.5364,-0.6152,-0.6516,-0.8152,-0.9546,-0.997,-0.8636,-0.8636,-0.7242,-0.5212,-0.1728,0.1394,0.2484,-0.0272,-0.509,-0.6454,-0.6576,-0.4,-0.1394,-0.0576,0.3772,0.8636,1,0.6864,0.5046,-0.2728,0.4,0.6,0.6546,-0.4272,-0.6182,-0.6864,-0.6954,-0.4364,-0.2136,-0.3046,-0.459,-0.5818,-0.6136,-0.9318,-0.609,-0.6682,-0.6318,-0.459,-0.2818,-0.2954,-0.4546,-0.5546,-0.7772,-0.4228,-0.3228,-0.3772,0.3886,1,0.4742,0.1142,-0.9028,-0.2458,0.1428,0.6858,0.88,-0.2914,-0.48,-0.32,-0.0914,-0.0058,-0.1542,-0.4458,-0.3428,-0.4686,-0.8114,-0.6172,-0.5828,-0.6514,-0.5886,-0.6572,-0.6458,-0.4742,-0.7086,-0.8458,-0.5028,-0.3372,-0.5028,-0.5658,-0.5,0.4444,1,0.7222,0.0556,-0.2222,-0.1112,-0.1666,-0.1112,-0.1112,0.0556,-0.1112,-0.1666,0.3334,0.3888,0.2778,0,-0.6666,-0.6112,-0.3888,-0.0556,0.1112,-0.0556,0.0556,0,0.1112,0.3334,0.3334,0.2222,0.2778,0.2778,0.1112,0.2916,0.9584,1,0.7084,0.2916,0.25,0,0.1666,-0.0834,0.0834,-0.0416,0.0834,0.0416,0.2916,0.375,0.25,0.125,0.125,-0.125,-0.125,-0.125,-0.125,0.2916,0.2916,0.0834,0.0834,0.375,0.3334,0.0834,0.5,0.6666,0.5834,0.054,0.7838,0.7568,0.6756,0.5406,0.5136,0.2972,-0.1622,-0.4864,-0.4864,-0.5946,-0.3784,-0.5946,-0.8108,0.1622,0.2972,0.1622,0.1892,1,0.973,0.4324,0.4864,0.5406,0.7028,0.973,0.8108,0.3784,0.1892,0.4594,0.2972,0.5946,0.6486,-1,-1,-1,-1,-1,-1,-1,-0.9758,-0.9584,-0.5968,-0.6004,-0.4256,-0.3132,0.1972,0.4464,0.6592,0.898,0.6644,0.1194,-0.4238,-0.7042,-0.8114,-0.9134,-0.9584,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9564,-0.9442,-0.6618,-0.6376,-0.4958,-0.354,0.5516,0.6254,0.68,0.8072,0.463,-0.0982,-0.554,-0.7296,-0.8364,-0.9066,-0.9382,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9868,-0.9268,-0.87,-0.7634,-0.723,-0.6472,-0.5744,-0.743,-0.7386,-0.8054,-0.8654,-0.872,-0.8948,-0.924,-0.9654,-0.9068,-0.96,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,-0.3428,0.2572,-0.4,-0.1714,-0.3142,-0.0858,-0.4858,-0.5428,-0.7714,-0.6858,-0.8,-0.5714,-0.7142,-0.9142,-0.9428,-0.8,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.1988,-0.224,-0.241,-0.2292,-0.2386,-0.1886,-0.1202,-0.0126,0.092,0.1602,0.2312,0.238,0.2924,0.338,0.4178,0.497,0.6104,0.6584,0.3902,0.0952,-0.6666,0.7648,-0.6436,-0.5104,-0.4266,-0.5418,-0.5104,-1,0.1584,-0.4098,0.4426,0.377,0.4426,0.3442,0.7268,0.8688,0.7704,0.541,0.5846,1,0.694,0.836,0.7814,0.4644,0.5846,0.6612,0.4644,0.3662,0.836,0.705,0.4972,0.4208,0.399,0.4644,0.5738,0.235,0.0492,0.2896,0.1912,-0.2568,0.0922,0.5394,0.3422,0.8422,0.4868,0.4474,0.6052,0.8552,0.8552,0.5264,0.7764,0.8158,0.8422,0.6052,0.3158,0.4606,0.5394,0.171,0.3948,0.6448,0.5394,0.671,0.4868,0.3948,0.5264,0.5132,0.5922,0.6184,0.4868,0.5,0.4606,-0.25,0.7466,1,0.3854,0.159,-0.1536,0.0566,0.0674,0.2238,0.0404,0.0458,0.1052,0.4448,0.601,0.2938,0.3424,0.477,0.7304,0.9892,0.7196,0.558,0.5902,0.2614,0.1266,0.1806,-0.0458,-0.0134,0.062,0.0404,0.1106,0.1266,0.0242,-0.3424,-0.9904,1,-1,-1,-1,-0.2,-1,-1,-1,0.4616,0.4872,0.1794,0.3076,1,0.9488,0.5128,0.7948,0.641,0.2052,0.3846,0.3846,0.923,0.3334,0.5898,0.359,0.4358,0.359,0.4872,0.1538,0.4102,0.4872,0.359,0.282,0.4102,0.718,0.4616,0.3334,0.6154,0.641,0.1026,-0.1282,'21'
-0.0198,0.6094,0.6022,0.8336,0.472,0.1428,-0.0742,-0.0886,-0.3634,-0.4538,-0.584,-0.548,-0.3418,-0.5406,-0.49,-0.3744,-0.2912,0.0524,0.179,0.5878,0.5406,0.8048,0.859,1,0.8408,0.9602,0.8228,0.754,0.2876,0.2586,0.179,0.2188,-0.0748,0.4626,0.5136,0.717,0.4022,0.1702,0.008,-0.0238,-0.4022,-0.5008,-0.4372,-0.5104,-0.4626,-0.539,-0.4912,-0.2338,-0.3228,-0.0684,-0.1256,0.0206,0.3832,0.4214,0.8188,0.9206,0.9904,0.8188,0.698,0.9174,1,0.7552,0.4912,0.0938,-0.162,0.3724,0.569,0.7586,0.3,0,-0.0656,-0.2068,-0.5724,-0.7448,-0.6656,-0.6896,-0.7034,-0.7172,-0.5034,-0.338,-0.2518,-0.2206,-0.0828,-0.1552,0.0896,0.2932,0.4068,1,0.9828,0.6932,0.5794,0.7656,0.8518,0.9034,0.3206,0.3448,-0.198,0.2608,0.6106,0.7128,0.0958,-0.2508,-0.0826,-0.3762,-0.6304,-0.6304,-0.6964,-0.5776,-0.5544,-0.5016,-0.4752,-0.571,-0.5148,-0.2508,-0.2178,-0.043,0.0066,0.1386,0.5676,0.7954,1,0.9966,0.8052,0.726,0.7294,0.7756,0.7524,0.4918,-0.279,0.2372,0.9658,0.9166,-0.3206,0.1044,-0.0246,-0.1082,-0.5902,-0.8482,-0.7798,-0.8064,-0.685,-0.613,-0.723,-0.704,-0.6016,-0.4498,-0.5408,-0.2144,-0.0512,0.0322,0.3018,0.647,1,0.9924,0.6698,0.871,0.685,0.8026,0.8748,0.6964,-0.3496,0.4024,1,0.8374,-0.1016,0.187,-0.0934,-0.3252,-0.8252,-0.7886,-0.8374,-0.8008,-0.6178,-0.748,-0.8334,-0.87,-0.8374,-0.6056,-0.5934,-0.4674,-0.4674,-0.3536,-0.1098,0.2032,0.756,0.9066,0.683,0.5692,0.6464,0.809,0.6952,0.4106,-0.0456,0.4292,0.7854,0.548,-0.2374,-0.1142,-0.4704,-0.5982,-0.831,-0.8356,-0.8036,-0.6028,-0.6666,-0.8584,-0.5754,-0.6712,-0.6804,-0.9224,-0.5844,-0.5662,-0.4246,-0.3334,-0.2512,-0.1188,0.4932,0.8722,0.7078,0.7032,0.7078,1,0.9634,0.3652,0.1428,0.7714,0.8286,0.8858,0.4286,-0.4286,0.0286,-0.2,-0.0858,-0.3714,-0.2,-0.0286,-0.2,-0.0858,-0.3142,-0.3714,0.1428,0.2572,0.5428,0.4286,0.3714,0.6,0.7142,1,1,0.7714,0.4858,0.2,0.3142,0.2572,0.4858,0.7714,0.2094,0.7674,0.907,1,0.6744,0.3488,0.2094,0.1628,-0.0232,-0.1628,-0.1162,0.0232,0.0698,-0.3024,0.0232,0.0698,-0.0698,-0.1162,0.4884,0.721,0.907,0.9534,0.9534,1,0.7674,0.7674,0.6744,0.5348,0.0698,0.4418,0.4884,0.1628,-0.2608,0.087,0.674,0.674,-0.087,-0.087,-0.0218,-0.2392,-0.3914,-0.7608,-0.3478,-0.4348,-0.6522,-0.326,-0.3696,-0.413,-0.3696,-0.3044,-0.1522,-0.1086,-0.0218,0.1522,0.4348,0.5434,1,0.9566,0.6304,0.6304,0.5218,0.7174,0.587,0.5652,-0.968,-0.9626,-0.729,-0.6238,-0.6792,-0.713,-0.7648,-0.8004,-0.8414,-0.8556,-0.4796,0.7344,0.8984,0.7434,0.5918,0.6096,0.5188,0.7986,0.745,0.5366,0.0926,-0.5044,-0.5152,0.132,-0.4974,-0.7968,-1,-1,-1,-1,-1,-1,-1,-0.9568,-0.9522,-0.7922,-0.6812,-0.7186,-0.7572,-0.8178,-0.8308,-0.8728,-0.714,-0.5586,0.5704,0.861,0.7338,0.6182,0.6358,0.6392,0.8926,0.6754,0.2866,-0.0904,-0.5926,-0.6416,-0.24,-0.6474,-0.8388,-1,-1,-1,-1,-1,-1,-1,-0.9668,-1,-0.9034,-0.87,-0.91,-0.91,-0.91,-0.89,-0.8534,-0.4468,-0.7034,-0.6712,-0.3912,-0.4534,-0.4446,-0.586,-0.522,-0.638,-0.74,-0.756,-0.828,-0.782,-0.9134,-0.9168,-0.88,-0.8268,-1,-1,-1,-1,-1,-1,-1,-0.8858,-0.8286,-0.4,-0.6572,-1,-0.9142,-0.8572,-0.7428,0.8,1,1,1,-0.4286,-0.8572,-0.7714,-0.7142,-0.8858,-0.5428,-0.7428,-0.6286,-0.2858,-0.2286,-0.6572,-0.5714,-0.8858,-0.0858,-1,-1,-1,-1,-1,-1,-1,0.1328,0.15,0.1824,0.2122,0.2206,0.2518,0.2664,0.2788,0.2758,0.1712,0.822,0.8654,0.9146,0.9368,0.9772,1,0.9976,0.9894,1,1,-0.6266,0.1294,-0.5342,-0.1126,0.6136,0.8062,0.93,-0.65,0.1338,0.1338,-0.37,-0.0394,-0.1654,-0.0866,0.0552,0.1654,0.37,0.559,0.496,0.37,0.6062,0.5748,0.3386,0.6378,0.7008,0.6536,0.7166,0.685,0.9212,0.9212,1,0.937,0.8898,0.7952,0.7638,0.9528,0.7638,0.7638,0.7796,0.5118,0.5312,0.6094,-0.0782,-0.0468,-0.125,-0.2812,-0.0938,0.2968,0.3124,0.375,0.6406,0.4688,0.5782,0.4844,0.5312,0.4844,0.6876,0.5624,0.4532,0.4532,0.5938,0.8124,0.9532,0.9062,0.7344,0.8906,0.9376,1,0.875,0.8906,0.6876,0.3438,0.8658,0.9464,0.5838,0.2214,0.3826,0.1812,0.2752,0.114,0.3288,0.8256,0.9866,1,0.8926,0.745,0.4228,0.745,0.9328,0.7718,0.4496,0.2618,0.463,0.5168,0.5974,0.3558,0.4094,0.5302,0.5168,0.557,0.5974,0.6108,0.5974,0.3692,-0.5026,-1,-1,1,-0.4,1,-1,-0.6334,-1,0.6,0.9,0.25,0.35,0.05,0.1,0.45,1,0.9,0.6,0.05,0.15,0.85,0.35,0.5,0.75,0.8,0.45,0.4,0.45,0.5,0.65,0.65,0.55,0.05,-0.2,0.2,0.25,0.2,0.2,0.1,-0.4,'22'
-0.3534,0.1846,0.1444,0.3534,0.0702,-0.0014,0.0702,0.0786,-0.073,-0.156,-0.4134,-0.3562,-0.2962,-0.4164,-0.2532,-0.2246,-0.0702,0.256,0.442,0.6338,0.7196,0.7368,0.8082,1,0.9714,0.9056,0.834,0.7568,0.588,0.4736,0.5708,0.7052,-0.4462,0.0538,0.0462,0.2616,0.0642,-0.0564,-0.1898,-0.1512,-0.1154,-0.141,-0.4334,-0.5076,-0.2948,-0.441,-0.318,-0.418,-0.3538,0.0154,0.0308,0.118,0.1512,0.5282,0.7282,0.9334,0.8154,0.877,0.8974,0.9718,0.918,0.9538,1,0.9334,-0.4154,0.0458,0.0668,0.2188,-0.1088,-0.0956,-0.2214,-0.2976,-0.1508,-0.3368,-0.5832,-0.4994,-0.4626,-0.5204,-0.5282,-0.418,-0.3788,-0.2608,-0.1638,-0.1324,0.1088,0.2556,0.578,0.8166,1,0.9502,0.8506,0.7904,0.827,0.9476,0.9974,0.903,-0.534,-0.1728,0.267,0.3246,-0.2722,-0.4476,-0.3638,-0.2042,-0.2382,-0.487,-0.6282,-0.5446,-0.521,-0.6048,-0.7068,-0.5472,-0.5392,-0.3848,-0.3508,-0.1728,0.0052,0.165,0.3298,0.5968,0.9554,1,0.8612,0.5838,0.754,0.979,0.9424,0.788,-0.5718,-0.0498,0.6392,0.6042,-0.4134,-0.2816,-0.2288,-0.088,-0.3696,-0.4634,-0.7712,-0.4956,-0.566,-0.648,-0.5748,-0.5806,-0.5954,-0.4838,-0.3344,-0.126,0.003,-0.085,0.2112,0.6042,0.912,0.9912,0.9238,0.8974,1,0.997,0.9002,0.8416,-0.6748,0.131,0.6316,0.5166,-0.4014,-0.1568,-0.1742,-0.1972,-0.6288,-0.7438,-0.7496,-0.764,-0.649,-0.6288,-0.623,-0.6258,-0.7756,-0.6202,-0.4676,-0.623,-0.5252,-0.413,-0.0072,0.059,0.3956,0.79,0.9022,0.8474,0.7152,1,0.9712,0.833,-0.9194,0.1904,0.5354,0.2774,-0.3646,-0.2322,-0.2194,-0.5354,-0.7452,-0.6484,-0.671,-0.5484,-0.513,-0.5516,-0.5612,-0.6226,-0.6936,-0.5968,-0.4904,-0.4162,-0.3516,-0.3,-0.1096,0.113,0.3322,0.813,0.8226,0.842,0.8548,0.9774,1,0.6484,-0.4286,0.0286,0.0286,0.0858,-0.0858,-0.2,-0.0286,-0.0858,0.1428,-0.2572,-0.4286,-0.1428,-0.2,-0.2,0.2,0.1428,0.3142,0.7142,0.7142,0.7714,0.7714,0.3142,0.6572,1,1,0.7142,0.6,0.5428,-0.0858,-0.1428,0.3142,0.7714,-0.4,0.1,0.25,0.3,0.1,-0.05,0.1,0,-0.2,-0.45,-0.65,-0.4,-0.3,-0.8,-0.1,0.15,0.2,0.3,0.8,0.9,0.85,0.75,0.7,0.9,1,0.6,-0.05,0.15,-0.15,0.05,0.15,0.5,-0.553,0.0824,0.6706,0.6,-0.3412,-0.1294,-0.1058,-0.0824,-0.5058,-0.6236,-0.5294,-0.3882,-0.4352,-0.7412,-0.5764,-0.5058,-0.5058,-0.6,-0.1764,-0.2942,-0.2236,-0.3412,0.2,0.2706,0.4588,0.6942,0.8118,1,0.9294,0.8588,0.6706,0.953,-0.8862,-0.626,-0.5772,-0.6138,-0.6586,-0.6952,-0.7236,-0.756,-0.817,-0.6992,-0.374,0.5448,0.809,0.7764,0.4796,0.5976,0.6464,0.5854,0.8822,0.8536,0.439,-0.1138,-0.5326,-0.744,-0.5894,-0.3292,-0.691,-1,-1,-1,-1,-1,-1,-0.9548,-0.9098,-0.8984,-0.9018,-0.8922,-0.8708,-0.854,-0.7846,-0.7604,-0.7476,-0.6984,-0.302,0.2568,0.557,0.8176,0.1626,0.0366,-0.1262,-0.273,-0.2986,-0.3902,-0.6978,-0.8492,-0.905,-0.8816,-0.8694,-0.9198,-1,-1,-1,-1,-1,-1,-0.8334,-0.7,-0.7234,-0.6234,-0.5268,-0.0968,-0.0234,0.4166,0.6032,0.5466,0.0966,-0.086,0.09,0.344,0.194,-0.188,0.024,-0.042,-0.1056,-0.291,-0.3364,-0.3582,-0.31,-0.1034,-0.4068,-0.88,-0.6634,-1,-1,-1,-1,-1,-1,-0.4858,-0.4286,-0.7714,-0.6286,-0.3714,-0.4,-0.4858,-0.4,-0.8286,-0.8286,0.2286,1,0.0286,-0.6286,-0.8286,-0.6858,-1,-0.8858,-0.4286,-0.5714,-0.6572,-0.7714,-0.6,-0.6858,-0.6,-0.6858,-0.6286,-1,-1,-1,-1,-1,-1,0.6464,0.6524,0.6566,0.6604,0.651,0.636,0.618,0.595,0.528,0.4508,0.7054,0.755,0.825,0.8708,0.933,0.9912,1,1,1,1,-0.6934,0.2352,-0.6816,-0.6836,-0.3934,-0.1788,0.0684,-0.7834,0.501,0.5054,0.213,0.058,0.015,0.1526,0.3506,0.3032,0.5096,0.643,0.4322,0.5226,0.6646,0.5096,0.6216,0.699,1,0.871,0.8666,0.6344,0.7032,0.9054,0.9698,0.9484,0.9354,0.9656,0.9742,0.9398,0.7462,0.785,0.656,0.3032,-0.0856,-0.0716,-0.438,-0.3926,-0.2844,-0.2182,0.1134,0.3054,0.5148,0.5846,0.616,0.7452,0.787,0.7976,0.6684,0.6056,0.7034,0.7556,0.7906,0.8638,0.7452,0.8324,0.9198,1,0.9128,1,0.8568,0.9582,0.8778,0.8708,0.6266,0.4172,-0.0858,0.015,-0.4216,-0.2874,-0.3358,-0.0896,-0.0074,0.306,0.3732,0.6716,0.6082,0.7276,0.6792,0.6492,0.7052,0.709,0.9478,0.9776,0.862,0.8694,0.9514,1,0.9738,0.9104,0.9328,0.985,0.944,0.9104,0.8284,0.8508,0.75,0.3656,-0.9676,-1,1,-1,1,-0.2,-0.8,0.5666,-1,-0.1886,-0.3396,-0.2076,-0.0378,-0.3018,-0.3396,-0.3584,0.0378,-0.151,-0.1698,0.0566,0.1886,0.6604,0.7924,0.7548,1,0.585,0.4528,0.3208,0.6604,0.585,0.6226,0.7924,0.9434,0.9246,0.151,0.0566,0.151,0.1132,0.3208,0.7548,0.3774,'22'
0.2914,0.5162,0.6152,0.7942,0.9124,0.9352,0.882,0.8896,1,0.3942,-0.2534,-0.4248,-0.459,-0.6914,-0.5542,-0.5352,-0.8704,-0.9238,-0.9276,-0.8666,-0.8858,-0.8972,-0.901,-0.6534,-0.3104,0.0362,0.3142,0.3562,0.0172,0.1428,0.219,0.4172,-0.1818,0.4546,0.7826,0.9526,1,0.9724,0.5454,0.4466,0.6482,0.166,0.1858,0.3834,0.2688,0.0474,0.0988,0.1976,-0.3478,-0.4664,-0.336,-0.4862,-0.5138,-0.249,-0.1898,-0.004,0.4426,0.5692,0.664,0.6522,0.0396,0.1264,-0.0434,0.253,-0.0726,0.5,0.8358,0.939,0.0038,-0.1374,-0.0534,-0.3588,-0.3512,-0.813,-0.6984,-0.5,-0.4198,-0.3588,-0.5726,-0.5764,-0.3512,0.1908,0.2214,0.6832,0.7328,0.7176,0.8512,0.8206,1,0.9694,0.4732,0.29,-0.0688,0.0268,0.1604,0.248,0.0552,0.4806,1,0.9304,-0.0634,0.0962,-0.0144,-0.1574,-0.6564,-0.8896,-0.775,-0.8118,-0.7342,-0.7056,-0.8078,-0.7178,-0.6114,-0.3946,-0.0388,0.5788,0.861,0.8446,0.9386,0.8528,0.7874,0.8486,0.7832,0.3702,0.3374,0.4028,0.276,0.1984,-0.1582,0.3242,1,0.7866,0.7194,0.3558,-0.0316,-0.2134,-0.1462,-0.8182,-0.7392,-0.6878,-0.7826,-0.6798,-0.34,-0.336,-0.0238,0.5336,0.506,0.5732,0.6916,0.8222,0.7944,0.7906,0.672,0.4624,0.0948,0.1502,-0.1344,0.1582,0.2174,0.0554,-0.282,0.363,0.7728,1,0.9392,0.3266,0.3346,0.1318,-0.0792,-0.708,-0.5822,-0.6796,-0.4118,-0.351,-0.359,-0.428,-0.5578,-0.4564,-0.5862,-0.5902,-0.3834,-0.1968,0.0872,0.1278,-0.217,-0.4362,-0.6512,-0.7444,-0.6308,-0.4524,-0.5416,-0.2982,0.0146,0.343,0.7338,1,0.8128,0.3264,0.58,0.1102,-0.0396,-0.1892,-0.0728,-0.0852,-0.3222,-0.4886,-0.5094,-0.7006,-0.6632,-0.7962,-0.738,-0.3804,-0.2972,-0.3514,-0.422,-0.4262,-0.5758,-0.63,-0.7172,-0.738,-0.896,-0.7048,-0.684,-0.185,1,0.8518,0.8518,0.3334,0.4814,0.7038,0.5556,1,0.7778,0.1852,0.2592,0.037,-0.3334,-0.4074,-0.4814,-0.7038,-0.5556,-0.6296,-0.7038,-0.2592,-0.1112,-0.3334,-0.4074,-0.3334,-0.2592,0.1852,0.3334,0.2592,0.1852,0.5556,0.5556,0.4074,0.7436,0.7948,0.5384,0.641,1,0.8974,0.8974,0.8974,0.9488,0.0256,0.1282,0.0256,-0.077,-0.2308,-0.0256,-0.1794,-0.077,-0.5384,-0.641,-0.1794,-0.1794,-0.3334,-0.7436,-0.1282,-0.0256,0.1282,0.1282,0.0256,0.3334,0.4872,0.3846,0.641,-0.0666,0.5334,0.8666,1,0.6666,0.5,0.4334,0.0666,0.1334,-0.2,-0.1666,0.2,0.1334,0.3334,0.7334,0.7666,0.2666,0.0666,0.2,0.3334,0.1666,0.1666,0.7,0.7,0.9666,0.7666,0.4666,0,-0.3334,0.1666,0.1,0.3,-0.9594,-0.9518,0.5164,1,1,1,1,1,0.8376,1,-0.396,0.4428,0.8832,0.6396,0.2412,-0.156,-0.236,-0.0786,0.0304,0.0242,-0.1776,-0.3998,-0.6116,-0.5812,-0.7918,-1,-1,-1,-1,-1,-1,-1,-1,-0.962,-0.8794,0.4032,1,1,1,1,1,0.8958,0.45,-0.6114,0.1116,0.8692,0.6222,0.0564,-0.3386,-0.4148,-0.269,-0.187,-0.2394,-0.427,-0.5936,-0.7666,-0.74,-0.87,-1,-1,-1,-1,-1,-1,-1,-1,-0.88,-0.89,-0.6,-0.7,-0.7,-0.7534,-0.7568,-0.7568,-0.7868,-0.9468,-0.82,-0.9,-0.7346,-0.7274,-0.6582,-0.491,-0.5328,-0.622,-0.6746,-0.7856,-0.8364,-0.8868,-0.9568,-0.9134,-0.93,-1,-1,-1,-1,-1,-1,-1,-1,-0.0286,1,1,1,-0.1142,-0.1428,-0.2572,1,1,1,-0.2286,0.6286,-0.2,0.6286,0.4,-0.6,-0.8286,-0.6572,-0.3428,-0.2286,-0.6572,-0.4,-0.4572,-0.9428,-0.8572,-1,-1,-1,-1,-1,-1,-1,-1,0.847,0.8876,0.9262,0.9434,0.9534,0.9504,0.9286,0.8058,0.516,0.5012,0.228,0.2194,0.2522,0.2238,0.259,0.2784,0.183,0.2164,0.3978,0.2378,-0.52,0.3176,-0.6984,-0.2252,-0.0974,0.2078,0.4184,-0.0916,0.3602,0.6446,0.833,0.833,0.5332,0.5208,0.6786,0.6846,0.83,0.8114,0.6878,0.6476,0.997,0.9474,0.6228,0.527,0.5426,0.8114,0.9166,1,0.6816,0.6846,0.4992,0.595,0.4868,0.592,0.5054,0.3848,0.4528,0.3044,0.2704,-0.0664,0.3138,0.5876,0.9732,1,0.783,0.611,0.7378,0.7378,0.7296,0.4274,0.4274,0.7178,0.6494,0.4708,0.2822,0.207,0.1686,0.541,0.384,0.3056,-0.0584,-0.2872,-0.3456,-0.1202,-0.015,-0.0318,-0.0116,-0.0418,0.0484,0.1804,0.157,-0.1386,0.5504,0.7494,1,0.9364,0.8234,0.5196,0.4272,0.1478,0.1642,-0.0616,0.0514,0.2464,0.3614,0.3326,0.1048,0.2792,0.4086,0.1582,0.1828,0.117,-0.1684,-0.191,-0.3572,-0.3676,-0.2916,-0.2648,-0.267,-0.2752,-0.0678,0.0574,-0.0266,-0.2998,-0.9986,1,-1,-1,-1,1,-1,-1,-1,1,0.7176,0.5294,0.3412,0.5058,0.4824,0.0824,0.2706,0.4824,0.0352,0.3648,0.4588,0.3176,0.1058,0.0352,-0.0352,-0.1058,-0.0824,-0.2,-0.0824,0.2236,0.3648,0.2,0.1764,0.247,0.1764,0.2706,0.247,0.3176,0.3176,0.3412,-0.0352,'23'
-0.1008,0.4962,0.6228,0.8166,0.9044,0.925,1,0.8812,0.8398,0.5168,-0.248,-0.6202,-0.8372,-0.845,-0.7984,-0.783,-0.7726,-0.7674,-0.9534,-0.956,-0.8476,-0.7984,-0.6796,-0.4496,-0.4264,-0.031,0.3514,0.5892,0.3074,0.3746,0.7184,0.7364,0.148,0.881,0.7974,1,0.7524,0.7782,0.2154,0.0322,0.254,-0.016,-0.3634,-0.0868,-0.045,-0.3184,-0.3504,-0.1286,-0.3762,-0.5338,-0.0322,-0.0868,-0.135,0.0836,0.2444,0.5144,0.5048,0.6816,0.4758,0.4116,0.3504,0.508,0.238,0.2894,0.2352,0.7236,0.8088,0.8352,-0.3442,-0.3324,-0.3794,-0.503,-0.5736,-0.7882,-0.7558,-0.5852,-0.6088,-0.5148,-0.4412,-0.4148,-0.5824,-0.2588,-0.1294,0.0736,0.4294,0.6706,0.9176,0.953,0.9264,1,0.853,0.5676,0.2618,0.5236,0.5412,0.4118,-0.1062,0.2676,0.8536,0.7548,0.118,0.1988,-0.0134,-0.3572,-0.6682,-0.8684,-0.9044,-0.8984,-0.7548,-0.7908,-0.722,-0.408,-0.402,-0.1122,0.3572,0.5994,0.71,0.6562,0.8864,1,0.6084,0.402,0.2856,0.115,-0.0194,-0.0104,0.115,0.1748,-0.1488,0.2722,0.8888,0.97,1,0.579,0.2662,0.1368,0.0556,-0.4586,-0.6452,-0.5518,-0.3774,-0.224,0.0736,0.0406,0.0526,0.0466,0.176,0.2782,0.167,0.4948,0.567,0.3924,-0.176,-0.17,-0.233,-0.597,-0.1368,-0.0406,0.0978,0.2782,-0.091,0.2924,1,0.9288,0.8538,0.4308,0.5652,0.3122,0.0316,-0.0434,-0.2964,-0.5494,-0.5732,-0.6206,-0.8024,-0.9012,-0.7748,-0.751,-0.7786,-0.6246,-0.506,-0.3952,-0.1146,-0.1384,-0.2846,-0.4624,-0.83,-0.8854,-0.7076,-0.3636,-0.3242,0.0276,0.4126,1,0.5396,0.2434,-0.201,0.1798,0.3756,0.3334,0.5874,0.344,-0.2858,-0.4232,-0.4126,-0.4708,-0.2962,-0.3862,-0.2592,-0.619,-0.6456,-0.7936,-0.4974,-0.5344,-0.582,-0.6456,-0.582,-0.6772,-0.6032,-0.91,-0.5502,-0.4392,-0.6032,-0.5608,-0.027,0.5136,0.4594,0.4594,0.5136,0.6216,0.7838,0.5676,0.7298,-0.1352,-0.2972,-0.081,-0.5676,-0.5676,-0.4054,-0.3514,-0.4054,-0.5676,-0.8918,-0.7838,-0.8378,-0.946,-0.4054,-0.1892,-0.1892,0.1352,0.6756,0.6216,0.2432,0.6756,0.7838,1,0.091,0.591,0.7272,0.8182,0.8636,0.909,1,0.7728,0.8182,0.5454,0.1818,-0.1818,-0.591,-0.1818,-0.1818,-0.3182,-0.0454,-0.1818,-0.591,-0.4546,-0.3636,-0.5,-0.5454,-0.3636,-0.2728,-0.1364,0.591,0.6818,0.3636,0.4546,0.8182,0.7272,0.1112,0.6944,0.5556,0.6112,0.1666,0.1666,-0.1112,-0.2778,-0.7222,-0.8056,-0.7222,-0.8888,-0.3056,-0.2222,-0.2222,0.1388,-0.0556,-0.2778,0.5834,0.5834,0.3612,0.3334,0.4722,0.8888,1,0.5834,0.3612,-0.0556,-0.0834,0.1388,-0.3334,-0.0556,-0.9562,-0.0846,1,1,1,1,1,1,-0.1244,-0.536,-0.4818,0.5736,0.9582,0.536,0.0282,-0.0114,0.2874,0.5214,0.3522,-0.07,-0.488,-0.6594,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9526,0.2272,1,1,1,1,1,1,-0.2848,-0.6074,-0.5702,0.4834,0.8658,0.2092,-0.243,-0.2804,0.0242,0.1878,0.0784,-0.33,-0.6536,-0.7722,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9,-0.1668,-0.74,-0.67,-0.7,-0.71,-0.7134,-0.6734,-0.7534,-0.7734,-0.7634,-0.6772,-0.6516,-0.8244,-0.8158,-0.483,-0.61,-0.7028,-0.8214,-0.8334,-0.872,-0.9708,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,0.0286,-0.4858,-0.1428,1,1,1,-0.1142,0.4572,0.4572,-0.3714,0.4858,-0.6572,-0.7714,-0.6858,-0.4858,-0.6572,-0.4,-0.7142,-0.3714,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,0.9748,0.8292,0.4616,0.2274,0.3524,0.6498,0.6552,0.6622,0.6074,0.5756,0.5178,0.463,0.541,0.6574,0.2398,-0.4934,0.753,-0.5612,-0.2746,0.2588,0.5702,0.7846,0.2416,-0.4348,-0.174,-0.174,-0.2608,-0.087,0,-0.0434,0.1304,0.2174,0.2174,0.3914,0.3478,0.4782,0.5218,0.6086,0.6522,0.6956,0.7392,0.7392,0.8696,0.9566,1,0.9566,0.9566,0.913,0.826,0.826,0.7392,0.4782,0.2608,0.174,-0.1304,-0.6702,-0.1546,-0.1546,-0.0516,0.1134,0.0722,-0.0516,-0.1958,0.299,0.1752,0.3196,0.0722,0.3814,0.3608,0.4226,0.2784,0.5258,0.567,0.567,0.5876,0.8556,0.9588,0.835,0.9382,1,0.9176,0.8762,0.897,0.6082,0.4846,0.5052,-0.3814,0.093,0.2326,0.186,-0.1396,-0.0698,-0.1628,-0.2094,-0.0698,0.2558,0.2326,0,-0.1628,0.4652,0.5348,0.279,0.2094,0.2094,0.279,0.5814,0.6046,0.5582,0.5116,0.4652,1,0.7906,0.7442,0.6976,0.6512,0.4652,0.6512,0.6744,0.4884,1,1,-1,-1,-1,-1,-1,-0.8334,-1,0.9608,1,0.6078,0.7254,0.7648,0.647,0.6078,0.7648,0.7648,0.5686,0.5294,0.3726,0.1372,0.5686,0.5294,0.451,0.4118,0.3334,0.4118,0.2942,0.2942,0.3334,0.2156,0.4118,0.451,0.1372,0.7254,0.098,0.1372,0.2942,0.4118,-0.2942,'23'
-0.4138,-0.0874,0.1536,0.2104,0.4752,0.8298,0.9574,0.6644,0.2434,0.0828,0.1064,0.1584,-0.0874,0.1348,0.338,0.3334,0.461,0.9764,1,0.896,0.7966,0.7352,0.7966,0.773,0.7684,0.6974,0.669,0.4232,0.3806,0.4468,0.3806,0.2672,-0.3584,0.0326,0.1428,0.238,0.584,0.7294,1,0.8446,0.183,0.1478,0.1328,0.163,0.0476,0.0928,0.183,0.188,0.4386,0.5288,0.629,0.5438,0.589,0.3132,0.4036,0.5488,0.4938,0.624,0.4536,0.2682,0.3334,0.3434,0.1578,0.2432,-0.3096,0.1068,0.1342,0.2384,0.578,0.737,1,0.7918,0.4958,0.1506,0.1014,0.1342,0.0356,-0.2822,0.0576,0.1616,0.441,0.6328,0.7424,0.6548,0.6548,0.4302,0.4466,0.4246,0.6438,0.715,0.3808,0.2054,0.1506,0.3042,0.1946,0.2054,-0.254,0.1724,0.2916,0.373,0.5988,0.8432,1,0.931,0.9122,0.3542,0.1348,0.0532,-0.091,0.0722,0.21,0.442,0.5048,0.6552,0.7304,0.7868,0.5298,0.5988,0.7806,0.674,0.6866,0.5548,0.4984,0.4796,0.1724,0.279,0.304,0.2916,-0.3086,0.0186,0.2222,0.216,0.3148,0.7778,0.8272,1,0.8272,0.1852,-0.2098,-0.1914,-0.0802,0.0308,0.2716,0.432,0.4938,0.5432,0.5308,0.3642,0.2346,0.253,0.395,0.5,0.3828,0.3148,0.1112,0.0864,-0.0556,-0.2098,-0.0802,-0.1482,-0.4686,-0.1044,0.2238,0.2,0.3552,0.6418,0.9582,1,0.618,0.3732,0.3134,0.391,0.3432,0.2418,0.5762,0.7374,0.7552,0.785,0.7432,0.7314,0.7552,0.7432,0.9104,0.9642,0.6716,0.6478,0.3672,0.2656,0.1762,0.218,0.1642,0.1104,-0.7658,-0.0316,0.1518,0.1518,0.4368,0.7026,0.8418,0.6962,0.5064,0.2468,0.1392,0.2848,0.3544,0.443,0.8038,1,0.981,0.7974,0.6582,0.6646,0.595,0.7468,0.8164,0.8038,0.5822,0.3292,0.076,0.1202,-0.057,0.1012,0.1012,-0.0696,-0.5094,-0.132,0.0566,0.132,0.3584,0.849,0.8868,0.434,0.283,0.2452,0.1698,0.2076,0.0566,0.1698,0.3208,0.434,0.6226,0.9246,1,0.9246,0.9246,0.8114,0.8114,0.8114,0.849,0.849,0.6604,0.5472,0.434,0.3584,0.3584,0.283,-0.054,0.2702,0.4054,0.5136,0.6216,0.8378,0.973,0.8378,0.4864,0.3244,0.3514,0.4054,0.2702,0.4324,0.5946,0.5946,0.7298,1,0.973,1,0.8918,0.8378,0.946,0.919,0.7838,0.8648,0.8918,0.7568,0.5676,0.7298,0.7298,0.6486,-0.2682,0.0976,0.2682,0.317,0.439,0.683,0.7318,1,0.878,0.0976,-0.2926,-0.2682,-0.0488,0.122,0.244,0.5122,0.5366,0.6098,0.7318,0.561,0.317,0.5122,0.4878,0.561,0.2196,0.5366,0.317,0.1952,0.1464,-0.122,0.0488,0.244,-1,-1,-1,-1,-1,-1,-1,-1,-0.9762,-0.9746,-0.5166,0.4532,0.8146,0.9762,0.9492,0.8828,0.813,0.5516,0.3836,0.2378,-0.0808,-0.5848,-0.9224,-0.9492,-0.9588,-0.9668,-0.9604,-0.8954,-0.8986,-0.9382,-0.9524,-0.9636,-0.9668,-1,-1,-1,-1,-1,-1,-1,-1,-0.9834,-0.9852,-0.3306,0.865,0.7762,0.433,0.3116,0.6434,0.3282,-0.0574,0.0506,0.2076,0.02,-0.6416,-0.9362,-0.959,-0.9708,-0.975,-0.9488,-0.7906,-0.7114,-0.8346,-0.8494,-0.8624,-0.8452,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-1,-0.6734,-0.58,-0.652,-0.66,-0.652,-0.584,-0.624,-0.648,-0.644,-0.572,-0.4168,-0.5068,-0.66,-0.6434,-0.82,-0.6934,-0.9268,0.0432,1,1,1,0.9632,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,1,1,1,-0.6572,-0.6858,-0.8286,-0.6286,-0.4,-0.0572,-0.6858,-0.4572,1,1,1,-0.6858,-0.9428,-0.9714,1,1,1,-0.5714,-0.6858,-1,-0.8858,1,1,1,1,1,1,1,1,1,1,0.3426,0.356,0.3572,0.3484,0.333,0.3266,0.3558,0.3028,0.3258,0.0684,-0.6134,-0.447,-0.2554,0.5108,0.9784,0.8702,0.5874,1,-0.532,-0.149,0.0638,0.234,0.1914,0.0212,0.149,0.3618,0.7446,1,1,0.9148,0.9148,0.8724,0.7446,0.7446,0.7872,0.8724,0.8724,0.8724,0.7446,0.532,0.149,0.0212,0.149,0.1914,0.1914,0.149,0.0638,0.1064,-0.1064,-0.7022,-0.0286,0.2,0.4476,0.5048,0.2952,0.219,0.1238,0.4096,0.638,1,1,0.7714,0.8096,0.7334,0.6572,0.6762,0.6,0.8476,0.8666,0.8858,0.619,0.4666,0.0096,-0.0096,0.0476,0.238,0.1428,0.0286,0.2,0.162,0.1048,-0.3524,-0.0428,0.265,0.7436,0.8462,0.4358,0.3162,0.2136,0.5042,0.6068,1,0.8974,0.8632,0.812,0.5556,0.641,0.4358,0.5214,0.6068,0.7436,0.6924,0.5042,0.265,-0.3504,-0.1452,-0.094,-0.077,-0.0428,-0.3334,0.0598,-0.0256,-0.3504,-0.5898,0.3826,-1,-1,1,-1,-1,-1,-0.8334,1,-0.6982,-0.5346,-0.5094,-0.4466,-0.5094,-0.1698,-0.0944,-0.044,-0.0692,-0.132,-0.0314,0.0188,0.0062,-0.2328,0.1446,0.1194,-0.1572,0.195,0.2328,-0.044,0.1824,0.4842,0.4214,0.585,0.8238,0.9496,1,0.912,0.7358,0.5974,0.8238,0.7484,'24'
-0.383,0.0078,0.167,0.2596,0.6042,0.7378,1,0.815,0.203,0.0128,-0.0232,0.0386,-0.1568,-0.1414,0.2596,0.3574,0.4344,0.8046,0.8766,0.7994,0.671,0.3522,0.527,0.5424,0.383,0.4242,0.455,0.234,0.1876,0.3676,0.3368,0.3214,-0.3086,0.1184,0.1648,0.2994,0.6426,0.6612,1,0.898,0.239,-0.0024,-0.0302,-0.174,-0.188,-0.1276,0.2018,0.355,0.485,0.6056,0.754,0.7912,0.3458,0.4386,0.5174,0.6288,0.703,0.6102,0.5962,0.4246,0.3272,0.2762,0.4524,0.457,-0.2896,0.1678,0.1436,0.275,0.6156,0.6302,1,0.893,0.455,0.1582,-0.0706,-0.0948,-0.163,-0.2214,-0.236,-0.1094,0.236,0.3334,0.4842,0.5864,0.5572,0.4306,0.5718,0.7712,0.6982,0.7128,0.6788,0.5426,0.2652,0.1922,0.1678,0.129,-0.2466,0.1936,0.252,0.3422,0.5544,0.8196,1,0.9204,0.947,0.374,0.2572,0.1672,-0.1088,-0.183,-0.077,-0.0344,0.1458,0.358,0.4908,0.7242,0.7082,0.6128,0.6764,0.7878,0.7188,0.5384,0.5278,0.4164,0.1778,0.252,0.1884,0.0344,-0.3878,-0.0918,0.148,0.1428,0.2448,0.704,0.75,1,0.8266,0.5204,0.1632,0.097,0.1122,-0.0358,-0.051,0.0358,0.1888,0.2092,0.3266,0.3164,0.347,0.3316,0.4184,0.4642,0.3674,0.2654,0.0868,-0.0204,-0.0868,-0.1428,-0.097,-0.1428,-0.6534,-0.1832,0.005,0.1238,0.1732,0.5742,0.9554,1,0.7476,0.4406,0.3862,0.406,0.406,0.3812,0.802,0.8564,0.8712,0.5792,0.6436,0.5298,0.5544,0.5446,0.7278,0.6782,0.4852,0.1732,0.1386,0.0248,-0.1336,-0.1534,-0.104,-0.1584,-0.8788,-0.6566,-0.367,-0.2862,0.0774,0.643,0.8384,0.7508,0.5488,0.2862,0.1178,0.0976,0.0976,0.2862,0.7778,1,0.7038,0.4208,0.34,0.3266,0.2728,0.542,0.5758,0.5556,0.0168,0.1044,0.037,-0.239,-0.3266,-0.091,-0.0842,-0.1718,-0.2,0.1334,0.2666,0.4334,0.5666,0.9,1,0.7334,0.3,0.3334,0.2,0.2666,0.0666,0.1666,0.2334,0.3334,0.7334,0.8666,0.7,0.9334,0.8666,0.3334,0.5,0.3,0.6,0.7,0.6666,0.4334,0.5,0.5334,0.5334,0.5,-0.3572,0.0358,0.1786,0.3214,0.5714,0.6072,0.8928,0.7142,0.3214,0.0714,0.0714,0.0714,0,-0.0358,0.25,0.3572,0.5,0.9642,1,0.75,0.6428,0.5714,0.6786,0.6786,0.2142,0.1786,0.3572,0.1428,0,0.2858,0.2142,0.0714,-0.4506,-0.1868,0.099,0.099,0.2088,0.6484,0.8462,1,0.7142,0.4066,0.4286,0.2528,0.1868,0.2088,0.4066,0.2748,0.3186,0.6264,0.5604,0.4066,0.3626,0.3846,0.3846,0.4946,0.4726,0.2308,0.3186,0.1208,0.055,-0.1868,-0.033,0.011,-1,-1,-1,-1,-1,-1,-1,-1,-0.9642,-0.9756,-0.3132,0.5258,0.6896,0.7912,0.872,0.9304,0.778,0.7254,0.5504,0.2794,-0.349,-0.7818,-0.9304,-0.9474,-0.9586,-0.951,-0.9548,-0.8532,-0.8458,-0.9022,-0.8872,-0.9454,-0.9586,-1,-1,-1,-1,-1,-1,-1,-1,-0.9858,-0.9876,-0.4952,0.0526,0.1622,0.7042,0.039,0.1262,-0.0574,-0.1378,0.056,0.14,-0.3698,-0.8012,-0.9512,-0.9682,-0.9816,-0.9784,-0.983,-0.8956,-0.793,-0.717,-0.654,-0.8384,-0.826,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.98,-0.67,-0.644,-0.624,-0.504,-0.6,-0.63,-0.6168,-0.5868,-0.5468,-0.59,-0.5568,-0.5668,-0.6668,-0.8068,-0.9068,-0.82,-0.8634,-0.7434,0.7166,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6858,1,1,1,-0.7714,-0.6286,-0.7714,-0.4858,-0.8286,-0.8,-0.4,0.4572,1,1,1,-0.4286,-0.9714,-1,0.7142,1,1,0.0572,-0.4858,-0.8286,-0.8858,1,1,1,1,1,1,1,1,1,1,0.1576,0.1576,0.1736,0.1734,0.1538,0.1638,0.2422,0.3732,0.4652,0.0794,-0.6266,-0.3882,-0.304,-0.0514,0.108,0.1462,0.2012,1,-0.7714,-0.4286,-0.3714,-0.0858,0.0286,0.2,0.3142,0.4286,0.7142,0.8858,0.8858,0.8858,0.9428,1,0.9428,0.8858,0.8858,0.9428,1,1,0.9428,0.8286,0.6,0.3714,0.2,0.2,0.1428,0.2572,0.1428,0.2,-0.2572,-0.3714,-0.2578,0.134,0.402,0.464,0.2784,0.0928,0.031,0.2372,0.567,0.7938,0.8144,0.7526,0.7732,0.7938,0.732,0.7526,0.7732,0.9588,0.9588,1,0.6908,0.732,0.5258,0.1752,0.1958,-0.0104,0.0104,0.0516,0.3196,0.6288,0.464,-0.0104,-0.0496,0.2872,0.8218,0.9604,0.5446,0.307,0.1882,0.5644,0.6436,1,0.9604,0.6634,0.7426,0.6832,0.5842,0.5248,0.3664,0.7228,0.9208,0.802,0.7426,0.6832,0.3466,-0.208,0.1288,0.0892,0.0694,0.0892,0.2476,0.4258,0.2872,-0.4258,0.3366,-1,-1,1,-1,-1,-1,-0.8334,1,-0.8562,-0.9162,-0.7486,-0.6526,-0.6048,-0.497,-0.5688,-0.6048,-0.4252,-0.3772,-0.473,-0.1498,-0.3532,-0.1736,-0.2216,-0.1498,-0.2456,-0.1976,-0.3174,-0.3414,-0.3174,0.03,0.1378,0.2814,0.509,0.7604,1,0.3772,0.3414,0.3892,0.3652,0.1976,'24'
-0.0926,0.5028,0.8848,1,0.764,0.6488,0.6994,0.2276,0.1516,-0.486,-0.5758,-0.6882,-0.6376,-0.5786,-0.5366,-0.7472,-0.823,-0.7472,-0.9074,-0.778,-0.7808,-0.6096,-0.6574,-0.6068,-0.545,-0.7724,-0.7724,-0.5562,-0.604,-0.486,-0.6488,-0.7192,-0.0132,0.5054,0.8422,0.969,1,0.9402,0.7992,0.5198,0.3954,-0.2066,-0.46,-0.546,-0.706,-0.7946,-0.6224,-0.656,-0.8184,-0.773,-0.7514,-0.9618,-0.8518,-0.6678,-0.5174,-0.4838,-0.3764,-0.503,-0.5268,-0.221,-0.147,-0.3334,-0.3572,-0.6272,-0.3372,0.06,0.2268,0.31,0.6724,0.7888,1,0.8662,0.9458,0.6144,0.3896,0,-0.2578,-0.3276,-0.4768,-0.5368,-0.5542,-0.44,-0.4012,-0.2984,-0.2462,-0.1124,0.0232,0.0232,-0.2306,-0.3508,-0.4476,-0.1318,-0.091,-0.0406,-0.0388,-0.155,-0.375,-0.0266,0.1628,0.2046,0.322,0.5946,0.7008,1,0.9508,0.7234,0.6212,0.6666,0.2804,0.1458,-0.1912,-0.2026,-0.2538,-0.4224,-0.3182,-0.2538,-0.0758,0.1364,0.2594,-0.0474,-0.1572,-0.2614,-0.2102,-0.1686,-0.3712,-0.2084,-0.0606,-0.178,-0.3382,0.001,0.2114,0.2094,0.2972,0.6568,0.7038,1,0.9408,0.9836,0.526,0.5444,0.622,0.2992,0.1154,0.1358,-0.1664,-0.1788,0.0174,0.187,0.2012,0.3402,0.671,0.6608,0.187,0.0276,0.0542,-0.0888,-0.2032,-0.2032,-0.187,0.0418,-0.2628,0.0684,0.4346,0.335,0.5218,0.8954,0.9452,1,0.7062,0.5018,0.0136,-0.0162,0.0386,-0.0038,0.0136,0.2778,0.3972,0.4372,0.594,0.741,0.6738,0.6662,0.7834,0.7086,0.711,0.6438,0.2504,0.086,-0.1282,0.0436,0.1582,0.188,-0.027,0.527,1,0.8784,0.9832,0.9392,0.3378,0.1418,0.1622,-0.348,-0.6656,-0.554,-0.5202,-0.6318,-0.7196,-0.4696,-0.3344,-0.1284,0.3244,0.6722,0.7736,0.8176,0.8818,0.8278,0.8582,0.821,0.679,0.6756,0.5338,0.2264,0.1756,0.1284,0.2558,0.721,0.7674,1,0.7674,0.8604,0.628,0.4418,0.1162,-0.2094,-0.1628,-0.0698,-0.3488,0.0232,0.0698,-0.0698,-0.6744,-0.1628,-0.2094,-0.1162,-0.0698,-0.1628,-0.3488,-0.2094,-0.1162,-0.2094,-0.3954,-0.3488,-0.2094,-0.814,-0.5348,-0.2558,0.2106,0.7368,0.7368,1,0.7368,0.8948,0.5264,0.5264,0.1578,0,-0.2106,-0.3684,-0.1052,-0.0526,0.1052,-0.1578,-0.7894,-0.3158,-0.3684,-0.5264,-0.5264,-0.5264,-0.3158,-0.1578,-0.2106,-0.1578,-0.3684,-0.2632,-0.2632,-0.2106,-0.4736,-0.1578,-0.2128,0.1914,0.3618,0.4894,1,1,0.7872,0.5958,0.6808,0.3192,-0.5744,-0.2128,-0.3192,-0.6596,-0.4894,-0.468,-1,-0.6382,-0.5106,-0.7234,-0.6808,-0.3192,-0.383,-0.1914,-0.532,-0.4042,-0.1914,-0.2978,0.0426,-0.1064,-0.0638,-0.4468,-1,-1,-1,-1,-1,-1,-1,-1,-0.9688,-0.9806,-0.8174,-0.2562,-0.2072,0.5174,0.81,0.3392,0.0378,-0.0556,-0.1224,-0.1018,-0.0274,-0.406,-0.3304,-0.3928,0.1492,-0.029,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9772,-0.9778,-0.908,-0.602,-0.5576,-0.1036,0.8606,0.9148,0.57,0.3812,0.1394,-0.1506,-0.2536,-0.6446,-0.6946,-0.7268,-0.4984,-0.5818,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9934,-0.9634,-0.89,-0.8216,-0.8948,-0.8188,-0.692,-0.6614,-0.644,-0.612,-0.564,-0.5908,-0.684,-0.744,-0.8734,-0.95,-0.9468,-0.8934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3428,-0.8286,0.8,0.8572,-0.9428,-0.3142,-0.1714,-0.7428,-0.8858,-0.6286,-0.6286,-0.5142,-0.3142,-0.2286,-0.4,-0.8286,-0.9714,-0.6858,-1,-1,-1,-1,-1,-1,-1,0.7372,0.7488,0.7508,0.7686,0.7796,0.7916,0.812,0.9274,1,1,-0.2376,-0.2598,-0.2736,-0.2796,-0.2862,-0.29,-0.2196,-0.1326,-0.212,-0.0644,-0.6,0.8118,-0.9198,-0.6854,-0.6082,-0.5744,-0.586,-0.875,0.094,0.2478,0.1112,0.1282,0.4358,0.4018,0.7436,1,0.9146,0.5384,0.8632,0.7948,0.6582,0.4358,0.5384,-0.0256,-0.077,-0.0428,-0.1624,0.624,0.6752,0.7606,0.5556,0.5042,0.3846,0.7606,0.624,0.3162,0.2478,0.1452,-0.0428,-0.5726,0.0984,-0.0984,0.0164,0.246,0.459,0.6558,1,0.623,0.2786,0.3606,0.6066,0.4918,0.7214,0.4918,0.3934,0.6886,0.6558,0.4918,0.0984,0.2132,0.8196,0.8688,0.1476,0.3278,0.1476,0.2296,0.5246,0.4426,0.164,0.7378,0.082,-0.6558,0.1328,0.6284,0.2744,0.2036,0.3098,0.6992,1,0.5752,0.6992,0.292,0.2212,0.9646,0.947,0.7522,0.6106,0.1682,0.4868,0.0088,0.115,-0.0088,0.2566,0.0442,-0.1858,0.2036,0.2212,-0.3628,0.469,0.3098,0.4868,0.5222,0.0442,-0.6638,-0.9926,1,-1,-1,-1,-1,-1,-1,-1,0.8824,0.745,0.4314,0.196,0.0392,-0.196,0.0196,-0.0196,-0.0588,-0.196,-0.0392,1,0.7648,0.4902,0.196,-0.0784,-0.0784,0.255,0.2352,0.196,0.5686,0.3922,0.2746,-0.0392,0.0784,-0.1568,0.0196,-0.196,-0.196,-0.1372,-0.1764,-0.5882,'25'
-0.4424,0.283,1,0.9246,0.6478,0.5094,0.1782,-0.4382,-0.2328,-0.2286,-0.2872,-0.3962,-0.346,-0.3418,-0.2956,-0.5346,-0.6646,-0.8742,-0.958,-0.7778,-0.673,-0.7148,-0.7148,-0.7106,-0.7526,-0.8364,-0.3376,-0.283,-0.6646,-0.6268,-0.6058,-0.2536,-0.3888,0.0704,1,0.8704,0.5556,0.5296,0.2778,-0.126,0.063,-0.2074,-0.4814,-0.6148,-0.5408,-0.6,-0.4074,-0.5852,-0.5,-0.6852,-0.863,-0.7814,-0.6852,-0.7444,-0.674,-0.7222,-0.5,-0.1038,0.0408,-0.0518,0.0148,0.0482,0.2148,0.2704,-0.564,-0.3122,0.1954,0.2324,0.4862,0.9242,0.8404,0.8628,1,0.871,0.1874,-0.087,-0.1996,-0.351,-0.4596,-0.3634,-0.3306,-0.4206,-0.3204,-0.3244,-0.1546,-0.132,0.0276,0.128,0.0748,0.0072,0.0112,0.1546,0.3572,0.5088,0.3572,0.265,-0.6136,-0.3916,-0.0018,-0.0664,0.1084,0.4546,0.7116,0.7728,1,0.8566,0.8898,0.493,0.2518,0.1538,-0.2396,-0.0332,-0.07,-0.1818,0.0298,0.0034,0.1136,0.3164,0.2256,-0.0454,-0.341,-0.2412,-0.222,-0.1294,-0.042,0.1242,0.3688,0.2028,-0.6202,-0.378,0.0354,-0.0392,0.041,0.3334,0.5978,0.823,1,0.8026,0.6964,0.5772,0.4636,0.3296,0.054,0.1714,0.0466,-0.0744,0.1284,0.1862,0.2756,0.499,0.5512,0.4786,0.0764,0.1042,0.0168,-0.0894,0.0038,0.0038,0.1508,0.2626,-0.603,-0.303,0.1024,-0.0306,0.17,0.3558,0.6684,0.9346,1,0.5438,0.3178,0.2946,0.2334,0.2714,0.2164,0.2926,0.189,0.6874,0.6536,0.565,0.6282,0.7002,0.7888,0.753,0.624,0.5312,0.2334,0.225,0.1108,0.2418,0.3072,0.2734,-0.5518,-0.0632,0.3164,0.0608,0.4278,0.524,0.643,0.4406,0.3468,-0.0784,-0.4456,-0.3064,-0.357,-0.3518,-0.286,-0.0126,0.2304,0.5722,0.714,0.8406,0.9848,0.9848,1,0.9722,0.9722,0.8304,0.8304,0.6936,0.605,0.5392,0.524,0.3722,-0.0968,0.3548,1,0.9354,0.3548,0.6774,0.4838,-0.2904,-0.2258,0.0322,-0.0322,0.2904,0.1612,-0.2258,-0.0968,-0.3548,-0.0968,-0.2904,-0.6774,-0.6774,-0.6774,-0.2904,-0.2258,-0.4838,-0.2904,-0.5484,-0.0322,0.0968,-0.0968,-0.0322,-0.0968,-0.1612,-0.0666,0.6666,1,1,0.8,0.9334,0.7334,0.1334,0.2,-0.0666,-0.1334,-0.3334,-0.2,-0.0666,-0.2,-0.2,0.1334,0.0666,-0.3334,0,-0.4666,-0.1334,-0.6666,-0.0666,-0.2666,-0.4,0.0666,0.1334,-0.1334,-0.2,-0.0666,0.1334,-0.2772,0.0844,0.6386,0.6626,0.7832,1,0.9518,0.5662,0.4216,0.2772,-0.2772,-0.3012,-0.4698,-0.4216,-0.3012,-0.7108,-0.3254,-0.4458,-0.3734,-0.3494,-0.253,-0.4458,-0.5422,-0.1326,0.3012,0.3976,0.5904,0.5904,0.5904,0.759,0.6386,0.5662,-1,-1,-1,-1,-1,-1,-1,-1,-0.9374,-0.934,-0.7114,-0.3008,-0.433,-0.207,0.7566,0.614,0.3566,0.1234,-0.0018,-0.0956,-0.1234,-0.3182,-0.5514,-0.6556,-0.6314,-0.586,-0.0644,-0.6766,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.97,-0.972,-0.9296,-0.8278,-0.861,-0.8042,-0.1752,0.7828,0.688,0.4048,0.044,-0.1732,-0.307,-0.6516,-0.8048,-0.8486,-0.8792,-0.8826,-0.8022,-0.8982,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.9668,-0.84,-0.8372,-0.833,-0.8158,-0.6572,-0.5572,-0.5272,-0.5948,-0.6428,-0.5624,-0.353,-0.4064,-0.3704,-0.1736,-0.4504,-0.4336,-0.8436,-0.8704,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6286,-0.9714,-0.4858,-0.5142,-0.8572,0.0572,0.4572,-0.3428,-0.8572,-1,-0.8858,-0.6858,-0.4572,-0.4572,-0.6858,-0.6286,-0.8572,-0.8572,-0.8858,-0.7714,-1,-1,-1,-1,-1,0.515,0.4872,0.4482,0.4662,0.4246,0.4054,0.4292,0.6568,1,1,-0.3974,-0.4066,-0.402,-0.4608,-0.4742,-0.4282,-0.3238,-0.1054,-0.1562,-0.0946,-0.5066,0.753,-0.934,-0.835,-0.8128,-0.8252,-0.8304,-1,0.1228,0.1754,0.807,0.6842,0.5438,0.4386,1,1,0.7018,0.579,0.7018,0.6666,0.8422,0.4912,0.2456,0.4912,0.9122,0.6316,0.4036,0.5614,0.7018,0.614,0.5614,0.5614,0.7192,0.6316,0.3684,0.386,0.2456,0.3334,0.3158,-0.3334,0.3552,0.2022,0.5628,0.6612,0.683,0.7378,0.7268,1,0.683,0.6722,0.847,0.6612,0.552,0.6722,0.5628,0.683,0.5192,0.5082,0.4644,0.6502,0.683,0.4316,0.377,0.4644,0.552,0.3552,0.541,0.4972,0.1476,0.5192,0.7924,0.1804,0.2,0.5354,0.3936,0.3548,0.1354,0.4064,0.5226,1,0.5096,0.2516,0.3678,0.4322,0.2904,0.071,0.3936,0.2258,0.4452,0.2516,0.0838,0.2646,0.1742,0.1612,0.1096,0.0838,0.1742,0.1742,0.1484,-0.0064,0.1612,0.187,0.2388,-0.5742,-0.9908,1,-1,-1,-1,-1,-0.4,-1,-1,-0.2546,0.1272,-0.0546,0.091,0.0728,-0.1818,0.0364,0.1272,-0.0546,0.0364,0.4182,0.8,0.8546,0.909,0.5636,0.4182,0.4182,0.2728,0.5818,0.6,0.7636,1,0.691,0.3272,-0.309,-0.091,-0.091,-0.1454,0.309,0.509,0.4364,0.3818,'25'
0.043,0.7496,0.772,1,0.5888,0.286,-0.2972,-0.3496,-0.3458,-0.4954,-0.585,-0.4468,-0.3944,-0.5588,-0.544,-0.5028,-0.2898,0.2822,0.3046,0.3758,0.3644,0.4842,0.342,0.2,0.271,0.3234,0.387,0.428,0.1328,-0.1214,-0.0842,-0.1814,-0.0408,0.6038,0.7328,1,0.7358,0.349,-0.1132,-0.066,-0.5944,-0.7106,-0.7106,-0.5974,-0.3176,-0.478,-0.4812,-0.4716,-0.4026,-0.0724,-0.0786,0.1636,0.0786,0.1384,0.5158,0.6446,0.456,0.5786,0.7862,0.849,0.5786,0.4748,0.2642,0.1572,0.0602,0.6846,0.7724,1,0.6586,0.2716,0.122,0.1024,-0.5544,-0.613,-0.8048,-0.6814,-0.6358,-0.5122,-0.4926,-0.252,-0.3366,-0.0472,-0.0504,0.161,-0.0082,0.083,0.691,0.6944,0.8764,0.7496,0.7334,0.743,0.8634,0.7366,0.7626,0.4114,-0.0628,0.4912,0.8642,1,0.2926,-0.1394,0.0104,-0.3066,-0.5122,-0.77,-0.6272,-0.5366,-0.7248,-0.8084,-0.561,-0.4844,-0.5122,-0.324,-0.2474,-0.2404,-0.108,0.1114,0.4182,0.892,1,0.9512,0.6412,0.7492,0.6306,0.5192,0.54,0.425,-0.2262,0.2754,1,0.9344,-0.2,0.2852,0.1508,-0.2132,-0.6656,-0.705,-0.7704,-0.6622,-0.5344,-0.5738,-0.7968,-0.8196,-0.8328,-0.6852,-0.5148,-0.4394,-0.2558,-0.118,0.3016,0.5148,0.7148,0.7246,0.4196,0.6656,0.6262,0.5378,0.6688,0.646,-0.2102,0.4442,1,0.8136,-0.1372,0.0896,-0.2138,-0.638,-0.744,-0.916,-0.8648,-0.894,-0.8282,-0.8794,-0.8794,-0.9122,-0.85,-0.66,-0.682,-0.5612,-0.5064,-0.3418,0.0092,0.3162,0.7404,0.7368,0.6198,0.6052,0.437,0.5612,0.5502,0.3492,0.8238,1,0.6684,0.4818,-0.3886,-0.3834,-0.4922,-0.3576,-0.2954,-0.487,-0.2072,-0.114,-0.0726,-0.1814,-0.2124,-0.4196,-0.3316,-0.5336,-0.9068,-0.4508,-0.2436,0.145,0.513,0.829,0.7046,0.6684,0.741,0.7306,0.684,0.5958,0.7306,0.5906,0.4194,0.9354,0.871,0.9354,0.6774,0.613,0.2904,-0.0322,-0.6774,-0.3548,-0.2258,-0.0968,-0.4194,0.0322,-0.1612,0.2904,0.4838,0.742,0.871,1,0.742,0.613,0.742,0.613,0.613,0.4194,0.2258,0.2904,0.2258,0.4194,0.6774,0.8064,0.2778,0.7778,0.7222,1,0.2222,0.2222,-0.1112,0,0.1666,-0.1666,-0.3888,0.0556,0.1112,-0.3334,-0.7778,-0.6666,0.1666,0.2222,0.3888,0.8888,0.9444,0.3888,0.3334,0.4444,0.5,0.3888,0.5556,0.4444,-0.0556,-0.0556,0.2222,0.0556,-0.183,0.155,1,1,-0.0422,0.2394,0.2394,-0.2958,-0.4366,-0.4366,-0.8592,-0.4084,-0.4366,-0.7464,-0.493,-0.4366,-0.5774,-0.5774,-0.4366,-0.2394,-0.183,-0.0704,0.4366,0.6056,0.9154,0.662,0.2676,0.831,0.662,0.5774,0.9718,0.831,-0.943,-0.618,-0.454,-0.382,-0.5008,-0.6098,-0.7286,-0.7822,-0.7956,-0.7386,-0.526,0.392,0.9146,0.9782,0.7756,0.4974,0.4892,0.5728,0.4438,0.1758,-0.4238,-0.4456,-0.4154,-0.7622,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.936,-0.6872,-0.551,-0.4586,-0.5248,-0.6612,-0.7618,-0.7926,-0.7748,-0.6682,-0.3922,0.3282,0.821,0.9324,0.7026,0.5154,0.5,0.4632,0.2844,0.032,-0.4882,-0.5688,-0.5592,-0.8068,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9234,-0.88,-0.8734,-0.7534,-0.89,-0.9168,-0.8934,-0.7968,-0.62,-0.4034,-0.1834,-0.5492,-0.7382,-0.731,-0.8146,-0.6256,-0.7656,-0.791,-0.7928,-0.802,-0.6982,-0.8884,-0.9468,-0.9434,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6,-0.5142,-0.3142,-0.1714,-0.7714,-0.8,-0.9714,-0.9142,-0.3714,0.2858,0.2572,-0.1142,-0.3142,-0.7714,-0.9714,-0.9714,-0.9714,-0.7428,-0.7714,-0.7428,0,-0.5714,-0.8,-0.6858,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.0458,-0.006,0.0134,0.0494,0.0806,0.1136,0.1588,0.1992,0.2154,0.015,0.3958,0.403,0.4196,0.4684,0.528,0.5914,0.684,0.784,0.9004,0.829,-0.6534,0.3176,-0.417,-0.058,0.2144,0.4454,0.5236,-1,0.2364,0.2364,-0.2,-0.0546,-0.4304,-0.1758,-0.103,-0.103,0.0788,-0.297,-0.1394,0.0304,0.0182,-0.0788,-0.406,-0.0666,0.091,0.006,-0.1758,-0.2242,-0.0182,0.0304,0.2242,0.5152,0.7334,0.7212,0.806,0.891,0.7334,0.9272,1,0.1878,0.0844,0.0722,-0.5302,-0.3734,-0.4698,-0.735,-0.6266,-0.3734,-0.2772,-0.3976,-0.3012,-0.229,-0.2892,-0.3494,-0.3494,-0.253,-0.2772,-0.265,-0.1204,0.1566,0.0964,0.4096,0.6024,0.6024,0.735,0.771,0.7952,0.9398,0.8072,0.747,1,-0.1566,0.1866,0.2248,-0.2344,-0.445,-0.4258,-0.7416,-0.4258,-0.2632,0.1484,0.1292,-0.1866,-0.244,0.1866,0.1484,-0.2154,0.0144,-0.1866,-0.024,0.0334,0.3876,0.2058,0.2154,0.6076,0.732,0.8278,0.8948,0.7894,1,0.8278,0.9426,0.8948,0.4928,-0.7748,-1,1,-1,0.4,1,-1,-0.4666,-1,0.7216,0.6456,0.2912,0.3418,0.3924,0.2658,0.6708,0.3164,0.3924,0.4684,0.443,0.8228,0.4936,0.9746,0.6962,0.443,0.4936,0.7216,0.6708,0.114,0.367,0.9746,1,0.0126,-0.1646,0.2152,0.1646,0.0886,0.519,0.6202,-0.0886,-0.1392,'26'
-0.2344,0.3012,0.4602,0.544,-0.1674,-0.0754,0.1172,-0.2468,-0.523,-0.523,-0.5984,-0.682,-0.5816,-0.456,-0.5146,-0.5356,-0.385,0,0.3974,0.774,0.6778,0.4854,0.3808,0.498,0.4896,0.7154,1,0.8912,0.431,0.3934,0.3096,0.1882,-0.2414,0.3248,0.481,0.6552,0.1834,0.0926,0.0744,-0.049,-0.412,-0.55,-0.5136,-0.6116,-0.597,-0.5028,-0.579,-0.5754,-0.4446,-0.412,-0.1542,-0.0636,0.1108,0.5426,0.7314,0.6552,0.6914,0.7386,0.6696,0.4846,0.8222,1,0.5354,0.5644,-0.239,0.3236,0.4852,0.6654,0.1434,0.0552,0.0698,-0.0772,-0.3052,-0.5846,-0.5772,-0.533,-0.614,-0.5882,-0.6398,-0.592,-0.5478,-0.4376,-0.114,-0.261,-0.283,0.3898,0.489,0.6728,0.8346,1,0.853,0.5846,0.6508,0.9008,0.8714,0.7684,-0.3248,0.1606,0.573,0.6752,-0.0438,-0.197,0.0218,-0.27,-0.3322,-0.6496,-0.6824,-0.6752,-0.7846,-0.6094,-0.6424,-0.7956,-0.6132,-0.2154,-0.2518,-0.376,-0.2774,0.0402,0.3212,0.4744,0.792,0.8212,0.7336,0.708,0.8394,1,0.9452,0.8868,-0.4646,0.0992,0.7944,0.734,-0.3582,0.1666,0.0602,0.0532,-0.3794,-0.5852,-0.5178,-0.571,-0.7482,-0.5142,-0.344,-0.6028,-0.7588,-0.2978,-0.2164,-0.4078,-0.1134,-0.0532,0.1524,0.2766,0.578,0.9646,0.954,0.9326,0.7908,1,0.9858,0.7908,-0.8086,0.3078,0.7252,0.5166,-0.2244,-0.1026,0.0296,-0.214,-0.5374,-0.6034,-0.6,-0.6104,-0.5096,-0.5096,-0.4226,-0.4886,-0.6522,-0.4818,-0.3808,-0.3948,-0.4156,-0.273,0.1234,0.346,0.76,0.84,0.8018,0.9374,0.8782,1,0.9966,0.8156,-0.9574,0.1838,0.5552,0.2456,-0.1838,-0.1914,-0.4236,-0.6054,-0.737,-0.6828,-0.737,-0.559,-0.4854,-0.6016,-0.5474,-0.679,-0.8336,-0.6364,-0.5938,-0.3888,-0.3618,-0.118,0.1064,0.381,0.679,0.9922,1,0.8684,0.8724,0.9846,0.8646,0.5706,-0.0256,0.2308,0.1794,0.2308,-0.4358,0.1794,0.2308,-0.1794,-0.3846,-0.641,-0.4872,-0.4872,-0.4872,-0.077,-0.0256,-0.1794,-0.0256,0.641,0.5898,0.6924,0.5898,0.4872,0.5898,0.5384,0.4872,0.8462,1,0.5898,0.1282,0.077,0.0256,-0.1282,0.1112,0.4222,0.5112,0.5112,0.0666,0.2,0.3334,0.0666,-0.1556,0.0666,-0.2,-0.3334,-0.3334,-0.2444,-0.1556,-0.1556,-0.0666,0.0222,0.7334,0.9112,0.5556,0.5112,-0.0222,0.3778,0.4666,0.6444,1,1,0.2,0.3778,0.2444,0.2444,-0.2608,0.3478,0.8044,0.7174,0.1304,0.2826,0.2174,0.1956,-0.0218,-0.1086,-0.174,-0.1956,-0.5434,-0.587,-0.2826,-0.3478,-0.2826,-0.2608,-0.1956,0,-0.0218,0.0218,0.1304,0.2826,0.8696,1,0.913,0.7608,0.6956,0.9782,0.8696,0.7608,-0.1192,-0.1956,-0.2404,-0.209,-0.227,-0.3304,-0.4112,-0.4516,-0.5326,-0.4652,-0.263,0.5866,0.8562,0.6854,0.7034,0.5506,0.7258,0.6808,0.964,0.573,0.1956,-0.218,-0.4382,-0.5596,-0.5956,-0.6224,-0.7304,-0.8202,-0.9012,-0.928,-1,-1,-1,-0.4734,-0.5276,-0.5656,-0.4014,-0.3254,-0.3574,-0.5056,-0.5776,-0.4994,-0.4734,0.6796,0.4654,0.6516,0.6376,0.6476,0.8318,0.7958,0.8178,0.8458,0.4014,0.027,-0.2792,-0.5116,-0.6296,-0.7238,-0.7038,-0.7878,-0.8318,-0.8878,-0.912,-1,-1,-1,-0.7634,-0.5968,-0.4668,-0.1368,-0.0768,-0.3768,-0.4268,-0.2734,0.0366,0.0032,0.7066,0.2176,-0.1956,-0.186,-0.266,-0.282,-0.238,-0.152,-0.504,-0.42,-0.458,-0.532,-0.3468,-0.2834,-0.3734,-0.58,-0.71,-0.6634,-0.8,-0.96,-1,-1,-1,-0.3142,-0.6286,0.2286,0.2572,-0.5714,-0.8,-0.9714,-0.9428,-0.9142,0.2858,0.5714,-0.1714,-0.3142,-0.8,-0.9142,-0.8572,-0.9714,-0.9428,-0.7714,-0.8858,-0.7428,-0.6286,-0.8,-0.6858,-0.6,-0.5428,-0.9428,-0.8858,-0.9714,-1,-1,-1,-1,0.3832,0.3992,0.41,0.4122,0.4224,0.432,0.443,0.4492,0.4414,0.4442,0.725,0.7464,0.7554,0.7494,0.7526,0.7958,0.838,0.8368,0.9162,0.9386,-0.6266,0.153,0.8838,0.5036,0.5296,0.5176,0.5456,-0.9584,-0.05,-0.07,-0.69,-0.65,-0.44,-0.48,-0.34,0.05,0.12,-0.26,-0.33,-0.14,-0.14,-0.06,-0.02,0.06,-0.23,-0.1,0.01,0.04,0.27,0.28,0.31,0.52,0.84,0.71,0.92,0.95,0.9,0.77,1,0.66,-0.1706,-0.1798,-0.53,-0.705,-0.742,-0.5944,-0.318,-0.2904,-0.1336,-0.0322,-0.2718,-0.1982,-0.318,-0.2166,0.023,0.0506,-0.1244,-0.235,0.06,0.1706,0.2626,0.3548,0.3088,0.8342,0.8894,0.8526,1,1,0.4746,0.8802,0.9262,0.6958,-0.246,-0.2524,-0.4314,-0.2652,-0.6678,-0.706,-0.5718,-0.5144,-0.3036,-0.2396,-0.2524,-0.1374,0.048,0.099,-0.0288,-0.2396,-0.163,-0.1884,0.1566,0.2908,0.3546,0.3674,0.4314,0.7124,0.5846,0.687,1,0.9872,0.54,0.623,0.6102,0.4186,-0.6196,-1,1,-1,0.6,1,0.4,-0.3334,-1,0.35,0.3334,0,-0.2,0.1834,0.2166,0.2834,0.3666,0.2166,0.1834,0.1166,0.5,0.8166,0.7666,0.8,0.7166,0.4166,0.6666,0.9834,1,0.7166,0.5666,0.3834,0.7,0.8,0.4834,0.25,0.5,0.5834,0.7,0.4334,-0.05,'26'
-0.328,0.4688,0.485,0.756,0.7778,0.962,1,0.439,0.496,0.019,0.1138,-0.1192,-0.0162,0.0244,0.1274,0.0948,0.2792,0.2846,0.5068,0.664,0.7398,0.7452,0.8374,0.7588,0.813,0.7262,0.6206,0.5366,0.4662,0.504,0.439,0.4526,-0.2862,0.4536,0.4588,0.6654,0.6576,0.9974,1,0.4118,0.43,-0.213,-0.1608,-0.1164,-0.0562,-0.0928,-0.017,-0.2706,-0.0484,0.1032,0.2026,0.5216,0.6628,0.4798,0.6104,0.3934,0.5922,0.6026,0.7594,0.5398,0.3934,0.2522,0.2262,0.2758,-0.2682,0.4884,0.502,0.7332,0.7248,1,0.989,0.403,0.4058,-0.2078,-0.183,0.0234,0.0536,-0.0536,-0.0068,-0.2984,-0.1224,0.315,0.425,0.6836,0.7772,0.6148,0.6342,0.6204,0.6836,0.4966,0.5434,0.4994,0.3976,0.4442,0.315,0.2022,-0.1132,0.6384,0.5974,0.8774,0.761,1,0.849,0.4056,0.1918,-0.2264,-0.1666,0.0754,-0.151,-0.1666,-0.2076,-0.1918,-0.132,0.11,0.2798,0.4874,0.6666,0.912,0.9276,0.7924,0.7232,0.7548,0.8868,0.7422,0.4842,0.3616,0.371,0.2264,-0.082,0.5846,0.4462,0.5774,0.6502,0.734,0.0274,-0.0746,-0.5482,-0.7086,-0.5884,-0.4718,-0.3916,-0.4098,-0.4354,-0.3844,-0.2532,0.031,0.1074,0.5046,0.603,1,0.9636,0.9198,0.7378,0.6976,0.7304,0.745,0.4536,0.224,0.1694,0.275,-0.0634,0.4484,0.373,0.4564,0.3888,0.2222,-0.6388,-0.8492,-0.9604,-0.8056,-0.8572,-0.6706,-0.6388,-0.6032,-0.7738,-0.7858,-0.7064,-0.4524,-0.262,0.0596,0.4682,0.9404,1,0.8492,0.8334,0.8452,0.8452,0.6944,0.5,0.3056,0.123,0.3134,0.216,0.804,0.6934,0.7336,0.2412,-0.1106,-0.4372,-0.5176,-0.819,-0.9548,-0.8492,-0.6482,-0.4624,-0.4522,-0.5226,-0.583,-0.4522,-0.1256,-0.186,-0.191,0.5176,0.8944,0.9748,0.794,0.7738,1,0.9598,0.7286,0.211,0.0904,-0.0452,-0.186,-0.4348,0.3914,0.4348,0.826,0.826,0.8696,1,0.6522,0.5218,0.174,0.3044,0.1304,0.3044,0.2608,0.4782,0.3478,0.3914,0.3914,0.9566,0.913,0.6956,0.6086,0.9566,0.7392,0.7826,0.9566,1,0.6522,0.5218,0.6522,0.7392,0.7392,-0.4042,0.4468,0.4894,0.8298,0.8298,0.9148,1,0.4042,0.532,0.0638,0.3192,0.149,0.4042,0.1914,0.4468,0.4042,0.0638,0.149,0.4468,0.617,0.8724,0.5744,0.7022,0.7446,0.8298,0.7446,0.8298,0.6596,0.4042,0.7022,0.532,0.4468,-0.1,0.55,0.425,0.625,0.625,0.775,0.25,0.125,-0.275,-0.275,-0.2,-0.225,-0.25,-0.225,-0.075,-0.1,0,0.075,0.15,0.625,0.675,0.95,0.875,1,0.525,0.85,0.8,0.825,0.225,-0.025,0.175,0.225,-1,-1,-1,-1,-1,-1,-1,-0.966,-0.9606,-0.8654,-0.053,0.853,0.93,0.9696,0.8476,0.6628,0.4512,0.2108,-0.0726,-0.2162,-0.3346,-0.4798,-0.6574,-0.808,-0.921,-0.966,-0.966,-0.9588,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.973,-0.9688,-0.2654,0.0882,0.5844,0.4044,0.5268,0.4484,0.252,-0.057,-0.3008,-0.4786,-0.561,-0.6704,-0.774,-0.841,-0.8982,-0.9124,-0.9352,-0.9424,-0.944,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.9334,-0.4634,-0.0168,-0.728,-0.696,-0.666,-0.69,-0.726,-0.686,-0.656,-0.722,-0.754,-0.8328,-0.9528,-0.8,-0.59,-0.3934,-0.3934,-0.4534,-0.56,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,1,-0.9142,-0.9714,-0.8858,-0.9714,-0.7428,-0.6858,-0.7714,-0.8,-0.8,-0.7142,-0.8572,-0.8858,-0.9428,-0.8286,-0.9714,-0.6572,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.5614,0.5744,0.5562,0.6078,0.614,0.641,0.6616,0.6552,0.6658,0.6556,0.7772,-0.7734,0.2,0.3944,0.9312,0.7564,0.3738,0.3048,0.7834,-0.7318,-0.5084,0.1284,0.0838,-0.3854,-0.3072,-0.2068,0.095,0.296,0.877,0.9106,0.676,0.7766,0.7766,0.5978,0.6872,0.7318,0.933,0.9218,0.9888,1,0.743,0.352,0.352,0.3184,0.1508,-0.229,-0.3632,-0.4526,-0.6202,-0.6536,-0.7878,-0.458,-0.5612,0.342,0.1742,-0.1484,-0.0064,-0.1354,0.071,0.3936,0.5484,0.6516,0.7548,0.6258,0.7806,0.742,0.6516,0.7936,0.9226,0.8968,1,0.987,0.8838,0.729,0.5484,0.5354,0.3162,0.0064,-0.213,-0.3162,-0.1612,-0.4322,-0.6258,-0.025,0.25,0.6334,0.575,0.325,0.325,0.275,0.3334,0.575,0.7666,1,0.9166,0.7666,0.8416,0.675,0.7166,0.6,0.7916,0.775,0.775,0.775,0.6166,0.6584,0.4834,0.5666,0.3834,0.1416,-0.3166,-0.2916,-0.5084,-0.7084,-0.9,1,-1,-1,1,-1,-1,-0.2,-0.6,-1,-0.5496,-0.6216,-0.3334,-0.3334,-0.1172,-0.4954,-0.099,-0.045,-0.1352,0.3514,1,0.7118,0.7118,0.1352,0.2612,0.1712,0.1172,0.1892,0.063,0.081,0.009,0.1172,0.1712,-0.081,-0.2432,-0.009,-0.099,-0.2612,-0.1352,0.045,-0.1712,-0.7658,'1'
-0.3886,0.521,0.5644,0.6458,0.707,0.8904,1,0.5236,0.2866,-0.0446,0.1082,-0.042,0.0496,-0.0292,0.1694,0.0496,0.33,0.3554,0.5974,0.6866,0.8802,0.8676,0.735,0.758,0.735,0.7962,0.7274,0.6994,0.47,0.3834,0.4114,0.3606,-0.2864,0.5888,0.6128,0.6312,0.6552,0.955,1,0.3024,0.2096,-0.1062,-0.0026,-0.114,0.0292,-0.1458,0.0372,-0.1114,0.1644,0.0982,0.4084,0.6048,0.9734,0.886,0.7692,0.6552,0.5384,0.6816,0.7136,0.6048,0.3978,0.2998,0.2652,0.3236,-0.2694,0.527,0.5216,0.711,0.682,0.845,0.8082,0.2142,0.188,-0.18,-0.2168,-0.0118,-0.017,-0.017,-0.0302,-0.0224,-0.017,0.3036,0.3036,0.59,0.6426,0.9764,1,0.6872,0.6032,0.5664,0.5952,0.5348,0.4876,0.3404,0.3088,0.2562,-0.2352,0.4454,0.3838,0.6022,0.4314,0.6442,0.3726,0.1596,-0.1764,-0.2998,-0.2634,-0.224,-0.3446,-0.2998,-0.2268,-0.2436,0.014,0.182,0.339,0.5154,0.8096,0.986,1,0.9496,0.8068,0.8628,0.8516,0.8376,0.6806,0.647,0.6106,0.4566,-0.1602,0.4094,0.2878,0.448,0.362,0.3412,-0.1246,-0.2938,-0.4778,-0.6854,-0.635,-0.5282,-0.5876,-0.5668,-0.5964,-0.4748,-0.3324,-0.1958,-0.0772,0.365,0.6024,0.8842,1,0.8546,0.6618,0.6796,0.6676,0.5164,0.451,0.3354,0.3116,0.3086,0.0056,0.6008,0.597,0.6986,0.209,0.0208,-0.548,-0.7288,-0.7326,-0.936,-0.985,-0.8758,-0.838,-0.7326,-0.7138,-0.5856,-0.5292,-0.4916,-0.1338,0.179,0.563,0.759,1,0.8154,0.7364,0.7702,0.6008,0.5518,0.371,0.0584,-0.0434,-0.1074,-0.0582,0.6182,0.411,0.32,-0.3128,-0.3782,-0.4728,-0.5636,-0.7418,-0.7782,-0.9818,-0.811,-0.5054,-0.5382,-0.52,-0.4872,-0.331,-0.2472,-0.131,-0.0146,0.4836,0.8946,0.9746,1,0.5746,0.7236,0.6546,0.2654,0.2218,0,-0.109,-0.1854,-0.7308,0.1924,0.2692,0.5,0.6154,0.577,0.7308,0.577,0.3462,0.2692,0.2692,0.3462,0.1924,0.3076,0.1154,0.3846,0.3076,0.6154,0.6924,0.8846,1,0.8462,0.8462,0.7692,0.8076,0.8462,0.6154,0.6924,0.3846,0.423,0.3846,0.4616,-0.4042,0.4468,0.4894,0.6596,0.7446,0.8724,1,0.6596,0.3192,0.149,0.234,0.149,0.1914,0.0638,0.234,0.234,0.4042,0.4468,0.5744,0.7446,0.8298,1,0.7872,0.9574,0.9148,0.8298,0.7022,0.5744,0.7022,0.532,0.532,0.532,-0.1326,0.3494,0.229,0.4458,0.3494,0.3734,0.0362,-0.1084,-0.253,-0.5904,-0.518,-0.4698,-0.494,-0.3734,-0.3976,-0.3734,-0.1566,-0.1326,0.229,0.3494,0.3734,0.976,1,0.9036,0.8072,0.7832,0.7832,0.7832,0.6144,0.3494,0.494,0.3494,-1,-1,-1,-1,-1,-1,-1,-0.9648,-0.9452,-0.9298,-0.2624,0.8682,0.7738,0.6838,0.5828,0.4072,0.2184,-0.0846,-0.2492,-0.2886,-0.3788,-0.4666,-0.6048,-0.7102,-0.8024,-0.8946,-0.9408,-0.9386,-0.9276,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9718,-0.9676,-0.6166,-0.12,0.5414,0.198,0.0904,0.0412,-0.0594,-0.0692,-0.3324,-0.6102,-0.6792,-0.7094,-0.7488,-0.7848,-0.8326,-0.8768,-0.8902,-0.9184,-0.9338,-0.938,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.88,-0.66,-0.15,-0.6528,-0.6874,-0.6946,-0.6584,-0.68,-0.605,-0.52,-0.81,-0.8334,-0.7468,-0.8118,-0.6434,-0.4434,-0.3,-0.1934,-0.4134,-0.4968,-0.3834,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,0.3428,1,1,1,-0.6572,-0.9142,-0.9142,-0.8286,-0.8572,-0.5142,-0.4572,-1,-0.8286,-0.9714,-0.8858,-0.9714,-0.9142,-0.7714,-0.6572,-0.9142,-0.9142,-1,-1,-1,-1,1,1,1,1,1,1,1,1,0.9636,0.4902,0.5674,0.5498,0.5802,0.6052,0.6042,0.6216,0.6248,0.6492,0.7088,0.7728,-0.7466,0.4,4e-04,1,0.7144,0.3992,0.2058,0.9834,-0.4658,-0.3288,0.1918,0.2602,0,0.041,0.1096,0.137,0.548,0.9316,0.959,0.8904,0.9178,0.863,0.7534,0.7398,0.9178,0.9452,0.9864,1,0.8768,0.7124,0.4932,0.3014,0.137,-0.0136,-0.2328,-0.315,-0.4794,-0.3424,-0.2328,-0.5068,-0.4036,-0.2632,0.3158,0.1228,0.1404,0.1228,0.0878,0.3158,0.421,0.8772,0.7192,0.772,1,0.7544,0.6842,0.7544,0.807,0.8246,0.6492,0.9474,0.9298,0.7368,0.5964,0.5088,0.4562,0.0176,-0.035,0,-0.1754,0.0176,-0.1404,-0.6842,-0.1134,0.261,0.6552,0.5074,0.3202,0.33,0.3596,0.3892,0.5666,0.8916,1,0.9802,0.9606,0.9212,0.7636,0.6946,0.7536,0.8522,0.734,0.7438,0.803,0.606,0.5074,0.5172,0.33,0.2118,0.0246,-0.4482,-0.6848,-0.596,-0.6946,-0.8916,0.5632,-1,-1,1,-1,-1,0.4,-0.6666,-1,-0.0624,0.0624,-0.125,-0.0782,-0.125,-0.3124,-0.0156,0,0.1094,0.4062,0.875,1,0.9062,0.7188,0.1718,0.375,0.4844,0.4062,0.4218,0.375,0.375,0.3594,0.6876,0.6094,-0.0624,0,0.1876,0.7344,0.7344,0.3594,0.0782,-0.0312,'1'
-0.1442,0.8542,0.906,0.8088,0.8638,0.209,0.316,-0.115,0.0438,-0.2576,-0.0988,-0.1378,0.167,-0.0244,0.1896,0.0632,0.4166,0.4132,0.9384,0.8508,0.8866,1,0.8412,0.9092,0.7116,0.8282,0.5688,0.4944,0.504,0.679,0.6338,0.6564,-0.3476,0.5234,0.5846,0.4088,0.4966,-0.0252,0.0652,-0.2464,-0.0332,-0.2356,-0.1372,-0.2704,-0.0412,-0.0972,0.0466,0.0546,0.185,0.2624,0.462,0.6058,0.7336,1,0.8268,0.715,0.5606,0.8562,0.8216,0.9042,0.9494,0.6512,0.7576,0.5766,-0.306,0.5882,0.6136,0.3992,0.4528,-0.0748,0.0156,-0.2524,-0.117,-0.4556,-0.2666,-0.4218,-0.1256,-0.2834,-0.1086,-0.2496,0.086,0.0098,0.3512,0.3342,0.67,0.7264,0.8872,1,0.56,0.7292,0.6672,0.8674,0.763,0.873,0.7122,0.794,-0.1614,0.62,0.6168,0.4962,0.439,-0.0346,-0.1192,-0.1916,-0.279,-0.3574,-0.451,-0.276,-0.3666,-0.2942,-0.3182,-0.1644,-0.273,-0.1222,0.074,0.27,0.4178,0.7648,1,0.9156,0.5806,0.5506,0.6924,0.6832,0.8552,0.7254,0.6592,0.5838,0.0018,0.6338,0.5094,0.741,0.3816,-0.0846,-0.2194,-0.2366,-0.4438,-0.4922,-0.5198,-0.4474,-0.4508,-0.544,-0.4956,-0.4784,-0.3852,-0.2678,-0.1226,0.1192,0.3126,0.6512,0.9724,1,0.7652,0.6338,0.6822,0.8342,0.8308,0.893,0.7962,0.665,-0.202,0.2356,0.6094,0.643,-0.2862,-0.5758,-0.6094,-0.7508,-0.8686,-0.8114,-0.8888,-0.7172,-0.6632,-0.697,-0.7576,-0.7004,-0.6868,-0.5926,-0.4242,-0.1616,0.0336,0.3738,0.9596,1,0.5622,0.3266,0.367,0.5252,0.542,0.532,0.4208,0.3636,-0.245,0.256,0.7016,0.6612,-0.2302,-0.499,-0.6574,-0.5948,-0.8306,-0.698,-0.7938,-0.7164,-0.6096,-0.6316,-0.628,-0.6022,-0.4512,-0.5138,-0.4954,-0.3628,-0.2966,0.348,0.8232,1,0.7754,0.3922,0.3296,0.3112,0.3296,0.3518,0.2266,0.197,-0.1708,0.8048,0.9512,0.5122,0.6098,0.0244,0.122,-0.0732,0.0732,-0.0732,-0.0244,0.0244,0.2196,0.317,-0.0732,0.3658,0.2682,1,1,0.561,0.7074,0.8048,0.8048,0.6586,0.7074,0.4146,0.0244,0.2682,-0.0732,0.4146,0.4146,0.5122,-0.2444,0.5556,0.6,0.6,0.6,0.0666,0.0666,-0.2888,-0.2,-0.3334,-0.2444,-0.1556,0.0222,-0.2444,0.0222,0.0222,0.3334,0.3778,0.8666,0.7778,0.6888,0.6888,0.9556,1,0.4222,0.0666,0.1112,0.1556,0.2,0.2888,0.3334,0.5112,-0.4222,0.4666,0.5334,0.3334,0.3778,-0.0666,-0.0444,-0.3556,-0.1334,-0.3556,-0.2222,-0.3112,-0.1112,-0.1556,-0.0222,-0.0222,0.0888,0.1556,0.3334,0.4888,0.6444,0.9556,0.7556,0.7112,0.5112,0.7778,0.7556,0.9778,1,0.7112,0.8222,0.7112,-1,-1,-1,-1,-1,-1,-1,-1,-0.965,-0.9742,-0.4064,0.898,0.5418,0.3714,0.2572,0.1948,0.1264,0.064,-0.0016,-0.1506,-0.3668,-0.5388,-0.72,-0.831,-0.895,-0.9132,-0.9468,-0.962,-0.933,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9552,-0.9616,-0.407,0.64,0.5998,0.8602,0.6418,0.4956,0.2682,0.2206,0.0544,-0.09,-0.386,-0.6044,-0.7816,-0.8254,-0.8566,-0.8656,-0.8638,-0.873,-0.863,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8734,-0.84,-0.8334,-0.7,-0.548,-0.506,-0.44,-0.436,-0.39,-0.528,-0.673,-0.631,-0.7528,-0.7728,-0.8568,-0.5134,-0.4868,-0.2534,-0.4,-0.12,-0.2934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,0.1428,-0.8572,-0.6858,-0.6858,-0.9428,-0.7142,-0.8,-0.8286,-0.4858,-0.5428,-0.7428,-0.9142,-0.8572,-0.8572,-0.9142,-0.9428,-0.4858,-1,-1,-1,-1,0.3798,0.375,0.3852,0.3862,0.3994,0.4076,0.4064,0.393,0.3284,0.0568,0.4466,0.4614,0.5096,0.522,0.5422,0.5574,0.6186,0.7014,0.7896,0.887,-0.8134,0.2236,-0.2206,0.4738,0.7844,0.6108,0.5066,1,0.4118,0.7058,0.5882,0.5294,0.5294,0.7648,0.9412,1,0.647,0.8236,0.7058,0.7058,0.7058,0.647,0.5294,0.5882,0.353,0.5294,0.7648,0.7058,0.1764,0.5294,0.5294,0.5882,0.4706,0.4706,0.353,0.353,0.1764,0.1764,0.1764,-0.647,0.5444,0.6708,0.595,0.443,0.3924,0.8482,1,1,0.924,0.7974,0.8482,0.8228,0.6456,0.7722,0.367,0.519,0.519,0.4684,0.4684,0.6962,0.2658,0.4178,0.3418,0.3924,0.443,0.3924,0.1646,0.3164,0.0886,0.0632,-0.0126,-0.7722,0.3414,1,0.4878,0.1708,0.0976,0.0976,0.317,0.4878,0.8292,0.8292,0.8048,0.9756,0.5854,0.5366,0.317,0.7804,0.4634,0.3902,0.3658,0.3902,0.1464,0.2196,0.2926,0.1952,0.0244,0.2196,0.1464,0.0732,-0.1708,-0.2196,-0.1708,-0.2682,0.5148,-1,-1,1,-1,-1,0.2,-0.8334,-1,-0.2242,-0.1896,-0.138,-0.0172,0.1552,-0.138,-0.1724,0.069,-0.0172,0.3104,0.7068,1,0.862,0.9482,0.2932,0.5172,0.5,0.638,0.4482,0.069,0.3794,0.3448,0.3276,0.2414,0.2242,0.2932,0.3794,0.4138,0.0862,-0.0344,-0.069,-0.5344,'2'
-0.5234,0.355,0.4482,0.3212,0.4068,0.0414,0.0104,-0.127,-0.1088,-0.1554,-0.057,-0.0362,-0.0234,0.057,0.013,0.1866,0.241,0.5284,0.417,0.899,0.9196,0.9146,1,0.8576,0.9404,0.671,0.6424,0.5596,0.4638,0.4094,0.588,0.6166,-0.5374,0.2888,0.3556,0.1622,0.2452,-0.1898,-0.054,-0.3164,-0.1968,-0.3556,-0.2244,-0.3142,-0.1232,-0.1392,-0.0956,-0.0426,0.0288,0.1508,0.2728,0.4798,0.5904,1,0.9056,0.7952,0.763,0.7998,0.8388,0.7284,0.8388,0.5374,0.6892,0.4844,-0.3716,0.4248,0.438,0.2862,0.281,-0.1558,-0.1398,-0.2836,-0.2596,-0.4354,-0.3768,-0.3688,-0.2916,-0.3848,-0.281,-0.3368,-0.225,-0.0226,0.1344,0.2436,0.5206,0.8082,0.9946,1,0.763,0.6964,0.755,0.8748,0.8348,0.7124,0.6352,0.5818,-0.1326,0.5558,0.4784,0.4992,0.3204,-0.231,-0.4218,-0.2638,-0.4158,-0.371,-0.547,-0.4694,-0.4904,-0.4128,-0.4634,-0.389,-0.3084,-0.225,0.0044,0.1714,0.544,0.7676,0.991,1,0.6454,0.6752,0.7974,0.7794,0.8242,0.7616,0.5558,0.4546,-0.013,0.549,0.5326,0.6862,0.1176,-0.2352,-0.3202,-0.4184,-0.5326,-0.6242,-0.5654,-0.513,-0.67,-0.4772,-0.536,-0.5228,-0.5816,-0.2974,-0.1046,0.0066,0.196,0.6928,1,0.9444,0.6438,0.5784,0.6504,0.696,0.732,0.5098,0.4934,0.3366,-0.0678,0.7156,0.7506,0.7768,0.0416,-0.5624,-0.7944,-0.7418,-0.698,-0.8644,-0.6412,-0.6718,-0.6542,-0.523,-0.6586,-0.8074,-0.501,-0.3304,-0.3874,-0.6062,0.0722,0.383,1,0.9432,0.5098,0.3742,0.4486,0.8162,0.7636,0.221,0.059,0.094,-0.3362,0.978,1,0.178,0.1868,-0.5252,-0.455,-0.5868,-0.6176,-0.578,-0.5076,-0.367,-0.3626,-0.5252,-0.5516,-0.6484,-0.3758,-0.455,-0.855,-0.8506,-0.2396,0.1604,0.701,0.723,0.3846,0.2616,0.3934,0.5296,0.288,0.0374,-0.222,-0.1472,0.0304,0.4546,0.4546,0.5758,0.4546,-0.0304,-0.5758,-0.4546,-0.8788,-0.1516,0.1516,0.394,0.4546,0.5152,0.394,0.7576,1,0.8182,0.4546,0.5758,0.394,0.5152,0.8182,0.8788,0.697,0.3334,0.2728,0.2122,-0.3334,-0.3334,0.0304,0.091,-0.3,0.4334,0.5,0.4,0.4666,0.1666,0.2,0.0334,0.1,0.0334,0.1,0.1,0.1666,0.2,0.3,0.4,0.4,0.8,0.8,1,1,0.8666,1,0.8334,0.8334,0.5334,0.5,0.3334,0.5334,0.4666,0.6,0.6334,-0.4286,0.4082,0.449,0.204,0.3062,-0.1428,-0.0204,-0.2244,-0.1428,-0.3062,-0.1632,-0.2654,-0.0204,-0.0612,-0.1224,-0.0816,0.1428,0.204,0.3266,0.449,0.7346,1,0.8776,0.8776,0.8164,0.898,0.898,0.8776,0.9388,0.6734,0.796,0.6122,-1,-1,-1,-1,-1,-1,-1,-1,-0.9524,-0.9628,-0.8616,0.7458,0.595,0.378,0.25,0.1942,0.091,0.0476,-0.1096,-0.3286,-0.4028,-0.4648,-0.69,-0.8884,-0.9608,-0.9462,-0.9484,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9684,-0.9684,-0.9256,0.4914,0.8618,0.6784,0.2134,-0.0294,-0.2056,-0.3904,-0.5042,-0.677,-0.7578,-0.7836,-0.8496,-0.9284,-0.9456,-0.947,-0.8976,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.9468,-0.8834,-0.378,-0.194,-0.2838,-0.291,-0.4692,-0.54,-0.6928,-0.6928,-0.8764,-0.9528,-0.971,-0.92,-0.6934,-0.5734,-0.5534,-0.2834,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6858,-0.9428,1,1,-0.4286,-0.6,-0.6286,-0.8572,-0.8,-0.8286,-0.8572,-0.6,-0.8286,-0.8572,-0.8,-0.7428,-0.9428,-0.6572,-0.4858,-1,-1,-1,-1,-1,-1,0.3906,0.4348,0.4516,0.49,0.504,0.5216,0.5154,0.48,0.3584,0.0164,0.421,0.4968,0.5364,0.6118,0.6516,0.7114,0.7436,0.8164,0.9232,0.854,-0.76,0.2824,-0.9678,-0.4728,0.3954,0.813,0.9978,1,0.028,0.1962,0.3832,0.4766,0.3832,0.8878,0.9252,0.8318,1,0.8504,0.5328,0.7384,0.7196,0.8878,0.5514,0.9252,0.5328,0.6262,0.3644,0.7758,0.6636,0.9066,0.6448,0.8318,0.6262,0.2898,0.0468,0.6262,0.6822,0.0842,0.0842,-0.1588,0.2482,0.3684,0.2632,0.4586,0.5038,0.8796,1,0.7744,0.8496,0.8196,0.7594,0.985,0.8196,0.7744,0.609,0.8646,1,0.6542,0.5188,0.3082,0.7142,0.2782,0.6542,0.6542,0.2482,0.579,0.609,0.7744,0.4136,0.4586,0.3984,-0.203,0.2482,0.5488,0.3082,0.7744,0.4736,0.7894,0.624,1,0.8796,0.3384,0.639,0.8948,0.639,0.8646,0.7444,0.8496,0.9398,0.639,0.639,0.6842,0.5488,0.624,0.6542,0.8646,0.7744,0.579,0.5488,0.7444,0.4286,0.4136,0.3234,0.203,-0.99,1,-1,-1,-1,-1,-0.6,-1,-1,-0.7142,-0.3878,-0.3266,-0.3674,-0.4694,-0.2244,-0.1428,-0.3062,0.1632,0.1632,0.9796,1,0.9592,0.796,-0.102,0.0612,-0.0612,0.4898,0.4898,-0.1836,0.6734,0.8164,0.9184,0.9388,0.8368,0.6122,0.1632,0.449,-0.0204,-0.0408,0,-0.653,'2'
-0.8604,0.5194,0.7674,0.5156,0.407,0.407,-0.155,-0.0542,-0.2404,-0.2094,-0.1744,-0.1666,0.0038,-0.1512,0.2132,0.1318,0.4534,0.6434,0.6938,0.9652,0.9652,0.752,0.8604,0.8294,1,0.9884,0.4224,0.438,0.2946,0.4186,0.3294,0.3294,-0.977,0.2224,0.383,0.1478,0.3114,0.2798,-0.208,-0.0588,-0.3372,-0.2424,-0.274,-0.2482,-0.0962,-0.3458,0.0444,0.0244,0.099,0.277,0.1248,0.7474,0.759,0.581,0.7734,0.5696,0.9684,1,0.4376,0.6414,0.4892,0.5008,0.538,0.3888,-0.9928,0.3982,0.5712,0.1352,0.463,0.3406,-0.11,-0.081,-0.5604,-0.427,-0.6252,-0.2,-0.2252,-0.4126,-0.254,-0.3442,0.0162,-0.0594,0.2036,0.3442,0.6216,1,0.8918,0.7334,0.8162,0.7226,0.7406,0.7226,0.6144,0.6396,0.427,0.4198,-0.5572,0.5046,0.5722,0.441,0.5384,-0.137,-0.167,-0.5122,-0.5084,-0.561,-0.7074,-0.591,-0.5422,-0.5234,-0.4108,-0.456,-0.3284,-0.0844,0.092,0.3846,0.3958,0.6136,0.9812,1,0.7298,0.6698,0.7786,0.7936,0.7224,0.6136,0.471,0.4784,-0.1386,0.5882,0.5168,0.8614,0.5756,-0.0966,-0.3362,-0.2564,-0.521,-0.71,-0.7058,-0.4454,-0.5084,-0.4076,-0.3782,-0.4244,-0.4076,-0.2394,-0.0672,0.2016,0.5588,0.8488,0.958,0.9958,0.916,1,0.9412,0.9076,0.9328,0.9454,0.6638,0.5252,-0.2646,0.2122,0.7576,0.8102,-0.006,-0.2646,-0.5556,-0.503,-0.5474,-0.806,-0.8788,-0.5878,-0.5718,-0.6606,-0.6646,-0.5718,-0.5596,-0.4506,-0.1354,0.1434,0.2606,0.6202,1,0.996,0.6606,0.5314,0.5152,0.7898,0.7414,0.4748,0.3898,0.2728,-0.2868,0.3168,0.7356,0.7158,-0.1422,-0.4514,-0.586,-0.5162,-0.8952,-0.7108,-0.8254,-0.9052,-0.3916,-0.2618,-0.6608,-0.4862,-0.5012,-0.4064,-0.4164,-0.1522,0.0474,0.6408,1,0.8604,0.5112,0.3566,0.4812,0.6508,0.4564,0.182,0.0224,0.0524,-0.0476,0.7142,1,0.8096,0.3334,0.238,0.1428,0.0952,0.1428,-0.0476,-0.0952,0,0.381,0.4286,0.1904,-0.1428,0.4286,0.5714,0.762,0.8572,0.8572,0.7142,0.7142,0.762,0.6666,0.619,0.4762,0.0952,0.5238,0.4762,0.0952,-0.0476,-0.8974,0.641,1,0.8462,0.4872,0.4872,-0.2308,0.0256,-0.1282,-0.282,-0.1794,-0.6924,-0.1794,-0.282,0.0256,0.2308,0.0256,0.6924,0.7948,0.5898,0.6924,0.4358,0.3846,0.8462,0.6924,0.5384,0.4358,0.1794,0.1282,-0.2308,0.0256,-0.0256,-1,0.2708,0.4376,0.1458,0.3542,0.3124,-0.2084,-0.1042,-0.5,-0.4376,-0.4376,-0.2708,-0.1666,-0.4792,-0.0624,-0.125,0,0.125,-0.0416,0.5834,0.5624,0.75,0.9166,0.6458,0.9792,1,0.5834,0.75,0.5624,0.6042,0.5834,0.5,-0.9592,-0.964,-0.9576,-0.9654,-0.964,-0.9592,-0.9654,-0.9592,-0.9546,-0.9466,-0.8542,0.5654,0.2032,0.051,-0.04,-0.178,-0.2752,-0.2768,-0.2346,-0.2612,-0.3444,-0.556,-0.8448,-0.945,-0.964,-0.9686,-0.967,-1,-1,-1,-1,-1,-1,-0.8884,-0.8276,-0.7508,-0.7,-0.5846,-0.6092,-0.5946,-0.6146,-0.5208,-0.6654,-0.7408,0.0862,0.897,0.463,0.0492,-0.2008,-0.3324,-0.35,-0.3538,-0.3716,-0.5438,-0.6938,-0.8962,-0.9376,-0.9392,-0.94,-0.9446,-1,-1,-1,-1,-1,-1,0.1866,0.9832,1,1,1,1,1,1,1,1,0.7032,-0.4526,-0.175,-0.3326,-0.4126,-0.6512,-0.6246,-0.5224,-0.5556,-0.7046,-0.9156,-0.8468,-0.92,-0.6868,-0.56,-0.7534,-0.7068,-1,-1,-1,-1,-1,-1,-0.2572,-0.2572,-0.8286,-0.9142,-0.9428,-0.9714,-1,-0.9714,-0.9142,-0.4,1,1,1,-0.6858,-0.3714,-0.5428,-0.6858,-0.8858,-1,-0.7142,-0.6286,0.6858,-0.1428,-0.8,-0.9142,-0.9428,-0.0858,-1,-1,-1,-1,-1,-1,0.3398,0.3748,0.403,0.4484,0.4878,0.5406,0.578,0.6026,0.5554,0.24,0.3726,0.4014,0.4332,0.4462,0.4856,0.5516,0.6188,0.7146,0.8024,0.8686,-0.8666,0,-0.7376,-0.5838,0.163,0.397,0.9116,0.3,-0.6612,-0.5978,-0.438,-0.011,-0.1268,-0.135,-0.044,0.2012,0.1736,0.146,0.281,0.3112,0.2866,0.3224,0.427,0.4904,0.5648,0.5042,0.5042,0.4932,0.551,0.686,0.7272,0.854,0.8512,1,0.9532,0.752,0.741,0.8402,0.9696,0.5206,-0.7814,-0.7702,-0.6264,-0.5594,-0.4526,-0.4302,-0.3424,-0.2944,-0.2866,-0.1972,-0.1796,-0.1812,-0.0408,0.0184,-0.0248,0.036,0.1014,0.0982,0.1396,0.2434,0.3584,0.3774,0.403,0.4956,0.5946,0.7702,0.9554,1,0.8564,0.9712,0.9522,0.5434,-0.8706,-0.729,-0.6774,-0.5272,-0.5428,-0.3874,-0.3512,-0.2424,-0.101,-0.1026,-0.2338,-0.144,0.0458,0.0372,-0.013,0.1354,0.1476,0.12,0.1716,0.3012,0.4616,0.4408,0.3288,0.4616,0.465,0.7188,0.9,1,0.836,0.7826,0.8516,0.5496,-0.9416,-1,1,-1,-1,-1,-0.8,1,-1,-0.4068,-0.3898,-0.2372,-0.1356,-0.017,-0.0848,-0.1016,0.1356,0.2542,0.2372,0.1694,1,0.661,0.8306,0.4406,0.2542,0.0508,0.2542,0.678,0.305,0.1526,0,0.0678,0.0508,0.1016,0.0508,-0.017,0.1694,0.0508,-0.1356,-0.1356,-0.7288,'3'
-0.7148,0.5,0.657,0.2628,0.4166,0.282,-0.0128,0.016,-0.3462,-0.2052,-0.2084,-0.0096,-0.1282,0.0288,-0.0096,0.1282,0.2436,0.5706,0.8076,0.7436,0.9038,0.9038,0.8654,0.9294,0.7852,1,0.8878,0.4358,0.4968,0.3302,0.4038,0.3366,-0.6242,0.4032,0.4864,0.251,0.4176,0.1134,0.013,-0.1276,-0.145,-0.1764,-0.1794,-0.1104,-0.2282,-0.0388,-0.2682,0.0072,-0.1076,0.4032,0.3946,0.7848,0.9168,0.8594,0.9512,0.7906,1,0.9024,0.8794,0.9368,0.647,0.647,0.5236,0.5438,-0.3814,0.5286,0.5582,0.5778,0.5942,-0.0736,-0.0376,-0.1914,-0.126,-0.5156,-0.4402,-0.4664,-0.2798,-0.3224,-0.2996,-0.2896,-0.0344,0.054,0.3356,0.4828,0.7938,0.9968,1,0.9934,0.7152,0.941,0.9084,0.8724,0.748,0.6268,0.6432,0.6006,-0.1438,0.4966,0.459,0.7364,0.4932,-0.0754,-0.1506,-0.1096,-0.3938,-0.6198,-0.6336,-0.4316,-0.5,-0.4828,-0.4452,-0.4486,-0.1438,-0.0582,0.0958,0.2774,0.6198,0.8938,1,0.9384,0.726,0.8116,0.8494,0.9144,0.8254,0.7466,0.7124,0.5958,-0.154,0.2826,0.9026,0.9454,-0.076,-0.306,-0.2982,-0.3958,-0.5204,-0.6492,-0.6842,-0.5478,-0.4698,-0.462,-0.4698,-0.4814,-0.345,-0.2124,-0.1306,0.189,0.653,0.848,1,0.9766,0.8012,0.844,0.7466,0.9688,0.9688,0.7738,0.6336,0.5282,-0.3472,0.351,0.7434,0.6906,-0.034,-0.6378,-0.6038,-0.6416,-0.8,-0.7396,-0.7056,-0.615,-0.5622,-0.6188,-0.766,-0.5396,-0.3584,-0.4076,-0.4038,-0.1584,0.1886,0.7132,1,0.9472,0.6188,0.449,0.551,0.7208,0.6566,0.5246,0.317,0.2302,-0.4718,0.5124,0.7742,0.6478,-0.0158,-0.5846,-0.6252,-0.6524,-0.8916,-0.9188,-0.9232,-0.7652,-0.7472,-0.851,-0.72,-0.4628,-0.5124,-0.4944,-0.2506,-0.2416,0.2054,0.5802,0.9774,1,0.544,0.4854,0.5712,0.8194,0.6976,0.5756,0.2958,0.2054,-0.4666,0.6,0.8666,0.5334,0,0,0,-0.1334,-0.2,-0.1334,0.1334,-0.1334,-0.2,0,0.0666,0,0.6,1,0.9334,0.8,0.8666,0.3334,0.8666,0.8,0.6,0.6,0.7334,-0.1334,0.2666,0.2,-0.3334,0.4666,-0.5454,0.7728,1,0.8182,0.591,0.5,0.0454,0.2272,-0.1364,-0.3182,-0.4546,0.091,0.1364,-0.2728,-0.0454,0.091,0.4546,0.591,0.7272,0.6818,0.8182,0.8636,0.8636,0.8636,0.8182,0.909,0.8182,0.1818,0.3182,0.3182,0.3182,0.409,-0.013,0.4026,0.974,1,0.1168,0.013,-0.013,-0.065,-0.2728,-0.4026,-0.4546,-0.4286,-0.2468,-0.1168,-0.1168,-0.3506,-0.1948,-0.039,-0.039,0.2468,0.8182,0.948,0.6884,0.974,1,0.922,0.8702,0.8442,1,0.922,0.4286,0.7142,-0.9162,-0.9452,-0.959,-0.9572,-0.9676,-0.9658,-0.9556,-0.9538,-0.935,-0.882,-0.8564,0.5658,0.3368,0.188,0.1042,0.0582,0.0958,-0.0068,-0.0786,-0.0718,-0.3076,-0.4564,-0.4478,-0.5606,-0.7196,-0.841,-0.9384,-0.9624,-0.971,-0.9658,-1,-1,-1,-0.88,-0.8402,-0.7442,-0.6298,-0.6022,-0.5844,-0.4998,-0.5006,-0.6504,-0.7214,-0.801,0.1254,0.897,0.477,0.1652,-0.0992,-0.1162,-0.21,-0.3996,-0.4068,-0.5424,-0.676,-0.6554,-0.7272,-0.833,-0.8722,-0.9168,-0.9056,-0.8984,-0.9154,-1,-1,-1,0.3332,0.56,1,1,1,1,1,1,1,1,0.5266,-0.4446,-0.1178,-0.249,-0.4778,-0.466,-0.404,-0.586,-0.814,-0.886,-0.812,-0.77,-0.75,-0.5068,-0.8534,-0.6334,-0.4868,-0.32,-0.42,-0.36,-1,-1,-1,1,-0.0286,-0.6858,-0.8572,-0.9428,-0.9428,-0.9428,-0.9142,-0.8,-0.3142,1,1,1,-0.3428,-0.6858,-0.8,-0.8286,-0.7714,-0.3714,-0.9142,-0.9142,-0.8858,-0.9142,-0.6286,-0.5428,-0.7714,-0.7714,-0.9428,-0.9142,-0.7714,-1,-1,-1,0.4896,0.5048,0.5326,0.5528,0.5606,0.5786,0.5806,0.5474,0.4566,0.1258,0.6234,0.6294,0.6728,0.7104,0.7268,0.7686,0.8046,0.8498,0.9042,0.915,-0.7334,0.1294,-0.8486,-0.698,0.0352,0.4864,0.8032,0.5166,-0.828,-0.6996,-0.638,-0.525,-0.4686,-0.3068,-0.1912,-0.1194,-0.0166,-0.1142,0.032,0.1708,0.045,0.145,0.1964,0.2298,0.3658,0.4094,0.412,0.4736,0.543,0.602,0.7766,0.7612,0.828,0.8716,0.8974,0.923,0.864,1,0.9718,0.6894,-0.7554,-0.7816,-0.7484,-0.5214,-0.4672,-0.4446,-0.2944,-0.2296,-0.2366,-8e-04,-0.0236,0.0568,0.0848,0.1266,0.1406,0.186,0.1912,0.2228,0.2594,0.2752,0.3922,0.4602,0.4568,0.6506,0.6856,0.773,0.951,0.9598,0.9004,0.9372,1,0.8446,-0.9406,-0.654,-0.652,-0.4576,-0.439,-0.4678,-0.3818,-0.3736,-0.0992,-0.1014,-0.1034,-0.1136,0.042,-0.0072,0.0276,0.1136,0.001,0.2282,0.3368,0.2548,0.3388,0.435,0.3982,0.4166,0.6458,0.4718,0.822,1,0.867,0.6786,0.7072,0.5598,-0.8892,-1,1,-1,-1,-1,0.2,1,1,-0.5652,-0.5304,-0.1826,-0.2,-0.287,-0.113,-0.0434,-0.2522,-0.0086,0.4608,1,0.8434,0.8434,0.3566,0.287,0.287,0.1304,0.3914,0.513,-0.1478,0.0956,0.0608,0.2174,0.0782,-0.2696,-0.026,0.026,-0.0782,-0.2174,-0.113,-0.2522,-0.3566,'3'
-0.4368,0.5144,0.5748,0.3908,0.4282,-0.0344,0.0546,-0.3592,-0.1752,-0.4454,-0.2874,-0.477,-0.1466,-0.2442,-0.0776,-0.1206,0.0202,0,0.4022,0.4598,0.9252,1,0.5632,0.6868,0.6666,0.8074,0.6982,0.2788,0.2528,0.2874,0.1954,0.25,-0.3536,0.557,0.6038,0.4994,0.5598,0.0068,0.1086,-0.216,-0.0618,-0.4306,-0.249,-0.4058,-0.0812,-0.2324,-0.0454,-0.1526,0.0398,-0.0096,0.3756,0.3838,0.8734,0.9504,0.8102,0.9532,0.6038,0.7854,0.7112,1,0.835,0.568,0.4828,0.469,-0.1692,0.7262,0.7416,0.6738,0.6524,0.08,0.0554,-0.0954,-0.1016,-0.28,-0.2616,-0.2216,-0.1816,-0.1816,-0.12,-0.2708,-0.163,0.0154,0.1662,0.3262,0.5508,0.7324,1,0.9692,0.8246,0.7384,0.917,0.9476,0.7816,0.7538,0.5262,0.557,-0.1334,0.5072,0.429,0.6318,0.4318,-0.1246,-0.2608,-0.1536,-0.4696,-0.4608,-0.4928,-0.4928,-0.5972,-0.5304,-0.4058,-0.374,-0.2898,-0.2376,-0.0144,0.1362,0.3768,0.6608,1,0.9972,0.6174,0.5826,0.7856,0.6754,0.716,0.6956,0.571,0.4028,-0.1428,0.3694,0.6124,0.7308,0.0082,-0.4548,-0.3498,-0.5666,-0.6912,-0.8226,-0.7766,-0.6848,-0.7176,-0.6848,-0.491,-0.5042,-0.4812,-0.2874,-0.1034,-0.0608,0.2152,0.78,1,0.9474,0.6124,0.5666,0.734,0.7438,0.6256,0.6092,0.6486,0.4384,-0.1808,0.2768,0.7306,0.7232,-0.3026,-0.5202,-0.6864,-0.6494,-0.9152,-0.9152,-0.9926,-0.6532,-0.631,-0.642,-0.8008,-0.6642,-0.6606,-0.465,-0.3948,-0.2694,-0.0258,0.3874,0.9484,1,0.6126,0.5092,0.5794,0.7528,0.727,0.5794,0.4132,0.2362,-0.2172,0.3464,0.3972,0.4598,-0.2798,-0.589,-0.6908,-0.8122,-0.777,-0.6008,-0.9608,-0.9022,-0.4168,-0.4638,-0.7378,-0.7808,-0.5068,-0.5342,-0.55,-0.4168,-0.139,0.2172,0.8356,1,0.6674,0.366,0.4912,0.5852,0.4912,0.3738,0.3934,0.182,-0.4286,0.5714,0.7142,0.5238,0.238,0.0476,-0.0952,-0.2858,-0.2858,-0.381,-0.2858,-0.5714,-0.381,-0.0952,-0.0476,0.1428,0.1428,0.1428,0.238,0.238,0.9524,0.9048,0.5714,0.6666,1,0.9524,0.4762,0.0476,0.0952,0.0952,0.1428,0,-0.1636,0.5272,0.5272,0.491,0.491,0.1636,0.2,-0.1636,-0.0182,-0.1636,-0.0546,-0.2,0.091,-0.0546,0.091,-0.0546,0.2,0.1272,0.6,0.5272,1,1,0.709,0.7818,0.9636,1,0.6364,0.6728,0.3818,0.3454,0.3818,0.5636,-0.1892,0.2162,0.6216,0.6486,-0.3514,-0.5136,-0.4864,-0.5136,-0.5676,-0.5406,-0.973,-0.4864,-0.3244,-0.4594,-0.5946,-0.6486,-0.4864,-0.4864,-0.1892,-0.054,0.081,0.4864,0.7838,1,0.7568,0.4324,0.2432,0.5136,0.5946,0.5136,0.4594,0.4864,-1,-1,-1,-1,-1,-1,-1,-0.9594,-0.945,-0.8614,-0.5556,0.9044,0.9212,0.7658,0.663,0.6726,0.5818,0.5198,0.386,-0.0012,-0.3692,-0.5006,-0.5508,-0.73,-0.8518,-0.9498,-0.9378,-0.9284,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9434,-0.9386,-0.1814,0.138,0.666,0.7746,0.6202,0.5576,0.4744,0.5456,0.4238,0.179,-0.261,-0.4852,-0.6142,-0.654,-0.7312,-0.8048,-0.8096,-0.8578,-0.8746,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.9668,-0.64,0.5032,-0.542,-0.548,-0.52,-0.611,-0.6492,-0.4474,-0.4782,-0.602,-0.7582,-0.7764,-0.9292,-0.84,-0.4268,-0.16,-0.1934,-0.3734,-0.4068,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7142,1,1,1,1,-0.8286,-0.9714,-0.8858,-0.8858,-0.8572,-0.9428,-0.8286,-0.7428,-0.9714,-0.8286,-0.8858,-0.8572,-0.7428,-0.7714,-0.7714,-0.8858,-1,-1,-1,-1,-1,0.3884,0.3984,0.4082,0.4078,0.4188,0.4188,0.4118,0.395,0.3282,0.0178,0.7918,0.8316,0.8406,0.809,0.8546,0.8512,0.8784,0.9166,0.9366,0.9514,-0.7466,0.2706,0.0248,0.1128,0.5828,0.9614,0.7118,1,-0.6112,-0.375,-0.125,0.0834,0.3056,0.2084,0.2222,0.2222,0.25,0.5972,0.7084,0.6666,0.6388,0.7916,0.7916,0.4166,0.5278,0.4862,0.5972,0.8612,0.8194,0.7084,0.75,0.6388,1,0.9028,0.6666,0.8334,0.4862,0.3056,0.3056,-0.3612,-0.4736,-0.609,-0.4736,-0.579,-0.3984,-0.5338,-0.3384,-0.3984,-0.3234,0.4136,0.4286,0.3984,0.4136,0.203,0.3082,0.4286,0.3534,0.594,0.639,0.7894,0.4436,0.7294,1,0.6542,0.8346,0.7594,0.624,0.7744,0.6842,0.4736,0.3082,0.0978,-0.2924,0.0154,-0.2,-0.2616,-0.3846,-0.4154,-0.323,-0.2616,0.0462,0.4616,1,0.677,0.8924,0.4154,0.323,0.5538,0.6308,0.723,0.4462,0.5692,0.6616,0.7384,0.8462,0.7692,0.8462,0.723,0.723,0.3538,0.5076,0.477,0.3384,-0.2,1,-1,-1,1,-1,-1,0,-0.7,-1,-0.4436,-0.3534,-0.2482,-0.2782,-0.188,-0.0828,-0.0676,-0.0376,0.0978,0.0676,0.579,1,0.5038,0.6692,0.7594,0.1128,-0.0526,0.639,0.624,0.233,0.2932,0.218,0.173,0.1578,-0.203,0.0978,0.1578,-0.218,-0.3834,-0.2932,-0.2932,-0.7142,'4'
-0.205,0.7322,0.749,0.6792,0.668,0.127,0.1352,-0.191,-0.1882,-0.2998,-0.2998,-0.152,-0.1102,-0.085,-0.0488,0.0516,0.152,0.3724,0.47,0.827,0.9302,0.9554,0.9972,0.8326,0.9108,0.8744,1,0.7992,0.7462,0.576,0.629,0.4728,-0.2736,0.481,0.494,0.3644,0.386,-0.014,0.0248,-0.213,-0.1482,-0.453,-0.3536,-0.3448,-0.213,-0.2216,-0.0616,-0.2282,-0.0206,0.0876,0.3622,0.4032,0.7514,0.641,0.9048,0.8184,0.8336,0.7902,1,0.9848,0.92,0.9394,0.814,0.8594,-0.192,0.5486,0.5312,0.4614,0.389,-0.1496,-0.2518,-0.222,-0.3516,-0.4764,-0.586,-0.369,-0.414,-0.237,-0.3216,-0.3516,-0.227,-0.1222,0.0624,0.3342,0.5586,0.8504,1,0.8902,0.6784,0.7306,0.8504,0.8928,0.9626,0.8828,0.9352,0.798,-0.1276,0.4608,0.4174,0.6086,0.1624,-0.3362,-0.3218,-0.4522,-0.7014,-0.7624,-0.7072,-0.745,-0.6318,-0.5768,-0.513,-0.5566,-0.6754,-0.2928,-0.0928,0.142,0.3304,0.7942,0.9856,1,0.6464,0.6348,0.7536,0.8434,0.858,0.8434,0.7392,0.6812,-0.241,0.2024,0.6042,0.613,-0.3988,-0.6072,-0.6846,-0.7232,-0.7708,-0.7678,-0.8542,-0.6994,-0.6636,-0.7114,-0.5982,-0.6876,-0.619,-0.5238,-0.3364,-0.1072,0.0834,0.5804,1,0.9166,0.5268,0.369,0.4434,0.6548,0.619,0.503,0.4852,0.375,-0.4204,0.2964,0.7688,0.531,-0.1424,-0.6952,-0.8158,-0.7052,-0.9766,-0.7688,-0.7086,-0.7756,-0.6214,-0.6382,-0.6148,-0.6282,-0.655,-0.6616,-0.6684,-0.2964,0.0252,0.3936,1,0.9096,0.3634,0.2094,0.3936,0.4406,0.5276,0.3602,0.2428,0.119,-0.4624,0.6252,0.5804,-0.1608,-0.4216,-0.6578,-0.7352,-0.6374,-0.727,-0.6538,-0.5846,-0.6456,-0.56,-0.6904,-0.4704,-0.6416,-0.5152,-0.56,-0.5846,-0.4582,-0.116,0.5764,1,0.9512,0.4378,0.5274,0.5968,0.6538,0.5886,0.5398,0.385,0.1854,0.2982,0.8948,0.965,0.7192,0.579,0.3334,0.2982,0.0526,0.3334,0.3334,0.0176,0.1578,0.1578,0.228,0.4036,0.4386,0.579,0.6492,0.6492,0.7192,0.9298,1,0.7894,0.7894,0.8948,0.614,0.5088,0.4036,0.228,0.2982,0.4386,0.4386,-0.1112,0.6,0.5556,0.6,0.5556,0.1112,0.1112,0.0222,-0.1112,-0.1556,-0.1556,-0.0222,-0.1556,-0.0222,0.0666,0.0666,0.2444,0.5556,0.6,0.5556,0.6888,0.9556,0.9556,1,0.9556,0.8222,0.8666,0.8222,0.6888,0.4222,0.4222,0.7334,-0.2196,0.1708,0.5122,0.5122,-0.1708,-0.3902,-0.561,-0.6342,-0.7804,-0.561,-0.561,-0.317,-0.244,-0.5122,-0.5854,-0.4878,-0.4146,-0.4634,-0.2926,0.0244,0.0244,0.5854,1,0.9024,0.5366,0.2682,0.5854,0.683,0.5122,0.3414,0.439,0.3658,-1,-1,-1,-1,-1,-1,-1,-0.9462,-0.9414,-0.8572,-0.466,0.8126,0.8196,0.7002,0.6112,0.555,0.4262,0.2576,-0.0422,-0.1288,-0.3606,-0.5036,-0.6768,-0.8196,-0.8922,-0.9298,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9562,-0.9542,-0.4242,-0.0298,0.21,0.7526,0.9308,0.664,0.3472,0.2168,0.0658,-0.3112,-0.468,-0.6132,-0.7184,-0.7924,-0.8198,-0.8578,-0.8548,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.926,-0.9134,-0.8968,0.25,-0.5234,-0.4268,-0.285,-0.365,-0.5368,-0.4334,-0.3534,-0.705,-0.89,-0.77,-0.914,-0.7534,-0.46,-0.3368,-0.2434,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5428,0.3714,1,1,1,-0.6572,-1,-0.8286,-0.9142,-0.8858,-0.6858,-0.5714,-0.9714,-0.7714,-0.9714,-0.9428,-0.8,-0.7142,-0.6858,-1,-1,-1,-1,-1,-1,-1,0.2804,0.2746,0.2722,0.266,0.2854,0.301,0.2978,0.271,0.2012,-0.104,0.7872,0.7944,0.8264,0.8512,0.8926,0.9288,0.9396,0.9736,0.9874,0.9168,-0.68,0.447,-0.3424,-0.3472,0.1476,0.3814,0.3464,1,-0.4074,0.0926,0.0556,-0.2408,0.2408,0.2592,0.1112,0.0556,0.6482,1,1,0.8704,0.963,0.7592,0.7222,0.7038,0.7778,0.8334,0.7592,0.5186,0.3704,0.463,0.5926,0.7038,0.6482,0.6296,0.7962,0.8518,0.6482,0.6666,0.3704,-0.3704,-0.4328,0.015,-0.0896,-0.1344,-0.0598,-0.1492,-0.015,0,0.194,0.6716,0.7762,0.4478,0.8508,0.2986,0.2686,0.209,0.3134,0.4626,0.3582,0.7014,0.5672,0.6716,0.7762,0.5074,0.597,0.8508,0.8956,0.8508,0.8956,1,0.388,0.194,0,0.2648,0.2206,-0.0294,-0.0736,0,0.0736,0.0148,0.2648,0.3824,0.5882,0.6324,0.9118,0.8088,0.5294,0.5588,0.9264,0.9852,0.6764,0.603,0.853,1,0.6912,0.6764,0.7794,0.8088,0.5294,0.6176,0.397,0.3676,0.5148,0.0588,1,-1,-1,1,-1,-1,0.4,-0.7334,-1,-0.55,-0.3166,-0.1834,-0.2334,-0.1666,-0.2166,0,0.05,0.0834,0.6,0.4334,0.9334,1,0.6666,0.3334,0.2666,0.55,0.4334,0.2166,0.3166,0.25,-0.0334,-0.1834,-0.1166,-0.3666,0.2,0.3166,0.6166,-0.1,-0.2166,-0.2166,-0.4166,'4'
-0.6934,0.5172,0.6966,0.527,0.6476,0.3474,0.0898,-0.0342,-0.2104,-0.1582,-0.4356,-0.354,-0.5074,-0.204,-0.2138,-0.1354,-0.0898,0.1354,0.3018,0.3736,0.7846,0.7684,1,0.9086,0.6802,0.8662,0.8076,0.9544,0.814,0.9804,0.9348,0.5986,-0.735,0.5272,0.6832,0.2364,0.4754,0.3142,0.0572,0.0546,-0.3376,-0.1818,-0.4936,-0.0546,-0.1558,-0.0728,-0.013,-0.1324,0.0936,-0.0988,0.4104,0.3792,0.7272,0.8494,0.5688,0.9272,0.7948,0.8598,0.8858,0.7974,1,0.7974,0.9532,0.8858,-0.768,0.3492,0.503,0.1006,0.2048,0.0674,-0.0982,-0.0934,-0.5054,-0.3586,-0.5928,-0.1526,-0.226,-0.2426,-0.181,-0.2498,-0.0012,-0.1574,0.252,0.2378,0.4366,0.5858,0.5314,1,0.9218,0.7018,0.7776,0.664,0.9124,0.7372,0.8296,0.806,-0.4922,0.6434,0.746,0.1326,0.3152,-0.0842,-0.03,-0.2154,-0.3524,-0.4266,-0.4266,-0.3638,-0.4322,-0.3096,-0.4408,-0.2952,-0.3152,0.05,0.0356,0.0784,0.3096,0.5036,0.9514,1,0.8032,0.5436,0.6092,0.7946,0.8232,0.866,0.7232,0.5064,-0.0072,1,0.9678,0.6536,0.5358,0.0286,-0.1392,-0.4142,-0.4392,-0.6392,-0.775,-0.6214,-0.5142,-0.575,-0.5608,-0.5858,-0.3464,-0.3358,-0.2464,-0.3108,0.0536,0.225,0.5964,0.8572,0.825,0.7142,0.5428,0.6464,0.7714,0.7358,0.7572,0.5786,0.2452,1,0.7658,0.7874,0.0672,-0.2972,-0.5358,-0.5748,-0.7224,-0.5792,-0.5878,-0.6268,-0.462,-0.692,-0.6356,-0.64,-0.6138,-0.3666,-0.384,-0.3318,0.1236,0.102,0.6182,0.8004,0.7788,0.5574,0.5748,0.8438,0.8438,0.6832,0.6138,0.41,0.014,0.944,0.6496,0.8084,0.0934,-0.57,-0.3692,-0.3644,-0.6682,-0.743,-0.93,-0.7944,-0.4532,-0.5842,-0.6028,-0.743,-0.729,-0.472,-0.514,-0.271,-0.0982,0.3318,0.687,1,0.7758,0.687,0.556,0.6356,0.6356,0.4346,0.1962,-0.0608,-0.76,-0.16,0.32,0.44,0.4,0.2,-0.16,-0.24,-0.6,-0.24,-0.24,-0.44,-0.36,-0.36,-0.12,-0.08,-0.04,-0.08,-0.08,0.32,0.6,0.72,0.72,0.72,0.76,0.8,0.68,0.48,0.88,1,0.96,0.84,-0.6444,0.4222,0.6,0.3778,0.5112,0.1556,-0.0666,-0.1556,-0.2444,-0.2444,-0.2888,-0.2888,-0.4222,-0.4666,-0.3334,-0.1112,0.1556,0.2,0.3778,0.3778,0.6444,0.6888,0.9112,0.9112,0.6888,0.6444,0.7778,0.8666,0.8666,1,0.7778,0.6,-0.579,0.3334,0.4562,0.0526,0.1578,0,-0.0878,-0.0878,-0.4562,-0.2982,-0.386,-0.1228,-0.2456,-0.2106,-0.1754,-0.2808,-0.1404,-0.1228,0.2632,0.1754,0.3158,0.4036,0.7368,1,0.8948,0.4736,0.4912,0.7368,0.8596,0.5964,0.6492,0.5088,-1,-1,-1,-1,-1,-1,-1,-0.953,-0.9552,-0.9486,-0.9574,0.5302,0.8344,0.8994,0.8636,0.8076,0.6332,0.2886,0.0202,-0.2214,-0.3154,-0.4854,-0.557,-0.6936,-0.8948,-0.9306,-0.9374,-0.9328,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9656,-0.9692,-0.8298,-0.7368,-0.0356,0.0394,0.6858,0.7712,0.6632,-0.0402,-0.3394,-0.5426,-0.6572,-0.7136,-0.7728,-0.775,-0.838,-0.8906,-0.8912,-0.88,-0.91,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.9734,-0.8134,-0.0534,-0.2782,-0.54,-0.1238,0.0654,-0.1364,-0.4856,-0.642,-0.8238,-0.8528,-0.791,-0.9168,-0.8534,-0.55,-0.2668,-0.08,-0.4234,-0.2734,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5142,-0.4572,1,1,1,-0.4858,-0.5142,-0.6572,-0.4,-0.4286,-0.5714,-0.7142,-0.9142,-0.9142,-0.9142,-0.9142,-0.7428,-0.7428,-0.9142,-0.6572,-0.7142,-1,-1,-1,-1,-1,0.5934,0.602,0.6008,0.598,0.5954,0.599,0.6012,0.5974,0.5558,0.161,0.802,0.8028,0.7642,0.7218,0.7404,0.739,0.7838,0.8246,0.8718,0.7826,-0.9066,0.3176,-0.7892,-0.526,0.0972,0.0686,-0.0828,0.025,-0.3082,-0.173,-0.233,-0.1578,-0.218,-0.1578,0.0226,-0.0676,0.1428,0.0978,0.579,0.624,0.4286,0.5338,0.609,0.594,0.639,0.8646,0.985,1,0.9398,0.7444,0.4286,0.3234,0.233,-0.1428,-0.1428,-0.0828,-0.0226,-0.188,-0.2782,-0.3984,-0.5606,-0.3636,-0.3334,-0.3182,-0.4394,-0.4546,-0.1666,-0.1666,-0.1364,-0.091,0.8182,0.8334,0.2122,0.3636,0.4848,0.394,0.4242,0.6212,0.803,1,0.909,0.7272,0.106,0.2576,0.197,-0.3636,-0.2424,-0.3334,-0.2424,-0.2424,-0.4242,-0.4848,-0.4,-0.1,-0.0666,-0.0834,-0.1834,-0.1334,-0.05,-0.3166,0.05,0.2166,0.4666,0.5166,0.1666,0.2166,0.4166,0.3334,0.4334,0.5666,0.75,1,0.5834,0.5,0.4,0.1166,0.1166,-0.0834,-0.1666,-0.1666,-0.35,-0.15,-0.1334,-0.2666,-0.0702,-1,-1,1,-1,-1,0.4,-0.7334,-1,-0.256,-0.0488,-0.0976,-0.0244,0.0976,0.0732,0.1464,0.2318,0.3536,0.6586,0.744,0.8292,1,0.7926,0.683,0.4756,0.4634,0.683,0.756,0.317,0.1342,0.1098,0.5244,0.6342,0.2196,0.3048,0.2804,0.244,0.1708,0.2318,0.0366,-0.244,'5'
-0.5,0.4948,0.5678,0.3802,0.5,0.164,0.0338,-0.1224,-0.3152,-0.4532,-0.336,-0.3386,-0.4896,-0.388,-0.4402,-0.336,-0.3542,-0.1224,-0.0572,0.3646,0.4296,0.9636,1,0.7474,0.698,0.6302,0.8672,0.776,0.8438,0.7968,0.6198,0.5938,-0.0934,0.9434,1,0.728,0.796,0.0482,0.1586,-0.221,-0.0396,-0.456,-0.3258,-0.4958,-0.4646,-0.66,-0.4788,-0.5326,-0.4164,-0.4306,-0.085,-0.0396,0.5808,0.7138,0.6628,0.6458,0.5722,0.7678,0.8386,0.9746,0.8328,0.8526,0.8016,0.609,0.0546,1,0.994,0.8818,0.8346,0.161,0.1196,-0.0694,-0.1078,-0.5008,-0.4978,-0.5126,-0.4742,-0.5008,-0.5126,-0.3678,-0.2762,-0.0488,-0.031,0.356,0.4122,0.7224,0.7814,0.7194,0.5332,0.616,0.7282,0.8582,0.7282,0.6692,0.3648,0.3914,0.0814,0.8374,0.7224,0.8596,0.5758,-0.1004,-0.2792,-0.1866,-0.5822,-0.5374,-0.6396,-0.6682,-0.6012,-0.4832,-0.4578,-0.5152,-0.413,-0.2186,0.0208,0.1516,0.3716,0.665,1,0.9202,0.6428,0.6586,0.6618,0.6268,0.6938,0.5854,0.5886,0.3492,0.1648,0.7816,0.8888,1,-0.0192,-0.502,-0.7088,-0.7778,-0.7702,-0.9962,-0.8736,-0.6398,-0.6896,-0.6514,-0.5748,-0.7394,-0.7356,-0.3754,-0.2874,-0.2836,-0.0996,0.4482,0.9234,0.8084,0.3716,0.2568,0.5478,0.4942,0.4828,0.3104,0.387,0.134,0.1458,0.6408,1,0.964,-0.3414,-0.7564,-0.7764,-0.6566,-0.6526,-0.6646,-0.8762,-0.6408,-0.6248,-0.4372,-0.541,-0.7086,-0.7166,-0.3494,-0.3374,-0.6048,0.0578,0.6526,0.8762,0.9162,0.3932,0.6048,0.6248,0.7724,0.6806,0.465,0.3414,0.2654,-0.0044,0.572,0.5546,0.5764,-0.3974,-0.655,-0.6638,-0.786,-0.9564,-0.6812,-0.7816,-0.5196,-0.4104,-0.3056,-0.4498,-0.5066,-0.3538,-0.2794,-0.3494,-0.179,-0.0088,0.31,1,0.9826,0.7772,0.4366,0.607,0.8166,0.69,0.0436,0.0742,-0.0132,-0.322,0.1864,0.2882,0.2542,0.017,0.0508,0.017,-0.1186,-0.1864,-0.2882,-0.1186,-0.1186,-0.3898,0.017,0.1186,0.1186,0.017,0.356,0.5254,0.5932,0.5932,0.8644,1,1,0.8984,0.8306,0.8644,0.8984,0.8984,0.8644,0.8306,0.8984,-0.2698,0.4286,0.5238,0.4604,0.5556,0.3016,0.2064,0.1112,0.0158,-0.0158,-0.1428,-0.1112,-0.1746,-0.0158,-0.0794,0.0158,-0.0476,0.238,0.2698,0.6508,0.6508,0.9682,1,0.5874,0.6508,0.5238,0.8412,0.7778,0.8412,0.8412,0.5556,0.5874,0.1818,0.8182,0.697,0.8788,0.2728,-0.091,-0.2728,-0.4848,-0.5454,-0.394,-0.4546,-0.1516,-0.303,-0.1818,-0.4546,-0.697,-0.2728,-0.1212,0.2122,0.0606,0.4546,0.8182,1,0.6364,0.5758,0.2122,0.7272,0.697,0.7272,0.606,0.2728,0.3636,-1,-1,-1,-1,-1,-1,-1,-0.9586,-0.9532,-0.9604,-0.9388,0.5266,0.9838,0.8956,0.6292,0.433,0.2116,-0.0136,-0.1594,-0.298,-0.4942,-0.6526,-0.7732,-0.8236,-0.8866,-0.919,-0.9478,-0.955,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.967,-0.967,-0.7908,-0.5182,0.4846,0.4242,0.0562,-0.071,-0.1846,-0.3054,-0.4656,-0.587,-0.637,-0.7346,-0.814,-0.863,-0.8728,-0.9044,-0.894,-0.8728,-0.8786,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9424,-0.8734,-0.9,-0.0334,-0.17,-0.5034,-0.635,-0.7984,-0.7518,-0.695,-0.6818,-0.5734,-0.59,-0.6184,-0.6884,-0.6968,-0.5234,-0.5134,-0.2468,0.01,-0.3768,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7428,-0.3142,1,1,1,-0.6286,-0.8286,-0.8,-0.8286,-0.8286,-0.7428,-0.8858,-0.9428,-0.8858,-0.8572,-0.9142,-0.8572,-0.9142,-0.6572,-0.7714,-0.8,-1,-1,-1,-1,-1,0.6492,0.6334,0.6182,0.5808,0.5236,0.4738,0.4202,0.3542,0.2744,-0.1204,0.9126,0.9128,0.9372,0.924,0.9196,0.938,0.9924,0.9874,0.9532,0.8416,-0.7334,0.4352,-0.8054,-0.0568,1,0.1602,0.3834,0.1416,-0.5892,-0.3392,-0.3572,-0.4286,-0.4108,-0.2142,-0.1964,-0.25,-0.0178,0.2858,0.6608,0.6608,0.625,0.7142,0.7142,0.625,0.7322,0.9464,1,1,0.9286,0.6608,0.375,0.1964,-0.0358,-0.5178,-0.2142,-0.4108,-0.5,-0.5,-0.3392,-0.9286,-0.5572,-0.2,-0.2572,-0.2,-0.2142,-0.2858,-0.2714,-0.3286,-0.0858,-0.1572,1,0.9286,0.2572,0.5428,0.5,0.3286,0.3142,0.6286,0.9428,0.9286,0.7,0.3142,-0.0428,-0.1858,-0.1428,-0.3714,-0.3286,-0.3428,-0.3714,-0.3714,-0.2286,-0.5142,-0.4166,-0.1666,-0.2334,-0.2666,-0.0666,-0.25,-0.15,-0.05,-0.1166,-0.05,0.5166,0.6334,0.5,0.5334,0.5166,0.35,0.7,0.9166,0.9666,1,0.8834,0.5334,0.1334,0.0334,-0.2334,-0.25,-0.3,-0.3166,-0.3334,-0.1334,-0.3666,-0.5666,1,-1,-1,1,-1,-1,-0.4,-0.7334,-1,-0.7364,-0.4574,-0.1938,-0.2094,-0.3334,-0.0698,-0.0232,-0.1162,0.0698,0.1162,0.9844,1,0.8294,0.7984,0.4108,0.3178,0.2868,0.4418,0.69,0.2094,0.0698,0.0698,0.2248,0.0542,0.1162,0.1782,0.0388,0.0388,-0.2558,-0.3954,-0.7054,-0.659,'5'
-0.559,0.133,0.1406,0.4448,0.5362,0.9468,1,0.7642,0.673,0.4524,0.4904,0.4828,0.5514,0.521,0.6958,0.6882,0.9468,0.9696,0.8784,0.9012,0.7718,0.825,0.8632,0.9544,0.7414,0.7946,0.6198,0.5438,0.3308,0.498,0.384,0.4524,-0.5206,0.1536,0.176,0.3932,0.4082,0.97,1,0.6928,0.7228,0.4308,0.5132,0.4532,0.543,0.4832,0.5956,0.528,0.663,0.558,0.7602,0.6104,0.528,0.3932,0.7528,0.678,0.4606,0.3558,0.4756,0.4456,0.0936,0.0262,0.2284,0.2884,-0.4014,0.2764,0.2828,0.4736,0.4408,1,0.9934,0.954,0.9606,0.6382,0.6448,0.6316,0.6644,0.671,0.7172,0.7106,0.7434,0.6316,0.5986,0.6118,0.7172,0.4934,0.7368,0.7698,0.8882,0.7172,0.4606,0.4276,0.3422,0.125,0.25,0.2434,-0.3504,0.293,0.2802,0.4012,0.3694,0.8408,0.8026,1,0.9746,0.484,0.4714,0.395,0.3822,0.3566,0.3566,0.4268,0.4522,0.2738,0.3058,0.3122,0.3758,0.1274,0.4012,0.3822,0.344,0.2738,0.2994,0.0636,0.0064,-0.0446,-0.0446,0.0764,-0.3204,0.2686,0.2428,0.3268,0.3656,0.7346,0.6116,1,0.89,0.1392,0.1974,0.4498,0.314,0.4368,0.3398,0.4434,0.4564,0.3916,0.4174,0.5598,0.4174,0.4434,0.3462,0.6894,0.5858,0.5404,0.3528,0.1198,0.1198,0.2234,0.0486,0.2686,-0.205,0.4098,0.3278,0.3524,0.5656,0.7296,0.8606,1,0.5574,0.2704,0.4016,0.377,0.7704,0.6804,0.6886,0.664,0.705,0.5492,0.4344,0.3934,0.3606,0.5164,0.8114,0.9098,0.746,0.6558,0.6476,0.3032,0.2704,0.0902,0.0738,0.2786,-0.2,0.2898,0.1184,-0.1674,0.1266,0.298,0.4858,0.7632,0.8612,0.6,0.404,0.3878,0.502,0.6326,0.6408,0.502,0.5428,0.7306,0.5836,0.5756,0.3224,0.502,0.8368,1,0.7878,0.7714,0.5756,0.396,0.453,0.347,0.2164,0.4286,-0.5272,0.0546,0.0182,0.3454,0.5272,0.9272,0.8546,0.7818,0.6364,0.5272,0.3818,0.5636,0.4546,0.6364,0.6364,0.8182,0.8182,1,0.8182,0.9636,0.7454,0.8546,0.8546,1,0.7818,0.8182,0.6,0.6728,0.5636,0.6,0.4182,0.5636,-0.5358,0.1072,0.1072,0.3572,0.3572,0.9286,1,0.6428,0.6072,0.2858,0.3928,0.3572,0.4642,0.3572,0.5,0.5358,0.7858,0.7142,0.6786,0.6072,0.6428,0.6072,0.6786,0.7142,0.5,0.6428,0.4286,0.3214,-0.0358,0.2858,0.1786,0.1786,-0.3334,0.2666,0.2222,0.2444,0.4444,0.6222,0.8444,1,0.7778,0.2,0.2,0.2,0.5778,0.5556,0.6222,0.6666,0.4888,0.4444,0.3778,0.1556,0.2444,0.3112,0.4888,0.6666,0.5778,0.4666,0.4444,-0.1334,-0.2222,-0.1334,-0.0444,0.2666,-1,-1,-1,-1,-1,-0.969,-0.9784,-0.9674,-0.955,-0.9132,-0.509,0.7444,0.9674,0.9256,0.8312,0.7894,0.6608,0.4996,0.371,0.0968,-0.151,-0.3756,-0.5152,-0.7568,-0.8792,-0.921,-0.9256,-0.9644,-0.9706,-0.9612,-0.9722,-0.969,-0.969,-1,-1,-1,-1,-1,-0.985,-0.9862,-0.9842,-0.9186,-0.7774,-0.495,0.9672,0.5948,0.2058,0.0992,0.2596,0.1208,0.0812,0.0316,-0.3242,-0.5466,-0.536,-0.5352,-0.7412,-0.8118,-0.9284,-0.9296,-0.932,-0.9418,-0.9464,-0.932,-0.944,-0.9404,-1,-1,-1,-1,-1,-0.96,-0.98,-0.8268,-0.88,-0.42,-0.1968,-0.6,-0.64,-0.68,-0.68,-0.655,-0.68,-0.7,-0.59,-0.45,-0.39,-0.33,-0.3534,0.0132,-0.1668,-0.1668,-0.2068,0.2766,0.1232,0.01,-0.1534,0.0132,-0.0434,-1,-1,-1,-1,-1,-0.6286,-0.9428,-0.6858,1,1,1,1,0.5142,-0.7142,-0.8858,-0.7428,-0.6286,-0.9142,-0.6572,-0.5142,-0.6,-0.7714,-0.5142,0.2,0.5142,-0.1714,-0.6286,-0.8858,-0.9142,-0.9714,-0.9714,-1,-0.9142,1,1,1,1,1,1,1,1,1,1,0.0492,0.0492,-0.0148,-0.0148,-0.0528,-0.0944,-0.2444,-0.2882,-0.2662,-0.2622,-0.8134,-0.647,-0.4114,0.7026,0.8336,0.2368,0.1542,1,-0.2936,-0.0448,0.5522,0.6518,0.1244,0.005,0.204,0.3432,0.781,0.8906,0.7214,0.9004,0.9004,0.7314,0.5324,0.592,0.6218,0.8806,0.98,0.9204,1,0.8806,0.6716,0.383,0.194,0.204,0.214,-0.005,-0.1642,-0.204,-0.4328,-0.7114,-0.3334,-0.2908,-0.1774,0.1206,-0.1206,-0.1774,0.1348,-0.0354,0.532,0.5886,0.3192,0.546,0.773,0.8014,0.3618,0.3192,0.4042,0.8298,0.8724,1,0.7446,0.773,0.5602,0.3476,0.3618,0.2482,0.078,-0.149,-0.4894,-0.2908,-0.5744,-0.6028,-0.0666,0.2314,0.6942,0.8118,0.5294,0.5294,0.5844,0.7098,0.953,0.8118,1,0.9686,0.945,0.8666,0.749,0.7804,0.804,0.9294,0.953,0.953,0.7804,0.8902,0.8746,0.5686,0.396,0.3648,0.2314,-0.145,-0.2392,-0.349,-0.451,-0.5922,-0.2184,-1,-1,1,-0.8,-1,0,-0.5666,-1,-0.723,-0.3846,-0.4308,0.2924,0.3076,0.2616,0.6154,0.7076,0.523,0.7692,0.7076,0.7076,0.6616,0.6308,0.6,0.877,0.7846,0.8,0.8154,0.8616,1,0.877,0.4924,0.6616,0.9076,0.7692,0.8616,0.877,0.9538,0.9538,0.8308,0.5538,'6'
-0.6282,0.173,0.2372,0.4102,0.5064,0.8398,1,0.8206,0.7564,0.609,0.5834,0.4936,0.5642,0.577,0.673,0.7692,0.8206,0.9552,0.7692,0.782,0.673,0.7756,0.7628,0.9038,0.8974,0.6924,0.6474,0.3462,0.3782,0.282,0.4358,0.2884,-0.4708,0.3608,0.402,0.4982,0.5808,0.8762,1,0.8144,1,0.78,0.725,0.5876,0.732,0.6564,0.7732,0.7526,0.8832,0.9382,0.5876,0.6976,0.6702,0.9176,0.7458,0.9726,0.897,0.5946,0.5464,0.4296,0.402,0.2096,0.347,0.1478,-0.4546,0.3076,0.3286,0.3076,0.3216,0.7482,0.7832,0.909,1,0.5454,0.5594,0.3356,0.5034,0.3846,0.5594,0.5594,0.7132,0.5314,0.4686,0.3706,0.3076,0.2938,0.2938,0.3986,0.5454,0.4826,0.2448,-0.07,0.1048,0.1748,-0.049,0.2588,-0.3594,0.3906,0.3672,0.2578,0.1954,0.7188,0.6328,1,0.9218,0.5,0.4374,0.5626,0.5156,0.6796,0.539,0.875,0.7578,0.2968,0.125,0.4922,0.414,0.4922,0.414,0.5312,0.6328,0.5156,0.2032,0.2578,0.2032,0.039,0.2656,0.2968,-0.2,0.3818,0.3164,0.12,0.3236,0.4982,0.3818,0.5346,0.6872,0.7018,0.6218,0.6654,0.4836,0.4254,0.651,0.5928,0.5418,0.4254,0.4546,0.4836,0.5054,0.4182,0.5346,1,0.9054,0.5928,0.3964,0.229,-0.149,0.1418,0.2728,0.2,-0.12,0.4666,0.3156,-0.0312,0.1112,0.2,0.6266,0.6266,0.9644,0.8222,0.5022,0.7066,0.6888,0.7334,0.8222,0.7688,0.4844,0.12,0.2622,0.4488,0.4934,0.6266,0.8134,1,0.9912,0.7866,0.4578,0.3688,0.3244,0.0488,0.0666,0.2622,-0.1682,0.3364,0.1214,-0.299,-0.0654,0.2898,0.6356,0.729,0.542,0.215,0.3458,0.43,0.5982,0.5328,0.9066,0.6728,0.2056,0.0842,0.3364,0.3832,0.1682,0.3272,0.8412,1,0.8972,0.6356,0.4018,0.1402,0.0374,0.3178,0.4112,0.187,-0.7358,0.0944,0.132,0.3584,0.434,0.7736,1,0.8868,0.6226,0.5094,0.5094,0.434,0.4716,0.5094,0.6226,0.7358,0.7358,0.9622,0.8868,0.7736,0.7736,0.7358,0.7358,0.8114,0.8868,0.7736,0.6226,0.3962,0.4716,0.3584,0.4716,0.434,-0.577,0.1924,0.2308,0.3846,0.5,0.8462,1,0.7308,0.7692,0.6154,0.577,0.4616,0.577,0.5384,0.7308,0.8076,0.8076,0.9616,0.6538,0.7692,0.6154,0.8076,0.7308,0.8846,0.8846,0.6154,0.6538,0.1154,0.2308,0,0.3462,0.2308,-0.5106,0.3404,0.383,0.4468,0.532,0.8086,0.9148,0.8086,1,0.7022,0.6596,0.383,0.6596,0.5106,0.7234,0.6382,0.851,0.8936,0.5744,0.6382,0.7022,0.851,0.6808,0.9148,0.7446,0.617,0.468,0.4042,0.1914,0.1914,0.234,0.0638,-1,-1,-1,-1,-1,-1,-0.9434,-0.956,-0.891,-0.8806,-0.26,0.9602,0.8868,0.7714,0.6122,0.5116,0.436,0.2914,0.1278,-0.0252,-0.1614,-0.2914,-0.5534,-0.8596,-0.8512,-0.9454,-0.9434,-0.9496,-0.958,-0.9412,-0.9496,-0.958,-0.958,-1,-1,-1,-1,-1,-1,-0.975,-0.9756,-0.5834,-0.3878,-0.0328,0.9828,0.63,0.501,0.1212,-0.0238,-0.1728,-0.2922,-0.4064,-0.5038,-0.55,-0.6134,-0.7342,-0.8908,-0.8782,-0.8972,-0.9148,-0.918,-0.9072,-0.9126,-0.9172,-0.9244,-0.932,-1,-1,-1,-1,-1,-1,-0.8934,-0.9468,-0.57,-0.23,-0.2,-0.62,-0.66,-0.665,-0.625,-0.545,-0.59,-0.445,-0.41,-0.485,-0.485,-0.46,-0.2868,0.08,-0.2068,0.22,0.24,0.26,0.1866,-0.1,-0.2734,-0.36,-0.4268,-1,-1,-1,-1,-1,-1,-0.7142,1,1,-0.2286,1,1,-0.2572,-0.4,-0.3142,-0.5142,-0.7714,-0.6,-0.7428,-0.6572,-0.4858,-0.4858,-0.2,0,-0.2858,-0.8858,-0.8858,-0.8286,-0.8572,-0.8572,-0.8858,-0.8858,-0.7142,1,1,1,1,1,1,1,1,1,1,0.1334,0.1334,0.0582,0.0116,-0.0448,-0.1382,-0.1042,-0.2024,-0.318,-0.3032,-0.7734,-0.6236,0.1434,0.9638,0.8166,0.4476,0.4498,1,-0.5406,-0.4414,0.1622,0.3154,0.009,-0.1262,-0.027,0.1442,0.8288,1,0.6036,0.7118,0.7748,0.6576,0.5406,0.4954,0.955,0.991,0.8738,0.8918,0.7928,0.6306,0.4504,0.2342,0.2792,-0.081,-0.1622,-0.2072,-0.3874,-0.4594,-0.4864,-0.7928,-0.4464,-0.4532,0.2042,0.4186,0.0312,0.052,0.0796,0.2388,0.8062,0.8892,0.5432,0.7648,0.7508,0.6056,0.4948,0.5502,0.8616,1,0.6816,0.7302,0.7648,0.5364,0.4948,0.1972,0.0658,-0.0934,-0.2802,-0.4256,-0.3288,-0.3702,-0.5848,-0.7162,-0.402,-0.031,0.2028,0.567,0.4776,0.3402,0.4432,0.6426,0.9176,0.9382,0.8076,0.8006,1,0.8282,0.512,0.6494,0.725,0.7732,0.7938,0.7182,0.6702,0.5876,0.5258,0.1822,0.0928,0.024,-0.189,-0.2234,-0.3264,-0.3128,-0.8214,-0.897,0.4598,-1,-1,1,-0.8,-1,-0.4,-0.4334,-1,-0.8054,-0.6638,-0.4336,-0.1682,0.0088,0.2744,0.2036,-0.0088,0.2212,0.292,0.6814,0.5222,0.5398,0.593,0.6814,0.6284,0.3628,0.416,0.6284,0.4868,0.5398,0.8938,1,0.5752,0.7876,0.5752,0.6638,0.5576,0.2566,0.5752,0.3806,-0.1328,'6'
-0.7802,0.4152,0.5418,0.1658,0.311,0.1658,0.0316,0.0168,-0.285,-0.177,-0.3632,-0.0502,-0.1806,0.0578,0.0726,0.0168,0.1658,0.2812,0.6648,0.5866,0.7914,0.7766,0.6126,0.7616,0.594,1,0.9664,0.5904,0.661,0.4004,0.6276,0.568,-0.8756,0.222,0.35,-0.0054,0.2576,0.1368,-0.112,-0.0942,-0.3712,-0.2078,-0.453,-0.0444,-0.0942,-0.0834,0.0124,-0.1688,0.1616,0.048,0.563,0.5914,0.7406,0.9502,0.7798,0.8294,0.7834,0.8792,1,0.6768,0.7868,0.6802,0.666,0.7158,-0.631,0.3758,0.4862,0.0932,0.3172,0.1482,-0.0068,-0.0552,-0.1586,-0.0724,-0.2724,-0.0276,-0.1862,0.0518,0.0172,0.0138,0.0966,0.1448,0.4172,0.3172,0.8482,0.8656,0.7518,0.862,0.6794,1,0.9172,0.8896,0.9206,0.6414,0.7552,0.6,-0.4408,0.4408,0.4912,0.2544,0.336,-0.1612,-0.0292,-0.3282,-0.1456,-0.4174,-0.3242,-0.4252,-0.27,-0.2776,-0.1378,-0.1224,-0.0564,0.0796,0.165,0.3708,0.5378,0.8834,1,0.9146,0.802,0.7204,0.8098,0.833,0.9572,0.9378,0.6466,0.6854,-0.2568,0.4324,0.3828,0.41,0.2612,-0.2208,-0.3828,-0.2702,-0.491,-0.572,-0.554,-0.482,-0.4594,-0.419,-0.3874,-0.4954,-0.401,-0.0586,0.0316,0.2612,0.4864,0.8064,1,0.982,0.7252,0.8064,0.8244,0.955,0.9864,0.8558,0.7568,0.7118,-0.1794,0.3282,0.3538,0.4718,-0.2,-0.3538,-0.5282,-0.7076,-0.8358,-0.7642,-0.723,-0.6666,-0.7026,-0.8102,-0.6,-0.5436,-0.477,-0.318,-0.2256,-0.1334,0.323,0.723,1,0.9282,0.6512,0.5744,0.682,0.7692,0.8616,0.6052,0.5488,0.4974,-0.0954,0.5262,0.6062,0.557,-0.6308,-0.6676,-0.6062,-0.5446,-0.7046,-0.6184,-0.6124,-0.6492,-0.68,-0.5754,-0.5692,-0.5324,-0.3416,-0.4216,-0.7846,-0.6246,-0.1138,0.3908,0.877,1,0.5076,0.157,0.243,0.7416,0.6924,0.2492,0.243,0.1508,-0.8378,0.5676,0.7298,0.3514,0.1352,-0.1352,-0.027,-0.1892,-0.5136,-0.5136,-0.4594,-0.2972,-0.4054,0.027,0.027,-0.4594,-0.081,0.5676,0.6216,0.4054,0.8378,0.4594,0.7838,0.6756,0.5136,0.7298,0.946,0.946,0.7838,0.7298,0.6216,1,-0.8,0.32,0.44,0.12,0.24,0.08,-0.08,-0.08,-0.28,-0.2,-0.44,-0.16,-0.32,-0.08,-0.08,-0.04,0.12,0.32,0.64,0.56,0.64,0.68,0.52,0.68,0.72,1,0.88,0.48,0.56,0.4,0.52,0.32,-0.25,0.25,0.2,0.325,-0.075,-0.425,-0.5,-0.7,-0.725,-0.925,-0.7,-0.5,-0.6,-0.65,-0.5,-0.525,-0.425,-0.375,-0.025,0.175,0.3,0.875,1,0.825,0.65,0.7,0.625,0.725,0.85,0.8,0.675,0.575,-1,-1,-1,-1,-0.9668,-0.9724,-0.9392,-0.9558,-0.965,-0.8546,-0.4664,0.735,0.965,0.8196,0.6044,0.413,0.2198,0.0782,-0.0174,-0.196,-0.3578,-0.5252,-0.7258,-0.8914,-0.9466,-0.9724,-0.9576,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9792,-0.9734,-0.8208,-0.6382,-0.1326,0.9796,0.0518,0.0196,0.4834,0.9652,0.6814,0.2616,0.0346,-0.1762,-0.2876,-0.4866,-0.711,-0.8246,-0.9052,-0.9454,-0.9542,-0.9552,-0.9568,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9134,-0.9,-0.6634,0.77,0.95,0.9232,0.7132,-0.42,-0.3916,-0.1944,-0.1458,-0.1458,-0.043,-0.24,-0.4172,-0.5086,-0.8372,-0.8776,-0.8368,-0.72,-0.6,-0.4734,-0.4434,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6,-0.4,1,1,1,1,1,1,0.9714,-0.7428,-0.4858,-0.5142,-0.6858,-0.8286,-0.7142,0.2858,0.2286,-0.2,-0.5428,-0.8286,-0.6286,-0.7142,-0.7428,-1,-1,-1,-1,-1,-1,0.5202,0.5392,0.561,0.5872,0.6102,0.6202,0.64,0.647,0.6026,0.2342,0.8902,0.8818,0.8704,0.8342,0.8454,0.876,0.8812,0.8874,0.9224,0.8978,-0.88,-0.2,0.0288,-0.2434,0.058,0.2486,0.4038,1,-0.7866,-0.6746,-0.648,-0.4134,-0.4186,-0.3866,-0.3386,-0.2106,-0.1574,-0.0666,0.2426,0.184,0.392,0.472,0.5094,0.8986,0.9094,0.888,1,0.9094,0.952,0.824,0.9946,0.728,0.6214,0.6694,0.4986,0.408,0.1146,0.4186,0.296,0.1094,-0.8536,-0.8266,-0.6184,-0.4296,-0.5028,-0.499,-0.3218,-0.2602,-0.2408,0.129,0.1176,0.3448,0.5722,0.5298,0.6494,0.8536,0.896,0.9808,0.9384,0.7688,0.8844,0.9808,0.9036,1,0.738,0.8074,0.7456,0.738,0.476,0.765,0.6802,0.4528,-0.8422,-0.4736,-0.5598,-0.5454,-0.5502,-0.579,-0.5358,-0.3254,0,0.402,0.4066,0.378,0.9186,0.9186,0.4688,0.7752,0.8708,0.9808,0.9618,0.933,0.8708,1,0.8852,0.8756,0.7224,0.732,0.8038,0.7656,0.4114,0.7082,0.6124,0.1148,-0.3772,-1,-1,1,-1,-1,-0.8,-0.1,1,-0.2072,-0.063,0.4054,0.1172,0.1352,0.1172,0.5316,0.6396,0.5316,0.1532,0.6396,0.7118,0.7658,1,0.8918,0.6756,0.7838,0.8918,0.3694,0.6576,0.91,0.8198,0.928,0.8018,0.4234,0.009,0.027,0.4774,0.3154,0.2072,0.045,-0.4054,'7'
-0.6482,0.3392,0.4346,0.1582,0.2788,-0.0302,-0.0226,-0.1432,-0.2562,-0.289,-0.2538,-0.211,-0.2462,-0.1156,-0.2362,0.01,-0.0678,0.412,0.4598,0.887,1,0.7512,0.784,0.7236,0.8994,0.8718,0.7336,0.7386,0.5954,0.6006,0.5478,0.5804,-0.6454,0.2886,0.3958,0.066,0.2928,0.1484,0.0042,-0.0268,-0.1856,-0.1052,-0.2516,0.0104,-0.1092,0.0206,0.0226,-0.0164,0.0928,0.1278,0.464,0.3814,0.965,1,0.6042,0.7608,0.5752,0.9774,0.9196,0.6516,0.7052,0.468,0.6824,0.532,-0.6494,0.4556,0.5698,0.1314,0.32,0.0386,-0.02,-0.1448,-0.2138,-0.2058,-0.3042,-0.1792,-0.3864,-0.166,-0.2696,-0.0996,-0.158,0.1394,0.19,0.3068,0.6388,0.7158,1,0.9282,0.7876,0.838,0.7424,0.8354,0.761,0.6282,0.6494,0.5432,-0.2898,0.6176,0.6206,0.475,0.4688,-0.0744,-0.0682,-0.2352,-0.2262,-0.481,-0.4446,-0.3292,-0.2928,-0.4324,-0.3808,-0.308,-0.1988,-0.1776,0.0016,0.2262,0.654,0.8664,1,0.997,0.8028,0.8392,0.827,0.912,0.8482,0.7178,0.569,0.572,-0.1238,0.5636,0.4398,0.6872,0.3368,-0.22,-0.2612,-0.2852,-0.5532,-0.5464,-0.6048,-0.5842,-0.4846,-0.409,-0.4226,-0.536,-0.4536,-0.3884,-0.189,0.0688,0.409,0.7732,1,0.9484,0.6494,0.7148,0.8178,0.78,0.725,0.5498,0.5154,0.4192,-0.0664,0.4244,0.8488,0.9004,-0.0922,-0.3542,-0.5276,-0.6974,-0.7602,-0.6974,-0.9114,-0.749,-0.524,-0.524,-0.7084,-0.6384,-0.513,-0.3432,-0.2214,-0.0774,0.1586,0.7306,1,0.9558,0.6752,0.7602,0.7602,0.738,0.6346,0.5536,0.428,0.2324,-0.2058,0.2924,0.473,0.4512,-0.3646,-0.4694,-0.592,-0.5848,-0.7582,-0.7726,-0.7762,-0.4658,-0.3322,-0.325,-0.6932,-0.592,-0.5488,-0.7148,-0.6138,-0.2202,0.101,0.4946,1,0.8664,0.3972,0.3936,0.4658,0.4296,0.361,0.3032,0.0072,0.1264,-0.3208,0.585,0.7358,0.6226,0.283,-0.2452,-0.132,-0.0566,-0.0944,-0.2452,-0.3208,-0.7358,-0.132,-0.2076,0.132,0.2452,0.4716,0.5472,0.7736,0.849,0.9622,0.8114,0.9622,0.9246,0.7358,1,0.9246,0.9622,0.849,0.5094,0.585,0.6982,-0.2632,0.4386,0.5088,0.3684,0.4736,0.1228,0.193,0.0526,-0.0526,-0.1578,0.0176,-0.0176,0.0878,0.0878,0.0526,0.193,0.2982,0.5438,0.579,1,1,0.7544,0.579,0.8246,0.8596,0.579,0.7544,0.579,0.6842,0.5438,0.7544,0.7192,-0.6522,0.413,0.5218,0.1304,0.326,0.1086,-0.0218,-0.087,-0.2174,-0.1304,-0.3914,-0.1522,-0.3478,-0.1086,-0.174,-0.0652,0,0.1522,0.326,0.2826,0.7392,0.674,1,1,0.8044,1,0.8044,0.9782,0.9348,0.7174,0.7608,0.5652,-1,-1,-1,-1,-0.9542,-0.9446,-0.9446,-0.9348,-0.9276,-0.8674,-0.614,0.819,0.9662,0.9228,0.7684,0.5754,0.3342,0.228,0.1628,0.1026,-0.047,-0.4186,-0.7274,-0.86,-0.9228,-0.9276,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9772,-0.9682,-0.6668,-0.6068,0.4482,0.6464,0.1366,0.1312,0.8498,0.7592,0.1852,-0.235,-0.3648,-0.438,-0.5562,-0.5864,-0.6578,-0.8006,-0.889,-0.9172,-0.9178,-0.9316,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.8868,-0.57,0.6932,0.85,0.9066,0.5766,-0.266,-0.188,-0.1964,-0.3364,-0.542,-0.5874,-0.662,-0.8656,-0.8346,-0.7746,-0.791,-0.7034,-0.39,-0.24,-0.32,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7428,1,1,1,1,-0.2858,1,1,-0.3142,-0.9142,-0.4858,-0.4858,-0.9714,-0.9142,-0.7714,-0.9428,-0.8572,-0.8286,-0.9428,-0.8286,-0.9428,-0.7714,-1,-1,-1,-1,-1,-1,-1,0.53,0.5466,0.556,0.582,0.5892,0.6072,0.6238,0.6164,0.5402,0.1834,0.7568,0.7738,0.7922,0.8158,0.8002,0.8204,0.8164,0.8552,0.9202,0.9226,-0.84,0.2824,0.1858,-0.1468,-0.0376,0.1954,0.5382,1,-0.6962,-0.5898,-0.4784,-0.4228,-0.3368,-0.2556,-0.2102,-0.038,-0.0178,0.2304,0.3418,0.3974,0.6912,0.7772,0.8026,0.9292,0.9798,0.9746,1,0.8684,0.7266,0.6708,0.7518,0.6608,0.6506,0.6658,0.6658,0.514,0.1292,-0.0734,-0.0886,-0.3164,-0.9184,-0.8164,-0.8122,-0.702,-0.7142,-0.6122,-0.3878,-0.3796,-0.1836,0.1592,0.151,0.1878,0.6164,0.6816,0.6572,0.8448,0.898,1,0.9102,0.9796,0.902,0.9142,0.7674,0.8734,0.7552,0.698,0.853,0.747,0.4448,0.249,0.2858,0.2122,-0.7224,-0.4634,-0.6098,-0.606,-0.5084,-0.4484,-0.3622,-0.287,0.1258,0.2908,0.4446,0.6322,0.7336,0.6886,0.576,0.8198,1,0.9438,0.8048,0.9362,0.7862,0.7186,0.7148,0.696,0.6622,0.7674,0.6248,0.5384,0.4934,0.2008,0.347,0.2382,0.2164,-1,-1,1,-1,-1,-0.4,-0.0666,-1,-0.3788,-0.197,-0.1212,-0.2122,-0.1516,-0.0454,-0.2728,-0.394,-0.0304,0.0454,0.303,1,0.606,0.8182,0.4394,0.4394,0.4696,0.2878,0.2878,0.5152,0.6516,0.3334,0.1516,0.2728,0.0454,-0.0606,0.1212,0.2728,-0.2576,-0.2272,-0.2576,-0.3636,'7'
-0.6884,-0.065,-0.0064,0.409,0.565,0.552,0.5194,0.1038,0.1168,-0.0194,0.013,-0.052,0.1168,0.078,0.1754,0.1494,0.3832,0.3962,0.8312,0.987,1,0.922,0.909,0.948,0.7272,0.7922,0.7402,0.5714,0.5194,0.4416,0.6234,0.6364,-0.4808,0.4358,0.468,0.8782,0.9358,0.8462,0.9424,0.4744,0.391,0.077,0.2052,0.0064,-0.0384,-0.218,0.141,0.1026,0.0192,0.1218,0.5064,0.532,0.8654,1,0.7564,0.5642,0.5642,0.7756,0.6154,0.4744,0.3076,0.327,0.3334,0.2756,-0.3758,0.4972,0.5434,0.9248,0.9654,0.8092,0.8902,0.3526,0.3816,-0.0462,0.0462,-0.2486,-0.4972,-0.3584,-0.2196,-0.2832,-0.0346,-0.0346,0.5318,0.4856,1,0.9942,0.7572,0.7572,0.578,0.6994,0.4624,0.422,0.1908,0.2486,0.3006,0.5318,-0.4034,0.453,0.5028,0.9724,1,0.5636,0.6464,0.1436,0.2818,-0.1104,-0.011,-0.3094,-0.4088,-0.547,-0.2266,-0.3592,-0.3702,-0.1824,-0.0056,0.243,0.6464,0.663,0.8564,0.9006,0.3812,0.4972,0.536,0.7238,0.4364,0.5966,0.326,0.4752,-0.3168,0.4932,0.5206,0.9944,1,0.372,0.4214,0.0524,0.1516,-0.146,-0.0304,-0.168,-0.0248,-0.1626,0.0304,-0.124,0.0468,-0.091,0.2122,0.2782,0.5262,0.6418,0.9064,0.9064,0.7576,0.7576,0.686,0.741,0.5482,0.5812,0.4766,0.5316,-0.4146,0.2304,0.214,0.6368,0.5284,-0.0406,-0.2196,-0.1978,-0.328,-0.2954,-0.3442,-0.187,-0.3062,-0.2196,-0.1924,-0.1544,-0.0678,-0.0028,0.2196,0.3658,0.5502,0.8428,1,0.9728,0.7778,0.691,0.6586,0.6314,0.664,0.5284,0.4688,0.4146,-0.4854,0.1596,0.4528,0.5766,0.2312,-0.1726,-0.5048,-0.4788,-0.5374,-0.8176,-0.8372,-0.4918,-0.4528,-0.4724,-0.4918,-0.518,-0.4268,-0.0814,-0.101,0.0488,0.4658,0.557,1,0.9934,0.6612,0.6872,0.7264,0.557,0.4854,0.1206,0.0684,0.3746,-0.6666,-0.238,0.1428,0.2858,0.4286,0.4286,0.2858,0.1904,-0.238,0.0952,0.1428,0.0952,0.0476,0.0476,-0.238,-0.0952,0.3334,0.4762,0.762,0.762,0.7142,0.7142,0.762,1,1,0.9524,0.9524,0.8096,0.6666,0.8572,0.8572,0.762,-0.7254,0.0588,0.098,0.4902,0.6862,0.6862,0.647,0.1372,0.255,-0.0196,0.0196,-0.1372,0.0588,0.1764,0.3334,0.098,0.4118,0.6862,0.8432,1,1,0.9608,0.804,1,0.8824,0.7648,0.7254,0.6862,0.5294,0.7254,0.7648,0.647,-0.2808,0.4832,0.5056,0.955,0.955,0.3258,0.3708,0.0786,0.146,-0.191,-0.146,-0.0786,0.0112,-0.0562,0.0338,0.0786,0.2134,0.1686,0.2808,0.528,0.7304,0.8652,1,0.8876,0.6854,0.663,0.7078,0.7078,0.3932,0.3932,0.573,0.573,-1,-1,-1,-1,-1,-1,-1,-1,-0.9848,-0.9666,-0.982,0.0208,0.2852,0.2852,0.4214,0.637,0.943,0.9374,0.5536,0.1058,-0.256,-0.4326,-0.9068,-0.9236,-0.975,-0.9764,-0.968,-0.968,-0.9708,-0.9764,-0.9708,-0.9722,-0.975,-1,-1,-1,-1,-1,-1,-1,-1,-0.9784,-0.9762,-0.966,0.4112,0.4166,-0.0176,0.037,0.19,0.3524,0.36,0.1496,0.2446,-0.4236,-0.623,-0.9078,-0.8992,-0.973,-0.9778,-0.9752,-0.925,-0.9752,-0.9584,-0.8512,-0.492,0.0084,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.9068,-0.6968,-0.28,-0.54,-0.76,-0.736,-0.684,-0.688,-0.68,-0.556,-0.108,-0.268,-0.492,-0.6368,-0.4868,-0.9268,-0.9268,-0.91,-0.57,-0.9468,-0.91,0.2766,0.95,0.89,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,-0.3428,1,1,1,-0.2286,-0.8286,-0.8286,-0.8572,-0.8,-0.6286,0.6,1,1,1,0.3714,0.4572,-0.9714,-0.2286,0.2572,-0.0286,1,1,1,0.5142,1,1,1,1,1,1,1,1,1,0.7638,0.672,0.6804,0.6804,0.6748,0.6344,0.6086,0.6756,0.7276,0.7906,0.8816,-0.8534,-0.4824,-0.9654,-0.3734,0.939,0.3562,-0.0024,1,0.1448,-0.0526,0.2368,0.8816,0.5264,0.4342,0.8422,0.8158,1,0.9078,0.8026,0.9342,0.9078,0.8816,0.7368,0.5526,0.2632,0.9078,0.5394,0.7632,0.6842,0.5658,0.5394,0.5526,0.5132,0.4342,0.3158,0.2894,0.2632,0.7236,0.3026,0.0132,0.1066,0.12,-0.04,0.8134,0.5334,0.56,1,0.9066,0.6534,0.4134,0.7066,0.6,0.5866,0.44,0.6534,0.6934,0.4666,0.56,0.5066,0.4534,0.5734,0.3334,0.48,0.68,0.4666,0.4134,0.4,0.24,0.3734,0,0.24,0.0266,-0.0882,-0.2254,-0.0882,0.402,0.1764,0.1568,0.2352,0.304,0.451,0.5588,0.696,0.5784,0.5882,0.4412,0.5196,0.5588,0.8432,1,0.9118,0.951,0.9118,0.8432,0.3726,0.3726,0.3334,0.2156,-0.0588,0.098,-0.0588,-0.0392,0.0686,-0.2156,-0.999,1,-1,-1,-1,-1,-1,-1,1,-0.573,-0.5938,-0.323,-0.2812,-0.323,-0.2708,-0.2604,-0.2084,0.0312,0.052,0.25,0.5,0.5104,0.3438,0.5312,0.6042,0.698,0.6666,0.75,1,0.8854,0.9584,0.9584,0.6562,0.6458,0.75,0.6458,0.6562,0.3124,0.3958,0.4584,0.0624,'8'
-0.7714,-0.0022,0.134,0.3142,0.5692,0.477,0.5692,0.4814,0.2088,0.099,0.1736,0.1824,0.055,0.2264,0.0462,0.3054,0.2836,0.578,0.6748,0.7802,1,0.8814,0.8594,0.7714,0.8462,0.7098,0.5956,0.622,0.4418,0.499,0.411,0.5296,-0.764,0.236,0.339,0.5278,0.751,0.5666,0.6566,0.6052,0.2232,0.2918,0.0516,0.2746,0.1202,0.2146,0.1716,0.3004,0.3862,0.3476,0.6052,0.4806,1,0.9828,0.6824,0.7896,0.6008,0.897,0.7812,0.5922,0.5922,0.5022,0.6224,0.3992,-0.8348,0.2706,0.3944,0.578,0.8348,0.656,0.4496,0.4128,-0.0458,0.0734,-0.1788,0.1788,0.055,0.1146,0.1284,0.0964,0.2432,0.133,0.5596,0.4816,0.9128,0.9634,0.7706,0.9954,0.8028,1,0.9634,0.688,0.7844,0.4404,0.7248,0.5918,-0.6466,0.2796,0.378,0.575,0.7226,0.4362,0.226,0.114,-0.0694,-0.0962,-0.132,-0.0604,-0.2706,-0.0694,-0.2214,0.0112,-0.0336,0.2662,0.32,0.4004,0.5302,0.6242,1,0.9776,0.8792,0.8524,0.6778,0.736,0.566,0.6152,0.5526,0.49,-0.6078,0.1912,0.2254,0.549,0.5638,-0.1274,-0.1274,-0.4068,-0.3186,-0.5638,-0.4754,-0.495,-0.4166,-0.5294,-0.348,-0.2844,-0.1128,-0.049,0.098,0.2352,0.3432,0.5392,0.7598,0.9852,1,0.8676,0.8432,0.5932,0.5834,0.4558,0.495,0.3334,-0.4906,0.169,0.378,0.6676,0.496,-0.0832,-0.3458,-0.303,-0.6462,-0.7534,-0.6354,-0.5068,-0.5978,-0.5872,-0.5282,-0.3942,-0.3298,-0.2922,-0.0348,0.1796,0.4262,0.6194,0.9088,0.925,0.9892,0.941,1,0.6354,0.6032,0.4424,0.5282,0.2922,-0.9476,-0.4186,0.064,0.0814,-0.221,-0.6628,-0.779,-0.6628,-0.628,-0.721,-0.6744,-0.5988,-0.4942,-0.6686,-0.5988,-0.6104,-0.3896,-0.4594,-0.4302,-0.3838,-0.2268,0.3838,0.9884,1,0.4302,0.4768,0.3896,0.0814,-0.0232,-0.157,-0.0406,-0.0406,-0.8724,-0.234,0.0212,-0.0212,0.1914,0.3618,0.2766,0.1064,-0.1914,-0.0638,-0.0212,-0.149,-0.2766,0.0638,0.0212,-0.0638,0.234,0.3618,0.617,0.532,1,0.8724,0.7022,0.5744,0.7872,0.6596,0.6596,0.5744,0.6596,0.4042,0.1914,0.4894,-0.5932,0.1526,0.1864,0.4576,0.695,0.5594,0.661,0.5594,0.322,0.322,0.2882,0.356,0.2204,0.322,0.2542,0.4576,0.4238,0.661,0.695,0.8644,1,0.8644,0.8984,0.7966,0.695,0.661,0.4576,0.5254,0.2542,0.3898,0.356,0.3898,-0.4814,0.1852,0.3334,0.679,0.5556,0.0124,-0.1358,-0.3828,-0.5802,-0.605,-0.7038,-0.5062,-0.5556,-0.432,-0.3828,-0.3086,-0.3828,-0.3086,0.1112,0.2346,0.4814,0.5556,0.7284,0.7778,1,0.9012,1,0.753,0.7778,0.5062,0.5308,0.284,-1,-1,-1,-1,-1,-1,-0.9654,-0.9736,-0.9522,-0.9174,-0.9422,0.4752,0.5826,0.8778,0.9554,0.759,0.4108,-0.0066,-0.175,-0.3234,-0.5958,-0.7904,-0.9636,-0.9554,-0.962,-0.967,-0.9636,-0.9636,-0.967,-0.9702,-0.9422,-0.9306,-0.9636,-1,-1,-1,-1,-1,-1,-0.9734,-0.9744,-0.6716,-0.565,-0.7398,0.6818,0.7136,0.5248,0.5612,0.5316,0.29,0.0104,-0.2582,-0.5118,-0.7006,-0.8214,-0.9722,-0.9716,-0.9716,-0.974,-0.9722,-0.9756,-0.9722,-0.957,-0.895,-0.8214,-0.7194,-1,-1,-1,-1,-1,-1,-0.9,-0.9534,-0.61,-0.2368,-0.2534,-0.372,-0.55,-0.6468,-0.6234,-0.5334,-0.2,-0.1068,-0.2168,-0.3668,-0.35,-0.5168,-0.9,-0.88,-0.84,-0.96,-0.9734,-0.93,-0.88,-0.82,-0.7834,0.1632,0.8332,-1,-1,-1,-1,-1,-1,-0.9428,1,1,-0.0286,1,1,1,-0.4572,-0.7142,-0.4286,-0.4286,-0.6286,-0.3142,1,1,1,1,-0.7428,-0.9714,-1,-0.9714,-1,-0.7714,-0.7142,1,1,1,1,1,1,1,1,1,1,1,1,0.816,0.6252,0.623,0.6092,0.612,0.6206,0.6472,0.6124,0.6784,0.7496,0.878,-0.9066,-0.353,-0.9354,0.247,0.9716,0.823,0.6042,1,-0.4952,-0.466,0.3204,0.2912,-0.1262,-0.068,0.1166,0.0874,0.3496,0.9514,1,0.7282,0.6796,0.67,0.5826,0.5436,0.5048,0.6214,0.8252,0.903,0.9224,0.8446,0.534,0.3204,0.1262,-0.0582,-0.136,-0.1748,-0.3204,-0.2718,-0.4174,-0.8156,-0.3294,-0.2948,0.2138,0.0636,-0.341,0.237,0.3294,0.0636,0.1908,0.792,0.896,0.6184,0.6532,0.3758,0.3064,0.2024,0.5144,0.7456,0.9538,1,0.8612,0.3526,0.1676,0.1792,-0.0058,-0.0982,-0.029,-0.133,-0.3872,-0.4336,-0.2948,-0.7688,-0.5208,-0.401,0.0968,0.189,-0.0138,-0.0692,0.0784,0.0784,0.0784,0.7604,0.9448,0.6958,0.7972,0.7236,0.5116,0.5484,0.8618,0.8342,0.9724,1,0.9908,0.8248,0.6958,0.4194,0.3364,0.023,-0.1798,-0.3364,-0.401,-0.447,-0.4102,-0.8248,0.387,-1,-1,1,-1,-1,-1,-0.5334,1,-0.4588,-0.4352,-0.2352,-0.2942,-0.2942,-0.3648,-0.0588,0.0942,0.0352,0,0.1294,0.3412,0.4118,0.6118,0.7176,0.5882,0.9412,1,0.9412,0.8352,0.9412,0.8942,0.9294,0.753,0.8588,0.647,0.7058,0.553,0.4,0.4118,0.4236,0.047,'8'
-0.4576,0.1566,0.1374,0.3166,0.264,0.6678,0.601,0.9976,0.9212,0.8924,0.816,1,0.9164,0.3692,0.319,0.104,0.0274,0.018,-0.0682,-0.1446,-0.037,0.2474,0.2998,0.429,0.3452,0.1804,0.0728,0.0394,0.0896,0.0728,0.1852,0.2928,-0.3198,0.3606,0.3442,0.3932,0.3334,0.7578,0.6654,1,0.8938,0.8612,0.7578,0.8312,0.679,0.3932,0.113,-0.0232,-0.1538,-0.0096,-0.0448,-0.0776,-0.0966,0.2082,0.5184,0.4938,0.3334,0.2164,0.0666,0.034,0.064,0.1674,0.3824,0.3796,-0.3694,0.3584,0.3584,0.35,0.3056,0.7528,0.7084,1,0.9472,0.8334,0.7806,0.7778,0.7278,0.65,0.6138,0.2612,0.1862,0.1638,0.2138,0.1528,0.1862,0.3612,0.4194,0.4722,0.3916,0.1972,0.1444,0.05,0.1028,0.0666,0.2888,0.4028,-0.283,0.4134,0.3688,0.3422,0.4814,0.8312,0.7392,1,0.8104,0.677,0.5644,0.7482,0.5438,0.683,0.766,0.8578,0.8638,0.843,0.5822,0.5408,0.5082,0.4934,0.5644,0.5822,0.5052,0.4104,0.357,0.2118,0.126,0.1348,0.203,0.3096,-0.1798,0.4416,0.3054,0.2914,0.8988,0.9546,0.7452,0.6824,0.2076,-0.0052,0.0296,-0.117,-0.0576,-0.096,-0.0226,0.1588,0.3578,0.6614,0.843,0.9756,0.9826,0.7592,0.7626,0.7522,1,0.979,0.7592,0.4974,0.5254,0.424,0.4694,0.5254,-0.18,0.3804,0.1652,0.295,0.6104,0.5214,-0.2988,-0.4508,-0.577,-0.6178,-0.525,-0.3654,-0.499,-0.4768,-0.4138,-0.4582,-0.2876,0.013,0.3358,0.6066,0.8478,1,0.7626,0.6066,0.7254,0.6216,0.551,0.3952,0.4026,0.232,0.128,-0.0426,-0.0512,0.4966,0.3854,0.461,0.2516,0.0244,-0.519,-0.6302,-0.6972,-0.755,-0.666,-0.4388,-0.5234,-0.5368,-0.5634,-0.5546,-0.4076,-0.0868,-0.0022,0.2294,0.8976,1,0.9332,0.559,0.6792,0.715,0.4164,0.3764,0.2962,0.0378,-0.0378,-0.0334,-0.5636,-0.0182,-0.0546,0.2,0.2364,0.5636,0.7454,1,0.9272,0.7818,0.7818,1,0.891,0.5636,0.491,0.4546,0.3818,0.309,0.2364,0.091,0.2,0.3454,0.5636,0.6364,0.3818,0.3818,0.3454,0.091,-0.3818,0.091,0.091,0.091,-0.5358,0.1072,0.1072,0.3214,0.25,0.6428,0.6072,0.9642,0.9286,0.8928,0.8214,1,0.9642,0.3928,0.5,0.2858,0.1786,0.1428,0.1072,-0.3214,0.0358,0.2858,0.25,0.3928,0.1786,0.3214,0,0.1428,0.2858,0.25,0.2142,0.1786,-0.2054,0.3424,0.2054,0.3698,0.8904,0.8082,-0.178,-0.2054,-0.178,-0.6164,-0.4246,-0.2876,-0.3424,-0.3972,-0.1232,-0.315,-0.2876,0.1506,0.5068,0.863,0.8356,1,0.8082,0.8356,0.6986,0.7534,0.6164,0.589,0.6438,0.2602,0.452,0.5068,-1,-1,-1,-1,-1,-1,-0.94,-0.9458,-0.8944,-0.9316,-0.2068,0.9744,0.9088,0.8688,0.7774,0.7204,0.592,0.435,0.2868,-0.0242,-0.2754,-0.3152,-0.4808,-0.649,-0.7974,-0.9002,-0.923,-0.9286,-0.943,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9826,-0.985,-0.9034,-0.9158,-0.2226,0.5896,-0.0622,-0.3096,-0.3288,-0.2126,-0.2862,-0.5218,-0.6336,-0.7892,-0.8498,-0.8694,-0.9094,-0.9294,-0.935,-0.9472,-0.9446,-0.9396,-0.9488,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.9468,-0.77,-0.6234,-0.5168,-0.476,-0.516,-0.614,-0.554,-0.604,-0.596,-0.524,-0.526,-0.75,-0.7546,-0.86,-0.83,-0.5734,-0.4134,-0.3468,-0.2668,-0.3134,-0.3668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,0,0.8286,1,1,1,-0.7714,-0.9714,-0.8572,-0.6858,-0.4,-0.5428,-0.4,-0.2286,-0.8,-0.7142,-0.8286,-0.9428,-0.8858,-0.8,-0.8858,-0.6,0.9714,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.8806,-0.8126,-0.7818,-0.7212,-0.6844,-0.6538,-0.6094,-0.5156,-0.525,-0.6404,-0.0712,-0.7866,0.2,-0.2832,1,0.6414,0.4298,0.3148,1,-0.5,-0.1538,0.2308,0.7308,0.8076,0.9616,1,0.8462,0.6154,0.6924,0.8462,1,1,0.8076,0.7692,0.9616,1,0.9616,0.8462,0.923,0.923,0.923,0.6924,0.3846,0.3462,0.0384,-0.0384,-0.1924,-0.577,-0.3846,-0.3462,-0.6154,-0.2408,-0.0556,0.2962,0.7408,0.7592,0.7962,0.926,0.6482,0.4074,0.3704,0.537,1,0.8888,0.574,0.574,0.7778,0.8334,0.7962,0.6482,0.6296,0.8704,0.9444,0.463,0.3518,0.3704,-0.0556,-0.3148,-0.0926,-0.1296,-0.3704,-0.3704,-0.5186,-0.0634,0.2698,0.5714,0.9048,0.9524,1,0.9842,0.7936,0.5238,0.492,0.5396,0.8096,0.619,0.635,0.508,0.5714,0.619,0.6508,0.4286,0.381,0.6826,0.5874,0.3968,0.3016,0.2222,-0.0634,-0.254,-0.0794,-0.2064,-0.4286,-0.6826,-0.8096,1,-1,-1,1,-1,-1,0,-0.8334,-1,-0.4736,-0.2456,-0.2808,-0.1052,-0.1404,-0.1228,0.0878,0.0176,0.2632,0.7368,0.965,0.8948,1,0.5614,0.5438,0.4736,0.421,0.5088,0.2982,0.4912,0.772,0.9122,0.8772,0.5264,0.5264,0.8596,0.9122,0.772,0.5438,0.4386,0.3684,-0.0176,'9'
-0.5532,0.1362,0.1724,0.2224,0.2626,0.6052,0.6492,0.9038,1,0.6332,0.6352,0.6152,0.6432,0.3366,0.3206,0.1504,0.0642,-0.008,0.1904,0.1482,0.2926,0.2546,0.521,0.515,0.3386,0.1604,0.0682,0.0722,0.002,-0.0662,0.04,0.0922,-0.5358,0.2674,0.3098,0.2532,0.3158,0.6266,0.7316,0.8466,1,0.7336,0.3804,0.3662,0.6508,0.5398,0.2372,0.1766,0.0394,0.0374,0.104,0.114,0.0998,0.1806,0.455,0.4834,0.3884,0.1564,-0.005,-0.0898,-0.0636,-0.0676,0.0252,0.1726,-0.5426,0.3074,0.3462,0.2838,0.3376,0.6376,0.7346,0.849,1,0.6764,0.342,0.3678,0.562,0.5168,0.506,0.4066,0.1996,0.1564,0.1112,0.1112,0.1414,0.1802,0.3916,0.4154,0.3204,0.26,0.1434,0.1068,0.0118,0.1306,0.2966,0.3248,-0.4196,0.3382,0.3238,0.2254,0.163,0.6306,0.6044,1,0.892,0.2158,0.1942,0.4388,0.4316,0.6236,0.6618,0.6714,0.6954,0.705,0.6354,0.446,0.446,0.6594,0.7842,0.7602,0.6978,0.5132,0.4748,0.295,0.2734,0.2566,0.3142,0.494,-0.2682,0.3394,0.2154,0.181,0.5536,0.6354,0.72,0.6908,-0.0014,-0.1652,-0.1624,-0.1652,-0.115,-0.358,-0.1308,0.181,0.284,0.5984,0.8362,0.8362,0.7622,0.6644,0.8336,1,0.992,0.86,0.6142,0.58,0.4056,0.366,0.3606,0.329,-0.0424,0.5686,0.3334,0.4542,0.9248,0.768,0.1732,-0.147,-0.4248,-0.6078,-0.6666,-0.4772,-0.6078,-0.5522,-0.4346,-0.281,-0.0686,-0.0522,0.3824,0.6406,1,0.9478,0.8692,0.8954,0.8594,0.9248,0.8628,0.464,0.317,0.196,0.219,0.2648,-0.1604,0.5372,0.329,0.2628,-0.0546,-0.038,-0.3454,-0.4248,-0.6728,-0.795,-0.7224,-0.762,-0.5472,-0.4546,-0.5372,-0.633,-0.5966,-0.1868,0.028,0.3554,0.5834,0.9802,1,0.7454,0.6992,0.8116,0.5934,0.1108,-0.091,-0.0776,0.028,-0.038,-0.619,-0.1904,-0.0476,0.0952,0.2858,0.3334,0.7142,0.7142,0.9524,1,0.8572,0.762,0.762,0.4286,0.5714,0.5238,0.381,0.2858,0.0476,0.4286,0.4762,0.4762,0.7142,0.6666,0.4762,0.5238,0.3334,0.381,0.2858,0.0476,0.4762,0.381,-0.577,0.0384,0.0384,0.1154,0.2308,0.6154,0.577,1,1,0.923,0.8846,1,0.9616,0.577,0.5384,0.3846,0.3462,0.1924,0.1924,0.1924,0.1538,0.5384,0.6154,0.6154,0.577,0.2692,0.3462,0.1924,0.1924,0.1538,0.1924,0.3076,-0.3334,0.2,0.0666,0.04,0.4666,0.44,0.4666,0.3866,-0.28,-0.3066,-0.36,0.0134,-0.0134,-0.3334,-0.0666,-0.0134,0.12,0.2534,0.8666,0.84,0.8134,0.7866,0.8666,0.92,1,0.52,0.3866,0.3066,0.0934,0.2,0.36,0.3334,-1,-1,-1,-1,-1,-1,-1,-1,-0.9188,-0.9478,-0.3818,0.6604,0.9362,0.9506,0.7242,0.55,0.2744,0.1466,0.042,-0.0972,-0.254,-0.3962,-0.521,-0.6256,-0.701,-0.8056,-0.8956,-0.9158,-0.9304,-0.9216,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.975,-0.9784,-0.6302,0.437,-0.1352,-0.0906,-0.271,-0.3442,-0.4198,-0.5676,-0.6958,-0.773,-0.8432,-0.8706,-0.898,-0.9056,-0.9248,-0.926,-0.9426,-0.9382,-0.9498,-0.9546,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8868,-0.9134,-0.66,-0.485,-0.5678,-0.54,-0.5494,-0.5894,-0.4708,-0.334,-0.48,-0.8448,-0.94,-0.8386,-0.7634,-0.55,-0.5368,-0.33,-0.33,-0.3834,-0.5634,-0.5234,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,-0.7428,-1,-0.9428,-0.8858,-0.8,-0.8,-0.4858,-0.6286,-0.9142,-0.9428,-0.9714,-1,-0.9714,-0.8858,-0.8286,-0.7142,-0.8286,-0.8286,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.9324,-0.5992,-0.5754,-0.5268,-0.542,-0.5318,-0.5168,-0.5348,-0.5404,-0.5744,0.0066,-0.8134,0.553,-0.5484,0.0296,1,0.5796,0.0786,1,-0.2094,0.1162,0.5348,0.8604,1,1,0.9534,0.721,0.4884,0.1628,0.2094,0.5348,0.4418,0.3488,0.3954,0.7674,0.814,0.814,0.814,0.9534,0.907,0.7674,0.5348,0.3954,0.4884,0.3954,0.3488,0.2094,-0.1628,-0.1628,-0.1628,-0.628,-0.0506,0.293,0.5556,0.697,0.899,0.9192,1,0.6566,0.3738,0.2526,0.1718,0.697,0.7374,0.192,0.2526,0.6162,0.596,0.596,0.3738,0.4748,0.8384,0.7172,0.3738,0.394,0.4344,0.2122,0.3132,0.0506,0.091,-0.3738,-0.495,-0.798,-0.0962,0.2116,0.5192,0.7692,1,0.9038,0.7308,0.25,0.1538,0.1346,0.2692,0.3654,0.3462,0.1346,0.2692,0.4424,0.673,0.6538,0.5384,0.5384,0.6924,0.5192,0.1538,0.1924,0.2116,0.0576,-0.077,-0.173,-0.2308,-0.4038,-0.4616,-0.9038,1,-1,-1,1,-1,-1,0.6,-0.8334,-1,-0.4426,-0.3934,-0.2132,-0.1312,-0.1804,-0.082,-0.2296,0.0328,0.2296,0.3606,0.8032,0.9344,0.9016,0.5246,0.2296,0.2622,0.8032,1,0.8196,0.623,0.5902,0.5574,0.3934,0.3442,0.3278,0.3442,0.4262,0.3278,0.246,0.3114,0.2132,-0.0984,'9'
-0.4978,0.4532,0.5274,0.795,0.9138,0.5274,0.5216,0.2482,0.1798,0.0194,0.156,0.1084,0.1738,0.1264,0.272,0.3046,0.5602,0.688,0.7414,0.8782,0.6196,0.7622,0.7176,0.9882,1,0.7236,0.7414,0.5334,0.4592,0.4384,0.5066,0.483,-0.5464,0.256,0.3044,0.577,0.6612,0.735,0.865,0.5898,0.4446,0.2688,0.3886,0.2764,0.4268,0.3808,0.5082,0.5414,0.786,0.87,0.8394,1,0.7732,0.9006,0.7708,0.8878,0.809,0.8114,0.8038,0.4778,0.5388,0.4496,0.5618,0.3222,-0.4834,0.257,0.289,0.454,0.4886,0.952,1,0.4806,0.3502,0.1132,0.233,0.0998,0.2624,0.0918,0.3076,0.1532,0.4142,0.4354,0.7842,0.7816,0.6112,0.5632,0.5898,0.6458,0.4994,0.5712,0.4142,0.4222,0.1186,0.2624,0.1798,0.3156,-0.3314,0.3372,0.3076,0.5096,0.6048,1,0.8604,0.3492,0.1738,0.0134,-0.1322,-0.058,-0.0936,-0.0222,-0.061,0.0104,0.257,0.4264,0.5038,0.7058,0.7384,0.6106,0.4532,0.6136,0.6374,0.6998,0.6344,0.48,0.471,0.3164,0.2898,0.3818,-0.1538,0.4046,0.3546,0.5452,0.9096,0.9766,0.3746,0.3044,0.107,-0.1104,-0.214,-0.0468,0.0368,-0.1538,-0.117,0.0302,0.0468,0.2944,0.5886,0.9498,1,0.99,0.9766,0.9198,0.7994,0.9398,0.8294,0.8294,0.6054,0.6322,0.505,0.4882,-0.2204,0.246,0.2678,0.3442,0.6976,0.5482,-0.0602,-0.2824,-0.3042,-0.5556,-0.388,-0.3078,-0.3224,-0.3952,-0.1948,-0.246,-0.2386,0.031,0.2276,0.5956,1,0.9198,0.8542,0.8798,0.9016,0.756,0.6758,0.5192,0.348,0.3006,0.2604,0.0018,-0.0992,0.3802,0.4214,0.4752,0.3224,0.0868,-0.2644,-0.6528,-0.69,-0.748,-0.6818,-0.6364,-0.5166,-0.4546,-0.6776,-0.3472,-0.2438,-0.1652,0.1612,0.4298,0.8058,1,0.9174,0.7852,0.8472,0.781,0.6116,0.248,-0.0166,-0.091,0.0124,-0.1488,-0.3334,0.5294,0.6862,0.6078,0.6078,0.2156,0.3334,0.0588,-0.0196,-0.098,0.0196,-0.0196,0.1764,0.098,0.0588,0.098,0.451,0.4902,0.7254,0.7648,0.647,0.6078,0.7648,0.9216,1,0.9608,0.8432,0.7648,0.4902,0.5686,0.4902,0.6862,-0.8696,0.2608,0.3478,0.4782,0.5652,0.1304,0.2608,-0.0434,-0.1304,-0.4348,-0.0434,-0.087,-0.174,-0.174,-0.087,0,0.2174,0.3914,0.5218,0.6086,0.3478,0.2174,0.3478,1,1,0.5652,0.6522,0.4348,-0.087,-0.087,0.1304,0.0434,-0.179,0.1578,0.179,0.2632,0.6422,0.5158,-0.0106,-0.0316,-0.0316,-0.2842,-0.221,-0.1158,-0.2842,-0.2632,-0.1158,-0.1368,-0.0106,0.1368,0.3894,0.621,0.979,1,0.8106,0.8106,0.8106,0.5578,0.6,0.4948,0.2,0.3894,0.2632,0.0526,-1,-1,-1,-1,-1,-0.9728,-0.9762,-0.9608,-0.968,-0.9632,-0.745,0.3238,0.8446,0.076,0.0238,0.0238,-0.0178,-0.1388,-0.2788,-0.4472,-0.6074,-0.631,-0.7022,-0.7818,-0.8884,-0.9656,-0.9728,-0.9762,-0.974,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9716,-0.9766,-0.6748,-0.1866,0.9018,-0.1096,0.0946,0.846,0.827,0.6982,0.4176,0.089,-0.1112,-0.248,-0.422,-0.667,-0.7256,-0.7974,-0.8332,-0.8924,-0.9286,-0.9486,-0.942,-0.9526,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9,-0.9668,0.1232,0.66,0.74,0.5566,-0.5224,-0.6712,-0.5534,-0.5624,-0.5956,-0.576,-0.588,-0.514,-0.848,-0.904,-0.788,-0.8968,-0.73,-0.6,-0.5334,-0.8734,-0.6468,-0.7268,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7428,1,1,1,1,1,1,-0.5142,-0.7428,-0.7142,-0.7714,-0.8858,-0.7714,-0.7714,-0.2572,-0.3714,-0.6858,-0.7142,-0.9142,-0.8,-0.8286,-0.8572,-0.9142,-0.1428,-1,-1,-1,-1,0.817,0.8334,0.8762,0.9178,0.9622,1,1,1,1,0.858,0.6948,0.6712,0.6166,0.5964,0.5502,0.5034,0.4698,0.408,0.393,0.6142,-0.7866,0.1176,-0.2262,-0.1782,-0.0572,0.2168,0.6764,1,-0.6924,-0.5208,-0.503,-0.3846,-0.2072,-0.2544,-0.0946,-0.0178,0.0118,0.0532,0.3314,0.4498,0.7396,0.639,0.8224,0.864,1,0.8816,0.8166,0.6686,0.6094,0.5976,0.6746,0.574,0.5088,0.4852,0.3846,0.1066,-0.0828,-0.0236,-0.1242,-0.3018,-0.7132,-0.5838,-0.5152,-0.4626,-0.3858,-0.3656,-0.3212,-0.1474,0.0182,0.1718,0.2444,0.3858,0.6202,0.6162,0.7454,0.8666,1,0.9718,0.899,0.899,0.7656,0.7374,0.8142,0.7616,0.6728,0.6526,0.6566,0.4586,0.4222,0.4788,0.3778,0.0586,-0.8942,-0.5198,-0.5242,-0.5374,-0.5904,-0.6432,-0.4626,-0.26,0.2512,0.4846,0.3964,0.3876,0.771,0.8018,0.4096,0.8326,1,0.8854,0.8854,0.718,0.8282,0.7666,0.674,0.6608,0.652,0.5242,0.6212,0.3788,-0.022,0.1454,0.066,-0.0926,-0.1096,-1,-1,1,-1,-1,0,-0.1666,-1,-0.3334,-0.4264,-0.0388,0.0698,-0.0078,-0.1162,0.0388,0.1782,0.0232,0.3178,0.876,1,0.969,0.5348,0.1628,0.0232,0.0232,0.5348,0.5038,0.2248,-0.0388,0.0698,0.814,0.5658,-0.1938,-0.1472,-0.1008,0.3178,0.3488,0.0388,0.0232,-0.628,'10'
-0.5098,0.415,0.4706,0.9052,1,0.5032,0.4314,-0.0262,0.1144,-0.1896,0.0718,-0.1308,0.1242,-0.0098,0.121,0.0522,0.2844,0.2876,0.6862,0.8366,0.5196,0.3594,0.3954,0.5948,0.5228,0.5032,0.415,0.4052,0.4444,0.415,0.4706,0.33,-0.2588,0.4462,0.4546,0.779,0.7874,0.9664,1,0.4966,0.5524,0.1944,0.2588,0.2784,0.3846,0.1804,0.3006,0.2168,0.3566,0.53,0.7734,0.7034,0.5888,0.5104,0.6672,0.5916,0.586,0.5664,0.5524,0.4994,0.2084,0.2924,0.3734,0.4182,-0.3234,0.3324,0.3176,0.54,0.54,1,0.9318,0.27,0.175,-0.0118,-0.1008,0.1484,0.0416,0.0624,-0.0238,0.184,0.2078,0.5104,0.5934,0.905,0.7834,0.549,0.5252,0.6944,0.6618,0.6736,0.5134,0.4926,0.4244,0.3532,0.3888,0.4362,-0.1666,0.4166,0.3272,0.4846,0.8518,1,0.6112,0.3858,0.0402,0.0216,0.003,-0.0586,0.0092,0.0432,0.1388,0.0956,0.2284,0.5154,0.7376,0.892,0.9044,0.8396,0.818,0.9044,0.929,0.9382,0.9228,0.713,0.6944,0.5494,0.5186,0.5524,-0.219,0.2632,0.2326,0.348,0.8404,0.7826,0.1816,-0.0696,-0.1342,-0.331,-0.3242,-0.124,-0.2768,-0.2462,-0.331,-0.253,-0.0662,0.2326,0.4364,0.7792,1,0.9186,0.7488,0.8472,0.8574,0.7148,0.6536,0.5008,0.4092,0.3956,0.4092,0.3752,-0.1972,0.2694,0.2912,0.3598,0.7504,0.584,0.056,-0.302,-0.349,-0.5118,-0.4756,-0.4178,-0.425,-0.5118,-0.4322,-0.3526,-0.2368,-0.056,0.3274,0.4466,1,0.982,0.8806,0.7614,0.7614,0.783,0.5154,0.3888,0.3708,0.2044,0.302,0.2984,-0.1506,0.654,0.5102,0.4516,0.2,0.0606,-0.4292,-0.4516,-0.627,-0.8472,-0.8112,-0.555,-0.5866,-0.4516,-0.5056,-0.5192,-0.2764,-0.1146,0.0248,0.245,0.6314,0.946,1,0.9056,0.7932,0.8382,0.6898,0.5506,0.2944,0.254,0.0832,0.1506,-0.4546,0.409,0.5,0.5454,0.6818,0.1818,0.2272,-0.1818,-0.091,-0.3182,-0.1818,-0.3636,-0.091,-0.1364,-0.091,-0.1364,0.2272,0.3182,0.8636,1,0.7272,0.3636,0.2728,0.5454,0.4546,0.7272,0.591,0.591,0.591,0.6818,0.6364,0.6364,-0.3618,0.5744,0.617,0.9148,1,0.5744,0.4042,0.149,0.1064,-0.1064,0.149,0.0212,0.1914,0.149,0.149,0.1064,0.3618,0.3192,0.6596,0.9148,0.617,0.532,0.4894,0.6596,0.4894,0.7022,0.5744,0.7446,0.7022,0.7022,0.7446,0.7022,-0.1566,0.2772,0.3012,0.3976,0.8554,0.7832,0.1326,-0.2772,-0.1808,-0.1808,-0.0602,0.012,-0.2772,-0.3734,-0.3494,-0.229,-0.0362,0.3976,0.4698,0.9518,1,0.8796,0.8314,0.8554,0.8796,0.7832,0.7832,0.6626,0.5904,0.518,0.4458,0.3976,-1,-1,-1,-0.9856,-0.9824,-0.9742,-0.9832,-0.9872,-0.98,-0.9502,-0.496,0.467,0.6744,-0.0578,-0.098,-0.246,-0.3922,-0.5242,-0.5732,-0.6406,-0.7492,-0.7676,-0.7138,-0.734,-0.8176,-0.8376,-0.902,-0.9534,-0.98,-0.98,-1,-1,-1,-1,-1,-1,-0.9776,-0.9772,-0.7694,-0.9192,-0.7752,0.155,0.7484,0.1516,0.4084,0.75,0.3112,0.3734,0.0908,-0.1452,-0.3642,-0.4878,-0.5714,-0.7304,-0.7782,-0.7548,-0.763,-0.8356,-0.8478,-0.9022,-0.93,-0.9256,-0.9392,-1,-1,-1,-1,-1,-1,-0.96,-0.9134,-0.5868,0.21,0.6666,0.7666,0.74,0.2132,-0.5978,-0.7246,-0.6934,-0.6112,-0.6068,-0.509,-0.4778,-0.68,-0.808,-0.742,-0.864,-0.9468,-0.6868,-0.68,-0.62,-0.5268,-0.2968,-0.1934,-0.2834,-1,-1,-1,-1,-1,-1,-0.8286,0.7428,1,1,1,1,1,1,1,-0.6,-0.7714,-0.8,-0.8858,-0.8572,-0.8,-0.7714,-0.8858,-0.7142,-0.9142,-0.9714,-0.7142,-0.6286,-0.8858,-0.9428,-0.9142,-0.9428,-0.7714,-1,-1,-1,0.7526,0.7672,0.7882,0.834,0.8756,0.9054,0.9402,0.9904,1,0.7672,0.5036,0.4242,0.386,0.3644,0.3414,0.3344,0.3624,0.3936,0.5234,0.7136,-0.72,0.0824,0.0538,0.063,0.26,0.5918,0.9776,0.35,-0.5306,-0.4272,-0.3428,-0.3428,-0.1972,-0.2254,-0.0516,-0.0422,0.0704,0.047,0.2018,0.3568,0.4132,0.6244,0.817,0.8686,0.9436,1,0.8638,0.7606,0.5586,0.6666,0.6338,0.5352,0.507,0.338,0.5728,0.2394,0.061,-0.1502,-0.1596,-0.399,-0.748,-0.8232,-0.7546,-0.6564,-0.5418,-0.3814,-0.2112,-0.27,-0.1292,0.0016,0.0376,0.3518,0.6334,0.676,0.7054,0.987,1,0.9608,0.9148,0.9248,0.9346,0.7938,0.8166,0.8102,0.676,0.712,0.6268,0.5842,0.2504,0.3486,0.3618,0.0802,-0.6672,-0.274,-0.2202,-0.4554,-0.479,-0.3278,-0.3244,-0.1026,0.1294,0.4454,0.4084,0.5564,0.9362,0.9226,0.6908,0.9394,1,0.9428,0.8522,0.7076,0.9294,0.731,0.6404,0.6134,0.674,0.6436,0.489,0.5496,0.4656,0.3614,0.3882,0.0016,-0.3792,-1,-1,1,-0.8,-1,1,0.1666,1,-0.5748,-0.3858,-0.2756,-0.1654,-0.6692,-0.1338,-0.0236,-0.2756,-0.1024,0.3228,0.4646,1,0.8268,0.3858,0.1812,-0.1654,-0.0394,0.307,0.1968,-0.0394,0.1024,-0.0236,0.2598,-0.0394,-0.0866,-0.3386,-0.2756,0.0394,0.0236,0.0078,-0.0866,-0.4174,'10'
-0.5038,0.5216,0.6174,0.5696,0.7428,0.5844,0.8356,0.71,0.133,0.133,0.0194,0.0822,-0.0344,0.0822,0.0134,0.2526,0.2766,0.5186,0.4978,0.9642,1,0.7818,0.7638,0.7428,0.7818,0.7668,0.8026,0.6442,0.5426,0.4888,0.5874,0.6562,-0.5756,0.2674,0.3126,0.522,0.5842,0.8954,1,0.5898,0.3438,0.0636,0.2248,0.058,0.2446,0.14,0.372,0.324,0.5786,0.5898,0.8954,0.9632,0.686,0.8048,0.7284,0.8528,0.6662,0.9292,0.768,0.6096,0.5248,0.7002,0.6718,0.7312,-0.3882,0.3712,0.3938,0.5326,0.5354,0.9746,1,0.3116,0.3172,0.068,0.1558,0.1416,0.2578,0.1332,0.2748,0.2408,0.408,0.5638,0.8102,0.7338,0.9604,0.8272,0.9576,0.8272,0.949,0.9094,0.8556,0.8016,0.762,0.7252,0.6998,0.6856,-0.315,0.4442,0.4216,0.6348,0.5574,0.929,0.832,0.3214,0.202,0.034,-0.1082,0.1212,-0.0114,0.147,0.0146,0.2214,0.1728,0.5348,0.5896,0.8902,0.8384,0.987,0.9548,1,0.8676,0.8384,0.8998,0.8514,0.7286,0.6768,0.6736,0.7124,-0.2532,0.3442,0.3116,0.5844,0.5942,0.7208,0.2824,0.198,-0.1006,-0.1234,-0.1266,-0.1558,-0.0616,-0.0974,-0.0032,-0.052,0.1072,0.341,0.5358,0.685,0.8994,0.9318,1,0.8442,0.7662,0.7792,0.7728,0.578,0.5324,0.4026,0.3734,0.5,-0.1482,0.3888,0.674,0.7888,0.7074,0.6112,-0.1074,-0.2186,-0.1444,-0.4814,-0.426,-0.3,-0.3222,-0.2666,-0.2888,-0.2592,-0.126,0.1778,0.4,0.6,0.9038,1,0.9592,0.874,0.7408,0.8,0.7296,0.6592,0.4888,0.426,0.2592,0.2962,-0.0416,0.4704,0.7024,0.733,0.2954,-0.0066,-0.501,-0.5098,-0.6368,-0.7156,-0.7768,-0.7374,-0.698,-0.7462,-0.7374,-0.7024,-0.593,-0.4792,-0.2386,0.1684,0.6806,1,0.8644,0.5054,0.4924,0.6236,0.6368,0.431,0.3042,0.1904,0.0634,-0.0372,-0.4782,0.4782,0.5652,0.3044,0.2174,0.2608,0.3914,0.2174,0.1304,0.087,0.0434,0.0434,-0.2174,0.0434,-0.2174,0.3478,0.4782,0.3478,0.3478,0.9566,0.913,1,0.913,0.7392,0.7392,0.6086,0.6956,0.6522,0.4782,0.3914,0.6522,0.7826,-0.625,0.4584,0.5834,0.5,0.75,0.5416,0.5,0.5,-0.125,-0.0834,-0.25,-0.0834,-0.1666,-0.375,-0.3334,0.1666,0.0834,0.1666,0.5834,0.75,1,0.9166,0.8334,0.875,0.8334,0.9584,0.75,0.5834,0.6666,0.5416,0.5834,0.2916,-0.3882,0.1764,0.2236,0.4352,0.4352,0.6,0.2706,0.0352,-0.2,-0.2236,-0.1294,-0.153,-0.247,-0.1294,0.0118,-0.0588,-0.0118,0.3412,0.4118,0.6706,0.6706,1,1,0.6706,0.553,0.7412,0.553,0.6236,0.3882,0.4588,0.3412,0.3176,-1,-1,-0.9594,-0.9554,-0.9126,-0.6568,-0.0578,0.1046,-0.1898,-0.7584,-0.7178,0.7644,0.7604,0.6812,0.5654,0.4172,0.2852,0.196,-0.0214,-0.0884,-0.2224,-0.2954,-0.5818,-0.8376,-0.9472,-0.9452,-0.9492,-0.9554,-1,-1,-1,-1,-1,-1,-1,-0.9666,-0.9636,-0.696,0.0204,-0.3662,-0.3138,-0.3594,-0.2434,-0.2048,0.2926,0.7772,0.9128,0.7384,0.3602,0.1258,-0.0076,-0.2578,-0.4094,-0.558,-0.6452,-0.7816,-0.8818,-0.9234,-0.9288,-0.9364,-0.9454,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.92,-0.8468,0.2232,-0.24,-0.4568,-0.1968,0.26,0.26,-0.4846,-0.5512,-0.4756,-0.49,-0.508,-0.564,-0.616,-0.692,-0.698,-0.76,-0.732,-0.6168,-0.3534,-0.4934,-0.5468,-0.5734,-0.82,-1,-1,-1,-1,-1,-1,-1,-0.4286,0.2,1,1,-0.3142,-0.6572,-0.4572,-0.5714,0.0858,0.5428,-0.2858,-0.7714,-0.8286,-0.8286,-0.9428,-0.7428,-0.8,-0.7142,-0.5142,-0.6858,-0.6,-0.6286,-0.8286,-1,-1,-0.7714,-1,-1,-1,-1,-1,0.9896,1,1,1,1,1,1,1,1,0.7902,0.6472,0.6178,0.5772,0.5654,0.5456,0.538,0.5316,0.5758,0.6392,0.7382,-0.8,0.1412,-0.2722,-0.2744,0.3654,0.5186,0.5004,-0.1584,-0.5144,-0.156,-0.0752,-0.0096,0.0058,-0.0558,0.1176,0.0712,0.0982,0.4374,0.5838,0.6994,0.8574,1,0.9152,0.765,0.6494,0.6878,0.5954,0.7226,0.7226,0.6262,0.6878,0.6878,0.5338,0.5144,0.5376,0.318,0.183,0.2138,0.2216,-0.0134,0.2832,0.0244,0.0314,0.049,0.035,0.1328,0.1294,0.084,0.3532,0.4616,0.7132,0.9196,0.944,1,0.8672,0.6294,0.7448,0.7448,0.6854,0.6574,0.7412,0.6644,0.6154,0.6748,0.8076,0.6714,0.591,0.4546,0.2658,0.0454,0.1014,0.077,-0.3476,-0.3476,-0.1026,0.0884,-0.114,0.0256,0.0484,0.0484,0.3304,0.547,0.7264,1,0.8462,0.8888,0.6182,0.6154,0.6638,0.718,0.6552,0.6524,0.5868,0.4216,0.4986,0.624,0.7436,0.5214,0.3874,0.2962,0.0484,0.0086,-0.2364,-0.4216,1,-1,-1,1,-0.8,-1,-0.2,0.2666,-1,-0.2374,-0.2518,0.036,0.0216,-0.1654,0.0504,0.0216,-0.0648,0.0504,0.3094,0.6978,1,0.6258,0.482,0.3382,0.2086,0.2086,0.108,0.0072,0.0504,0.108,0.482,0.108,0.151,-0.036,-0.1798,0.0936,0.3526,0.2374,0.223,-0.0216,-0.4532,'11'
-0.9858,0.4452,0.7386,0.5478,0.9046,0.9788,0.5902,0.7068,0.6502,0.0282,0.2084,0.1202,0.0424,0.1378,-0.0282,0.3534,0.3534,0.5194,0.728,0.6784,0.8092,0.8022,0.7492,1,0.947,0.7986,0.781,0.5972,0.4806,0.5512,0.576,0.53,-0.8888,0.2528,0.5136,0.3386,0.9078,0.965,0.3768,0.7552,0.6694,0.1732,0.3132,0.0238,0.2432,0.2432,0.078,0.3958,0.2878,0.6724,0.7806,0.5644,1,0.9842,0.5644,0.717,0.5994,0.6852,0.7266,0.3546,0.6312,0.5802,0.3832,0.5962,-0.9054,0.1726,0.371,0.2184,0.829,0.8076,0.374,0.5848,0.371,0.1146,0.1084,-0.1604,0.0626,-0.0778,0.087,0.1268,0.0718,0.4534,0.3252,0.9022,1,0.6946,0.6824,0.5756,0.1328,0.2336,0.2122,0.5756,0.539,0.2274,0.4382,0.2886,-0.8724,0.3028,0.4468,0.5876,0.892,0.6956,0.6924,0.6564,-0.0704,0.0442,-0.2308,0.0638,-0.0344,-0.0474,-0.0442,-0.0082,0.1654,0.257,0.6334,0.7872,0.9018,1,0.8396,0.6202,0.6236,0.617,0.712,0.5712,0.5352,0.5418,0.5418,0.581,-0.549,0.3216,0.3216,0.6328,0.6084,0.6818,0.6784,0.1118,0.0034,-0.2762,-0.1504,-0.1224,-0.1888,-0.1958,-0.07,-0.0804,0.2342,0.3286,0.549,0.6888,0.8496,1,0.9616,0.8076,0.8076,0.7692,0.7832,0.7202,0.6224,0.423,0.4896,0.521,-0.3694,0.265,0.1888,0.4096,0.518,0.5984,0.0482,-0.1044,-0.4418,-0.5742,-0.4498,-0.3816,-0.3454,-0.3092,-0.265,-0.3614,-0.1244,0.2088,0.3856,0.5702,0.8474,1,0.9398,0.7752,0.763,0.743,0.7108,0.5742,0.3694,0.3816,0.3132,0.4498,-0.3048,0.419,0.2858,0.319,0.2286,0.2762,-0.3952,-0.5334,-0.7142,-0.7762,-0.7048,-0.5524,-0.4714,-0.4714,-0.381,-0.4666,-0.3572,-0.1904,0.019,0.3714,0.5952,1,0.8904,0.7238,0.581,0.5428,0.5428,0.3762,0.2428,-0.019,-0.0048,0.1048,-0.75,0.25,0.4166,0.2916,0.2084,0.0834,0.1666,0.0416,0.1666,0,-0.2916,0.0834,0.0416,0.0834,0.2084,-0.0416,0.25,0.25,0.375,0.75,0.8334,0.5416,0.9166,1,0.7916,0.875,0.75,0.2084,0.4584,0.3334,0.4584,0.25,-0.9246,0.4716,0.7358,0.585,0.9246,1,0.5472,0.7358,0.6982,0.2076,0.2076,0.2452,-0.0188,0.2452,0.0944,0.3208,0.3208,0.6226,0.8114,0.434,0.585,0.6226,0.585,0.9246,0.849,0.849,0.7358,0.8114,0.6982,0.7358,0.6604,0.434,-0.8834,0.1456,0.3592,0.165,0.7864,0.7864,0.3204,0.5728,0.398,0.0874,0.1262,-0.2816,0.1068,0.0292,0.1456,0.2038,0.1068,0.5728,0.534,0.8058,1,0.8058,0.67,0.6504,0.2234,0.4758,0.4174,0.4564,0.5534,0.0874,0.5146,0.4758,-1,-1,-1,-0.9574,-0.9454,-0.5048,-0.699,-0.654,-0.4502,-0.455,-0.6966,0.6824,0.9906,0.936,0.8934,0.8626,0.6612,0.308,0.09,-0.1754,-0.4384,-0.4028,-0.4502,-0.5498,-0.628,-0.571,-0.6256,-0.7914,-0.891,-0.962,-0.9598,-0.9574,-1,-1,-1,-1,-0.954,-0.9406,-0.0438,-0.5208,-0.5342,-0.2952,-0.0146,-0.138,0.44,0.7564,0.9226,0.9494,0.9148,0.6454,0.4152,0.083,-0.184,-0.5218,-0.6004,-0.669,-0.6352,-0.7318,-0.7182,-0.7586,-0.8238,-0.8742,-0.9058,-0.9068,-0.926,-1,-1,-1,-1,-0.9734,-0.91,-0.1168,0.3066,0.0632,-0.0134,-0.0334,0.0366,-0.4826,-0.68,-0.595,-0.5376,-0.6356,-0.6,-0.6178,-0.56,-0.5668,-0.6378,-0.849,-0.8968,-0.77,-0.8734,-0.8868,-0.8168,-0.5868,-0.5034,-0.6668,-0.6068,-0.72,-1,-1,-1,-1,-0.8572,1,1,-0.1428,-0.7142,-0.4286,-0.6858,0.1428,0.6858,-0.5142,-0.5714,-0.3428,-0.4858,-0.6,-0.8286,-0.6572,-0.6572,-0.7142,-0.6572,-0.9714,-0.9142,-0.7428,-0.9142,-0.7428,-0.8572,-0.8286,-0.8286,-0.9428,-0.7428,-1,1,1,1,1,1,1,1,1,1,0.9708,0.6804,0.662,0.6332,0.6042,0.5806,0.5514,0.507,0.4406,0.421,0.6018,-0.9334,0,-0.2244,-0.0998,0.358,0.7654,0.7026,0.15,-0.501,0.0056,-0.0316,0.0018,-0.0094,-0.0094,0.1284,0.0578,0.229,0.2254,0.4078,0.7206,0.8994,1,0.9702,0.7914,0.5642,0.6872,0.6984,0.609,0.6164,0.609,0.6312,0.527,0.5866,0.3854,0.3744,0.3706,0.136,0.0876,0.08,-0.162,-0.0258,-0.097,0.105,0.1406,-0.0496,-0.0456,0.0496,0.1366,0.2118,0.398,0.7148,0.9604,1,0.9762,0.9842,0.8614,0.81,0.8336,0.794,0.8218,0.7862,0.7742,0.7782,0.7306,0.695,0.7108,0.6832,0.307,0.2872,0.0812,0.208,0.0298,-0.1354,-0.3094,-0.0326,0.1478,0.0918,0.0234,-0.0264,0.0856,0.322,0.6392,0.8818,1,0.9564,0.8258,0.664,0.5552,0.8818,0.801,0.776,0.5458,0.552,0.5116,0.5832,0.4276,0.4588,0.4402,0.3966,0.157,-0.0794,-0.1976,-0.353,-0.549,1,-1,-1,1,-0.8,-1,1,0.2334,-1,0.0082,0.1056,-0.2682,-0.0406,0.0082,0.0082,0.0244,-0.122,0.2196,0.2358,0.4796,1,0.8048,0.5284,0.2358,0.057,0.057,0.317,0.122,0.0406,-0.0244,0.057,0.122,-0.0244,-0.0244,0.0082,0.0894,0.252,0.1708,-0.0406,-0.1056,-0.5284,'11'
-0.363,0.293,0.2876,0.578,0.5456,1,0.9758,0.6882,0.6452,0.4248,0.3844,0.3306,0.2876,0.344,0.2796,0.4732,0.4732,0.5134,0.578,0.4866,0.3924,0.3252,0.4544,0.5054,0.5,0.5618,0.5162,0.379,0.2392,0.2526,0.2258,0.406,-0.3318,0.2512,0.237,0.4004,0.3578,0.7274,0.6636,1,0.9124,0.5332,0.4076,0.211,0.1636,0.3104,0.237,0.1162,0.0142,0.0474,-0.109,0.0072,0,0.1018,0.2086,0.327,0.4052,0.3128,0.2298,0.0214,-0.0592,-0.0214,-0.0498,0.0758,-0.3902,0.156,0.1146,0.378,0.522,0.744,0.839,1,0.761,0.6926,0.6902,0.7586,0.3756,0.4024,-0.0024,-0.0146,-0.3366,-0.3756,-0.1414,-0.2098,-0.1074,-0.2024,-0.0366,0.0342,0.2366,0.2756,0.1878,-0.0682,-0.2024,-0.144,-0.161,-0.117,-0.382,0.1682,0.0978,0.3402,0.5724,0.7314,0.9166,1,0.8462,0.8748,0.515,0.4994,0.1994,0.116,-0.1082,-0.2438,-0.2516,-0.283,-0.1682,-0.15,-0.0796,-0.0248,0.0066,0.2856,0.2856,0.5488,0.4394,0.1082,-0.0508,0.116,0.0638,0.1812,-0.3168,0.3628,0.2638,0.3558,0.6814,0.8194,0.9858,1,0.7876,0.7204,0.0762,-0.1646,-0.1752,-0.4124,-0.4762,-0.5716,-0.6814,-0.5858,-0.5504,-0.4124,-0.4938,-0.3912,-0.292,-0.016,0.3204,0.3238,-0.0442,-0.2496,-0.292,-0.2778,-0.2638,0.0514,-0.286,0.6186,0.4812,0.5654,0.5698,0.8094,0.9158,1,0.694,0.521,-0.1264,-0.1884,-0.4502,-0.5566,-0.592,-0.6674,-0.419,-0.4236,-0.521,-0.6008,-0.5654,-0.357,-0.3392,-0.0066,0.113,0.082,-0.2682,-0.5876,-0.4856,-0.7384,-0.694,-0.4944,0.0506,0.728,0.3174,0.3974,0.7334,0.936,1,0.7014,0.5574,0.2694,-0.1094,-0.136,-0.3014,-0.3546,-0.312,-0.664,-0.7174,-0.7494,-0.9894,-0.872,-0.5414,-0.3974,-0.568,-0.4026,0.1466,0.2214,-0.2746,-0.3974,-0.424,-0.3174,-0.5946,-0.6266,-0.48,0.16,0.2,0.56,0.56,0.96,1,0.52,0.52,0.08,0.12,0.28,0.32,0.28,0.4,0.4,0.52,0.44,0.72,0.64,0.4,0.4,0.64,0.6,0.64,0.84,0.8,0.6,0.16,0.56,0.52,0.52,-0.451,0.1764,0.1764,0.4902,0.451,0.9608,1,0.5294,0.3334,0.2156,0.2156,0.3334,0.3334,0.4118,0.451,0.451,0.647,0.8432,0.9216,0.8432,0.7254,0.5294,0.4118,0.5294,0.5686,0.4902,0.451,0.4902,0.451,0.4118,0.0588,0.4118,-0.4178,0.1646,0.114,0.2406,0.595,0.7468,0.9746,1,0.7974,0.7216,0.1898,-0.0632,-0.0886,-0.2152,-0.2912,-0.3164,-0.2152,-0.4178,-0.4178,-0.1898,-0.2912,-0.4178,-0.0886,0.038,0.443,0.5696,0.1392,0.0632,-0.038,-0.1392,-0.038,0.038,-1,-1,-1,-1,-1,-1,-0.9656,-0.9672,-0.951,-0.9656,-0.1522,0.9084,0.5892,0.5204,0.5434,0.4042,0.0998,-0.2978,-0.3126,-0.4238,-0.4632,-0.622,-0.7986,-0.9214,-0.9558,-0.9574,-0.9656,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.974,-0.9708,-0.818,-0.9486,0.0616,0.7844,0.3742,0.7324,0.9664,0.7236,0.3406,-0.371,-0.5118,-0.6716,-0.7232,-0.813,-0.902,-0.9242,-0.9302,-0.935,-0.9334,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.8868,-0.6668,-0.5034,-0.1668,-0.628,-0.638,-0.604,-0.622,-0.64,-0.536,-0.65,-0.788,-0.908,-0.946,-0.9,-0.8134,-0.6768,-0.6,-0.64,-0.5834,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,0.1142,1,1,1,1,-0.6572,-0.4858,-0.6572,-0.8572,0,0.3428,-0.8286,-0.8858,-0.9714,-0.5428,-0.5428,-0.6572,-0.9142,-0.8,-0.6858,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.0466,-0.0166,0.0022,2e-04,-0.076,-0.0698,-0.0898,-0.1452,-0.1564,0.0072,-0.7466,0.1882,0.4418,0.786,0.8396,0.8054,0.5292,1,-0.307,-0.1584,0.2376,0.1584,0.0198,-0.0396,0,0.1288,0.594,0.792,0.5148,0.4158,0.6634,0.7326,0.4356,0.5148,0.6138,0.802,0.8218,0.9208,1,0.8514,0.3862,0.2772,0.2278,0.0792,-0.099,-0.2574,-0.1188,-0.1288,-0.1386,-0.5346,-0.3502,-0.462,0.1878,0.1066,-0.1676,-0.066,0.3808,0.3096,0.4416,0.472,0.5432,0.472,0.8478,0.7258,0.5126,0.472,0.5026,0.7664,0.9086,0.7056,1,0.8578,0.4214,0.4314,0.1168,-0.0356,-0.0456,-0.2284,-0.1776,-0.127,-0.1878,-0.5126,-0.0994,0.205,0.615,0.6832,0.3914,0.267,0.41,0.615,0.764,0.8758,0.7888,0.9316,1,0.9566,0.733,0.7018,0.7268,0.8572,0.9192,0.8322,0.7204,0.7702,0.6708,0.7454,0.5528,0.2236,-0.2174,-0.1678,-0.3416,-0.4658,-0.4286,-0.6398,-0.508,-1,-1,1,-1,-1,-1,-0.4334,1,-0.4238,-0.356,-0.017,0.4576,0.4576,0.9662,1,0.356,0.0508,0.2372,0.017,0.2712,0.7628,0.7118,0.2372,0.1864,0.1186,0.1864,0.1694,-0.0678,0.0338,0.1016,0.7796,0.5762,0.5254,0.1356,0.2034,0.1526,-0.2372,-0.305,-0.4576,-0.4576,'12'
-0.597,0.293,0.37,0.4384,0.5616,0.76,1,0.826,0.2488,0.1454,0.1872,0.1872,0.1608,0.2466,0.1454,0.3106,0.3018,0.5992,0.5462,0.7136,0.6916,0.5838,0.5904,0.5352,0.6564,0.6036,0.4648,0.3084,0.2004,0.0528,0.1652,0.2356,-0.6866,0.3708,0.4856,0.3182,0.5072,0.5956,1,0.902,0.4402,0.4498,0.299,0.4186,0.1626,0.4138,0.1986,0.476,0.4498,0.3756,0.4282,0.3206,0.3732,0.3708,0.5646,0.6004,0.6052,0.555,0.3014,0.1292,0.0382,0.1962,0.2584,0.134,-0.5474,0.45,0.5078,0.4736,0.579,0.8264,1,0.7764,0.9236,0.7264,0.9052,0.8052,0.9,0.8394,0.3816,0.2526,0.071,0.071,0.1184,0.0894,0.0684,0.0158,0.2,0.3132,0.5736,0.6578,0.45,0.3474,0.2052,0.1736,0.3264,0.4264,-0.2652,0.4116,0.3398,0.4338,0.6104,0.8232,0.8592,1,0.8066,0.7984,0.5304,0.4834,0.29,-0.0248,-0.094,-0.2128,-0.3536,-0.232,-0.2348,-0.232,-0.232,-0.0442,0.0718,0.2072,0.4586,0.6216,0.6686,0.326,0.2072,0.1188,0.1934,0.2762,-0.1686,0.4222,0.3516,0.541,0.9712,0.9678,1,0.833,0.7752,0.3964,0.1942,0.0208,-0.0434,-0.2616,-0.3772,-0.451,-0.5602,-0.6982,-0.451,-0.5248,-0.4992,-0.5634,-0.3996,-0.1524,0.069,0.3354,0.1686,-0.2232,-0.2616,-0.3516,-0.3418,-0.2488,-0.1952,0.3694,0.4006,0.5262,1,0.8954,0.7142,0.3206,0.324,0.0244,-0.1184,-0.3694,-0.5088,-0.4634,-0.5818,-0.7248,-0.676,-0.662,-0.6934,-0.7038,-0.7038,-0.7944,-0.5436,-0.5192,-0.244,-0.122,-0.3206,-0.5192,-0.4912,-0.6306,-0.6202,-0.5854,-0.0254,0.7552,0.4134,0.5704,0.6906,0.6582,1,0.7782,0.478,0.321,-0.1548,-0.2332,-0.1964,-0.1824,-0.4734,-0.4734,-0.3488,-0.2702,-0.6628,-0.6906,-0.5982,-0.6352,-0.6766,-0.7274,-0.1132,0.2424,0.1132,-0.2748,-0.4688,-0.686,-0.4872,-0.4688,-0.6862,0.2156,0.3334,0.5294,0.647,0.7648,1,0.804,0.451,0.3334,0.4118,0.3726,0.3726,0.451,0.2942,0.451,0.451,0.804,0.647,0.8432,0.8432,0.8432,0.8824,0.4902,0.6862,0.6862,0.6078,0.4902,0.4118,0.255,0.5294,0.6078,-0.5294,0.2942,0.3334,0.5294,0.647,0.7648,1,0.804,0.4118,0.2942,0.3726,0.3334,0.2942,0.3726,0.2942,0.4118,0.3334,0.6078,0.451,0.8824,0.804,0.8432,0.8824,0.7254,0.8432,0.451,0.6078,0.5294,0.4902,0.4118,0.0588,0.1764,-0.315,0.3424,0.2602,0.3698,0.6986,0.8356,0.9178,1,0.8356,0.8356,0.4794,0.4246,-0.0684,-0.1232,-0.041,-0.2876,-0.3972,-0.2602,-0.178,-0.178,-0.2328,-0.0684,-0.2054,0.2054,0.5616,0.8904,0.6712,0.0136,0.1232,0.0684,0.2328,0.2328,-1,-1,-1,-1,-1,-1,-0.9566,-0.9624,-0.9328,-0.8438,0.4052,0.911,0.8478,0.587,0.3874,0.16,0.0296,-0.1206,-0.2094,-0.2906,-0.4624,-0.666,-0.838,-0.9288,-0.9446,-0.9426,-0.9624,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9754,-0.9754,-0.6338,-0.1394,0.5654,0.8012,0.3126,0.0834,0.0138,-0.0518,-0.1774,-0.4756,-0.6206,-0.7072,-0.774,-0.8786,-0.9332,-0.9444,-0.9524,-0.9214,-0.96,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9868,-0.97,-0.8034,-0.25,-0.31,-0.5364,-0.5892,-0.5492,-0.6146,-0.5964,-0.6134,-0.705,-0.9068,-0.965,-0.94,-0.9218,-0.8668,-0.7034,-0.83,-0.7268,-0.8134,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4,0.1142,1,1,1,0.9714,-0.4572,-0.4858,-0.5142,-0.7428,-0.2858,-0.4286,-0.5714,-1,-0.8858,-0.8,-0.8,-0.8858,-0.7428,-0.7714,-0.3714,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.4282,0.4064,0.3936,0.3438,0.3376,0.2654,0.1648,0.0196,-0.0328,-0.0166,-0.7466,0.3764,0.659,0.8872,0.8734,0.9124,0.558,1,-0.3834,-0.3084,0.3666,0.3166,0.025,-0.0166,0.1416,0.275,0.5916,0.925,0.875,0.8,0.8334,0.825,0.65,0.7166,0.85,0.925,1,0.9416,0.8916,0.7334,0.4834,0.375,0.3916,0.25,0.2,-0.0166,-0.0666,-0.1666,-0.2834,-0.6084,-0.5338,-0.2796,0.4662,0.4492,-0.0084,0.0508,0.0848,0.161,0.483,1,0.8984,0.822,0.9068,0.805,0.661,0.6864,0.7372,0.9406,0.9238,0.9406,0.9068,0.6356,0.517,0.3644,0.305,0.2118,0.0932,-0.2118,-0.356,-0.4746,-0.4238,-0.7796,0.0858,0.276,0.6688,0.7792,0.497,0.454,0.405,0.5214,0.773,0.8344,1,0.865,0.8036,0.7424,0.6074,0.5338,0.503,0.5706,0.7362,0.589,0.7424,0.5766,0.4478,0.405,0.3252,0.3128,0.27,-0.0736,-0.227,-0.4172,-0.4908,-0.6994,1,-1,-1,1,-1,-1,-1,-0.5334,-1,-0.3636,-0.25,-0.0454,0.2954,0.1818,0.4546,0.5454,0.2728,0.409,0.3182,0.25,0.1136,0.1136,0.2046,0.4318,0.7046,0.909,0.8182,0.591,0.7954,0.9772,0.8864,0.7728,0.841,0.7954,1,0.909,0.5682,0.5454,0.2272,0.25,-0.3864,'12'
-0.2596,0.5428,0.5476,0.6904,0.6642,1,0.988,0.769,0.7596,0.231,0.2404,0.062,0.0786,-0.0452,0.0048,0.2476,0.288,0.6572,0.7596,0.8858,0.831,0.6142,0.5572,0.7452,0.6786,0.669,0.581,0.4476,0.438,0.5024,0.5142,0.419,-0.309,0.4856,0.5012,0.5718,0.574,0.9162,0.9382,0.947,1,0.4944,0.5652,0.4614,0.5718,0.3752,0.5012,0.4018,0.5386,0.4084,0.3378,0.329,0.3178,0.2538,0.4348,0.5562,0.627,0.4988,0.4106,0.1502,0.148,0.1258,0.2076,0.192,-0.2616,0.4928,0.477,0.4928,0.4434,0.899,0.8452,1,0.9506,0.6004,0.5488,0.706,0.6836,0.762,0.7262,0.2682,0.019,0.0998,0.0998,0.1628,0.1762,0.1694,0.2974,0.5016,0.6342,0.5488,0.1628,0.1156,0.0326,0.0506,0.1224,0.2054,0.1854,1,0.8128,0.6514,0.2074,0.2698,0.0496,0.156,0.1486,0.1634,0.2844,0.0972,0.3394,0.3872,0.0862,0.112,-0.1156,-0.3248,-0.4056,-0.4056,-0.233,-0.2294,-0.0936,0.2294,0.1706,-0.3578,-0.4606,-0.4018,-0.3432,-0.2294,0.189,0.1964,0.2452,1,0.6886,0.8208,0.049,-0.113,-0.7442,-0.1898,-0.1556,0.258,0.0788,-0.1088,0.693,0.6844,0.3092,0.1684,0.3092,-0.2154,-0.4882,-0.2366,-0.4116,-0.4072,-0.0106,-0.015,-0.066,-0.2964,-0.774,-0.7996,-0.4072,0.0534,0.7186,0.6674,0.3004,1,0.7042,0.7464,-0.1644,-0.4554,-0.6948,-0.3802,-0.263,-0.0046,-0.3428,0.291,0.4226,0.2958,0.3286,0.277,0.0704,-0.216,-0.385,-0.3286,-0.3568,-0.216,-0.1738,0.1362,0.047,-0.385,-0.7276,-0.8076,-0.723,-0.23,0.1456,-0.0422,0.354,1,0.7572,0.7002,0.1008,-0.0956,-0.4316,-0.261,-0.5866,-0.509,-0.2764,0.3746,0.5556,0.6744,0.2404,0.0232,-0.1732,-0.4522,-0.3696,-0.5298,-0.7312,-0.5142,-0.3696,0.1782,0.1886,0.0698,-0.2196,-0.3954,-0.2662,-0.0646,-0.044,-0.2816,-0.4042,0.2766,0.2766,0.532,0.4894,0.8298,0.8724,0.3192,0.3192,-0.0212,0.1064,-0.0638,-0.0212,0.1914,0.234,0.149,0.4468,0.7022,0.9148,0.7872,1,0.8724,0.6596,0.8724,0.8298,0.7446,0.7446,0.617,0.4894,0.4468,0.2766,0.617,-0.2888,0.4666,0.5112,0.6444,0.6444,0.9556,1,0.6444,0.6444,0.1112,0.1112,-0.4666,0.0666,0.0222,-0.0666,0.2,0.2888,0.5556,0.5112,0.6444,0.7334,0.6888,-0.2,0.6888,0.5112,0.7334,0.8222,0.3334,0.6444,0.6,0.3334,0.5556,-0.1052,0.5526,0.5,0.3948,0.8158,1,0.6842,0.7368,0.3684,0.421,0.5,0.4474,0.5,0.3684,-0.2106,-0.421,-0.421,-0.6052,-0.6316,-0.6842,-0.2106,0.0264,0.1842,0.3948,0.4736,0.1578,0.1052,0.0264,0.0526,0,0.079,0.2106,-1,-1,-1,-1,-1,-1,-1,-0.9562,-0.954,-0.8928,-0.1992,0.7462,0.9562,0.7944,0.6958,0.7222,0.046,-0.256,-0.3808,-0.4398,-0.4224,-0.326,-0.5032,-0.6412,-0.7636,-0.8622,-0.9474,-0.9496,-0.9432,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.967,-0.9624,-0.2202,0.3386,0.4632,0.554,0.6944,0.7908,0.5854,-0.4874,-0.6748,-0.7242,-0.7626,-0.7562,-0.6842,-0.732,-0.7352,-0.8056,-0.8676,-0.8824,-0.9044,-0.909,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.9134,-0.4,-0.0568,-0.5018,-0.57,-0.645,-0.6554,-0.694,-0.8754,-0.8954,-0.8848,-0.92,-0.9354,-0.8678,-0.8334,-0.6168,-0.4868,-0.3268,-0.33,-0.4768,-0.4368,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,0.5714,-0.8286,-0.7142,-0.7714,1,1,-0.9428,-0.9714,-0.9714,-0.8,-0.0286,-0.7714,-0.8286,-0.8572,-0.8,-0.8,-0.8572,-0.8286,-1,-1,-1,-1,1,1,1,1,1,1,1,1,0.9938,0.3126,0.4408,0.4414,0.4372,0.3916,0.3872,0.31,0.1192,-0.0582,-0.2068,-0.5068,-0.6934,0.5294,0.4734,0.4216,0.4358,0.4726,0.496,1,-0.4346,-0.3926,0.2774,0.1728,-0.0158,0.1204,0.11,0.1938,0.5602,1,0.9582,0.8744,0.8744,0.8638,0.6754,0.644,0.8848,0.9058,0.8744,0.8952,0.9372,0.7906,0.5812,0.2146,0.0786,-0.068,-0.089,-0.1308,-0.2984,-0.267,-0.3822,-0.822,-0.5082,-0.246,0.2022,0.1366,0.071,0.0274,0.0602,0.1476,0.6284,1,1,0.858,0.9016,0.836,0.7158,0.5738,0.7158,0.847,0.9234,0.9672,0.8032,0.9016,0.683,0.3552,0.2132,0.1584,-0.0054,-0.388,-0.541,-0.6502,-0.694,-0.7924,-0.0442,0.2426,0.625,0.6912,0.5368,0.3308,0.3308,0.5148,0.5442,0.9338,1,0.8014,0.9926,0.9118,0.6102,0.5662,0.75,0.8088,0.6544,0.7942,0.875,0.8456,0.8308,0.6398,0.397,0.3602,0.3236,-0.2648,-0.2794,-0.4706,-0.6618,-0.6544,0.406,-1,-1,1,-1,-1,0.4,-0.5666,-1,-0.2174,-0.1478,-0.0434,0.1478,0.0608,0.3218,0.687,0.7392,0.2174,0.426,0.3566,0.513,1,0.9826,0.7218,0.4956,0.2174,0.1478,0.1304,0.0782,0.774,0.426,0.4086,0.7914,0.7566,0.1652,0.1478,0.3044,0.113,0.0956,0.0782,-0.2696,'13'
-0.5506,0.4556,0.5464,0.633,0.7806,0.7236,1,0.827,0.557,0.4662,0.3714,0.403,0.1688,0.2954,0.1476,0.4156,0.2426,0.5654,0.6054,0.9472,0.981,0.54,0.557,0.6414,0.7932,0.6518,0.7426,0.6286,0.4282,0.4156,0.4916,0.557,-0.4626,0.6262,0.7126,0.6658,0.8108,0.7454,1,0.778,0.9112,0.806,0.5678,0.5444,0.4626,0.5374,0.5444,0.7406,0.5258,0.5958,0.6144,0.9066,0.8574,0.7314,0.7524,0.7874,0.9556,0.75,0.6122,0.3926,0.3038,0.4276,0.4532,0.4672,-0.2528,0.7012,0.7236,0.6214,0.6264,0.9004,0.9252,0.9452,1,0.5492,0.4744,0.5368,0.5242,0.6064,0.756,0.6288,0.2478,0.188,0.3698,0.34,0.3748,0.4346,0.487,0.6662,0.8206,0.8008,0.5516,0.3724,0.2852,0.2826,0.4172,0.5068,0.1654,1,0.7794,0.6434,0.1434,0.2648,-0.0626,-0.0662,-0.1066,-0.0808,-0.217,0.0624,0.3236,0.489,0.3492,0.1948,-0.092,-0.2536,-0.4486,-0.5514,-0.625,-0.2942,-0.0588,0.2978,0.1728,-0.2316,-0.6434,-0.75,-0.5148,-0.2316,0.2426,0.2464,0.2056,1,0.7494,0.8628,-0.0732,-0.39,-0.7304,-0.3476,-0.3002,-0.0592,-0.1584,0.1394,0.6738,0.4042,0.4562,0.2576,0.2672,-0.2056,-0.565,-0.5224,-0.7826,-0.636,-0.3192,-0.1206,-0.3238,-0.7494,-0.929,-0.8156,-0.5272,-0.1632,0.13,-0.182,0.2314,1,0.7932,0.8562,-0.3842,-0.6808,-0.6,-0.4202,-0.3214,-0.1146,-0.0426,0.245,0.5192,0.2764,0.3124,0.3662,0.0022,-0.2898,-0.4292,-0.6944,-0.4338,-0.3618,-0.0292,-0.0158,-0.4876,-0.672,-0.8696,-0.6854,-0.2854,-0.1416,-0.0292,-0.1776,0.2,1,0.6228,0.7228,0.0864,-0.0136,0.0954,-0.1046,-0.0046,0.1228,0.35,0.75,0.8772,0.7818,0.691,0.2954,-0.0136,-0.3682,-0.259,-0.1728,-0.1364,-0.0364,0.2772,0.8318,0.959,0.709,0.35,0.0682,-0.0954,0.35,0.391,0.191,-0.625,0.2916,0.375,0.625,0.7916,0.5416,0.9166,0.7916,0.4166,0.375,0.3334,0.375,0.1666,0.3334,0.125,0.5,0.3334,0.7916,0.7916,0.4166,0.875,0.5416,0.8334,0.875,0.9166,1,0.7084,0.75,0.5834,0.2084,0.3334,0.4584,-0.6,0.32,0.4,0.56,0.68,0.6,0.92,0.8,0.36,0.2,0.28,0.32,0.2,0.28,0,0.36,0.24,0.6,0.52,0.88,1,0.72,0.36,0.52,0.8,0.72,0.36,0.36,0.44,0.4,0.28,0.4,0.1282,0.7436,0.6154,0.4358,0.8462,1,0.6666,0.5898,0.282,0.282,0.2052,0.282,0.4102,0.2052,0.3076,0.077,-0.282,-0.5128,-0.7692,-0.1282,-0.1026,-0.2052,-0.1026,0.5642,0.641,0.2564,-0.0256,0.2052,0.2052,0.1026,0.4102,0.4358,-1,-1,-1,-1,-1,-1,-0.9582,-0.9582,-0.9254,-0.9078,-0.0976,0.9166,0.8726,0.7542,0.5654,0.5872,-0.0802,-0.3722,-0.4446,-0.528,-0.5522,-0.5016,-0.6598,-0.7672,-0.8836,-0.9452,-0.9364,-0.9408,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9708,-0.9688,-0.5662,-0.6842,0.15,0.7184,0.4126,0.2752,0.1864,-0.0116,-0.5918,-0.7424,-0.7802,-0.8056,-0.8174,-0.741,-0.749,-0.8238,-0.8544,-0.858,-0.8778,-0.9126,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9598,-0.9468,-0.78,0.0132,-0.1268,-0.4924,-0.5016,-0.6262,-0.6616,-0.697,-0.8658,-0.9058,-0.9158,-0.9344,-0.9272,-0.7444,-0.5434,-0.42,-0.13,-0.14,-0.23,-0.3968,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4572,0.9142,1,0.9714,1,1,-0.9142,-0.8,-0.6,1,1,-1,-0.9714,-1,-0.1142,-0.2,-0.8572,-0.9428,-0.9142,-0.9428,-0.8,-0.5714,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,0.9758,0.3134,0.331,0.364,0.3848,0.3796,0.3424,0.3182,0.2498,0.1706,0.0124,-0.3852,-0.6666,0.6352,0.3238,0.8158,0.8304,0.722,0.5924,1,-0.6168,-0.4206,0.1308,0.056,-0.0748,-0.1122,-0.0934,-0.0842,0.2336,0.7102,0.8598,0.7944,0.757,0.729,0.4112,0.4954,0.757,0.7384,0.8692,1,0.972,0.8598,0.5608,0.2616,-0.0934,-0.1588,-0.2336,-0.4112,-0.6916,-0.6636,-0.7476,-0.9252,-0.2812,-0.1982,-0.2258,-0.0322,-0.1244,-0.0876,-0.0414,-0.0506,-0.189,0.3732,0.4654,0.5024,0.5668,0.5944,0.3732,0.3456,0.4654,0.7236,0.7604,0.9908,0.9724,1,0.6406,0.152,0.0414,0.2258,0.1244,-0.318,-0.1706,-0.1428,-0.152,-0.7696,-0.1368,0.228,0.607,0.5368,0.4808,0.2772,0.3544,0.3824,0.6422,0.8526,0.9368,0.965,1,0.8736,0.8106,0.6422,0.8386,0.7404,0.9578,0.8666,0.9438,0.9578,0.7404,0.579,0.2842,0.228,0.0878,-0.4246,-0.5088,-0.4948,-0.5368,-0.7264,1,-1,-1,1,-1,-1,-0.4,-0.5,-1,-0.4804,-0.307,-0.0078,-0.0236,0.0866,0.4646,0.6378,0.6062,0.4174,0.1968,0.244,0.1496,0.7796,0.8582,0.4804,0.6692,0.6062,0.1024,-0.0552,-0.307,0.4804,1,0.7638,0.6062,0.4488,0.37,0.4016,0.3544,0.4488,0.2914,0.3544,-0.1182,'13'
-0.2104,0.594,0.5794,0.7442,0.6924,0.9656,0.9188,0.6064,0.5326,0.0996,0.0528,0.0602,-0.102,-0.0012,-0.0282,0.0554,0.2078,0.5596,0.7072,1,0.9656,0.7122,0.727,0.85,0.8548,0.9138,0.882,0.7762,0.6334,0.5228,0.4784,0.6654,-0.1918,0.5822,0.5732,0.6072,0.546,1,0.941,0.975,0.9046,0.4666,0.3848,0.5664,0.5006,0.3076,0.2236,0.3938,0.4324,0.6504,0.5686,0.4574,0.412,0.428,0.3962,0.6686,0.6232,0.9114,0.8934,0.5846,0.4052,0.4846,0.378,0.3258,-0.1542,0.653,0.6314,0.5204,0.4578,1,0.8988,0.8096,0.6916,0.2482,0.1108,0.3686,0.2602,0.0506,0.2144,0.3856,0.294,0.3904,0.3108,0.1374,-0.0386,0.0698,0.041,0.1228,0.241,0.5132,0.5832,0.4266,0.3446,0.1952,0.2266,0.2674,0.1642,1,0.8036,0.5464,0.4358,0.525,-0.0142,-0.1178,-0.4036,-0.4892,-0.5786,-0.3608,-0.0142,0.5358,0.6642,0.5536,0.1322,-0.0358,-0.4286,-0.3964,-0.2714,-0.2786,-0.5178,-0.3536,-0.15,-0.0142,-0.0608,-0.2892,-0.4464,-0.6642,-0.5392,-0.4464,0.2018,1,0.7018,0.8552,0.2938,0.0834,-0.4912,-0.5658,-0.6886,-0.807,-0.8816,-0.6316,0.0394,0.5088,0.8422,0.4342,0.443,-0.035,-0.443,-0.5658,-0.5264,-0.4956,-0.5482,-0.4956,-0.421,-0.1272,-0.0746,-0.5438,-0.7236,-0.785,-0.7062,-0.636,0.2612,0.982,0.9504,1,0.0496,-0.1982,-0.1306,-0.6802,-0.6126,-0.6756,-0.9954,-0.1262,0.1982,0.946,0.8918,-0.045,0.1352,-0.1442,-0.2432,-0.2342,-0.3244,-0.2702,-0.1712,-0.2522,-0.1486,0,-0.3648,-0.5136,-0.464,-0.3784,-0.3694,-0.4054,0.2672,1,0.917,1,0.5208,0.2258,0.341,-0.1382,-0.1752,-0.3088,-0.4194,-0.3502,-0.0414,0.3732,0.6222,0.8802,0.871,0.1798,-0.06,0.046,-0.0552,-0.3918,-0.1936,0,0.3364,0.3824,0.6774,0.765,0.4194,0.1152,0.189,0.1428,-0.3334,0.4666,0.4666,0.7778,0.8666,0.7334,0.9112,0.6,0.3334,0.0222,0.1556,0.0666,0.1112,-0.0666,0.0666,-0.0666,0.1112,0.4666,0.5556,0.7778,1,0.9112,0.5112,0.6444,0.8222,0.7334,0.6888,0.7334,0.6888,0.5112,0.4222,0.6888,-0.2766,0.4894,0.4894,0.7022,0.7022,0.8724,0.8298,0.3618,0.3618,-0.0638,-0.0638,-0.1064,-0.4894,-0.2766,-0.234,0.1914,0.1914,0.532,0.5744,0.7022,0.7872,0.532,0.4468,0.532,0.4894,1,1,0.5744,0.7872,0.617,0.5744,0.6596,0.1044,0.8208,0.7014,0.2538,0.791,1,0.6716,0.4926,0.0746,0.015,0.0746,0.1642,0.3732,0.3432,0.5224,0.3732,0.1344,-0.1344,-0.582,-0.5224,-0.0746,-0.0746,-0.1044,-0.1344,0.0746,0.4328,0.015,0.3134,0.1044,0.1642,0.0448,-0.1044,-1,-1,-1,-1,-1,-1,-1,-0.95,-0.96,-0.8898,-0.3242,0.9274,0.965,0.9474,0.8548,0.622,-0.0414,-0.229,-0.2892,-0.3516,-0.3492,-0.2416,-0.4668,-0.6296,-0.8022,-0.9074,-0.9524,-0.9374,-0.9474,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.949,-0.9568,-0.1078,0.4834,0.6362,0.7578,0.8892,0.4264,0.0274,-0.5432,-0.6304,-0.6638,-0.6804,-0.6814,-0.5834,-0.6746,-0.7558,-0.8314,-0.8686,-0.8862,-0.8902,-0.9148,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8934,-0.92,-0.3068,0.2932,-0.534,-0.5894,-0.6386,-0.7554,-0.7432,-0.857,-0.8754,-0.9062,-0.8816,-0.8544,-0.85,-0.72,-0.4068,-0.3768,-0.2434,-0.2534,-0.4068,-0.5134,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,1,1,1,1,-0.7142,-0.8286,-0.7714,1,1,-1,-0.9428,0.1142,0.2,-0.1428,-0.6572,-0.7428,-0.8286,-0.8286,-0.8858,-0.8858,-0.7428,-1,-1,-1,-1,0.968,0.962,0.9696,0.9678,0.9768,0.9858,1,1,0.898,0.3782,0.6922,0.6754,0.659,0.6238,0.6004,0.5756,0.4964,0.3506,0.1118,-0.2516,-0.7066,0.6,0.102,0.9068,0.7068,0.6058,0.5304,0.8084,-0.546,-0.2432,0.081,-0.1136,-0.1892,-0.2216,-0.1784,-0.081,0.146,0.7298,0.8162,0.6,0.654,0.6324,0.4918,0.4702,0.6972,0.9136,0.8918,1,0.9136,0.8162,0.4486,0.2972,0.1568,0.1568,-0.1244,-0.4378,-0.5136,-0.6,-0.6972,-0.7514,-0.5384,-0.2924,0.0666,-0.0462,-0.282,-0.2512,0.1384,0.077,0.3128,0.641,0.8052,0.6616,0.6718,0.6102,0.5076,0.6512,0.7026,0.7948,0.8666,0.8462,0.9384,1,0.6308,0.3846,0.4872,0.2718,0.1898,-0.1076,-0.3128,-0.282,-0.4974,-0.877,-0.1418,0.1024,0.252,0.1732,0.063,0.1102,0.1574,0.189,0.3938,0.5512,0.7796,0.8818,0.8504,1,0.7244,0.6692,0.5906,0.693,0.7638,0.7244,0.8898,0.7796,0.622,0.5512,0.4174,0.2362,0.1182,-0.1102,-0.4094,-0.5512,-0.7402,-0.8346,1,-1,-1,1,-1,-1,0.4,-0.5666,-1,-0.3644,-0.4206,0.028,-0.0468,0.0094,0.1402,0.271,0.458,0.6448,0.6822,0.7384,0.1588,0.514,0.9626,1,0.6074,0.701,0.4018,0.4766,0.4018,0.7758,0.8318,0.4206,0.0842,0.3084,0.514,0.514,0.0094,0.0842,-0.0842,-0.1028,-0.2336,'14'
-0.327,0.4662,0.479,0.6378,0.6442,0.9314,0.9378,0.7128,0.6892,0.2626,0.2798,0.1618,0.2004,0.1212,0.1682,0.2518,0.4362,0.6098,0.88,0.9808,0.9786,0.8456,0.867,0.8006,0.8414,1,0.9722,0.7792,0.7084,0.5648,0.6334,0.6206,-0.2232,0.5826,0.5764,0.5806,0.5476,0.9174,0.8884,1,0.9772,0.5166,0.502,0.4814,0.4732,0.2976,0.2934,0.564,0.5992,0.7148,0.7728,0.5848,0.5992,0.3348,0.4814,0.6116,0.6798,0.7066,0.8472,0.688,0.5806,0.4174,0.3822,0.3492,-0.1228,0.6324,0.5828,0.5242,0.6302,1,0.8196,0.858,0.6414,0.3596,0.265,0.4836,0.4296,0.4814,0.7136,0.8128,0.5874,0.3236,0.2762,0.1274,0.0598,0.0868,0.15,0.4138,0.4634,0.7158,0.7474,0.655,0.3912,0.2446,0.1882,0.159,0.183,1,0.7372,0.723,0.3676,0.35,-0.0196,-0.2042,-0.4352,-0.588,-0.6484,-0.5062,0.1474,0.6768,0.8118,0.8188,0.5382,0.2612,-0.0728,-0.215,-0.1652,-0.1972,-0.215,-0.1794,-0.0942,0.1262,0.2078,-0.1368,-0.4494,-0.6412,-0.6128,-0.4672,0.0728,0.7318,0.5066,0.6126,0.2484,0.0298,-0.235,-0.4172,-0.5332,-0.5332,-0.6688,-0.6226,-0.2384,0.7252,1,0.4668,0.3278,-0.1854,-0.4272,-0.3642,-0.5398,-0.4702,-0.4438,-0.3444,-0.245,0.1986,0.0464,-0.49,-0.49,-0.4238,-0.4768,-0.4736,0.1384,0.8808,0.6962,0.7692,0.55,0.2616,0.1,-0.327,-0.4808,-0.6384,-0.4424,-0.1116,0.023,0.927,1,0.7038,0.573,0.1346,-0.3576,-0.2424,-0.0462,0,-0.2346,-0.0116,0.4116,0.4576,0.2884,0.1346,0.0538,-0.1424,-0.35,-0.1076,-0.005,0.5492,0.2086,0.2454,-0.0016,-0.1218,-0.1118,-0.0116,-0.1286,-0.5426,-0.3924,-0.0284,0.152,0.4992,0.5994,1,0.8564,0.3924,0.4558,0.2854,0.0318,0.2488,0.212,0.3356,0.419,0.4624,0.8764,0.8964,0.6662,0.6594,0.6762,0.4258,-0.84,-0.68,-0.32,-0.16,0,0.16,0.24,0.12,-0.08,-0.12,-0.12,-0.08,-0.2,0.08,0.16,0.16,0.24,0.6,0.76,0.8,0.84,0.92,0.88,0.72,0.92,1,0.88,0.56,0.72,0.68,0.52,0.56,-0.4584,0.3334,0.375,0.6666,0.75,0.7916,1,0.875,0.5416,0.375,0.4166,0.375,0.2916,0.2916,0.3334,0.375,0.375,0.6666,0.75,0.875,0.9166,0.75,0.7916,0.7916,0.7916,0.9166,0.6666,0.8334,0.7084,0.4584,0.375,0.2916,-0.2,0.5076,0.4462,0.2308,0.7538,0.9692,0.477,0.477,0.0462,0.1076,0.1384,0.1076,0.4462,0.723,1,0.6616,0.3846,-0.1076,-0.1384,-0.0462,-0.1384,-0.1692,-0.1692,0.0154,0.4154,0.723,0.6924,0.7846,0.3846,0.2924,0.1384,0.0154,-1,-1,-1,-1,-1,-1,-1,-0.9532,-0.9346,-0.8948,-0.9064,0.731,0.8012,0.7848,0.628,0.1508,-0.3122,-0.4128,-0.4808,-0.4292,-0.324,-0.5298,-0.7708,-0.8736,-0.9252,-0.9346,-0.9392,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9632,-0.9624,-0.0636,-0.2912,0.6512,0.2274,0.4498,0.265,-0.2634,-0.7068,-0.7534,-0.7866,-0.74,-0.6724,-0.7542,-0.8406,-0.8714,-0.8902,-0.9008,-0.9218,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.9268,-0.4268,-0.0468,-0.3744,-0.5734,-0.5988,-0.7148,-0.7894,-0.8948,-0.964,-0.928,-0.8934,-0.6854,-0.5588,-0.4134,-0.2034,-0.17,-0.28,-0.1534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,1,-0.8572,-0.8572,-0.6,1,-0.9714,-0.9142,-0.9428,0.2,-0.4286,-0.9142,-0.9428,-0.9142,-0.8858,-0.8858,-0.9428,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,0.9036,0.4756,0.5426,0.532,0.5468,0.5606,0.5558,0.4936,0.4176,0.2972,0.0136,-0.2146,-0.6534,0.8118,-0.0192,-0.0018,0.7842,0.785,0.788,0.6084,-0.4792,-0.2396,0.125,0.1042,-0.2396,-0.0104,0.0208,0.1562,0.323,0.875,0.8646,0.7084,0.8542,0.8542,0.6666,0.677,0.802,0.8958,0.948,0.9792,1,0.7916,0.6042,0.448,0.0834,-0.1042,-0.1666,-0.177,-0.375,-0.5208,-0.625,-0.7812,-0.1848,-0.0956,0.2102,0.2612,0.0956,-0.1848,0.0956,0.1974,0.2102,0.6434,0.6942,0.707,0.5924,0.898,0.7708,0.5542,0.516,0.8726,1,0.8854,0.8854,0.7324,0.5542,0.4012,0.1338,-0.121,0.1338,0.1592,-0.0064,0.1464,0.0446,-0.4904,-0.6564,-0.4096,-0.0044,-0.0132,-0.1718,-0.0484,0.0396,-0.0308,0.3216,0.8766,0.8502,0.7974,0.9912,1,0.7356,0.7444,0.7534,0.9648,0.956,0.956,0.7886,0.859,0.8678,0.5242,0.2422,-0.0308,-0.1102,-0.3216,-0.2864,-0.6036,-0.489,-0.6036,1,-1,-1,1,-1,-1,-0.8,-0.5666,-1,-0.688,-0.4128,-0.101,0.0458,0.0092,-0.0276,0.156,0.3028,0.4312,0.3762,0.3394,0.2478,0.523,0.8348,1,0.6514,0.9266,0.6514,0.3762,0.3394,0.2478,0.945,0.7614,0.4496,0.4312,0.3394,0.5596,0.5046,0.3212,0.1744,-0.0458,-0.4862,'14'
-0.5772,0.1414,0.2218,0.4682,0.5642,0.8806,1,0.7744,0.7484,0.5824,0.7666,0.7198,0.93,0.8962,0.419,0.4422,0.0714,0.1726,0.227,0.323,0.5202,0.777,0.6758,0.3566,0.1258,0.0272,0.048,0.0246,0.0246,-0.0506,0.0506,0.0818,-0.4568,0.3054,0.3566,0.5198,0.5874,0.8834,1,0.676,0.697,0.5174,0.739,0.613,0.3566,0.2868,-0.1422,-0.1328,-0.2588,-0.1516,-0.1468,-0.0862,0.0396,0.1958,0.1934,0.1212,0.0256,-0.091,-0.1096,-0.282,-0.2238,-0.0722,-0.014,0.1072,-0.4464,0.3212,0.3646,0.5692,0.627,0.8966,1,0.6366,0.675,0.5428,0.7666,0.6004,0.2442,0.1312,-0.148,-0.1818,-0.278,-0.2588,-0.2564,-0.1046,-0.0998,0.059,0.071,0.0374,-0.0614,-0.343,-0.3406,-0.2876,-0.3742,-0.0422,-0.0036,0.2828,-0.2608,0.424,0.4022,0.6956,0.6414,1,0.9076,0.7582,0.6794,0.8016,0.6522,0.2934,0.1766,-0.1086,-0.1794,-0.3614,-0.4864,-0.519,-0.356,-0.2256,-0.125,0.1114,0.1984,0.0816,-0.144,-0.3778,-0.5298,-0.4294,-0.3506,-0.2282,-0.2202,0.0164,-0.0676,0.5,0.581,0.7702,0.9798,1,0.9222,0.831,0.8716,0.5778,0.027,-0.125,-0.2128,-0.3986,-0.4222,-0.5236,-0.5304,-0.4054,-0.4088,-0.2872,-0.0236,0.3278,0.3886,0.223,-0.1722,-0.2668,-0.3412,-0.3378,-0.304,-0.1722,0.0372,0.3716,0.0158,0.5138,0.8102,0.8616,0.9446,0.913,1,0.7114,0.5968,-0.411,-0.4506,-0.506,-0.6916,-0.7076,-0.6956,-0.5732,-0.5692,-0.6364,-0.328,-0.34,-0.3754,0.245,0.3004,-0.257,-0.4624,-0.4506,-0.5256,-0.585,-0.5336,-0.4348,-0.3834,0.0514,0,0.7344,0.6302,0.7916,0.4896,0.724,1,0.6562,0,-0.6406,-0.6562,-0.6614,-0.5,-0.6146,-0.849,-0.7604,-0.4322,-0.2604,-0.6562,-0.8124,-0.6666,-0.302,-0.2084,-0.698,-0.5208,-0.599,-0.5834,-0.6718,-0.7396,-0.75,-0.7136,-0.151,-0.7826,-0.174,0.087,0.2608,0.3478,0.4782,0.6086,0.6522,0.6086,0.4348,0.5652,0.7826,0.9566,1,0.5652,0.087,0.0434,0.3478,0.2608,0.2174,0.3914,0.7392,0.4348,0.5218,0.087,0.2174,0.2174,0.1304,0.087,-0.2174,0.1304,0.174,-0.5636,0.1272,0.1636,0.4182,0.491,0.8546,1,0.7818,0.6728,0.5272,0.7818,0.7454,0.8546,0.8182,0.309,0.491,0.2364,0.309,0.1636,0.3818,0.3454,0.8182,0.8182,0.2728,-0.0546,-0.0182,0.1636,-0.1636,-0.091,-0.1272,-0.1272,0.0546,-0.3608,0.3814,0.402,0.6288,0.6288,1,1,0.7526,0.732,0.7938,0.8144,0.3608,0.402,-0.1546,-0.0722,-0.4432,-0.3402,-0.5464,-0.299,-0.1958,-0.1546,0.2578,0.3608,0.1958,-0.2164,-0.6494,-0.3814,-0.3196,-0.3814,-0.2578,0.0516,0.0928,-1,-1,-1,-1,-1,-1,-1,-0.9676,-0.9592,-0.8816,-0.876,0.717,0.9732,0.9324,0.7676,0.6508,0.4944,0.2394,-0.1028,-0.3352,-0.4774,-0.6704,-0.8816,-0.9522,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9776,-0.9768,-0.6774,-0.7092,0.7978,0.6656,0.5944,0.4634,0.2554,-0.0642,-0.327,-0.5428,-0.7026,-0.7848,-0.873,-0.9532,-0.9704,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8868,-0.9,-0.7534,-0.45,-0.564,-0.664,-0.702,-0.68,-0.668,-0.738,-0.85,-0.826,-0.86,-0.83,-0.902,-0.88,-0.9334,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5142,0.3142,1,1,1,-0.2858,-0.7714,-0.7142,-0.4858,-0.4286,-0.7714,-0.6572,-0.5428,-0.6858,-0.6286,-0.7428,-0.8572,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.9632,-0.9516,-0.9344,-0.8858,-0.878,-0.7946,-0.7064,-0.6716,-0.6674,-0.356,-0.8,0.1882,-0.7628,0.1262,0.9654,0.9182,0.8414,1,-0.427,-0.2046,0.4736,0.7076,0.4152,0.6024,0.9416,0.7894,0.345,0.3802,0.9416,1,0.6374,0.3216,0.3216,0.427,0.497,0.462,0.5438,0.5088,0.696,0.7426,0.696,0.5088,0.0994,0.0292,0.1696,0.2164,-0.1696,-0.31,-0.696,-0.766,-0.1892,-0.1892,0.4774,0.91,-0.009,0.2792,1,0.4954,-0.1172,0.099,0.7478,0.91,0.2792,0.1892,-0.063,0.3154,0.5496,0.8018,0.8198,0.964,0.7118,0.8918,0.7658,0.4954,0.099,0.2612,0.2252,0.4774,0.027,0.009,-0.3874,-0.3334,-0.44,-0.04,0.4628,0.7372,0.5542,0.52,0.8514,0.7486,0.3942,0.5772,0.9772,1,0.5886,0.44,0.4514,0.3942,0.7828,0.9658,0.9542,0.7942,0.8972,0.9086,0.7714,0.8286,0.4628,-0.0058,0.4514,0.4286,-0.1658,-0.3142,-0.4858,-0.6342,0.2018,-1,-1,1,-1,-1,-1,-0.6666,-1,-0.039,0.3246,0.6624,1,0.922,0.5324,0.7402,0.8702,0.5324,0.4806,0.4026,0.5584,0.6624,0.2208,0.4026,0.2208,0.5324,0.5844,0.6104,0.6104,0.7662,0.8442,0.7402,0.5064,0.4806,0.1428,0.4546,0.5844,0.5064,0.4286,0.2988,-0.1428,'15'
-0.6178,0.2286,0.3036,0.409,0.55,0.7304,1,0.8804,0.559,0.525,0.6786,0.7232,0.4804,0.525,0.3054,0.209,0.1196,0.116,0.1392,0.1964,0.3464,0.2554,0.3768,0.2322,0.0018,-0.0018,-0.241,-0.1608,-0.2232,-0.1554,-0.066,0.0624,-0.5438,0.3026,0.376,0.4892,0.606,0.7964,1,0.8246,0.6438,0.5514,0.8134,0.804,0.2328,0.2478,-0.1178,-0.0274,-0.2234,-0.0952,-0.165,0.1838,0.1838,0.5174,0.5626,0.1932,-0.163,-0.1876,-0.2968,-0.2762,-0.3064,-0.2008,-0.1028,-0.0612,-0.2838,0.3922,0.3794,0.6578,0.6238,0.9978,0.9128,0.8364,0.8554,1,0.881,0.4622,0.2922,0.1074,-0.0394,-0.103,-0.1796,-0.237,-0.0734,0.0032,0.2158,0.3708,0.4176,0.2794,-0.1116,-0.322,-0.3646,-0.2072,-0.2348,-0.2328,-0.1392,0.0414,-0.2044,0.306,0.41,0.5768,0.8258,0.8428,0.8114,0.7944,1,0.7194,0.0786,-0.064,-0.0932,-0.301,-0.376,-0.41,-0.543,-0.405,-0.3688,-0.2744,0.0012,0.3084,0.301,0.0738,-0.2406,-0.3616,-0.4244,-0.4874,-0.4074,-0.3542,-0.2454,0.0012,-0.159,0.3486,0.737,0.8134,1,0.8256,0.9082,0.8256,0.7798,-0.0978,-0.3486,-0.3854,-0.5382,-0.6116,-0.5198,-0.685,-0.581,-0.5046,-0.5412,-0.5658,-0.2538,-0.0276,-0.0398,-0.3578,-0.477,-0.5352,-0.7706,-0.7064,-0.6942,-0.6116,-0.4802,-0.3334,-0.1346,0.2884,1,0.9616,0.9584,0.9808,0.9166,0.8846,0.4262,-0.1122,-0.4808,-0.6026,-0.5802,-0.5834,-0.548,-0.516,-0.5288,-0.5,-0.7372,-0.702,-0.5448,-0.3206,-0.4262,-0.5834,-0.4552,-0.5288,-0.6538,-0.8462,-0.859,-0.4744,-0.4776,-0.4552,-0.112,0.534,0.5046,0.567,0.6478,0.8348,1,0.7542,0.6,-0.167,-0.4422,-0.5266,-0.5596,-0.578,-0.611,-0.5926,-0.4276,-0.578,-0.9412,-0.6366,-0.633,-0.3322,-0.1596,-0.266,-0.4056,-0.3834,-0.8496,-0.8348,-0.7468,-0.6844,-0.5046,-0.2184,-0.614,0.1578,0.228,0.4036,0.5438,0.7544,1,0.8948,0.5438,0.5088,0.6842,0.7192,0.6842,0.8246,0.579,0.4386,0.3334,0.2632,0.2632,0.4736,0.5438,0.2982,0.5438,0.3334,0.193,0.1228,-0.1228,-0.1228,-0.0176,0.0878,0.1228,0.1578,-0.6428,0.1786,0.25,0.3928,0.5358,0.7142,1,0.8928,0.5714,0.5714,0.7142,0.7858,0.5358,0.8214,0.6428,0.4642,0.2858,0.2858,0.2142,0.2858,0.4286,0.4286,0.25,0.25,0.2142,0.2142,-0.0714,-0.0714,-0.0714,0.1072,0.0714,0.1072,-0.2888,0.2222,0.2666,0.4444,0.6888,0.8222,0.6666,0.7334,1,0.9556,0.1334,0.0888,-0.0222,-0.1556,-0.2,-0.4,-0.3556,-0.3334,-0.3334,-0.1334,0,0.2888,0.1112,0.1334,-0.0888,-0.4,-0.3556,-0.2888,-0.4,-0.4,-0.0444,0,-1,-1,-1,-1,-1,-1,-0.9728,-0.9836,-0.9264,-0.9496,0.1976,0.8856,0.9386,0.718,0.5476,0.4032,0.0558,-0.2494,-0.3638,-0.4224,-0.5096,-0.7276,-0.857,-0.9168,-0.9564,-0.9592,-0.9646,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.984,-0.9858,-0.7446,-0.8766,0.4426,0.8588,0.66,0.4932,0.2352,-8e-04,-0.3542,-0.6568,-0.7486,-0.7932,-0.8204,-0.8872,-0.9286,-0.9524,-0.9536,-0.9532,-0.9492,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9,-0.9534,-0.6934,-0.46,-0.43,-0.6384,-0.657,-0.66,-0.674,-0.674,-0.714,-0.854,-0.934,-0.98,-0.934,-0.8986,-0.86,-0.8068,-0.63,-0.59,-0.52,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,0.8,1,1,1,0.3142,-0.5714,-0.7428,-0.6,-0.4858,-0.5714,-0.6572,-0.8858,-0.9714,-1,-0.8572,-0.7142,-0.6858,-0.8,-0.6286,-0.7142,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-0.9852,-0.9292,-0.8542,-0.8142,-0.8306,-0.6434,-0.4316,-0.68,0.553,0.6924,0.7366,0.8352,0.873,0.9814,1,-0.6504,-0.534,0.1844,0.6602,0.136,0.2816,0.9514,0.7864,0.1748,0.1166,1,0.9806,0.2816,0,0,0.2816,0.7864,0.7378,0.5436,0.7378,0.9708,0.8058,0.6116,0.4564,0.0194,-0.2136,0.0388,0.0388,-0.1942,-0.3106,-0.4952,-0.8834,-0.4058,-0.2228,0.1314,0.28,0.0286,0.28,0.6686,0.4972,0.4514,0.52,0.6228,0.7714,0.2,0.2572,0.1542,0.5886,0.7942,0.8742,0.6914,0.7486,1,0.8742,0.3942,0.3372,0.36,0.0058,0.1086,0.2228,-0.0742,-0.2228,-0.2,-0.4286,0.053,0.3122,0.6244,1,0.7884,0.8254,0.9576,0.9842,0.4762,0.5874,0.7514,0.836,0.4392,0.2962,0.2962,0.2962,0.6508,0.6296,0.4656,0.4126,0.5926,0.635,0.3598,0.4126,0.1164,0,0.1058,0.0952,-0.0634,-0.418,-0.6244,-0.8572,-0.1836,-1,-1,1,-1,-1,-1,-0.4666,-1,-0.551,-0.3674,-0.102,-0.0204,0.1836,0.8368,1,0.551,0.0816,0.0204,-0.1224,-0.1632,0.9592,0.653,0.4082,0.2448,0.5102,0.449,0.4082,0.5918,0.5102,0.6122,0.7142,0.2448,0.0612,0.3878,0.7346,0.0612,0.0204,0.5714,0.6122,0.2244,'15'
0.1046,0.1506,-0.3808,-0.272,-0.318,-0.5188,-0.4686,-0.6066,-0.9164,-0.7154,-0.5816,-0.6108,-0.59,-0.5816,-0.5774,-0.4854,-0.3724,-0.1966,-0.0126,0.0544,0.2426,0.7992,0.8326,0.7238,0.8578,0.8828,1,1,0.8744,0.7616,0.456,0.3766,-0.707,0.6104,0.9678,0.7584,0.2464,0.3044,0.0466,-0.1272,-0.227,-0.4492,-0.2786,-0.2914,-0.3268,-0.3012,-0.4944,-0.1078,-0.1434,0.0178,0.3076,0.401,0.781,0.9872,0.8616,0.665,0.6426,0.7584,1,0.955,0.8132,0.7552,0.4782,0.5588,-0.815,0.5614,0.794,0.5562,0.3632,0.3528,-0.3448,-0.0356,-0.2444,-0.2602,-0.1968,-0.4636,-0.1122,-0.2576,-0.1862,-0.0542,-0.1334,0.3792,0.3078,0.543,0.7332,0.601,0.9974,1,0.6592,0.8864,0.794,0.8336,0.9154,0.6698,0.757,0.6486,-0.6366,0.7878,0.9418,0.3982,0.439,0.218,-0.1308,-0.1802,-0.2878,-0.1774,-0.5436,-0.279,-0.2906,-0.2412,-0.2064,-0.3344,-0.1512,-0.0406,0.279,0.3518,0.5378,0.9826,1,0.8488,0.6832,0.564,0.8634,0.8344,0.8692,0.8808,0.6918,0.8052,-0.206,0.804,0.7974,0.5316,0.4916,-0.3388,-0.4054,-0.3688,-0.4386,-0.6014,-0.6644,-0.4818,-0.3388,-0.372,-0.4418,-0.4386,-0.3156,-0.2724,-0.1496,0.0532,0.3954,0.7408,0.8804,0.8738,0.6678,0.7508,0.8438,0.9768,1,0.9468,0.8572,0.6446,-0.1466,0.44,0.5566,0.73,0.0866,-0.3634,-0.4766,-0.59,-0.69,-0.79,-0.88,-0.6134,-0.4834,-0.6334,-0.7066,-0.57,-0.3434,-0.4066,-0.5066,-0.1,0.19,0.51,0.84,1,0.7034,0.5066,0.6234,0.7834,0.74,0.58,0.38,0.27,-0.1378,0.3398,0.8292,0.8214,-0.5572,-0.6622,-0.6544,-0.6388,-0.9378,-0.8564,-0.8874,-0.5068,-0.4136,-0.4874,-0.3476,-0.6854,-0.6894,-0.6,-0.6,-0.6544,-0.1844,0.266,0.8834,1,0.4058,0.3826,0.4524,0.398,0.3166,0.3554,-0.0602,-0.0174,0,-0.0526,0.0526,0.3158,0.1052,0.2632,0.0526,-0.3684,-0.1052,0.0526,0.1578,0.2106,0.0526,-0.0526,0,0.0526,-0.0526,0.2632,0.5264,0.579,0.421,0.5264,0.8422,0.8948,0.7894,1,0.8948,0.6842,0.9474,0.9474,0.579,0.579,0.4634,0.4634,-0.0244,0.317,0.1708,0.2682,0.2196,-0.2196,-0.2682,-0.317,-0.1708,-0.2196,-0.2196,-0.317,-0.0732,-0.122,0.0732,0.122,0.317,0.4146,0.317,0.9512,1,0.8048,0.6586,0.756,0.6098,0.7074,0.8048,0.8048,0.756,0.5122,-0.8,0.6444,0.9112,0.7334,0.4222,0.4666,-0.0222,-0.0222,-0.0666,-0.2888,-0.0666,-0.2666,-0.5112,-0.4,-0.4666,0.0444,0.0666,0.2,0.4444,0.2666,0.8222,0.9778,0.6444,0.3112,0.3112,0.6444,0.9778,0.8444,0.8666,1,0.6444,0.9778,-1,-1,-1,-1,-1,-1,-0.9618,-0.9684,-0.7956,-0.6426,-0.6044,-0.1404,-0.5544,0.827,0.5378,0.3216,0.1522,-0.079,-0.2202,-0.2852,-0.3482,-0.5394,-0.8004,-0.9368,-0.9584,-0.9534,-0.9534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9464,-0.9518,-0.7876,-0.3044,-0.4118,-0.2026,-0.4754,0.6934,0.851,0.5476,0.1424,-0.0548,-0.1446,-0.1862,-0.345,-0.6122,-0.8226,-0.9048,-0.907,-0.9112,-0.9222,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.94,-0.91,-0.2234,0,-0.7164,-0.3074,-0.7746,-0.6292,-0.6182,-0.691,-0.7238,-0.7856,-0.742,-0.7784,-0.8284,-0.7868,-0.47,-0.6034,-0.7068,-0.6268,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6572,-0.2,1,1,-0.1428,-0.4286,0.3714,1,-0.2,-0.2858,-0.6572,-0.9428,-0.8858,-0.9142,-0.6,-0.7142,-0.7714,-0.8572,-0.8858,-0.5714,-0.3142,-1,-1,-1,-1,-1,-1,-0.6344,-0.6482,-0.5098,-0.4226,-0.3228,-0.2562,-0.1158,0.0476,0.1624,-0.0366,0.883,0.8652,0.916,0.9388,0.938,0.8916,0.9008,0.8686,0.8432,0.8448,-0.9334,0.3294,-0.4272,-0.3844,-0.3066,-0.0372,-0.1434,1,0.4974,0.4774,0.2362,0.0754,0.1356,0.3266,0.387,0.7086,0.789,0.9396,1,0.7588,0.809,0.8292,0.7286,0.5276,0.4572,0.6684,0.618,0.5778,0.809,0.8392,0.5578,0.5376,0.7186,0.3668,0.3166,0.3366,0.3668,0.3366,0.2764,-0.3066,-0.1164,-0.02,0.0682,0.253,0.2048,0.2772,0.3092,0.4136,0.759,0.992,1,0.9518,0.992,0.8714,0.743,0.4136,0.7992,0.6706,0.6386,0.6546,0.6706,0.6626,0.5582,0.5824,0.6306,0.8314,0.8314,0.6224,0.4056,0.4538,0.3734,0.0682,0.0748,0.1776,0.1402,0.1588,0.0748,-0.0374,0.0842,0.2056,0.3084,0.4672,0.8318,0.9532,0.9346,0.8412,0.8972,0.6636,0.5982,0.8038,0.8786,0.7758,0.7196,1,0.5888,0.6542,0.7196,0.6074,0.5328,0.4112,0.1402,0.3738,0.2898,-0.1214,-0.264,-1,-1,1,-1,-1,-1,-0.5,-1,0.1076,0.1076,0.0462,0.0462,0.0462,0.0308,-0.0154,0.1846,-0.0924,-0.0616,0.1692,1,0.723,0.5692,0.523,0.3692,0.4308,0.3846,0.323,0.277,0.0616,0.2462,0.0462,0.1692,0.077,-0.0616,-0.0616,-0.1076,-0.0462,0.0308,-0.1076,-0.4,'16'
-0.7294,0.4648,0.9108,0.7986,0.0274,0.272,0.0762,-0.0792,-0.0676,-0.505,-0.2172,-0.1972,-0.341,-0.1194,-0.1598,-0.2144,0.0188,-0.0446,0.3582,0.508,0.6604,1,0.977,0.7582,0.8302,0.6518,0.7956,0.8532,0.6116,0.6776,0.7152,0.5108,-0.8996,0.5604,0.8154,0.6066,0.2646,0.2782,-0.3432,0.004,-0.1344,-0.3352,-0.1832,-0.5496,-0.1398,-0.1804,-0.308,-0.08,-0.2158,0.2862,0.3514,0.2944,0.715,0.6906,0.8264,1,0.7476,0.6798,0.734,0.555,0.6066,0.5414,0.4464,0.4518,-0.742,0.7774,0.9364,0.2898,0.2932,0.0354,-0.0036,-0.06,-0.4346,-0.3322,-0.5512,-0.3144,-0.3886,-0.5406,-0.5018,-0.4276,-0.2474,-0.1554,0.1236,0.3004,0.4558,0.8798,1,0.954,0.8198,0.4452,0.5724,0.6254,0.7032,0.6254,0.5088,0.5372,-0.1478,0.7354,0.6838,0.5808,0.4502,-0.0652,-0.2508,-0.2956,-0.3092,-0.409,-0.4604,-0.5258,-0.4948,-0.5842,-0.6254,-0.536,-0.3196,-0.323,-0.1168,0.0274,0.3574,0.6872,1,0.8934,0.5842,0.4948,0.6186,0.7182,0.7044,0.6324,0.5774,0.5568,-0.1128,0.4574,0.8496,0.905,-0.1684,-0.3466,-0.3782,-0.6476,-0.5722,-0.596,-0.604,-0.596,-0.703,-0.6712,-0.4772,-0.5762,-0.6396,-0.4376,-0.307,-0.2832,0.0694,0.6832,1,0.9248,0.5524,0.695,0.7228,0.5406,0.5248,0.5762,0.3782,0.1446,-0.3618,0.7516,1,0.4818,-0.0792,-0.4562,-0.332,-0.4646,-0.5374,-0.6532,-0.4776,-0.3618,-0.3404,-0.4518,-0.3148,-0.3876,-0.2292,-0.4732,-0.4004,-0.2548,-0.0278,0.529,0.7044,0.6916,0.5246,0.4346,0.4518,0.666,0.6616,0.2206,0.0964,0.0706,-0.54,0.753,1,0.2688,-0.2446,-0.5254,-0.477,-0.4576,-0.6998,-0.4866,-0.4722,-0.4286,-0.2736,-0.3802,-0.506,-0.414,-0.201,-0.2154,-0.4624,-0.3318,-0.075,0.3026,0.9226,0.9564,0.7628,0.7628,0.7336,0.6658,0.4674,-0.0606,-0.138,-0.1332,-0.5218,0.4782,1,0.9566,0.3914,0.174,0.174,-0.087,-0.2174,-0.2174,-0.2174,-0.2174,-0.3044,-0.7392,-0.6522,-0.4348,-0.2608,0,0.0434,0.3478,0.5218,0.6086,0.6956,0.7392,0.7826,0.6956,0.6956,0.6086,0.4782,0.4782,0.2608,0.5218,-0.423,0.5384,1,0.923,0.077,0.5,0.423,-0.1538,0.0384,-0.077,-0.1924,0,-0.1924,-0.3462,0.0384,-0.077,0.077,0.2692,0,0.6154,0.6924,0.6538,0.8846,1,0.7308,0.577,0.6924,0.6154,0.577,0.6924,0.5384,0.6538,-0.9778,0.4666,0.6888,0.4666,0.1334,0.1112,-0.2222,-0.1112,-0.3778,-0.4222,-0.3778,-0.3334,-0.0888,-0.2666,-0.4222,-0.2888,-0.2888,0.1778,0.1112,0.4222,0.5556,0.4,1,1,0.5334,0.7556,0.6,0.6222,0.6444,0.2444,0.5778,0.4666,-1,-0.964,-0.975,-0.8488,-0.5826,-0.6282,-0.502,-0.2982,-0.7142,-0.7988,-0.8474,0.7128,0.3412,0.2024,0.025,-0.197,-0.3482,-0.4382,-0.5006,-0.5368,-0.6214,-0.6894,-0.8002,-0.8848,-0.9612,-0.9736,-0.9694,-1,-1,-1,-1,-1,-1,-1,-0.9616,-0.9624,-0.8106,-0.1906,-0.552,-0.5226,-0.37,-0.6524,-0.7226,-0.7618,0.5446,0.6034,0.073,-0.1278,-0.2892,-0.3456,-0.4868,-0.5716,-0.6426,-0.7364,-0.7512,-0.84,-0.8752,-0.9192,-0.929,-0.9242,-1,-1,-1,-1,-1,-1,-1,-0.926,-0.98,-0.8934,-0.3134,-0.1334,-0.48,-0.7068,-0.21,0.1266,0.0866,-0.614,-0.53,-0.622,-0.658,-0.744,-0.7838,-0.8,-0.7782,-0.8582,-0.8692,-0.902,-0.9334,-0.6234,-0.3968,-0.6534,-0.7668,-1,-1,-1,-1,-1,-1,-1,-0.2858,-0.4858,1,1,-0.3428,-0.5142,-0.8,-0.7142,-0.4286,0.7428,1,0.2286,-0.2286,-0.6286,-0.8572,-0.8572,-0.6858,-0.8858,-0.2286,-0.7428,-0.7142,-0.6,-0.8858,-0.7714,-0.9428,0.1142,-1,-1,-1,-1,-1,-1,0.4284,0.4284,0.4258,0.4224,0.4282,0.4402,0.4466,0.431,0.362,0.0864,0.7592,0.7614,0.7234,0.7342,0.7528,0.7578,0.7868,0.7652,0.7888,0.7364,-0.76,0.247,-0.7756,-0.3382,0.5186,0.7708,0.9592,-0.0416,0.1758,0.2472,0.269,0.325,0.2598,0.0794,0.4402,0.6796,0.7262,0.86,1,0.9346,0.944,0.9192,0.7262,0.6174,0.7138,0.6268,0.5552,0.6702,0.8506,0.8694,0.6702,0.6298,0.6858,0.748,0.4588,0.3562,0.2598,0.3654,0.2318,-0.0514,0.2996,0.1078,0.0674,0.0876,0.0034,-0.0538,-0.037,0.0304,0.2122,0.4108,0.643,0.8452,0.9292,0.9326,0.8518,0.6498,0.6364,0.808,0.9462,0.825,0.8754,0.8686,0.835,1,1,0.8148,0.569,0.6262,0.3872,0.34,0.4478,0.1448,-0.2244,0.0198,-0.0462,-0.1386,-0.2278,-0.2806,-0.2476,-0.1254,-0.0232,0.2542,0.6172,0.901,0.8316,1,0.835,0.5908,0.4752,0.5676,0.7128,0.6766,0.825,0.6996,0.9538,0.9868,0.7294,0.3928,0.076,0.2674,0.1486,0.2212,0.2376,-0.0496,0.033,-1,1,-1,-0.6,-1,0,0.4334,-1,-0.5122,-0.3658,-0.2682,-0.2358,-0.1708,-0.3334,0.057,-0.0082,0.0244,-0.0244,0.496,1,0.4472,0.4308,0.1708,0.187,0.1708,0.3822,0.252,0.0406,-0.2682,0.0894,0.496,0.122,-0.1544,-0.0894,0.0894,-0.1708,-0.252,-0.3822,-0.2196,-0.8212,'16'
-0.7946,0.7232,0.9832,0.5808,0.2076,0.1404,-0.392,-0.2578,-0.6394,-0.719,-0.7484,-0.631,-0.5682,-0.6646,-0.5598,-0.652,-0.346,-0.2872,-0.0146,0.2914,0.4298,0.9246,0.8322,0.5052,0.6982,0.61,1,0.9832,0.5598,0.7274,0.4382,0.6478,-0.9438,0.4402,0.6146,0.2996,0.367,0.2856,-0.159,-0.069,-0.4796,-0.1646,-0.277,-0.114,-0.0436,-0.3868,-0.0408,-0.1786,0.2546,0.3136,0.4318,0.7244,0.5696,0.9662,1,0.5752,0.7638,0.5528,0.4206,0.4374,0.2012,0.4318,0.2434,0.564,-0.8488,0.6838,0.8522,0.3676,0.708,0.536,0.2234,0.2234,-0.1374,0.0482,-0.299,0.1856,0.0928,0.2474,0.3092,0.433,0.7388,0.5086,1,0.9656,0.6598,0.8178,0.725,0.646,0.4914,0.086,0.0446,-0.024,0.189,0.1616,0.2336,0.3264,-0.2188,0.8754,0.9208,0.9584,1,0.3056,0.3774,0.151,0.2452,0.1094,0.2604,0.4944,0.5736,0.566,0.6226,0.6038,0.3018,0.2188,0.2,0.3056,0.3886,0.6188,0.7018,0.4452,0,0,-0.0302,-0.1472,0.0302,0.0792,0.1056,0.3056,-0.0056,0.65,0.757,1,0.5654,0.2744,0.1824,0.1198,0.197,0.5764,0.7238,0.2892,-0.0128,-0.3038,-0.4548,-0.5102,-0.6096,-0.4954,-0.4254,-0.326,-0.256,0.0828,0.2338,0.0276,-0.3222,-0.3518,-0.466,-0.5064,-0.3886,-0.3628,-0.4144,-0.116,-0.0718,0.4302,0.9402,1,0.4144,0.1992,0.1872,0.6614,0.5418,0.0678,-0.2908,-0.4262,-0.6334,-0.6016,-0.7052,-0.6454,-0.5378,-0.6574,-0.7888,-0.753,-0.5698,-0.1912,-0.1594,-0.2828,-0.5856,-0.6096,-0.5816,-0.7052,-0.737,-0.6892,-0.5698,-0.49,0.0118,0.6294,0.8908,0.9572,0.373,0.1638,0.5202,1,0.7198,-0.2494,-0.6484,-0.5154,-0.4014,-0.4774,-0.563,-0.582,-0.4584,-0.5962,-0.5534,-0.7198,-0.772,-0.4536,-0.259,-0.5296,-0.4584,-0.5012,-0.791,-0.6152,-0.5914,-0.5772,-0.4916,-0.4774,0.1666,0.4444,0.6666,0.1112,-0.1112,-0.6666,-0.4444,-0.3888,-0.2778,-0.2778,-0.3334,-0.6112,-0.1112,-0.1112,0.0556,-0.2222,-0.4444,-0.5556,0.2222,0.3334,0.2222,0.8334,0.8334,0.7222,0.6112,0.3888,1,1,0.3888,0.6112,0.6666,0.5,-0.2094,0.721,1,0.7674,0.2558,0.2558,-0.4418,-0.2558,-0.2094,-0.721,-0.5348,-0.5348,-0.8604,-0.628,-0.814,-0.3954,-0.4884,0.1162,0.1162,0.3024,0.3954,0.628,0.5348,0.3488,0.2558,0.628,0.814,0.4884,0.3954,0.3024,-0.1628,0.0698,-0.1082,0.7298,0.6486,1,0.8648,0.2702,0.081,0.1622,0,0.2162,0.3784,0.7568,0.5406,0.4324,0.1352,0.027,-0.1892,-0.1082,-0.1082,0.1892,-0.1622,0.2432,0.2162,0.3514,-0.054,-0.2162,-0.2972,-0.2972,-0.1622,0.027,-0.1082,0,-1,-0.9714,-0.9796,-0.9714,-0.913,-0.8164,-0.2994,1,0.4,0.4244,-0.2422,0.6122,0.6108,0.4082,0.2232,0.0558,-0.0476,0.0326,-0.1824,-0.253,-0.385,-0.6176,-0.9006,-0.9632,-0.9756,-0.9714,-1,-1,-1,-1,-1,-1,-1,-1,-0.9594,-0.9584,-0.7654,0.1098,-0.1456,0.0794,1,0.4162,0.37,-0.1986,0.4578,0.9006,0.8372,0.4966,0.1514,-0.0406,0.001,-0.28,-0.385,-0.4712,-0.686,-0.877,-0.931,-0.9366,-0.9348,-1,-1,-1,-1,-1,-1,-1,-1,-0.8868,-0.9068,-0.7268,0.0432,0.8,0.2366,-0.7034,-0.42,-0.65,-0.43,-0.8024,-0.6,-0.546,-0.688,-0.68,-0.874,-0.892,-0.896,-0.904,-0.876,-0.9246,-0.7886,-0.8552,-0.8886,-0.8886,-1,-1,-1,-1,-1,-1,-1,-1,-0.7428,0.2286,1,1,0.8572,-0.3428,-0.5142,-0.6858,-0.4572,0.3714,1,0.4,-0.4858,-0.4572,-0.4572,-0.4,-0.3142,-0.5142,-0.9428,-0.9142,-0.6286,-0.6858,-0.8286,-0.9428,-0.4572,-1,-1,-1,-1,-1,-1,-1,-0.2252,-0.102,-0.0548,0.013,0.0798,0.1362,0.2298,0.3432,0.4426,0.4812,0.9638,0.9598,0.9548,0.9682,0.9402,0.9014,0.8238,0.6434,0.2256,-0.056,-0.8534,0.153,-0.3226,-0.2716,0.5204,0.8184,0.718,-0.7666,-0.8968,-0.2838,-0.3226,-0.3354,-0.1484,-0.1388,-0.1,0.0388,0.113,0.1194,0.2936,0.3838,0.5774,0.7484,1,0.9096,0.8032,0.7806,0.5548,0.6096,0.6452,0.7194,0.758,0.7064,0.8162,0.529,0.5516,0.4612,0.3806,0.2968,0.371,0.0516,0.3968,0.1774,-0.1452,-0.1064,-0.2,-0.4064,-0.2612,-0.1452,-0.0516,0.0968,0.2646,0.2548,0.5452,0.642,1,0.9032,0.842,0.7096,0.7612,0.871,0.9064,0.871,0.8322,0.7258,0.787,0.7936,0.6968,0.5612,0.5226,0.6258,0.5516,-0.029,0.4662,0.1318,-0.1158,-0.2218,-0.283,-0.1736,-0.1254,-0.1382,-0.1318,0.1704,0.447,0.4116,0.6046,0.775,0.8424,0.8586,0.7556,0.7878,0.7588,0.8136,0.9454,0.9614,0.9228,1,0.955,0.7428,0.566,0.6012,0.521,0.3762,0.3536,0.193,1,-1,1,-1,-1,-1,-1,0.4334,-1,0.35,0.375,-0.075,1,0.85,0.475,0.65,0.575,0.925,0.825,0.425,0.425,0.425,0.375,0.1,0.375,0.325,0.325,0.325,0.25,0.175,0.025,-0.025,0.125,0.275,0.325,0.25,0.125,0.775,0.45,-0.075,-0.5,'17'
-0.846,0.4686,0.8774,0.7202,0.173,0.3742,-0.0346,-0.2202,-0.261,-0.5692,-0.2202,-0.3208,-0.4434,-0.2894,-0.5032,-0.151,-0.1038,-0.088,0.3648,0.327,0.7106,1,0.8836,0.6038,0.695,0.3994,0.7672,0.7988,0.2798,0.588,0.5188,0.5158,-0.9622,0.2312,0.5188,0.3584,0.2784,0.349,-0.1274,-0.1674,-0.2028,-0.4198,-0.2076,-0.375,-0.1392,-0.0754,-0.5188,-0.0802,-0.0944,0.2878,0.5306,0.3774,0.9198,1,0.6792,0.7996,0.7594,0.2194,0.4834,0.3066,-0.026,0.059,-0.0896,0.335,-0.9642,0.7198,0.9154,0.4724,0.9382,0.7948,0.2476,0.2866,-0.1466,-0.0196,-0.0912,0.215,0.2476,0.0652,0.2768,0.4592,0.9186,0.9414,0.7492,0.7134,0.71,0.7426,1,0.9414,0.4332,0.254,0.0098,-0.1368,-0.1368,0,0.114,0.202,-0.2676,0.5764,0.5542,1,0.9172,0.309,0.1816,0.0414,-0.0192,0.0286,0.2866,0.2962,0.4364,0.395,0.3248,0.1146,-0.0988,-0.2166,-0.2134,-0.121,0.0414,0.3598,0.4108,0.277,-0.102,-0.3376,-0.395,-0.4936,-0.4554,-0.1816,-0.172,-0.1688,-0.0878,0.428,0.8912,1,0.6036,0.4456,0.2492,0.0632,0.3438,0.5964,0.386,0.3298,0.2492,-0.0666,-0.4702,-0.579,-0.5754,-0.5368,-0.435,-0.435,-0.3052,0.2736,0.3614,0.0666,-0.3088,-0.7438,-0.607,-0.5578,-0.4526,-0.6526,-0.4596,-0.2736,-0.1584,0.2826,1,0.8878,0.7194,0.2906,0.4068,0.479,0.7516,0.3346,0.002,-0.3146,-0.5592,-0.4308,-0.4428,-0.487,-0.5992,-0.6674,-0.7556,-0.5632,-0.4268,-0.2986,-0.1824,-0.4428,-0.503,-0.7434,-0.9398,-0.6914,-0.531,-0.7434,-0.543,-0.463,-0.2288,0.3134,1,0.8358,0.5024,0.3284,0.7662,0.7462,0.2388,-0.587,-0.5074,-0.4278,-0.5174,-0.5622,-0.2636,-0.2736,-0.398,-0.3782,-0.5174,-0.7164,-0.3632,-0.194,-0.398,-0.3284,-0.4926,-0.617,-0.418,-0.5572,-0.5472,-0.4776,-0.5324,-0.5074,-0.3334,0.6078,1,0.9608,0.4118,0.3726,0.255,-0.1764,-0.1764,-0.2156,-0.2156,-0.2942,-0.2156,-0.3726,-0.098,-0.1372,-0.2156,-0.0588,0.0588,-0.1764,0.4118,0.7648,0.647,0.5294,0.5686,0.8432,0.9216,0.9216,0.6862,0.647,0.6862,0.647,-0.762,0.5714,1,0.8572,0.0952,0.381,-0.0476,0,0,-0.7142,-0.2858,-0.3334,-0.5714,-0.3334,-0.4762,-0.1904,-0.1428,-0.381,0.0476,0.1428,0.5238,0.7142,0.619,0.1904,0.5714,0.3334,0.2858,0.2858,0.4762,0.6666,0.7142,0.381,-0.96,0.32,0.54,0.34,0.44,0.44,-0.12,-0.02,-0.14,-0.26,-0.22,-0.32,0.04,-0.04,-0.02,0.04,0.28,0.78,0.74,0.66,0.82,0.62,0.94,1,0.44,0.46,0.34,-0.1,0,-0.06,0.2,0.16,-1,-0.9788,-0.9776,-0.9714,-0.9028,-0.8266,0.2194,0.1982,-0.3504,-0.3878,-0.7144,0.692,0.419,0.1882,-0.02,-0.136,-0.0112,-0.1322,-0.3142,-0.4364,-0.6584,-0.7432,-0.838,-0.909,-0.9452,-0.97,-0.9776,-0.9726,-1,-1,-1,-1,-1,-1,-0.9736,-0.97,-0.7898,-0.0826,-0.1548,0.0732,0.074,-0.3522,-0.4122,-0.6768,0.4408,0.8892,0.581,0.0554,-0.2364,-0.1784,-0.36,-0.5094,-0.5896,-0.7468,-0.8062,-0.8814,-0.925,-0.9456,-0.9578,-0.9556,-0.935,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.9,0.3866,0.85,-0.18,-0.4934,-0.2234,-0.3,0.03,-0.562,-0.454,-0.328,-0.4456,-0.6564,-0.771,-0.9,-0.9128,-0.9164,-0.9182,-0.9038,-0.94,-0.8868,-0.8,-0.9134,-0.8734,-0.8,-1,-1,-1,-1,-1,-1,-0.4,0.0858,1,1,0.3142,-0.2858,-0.8286,-0.4286,0.2858,0.9714,1,-0.5428,-0.0858,0.0572,-0.2286,-0.5714,-0.7428,-0.9142,-0.8286,-0.9142,-0.7714,-0.7428,-0.9428,-0.9714,-0.8858,-0.8286,1,-1,-1,-1,-1,-1,0.356,0.3748,0.388,0.3994,0.4242,0.4414,0.4984,0.5598,0.5998,0.6352,0.8334,0.818,0.813,0.7848,0.7674,0.7486,0.7196,0.5832,0.1526,-0.1464,-0.8,0.2706,-0.7362,-0.25,0.5124,0.4416,0.862,-0.375,-0.827,-0.3334,-0.1982,-0.0944,-0.1006,0.085,0.0472,0.0504,0.0346,0.2422,0.2642,0.4906,0.61,0.89,0.9686,0.9214,0.8208,0.8176,0.9246,0.89,0.9214,1,0.912,0.7956,0.7452,0.695,0.5126,0.415,0.4906,0.6194,0.3428,0.1258,0.2664,0.1962,-0.0462,-0.1898,-0.209,-0.3142,-0.2376,-0.0878,0.0016,0.1738,0.2216,0.3142,0.6108,0.7768,0.9872,0.8692,0.713,0.5534,0.5502,0.7576,1,0.9968,0.665,0.9554,0.898,0.8788,0.6428,0.4194,0.4226,0.5598,0.4162,0.1004,0.09,0.1112,-0.084,-0.2132,-0.1922,-0.2582,-0.2222,-0.1262,0.051,0.1352,0.4294,0.6936,0.6036,0.8588,0.8318,0.5286,0.6036,0.6276,0.6246,0.6546,0.925,0.946,0.7688,1,0.988,0.7088,0.5496,0.2012,0.2942,0.2762,0.03,-0.2552,1,-1,1,-1,-1,-1,-1,0.4666,-1,-0.5738,-0.5738,-0.4098,-0.2786,-0.082,0.6722,0.6722,0.082,0.1476,-0.082,-0.0164,-0.1148,0.377,0.2786,-0.1148,0.1804,0.4754,0.4098,0.9344,1,0.3114,0.4098,0.082,0.0164,-0.0164,-0.3114,0.0164,0.6394,0.1148,-0.1804,-0.2132,-0.541,'17'
-0.619,0.0312,0.0502,0.274,0.3308,0.672,0.7612,0.9602,1,0.8028,0.8654,0.6758,0.4654,0.2644,0.071,-0.092,-0.219,-0.1982,-0.1014,-0.018,0.1868,0.1678,-0.0142,-0.02,-0.253,-0.255,-0.3328,-0.3042,-0.2644,-0.0236,0.145,0.1582,-0.5496,0.0958,0.117,0.2454,0.2612,0.6746,0.7028,0.9332,1,0.7028,0.7978,0.4512,0.3176,0.043,0.0536,-0.1486,-0.1716,-0.2172,0.0062,0.1064,0.3984,0.314,-0.0606,-0.103,-0.277,-0.2858,-0.3862,-0.3914,-0.2964,-0.2172,-0.0202,-0.0202,-0.4346,0.1528,0.14,0.2946,0.2486,0.6796,0.6206,1,0.9374,0.7772,0.6962,0.4402,0.3592,0.1528,0.059,-0.0682,-0.092,0.0792,0.1198,0.4052,0.4014,0.1418,-0.0074,-0.2542,-0.326,-0.4272,-0.4346,-0.326,-0.3794,-0.1878,0.0018,-0.0036,-0.322,0.195,0.1038,0.303,0.5848,0.7076,0.9576,1,0.875,0.8348,0.7776,0.6632,0.5276,0.3686,0.1652,0.0868,0.072,0.2288,0.1928,0.2416,0.1166,-0.1652,-0.3708,-0.5338,-0.5338,-0.5318,-0.5064,-0.411,-0.4386,-0.2882,-0.125,0.0106,-0.2932,0.1584,0.2388,0.3428,0.7044,0.7424,1,0.8156,0.8392,0.8464,0.7778,0.9598,0.818,0.7376,0.6052,0.5768,0.6762,0.4398,0.2718,-0.019,-0.1442,-0.201,-0.3476,-0.4398,-0.4988,-0.442,-0.383,-0.3854,-0.3688,-0.3002,-0.1088,0.1418,-0.3732,-0.017,0.261,0.2952,0.5804,0.8536,0.8854,0.7708,0.583,0.5318,0.7976,0.9024,1,0.8414,0.739,0.678,0.3098,-0.0854,-0.1512,-0.2318,-0.3854,-0.5732,-0.5196,-0.561,-0.5756,-0.5854,-0.6536,-0.5244,-0.5414,-0.3804,-0.1512,0.061,-0.3214,0.0874,0.3214,0.3512,0.5288,0.7126,0.6444,0.7214,0.517,0.3866,0.434,0.9586,1,0.8874,0.8696,0.7334,0.0548,-0.2652,-0.5378,-0.5288,-0.603,-0.6208,-0.5734,-0.7126,-0.5734,-0.674,-0.5882,-0.6682,-0.597,-0.52,-0.1288,-0.0756,-0.5218,-0.3044,-0.2174,0.2608,0.3478,0.6956,0.6956,0.8696,0.7392,1,0.9566,1,0.913,0.6956,0.3044,0,0.087,0.2608,0.3914,0.5218,0.7392,0.6086,0.6956,0.4782,0.3478,0.087,0.174,0.3044,0.5218,0.7392,0.7826,0.7392,-0.709,0.0546,0.091,0.3818,0.3818,0.709,0.8546,1,1,0.7818,0.891,0.7818,0.709,0.4182,0.3454,0.2,0.091,0.0546,0.1636,0.1636,0.3454,0.4182,0.2364,0.1272,-0.091,-0.2,-0.1272,-0.2728,-0.2,-0.0182,0.1636,0.2364,-0.3488,0.186,0.1396,0.279,0.628,0.7442,1,0.9768,0.8838,0.7674,0.814,0.6046,0.6744,0.2558,0.279,0.1396,0.093,0.3954,0.2094,0.2558,0.0232,-0.186,-0.5348,-0.6046,-0.5582,-0.814,-0.5814,-0.4186,-0.721,-0.4186,-0.1396,0.186,-1,-1,-1,-1,-1,-1,-1,-0.9604,-0.9582,-0.8724,-0.9252,0.6568,0.7976,0.868,0.8438,0.7514,0.6282,0.4478,0.0958,-0.1266,-0.2564,-0.4698,-0.5908,-0.7646,-0.8614,-0.9318,-0.9516,-0.934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9822,-0.985,-0.6768,-0.9124,0.6078,0.78,0.763,0.624,0.2846,0.0204,-0.0338,-0.3584,-0.4726,-0.626,-0.7836,-0.8546,-0.9012,-0.9178,-0.9226,-0.9238,-0.9446,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-1,-0.68,-0.6,-0.58,-0.5694,-0.574,-0.594,-0.6048,-0.6294,-0.6708,-0.894,-0.8954,-0.877,-0.8832,-0.9334,-0.7868,-0.7534,-0.6968,-0.7334,-0.6534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,1,-0.8286,-0.8572,-0.9714,-0.8,-0.7142,-0.7714,-0.9142,-0.8858,-1,-0.8286,-0.5142,-0.8572,-0.8286,-0.7428,-0.8,-0.8286,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.929,-0.963,-0.9318,-0.9024,-0.9114,-0.9056,-0.894,-0.8914,-0.9958,-1,-0.72,0.553,-0.9712,-0.441,0.684,0.9178,0.8182,0.7916,-0.4832,-0.472,0.2248,0.7978,0.8426,1,0.4832,0.2134,0.2472,0.2134,0.7978,0.7528,0.3484,0.2584,0.6404,0.9438,0.8426,0.6854,0.9102,0.9776,0.7304,0.146,0.2584,0.0562,-0.2134,-0.1348,-0.0786,-0.1236,-0.3146,-0.2808,-0.4158,-0.6068,-0.0068,0.1034,0.2552,0.8758,0.5172,1,0.3794,0.3242,0.5034,0.5448,0.9724,0.8206,0.462,0.531,0.3518,0.6966,0.862,0.5586,0.6966,0.862,0.5034,0.338,0.338,0.2138,0.0206,0.269,0.2414,0.3104,0.0758,0.1448,0.131,0.0344,-0.5074,-0.4626,-0.015,0.8358,0.8358,0.8208,0.5074,0.2986,0.4328,0.418,0.9104,1,0.418,0.4328,0.6866,0.6568,0.6568,0.7762,0.7314,0.985,0.5672,0.1642,-0.0896,-0.1792,-0.3432,-0.2986,0.1344,-0.2388,-0.3134,-0.3432,-0.4478,-0.612,-0.0828,-1,-1,1,-1,-1,0,-0.6,-1,-0.5166,-0.65,0,0.2834,0.2334,0.6,1,0.9834,0.8,0.25,-0.1334,0.0666,0.0666,-0.3,0.1334,0.4666,-0.3834,-0.3166,0.65,0.65,-0.3666,-0.4166,-0.2,-0.3,-0.4666,0.1334,0.1,-0.0166,-0.2834,-0.3334,-0.45,-0.7834,'18'
-0.5258,0.0774,0.1116,0.2956,0.3092,0.6324,0.6254,1,0.9982,0.7492,0.7904,0.4846,0.4914,0.2234,0.275,-0.1014,-0.1616,-0.1616,-0.0636,0.1444,0.3144,0.3144,0.22,-0.055,-0.0498,-0.1512,-0.2044,-0.2096,-0.1254,-0.0258,0.103,0.146,-0.4266,0.1484,0.1334,0.3066,0.2516,0.63,0.625,1,0.9234,0.7034,0.6216,0.425,0.3384,0.185,0.0816,-0.285,-0.315,-0.1634,0.0284,0.2966,0.2316,0.125,-0.045,-0.055,-0.15,-0.2284,-0.2734,-0.25,-0.2566,-0.0134,0.1334,0.1416,-0.3052,0.2264,0.1458,0.332,0.5778,0.7216,0.9328,1,0.9252,0.9232,0.6738,0.618,0.5316,0.3724,0.1228,0.0922,0.142,0.1976,0.3896,0.5566,0.476,0.2956,0.0422,-0.0882,-0.1574,-0.238,-0.3358,-0.1612,-0.096,0.0826,0.2802,0.3282,-0.2734,0.1724,0.1724,0.3044,0.6284,0.61,0.9236,0.8596,1,0.6512,0.6636,0.9712,0.8596,0.5336,0.451,0.517,0.5852,0.4798,0.5108,0.2838,0.1518,-0.0526,-0.16,-0.261,-0.2528,-0.2054,-0.321,-0.3086,-0.164,0.1002,0.2012,0.3044,-0.3492,0.033,0.2606,0.2856,0.5608,0.7952,0.8726,0.9112,0.7838,0.7406,0.7224,0.8908,1,0.9362,0.6678,0.7224,0.5564,0.2674,0.0626,-0.1012,-0.3606,-0.479,-0.488,-0.5472,-0.5358,-0.5996,-0.6292,-0.5404,-0.52,-0.3538,-0.1286,-0.058,-0.443,-0.1842,0.2106,0.2434,0.364,0.7412,0.6052,0.557,0.4606,0.5044,0.535,0.7258,0.9562,1,0.853,0.6578,0.4144,-0.1996,-0.3356,-0.3442,-0.3202,-0.4276,-0.5746,-0.7522,-0.7018,-0.739,-0.7128,-0.6448,-0.682,-0.4628,-0.2236,-0.193,-0.394,0.025,0.075,0.1198,0.2384,0.3754,0.286,0.2754,0.2122,0.2412,0.2174,0.6996,1,0.9578,0.7102,0.4914,0.1198,-0.4202,-0.4808,-0.4888,-0.589,-0.6758,-0.6812,-0.7812,-0.6126,-0.66,-0.7734,-0.8024,-0.8392,-0.4414,-0.3254,-0.4678,-0.6744,-0.1628,-0.0698,-0.0232,0.3024,0.3954,0.5814,1,0.814,0.3954,0.8604,0.907,0.2558,0.0698,0.1628,-0.3488,-0.1628,-0.0698,-0.1162,-0.0232,0.721,0.7674,0.3024,0.2094,0.2558,-0.2558,0.0232,0.1162,-0.0232,0.0232,0.3954,0.3024,-0.6072,0.0714,0.0714,0.3214,0.2858,0.7142,0.75,0.9286,1,0.8572,0.9642,0.6786,0.4286,0.2142,0.3572,0.1428,0.0714,0,0.1428,0.2858,0.6072,0.5714,0,-0.1786,0.0714,0.0714,-0.3214,-0.1786,-0.25,-0.1072,0.0714,0.3214,-0.3034,0.146,0.1236,0.2584,0.573,0.663,0.8876,0.8876,0.9776,0.7304,0.7078,1,0.9102,0.528,0.4832,0.5056,0.5506,0.528,0.573,0.4606,0.2134,-0.0112,-0.0112,-0.0562,-0.1686,-0.3034,-0.3258,-0.3484,-0.3484,0.0786,0.2134,0.2134,-1,-1,-1,-1,-1,-1,-1,-0.969,-0.9472,-0.9072,-0.7928,0.7254,0.5964,0.491,0.4128,0.1746,0.031,-0.151,-0.2236,-0.2836,-0.3836,-0.6054,-0.7964,-0.909,-0.9546,-0.9472,-0.949,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9872,-0.9832,-0.773,-0.6148,0.7202,0.2934,0.0734,-0.1404,-0.2568,-0.3366,-0.5314,-0.532,-0.621,-0.6874,-0.853,-0.9236,-0.9326,-0.9278,-0.9342,-0.941,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9634,-0.8968,-0.64,-0.45,-0.5816,-0.5944,-0.6016,-0.6016,-0.5158,-0.5658,-0.8258,-0.913,-0.823,-0.8216,-0.8644,-0.8334,-0.68,-0.62,-0.57,-0.5534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,1,-0.8572,-0.7714,-0.9142,-0.9428,-0.6,-0.7142,-1,-0.9142,-0.8858,-0.5428,-0.6858,-0.7428,-0.8,-0.7428,0.6858,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.79,-0.7916,-0.7818,-0.7704,-0.7594,-0.7242,-0.737,-0.7932,-0.9666,-1,-0.6534,0.6824,-0.6286,-0.0144,1,0.6632,0.7876,0.6834,-0.3156,-0.0802,0.262,0.754,0.7326,0.9144,0.5614,0.3048,0.2406,0.4438,0.968,0.968,0.5402,0.476,0.6042,0.9252,1,0.7326,0.8824,0.9358,0.7326,0.4866,0.3904,0.3476,0.155,-0.0588,-0.1016,-0.1764,-0.2086,-0.2192,-0.369,-0.5936,-0.6274,-0.4038,0.0684,0.8012,0.5652,1,0.528,0.3416,0.292,0.4534,0.8634,0.7888,0.4658,0.3914,0.4162,0.8758,0.8634,0.6646,0.6894,0.7392,0.528,0.3914,0.1678,0.0684,-0.1428,-0.2546,-0.2546,-0.267,-0.3788,-0.4162,-0.6024,-0.8386,-0.7,-0.1888,0.2112,0.8778,0.9112,1,0.8334,0.3444,0.2888,0.4778,0.8888,0.9334,0.5444,0.3444,0.4112,0.8666,0.9334,0.6222,0.7666,0.8444,0.5888,0.5334,0.3334,0.3222,-0.2778,-0.4444,-0.0778,-0.2334,-0.5334,-0.4778,-0.7334,-0.8444,-0.3928,-1,-1,1,-1,-1,-0.8,-0.6,-1,-0.4912,-0.3508,0.3158,0.2456,0.0176,0.421,0.965,1,0.7018,0.4912,0.0702,-0.1052,-0.035,-0.1052,0.1404,0.5264,0.2106,-0.3158,0.3334,0.0878,0.614,0.1052,-0.2106,-0.0526,-0.3158,0.4736,0.772,0.7018,0.1228,0.1404,0.1052,-0.6666,'18'
-0.8346,0.0802,0.1834,0.3024,0.509,0.695,0.938,0.9638,0.4884,0.4522,0.4626,0.5556,0.3074,0.5298,0.416,0.7622,0.7726,0.8552,1,0.7572,0.7932,0.726,0.7416,0.8398,0.7106,0.7984,0.478,0.5866,0.4418,0.509,0.4936,0.571,-0.9842,0.0632,0.1736,0.2158,0.5,0.4474,0.9948,1,0.3948,0.5264,0.2526,0.5422,0.4578,0.4948,0.5474,0.5368,0.7158,0.5578,0.8632,0.8316,0.6052,0.7052,0.5842,0.8,0.6526,0.621,0.6422,0.3526,0.4,0.2158,0.4422,0.4106,-0.8744,0.1508,0.2914,0.196,0.593,0.5428,0.9096,1,0.6684,0.5226,0.4624,0.3718,0.4824,0.2764,0.6282,0.5478,0.819,0.8844,0.4974,0.5778,0.4774,0.6232,0.6984,0.5026,0.6834,0.5628,0.402,0.4422,0.2512,0.5478,0.4624,0.382,-0.8236,0.2292,0.3754,0.1688,0.6424,0.612,0.879,1,0.7532,0.4812,0.4508,0.3702,0.4862,0.199,0.6424,0.612,0.7682,0.9144,0.733,0.6372,0.607,0.5114,0.6624,0.5214,0.8288,0.8338,0.5366,0.5668,0.4056,0.4862,0.5062,0.3198,-0.7748,0.3142,0.4294,0.2984,0.5968,0.487,1,0.9842,0.5392,0.6596,0.2618,0.4922,0.377,0.4712,0.4608,0.712,0.8796,0.7906,0.712,0.6336,0.5446,0.5498,0.576,0.644,0.7486,0.8324,0.7854,0.6388,0.4502,0.3926,0.3718,0.6388,-0.3754,0.5394,0.5584,0.3438,0.3312,0.8802,0.9242,0.8234,0.8738,0.5142,0.3502,0.407,0.5646,0.5458,0.7666,0.9054,0.8296,0.8738,0.754,0.4952,0.6088,0.735,0.6656,0.6404,0.7918,0.9936,1,0.6656,0.6782,0.5772,0.4764,0.4826,-0.0972,0.625,0.5416,0.0972,0.0416,0.25,0.4236,0.5486,0.257,0.3472,0.3542,0.4166,0.3888,0.382,0.7986,0.9514,0.5416,0.4652,0.6042,0.5556,0.625,0.5834,0.4376,0.625,0.6876,1,0.8888,0.5208,0.3472,0.1806,0.0972,0.2222,-0.8928,0.0714,0.1786,0.3214,0.5714,0.6428,0.9286,0.8928,0.5358,0.5358,0.4286,0.5714,0.3214,0.5714,0.5,0.75,0.7858,0.7858,1,0.8572,0.8214,0.75,0.7858,0.8572,0.5358,0.7858,0.6428,0.5714,0.5358,0.3572,0.5,0.3928,-0.7242,0.0344,0.138,0.3104,0.4482,0.6552,1,0.9656,0.3448,0.4138,0.4138,0.5172,0.2758,0.4482,0.3104,0.7242,0.6896,0.862,0.9656,0.6552,0.7586,0.6206,0.8276,0.7932,0.6552,0.7242,0.2068,0.5518,0.3794,0.4482,0.4138,0.5862,-0.4382,0.3932,0.4382,0.3034,0.3258,0.7752,0.9102,0.7078,0.8876,0.573,0.3258,0.236,0.4606,0.4158,0.8426,0.8652,0.7978,0.8652,0.4606,0.5506,0.528,0.7078,0.5956,0.3258,0.528,1,0.9776,0.3034,0.4606,0.528,0.4606,0.2808,-1,-1,-1,-1,-1,-1,-0.963,-0.963,-0.9332,-0.9666,-0.4236,0.8542,0.9614,0.8436,0.6626,0.6028,0.4974,0.2742,0.1968,0.0914,-0.0686,-0.2776,-0.5588,-0.8154,-0.7574,-0.8084,-0.905,-0.949,-0.9384,-0.9544,-0.9384,-0.9648,-0.9508,-1,-1,-1,-1,-1,-1,-0.9834,-0.982,-0.823,-0.9746,-0.3654,0.8598,0.9416,0.7668,0.4482,0.3426,0.2298,-0.1226,-0.2084,-0.495,-0.601,-0.7412,-0.8062,-0.8988,-0.878,-0.8822,-0.9006,-0.8926,-0.909,-0.855,-0.87,-0.8658,-0.8516,-1,-1,-1,-1,-1,-1,-0.96,-0.94,-0.5934,-0.42,-0.0434,-0.575,-0.645,-0.63,-0.616,-0.608,-0.588,-0.572,-0.596,-0.468,-0.524,-0.604,-0.31,0.0066,-0.11,-0.05,0.05,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-0.8572,0.9714,1,1,1,1,-0.1142,-0.6572,-0.4,-0.4286,-0.5714,-0.5428,-0.4858,-0.1142,-0.1142,-0.3142,-0.4286,0.1714,0.5142,-0.3428,-0.7142,-0.7428,-0.6858,-0.8858,-1,-0.9428,-0.9142,1,1,1,1,1,1,1,1,1,1,0.0406,0.0406,0.047,0.0592,0.027,0.0042,0.0198,-0.009,-0.0628,-0.0318,-0.9734,-0.5058,-0.365,0.659,0.961,0.9264,0.7996,1,-0.5768,-0.5768,0.238,0.3862,-0.09,-0.0052,0.1112,0.2064,0.545,0.8624,0.672,0.7778,0.799,0.7354,0.4604,0.545,0.799,1,0.926,0.7566,0.7566,0.238,0.09,0.0052,-0.2592,-0.1534,-0.4708,-0.344,-0.3968,-0.3016,-0.6826,-0.7672,-0.337,-0.2392,-0.163,0.1522,0.1086,-0.0218,0.2718,0.1086,0.5544,0.8478,0.7282,0.7282,0.674,0.7608,0.7826,0.6414,0.5652,1,0.9782,0.7826,0.7934,0.8152,0.337,0.1414,0.163,0.076,-0.0978,-0.2174,-0.413,-0.25,-0.3044,-0.9022,-0.1776,0.0842,0.433,0.5264,0.4392,0.3894,0.271,0.57,0.813,1,0.9128,0.9066,0.813,0.62,0.4828,0.5078,0.6884,0.6698,0.782,0.6948,0.813,0.6074,0.4954,0.2336,0.0156,0.0966,0.1588,0.0404,-0.3146,-0.3458,-0.514,-0.757,-0.433,-1,-1,1,-1,-1,-0.4,-0.4334,-1,-0.6942,-0.3764,-0.2942,-0.2118,-0.1412,-0.1176,-0.2118,-0.1882,-0.153,-0.0236,-0.047,-0.0588,-0.0236,0.0118,0.0118,-0.1176,-0.0236,0.2118,0.1764,0.2352,0.3648,0.247,0.3882,0.6,0.6118,0.6352,0.6236,0.7648,1,0.847,0.8118,0.353,'19'
-0.503,0.2814,0.3234,0.455,0.509,0.8982,1,0.7186,0.7604,0.3652,0.455,0.2574,0.3892,0.2814,0.497,0.3772,0.6586,0.5868,0.7486,0.6706,0.7486,0.7006,0.8384,0.8562,0.6586,0.5748,0.3474,0.491,0.2874,0.2634,0.2754,0.2694,-0.2892,0.4458,0.4458,0.4698,0.4518,0.9518,0.9578,0.976,1,0.4036,0.4398,0.5722,0.6326,0.3674,0.4216,0.518,0.6266,0.753,0.8916,0.6626,0.6928,0.5422,0.729,0.6746,0.9156,0.747,0.5784,0.4036,0.3674,0.253,0.2832,0.2108,-0.2514,0.4598,0.4386,0.4172,0.385,0.8396,0.7754,1,0.9572,0.3582,0.3208,0.615,0.5562,0.3476,0.3368,0.615,0.5722,0.5294,0.4866,0.4064,0.3476,0.6256,0.615,0.4866,0.5722,0.647,0.6042,0.401,0.3208,0.4278,0.401,0.3316,-0.2216,0.3838,0.346,0.3352,0.4324,0.7568,0.7406,1,0.8108,0.1676,0.2918,0.4216,0.3298,0.4324,0.5838,0.6702,0.573,0.6108,0.5244,0.4108,0.2108,0.3136,0.6216,0.6,0.6486,0.5298,0.2,0.1406,0.1514,0.1082,0.1028,0.1838,-0.1892,0.3694,0.2492,0.3034,0.5676,0.6636,0.988,1,0.5496,0.2612,0.3634,0.3034,0.3454,0.2852,0.6456,0.8858,0.8678,0.5436,0.4774,0.4954,0.4474,0.5736,0.5916,0.7658,0.7958,0.7478,0.6516,0.5076,0.2732,0.3094,0.2672,-0.045,-0.1418,0.3648,0.1756,0.0878,0.304,0.2432,0.4324,0.3986,0.5136,0.4054,0.4324,0.5744,0.5,0.554,0.777,0.8514,0.3716,0.4528,0.6486,0.527,0.2702,0.4528,0.5472,1,1,0.8986,0.7838,0.554,0.4528,0.3244,0.304,0.277,-0.2682,0.2246,-0.029,-0.1956,0.3116,0.5072,0.7682,0.5434,0.1014,0.0652,-0.029,0.3044,0.4202,0.5072,0.9856,1,0.645,0.326,0.3044,0.0942,0.2898,0.2682,0.442,0.4492,0.9276,0.8696,0.6304,0.2102,0.0072,0.1376,0.1666,0.3044,-0.52,0.2,0.24,0.44,0.52,0.88,1,0.68,0.64,0.32,0.44,0.16,0.36,0.2,0.44,0.28,0.52,0.36,0.72,0.72,0.56,0.56,0.84,0.92,0.44,0.6,0.32,0.52,0.4,0.28,0.32,0.4,-0.4884,0.3024,0.3024,0.4418,0.4418,0.9534,1,0.814,0.8604,0.3488,0.3488,0.1162,0.2558,0.3954,0.5348,0.3024,0.8604,0.907,0.6744,0.814,0.9534,0.814,0.7674,0.9534,0.8604,0.5348,0.628,0.6744,0.3488,0.3488,0.2558,0.2558,-0.25,0.3334,0.1944,0,0.4166,0.3888,0.2778,0.3612,0.5,0.4166,0.5278,0.6112,0.5556,0.3056,0.6666,0.8056,0.3612,0.5,0.7778,0.6388,0.3612,0.1112,0.5,1,0.8612,0.9166,0.7778,0.6112,0.5,0.5278,0.3612,0.3334,-1,-1,-1,-1,-1,-1,-0.9676,-0.9482,-0.9074,-0.8988,-0.3664,0.985,0.89,0.9202,0.888,0.806,0.6918,0.5064,0.1488,-0.1962,-0.3406,-0.403,-0.6854,-0.6272,-0.7932,-0.903,-0.9354,-0.9462,-0.9396,-0.9504,-0.9548,-0.9548,-0.9634,-1,-1,-1,-1,-1,-1,-0.9732,-0.97,-0.2934,-0.3132,0.1568,0.912,0.7952,0.6498,0.3826,0.3054,0.2576,0.2264,-0.1844,-0.4714,-0.4732,-0.5452,-0.7876,-0.7806,-0.8604,-0.8878,-0.8138,-0.8036,-0.8572,-0.8022,-0.7698,-0.7934,-0.8342,-1,-1,-1,-1,-1,-1,-0.96,-0.9468,-0.7668,-0.1268,-0.01,-0.625,-0.628,-0.612,-0.628,-0.684,-0.668,-0.644,-0.66,-0.4,-0.568,-0.432,-0.2634,-0.3434,-0.4034,-0.39,0.9832,1,0.9132,1,1,1,1,-1,-1,-1,-1,-1,-1,-0.6572,1,1,1,1,1,-0.8286,-0.8572,-0.8572,-0.9142,-0.9142,-0.7428,-0.4286,-0.3714,-0.6,-0.4286,0.8572,0.9714,-0.5428,-0.7142,-0.7142,-0.8286,-0.9142,-0.8858,-0.8286,-0.8286,-0.8,1,1,1,1,1,1,1,1,1,1,0.0758,0.0274,0.0274,0.0106,0.0152,-0.0266,0.025,-0.028,-0.0674,-0.1156,-0.7734,-0.4824,0.2156,1,0.8502,0.8022,0.6984,0.9166,-0.3182,-0.2652,0.3258,0.2804,0.106,0.159,0.2424,0.2728,0.8864,0.9546,0.8182,0.9016,0.8712,0.7196,0.6666,0.7424,0.8636,0.894,1,0.9772,0.947,0.75,0.4848,0.3864,0.1364,0.0984,-0.159,-0.1516,-0.197,-0.1516,-0.1666,-0.4394,-0.5888,-0.6916,-0.1308,0.0748,-0.0094,-0.2056,-0.0654,0.1496,0.6448,0.813,0.7384,0.757,0.8224,0.7944,0.6356,0.5328,0.7384,0.785,0.785,0.9066,1,0.8224,0.6262,0.215,-0.0842,-0.1308,-0.3364,-0.2616,-0.458,-0.5046,-0.5608,-0.8598,-0.2628,0.146,0.562,0.6862,0.6058,0.3868,0.4818,0.5548,0.7372,0.9928,1,0.9416,0.9562,0.854,0.6496,0.562,0.8394,0.854,0.73,0.854,0.949,0.8906,0.7154,0.4526,0.416,0.2774,0.0584,0.051,0.051,-0.4452,-0.4744,-0.8614,1,-1,-1,1,-1,-1,-1,-0.5,-1,-0.5854,-0.4268,-0.2318,-0.2074,-0.2074,-0.1342,-0.1464,-0.0854,-0.183,0,0.0854,0.1342,0.122,0.183,0.1952,0.1708,0.0976,0.1708,0.0976,0.256,0.2196,0.4268,0.4878,0.6098,0.6586,0.744,0.4634,0.5,0.6952,0.8536,1,0.8414,'19'
-0.8638,0.6764,0.8876,0.5536,0.3322,0.264,-0.2742,-0.1482,-0.4822,-0.3288,-0.4412,-0.506,-0.4378,-0.5468,-0.2674,-0.2914,-0.2708,-0.0834,0.1108,0.4514,0.4446,0.6968,0.9148,0.6252,0.6832,0.6252,0.9352,1,0.5946,0.5912,0.4684,0.6524,-0.869,0.6268,0.797,0.3618,0.4238,0.2766,-0.378,-0.3454,-0.5254,-0.2896,-0.5482,-0.185,-0.2308,-0.3454,-0.198,-0.4338,0.0672,-0.0736,0.3454,0.4206,0.6432,1,0.8134,0.676,0.653,0.7446,0.964,0.7644,0.833,0.7774,0.6334,0.7512,-0.4718,0.8142,0.9272,0.2204,0.4134,0.0018,-0.235,-0.4098,-0.2604,-0.3114,-0.479,-0.4026,-0.5082,-0.3334,-0.4172,-0.082,-0.1986,0.0236,0.0418,0.5192,0.6576,0.756,0.9418,0.8616,0.7742,0.7232,0.9016,0.9672,1,0.9126,0.7668,0.745,-0.2596,0.757,0.79,0.3406,0.3664,-0.2154,-0.1712,-0.4106,-0.3112,-0.6244,-0.5654,-0.6022,-0.407,-0.5986,-0.488,-0.4586,-0.3554,-0.2412,-0.0056,0.0386,0.267,0.6022,0.9264,0.9338,0.6316,0.6538,0.7422,1,0.9338,0.5138,0.536,0.6206,-0.0878,0.7022,0.584,0.6146,0.3588,-0.2558,-0.4046,-0.3054,-0.6642,-0.8282,-0.668,-0.6946,-0.5306,-0.4618,-0.6794,-0.626,-0.4352,-0.3816,-0.2824,0.0076,0.252,0.4198,0.8358,0.9084,0.6184,0.6718,0.7672,1,0.9428,0.7558,0.6946,0.5954,-0.045,0.4904,0.863,0.9272,-0.1862,-0.469,-0.5204,-0.7044,-0.7088,-0.6616,-0.8116,-0.5718,-0.5632,-0.5718,-0.6574,-0.713,-0.743,-0.332,-0.4004,-0.3234,0.1906,0.546,0.8544,0.8544,0.5802,0.6232,0.9014,1,0.8372,0.4004,0.6018,0.4904,-0.145,0.5012,0.8932,0.883,-0.5624,-0.8524,-0.8576,-0.6184,-0.6896,-0.8118,-0.7608,-0.7506,-0.6184,-0.43,-0.3334,-0.491,-0.4554,-0.547,-0.5166,-0.3028,-0.1552,0.486,1,0.8626,0.5572,0.4148,0.4046,0.7558,0.6998,0.1908,0.1756,-0.1552,-0.4858,0.5428,0.7714,0.4858,-0.0286,-0.4286,-0.6572,-0.4858,-0.2,-0.2572,-0.2572,-0.4286,-0.3142,-0.3142,-0.2572,-0.6,-0.4858,-0.0286,-0.0286,0.0858,0.5428,0.7714,1,0.8858,0.6,0.8858,0.8286,0.7142,0.5428,0.4286,0.4858,0.3714,-1,0.7,1,0.75,0.25,0.35,-0.15,-0.05,-0.2,-0.55,-0.6,-0.55,-0.55,-0.65,-0.6,-0.45,-0.65,-0.15,-0.1,0.3,0.45,0.05,0.65,0.6,0.3,0.55,0.6,0.75,0.6,0.55,0.25,0.45,-0.9494,0.595,0.7468,0.2658,0.3418,0.1646,-0.2658,-0.3418,-0.5696,-0.4684,-0.6202,-0.1898,-0.2658,-0.2406,-0.1898,-0.443,-0.038,-0.2152,0.3418,0.3418,0.7216,0.8734,0.367,0.7722,0.7722,0.8734,0.9494,0.6456,1,0.8482,0.7468,0.7468,-1,-0.9748,-0.9712,-0.7548,-0.6718,-0.753,-0.5348,-0.634,-0.7548,-0.8828,-0.9026,0.6448,0.6394,0.4446,0.3128,0.1362,0.0082,-0.0712,-0.1938,-0.2786,-0.3778,-0.5996,-0.7926,-0.9098,-0.9514,-0.9586,-0.9514,-1,-1,-1,-1,-1,-1,-1,-0.9566,-0.9566,0.1032,1,1,0.5772,-0.119,-0.3686,-0.5418,-0.6866,0.3402,0.885,0.7334,0.4166,0.1532,-0.012,-0.012,-0.1624,-0.3128,-0.4884,-0.6626,-0.828,-0.8884,-0.9088,-0.9042,-0.9054,-1,-1,-1,-1,-1,-1,-1,-0.9934,-0.92,-0.3268,1,0.91,0.6232,0.2366,0.37,0.51,0.2466,-0.5934,-0.5978,-0.544,-0.598,-0.574,-0.664,-0.732,-0.69,-0.72,-0.814,-0.882,-0.8368,-0.6268,-0.52,-0.6134,-0.6468,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,-0.4572,0.0286,0.0858,-0.4,-0.0572,0.1714,1,0,-0.5142,-0.6286,-0.6572,-0.9428,-0.8858,-0.8858,-0.8572,-0.7142,-0.6572,-0.7428,-0.8,-0.8286,-0.7714,-0.9142,-1,-1,-1,-1,-1,-1,0.2688,0.2832,0.2798,0.2864,0.3028,0.3028,0.2854,0.2454,0.157,-0.0734,1,1,1,0.9722,0.9384,0.9372,0.9366,0.9194,0.9528,0.9038,-0.84,0.153,-0.698,-0.5202,0.4576,0.6262,0.7858,-0.7584,-0.8582,-0.5308,-0.4394,-0.3166,-0.3448,-0.3606,-0.2378,-0.1528,-0.1056,0.2724,0.411,0.2724,0.5464,0.5906,0.3544,0.389,0.4142,0.452,0.7984,0.726,0.9686,1,0.978,0.83,0.7134,0.9654,0.9622,0.7196,0.5842,0.7196,0.641,0.0582,-0.4202,-0.473,-0.4348,-0.3616,-0.3704,-0.309,-0.098,0.0132,0.2386,0.388,0.6574,0.7804,0.7072,0.7892,0.5988,0.3118,0.3588,0.634,0.6896,0.6164,0.921,0.9298,1,0.7072,0.5608,0.9414,0.8566,0.6194,0.5286,0.265,0.3822,0.1772,-0.6398,-0.2292,-0.3006,-0.1756,-0.1398,-0.2648,-0.0566,-0.003,0.0774,0.4434,0.509,0.738,0.7172,0.7828,0.8124,0.512,0.497,0.5982,0.7768,0.738,0.8572,0.9376,1,0.9108,0.5952,0.4822,0.4494,0.2798,0.0654,0.137,0.1904,-0.1458,1,-1,1,-1,-1,-1,-0.6,0.5666,-1,-0.238,-0.0476,0.0858,0.2572,0.162,0.2952,0.3904,0.2762,0.238,0.2572,0.5428,1,0.8286,0.8858,0.9428,0.3142,0.6952,0.8666,0.6572,0.7142,0.9048,0.7524,0.8476,0.2,0.0666,-0.0476,0.2952,0.4096,0.3142,0.1428,0.0858,-0.1238,'20'
-0.959,0.5994,0.8296,0.5268,0.4132,0.3754,-0.2366,-0.123,-0.4638,-0.366,-0.41,-0.5016,-0.41,-0.4952,-0.2524,-0.287,-0.0316,-0.063,0.1514,0.4922,0.5584,0.899,1,0.6404,0.8234,0.8202,0.8896,0.918,0.5962,0.6182,0.5962,0.5616,-0.8286,0.5894,0.7548,0.2644,0.4388,0.2584,-0.1936,-0.1964,-0.418,-0.2378,-0.5598,-0.294,-0.3974,-0.1138,-0.0488,-0.3678,-0.102,-0.0664,0.4682,0.4328,0.7548,0.9528,0.8966,0.9232,0.746,0.9172,1,0.9586,0.8996,0.7726,0.6602,0.672,-0.4606,0.6154,0.678,0.234,0.3442,-0.237,-0.216,-0.4366,-0.088,-0.3026,-0.4516,-0.4664,-0.3264,-0.3442,-0.4248,-0.3384,-0.225,-0.0372,0.1148,0.4068,0.6006,0.9254,1,0.8868,0.6722,0.684,0.7616,0.8152,0.845,0.8152,0.6006,0.5916,-0.2,0.6512,0.5966,0.5726,0.4256,-0.1692,-0.2786,-0.1624,-0.3914,-0.6684,-0.7778,-0.5522,-0.559,-0.6,-0.5042,-0.5556,-0.4154,-0.053,0.0086,0.2274,0.4428,0.8358,1,0.9076,0.6308,0.624,0.6924,0.8496,0.9248,0.7846,0.7914,0.6924,-0.1228,0.4694,0.6138,0.7546,0.0758,-0.1878,-0.314,-0.4116,-0.5992,-0.7256,-0.7582,-0.6318,-0.7762,-0.6896,-0.5812,-0.4802,-0.473,-0.3754,-0.2564,-0.0216,0.2672,0.5306,0.8772,0.8232,0.6642,0.6678,0.7762,0.9748,1,0.787,0.7184,0.6138,-0.229,0.269,0.8192,0.8434,-0.3414,-0.522,-0.4578,-0.4056,-0.735,-0.7872,-0.8434,-0.3976,-0.3614,-0.5984,-0.49,-0.502,-0.4338,-0.49,-0.494,0,0.016,0.0764,0.8996,1,0.506,0.3454,0.5904,0.9116,0.8232,0.1366,0.482,0.482,-0.221,0.7348,0.7956,0.6408,-0.21,-0.3812,-0.4696,-0.7016,-0.7238,-0.5912,-0.7072,-0.6022,-0.2596,-0.4088,-0.464,-0.558,-0.464,-0.3978,-0.337,-0.232,-0.0662,0.6796,0.9834,1,0.8896,0.8564,0.8398,0.989,0.9392,0.2044,0.3204,0.326,-0.5238,0.5714,0.9048,0.762,0.238,0.0952,-0.1428,-0.0476,-0.1904,-0.1904,-0.381,-0.8096,-0.4286,-0.4762,-0.5238,-0.4286,-0.3334,-0.4286,-0.381,-0.238,0.5714,0.8572,0.9524,0.8096,0.762,1,0.9048,0.4762,0.4286,0.238,0.1428,0,-0.4118,0.7648,0.9608,0.7648,0.5686,0.5686,0.0588,0.1764,0.098,-0.4118,-0.1372,-0.0588,0.0196,-0.1764,-0.2942,-0.3334,0.1764,0.2156,0.255,0.451,0.7648,0.647,0.8432,0.7254,0.804,1,0.9608,0.6862,0.5686,0.4118,0.8432,0.8824,-0.5106,0.4256,0.5106,0.0212,0.1914,-0.0852,-0.1914,-0.2978,-0.1702,-0.1914,-0.3618,-0.2978,-0.7446,-0.4468,-0.468,-0.1914,-0.2766,0.1276,0.1276,0.2978,0.468,0.617,1,0.8936,0.766,0.7234,0.7022,0.8298,0.5106,0.7234,0.532,0.4468,-1,-0.9704,-0.9556,-0.782,-0.7728,-0.6786,-0.6306,-0.771,-0.832,-0.8726,-0.819,0.7192,0.3942,0.2188,0.0784,-0.0544,-0.1302,-0.2374,-0.3426,-0.494,-0.5716,-0.6732,-0.736,-0.8024,-0.8818,-0.928,-0.9686,-0.9686,-0.952,-1,-1,-1,-1,-1,-0.956,-0.9484,0.6774,1,0.9226,-0.0376,-0.3956,-0.5172,-0.5258,-0.699,0.4044,0.8268,0.5216,0.2698,0.0474,-0.0666,-0.142,-0.3226,-0.5656,-0.6452,-0.7398,-0.771,-0.8302,-0.8538,-0.8678,-0.8516,-0.8742,-0.8806,-1,-1,-1,-1,-1,-0.9734,-0.9134,0.12,1,0.5366,0.4132,0.26,0.3432,0.3532,0.13,-0.682,-0.486,-0.442,-0.482,-0.511,-0.6364,-0.6038,-0.622,-0.711,-0.7328,-0.811,-0.8168,-0.8368,-0.5734,-0.39,-0.2134,-0.2868,-0.39,-1,-1,-1,-1,-1,-0.9428,1,1,1,0.0286,-0.1142,-0.4858,-0.6,-0.0572,1,1,-0.3428,-0.4858,-0.6286,-0.8572,-0.9428,-0.9142,-0.6858,-0.8,-0.8858,-0.4,-0.8858,-0.9428,-0.8858,-0.7714,-0.7142,-0.7428,-0.4858,-1,-1,-1,-1,0.3712,0.3884,0.4024,0.4156,0.43,0.4474,0.4264,0.367,0.271,0.0682,0.83,0.845,0.854,0.86,0.8716,0.8834,0.9022,0.902,0.9136,0.862,-0.7866,0.2706,-0.756,-0.2108,0.5032,0.5322,0.5774,-0.6334,-0.8126,-0.6144,-0.5234,-0.3414,-0.2772,-0.3734,-0.1432,-0.095,0.0362,0.2958,0.5234,0.5528,0.5154,0.5288,0.32,0.3708,0.5958,0.4994,0.8206,0.6868,0.917,1,0.7698,0.7322,0.6706,0.7618,0.7002,0.593,0.4726,0.352,0.3788,0.063,-0.3716,-0.3504,-0.2054,-0.2084,-0.0816,-0.0816,-0.0514,0.139,0.278,0.5106,0.8278,0.8218,0.9214,1,0.7402,0.4712,0.6224,0.6164,0.8036,0.7372,0.5982,0.8096,0.7794,0.6284,0.8096,0.9034,0.701,0.6012,0.568,0.5318,0.6556,0.287,-0.473,-0.1654,-0.2094,-0.2152,-0.221,-0.1772,-0.1714,-0.0688,-0.101,0.1478,0.5988,0.836,0.9298,1,0.6604,0.4524,0.4992,0.5286,0.713,0.4964,0.5608,0.4758,0.7424,0.8156,0.713,0.6368,0.4144,0.262,0.2036,0.3294,0.2036,-0.0834,1,-1,1,-1,-1,-1,-0.4,0.6,1,-0.772,-0.6492,-0.614,-0.4386,-0.5088,-0.4036,-0.3158,-0.193,-0.228,0.4386,0.9298,1,0.5964,0.4036,0.0878,-0.2106,0.1228,-0.0702,-0.2982,-0.1228,-0.035,0.1052,0.421,-0.035,-0.3684,-0.0878,-0.2808,-0.4736,-0.2456,-0.1404,-0.5438,-0.6842,'20'
0.109,1,0.9236,-0.0582,-0.2436,-0.6546,-0.589,-0.469,-0.7164,-0.7454,-0.8072,-0.6182,-0.6328,-0.5564,-0.5964,-0.72,-0.6546,-0.5018,-0.0728,-0.0654,0.3128,0.32,0.1964,0.0072,-0.0364,0.029,0.091,0.3346,0.6182,0.9454,0.8728,0.811,-0.0762,0.9596,1,0.5024,0.5646,0.0668,0.1602,-0.1788,-0.0078,-0.3624,-0.3032,-0.3312,-0.0824,-0.182,-0.2348,-0.3094,-0.0108,-0.0358,0.0202,0.409,0.6952,0.829,0.6206,0.6112,0.633,0.7978,0.7668,0.8258,0.7512,0.6734,0.6952,0.8258,-0.4216,0.6672,0.7654,0.5852,0.7572,0.427,0.4216,0.2578,0.135,0.086,0.1214,0.1814,0.0724,0.2332,-0.0178,0.3316,0.2552,0.88,0.8118,0.8062,0.8718,0.8062,1,0.8526,0.4652,0.2306,0.3478,0.3642,0.277,0.3778,0.4134,0.6508,-0.4224,0.7702,0.8592,0.8334,1,0.5632,0.5718,0.3564,0.296,0.1982,0.3994,0.4022,0.6236,0.7442,0.7212,0.954,0.6666,0.6926,0.592,0.4138,0.4684,0.7844,0.931,0.6236,0.0344,-0.25,0.0144,-0.0258,-0.092,-0.0288,0.0632,0.181,-0.0994,0.7772,0.759,1,0.9246,0.3434,0.235,0.1928,0.1656,0.2198,0.3554,0.6386,0.5452,0.1326,-0.0272,-0.2832,-0.3976,-0.3012,-0.4036,-0.3796,-0.1174,0.1686,0.3072,0.1356,-0.1084,-0.4698,-0.512,-0.4458,-0.479,-0.5602,-0.3916,-0.1746,0.1274,0.8286,0.8168,1,0.3306,0.0876,0.0478,0.2032,0.3466,-0.1394,-0.255,-0.3586,-0.3864,-0.5378,-0.6812,-0.6534,-0.6614,-0.7052,-0.6254,-0.725,-0.6494,-0.3864,-0.239,-0.5538,-0.6932,-0.8326,-0.8526,-0.6254,-0.5816,-0.6494,-0.6494,-0.7172,0.211,1,0.7096,0.8136,0.0904,0.2,0.4136,0.4904,0.348,-0.2822,-0.3754,-0.1562,-0.348,-0.4356,-0.5014,-0.6054,-0.6822,-0.5398,-0.6054,-0.9068,-0.5506,-0.5342,-0.7644,-0.8028,-0.6602,-0.5672,-0.852,-0.6602,-0.5562,-0.6328,-0.748,-0.7698,0.2122,1,0.8788,-0.1516,-0.1516,-0.394,-0.5152,-0.3334,-0.5152,-0.5758,-0.6364,-0.3334,-0.2122,-0.3334,-0.2122,-0.3334,-0.394,-0.1516,-0.1516,0.091,0.2122,-0.2728,-0.1516,-0.2728,-0.1516,0.0304,0.0304,0.0304,0.091,0.5758,0.5758,0.8788,0.48,1,0.92,0.24,0.28,0.04,0.04,-0.12,-0.12,0.12,0.12,-0.12,0.08,0.16,0.08,0.04,-0.08,-0.08,0.08,0.24,0.44,0.56,0.48,0.28,0.28,0.12,0.28,0.44,0.6,1,1,0.76,-0.4594,0.7568,0.8108,0.8378,1,0.3514,0.5406,0.1352,0.2702,0.027,0.4324,0.2972,0.8648,0.8648,0.5676,0.6756,0.1082,0.2972,-0.081,0.2432,0.027,0.5406,0.4324,0.3514,0.2702,-0.4324,-0.3514,-0.3784,-0.1352,-0.2972,-0.054,-0.2702,-1,-1,-1,-1,-1,-1,-0.966,-0.966,-0.9678,-0.9642,-0.541,-0.0892,0.516,0.9428,0.991,0.9392,0.7518,0.5018,0.3178,-0.075,-0.384,-0.6554,-0.8822,-0.9464,-0.9608,-0.9624,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9572,-0.9524,-0.946,-0.9328,-0.698,-0.384,0.054,0.6672,0.837,0.7438,0.589,0.2022,-0.0504,-0.4362,-0.6384,-0.7978,-0.8882,-0.9274,-0.9432,-0.9496,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9518,-0.9,-0.83,-0.6034,-0.67,-0.8074,-0.8274,-0.7274,-0.5674,-0.582,-0.6438,-0.8346,-0.8656,-0.8728,-0.885,-0.9,-0.8068,-0.8668,-0.8268,-0.8934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6286,-0.8,-0.8572,0.0572,1,0.4286,-0.1428,-0.2572,-0.3714,-0.5428,-0.2572,-0.2,-0.2,-0.4858,-0.8,-0.5714,-0.6572,-0.7714,-1,-0.9714,-1,-1,-1,-1,-1,-1,-1,-0.5774,-0.5962,-0.581,-0.5812,-0.5148,-0.4422,-0.2972,-0.056,0.2198,0.285,0.4828,0.514,0.5076,0.5544,0.5538,0.5822,0.659,0.6306,0.2864,-0.1596,-0.9066,0.3294,-0.6636,-0.5108,-0.465,-0.3682,-0.2424,-0.8166,0.1428,0.0892,0.2232,0.2678,0.4018,0.6518,0.741,0.634,0.8928,0.9464,0.9286,0.8482,0.616,0.7768,0.7768,0.8126,0.6964,0.6876,0.884,0.9554,0.8572,1,0.366,0.25,0.5,0.2142,0.0892,0.4286,0.134,0.125,-0.0178,-0.6518,-0.2106,-0.234,-0.2222,0.1286,-0.1112,-0.1462,0.31,0.234,0.2574,0.0584,0.193,0.2456,0.076,0.0584,-0.1462,0.2106,0.3684,1,0.9942,0.6374,0.7192,0.9298,0.2222,0.0878,-0.1112,-0.193,0.0702,0.0234,0.0292,0.0468,-0.3508,-0.7018,-0.1438,0.175,-0.4938,-0.175,-0.2688,-0.3624,-0.0812,-0.0374,-0.05,0,-0.0562,-0.0124,0.0376,-0.0562,0.3688,0.4188,0.4312,0.8938,1,0.5062,0.6,0.7438,0.425,0.0688,0.0188,-0.1438,-0.2812,-0.4062,-0.5062,-0.5312,-0.5624,-0.7874,-0.9906,1,-1,-1,-1,-1,-1,-1,-1,-0.039,0.1168,0.1948,0.7662,1,0.2728,0.3766,0.1948,0.4806,0.5064,0.5324,0.013,-0.2208,-0.2468,0.013,0.039,0.4806,0.2728,0.2208,-0.2468,-0.039,0.3506,0.2208,0.013,-0.065,-0.013,0.5324,0.6104,0.5324,0.2468,-0.039,-0.3766,'21'
-0.0822,1,0.8714,-0.4928,-0.6928,-0.7642,-0.625,-0.55,-0.8858,-0.725,-0.7072,-0.5464,-0.4322,-0.475,-0.3,-0.6322,-0.5822,-0.75,-0.575,-0.1892,-0.0464,-0.025,-0.2214,-0.2714,-0.225,-0.1928,-0.2928,-0.1142,-0.0428,-0.0036,0.5822,0.8928,0.0666,0.9292,0.8612,0.2108,0.0476,-0.4666,-0.4994,-0.3306,-0.5156,-0.532,-0.6572,-0.4722,-0.4176,-0.3796,-0.4722,-0.4612,-0.3796,-0.317,-0.0448,0.3252,0.4286,0.6,0.57,0.3824,0.3496,0.5918,0.581,0.7878,0.8748,0.9646,1,0.9374,-0.2214,0.7384,0.79,0.6046,0.6848,0.137,0.273,-0.137,0.0484,-0.2028,-0.034,-0.1658,-0.0114,-0.0938,0.135,0.0978,0.2936,0.343,0.5324,0.7694,0.8826,1,0.7342,0.7858,0.7508,0.4768,0.2482,0.2668,0.3264,0.0958,0.3038,0.3594,-0.3128,0.7952,0.8544,0.8816,1,0.4016,0.5722,0.19,0.3084,0.0762,0.3698,0.2536,0.529,0.5154,0.975,0.9932,0.8226,0.9454,0.62,0.7406,0.7224,0.9362,0.8976,0.6542,0.5836,0.2468,0.2582,0.1262,0.215,0.0784,0.3084,0.3788,-0.0658,0.6918,0.6224,1,0.816,0.221,0.1494,0.1088,0.08,0.1828,0.307,0.5126,0.5292,0.491,0.2784,-0.0298,-0.1016,-0.049,-0.0442,0.0896,0.2688,0.4218,0.6296,0.5388,0.1158,-0.123,-0.1708,-0.252,-0.2186,-0.288,-0.0896,0.061,-0.0014,0.5434,0.9382,1,0.2224,-0.0014,-0.0958,0.0634,0.299,0.4874,0.0132,-0.2164,-0.4138,-0.464,-0.5876,-0.5964,-0.6288,-0.5936,-0.626,-0.6288,-0.4698,-0.0752,-0.0634,-0.1752,-0.4816,-0.6112,-0.7584,-0.7614,-0.5288,-0.7438,-0.5198,-0.3932,-0.0218,1,0.8908,0.8428,0.1922,-0.048,0.4586,0.8296,0.5852,-0.2838,-0.4236,-0.2228,-0.0568,-0.1834,-0.428,-0.5458,-0.2228,-0.1834,-0.4018,-0.4236,-0.4062,-0.6244,-0.4498,-0.428,-0.5896,-0.6288,-0.5458,-0.4498,-0.5808,-0.7118,-0.5634,-0.5458,-0.5,0.9376,1,0.3124,-0.125,-0.5,-0.1876,-0.25,-0.5624,-0.4376,-0.5,-0.0624,-0.0624,-0.125,-0.25,-0.3124,-0.125,0.0624,-0.125,-0.375,-0.5,-0.5,-0.25,-0.1876,-0.3124,-0.0624,-0.5624,-0.1876,-0.1876,0.125,0.4376,0.375,0.2122,1,0.8788,0.1516,-0.3334,-0.5152,-0.1516,-0.3334,-0.2122,-0.1516,0.091,-0.091,-0.394,0.2122,0.1516,-0.1516,-0.2728,0.091,0.0304,0.091,0.4546,0.091,-0.0304,0.0304,0.394,0.3334,-0.091,0.091,-0.091,0.091,0.3334,0.8788,0.0666,0.92,0.8934,0.44,0.44,-0.12,-0.12,-0.2266,-0.28,-0.4934,-0.6,-0.3866,-0.4134,-0.0934,-0.2,-0.52,-0.4934,0.0134,0.0666,0.6266,0.7066,0.8134,0.5466,0.7334,0.76,0.8934,0.8134,1,0.8934,0.84,0.8134,0.68,-1,-1,-1,-1,-1,-1,-1,-0.9628,-0.961,-0.9522,-0.8548,-0.582,-0.3906,0.325,0.922,0.8476,0.7148,0.5218,0.3498,-0.1072,-0.4208,-0.6936,-0.8742,-0.9344,-0.9096,-0.954,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9476,-0.9246,-0.9342,-0.887,-0.6904,-0.4268,0.3054,0.8714,0.7866,0.6788,0.57,0.0868,-0.319,-0.6004,-0.773,-0.8744,-0.8672,-0.8776,-0.9132,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9616,-0.7834,-0.8668,-0.8334,-0.8944,-0.7286,-0.6772,-0.7986,-0.7386,-0.75,-0.756,-0.8054,-0.9294,-0.9348,-0.9748,-0.9068,-0.8,-0.7334,-0.78,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3714,-0.8286,-0.7142,-0.4572,0.0572,0.0858,-0.2,-0.3714,-0.4572,-0.6,-0.2572,-0.2858,-0.8,-0.8572,-0.9428,-0.8858,-0.8572,-0.9142,-0.7714,-1,-1,-1,-1,-1,-1,-1,-0.6122,-0.6236,-0.5858,-0.6252,-0.5962,-0.6006,-0.5556,-0.3814,-0.0384,0.1682,-0.185,-0.163,-0.1118,-0.0508,0.05,0.13,0.2824,0.4222,0.2634,-0.1218,-0.8934,0.753,-0.8838,-0.7374,-0.7238,-0.6998,-0.6716,-1,-0.0978,-0.087,0.1304,0.3152,0.2718,0.174,0.6848,0.5978,0.4674,0.7718,1,0.9022,0.6414,0.587,0.337,0.3586,0.5218,0.576,0.1848,0.4782,0.7934,0.7934,0.8044,0.3696,0.087,-0.0652,0.1086,0.0544,0.2392,0.1086,-0.2282,-0.2392,-0.2566,-0.062,-0.3628,0.0796,0.0884,0.0974,0.2212,0.292,0.3716,0.3274,0.9292,0.8762,0.469,0.4602,0.7788,0.584,0.239,0.6726,0.3628,0.3716,1,0.947,0.5752,0.2654,0.2566,0.0176,0.0266,-0.1328,0,-0.0354,-0.1328,-0.708,0.0814,0.5284,-0.2032,0.3008,0,-0.1056,0.1952,0.187,0.2926,0.1544,0.3902,0.4308,0.244,0.1626,0.4634,0.5854,0.5772,0.9594,1,0.5528,0.9918,0.6748,0.4066,0.2358,0.3414,0.13,0.0488,0.122,0.0406,-0.0082,-0.0244,-0.3578,-0.9414,1,-1,-1,-1,-1,-1,-1,-1,-0.6056,-0.1268,0.662,0.183,1,0.9154,0.4366,0.1268,0.2112,0.014,0.183,0.0986,0.0986,0.183,-0.0986,0.0422,0.5212,0.324,0.2112,0.155,0.0422,-0.014,-0.3522,-0.1268,-0.2394,-0.2958,0.014,-0.1268,-0.2958,-0.3522,-0.2112,-0.4366,'21'
-0.1034,0.8294,0.8402,0.873,0.8512,0.2232,0.2414,0.0852,0.0852,-0.0236,0.0164,0.078,0.1252,0.1362,0.245,0.3648,0.499,0.8402,0.9964,0.7496,0.8112,0.8294,1,0.9456,0.8874,0.775,0.4954,0.452,0.4664,0.343,0.6734,0.7532,-0.2652,0.5702,0.6036,0.4786,0.503,0.061,0.0946,-0.128,-0.0396,-0.2988,-0.1768,-0.1708,-0.0214,-0.1676,0.0214,-0.1646,0.0732,0.131,0.4848,0.5336,1,0.9116,0.9208,0.869,0.9452,0.933,0.6494,0.6586,0.4756,0.5182,0.2836,0.3842,-0.2768,0.4882,0.5048,0.3158,0.3018,-0.0876,-0.0876,-0.2656,-0.2462,-0.4576,-0.4326,-0.3518,-0.3018,-0.2712,-0.1962,-0.2712,-0.185,0.0098,0.1266,0.3268,0.477,0.808,1,0.758,0.6522,0.5994,0.7802,0.6802,0.7302,0.6078,0.4854,0.3714,-0.1568,0.5548,0.4922,0.4764,0.326,-0.163,-0.3668,-0.3292,-0.5956,-0.4828,-0.4828,-0.4388,-0.3134,-0.2664,-0.4326,-0.417,-0.301,-0.0626,0.1098,0.232,0.533,0.8652,1,0.9592,0.7242,0.743,0.7932,0.9154,0.8714,0.812,0.605,0.5266,-0.0888,0.4706,0.3668,0.5544,0.0686,-0.3132,-0.4036,-0.474,-0.5644,-0.7252,-0.6448,-0.5376,-0.5008,-0.397,-0.4372,-0.6616,-0.464,-0.2262,-0.015,0.2428,0.4974,0.9096,1,0.9162,0.6684,0.7354,0.9062,0.9128,0.953,0.8258,0.752,0.5544,-0.197,0.3012,0.394,0.4536,-0.275,-0.4126,-0.6172,-0.5464,-0.7064,-0.9144,-0.9702,-0.736,-0.5986,-0.6096,-0.5948,-0.4758,-0.3978,-0.2566,-0.3866,-0.2416,0.1412,0.7918,1,0.6878,0.446,0.565,0.6692,0.7918,0.7658,0.6468,0.4646,0.3048,-0.3366,0.7438,0.7336,0.1458,-0.3768,-0.4472,-0.8744,-0.6934,-0.5376,-0.5076,-0.8794,-0.5326,-0.4522,-0.4974,-0.5276,-0.6232,-0.5076,-0.2614,-0.2964,-0.1458,0.0402,0.784,1,0.8542,0.5326,0.5376,0.7438,0.8292,0.7688,0.397,0.3016,0.181,-0.0556,0.8888,0.8334,0.6112,0.5556,0.1666,0.0556,0.3334,0.2778,-0.0556,-0.1666,0.1666,0.1112,0.3334,0.5556,0.6666,0.9444,0.8888,1,0.6112,0.9444,1,0.9444,0.6666,0.6112,0.5,0.3888,0.2778,0.7778,0.6112,0.5556,0.6112,-0.2432,0.6756,0.6216,0.7838,0.6756,-0.027,-0.081,0.081,-0.081,-0.1352,-0.2432,0.081,-0.027,0.1352,0.1352,0.3514,0.3514,0.946,0.8918,0.6756,0.7298,1,0.946,0.7298,0.4594,0.5136,0.4054,0.4054,0.4594,0.2972,0.6756,1,-0.0562,0.3484,0.3708,0.5056,0.1236,-0.4158,-0.1236,-0.236,-0.3932,-0.663,-0.5506,-0.528,-0.4606,-0.4832,-0.663,-0.8426,-0.528,-0.0562,0.0112,0.236,0.4832,0.8652,0.8202,0.7978,0.663,0.7078,0.7078,0.8876,1,0.7304,0.6404,0.528,-0.8512,-0.574,-0.5354,-0.5886,-0.6474,-0.7172,-0.7852,-0.8898,-0.9156,-0.9358,-0.7318,0.7024,0.7338,0.4178,0.2654,0.1404,0.0414,-0.091,-0.3278,-0.5096,-0.6326,-0.5758,-0.6676,-0.787,-0.864,-0.9376,-0.954,-0.954,-1,-1,-1,-1,-1,-0.8734,-0.6834,-0.626,-0.6774,-0.7276,-0.779,-0.81,-0.8482,-0.7168,-0.3978,-0.3848,0.5986,0.8328,0.6954,0.5496,0.5186,0.3692,0.2928,-0.0884,-0.3882,-0.6392,-0.6176,-0.7038,-0.7802,-0.8196,-0.8458,-0.8446,-0.8292,-1,-1,-1,-1,-1,-0.8768,-0.8868,-0.8268,-0.8968,-0.91,-0.9434,-0.7634,-0.04,0.42,0.7932,0.2966,-0.598,-0.732,-0.61,-0.632,-0.61,-0.62,-0.64,-0.65,-0.616,-0.83,-0.822,-0.76,-0.7168,-0.4968,-0.12,-0.2068,-0.2334,-1,-1,-1,-1,-1,-0.4572,-0.4286,-1,-0.8286,-0.8858,-0.6286,-0.1428,0.4858,1,0.5142,1,1,-0.7428,-0.8572,-0.7714,-0.9428,-0.9714,-0.8858,-0.7142,-0.8286,-0.4286,-0.9142,-0.8572,-0.8858,-0.6858,-0.6858,-0.5714,-0.6858,-1,-1,-1,-1,-1,0.3018,0.3172,0.3266,0.3194,0.3394,0.3256,0.3204,0.304,0.2354,-0.0266,0.305,0.3494,0.4064,0.4372,0.522,0.5816,0.6712,0.7848,0.8664,0.8914,-0.76,0.1764,-0.4146,-0.1744,0.4802,0.9236,0.9642,-0.375,-0.0442,-0.0736,-0.0442,-0.0514,-0.125,-0.0514,-0.0368,0.1986,0.1838,0.1764,0.2352,0.2868,0.3308,0.3898,0.3014,0.3308,0.6912,0.7868,0.6102,0.75,0.8456,0.7058,0.625,0.603,0.9044,1,0.7942,0.9558,0.7794,0.6764,0.4706,0.1764,-0.822,-0.5276,-0.4786,-0.2576,-0.1718,-0.0122,-0.0368,0.3006,0.411,0.4234,0.4724,0.6012,0.5522,0.6196,0.6258,0.4908,0.5398,0.6748,0.7178,0.908,0.865,1,0.8896,0.724,1,0.816,0.7608,0.7424,0.8036,0.6932,0.8896,0.5766,-0.6888,-0.454,-0.3214,-0.2346,-0.25,-0.3164,-0.0612,0.1378,0.5358,0.5408,0.3622,0.6326,0.6224,0.5664,0.4846,0.4388,0.454,0.4234,0.4132,1,0.852,0.5918,0.5816,0.4694,0.6224,0.5612,0.597,0.4694,0.4336,0.4336,0.4694,0.1174,-0.9714,-1,1,-1,-1,1,-0.2,-0.1334,1,-0.3504,0.1112,0.1282,0.0428,0.1966,0.0428,0.2992,0.3846,0.1282,0.2308,0.3846,0.5556,0.7778,1,0.8974,0.9658,0.624,0.7606,0.7436,0.6924,0.7436,0.8804,1,0.8632,0.641,0.5556,0.7094,0.4018,0.47,0.265,0.1794,-0.0428,'22'
-0.0616,0.7398,0.7158,0.9042,0.7946,0.113,0.0274,-0.0172,-0.1746,-0.0136,-0.1232,0.065,-0.072,0.1232,0.0958,0.185,0.2158,0.5754,0.6336,1,0.9418,0.8904,0.774,0.8904,0.8356,0.5958,0.4246,0.2226,0.1576,0.3528,0.4042,0.5548,-0.164,0.6192,0.61,0.6378,0.5944,0.0866,0.0558,-0.1052,-0.127,-0.1702,-0.1982,-0.1238,-0.13,-0.003,-0.0062,-0.0712,-0.0682,0.288,0.3188,0.6532,0.6966,0.8452,0.9072,0.7988,0.8606,0.9134,1,0.6842,0.7802,0.5572,0.6564,0.421,-0.2826,0.5008,0.4858,0.3602,0.3064,-0.142,-0.1898,-0.2258,-0.2856,-0.45,-0.4888,-0.2826,-0.3424,-0.3424,-0.411,-0.2436,-0.2796,0.0074,-0.0134,0.432,0.3992,0.9522,0.9252,0.71,0.6592,0.8026,0.7938,1,0.997,0.719,0.71,0.5396,-0.123,0.53,0.4416,0.4984,0.2966,-0.1672,-0.2524,-0.142,-0.5016,-0.5174,-0.4322,-0.4196,-0.4006,-0.448,-0.3944,-0.388,-0.2934,-0.1924,0.0252,0.224,0.4984,0.7854,1,0.9306,0.634,0.716,0.836,0.8896,0.9054,0.7886,0.713,0.6026,-0.124,0.3548,0.4804,0.5688,-0.1104,-0.3548,-0.4058,-0.5348,-0.6604,-0.7758,-1,-0.6774,-0.545,-0.4906,-0.4466,-0.4668,-0.3752,-0.348,-0.0764,-0.0084,0.3582,0.786,1,0.7522,0.6028,0.6876,0.6332,0.837,0.691,0.6604,0.5416,0.4024,-0.2168,0.2876,0.8982,0.8806,-0.27,-0.7124,-0.6504,-0.7744,-0.7566,-0.7124,-0.7212,-0.6284,-0.6106,-0.6504,-0.677,-0.6992,-0.6194,-0.6416,-0.407,-0.1284,0.177,0.6726,1,0.8672,0.5398,0.531,0.5708,0.8054,0.6902,0.447,0.3274,0.3274,-0.5896,0.3088,0.7538,0.663,-0.0496,-0.6588,-0.5162,-0.4902,-0.6588,-0.7278,-0.7452,-0.7106,-0.4126,-0.4254,-0.4644,-0.6156,-0.6674,-0.4644,-0.486,-0.1922,-0.0238,0.7278,1,0.7668,0.5854,0.4774,0.5334,0.771,0.6718,0.4342,0.283,0.0368,0.2,0.76,0.68,0.72,0.52,0.2,0.16,0.28,0,0.12,0.2,0.32,0.24,0.28,0.52,0.48,0.6,0.6,1,0.92,0.88,0.88,1,0.92,0.32,0.64,0.6,0.08,0.36,0.48,0.6,0.64,-0.0526,0.7894,0.6842,1,0.8948,0.0526,-0.1578,0,-0.2632,0.1052,-0.1052,-0.1052,-0.1052,0.2106,0.1052,0.2632,0.1578,0.7894,0.7368,1,0.7894,0.8422,0.579,0.7368,0.7894,0.5264,0.3684,0.3684,-0.0526,0.421,0.6842,0.5264,-0.041,0.4246,0.726,0.726,0.041,-0.2876,-0.2876,-0.7534,-0.5616,-0.4246,-0.3698,-0.4246,-0.315,-0.2876,-0.2602,-0.0958,-0.178,-0.2602,-0.0958,0.0958,0.2328,0.3972,0.9452,0.9726,0.6438,0.589,0.7534,1,0.9726,0.5342,0.6712,0.6438,-0.9266,-0.6154,-0.5734,-0.5262,-0.5576,-0.6294,-0.7116,-0.7868,-0.8584,-0.8462,-0.3882,0.7692,0.687,0.2902,0.0752,-0.0174,-0.0856,-0.2028,-0.3444,-0.4476,-0.5368,-0.444,-0.542,-0.5664,-0.9108,-0.7132,-0.743,-0.8426,-0.9406,-0.9632,-0.965,-0.9476,-1,-0.9304,-0.706,-0.667,-0.6428,-0.6838,-0.7428,-0.7892,-0.7492,-0.7218,-0.3424,-0.3562,0.5626,0.6206,0.4984,0.4636,0.3668,0.1602,-0.058,-0.256,-0.5238,-0.6154,-0.5322,-0.6038,-0.608,-0.804,-0.7366,-0.7734,-0.8146,-0.884,-0.8956,-0.8936,-0.8998,-1,-0.9534,-0.91,-0.8068,-0.8,-0.89,-0.9368,-0.9368,-0.72,-0.0368,0.2832,-0.2668,-0.632,-0.756,-0.7,-0.554,-0.538,-0.58,-0.652,-0.588,-0.892,-0.878,-0.788,-0.74,-0.57,-0.11,-0.72,-0.8668,-0.6568,-0.48,-0.4668,-0.48,-0.4434,-1,-0.4,-0.0572,-0.6286,-0.9428,-0.9142,-0.5714,-0.4,0.2858,0.5714,0,0.5714,1,-0.6286,-0.7428,-0.8858,-0.9142,-0.8286,-0.9714,-0.6,-0.6286,-1,-0.9714,-1,-0.4,-0.3714,-0.6858,-0.8,-0.8572,-0.9142,-0.8286,-0.8858,-1,-1,0.223,0.2408,0.2506,0.265,0.2704,0.2754,0.2818,0.263,0.206,-0.0054,0.3678,0.405,0.4092,0.4208,0.4874,0.5616,0.6568,0.7558,0.8848,0.9034,-0.7466,0.1764,-0.3046,-0.0306,0.4848,0.6934,1,-0.7666,0.9402,1,0.0328,0.0866,0.0568,0.1104,0.2,0.4508,0.3552,0.4268,0.5462,0.5402,0.3732,0.2896,0.403,0.4806,0.4866,0.4448,0.4746,0.6896,0.7014,0.6358,0.7314,0.6538,0.7254,0.7314,0.6298,0.7134,0.5762,0.6238,0.409,0.0806,0.2112,0.2672,-0.196,-0.0026,0.0026,0.1298,0.2264,0.4708,0.4504,0.5368,0.603,0.5826,0.6844,0.6896,0.6184,0.5878,0.547,0.6082,0.7302,1,0.9898,0.8016,0.6946,0.5826,0.8168,0.9236,0.8168,0.883,0.7202,0.71,0.659,-0.0942,0.3058,0.4482,0.0758,0.0528,0.0528,-0.0114,0.292,0.4482,0.646,0.7702,0.7288,0.9954,0.9126,0.8068,0.6276,0.931,0.9586,0.8344,0.5908,1,0.9816,0.9816,0.761,0.8482,0.761,0.6736,0.8712,0.8436,0.554,0.508,0.4344,-0.1218,-0.9958,-1,-1,1,1,1,-0.6,0.0666,1,-0.5714,-0.3392,-0.4464,-0.5,-0.25,-0.1964,-0.1964,-0.2322,-0.0358,-0.1072,0.4108,0.8214,0.8392,0.8036,0.9286,0.375,0.3392,0.7858,0.7142,0.0892,0.2858,1,0.8392,0.625,0.4642,0.4108,0.6786,-0.125,-0.2142,-0.25,-0.0892,-0.4642,'22'
-0.6362,0.3328,0.4114,0.8756,1,0.852,0.9926,0.7294,0.6326,0.4516,0.7184,0.596,0.6782,0.627,0.6014,0.5686,0.3328,0.3328,0.1096,0.084,0.0348,0.0476,0.3236,0.437,0.6672,0.596,0.3144,0.2158,0.148,0.245,0.2286,0.3894,-0.2332,0.9918,1,0.8014,0.7518,0.4952,0.6552,0.611,0.691,0.5558,0.4896,0.3738,0.0372,-0.0704,-0.1256,-0.1476,-0.3186,-0.4152,-0.5338,-0.4594,-0.3986,-0.3158,-0.1918,0.3104,0.3656,0.1228,-0.1228,-0.0868,-0.189,-0.1256,0.1282,0.4014,-0.3094,0.5602,0.5954,0.9566,1,0.418,0.475,0.199,0.3378,0.1772,0.4464,0.3494,0.281,0.2592,0.179,0.1672,0.0234,0.1322,0.077,0.189,0.082,0.1856,0.1472,0.4064,0.4198,0.4096,0.2576,0.0618,0.082,-0.1304,0.0836,0.276,0.1906,1,0.726,0.5622,-0.1182,-0.3544,-0.4804,-0.4268,-0.6504,-0.7512,-0.8236,-0.6252,-0.307,-0.2504,-0.4708,-0.5874,-0.3544,-0.2252,-0.0772,0.2346,0.307,0.7544,0.7796,0.348,0.2692,0.4582,0.726,0.9244,0.9748,0.9622,0.6188,0.6818,-0.1278,0.3876,0.6674,0.782,0.0286,-0.26,-0.3656,-0.4758,-0.4824,-0.6476,-0.7224,-0.6476,-0.467,-0.5264,-0.5682,-0.348,-0.3238,0.1212,0.3018,0.4736,0.8216,0.8612,1,0.815,0.6014,0.5926,0.5992,0.5572,0.434,0.5242,0.6146,0.652,-0.1846,0.2176,0.8276,0.8342,0.5006,0.2132,0.1868,-0.0806,-0.222,-0.1602,-0.0918,0.0564,0.3128,0.3944,0.3658,0.4564,0.4342,0.505,0.4872,0.5006,0.7194,0.989,1,0.536,0.1602,0.0476,-0.043,-0.1226,-0.0542,0.0454,0.0984,0.7592,-0.0972,0.3556,1,0.8278,0.8944,0.2806,0.4028,0.3278,0.25,0.5972,0.5834,0.575,0.0444,-0.1666,-0.3084,-0.5278,-0.3834,-0.4888,-0.4306,-0.4334,-0.075,0.1722,0.125,-0.3166,-0.6306,-0.6194,-0.6972,-0.8028,-0.6806,-0.6084,-0.3888,-0.3056,-0.3334,0.5152,0.7576,0.697,1,0.7576,0.3334,0.2728,-0.0304,-0.2122,-0.091,-0.0304,0.091,0.0304,0.4546,0.4546,0.7576,0.8788,0.5758,0.3334,0.2122,-0.0304,0.1516,0.5152,0.7576,0.091,-0.091,0.0304,0.0304,0.0304,-0.2122,0.1516,-0.6842,0.0526,0.1052,0.8422,1,0.5264,0.3158,-0.2632,-0.0526,-0.3684,-0.0526,-0.2632,0.1052,-0.1578,0.1052,0.0526,0.2106,-0.1052,-0.1578,-0.5264,-0.579,-0.6842,0.1578,0.3684,0.3158,0.3684,0,0.1052,0,-0.1052,-0.0526,-0.5264,-0.2352,0.8236,0.8824,0.5,0.5,0.7058,0.7648,0.9412,1,0.1764,0.3236,-0.2058,-0.0294,-0.2648,-0.147,-0.4412,-0.2648,-0.2942,-0.1176,-0.4118,-0.2058,-0.4118,0.2352,0.2058,0.4706,0.2352,0.1176,0,-0.2058,-0.1176,0.4412,0.4412,-1,-1,-1,-1,-1,-1,-1,-1,-0.9842,-0.9834,-0.7106,0.4656,-0.1846,-0.5372,0.6076,-0.191,-0.7756,-0.5844,-0.2932,-0.5074,-0.6132,-0.7328,-0.832,-0.9138,-0.9554,-0.9768,-0.9834,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9804,-0.9798,-0.2108,0.6592,0.2366,-0.6616,0.3848,-0.388,-0.834,-0.6644,-0.3862,-0.5746,-0.7012,-0.8274,-0.8994,-0.9346,-0.9598,-0.9636,-0.9566,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9934,-0.9468,-0.2368,-0.7048,-0.7296,-0.893,-0.8084,-0.7918,-0.8048,-0.666,-0.6848,-0.7306,-0.92,-0.9636,-0.9468,-0.84,-0.8534,-0.8134,-0.9,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,1,1,0.9714,0.5142,-0.2572,-0.3142,-0.5714,-0.4,-0.3714,-0.8,-0.7428,-0.6858,-0.8858,-0.8572,-0.8286,-1,-1,-1,-1,-1,-1,1,1,1,1,1,0.99,0.8986,0.907,0.6734,0.4368,-0.7532,-0.715,-0.66,-0.6094,-0.5554,-0.5426,-0.4336,-0.3666,-0.1648,-0.0838,-0.64,1,0.029,-0.2212,0.6368,0.8648,0.6638,1,-0.6436,-0.4654,-0.2872,-0.1486,0.2278,0.307,0.3664,0.1684,0.6238,0.7624,0.7624,0.307,0.406,0.5842,0.7624,0.7426,0.7228,0.7426,0.8614,0.8416,0.7822,0.8416,0.8614,1,0.9604,0.8614,0.703,0.7228,0.5644,-0.109,-0.0892,-0.505,-0.4748,-0.1516,-0.091,0.0304,0.0304,-0.0102,0.1112,0.1718,0.7172,0.6162,0.4344,0.1516,0.4546,0.4748,0.4142,0.3132,0.3536,0.4142,0.4344,0.4546,0.5354,0.697,0.6768,0.9192,1,0.8182,0.6364,0.9394,0.798,0.4748,0.091,-0.3132,-0.1578,0.3948,0.3684,-0.0264,0,-0.1316,-0.0264,0.1578,0.6842,0.5526,0.3684,0.3684,0.7632,0.1842,0.4474,0.5526,0.4474,0.3422,0.5264,0.7368,0.6842,1,0.8684,0.7106,0.9474,0.8158,0.7106,0.7632,0.4474,0.1052,0.3422,0.1578,0.754,-1,-1,1,-1,-1,-0.8,-0.8,-1,0.3882,0.3648,-0.1058,0.7412,1,0.953,0.1058,0.4352,0.4118,0.2236,0.0824,-0.0352,0.0352,0.0118,0.0352,0.247,0.153,-0.1764,0.1058,0.3882,0.5058,0.5764,0.4118,-0.1764,0.3412,0.153,-0.1764,-0.1294,0.1294,-0.0824,0.153,-0.0118,'23'
0.1352,0.6716,0.5468,0.659,-0.16,-0.4096,-0.5094,-0.5926,-0.5884,-0.5218,-0.4844,-0.5468,-0.4304,-0.4178,-0.4304,-0.3638,-0.2766,-0.1476,-0.1684,0.1268,0.5634,0.7006,0.63,0.4678,0.6174,0.7338,0.7714,1,0.8254,0.7588,0.659,0.6216,-0.1598,0.3688,0.6686,0.787,0.0808,-0.3058,-0.4832,-0.7594,-0.7436,-0.6134,-0.6568,-0.6252,-0.5464,-0.5266,-0.566,-0.6094,-0.4636,0.0966,0.1952,0.6214,0.9172,1,0.6924,0.6766,0.8934,0.6608,0.5502,0.4596,0.353,0.1598,0.507,0.5818,-0.2126,0.2902,0.7042,0.83,0.22,0.109,-0.135,-0.4122,-0.5158,-0.5268,-0.5378,-0.6008,-0.5194,-0.4492,-0.3974,-0.135,0.0942,0.6378,0.7338,0.7116,0.6452,0.889,1,0.7856,0.2976,0.1424,0.05,-0.1498,-0.0646,-0.0462,0.0794,0.3864,-0.182,0.3708,0.9146,1,0.663,0.4876,0.2,-0.137,-0.155,-0.4696,-0.3124,-0.173,-0.0652,0.0652,0.218,0.618,0.5866,0.5506,0.4022,0.4202,0.6134,0.7304,0.7214,0.4068,0.0696,-0.0606,-0.182,-0.4922,-0.4382,-0.1776,0.0876,0.2134,-0.1914,0.3002,1,0.948,0.948,0.4658,0.305,0.3712,0.1016,0.0732,0.338,0.9432,0.8818,0.5556,0.253,-0.0496,-0.2246,-0.3286,-0.2104,0.0592,0.2104,0.5224,0.5178,-0.0496,-0.3664,-0.3002,-0.5036,-0.5414,-0.6596,-0.5272,-0.201,0.0496,-0.2616,0.1394,0.9512,0.8534,1,0.3154,0.2372,0.33,0.4964,0.692,0.7114,0.3398,0.0366,-0.1442,-0.3888,-0.3692,-0.5696,-0.604,-0.5794,-0.5354,-0.1932,0.0856,-0.1002,-0.6234,-0.5404,-0.3838,-0.5256,-0.643,-0.4718,-0.4524,-0.4964,-0.3448,-0.2172,0.8092,0.8816,0.7106,0.4474,0.5394,0.4934,0.7828,1,0.7172,-0.3356,-0.1316,-0.1842,-0.5658,-0.704,-0.5328,-0.0986,-0.1052,-0.6184,-0.6578,-0.4276,-0.1448,-0.4276,-0.5394,-0.3092,-0.3356,-0.5922,-0.6644,-0.7632,-0.9144,-0.4868,-0.296,0.32,0.72,0.6,0.48,0.12,0.16,-0.2,-0.12,0,0.04,0.08,0.08,0.04,0.08,0.32,0.2,0.24,0.28,0.08,0.4,0.52,0.64,0.6,0.16,0.44,0.36,0.52,0.72,0.88,1,0.84,0.68,0.1666,0.6666,0.6112,0.6112,0.1112,-0.5556,-0.2778,-0.3888,-0.2222,-0.5556,-0.2222,-0.3334,-0.2778,-0.2222,0,-0.1666,0,-0.1112,-0.0556,0.3888,0.5,0.6666,0.6112,0.4444,0.6112,0.6112,0.8888,1,0.7778,0.5,0.3888,0.7222,-0.1176,0.4412,0.8824,1,0.5588,0.4412,0.1764,-0.147,-0.1764,-0.4706,-0.353,-0.1176,-0.2352,-0.1764,0.0588,0.3236,0.7648,0.7942,0.853,0.4706,0.5,0.9118,0.8236,0.6764,0.4118,0.3236,0.0294,-0.3236,-0.2352,0.1176,0.2058,0.3824,-0.8436,1,1,1,1,1,1,1,0.1866,-0.1368,-0.1616,0.08,0.5062,0.8152,0.8686,0.5808,0.4174,0.3464,0.4174,0.183,-0.1404,-0.3606,-0.5844,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7514,1,1,1,1,1,1,1,0.2454,-0.2432,-0.267,0.0054,0.5156,0.7902,0.7686,0.4746,0.2498,0.1762,0.2152,-0.0486,-0.254,-0.4898,-0.6152,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.72,-0.8034,-0.5734,-0.6734,-0.5334,-0.4468,-0.5368,-0.6668,-0.68,-0.8168,-0.8534,-0.7534,-0.5224,-0.62,-0.7468,-0.769,-0.912,-0.912,-0.878,-0.902,-0.89,-0.98,-0.9468,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,-0.5428,-0.1428,0.4286,1,0.7714,0.1714,-0.1714,-0.8572,-0.5142,-0.5428,-0.6858,-0.7428,-0.7428,-0.7142,-0.7428,-0.8286,-0.8858,-0.8,-0.7714,-0.8,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5438,-0.5544,-0.5622,-0.491,-0.468,-0.4618,-0.4068,-0.2876,-0.0786,0.297,0.8358,0.8416,0.8278,0.8384,0.845,0.8388,0.8176,0.7538,0.5184,-0.044,-0.6134,0.1176,-0.2454,-0.213,-0.0228,0.0984,0.2994,-0.8084,-0.5208,-0.2084,0.2084,0.4584,0.5208,0.5,0.5,0.5416,0.6458,0.7292,0.875,0.8542,0.9584,0.8542,0.8542,1,0.9376,0.75,0.5834,0.7084,0.7292,0.6876,0.8334,0.8542,0.375,0.75,0.7916,0.7708,0.5,0.3542,-0.0834,-0.2292,-0.2762,-0.0858,0.1238,0.219,0.238,0.219,0.2762,0.181,0.6952,0.7524,0.4476,0.4476,1,0.581,0.619,0.6952,0.4476,0.6572,0.5048,0.5048,0.7524,0.4858,0.3904,0.7524,0.8666,0.9238,0.581,0.4858,0.6572,0.6,0.3714,0.2762,-0.1428,0.3246,0.2988,-0.039,-0.1428,-0.2728,-0.2468,-0.013,0.4806,0.3246,0.1948,0.2988,1,0.6364,0.1948,0.1168,0.3246,0.7402,0.7922,0.5584,0.7142,0.5064,0.5584,0.6104,0.5324,0.6884,0.7662,0.4806,0.3766,0.2468,0.5584,0.3246,1,1,-1,-1,-1,-1,-0.8,-0.8,-1,0.4,0.5334,-0.1,0.7666,1,0.4334,0.4,0.5334,-0.1,0.1334,0.4334,0.3334,0.2,0.1666,-0.0666,0.1666,0.2666,0.1666,0,0.3334,0.1666,0.3,0.2666,0.2666,0.1,-0.1334,0.0666,0.0334,-0.2334,-0.3,-0.4666,-0.6334,'23'
-0.3958,0.3192,0.3192,0.583,0.5574,1,1,0.651,0.6426,0.4128,0.4212,0.3106,0.3106,0.268,0.268,0.132,0.2426,0.4808,0.5914,0.583,0.4554,0.4808,0.4894,0.4554,0.4212,0.549,0.5574,0.4042,0.2936,0.3362,0.2256,0.3276,-0.2212,0.4336,0.3894,0.6638,0.5752,0.9026,0.77,1,0.8142,0.5752,0.3362,0.407,0.177,0.2654,0.354,0.4778,0.2478,0.469,0.947,0.9912,0.584,0.6372,0.9558,0.9116,0.7788,0.8054,0.7168,0.6372,0.77,0.6726,0.177,0.4956,-0.265,0.282,0.2222,0.5042,0.5642,0.7522,0.8632,1,0.6496,0.5556,0.2394,0.2394,0.1196,0.1452,0.3334,0.2222,0.2222,0.7094,0.8804,0.6838,0.3676,0.5726,0.6666,0.5982,0.5642,0.53,0.5556,0.3162,0.2222,0.2736,0.1026,0.4786,-0.2964,0.1778,0.2174,0.3992,0.6048,0.7076,0.9684,1,0.6522,0.5732,0.3596,0.2174,0.3044,0.249,0.3438,0.4466,0.5098,0.5732,0.589,0.3438,0.3122,0.423,0.4862,0.3676,0.5968,0.6284,0.336,0.2412,0.3122,0.336,0.2806,0.3438,-0.4138,-0.0086,0.181,0.2844,0.6466,0.75,1,0.9656,0.75,0.569,0.5948,0.5344,0.5518,0.5948,0.6206,0.7586,0.7672,0.7758,0.8018,0.6294,0.6294,0.7328,0.6638,0.7844,0.6206,0.5948,0.4482,0.2586,0.2242,0.181,0.2672,0.431,-0.6626,-0.3662,-0.1276,-0.0288,0.2674,0.6214,0.6544,0.7202,0.5638,0.4156,0.3662,0.4486,0.4568,0.5144,0.6708,0.7778,0.8848,1,0.967,0.8766,0.8684,0.86,0.9342,0.8684,0.8518,0.7614,0.6378,0.5556,0.539,0.5144,0.5308,0.7284,-0.9596,-0.5556,-0.2526,-0.2828,0.2324,0.7474,0.7778,0.6566,0.3334,0.1414,0.0708,0.192,0.303,0.4242,0.404,0.7676,0.8888,1,0.6262,0.5252,0.4344,0.6768,0.7374,0.6868,0.6162,0.3738,0.192,0.1112,0.202,0.2728,0.2828,0.5758,-0.5,0.25,0.25,0.5416,0.5,1,1,0.625,0.5416,0.375,0.4166,0.2916,0.3334,0.0834,0.0834,0.2916,0.375,0.3334,0.4166,0.5,0.375,0.25,0.4166,0.375,0.2916,0.3334,0.5,0.5834,0.3334,0.25,0.125,0.0834,-0.3488,0.3488,0.3488,0.5814,0.5348,1,0.9534,0.8604,0.721,0.4418,0.3954,0.3024,0.1162,0.3954,0.3954,0.2558,-0.1628,0.628,0.8604,0.7674,0.628,0.628,0.6744,0.907,0.8604,0.814,0.628,0.1628,0.4884,0.6744,0.5348,0.7674,-0.4946,-0.1428,0.1208,0.2748,0.4726,0.8462,0.934,0.8462,0.7142,0.6044,0.6044,0.5164,0.5824,0.6264,0.6704,0.8242,1,0.978,0.956,0.8242,0.8682,0.8902,0.8902,1,0.7142,0.5604,0.4066,0.3406,0.3406,0.3186,0.2748,0.4286,-1,-1,-1,-1,-1,-1,-1,-0.9518,-0.9582,-0.9456,-0.1548,0.9916,0.864,0.6946,0.6882,0.6694,0.6256,0.6234,0.59,0.339,0.0168,-0.4812,-0.6674,-0.954,-0.9476,-0.956,-0.9644,-0.9602,-0.9666,-0.9268,-0.7782,-0.8034,-0.9414,-1,-1,-1,-1,-1,-1,-1,-0.9784,-0.9792,-0.8798,-0.2198,0.0542,-0.1176,-0.1278,-0.1084,0.0564,0.2168,0.2234,0.3942,0.9578,0.852,-0.3242,-0.4926,-0.8952,-0.9524,-0.9766,-0.9792,-0.978,-0.9776,-0.963,-0.7512,-0.856,-0.893,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.9534,-0.66,-0.02,-0.6268,-0.6268,-0.6268,-0.6334,-0.6534,-0.6468,-0.6134,-0.6,-0.38,-0.48,-0.565,-0.5668,-0.3868,-0.6268,-0.8468,-0.8868,-0.9068,-0.9134,-0.7934,-0.6468,-0.3,0.5466,-1,-1,-1,-1,-1,-1,-1,-0.6858,0.7714,1,1,0.9142,-0.4,-0.9142,-1,-0.8,-0.6572,-0.5428,-0.2286,-0.2,1,1,1,0.2572,0.4286,0.1428,-0.8572,-0.9714,-0.8858,0.6286,1,0.9142,0.5714,1,1,1,1,1,1,1,1,1,1,0.0508,0.0508,-0.0326,0.0098,0.0098,0.103,0.1746,0.2226,0.2326,-0.0044,-0.7334,-0.7058,-0.1824,0.0528,-0.033,-0.1648,-0.104,1,-0.2858,-0.0318,0.2222,0.3334,0.2698,0.2064,0.3334,0.4444,0.7142,0.8888,0.8412,0.8572,0.8888,0.8096,0.7302,0.746,0.873,0.9366,0.9366,0.9682,1,0.9366,0.8096,0.7142,0.5714,0.508,0.3968,0.1588,0.0952,-0.0952,-0.1588,-0.5396,-0.4102,-0.2436,0.359,0.2692,0.218,0.141,0.1924,0.2948,0.6538,0.8718,0.6538,0.8974,0.9358,0.8206,0.4744,0.5512,0.718,0.8846,0.7564,0.9102,1,0.9872,0.577,0.4358,0.2692,0.3462,0.2948,0,-0.359,-0.1924,-0.3974,-0.4872,0.1556,0.4,0.7778,0.8778,0.6444,0.5112,0.4556,0.4778,0.4778,1,0.7444,0.6334,0.8334,0.7778,0.5666,0.4556,0.6888,0.8,0.8,0.6222,0.8444,0.7888,0.5222,0.4,0.2778,0.4556,0.2444,0.1112,-0.2222,-0.1334,-0.3222,-0.6112,0.1172,-1,-1,1,-1,-1,-1,-0.7334,1,-0.75,-0.5834,-0.4834,-0.25,-0.3166,0.0834,0.2834,0.35,0.4334,0.2666,0.2834,0.4166,0.5666,0.45,0.2334,0.3166,0.5334,0.4,0.35,0.4334,0.6334,0.55,0.7666,0.9,0.9666,0.8834,0.8834,0.6834,1,0.9334,0.8166,0.8334,'24'
-0.7224,0.1292,0.1962,0.3206,0.445,0.7608,1,0.8756,0.5406,0.445,0.445,0.4642,0.4258,0.512,0.4642,0.6172,0.5406,0.9234,0.8948,0.78,0.7894,0.732,0.7704,0.579,0.8278,0.713,0.4162,0.3014,0.4642,0.4546,0.2728,0.3398,-0.5774,0.268,0.3298,0.3814,0.464,0.8248,1,0.7526,0.6186,0.464,0.433,0.3814,0.4124,0.4432,0.5052,0.598,0.6392,0.8042,0.732,0.969,0.8144,0.7114,0.6392,0.8866,0.9072,0.6288,0.6804,0.3196,0.433,0.3506,0.4432,0.3402,-0.4236,0.4148,0.4586,0.4324,0.4672,0.8254,0.9126,0.6506,0.7992,0.5196,0.4934,0.31,0.4148,0.2838,0.4848,0.4148,0.6768,0.5808,0.738,0.7816,0.6682,0.7992,0.9126,1,0.6332,0.703,0.5372,0.5458,0.2752,0.3624,0.2926,0.345,-0.3522,0.4836,0.5024,0.446,0.446,0.9062,0.9342,0.9436,1,0.5306,0.6056,0.4178,0.5306,0.5492,0.6714,0.446,0.615,0.7934,0.8686,0.7464,0.8216,0.6338,0.709,0.9342,0.9906,0.662,0.5586,0.3708,0.4366,0.2864,0.2676,0.4366,-0.442,0.2876,0.2876,0.382,0.3476,0.7082,0.6824,1,0.9656,0.5022,0.4506,0.5194,0.485,0.5022,0.4764,0.7424,0.734,0.9484,0.9656,0.7082,0.7168,0.6738,0.734,0.8284,0.8798,0.5536,0.4334,0.5022,0.5364,0.485,0.5194,0.4078,-0.579,0.0446,0.0202,0.2308,0.3036,0.6032,0.7328,0.9838,0.8462,0.4574,0.336,0.4574,0.4494,0.5384,0.5466,0.6924,0.8948,1,0.9028,0.838,0.7732,0.8218,0.8866,0.9272,0.757,0.7086,0.5546,0.5546,0.4252,0.4574,0.4494,0.5546,-0.7552,-0.2654,-0.1836,-0.0714,0.1734,0.6224,0.9796,0.8776,0.5612,0.2448,0.1836,0.2858,0.2756,0.2142,0.3368,0.653,0.9082,1,0.9694,0.796,0.6632,0.8266,0.8572,0.9796,0.7756,0.5408,0.5204,0.5204,0.4796,0.3674,0.5,0.4082,-0.6982,0.0944,0.1698,0.283,0.434,0.7358,1,0.8868,0.5472,0.434,0.434,0.4716,0.3962,0.4716,0.3962,0.6982,0.5472,0.9622,0.9622,0.7736,0.8114,0.6982,0.849,0.5472,0.849,0.7736,0.3208,0.3584,0.3962,0.5094,0.0944,0.1698,-0.7254,0.1764,0.255,0.3334,0.451,0.804,1,0.804,0.5294,0.451,0.4902,0.4902,0.451,0.5294,0.3334,0.4902,0.4118,0.804,0.7254,0.9216,0.8432,0.7254,0.7648,0.7254,0.8432,0.6078,0.6078,0.3726,0.451,0.255,0.4902,0.4902,-0.4,0.2888,0.2888,0.3556,0.3334,0.6888,0.7112,1,0.9778,0.4444,0.4444,0.4444,0.4444,0.4222,0.3556,0.7334,0.7112,0.9556,0.9778,0.7112,0.7334,0.4666,0.6222,0.8444,0.9112,0.4444,0.3556,0.5334,0.6,0.4,0.4444,0.4444,-1,-1,-1,-1,-1,-1,-0.9636,-0.9592,-0.9636,-0.867,-0.2626,0.9764,0.9422,0.6528,0.4598,0.3676,0.342,0.2884,0.2326,0.194,-0.0096,-0.387,-0.8628,-0.9056,-0.9506,-0.9572,-0.9636,-0.9528,-0.9592,-0.9572,-0.9614,-0.9636,-0.8736,-1,-1,-1,-1,-1,-1,-0.9808,-0.9798,-0.9632,-0.269,0.195,0.8622,0.439,-0.033,-0.204,-0.2896,-0.2344,-0.0384,0.4022,0.8312,0.4224,-0.1608,-0.909,-0.9386,-0.9726,-0.979,-0.9812,-0.9776,-0.9812,-0.9802,-0.9802,-0.9812,-0.776,-1,-1,-1,-1,-1,-1,-0.953,-0.9334,-0.9134,-0.1434,-0.2334,-0.5934,-0.66,-0.5668,-0.4668,-0.5534,-0.4468,-0.3468,-0.44,-0.3534,-0.4868,-0.3868,-0.3268,-0.4934,-0.7668,-0.9334,-0.9334,-0.9134,-0.9134,-0.9334,-0.9268,-0.9434,-0.8168,-1,-1,-1,-1,-1,-1,-0.1428,-0.8858,1,1,1,0.4858,-0.7142,-0.3714,-0.5714,-0.8,-0.7142,-0.1142,-0.3428,-0.2,1,1,1,0.5714,0.0286,-0.9714,-0.9714,-0.9428,-1,-0.9714,-1,-0.0572,1,1,1,1,1,1,1,1,1,1,1,0.0046,0.0046,-8e-04,-8e-04,0.055,0.0866,0.0766,0.0676,0.0912,0.0566,-0.84,-0.7294,0.0976,1,0.501,0.1564,-0.181,1,-0.5752,-0.4094,0.1088,0.399,0.026,0.0156,0.2228,0.3782,0.8964,0.9586,0.6374,0.772,0.772,0.6062,0.4612,0.6788,0.8652,0.886,1,0.9482,0.8134,0.8134,0.6684,0.6374,0.3782,0.1918,0.2124,0.0362,0.0052,-0.399,-0.4612,-0.5234,-0.526,-0.3838,0.2418,0.4598,0.2512,0.2322,0.3838,0.5734,0.9336,0.9906,0.8862,0.962,1,0.8484,0.6872,0.7346,0.8294,0.9146,0.9336,0.8862,0.8672,0.8294,0.6018,0.2986,0.2038,-0.0236,-0.1184,-0.2606,-0.2796,-0.365,-0.4786,-0.5734,-0.1974,0.1456,0.4758,0.7152,0.534,0.4692,0.5792,0.6052,0.8382,1,0.8706,0.864,0.864,0.7734,0.6376,0.6182,0.7606,0.767,0.8318,0.7216,0.6764,0.6958,0.5534,0.3592,0.1716,0.0938,-0.081,-0.0292,-0.1974,-0.3852,-0.4046,-0.5792,0.5212,-1,-1,1,-1,-1,-1,-0.5666,1,-0.5238,0.3524,0.7334,0.181,0.638,0.1048,0.581,0.3334,1,0.8286,0.8858,0.9238,0.3714,0.3904,0.3524,0.3524,0.3904,0.2762,0.3334,0.562,0.562,0.5238,0.219,0.2572,0.562,0.6572,0.7524,0.6952,0.5428,0.4286,0.2,-0.1428,'24'
-0.097,0.5602,0.6792,0.956,0.78,0.925,0.9716,1,0.5446,0.4954,0.1022,-0.0168,-0.2446,-0.524,-0.4722,-0.5886,-0.5834,-0.4826,-0.4878,-0.3144,-0.2186,0.0582,-0.0168,-0.079,-0.2082,-0.348,-0.3868,-0.0686,0.3222,0.2936,-0.2574,-0.5834,-0.3296,0.1968,0.1458,0.2896,0.4208,0.623,0.847,1,0.7522,0.6612,0.4354,0.5154,0.1658,0.1294,-0.0292,-0.071,-0.2586,-0.164,-0.0274,0.02,0.2368,0.4116,0.3188,0.0766,-0.0382,-0.0802,-0.0928,-0.0018,0.1622,0.1476,-0.0092,-0.1968,-0.4258,0.269,0.263,0.3052,0.271,0.6988,0.6546,1,0.9558,0.5884,0.5502,0.8374,0.8032,0.4136,0.3756,-0.0262,-0.0582,0.2248,0.1808,0.3594,0.3474,0.5662,0.5542,0.3374,0.3232,0.1064,0.0964,0.2832,0.2912,0.492,0.504,0.006,-0.399,0.2932,0.2766,0.2932,0.227,0.7056,0.6208,1,0.915,0.5606,0.4652,0.7928,0.7306,0.8652,0.8114,0.4424,0.3306,0.3512,0.285,0.5316,0.5108,0.6808,0.6788,0.712,0.6208,0.3472,0.2622,0.3576,0.3762,0.6,0.6684,0.4716,-0.1688,0.4758,0.3402,0.3862,0.78,0.8722,0.9796,0.936,0.4476,0.2174,0.1458,0.2352,0.335,0.3044,0.4578,0.665,0.8414,0.7596,0.7878,0.7596,0.7596,0.8772,1,0.9898,0.9002,0.5602,0.5116,0.399,0.3222,0.4578,0.5602,0.6548,-0.0844,0.536,0.4716,0.616,0.7666,0.6314,-0.106,-0.2474,-0.2904,-0.6374,-0.5484,-0.45,-0.4408,-0.358,-0.3364,-0.4162,-0.1182,0.2964,0.3856,0.6836,0.9632,1,0.9078,0.8248,0.7942,0.613,0.4194,0.275,0.0138,0.152,0.1982,0.2566,-0.1216,0.5532,0.389,0.5714,-0.003,-0.1276,-0.383,-0.4316,-0.7538,-0.8784,-0.8966,-0.5532,-0.5198,-0.5836,-0.5958,-0.532,-0.4042,-0.2522,-0.0274,0.2918,0.9818,1,0.997,0.9332,0.8754,0.7812,0.4408,0.2432,0.0972,-0.155,-0.158,-0.231,0.238,0.7142,0.8096,1,0.6666,0.1428,0.619,0.4762,0.0952,-0.0952,-0.0952,-0.1428,-0.3334,-0.5238,-0.4286,-0.4762,-0.238,-0.238,-0.238,-0.2858,0.0952,0.1904,0.1428,0,0.0952,-0.2858,-0.1904,-0.3334,0,0,-0.4762,-0.4762,0.0232,0.5348,0.7674,1,0.7674,0.4418,0.5348,0.4884,-0.1628,-0.2558,-0.2558,-0.2558,-0.3024,-0.4418,-0.4418,-0.5814,-0.5348,-0.3954,-0.628,-0.4884,-0.3954,-0.0232,0.0698,-0.3024,-0.628,-0.3954,-0.3488,0.0698,0.0698,-0.3488,-0.1628,-0.4884,-0.3246,0.2208,0.1428,0.091,0.5324,0.5584,0.6624,0.5324,0.1428,-0.1168,-0.1428,0.1428,0.1688,-0.013,0.1688,0.4286,0.7402,1,0.7922,0.3506,0.3766,0.4806,0.5844,0.4546,0.6364,0.4286,0.2988,0.1168,0.065,0.065,0.065,0.1428,-1,-1,-1,-1,-0.9668,-0.8802,-0.4658,-0.4094,-0.431,-0.4626,-0.3278,0.6472,0.6472,0.258,0.0066,-0.0332,-0.0848,-0.158,-0.2928,-0.4292,-0.4608,-0.5474,-0.6988,-0.8154,-0.9102,-0.9418,-0.9468,-0.9534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.976,-0.9514,-0.7988,-0.777,-0.7858,-0.795,-0.747,-0.21,0.6384,0.481,0.0452,0.0224,0.1466,-0.1494,-0.5174,-0.6842,-0.7552,-0.777,-0.8386,-0.8746,-0.9084,-0.9154,-0.934,-0.8136,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.9034,-0.89,-0.8868,-0.82,-0.8168,-0.81,-0.8062,-0.6786,-0.6062,-0.594,-0.5744,-0.5858,-0.683,-0.6816,-0.7458,-0.9372,-0.7458,-0.8134,-0.4934,-0.4,-0.2534,-0.4334,-0.2934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3428,-0.1714,-0.8858,-0.9142,-1,-0.5714,0.5142,-0.0572,-0.8572,-0.8286,-0.8572,-0.7428,-0.6858,-0.4286,-0.7142,-0.8572,-0.8858,-0.9142,-0.9142,-0.8572,-1,-0.3714,-0.2286,-1,-1,-1,-1,-1,0.8482,0.8738,0.9248,0.9848,1,1,1,1,1,0.8856,0.0436,0.0382,0.0086,-0.0292,-0.0276,-0.0746,-0.1228,-0.2084,-0.386,-0.0164,-0.8134,0.647,-0.7502,-0.639,-0.3676,-0.1336,-0.12,-0.975,0.7128,1,0.601,0.367,0.25,-0.0958,0.0586,0.2022,0.3192,0.0904,0.0054,-0.0692,-0.0638,-0.0852,-0.117,0.0586,0.0958,-0.1596,-0.1224,-0.1064,-0.234,-0.0478,-0.032,-0.149,-0.1596,-0.2022,-0.117,-0.1436,-0.2926,-0.3776,-0.4628,-0.617,0.8306,1,0.963,0.5926,0.2858,-0.0582,-0.0634,-0.0688,0.0424,-0.1112,-0.0688,-0.164,-0.1376,-0.2116,-0.1746,-0.1746,-0.164,-0.3386,-0.3228,-0.1216,-0.2116,-0.238,-0.3122,-0.4022,-0.2222,-0.2592,-0.2116,-0.4338,-0.3386,-0.4338,-0.4392,-0.8466,0.772,1,0.9166,0.8026,0.2368,-0.1008,-0.0834,-0.0614,0.0308,-0.0088,-0.1622,-0.0264,-0.0746,-0.1184,-0.171,-0.0394,-0.0746,-0.136,-0.2764,-0.1974,-0.1404,-0.3114,-0.1578,-0.215,-0.3728,-0.3684,-0.3552,-0.329,-0.4692,-0.4474,-0.3816,-0.579,-0.8026,-1,-1,1,1,-1,-0.6,0.1334,-1,-0.691,-0.3984,-0.2196,-0.187,-0.4308,-0.3822,-0.3496,-0.0894,0.0406,0.2032,0.6748,0.935,1,0.5448,-0.0244,0.0894,0.1382,0.4634,0.2032,-0.1382,-0.057,0.0082,-0.1708,-0.0732,-0.3334,-0.3008,-0.2682,-0.3008,0.1708,0.2846,0.187,-0.6098,'25'
-0.1108,0.7044,0.6254,1,0.8364,0.6992,0.5356,0.7282,0.3562,0.1952,-0.1794,-0.0898,-0.446,-0.4222,-0.562,-0.6992,-0.649,-0.5964,-0.5752,-0.5646,-0.2428,-0.2902,-0.4618,-0.57,-0.5092,-0.649,-0.7072,-0.6094,-0.3932,-0.1398,-0.1768,-0.227,-0.3614,0.1946,0.1624,0.5086,0.609,0.8798,0.826,1,0.8026,0.7794,0.496,0.331,-8e-04,0.0654,-0.1766,-0.1498,-0.3452,-0.356,-0.0708,-0.1068,0.173,0.1086,0.0368,-0.105,-0.3148,-0.4206,-0.4134,-0.2844,-0.1552,0.0996,0.1498,-0.1838,-0.4488,0.1236,0.0848,0.2704,0.3392,0.6414,0.7598,1,0.8428,0.8658,0.6908,0.7898,0.553,0.4152,0.1096,0.2226,0.0318,0.1166,0.1872,0.2438,0.5512,0.5902,0.3798,0.3922,0.2332,0.2262,0.0778,0.0336,0.2862,0.242,0.4734,0.3958,-0.3774,0.2078,0.1464,0.2786,0.4446,0.659,0.8154,0.9646,0.8434,0.9478,0.9384,1,0.8882,0.905,0.6776,0.6198,0.3904,0.2786,0.4892,0.4818,0.5918,0.7018,0.7986,0.6944,0.452,0.3104,0.2674,0.275,0.3662,0.4446,0.6664,0.6478,-0.2856,0.253,0.114,0.2682,0.6526,0.683,1,0.9002,0.5874,0.4116,0.418,0.468,0.4766,0.4744,0.5548,0.6178,0.6438,0.7482,0.822,0.8458,0.8198,0.8588,0.9348,0.9348,0.6786,0.5136,0.3464,0.292,0.2964,0.3594,0.4116,0.544,-0.1712,0.3506,0.3778,0.4566,0.9538,0.7934,0.326,-0.182,-0.3396,-0.3206,-0.356,-0.4076,-0.4266,-0.2582,-0.299,-0.2798,0.0516,0.201,0.519,0.7908,0.9674,1,0.9782,0.9836,0.8124,0.663,0.4348,0.3804,0.2608,0.1984,0.3532,0.2854,-0.2,0.3748,0.2266,0.3482,0.206,0.0014,-0.4044,-0.6118,-0.8638,-0.7038,-0.7214,-0.5348,-0.4162,-0.44,-0.603,-0.5674,-0.3362,-0.2652,-0.0696,0.3334,0.7512,1,0.9082,0.7392,0.686,0.5496,0.5704,0.437,0.1438,0.0904,0.0104,-0.1556,0.3334,1,1,0.8462,0.7948,0.6924,0.6924,0.6924,0.6924,0.1282,0.1794,0.3334,0.0256,-0.282,-0.0256,-0.2308,0.1282,0.0256,0.1794,0.1794,0.1282,-0.3846,-0.0256,0.2308,0.2308,0.0256,-0.2308,0.0256,0.1282,0.0256,-0.1282,0.282,0.4348,1,0.9566,0.9566,0.8696,0.826,0.7826,0.8696,0.6956,0.3044,0.3478,0.3914,0.3478,0.3044,0.2174,0,0,0.0434,-0.2608,0.2608,0.3914,0.2608,0.174,0,0.2608,0.2174,-0.3044,-0.0434,0.2608,0.4348,0.5652,0.4348,-0.5384,0,0,0.1924,0.327,0.577,0.7692,1,0.827,0.8076,0.6154,0.577,0.3462,0.173,-0.0192,0.0192,-0.173,-0.1346,-0.0192,0,0.3846,0.3654,0.2308,0.25,0,-0.0192,-0.077,-0.1154,0.1538,0.077,0.173,0.1154,-1,-1,-1,-1,-1,-1,-1,-1,-0.9736,-0.9722,-0.8036,-0.2184,0.7756,0.6174,0.1188,-0.1378,-0.2008,-0.302,-0.374,-0.4662,-0.5894,-0.692,-0.7376,-0.7816,-0.8372,-0.8754,-0.9296,-0.9458,-0.953,-0.9678,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9806,-0.9788,-0.9304,-0.687,0.002,0.813,0.6346,0.2008,0.27,0.017,-0.4322,-0.667,-0.7882,-0.8564,-0.8722,-0.868,-0.8916,-0.8992,-0.896,-0.921,-0.9186,-0.9272,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.88,-0.9534,-0.8268,-0.8644,-0.7844,-0.653,-0.6,-0.5044,-0.56,-0.5186,-0.6,-0.72,-0.9054,-0.8588,-0.7834,-0.6534,-0.49,-0.3134,-0.2068,-0.2668,-0.3068,-0.3734,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,-0.8858,0.2286,0.3428,-0.0858,-0.3142,-0.4572,-0.9142,-0.8286,-0.5714,-0.5142,-0.6286,-0.8572,-0.8572,-0.9714,-0.9428,-0.9142,-0.9714,-0.9714,-0.9714,-0.8858,-0.7142,-1,-1,-1,0.6952,0.7096,0.7336,0.7736,0.8318,0.9034,1,1,1,0.972,-0.4644,-0.441,-0.4116,-0.389,-0.3844,-0.3908,-0.4608,-0.523,-0.599,-0.2056,-0.76,0.7412,-0.9336,-0.813,-0.7778,-0.7316,-0.639,-1,0.0934,-0.0666,0.44,0.52,0.6934,0.7866,0.9334,0.88,0.88,0.8266,0.88,0.8666,1,0.7734,0.68,0.5066,0.8,0.6134,0.4134,0.4534,0.8534,0.76,0.3334,0.28,0.2934,0.4934,0.32,0.2266,0.2934,-0.2934,0.2534,-0.24,0.1544,0.1544,0.6098,0.8212,0.9186,0.9512,0.7074,0.626,0.5934,0.7724,0.9838,0.8212,0.5934,0.691,0.8048,0.8536,0.9024,0.3658,0.5122,0.7074,1,0.691,0.3822,0.5448,0.7074,0.3984,0.9512,0.4146,0.2682,0.0732,0.4634,0.0082,0.4602,0.951,0.411,0.7668,0.5582,0.6564,0.632,0.816,0.865,0.7056,0.865,0.6564,0.595,0.6564,0.2884,0.7178,0.5582,0.6442,0.5214,0.73,0.5092,0.4602,0.3988,0.6074,0.7178,0.3374,1,0.6074,0.1288,-0.0674,0.6196,0.227,-0.9918,1,-1,-1,-1,-1,0.6,-1,-1,-0.4218,-0.2968,-0.0624,0.0468,-0.125,-0.0938,-0.0938,-0.1562,0.1094,0.4218,0.7812,1,0.7812,0.6876,0.2188,0.1094,0.3438,0.5468,0.3906,0.0156,0.2188,0.3906,0.3126,0.0156,-0.1718,-0.4062,-0.3438,-0.1718,0.1406,0.2032,-0.1094,-0.3282,'25'
0.0528,0.9472,0.8838,1,0.817,0.0282,-0.0564,0.1022,-0.1126,0.0388,-0.2078,-0.0634,-0.0986,0.1092,-0.0388,0.3028,0.662,0.736,0.6796,0.8662,0.6268,0.1972,0.5564,0.7816,0.912,0.8556,0.4296,0.0352,-0.014,0.007,-0.0774,-0.0846,0.0176,0.8348,0.823,0.7846,0.6962,0.0442,-0.0766,0.0678,-0.059,-0.1564,-0.292,-0.0442,-0.2036,-0.2212,-0.357,-0.1622,-0.2566,0.1032,0.3952,0.764,0.6666,0.8142,0.6106,0.643,0.7374,1,0.8732,0.3392,0.1504,0.2272,0.0472,0.0294,-0.0926,0.6432,0.6044,0.444,0.3278,-0.1562,-0.3306,-0.2034,-0.397,-0.4828,-0.6128,-0.4218,-0.5048,-0.4496,-0.585,-0.4634,-0.289,-0.1674,0.0926,0.2254,0.668,0.7926,0.8672,0.9142,0.621,0.6984,0.9392,1,0.61,0.527,0.4384,0.3858,-0.0414,0.6352,0.4892,0.4826,0.0812,-0.32,-0.35,-0.3798,-0.6218,-0.6882,-0.7114,-0.6916,-0.519,-0.602,-0.6286,-0.5356,-0.4362,-0.277,-0.1078,0.194,0.3996,0.8906,0.9734,0.8872,0.6584,0.718,0.8706,1,0.9138,0.6684,0.5854,0.4992,-0.0422,0.4642,0.6184,0.6624,-0.4348,-0.5522,-0.622,-0.7212,-0.8422,-0.8312,-0.9266,-0.7358,-0.8056,-0.8056,-0.6404,-0.622,-0.5926,-0.7028,-0.4056,0.1082,0.4568,0.5486,0.8568,0.8018,0.655,0.4568,0.7834,1,0.7468,0.2918,0.3212,0.2366,-0.1612,0.2984,0.9354,0.8548,-0.3186,-0.8064,-0.512,-0.5564,-0.7944,-0.6814,-0.738,-0.746,-0.633,-0.6088,-0.5404,-0.7016,-0.4638,-0.4072,-0.4314,-0.2178,0.2944,0.8912,1,0.8428,0.5242,0.5444,0.6734,0.8468,0.6694,0.4396,0.25,0.0362,-0.5438,0.2358,0.614,0.3762,-0.4152,-0.7778,-0.614,-0.5828,-0.8596,-0.7738,-0.8596,-0.7076,-0.7038,-0.844,-0.653,-0.653,-0.5516,-0.5556,-0.4736,-0.115,0.306,0.8674,1,0.8636,0.427,0.3606,0.614,0.6842,0.4736,-0.076,0.0214,0.0292,0,0.7858,0.6428,0.4286,0.1428,-0.6428,0,0.0714,0.0714,-0.0714,-0.2142,-0.7142,-0.3572,-0.0714,-0.1428,0.7858,1,0.8572,0.3572,0.2858,-0.3572,0.1428,0.5714,0.7142,0.8572,0.5,0.5714,0.4286,0.2142,0.0714,-0.1428,-0.0714,0.0526,0.7368,0.7368,0.7368,0.4736,-0.1052,0.1052,0.2106,-0.1052,-0.0526,-0.2632,-0.2106,0,-0.0526,0.1052,0.2106,0.6842,0.3158,0.1578,-0.0526,0.3684,-0.1052,0.579,1,0.9474,0.5264,0.3158,0.3158,0,0.1052,0.1578,-0.0526,-0.2196,0.4634,0.4146,0.2682,0.122,-0.3414,-0.3902,-0.439,-0.6342,-0.5366,-0.683,-0.6098,-0.561,-0.4878,-0.7318,-0.683,-0.317,-0.244,0.0488,0.1464,0.4878,0.5366,0.8536,0.878,0.5854,0.5122,1,0.9756,0.4634,0.3658,0.5366,0.4146,-0.5936,-0.2922,-0.201,-0.1438,-0.2032,-0.3652,-0.4474,-0.5252,-0.5844,-0.5616,-0.443,0.5388,0.968,0.806,0.573,0.3334,0.089,-0.1324,-0.1872,-0.2512,-0.3972,-0.4658,-0.6028,-0.8128,-0.9156,-0.9452,-0.9612,-0.9452,-1,-1,-1,-1,-1,-0.683,-0.3986,-0.3334,-0.296,-0.296,-0.2882,-0.2198,-0.1858,-0.1126,-0.0832,0.0334,0.481,0.9176,0.7404,0.6798,0.7048,0.3084,-0.0116,-0.1562,-0.2416,-0.408,-0.4902,-0.6068,-0.7264,-0.8244,-0.8136,-0.8322,-0.8524,-1,-1,-1,-1,-1,-0.8668,-0.8534,-0.8868,-0.73,-0.67,-0.6034,-0.28,-0.1168,0.5432,0.69,0.3532,-0.6182,-0.7092,-0.8,-0.811,-0.7456,-0.7092,-0.7184,-0.7112,-0.7422,-0.6622,-0.709,-0.7522,-0.4322,-0.3456,-0.469,-0.4356,-0.6322,-1,-1,-1,-1,-1,1,0.5428,-0.2572,-0.4572,-0.6,-0.4572,-0.7428,-0.8286,-0.6572,-0.9714,1,1,-0.5714,-0.8858,-0.9142,-0.8572,-0.8858,-0.9714,-1,-0.9714,-0.8858,-0.4572,-0.6572,-0.7714,-0.8858,-0.8858,-0.8286,-0.5714,-1,-1,-1,-1,-1,0.1478,0.153,0.1558,0.1578,0.167,0.1678,0.1462,0.1366,0.0678,-0.1502,0.078,0.1154,0.1266,0.1882,0.2482,0.3086,0.4274,0.5764,0.7404,0.8104,-0.7066,0.3648,0.0178,0.1376,0.2494,0.5944,0.8338,-0.5,0.1392,0.1914,-0.4392,-0.5956,-0.7086,-0.5956,-0.5914,-0.1304,-0.3434,-0.4218,-0.3566,-0.1174,-0.0086,-0.1566,-0.187,-0.1392,0.1174,0.1218,0.0914,0.3652,0.5174,0.6392,0.5652,0.4522,0.4914,0.6652,0.787,1,0.8782,0.6174,0.5696,0.2044,0.0402,0.0892,-0.6696,-0.6562,-0.692,-0.5938,-0.6116,0.0044,0.0536,-0.2188,-0.0402,-0.1116,0.009,-0.0224,0.1384,0.2858,0.2768,0.317,0.3884,0.6742,0.7232,0.7456,0.8616,0.8348,0.7678,0.7946,0.7724,0.9508,1,0.9508,0.8706,0.3974,0.025,0.1124,-0.475,-0.5374,-0.5916,-0.5458,-0.4292,-0.1374,0.075,0.0084,0.0208,-0.0792,0.0376,-0.0916,-0.0334,0.1208,0.2834,0.3416,0.175,0.4292,0.6458,0.9376,0.7374,0.8458,1,0.7834,0.7834,0.95,0.8958,0.7792,0.6666,0.2458,-0.8322,-1,1,-1,1,1,0,0.2,-1,-0.0526,-0.035,-0.228,-0.035,-0.1754,0.0526,0.1578,0.421,0.3158,0.579,1,1,0.9122,0.9298,0.4562,0.4036,0.3508,0.4036,0.772,0.4386,0.5964,0.421,0.3334,0.228,-0.035,0.1404,0.2808,-0.1228,-0.0176,-0.1228,0.0702,-0.1228,'26'
-0.1338,0.7888,0.8262,0.6126,0.6338,0.054,0.0962,-0.0938,-0.0306,-0.3262,-0.2136,-0.2746,-0.1596,-0.1244,0.061,-0.0352,0.2018,0.3522,0.6104,0.5798,0.9436,0.8192,0.6972,0.608,1,0.9624,0.6432,0.5728,0.338,0.324,0.2112,0.2536,-0.3404,0.4586,0.47,0.2508,0.264,-0.2106,-0.1858,-0.3156,-0.2584,-0.6034,-0.5196,-0.4986,-0.3708,-0.451,-0.2984,-0.407,-0.2088,-0.1534,0.083,0.1726,0.4986,0.5672,1,0.8876,0.733,0.6358,0.7712,0.7274,0.6454,0.634,0.4356,0.4394,-0.1888,0.5494,0.5086,0.4828,0.3734,-0.1846,-0.3712,-0.339,-0.5344,-0.573,-0.6116,-0.3906,-0.442,-0.4356,-0.4828,-0.4228,-0.4098,-0.1094,0.0386,0.2618,0.3412,0.7982,0.9464,0.97,0.8262,0.8026,0.7812,1,0.957,0.8626,0.7576,0.6072,-0.0842,0.505,0.3862,0.5842,0.0768,-0.2798,-0.4654,-0.453,-0.6758,-0.797,-0.76,-0.7104,-0.6534,-0.6782,-0.6114,-0.594,-0.4134,-0.3738,-0.2252,0.0396,0.2054,0.5198,0.9406,1,0.656,0.5966,0.6584,0.8242,0.891,0.8712,0.8268,0.5496,0.041,0.6194,0.799,0.866,-0.2968,-0.5038,-0.5068,-0.516,-0.8752,-0.8174,-0.796,-0.7352,-0.58,-0.6652,-0.5068,-0.6894,-0.4734,-0.449,-0.3242,-0.1964,0.1112,0.592,1,0.8538,0.6622,0.583,0.5494,0.6986,0.7626,0.8264,0.8112,0.6438,-0.1924,0.285,0.6556,0.6672,-0.2532,-0.5166,-0.6904,-0.673,-0.8814,-0.7626,-0.6874,-0.8264,-0.6382,-0.6122,-0.5862,-0.534,-0.4906,-0.4328,-0.5398,-0.1432,0.1028,0.4646,1,0.9768,0.5166,0.4558,0.5514,0.7018,0.5804,0.5426,0.4096,0.395,-0.3906,0.1228,0.055,0.0692,-0.5712,-0.6982,-0.6108,-0.6332,-0.8138,-0.794,-0.8082,-0.8054,-0.6586,-0.6022,-0.6108,-0.6276,-0.574,-0.4754,-0.371,-0.117,0.0634,0.639,1,0.8194,0.4754,0.3822,0.6248,0.7518,0.512,0.2582,0.1142,0.0776,-0.1724,0.862,1,0.7242,0.3794,-0.1724,-0.1724,-0.2414,-0.2414,-0.0344,-0.3104,-0.5862,-0.7242,-0.7242,-0.5862,0.1034,0.5172,0.7932,0.862,0.5862,0.3794,0.4482,0.3794,0.2414,0.3794,0.7932,0.5862,-0.3104,-0.3104,-0.4482,-0.5172,-0.0344,-0.1794,0.6924,0.6924,0.5898,0.5898,-0.1282,0.0256,-0.1794,-0.1282,-0.2308,-0.1794,-0.3334,-0.3334,-0.1282,-0.0256,-0.1282,0.2308,0.7948,1,0.641,-0.1794,-0.0256,0.2308,0.4358,0.8974,0.7948,0.1794,0.077,-0.641,-0.4872,-0.1794,-0.282,-0.2164,0.4432,0.4432,0.3402,0.3196,-0.1546,-0.2372,-0.2784,-0.3196,-0.4846,-0.5464,-0.134,-0.134,-0.2164,-0.2578,-0.2372,-0.2578,-0.0104,-0.0104,0.3814,0.3608,0.7938,0.7938,0.897,0.8556,0.8144,0.7938,0.9794,1,0.7526,0.7526,0.5258,-0.3494,-0.3156,-0.3614,-0.4844,-0.5808,-0.653,-0.7832,-0.8844,-0.9374,-0.8698,-0.682,0.824,0.7856,0.5734,0.441,0.3254,0.1566,-0.0554,-0.2168,-0.3156,-0.4048,-0.641,-0.8266,-0.8386,-0.9204,-0.9228,-0.9326,-1,-1,-1,-1,-1,-1,-0.5274,-0.4944,-0.5288,-0.5408,-0.309,-0.0788,-0.0284,0.002,-0.0894,-0.272,-0.3846,0.4586,0.6174,0.8214,0.8226,0.6214,0.235,-0.0934,-0.3224,-0.4056,-0.4296,-0.6612,-0.7684,-0.7724,-0.812,-0.8042,-0.8318,-1,-1,-1,-1,-1,-1,-0.9334,-0.9068,-0.6668,-0.5068,0.2366,1,1,1,1,1,0.3432,-0.8572,-0.7172,-0.6486,-0.553,-0.54,-0.612,-0.6974,-0.7734,-0.748,-0.676,-0.608,-0.5168,-0.3868,-0.4,-0.46,-0.3268,-1,-1,-1,-1,-1,-1,-0.0286,1,1,-0.4,-0.1142,-0.4286,-0.9428,-0.6572,-0.7714,0.0286,1,1,-0.8286,-0.8858,-0.6858,-0.9428,-0.8858,-0.8286,-0.9428,-1,-0.7428,-0.8572,-0.9142,-0.8,-0.7714,-0.7714,-0.7714,-1,-1,-1,-1,-1,-1,0.1358,0.1384,0.1432,0.144,0.1412,0.137,0.133,0.1182,0.057,-0.0976,0.5874,0.6098,0.6592,0.6904,0.731,0.8098,0.8594,0.9142,0.9736,0.9396,-0.68,0.7648,-0.3594,-0.145,0.4506,0.456,0.5632,-0.4084,-0.013,0.0746,-0.5974,-0.7922,-0.7988,-0.5974,-0.6136,-0.4058,-0.4286,-0.5292,-0.422,-0.3636,-0.2824,-0.276,-0.3474,-0.263,0.0324,0.1072,0.0422,0.1298,0.211,0.2662,0.4512,0.5616,0.4642,0.6396,0.922,1,0.8572,0.7922,0.7792,0.3962,-0.5154,-0.461,-0.7008,-0.5006,-0.5426,-0.6044,-0.5204,-0.3226,-0.3054,-0.325,-0.2212,-0.2064,-0.0804,-0.0384,0.0384,-0.068,0.068,0.0878,0.1298,0.236,0.335,0.2262,0.3474,0.4438,0.555,0.7354,0.8096,0.8072,0.9456,1,0.8986,0.7428,-0.7928,-0.8238,-0.561,-0.5672,-0.592,-0.4744,-0.5364,-0.2704,0.0448,0.0418,-0.0634,-0.1004,0.085,0.187,0.1252,0.2674,0.252,0.3756,0.354,0.6724,0.8052,0.5456,0.5734,0.4838,0.5672,0.8918,1,0.8238,0.935,0.9784,0.8238,0.5982,-0.6268,-1,1,-1,1,1,-0.8,0.6334,-1,-0.638,-0.4482,-0.069,0,-0.069,0,0.0344,-0.1034,0.0344,0.569,0.8794,0.4138,0.862,0.8448,0.569,0.1896,0.7242,0.7414,0.1896,0.0344,0.2586,0.4828,1,0.7242,0.1896,0.3104,0.2242,0.2242,0.2414,-0.0344,-0.0344,-0.2932,'26'
-0.9224,0.37,0.525,0.664,1,0.79,0.0598,-0.0306,-0.2536,-0.2246,-0.3732,-0.2342,-0.2278,-0.2278,-0.1534,-0.3118,-0.0016,0.021,0.525,0.6348,0.273,0.3634,0.2374,0.4378,0.3634,0.189,0.1114,0.0016,-0.0986,-0.076,-0.1826,-0.0306,-0.3368,0.4028,0.4078,0.9492,0.967,0.4842,0.4866,0.0852,0.0952,-0.0266,-0.0368,0.075,0.0546,0.2122,0.2504,0.3952,0.4536,0.7688,0.9008,0.8704,1,0.8068,0.85,0.8246,0.8398,0.7434,0.5654,0.54,0.3722,0.418,0.3138,0.3392,0.0638,0.7188,0.6782,0.942,0.8086,0.713,0.5334,-0.116,-0.2202,-0.0696,0.058,0.1798,0.0638,0.1594,0.0406,0.0956,0.2174,0.3566,0.7682,0.8754,0.8928,0.855,1,0.9334,0.855,0.7768,0.4144,0.2318,0.316,0.1072,0.1972,0.0318,0.0092,0.6414,0.5502,0.8024,0.608,0.608,0.2736,-0.234,-0.4042,-0.3556,-0.1124,-0.1276,0.0486,-0.0334,-0.0122,-0.1276,0.0608,0.4104,0.5928,0.7934,0.921,0.6686,0.7052,1,0.9636,0.6232,0.5046,0.1732,0.0334,0.1124,0,-0.0456,-0.0132,0.6098,0.6098,0.901,0.6826,0.575,0.1966,0.0044,-0.4934,-0.476,-0.4236,-0.4702,-0.0714,-0.211,-0.1704,-0.2548,-0.0976,0.2256,0.3712,0.9244,1,0.572,0.5516,0.7962,0.7118,0.6332,0.4876,0.3216,0.0218,0.08,0.0452,0.0538,-0.0578,0.6482,0.6482,1,0.968,0.2178,0.1932,0.0036,-0.0136,-0.1734,-0.1784,-0.1832,-0.134,-0.2226,-0.1882,-0.0948,0.0356,0.2202,0.4784,0.6802,0.8376,0.7466,0.5768,0.6482,0.6556,0.6506,0.513,0.358,0.2644,0.2472,0.2078,0.2496,-0.194,0.7186,0.7704,0.5628,0.6148,0.0054,-0.1502,-0.377,-0.2868,-0.4864,-0.2896,-0.388,-0.3006,-0.377,-0.1284,-0.205,-0.041,-0.071,0.5164,0.582,0.9262,1,0.571,0.7132,0.5766,0.7022,0.47,0.123,0.0192,0.1476,0.1338,0.0382,-0.9412,0.4706,0.8236,0.4706,0.9412,1,0.0588,0.1764,-0.0588,-0.353,-0.2942,-0.2352,-0.0588,-0.1176,-0.4118,-0.7058,-0.2942,0.1176,0.4706,0.647,0.5882,0.353,0.7058,0.8236,0.4706,0.1176,-0.1764,-0.5294,-0.1176,-0.1764,-0.353,0.1176,-0.4616,0.4616,0.577,0.8846,1,0.7308,0.2692,0.1924,0.1154,0.1538,-0.1924,-0.0384,0,-0.077,0.077,0.077,0.1538,0.3076,0.6154,0.6538,0.6154,0.5384,0.4616,0.6538,0.577,0.3462,0.2308,-0.0384,-0.077,-0.1924,-0.5,-0.1924,-0.1456,0.534,0.534,0.9806,0.9612,0.5922,0.6116,0.1844,0.165,-0.0098,-0.0292,0.0874,0.0486,0.2622,0.2622,0.4758,0.4952,0.8058,0.864,0.9224,1,0.7864,0.8252,0.8058,0.903,0.631,0.6116,0.4368,0.4758,0.2622,0.3592,0.2816,-1,-1,-1,-1,-1,-1,-1,-1,-0.982,-0.9804,-0.8974,-0.5912,-0.0102,0.841,0.444,0.379,0.3194,0.3664,0.5678,0.8982,0.2176,-0.209,-0.585,-0.823,-0.8864,-0.9264,-0.9162,-0.9374,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9854,-0.9834,-0.9424,-0.7158,-0.174,0.5052,-0.0268,-0.1522,-0.1798,-0.1808,-0.0684,0.1746,-0.254,-0.541,-0.7802,-0.8722,-0.9226,-0.9414,-0.9482,-0.958,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.94,-0.8768,-0.786,-0.716,-0.686,-0.726,-0.774,-0.73,-0.72,-0.7546,-0.8456,-0.9692,-0.9764,-0.8968,-0.6068,-0.6768,-0.5068,-0.74,-0.76,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3428,-0.8286,1,1,1,0.6858,-0.6,-0.9428,-1,-1,-0.8858,-0.7428,-0.6858,0.2,-0.5714,-0.4858,-0.2286,-0.5714,-0.8858,-0.3428,-1,-1,-1,-1,-1,0.843,0.8498,0.8396,0.8464,0.8492,0.8538,0.8444,0.78,0.6642,0.4958,0.2544,0.3036,0.2766,0.2498,0.2626,0.3192,0.3806,0.4332,0.4766,0.6126,-0.7466,0.2352,-0.9452,-0.8204,-0.7308,-0.7048,-0.603,-0.6584,0.1132,0.1698,-0.151,0.9056,0.9434,0.6982,0.717,0.7358,0.6792,0.6038,1,0.585,0.9812,0.9434,0.4528,0.585,0.7358,0.8868,0.2264,0.9622,0.4716,0.4716,0.566,0.566,0.6226,0.8302,0.7358,0.5094,0.5094,0.2264,0.3774,0.0378,0.0738,0.302,0.3422,0.3692,0.4362,0.463,0.4496,1,0.651,0.1946,0.4094,-0.0336,0.3422,0.5168,0.3154,0.302,0.4766,0.2214,0.396,0.5034,0.5704,0.3558,0.114,0.208,0.0738,0.2214,0.5168,-0.2348,-0.1544,-0.0068,-0.0068,-0.651,-0.1588,0.873,0.6508,0.619,0.254,0.3174,0.7142,1,0.5556,0.619,0.635,0.508,0.635,0.6666,0.4762,0.6508,0.6032,0.3174,0.2222,0.2064,0.4444,0.2698,0.3968,0.4286,0.381,0.1746,0.0158,0,0.3174,0.1428,-0.127,-0.873,-0.983,1,-1,-1,-1,-1,-0.2,-1,-1,-0.0508,-0.1016,0.2034,0.1694,0.2372,0.1356,0.3728,0.2882,0.6272,1,0.4406,0.5084,0.678,0.8644,0.322,0.017,0.1694,0.7458,0.1694,0.305,0.2882,0.2372,0.3898,0.1186,-0.0338,-0.0508,0.2034,0.2034,0.2204,0.2882,-0.2882,-0.6272,'1'
-0.2772,0.429,0.4644,0.692,0.7156,0.6824,0.6516,0.3176,0.2772,0.0876,0.0854,0.2252,0.2394,0.3388,0.327,0.4786,0.519,0.7678,0.8104,0.9906,1,0.8152,0.8128,0.8602,0.9218,0.7464,0.7346,0.4526,0.4976,0.3318,0.3554,0.2322,-0.0188,0.596,0.5708,0.729,0.6486,0.754,0.6612,0.2296,0.1166,0.1066,-0.0414,0.0966,-0.0614,0.1994,0.089,0.3526,0.4304,0.6638,0.7842,1,0.8168,0.734,0.6638,0.7466,0.6436,0.7868,0.6312,0.3878,0.325,0.3878,0.2548,0.3048,0.0382,0.695,0.6334,0.8446,0.7038,0.8622,0.6568,0.2288,-0.088,-0.0616,-0.0528,0.0498,-0.044,-0.0146,-0.0968,-0.0322,0.3842,0.5484,1,0.909,0.9266,0.8212,0.824,0.827,0.959,0.8768,0.7624,0.5308,0.4398,0.3578,0.3402,0.264,-0.024,0.5704,0.6186,0.7938,0.7938,0.8248,0.2784,0.103,-0.2268,-0.3368,-0.22,-0.055,-0.0516,-0.0652,0.0034,0.1616,0.354,0.6152,0.835,1,0.976,0.7732,0.7628,0.8248,0.8762,0.9244,0.6254,0.4708,0.409,0.3436,0.3162,0.3506,0.0066,0.4878,0.638,0.7616,1,0.532,0.0994,-0.4304,-0.5408,-0.51,-0.607,-0.6026,-0.532,-0.4304,-0.2804,-0.2274,-0.148,0.1524,0.585,0.8676,0.9206,0.691,0.6114,0.744,0.9072,0.925,0.4746,0.0376,-0.17,-0.2804,-0.2936,-0.2008,0.2082,0.5876,0.9918,0.8928,1,0.2618,0.035,-0.5546,-0.699,-0.8062,-0.7484,-0.8432,-0.7938,-0.7732,-1,-0.6618,-0.6248,-0.3402,-0.0762,0.5464,0.6742,0.3938,0.4846,0.4474,0.7114,0.5382,0.3278,-0.1422,-0.1836,-0.2454,-0.3774,-0.1506,0.068,0.4834,1,0.9728,0.2738,-0.0252,-0.0602,-0.4174,-0.6194,-0.6544,-0.8368,-0.9068,-0.9378,-0.8524,-0.8058,-0.7242,-0.6582,-0.6156,-0.1456,0.1922,0.4564,0.4058,0.3708,0.4368,0.5106,0.3786,-0.0874,-0.3748,-0.4524,-0.5262,-0.5962,-0.6156,-0.7728,0.2728,0.4546,0.3182,0.7728,0.8182,0.591,0.3182,0.2272,0.2272,-0.0454,0.1818,0.2272,0.2728,0.3636,0.3636,0.5454,0.8182,1,0.9546,0.909,0.909,0.6818,1,1,0.6818,0.3182,0.2272,0.5,0.4546,0.3636,0.2728,-0.3334,0.2632,0.2982,0.7192,0.7894,0.579,0.579,0.228,0.2982,0.1228,0.193,0.193,0.2982,0.2982,0.3684,0.4386,0.5438,0.7544,0.8948,0.9298,1,0.614,0.8246,0.6492,0.8596,0.614,0.6492,0.4736,0.4036,0.228,0.2632,0.1578,0.3334,0.5862,0.7702,0.931,1,0.4022,0.2414,-0.4942,-0.1724,-0.0804,-0.0574,-0.1034,-0.1954,-0.1034,0.0344,-0.1034,-0.2644,0.2414,0.3104,0.5172,0.6552,0.2414,0.4252,0.5862,0.954,0.908,0.4712,0.0344,0.1034,0.0804,-0.2414,-0.0574,-1,-1,-1,-1,-0.9836,-0.9814,-0.8856,-0.793,-0.7706,-0.6674,-0.5292,0.651,0.6562,0.6712,0.663,0.66,0.5172,0.1778,-0.053,-0.2002,-0.213,-0.2938,-0.645,-0.8424,-0.8998,-0.9246,-0.926,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9846,-0.9852,-0.9128,-0.8122,-0.8032,-0.5418,-0.6312,0.4926,0.3638,0.203,0.1464,0.0924,0.0076,-0.2206,-0.4278,-0.5836,-0.6048,-0.6436,-0.8058,-0.885,-0.9092,-0.9026,-0.92,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9386,-0.96,-0.84,-0.6068,-0.7534,-0.6134,-0.7334,-0.6,-0.718,-0.744,-0.734,-0.732,-0.664,-0.796,-0.8964,-0.9182,-0.971,-0.96,-0.89,-0.5968,-0.4434,-0.5768,-0.52,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4,-0.5142,1,1,-0.4286,-0.5428,1,1,-0.8,-0.8286,-0.9142,-0.7428,-0.8,-0.6,-0.4858,-0.5142,-1,-0.7714,-0.7428,-0.7428,-0.8572,-0.9428,-0.5428,-1,-1,-1,-1,-1,-1,0.9408,0.9336,0.919,0.907,0.8924,0.8774,0.8444,0.7934,0.755,0.4596,0.4732,0.504,0.4886,0.5104,0.518,0.5188,0.504,0.484,0.5442,0.6496,-0.6666,0.2236,-0.5568,-0.2658,1,0.56,0.3156,0.2584,0.2174,0.6304,0.6376,0.7102,0.6666,0.674,0.7102,0.8116,0.9928,1,0.7536,0.5218,0.8116,0.6086,0.2536,0.5072,0.7102,0.7536,0.4928,0.529,0.6956,0.6086,0.413,0.529,0.2536,0.529,0.587,0.4782,0.413,0.4492,0.2972,0.0218,-0.4286,1,0.975,0.4678,0.125,0.2428,0.1964,0.3608,0.775,0.8322,0.8572,0.7536,0.8642,0.6822,0.4428,0.4214,0.4358,0.4322,0.35,0.1072,-0.0572,-0.2536,-0.1536,-0.2892,-0.3036,-0.3358,-0.2464,-0.1892,-0.4608,-0.3714,-0.4572,-0.6642,-0.2388,0.668,0.7732,0.722,0.1714,0.0068,0.0608,0.166,0.4844,1,0.9784,0.7678,0.8272,0.6492,0.4144,0.2766,0.417,0.39,0.3064,0.2794,-0.0392,-0.131,-0.328,-0.4412,-0.4036,-0.4412,-0.3928,-0.4062,-0.4412,-0.4198,-0.471,-0.83,-1,1,-1,-1,-1,-0.4,-0.6,-1,-1,-0.3834,0.1334,0.25,0.15,-0.05,-0.15,-0.0834,0,0.4166,0.85,0.7334,1,0.9666,0.4834,0.0834,0.0334,0.1,0.2834,0.4,0.1334,0.05,0.1,0.1166,-0.3166,-0.1666,-0.05,-0.2166,-0.1166,-0.2,-0.05,-0.0834,-0.2166,'1'
-0.1456,0.8298,0.879,0.5916,0.516,-0.0396,-0.0322,-0.1228,-0.1154,-0.3044,-0.2022,-0.2666,-0.0738,-0.1228,0.104,0.0586,0.4254,0.5614,0.8148,0.8224,0.9396,0.9396,0.9168,0.9358,1,0.9508,0.5992,0.4934,0.5048,0.5614,0.467,0.4896,-0.0356,0.6548,0.6604,0.4694,0.455,0.067,0.0556,-0.0186,-0.0186,-0.127,-0.1126,-0.107,-0.0784,-0.0042,0.0386,0.1184,0.1812,0.3922,0.4608,0.8774,0.9886,0.8916,0.9886,0.8544,1,0.8716,0.9914,0.7204,0.6148,0.4522,0.5806,0.5036,0.1196,0.776,0.7488,0.531,0.4584,0.174,0.0712,-0.1074,-0.2344,-0.165,-0.304,-0.2344,-0.3736,-0.177,-0.301,-0.0892,-0.1044,0.1286,0.3102,0.5128,0.8004,1,0.894,0.7822,0.7338,0.8972,0.6248,0.1892,0.2556,0.419,0.301,0.3132,0.213,1,0.9054,0.6946,0.4494,0.1268,-0.2646,-0.2688,-0.6474,-0.5956,-0.6646,-0.7118,-0.6602,-0.686,-0.3978,-0.5312,-0.458,-0.4022,-0.1398,0.071,0.3248,0.7076,0.8064,0.6688,0.6344,0.5698,0.4666,0.0452,-0.114,0.0064,0.1698,0.1914,0.4382,1,0.8128,0.9562,0.4224,0.0638,-0.267,-0.3666,-0.773,-0.8884,-0.773,-0.494,-0.5418,-0.5258,-0.6176,-0.6574,-0.6216,-0.494,-0.1474,-0.0478,0.263,0.5418,0.9124,0.8964,0.4302,0.6734,0.6852,0.3346,0.1196,-0.0638,-0.2032,-0.2032,0.4362,0.8898,0.9824,1,-0.1102,-0.5814,-0.5154,-0.7136,-0.8106,-0.9252,-0.9472,-0.6828,-0.6872,-0.8018,-0.8194,-0.6652,-0.6476,-0.4846,-0.7578,-0.445,-0.163,0.348,0.652,0.414,0.1454,0.3832,0.489,0.4052,-0.0748,-0.3876,-0.5286,-0.5904,0.4452,0.8686,1,0.9806,-0.4648,-0.7908,-0.674,-0.567,-0.7712,-0.8004,-0.8734,-0.7226,-0.742,-0.742,-0.6546,-0.6594,-0.6448,-0.64,-0.7616,-0.4648,-0.0122,0.455,0.669,0.5086,0.275,0.4744,0.3918,-0.1144,-0.455,-0.5134,-0.7956,-0.4842,0.0526,0.7368,0.8422,0.6842,0.421,0.3158,-0.2632,0.0526,-0.2632,-0.4736,-0.2106,-0.2632,0.1578,0.1578,0.2106,0.4736,0.7894,0.8948,0.6316,0.1578,0.1578,0.6842,1,0.8948,0.1052,0.2632,-0.1052,0.2632,0.579,0.5264,0.3684,-0.1578,-0.0952,0.8572,0.9524,0.8572,0.5238,0,-0.1428,-0.2858,-0.1904,-0.238,-0.4762,-0.8096,-0.4762,-0.2858,-0.3334,0,-0.0952,0.619,0.7142,1,0.8096,0.4286,0.2858,0.9048,0.8096,0.619,0.5238,0.2858,0.3334,0.3334,0.381,0.1904,0.0088,0.6106,0.6106,0.4336,0.4336,0.1328,0.0974,0.0442,-0.0088,-0.0796,-0.115,-0.062,-0.0796,0.0266,0.0266,0.1504,0.1328,0.3274,0.3274,0.7346,0.7522,0.947,1,0.8408,0.8584,0.9292,0.9824,0.593,0.5398,0.5044,0.5752,0.5752,-1,-1,-1,-1,-1,-1,-1,-1,-0.9864,-0.9846,-0.9302,0.543,0.3336,0.2706,0.1792,0.0408,-0.1,-0.1964,-0.2792,-0.3878,-0.4786,-0.601,-0.8178,-0.9394,-0.9136,-0.9536,-0.9568,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9782,-0.9756,-0.9236,0.4344,0.8468,0.6928,0.2652,-0.0722,-0.246,-0.2966,-0.3852,-0.5016,-0.5842,-0.6862,-0.8472,-0.9324,-0.9096,-0.9284,-0.9424,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.919,-0.8934,-0.86,-0.7226,-0.4578,-0.4578,-0.6846,-0.829,-0.8934,-0.88,-0.96,-0.9646,-0.9668,-0.9756,-0.82,-0.6768,-0.66,-0.47,-0.6534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.1714,-0.2572,1,1,1,0.1428,0.1428,-0.4,-0.7142,-0.6858,-0.7428,-0.8,-0.7142,-0.7428,-0.6572,-0.6858,-0.9142,-0.8858,-0.4858,-1,-1,-1,-1,-1,-1,0.1126,0.1362,0.1288,0.1394,0.1504,0.1666,0.1818,0.2022,0.1498,-0.267,0.3684,0.4316,0.5086,0.5862,0.591,0.6678,0.766,0.8328,0.8604,0.8534,-0.7466,0.0352,-0.918,-0.6124,0.6936,0.804,0.6976,1,-0.0088,0.0266,0.4868,0.7522,0.8054,0.5576,0.947,1,0.5044,0.416,0.3452,0.8054,0.5752,0.3628,0.4336,0.5398,0.469,0.2566,0.4336,0.469,0.3452,0.3982,0.2566,0.593,0.6284,0.6638,0.115,0.1858,0.0974,0.3806,0.3806,-0.5752,0.0434,0.3218,0.4434,0.5478,0.7044,0.7914,1,0.8434,1,0.7044,0.7392,0.3914,0.2174,0.113,0.2348,0.6348,0.3392,0.4782,0.2696,0.6174,0.5478,0.3392,0.4434,0.6174,0.4956,0.2174,0.4956,0.2348,0.3914,0.3566,0.1478,-0.4956,0.1956,0.424,0.5,0.3478,0.5108,0.6848,0.7934,0.8914,0.7934,0.6956,0.9892,0.7934,0.7718,0.7934,0.6522,0.6848,0.8044,0.7934,0.75,0.7718,0.6522,0.7934,0.8044,0.7934,0.674,0.9674,1,0.7392,0.7608,0.6196,0.174,-0.4022,-0.987,1,-1,-1,-1,-1,-1,-1,1,0.077,0.1966,0.3334,0.3162,0.1624,0.1794,0.2136,0.1624,0.2308,1,0.9316,0.7606,0.8974,0.8804,0.3504,0.3334,0.641,0.7436,0.624,0.453,0.5726,0.641,0.5726,0.1452,0.1112,0.1966,0.265,0.0086,0.0256,-0.1624,-0.077,-0.1794,'2'
0.1384,0.9654,0.9688,0.7854,0.7162,0.1418,0.1142,-0.2976,-0.2838,-0.3184,-0.4014,-0.308,-0.263,-0.225,-0.1454,0.0276,0.1004,0.4532,0.5952,1,0.9274,0.6506,0.6782,0.7648,0.8132,0.7404,0.7474,0.308,0.3876,0.1522,0.2664,0.1972,0.1576,0.838,0.8086,0.7674,0.6908,0.1724,0.078,-0.1724,-0.2902,-0.3136,-0.4522,-0.1782,-0.296,-0.0986,-0.2488,0.028,-0.1252,0.184,0.3932,0.6436,0.6524,0.9086,0.7142,0.6436,0.7938,1,0.7908,0.5228,0.2488,0.3402,0.1488,0.3136,0.0802,0.7352,0.7058,0.7006,0.6176,0.1122,0.0026,-0.2434,-0.3716,-0.3556,-0.5134,-0.3502,-0.3878,-0.1658,-0.3236,-0.1096,-0.1632,0.0454,0.2406,0.4252,0.8236,1,0.762,0.6604,0.6658,0.7994,0.5214,0.5828,0.3074,0.3984,0.23,0.3396,0.128,0.8262,0.7598,0.9242,0.7536,0.1374,-0.169,-0.1154,-0.4028,-0.2702,-0.4914,-0.3996,-0.3112,-0.286,-0.3176,-0.3428,-0.2038,-0.109,0.248,0.3712,0.7536,0.8958,1,0.8926,0.7914,0.8262,0.9052,0.7756,0.4944,0.3996,0.3618,0.2954,-0.0286,0.5428,0.8214,1,0.4464,-0.2572,-0.5036,-0.6392,-0.6214,-0.775,-0.7714,-0.7108,-0.7642,-0.7536,-0.8178,-0.7036,-0.5392,-0.4358,-0.3464,-0.0678,0.3714,0.6,0.6714,0.6072,0.5036,0.6286,0.7286,0.5178,0.2178,0.0358,-0.0392,0.025,0.0164,0.4164,0.9804,1,0,-0.3902,-0.4492,-0.4524,-0.6066,-0.6492,-0.8786,-0.7968,-0.7836,-0.6688,-0.7016,-0.6984,-0.6,-0.564,-0.3476,-0.2262,-0.0196,0.3934,0.3476,0.4098,0.3476,0.3902,0.5442,0.2622,0.0328,-0.1574,-0.3016,-0.246,0.0244,0.5384,0.9136,1,0.1294,-0.4446,-0.576,-0.6322,-0.666,-0.8462,-0.985,-0.7674,-0.8162,-0.7298,-0.8348,-0.8162,-0.7748,-0.6136,-0.5196,-0.347,0.0018,0.4146,0.5122,0.2682,0.2008,0.3134,0.2346,-0.0582,-0.2232,-0.3658,-0.516,-0.5872,0.3514,1,0.946,0.7298,0.1352,0.1352,0.1352,-0.1352,-0.081,-0.081,-0.2972,-0.3514,-0.081,-0.1892,-0.5136,-0.027,0.5136,0.7298,0.7838,0.7838,0.1352,0.4594,0.7838,0.6756,0.4594,0.4594,0.4054,0.1352,-0.081,-0.1352,0.3514,0.4054,0.2244,1,1,0.6734,0.7552,0.3062,0.3062,-0.347,-0.1836,-0.0612,-0.1836,-0.4286,-0.0612,-0.1428,0.0204,0.0204,0.2654,0.3878,0.9184,0.9592,0.796,0.7552,0.7142,0.7142,0.796,0.7552,0.551,0.5102,0.551,0.5102,0.4694,0.4694,0.1398,0.7634,0.742,0.785,0.699,0.2044,0.0322,-0.1182,-0.2688,-0.2474,-0.4194,-0.2688,-0.3334,-0.1612,-0.3118,-0.1398,-0.1182,0.0322,0.3764,0.4838,0.914,1,0.785,0.828,0.8064,0.8924,0.7634,0.7634,0.5268,0.5054,0.3978,0.3548,-1,-1,-1,-0.979,-0.8994,-0.866,-0.8166,-0.7906,-0.7956,-0.891,-0.9078,0.6732,0.7646,0.6414,0.5468,0.5082,0.509,0.5886,0.597,0.4302,0.1052,-0.2954,-0.829,-0.9564,-0.9556,-0.9572,-0.9548,-0.953,-0.9556,-0.9288,-0.9674,-0.9622,-0.9556,-1,-1,-1,-0.966,-0.8992,-0.8714,-0.8304,-0.8096,-0.8172,-0.891,-0.8688,0.6804,0.8562,0.7298,0.6922,0.6734,0.7472,0.7604,0.6172,0.4026,0.0928,-0.3018,-0.809,-0.9118,-0.9048,-0.8666,-0.8902,-0.9166,-0.9284,-0.9104,-0.9444,-0.943,-0.9424,-1,-1,-1,-0.94,-0.9468,-0.9468,-0.95,-0.9734,-0.9768,-0.9334,-0.8168,-0.904,-0.958,-0.97,-0.902,-0.876,-0.872,-0.856,-0.912,-0.912,-0.912,-0.926,-0.5434,-0.3434,-0.4,-0.2834,-0.58,-0.53,-0.64,-0.7334,-0.7034,-0.8768,-0.8634,-1,-1,-1,-0.7714,-0.8,-0.9428,-0.9714,-1,-0.9714,-0.2,1,1,-0.7428,-1,-1,-0.7714,-0.8858,-0.8858,-0.8,-0.7714,-0.8572,-0.2858,-0.1714,-0.8,-0.9142,-0.9142,-0.7428,-0.8,-0.9428,-0.8572,-1,-1,-0.5142,0.0398,0.049,0.0632,0.0712,0.0886,0.0978,0.0994,0.1062,0.1196,-0.1172,0.6508,0.6422,0.6506,0.691,0.7104,0.7776,0.8,0.839,0.9318,0.9772,-0.76,0.1764,-0.8556,-0.495,0.8416,0.9966,0.9598,0.6084,0.241,0.9668,0.435,1,0.7728,0.3296,0.6066,0.939,0.5678,0.6952,0.7618,0.8006,0.8892,0.4238,0.6732,0.4404,0.795,0.7894,0.4128,0.324,0.7674,0.6344,0.4792,0.7286,0.4904,0.3518,0.3574,0.3462,0.3186,0.1912,0.0748,-0.385,0.7936,1,0.2812,0.0926,-0.0712,-0.0854,0.146,-0.0036,-0.032,-0.0072,-0.0356,0.0072,0.0142,-0.1104,-0.153,-0.064,-0.1316,-0.1566,-0.2314,-0.089,0.0284,0.0392,-0.057,-0.1246,-0.1744,-0.2812,-0.3986,-0.4662,-0.3132,-0.2526,-0.4092,-0.5444,0.9042,1,0.4156,0.5114,0.4978,0.1506,0.347,0.5526,0.6758,0.5252,0.6438,0.7946,0.6028,0.347,0.3378,0.3242,0.3106,0.1096,0.2192,0.2146,0.4064,0.347,0.2648,0.2512,0.1964,0.3242,0.1278,0.1826,0.041,0.137,-0.2284,-0.4978,-0.9958,1,-1,-1,-1,1,-0.6,-1,-1,-0.452,0.0684,0.1232,-0.1232,-0.1644,-0.1506,0.1506,0.0684,0.2602,0.822,0.7672,0.9178,1,0.6164,0.0548,0.1644,0.2602,0.3288,0.1918,0.2602,0.0822,-0.2054,-0.0684,0.0822,0.1506,0.137,-0.0548,-0.0548,-0.1644,-0.137,-0.2602,-0.3972,'2'
-0.1888,0.903,1,0.6582,0.7398,0.1174,0.3164,-0.1378,-0.0306,-0.296,-0.2142,-0.2552,-0.1276,-0.1786,-0.051,-0.2244,0.4642,0.6072,0.8316,0.852,0.4336,0.3674,0.4642,0.6684,0.5256,0.3062,-0.1122,-0.2704,-0.4744,-0.4388,-0.5664,-0.3928,0.0444,0.826,0.826,0.8,0.7926,0.3704,0.3704,0.0888,0.1074,-0.0852,-0.0518,-0.0518,0.0074,-0.0222,0.0482,0.1556,0.2408,0.4222,0.5518,0.8482,1,0.7222,0.6408,0.4926,0.674,0.7074,0.4962,0.2852,0.1666,0.0038,0.0852,0.0556,0.2552,0.981,0.9508,0.9546,0.8564,0.3876,0.24,-0.017,-0.1682,-0.3648,-0.501,-0.3762,-0.3914,-0.2476,-0.172,-0.0056,-0.017,0.1494,0.3914,0.5312,0.9282,1,0.6144,0.7014,0.5652,0.7694,0.6636,0.3724,0.2136,0.1456,0.2022,0.2362,0.27,1,0.903,0.9874,0.7764,0.1308,-0.2152,-0.2784,-0.6666,-0.5864,-0.979,-0.6286,-0.2828,-0.3418,-0.3164,-0.4262,-0.211,-0.2068,-0.0084,0.27,0.6244,0.751,0.7046,0.3376,0.5528,0.5992,0.633,0.27,0.2574,0.1984,0.0802,0.0338,0.276,0.8692,0.7996,1,0.6606,-0.0798,-0.4396,-0.4356,-0.5992,-0.7138,-0.7382,-0.411,-0.317,-0.407,-0.3784,-0.5052,-0.546,-0.3374,-0.1492,0.1698,0.4764,0.587,0.5256,0.407,0.5664,0.591,0.3946,-0.137,-0.2516,-0.1288,-0.1492,0.0062,0.1542,0.7042,0.8208,1,0.5042,-0.2958,-0.5958,-0.6916,-0.6374,-0.85,-0.7584,-0.5874,-0.6124,-0.7416,-0.6458,-0.65,-0.725,-0.75,-0.5084,-0.5042,0.1334,0.3542,0.3958,0.1542,0.2374,0.3708,0.2374,-0.0834,-0.2792,-0.2458,-0.2084,-0.225,0.0326,0.6652,0.814,1,0.4652,-0.3162,-0.6046,-0.6466,-0.6512,-0.9256,-0.9256,-0.6604,-0.4884,-0.8326,-0.693,-0.7442,-0.6744,-0.7162,-0.4466,-0.2884,0.1348,0.2046,0.2232,-0.0418,0.1442,0.1488,-0.0094,-0.4326,-0.5162,-0.614,-0.4744,-0.5024,0.2196,0.8048,0.9024,0.7074,0.4634,0.122,0.122,0.0732,-0.2196,0.0244,0.0244,0.1708,-0.1708,0.1708,0.122,-0.2196,0.2196,1,1,0.6098,0.3658,0.1708,0.6098,0.6586,0.5122,0.2196,0.317,0.4146,-0.122,0.122,-0.2682,0.2682,-0.394,0.9394,1,0.5152,0.7576,0.2728,0.2728,-0.0304,-0.0304,-0.2728,-0.2122,-0.3334,-0.2728,-0.394,-0.2122,-0.394,0.3334,0.5152,0.394,0.1516,-0.091,-0.1516,-1,0.4546,0.394,-0.2122,-0.7576,-0.5152,-0.4546,-0.6364,-0.9394,-1,0.0976,0.878,0.8292,0.8292,0.756,0.317,0.2926,-0.0488,-0.0732,-0.2682,-0.317,-0.1952,-0.2682,-0.244,-0.3414,-0.0488,-0.2196,0.1708,0.1952,0.8292,0.7804,0.7318,0.6342,0.6342,0.5122,1,0.9024,0.6098,0.5366,0.2926,0.317,0.2196,-0.9126,-0.9272,-0.9458,-0.9636,-0.9646,-0.9688,-0.9688,-0.9574,-0.9552,-0.9448,-0.897,0.7014,0.9168,0.7336,0.5464,0.3986,0.3028,0.2238,0.1248,0.0146,-0.1196,-0.3402,-0.7524,-0.9188,-0.947,-0.9406,-0.9334,-1,-1,-1,-1,-1,-1,-0.882,-0.7282,-0.4588,-0.1256,0.539,0.816,1,1,1,0.7948,-0.408,0.4982,0.9,0.7176,0.5034,0.3498,0.159,0.0802,0.0152,-0.0954,-0.2272,-0.433,-0.7456,-0.8864,-0.8956,-0.8804,-0.8932,-1,-1,-1,-1,-1,-1,-0.46,0.7066,1,1,1,1,1,1,1,1,0.8866,-0.6876,-0.88,-0.8676,-0.8776,-0.94,-0.9576,-0.9626,-0.985,-0.9426,-0.91,-0.9268,-0.76,-0.6468,-0.4968,-0.37,-0.6034,-1,-1,-1,-1,-1,-1,1,1,0.7428,-0.5428,-0.6,-0.5714,-0.6572,-0.2286,-0.4572,0.5428,1,1,0,-0.5142,-0.6858,-0.8,-0.8,-0.9428,-0.9428,-0.8858,-0.9428,-0.7428,-0.6,-0.8572,-0.7428,-0.8858,-0.7142,-1,-1,-1,-1,-1,-1,0.2294,0.2556,0.2924,0.3008,0.2948,0.3162,0.3406,0.3346,0.2466,-0.111,-0.057,-0.06,-0.0424,-0.0208,0.0176,0.118,0.242,0.423,0.5296,0.6188,-0.7466,-0.0706,-0.433,-0.3974,0.6844,0.813,0.9728,0.5,-0.6776,-0.6056,-0.4814,-0.3006,-0.207,-0.244,-0.1656,-0.0326,0.159,0.098,0.1568,0.196,0.1982,0.244,0.305,0.2288,0.3442,0.2766,0.4336,0.4422,0.2942,0.3944,0.6078,0.682,0.8672,0.9084,0.7822,0.8258,1,0.8148,0.3594,0.0762,-0.8674,-0.7198,-0.6604,-0.473,-0.4822,-0.3618,-0.2322,-0.1896,-0.0572,-0.0328,0.0922,0.1912,0.2368,0.1972,0.1714,0.176,0.217,0.2444,0.3588,0.4608,0.3588,0.4578,0.5658,0.8096,0.9848,1,0.872,0.8218,0.939,0.9878,0.7136,0.5932,-0.9762,-0.6602,-0.6738,-0.475,-0.5124,-0.4172,-0.3678,-0.2914,-0.0264,-0.091,0.0332,0.1554,0.1962,0.113,0.0672,0.0706,0.0638,0.108,0.3882,0.429,0.2234,0.2524,0.3474,0.5174,0.6584,0.6942,0.7162,0.8572,1,0.9984,0.6244,0.2388,-0.7532,-1,1,-1,-1,-1,-1,1,-1,-0.4736,-0.1278,0.0376,0.2482,0.1428,-0.0526,0.1578,0.0676,0.4286,0.8796,0.5188,0.9548,1,0.4286,-0.0076,0.2632,0.2932,0.1578,0.2782,0.4286,0.2782,-0.0076,0.0076,-0.0376,-0.1278,0.0076,-0.0076,-0.1128,-0.0376,-0.1128,-0.188,-0.3082,'3'
0.2138,0.977,1,0.9504,0.9312,0.3854,0.4008,0.2138,0.3168,0.168,0.1908,0.2214,0.2938,0.2786,0.3664,0.5,0.668,0.8054,0.9618,0.7786,0.6374,0.4236,0.5572,0.752,0.916,0.7252,0.397,0.1604,0.1642,0.0648,-0.0764,-0.019,0.057,0.8272,0.8192,0.9842,0.945,0.3516,0.2928,0.218,0.1394,0.0766,0.0058,0.1828,0.1278,0.167,0.1238,0.2928,0.2298,0.607,0.556,0.9882,1,0.5992,0.56,0.7524,0.7132,0.662,0.6778,0.1984,0.1944,-0.0766,-0.163,0.0334,0.155,0.8552,0.8148,1,0.8832,0.2838,0.1146,0.0946,-0.0824,-0.1228,-0.32,-0.1388,-0.3158,-0.171,-0.2636,-0.151,-0.1026,-0.006,0.3562,0.489,0.839,0.9638,0.7546,0.7666,0.8792,0.8792,0.666,0.5774,0.3078,0.2152,0.1188,0.0182,0.1226,0.8254,0.7464,0.9792,0.763,0.0894,-0.21,-0.0936,-0.3306,-0.2598,-0.4594,-0.4928,-0.4386,-0.5218,-0.6174,-0.6964,-0.5176,-0.1434,0.0396,0.5884,0.7506,0.8296,0.9418,0.867,0.896,1,0.9626,0.3306,0.2308,0.0936,-0.027,-0.002,0.0424,0.6972,0.7728,1,0.608,-0.265,-0.314,-0.372,-0.5144,-0.6614,-0.8976,-0.7594,-0.6838,-0.8352,-0.853,-0.7594,-0.5902,-0.2562,0.0602,0.2384,0.8396,0.902,0.8218,0.7282,0.8976,0.7684,0.6792,0.1626,0.0378,-0.0958,-0.1938,-0.2428,0.0114,0.6414,0.8114,1,0.4482,-0.1264,-0.3104,-0.4666,-0.4804,-0.8252,-0.7104,-0.6322,-0.6966,-0.8712,-0.8712,-0.7288,-0.5724,-0.5494,-0.2092,0.1264,0.439,0.7518,0.8666,0.738,0.7104,0.8482,0.6736,0.1862,-0.0942,0.016,-0.1264,-0.223,0.0404,0.8168,0.8598,1,0.4502,-0.1374,-0.4016,-0.4932,-0.5472,-0.6334,-0.5526,-0.6388,-0.8274,-0.7142,-0.6604,-0.6442,-0.5902,-0.5634,-0.2776,0.1266,0.4232,0.806,0.8222,0.5526,0.4286,0.655,0.3316,-0.132,-0.3746,-0.4286,-0.3316,-0.1212,0.1,0.9,0.95,0.8,0.5,0.2,-0.1,-0.05,-0.1,-0.15,-0.1,-0.15,0.15,0.1,-0.05,0,0.7,0.6,0.6,0.6,0.35,0.05,0.4,0.45,1,0.85,0.75,0.2,0.2,0.15,0.15,0.3,0.3334,1,1,1,1,0.5438,0.4736,0.3334,0.4386,0.3334,0.4036,0.2982,0.4386,0.4386,0.5088,0.5438,0.8948,0.8948,0.7544,0.6492,0.4036,0.4736,0.6842,0.7192,0.614,0.6842,0.4036,0.3684,0.193,0.2982,0.2632,0.2632,0.0886,0.8482,0.7974,1,0.8988,0.2406,0.1392,0.0886,-0.038,-0.114,-0.2658,-0.0886,-0.2912,-0.0632,-0.2912,-0.0886,-0.0632,0.1392,0.4684,0.6708,0.6962,0.8228,0.519,0.6962,0.7216,0.924,0.4684,0.443,0.1392,0.114,0.0126,0.0886,-0.9238,-0.9614,-0.9624,-0.9632,-0.951,-0.969,-0.9662,-0.9624,-0.9604,-0.9454,-0.8532,0.5736,0.9774,0.8682,0.7308,0.537,0.4052,0.3392,0.1878,-0.0212,-0.264,-0.5162,-0.729,-0.9162,-0.9756,-0.9632,-1,-1,-1,-1,-1,-1,-1,-0.823,-0.6514,-0.4676,-0.1872,1,1,1,0.7756,0.8298,1,-0.271,0.4494,0.9696,0.8622,0.6534,0.4378,0.3278,0.277,0.1074,-0.0932,-0.3108,-0.5696,-0.771,-0.902,-0.9392,-0.923,-1,-1,-1,-1,-1,-1,-1,0.2866,1,1,1,1,1,1,1,1,1,1,-0.6576,-0.87,-0.76,-0.8676,-0.97,-0.96,-0.965,-0.8826,-0.85,-0.9076,-0.91,-0.9534,-0.6,-0.5668,-0.39,-1,-1,-1,-1,-1,-1,-1,1,1,-0.4572,-0.0858,-0.0572,-0.5428,-0.6572,-0.9714,-0.5428,0.5428,1,1,0.0572,-0.4858,-0.6858,-0.8858,-0.8,-0.8858,-0.8572,-0.9428,-0.8,0.4,-0.2858,-0.5428,-0.9142,-0.8286,-1,-1,-1,-1,-1,-1,-1,0.3028,0.3216,0.346,0.3522,0.3654,0.3666,0.365,0.3612,0.3094,0.083,0.1018,0.0616,0.0088,0.0058,0.0524,0.1244,0.2272,0.38,0.604,0.7294,-0.7466,-0.0824,-0.3628,-0.3858,0.5284,0.8412,0.9548,0.4084,-0.9356,-0.7586,-0.7678,-0.6068,-0.4552,-0.3356,-0.2068,-0.161,0.0804,0.0598,0.1058,0.062,0.2,0.154,0.1632,0.0874,0.0736,0.115,0.4436,0.4966,0.262,0.4436,0.5678,0.8092,1,0.9058,0.5724,0.7356,0.7632,0.6736,0.3426,0.1448,-0.9712,-0.8822,-0.8002,-0.6078,-0.5876,-0.3994,-0.3692,-0.2212,-0.194,-0.1278,-0.1236,-0.0058,-0.0014,0.066,0.115,0.0374,0.0144,0.1178,0.2758,0.2844,0.3002,0.3492,0.4166,0.5676,0.7802,0.829,0.5992,0.6466,0.8348,1,0.819,0.556,-0.9564,-0.7572,-0.6634,-0.5276,-0.5126,-0.459,-0.4406,-0.3216,-0.0838,0.0168,-0.0016,0.1474,0.1976,0.1558,0.181,0.2044,0.263,0.1792,0.412,0.5076,0.3752,0.4372,0.5528,0.6734,0.9128,0.9112,0.7102,0.8006,0.9296,1,0.8258,0.3802,-0.8878,-1,1,-1,-1,-1,-0.6,1,-1,-0.2728,0.1818,0.106,0.3334,-0.0304,0.0758,0.197,0.0606,0.1666,0.5,1,0.8334,0.9696,0.3484,0.0758,0,0.2272,0.4848,0.2878,0.3484,0.106,0.1364,0.1364,-0.0304,0.0758,0.0606,0.0152,-0.0758,0.0454,-0.2272,-0.3636,-0.4394,'3'
-0.1196,0.6356,0.613,0.4536,0.37,0.0018,-0.1196,-0.2676,-0.3966,-0.3206,-0.4762,-0.408,-0.4686,-0.241,-0.1726,0.0208,0.0892,0.2866,0.8672,1,0.7496,0.5978,0.5484,0.6964,0.8178,0.924,0.4876,0.1954,0.1574,0.3056,0.1386,0.2676,-0.0266,0.6112,0.5714,0.6212,0.5182,0.1894,0.0398,-0.2824,-0.4818,-0.2358,-0.4486,-0.2758,-0.3588,-0.2192,-0.0798,0.0532,0.0232,0.1296,0.578,0.6578,0.9402,1,0.6346,0.671,0.9202,0.9468,0.3954,0.2624,0.0964,0.073,-0.1328,-0.1794,0.2024,0.96,0.8838,0.9078,0.7074,0.2906,0.002,-0.4068,-0.455,-0.3426,-0.471,-0.4028,-0.487,-0.475,-0.1544,-0.2104,-0.1302,-0.1824,0.2024,0.5992,1,1,0.7474,0.487,0.6714,0.7516,0.6032,0.2546,0.2344,0.0702,0.03,0.1062,0.3118,1,0.8322,0.9784,0.5742,0.0796,-0.471,-0.6344,-0.828,-0.901,-0.7806,-0.5656,-0.5312,-0.7334,-0.699,-0.4624,-0.4538,-0.3548,-0.0194,0.2086,0.587,0.8022,0.9096,0.8322,0.914,0.8666,0.3936,0.3462,-0.0752,-0.1828,-0.2904,-0.1312,0.367,0.879,0.887,1,0.2944,-0.2258,-0.4436,-0.633,-0.7862,-0.879,-0.7944,-0.625,-0.7178,-0.6976,-0.3428,-0.5202,-0.3952,-0.512,-0.3104,0.1008,0.5404,0.7298,0.6654,0.3186,0.4638,0.5404,0.4396,0.1008,-0.0928,-0.2984,-0.4072,-0.2258,0.2824,0.699,0.9712,1,-0.0928,-0.4886,-0.4392,-0.5092,-0.7114,-0.9092,-0.8846,-0.5958,-0.6248,-0.8846,-0.7938,-0.7114,-0.5712,-0.5176,-0.3938,-0.4062,0.0762,0.5176,0.5876,0.4886,0.5052,0.4226,0.2372,-0.1216,-0.3278,-0.369,-0.5958,-0.6948,0.1042,0.4888,1,1,-0.1616,-0.4684,-0.4764,-0.5256,-0.5256,-0.5992,-0.8936,-0.7014,-0.7792,-0.7792,-0.591,-0.6974,-0.6932,-0.5378,-0.4642,-0.0512,0.3866,0.632,0.6238,0.6482,0.7586,0.542,0.1084,-0.4438,-0.4764,-0.4438,-0.6156,-0.5542,-0.2,0.9428,1,0.4286,0.4286,-0.0858,-0.1428,-0.0858,-0.2572,-0.4286,-0.7142,-0.8286,-0.2,-0.1428,-0.2572,-0.1428,0.2,0.3142,0.7142,0.7714,0.6,0.3714,0.5428,0.6572,0.7142,0.7714,0.2,-0.2,-0.3714,0.4286,0.3142,0.4286,-0.1708,0.6098,0.561,0.4146,0.317,-0.0244,-0.0732,-0.317,-0.3658,-0.317,-0.4146,-0.4634,-0.6586,-0.317,-0.122,0.0732,0.0732,0.1708,0.8048,1,0.7074,0.6098,0.561,0.756,0.8048,0.9024,0.4146,0.122,0.122,0.1708,-0.0732,0.0732,0,0.5958,0.5532,0.5532,0.4256,0.1064,-0.0852,-0.3192,-0.4468,-0.2978,-0.4042,-0.2766,-0.468,-0.4042,-0.1702,-0.1702,-0.0852,-0.1064,0.2128,0.4256,1,0.9574,0.468,0.3618,0.4894,0.383,0.2554,0.0212,-0.149,-0.383,-0.1702,-0.4042,-1,-1,-1,-1,-1,-1,-1,-1,-0.9684,-0.9828,-0.2852,0.574,0.8882,0.9786,0.9004,0.6532,0.4124,0.275,0.1612,0.0726,-0.0432,-0.208,-0.5964,-0.935,-0.9604,-0.9462,-0.939,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9648,-0.9712,0.4654,0.387,0.9216,0.8544,0.7656,0.3186,0.1292,0.0032,-0.113,-0.1762,-0.2892,-0.3864,-0.7004,-0.8792,-0.9092,-0.9138,-0.9034,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8934,-0.9334,-0.15,-0.715,-0.61,-0.7276,-0.7268,-0.8512,-0.88,-0.9,-0.949,-0.9178,-0.9068,-0.9046,-0.8068,-0.1734,-0.3334,-0.44,-0.32,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,1,1,1,0.5428,-0.5714,-0.5714,-0.7142,-0.6,-0.8,-0.7428,-0.8286,-0.8858,-0.6858,1,0.8572,-0.5714,-0.7714,-0.8858,-1,-1,-1,-1,-1,-1,-0.0468,-0.011,0.0384,0.0562,0.0874,0.1036,0.1326,0.1294,0.0118,-0.3464,0.5622,0.5624,0.5936,0.6254,0.6388,0.6566,0.6892,0.7124,0.8062,0.8006,-0.7066,0.0118,0.7514,0.004,0.3186,0.6802,0.9524,1,-0.01,0.5248,0.6634,0.703,0.7228,0.6634,0.5644,0.5446,0.6436,0.8416,0.6832,0.604,0.8812,0.6832,0.5446,0.5644,0.6634,0.8416,0.9406,1,0.7624,0.7426,0.8812,0.7426,0.6832,0.7426,0.7624,0.7624,0.6832,0.6634,0.1486,-0.1684,-0.1682,-0.062,-0.3806,-0.115,-0.0266,-0.1504,-0.3274,-0.0442,0.1858,0.3628,0.0088,-0.2036,0.4514,0.1858,0.2036,0.2744,0.2744,0.6284,0.6638,0.8408,1,0.947,0.6814,0.6284,0.416,0.3452,0.6106,0.593,0.4336,0.1682,0.1858,-0.3806,0.1,0.26,-0.14,-0.38,-0.36,-0.26,-0.38,-0.24,0.18,0.18,-0.06,0.08,0.3,0.18,0.44,0.44,0.38,0.96,1,0.82,0.88,0.88,0.58,0.46,0.66,0.5,0.4,0.32,0.14,0.2,0.08,0.04,1,-1,-1,1,-1,-1,-0.8,-0.8,-1,-0.239,-0.062,-0.1504,-0.0974,-0.2212,-0.0088,0.1328,-0.0974,-0.4514,0.292,1,0.9116,0.6638,0.8054,0.7168,0.7876,0.4336,0.6106,0.646,0.7876,0.5222,0.4514,0.6638,0.6284,0.416,0.4336,0.416,0.1858,0.0796,-0.3098,-0.2212,-0.7346,'4'
0.009,0.8336,0.7866,0.7576,0.6348,0.1538,-0.0162,-0.2008,-0.396,-0.2442,-0.5046,-0.4142,-0.396,-0.2296,-0.2116,-0.0524,0.0596,0.1972,0.8734,0.9928,0.6492,0.6962,0.6312,0.7396,1,0.9494,0.3056,0.2406,0.1392,0.0742,0.1718,0.1284,0.219,0.9694,0.9456,1,0.8778,0.3922,0.2258,-0.0118,-0.2122,-0.1816,-0.3514,-0.141,-0.3582,-0.1748,-0.2292,-0.0662,-0.056,0.073,0.2972,0.4092,0.7996,0.922,0.5994,0.4534,0.6536,0.6298,0.7046,0.3956,0.2666,0.2326,0.2938,0.2326,0.2252,0.9928,0.9244,1,0.8414,0.2756,0.0234,-0.1172,-0.4486,-0.3586,-0.4882,-0.3766,-0.373,-0.3046,-0.3694,-0.3586,-0.2972,-0.3046,0.1172,0.0198,0.4702,0.5892,0.4414,0.2684,0.3262,0.5496,0.6216,0.2396,0.236,0.1856,0.2684,0.254,0.1852,0.9296,0.8148,1,0.7186,0.0518,-0.4038,-0.3186,-0.6334,-0.6408,-0.7112,-0.8074,-0.5926,-0.737,-0.4926,-0.526,-0.4112,-0.2704,-0.2148,-0.3038,0.0666,0.463,0.326,0.126,0.1852,0.5962,0.537,0.3926,0.2334,0.2444,0.0962,0.0778,0.0862,0.7042,0.7902,1,0.4982,-0.1198,-0.5094,-0.5956,-0.7828,-0.9138,-0.8314,-0.8052,-0.779,-0.7716,-0.8802,-0.6368,-0.5992,-0.5506,-0.2922,-0.3484,0.0524,0.2696,0.2922,0.075,0.1048,0.3708,0.4456,0.161,0.146,-0.03,-0.191,-0.06,0.0758,0.5452,0.9494,1,0.0398,-0.3862,-0.6462,-0.6896,-0.7328,-0.8376,-0.8014,-0.7546,-0.7978,-0.7328,-0.7364,-0.6968,-0.6282,-0.8232,-0.5848,-0.4874,-0.1914,0.1228,0.1156,0.0506,0.13,0.4658,0.462,0.166,-0.0108,-0.0252,0.0144,0.0108,0.0946,0.5416,0.9924,1,-0.0606,-0.341,-0.5758,-0.5682,-0.7196,-0.7916,-0.909,-0.6326,-0.644,-0.697,-0.7008,-0.6704,-0.6666,-0.534,-0.4508,-0.178,0.1478,0.375,0.6478,0.5416,0.481,0.8674,0.7916,0.2576,0.0492,0.034,-0.1022,-0.1022,0.2682,0.8536,0.8536,0.6586,0.561,0.0732,-0.0244,-0.122,-0.317,-0.2196,-0.6098,-0.6586,-0.4634,-0.1708,-0.0732,-0.0244,-0.122,0.1708,0.8048,0.8048,0.3658,0.2196,0.3658,0.8048,0.7074,0.0732,0.2682,-0.0244,0.2682,0.5122,0.8536,1,0.0526,0.7368,0.7368,0.6316,0.5264,0.1578,-0.1578,-0.1578,-0.421,-0.2632,-0.6316,-0.421,-0.579,-0.2106,-0.1052,0,0.2106,0.2632,0.8422,1,0.6842,0.4736,0.579,0.579,0.8948,0.8948,0.1578,0.1578,0.2106,0.1052,0.0526,0.1052,0.1764,0.9706,0.8824,1,0.8236,0.1764,0,-0.2648,-0.6176,-0.5,-0.5588,-0.4706,-0.3824,-0.3236,-0.4412,-0.5294,-0.3236,-0.2648,0.0882,0.0588,0.5294,0.5882,0.5294,0.147,0.0882,0.147,0.647,0.4706,0.2648,0.2352,0.2648,0.2942,-1,-1,-1,-1,-1,-1,-1,-0.983,-0.9768,-0.9358,-0.2852,0.614,0.9448,0.984,0.8958,0.704,0.5812,0.5106,0.443,0.2406,-0.0018,-0.3574,-0.6122,-0.8458,-0.9616,-0.9536,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9686,-0.9632,-0.8866,0.3114,0.6016,0.928,0.9506,0.8392,0.5942,0.4468,0.3934,0.332,0.1112,-0.0978,-0.3614,-0.6336,-0.8392,-0.926,-0.8912,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.92,-0.8368,0.1632,-0.8246,-0.85,-0.916,-0.926,-0.932,-0.934,-0.976,-0.852,-0.912,-0.914,-0.886,-0.9534,-0.5668,-0.44,-0.4068,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7142,-0.7428,1,1,1,-0.4858,-0.7428,-0.9714,-0.9142,-0.9714,-0.9428,-0.9142,-0.9142,-0.9142,-0.4572,-0.3428,-0.2858,-0.8286,-0.7428,-1,-1,-1,-1,-1,-1,-1,-0.0348,0.0082,0.0284,0.061,0.09,0.1086,0.1308,0.1454,0.0948,-0.1832,0.604,0.6168,0.66,0.6918,0.7066,0.6968,0.7014,0.7984,0.827,0.9118,-0.7334,0.1648,0.4048,0.4902,0.4648,0.701,0.7864,1,-0.186,0.3024,0.3954,0.5348,0.6046,0.6512,0.6046,0.4418,0.093,0.3256,0.5814,0.6744,0.7674,0.5814,0.5582,0.3256,0.8372,0.814,0.8604,1,0.9302,1,0.6512,0.4652,0.6512,0.814,0.7906,0.628,0.4652,0.4186,-0.186,-0.3256,-0.4564,0.1844,0.1844,-0.165,-0.2816,-0.2234,-0.301,-0.068,0.0292,0.2622,0.2234,0.3592,0.3204,-0.165,0.4564,0.398,0.3592,0.767,0.903,0.9612,1,0.903,0.9418,0.8058,0.67,0.5728,0.6894,0.6894,0.631,0.5728,0.4368,-0.2816,0.2154,0.3702,0.0386,-0.3812,-0.2928,-0.2818,-0.1492,-0.0166,0.2266,0.5248,0.2376,0.4918,0.6022,0.326,0.4034,0.4918,0.768,0.978,1,0.9006,0.8454,0.79,0.8674,0.5802,0.768,0.4918,0.4586,0.4476,0.5028,0.5138,0.326,0.2044,1,-1,-1,1,-1,-1,-0.4,-0.7666,-1,-0.3914,0,0.0434,0.0434,-0.029,-0.0144,-0.3334,-0.1594,-0.029,0.145,0.971,1,0.8986,0.8116,0,-0.058,0.2754,0.2318,0.2464,0.2898,0.2608,0.0144,0.029,-0.2608,-0.0434,-0.116,-0.3188,-0.2318,0.058,-0.1884,-0.3768,-0.6812,'4'
-0.6012,0.5558,0.7708,0.536,0.3352,-0.01,-0.1486,-0.3154,-0.3268,-0.3126,-0.3804,-0.2616,-0.2192,-0.2278,-0.2306,-0.1344,-0.0496,-0.0664,0.3324,0.3408,0.8416,1,0.8444,0.7172,0.6322,0.8416,0.9264,0.7058,0.6804,0.4794,0.5162,0.471,-0.0378,0.7706,0.8018,0.601,0.6454,0.1916,0.2724,-0.1108,0.004,-0.2986,-0.1316,-0.2646,-0.017,-0.2126,-0.0508,-0.2046,0.202,0.116,0.502,0.468,0.8956,0.9296,0.914,1,0.695,0.7758,0.7862,0.9818,0.7574,0.661,0.5046,0.5358,0.127,0.8896,0.9006,0.7514,0.7404,0.3454,0.3314,-0.0386,-0.0248,-0.1078,-0.0828,-0.1298,-0.0774,-0.058,0.0166,0.1298,0.2182,0.1988,0.3122,0.536,0.6686,0.837,1,0.7818,0.6022,0.5552,0.71,0.685,0.6878,0.453,0.3536,0.3896,0.228,0.9866,0.9334,1,0.8602,0.3744,0.1648,-0.1946,-0.391,-0.2146,-0.5508,-0.441,-0.2114,-0.1082,-0.0782,-0.0184,-0.0482,-0.005,0.2512,0.3178,0.604,0.8768,0.96,0.8302,0.5474,0.5408,0.5674,0.5342,0.4442,0.2878,0.208,0.2014,0.2052,0.7448,0.803,1,0.5864,0.0856,-0.4022,-0.441,-0.4734,-0.6446,-0.861,-0.5186,-0.5056,-0.4378,-0.4184,-0.3118,-0.496,-0.3022,-0.1438,0.0954,0.3668,0.7512,0.8062,0.664,0.273,0.3442,0.4022,0.3344,0.1728,0.118,0.105,-0.0598,0.0308,0.4932,0.9212,1,0.2124,-0.4144,-0.4692,-0.6506,-0.6884,-0.8424,-0.8664,-0.822,-0.959,-0.9006,-0.7672,-0.6712,-0.6712,-0.661,-0.6096,-0.339,0.113,0.3116,0.5274,0.3184,-0.0172,0.0342,0.1302,0.1542,0.0172,-0.1302,-0.2466,-0.2364,0.013,0.4174,0.932,1,0.0906,-0.5826,-0.6504,-0.534,-0.6504,-0.686,-0.7378,-0.7412,-0.9806,-0.8544,-0.7056,-0.6602,-0.547,-0.5632,-0.4758,-0.288,0.1748,0.4758,0.4046,0.3624,0.4208,0.4336,0.3236,0.0582,-0.4434,-0.3786,-0.4854,-0.4822,-0.5918,0.347,0.9592,1,0.2244,0.0204,0.102,-0.2244,-0.102,-0.102,-0.5102,-0.3062,-0.0204,-0.1428,-0.5102,-0.1428,-0.0204,-0.0612,0.0204,0.3062,0.7142,0.796,0.7142,0.347,0.4286,0.3878,0.551,0.3878,0.4286,0.0204,0.2654,0.1428,-0.6316,0.5264,1,0.8422,0.2106,-0.0526,-0.1578,-0.3684,-0.5264,-0.4736,-0.3684,-0.3684,-0.2632,-0.3158,-0.1578,-0.1052,-0.3684,-0.2106,0.1578,0.3158,0.3684,0.6842,0.7368,0.579,0.579,0.6842,0.6316,0.579,0.579,0.5264,0.421,0.579,0.2978,0.7022,0.851,1,0.5532,0.1276,-0.2766,-0.1914,-0.2128,-0.532,-0.4894,-0.2554,-0.3404,-0.1914,-0.2128,-0.1276,-0.234,-0.2128,0,0.2554,0.3618,0.851,0.8724,0.6596,0.234,0.1914,0.532,0.4894,0.2554,0.234,0.1064,0.0852,-1,-1,-1,-1,-1,-1,-1,-0.8062,-0.7348,-0.551,-0.3882,0.327,0.78,0.9106,0.9176,0.8282,0.7408,0.6404,0.6274,0.5098,0.4384,0.09,-0.8002,-0.9126,-0.9176,-0.8976,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9202,-0.8868,-0.8378,-0.7898,-0.5222,0.3672,-0.2548,-0.2676,-0.3146,-0.3562,-0.4042,-0.427,-0.5014,-0.5136,-0.6352,-0.9166,-0.9378,-0.9358,-0.9374,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.86,-0.8134,-0.93,-0.9168,-0.826,-0.676,-0.832,-0.88,-0.906,-0.988,-0.964,-0.894,-0.931,-0.9328,-0.911,-0.6134,-0.42,-0.5234,-0.72,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5714,-0.4858,-0.6,0.6858,1,1,-0.3142,-0.9714,-0.8572,-0.8858,-0.8858,-0.7428,-0.7714,-0.7142,-0.3714,-0.2858,-0.7142,-0.7714,-0.6858,-1,-1,-1,-1,-1,-1,-1,0.3036,0.295,0.313,0.326,0.3416,0.353,0.3534,0.3408,0.3196,-0.0476,0.7668,0.757,0.8406,0.83,0.857,0.8504,0.9034,0.8928,0.8754,0.8704,-0.7734,0.2118,-0.7968,-0.6946,-0.5602,-0.4594,-0.4128,-0.0666,-0.4616,0.8186,0.8242,-0.1428,-0.1374,-0.1154,-0.011,-0.022,0.022,0.1374,0.6428,0.7912,0.8956,1,0.3296,0.3516,0.2692,0.1814,0.3626,0.1264,0.0384,-0.1484,-0.1154,-0.0714,-0.1758,-0.1264,-0.2418,-0.2252,-0.1264,-0.2638,-0.3902,-0.6428,-0.461,1,0.981,0.1394,-0.0354,-0.1442,-0.0638,-0.0686,0.0354,0.0686,0.9764,0.8346,0.6974,0.3618,0.6218,0.1774,0.3286,0.3476,0.2814,-0.0212,-0.0402,-0.078,-0.201,-0.305,-0.2956,-0.2908,-0.357,-0.3238,-0.3996,-0.3618,-0.3712,-0.6028,-0.434,1,0.891,-0.1194,-0.1572,-0.2494,-0.1698,-0.2578,-0.0776,0.0692,0.325,0.2662,0.2286,0.5178,0.3166,0.0524,0.132,0.3208,0.2914,0.0608,-0.044,-0.1112,-0.3124,-0.3334,-0.4382,-0.4214,-0.3668,-0.325,-0.3836,-0.4884,-0.4382,-0.652,-0.9712,1,-1,-1,-1,0,-1,-1,-1,-0.623,-0.1148,0.2296,0.5246,0.0328,-0.2132,-0.2296,-0.164,0.246,0.7378,0.541,0.3442,1,0.5082,0.164,0.3278,0.246,0.5082,0.1968,0.0492,0.3934,0.2132,0.2132,-0.0656,-0.082,-0.1804,-0.0492,-0.2132,-0.1148,-0.3114,-0.2296,-0.3442,'5'
-0.0338,0.9448,1,0.7546,0.6932,0.0614,0.0982,-0.1226,-0.0644,-0.4786,-0.319,-0.316,-0.1442,-0.3496,-0.227,-0.3006,-0.0706,-0.1226,0.1994,0.2208,0.7454,0.8036,0.9846,0.868,0.77,0.8404,0.9724,0.8866,0.5982,0.546,0.4294,0.4326,0.076,0.8232,0.8382,0.6612,0.6688,0.0386,0.056,-0.1482,-0.1108,-0.4072,-0.345,-0.4196,-0.3574,-0.4098,-0.2926,-0.2752,-0.1506,-0.0062,0.1408,0.3052,0.4844,0.7658,1,0.8108,0.6538,0.584,0.8954,0.7684,0.492,0.3798,0.1706,0.076,0.1298,0.8664,0.8738,0.7428,0.7276,0.1526,0.145,-0.1022,-0.0996,-0.42,-0.4074,-0.3392,-0.3216,-0.2434,-0.2006,-0.2006,-0.1374,0.0038,0.0996,0.3366,0.4376,0.8714,1,0.6998,0.6974,0.8032,0.9748,0.72,0.662,0.4502,0.377,0.2308,0.2454,0.991,0.9484,1,0.8696,0.2848,0.091,-0.0364,-0.2576,-0.297,-0.4636,-0.3304,-0.4304,-0.309,-0.5152,-0.3878,-0.2848,-0.2364,-0.109,0.094,0.3818,0.7454,0.8122,0.7606,0.5606,0.6516,0.5576,0.5364,0.4728,0.3606,0.2758,0.3666,0.0448,0.6828,0.769,1,0.5448,-0.062,-0.4862,-0.6172,-0.6,-0.8242,-0.8448,-0.6518,-0.6104,-0.7414,-0.7344,-0.7034,-0.7,-0.6276,-0.5034,-0.2242,0.0104,0.3448,0.3586,0.2724,-0.0344,0.162,0.2586,0.2172,-0.0068,-0.1414,-0.2518,-0.1656,0.029,0.506,0.9216,1,0.1142,-0.4344,-0.6832,-0.7444,-0.8092,-0.8568,-0.816,-0.782,-0.9182,-0.9864,-0.9148,-0.8228,-0.7922,-0.7888,-0.6866,-0.5878,-0.3764,0.0392,0.2062,0.0562,0.0868,0.3084,0.3492,0.3424,0.1414,-0.0562,-0.0766,-0.0732,0.0942,0.5452,0.9502,1,-0.0088,-0.5026,-0.7052,-0.5452,-0.7052,-0.7336,-0.9326,-0.8082,-0.7798,-0.6874,-0.6838,-0.7514,-0.7584,-0.7052,-0.5382,-0.453,-0.1866,0.357,0.4032,0.3428,0.19,0.3144,0.3748,0.158,-0.3534,-0.286,-0.3428,-0.2896,-0.1282,0.5898,0.5384,0.6924,0.4358,0.1282,0.077,-0.077,-0.3334,-0.3334,-0.282,-0.0256,0.0256,-0.077,-0.2308,-0.4358,-0.3334,-0.1282,-0.1794,0.2308,0.7436,1,0.9488,0.9488,0.7948,0.3846,0.4872,0.6924,0.6924,0.5384,0.4872,0.5898,-0.2692,0.6538,0.7692,0.4616,0.4616,0.2308,0,-0.1154,-0.0384,-0.1154,-0.1538,-0.1924,-0.0384,-0.0384,0,0,0.077,0.1924,0.3462,0.3846,0.8076,0.923,0.8076,0.7692,0.6538,0.923,1,0.7692,0.6538,0.5384,0.6154,0.577,0.2658,0.9494,0.8734,1,0.8228,0.2912,0.1646,0.0632,-0.1898,-0.3164,-0.2406,-0.1646,-0.3924,-0.2658,-0.3418,-0.2658,-0.3164,-0.3418,-0.2912,-0.1898,0.367,0.7722,1,0.8228,0.519,0.6708,0.7722,0.595,0.3924,0.4178,0.4684,0.443,-1,-1,-1,-1,-1,-1,-0.9806,-0.9746,-0.9654,-0.9694,-0.939,0.4148,0.7324,0.8626,0.9756,0.9308,0.8718,0.8036,0.7812,0.5492,0.2652,-0.1196,-0.889,-0.947,-0.944,-0.9206,-0.8788,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9608,-0.9536,-0.9464,-0.9296,-0.8678,0.418,0.7598,0.8382,0.9272,0.9192,0.8422,0.7742,0.7382,0.454,0.2058,-0.1754,-0.8606,-0.888,-0.831,-0.8254,-0.7998,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9386,-0.9,-0.8134,-0.49,-0.1134,-0.616,-0.8,-0.8092,-0.791,-0.7328,-0.7928,-0.88,-0.9182,-0.931,-0.9328,-0.9382,-0.4734,-0.3534,-0.26,-0.35,-0.5734,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6,-0.8858,-0.6,-0.5142,1,1,-0.8572,-1,-1,-0.8858,-0.7714,-0.9142,-0.8572,-0.8858,-0.8572,-0.2286,-0.0858,-0.7142,-0.7428,-0.8,-0.4286,-1,-1,-1,-1,-1,-1,0.147,0.1438,0.1506,0.145,0.148,0.1384,0.137,0.138,0.1552,-0.1292,1,1,1,1,1,1,1,1,1,1,-0.7734,0.2824,-0.8662,-0.526,0.707,0.5476,0.598,-0.2334,0.1428,0.1326,0.3266,0.6938,0.5816,0.7552,0.7654,1,0.8572,0.7346,0.9592,0.8164,0.796,0.6632,0.4592,0.7756,0.8368,0.602,0.7142,0.6836,0.6326,0.1836,0.8266,0.5306,0.2552,0.3266,0.3368,0.4082,0.3572,0.398,0.2756,-0.4286,-0.253,0.245,0.253,0.3334,0.1968,0.1808,0.1566,0.2932,0.2048,0.1968,0.984,1,0.6868,0.5582,0.3092,-0.012,0.4378,0.6466,0.6788,0.2208,0.1808,0.1244,0.1486,0.2128,0.3012,-0.0522,0.1406,0.004,0.0924,0.0362,-0.0682,-0.3172,-0.3474,0.1458,-0.1618,-0.1778,-0.0664,-0.0558,0.045,0.008,0.114,0.1034,0.8886,1,0.7932,0.8514,0.4694,0.3688,0.4802,0.634,0.7878,0.3368,0.2148,-0.0132,0.0822,-0.1724,0.0026,-0.1618,-0.236,-0.0664,-0.0664,-0.0876,-0.2626,-0.3794,-0.968,1,-1,-1,-1,-1,-1,-1,-1,-0.559,0.0708,-0.0236,0.1654,-0.1024,-0.1182,-0.3386,-0.2284,0.0394,0.7796,0.8268,0.6062,1,0.6692,0.4016,0.0708,0.0552,0.1968,0.37,0.1812,0.2284,0.0552,-0.0552,-0.1496,-0.3228,-0.1968,-0.2756,-0.4646,-0.307,-0.5906,-0.4174,-0.7638,'5'
-0.7438,0.3224,0.4794,0.6528,1,0.8842,0.372,0.1404,-0.0662,-0.0662,-0.2066,-0.1488,-0.033,0.033,0.0414,0.0578,0.2728,0.562,0.6776,0.4628,0.3884,0.2892,0.4628,0.5206,0.3306,0.2644,0.0744,-0.091,-0.1652,-0.19,-0.3884,-0.2976,-0.4676,0.2468,0.2532,0.6688,0.7012,0.7078,0.7598,0.3506,0.409,0.2012,0.2662,0.2858,0.3702,0.4026,0.5324,0.7208,0.8442,0.9416,1,0.8182,0.8246,0.8116,0.935,0.8506,0.948,0.8376,0.7272,0.5714,0.4936,0.3832,0.3962,0.3442,-0.3152,0.3628,0.356,0.5932,0.5458,1,0.9932,0.3356,0.2678,0.1526,0.1186,0.1254,0.078,0.3898,0.322,0.7424,0.7152,0.8712,0.8306,0.7152,0.695,0.6814,0.6882,0.8306,0.844,0.5118,0.5322,0.2,0.2678,0.1728,0.2406,0.1662,-0.1526,0.3948,0.3632,0.5,0.6736,1,0.9106,0.6316,0.4948,0.2578,0.2,0.3632,0.3736,0.5368,0.679,0.8106,0.6632,0.6684,0.4422,0.4526,0.3948,0.4264,0.5578,0.6264,0.4316,0.3474,0.1158,0.1,-0.0474,0.0632,-0.0368,0.0474,-0.0964,0.4818,0.3888,0.382,0.6678,0.8074,0.9202,1,0.4286,0.3156,0.4684,0.4152,0.4818,0.3954,0.6346,0.681,0.6612,0.329,0.3554,0.2692,0.2758,0.5348,0.5416,0.3222,0.2492,0.196,0.0632,-0.0432,-0.0034,-0.0366,-0.216,-0.1894,-0.133,0.3798,0.2848,0.2912,0.4746,0.5316,1,0.9874,0.3228,0.1582,0.2026,-0.0064,0.2152,0.3924,0.5,0.5506,0.4494,0.2088,0.0886,0.1962,0.1012,0.2342,0.557,0.5444,0.2406,0.1518,-0.114,-0.1646,-0.2026,-0.1582,-0.2406,-0.2848,-0.2824,0.1374,-0.0764,-0.3436,-0.0688,0.2824,0.7176,0.7558,0.397,0.4198,0.1908,0.1374,0.7786,1,0.748,0.4198,0.2366,0.1222,0.2442,0.4274,0.4504,0.7786,0.8702,0.603,0.0382,-0.061,-0.252,-0.3816,-0.1832,-0.1984,-0.1604,-0.0688,-0.628,0.2558,0.4418,0.4884,1,0.9534,0.3024,0.0698,-0.0232,-0.0232,-0.0698,-0.0232,0.1162,0.1162,0.2094,0.2094,0.3024,0.5814,0.6744,0.4418,0.3488,0.3488,0.4418,0.4884,0.2558,0.3024,0.2094,-0.0232,0.0232,-0.1162,-0.3488,-0.4418,-0.7838,0.4054,0.6216,0.6756,1,0.7298,0.5136,0.5676,0.1352,0.1352,-0.027,0.1352,0.2432,0.2432,0.3514,0.4054,0.5136,0.7298,0.7838,0.7298,0.7838,0.6216,0.7298,0.6216,0.6756,0.5676,0.3514,0.2972,0.1352,0.027,0.027,-0.081,-0.2234,0.3786,0.3398,0.5146,0.4758,1,0.9612,0.4564,0.3592,0.1068,-0.068,0.2038,0.068,0.4758,0.3786,0.8058,0.7282,0.7088,0.631,0.5534,0.4758,0.5146,0.4174,0.6894,0.6116,0.301,0.2234,0.0874,-0.0874,0.1262,0.0098,0.0486,-1,-1,-1,-1,-1,-1,-1,-1,-0.9808,-0.9768,-0.8606,-0.237,0.0258,0.0602,0.1672,0.6856,0.9848,0.6048,0.1926,0.1986,0.1582,-0.5402,-0.7038,-0.7524,-0.8474,-0.909,-0.908,-0.909,-0.9504,-0.9444,-0.9474,-0.9302,-0.9484,-1,-1,-1,-1,-1,-1,-1,-1,-0.9794,-0.9808,-0.909,-0.383,-0.004,0.5896,0.3786,0.6466,0.9826,0.581,0.018,0.1684,0.237,-0.396,-0.461,-0.7482,-0.758,-0.7214,-0.6832,-0.6976,-0.7738,-0.8208,-0.8324,-0.849,-0.8164,-1,-1,-1,-1,-1,-1,-1,-1,-0.93,-0.8568,-0.8534,-0.78,-0.68,-0.43,-0.61,-0.67,-0.705,-0.675,-0.63,-0.625,-0.636,-0.468,-0.5068,-0.4268,-0.0334,0.45,0.5132,0.4782,0.4764,0.3664,0.3396,0.303,0.203,-1,-1,-1,-1,-1,-1,-1,-1,-0.5714,-0.8286,1,1,1,1,-0.6572,-0.4858,-0.6858,-0.4858,-0.6286,-0.8286,0.1142,0.2,0.2,0.5428,0.0572,-0.6286,-0.8858,-0.7428,-0.4286,-0.7428,-0.9714,-0.8572,-1,1,1,1,1,1,1,1,1,1,1,0.0012,0.0588,0.0588,0.069,0.0862,0.1544,0.198,0.1768,-0.0664,-0.4072,-0.7866,-0.5764,-0.9386,-0.4808,-0.3352,0.0716,0.5918,1,-0.0892,-0.1288,0.2278,0.406,0.307,0.5446,0.7624,1,0.802,0.6238,0.7822,0.7822,0.8416,0.6436,0.5842,0.703,0.3664,0.4456,0.6832,0.7822,0.9802,0.5842,0.406,-0.1684,0.2674,0.6436,0.4654,0.3268,0.1882,0.307,0.1684,-0.406,0.0694,0.2872,0.0694,0.7822,0.7426,0.8218,0.8812,0.6634,0.6634,0.9604,0.6832,0.604,0.1684,0.6238,0.7228,0.8218,0.3862,0.505,0.4456,0.406,0.9802,0.8218,0.2476,0.703,0.1882,0.3862,0.5644,0.4258,0.1288,0.2674,0.01,-0.6436,0.3364,0.8598,0.785,0.7664,0.6356,0.7476,0.701,1,0.785,0.9066,0.6822,0.701,0.7476,0.7196,0.5514,0.701,0.7476,0.4954,0.7384,0.57,0.5794,0.5794,0.6356,0.4672,0.5608,0.5794,0.6636,0.5046,0.4954,0.4112,0.3084,0.1962,-0.9856,1,-1,-1,-1,-1,-1,-1,-1,-0.6378,-0.4488,-0.307,-0.0708,0.1024,0.0866,0.1182,0.748,0.622,0.4016,0.433,0.37,0.6062,0.6536,0.6062,0.1182,0.9056,1,0.8582,0.7322,0.748,0.7796,0.7638,0.685,0.811,0.685,0.4174,0.496,0.7322,0.6378,0.4804,0.0552,'6'
-0.9176,0.347,0.4982,0.7182,1,0.8694,0.5258,0.2646,-0.0722,-0.0928,-0.2714,-0.2234,-0.4432,-0.3676,-0.244,0.031,0.134,0.567,0.519,0.1134,0.2164,0.024,0.3402,0.3814,0.1616,0.079,-0.1684,-0.2164,-0.354,-0.354,-0.3264,-0.3264,-0.5684,0.3812,0.41,0.5972,0.964,0.9928,0.8634,0.3094,0.2662,0.0288,-0.0432,0.072,0.1654,0.3166,0.4172,0.59,1,0.9784,0.813,0.5396,0.554,0.59,0.705,0.8634,0.8274,0.3742,0.4172,0.1294,0.1726,0.0648,0.1726,0.2086,-0.2566,0.343,0.3382,0.5876,0.645,1,0.9664,0.6068,0.4532,0.3334,0.2134,0.3718,0.2182,0.4676,0.4772,0.6498,0.602,0.6354,0.458,0.5012,0.3526,0.458,0.5732,0.6546,0.3718,0.3764,0.175,0.2134,0.1176,0.1702,0.1366,0.2086,-0.0936,0.4784,0.4278,0.5392,0.7468,1,0.843,0.8632,0.6406,0.3772,0.281,0.357,0.5646,0.605,0.843,0.8532,0.6506,0.6254,0.6406,0.5798,0.6,0.4988,0.7114,0.6254,0.5696,0.3924,0.4076,0.1444,0.205,0.1646,0.1848,0.2202,-0.13,0.4294,0.356,0.4012,0.695,0.8418,0.9096,1,0.4012,0.339,0.4916,0.4464,0.6384,0.661,0.8758,0.6158,0.6666,0.4012,0.4576,0.3446,0.356,0.5198,0.548,0.7458,0.6554,0.243,0.0904,-0.2598,-0.1638,-0.0734,-0.0508,0.1242,-0.0426,0.5082,0.364,0.377,0.7114,0.7246,1,0.8754,0.5148,0.3968,0.5278,0.646,0.6918,0.9672,0.8032,0.6524,0.2656,-0.1016,-0.095,-0.0426,0.154,0.259,0.5934,0.5344,0.2328,-0.0754,-0.141,-0.2918,-0.1606,-0.1016,-0.0558,0.1278,-0.0758,0.3864,0.1742,0.0076,0.2652,1,0.9924,0.4166,0.2576,0.0834,-0.0228,0.0834,0.1288,0.3636,0.2878,0.0076,-0.2728,-0.2576,-0.2954,-0.25,-0.0834,0.4848,0.644,0.4016,0.1288,-0.1894,-0.5076,-0.6288,-0.6364,-0.6516,-0.409,-0.1516,-0.814,0.2094,0.3954,0.4884,0.9534,1,0.4418,0.0232,-0.4884,-0.3954,-0.2558,-0.5814,-0.2094,-0.3024,0.0232,0.1162,0.1162,0.4418,0.4418,0.1628,0.0698,-0.1162,0.2558,0.3488,0.1628,0.0698,0.0232,-0.2558,-0.1162,-0.2558,-0.0698,-0.0698,-0.3192,0.6596,0.7446,0.9148,1,0.7022,0.7446,0.5744,0.3618,0.234,0.234,0.1064,-0.4042,-0.234,-0.0638,0.0638,0.234,0.8298,0.7872,0.4042,0.4468,0.234,0.4894,0.1914,0.3192,0.3618,0.0638,0.149,-0.0212,0.234,0.149,-0.0638,-0.3254,0.5422,0.6144,0.7108,0.8314,0.9278,0.9036,0.8554,0.5662,0.518,0.5422,0.5422,0.4698,0.7108,0.7108,0.9518,1,0.9036,0.9036,0.759,0.7832,0.6626,0.8072,0.8314,0.7108,0.6868,0.4458,0.3734,0.3734,0.4216,0.3494,0.494,-1,-1,-1,-1,-1,-1,-1,-1,-0.9688,-0.9828,-0.8668,-0.367,-0.2874,-0.194,0.5766,0.986,0.814,0.7206,0.6174,0.4648,0.2424,-0.1188,-0.6164,-0.8324,-0.8624,-0.8904,-0.9322,-0.9236,-0.9172,-0.9066,-0.914,-0.9086,-0.9076,-1,-1,-1,-1,-1,-1,-1,-1,-0.9772,-0.9804,-0.9034,-0.5328,-0.5054,-0.1088,0.4674,0.7706,0.615,0.583,0.8574,0.3002,-0.01,-0.3582,-0.6596,-0.7594,-0.608,-0.7204,-0.7456,-0.7642,-0.7646,-0.7614,-0.7428,-0.7888,-0.818,-1,-1,-1,-1,-1,-1,-1,-1,-0.8928,-0.9468,-0.8734,-0.752,-0.776,-0.712,-0.74,-0.688,-0.692,-0.708,-0.724,-0.684,-0.69,-0.7,-0.5668,-0.09,0.36,0.5166,0.6466,0.4032,0.3632,0.4732,0.39,0.1866,0.1132,-1,-1,-1,-1,-1,-1,-1,-1,-0.3714,-0.7428,1,1,1,1,0.9714,-0.0858,-0.7428,-0.9142,-0.6,-0.6,-0.2572,0,1,1,0.6858,-0.7714,-0.8858,-0.8572,-1,-0.9428,-0.8286,-0.7142,0.3714,1,1,1,1,1,1,1,1,1,1,0.0038,0.0198,0.0356,0.0532,0.0488,-0.0396,-0.0324,-0.094,-0.2266,-0.5084,-0.76,-0.447,-0.9284,-0.5546,-0.5608,-0.497,-0.2774,-0.4084,0.104,0.296,0.424,0.968,0.904,0.808,1,0.696,0.888,0.872,0.76,0.824,0.488,0.504,0.296,0.36,0.376,0.12,0.376,0.44,0.536,0.568,0.36,0.712,0.616,0.456,0.856,0.664,0.344,0.552,0.2,-0.232,-0.1924,-0.4038,0.0576,0.6346,0.5192,0.9424,1,0.423,0.327,0.3462,0.8654,0.4808,0.5,0.2116,0.673,-0.0192,-0.0192,0.2308,0.1924,0.173,0.2116,-0.1924,0.3654,0.6538,-0.0576,0.0192,0.4424,0.4038,-0.423,-0.0192,-0.0192,-0.4808,-0.0792,0.6978,0.9856,0.7842,0.7842,0.7266,0.554,0.6978,0.8562,0.8562,0.9856,0.8848,1,0.482,0.5828,0.295,0.6834,0.554,0.5684,0.482,0.2374,0.2662,0.0648,0.0936,0.5396,0.41,0.5108,0.4244,0.2374,-0.0072,-0.0504,-0.5396,-0.9908,1,-1,-1,-1,-1,-0.8,-1,-1,-0.369,0.012,0.119,0.1428,0.119,0.238,0.3334,0.5238,0.4404,0.4166,0.5238,0.7858,0.7858,0.738,0.631,0.4404,0.631,0.8096,0.9166,0.8928,0.8928,0.7262,1,0.75,0.7976,0.869,0.8452,0.8572,0.7262,0.869,0.9404,0.5,'6'
0.2148,0.9802,0.995,0.7186,0.7136,0.3728,0.3828,0.1556,0.1754,-0.0518,0.0124,0.0024,0.0568,0.1408,0.1902,0.4618,0.4914,0.9358,0.9704,0.7728,0.753,0.8124,0.9408,0.9802,1,0.7976,0.5456,0.6346,0.7778,0.753,0.7136,0.5654,0.1828,0.9548,0.9504,0.9278,0.9098,0.4538,0.4402,0.255,0.255,0.1242,0.1196,0.1784,0.2054,0.2642,0.3138,0.4402,0.5124,0.8962,1,0.9232,0.9142,0.6614,0.7608,0.9322,0.9638,0.535,0.5846,0.544,0.6884,0.544,0.7292,0.5214,0.1536,0.8378,0.8246,0.9606,0.8948,0.4298,0.3508,0.1578,0.0614,0.0878,-0.022,0.1448,0.0264,0.1666,0.0438,0.3246,0.3246,0.6008,0.6798,1,0.886,0.7106,0.7764,0.9036,0.7676,0.7894,0.5964,0.4254,0.3378,0.421,0.386,0.4868,0.067,0.737,0.6626,1,0.8064,0.2804,0.0024,-0.0124,-0.1812,-0.0818,-0.1266,-0.0918,-0.0818,-0.0968,-0.0174,0.0124,0.2952,0.2804,0.5186,0.7072,0.8264,0.6724,0.5732,0.6278,0.6576,0.459,0.2952,0.1414,0.077,-0.0074,-0.0522,0.0968,-0.0348,0.5388,0.7962,1,0.5924,-0.0348,-0.2386,-0.3352,-0.3458,-0.512,-0.4798,-0.4638,-0.4424,-0.3672,-0.421,-0.1958,-0.11,-0.0026,0.2762,0.689,0.8446,0.7748,0.3512,0.4262,0.4638,0.437,0.11,-0.126,-0.0724,-0.0564,0.0188,-0.0832,-0.0546,0.4788,0.8788,1,0.2304,-0.3272,-0.3758,-0.691,-0.6546,-0.7454,-0.9212,-0.8788,-0.7394,-0.7516,-0.6546,-0.509,-0.4364,-0.4666,-0.1272,0.2728,0.4788,0.3636,0.3576,0.4122,0.5454,0.2242,-0.1272,-0.4304,-0.4848,-0.3334,-0.3758,-0.3212,0.2416,0.6798,0.9494,1,0.1068,-0.1292,-0.427,-0.3988,-0.5056,-0.7134,-0.7416,-0.5338,-0.5898,-0.455,-0.382,-0.5394,-0.5786,-0.4214,-0.1798,0.1854,0.3426,0.3988,0.5506,0.5394,0.528,0.3202,-0.0674,-0.2584,-0.163,-0.2866,-0.309,-0.2472,0.2452,0.9246,1,0.7358,0.7736,0.434,0.434,0.1698,0.283,-0.0188,0.0188,-0.0944,0.132,-0.0188,0.434,0.3962,0.3208,0.6604,0.7736,0.5472,0.6604,0.6982,0.6982,0.849,0.8114,0.6982,0.585,0.7358,0.849,0.7736,0.7358,0.7358,0.1628,0.9534,1,0.721,0.6744,0.3488,0.3954,0.1162,0.0698,0.0232,0.0698,-0.2094,-0.1628,-0.0232,0.0232,0.3488,0.4418,0.721,0.5348,0.4884,0.721,0.5348,0.721,0.814,0.721,0.4884,0.4884,0.7674,0.907,0.7674,0.721,0.628,-0.04,0.44,0.84,1,0.3866,-0.2266,-0.2534,-0.4934,-0.52,-0.5734,-0.76,-0.52,-0.44,-0.4666,-0.4134,-0.4666,-0.36,-0.36,-0.1466,0.4934,0.4134,0.4934,0.2534,0.3334,0.4934,0.36,-0.0134,-0.3334,-0.1734,-0.1466,-0.2266,-0.1466,-1,-1,-1,-1,-1,-0.9748,-0.9816,-0.8798,-0.9748,-0.6086,-0.5616,0.5624,0.7236,0.9816,0.974,0.8984,0.8228,0.8052,0.7968,0.5002,-0.107,-0.422,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.9682,-0.1024,0.7602,1,0.5236,0.4322,0.9736,0.9252,0.9682,0.8204,0.7418,0.7216,0.7418,0.3568,-0.2066,-0.4978,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.88,-0.9734,0.19,0.69,0.5966,0.4166,-0.8534,-0.87,-0.97,-0.9234,-0.93,-0.9,-0.84,-0.8668,-0.9658,-0.9772,-0.9658,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,1,1,1,1,-0.7142,-0.8286,-0.8,-0.8,-0.7714,-0.6286,-0.2572,-0.1714,-0.5142,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.3628,0.3732,0.338,0.3218,0.3226,0.3272,0.3452,0.3656,0.364,0.0784,0.5538,0.5198,0.4728,0.4446,0.407,0.4124,0.4186,0.4284,0.4638,0.5344,-0.7466,-0.3058,0.2324,0.209,0.463,0.8934,0.957,1,-0.9534,-0.7674,-0.5814,-0.5,-0.4418,-0.2616,-0.1338,-0.128,0.1686,0.3604,0.4302,0.4244,0.4418,0.6396,0.7674,0.9652,1,0.9826,0.936,0.9418,0.6104,0.4594,0.622,0.6104,0.5116,0.5814,0.6686,0.5348,0.4186,0.2034,0.0698,-0.0872,-0.9466,-0.6888,-0.5022,-0.2756,-0.3334,-0.2756,-0.1112,0.0088,0.2444,0.3288,0.3734,0.7422,0.7288,0.6888,0.7866,0.9956,1,0.6978,0.8444,0.8266,0.7822,0.7822,0.8488,0.6534,0.64,0.5466,0.6888,0.6978,0.5734,0.3912,0.3288,0.2,-0.3982,-0.0834,-0.0602,-0.0788,-0.0462,0.0694,-0.0416,0.0648,0.5324,0.4306,0.4814,0.6944,0.8658,0.6482,1,0.9444,0.9722,0.8334,0.7778,0.7916,0.7824,0.7686,0.6852,0.6112,0.6944,0.6852,0.6482,0.5,0.5232,0.5648,0.4768,0.2686,0.6518,-1,-1,1,-1,-1,-1,-0.1666,-1,0.683,1,0.8048,-0.1464,-0.0976,-0.4634,-0.1708,-0.0732,-0.244,-0.0244,0.439,0.3902,0.4146,0.0976,0.0976,-0.1464,0.1708,0.244,0.4146,-0.1952,-0.1952,-0.122,-0.2196,-0.1464,-0.122,-0.5366,-0.2926,-0.1464,-0.2196,-0.3902,-0.561,-0.5366,'7'
0.0074,0.7134,0.7224,0.6336,0.613,0.164,0.1698,0.0428,0.0546,0.0192,0.031,0.0724,0.093,0.2348,0.2614,0.4534,0.5274,0.9202,1,0.6958,0.7608,0.678,0.7488,0.8848,0.9616,0.7252,0.7194,0.5332,0.6898,0.545,0.6336,0.3648,-0.0604,0.524,0.5214,0.602,0.5744,0.1964,0.1712,0.058,0.0302,0.0126,-0.01,0.078,0.0654,0.1688,0.1586,0.3576,0.3502,0.602,0.612,0.9722,1,0.4836,0.4006,0.7002,0.738,0.4634,0.4962,0.2468,0.2896,0.1108,0.1814,-0.0404,0.1278,0.802,0.7732,0.9776,0.885,0.3738,0.2588,0.1726,0.0128,0.0638,-0.1022,0.0862,-0.1086,0.0096,0.032,0.2044,0.2716,0.425,0.8402,1,0.8754,0.6422,0.4376,0.5464,0.7508,0.869,0.6006,0.377,0.3802,0.3898,0.2076,0.1758,0.0256,0.6606,0.7154,1,0.7408,0.0256,-0.2408,-0.1824,-0.2992,-0.3504,-0.438,-0.5182,-0.7044,-0.5876,-0.4234,-0.2226,-0.0548,0.1094,0.27,0.5036,0.7628,0.697,0.3832,0.6678,0.7446,0.7226,0.6424,0.3832,0.2738,0.0218,-0.0072,-0.0986,-0.0552,0.4448,0.8676,1,0.489,-0.3714,-0.2648,-0.478,-0.4264,-0.7058,-0.7316,-0.9816,-0.9192,-0.7316,-0.4044,-0.3786,-0.1876,-0.2904,-0.0736,0.1802,0.3492,0.4964,0.5036,0.625,0.592,0.6176,0.3786,0.0882,-0.2978,-0.4522,-0.647,-0.3308,-0.14,0.358,0.895,1,0.2958,-0.3774,-0.4086,-0.4748,-0.4514,-0.6576,-0.7704,-0.8288,-0.9066,-0.891,-0.8794,-0.6732,-0.4942,-0.249,-0.2218,0.1906,0.4124,0.6148,0.284,0.2802,0.5098,0.3152,0.2178,-0.074,-0.0972,-0.2296,-0.3736,-0.2608,-0.0726,0.458,0.8702,1,0.3244,-0.3244,-0.584,-0.5688,-0.4694,-0.7748,-0.8016,-0.5764,-0.6336,-0.9122,-0.855,-0.7938,-0.8358,-0.5534,-0.2938,0.1946,0.6146,0.7404,0.5992,0.5268,0.4542,0.3168,-0.0534,-0.3206,-0.29,-0.3932,-0.458,-0.332,-0.0732,0.756,0.8048,0.4146,0.4634,0.0244,-0.122,-0.561,-0.5122,-0.1708,-0.317,-0.0244,0.0732,0.122,0.122,0.0732,0.561,0.8048,0.6098,0.4146,0.4146,0.6098,0.6586,0.7074,0.7074,0.7074,0.7074,0.8536,0.756,1,0.9512,0.6098,-0.0698,0.721,0.721,0.5814,0.5814,0.1162,0.1628,-0.0232,-0.0232,-0.2094,-0.2094,-0.1162,-0.1628,0.0698,0.1628,0.4418,0.4418,0.8604,0.9534,0.5348,0.5814,0.7674,0.7674,0.9534,1,0.814,0.721,0.4884,0.3024,0.4884,0.5814,0.3024,-0.1372,0.4902,0.4706,0.6274,0.5686,0.0588,0.0588,-0.0196,-0.098,-0.1372,-0.1764,-0.0588,-0.1176,-0.0196,-0.1176,0.1176,0.0784,0.353,0.5882,1,0.9216,0.2746,0.2156,0.353,0.3138,0.5098,0.4118,-0.0784,-0.1764,-0.098,-0.0392,0.0588,-1,-1,-1,-1,-0.9816,-0.9816,-0.9458,-0.9652,-0.9522,-0.9522,-0.7888,0.5564,0.9394,0.9844,0.9266,0.8118,0.8126,0.864,0.6594,0.3894,0.1708,-0.1882,-0.764,-0.966,-0.9606,-0.9532,-0.9394,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9786,-0.9742,-0.688,-0.3056,0.0868,0.009,-0.1348,0.3296,0.8008,0.9146,0.7548,0.4364,0.4386,0.483,0.2652,0.038,-0.1168,-0.3812,-0.8134,-0.9382,-0.9218,-0.9202,-0.9098,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9,-0.9268,-0.5734,0.5666,0.6032,0.5366,0.55,-0.6624,-0.6846,-0.6024,-0.689,-0.7112,-0.7712,-0.8556,-0.9624,-0.9712,-0.9378,-0.9068,-0.8,-0.3968,-0.3468,-0.4068,-0.5834,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,1,-0.7714,1,1,-0.3714,-0.8572,-0.6286,-0.7428,-0.8,-0.8858,-0.9428,-0.8858,-0.8572,-0.4286,-0.2,-0.4858,-0.9142,-0.9142,0.1428,-1,-1,-1,-1,-1,-1,0.2808,0.3096,0.3184,0.3378,0.3516,0.3676,0.3824,0.3986,0.3622,0.0802,0.5114,0.5128,0.5136,0.5224,0.5036,0.4966,0.4642,0.4166,0.5168,0.6454,-0.72,0.047,-0.1124,-0.0736,0.2328,0.519,0.7346,1,-0.4922,-0.3364,-0.3274,-0.0734,-0.0646,-0.0646,0.0734,0.167,0.323,0.3854,0.5144,0.5412,0.6436,0.6526,0.8886,0.942,1,0.96,0.942,0.8352,0.8486,0.7506,0.666,0.7238,0.617,0.5992,0.51,0.3364,0.225,0.2294,0.0914,-0.2694,-0.8828,-0.7382,-0.746,-0.5274,-0.5586,-0.457,-0.3594,-0.0976,0.1914,0.1718,0.543,0.8242,0.8828,0.8828,0.875,1,0.9414,0.836,0.9102,0.8398,0.8828,0.836,0.8946,0.8516,0.7422,0.707,0.5782,0.625,0.4532,0.3594,0.3204,-0.0118,-0.8516,-0.589,-0.6186,-0.5678,-0.5212,-0.3686,-0.1484,-0.1228,0.3686,0.411,0.305,0.7034,0.9068,0.7246,1,0.9916,0.7966,0.75,0.7838,0.7246,0.7712,0.7076,0.7416,0.8178,0.6314,0.428,0.4958,0.4068,0.2542,0.3602,0.3814,-0.0212,0.2028,-1,-1,1,-1,-1,-0.8,-0.0334,-1,-0.4028,0.0416,0.0416,0.2362,-0.0138,-0.2084,0.1112,-0.125,-0.0138,0.9862,1,0.6112,0.5972,0.5834,0.25,0.1112,0.4444,0.6666,0.5834,0.25,0.2638,0.1388,0.1528,-0.0694,-0.0138,0.0278,0.2084,0.0278,0.0694,-0.0278,-0.2084,-0.2916,'7'
-0.134,0.4636,0.3966,0.6928,0.553,0.3744,0.2402,0.0112,-0.1844,-0.2738,-0.1956,-0.257,-0.1508,-0.229,-0.095,-0.067,0.1396,0.4134,0.5364,0.9608,1,0.7206,0.609,0.7654,0.7878,0.7766,0.5698,0.3184,0.257,0.2068,0.257,0.2012,-0.022,0.5612,0.5298,0.7492,0.4796,0.4922,0.0156,0.022,-0.304,-0.4106,-0.2916,-0.2164,-0.1598,-0.1598,-0.1348,0.0972,0.0722,0.4106,0.4546,1,0.9686,0.7618,0.63,0.7742,0.7242,0.7742,0.467,0.254,0.022,0.141,0.1912,0.1912,0.091,0.7392,0.6364,0.826,0.5178,0.5178,-0.0198,-0.2332,-0.3518,-0.5574,-0.6364,-0.2252,-0.336,-0.2016,-0.3992,-0.2252,0.0434,0.1068,0.6364,0.7866,1,0.8578,0.8498,0.9604,0.8736,0.6206,0.3992,0.0198,-0.091,0.091,-0.0672,-0.1542,0.1344,0.7732,0.6134,0.7732,0.4622,0.4118,-0.0924,-0.3446,-0.3026,-0.3278,-0.3614,-0.269,-0.4622,-0.3026,-0.3866,-0.479,-0.3782,0,0.2436,0.8404,0.958,1,0.8236,0.8152,0.7058,0.731,0.479,0.084,0.0756,0.0168,-0.1512,-0.1344,-0.0286,0.5642,0.7214,0.8714,0.3928,0.4,-0.1286,-0.2714,-0.2714,-0.5072,-0.45,-0.2928,-0.4,-0.2072,-0.4142,-0.2358,-0.1072,-0.0286,0.4642,0.75,1,0.65,0.6928,0.6214,0.5928,0.5428,0.4286,0.2,0.1358,-0.0858,-0.1786,-0.1358,-0.139,0.4006,0.831,1,0.6022,-0.0028,-0.3352,-0.3134,-0.4224,-0.5532,-0.4714,-0.4114,-0.297,-0.3352,-0.2862,-0.079,-0.0736,0.1062,0.2916,0.564,0.8584,0.9892,0.564,0.5912,0.6894,0.6948,0.3514,0.128,0.0246,0.0954,0.1008,0.139,-0.4378,0.6654,1,0.9004,0.0462,-0.4022,-0.4734,-0.459,-0.4306,-0.5374,-0.4306,-0.3808,-0.3524,-0.3168,-0.1602,-0.3096,-0.2882,-0.2314,0.1958,0.7296,0.9786,0.815,0.4448,0.6014,0.7652,0.5302,0.1886,0.1886,-0.0392,-0.0748,-0.1744,-0.1388,-0.409,0.2728,0.1364,0.2272,0,0.0454,0,-0.3182,-0.409,-0.409,-0.3182,-0.4546,-0.2272,-0.2728,-0.1364,-0.091,0.1364,0.409,0.6818,0.9546,1,0.8636,0.7272,0.8182,0.8182,0.7728,0.5454,0.3182,0.3182,0.1364,0.3182,0.1364,-0.2094,0.4418,0.3024,0.814,0.6744,0.4884,0.1628,0.1628,-0.2558,-0.1162,-0.1162,-0.0698,-0.0232,-0.0232,0.0232,-0.1162,0.2094,0.1628,0.721,0.8604,1,0.6744,0.4884,0.7674,0.907,0.628,0.721,0.1162,0.3024,0.0698,0.1628,0.0232,0.0136,0.589,0.5068,0.8082,0.4794,0.4794,-0.041,-0.0958,-0.4794,-0.3972,-0.3424,-0.2876,-0.2328,-0.0958,-0.2602,-0.1232,-0.2328,0.2054,0.041,0.9452,1,0.6712,0.5342,0.6164,0.8904,0.863,0.5616,0.5068,0.3698,0.5068,0.3972,0.5068,-1,-1,-1,-1,-1,-1,-1,-0.972,-0.98,-0.893,-0.6348,0.4758,0.952,0.7248,0.4828,0.3736,0.2886,0.2306,0.5598,0.6538,0.4118,-0.6108,-0.916,-0.978,-0.979,-0.956,-0.928,-0.92,-0.947,-0.864,-0.899,-0.931,-0.887,-1,-1,-1,-1,-1,-1,-1,-0.9644,-0.972,-0.6466,-0.5788,0.33,0.9234,0.4154,0.2354,0.0788,0.101,-0.0544,0.3054,0.3114,0.1372,-0.6986,-0.9364,-0.9708,-0.948,-0.8802,-0.5292,0.007,0.4212,0.3276,0.2658,0.358,-0.0094,-1,-1,-1,-1,-1,-1,-1,-0.82,-0.9068,-0.6734,-0.5368,-0.62,-0.7,-0.592,-0.716,-0.824,-0.772,-0.856,-0.788,-0.82,-0.8334,-0.8768,-0.9234,-0.9268,-0.9268,-0.8068,0.1666,0.7,0.6066,0.6566,0.5432,0.56,0.4632,-1,-1,-1,-1,-1,-1,-1,-0.8286,0.6858,1,1,1,-0.1428,-0.6858,-0.6858,-0.9142,-0.9428,-0.9142,-0.6858,-0.3142,1,1,0.8572,-0.8,-0.4,1,1,1,0.0572,-0.5142,-0.7714,-0.6,0.8858,0.5582,0.5774,0.586,0.5906,0.5996,0.57,0.5388,0.4878,0.3764,0.2194,0.8892,0.8834,0.8692,0.8274,0.8162,0.8032,0.7658,0.7376,0.7242,0.6864,-0.6666,-0.4352,-0.5766,-0.3318,0.6752,0.8726,0.8352,0.0834,-0.3174,0.4126,0.5874,0.0634,-0.3492,-0.0476,-0.0952,-0.1112,0.254,1,0.9682,0.9048,0.8254,0.4444,0.4444,0.3492,0.3968,0.4444,0.3174,0.365,0.127,-0.1112,-0.1904,-0.1746,-0.4286,-0.5396,-0.4444,-0.4762,-0.3174,-0.3334,-0.5556,-0.5556,0.0946,0.581,0.5946,0.1622,0.1082,0.1216,0.1486,0.2432,0.3918,0.8244,0.919,0.8648,1,0.7162,0.6756,0.473,0.7568,0.7432,0.8244,0.7838,0.473,0.3514,0.3108,-0.0406,-0.1622,-0.1622,-0.0406,-0.3918,-0.2162,-0.0136,0,-0.2432,0.4034,0.6132,0.6022,0.4254,-0.0166,-0.0828,0.0056,0.1824,0.2596,0.7238,0.978,0.9006,1,0.757,0.569,0.3038,0.5912,0.558,0.6796,0.4696,0.5138,0.2928,0.105,-0.105,-0.2596,-0.2266,-0.1934,-0.2376,-0.0166,0.0276,0.1934,-0.2596,-0.1156,-1,-1,1,-1,-1,-1,-0.6666,1,-0.6516,-0.6854,-0.5056,-0.5394,-0.4158,-0.427,-0.4832,-0.1798,-0.045,0.1348,0.3708,0.3708,0.618,0.8426,0.8314,0.9438,0.8988,0.955,0.9888,1,0.8988,0.7304,0.6742,0.854,0.8202,0.7752,0.6292,0.618,0.6404,0.6966,0.764,0.4044,'8'
-0.1122,0.5698,0.5744,0.8718,0.9084,0.6796,0.6292,0.2356,0.2036,0.039,-0.0252,0.1442,0.0892,0.1946,0.1808,0.2678,0.2814,0.6064,0.73,1,0.9496,0.8398,0.7574,0.817,0.794,0.8032,0.6614,0.4142,0.3044,0.3592,0.2632,0.2586,0.011,0.6758,0.6098,0.8296,0.6264,0.6594,0.4066,0.0494,-0.2362,-0.2088,-0.1428,0.0164,0.1758,0.2252,0.1978,0.1648,0.3516,0.456,0.7142,0.9726,1,0.8846,0.8572,0.8902,0.989,0.8296,0.7088,0.434,0.2858,0.4066,0.2142,0.2472,0.0492,0.716,0.6174,0.8608,0.658,0.5478,0.0492,-0.1246,-0.3392,-0.3102,-0.2174,-0.316,-0.0376,-0.0492,-0.0434,0.0202,0.1304,0.3218,0.513,0.9072,1,0.8318,0.7102,0.8898,0.826,0.8724,0.7102,0.3624,0.2058,0.3566,0.1942,0.316,-0.0054,0.6304,0.674,1,0.788,0.5272,0.1684,0.1142,-0.2934,-0.2228,-0.212,-0.212,-0.174,-0.2934,-0.0652,-0.1304,0.1032,0.2718,0.4456,0.837,0.9456,0.6468,0.6522,0.7772,0.7826,0.8316,0.7554,0.2718,0.0924,0.3152,0.1848,0.3858,-0.1408,0.382,0.804,1,0.7286,0.2714,0.0302,0.0252,-0.0954,-0.1708,-0.1458,-0.1658,-0.0552,-0.0502,0.015,0.1408,0.1508,0.3668,0.5478,0.784,0.9246,0.9798,0.8744,0.8492,0.8392,0.8794,0.7186,0.5728,0.3568,0.3568,0.2714,0.3116,-0.3834,0.2378,0.9078,0.9272,0.2476,-0.0146,-0.0436,-0.2622,-0.2766,-0.398,-0.3932,-0.2718,-0.2912,-0.2282,-0.136,-0.131,-0.0436,0.1844,0.3592,0.7282,1,1,0.8398,0.864,0.9564,0.9224,0.801,0.5,0.4466,0.466,0.3932,0.4854,-0.868,0.4084,1,0.9316,-0.2666,-0.467,-0.5208,-0.6626,-0.8142,-0.7848,-0.7018,-0.5746,-0.6186,-0.4816,-0.467,-0.3448,-0.2224,-0.1492,0.1638,0.286,0.2958,0.4034,0.2274,0.5746,0.6234,0.5306,0.0612,0.0122,-0.1344,-0.154,-0.0806,-0.203,0.0182,0.709,0.7454,0.891,1,0.9272,0.709,0.3818,0.4546,0.2364,0.2728,0.1636,0.309,0.1636,0.4182,0.309,0.5272,0.5636,0.891,0.9636,1,1,0.8546,0.891,0.891,0.891,0.6728,0.3818,0.1272,0.309,-0.0546,0.0182,-0.1698,0.4716,0.4716,0.9246,0.8868,0.6226,0.6226,0.3208,0.2076,0.132,0.0944,0.2076,0.1698,0.283,0.283,0.3962,0.434,0.6226,0.6226,0.9622,1,0.6226,0.7358,0.6982,0.7736,0.585,0.585,0.2452,0.3584,0.2076,0.3208,0.3208,-0.3258,0.0562,0.9102,1,0.4832,-0.0338,-0.0786,-0.2584,-0.2134,-0.3708,-0.3932,-0.3034,-0.2808,-0.1686,-0.1012,-0.0786,0.1012,0.146,0.3034,0.6854,0.8876,1,0.7978,0.8426,0.8426,0.7978,0.6854,0.3932,0.3708,0.3484,0.3034,0.3708,-1,-1,-1,-1,-1,-1,-0.9884,-0.9834,-0.9798,-0.9806,-0.831,0.6294,0.5274,0.2798,0.2532,0.3756,0.5892,0.9,0.9906,0.6424,0.0914,-0.392,-0.9072,-0.9706,-0.982,-0.9756,-0.9762,-0.9208,-0.9798,-0.972,-0.9706,-0.9582,-0.9618,-1,-1,-1,-1,-1,-1,-0.9808,-0.9774,-0.9762,-0.9588,-0.7846,0.5738,0.4596,0.2186,0.1174,0.1014,0.3376,0.6746,0.949,0.5292,-0.0694,-0.5674,-0.9264,-0.972,-0.978,-0.9236,-0.862,-0.5164,-0.1544,-0.1524,-0.1718,-0.2084,-0.2636,-1,-1,-1,-1,-1,-1,-0.9468,-0.8868,-0.8,-0.4868,-0.3268,-0.796,-0.656,-0.6668,-0.59,-0.6468,-0.7534,-0.7568,-0.81,-0.68,-0.74,-0.81,-0.7034,-0.86,-0.96,-0.88,-0.39,0.4332,0.64,0.7432,0.5666,0.5866,0.5366,-1,-1,-1,-1,-1,-1,-0.0858,-0.9428,-0.5142,0.7714,1,1,0.0572,-0.6286,-0.6858,-0.7142,-0.6286,-0.5714,-0.6858,0.9428,1,1,1,-0.8286,-0.7142,1,1,1,1,-0.8,-0.8572,-1,-0.9428,0.7784,0.7718,0.7608,0.754,0.7474,0.74,0.6826,0.5956,0.534,0.3976,0.5898,0.617,0.5892,0.6126,0.6518,0.693,0.6548,0.5934,0.6518,0.7626,-0.7334,-0.3648,-0.7732,0.0792,0.664,0.4574,0.465,0.3666,0,0.1516,0.394,0.2728,0.2122,0.091,0.4242,0.4546,0.606,0.697,0.9394,0.8788,1,0.7576,0.6364,0.606,0.6666,0.697,0.7878,0.697,0.5152,0.2728,0.091,0.0606,0.1212,0.1818,-0.0606,0.0606,0.0606,0.1212,-0.1212,-0.5758,-0.255,0.3726,0.3334,0.0196,0.0196,-0.2156,-0.2352,0.1764,0.4118,0.7648,0.9412,0.9412,1,0.5882,0.549,0.5882,0.4902,0.6078,0.549,0.4706,0.255,0.1764,-0.2352,-0.2352,-0.2942,-0.098,-0.1176,-0.3726,-0.196,-0.1764,-0.3334,-0.5882,0.5116,0.7906,0.9302,0.4884,0.0466,0.186,0.1396,0.0698,0.2558,0.6046,0.8372,0.814,1,0.628,0.6512,0.5582,0.4884,0.4186,0.4418,0.3954,0.1396,0.093,-0.0698,-0.093,-0.2326,-0.2326,-0.186,-0.3024,0.2558,0.093,0,-0.279,1,-1,-1,1,-1,-1,-1,-0.8334,1,-0.921,-0.7632,-0.6974,-0.6842,-0.579,-0.671,-0.1974,-0.0394,0.0132,0.0264,0.3684,0.5526,0.5,0.9078,0.829,0.921,0.8026,1,0.7894,0.8684,0.75,0.6974,0.8422,0.7764,0.7764,0.8552,0.4606,0.6184,0.5264,0.6842,0.5394,0.329,'8'
-0.3744,0.1764,0.1328,0.273,0.384,0.616,0.8502,1,0.7996,0.7682,0.8696,0.9034,0.6642,0.5458,0.3624,0.1884,0.1908,0.1376,0.2054,0.2682,0.2826,0.483,0.5434,0.6184,0.5072,0.4348,0.3696,0.3406,0.302,0.4106,0.2198,0.227,-0.152,0.3486,0.241,0.2732,0.4078,0.4832,0.7686,0.7604,0.9004,0.8008,0.8062,0.9192,1,0.5962,0.4724,0.2086,0.179,0.066,-0.004,0.0768,0.101,0.3244,0.5558,0.5424,0.4858,0.319,0.187,0.0524,0.0768,0.3162,0.3244,0.2544,-0.1052,0.4156,0.302,0.3518,0.4516,0.529,0.7562,0.734,0.8948,0.7784,0.662,0.8614,1,0.6178,0.6454,0.2936,0.23,0.0278,-0.0582,-0.0858,-0.0278,0.0858,0.5624,0.5208,0.1386,0.0498,-0.097,-0.1246,-0.0138,0.1966,0.1994,0.241,-0.0648,0.4932,0.3544,0.2942,0.5204,0.5746,0.819,0.7376,0.822,0.632,0.6078,0.62,0.6562,1,0.9548,0.7316,0.5476,0.095,0.1432,0.2368,0.3936,0.4238,0.5806,0.457,0.104,-0.074,-0.0618,-0.0528,-0.101,-0.107,-0.0498,0.0166,0.14,0.8668,0.744,0.6826,0.8226,1,0.9078,0.9488,0.3856,0.1672,0.3584,0.2354,0.4232,0.4676,0.43,0.604,0.686,0.5836,0.6006,0.5256,0.5426,0.5018,0.6212,0.611,0.529,0.3072,0.2662,0.099,0.0614,-0.1296,0.0546,0.2798,-0.0586,0.7496,0.7524,1,0.9728,0.7714,0.7496,0.004,-0.0858,-0.2326,-0.17,0.2,0.2544,0.1674,0.287,0.17,0.3768,0.6028,0.747,0.5756,0.6054,0.483,0.6,0.6708,0.6816,0.649,0.4802,0.3252,0.0504,0.0422,0.0504,0.1374,-0.1098,0.9228,0.9814,0.8454,0.8794,0.2766,0.3848,-0.0046,-0.0262,-0.4004,-0.2024,-0.1098,0.1222,0.0418,-0.0726,-0.0418,0.082,0.4744,0.8702,1,0.8146,0.6908,0.6786,0.8888,0.83,0.7218,0.5642,0.3942,0.388,0.2766,0.2024,0.1562,-0.6,0.08,0.08,0.32,0.32,0.6,0.68,0.96,0.96,0.76,1,0.88,0.68,0.36,0.36,0.2,0.24,0.12,0.36,0.24,0.6,0.52,0.84,0.84,0.6,0.64,0.56,0.64,0.6,0.72,0.24,0.48,-0.48,0.04,0.04,0.28,0.28,0.68,0.56,1,0.96,0.88,0.76,0.92,0.8,0.56,0.48,0.36,0.32,0.32,0.24,0.48,0.36,0.76,0.64,0.84,0.68,0.64,0.56,0.64,0.48,0.88,0.8,0.52,0.0286,0.6572,0.5714,0.4,0.7142,0.7714,1,0.9142,0.3142,0.2,0.2,0.1714,0.2858,0.5142,0.5714,0.8,0.6858,0.2572,0.1428,0.3428,0.6286,0.6,0.6286,0.6,0.3142,-0.1428,0.0858,-0.0286,0,-0.3142,-0.1714,0.2858,-1,-1,-1,-1,-1,-1,-0.9744,-0.9766,-0.9284,-0.9284,-0.6862,-0.1248,0.3778,0.3736,0.4696,0.4686,0.269,0.1644,0.3256,0.7982,0.8292,-0.1388,-0.6638,-0.8026,-0.8484,-0.8528,-0.9136,-0.9466,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9804,-0.9874,-0.9392,-0.9366,-0.6116,0.3404,0.5644,0.3022,-0.0272,-0.044,-0.1488,-0.3666,-0.477,-0.32,-0.3172,-0.6804,-0.8548,-0.893,-0.9212,-0.9196,-0.9434,-0.9602,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9528,-0.9468,-0.86,-0.73,-0.7368,-0.588,-0.636,-0.588,-0.716,-0.7164,-0.6892,-0.7838,-0.791,-0.9,-0.8474,-0.8964,-0.6934,-0.56,-0.54,-0.6068,-0.5434,-0.84,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2858,-0.5714,0.2,0.0286,1,1,-0.5142,-0.6858,-1,-0.8858,-0.8,-0.7142,-0.7428,-0.8286,-0.5714,-0.7142,-0.6572,-0.8286,-0.6286,-0.5428,-0.5714,-0.5714,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.9204,-0.157,-0.2312,-0.2578,-0.3106,-0.3828,-0.4154,-0.473,-0.5682,-0.7606,-0.405,-0.7066,0.2588,-0.5228,-0.186,0.2682,0.5364,0.6802,1,0.1154,0.5,0.7308,1,1,1,0.923,0.6154,0.423,0.5,0.5384,0.6538,0.6538,0.5,0.577,0.423,0.3076,-0.0384,0.0384,0,0.0384,0.077,-0.077,-0.1154,-0.1924,0,-0.1924,-0.2308,-0.2308,-0.077,-0.2692,-0.3462,-0.1048,0.1238,0.3714,0.8476,0.8666,1,0.7904,0.3714,0.219,0.2762,0.5048,0.581,0.581,0.4286,0.4476,0.3904,-0.0096,-0.4666,-0.3714,-0.2952,-0.238,-0.3714,-0.4286,-0.3714,-0.5238,-0.5048,-0.581,-0.8666,-0.6762,-0.7524,-0.6762,-0.6762,0.0096,0.2762,0.4286,0.8858,0.8096,1,0.8666,0.2572,0.0666,0.219,0.4858,0.638,0.562,0.4096,0.4666,0.5048,0.1238,-0.162,-0.1048,-0.1428,-0.0476,-0.162,-0.3714,-0.4666,-0.3524,-0.4476,-0.3524,-0.638,-0.4096,-0.6572,-0.8096,-0.8476,-0.1502,-1,-1,1,-0.6,-1,-0.4,-0.8334,-1,0.0304,0.2526,0.394,-0.0102,0.4748,0.3334,0.5758,0.495,1,0.8788,0.7778,0.7172,0.8788,0.9394,0.7576,0.1112,0.7172,0.8788,1,0.697,0.7576,0.8788,0.8182,0.4748,0.2728,0.0102,0.0102,0.4546,0.4546,-0.091,-0.1314,-0.3536,'9'
-0.3388,0.1552,0.1306,0.304,0.4816,0.6756,0.8572,1,0.7816,0.7552,0.8244,0.8448,0.549,0.4244,0.253,0.2204,0.1816,0.147,0.1796,0.1428,0.2612,0.2836,0.4632,0.4898,0.5552,0.349,0.3204,0.2326,0.298,0.296,0.3368,0.5082,-0.2452,0.2222,0.1636,0.3438,0.5242,0.6792,0.9014,1,0.7296,0.7652,0.8532,0.8512,0.6164,0.5556,0.3648,0.2976,0.262,0.174,0.3166,0.197,0.3542,0.4466,0.545,0.5912,0.6352,0.369,0.3752,0.218,0.1614,0.2494,0.1886,0.4192,-0.1704,0.3384,0.2556,0.4236,0.5538,0.6616,0.9674,1,0.9974,0.9524,0.8496,0.7844,1,0.822,0.6716,0.4286,0.4686,0.2206,0.213,0.2706,0.3558,0.5288,0.6642,0.812,0.5388,0.376,0.2456,0.183,0.2982,0.1854,0.2958,0.4586,-0.188,0.2876,0.1732,0.3374,0.4844,0.5268,0.843,0.7658,0.8182,0.6338,0.5268,0.8008,0.8206,1,0.9302,0.3922,0.213,0.1432,0.2628,0.2826,0.482,0.3872,0.574,0.3226,-0.041,-0.1208,-0.091,-0.1482,-0.1582,-0.0212,-0.0136,0.1258,-0.1666,0.3196,0.2322,0.3688,0.5684,0.6694,1,0.8114,0.5164,0.2158,0.2214,0.53,0.5246,0.705,0.776,0.8278,0.4508,0.3716,0.3934,0.4536,0.5274,0.5492,0.4972,0.1174,-0.1092,-0.205,-0.347,-0.3688,-0.306,-0.3852,-0.2296,-0.0082,-0.0674,0.445,0.5172,0.606,0.9146,0.7898,1,0.5534,0.3136,-0.1068,-0.2216,-0.0608,0.1528,0.1264,0.3892,0.5106,0.6388,0.34,0.4286,0.573,0.642,0.734,0.8128,0.6912,0.3136,0.0772,-0.271,-0.2446,-0.2086,-0.1856,-0.041,-0.028,0.0884,0.7014,0.8782,1,0.9724,0.8192,0.4656,0.0256,0.0216,-0.4224,-0.5088,-0.3714,-0.5874,-0.5206,-0.1316,0.0176,0.1316,0.3596,0.4224,0.7878,0.7092,0.5678,0.6306,0.7446,0.8546,0.4734,0.1434,-0.1788,-0.1198,-0.1002,-0.2142,-0.1316,-0.4546,0.2272,0.3182,0.1364,0.4546,0.6818,0.5454,1,1,0.8182,0.8636,0.909,0.6818,0.2272,0.1818,0.0454,0,0,-0.2728,0,0.091,0.1364,0.3636,0.409,0.409,0.1818,0.0454,0.0454,0.1364,0.2272,0.2728,0.5,-0.4482,0,0.069,0.2414,0.4828,0.6896,0.862,1,0.8966,0.7242,0.862,0.931,0.6896,0.4138,0.2758,0.2758,0.2068,0.1724,0.2758,0.2758,0.3794,0.4482,0.7242,0.7242,0.5862,0.5518,0.4138,0.3448,0.3794,0.3448,0.4482,0.3448,-0.1666,0.3334,0.2708,0.4584,0.5624,0.6666,0.9584,1,0.9584,0.9376,0.8542,0.7916,0.9376,0.8124,0.5416,0.3334,0.375,0.0416,0.0208,-0.0208,0.2916,0.2916,0.3958,0.5624,0.4584,0.3542,0.2916,0.1876,0.3124,0.5,0.5624,0.7292,-1,-1,-1,-1,-1,-1,-0.982,-0.8876,-0.7546,-0.7434,-0.2864,0.3876,0.674,0.8856,0.4674,0.2906,0.1712,0.097,0.0396,-0.1332,-0.2816,-0.4528,-0.7566,-0.9202,-0.9292,-0.9168,-0.9064,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9924,-0.9386,-0.842,-0.8412,-0.307,0.3564,0.2788,0.6426,0.0066,-0.2212,-0.3698,-0.4484,-0.5632,-0.6786,-0.7832,-0.8518,-0.9348,-0.9666,-0.9608,-0.9658,-0.9606,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.87,-0.8768,-0.7034,-0.6934,-0.6468,-0.651,-0.6474,-0.6438,-0.6256,-0.6546,-0.6382,-0.651,-0.8074,-0.9,-0.945,-0.9568,-0.8568,-0.5334,-0.4068,-0.4768,-0.59,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3714,1,1,0.3714,1,1,-0.9428,-0.3142,0.4,-0.8286,-0.8,-0.9428,-0.5428,-0.6858,-0.6572,-0.1714,-0.4,-0.7142,-0.9142,-0.9142,-0.4286,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.1758,-0.1834,-0.1956,-0.2122,-0.2274,-0.2594,-0.3738,-0.3688,-0.6034,-0.5398,-0.6934,0.3294,0.0844,-0.5306,0.5634,0.6066,0.4906,0.4584,0.155,0.5492,0.831,0.9154,1,0.9718,0.9436,0.662,0.5492,0.6056,0.6902,0.8028,0.8028,0.7746,0.7184,0.7746,0.8028,0.662,0.4648,0.2676,0.183,0.0986,0.0422,-0.1268,-0.2676,-0.2958,-0.2676,-0.2394,-0.3802,-0.4366,-0.6338,-0.6338,-0.131,0.269,0.6276,0.9724,0.931,1,0.8896,0.3932,0.3104,0.338,0.4896,0.9172,0.9034,0.6,0.5862,0.8068,0.8482,0.6828,0.4758,0.0344,0.1172,0.0758,0.0068,-0.2552,-0.2828,-0.3104,-0.2,-0.3242,-0.6414,-0.5034,-0.4758,-0.6276,-0.0338,0.4068,0.4238,1,0.8814,0.8306,0.7796,0.4238,0.2372,0.1356,0.2712,0.644,0.5424,0.1186,0.2712,0.5424,0.5594,0.1526,0.1526,0,0.2372,0.2712,0.017,0.0508,-0.1356,-0.1526,-0.2712,-0.5084,-0.4068,-0.4746,-0.4406,-0.7796,1,-1,-1,1,-1,-0.6,-0.6,-0.8334,-1,-0.3282,0.0624,0.3282,0.1562,-0.2188,-0.0782,-0.0782,-0.25,0.125,0.9374,1,0.9374,0.8438,0.2968,-0.2188,0.0468,0.2812,0.0156,0.375,0.0624,0.0468,0.0312,-0.1718,-0.3126,-0.2656,-0.0312,-0.1406,-0.3594,-0.2656,-0.2188,-0.2188,-0.5312,'9'
-0.0548,0.5414,0.609,1,0.91,0.4572,0.277,0.218,0.0324,0.1758,0.0886,0.1618,0.1504,0.232,0.3586,0.5724,0.9072,0.896,0.5668,0.4262,0.3924,0.367,0.6794,0.6652,0.4542,0.4008,0.249,0.277,0.1026,0.1618,0.0492,-0.0774,-0.0588,0.5262,0.6242,0.8594,0.83,0.9608,0.5066,0.5294,0.3072,0.2386,0.1896,0.0948,0.2942,0.366,0.4804,0.9478,1,0.9706,0.9216,0.598,0.513,0.7156,0.7386,0.866,0.4968,0.5228,0.2484,0.2254,0.2092,0.255,0.4052,0.3464,-0.0564,0.5084,0.485,0.6976,0.9236,1,0.5416,0.5084,0.1362,-0.01,-0.2426,-0.073,0.03,0.3588,0.3788,0.5848,0.6312,0.8738,0.6944,0.3754,0.4618,0.5316,0.5016,0.5382,0.4452,0.3422,0.3754,0.0798,0.0632,0.02,0.103,0.1628,-0.0554,0.4884,0.4562,0.6244,1,0.9892,0.4634,0.3024,-0.0948,-0.4526,-0.5886,-0.0412,-0.1414,0.1128,-0.0126,0.1128,0.6744,0.6494,0.7568,0.5922,0.56,0.2022,0.2844,0.7316,0.6458,0.1878,0.1056,-0.0806,-0.3238,-0.2666,-0.1664,-0.1056,0.064,0.6784,0.6578,0.8268,1,0.9876,0.2454,0.0722,-0.4516,-0.7814,-0.6742,-0.0846,-0.1876,-0.0392,-0.3072,-0.1712,0.6164,0.5752,0.901,0.6866,0.4104,0.4432,0.6042,0.9918,0.8516,-0.0474,-0.3526,-0.3568,-0.2372,-0.2536,-0.2206,-0.2618,-0.019,0.619,0.6476,1,0.819,0.527,0.238,0.0698,-0.1842,-0.1556,-0.3842,-0.235,-0.2444,-0.1588,-0.1048,0.0444,0.1556,0.4318,0.619,0.7366,0.5524,0.346,0.5142,0.6254,0.4476,0.3428,0.0888,-0.054,-0.1682,-0.0888,-0.1746,-0.127,-0.0194,0.7392,0.7272,1,0.931,0.0674,-0.0164,-0.1544,-0.2204,-0.3914,-0.4812,-0.4392,-0.4662,-0.2444,-0.2894,0.0794,0.0464,0.1664,0.3254,0.829,0.7602,0.7122,0.6822,0.922,0.826,0.3164,0.3014,0.0434,-0.1574,0.0974,-0.0104,0.1604,0.087,0.7392,0.7392,1,0.9566,0.3478,0.3044,0.2174,0.0434,0.174,0,0.087,0.087,0.2608,0.3044,0.4348,0.6086,0.6522,0.4348,0.3914,0.2174,0.0434,0.6956,0.7392,0.5652,0.5652,0.2608,0.3914,0.3478,0.3478,0.3044,0.087,0.1186,0.6272,0.661,1,0.9662,0.4238,0.2542,0.2542,-0.017,0.2542,0.1526,0.322,0.2204,0.356,0.4238,0.5254,0.8984,0.9662,0.6272,0.5594,0.4238,0.4916,0.7628,0.7628,0.5932,0.5594,0.4916,0.4576,0.2882,0.2542,0.017,-0.1864,0.039,0.6104,0.6624,0.8442,0.6624,0.7142,0.1688,0.091,-0.1168,-0.2728,-0.6364,-0.091,0.013,0.013,0.039,0.2468,0.3766,0.6104,0.8962,1,0.5064,0.3506,0.1948,0.1688,0.091,0.039,0.013,-0.4286,-0.3766,-0.2988,-0.2728,-0.2728,-1,-1,-1,-1,-0.988,-0.9892,-0.9832,-0.9866,-0.9776,-0.9058,-0.5644,0.6372,0.5404,0.1238,-0.0164,-0.1918,-0.3186,-0.4462,-0.4932,-0.239,-0.1332,-0.521,-0.8134,-0.902,-0.9674,-0.9634,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9836,-0.987,-0.908,-0.595,-0.399,-0.3676,-0.478,0.4556,0.5122,0.2564,0.0916,-0.1144,-0.2634,-0.446,-0.5552,-0.3778,-0.2784,-0.5812,-0.8338,-0.8918,-0.939,-0.9488,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9184,-0.9268,-0.8,0.54,0.7,0.5632,-0.1168,-0.8268,-0.8334,-0.8112,-0.7912,-0.834,-0.858,-0.858,-0.876,-0.896,-0.886,-0.81,-0.9534,-0.5334,-0.2768,-0.57,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2286,-0.3142,1,1,1,1,1,1,-0.2,-0.9428,-0.8286,-0.8286,-0.9428,-0.9428,-0.7428,-0.6858,-0.6858,-0.3714,-0.3714,-0.7142,-0.6858,-0.9142,-1,-1,-1,-1,-1,-1,-1,0.4988,0.5196,0.5584,0.5888,0.615,0.6572,0.6992,0.7498,0.7866,0.6278,-0.1006,-0.1274,-0.1476,-0.1446,-0.1602,-0.1712,-0.185,-0.1904,-0.144,0.0278,-0.6666,0.1294,-0.4526,-0.138,0.326,0.7172,0.9682,1,-0.8592,-0.7512,-0.4366,-0.4508,-0.4648,-0.3286,-0.2958,-0.0234,0.1362,0.2488,0.3004,0.5212,0.6808,0.7276,0.8498,1,0.9954,0.7606,0.8262,0.6432,0.7652,0.8498,0.6902,0.6384,0.5306,0.662,0.5024,0.4132,0.2206,0.2724,0.2488,-0.183,-0.8828,-0.5636,-0.4262,-0.4102,-0.301,-0.3334,-0.192,0.0384,0.1516,0.2282,0.4304,0.6122,0.7374,0.794,0.9676,1,0.6848,0.6324,0.6888,0.798,0.7616,0.7494,0.891,0.7778,0.6566,0.6444,0.608,0.491,0.3454,0.5314,0.4708,0.1192,-0.0082,0.147,0.0898,-0.0448,-0.2082,-0.3428,0.0122,0.1102,0.4572,0.4164,0.4204,1,0.9756,0.6082,0.8734,0.7632,0.5552,0.5306,0.604,0.5756,0.5306,0.3836,0.4694,0.3388,0.3184,0.453,0.4694,0.3062,0.3346,0.1632,0.1062,-0.1592,-0.4242,-1,-1,1,-0.8,-1,0,-0.1,-1,-0.1898,0.3038,0.3418,0.3292,0.0632,0.1392,0.0254,0.2026,0.3544,0.9368,1,0.8354,0.7342,0.443,0.1518,0.367,0.4556,0.443,0.481,0.519,0.5822,0.4178,0.3544,0.0506,0.1266,0.076,0.0886,0.2912,0.2406,-0.0506,0.0886,0,'10'
-0.0338,0.6084,0.6056,1,0.9802,0.369,0.3154,0.2338,0.1718,0.1324,0.0732,0.2254,0.155,0.2,0.1746,0.617,0.569,0.6198,0.555,0.462,0.3802,0.3352,0.2788,0.4508,0.338,0.2874,0.2676,0.462,0.4478,0.4508,0.4084,0.1014,-0.0272,0.588,0.5822,0.9972,0.8912,0.8656,0.7168,0.5164,0.3104,0.2762,0.2876,0.4248,0.3018,0.3992,0.5566,0.6338,0.9314,1,0.5508,0.2446,0.4164,0.402,0.3506,0.362,0.5108,0.4106,0.4364,0.3104,0.4564,0.3934,0.3048,0.1788,-0.0222,0.6114,0.5318,0.7738,0.809,1,0.6848,0.5254,0.0606,0.1082,0.121,0.0988,0.1688,0.0892,0.1274,0.0542,0.344,0.516,0.6528,0.465,0.57,0.7324,0.7994,0.844,0.8312,0.5318,0.4586,0.1528,0.0574,0.2802,0.0764,0.1942,-0.0052,0.6082,0.5026,0.7274,0.8808,1,0.4992,0.4616,0.012,-0.0528,-0.1856,-0.213,0.0018,-0.1142,-0.0188,0.0222,0.063,0.7546,0.741,0.6832,0.6286,0.765,0.7002,0.7684,0.6354,0.6798,0.3458,0.2606,0.2504,0.1414,0.0324,-0.0392,-0.0258,0.5404,0.5736,0.7536,0.9448,0.9558,0.5036,0.342,0,-0.2868,-0.2426,-0.2978,-0.3566,-0.114,-0.0478,0.0478,0.0882,0.4118,0.8934,0.8308,0.6324,0.7758,0.8714,1,0.989,0.5846,0.2904,0.0772,-0.0588,-0.0624,-0.125,-0.2132,-0.076,0.4904,0.6996,0.8366,0.768,0.7262,0.2662,0.0418,-0.0532,-0.3004,-0.3042,-0.27,-0.441,-0.308,-0.0342,-0.019,0.3498,0.692,0.9012,0.5818,0.6122,0.6768,0.7832,1,0.6882,0.3802,-0.076,-0.1558,-0.2662,-0.2928,-0.251,-0.1254,-0.0984,0.5206,0.7746,1,0.6744,0.5348,0.0662,0.059,-0.2808,-0.399,-0.3416,-0.4382,-0.4312,-0.3954,-0.3488,-0.1772,0.009,0.3024,0.6708,0.771,0.4168,0.3346,0.4026,0.5206,0.3024,-0.0232,0.0018,-0.2236,-0.2738,-0.288,-0.2738,-0.2236,0.087,0.826,0.826,1,1,0.3478,0.3478,0.3478,0.2608,0.1304,0.087,0.174,0.1304,0.0434,0,0.4782,0.5652,0.6956,0.6086,0.4348,0.3914,0.6086,0.6086,0.7826,0.6956,0.7826,0.7826,0.7826,0.7826,-0.0434,0.0434,0.2174,-0.0612,0.6326,0.6326,1,0.9592,0.347,0.2244,0.1836,0.1428,0.0204,-0.0204,0.2244,0.1428,0.1428,0.0204,0.5918,0.551,0.4694,0.4286,0.551,0.5102,0.5102,0.4286,0.4286,0.4286,0.3878,0.347,0.5102,0.551,0.4286,0.4286,-0.0204,0.0222,0.6444,0.5556,0.9556,0.8222,1,0.7778,0.6444,0.2,0.3334,0.3778,0.4666,0.3778,0.4222,0.6222,0.5778,0.9334,0.8666,0.2222,0.1778,0.4222,0.1334,0.4222,0.6888,0.8888,0.4666,0.6666,0.3112,0.4,0.4444,0.4222,0.3778,-1,-1,-1,-1,-0.9894,-0.9894,-0.983,-0.9138,-0.9442,-0.948,-0.502,0.385,0.9258,0.2692,-0.0268,-0.1204,-0.2226,-0.342,-0.4888,-0.6016,-0.6114,-0.5856,-0.7746,-0.917,-0.965,-0.9644,-0.9686,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9854,-0.9842,-0.8816,-0.5726,-0.2542,-0.499,-0.4542,0.2692,0.8834,0.3364,0.0666,0.0132,-0.13,-0.2616,-0.4256,-0.6066,-0.6582,-0.6576,-0.8098,-0.895,-0.9332,-0.9292,-0.9414,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9528,-0.96,-0.8868,0.25,0.6232,0.65,-0.27,-0.8468,-0.82,-0.8178,-0.8068,-0.7356,-0.7312,-0.724,-0.756,-0.822,-0.846,-0.918,-0.9234,-0.6134,-0.4534,-0.3668,-0.5868,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.0286,-0.5428,1,1,1,1,1,1,-0.4,-0.6286,-0.6,-0.8,-0.8,-0.9142,-0.9142,-0.9428,-0.8,-0.7714,-0.6,-0.6858,-0.8858,-0.8,-0.4572,-1,-1,-1,-1,-1,-1,0.467,0.4812,0.5084,0.523,0.5646,0.5982,0.6534,0.7056,0.752,0.7138,-0.0752,-0.1304,-0.1868,-0.2296,-0.3336,-0.4068,-0.4006,-0.236,-0.0202,0.1986,-0.72,0.1058,-0.3778,-0.1814,0.1814,0.493,0.787,1,-0.6034,-0.179,-0.1184,-0.0854,0.0304,0.0192,0.146,0.2672,0.427,0.3388,0.5648,0.5538,0.697,0.8678,1,0.9284,0.9614,0.9284,0.8898,0.7796,0.7246,0.8016,0.7852,0.7576,0.5538,0.5812,0.5702,0.427,0.3388,0.135,0.19,-0.135,-0.9076,-0.5756,-0.4202,-0.395,-0.4244,-0.3782,-0.1386,-0.0924,0.1806,0.1302,0.2564,0.5336,0.5756,0.6722,1,0.895,0.7352,0.7606,0.8362,0.7352,0.7016,0.6638,0.71,0.8278,0.811,0.7564,0.5504,0.5504,0.5252,0.4916,0.353,0.0252,0.0762,0.2944,0.2994,-0.1472,-0.1776,-0.2894,-0.0406,0.1016,0.5584,0.4366,0.6294,0.9848,0.995,0.9188,1,0.8934,0.7258,0.6446,0.6954,0.7564,0.8578,0.6142,0.5686,0.604,0.462,0.4162,0.3858,0.3908,0.3096,0.4874,0.4112,0.2336,-0.3554,-1,-1,1,-0.8,-1,-0.8,-0.1334,-1,-0.4202,-0.0144,0,0.1014,-0.2174,-0.2464,-0.029,0.2464,0.7246,1,0.4928,0.8986,0.6812,0.087,0.1014,0.029,0.4928,0.5072,0.2754,0.4928,0.3768,0.1304,0.029,-0.0434,0.029,0.029,-0.0434,-0.2754,-0.3914,-0.174,-0.145,-0.2754,'10'
0.1492,0.9006,0.9126,1,0.9722,0.654,0.654,0.2246,0.2406,0.0656,0.1054,0.0498,0.01,0.1134,0.1968,0.2684,0.3678,0.7216,0.8926,1,0.9682,0.6422,0.7256,0.7734,0.7574,0.6302,0.6144,0.4036,0.3518,0.2564,0.3558,0.4156,0.1422,0.8212,0.7968,1,0.9066,0.9634,0.8414,0.0692,-0.0448,0.1666,0.0366,0.3048,0.0934,-0.0488,-0.0366,0.1422,0.1544,0.4796,0.8496,0.9228,0.8374,0.8944,0.6544,0.756,0.6748,0.6464,0.37,0.3212,0.1952,0.191,0.1544,0.2886,0.0456,0.7398,0.6758,0.863,0.7078,0.9818,0.7488,0.1826,-0.0228,0.1278,-0.0092,0.073,-0.443,-0.5982,-0.1964,-0.1918,-0.1462,0.4292,1,0.895,0.7442,0.6392,0.4246,0.5296,0.5388,0.178,0.1872,0.0548,0.1142,-0.137,-0.1552,-0.306,0.091,0.7948,0.697,0.8554,0.8276,1,0.5384,-0.0582,-0.007,-0.0164,-0.1002,-0.1748,-0.6736,-0.324,-0.1376,-0.2448,0.021,0.8602,0.9674,0.7808,0.7808,0.3706,0.4126,0.6876,0.6364,0.1048,-0.049,-0.049,-0.1934,-0.0396,-0.1376,-0.1376,0.154,0.863,0.7458,0.907,0.8534,1,0.3986,-0.3202,-0.1736,-0.2322,-0.1246,-0.3202,-0.3056,-0.242,-0.0856,-0.0758,0.0758,0.6772,0.7506,0.9952,0.8534,0.6136,0.6234,0.7652,0.3496,0.0464,-0.0172,-0.291,0.0416,-0.0122,-0.066,-0.0318,-0.0464,0.6,0.6364,1,0.8102,0.6364,0.3454,0.192,-0.2324,-0.1556,-0.1112,-0.0666,-0.0868,-0.1112,0.0828,0.0384,0.3292,0.5434,0.8506,0.7334,0.6848,0.608,0.7858,0.592,0.4828,0.1556,0.2,-0.1556,-0.192,-0.1636,-0.0626,0.1596,-0.1556,0.495,0.6646,1,0.8182,0.1354,-0.1314,-0.091,-0.3656,-0.3778,-0.4586,-0.4788,-0.5152,-0.5272,-0.2646,-0.2646,-0.0666,0.091,0.3494,0.4424,0.5354,0.491,0.596,0.5272,0.107,-0.196,-0.204,-0.293,-0.4262,-0.4102,-0.3576,-0.1878,-0.25,0.6,0.65,0.3,0.2,0,-0.1,-0.05,-0.1,-0.4,-0.45,-0.45,-0.55,-0.15,-0.1,-0.15,0.1,0.55,0.45,1,0.85,0.6,0.8,0.7,0.9,0.55,0.1,0.25,0.25,0.2,0.25,0.25,0.193,0.7894,0.7894,0.9298,0.965,0.579,0.579,0.4036,0.4036,0.1228,0.193,0.0878,0.0176,0.1578,0.2632,0.4736,0.5088,0.8948,1,0.7544,0.6842,0.579,0.5088,0.6842,0.579,0.5438,0.6492,0.4736,0.2982,0.228,0.3684,0.5088,0.091,0.7402,0.7402,1,0.7662,0.7922,0.4286,0.1688,-0.2728,-0.2728,-0.2988,-0.2728,-0.013,-0.039,0.065,-0.013,0.091,0.7662,0.8182,0.4806,0.5584,0.6364,0.8182,0.6624,0.5324,0.1688,0.1428,-0.6104,-0.2468,-0.1688,-0.2208,0.091,-1,-1,-1,-1,-0.9766,-0.9696,-0.7846,-0.6708,-0.6668,-0.802,-0.6424,0.5804,0.9452,0.7084,0.5236,0.3672,0.2656,0.1254,-6e-04,0.1742,0.4098,-0.0564,-0.7106,-0.9604,-0.9542,-0.9532,-0.935,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.965,-0.9594,0.0364,0.697,-0.4354,-0.5146,-0.367,0.588,0.9372,0.8424,0.5874,0.4184,0.3086,0.1268,-0.0414,0.1198,0.3728,-0.1526,-0.7278,-0.8946,-0.9138,-0.908,-0.9074,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.9134,-0.12,0.3732,-0.04,0.0032,-0.2668,-0.7572,-0.8486,-0.863,-0.8744,-0.8858,-0.883,-0.8858,-0.8726,-0.8426,-0.87,-0.905,-0.8168,-0.5034,-0.4834,-0.5568,-0.7134,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,1,0.2286,-0.1714,0.1714,-0.7714,-0.8572,-0.8,-0.9142,-0.9142,-0.9428,-0.9428,-0.7142,0.6,0.6572,-0.2572,-0.4572,-0.8572,-0.9142,-0.4572,-1,-1,-1,-1,-1,-1,0.4546,0.4742,0.4846,0.503,0.5234,0.5438,0.5632,0.5966,0.6046,0.5122,0.3942,0.4254,0.4164,0.4118,0.4732,0.4542,0.4502,0.4162,0.3628,0.2736,-0.7334,-0.1648,-0.3942,0.0278,0.655,0.9586,0.9272,1,-0.251,-0.1854,-0.0154,0.0464,0,0.058,0.1428,0.22,0.39,0.4248,0.5406,0.6988,0.8108,1,0.6718,0.5792,0.5482,0.722,0.8416,0.7414,0.7374,0.61,0.5638,0.4826,0.3474,0.4518,0.4248,0.224,0.1776,0.2008,-0.0308,-0.278,-0.1402,0.1496,0.271,0.0608,-0.0234,-0.042,0.1168,-0.0888,0.2476,0.687,0.8972,0.7616,1,0.8738,0.799,0.7476,0.7898,0.9906,0.944,0.7336,0.8878,0.7242,0.8878,0.729,0.7804,0.5328,0.6028,0.3598,0.3272,0.2336,0.2616,0.07,-0.276,0.1002,0.1942,0.0224,-0.0348,-0.2598,-0.2066,-0.1574,0.1738,0.9632,1,0.6074,0.6442,0.6032,0.4478,0.2802,0.3496,0.3988,0.3702,0.1166,0.1042,0.1248,0.0838,0.002,0.0306,-0.0552,-0.1412,-0.1698,-0.272,-0.1984,0.0144,-0.3048,1,-1,-1,1,-0.8,-1,-1,0,-1,-0.5284,0.1544,0.187,-0.1056,0.1544,-0.3008,-0.1708,-0.0406,0.057,0.8862,1,0.87,0.5122,0.2358,-0.0244,-0.057,0.1544,0.1708,0.5122,0.2032,0.1544,-0.3822,-0.4146,-0.2846,0.0082,0.0894,-0.0894,-0.3822,-0.5448,-0.3496,-0.2196,-0.561,'11'
-0.1698,0.6688,0.6974,0.9222,1,0.64,0.6932,0.1942,0.1902,-0.1002,0.0674,0.0798,0.1738,0.137,0.2106,0.1738,0.497,0.5502,0.9182,0.8854,0.9304,0.8242,0.8486,0.816,0.7832,0.7424,0.4602,0.276,0.0838,0.0594,-0.047,-0.0144,-0.0312,0.5536,0.5328,0.8166,0.744,0.8824,0.789,0.4256,0.3114,0.1418,0.0762,0.3114,0.2352,0.4084,0.3356,0.481,0.5364,0.7024,0.8512,1,0.8616,0.7474,0.7162,0.8062,0.7232,0.5744,0.384,0.2214,0.2422,0.256,0.1972,0.218,-0.1106,0.4746,0.3996,0.681,0.7486,0.9288,0.5834,0.4296,0.062,0.0882,0.1444,0.0994,0.3096,0.2196,0.347,0.3884,0.576,0.8424,1,0.8574,0.7786,0.5348,0.531,0.576,0.546,0.3772,0.2458,0.1258,0.1408,0.0018,0.1106,0.122,-0.076,0.4642,0.4978,0.6878,0.941,0.9832,0.4514,0.3502,0.0632,-0.1688,-0.0632,0.1856,0.1984,0.27,0.1518,0.2912,0.54,0.6624,0.9958,1,0.654,0.4178,0.5738,0.6498,0.654,0.4262,0.3292,0.1224,0.0844,0,-0.0296,0.0296,-0.01,0.565,0.62,0.75,1,0.93,0.295,0.045,-0.08,-0.25,-0.305,0.03,-0.185,-0.06,-0.02,-0.055,0.255,0.615,0.77,0.66,0.65,0.485,0.785,0.955,0.595,0.535,0.26,0.165,-0.14,-0.23,-0.245,-0.26,0.0882,0.7058,0.8176,0.947,0.8352,0.6764,0.1412,-0.3648,-0.4412,-0.5824,-0.5588,-0.3764,-0.5176,-0.5412,-0.5882,-0.1412,0.0058,0.4648,0.6176,1,0.7058,0.4352,0.9058,0.847,0.9352,0.447,0.2824,-0.1648,-0.2824,-0.2294,-0.4706,-0.4294,0.0328,0.623,0.8908,1,0.3334,0.2022,-0.0274,-0.4044,-0.4536,-0.8852,-0.9344,-0.6284,-0.683,-0.6612,-0.4864,-0.5192,-0.2896,-0.164,0.4208,0.9454,0.7924,0.7432,0.7104,0.7814,0.4208,0.2842,-0.0656,-0.4044,-0.4754,-0.246,-0.3442,-0.2786,0,0.7392,0.826,0.7826,0.913,0.7826,0.4782,0.3914,0.1304,0.0434,0.174,0.087,-0.1304,0,-0.2174,0.0434,0.3044,0.1304,0.4348,0.826,0.913,0.6086,0.8696,0.8696,1,0.9566,0.7392,0.3478,0.1304,-0.087,-0.174,-0.1304,-0.2608,0.6086,0.6522,0.9566,1,0.5652,0.6522,0.174,0,-0.2608,0,0,0.3044,0.1304,0.2608,0.2174,0.4348,0.3914,0.826,0.8696,0.7392,0.6956,0.7826,0.826,0.6522,0.6522,0.3914,0.3478,0.1304,0.174,-0.174,-0.087,-0.015,0.5522,0.582,0.7314,0.9402,0.8508,0.2538,-0.1344,-0.0746,-0.2238,-0.3134,-0.0746,-0.2238,-0.1344,-0.015,-0.1044,0.1344,0.4328,0.6418,0.8806,0.8208,0.3432,0.9104,1,0.7612,0.612,0.4328,0.1344,-0.194,-0.2538,-0.403,-0.4926,-1,-1,-1,-1,-0.9838,-0.9832,-0.9422,-0.6454,-0.8016,-0.8978,-0.807,0.7396,0.7988,0.556,0.4612,0.3884,0.3206,0.0946,-0.1342,-0.3556,-0.445,-0.482,-0.64,-0.8654,-0.959,-0.967,-0.953,-0.9624,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9798,-0.9778,-0.7828,1,-0.5282,-0.764,-0.6728,0.6004,0.8286,0.9128,0.8926,0.6526,0.4978,0.1302,-0.221,-0.4896,-0.559,-0.6158,-0.739,-0.8748,-0.9436,-0.9522,-0.9494,-0.9558,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.95,-0.9434,-0.7934,0.0766,0.1766,0.0732,-0.08,-0.78,-0.8572,-0.8486,-0.88,-0.8886,-0.8656,-0.8552,-0.8076,-0.8052,-0.7826,-0.8876,-0.8426,-0.556,-0.456,-0.4194,-0.7126,-0.5894,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6858,0.6,1,1,1,1,0.8858,1,-0.2858,-0.9142,-0.9714,-1,-0.8858,-0.8286,-0.5142,-0.6,-0.8,-0.8,-0.7714,-0.5142,-0.6572,-0.8858,-0.9142,-0.2858,-1,-1,-1,-1,-1,0.7194,0.7318,0.735,0.7444,0.76,0.7746,0.7946,0.8156,0.8374,0.6344,0.3034,0.2628,0.25,0.2412,0.273,0.223,0.1946,0.13,0.0624,0.2714,-0.68,-0.153,-0.6732,-0.0818,0.6688,0.9254,0.8728,1,-0.3222,0.1226,0.1684,0.1144,0.1768,0.2142,0.4012,0.3472,0.5176,0.5052,0.7048,0.7338,0.8296,1,0.8088,0.6382,0.501,0.8336,0.792,0.792,0.8004,0.6424,0.5718,0.5218,0.501,0.4636,0.3472,0.2266,0.1976,0.264,0.0852,-0.2848,-0.261,0.0838,0.1922,0.1674,0.0198,-0.0542,0.133,0.1232,0.266,0.5812,0.8966,0.8326,0.803,0.9704,0.867,0.798,0.9162,0.867,0.8078,1,0.7932,0.7882,0.6848,0.6798,0.6206,0.6354,0.6206,0.335,0.2512,0.1822,0.1182,-0.064,-0.1362,0.0724,0.166,0.2382,0,-0.1192,-0.068,-0.0596,0.3234,0.8936,1,0.834,0.8298,0.668,0.5148,0.332,0.4978,0.5022,0.3022,0.2852,0.3532,0.2936,0.2042,0.1148,0.2596,0.0554,0,-0.0426,-0.1276,0.0212,-0.0086,-0.332,1,-1,-1,1,-1,-1,-0.4,-0.1,-1,-0.32,0.06,0.2,0.22,0.16,0.24,0.22,0.46,0.76,0.66,0.82,1,0.72,0.32,0.3,0.22,0.44,0.62,0.22,0.2,0.44,0.3,0.2,0.04,0.14,0.26,0.04,-0.2,-0.22,0.14,-0.12,-0.44,'11'
-0.3054,0.4078,0.3922,0.7024,0.6528,1,0.9658,0.3706,0.293,0.1938,0.1472,0.2714,0.2776,0.5008,0.6372,0.8728,0.8914,0.938,0.7458,0.6962,0.6032,0.7086,0.7922,0.8604,0.6466,0.4914,0.3364,0.2714,0.1628,0.172,0.0636,0.0604,0.0246,0.6698,0.5522,0.4952,0.852,1,0.8026,0.7912,0.298,0.184,0.389,0.313,0.4838,0.5256,0.7192,0.7836,0.6926,0.4574,0.537,0.5522,0.5408,0.5522,0.723,0.5598,0.4498,0.112,0.1044,0.0208,-0.1196,-0.2106,-0.2638,-0.2068,-0.083,0.462,0.3032,0.2852,0.527,0.5306,1,0.8556,0.5452,0.5632,0.5956,0.6028,0.5018,0.5198,0.1516,0.0072,0.0216,-0.0216,0.1986,0.2346,0.3646,0.148,0.1156,0.083,-0.0434,-0.0866,-0.213,-0.166,-0.2816,-0.213,-0.3394,-0.2888,-0.099,0.447,0.2902,0.3276,0.7646,0.7986,1,0.8976,0.447,0.7884,0.884,0.57,0.546,-0.2184,-0.2116,-0.3652,-0.5938,-0.5426,-0.3038,-0.3344,-0.1502,-0.0854,0.1024,-0.0546,-0.2764,-0.4778,-0.6314,-0.6382,-0.5256,-0.413,-0.3686,-0.2798,-0.1148,0.45,0.3852,0.6176,0.8382,1,0.7382,0.8324,0.697,0.7,0.2618,-0.0058,-0.0382,-0.1382,-0.2706,-0.4294,-0.4912,-0.5088,-0.4764,-0.3794,-0.4176,-0.3942,-0.1382,0.147,0.1558,0.0148,-0.3236,-0.4236,-0.4088,-0.3118,-0.1676,0.0706,-0.1526,0.535,0.5236,0.8716,0.8174,1,0.943,0.7346,0.6604,0.4722,0.398,0.07,0.0014,-0.361,-0.4236,-0.5064,-0.552,-0.4522,-0.5178,-0.4208,-0.4922,-0.4152,-0.3866,0.0156,0.0328,0.3124,0.241,0.0442,-0.0156,0.0156,0.0072,0.2068,0.0194,1,0.9524,0.9482,0.8358,0.7884,0.758,0.4126,0.3088,0.4126,0.2484,-0.1404,-0.2182,-0.3996,-0.473,-0.4558,-0.5162,-0.5248,-0.607,-0.6502,-0.46,-0.3564,-0.4428,-0.2786,0.0152,0.4254,0.4126,0.0584,-0.2872,-0.2008,-0.0712,0.2268,-0.5744,0.149,0.1914,0.5744,0.6596,0.532,0.5744,0.234,0.2766,0.0638,0.0638,-0.0212,0.3192,0.234,0.532,0.532,0.9148,1,0.617,0.7022,0.5744,0.7446,0.5744,0.8298,0.617,0.4468,0.2766,0.149,0.1064,-0.0212,-0.1064,-0.1914,-0.4444,0.1482,0.1852,0.5186,0.5186,0.7408,0.7038,0.3334,0.3334,0.1852,0.2222,0.3334,0.2962,0.5186,0.5926,0.926,1,0.7038,0.8148,0.7038,0.7778,0.8148,0.926,0.6666,0.7778,0.6296,0.5186,0.2962,0.2592,0.1852,0.2592,0.1112,-0.1052,0.4474,0.2632,0.2368,0.5526,0.7368,1,0.8422,0.6842,0.7894,0.8684,0.921,0.7894,-0.1316,-0.1578,-0.2368,-0.4736,-0.5,0,-0.1578,0.0526,0.1842,0.3948,0.1842,-0.2368,-0.2368,-0.6052,-0.3948,-0.5,-0.3948,-0.3684,-0.4474,-1,-1,-1,-1,-1,-1,-1,-1,-0.9776,-0.969,-0.233,0.192,0.7316,0.4742,0.3126,0.2654,0.4804,0.8546,0.9204,0.8186,0.4556,-0.366,-0.7936,-0.806,-0.9304,-0.9416,-0.9528,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9742,-0.9714,-0.4216,0.6844,0.4862,0.1844,0.0796,0.1616,0.3802,0.5848,0.6912,0.409,0,-0.6318,-0.8608,-0.8494,-0.9222,-0.9376,-0.9358,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.9234,-0.7968,-0.5534,-0.7068,-0.7268,-0.7578,-0.7512,-0.769,-0.8046,-0.878,-0.868,-0.858,-0.904,-0.8034,-0.8034,-0.7134,-0.6568,-0.7768,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,-0.2572,-0.5428,-0.8286,-0.5142,-0.6,-0.5428,-0.6858,-0.7142,-0.1428,-0.1142,-0.7142,-0.8286,-0.8572,-0.8,-0.4286,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.148,-0.1594,-0.192,-0.29,-0.384,-0.3718,-0.4184,-0.5064,-0.5926,-0.2556,-0.6934,0.0942,-0.2594,-0.0516,0.7606,0.9702,0.5882,1,0.1304,0.7392,1,0.826,0.4348,0.3478,0.3478,0.4348,0.5652,0.5218,0.2608,0.2174,0.087,-0.0434,0.087,0.0434,0,0.0434,0.174,0.2608,-0.1304,0,-0.174,-0.3044,-0.4348,-0.3044,-0.2608,-0.174,-0.3478,-0.2174,-0.4348,-0.6086,0.1296,0.537,1,0.8334,0.3334,0.2592,0.3704,0.463,0.8518,0.7038,0.4444,0.3704,0.2962,-0.0556,-0.0186,-0.037,0.037,0.037,0.0556,0.074,-0.1296,-0.1852,-0.574,-0.7222,-0.3888,-0.3888,-0.3704,-0.3888,-0.537,-0.426,-0.463,-0.7778,0.301,0.5922,0.903,0.7864,0.4564,0.3592,0.4564,0.7088,1,0.8058,0.67,0.767,0.631,0.3786,0.2622,0.1068,-0.0098,0.1068,-0.0098,-0.068,-0.0486,-0.1068,-0.301,-0.3204,-0.4174,-0.2428,-0.3204,-0.4564,-0.398,-0.4952,-0.4758,-0.8834,0.7262,-1,-1,1,-0.8,-1,-1,-0.8334,1,-0.2222,-0.2666,0.2888,0.4666,0.6444,0.6,1,0.5334,0.1778,0.2444,0.2888,-0.2444,0.4222,0.5556,0.3556,0.2666,0.2444,0.5778,0.7778,0.0666,-0.1778,0.1556,0.4,0.4222,0.6,0.3556,0.4222,0.4222,0.3778,0.1556,0.1112,-0.0888,'12'
-0.1052,0.5144,0.4928,0.6626,0.7178,1,0.9162,0.4066,0.268,0.1746,0.0502,0.2584,0.22,0.4044,0.3828,0.5406,0.6076,0.7728,0.6076,0.6818,0.4736,0.5646,0.5598,0.6794,0.445,0.4138,0.165,0.177,0.0288,0.0382,0.0406,0.091,-0.099,0.4826,0.4184,0.5272,0.7648,1,0.849,0.8466,0.5694,0.3366,0.3316,0.3986,0.6212,0.698,0.8862,0.854,0.6634,0.599,0.5544,0.5248,0.4802,0.5346,0.6238,0.4852,0.3316,0.292,0.109,0.1534,0.1336,0.1906,0.151,0.1064,-0.2334,0.2576,0.1656,0.2938,0.6082,0.7026,0.9976,1,0.3542,0.2528,0.4608,0.5574,0.6978,0.3228,0.3834,0.0108,0.0134,-0.1004,-0.0592,0.173,0.0738,0.2528,0.2866,0.335,0.0932,0.0932,0.0858,0.006,-0.0932,-0.1922,-0.2044,-0.1028,-0.2338,0.2312,0.2546,0.3974,0.7818,0.8,1,0.9038,0.7246,0.5662,0.639,0.2,0.1896,0.0234,-0.1012,-0.2468,-0.4416,-0.3974,-0.3376,-0.3662,-0.2442,-0.1376,0.039,0.3116,0.3298,0.1792,0.0208,-0.1298,-0.1714,-0.2494,-0.291,-0.052,-0.2342,0.1782,0.3578,0.4226,0.8086,0.8822,1,0.8674,0.8056,0.573,0.2872,-0.1488,-0.511,-0.5788,-0.5522,-0.673,-0.6554,-0.726,-0.7938,-0.729,-0.7054,-0.8114,-0.3962,-0.1104,0.296,0.2548,-0.0544,-0.2842,-0.5228,-0.673,-0.6112,-0.3078,-0.0302,0.3354,0.5016,0.6224,0.8792,0.997,1,0.728,0.4834,0.3052,-0.296,-0.42,-0.3656,-0.6072,-0.6768,-0.7704,-0.725,-0.8398,-0.8912,-0.8308,-0.9064,-0.716,-0.6194,-0.5016,-0.145,-0.0936,-0.3324,-0.6102,-0.6102,-0.7492,-0.583,-0.6888,0.364,1,0.6314,0.2534,0.7926,0.553,0.3502,0.3226,0.5346,0.6958,0.0276,-0.47,-0.5944,-0.6728,-0.6406,-0.6452,-0.7188,-0.7282,-0.6728,-0.8018,-0.7788,-0.6958,-0.7788,-0.258,0.295,0.235,-0.258,-0.493,-0.4608,-0.5392,-0.6682,-0.3318,-0.1176,0.7058,0.7058,0.7648,1,1,0.7648,0.4118,0.1176,0.2352,-0.1176,0.2352,0.1764,0.353,0.1764,0.5294,0.8824,1,0.9412,0.7058,0.2942,0.5294,0.4706,0.5294,0.1176,0.353,0.353,0.1176,0.0588,0.0588,0.0588,0.1176,-0.2364,0.3818,0.3818,0.6364,0.8182,1,0.9272,0.5272,0.5272,0.3818,0.3454,0.3454,0.3818,0.3818,0.4182,0.4182,0.491,0.6728,0.6,0.5636,0.491,0.6,0.709,0.709,0.6728,0.5636,0.3454,0.2,0.0546,0.1636,0.0546,0.1636,-0.1818,0.2728,0.3636,0.4772,0.8636,0.841,1,0.7954,0.9318,0.6136,0.5682,0.159,-0.0682,-0.1364,-0.2954,-0.2728,-0.2954,-0.5,-0.3182,-0.3636,-0.409,-0.3182,0.0454,0.2272,0.5228,0.5454,0.091,0.0228,-0.1818,-0.4318,-0.2728,0.091,-1,-1,-1,-1,-1,-1,-0.9876,-0.9854,-0.9808,-0.9824,-0.9208,0.4056,0.8208,0.7694,0.6808,0.6832,0.5172,0.1896,-0.1388,-0.3434,-0.5032,-0.754,-0.8478,-0.8846,-0.9208,-0.9478,-0.9638,-0.9708,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9858,-0.9842,-0.9788,-0.971,-0.8822,0.1782,0.4576,0.8226,0.8734,0.8706,0.549,0.1358,-0.2136,-0.4916,-0.6998,-0.8674,-0.91,-0.9026,-0.9168,-0.93,-0.9558,-0.966,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9232,-0.9068,-0.8068,-0.53,-0.2768,-0.7364,-0.7038,-0.691,-0.6692,-0.6492,-0.7346,-0.7328,-0.8092,-0.8292,-0.9056,-0.9674,-0.82,-0.8368,-0.69,-0.5434,-0.65,-0.7668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.0572,-0.9714,-0.3428,0.8286,1,1,-0.3714,-0.5142,-0.4572,-0.7428,-0.6,-0.1428,-0.6572,-0.8286,-0.6572,-0.7714,-0.8286,-0.6858,-0.8,-0.9142,-0.7714,-0.4,-1,-1,-1,-1,-1,0.9458,0.9474,0.9586,0.9628,0.9776,0.9962,1,1,1,1,-0.2754,-0.2574,-0.2476,-0.2934,-0.3536,-0.438,-0.5664,-0.6484,-0.5774,-0.1836,-0.68,0.3058,-0.8568,-0.3894,0.3756,0.233,0.167,0.2916,0.1122,-0.1838,0.1748,0.444,0.6502,0.2646,0.4978,1,0.731,0.4978,0.731,0.4978,0.6412,0.6682,0.417,0.5068,0.3452,0.3902,0.444,0.435,0.4978,0.6772,0.3094,0.426,0.5606,0.2736,0.2018,0.2376,0.417,0.3902,0.2736,-0.3992,-0.1024,-0.0244,0.483,0.8634,0.6586,0.483,0.7658,0.4926,0.2682,0.9024,1,0.961,0.8244,0.6196,0.561,0.3854,0.5512,0.5414,0.9512,0.5318,0.7952,0.3756,0.122,0.2292,0.2682,0.2292,0.1512,0.2292,0.122,0.161,-0.044,-0.6098,-0.3678,0.0172,0.4942,0.2932,0.0518,0.0978,0.1782,0.4022,0.8046,0.9828,0.6724,0.8908,0.931,0.7414,0.523,0.4252,0.7758,0.7816,1,0.9368,0.7414,0.2988,0.138,-0.023,-0.2068,-0.0632,-0.1666,-0.2012,-0.0978,-0.1494,-0.2126,-0.569,-0.9914,1,-1,-1,-1,-1,-1,-1,1,-0.514,0.0654,0.458,0.5328,0.4392,0.8318,1,0.5888,0.0842,-0.0094,-0.028,0.2336,0.4206,0.1588,0.1588,0.028,0.271,0.215,0.0654,-0.1214,-0.1402,-0.028,0.0654,0.1776,0.2336,0.2898,0.2898,-0.0094,-0.0654,-0.215,-0.4954,-0.8692,'12'
-0.1624,0.5812,0.5974,0.8148,0.804,0.5892,0.5946,0.2644,0.243,0.0068,0.0068,0.141,0.2,0.3798,0.4282,0.4496,0.4954,0.9034,1,0.6376,0.651,0.4872,0.5974,0.7744,0.9382,0.7638,0.5248,0.4094,0.1732,0.1356,0.0926,0.1302,0.0306,0.8222,0.8278,0.9666,0.9694,0.7278,0.7388,0.6278,0.6778,0.075,0.0584,0.4638,0.5444,0.7334,0.8416,0.8888,1,0.7222,0.6306,0.3972,0.3666,0.25,0.2556,0.6166,0.9,0.7028,0.5834,0.45,0.2612,0.2112,0.2166,0.1666,-0.0514,0.6646,0.672,0.8348,0.8298,0.5744,0.5844,0.7296,0.7622,0.2166,0.2266,0.5018,0.5744,0.9224,1,0.5844,0.4818,0.194,0.0638,-0.0514,0.0864,-0.0888,0.0038,0.239,0.3092,0.1964,0.3266,0.239,0.2916,0.214,0.0038,0.0188,0.2264,1,0.9604,0.8414,0.6794,0.6198,0.4414,0.2892,0.1306,0.2728,0.4546,0.7256,0.4678,0.2992,0.1174,-0.1074,-0.3554,-0.2034,-0.0644,-0.0776,-0.2132,-0.0976,-0.0644,-0.0148,-0.319,-0.4644,-0.4776,-0.4776,-0.3884,-0.243,-0.1108,-0.1272,0.338,1,0.8684,0.694,0.3702,0.4412,-0.1352,-0.484,-0.4698,0.0996,0.4804,0.299,0.363,0.2314,0.2704,-0.4128,-0.395,-0.3096,-0.2492,-0.0748,-0.2028,-0.0178,0.1958,0.217,-0.153,-0.605,-0.6904,-0.854,-0.6406,-0.4982,-0.1246,-0.0142,0.3042,1,0.755,0.895,0.1642,0.094,-0.6324,-0.7418,-0.7592,0.151,0.1684,0.256,0.1072,-0.348,-0.4792,-0.501,-0.4968,-0.5362,-0.5754,-0.5098,-0.291,-0.1378,-0.1904,-0.0154,-0.2122,-0.698,-0.8118,-0.9782,-0.9518,-0.7856,-0.6368,-0.5404,0.3778,1,0.7414,0.4142,-0.1556,-0.3334,-0.491,-0.4102,-0.6888,-0.3576,-0.2324,-0.107,-0.2,-0.1434,-0.309,-0.3414,-0.402,-0.4344,-0.394,-0.4102,-0.3818,-0.4546,-0.208,-0.1394,-0.2282,-0.293,-0.4788,-0.895,-0.8384,-0.7778,-0.5434,-0.6444,-0.1162,0.6744,0.7674,0.7674,0.7674,0.628,0.628,0.4884,0.2558,0.2558,0.0232,-0.0232,0.2094,0.2558,0.3024,0.4418,0.3024,0.6744,0.721,0.4884,0.721,0.4418,0.7674,0.907,1,0.8604,0.3488,0.3954,-0.0232,0.0698,-0.1628,0.0698,-0.28,0.48,0.52,0.84,0.88,0.6,0.68,0.16,0.2,-0.12,-0.08,0.04,0.16,0.32,0.44,0.4,0.52,0.8,1,0.8,0.72,0.52,0.76,0.72,0.8,0.72,0.56,0.36,0.36,0.24,0.2,0.12,-0.1026,0.6666,0.6666,1,0.8718,0.4872,0.3334,0.4616,0.3846,0.2564,0.2308,0.6154,0.5642,0.3076,0.3076,-0.3846,-0.4102,-0.4358,-0.5384,-0.7692,-0.8462,-0.4872,-0.4616,-0.077,-0.1026,-0.4102,-0.359,-0.282,-0.2564,-0.0256,-0.0512,-0.1282,-1,-1,-1,-1,-1,-1,-1,-0.9766,-0.9838,-0.9784,-0.8948,0.4998,0.6042,0.6816,0.7202,0.8246,0.274,-0.156,-0.2776,-0.4098,-0.506,-0.623,-0.6968,-0.7192,-0.8984,-0.9344,-0.9488,-0.9496,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9706,-0.975,-0.9612,-0.8254,0.5564,0.6612,0.4938,0.5986,0.7322,-0.074,-0.4068,-0.48,-0.5842,-0.6656,-0.7432,-0.7416,-0.7428,-0.8664,-0.8958,-0.9174,-0.9086,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8268,-0.9268,-0.7,-0.26,-0.706,-0.712,-0.794,-0.744,-0.748,-0.852,-0.892,-0.894,-0.9274,-0.9582,-0.96,-0.94,-0.77,-0.6368,-0.56,-0.5968,-0.5768,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,-0.6858,0.7428,1,1,-0.4,-0.5142,-0.7428,1,1,-0.9428,-0.8286,-0.8858,-0.8858,0.4286,0.5142,-0.6858,-0.6286,-0.9142,-1,-0.9714,-1,-1,-1,-1,-1,0.7664,0.7554,0.7554,0.7444,0.7406,0.7288,0.7244,0.7242,0.699,0.1504,0.4036,0.3924,0.371,0.3164,0.2322,0.156,0.0412,-0.1682,-0.497,-0.581,-0.7734,0.2118,-0.7998,-0.1462,0.639,0.6678,0.6418,0.275,0.1826,0.6154,0.5384,0.7788,0.8366,0.8462,0.7884,0.8558,1,0.7692,0.8654,0.7884,0.9712,0.9326,0.2596,0.5576,0.5674,0.452,0.4424,0.3654,0.8462,0.8558,0.4712,0.4808,0.5674,0.5096,0.3558,0.3846,0.173,0.423,0.5,-0.0096,0.087,0,0.0544,0.6304,0.5326,0.3804,0.663,0.6414,0.9892,1,0.837,0.8586,0.924,0.7066,0.2718,0.5,0.6304,0.663,0.4566,0.5,0.576,0.5652,0.6086,0.5108,0.2718,0.2718,0.3696,0.5218,0.2174,0.337,0,-0.826,-0.2942,0.0962,0.1872,0.1444,0.1818,0.0696,0.214,0.1764,0.4332,1,0.893,0.8288,0.984,0.8182,0.3476,0.4546,0.6524,0.5348,0.6524,0.7272,0.4652,0.262,0.032,-0.1016,-0.0642,-0.0856,-0.1336,-0.2406,-0.2888,-0.3262,-0.214,-0.599,-0.9834,1,-1,-1,-1,-1,0.2,-1,1,-0.375,0.0938,0.1876,0.1562,0.0938,0.0468,0.7188,1,0.0468,-0.0312,0.0156,0.0938,0.4688,0.3124,0.1718,0.1406,0.0468,-0.0468,0.0938,0.0782,0.0624,-0.0312,0,-0.0782,0,0.0938,-0.0624,0.0782,-0.0782,-0.1876,-0.2344,-0.5782,'13'
-0.0542,0.6578,0.655,1,0.9834,0.6468,0.6384,0.2574,0.2378,-0.0486,-0.0848,-0.1628,-0.135,0.0404,0.0264,0.2016,0.235,0.4298,0.5244,0.8276,0.8136,0.6634,0.605,0.6578,0.6496,0.5104,0.502,0.1098,0.0236,-0.0376,0.0486,0.0542,0.0838,0.7396,0.7346,0.9524,0.9224,0.6646,0.617,0.5744,0.537,0.169,0.1188,0.129,0.0964,0.3442,0.3066,0.7246,0.7022,1,0.9624,0.9074,0.8824,0.8372,0.8098,0.9048,0.8874,0.7246,0.6996,0.5344,0.5444,0.4042,0.4168,0.3668,0.066,0.7464,0.7516,0.9742,0.938,0.731,0.6922,0.8526,0.8188,0.4282,0.405,0.405,0.379,0.8086,0.7774,0.9638,0.9302,0.6482,0.6326,0.5394,0.5472,0.6144,0.6404,0.9586,1,0.6558,0.6998,0.4826,0.5498,0.5214,0.5912,0.586,0.1786,0.9622,0.9106,1,0.8282,0.787,0.567,0.6048,0.4674,0.4982,0.756,0.9382,0.488,0.5396,0.2406,0.0962,0,0.0274,-0.165,-0.1994,-0.0824,0.0722,0.3574,0.3402,-0.0034,-0.0652,-0.1958,-0.2302,-0.457,0.0652,0.1444,0.1306,0.271,1,0.8728,0.7158,0.4356,0.5402,-0.043,-0.413,-0.2374,0.2262,0.787,0.6336,0.4504,0.1776,0.1028,-0.1738,-0.2972,-0.499,-0.3644,-0.3122,-0.3046,-0.4056,-0.0468,-0.0242,-0.2748,-0.7046,-0.8318,-0.9066,-0.6972,-0.5926,-0.5214,-0.5814,0.336,1,0.7838,0.7838,0.1356,0.0924,-0.6268,-0.5246,-0.662,-0.0334,0.0058,0.2456,0.1944,-0.061,-0.3674,-0.4184,-0.611,-0.5088,-0.3084,-0.3792,-0.3634,-0.2338,-0.2062,-0.3242,-0.3792,-0.7446,-0.7486,-0.941,-0.9174,-0.7918,-0.6856,-0.6268,0.396,1,0.744,0.624,-0.2,-0.376,-0.508,-0.408,-0.576,-0.516,-0.408,-0.248,-0.16,-0.268,-0.336,-0.452,-0.592,-0.376,-0.348,-0.344,-0.308,-0.256,-0.068,-0.208,-0.536,-0.56,-0.696,-0.7,-0.928,-0.816,-0.76,-0.636,-0.1176,0.8824,0.9412,0.9412,1,0.7648,0.7648,0.4118,0.353,0.0588,-0.1176,-0.353,0.0588,0.0588,0,-0.1764,0.1764,0,0.4118,0.8236,0.8236,0.7058,0.5882,0.4118,0.5294,0.5882,0.1764,-0.2352,-0.0588,0.0588,0.2352,-0.2942,-0.2,0.5556,0.5556,1,1,0.6444,0.6444,0.1556,0.1112,-0.1112,-0.1112,-0.2888,-0.3334,-0.0222,0.0222,0.1556,0.2,0.3334,0.6444,0.6,0.6,0.6,0.2888,0.5556,0.4666,0.6888,0.6,0.0222,0.1556,-0.1112,0.2,0.1556,0,0.7074,0.683,1,0.8536,0.6098,0.4146,0.6586,0.4878,0.4634,0.6342,0.756,0.4878,0.2682,0.0976,0.0488,-0.2682,-0.3414,-0.6098,-0.6342,-0.3658,-0.1708,0.3414,0.3658,0.0976,0.0976,-0.0732,-0.1464,-0.122,-0.1464,0.122,0.122,-1,-1,-1,-1,-1,-1,-0.9842,-0.9824,-0.9792,-0.9766,-0.9266,0.7454,0.8096,0.904,0.8714,0.8056,0.616,-0.1294,-0.263,-0.4232,-0.576,-0.6752,-0.6962,-0.8022,-0.919,-0.8906,-0.9166,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9756,-0.9736,-0.9624,-0.9482,-0.8468,0.5126,0.674,0.9052,0.7262,0.7814,0.3844,-0.3408,-0.4646,-0.5974,-0.7166,-0.7844,-0.7642,-0.7404,-0.861,-0.851,-0.8672,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9182,-0.8734,-0.7368,-0.37,-0.1168,-0.766,-0.71,-0.726,-0.734,-0.674,-0.826,-0.892,-0.9656,-0.982,-0.98,-0.982,-0.8668,-0.65,-0.52,-0.6134,-0.4334,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5714,-0.6858,-0.4858,-0.0286,1,1,-0.8572,-0.8286,-0.7714,0.5714,1,0.1714,-0.9142,-0.8572,-0.8572,-0.3428,0.5428,-0.2572,-0.7142,-0.8286,-0.9428,-1,-1,-1,-1,-1,-1,0.708,0.7072,0.6956,0.6928,0.685,0.6772,0.679,0.6912,0.7154,0.1972,0.441,0.446,0.4566,0.4728,0.4808,0.4744,0.4256,0.3024,0.0654,-0.3702,-0.76,0.2236,-0.82,-0.3834,0.6354,0.7186,0.7262,-0.2166,-0.25,-0.0416,0,-0.0834,0.0834,0.25,0.2916,0.3334,0.3334,0.75,0.75,0.7084,1,0.7084,0.5416,0.5,0.875,0.75,0.9584,0.75,0.75,0.25,0.2084,0.2916,0.25,-0.1666,0.125,-0.1666,0,0.0416,-0.0416,-0.3334,-0.4222,-0.2,0.1334,-0.0888,-0.1556,-0.1778,-0.0888,0.1334,0.2222,0.8888,1,0.7556,0.9334,0.7556,0.4888,0.4888,0.8,0.9334,0.8888,0.7556,0.8,0.4222,0.1334,-0.0666,-0.0666,-0.3112,-0.1778,-0.4444,-0.2888,-0.2222,-0.4444,-0.5334,-0.1612,0.3764,0.5914,0.3334,-0.0322,-0.1612,0.0322,0.0968,0.2258,0.742,1,0.6774,0.9354,0.656,0.3334,0.4194,0.5054,0.4194,0.5484,0.4194,0.3978,0.2904,0.0752,0.1398,-0.0752,-0.0538,-0.0968,-0.1398,-0.1182,-0.0538,-0.1828,-0.6774,1,-1,-1,1,-1,-1,-0.6,-0.8334,-1,-0.5396,0.0318,0.3016,-0.0318,0.0158,0.1112,0.381,1,0.6032,0.238,0.4126,0.2858,0.7142,0.5396,0.3334,0.2222,0.1428,0.238,0.1588,0.0952,0.0952,-0.2064,-0.0794,-0.1112,0.0794,0.238,0.1746,-0.0634,-0.3174,-0.381,-0.4762,-0.8572,'13'
-0.086,0.6238,0.6106,0.9338,0.9046,0.6476,0.5444,0.2928,0.1312,0.1046,-0.065,0.086,-0.0304,0.0834,0.049,0.1894,0.102,0.3272,0.4544,0.8544,1,0.8438,0.7112,0.7166,0.7642,0.8782,0.91,0.51,0.351,0.2504,0.2186,0.0596,0.125,0.8226,0.7704,1,0.8634,0.8344,0.654,0.654,0.4244,0.2326,0.1046,0.2412,0.2646,0.3662,0.3372,0.378,0.596,0.6076,0.7412,0.7238,0.6454,0.6424,0.7326,0.6656,0.9244,0.7006,0.8838,0.718,0.279,0.2558,-0.0378,-0.0146,-0.0264,0.589,0.5408,0.7788,0.6634,0.8124,0.6442,0.7188,0.524,0.4496,0.3582,0.4808,0.399,0.4952,0.952,1,0.8558,0.8582,0.488,0.4448,0.3558,0.3004,0.0456,0.2356,0.4592,0.4062,0.4616,0.3846,0.3894,0.2764,0.2524,0.2188,0.0404,0.6652,0.692,0.9252,0.8864,1,0.5068,0.5336,0.4918,0.4678,0.2108,0.3034,0.5576,0.8566,0.973,0.7488,0.7608,0.3842,0.3154,0.0404,0.0344,0.0554,-0.0044,0.1032,0.441,0.4738,0.2346,0.0164,-0.1838,-0.142,-0.0612,-0.0554,0.2194,0.7648,0.8496,1,0.4012,0.301,-0.0596,-0.304,-0.1912,-0.3322,-0.3606,-0.7304,-0.1818,0.1066,0.2728,0.2446,-0.4358,-0.3762,-0.2164,-0.4546,-0.4608,-0.4952,-0.5172,-0.4764,-0.2852,-0.4326,-0.7932,-0.9374,-0.8778,-0.8496,-0.8338,-0.8558,0.3356,0.829,0.921,1,0.0954,-0.0626,0,-0.3948,-0.398,-0.7828,-0.5198,-0.454,-0.5066,-0.0888,0.056,-0.2402,-0.6152,-0.421,-0.4342,-0.4342,-0.7172,-0.6052,-0.569,-0.2566,-0.2204,-0.352,-0.5264,-0.5922,-0.7368,-0.5888,-0.6612,-0.7302,0.2008,0.716,0.9584,1,-0.2046,-0.1402,-0.0076,-0.4772,-0.6818,-0.8372,-0.8296,-0.8712,-0.7196,-0.2538,-0.1856,-0.4924,-0.5568,-0.8144,-0.5038,-0.5416,-0.6022,-0.5682,-0.9242,-0.5076,-0.2576,-0.3182,-0.841,-0.909,-0.8902,-0.7424,-0.7728,-0.8902,-0.5484,0.6774,0.8064,0.4838,0.8064,0.6774,0.4838,0.4194,0.0968,0.0968,-0.1612,-0.3548,0.0968,0.0322,0.1612,-0.0322,-0.1612,0.0322,0.4194,0.4838,1,0.613,0.6774,0.3548,0.4194,0.8064,0.871,0.3548,0.4194,-0.0322,0.1612,-0.1612,-0.2942,0.3334,0.4118,0.8432,0.8432,0.5294,0.4902,0.1372,0.0588,-0.0588,-0.098,0.0588,0.0588,0.2156,0.1764,0.2942,0.255,0.4902,0.4902,1,0.9216,0.804,0.647,0.7254,0.7254,0.8432,0.804,0.3726,0.255,0.1764,0.1764,-0.0196,0.1176,0.647,0.9412,1,0.853,0.853,0.1764,0.1764,0.1176,0.0588,-0.1176,0.3236,0.2648,0.7058,0.5294,0.647,0.5294,0.0294,-0.2058,-0.2942,-0.5,-0.4412,-0.4412,0,0.2058,-0.1176,-0.2352,-0.4412,-0.853,-0.7648,-0.5588,-0.1176,-1,-1,-1,-1,-1,-1,-1,-0.9788,-0.9804,-0.974,-0.9134,0.6536,0.5244,0.6724,0.6882,0.6488,0.6134,-0.059,-0.1984,-0.3582,-0.5048,-0.5464,-0.6512,-0.878,-0.9456,-0.952,-0.9504,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9766,-0.9794,-0.9728,-0.9062,0.4486,0.117,0.2966,0.3418,0.508,0.2978,-0.4,-0.5198,-0.6258,-0.7184,-0.733,-0.761,-0.8702,-0.9026,-0.9126,-0.9232,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.87,-0.91,-0.7434,-0.54,-0.7456,-0.8074,-0.7692,-0.6892,-0.7456,-0.7638,-0.9,-0.8656,-0.94,-0.97,-0.9334,-0.9568,-0.63,-0.32,-0.34,-0.5668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4572,-0.6286,0.2,1,1,-0.4,-0.6572,-0.6572,-0.7428,1,1,-0.8572,-0.8,-0.9428,1,0.6286,-0.5714,-0.8572,-0.9428,-0.5428,-1,-1,-1,-1,-1,-1,0.7262,0.7112,0.705,0.6934,0.683,0.6818,0.6938,0.7278,0.7854,0.3382,0.7526,0.7638,0.7576,0.7412,0.7468,0.732,0.672,0.4188,-0.0344,-0.3382,-0.7066,0.3412,-0.903,-0.5266,0.5146,0.9664,0.4208,0.8834,0.0136,0.4054,0.6486,1,0.8918,0.946,1,1,0.7298,0.7028,0.4054,0.4324,0.473,0.5136,0.6216,0.554,0.527,0.527,0.2972,0.2432,0.5406,0.7028,0.4054,0.446,0.5136,0.3108,0.6082,0.6216,0.1622,0.3514,-0.3108,-0.7702,0.1676,0.7804,0.7572,0.5838,0.63,0.6648,1,0.526,0.8728,0.6648,0.9768,0.9422,0.711,0.6416,0.6764,0.792,0.8498,0.5606,0.7456,0.318,0.6532,0.63,0.815,0.5722,0.5376,0.4566,0.5492,0.237,0.029,0.4104,0.1792,-0.5954,-0.196,0.3754,0.3356,0.4352,0.3422,0.2292,0.3156,0.3954,0.4618,0.907,1,0.9934,0.8936,1,0.701,0.6744,0.5016,0.8738,0.9136,0.7674,0.4152,-0.01,0.0964,0.1894,0.0498,0.0564,0.1096,0.1694,0.0564,0.1562,-0.1096,-0.5348,-0.9936,1,-1,-1,-1,-1,-0.8,-1,-1,-0.2078,0.1428,0.6364,0.6624,0.5064,0.2468,0.5454,0.8312,0.7662,0.4676,0.6234,0.4936,1,0.974,0.5194,0.4286,0.5714,0.6624,0.8052,0.8052,0.5194,0.3376,0.5974,0.7142,0.7012,0.7402,0.8702,0.8442,0.4936,0.2988,-0.1038,-0.2858,'14'
-0.0016,0.7354,0.6818,1,0.8962,0.6148,0.4438,0.2764,-0.0252,0.005,-0.3266,-0.273,-0.1558,-0.2328,0.1324,0.1022,0.2964,0.3936,0.8056,0.7856,0.7756,0.5376,0.4572,0.4472,0.6416,0.6684,0.3602,0.3266,0.1056,0.0552,-0.0854,-0.0386,0.2184,0.9962,0.8698,1,0.728,0.8698,0.6206,0.7318,0.1034,0.0882,-0.157,-0.0498,0.3448,0.3142,0.5978,0.797,0.9616,0.8774,0.908,0.7318,0.7394,0.479,0.479,0.6436,0.866,0.9386,0.6666,0.5364,0.3946,0.2606,0.3066,0.3334,-0.015,0.5958,0.488,0.5568,0.6138,0.7486,0.4492,0.479,0.0688,0.003,-0.0808,0.036,0.2544,0.476,0.6108,0.985,1,0.2814,0.1318,0.0958,-0.012,0.0898,0.1438,0.3264,0.512,0.491,0.2426,0.0778,0.024,-0.1408,-0.2456,-0.3024,0.1476,0.8142,0.7668,0.9782,0.9308,1,0.49,0.4536,0.1294,0.0092,-0.3152,-0.0928,0.0128,0.53,0.5446,0.807,0.7486,0.0746,-0.0382,0.02,-0.1256,-0.0892,0.1476,0.3042,0.694,0.479,0.2642,-0.1002,-0.071,-0.2022,-0.2022,-0.3006,0.383,0.9288,0.8542,1,0.3864,0.2984,0.0508,-0.2,-0.3356,-0.339,-0.3662,-0.495,-0.244,-0.095,0.0372,0.0204,-0.4542,-0.461,-0.4204,-0.478,-0.3016,-0.3254,-0.1762,0.0238,-0.1288,-0.2136,-0.6204,-0.7728,-0.6372,-0.6204,-0.756,-0.8746,0.35,0.8808,0.9308,1,-0.0192,-0.0538,0.1154,-0.327,-0.4,-0.65,-0.65,-0.7384,-0.5962,0.027,0.1962,-0.173,-0.3154,-0.4962,-0.6116,-0.7846,-0.5038,-0.6116,-0.3846,0.1576,0.1808,-0.477,-0.9384,-0.8692,-0.7962,-0.773,-0.9308,-0.827,0.3042,0.9032,0.954,1,-0.235,-0.5162,-0.47,-0.387,-0.5714,-0.8202,-0.5392,-0.6866,-0.6406,0.0184,-0.0414,-0.4838,-0.5484,-0.636,-0.4516,-0.4792,-0.5162,-0.4792,-0.4286,-0.3042,-0.3594,-0.6222,-0.7236,-0.8248,-0.8018,-0.7834,-0.8526,-0.659,0.027,0.7298,0.6756,0.4594,0.5136,0.2432,0.081,0.2432,0.027,0.1352,-0.1892,-0.081,-0.081,-0.946,0.2432,0.2432,0.1352,0.1892,0.6216,0.7838,1,0.7298,0.6216,0.6756,1,0.946,0.6756,0.7298,0.7298,0.3514,0.1892,0.1892,0,0.5926,0.5556,1,0.963,0.6296,0.5926,0.2222,0.037,0,-0.1852,0.1112,0.037,0.074,0.037,0.3334,0.2592,0.4814,0.6666,0.8888,0.8888,0.6666,0.5556,0.6296,0.6296,0.7038,0.2592,0.1852,0,0.1112,-0.037,0.037,0.2836,0.7612,0.9702,1,0.791,0.791,0.2538,-0.015,-0.194,-0.2238,-0.5224,-0.3732,-0.1044,0.1642,0.3134,0.3732,0.0746,-0.403,-0.2238,-0.3432,-0.4328,-0.3432,-0.015,0.2538,0.4626,0.1344,0.194,-0.1642,-0.1344,-0.2836,-0.4926,-0.5224,-1,-1,-1,-1,-1,-1,-0.9728,-0.9748,-0.9786,-0.9738,-0.9428,0.6432,0.5608,0.6074,0.5046,0.5648,0.526,-0.0364,-0.2206,-0.3524,-0.4852,-0.586,-0.6034,-0.9012,-0.9554,-0.9398,-0.9282,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9592,-0.9626,-0.9626,-0.9528,-0.8746,0.6328,0.5258,0.6666,0.6878,0.7238,0.6314,-0.1832,-0.3602,-0.4686,-0.5828,-0.6554,-0.6294,-0.8316,-0.8738,-0.8676,-0.8914,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9116,-0.95,-0.89,-0.6668,-0.4468,-0.802,-0.894,-0.892,-0.92,-0.811,-0.86,-0.9182,-0.9656,-0.9638,-0.9674,-0.96,-0.8268,-0.4934,-0.46,-0.4934,-0.48,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4,-1,-0.8,-0.2,1,1,-0.8286,-0.9142,-0.8286,-0.8572,1,1,-0.9428,-1,-0.9428,0.4286,0,-0.5142,-0.8572,-0.9142,-0.7714,-1,-1,-1,-1,-1,-1,0.5942,0.6032,0.5942,0.5876,0.593,0.5982,0.6148,0.635,0.6946,0.234,0.463,0.4504,0.4084,0.377,0.3284,0.294,0.2586,0.062,-0.1018,-0.275,-0.68,0.2588,-0.8604,-0.4116,0.8618,0.9344,0.6462,-0.1,-0.038,0.3426,0.4048,0.4048,0.2734,0.4326,0.4186,1,0.4464,0.474,0.3356,0.398,0.474,0.5086,0.2456,0.3426,0.3564,0.301,0.1142,0.225,0.3218,0.1764,0.1904,0.1212,0.0726,0.0796,0.1696,0.135,0.1212,0.0174,-0.0658,-0.3218,0.0144,0.0288,0.259,0.41,0.367,0.3812,0.367,1,0.5828,0.4892,0.6188,0.5972,0.7626,0.7266,0.3598,0.3884,0.5612,0.633,0.6474,0.6258,0.4604,0.2734,0.3526,0.2806,0.2302,0.2374,0.3526,0.0576,0.2086,-0.0504,0.0504,-0.151,-0.303,0.0546,0.0788,0.1758,0.0122,-0.0182,0.2848,0.2,0.4242,0.897,0.9818,0.8304,1,0.891,0.5636,0.4484,0.5758,0.6242,0.7696,0.8304,0.5696,0.2848,-0.1334,0.1152,-0.006,-0.109,0.1454,0.1152,-0.0364,-0.4182,-0.1212,-0.2848,-0.9972,1,-1,-1,-1,-1,-0.8,-1,-1,-0.3572,-0.1,0.3286,0.2428,0.4,0.1286,0.3858,1,0.8286,0.4428,0.3286,0.3142,0.5142,0.3142,0.1142,-0.0286,0.0142,0.4142,0.7858,0.4286,0.0858,0.0714,-0.0286,0.1286,0.4286,0.6572,0.7428,0.2,0.0428,-0.0428,-0.2286,-0.6,'14'
-0.8888,0.2448,0.4286,0.44,0.8164,1,0.8526,0.6734,0.703,0.4626,0.2698,0.0976,-0.1316,-0.1452,-0.2154,-0.3696,-0.3378,-0.2744,-0.2654,-0.102,-0.0794,-0.152,-0.0476,-0.1406,-0.3402,-0.3242,-0.313,-0.2926,-0.2244,-0.1996,-0.1972,-0.1224,-0.0896,0.5116,0.4984,0.7414,0.6884,1,0.9404,0.6464,0.589,0.463,0.39,0.222,0.1382,0.0542,-0.0144,-0.1006,-0.1646,-0.2796,-0.2818,-0.063,0.1072,0.2244,0.189,-0.0232,-0.0872,-0.1314,-0.0454,-0.0784,0.01,-0.0012,0.2154,0.1492,-0.028,0.5712,0.5298,0.771,0.7198,1,0.8538,0.5664,0.3934,0.2838,0.0646,0.1108,-0.1814,-0.084,-0.4348,-0.3398,-0.5518,-0.4908,-0.581,-0.5322,-0.123,-0.106,-0.1962,-0.2132,-0.2058,-0.2862,-0.2326,-0.3058,-0.0962,-0.1182,0.0524,-0.0378,-0.0418,0.5574,0.5276,0.8326,0.8164,1,0.7192,0.7948,0.355,0.3982,-0.0634,-0.058,-0.1282,-0.1984,-0.3414,-0.4682,-0.479,-0.606,-0.4062,-0.336,-0.2524,-0.0716,-0.1686,-0.6356,-0.6896,-0.7246,-0.6978,-0.533,-0.4304,-0.1094,-0.0688,-0.0472,-0.045,0.538,0.7768,0.9752,0.9442,0.9968,1,0.9224,0.3798,0.169,-0.2558,-0.4884,-0.4294,-0.6372,-0.6558,-0.659,-0.7612,-0.7582,-0.7024,-0.5442,-0.1658,0.0046,0.017,-0.3302,-0.8326,-0.9008,-0.8728,-0.879,-0.7798,-0.4046,-0.2682,-0.5442,0.1452,0.6064,0.9258,1,0.8194,0.8064,0.9838,0.487,0.0612,-0.7646,-0.8064,-0.8936,-0.8838,-0.8806,-0.8774,-0.8452,-0.8064,-0.8904,-0.8064,-0.7646,-0.629,-0.429,-0.3388,-0.6806,-0.7548,-0.8774,-0.8484,-0.7806,-0.5452,-0.3904,-0.513,-0.8258,0.2682,0.7846,0.943,1,0.8252,0.6504,0.683,-0.1342,-0.7114,-0.748,-0.8618,-0.6342,-0.6544,-0.744,-0.2318,-0.4066,-0.683,-0.817,-0.7804,-0.7276,-0.7032,-0.7398,-0.6504,-0.557,-0.4552,-0.63,-0.6504,-0.8048,-0.5,-0.443,-0.622,-0.748,-0.5874,0.3016,0.5874,0.492,0.9366,1,0.7778,0.8412,0.873,0.7778,0.7142,0.4604,0.238,0.2698,0.0794,0.1428,0.1112,0.1112,0.1746,0.0794,0.365,0.365,0.1428,0.0794,-0.0158,0.1428,0.2064,0.1112,0.2698,0.3016,0.0794,0.1428,-0.6308,0.2,0.5384,0.477,0.7538,1,0.877,0.5692,0.6924,0.5692,0.077,0.1692,-0.1384,-0.1692,-0.077,-0.2308,-0.077,-0.077,-0.4462,-0.1384,-0.1384,-0.323,-0.1076,-0.1384,-0.2924,-0.3538,-0.3538,-0.4462,-0.3538,-0.3846,-0.6616,-0.323,-0.0468,0.4954,0.4766,0.701,0.6074,1,0.9066,0.757,0.5888,0.6448,0.4954,0.2336,0.1028,0.028,-0.0842,-0.2898,-0.4206,-0.813,-0.701,-0.458,0.0468,0.2524,0.028,-0.1776,-0.2898,-0.3458,-0.1588,-0.2898,-0.0094,-0.0654,0.2898,0.1028,-1,-1,-1,-1,-1,-1,-0.9842,-0.9818,-0.8782,-0.957,-0.8712,-0.0588,0.6994,0.9264,0.947,0.9306,0.8436,0.69,0.4258,-0.11,-0.5194,-0.743,-0.8388,-0.8658,-0.8982,-0.933,-0.9558,-0.9748,-0.9788,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9842,-0.9848,-0.8428,-0.9446,-0.8626,-0.0388,0.7092,0.7038,0.4936,0.4446,0.3916,0.277,-0.008,-0.4266,-0.706,-0.8462,-0.8878,-0.8998,-0.9164,-0.9414,-0.9104,-0.9632,-0.9748,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9064,-0.94,-0.8034,-0.7634,-0.8968,-0.728,-0.7238,-0.7728,-0.8,-0.802,-0.8056,-0.8182,-0.8474,-0.882,-0.931,-0.9492,-0.9768,-0.89,-0.8268,-0.68,-0.4668,-0.7368,-0.7368,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7142,-0.1142,0.3428,-0.2858,1,1,1,-0.0286,-0.4,-0.8858,-0.7142,-0.7142,-0.4572,-0.4,-0.7714,-0.8286,-0.6286,-0.6572,-0.5714,0.0572,-0.2572,-0.4,-0.4,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.917,-0.4914,-0.4294,-0.3898,-0.3402,-0.2864,-0.327,-0.332,-0.286,-0.3916,-0.3452,-0.7466,0.2942,-0.9362,-0.236,-0.07,-0.0376,0.25,0.1084,0.0156,0.0156,0.399,0.5234,0.4094,0.4612,0.5026,1,0.8446,0.6892,0.8342,0.6684,0.8238,0.658,0.399,0.6166,0.6374,0.5234,0.0156,0.2746,0.513,0.4818,0.43,0.2124,0.3264,0.5648,0.1192,0.0156,0.0052,-0.057,-0.202,-0.4922,-0.4296,0.436,0.8558,0.8098,0.941,1,0.036,0.141,0.1082,0.0688,0.2852,0.1148,0.0754,0.2132,-0.1082,-0.1214,-0.0754,-0.1738,-0.0032,0.2328,0.2196,-0.023,-0.1672,-0.2786,-0.3508,-0.2,-0.0098,-0.1738,-0.3114,-0.2132,-0.423,-0.7508,-0.0138,0.3542,1,0.8888,0.7986,0.7638,0.3958,0.6944,0.5486,0.3958,0.5624,0.6458,0.5694,0.4444,0.243,0.4098,0.3542,0.25,0.2222,0.2222,0.4514,0.3612,0.257,0.2292,0.2778,0.2292,0.3334,0.2084,-0.0348,0.0694,-0.118,-0.743,-0.9862,1,-1,-1,-1,-1,-0.4,-1,1,-0.6,-0.026,0.0956,0.2696,0.0782,0.2,1,0.4434,0.0782,0.026,0.3392,0.4434,0.1478,-0.1478,-0.0086,0.113,0.2,0.287,0.4782,0.2522,0.7044,0.5652,0.7044,0.6,0.426,0.7044,0.6696,0.287,0.2,0.1826,0.0434,-0.2348,'15'
-0.1024,0.5092,0.5008,0.7054,0.7194,1,0.9496,0.8092,0.7082,0.4558,0.2762,0.066,-0.049,-0.2622,-0.3492,-0.3044,-0.4586,-0.3884,-0.3492,-0.2006,-0.2006,-0.0744,0.3212,0.4334,0.066,-0.0042,-0.1698,-0.0996,-0.0406,0.0546,0.3576,0.4306,-0.0608,0.5304,0.5014,0.684,0.6928,1,0.8608,0.6638,0.4782,0.3652,0.174,-0.1218,-0.2666,-0.1478,-0.3566,-0.2782,-0.4,-0.3188,-0.2986,-0.2464,-0.3798,-0.2782,0.174,0.2,-0.1102,-0.0898,-0.258,-0.2898,-0.1624,-0.084,0.3682,0.316,0.0082,0.6364,0.5636,0.7322,0.7818,1,0.7554,0.448,0.2596,0.3686,-0.081,-0.1174,-0.0678,-0.0678,-0.2364,-0.276,-0.3818,-0.4612,-0.7652,-0.8678,-0.6926,-0.3686,-0.1604,-0.0678,-0.3058,-0.4414,-0.4512,-0.6562,-0.59,-0.2298,-0.1372,0.1604,0.0356,0.6736,0.561,0.7712,0.8612,1,0.471,-0.0132,0.5234,0.471,-0.4372,-0.4484,-0.3584,-0.561,-0.5572,-0.8048,-0.7824,-0.9062,-0.9174,-0.7824,-0.7224,-0.3396,0.0882,0.197,-0.2082,-0.6022,-0.8012,-0.7748,-0.7674,-0.501,-0.1632,-0.0056,0.1574,0.6816,0.7154,0.8576,1,0.9662,0.2808,0.382,0.5318,0.06,-0.4906,-0.5094,-0.5992,-0.7454,-0.7566,-0.7228,-0.8352,-0.8652,-0.9888,-0.8052,-0.8652,-0.367,-0.1048,-0.0674,-0.2434,-0.6254,-0.8952,-0.7228,-0.6142,-0.4682,-0.4456,-0.2098,0.3334,0.7806,0.9462,1,0.9752,0.7556,0.7432,0.3954,0.3126,-0.4202,-0.648,-0.5404,-0.6522,-0.7308,-0.6438,-0.6398,-0.6356,-0.615,-0.7392,-0.9628,-0.7682,-0.557,-0.1636,-0.0974,-0.3334,-0.586,-0.5984,-0.8302,-0.615,-0.3872,-0.1966,-0.2754,0.282,0.7794,1,0.9642,0.7642,0.6308,0.6102,0,-0.277,-0.9384,-0.7436,-0.482,-0.6154,-0.6462,-0.3898,-0.6,-0.8102,-0.7692,-0.5846,-0.6974,-0.7538,-0.6512,-0.5436,-0.3384,-0.4,-0.718,-0.7846,-0.7642,-0.5436,-0.2,-0.2206,-0.6616,-0.3684,0.4736,0.6316,0.5264,0.9474,0.8948,1,1,0.7894,0.6316,0.1052,-0.3158,-0.3158,-0.6316,-0.421,-0.7894,-0.421,-0.421,-0.579,-0.2632,-0.421,-0.1578,0.0526,0.3158,-0.2106,-0.1052,-0.2632,-0.3684,-0.421,-0.1052,0.0526,-0.2106,-0.132,0.3962,0.3962,0.6982,0.6226,1,0.9246,0.8114,0.585,0.5472,0.2076,0.0188,-0.0566,-0.434,-0.4716,-0.4716,-0.6604,-0.5472,-0.585,-0.434,-0.283,-0.0566,0.3962,0.5472,0.3208,0.0566,-0.0566,-0.3208,-0.0566,0.3584,0.4716,0.7358,0.0104,0.6082,0.5464,0.732,0.7114,1,0.8556,0.6494,0.402,0.4226,0.0928,0.031,-0.0928,-0.0104,-0.1958,-0.134,-0.2578,-0.2372,-0.2164,-0.2164,-0.299,-0.1546,0.3196,0.3196,-0.031,-0.1134,-0.1546,-0.3608,-0.299,-0.1752,-0.0104,0.2784,-1,-1,-1,-1,-1,-1,-0.9894,-0.9794,-0.9822,-0.9794,-0.8888,0.6516,0.8526,0.9284,0.7132,0.5638,0.4504,0.3208,0.0552,-0.2882,-0.483,-0.67,-0.852,-0.9412,-0.9518,-0.9618,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9858,-0.9782,-0.9808,-0.9682,-0.8656,0.6654,0.5926,0.548,0.2914,0.1392,0.0108,-0.0964,-0.3062,-0.5602,-0.684,-0.806,-0.8944,-0.938,-0.9496,-0.9596,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9598,-0.8734,-0.8334,-0.65,-0.56,-0.7576,-0.7868,-0.78,-0.8024,-0.8024,-0.8178,-0.8934,-0.9,-0.909,-0.9156,-0.9178,-0.9234,-0.83,-0.7934,-0.89,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2,-0.8858,-0.7428,-0.0858,1,1,-0.9142,-0.9714,-0.6858,-0.8572,-0.7428,-0.7142,-0.7714,-0.7714,-0.7142,-0.7714,-0.7142,-0.8572,-0.9142,-0.8,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,0.9024,0.7236,0.377,0.3448,0.2958,0.2468,0.2468,0.2382,0.2196,0.1256,-0.0416,-0.0684,-0.7334,0.0352,-0.9054,-0.1738,1,0.755,0.614,0.3666,0.033,-0.1978,0.066,0.5824,0.6484,0.4506,0.6594,0.6154,0.989,1,0.4066,0.6594,0.7582,0.5274,0.4396,0.7582,0.6924,0.5164,0.2198,0.5054,0.5824,0.7142,0.7802,0.4176,0.2968,0.2638,0.3516,0.4176,-0.033,0,-0.1978,-0.4946,-0.0248,0.2562,0.405,0.5454,0.7024,0.5042,0.4628,0.529,0.6034,0.5454,0.4628,0.7852,0.7934,0.4958,0.281,0.7356,0.686,0.2728,0.4958,1,0.9256,0.6364,0.4462,0.6364,0.405,0.5042,0.2562,0.3554,-0.1074,-0.0662,-0.0662,-0.4462,-0.376,-0.0962,0.4636,0.5102,0.8718,0.5276,0.0612,0.2244,0.0146,-0.0554,-0.0496,0.481,0.382,0.3528,0.4694,0.79,0.7142,0.4868,0.2012,0.895,1,0.6444,0.3236,0.1604,0.1662,0.1138,0.1254,0.003,-0.3352,-0.2012,-0.4286,-0.7842,-0.9928,1,-1,-1,-1,-1,-1,-1,-1,0.0124,0.1358,0.605,0.5556,0.9754,1,0.1852,0.4568,0.4568,0.432,0.6296,0.753,0.6544,0.3086,0.4814,0.4814,0.5308,0.1112,0.2592,0.3086,0.7284,0.5062,0.1112,0.358,0.2098,-0.037,0.1112,0.2098,0.3334,0.2592,0.1112,-0.0124,'15'
-0.1414,0.9268,1,0.6,0.6634,0.1464,0.0488,-0.2878,-0.1074,-0.3366,-0.3512,-0.3074,-0.2098,-0.2196,-0.0926,-0.0682,-0.0488,0.0342,0.2878,0.483,0.8976,0.9414,0.7024,0.5268,0.5854,0.922,0.8292,0.6926,0.5902,0.356,0.3512,0.2488,0.096,0.9812,1,0.836,0.836,0.377,0.3818,-0.0586,-0.0444,-0.3208,-0.274,-0.007,0.0538,-0.0444,0.0492,-0.096,0.0304,0.3068,0.4426,0.569,0.7518,0.719,0.5878,0.246,0.4004,0.4098,0.5598,0.3676,0.1896,0.0304,-0.0444,0.082,0.2232,1,0.9866,0.942,0.8794,0.4822,0.4018,-0.0446,-0.134,-0.1742,-0.259,0.009,-0.0938,-0.0804,-0.183,0.0446,-0.0626,0.241,0.1206,0.3258,0.4018,0.7678,0.6428,0.3884,0.2858,0.4108,0.5402,0.491,0.2858,0.1026,-0.058,-0.0804,0.2056,0.9446,0.8984,1,0.8752,0.455,0.2702,-0.104,-0.284,-0.1408,-0.4088,-0.2794,-0.3302,-0.1778,-0.187,-0.067,-0.261,-0.1178,0.2794,0.3672,0.7182,0.7876,0.806,0.7274,0.589,0.589,0.6766,0.4458,0.4042,0.3718,0.2886,0.2332,0.055,0.73,0.685,1,0.72,0.145,-0.29,-0.26,-0.29,-0.325,-0.52,-0.64,-0.52,-0.575,-0.53,-0.34,-0.28,-0.28,-0.23,-0.07,0.33,0.725,0.71,0.275,0.51,0.68,0.665,0.14,-0.205,-0.335,-0.335,-0.07,-0.0834,0.451,0.848,1,0.5148,-0.1716,-0.3676,-0.5442,-0.4706,-0.598,-0.5392,-0.8088,-0.8432,-0.6176,-0.6422,-0.5344,-0.4166,-0.4068,-0.1372,-0.2254,0.005,0.2108,0.0588,0.0294,0.0638,0.196,-0.0638,-0.1618,-0.4706,-0.4362,-0.6226,-0.6422,-0.0872,0.4206,0.882,1,0.3128,-0.4924,-0.6052,-0.5334,-0.7948,-0.7692,-0.8616,-0.8256,-0.7898,-0.7436,-0.8206,-0.7744,-0.5846,-0.5642,-0.5642,-0.118,0.2154,0.3898,0.2154,0.123,0.3642,0.323,-0.0358,-0.4052,-0.4872,-0.6052,-0.5744,-0.441,-0.1578,0.8422,0.8948,0.579,0.2632,-0.0526,-0.3158,-0.4736,-0.5264,-0.5264,-0.6842,-0.1052,-0.1052,-0.2106,-0.2632,-0.1052,-0.1578,0.1052,0.3684,0.5264,0.8422,0.6316,0.579,0.7368,0.5264,0.8422,1,0.7368,0.1052,0.421,0.3684,0.2632,-0.0212,0.9148,1,0.5744,0.7446,0.3618,0.149,-0.0212,0.149,0.0638,0.0212,0.0638,-0.1064,0.0638,-0.0638,0.0212,0.1914,0.3618,0.2766,0.5744,0.617,0.234,0.4894,0.617,0.532,0.9148,0.9574,0.7022,0.6596,0.532,0.532,0.2766,0,0.6572,0.6572,1,0.6858,-0.0286,-0.2,-0.2,-0.4,-0.4572,-0.5142,-0.6286,-0.5142,-0.6286,-0.5142,-0.3428,-0.3142,-0.2858,-0.4286,-0.1428,0.5142,0.7142,0.4572,-0.0286,0.4858,0.5142,0.3428,0.2572,-0.2572,-0.4858,-0.2858,0.0286,-1,-1,-1,-0.984,-0.9884,-0.9868,-0.7044,0.1192,-0.4498,-0.5294,-0.7534,0.7548,0.665,0.517,0.4462,0.3806,0.328,0.2834,0.3112,0.3148,0.1952,-0.1732,-0.8636,-0.957,-0.946,-0.9576,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9732,-0.9754,-0.977,-0.4866,0.099,-0.3738,-0.4042,-0.6412,0.5412,0.8316,0.4214,0.2942,0.2684,0.2684,0.2802,0.2288,0.1796,0.069,-0.2598,-0.854,-0.908,-0.9006,-0.915,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.94,-0.8734,-0.7268,-0.7268,-0.49,-0.5034,-0.3968,-0.7886,-0.9286,-0.9286,-0.9286,-0.9486,-0.963,-0.9172,-0.9258,-0.9258,-0.9258,-0.9344,-0.6168,-0.4234,-0.24,-0.5334,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7428,-1,1,1,1,-0.3714,-0.2572,-0.1428,1,-0.3428,-0.4572,-0.8858,-0.8858,-0.8286,-0.7428,-0.5428,-0.7714,-0.6572,-0.1142,-0.0572,-0.8,-0.8858,-0.7714,-1,-1,-1,-1,-1,-1,-1,0.07,0.1026,0.1312,0.1626,0.1822,0.1988,0.2104,0.2286,0.245,0.0944,0.8382,0.8052,0.7866,0.7458,0.7442,0.662,0.6208,0.6226,0.6368,0.7168,-0.7866,-0.2118,-0.6482,-0.1438,0.6674,0.808,0.947,1,0.6,0.4542,0.3648,0.3694,0.2,0.1436,0.167,0.4118,0.7036,0.8588,0.9718,0.7882,0.7882,0.6564,0.6894,0.8682,0.9718,1,0.6518,0.7176,0.727,0.6942,0.5718,0.5718,0.553,0.6376,0.4542,0.5294,0.4212,0.2988,0.2658,-0.0352,0.3212,0.4524,0.1494,0.1764,0.0498,-0.1494,0.009,0.086,0.2942,0.5838,0.991,0.9592,0.8824,1,0.6018,0.6244,0.6652,0.801,0.7648,0.7286,0.7512,0.7058,0.6334,0.552,0.543,0.4842,0.3892,0.4254,0.3756,0.2624,0.0498,-0.1448,0.1606,0.1462,0.175,0.0168,-0.1846,-0.2422,-0.151,-0.0792,-0.036,0.5828,1,0.9904,0.9232,0.9904,0.7746,0.5348,0.5156,0.669,0.7218,0.602,0.458,0.2902,0.0264,0.4148,0.4772,0.4148,-0.0504,0.0312,0.1414,0.036,-0.1414,-0.3718,0.2566,-1,-1,1,-1,-1,-1,-0.1,-1,-0.5188,0.2782,0.3082,0.0978,-0.1128,-0.218,0.0226,0.0676,0.1128,0.6692,1,0.8196,0.7294,0.4888,0.2932,0.203,0.4286,0.564,0.609,0.4888,0.3984,0.4436,0.1128,0.0828,-0.0076,-0.0526,0.188,-0.0226,0.188,0.0978,-0.1128,-0.8196,'16'
-0.1716,0.9142,1,0.5752,0.5536,0.2618,0.176,0.06,-0.1158,-0.2104,-0.176,-0.1588,-0.1502,-0.0902,-0.1546,-0.0214,-0.06,0.2146,0.2018,0.6008,0.6652,0.9614,0.8412,0.7854,0.8498,0.854,0.9056,0.545,0.2704,0.2446,0.2404,0.1846,-0.0726,0.703,0.7326,0.6238,0.6732,0.1882,0.264,-0.0826,0.043,-0.2674,-0.0924,-0.2508,0.0298,-0.1452,0.1486,0.0364,0.2178,0.1584,0.4818,0.4752,0.9472,1,0.637,0.439,0.538,0.6634,0.4092,0.2508,0.1914,0.3004,0.2212,0.2146,0.2094,0.9562,0.96,0.9854,0.9744,0.439,0.4208,0.1438,0.133,-0.0128,-0.02,0.1366,0.1476,0.246,0.2786,0.246,0.2896,0.5046,0.5702,0.8688,0.949,0.8834,1,0.8434,0.9344,0.643,0.5482,0.5702,0.6758,0.5336,0.4462,0.3662,0.0594,0.7342,0.6728,1,0.8568,0.1616,-0.088,-0.1942,-0.3292,-0.2188,-0.3292,-0.2556,-0.2434,-0.2066,-0.227,-0.272,-0.047,-0.002,0.2392,0.5256,0.8404,0.9428,0.91,0.8568,0.6278,0.636,0.7096,0.5542,0.321,0.3252,0.231,0.2024,-0.1566,0.3174,0.8914,1,0.4218,-0.1914,-0.4044,-0.4478,-0.5304,-0.6522,-0.6782,-0.6304,-0.6174,-0.5218,-0.4566,-0.5044,-0.4,-0.1914,-0.0348,0.1174,0.5608,0.6608,0.6826,0.4218,0.3696,0.5392,0.6,0.1566,-0.0696,-0.1608,-0.3044,-0.3478,-0.2658,0.3506,1,0.9058,0.3176,-0.1012,-0.2094,-0.2894,-0.5482,-0.5764,-0.5576,-0.5952,-0.6048,-0.6,-0.5058,-0.4118,-0.4306,-0.2564,0.0352,0.1718,0.5718,0.9058,0.8024,0.6424,0.5812,0.7176,0.7412,0.28,-0.0542,-0.2236,-0.233,-0.2942,-0.052,0.381,0.935,1,0.1904,-0.433,-0.5324,-0.6624,-0.6624,-0.7878,-0.8528,-0.7836,-0.71,-0.658,-0.6624,-0.6796,-0.6364,-0.5108,-0.4502,-0.251,-0.091,0.4156,0.4718,0.1342,0.1342,0.303,0.329,-0.039,-0.29,-0.4112,-0.5974,-0.5324,-0.2444,0.6444,0.6888,0.3334,-0.4222,0.0222,-0.0666,0.1112,-0.3778,-0.3334,-0.3778,-0.3778,-0.4666,0.0666,-0.1112,-0.2444,-0.2444,-0.0666,0.2888,0.3334,0.1112,0.8666,0.8222,0.8222,0.8222,0.9112,1,0.6,0.2444,0.2888,0.3334,0.5112,-0.35,0.85,1,0.55,0.7,0.4,0.05,-0.05,-0.25,-0.25,-0.3,-0.15,-0.3,-0.3,-0.1,-0.1,-0.1,0.25,0.15,0.45,0.9,0.9,0.45,0.5,0.85,0.85,0.65,0.6,0.25,0.4,0.2,0,-0.1182,0.6774,0.7204,0.656,0.6774,0.2044,0.2044,-0.0752,-0.0108,-0.2688,-0.1398,-0.2044,-0.0108,-0.0968,0.1182,-0.1612,0.1612,0.0752,0.5268,0.4624,1,0.957,0.785,0.7634,0.785,0.8064,0.3978,0.3548,0.2474,0.3978,0.1182,0.3118,-1,-1,-1,-1,-0.9832,-0.9832,-0.9714,-0.7504,-0.5258,-0.498,-0.6444,0.4164,0.7072,0.6848,0.6256,0.5628,0.6234,0.8542,0.7476,0.191,0.0482,-0.2984,-0.8688,-0.924,-0.7246,-0.8988,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9704,-0.9714,-0.931,-0.594,-0.1406,-0.2848,-0.5276,0.363,0.8332,0.8888,0.77,0.7128,0.694,0.8786,0.6956,0.1692,0.0224,-0.3436,-0.8408,-0.892,-0.7512,-0.8796,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9318,-0.8868,-0.8934,-0.61,-0.1068,-0.2334,-0.5634,-0.823,-0.923,-0.9116,-0.8826,-0.91,-0.8126,-0.8126,-0.8676,-0.8826,-0.8726,-0.87,-0.44,-0.4368,-0.8534,-0.83,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2,-0.4858,1,1,1,0.5714,0.6286,1,-0.0858,-0.6286,-0.5714,-0.7428,-0.7714,-0.8286,-0.8286,-0.7142,0.0858,0.2,0.1142,-0.5714,-0.4572,-0.4286,-1,-1,-1,-1,-1,-1,-1,0.2748,0.297,0.3172,0.3444,0.3612,0.3808,0.3866,0.3758,0.3568,0.1424,0.8254,0.8388,0.8466,0.7714,0.7332,0.6844,0.69,0.686,0.6854,0.8584,-0.76,-0.1176,-0.6362,-0.391,0.5434,0.7426,0.7884,1,0.2452,0.4654,0.4528,0.4654,0.4088,0.3082,0.6792,0.8806,1,0.9308,0.6478,0.7862,0.7924,0.566,0.5158,0.9056,0.893,0.8742,0.8554,0.6856,0.7358,0.7862,0.8114,0.8616,0.7044,0.629,0.5912,0.5598,0.585,0.4214,0.3396,0.0062,0.1026,0.057,0.0432,-0.0022,-0.0934,0.0934,0.1162,0.3076,0.4624,0.6128,0.8132,0.5808,0.6492,0.7404,0.5718,0.5216,0.918,0.8952,0.7996,0.672,1,0.722,0.5718,0.5764,0.6264,0.631,0.6174,0.5946,0.4852,0.2574,0.0342,-0.1252,0.2666,0.1344,0.0296,0.0388,-0.1116,-0.1936,-0.1662,-0.0706,0.107,0.3166,0.8496,0.754,0.9362,1,0.476,0.3622,0.4488,0.6218,0.7176,0.4852,0.6628,0.5308,0.4624,0.508,0.5626,0.4944,0.549,0.312,0.1618,0.1526,0.1252,-0.3302,-0.3068,-1,-1,1,-1,-1,-1,-0.1334,-1,-0.5,-0.125,0.0312,0.1094,0.0624,0.0782,0.1406,-0.1094,0.0624,0.2968,0.9688,1,0.6876,0.5312,0.4218,0.1718,0.2656,0.0156,0.4532,0.2812,0.3906,0.2656,0.25,0.2188,0.0782,0.0782,-0.0312,-0.0782,0.1562,-0.2344,-0.3594,-0.6094,'16'
-0.183,0.7984,0.8674,0.5332,0.618,0.13,0.1778,-0.077,-0.1194,-0.2892,-0.2466,-0.3262,-0.0982,-0.1088,0.0982,0.1564,0.4376,0.6022,0.8938,1,0.809,0.8726,0.6816,0.6924,0.5596,0.3316,0.2838,-0.0292,0.0982,0.0504,0.2254,0.236,-0.0636,0.657,0.684,0.7226,0.7534,0.2832,0.3372,0.1406,0.2254,0.0134,0.129,0.1022,0.264,0.2948,0.5106,0.7688,1,0.8228,0.8536,0.765,0.9692,0.896,0.761,0.738,0.341,0.3758,0.1714,0.2562,0.1638,0.3256,0.2794,0.5568,0.0552,0.7218,0.7056,1,0.951,0.407,0.321,0.2842,0.2066,0.2066,0.1288,0.4478,0.5706,0.8936,0.7546,0.6524,0.5624,0.456,0.3538,0.5746,0.6074,0.7914,0.7138,0.186,0.0756,-0.0388,-0.0552,-0.0388,-0.0388,0.1166,0.1616,0.501,-0.0136,0.6046,0.609,1,0.85,0.2046,-0.0636,0.0818,-0.0182,0.0818,0.3454,0.391,0.3136,0.3136,-0.059,-0.109,-0.1046,-0.1864,0.0046,-0.0728,0.2182,0.1864,-0.0046,-0.4182,-0.491,-0.4954,-0.409,-0.55,-0.4546,-0.491,-0.3454,0.0546,0.0434,0.628,0.7874,1,0.7342,0.169,0.0048,0,-0.087,0.2318,0.4542,0.2174,0.0096,-0.3044,-0.2996,-0.488,-0.4734,-0.657,-0.6618,-0.512,-0.285,0,-0.2078,-0.6184,-0.7874,-0.8116,-0.7488,-0.8648,-0.8648,-0.7342,-0.6474,-0.2416,0.1198,0.6382,0.8288,1,0.56,0.1492,-0.2322,-0.2616,-0.1492,-0.1344,-0.0464,-0.33,-0.3448,-0.6772,-0.6772,-0.7652,-0.863,-0.8826,-0.7458,-0.824,-0.5746,-0.4718,-0.5158,-0.7164,-0.6772,-0.7604,-0.8582,-0.9022,-0.8288,-0.736,-0.5942,-0.4914,0.3462,1,0.7462,0.9076,0.1616,-0.1308,0.0384,0.3538,0.3924,0.0308,-0.5076,-0.5076,-0.5,-0.7846,-0.8692,-0.8846,-0.7692,-0.7154,-0.8,-0.6538,-0.477,-0.3076,-0.4076,-0.6616,-0.7,-0.677,-0.6616,-0.6076,-0.6154,-0.6616,-0.7924,-0.223,0.2272,0.9546,1,0.7272,0.5454,0.1818,0.1818,-0.1364,-0.1818,-0.1818,-0.1818,-0.409,-0.3636,-0.5,-0.3636,0,0.091,0.4546,0.909,0.7728,0.8182,0.8182,0.409,0.6818,0.3182,0.4546,0.1364,-0.0454,0,-0.1364,0.1364,0.3182,-0.3846,0.7948,0.8974,0.4872,0.641,0.0256,0.2308,-0.0256,-0.077,-0.2308,-0.3846,-0.3846,-0.0256,0.0256,0.2308,0.3334,0.5384,0.8462,0.7436,1,0.7948,0.7948,0.6924,0.4872,0.5384,0.0256,0.1794,-0.077,-0.077,-0.1282,-0.0256,-0.1282,-0.1084,0.6144,0.518,1,0.9036,0.1566,0.0362,0.0362,-0.1084,-0.012,0.1566,0.3012,0.494,0.5904,0.1326,0.0844,-0.0362,0.0362,0.1326,0.1808,0.5662,0.6144,0.0602,-0.253,-0.3254,-0.3494,-0.3494,-0.3254,-0.3494,-0.4458,-0.253,0.1326,-1,-1,-0.9818,-0.9778,-0.9492,-0.832,-0.7606,-0.8914,-0.6012,-0.6274,-0.744,0.472,0.5728,0.6448,0.8344,0.9858,0.9636,0.7804,0.598,0.304,-0.0964,-0.629,-0.8692,-0.9476,-0.9438,-0.9674,-0.969,-1,-1,-1,-1,-1,-1,-1,-1,-0.9756,-0.9708,-0.7474,-0.4522,0.5656,-0.4676,-0.3538,-0.449,-0.6916,0.254,0.7176,0.8314,0.7314,0.9606,0.7156,0.4916,0.2374,0.0178,-0.2868,-0.7156,-0.8952,-0.942,-0.9378,-0.958,-0.9628,-1,-1,-1,-1,-1,-1,-1,-1,-0.9234,-0.87,-0.7734,0.32,0.34,0.6032,0.1366,-0.18,-0.3934,-0.7934,-0.7334,-0.7034,-0.72,-0.7468,-0.8034,-0.88,-0.8934,-0.8944,-0.9516,-0.9716,-0.84,-0.7934,-0.8934,-0.8434,-0.8634,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,0.0858,1,1,0.2,-0.8,-0.3428,1,1,1,1,-0.5714,-0.2,-0.1714,-0.0858,-0.1714,-0.4,-0.2286,-0.6,-0.6286,-0.7428,-0.8286,-1,-0.9714,-0.7142,-1,-1,-1,-1,-1,-1,0.1772,0.2258,0.2622,0.2962,0.3278,0.357,0.3822,0.4188,0.4268,0.2432,0.1762,0.1682,0.1574,0.1448,0.1094,0.0664,-0.052,-0.2662,-0.569,-0.5966,-0.7734,-0.3058,-0.7118,-0.2758,0.3566,0.6624,0.7218,0.175,-0.329,0.1574,0.0748,0.0874,0.1224,0.1002,0.205,0.2718,0.3132,0.4372,0.6026,0.733,0.9428,1,0.876,0.8188,0.752,0.8918,0.9268,0.8824,0.6184,0.5484,0.415,0.2972,0.4626,0.5198,0.5484,0.38,0.256,0.1828,0.0556,-0.2686,-0.3108,-0.0574,-0.0946,-0.1386,-0.0946,-0.0744,-0.0168,-0.044,0.1756,0.3244,0.5506,0.5744,0.75,1,0.831,0.8006,0.8446,0.7094,0.9256,0.9256,0.8412,0.6554,0.5406,0.4932,0.4898,0.571,0.5912,0.3886,0.4324,0.4662,0.2736,-0.054,0.2298,0.4336,0.4174,0.1068,0.1424,0.0486,0.0194,0.1522,0.301,0.9546,1,0.8446,0.9418,0.8284,0.6634,0.9482,0.9676,0.6796,0.7832,0.7412,0.7734,0.5502,0.5146,0.4564,0.4724,0.4758,0.4012,0.2978,0.2912,0.424,0.301,-0.0388,0.2198,-1,-1,1,-0.8,-1,-0.8,0.3,-1,-0.2778,0.2222,0.4444,0.3612,0.3612,1,0.9444,0.3888,0.3888,0.3334,0.6112,0.9722,0.6388,0.3334,0.4166,0.4166,0.5,-0.1388,0.3612,0.1944,0.3888,0.5834,-0.1944,0.3056,0.1112,0.1944,0.1666,0.25,0.1112,0.1388,0.1944,-0.25,'17'
0.039,0.9134,0.9654,0.7186,0.762,0.2468,0.2988,0.0736,0.1126,-0.2252,-0.1038,-0.065,0.078,0.0086,0.2728,0.1212,0.4936,0.5152,1,0.948,0.6018,0.5628,0.8832,0.8832,0.42,0.3594,0.0866,0.0606,0.1472,0.251,0.381,0.5454,0.1744,0.8342,0.8272,0.9654,0.955,0.4888,0.4612,0.392,0.3576,0.2712,0.2642,0.3644,0.3714,0.551,0.5716,0.886,0.9032,0.969,1,0.6234,0.5268,0.7098,0.7652,0.4128,0.285,0.2228,0.2884,0.0778,0.1918,0.2954,0.3782,0.5372,-0.0056,0.5954,0.5804,1,0.898,0.2778,0.1154,0.1984,-0.017,0.0662,0.0396,0.1834,0.3648,0.482,0.6862,0.743,0.3308,0.1872,-0.0548,-0.119,0.1568,0.2326,0.1154,0.0056,-0.2174,-0.293,-0.2778,-0.3156,-0.1796,-0.2098,-0.1494,0.1682,-0.0164,0.5268,0.7572,1,0.7614,0.2346,0.1152,0.14,0.0494,-0.0412,0.1482,0.4898,0.642,0.288,0.074,-0.177,-0.1852,-0.3868,-0.4404,-0.4444,-0.2428,0.0412,0.0452,-0.2592,-0.4692,-0.5884,-0.7408,-0.7448,-0.9054,-0.7778,-0.568,-0.2386,0.0614,0.5138,0.869,1,0.518,0.1502,0.1882,0.0148,0.129,0.332,0.3234,0.1078,-0.0274,-0.1924,-0.4292,-0.425,-0.8266,-0.869,-0.7548,-0.8394,-0.5476,-0.1332,-0.0952,-0.3362,-0.6068,-0.8054,-0.8858,-0.7632,-0.7632,-0.8646,-0.6702,-0.2008,0.1674,0.63,0.934,1,0.2644,0.0132,0.185,0.1146,0.0882,0.0396,-0.2246,-0.6344,-0.586,-0.6652,-0.7488,-0.7004,-0.6432,-0.6828,-0.6916,-0.8326,-0.5682,-0.4846,-0.2556,-0.3876,-0.608,-0.696,-0.8722,-0.8326,-0.7488,-0.7136,-0.6256,-0.1718,0.3874,0.952,0.928,1,0.2252,0.033,0.1592,-0.075,-0.1712,-0.6696,-0.4654,-0.3634,-0.5016,-0.6096,-0.4054,-0.4654,-0.4354,-0.4414,-0.6696,-0.6456,-0.4474,-0.3154,-0.3634,-0.5016,-0.2192,-0.6276,-0.6096,-0.8018,-0.7718,-0.7298,-0.5676,-0.6876,0.0732,0.9024,1,0.4146,0.6098,0.317,0.122,0.0732,-0.4634,-0.6098,-0.4634,-0.1708,-0.2682,-0.2196,-0.0732,-0.0732,0.1708,0.2682,0.6586,0.8536,0.6098,0.4146,0.5122,0.561,0.4146,0.4146,0.2682,0.2682,0.0732,0.4146,0.2682,0.6586,0,0.826,0.8696,0.6522,0.6522,0.2608,0.3044,0.0434,0.1304,-0.2174,-0.1304,-0.174,0,-0.0434,0.2174,0.0434,0.3478,0.5218,0.8696,0.8696,0.6956,0.6522,0.913,1,0.7392,0.3044,0.2174,0.2174,0.3044,0.3914,0.4782,0.6086,-0.1162,0.5348,0.5582,1,0.8604,0.1628,-0.0232,0.0466,-0.1162,-0.0698,-0.0232,0.0466,0.3954,0.3954,0.4884,0.4652,-0.0698,-0.1396,-0.4418,-0.3024,-0.0232,0.0698,0.093,-0.1628,-0.3024,-0.5348,-0.4186,-0.4418,-0.372,-0.5582,-0.4652,0.186,-1,-1,-1,-0.9822,-0.9834,-0.9682,-0.8656,-0.8608,-0.8238,-0.733,-0.7298,0.1342,0.2162,0.4456,0.7914,0.9822,0.9238,0.692,0.2382,-0.1904,-0.5084,-0.7436,-0.8682,-0.9152,-0.941,-0.9636,-0.9688,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9708,-0.9712,-0.907,-0.6278,0.0936,-0.5246,-0.5606,-0.7086,0.047,0.298,0.6036,0.8842,0.9318,0.8658,0.4712,0.0182,-0.3704,-0.6172,-0.7962,-0.8866,-0.9104,-0.9198,-0.9498,-0.9518,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.84,-0.9668,-0.7868,-0.0368,0.27,0.3266,-0.31,-0.4934,-0.9172,-0.9286,-0.8258,-0.8086,-0.8286,-0.863,-0.883,-0.8858,-0.8916,-0.8876,-0.9626,-0.97,-0.8434,-0.7734,-0.83,-0.7834,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,-0.6858,1,1,1,-0.7428,1,1,1,-0.0286,-0.5714,-0.5142,-0.4,-0.4,-0.4286,-0.4,-0.5428,-0.5428,-0.8,-0.8858,-0.7428,-0.8286,-0.8858,-0.8,-1,-1,-1,-1,-1,-1,0.242,0.2482,0.2688,0.3084,0.3266,0.355,0.385,0.4124,0.4218,0.2664,0.297,0.2428,0.1806,0.0832,0,-0.088,-0.233,-0.4654,-0.7282,-0.6282,-0.7066,-0.1882,-0.7548,-0.244,0.0814,0.1462,0.2498,1,-0.3084,0.025,0.0416,0.1334,0.1834,0.2458,0.25,0.3208,0.4624,0.5584,0.625,0.8166,1,0.95,0.7376,0.6126,0.6458,0.8166,0.8958,0.5292,0.4292,0.2834,0.3084,0.3,0.1876,0.2708,0.2208,0.2,0.2542,0.1208,-0.075,-0.4334,-0.2178,-0.2324,-0.0996,-0.2104,-0.1918,-0.1328,-0.155,-0.0886,-0.059,0.2878,0.4502,0.4798,0.9484,1,0.7306,0.6938,0.9226,0.69,0.9704,0.941,0.738,0.6052,0.583,0.3174,0.3174,0.4576,0.4982,0.3174,0.3284,0.2694,0.2694,0.1254,0.1764,0.168,-0.0294,-0.0546,-0.0378,-0.1008,-0.1008,0.0462,0.084,0.6344,0.7942,0.769,1,0.9202,0.605,0.6428,0.7142,0.5126,0.6596,0.7774,0.5042,0.3614,0.3236,0.2984,0.1176,0.1806,0.189,-0.0924,0.1008,0.084,0.1008,-0.0756,1,-1,-1,1,-1,-1,-1,0.0666,-1,-0.2674,0.6436,0.8218,0.6436,0.1684,0.0298,0.6238,0.604,0.505,0.2872,0.4456,1,0.604,0.0496,0.0694,0.208,0.4258,0.0892,0.208,0.2476,0.1684,0.0496,0.1882,0.2674,-0.109,0.1486,0.2674,0.1288,-0.1486,0.0298,-0.109,-0.505,'17'
-0.3092,0.2814,0.2368,0.429,0.649,0.8412,0.9304,1,0.7994,0.8718,0.635,0.4846,0.1086,0.0502,-0.014,-0.1282,-0.1364,-0.2116,-0.1226,0.0502,0.0892,0.3538,0.3732,0.0584,-0.0418,-0.1672,-0.1616,-0.1254,-0.117,0.0028,0.0056,-0.0892,-0.1516,0.3638,0.2578,0.352,0.57,0.6524,0.997,1,0.5818,0.5198,0.726,0.5316,0.3814,0.0868,0.1252,-0.302,-0.3372,-0.296,-0.2666,-0.1164,-0.0574,-0.022,-0.1488,-0.3136,-0.4668,-0.5552,-0.4286,-0.3668,-0.2812,0.0192,0.0516,-0.1252,-0.1636,0.3512,0.2262,0.3512,0.5922,0.6666,1,0.9792,0.4048,0.4852,0.7172,0.625,0.7172,0.2858,0.247,-0.0358,-0.131,-0.1458,-0.0506,0.0804,-0.125,-0.3958,-0.5596,-0.628,-0.75,-0.7084,-0.625,-0.6786,-0.5654,-0.6072,-0.4346,-0.3958,-0.1966,0.2826,0.1822,0.3544,0.6414,0.7016,1,0.954,0.277,0.1536,0.277,0.693,0.779,0.4434,0.4176,0.2338,0.145,0.1392,-0.076,-0.3974,-0.5122,-0.5466,-0.6328,-0.7246,-0.6642,-0.802,-0.7388,-0.888,-0.8308,-0.6154,-0.5322,-0.4032,-0.1194,0.3194,0.3104,0.4298,0.7284,0.7134,1,0.8568,0.4806,0.2418,0.2716,0.5374,0.5402,0.6956,0.4656,0.2776,0.1432,0.0448,-0.3672,-0.5074,-0.7014,-0.7612,-0.8298,-0.8358,-0.8298,-0.8896,-0.9014,-0.9104,-0.8776,-0.7642,-0.5612,-0.4388,-0.015,0.4076,0.4044,0.4808,0.8302,0.8336,1,0.6206,0.5008,0.1014,-0.0282,0.2778,0.8902,0.8502,0.4976,0.4242,0.3112,-0.2978,-0.6106,-0.5474,-0.6272,-0.654,-0.5774,-0.6472,-0.7738,-0.9568,-0.9068,-0.847,-0.7504,-0.7204,-0.4976,-0.3478,0.1128,0.6396,0.6356,0.703,1,0.8456,0.9802,0.5684,0.509,0.1762,0.0772,0.4534,0.8178,0.7782,0.3504,0.5524,0.4258,-0.3228,-0.5288,-0.7306,-0.7624,-0.8574,-0.7188,-0.6238,-0.4732,-0.7306,-0.8178,-0.79,-0.9524,-0.8654,-0.501,-0.2316,-0.3334,0.697,0.7576,0.4546,0.9394,1,0.9394,1,0.6364,0.5758,0.5758,0.4546,0.091,0.2122,0.1516,-0.091,0.0304,-0.5152,-0.2122,-0.0304,-0.3334,-0.1516,0.2728,0.2728,0.0304,-0.0304,-0.2122,-0.2728,-0.7576,-0.2122,-0.2728,-0.4546,-0.3704,0.2592,0.2222,0.4814,0.6296,0.8148,0.963,1,0.8888,0.8518,0.6296,0.4814,0.4444,0.2592,0.2222,0.074,0.074,0.074,0.1112,0.2592,0.3704,0.6296,0.6296,0.3704,0.2592,0.1482,0.1852,0.2222,0.3704,0.4074,0.4444,0.3704,-0.1162,0.4186,0.3024,0.3954,0.5814,0.6512,1,0.9534,0.6512,0.7442,0.9768,0.8372,0.7906,0.3488,0.2558,-0.1628,-0.0698,0.0466,0.2094,0.2326,0.3024,0,-0.3488,-0.4186,-0.4652,-0.4418,-0.4884,-0.5116,-0.4652,-0.5348,-0.3024,-0.3024,-1,-1,-1,-1,-1,-1,-0.975,-0.952,-0.7698,-0.9782,-0.9678,0.6282,0.8072,0.725,0.7594,0.9416,0.9614,0.8428,0.4938,0.1396,-0.1688,-0.3968,-0.6854,-0.875,-0.8968,-0.9292,-0.9594,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.986,-0.9768,-0.8852,-0.9826,-0.9706,0.5562,0.6354,-0.0314,0.0688,0.2778,0.3414,0.1292,-0.1912,-0.4382,-0.6432,-0.78,-0.8662,-0.8492,-0.8918,-0.9362,-0.9548,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9186,-0.9668,-0.84,-0.8734,-0.6668,-0.729,-0.68,-0.72,-0.6712,-0.716,-0.684,-0.762,-0.78,-0.85,-0.876,-0.932,-0.7734,-0.5768,-0.61,-0.5034,-0.5168,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4572,-0.4286,-0.6,-0.6,1,1,-0.1142,-0.0286,-0.6,-0.8286,-0.9714,-0.8286,-0.7428,-0.8858,-0.7714,-0.7714,-0.4858,-0.6286,-0.6,-0.6572,-0.6572,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.4036,-0.3842,-0.4878,-0.5038,-0.5124,-0.6122,-0.6962,-0.8402,-1,-1,-0.6934,0.1294,-0.9722,-0.4184,0.6368,0.8588,0.653,1,0.088,0.3956,0.4066,0.7252,0.6484,0.5604,0.6594,0.8462,0.6924,0.7582,0.6484,0.923,1,0.6924,0.8242,0.7802,0.7032,0.7802,0.1208,0.6264,0.6264,0.6594,0.5824,0.2528,0.4616,0.4176,0.3406,0.3296,0.3406,0.3626,-0.1538,-0.4396,-0.1558,0.539,0.8182,1,0.6754,0.6948,0.1754,0.461,0.2142,0.1298,0.2728,0.578,0.3702,0.3182,0.2598,0.1298,0.0844,0.0714,0.1104,0.2792,0.2532,0.1038,0.0714,0.026,0.1624,0.1624,0.0974,0.0714,-0.0714,-0.0064,-0.013,-0.6558,-0.0824,-0.0648,0.4058,0.6648,1,0.8942,0.2176,0.2,0.2412,0.4412,0.553,0.647,0.6236,0.4118,0.5764,0.7352,0.2058,0.2118,0.3588,0.5176,0.5588,0.253,0.2706,0.2118,-0.0058,0.1118,0.2,0.2,0.1764,-0.0412,-0.253,-0.6764,-0.9962,1,-1,-1,-1,-1,-0.8,-1,-1,-0.4546,-0.124,0.3224,0.5042,0.3224,-0.1074,0.3058,1,0.8348,0.7024,0.686,0.124,0.1074,0.1404,0.372,0.686,0.3224,0.0082,0.5042,0.2232,0.1736,-0.157,-0.0414,-0.2232,0.3058,0.405,0.19,-0.0082,-0.3058,-0.2728,-0.6034,-0.8842,'18'
-0.1934,0.3378,0.3088,0.4512,0.6222,0.8934,0.8512,1,0.8422,0.8622,0.6334,0.1822,-0.0466,-0.0578,-0.1134,-0.0956,-0.1888,-0.1712,0.0334,0.0222,0.2044,0.2512,0.42,0.3534,0.1178,0.0178,0.0466,0.0356,0.24,0.3312,0.3956,0.2288,-0.1862,0.3388,0.2694,0.3896,0.563,0.7248,0.896,1,0.6416,0.63,0.244,0.2554,-0.0312,-0.0636,0.0358,-0.0498,-0.1284,-0.1514,0.0128,0.1862,0.3132,0.1722,0.23,-0.133,-0.1052,-0.1976,-0.2184,-0.1468,-0.0798,0.3086,0.2162,0.0128,-0.1634,0.3606,0.2812,0.4182,0.6058,0.7404,0.9206,1,0.5408,0.4808,0.399,0.3606,0.2308,0.1202,0.1778,-0.0024,0.1202,0.2476,0.3198,0.3318,0.3486,-0.1682,-0.1924,-0.3846,-0.4592,-0.4808,-0.565,-0.4278,-0.1706,-0.0336,0.0432,0.1058,-0.1774,0.3272,0.2374,0.4424,0.6866,0.8042,0.97,1,0.553,0.523,0.4608,0.371,0.5254,0.3548,0.4516,0.53,0.583,0.0438,0.0322,-0.0968,-0.1612,-0.3502,-0.5,-0.4838,-0.6566,-0.5922,-0.5254,-0.4908,-0.4102,-0.4308,-0.1336,-0.1428,-0.1792,0.308,0.3686,0.5202,0.8282,0.8738,1,0.9166,0.591,0.5026,0.6288,0.803,0.8484,0.6364,0.548,0.6262,0.4142,-0.1792,-0.4166,-0.4546,-0.6792,-0.7248,-0.7196,-0.745,-0.7576,-0.7778,-0.6894,-0.8006,-0.7576,-0.5934,-0.4898,-0.2954,-0.2368,0.141,0.4076,0.4696,0.824,0.775,0.8966,0.6378,0.5654,0.5886,0.7516,0.9068,1,0.9768,0.7698,0.6016,0.2342,-0.1772,-0.48,-0.7284,-0.899,-0.9172,-0.8654,-0.9328,-0.9302,-0.9482,-0.9404,-0.9146,-0.85,-0.7128,-0.5834,-0.3092,-0.2702,0.2182,0.4128,0.5556,1,0.9506,0.723,0.476,0.3306,0.3498,0.4788,0.7448,0.9506,0.9726,0.7312,0.55,-0.048,-0.4404,-0.6214,-0.7422,-0.6844,-0.7202,-0.8052,-0.646,-0.6076,-0.8106,-0.8628,-0.8766,-0.8244,-0.8848,-0.7888,-0.5418,-0.3846,0.3846,0.4872,0.5384,0.7436,0.7948,1,0.8974,0.6924,0.8462,0.3334,0.077,0.0256,-0.077,-0.282,-0.4872,-0.3846,-0.5384,-0.4358,-0.1794,-0.1282,0.1794,0.282,0.3334,-0.0256,-0.077,-0.3846,-0.077,0.1282,0.3846,0.3334,-0.2308,-0.2962,0.2592,0.2592,0.5556,0.5186,1,0.8888,1,0.8518,0.926,0.7778,0.1852,0,-0.037,-0.2592,-0.1112,-0.3704,-0.1482,-0.1112,0.074,0.2222,0.4074,0.2962,0.4074,0.074,0.2222,-0.074,0.074,0.3334,0.4444,0.3704,0.4444,-0.1182,0.3118,0.4408,0.5484,0.8494,0.8494,1,0.8494,0.5914,0.7204,0.7634,0.957,0.8924,0.5698,0.5484,0.613,0.1828,-0.0968,-0.6344,-0.5054,-0.4624,-0.957,-0.8494,-0.785,-0.7204,-0.5268,-0.5914,-0.828,-0.656,-0.5914,-0.3764,-0.5054,-1,-1,-1,-1,-1,-1,-1,-0.9838,-0.986,-0.9796,-0.9028,0.783,0.7408,0.5654,0.585,0.714,0.7232,0.6344,0.452,0.0906,-0.187,-0.3724,-0.6696,-0.9148,-0.9598,-0.9612,-0.9478,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.988,-0.9888,-0.9704,-0.8602,0.6414,0.4848,0.0936,0.0574,0.2624,0.3494,0.2104,0.0408,-0.1116,-0.3584,-0.603,-0.8348,-0.853,-0.8682,-0.9158,-0.9542,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.9068,-0.6968,-0.5734,-0.7438,-0.7492,-0.7474,-0.7492,-0.751,-0.7546,-0.7582,-0.762,-0.882,-0.8834,-0.915,-0.9234,-0.5468,-0.3534,-0.35,-0.7134,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,-0.4572,1,1,1,-0.7428,-0.8858,-0.7714,-0.8572,-0.8858,-0.8572,-0.7142,-0.9714,-0.6858,-0.4286,0.2286,0.7428,0.0858,-0.3142,-0.2858,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.2496,0.2384,0.295,0.2698,0.2576,0.1198,0.0048,-0.256,-0.6662,-1,-0.72,0.3294,-0.8378,-0.43,0.9232,0.9158,0.684,0.5584,-0.0176,0.3216,0.1578,0.6374,0.497,0.3802,0.7778,0.7192,0.766,0.2046,0.6726,1,0.883,0.345,0.5556,0.1578,0.2866,0.193,0.2514,0.5322,0.5672,0.345,0.2748,0.2982,0.2982,0.3334,0.2046,0.1696,0.0994,0.0292,0.041,-0.7076,0.119,0.2158,0.3304,0.5506,0.8062,0.7268,0.6828,0.7534,0.7356,0.815,0.9472,1,0.9648,0.392,0.7974,0.7444,0.7622,0.586,0.4362,0.9736,0.5948,0.4186,0.4186,0.6652,0.5682,0.7444,0.489,0.2864,0.1894,0.1894,0.0926,-0.3656,-0.3876,-0.0914,0.4074,0.5802,1,0.8666,0.2296,0.195,0.1308,0.1604,0.3432,0.5506,0.358,0.0814,0.4222,0.516,0.3136,0.279,0.0222,0.1902,0.4124,-0.0666,-0.0618,-0.0222,-0.195,-0.0666,0.0024,-0.2494,-0.2938,-0.3382,-0.432,-0.4914,-0.9946,1,-1,-1,-1,-1,-0.4,-1,-1,-0.6644,-0.1328,-0.077,0.2028,0.007,0.1748,0.2168,0.944,1,1,-0.007,0.077,0.1608,-0.1328,0.1048,0.1328,0.2868,0.3426,0.2448,0.7482,0.3286,0.1888,-0.2588,-0.2868,0.049,0.035,-0.2588,-0.077,-0.5524,-0.3846,-0.3426,-0.6784,'18'
-0.2534,0.493,0.4838,0.6406,0.788,1,0.9078,0.6866,0.4286,0.4378,0.2812,0.447,0.2812,0.4838,0.401,0.576,0.8526,0.6036,0.6036,0.5208,0.5484,0.4838,0.742,0.8064,0.493,0.5668,0.3732,0.2812,0.106,0.2258,0.1152,0.3364,-0.2116,0.3212,0.2846,0.438,0.708,1,0.8906,0.5986,0.438,0.343,0.2336,0.3358,0.1094,0.1386,0.4234,0.4744,0.6204,0.6278,0.2116,0.2044,0.1022,0.0948,0.2262,0.3284,0.3358,0.2992,-0.1606,-0.124,-0.0072,-0.0876,0.0802,0.0146,-0.1058,0.5058,0.4196,0.3804,0.8274,1,0.7648,0.8274,0.3176,-0.0432,0.1608,0.1608,0.396,0.349,0.702,0.8432,0.8118,0.4588,0.4432,0.2862,0.2706,0.2236,0.3254,0.498,0.4902,0.0588,-0.0588,-0.1294,-0.0824,-0.1058,-0.0352,0.153,-0.0504,0.5378,0.4202,0.2858,0.689,0.79,1,0.9916,0.2522,0.0672,0.2352,0.1176,0.2774,0.2942,0.5126,0.5042,0.2858,0.1008,0.0756,0.0084,-0.0084,0.2606,0.2942,0.521,0.5378,0.521,0.3362,0.2352,0.3026,0.1596,0.084,0,-0.0194,0.5728,0.4078,0.2524,0.369,0.5146,0.9902,0.7864,0.301,0.136,0.1844,0.2428,0.165,0.398,0.8738,1,0.4854,0.233,0.3884,0.2718,0.2622,0.1748,0.33,0.6894,0.6504,0.0776,-0.0098,-0.2816,-0.5048,-0.2912,-0.4564,-0.2136,0.0158,0.602,0.3508,0.3194,0.0786,0.7172,0.9372,0.4346,0.5078,0.0366,-0.0366,0.0472,0.4554,0.5812,1,0.9686,0.5602,0.2146,0.2356,0.1728,0.1518,0.309,0.843,1,0.8638,0.2984,-0.1728,-0.0786,0.0262,-0.1204,-0.424,-0.3718,-0.1288,0.3168,0.0792,-0.0496,0.4158,0.8614,0.7624,0.307,0.2574,0.2278,-0.01,0.0892,0.1782,0.4852,1,0.9208,0.6336,-0.1386,-0.208,-0.1486,-0.1782,-0.0694,0.0594,0.6732,0.6138,0,-0.01,-0.0792,-0.1584,-0.6138,-0.2476,-0.1782,-0.1162,0.721,0.7674,0.6744,1,0.9534,1,1,0.4884,0.6744,0.4418,0.628,0.5348,0.5814,0.6744,0.7674,0.907,0.5348,0.814,0.8604,0.6744,0.6744,0.6744,0.8604,0.721,0.5814,0.4884,0.3024,0.1628,0.0232,-0.3024,0.2558,-0.3454,0.2364,0.2,0.491,0.6364,1,0.9272,0.4182,0.3454,0.2728,0.0546,0.309,0.0546,0.2728,0.3454,0.4182,0.5272,0.309,0.309,0.2728,0.3818,0.309,0.4546,0.5636,0.5636,0.5636,0.3818,0.2,0.1272,0.2,0.309,0.3454,-0.0126,0.6202,0.5444,0.4178,0.8734,1,0.9494,1,0.367,-0.038,0.5696,0.519,0.6962,0.6202,0.6456,0.8988,0.5696,0.2406,0.3924,0.114,0.0886,0.2658,0.3164,0.4936,0.5696,0.5444,0.367,0.4178,0.4178,0.4178,0.2406,0.2152,-1,-1,-1,-1,-1,-1,-0.9754,-0.9812,-0.8124,-0.3284,-0.4824,0.2652,0.925,0.918,0.6356,0.2958,0.1792,0.112,-0.126,-0.039,-0.1112,-0.3018,-0.7176,-0.4114,-0.686,-0.928,-0.9724,-0.9762,-0.9724,-0.9734,-0.9664,-0.9654,-0.9438,-1,-1,-1,-1,-1,-1,-0.9796,-0.98,-0.8674,-0.4814,-0.1498,0.219,0.9796,0.7764,0.4426,0.238,0.005,0.0132,-0.1878,-0.2814,-0.3162,-0.3932,-0.6624,-0.5538,-0.381,0.0262,0.0394,0.1316,-0.1244,-0.3488,-0.0842,-0.418,-0.6244,-1,-1,-1,-1,-1,-1,-0.9334,-0.9534,-0.8768,-0.7334,-0.6434,-0.7934,-0.6934,-0.6868,-0.72,-0.715,-0.705,-0.73,-0.735,-0.7,-0.62,-0.465,-0.14,-0.13,0.8866,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-0.2,-0.7142,1,1,-0.5142,1,1,-0.1142,-0.7428,-0.6286,-0.5714,-0.6,-0.8,-0.7142,-0.6858,0.0572,1,1,0.8286,-0.1142,-0.7428,-0.8,-0.7142,-0.8,-0.6858,-0.6,1,1,1,1,1,1,1,1,1,1,1,-0.3276,-0.3276,-0.2276,-0.2276,-0.3216,-0.3928,-0.3994,-0.46,-0.4758,-0.503,-0.6934,-0.647,-0.1168,-0.3714,0.9598,0.914,0.5556,0.7834,0.0762,0.0254,0.4214,0.4518,0.401,0.939,1,0.5026,0.6548,0.665,0.7158,0.533,0.6346,0.736,0.5026,0.736,0.6852,0.6142,0.3604,0.5532,0.2488,0.2488,0.5026,0.6752,0.1168,0.2792,0.4314,0.3706,0.137,0.2488,0.0356,-0.7258,-0.1406,0.6706,0.6144,0.5502,0.5342,0.4136,0.4378,0.494,1,0.9036,0.5742,0.6466,0.6144,0.3414,0.5662,0.3494,0.4538,0.2048,0.2772,0.1326,0.3012,0.237,0.261,0.0282,0.1968,0.012,0.1646,0.1004,0.1968,-0.4538,-0.3654,-0.5824,0.2504,0.5178,0.9586,0.8494,0.2354,0.1902,0.2956,0.4388,0.9624,1,0.7816,0.9812,0.9058,0.6874,0.5254,0.3974,0.3446,0.4538,0.3974,0.2542,0.258,0.0772,-0.16,-0.2956,-0.3408,-0.337,-0.3748,-0.4388,-0.5028,-0.4916,-0.6196,-0.676,-0.99,1,-1,-1,-1,-0.2,-1,-1,-1,-0.8884,-0.6652,-0.5906,-0.4884,-0.4698,-0.3954,-0.4232,-0.1628,-0.2,-0.1906,-0.1256,-0.1628,-0.014,0.0232,0.2372,0.1628,0.1628,0.0604,0.1256,0.1442,0.293,0.3674,0.321,0.414,0.414,0.479,0.5814,0.5348,0.8884,1,0.8884,0.3302,'19'
-0.2646,0.4838,0.5162,0.8646,0.929,0.8258,0.942,0.5678,0.5678,0.3162,0.4322,0.271,0.5162,0.4,0.6646,0.613,0.942,0.9226,0.9548,1,0.787,0.8194,0.858,0.9806,0.7226,0.787,0.5742,0.5678,0.4452,0.542,0.4904,0.5162,-0.2184,0.4708,0.4954,0.717,0.7354,0.9446,1,0.477,0.3724,0.0954,0.163,0.2616,0.3908,0.36,0.5076,0.6924,0.9076,0.7538,0.9384,0.8216,0.84,0.7538,0.9692,0.9324,0.8276,0.8216,0.483,0.5076,0.36,0.4216,0.3354,0.4276,-0.1392,0.4784,0.4836,0.6304,0.6202,0.9798,1,0.4684,0.3924,0.1798,0.205,0.2506,0.2708,0.4734,0.5292,0.8632,0.9292,0.681,0.767,0.5746,0.6912,0.5898,0.7468,0.5798,0.7064,0.5444,0.4532,0.3216,0.3468,0.2354,0.2962,0.1898,-0.0632,0.5264,0.5158,0.5894,0.5368,0.9842,0.9264,0.7368,0.6842,0.4,0.3158,0.4264,0.3316,0.6474,0.5894,1,0.9158,0.5736,0.421,0.5894,0.4736,0.679,0.6052,0.679,0.6578,0.479,0.4106,0.3578,0.2578,0.2894,0.1948,0.2422,-0.061,0.5426,0.4818,0.561,0.7318,0.9878,0.8232,0.933,0.6952,0.4634,0.3902,0.4878,0.628,0.6952,0.9878,1,0.6402,0.506,0.5976,0.5244,0.5366,0.4756,0.6708,0.6524,0.6098,0.4512,0.3414,0.189,0.256,0.1708,0.2074,0.1646,-0.0922,0.4606,0.3684,0.4474,0.7764,0.8882,0.954,1,0.4868,0.421,0.3026,0.375,0.5986,0.8158,0.9342,0.6644,0.5658,0.421,0.3882,0.1514,0.2698,0.3618,0.5264,0.6052,0.421,0.2698,0.046,0.0132,-0.046,0,-0.2236,-0.1382,-0.075,0.4546,0.257,0.3596,0.8182,0.8102,1,0.834,0.423,-0.075,0.1146,0.4308,0.2806,0.5968,0.4782,0.5574,0.249,0.0356,-0.0118,0.0118,0.0434,0.3202,0.5416,0.5416,0.4546,0.0672,-0.249,-0.3914,-0.4624,-0.5732,-0.5416,-0.5494,-0.3334,0.4118,0.451,0.8432,0.8824,0.8824,0.8824,0.4118,0.5294,0.1764,0.3726,0.1372,0.4902,0.2942,0.647,0.5294,0.9216,0.9216,1,0.9608,0.7648,0.7648,0.8432,0.9216,0.6078,0.7648,0.451,0.5686,0.2942,0.5294,0.2942,0.5294,-0.2,0.4546,0.491,0.7818,0.8546,0.8546,0.9272,0.6364,0.5272,0.3454,0.3818,0.2728,0.4546,0.3454,0.5636,0.5272,0.891,0.8182,0.9636,0.9272,0.7454,0.7818,0.891,1,0.709,0.8182,0.6,0.6,0.491,0.5636,0.491,0.5272,-0.0666,0.4888,0.4444,0.4888,0.7778,0.9334,0.8666,1,0.6222,0.4666,0.4444,0.4444,0.6444,0.7112,1,0.8888,0.5334,0.4222,0.5334,0.3556,0.2888,0.4666,0.5334,0.5556,0.6444,0.3334,0.3334,0.1778,0.1556,0.1334,0.0444,-0.0666,-1,-1,-1,-1,-1,-1,-0.9864,-0.9886,-0.9856,-0.9828,0.1996,0.7072,0.6604,0.8766,0.9814,0.9642,0.8062,0.6826,0.5664,0.3576,0.15,-0.2246,-0.7804,-0.8694,-0.8004,-0.8248,-0.9204,-0.954,-0.9698,-0.9692,-0.9778,-0.972,-0.972,-1,-1,-1,-1,-1,-1,-0.9854,-0.986,-0.9838,-0.9706,0.1956,0.3852,0.6374,0.967,0.8704,0.719,0.651,0.4908,0.2848,0.1528,-0.0354,-0.4306,-0.7692,-0.8626,-0.8356,-0.7036,-0.6786,-0.6324,-0.56,-0.429,-0.5528,-0.4796,-0.5366,-1,-1,-1,-1,-1,-1,-0.9124,-0.94,-0.8468,-0.51,-0.59,-0.735,-0.675,-0.755,-0.665,-0.69,-0.69,-0.7,-0.705,-0.712,-0.72,-0.744,-0.4868,-0.3768,-0.29,0.4,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-0.0286,-0.8858,-0.3714,1,1,1,-0.7142,-0.5428,-0.5428,-0.6572,-0.7142,-0.7428,-0.6,-0.4,0.7714,1,0.6286,-0.2286,1,1,-0.3714,-0.4858,-0.8,-0.8858,-0.9142,-0.8572,-0.8858,1,1,1,1,1,1,1,1,1,1,0.0554,0.115,0.115,0.1014,0.0888,0.1292,0.1244,0.1232,-0.064,-0.4172,-0.8,-0.5648,0.499,0.3784,0.4232,0.694,0.962,1,0.2942,0.7352,0.9412,0.9118,0.5588,0.5,0.5882,0.7352,0.9412,1,0.9706,0.9412,0.9412,0.8236,0.7648,0.7058,0.647,0.5294,0.5,0.5,0.3824,0.2058,-0.0882,-0.0882,-0.1764,-0.4118,-0.4706,-0.1764,-0.147,-0.147,-0.0588,-0.353,0.0878,0.4736,0.9824,0.8772,0.2632,0.228,0.228,0.4562,0.9298,1,0.8422,0.7368,0.9298,0.5964,0.3508,0.4386,0.4386,0.421,0.3684,0.2808,0.193,0.0702,-0.3334,-0.421,-0.4562,-0.5264,-0.579,-0.4562,-0.3684,-0.2632,-0.3684,-0.7544,0.3334,0.628,1,0.7984,0.5504,0.4884,0.5348,0.628,0.938,0.938,0.845,0.783,0.8914,0.5968,0.5194,0.5038,0.5968,0.5348,0.4884,0.4264,0.3178,0.1628,-0.1938,-0.1318,-0.3334,-0.5348,-0.4108,-0.2558,-0.2558,-0.2714,-0.0698,-0.2248,1,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.866,-0.6648,-0.5754,-0.4526,-0.4078,-0.3408,-0.1844,-0.028,-0.0726,-0.1396,0.0056,0.162,0.1062,0.0838,0.1508,0.0726,-0.0502,0.0614,0.2738,0.1174,0.2626,0.419,0.5866,0.5084,0.5754,0.6312,0.6424,0.7206,0.7988,0.6872,1,0.877,'19'
-0.2322,0.8152,0.872,0.6018,0.635,-0.0616,0.0474,-0.3744,-0.2938,-0.5688,-0.4454,-0.5308,-0.2274,-0.3128,-0.1328,-0.2702,-0.019,-0.0236,0.4928,0.5734,0.9004,1,0.526,0.526,0.474,0.6682,0.2938,0.0048,-0.1516,-0.0996,-0.2274,-0.1754,0.1168,0.9366,0.9406,0.893,0.8614,0.398,0.3862,0.1366,0.1406,-0.0892,-0.0772,0.01,0.0456,0.1486,0.1882,0.2436,0.291,0.501,0.5842,0.8178,0.9564,0.9762,1,0.6356,0.7228,0.794,0.8258,0.4496,0.295,0.2,0.2278,0.2634,0.1678,0.932,0.8938,0.9872,0.8726,0.363,0.2016,0.0318,-0.155,-0.2612,-0.465,-0.3758,-0.2654,-0.0404,-0.2314,-0.0658,-0.0234,0.1464,0.3206,0.4734,0.7792,0.9746,0.7664,0.6602,0.8812,1,0.7538,0.6264,0.3206,0.3504,0.4056,0.414,0.0858,0.7634,0.6658,1,0.7308,0.0302,-0.2576,-0.2158,-0.5498,-0.587,-0.768,-0.6288,-0.5406,-0.5824,-0.4802,-0.4106,-0.3132,-0.2064,-0.1044,0.007,0.4802,0.6844,0.6474,0.6194,0.7216,0.536,0.5778,0.3736,-0.0672,-0.072,-0.0024,0.0952,-0.0086,0.4956,0.8826,1,0.4522,-0.3478,-0.3566,-0.5956,-0.5522,-0.8434,-0.9086,-0.9608,-0.6696,-0.526,-0.5956,-0.5478,-0.5174,-0.6086,-0.2086,0.174,0.4522,0.587,0.587,0.587,0.5044,0.4174,0.4218,0.1304,-0.213,-0.2086,-0.2218,-0.2826,-0.104,0.3534,0.94,1,0.1132,-0.5382,-0.6028,-0.4966,-0.5612,-0.7182,-0.8892,-0.8522,-0.7322,-0.7736,-0.6812,-0.5474,-0.575,-0.6212,-0.3856,-0.2518,0.2794,0.2794,0.3996,0.4826,0.4872,0.5334,0.3488,0.0438,-0.4088,-0.5104,-0.418,-0.4688,-0.0562,0.4898,0.8878,1,0.204,-0.3266,-0.6224,-0.6734,-0.7704,-0.8674,-0.9184,-0.6428,-0.8214,-0.7552,-0.9642,-0.5766,-0.3928,-0.5918,-0.4694,-0.0766,0.4184,0.5714,0.296,0.1786,0.3572,0.2346,-0.0766,-0.454,-0.449,-0.454,-0.5918,-0.5306,-0.1892,0.946,0.8918,0.6756,0.4594,-0.081,0.1892,-0.027,-0.1352,-0.081,-0.081,-0.2972,0.027,0.2432,0.2972,-0.081,-0.081,0.2432,0.6756,0.7838,1,0.8918,1,1,0.7838,1,0.7838,0.3514,0.2972,0.2972,0.3514,0.2432,-0.1578,0.9474,1,0.7368,0.7894,0.3158,0.2106,0,-0.2106,-0.2632,-0.3158,-0.3158,-0.0526,0,-0.1052,-0.0526,0.0526,0.1052,0.6316,0.6842,0.8948,0.9474,0.6316,0.7368,0.7368,0.3158,-0.5264,-0.1052,-0.2632,-0.0526,0.1052,-0.2106,0.1084,0.6386,0.7832,1,0.6386,-0.1084,-0.2772,-0.2772,-0.3734,-0.5422,-0.9036,-0.5422,-0.6386,-0.3012,-0.3494,-0.3976,-0.5662,-0.4458,-0.0844,-0.0362,0.6386,0.518,0.6626,0.6626,0.7832,0.5904,0.6868,0.012,-0.1808,0.1326,-0.0602,0.0844,-1,-1,-1,-1,-0.9764,-0.98,-0.6126,-0.7578,-0.3932,-0.2862,-0.697,0.6708,0.8494,0.7234,0.6282,0.5964,0.6054,0.7044,0.5982,0.347,0.024,-0.3624,-0.697,-0.9248,-0.9756,-0.9682,-0.9592,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9636,-0.961,0.4904,1,0.5966,0.0198,-0.5582,0.5842,0.9712,0.891,0.759,0.641,0.5876,0.5932,0.5184,0.25,-0.0548,-0.4144,-0.7192,-0.8958,-0.9446,-0.9342,-0.928,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8534,-0.9534,0.1366,1,0.4466,-0.4634,-0.3468,-0.7544,-0.8944,-0.9258,-0.9172,-0.9326,-0.8976,-0.8626,-0.905,-0.9126,-0.91,-0.915,-0.93,-0.6634,-0.6734,-0.6334,-0.6534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7142,1,1,1,0.8286,1,1,1,-0.1142,-0.8286,-0.8,-0.8286,-0.7428,-0.5142,-0.8572,-0.9428,-0.7714,-0.6286,-0.5428,-0.5714,-0.8572,-0.9714,-0.9142,-1,-1,-1,-1,-1,-1,0.1148,0.1488,0.17,0.1768,0.2172,0.2316,0.2616,0.2684,0.2412,-0.0514,0.5476,0.5438,0.5368,0.5152,0.548,0.5404,0.5932,0.6664,0.773,0.8354,-0.7334,-0.1294,-0.6308,-0.259,0.7924,0.9828,0.9816,1,-0.7634,-0.3828,-0.4432,-0.3736,-0.3178,-0.304,-0.2158,-0.2018,-0.0116,0.2854,0.2854,0.0812,0.0672,0.2344,0.2436,0.1972,0.3086,0.4386,0.7262,0.7216,0.8516,1,0.8516,0.9628,0.884,0.7216,0.833,0.7354,0.5452,0.4524,0.4014,0.0116,-0.2258,-0.4102,-0.447,-0.47,-0.3272,-0.2904,-0.0738,-0.083,0.1428,0.53,0.599,0.3502,0.4792,0.3134,0.4194,0.2996,0.53,0.788,0.8756,0.8526,0.7696,0.8388,1,0.9724,0.8756,0.5484,0.6222,0.6452,0.4056,0.3824,0.53,-0.0322,0.0686,0.1768,0.1976,0.106,-0.0644,0.1186,0.0562,0.052,0.3222,0.842,1,0.7048,0.8918,0.8004,0.4844,0.289,0.3056,0.422,0.8462,0.605,0.5926,0.5344,0.6008,0.4844,0.5094,0.4304,0.4678,0.3222,0.3348,0.3472,0.4262,-0.0478,1,-1,-1,1,-1,-1,-0.6,0,-1,-0.3392,0,0.375,0.3036,0,0.1072,0.3214,0.1608,0.4286,0.5536,0.3928,0.9642,1,0.2322,0.1608,0.0536,-0.0536,0.3572,0.4642,0.1608,0.1428,0.25,0.3214,0.25,0.4108,0.1786,0.1072,-0.25,-0.2322,-0.2678,-0.1428,-0.5,'20'
-0.1154,0.9424,1,0.7116,0.7932,0.3894,0.202,0.0384,-0.0432,-0.1442,-0.2164,-0.2068,-0.0384,0.0096,0.0818,0.1586,0.2452,0.3462,0.6154,0.9856,0.9326,0.8798,0.8028,0.8414,0.875,0.9712,0.9182,0.524,0.524,0.3558,0.4134,0.202,0.021,0.772,0.8036,0.7334,0.772,0.2596,0.3474,0.007,0.1334,-0.179,-0.0456,-0.1368,0.1298,-0.035,0.1894,0.0878,0.3368,0.2772,0.6878,0.6772,0.9192,0.9684,0.6456,0.7334,0.8596,1,0.779,0.614,0.5018,0.5228,0.428,0.3474,0.127,0.914,0.8976,1,0.9386,0.3524,0.2704,0.0164,-0.0738,-0.1312,-0.2336,0.0122,-0.0328,0.0286,-0.041,0.1516,0.1066,0.3524,0.459,0.7746,0.9508,0.9878,0.955,0.832,0.9796,0.959,0.8278,0.4098,0.5,0.3976,0.4754,0.5082,0.072,0.7522,0.7028,1,0.7568,0.0226,-0.3604,-0.3198,-0.4774,-0.491,-0.6306,-0.6622,-0.464,-0.5226,-0.464,-0.4324,-0.2702,-0.1262,-0.054,0.2388,0.581,0.7658,0.7028,0.527,0.545,0.5136,0.437,0.2972,0.2792,0.2342,0.1892,0.2702,0.0224,0.5516,0.8386,1,0.444,-0.2736,-0.4798,-0.6368,-0.6502,-0.8968,-0.9014,-0.7938,-0.8566,-0.7802,-0.722,-0.6548,-0.6412,-0.5696,-0.314,-0.0986,0.3812,0.6008,0.5606,0.4394,0.5784,0.574,0.453,0.0718,-0.0448,-0.13,-0.1076,-0.1748,0.1184,0.5658,0.921,1,0.2456,-0.4606,-0.5044,-0.4824,-0.4912,-0.772,-0.9736,-0.8464,-0.6622,-0.6536,-0.4474,-0.4824,-0.3904,-0.3464,-0.1886,0.0264,0.6184,0.6798,0.5964,0.5482,0.6798,0.5746,0.5394,0.0088,-0.136,-0.1492,-0.2808,-0.2412,0.0412,0.5516,0.9226,1,0.098,-0.5154,-0.5412,-0.634,-0.6134,-0.8042,-0.8092,-0.7886,-0.8918,-0.9382,-0.6958,-0.665,-0.6238,-0.4588,-0.2732,-0.0774,0.634,0.603,0.3918,0.2422,0.2422,0.2628,0.0464,-0.232,-0.3556,-0.3402,-0.4846,-0.531,0.2272,0.8636,0.909,0.5,0.5,0.4546,0.1364,0.2272,0.0454,0.0454,-0.2728,-0.2272,0.2728,0.2728,0.2728,0.1364,0.4546,0.591,0.5454,0.7272,0.9546,0.591,0.6818,0.2728,0.5454,0.909,1,0.7272,0.3182,0.6364,0.5454,0.3636,0.077,0.923,0.9616,0.7692,0.8462,0.5,0.3846,0.2308,0.1538,0.0384,0.077,0.0384,0.1924,0.1924,0.2308,0.3076,0.3076,0.4616,0.6154,1,1,0.5,0.423,0.5,0.7692,0.7308,0.6154,0.5384,0.577,0.4616,0.5384,0.5384,0.087,0.7392,0.7174,0.8478,0.7826,0.2826,0.1304,-0.0218,-0.1956,-0.1956,-0.3914,-0.0218,-0.1956,0.0218,-0.2392,0.0652,-0.0652,0.2826,0.3478,0.5434,0.7392,1,0.7826,0.8044,0.7608,0.913,0.5434,0.0434,0.087,0.3478,0.326,0.5218,-1,-1,-1,-0.9818,-0.977,-0.9786,-0.9456,-0.7174,-0.7446,-0.7578,-0.6416,0.7142,0.9522,0.8312,0.7348,0.6622,0.5848,0.5618,0.406,0.1054,-0.126,-0.4044,-0.8566,-0.9662,-0.967,-0.9424,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.969,-0.966,-0.9696,-0.641,0.4904,0.515,-0.0616,-0.442,0.5604,0.9588,0.886,0.7998,0.6392,0.5132,0.4432,0.2916,-0.0328,-0.1942,-0.4814,-0.8638,-0.9402,-0.929,-0.9002,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.8768,-0.8634,-0.8134,0.7032,0.7432,0.5732,-0.16,-0.7258,-0.8058,-0.7458,-0.8058,-0.8486,-0.8544,-0.8076,-0.8976,-0.93,-0.9326,-0.8976,-0.8668,-0.4968,-0.4734,-0.5234,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,-0.8858,0.6858,1,1,0.1142,1,1,1,-0.1142,-0.8572,-0.6572,-0.4286,-0.6858,-0.7142,-0.7428,-0.8286,-0.5714,-0.3714,-0.3142,-0.6858,-0.9142,-0.8858,-1,-1,-1,-1,-1,-1,-1,0.289,0.3088,0.3272,0.3454,0.363,0.386,0.396,0.3802,0.305,-0.0718,0.6108,0.637,0.6692,0.6886,0.683,0.7114,0.7558,0.7852,0.7808,0.8248,-0.7334,-0.153,-0.4672,-0.212,0.727,0.9714,0.975,1,-0.7824,-0.4138,-0.2386,-0.3232,-0.2146,-0.1238,-0.0694,-0.136,0.2448,0.3232,0.275,0.3596,0.5226,0.438,0.3716,0.5952,0.4984,0.8732,0.9154,0.9698,0.8126,1,0.9214,0.8066,0.716,0.6616,0.843,0.728,0.6798,0.5348,0.3414,-0.009,-0.482,-0.578,-0.3956,-0.4388,-0.4772,-0.223,-0.199,-0.0552,0.0888,0.4916,0.6068,0.3046,0.6594,0.5972,0.3478,0.4628,0.5396,0.6978,1,0.9712,0.7842,0.8706,0.7794,0.6212,0.5876,0.5252,0.5732,0.5588,0.5156,0.4676,0.4628,0.1702,-0.0814,0.0526,0.0766,0.0334,-0.0956,-0.1388,-0.2632,0.0862,0.1818,0.7608,0.866,0.5406,1,0.8278,0.3302,0.3732,0.4784,0.598,0.756,0.5024,0.5216,0.5312,0.4784,0.3684,0.4162,0.378,0.1484,0.1866,0.2392,0.2728,0.3254,0.1388,1,-1,-1,1,-1,-1,-1,-0.1334,-1,-0.5416,0.1666,0.1666,0.2292,0.1666,-0.0416,0.125,0.3124,0.4584,0.9166,1,0.9584,0.8958,0.4376,0.4376,0.2708,-0.1666,0.8334,0.7292,0.6042,0.7084,0.3958,0.4792,0.0208,0.0416,0.0208,0.0208,0.0624,0.3124,-0.125,-0.1666,-0.3542,'20'
0.2024,0.992,0.9272,0.587,0.4292,-0.0404,-0.2794,-0.336,-0.66,-0.5384,-0.502,-0.421,-0.4736,-0.413,-0.2672,-0.2834,-0.0688,-0.1012,0.3198,0.5142,1,0.923,0.421,0.2672,0.5628,0.6518,0.8422,0.6114,0.413,0.243,0.3604,0.4292,0.0586,0.7194,0.659,0.698,0.5062,0.0516,-0.2256,-0.1084,-0.4388,-0.3712,-0.4388,-0.4246,-0.2434,-0.2896,-0.0976,-0.2042,0.1226,0.3818,0.6306,0.8188,1,0.6732,0.7052,0.7336,0.7726,0.428,0.4352,0.0942,0.048,0.048,0.0586,0.4068,0.0948,0.7872,0.6712,1,0.7794,0.0058,-0.1102,-0.0252,-0.3578,-0.354,-0.381,-0.4468,-0.06,-0.0948,0.1528,0.4662,0.6054,0.5628,0.6596,0.5512,0.5822,0.7678,0.6944,0.2146,0.0832,0.0444,-0.1606,-0.06,-0.3618,-0.3114,0.0522,0.1644,0.0228,0.6414,0.747,1,0.7328,-0.1072,-0.079,-0.058,-0.413,-0.4728,-0.2548,0.2514,0.4552,0.3076,0.3884,-0.1458,-0.1142,-0.2372,-0.3006,-0.2618,-0.1072,0.1354,0.0018,-0.1282,-0.543,-0.4974,-0.5852,-0.6134,-0.7082,-0.761,-0.5642,0.0124,0.1368,0.8316,0.7298,1,0.7894,0.0456,-0.1684,-0.021,-0.2562,-0.0562,0.2562,0.2948,0.1192,0.0666,-0.5614,-0.6596,-0.6632,-0.5754,-0.4386,-0.6736,-0.414,-0.0246,0.007,-0.2702,-0.5894,-0.8176,-0.7298,-0.793,-0.8596,-0.7544,-0.6492,-0.0526,0.1546,1,0.9858,0.9644,0.8898,0.3676,0.2824,-0.048,0.1012,0.4104,0.2682,-0.183,-0.286,-0.588,-0.5844,-0.4956,-0.6376,-0.5452,-0.5276,-0.6306,-0.3606,-0.0658,-0.1438,-0.3854,-0.4992,-0.556,-0.6448,-0.6696,-0.6696,-0.556,-0.4884,-0.4742,0.0318,0.9926,1,0.5962,0.5588,0.1402,0.0916,0.1588,0.1626,-0.2636,-0.2934,-0.5328,-0.5776,-0.6786,-0.5552,-0.6186,-0.7046,-0.5664,-0.6112,-0.6672,-0.5514,-0.5328,-0.4242,-0.458,-0.4206,-0.6038,-0.5364,-0.671,-0.6524,-0.6786,-0.499,-0.6598,0.2632,1,0.9474,0.421,0.3158,-0.0526,-0.1052,-0.2632,-0.5264,-0.7368,-0.2106,-0.3684,-0.421,-0.4736,-0.4736,-0.3158,-0.421,-0.1578,0.1052,0.5264,0.4736,0.421,0.3158,0.1578,0.2106,0.5264,0.579,0.5264,0.5264,0.1578,0.2106,0.1052,0.2432,1,0.8918,0.5676,0.3514,-0.1352,-0.4594,-0.5676,-0.4594,-0.5136,-0.6216,-0.4594,-0.4594,-0.4594,-0.1892,-0.1892,-0.081,-0.1352,0.2972,0.4054,0.8918,0.8918,0.2432,0.1352,0.4054,0.6756,0.946,0.6756,0.4054,0.2432,0.2972,0.3514,-0.0134,0.6266,0.68,1,0.7066,-0.0934,-0.0934,-0.0666,-0.44,-0.44,-0.2,0.3334,0.52,0.1734,0.3066,-0.1734,-0.1466,-0.1734,-0.2266,-0.3066,-0.2,0.12,-0.0666,-0.04,-0.4134,-0.7334,-0.5734,-0.7066,-0.68,-0.6,-0.5466,0.0134,-1,-1,-1,-1,-1,-1,-0.9876,-0.9854,-0.981,-0.9774,-0.759,-0.1872,0.123,0.2998,0.5722,0.8824,0.9606,0.6458,0.1376,-0.1194,-0.2786,-0.4574,-0.735,-0.9292,-0.9656,-0.9694,-0.978,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9756,-0.971,-0.9704,-0.9602,-0.7854,-0.241,0.18,0.3524,0.653,0.884,0.9186,0.5846,0.055,-0.1972,-0.3702,-0.5362,-0.7604,-0.8942,-0.9402,-0.9136,-0.8982,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.8834,-0.8034,-0.7268,-0.7968,-0.8424,-0.8556,-0.8734,-0.8978,-0.8224,-0.8,-0.7978,-0.8912,-0.89,-0.89,-0.89,-0.87,-0.6,-0.6868,-0.6268,-0.46,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4858,-0.8,-0.7142,-0.6286,0.9714,1,0.4,-0.8286,-0.6286,-0.5428,-0.0286,-0.2286,-0.5428,-0.7714,-0.9142,-0.8,-0.6286,-0.6572,-0.6,-0.1142,-0.2,-1,-1,-1,-1,-1,-1,-0.31,-0.2868,-0.2604,-0.209,-0.1522,-0.1046,-0.052,-0.0028,0.0458,0.0984,0.8312,0.8478,0.86,0.8644,0.8436,0.8132,0.7576,0.5832,0.0812,-0.2036,-0.7334,0.0824,-0.7752,-0.4822,-0.323,-0.1032,0.0384,-0.5916,0.1034,-0.1626,0.0838,0.7438,0.6256,0.468,0.6552,0.3892,0.33,0.8916,1,0.7636,0.8522,0.7832,0.4582,0.3202,0.527,0.261,0.3892,0.4976,0.5566,0.4876,0.3004,0.4582,0.5074,0.4286,0.2316,-0.0344,0.4482,-0.2512,0.1134,-0.596,-0.0304,0.0202,0.2828,0.7676,0.5454,0.4344,0.6262,0.596,0.4344,0.7676,0.909,0.7272,0.8888,1,0.8282,0.6364,0.899,0.7676,0.8788,0.8282,0.5858,0.3738,0.505,0.5354,0.3132,0.192,0.6364,0.1112,0.1414,0.1616,0.2424,-0.1414,0.3574,0.6196,-0.0426,0.1672,-0.036,-0.141,0.036,0.1868,0.259,0.3508,0.5606,0.5476,0.5344,0.9738,1,0.5214,0.646,0.8098,0.836,0.6852,0.4296,0.2852,0.2328,0.259,0.141,0.3968,0.4098,0.3442,0.0886,0.495,0.482,-0.1278,-0.9852,1,-1,-1,-1,-1,-1,-1,1,-0.673,-0.3654,-0.2692,-0.1538,0.077,0.0962,0.673,0.25,-0.25,-0.2308,-0.0384,-0.0576,-0.2692,-0.2308,0.1154,0.2116,0.0962,0.2692,0.25,-0.0192,0.3846,1,0.9038,0.6924,0.7116,0.9424,0.7884,0.25,-0.0576,0.0192,0.1346,-0.327,'21'
0.1948,1,0.9274,0.5214,0.3202,-0.1288,-0.462,-0.4488,-0.6006,-0.8184,-0.835,-0.726,-0.7062,-0.6864,-0.4686,-0.594,-0.462,-0.4026,-0.0462,0.0132,0.175,-0.0826,-0.198,-0.1552,0,0.231,0.33,0.3036,0.1848,0.1188,0.0198,0.1222,0.1762,0.9214,0.8754,0.5636,0.4364,0.084,-0.1084,-0.0514,-0.2954,-0.2792,-0.4906,-0.328,-0.328,-0.1842,-0.0136,0.0732,0.1952,0.2628,0.756,0.7914,1,0.981,0.8048,0.7074,0.8672,0.8754,0.729,0.6342,0.5692,0.4742,0.4878,0.4254,-0.047,0.5416,0.5074,0.5394,0.435,0.0788,-0.0768,-0.0788,-0.2602,-0.1898,-0.3412,-0.2046,-0.1044,0.0042,0.1834,0.2602,0.5288,0.5672,0.8294,0.8336,0.7122,0.7036,1,0.951,0.3774,0.324,0.2196,0.1556,0.2218,0.1408,0.2794,0.3518,0.077,0.7426,0.6952,1,0.7566,0.1076,-0.0434,0.035,-0.1692,-0.1832,-0.2252,0.021,0.3762,0.4686,0.684,0.3454,0.2252,-0.0294,0.0294,0.2224,0.365,0.6644,0.6196,0.2616,-0.1888,-0.3062,-0.2728,-0.256,-0.1944,-0.116,-0.0518,0.3426,0.1452,0.6672,0.859,1,0.4386,-0.3202,-0.1368,-0.3428,-0.2806,0.041,0.0098,0.244,0.1256,-0.2722,-0.4696,-0.7658,-0.7828,-0.7208,-0.574,-0.7292,-0.5458,-0.23,-0.134,-0.4386,-0.6108,-0.7686,-0.8702,-0.9662,-0.8702,-0.8082,-0.5092,-0.4668,0.2926,0.7264,0.9564,1,0.0918,-0.0452,0.0596,-0.38,-0.1208,-0.0946,-0.249,-0.2984,-0.5342,-0.6244,-0.5836,-0.5574,-0.5546,-0.6914,-0.674,-0.7292,-0.5254,-0.4556,-0.2838,-0.5342,-0.7496,-0.7148,-0.8574,-0.968,-0.8806,-0.7176,-0.6478,-0.5226,0.2998,0.8762,0.9304,1,-0.2766,0.1722,0.2688,0.265,-0.1412,-0.7176,-0.7292,-0.5706,-0.675,-0.733,-0.853,-0.5822,-0.5938,-0.7176,-0.9226,-0.7794,-0.501,-0.4778,-0.5822,-0.5358,-0.5512,-0.6132,-0.8336,-0.9304,-0.8298,-0.7524,-0.6906,-0.8956,0.1876,1,0.875,0.5624,0.3124,-0.1876,-0.5624,-0.25,-0.375,-0.875,-0.875,-0.75,-0.75,-0.25,-0.125,-0.25,-0.8124,-0.625,-0.25,-0.25,0.125,0,-0.1876,-0.125,-0.125,-0.1876,0.4376,0.5,-0.0624,-0.125,-0.4376,-0.25,0.2632,1,0.8948,0.6842,0.4736,-0.0526,0.0526,0.1578,-0.3158,-0.1052,-0.2106,-0.3158,-0.2106,-0.421,-0.8948,-0.7894,-0.2632,-0.2106,0,0.2106,0.2632,0,-0.2106,-0.2106,-0.0526,0.3158,0.3684,0.2632,0.0526,-0.1052,0.3684,0.421,0.0422,0.7184,0.6902,1,0.7464,-0.0986,-0.0986,-0.0422,-0.2676,-0.2958,-0.3802,0.183,0.4366,0.5774,0.7464,0.2394,-0.183,-0.493,-0.2676,0.1268,0.324,0.6902,0.4648,-0.0704,-0.3522,-0.6056,-0.3802,-0.3522,-0.2958,-0.3802,-0.324,0.2676,-1,-1,-1,-1,-1,-1,-1,-0.9832,-0.9878,-0.974,-0.825,-0.5114,-0.1952,0.3096,0.6156,0.819,0.9694,0.7546,0.2544,-0.1684,-0.41,-0.6418,-0.8942,-0.9562,-0.9686,-0.9678,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9722,-0.9758,-0.969,-0.8674,-0.6464,-0.3864,0.1952,0.8722,0.8052,0.8546,0.4602,-0.0472,-0.3838,-0.57,-0.7386,-0.9078,-0.936,-0.9412,-0.9448,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8384,-0.9368,-0.8434,-0.8268,-0.9334,-0.8734,-0.765,-0.7,-0.795,-0.8068,-0.8284,-0.905,-0.8934,-0.91,-0.945,-0.87,-0.82,-0.67,-0.72,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2572,-0.9428,-0.5142,0.4286,0.3714,0.2572,0.2858,-0.6858,-0.3714,0.0858,-0.1428,-0.4286,-0.7714,-0.9714,-0.8858,-0.7142,-0.8572,-0.8858,-0.8,-1,-1,-1,-1,-1,-1,-1,-0.3206,-0.2928,-0.3272,-0.304,-0.2462,-0.202,-0.1494,-0.0542,0.0646,-0.0166,0.5314,0.5432,0.533,0.5168,0.5318,0.5724,0.6142,0.6024,0.3106,-0.142,-0.7334,0.4352,-0.854,-0.7134,-0.6736,-0.652,-0.6056,-1,0.1606,0.2642,0.5958,1,0.8238,0.8134,0.7098,0.6994,0.8342,0.7098,0.886,0.6374,0.772,0.5026,0.43,0.5234,0.5544,0.285,0.9068,0.8238,0.9274,0.43,0.4716,0.5854,0.3782,0.1296,0.3264,0.4922,0.2228,0.285,0.3368,-0.026,-0.0482,0.269,0.2828,0.7518,0.7656,0.9034,0.6966,0.6,0.6276,0.7518,0.7104,0.5034,1,0.6276,0.3932,0.2966,0.2138,0.2966,0.6138,0.6414,0.7518,0.6138,0.3518,0.6,0.5586,0.4482,0.1034,0.3242,0.2552,-0.1172,-0.2138,-0.669,0.7238,1,0.1882,-0.0712,0.046,0.3054,0.2804,0.5062,0.4476,0.4644,0.6066,0.3222,0.5984,0.8158,0.5816,0.5482,0.4644,0.5648,0.498,0.18,0.297,0.272,0.2636,0.3054,0.138,0.2134,0.3054,0.272,0.0376,0.1046,0.0042,-0.3892,-0.9908,1,-1,-1,-1,-1,-1,-1,-1,-0.3388,-0.0248,0.091,0.1736,0.3884,1,0.3058,0.2396,0.0248,0.1404,0.0744,0.405,-0.0744,-0.2562,-0.091,0.0248,0.0578,-0.091,-0.3388,-0.2892,-0.2396,-0.1736,-0.0414,-0.1736,-0.19,-0.3884,0.091,-0.2562,-0.091,-0.1074,-0.2396,-0.6198,'21'
0.2318,1,0.9546,0.799,0.692,0.1702,0.0406,-0.0956,-0.141,-0.1184,-0.1636,0.0178,-0.0568,0.209,0.1832,0.4782,0.4684,0.6628,0.6304,0.7342,0.6856,0.6466,0.6338,0.5916,0.53,0.436,0.3192,0.1734,0.0762,0.2772,0.4068,0.6176,0.243,1,0.9684,0.9622,0.8518,0.4196,0.2618,0.019,-0.142,-0.2524,-0.3848,-0.1924,-0.183,0.0316,-0.1956,-0.063,0.1452,0.3124,0.8076,0.9906,0.7918,0.4448,0.5394,0.6278,0.8896,1,0.4826,0.325,-0.0378,-0.0284,0.0158,0.0378,0.2056,1,0.9256,0.9256,0.7554,0.266,0.0142,-0.3298,-0.6808,-0.6206,-0.4964,-0.3652,-0.3972,-0.351,-0.3758,-0.3688,-0.0142,-0.0638,0.305,0.2376,0.7766,0.7446,0.5,0.3724,0.688,0.6064,0.6666,0.3298,0.0816,-0.0532,0.0532,0.2092,0.2522,1,0.9142,0.9928,0.7782,0.2416,-0.1128,-0.2416,-0.5564,-0.4634,-0.721,-0.6422,-0.4382,-0.4704,-0.2344,-0.3524,-0.2988,-0.0554,0.2094,0.5886,0.7818,0.474,0.5528,0.1664,0.2344,0.7102,0.7532,0.2058,0.1306,0.2666,0.1842,0.381,0.1506,0.8244,0.742,1,0.6846,0.0682,-0.38,-0.3406,-0.5484,-0.6452,-0.7992,-0.8064,-0.6882,-0.5412,-0.491,-0.552,-0.5018,-0.448,-0.4158,-0.0036,0.7922,0.9964,0.7384,0.6666,0.7204,0.7132,0.2868,-0.172,-0.2008,-0.4266,-0.1542,-0.0538,0.0224,0.6524,0.8004,1,0.5422,-0.1462,-0.5422,-0.5698,-0.5628,-0.7624,-0.883,-0.8348,-0.845,-0.9002,-0.7108,-0.6488,-0.7452,-0.642,-0.5146,-0.167,0.3494,0.3804,0.518,0.3804,0.518,0.7108,0.697,-0.1154,-0.222,-0.222,-0.4768,-0.2702,0.06,0.6332,0.8182,1,0.5902,0.0108,-0.245,-0.3528,-0.4422,-0.6118,-0.507,-0.5902,-0.5932,-0.433,-0.4576,-0.5162,-0.433,-0.3158,-0.1248,0.0786,0.5192,0.5316,0.5562,0.4546,0.5038,0.3898,0.3682,0.054,-0.0724,-0.0756,-0.242,-0.1926,0.2972,1,0.946,0.5136,0.2432,-0.3514,-0.027,-0.081,-0.2972,0.081,0.027,0.081,-0.2432,-0.081,0.5136,0.946,1,0.5136,0.4054,0.1892,0.5136,0.6216,0.3514,0.2972,0.081,0.5136,0.3514,0.2972,0.2432,0.2972,0.3514,0.5136,0.3778,1,0.9556,0.7334,0.6444,0.0666,0.0222,0.2,0.0666,-0.0666,-0.1556,-0.2888,-0.1112,0.2,0.4222,0.3778,0.3778,0.2888,0.4666,0.5112,0.5112,0.5112,0.6,0.2444,0.2444,0.2888,0.4222,0.4222,-0.0666,0.2444,0.9556,1,0.2602,0.9452,0.8356,1,0.7808,0.1506,-0.0958,-0.1232,-0.5068,-0.4246,-0.9178,-0.726,-0.4246,-0.4794,-0.1506,-0.2876,-0.6986,-0.0958,0.041,0.589,0.6164,0.9178,0.863,0.6438,0.589,0.2602,0.2876,0.0136,0.0136,0.1506,0.4246,0.452,-1,-1,-1,-1,-1,-1,-0.5042,-0.5692,-0.6084,-0.6262,-0.571,0.273,0.9548,0.7934,0.635,0.4482,0.3626,0.3104,0.2788,0.1942,0.0762,-0.2052,-0.5946,-0.9016,-0.9558,-0.9164,-0.937,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.614,-0.6614,-0.693,-0.7054,-0.6572,0.0908,0.9098,0.6256,0.448,0.2602,0.1596,0.1734,0.1562,0.0412,-0.0524,-0.2856,-0.6484,-0.8664,-0.9092,-0.8802,-0.8864,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9548,-0.9548,-0.9548,-0.9648,-0.9348,-0.9354,-0.9194,-0.9054,-0.9414,-0.9514,-0.9334,-0.941,-0.9474,-0.882,-0.8928,-0.9292,-0.9134,-0.5068,-0.36,-0.5368,-0.4668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,-0.8572,-0.6286,-0.4572,0.5142,1,0.5428,-0.5428,-0.9142,-0.9428,-0.8572,-0.7142,-0.8572,-0.8286,-0.8572,-0.7142,-0.4572,-0.5142,-0.8858,-0.9714,-0.8286,-1,-1,-1,-1,-1,-1,-0.0848,-0.0458,0.0154,0.054,0.0972,0.1248,0.1474,0.1356,0.0914,-0.015,-0.0858,-0.0746,-0.0078,0.0284,0.0906,0.1614,0.2798,0.41,0.5704,0.6946,-0.76,0.2236,-0.6572,-0.4858,-0.2058,0.2864,0.7922,-0.575,0.849,1,0.817,0.341,0.1304,-0.0846,-0.039,0.286,0.016,-0.0206,0.1854,0.1258,0.0572,-0.1578,-0.2174,-0.0892,-0.1716,-0.3272,-0.3502,-0.2494,-0.1624,-0.4096,-0.4096,-0.318,-0.2632,-0.222,-0.4234,-0.3638,-0.4782,-0.5882,-0.5744,-0.6202,0.8924,1,0.4708,0.1122,-0.0358,-0.3004,-0.0224,0.3408,0.3542,0.0538,0.269,0.1256,-0.009,0.0494,-0.0896,-0.018,-0.0718,-0.1524,-0.0896,0.0224,0.2108,-0.018,-0.0358,-0.1614,-0.2914,-0.1838,-0.2242,-0.1256,-0.2736,-0.2422,-0.453,-0.8072,0.8784,1,0.1532,-0.0406,-0.0046,-0.1802,0,0.5226,0.455,0.1396,0.2522,0.2928,0.3558,0.0406,0.0586,0.3244,0.3018,0.1712,0.2748,0.2298,0.2478,0.0766,0.2522,0.0496,0.1172,0.1846,0.1802,0.1082,-0.099,-0.1036,-0.0766,-0.4414,-1,-1,-1,1,1,-1,-1,0.1334,-1,-0.4018,0.1452,0.2308,0.2478,0.2478,0.1624,0.2992,0.1112,0.1966,0.3334,0.9316,0.7264,1,0.624,0.2992,0.4018,0.5384,0.7264,0.4872,0.5042,0.4358,0.0256,0.2478,0.3676,-0.0598,-0.1966,0.1452,0.3334,0.3676,0.1966,-0.1624,-0.2992,'22'
0.2352,0.9944,1,0.864,0.8584,0.3002,0.323,0.0964,0.1274,-0.0794,-0.0254,-0.1416,-0.0652,-0.1474,-0.0482,-0.204,-0.0594,0.0878,0.3172,0.558,0.575,0.3994,0.476,0.6318,0.6828,0.5864,0.4108,0.272,0.2182,0.1474,0.1644,0.0992,0.1738,0.9138,0.9078,0.8158,0.7742,0.2154,0.1768,-0.0996,-0.1322,-0.2986,-0.3372,-0.367,-0.379,-0.3908,-0.4056,-0.4354,-0.468,0.0044,-0.0222,0.7504,0.7682,0.9108,0.9286,0.7356,0.7622,0.9494,1,0.474,0.3818,-0.0044,0.0906,0.0372,0.1244,0.815,0.7984,0.7596,0.6824,0.1602,0.0718,-0.1658,-0.279,-0.406,-0.522,-0.3564,-0.4668,-0.3978,-0.558,-0.4144,-0.4282,-0.1464,0.0966,0.348,0.6962,1,0.8342,0.6354,0.5442,0.7624,0.627,0.5194,0.2734,0.1796,-0.036,0.1132,0.2046,0.9574,0.9018,1,0.8528,0.2832,0.0802,-0.1228,-0.4238,-0.3486,-0.5614,-0.4206,-0.604,-0.5712,-0.4632,-0.3846,-0.3682,-0.3388,-0.0638,0.0572,0.5418,0.5974,0.7546,0.689,0.7316,0.8396,0.9738,0.8364,0.4894,0.3256,0.162,0.1064,0.0872,0.7418,0.731,1,0.629,0.0582,-0.4728,-0.4836,-0.4872,-0.6472,-0.7782,-0.6546,-0.5746,-0.7382,-0.72,-0.6436,-0.6182,-0.44,-0.3418,-0.171,0.051,0.4182,0.4254,0.3382,0.24,0.4472,0.3818,0.24,0.2254,0.3054,0.1128,0.1418,0.0038,0.4908,0.9256,1,0.0594,-0.3828,-0.7212,-0.7584,-0.829,-0.8178,-0.922,-0.8996,-0.8178,-0.8662,-0.8698,-0.8774,-0.8438,-0.8142,-0.6356,-0.5948,-0.435,-0.2566,0.0892,0.026,-0.0074,0.275,0.4646,0.3532,0.1078,-0.026,-0.0744,-0.0148,0.0598,0.4514,1,0.985,-0.0708,-0.4776,-0.7276,-0.8656,-0.7798,-0.8956,-0.7948,-0.6044,-0.6306,-0.7314,-0.7538,-0.7426,-0.6268,-0.8284,-0.7686,-0.444,-0.168,0.194,0.3956,0.3544,0.25,0.5262,0.5634,0.2388,-0.1456,-0.1866,-0.2202,-0.2874,0.05,0.95,1,0.8,0.75,-0.05,0.1,-0.2,-0.1,-0.3,-0.15,-0.35,-0.3,-0.25,-0.15,-0.3,0.1,0.5,0.55,0,0.3,0.3,0.5,0.45,0.25,0,-0.2,-0.15,-0.45,-0.2,-0.2,-0.3,0.2942,1,1,0.8824,0.9216,0.451,0.451,0.255,0.2942,0.098,0.2156,0.098,0.2942,0.0196,0.255,0.1372,0.2942,0.5686,0.9216,0.9216,0.7648,0.5294,0.6078,0.647,0.451,0.3334,0.2156,0.0588,0.4118,0.3334,0.3334,0.255,0.1842,0.8684,0.8158,0.921,0.7632,0.2368,-0.0526,-0.1052,-0.421,-0.3158,-0.4474,-0.3684,-0.421,-0.4474,-0.4474,-0.4736,-0.1842,-0.3158,-0.0526,-0.1052,0.2894,0.4736,0.6842,0.3948,0.1578,0.921,1,0.5526,0.3158,0.2368,0.1842,0.2894,-0.981,-0.764,-0.4582,-0.496,-0.5274,-0.589,-0.7066,-0.7888,-0.848,-0.8652,-0.4196,0.9598,0.9228,0.7846,0.667,0.6202,0.5602,0.5002,0.4534,0.2708,0.0342,-0.303,-0.4418,-0.7912,-0.9728,-0.9572,-0.9334,-1,-1,-1,-1,-1,-1,-0.9672,-0.7954,-0.5212,-0.5238,-0.5732,-0.6172,-0.7422,-0.8112,-0.8474,-0.8362,-0.3272,0.9164,0.9408,0.8508,0.7402,0.6284,0.637,0.556,0.4442,0.2272,-0.0062,-0.3194,-0.4626,-0.7804,-0.9112,-0.9086,-0.8566,-1,-1,-1,-1,-1,-1,-0.9168,-0.9034,-0.9268,-0.9334,-0.9334,-0.9268,-0.9268,-0.9434,-0.79,-0.6668,-0.66,-0.92,-0.854,-0.87,-0.886,-0.906,-0.972,-0.928,-0.884,-0.93,-0.932,-0.944,-0.9834,-0.7234,-0.4068,-0.32,-0.5134,-1,-1,-1,-1,-1,-1,-0.6572,0.2286,0.1714,-0.7142,-0.7428,-0.6572,-0.6572,-0.4858,-0.5428,1,1,1,-0.4572,-0.8572,-1,-0.9142,-0.6858,-0.6,-0.8,-0.9428,-0.6858,-0.6,-0.8572,-0.3428,-0.5142,-0.7142,-0.2,-1,-1,-1,-1,-1,-1,0.2442,0.2386,0.2342,0.2324,0.2242,0.2136,0.207,0.1926,0.1806,-0.087,0.3108,0.3334,0.3854,0.4886,0.5998,0.6882,0.7254,0.8058,0.9096,0.9466,-0.7734,0.1764,-0.2824,0.5626,0.9718,0.9422,0.9184,-0.5584,0.2682,0.4146,0.0732,0.0732,-0.0732,0.0244,0.2196,0.7074,0.8048,0.7074,0.6098,0.756,0.756,0.4146,0.4146,0.756,1,0.9512,0.8536,0.5122,0.317,0.3658,0.5122,0.6586,0.7074,0.7074,0.756,0.7074,0.6098,0.2682,0.1708,-0.0244,0.5128,0.6666,-0.0256,-0.1794,-0.1538,-0.1794,-0.0256,0.3334,0.9744,0.5384,0.2564,0.6154,0.4872,0.359,0.1282,0.641,0.8974,0.5898,0.7948,0.7692,1,0.9744,0.7948,0.7948,0.6666,0.8718,1,0.8718,0.641,0.5128,0.641,0.0256,0.8164,1,0.7552,0.2858,0.1836,-0.0408,0.204,0.1632,0.7552,0.7756,0.5918,0.5102,0.3266,0.4082,0.102,0.0612,0.0816,0.102,0.3878,0.5306,0.796,0.6734,0.2448,0.4286,0.449,0.4286,0.4082,0.2858,0.2858,0.102,-0.0816,-0.0204,0.7508,-1,-1,1,-0.6,1,-1,-0.8334,-1,-0.5934,-0.2032,-0.0894,-0.1382,-0.1056,-0.1544,-0.0732,-0.057,0.187,0.5934,0.8048,0.626,1,0.626,0.0082,0.1056,0.0082,0.3496,0.1708,0.2196,0.1382,0.0406,0.2846,0.2196,-0.3008,-0.3984,-0.2846,-0.057,-0.0406,-0.2358,-0.3984,-0.561,'22'
-0.1142,0.5164,0.5368,1,0.9344,0.6226,0.53,0.5888,0.4802,0.6226,0.5232,0.2316,0.1118,-0.0712,-0.209,-0.2068,-0.3762,-0.2994,-0.3944,-0.2022,-0.2564,-0.078,0.0418,0.2564,0.0984,0.0102,-0.2046,-0.0938,-0.1954,-0.0598,-0.0486,0.1164,-0.0112,0.6146,0.6546,1,0.8372,0.4268,0.2116,0.1088,-0.184,-0.129,0.0438,0.1314,0.209,0.2366,0.144,0.1764,0.0212,0.0162,-0.0038,-0.0914,-0.0564,-0.0438,0.199,0.2466,0.4242,0.229,-0.0388,-0.209,-0.3066,-0.3892,-0.2892,-0.1314,0.266,1,0.8334,0.8794,0.4468,-0.0426,-0.727,-0.6454,-0.8226,-0.9822,-0.7624,-0.8724,-0.6914,-0.7092,-0.6844,-0.461,-0.468,-0.2234,0.078,0.3652,0.4184,0.2554,0.195,0.2376,0.461,0.2696,0.1312,-0.046,-0.383,-0.5106,-0.4432,-0.4504,0.321,0.969,0.8078,1,0.6062,0.0574,-0.6032,-0.6682,-0.9318,-0.786,-0.6218,-0.6,-0.541,-0.5008,-0.5752,-0.5504,-0.4636,-0.2682,0.2434,0.4914,0.6062,0.417,0.2434,0.4542,0.6466,0.5628,0.386,-0.0636,-0.2,-0.2838,-0.29,-0.0698,-0.0482,0.544,0.7762,1,0.6118,0.2238,-0.3542,-0.4448,-0.779,-0.8754,-0.7252,-0.3682,-0.3512,-0.1672,-0.2662,-0.439,-0.0992,-0.0198,0.0482,0.0312,0.017,-0.0368,0.1162,-0.0368,-0.3258,-0.4136,-0.3994,-0.5212,-0.592,-0.83,-0.7592,-0.4788,0.0244,0.6538,0.7826,1,0.628,0.4592,-0.1674,-0.2732,-0.6194,-0.3706,-0.1674,-0.0214,-0.073,-0.1846,-0.2188,-0.4478,-0.6738,-0.7712,-0.7654,-0.565,-0.5422,-0.113,-0.1616,-0.545,-0.6996,-0.7224,-0.8826,-0.854,-0.7568,-0.6968,-0.8198,-0.5966,-0.0254,0.7628,0.7118,1,0.8984,0.1186,-0.0226,-0.1978,0.0622,0.3644,0.1752,-0.421,-0.5564,-0.5424,-0.6186,-0.7288,-0.678,-0.7176,-0.644,-0.596,-0.5338,-0.5112,-0.2062,-0.0904,-0.3588,-0.6666,-0.839,-0.7656,-0.7232,-0.6214,-0.6214,-0.4378,0.0666,0.7778,0.7334,1,0.9112,0.7778,0.6444,0.7778,0.6,0.4666,0.3334,0.1112,-0.1112,-0.1112,-0.1556,-0.2,-0.3778,-0.2444,-0.2,-0.1556,-0.5112,-0.1112,-0.2888,0.1112,-0.0222,-0.1112,-0.2888,-0.2,-0.2444,-0.0222,0.1112,0.2888,-0.2682,0.4146,0.5122,1,0.9512,0.5122,0.4146,0.6586,0.561,0.3658,0.2682,-0.0732,-0.122,-0.4146,-0.4634,-0.561,-0.561,-0.6098,-0.6586,-0.3658,-0.4146,-0.2682,-0.2682,0.2196,0.122,-0.1708,-0.2682,-0.2196,-0.2196,-0.1708,-0.122,0.2196,0.0824,0.7176,0.7412,1,0.7882,0.3176,-0.0118,-0.0118,-0.4824,-0.4352,-0.2942,-0.2706,0.1058,0.1294,0.153,0.2236,0.4352,0.3176,0.153,-0.1058,0.1294,0.2706,0.4352,0.6942,0.7882,0.2942,0.0118,-0.2,-0.3176,-0.153,-0.3412,-0.2942,-0.988,-0.838,-0.5128,0.4312,0.2562,0.2808,0.0062,-0.7564,-0.8996,-0.943,-0.7036,0.7136,0.794,0.3466,-0.2928,-0.5666,-0.4082,-0.0586,-0.0278,-0.148,-0.2828,-0.5902,-0.8568,-0.9634,-0.9838,-0.9864,-0.988,-1,-1,-1,-1,-1,-1,-0.9832,-0.4184,-0.519,0.4008,0.3038,0.3038,-0.0902,-0.8038,-0.9186,-0.9498,-0.7598,0.6722,0.6968,0.1954,-0.3846,-0.6398,-0.4948,-0.18,-0.1808,-0.2968,-0.3926,-0.6328,-0.8572,-0.9598,-0.9774,-0.9818,-0.9832,-1,-1,-1,-1,-1,-1,-0.9334,-0.1168,-0.5168,-0.7868,-0.8034,-0.78,-0.8,-0.8634,-0.9,-0.8368,-0.8734,-0.7964,-0.7964,-0.835,-0.9484,-0.9734,-0.9784,-0.87,-0.8234,-0.8134,-0.815,-0.8168,-0.8034,-0.7134,-0.7934,-0.7934,-0.9134,-1,-1,-1,-1,-1,-1,1,1,1,1,-0.1428,1,1,1,-0.4572,-0.4,1,1,-0.2286,0.2858,0.1714,-0.7714,-0.5714,-0.6858,-0.7714,-0.6,-0.6,-0.4,0.0286,0.0572,-0.9428,-0.9428,-0.6858,-1,-1,-1,-1,-1,-1,0.7904,0.7872,0.7856,0.7754,0.7664,0.7374,0.6736,0.4672,0.1058,0.1008,0.1034,0.0846,0.0428,0.009,-0.0654,-0.199,-0.2372,-0.0644,0.2036,-0.0592,-0.7066,0.4118,-0.767,-0.2076,0.6234,0.9112,0.9874,0.4834,-0.2214,0.0534,0.2978,0.4656,0.542,0.4656,0.4656,0.8474,0.939,0.6642,0.6184,0.71,0.9084,0.832,0.6336,0.771,0.8168,0.939,1,0.939,0.9848,0.939,0.9694,0.5726,0.5878,0.6488,0.7404,0.603,0.4198,0.313,0.3436,-0.4962,-0.3758,-0.1774,-0.1632,-0.2056,-0.1348,-0.2766,-0.3334,0.7022,0.8582,-0.1348,0.3334,0.1774,0.305,0.149,0.3334,0.4752,0.7588,1,0.9008,0.6596,0.7446,0.8866,0.8298,0.6738,0.7588,0.7304,0.773,0.4894,0.461,0.3334,0.1632,0.078,0.283,0.371,0.0188,0.1194,-0.044,-0.1572,0.1194,0.8868,1,0.195,0.4214,0.8238,0.761,0.3584,0.2328,0.1446,0.8238,0.7862,0.8868,0.5094,0.4716,0.5346,0.2956,0.585,0.346,0.1572,0.2076,0.0188,0.0188,0.0944,-0.0314,-0.1824,0.4028,1,-1,-1,-1,-1,-1,-0.6666,-1,-0.0476,0.762,1,0.5952,0.8096,0.8096,0.4048,0.3096,0.3096,0.4286,0.4762,0.2858,0.9762,0.5476,0.3096,0.4048,0.0952,-0.0476,0.238,0.2142,0.3334,0.3572,0.238,0.238,0.3334,0.4286,0.2858,0.381,0.1904,0.238,0.238,0.1428,'23'
-0.0508,0.6582,0.6244,1,0.895,0.8884,0.7664,0.5972,0.4534,0.4332,0.4044,0.6006,0.4874,0.6582,0.4754,0.5432,0.3604,0.2944,0.2318,0.379,0.406,0.5314,0.6802,0.8054,0.4044,0.3452,0.11,0.2116,0.2386,0.2962,0.1522,0.1828,0.1494,1,0.8098,0.3016,0.0706,0.0788,-0.0354,0.0434,0.0108,-0.2664,-0.4158,-0.443,-0.4892,-0.424,-0.5706,-0.6304,-0.6168,-0.6114,-0.6604,-0.4646,-0.4348,-0.3968,-0.3668,-0.2282,-0.3206,-0.4836,-0.6658,-0.7256,-0.6712,-0.4566,-0.6386,-0.576,0.0048,0.6618,0.6022,1,0.8648,0.6054,0.4042,0.4428,0.1658,0.2126,0.1724,0.0708,-0.1674,-0.1304,-0.4654,-0.5202,-0.6522,-0.5732,-0.4734,-0.483,-0.3994,-0.3076,-0.0886,0.2222,0.1948,0.0306,-0.1128,-0.1932,-0.3124,-0.293,-0.3608,-0.2722,0.138,0.7656,0.8666,1,0.108,-0.3724,-0.4574,-0.6758,-0.839,-0.9472,-0.885,-0.5012,-0.4644,-0.4368,-0.384,-0.3702,-0.3012,-0.2046,-0.1288,-0.1494,-0.3426,-0.4506,-0.1196,0.0988,0.2344,0.1012,-0.315,-0.6,-0.8276,-0.8736,-0.8666,-0.7908,0.4426,1,0.788,0.7706,-0.3818,-0.6604,-0.6778,-0.704,-0.9478,-0.9768,-0.9158,-0.8026,-0.7126,-0.7126,-0.6604,-0.6546,-0.6198,-0.5442,-0.46,-0.1204,0.1728,0.1844,-0.0304,-0.1002,0.3962,0.5182,0.7098,0.3498,-0.2686,-0.1612,-0.1292,-0.1262,-0.0286,0.4416,0.9714,1,0.287,-0.192,-0.1502,-0.5452,-0.7682,-0.9072,-0.8588,-0.6092,-0.4482,-0.393,-0.2604,-0.3334,-0.3774,-0.4282,-0.2098,-0.1192,-0.0684,-0.0662,-0.064,-0.2076,-0.4416,-0.7196,-0.7836,-0.8322,-0.8058,-0.8698,-0.702,-0.3996,0.2696,0.8948,1,1,0.7448,0.3334,0.1738,-0.0112,-0.244,-0.1196,-0.0526,0.0878,-0.059,-0.4768,-0.4992,-0.6108,-0.6364,-0.9362,-0.732,-0.6778,-0.3908,-0.362,-0.1388,-0.2886,-0.4832,-0.697,-0.8406,-0.933,-0.882,-0.7002,-0.48,-0.4482,0.1428,0.9428,1,0.9428,0.8858,0.7714,0.5428,0.2572,-0.0858,-0.1428,0.0858,0.2572,0.2572,0.0286,0.2,0.6,0.4286,0.1428,-0.1428,-0.1428,0.2,0.4286,0.7714,0.7142,0.4858,0.1428,-0.1428,-0.1428,-0.2,-0.2572,-0.3714,-0.3714,-0.4054,0.4054,0.5136,1,0.946,0.4594,0.4054,0.1352,0.027,-0.027,-0.2432,0.1352,0.027,0.2972,0.6216,0.7838,0.4594,-0.1892,-0.027,0.1352,0.081,0.1892,0.5136,0.6216,0.3514,-0.081,-0.5136,-0.4054,-0.3514,-0.2432,-0.4594,-0.5676,0.3572,1,0.9286,0.8096,0.7142,0.738,0.5714,0.5238,0.4286,0.381,0.1666,-0.3334,-0.238,-0.3096,-0.3572,-0.1666,-0.1666,-0.2858,-0.3334,-0.2142,-0.381,-0.6428,-0.2142,-0.1904,-0.0952,-0.3572,-0.4048,-0.5714,-0.381,-0.0238,0,-0.119,-1,-1,-1,-1,-1,-1,-1,-0.9826,-0.986,-0.968,-0.7924,0.7298,0.0496,-0.5866,0.6932,0.4462,0.015,-0.638,-0.4608,0.0648,-0.586,-0.785,-0.8682,-0.9314,-0.9748,-0.9708,-0.9754,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9754,-0.979,-0.8656,-0.1978,0.7352,0.033,-0.667,0.5,0.1608,-0.184,-0.7156,-0.5812,-0.1746,-0.6714,-0.8344,-0.891,-0.9156,-0.9638,-0.966,-0.967,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8812,-0.94,-0.9134,0.1966,-0.8034,-0.8778,-0.9324,-0.8324,-0.8512,-0.9124,-0.96,-0.9534,-0.8738,-0.878,-0.8886,-0.9234,-0.8168,-0.88,-0.8068,-0.9668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6286,-0.6858,1,1,1,1,1,1,-0.5428,-0.3142,-0.4858,-0.2286,-0.4286,-0.3714,-0.9142,-0.8858,-0.9142,-0.8858,-0.9714,-0.9142,-1,-1,-1,-1,-1,-1,0.8026,0.8118,0.8158,0.7912,0.656,0.493,0.3694,0.4546,0.407,0.053,-0.672,-0.6664,-0.6354,-0.5934,-0.5786,-0.5238,-0.471,-0.3188,-0.2354,-0.1516,-0.6266,1,-0.2724,-0.1888,0.7486,0.8142,0.7392,1,-0.3664,-0.1486,-0.01,0.3664,0.5248,0.5248,0.3664,0.6832,0.7822,0.6436,0.4852,0.3862,0.4258,0.7228,0.7426,0.6634,0.3862,0.6436,0.8812,0.9802,1,0.6634,0.4852,0.4852,0.6238,0.5446,0.3466,0.2278,0.2872,0.3862,0.2278,-0.307,-0.3676,-0.3162,-0.0598,-0.1282,-0.0086,-0.077,-0.0598,0.5384,0.4872,-0.0598,0.1624,0.3676,0.453,0.0086,0.1794,0.2478,0.3504,0.9316,1,0.4872,0.6068,0.6582,0.5214,0.453,0.624,0.4872,0.5042,0.4872,0.4358,0.3676,0.1966,0.0598,-0.1128,-0.0376,0.0076,-0.2782,-0.2632,-0.3234,0.0226,0.5188,0.4586,-0.0226,-0.1128,0.594,0.5338,0.0526,0.0526,0.203,0.4888,0.8646,1,0.3684,0.639,0.4436,0.3534,0.3984,0.3082,0.0828,0.1278,0.2782,0.3534,0.0676,0.3984,0.218,1,-1,-1,1,-1,-1,-1,-0.7666,-1,0.2872,0.505,0.7822,0.9208,1,0.901,0.4258,0.3268,0.1882,0.2278,0.2872,0.3862,0.4654,-0.0892,0.406,0.4456,0.1288,0.2476,0.1684,0.307,0.0892,0.1882,0.1486,-0.0892,-0.0694,0.2278,0.0694,-0.0892,-0.01,-0.109,-0.2872,-0.505,'23'
-1,0.2406,0.443,0.4936,1,0.9578,0.232,0.097,-0.114,-0.2068,-0.3164,-0.2658,-0.1054,-0.0802,0.0126,0.3586,0.5696,0.4852,0.3334,0.2912,0.3334,0.4178,0.4178,0.5528,0.4008,0.2236,0.0886,-0.0802,-0.1646,-0.1308,-0.1308,-0.0802,-0.6306,0.0924,0.237,0.4618,0.9598,0.984,0.5984,0.1566,-0.1244,-0.2048,-0.1726,-0.0924,-0.1646,0.1084,0.2852,0.6224,1,0.9518,0.5984,0.4538,0.4618,0.6546,0.8554,0.9036,0.7752,0.478,0.3172,0.3172,0.1326,0.1808,0.0362,0.0442,-0.4582,0.2442,0.2642,0.4984,0.7726,0.826,0.786,0.4248,0.291,0.2776,0.2174,0.3244,0.4716,0.5786,0.7324,0.8596,0.913,0.9532,0.719,0.7726,0.7526,0.8462,0.9332,1,0.719,0.679,0.5652,0.4984,0.4448,0.3444,0.3312,0.3378,-0.304,0.2916,0.2602,0.5172,0.5486,1,0.9436,0.4358,0.3292,0.2852,0.1912,0.3354,0.21,0.4984,0.511,0.7932,0.5612,0.7304,0.5736,0.6176,0.467,0.5988,0.5548,0.6866,0.536,0.304,0.1786,0.0658,0.0156,0.0784,0.0282,0.1598,-0.1334,0.3866,0.3266,0.36,0.6666,0.8334,0.72,0.7,0.3734,0.2734,0.4534,0.3934,0.64,0.5534,0.8666,0.96,1,0.76,0.72,0.5934,0.58,0.68,0.8066,0.6134,0.5534,0.28,0.3466,0.1266,0.1266,0.04,0.08,-0.0466,-0.0526,0.535,0.3948,0.2192,0.6842,0.7368,0.8334,0.7368,0.2544,0.2192,0.4298,0.3684,0.465,0.3948,0.614,1,0.9036,0.3684,0.4036,0.421,0.728,0.693,0.772,0.6228,0.2192,-0.1754,-0.2982,-0.421,-0.3246,-0.1842,-0.2894,-0.1578,0.079,0.693,0.4884,0.0976,0.721,0.6744,0.7302,0.6466,0.7396,0.6466,0.5628,0.5442,0.4976,0.7024,0.8418,0.9162,0.6372,0.7488,0.8604,0.8512,0.8418,1,0.9348,0.4232,-0.0976,-0.1814,-0.4698,-0.321,-0.1442,-0.0604,-0.386,-0.1814,-0.8536,0.2196,0.561,0.4634,0.8536,1,0.6098,0.0732,0.0244,-0.561,-0.122,-0.122,0.0732,0.2196,0.0732,0.5122,0.6586,0.4146,0.0732,0.1708,0.3658,0.5122,0.317,0.561,0.561,0.2682,0.1708,0.122,-0.2196,0.0732,0.0732,0.0244,-0.7916,0.25,0.375,0.625,1,0.875,0.3334,0.2916,0,0.0416,-0.25,-0.0834,0,-0.1666,0.0834,0.2916,0.5834,0.4166,0.5416,0.5,0.5416,0.5,0.625,0.7084,0.4166,0.4166,0.25,0.0834,0.0834,0,0.0416,0,-0.3664,0.307,0.3664,0.5842,0.7822,0.6634,0.6436,0.505,0.406,0.3268,0.3664,0.3466,0.5842,0.6238,0.802,0.9208,0.9406,1,0.8812,0.8812,0.8416,0.9802,1,0.9406,0.9406,0.6832,0.7426,0.5248,0.5842,0.406,0.505,0.3664,-1,-1,-1,-1,-1,-1,-1,-1,-0.9774,-0.9742,-0.8684,-0.384,-0.2276,0.1414,0.232,0.9666,0.9472,0.7962,0.3086,-0.0226,-0.1834,-0.3462,-0.6678,-0.8652,-0.9676,-0.9762,-0.9784,-0.973,-0.9278,-0.644,-0.5556,-0.8446,-0.9148,-1,-1,-1,-1,-1,-1,-1,-1,-0.9848,-0.983,-0.93,-0.6674,-0.577,-0.0802,0.392,0.8928,0.4538,0.7596,0.3186,-0.4046,-0.5036,-0.6194,-0.7678,-0.823,-0.9628,-0.9834,-0.9842,-0.9818,-0.8928,-0.4732,0.0764,-0.143,-0.1538,-1,-1,-1,-1,-1,-1,-1,-1,-0.9264,-0.8734,-0.85,-0.7668,-0.735,-0.705,-0.6,-0.62,-0.69,-0.64,-0.65,-0.775,-0.765,-0.735,-0.4368,-0.2334,-0.86,-0.8068,-0.8334,-0.9334,-0.8434,-0.07,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2286,-0.9142,1,1,1,1,1,1,-0.7714,-0.4,0.2286,0.1714,-0.4,-0.4286,-0.0286,1,1,-0.6572,-1,-0.4286,1,1,1,0.0858,-0.3142,1,1,1,1,1,1,1,1,1,1,0.0378,0.0378,0.033,0.0222,0.1158,0.1572,0.1148,0.0736,-0.0046,-0.4146,-0.7734,-0.6118,-0.9492,-0.7032,-0.6004,-0.5954,0.0992,0.0666,-0.0708,0.192,0.3738,0.2728,0.2324,0.4344,0.798,0.5758,0.7778,0.697,0.7778,0.7172,1,0.6162,0.7778,0.1112,0.5354,0.3536,0.4748,0.6566,0.2728,0.2122,0.394,0.1516,0.2526,0.0102,-0.0506,0.0506,0.596,0.7172,-0.0304,-0.2324,0.1736,0.5538,0.752,0.6198,0.6364,0.5372,0.8348,0.9174,1,0.8182,0.9174,0.8182,0.967,0.4546,0.7024,0.752,0.8512,0.9008,0.157,0.19,0.7356,0.7686,0.4546,0.405,0.6198,0.2728,0.4546,0.4876,0.157,0.405,0.4876,-0.2066,-0.0364,0.635,0.5036,0.6934,0.9416,0.3576,0.7664,0.854,1,0.8686,0.781,0.343,0.8102,0.5036,0.5328,0.489,0.562,0.3868,0.5036,0.4598,0.5036,0.4306,0.2408,-0.051,0.051,0.416,0.27,0.5182,0.197,-0.1386,-0.0656,-0.489,-0.9924,1,-1,-1,-1,-1,-0.8,-1,1,-0.5958,-0.4716,-0.6374,-0.8652,-0.5648,-0.2954,-0.285,-0.0778,-0.088,-0.0984,-0.0156,0.1398,0.026,0.3264,0.3264,0.3368,0.2436,0.3264,0.3264,0.3472,0.3056,0.5234,0.5336,0.658,0.8964,0.917,0.8032,0.7202,0.917,0.8964,1,0.7098,'24'
-0.2328,0.3836,0.3768,0.589,0.6028,0.9246,0.952,0.6506,0.4864,0.3972,0.315,0.3836,0.3904,0.589,0.5136,0.8356,0.8768,0.959,1,0.7672,0.7808,0.7328,0.7672,0.9178,0.8014,0.541,0.459,0.3836,0.411,0.315,0.3424,0.2466,-0.2152,0.3372,0.3082,0.5174,0.6396,1,0.936,0.7034,0.593,0.5,0.3838,0.4826,0.3604,0.5698,0.6162,0.7966,0.7906,0.9418,0.779,0.7616,0.5988,0.75,0.7268,0.8662,0.657,0.6046,0.3954,0.3954,0.279,0.378,0.2906,0.3954,-0.1202,0.4304,0.3924,0.5316,0.7088,0.9936,0.8608,0.886,0.7152,0.538,0.405,0.5316,0.5822,0.6772,0.8608,0.9368,0.943,1,0.8038,0.8228,0.8228,0.8228,0.8798,0.8798,0.3418,0.2594,0.3228,0.2594,0.2722,0.1772,0.0886,-0.0254,-0.178,0.3534,0.3096,0.4028,0.6384,0.8302,0.8192,0.9452,0.6768,0.5288,0.4136,0.474,0.6274,0.6548,0.9068,0.8904,1,0.9506,0.8302,0.7424,0.8356,0.7534,0.9014,0.7644,0.5836,0.315,0.4302,0.2274,0.348,0.1616,0.2438,0.189,-0.188,0.3242,0.2588,0.406,0.6186,0.782,0.8692,1,0.6894,0.6076,0.4496,0.4878,0.5586,0.5532,0.8802,0.8148,0.9564,0.8474,0.842,0.7002,0.722,0.6948,0.8148,0.5368,0.5586,0.395,0.4278,0.2916,0.2862,0.297,0.2698,0.2316,-0.2366,0.2934,0.1988,0.3502,0.6026,0.6908,0.981,1,0.489,0.4322,0.2744,0.3564,0.4512,0.6594,0.7918,0.9432,0.9748,0.6656,0.6404,0.653,0.634,0.6846,0.5078,0.3564,0.224,0.1672,0.1168,0.0536,-0.06,0.0474,-0.0284,-0.022,-0.422,-0.019,-0.0874,-0.019,0.4144,0.4372,0.749,0.7414,0.521,0.4904,0.3764,0.6654,0.711,0.825,1,0.9544,0.8404,0.559,0.7186,0.6958,0.6502,0.7642,0.673,0.3764,0.2016,0.1864,0.0646,-0.1178,0.0646,0.0494,-0.1788,-0.0266,-0.5,0.3888,0.5556,0.6112,0.8334,1,0.9444,0.8334,0.6112,0.2778,0.3334,0.2778,0.3888,0.4444,0.5556,0.7778,0.7778,1,1,0.7778,0.7778,0.6112,0.6666,0.6666,0.5,0.2222,-0.2222,0.1112,0.0556,-0.1666,-0.0556,-0.2222,-0.2858,0.2858,0.2858,0.5358,0.6428,0.9642,0.9286,0.6072,0.5358,0.4286,0.3928,0.5,0.4642,0.6072,0.6428,0.8214,0.75,1,0.8214,0.8214,0.75,0.75,0.75,0.9642,0.8214,0.6786,0.5358,0.3928,0.2858,0.3214,0.2142,0.3572,-0.299,0.2164,0.1958,0.3402,0.567,0.7114,0.9176,1,0.6494,0.5258,0.464,0.4226,0.4846,0.6082,0.8144,0.732,0.9382,0.7732,0.7938,0.7526,0.8144,0.7526,0.7938,0.402,0.3814,0.299,0.2372,0.1546,0.0722,0.1752,0.0722,0.1752,-1,-1,-1,-1,-1,-1,-1,-0.9844,-0.9888,-0.9806,-0.936,0.3422,0.9592,0.9576,0.78,0.5534,0.4932,0.2672,0.1988,0.0376,-0.4322,-0.8112,-0.9658,-0.9778,-0.9792,-0.98,-0.983,-0.983,-0.9852,-0.8076,-0.8536,-0.922,-0.965,-1,-1,-1,-1,-1,-1,-1,-0.9916,-0.991,-0.9768,-0.879,-0.125,0.4052,0.433,0.284,0.189,0.7622,0.093,0.0544,-0.0694,-0.6082,-0.7876,-0.9708,-0.9876,-0.986,-0.9896,-0.9896,-0.9906,-0.991,-0.805,-0.6162,-0.4614,-0.5628,-1,-1,-1,-1,-1,-1,-1,-0.9134,-0.88,-0.58,0.03,-0.65,-0.69,-0.69,-0.695,-0.675,-0.655,-0.69,-0.66,-0.625,-0.536,-0.368,-0.69,-0.8334,-0.5868,-0.7668,-0.9734,-0.92,-0.9134,-0.64,0.8166,1,1,-1,-1,-1,-1,-1,-1,-1,-0.9428,0,1,1,1,1,-0.7142,-0.6286,-0.8858,-0.9142,-0.6858,-0.2286,1,1,1,1,0.2,-0.9714,-1,-1,-1,1,1,1,0.9714,-0.0572,1,1,1,1,1,1,1,1,1,1,-0.2486,-0.244,-0.244,-0.2462,-0.2556,-0.2394,-0.2708,-0.38,-0.4728,-0.6744,-0.7734,-0.5764,-0.8518,-0.5836,0.2722,0.4184,0.4444,1,0.0392,0.451,0.4216,0.8726,0.8726,0.6274,0.6666,1,0.6862,0.6372,0.6078,0.4804,0.696,0.2746,0.4216,0.1862,0.4902,0.2746,0.451,0.3628,0.4412,0.6176,0.4216,0.6176,0.4412,0.2352,0.2844,0.147,0.049,0.0196,-0.147,-0.4412,0.0468,-0.1122,0.0748,0.5888,0.4018,0.486,0.6822,0.9626,0.8038,0.7384,0.972,1,0.7944,0.4392,0.4112,0.6542,0.43,0.6636,0.5982,0.8786,0.6074,0.6728,0.3644,0.243,0.1682,0.2336,0.7384,0.1588,0.0748,0.0748,-0.1308,-0.4206,-0.493,-0.1922,0.181,0.248,0.1254,0.064,0.3314,0.6324,0.9052,1,0.7326,0.8998,0.9332,0.6824,0.6156,0.5988,0.844,0.8272,0.8774,0.7494,0.7494,0.3816,-0.1588,-0.2034,-0.103,-0.1142,-0.2534,-0.415,-0.298,-0.1142,-0.4764,-0.805,-0.9964,1,-1,-1,-1,-1,-1,-1,1,-0.6374,-0.7582,-0.5934,-0.2418,-0.3956,-0.4726,-0.3626,-0.099,-0.1208,-0.099,-0.1208,-0.1648,0.1098,-0.033,0.011,-0.055,0.022,0.055,0.3076,0.4506,0.2748,0.3846,0.6484,0.7362,0.8462,0.8902,0.6924,0.8902,1,0.7802,0.6374,0.5054,'24'
-0.081,0.6168,0.5896,1,0.9202,0.7538,0.6374,0.2428,0.1152,-0.3592,-0.512,-0.61,-0.74,-0.7354,-0.7172,-0.7446,-0.7492,-0.7856,-0.87,-0.8244,-0.6238,-0.5712,-0.5052,-0.4732,-0.651,-0.7834,-0.8358,-0.8016,-0.5986,-0.5598,-0.2542,-0.2794,-0.0778,0.5146,0.489,0.7886,0.8444,1,0.7724,0.8304,0.3404,0.1498,-0.2868,-0.4728,-0.547,-0.691,-0.6656,-0.7004,-0.6772,-0.6422,-0.6678,-0.4936,-0.5146,-0.3008,-0.0872,-0.0824,-0.2218,-0.4704,-0.4564,-0.5354,-0.482,-0.3008,-0.1708,0.129,0.0128,0.6028,0.444,0.5234,0.8326,0.8666,1,0.8978,0.5064,0.668,0.81,0.6596,0.6426,-0.1376,-0.2652,-0.3334,-0.3276,-0.234,-0.1092,-0.1348,-0.146,0.3078,0.478,0.2652,0.0382,-0.3986,-0.39,-0.4382,-0.3248,-0.2312,-0.0156,0.0696,-0.1186,0.4232,0.2858,0.3832,0.7304,0.7828,1,0.9276,0.5132,0.3932,0.5006,0.7728,0.8102,0.4506,0.3358,-0.1736,-0.2958,-0.2808,-0.0686,-0.0512,0.1686,0.1936,0.4832,0.3158,-0.0038,-0.211,-0.1786,-0.2958,-0.2934,-0.251,-0.201,-0.131,-0.1572,0.3404,0.2024,0.319,0.6548,0.6834,1,0.8904,0.338,0.1358,0.112,0.4072,0.3928,0.531,0.4572,0.0476,-0.05,-0.1976,0.1358,0.119,0.3096,0.3166,0.3714,0.05,-0.0762,-0.312,-0.3428,-0.3238,-0.3404,-0.2428,-0.2524,-0.231,-0.0688,0.4898,0.4198,0.5898,1,0.9974,0.8866,0.7274,0.2388,-0.0716,-0.3306,-0.0958,-0.1174,0.1822,0.0688,0.2146,0.301,0.2416,0.2362,0.1632,0.3522,0.587,0.6302,0.4304,0.3712,0.1444,0.0202,-0.2038,-0.228,-0.1876,-0.1256,-0.0824,0.0012,0.609,0.778,1,0.879,0.9672,0.4148,0.3948,0.1652,0.0466,0.019,-0.1804,-0.1148,-0.0466,-0.0012,0.1248,0.1652,0.647,0.5762,0.7276,0.4602,0.4728,0.6722,0.6924,0.4048,0.2862,0.0366,-0.0542,-0.0668,-0.1752,-0.0542,-0.0038,0.2542,0.8306,0.8306,1,0.9322,0.8644,0.8644,0.5254,0.322,0.1186,-0.017,-0.2882,-0.356,-0.2204,-0.0508,-0.1186,-0.0508,-0.0848,-0.0508,0.017,0.2204,0.2882,0.2542,0.0848,-0.1186,-0.4916,-0.661,-0.3898,0.017,0.1186,0.2542,0.2542,0.12,0.76,0.72,1,0.92,0.84,0.76,0.36,0.24,-0.12,-0.12,-0.08,-0.16,-0.52,-0.68,-0.84,-0.44,-0.32,-0.44,-0.56,-0.28,0.08,0.12,-0.16,-0.28,-0.24,-0.32,-0.32,-0.32,0,0.12,-0.08,0,0.6,0.4858,0.5428,0.8286,0.8572,1,0.8858,0.1142,0.6858,0.8286,0.4858,0.4,-0.2286,-0.2286,-0.5714,-0.6,-0.4572,-0.4,-0.2858,-0.2286,0.3142,0.4572,0.1714,-0.2286,-0.3428,-0.4286,-0.4,-0.3714,-0.4858,0.0286,0,-1,-1,-1,-1,-1,-1,-1,-1,-0.9886,-0.982,-0.7336,-0.3692,0.5904,0.1608,-0.2178,-0.2818,-0.2574,-0.258,-0.3356,-0.3084,-0.2432,-0.3718,-0.7516,-0.9148,-0.9626,-0.9604,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9848,-0.9794,-0.7824,-0.4336,0.508,0.297,-0.125,-0.0544,0.1016,0.1468,-0.0674,-0.2444,-0.1638,-0.4274,-0.7628,-0.8688,-0.8808,-0.8938,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9634,-0.8768,-0.9268,-0.855,-0.8268,-0.834,-0.7832,-0.7262,-0.6816,-0.7324,-0.7708,-0.9124,-0.977,-0.96,-0.8968,-0.5768,-0.3568,-0.3568,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,-0.4572,1,0.7142,-0.0572,-0.1142,-0.5428,-0.8572,-0.9142,-0.8572,-0.8286,-0.8286,-0.8858,0.1428,-0.2572,-0.3714,-0.8858,-0.8858,-1,-1,-1,-1,-1,-1,-1,0.692,0.6944,0.6914,0.6994,0.7262,0.785,0.8406,0.8904,0.9506,0.985,-0.3604,-0.3784,-0.356,-0.2974,-0.214,-0.1216,-0.068,-0.1542,-0.3356,-0.3562,-0.6934,0.5412,-0.7394,-0.578,-0.5098,-0.4286,-0.3336,-0.7416,0.814,1,0.628,0.1628,0.1628,0.5348,0.5348,0.0232,0.3488,0.3954,0.628,0.3954,0.4884,0.2094,0.2094,0.4418,0.3488,0.3488,0.1162,0.3488,0.3954,0.3488,0.3488,0.1628,0.3488,0.2558,0.0698,-0.0232,0.2558,0.0698,-0.1162,-0.3954,0.7172,1,0.8586,0.4748,0.1516,0.1516,0.2324,0.0708,-0.091,0.0506,0.1718,-0.0506,0.1516,-0.0102,0.1516,-0.0102,-0.0102,-0.0708,-0.1112,-0.0102,0.0708,-0.0304,-0.0304,-0.2122,-0.0708,0.0708,0.0304,-0.2728,-0.1516,-0.091,-0.495,-0.6162,0.6924,0.9424,1,0.8462,0.3462,-0.0576,-0.0384,-0.0384,-0.0192,-0.3076,0.1538,0.173,-0.173,-0.2116,-0.0384,-0.1538,-0.2116,-0.2692,-0.1154,-0.077,-0.1924,-0.4038,-0.1538,-0.0962,-0.2692,-0.25,-0.3076,-0.2308,-0.1924,-0.2884,-0.3654,-0.7884,-0.5228,-1,-1,1,-1,-1,-0.8,-0.8334,-1,-0.4968,0.1484,0.329,0.4064,-0.1612,-0.0968,-0.0452,-0.0194,0.5612,1,0.6,0.7548,0.6,0.5354,0.2646,0.213,0.2904,0.458,0.5612,0.4194,0.2388,-0.0322,0.0322,-0.0194,0.071,-0.0838,0.0452,-0.1096,0.1096,-0.1484,-0.1226,-0.471,'25'
-0.0888,0.59,0.564,1,0.94,0.7102,0.6032,-0.1044,-0.1958,-0.5352,-0.6528,-0.598,-0.6422,-0.684,-0.5666,-0.658,-0.6658,-0.6998,-0.752,-0.7494,-0.6554,-0.6344,-0.5822,-0.4882,-0.457,-0.5954,-0.684,-0.705,-0.59,-0.4752,-0.3916,-0.5014,-0.1076,0.4728,0.41,0.7244,0.775,1,0.8042,0.9614,0.6396,0.514,0.1222,0.0036,-0.3954,-0.4922,-0.5284,-0.6106,-0.5502,-0.6106,-0.4534,-0.5574,-0.3446,-0.1874,-0.081,0.2938,0.3518,-0.081,-0.1512,-0.1246,-0.1464,0.1124,0.1366,0.1198,-0.1218,0.4204,0.3274,0.4002,0.5934,0.719,0.9598,1,0.345,0.1368,0.3802,0.468,0.6136,0.3952,0.1242,-0.0338,0.0038,-0.0164,-0.0614,0.0314,-0.0992,-0.0816,0.2196,0.3224,-0.0514,-0.2272,-0.5208,-0.3852,-0.2322,-0.182,-0.1192,0.1116,-0.1864,0.3184,0.2312,0.3538,0.6062,0.717,0.9694,1,0.4504,0.3986,0.3868,0.4764,0.6958,0.5778,0.5542,0.2122,0.2524,0.1038,0.0636,0.2146,0.217,0.4482,0.3254,0.2736,0.0424,-0.066,-0.342,-0.368,-0.1628,-0.1746,-0.1864,-0.1062,-0.2292,0.2198,0.1916,0.3396,0.6192,0.6546,1,0.9106,0.5088,0.3208,0.3302,0.3842,0.3842,0.6404,0.6546,0.6004,0.4172,0.2738,0.2032,0.1962,0.154,0.3396,0.4594,0.349,0.1468,0.0036,-0.1562,-0.2596,-0.3466,-0.302,-0.2762,-0.0788,-0.1696,0.2866,0.3246,0.4036,0.7018,0.8392,1,0.5556,0.2748,-0.0088,-0.0498,0.0556,0.0994,0.0584,0.1842,0.4474,0.503,0.4122,0.152,-0.0584,0.2252,0.228,0.3128,0.462,0.3334,-0.003,-0.0438,-0.5088,-0.5672,-0.497,-0.4854,-0.3568,-0.0912,0.4006,0.645,0.7134,1,0.8144,0.6058,0.1694,0.1206,-0.0326,-0.1074,-0.0196,0.0294,-0.0912,0.0684,0.2084,0.2346,0.6352,0.7004,0.8664,0.4528,0.404,0.5668,0.6188,0.7134,0.2768,0.0978,-0.0978,-0.1824,-0.1498,-0.3746,-0.29,0.2174,0.9566,1,1,0.9566,0.6956,0.6956,0.174,-0.0434,-0.3044,-0.3044,-0.174,-0.174,-0.1304,-0.1304,-0.2174,-0.1304,-0.3478,-0.3044,-0.3044,-0.2174,-0.4348,-0.5652,-0.2174,-0.3044,-0.5218,-0.6086,-0.3914,-0.3914,-0.5652,-0.5218,-0.6086,0.0834,0.7916,0.7916,1,0.9584,0.7084,0.625,-0.5,-0.2084,-0.4166,-0.4584,-0.4166,-0.4166,-0.2916,-0.2084,-0.3334,-0.4166,-0.1666,-0.1666,-0.4166,-0.5,-0.2916,-0.6666,-0.2084,-0.2084,-0.3334,-0.4584,-0.5,-0.3334,-0.4166,-0.5,-0.5834,-0.1494,0.4022,0.3794,0.5402,0.7012,0.908,0.862,1,0.885,1,0.6552,0.1264,-0.1494,-0.1724,-0.2874,-0.3564,-0.4482,-0.4482,-0.3334,-0.1724,-0.1034,0.0114,-0.0114,0.4942,0.4482,-0.3104,-0.4022,-0.4942,-0.2874,-0.1724,-0.3794,-0.1954,-1,-1,-1,-1,-1,-1,-1,-1,-0.9836,-0.9858,-0.8424,-0.1616,0.7746,0.3546,0.0532,0.0026,0.1432,0.2016,0.0786,-0.1886,-0.2692,-0.3852,-0.6388,-0.9294,-0.977,-0.9724,-0.9746,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.982,-0.982,-0.8964,-0.3736,0.5616,0.4784,0.1916,0.3088,0.6338,0.9002,0.548,-0.0842,-0.3178,-0.413,-0.6964,-0.8924,-0.9226,-0.9222,-0.9332,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.906,-0.9768,-0.9168,-0.88,-0.8292,-0.7856,-0.751,-0.7456,-0.702,-0.7038,-0.75,-0.8584,-0.92,-0.8818,-0.91,-0.4168,-0.1634,-0.1134,-0.2468,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4286,-0.8286,0.6,0.6286,0.7428,0.2572,-0.4858,-0.6572,-0.8572,-0.9428,-0.7428,-0.6286,-0.6858,0.1428,0.5714,-0.2286,-0.7142,-0.7428,-0.4858,-1,-1,-1,-1,-1,-1,0.5214,0.537,0.5744,0.6162,0.6756,0.7618,0.8316,0.9038,0.995,1,-0.459,-0.4118,-0.3698,-0.287,-0.1752,0.008,0.0834,-0.028,-0.3888,-0.4612,-0.72,0.353,-0.8988,-0.6818,-0.5854,-0.3616,0.0114,-0.9416,-0.1648,0.1208,0.6704,0.978,0.6704,0.4506,0.7362,0.8682,0.978,0.8022,0.6264,0.5164,1,0.7582,0.6044,0.2088,0.3846,0.4946,0.6924,0.1648,0.3626,-0.1648,0.2748,0.2308,-0.1428,0.3626,0.099,-0.1868,0.1868,0.5164,-0.2308,-0.8462,0.244,0.7008,0.748,0.748,0.8268,0.685,0.748,0.7638,0.8426,0.6062,0.8426,0.874,0.874,0.622,0.6692,0.7638,1,0.5748,0.5276,0.622,0.8268,0.6692,0.9842,0.0866,0.5906,0.6378,0.5434,0.4804,0.2284,0.433,-0.0078,-0.5118,0.6814,1,0.6924,0.4836,0.2968,0.3846,0.6374,0.4836,0.4066,0.4396,0.4176,0.4176,0.4176,0.3296,0.4396,0.3736,0.4946,0.1318,0.1648,0.1318,0.2748,0.055,0.2198,0.2418,0.3956,0.3186,0.1868,0.1868,0.1098,0.2748,-0.1208,-0.3956,-0.9906,1,-1,-1,-1,-1,-0.8,-1,-1,-0.8912,0.0204,0.1564,0.0884,0.0068,-0.3742,-0.102,-0.1428,0.4558,0.6598,0.8504,1,0.9184,0.4694,0.4966,0.415,0.3062,0.279,0.3606,0.347,0.2518,0.2244,0.0204,0.102,0.1972,0.3742,0.3606,-0.1292,-0.0612,0.034,-0.1292,-0.3878,'25'
0.1906,0.9638,0.9746,0.9382,0.8766,0.3902,0.2814,0.118,-0.0054,0.0128,-0.0708,0.0344,-0.0308,0.245,0.1724,0.5172,0.579,0.9746,0.9818,1,0.844,0.6044,0.47,0.746,0.6696,0.51,0.4156,0.0672,-0.0454,-0.0018,-0.078,0.0708,0.1764,0.9166,0.8406,1,0.8216,0.3358,0.074,-0.1196,-0.2904,-0.1574,-0.4648,-0.3776,-0.1348,-0.1082,0.0398,0.0094,0.0246,0.2106,0.7648,0.8558,0.962,0.8102,0.2866,0.241,0.3206,0.5408,0.5332,0.2448,-0.2714,0.0246,0.0474,0.0816,0.1764,0.916,0.8026,1,0.7226,0.2142,-0.3446,-0.4118,-0.3782,-0.395,-0.6638,-0.769,-0.374,-0.4076,-0.1974,-0.437,-0.3236,0.0294,0.0714,0.4454,0.626,0.853,0.7058,0.3656,0.5126,0.731,0.605,0.4286,0.0924,0.1596,0.0966,0.0336,0.1752,0.8632,0.7094,1,0.6582,0.0726,-0.4616,-0.4316,-0.4274,-0.5556,-0.9444,-0.688,-0.5128,-0.4274,-0.3376,-0.641,-0.671,-0.2308,-0.3548,-0.2264,0.6966,0.8804,0.5556,0.4274,0.235,0.3376,0.4616,0.3548,0.282,0.03,0.1026,-0.0214,0.1598,0.72,0.8344,1,0.507,-0.077,-0.4636,-0.5976,-0.5424,-0.787,-0.9014,-0.6844,-0.6174,-0.4478,-0.5464,-0.4202,-0.6766,-0.708,-0.5108,-0.3688,0.2386,0.4556,0.649,0.4044,0.1992,0.3926,0.282,0.1638,0.1242,0.065,-0.1204,-0.2662,0.106,0.5414,0.9576,1,0.1098,-0.449,-0.449,-0.526,-0.6416,-0.7804,-0.919,-0.8766,-0.9692,-0.7456,-0.526,-0.6956,-0.738,-0.7072,-0.6686,-0.5876,-0.1214,0.4104,0.5684,0.445,0.0328,0.4374,0.4412,0.183,-0.0982,-0.079,-0.2986,-0.445,0.0666,0.4038,1,0.974,-0.1888,-0.4556,-0.5222,-0.4962,-0.7556,-0.9334,-0.9926,-0.8852,-0.8888,-0.737,-0.6518,-0.7148,-0.663,-0.7074,-0.626,-0.426,-0.0592,0.2296,0.226,0.2666,0.2334,0.2778,0.2814,-0.1,-0.4704,-0.4038,-0.4926,-0.5852,0.2888,0.8222,0.9112,0.8666,0.6,0.1556,-0.3334,-0.3778,-0.8222,-0.3334,-0.1556,0.0222,0.1556,0.0666,0.2,0.3334,1,1,0.8222,0.8666,0.6444,0.5112,0.2,0.6,0.5112,0.6888,0.8222,0.7778,0.7778,0.6,0.5112,0.6,0.1852,0.7778,0.7778,0.8148,0.7778,0.3704,0.3704,0.2592,0.2222,0.1852,0.1482,0.1852,0.1482,0.2222,0.1482,0.4814,0.4814,0.926,1,0.7408,0.4814,0.5186,0.4814,0.6296,0.7778,0.6666,0.3334,0.1112,0.037,0.074,0.074,0.074,0.1714,0.8858,0.7714,1,0.7142,0.2572,-0.2,-0.2858,-0.2572,-0.2572,-0.4572,-0.5714,-0.3142,-0.3142,-0.0572,-0.4286,-0.2858,0.1428,0.2858,0.6572,0.7714,0.4286,0.2858,0.4286,0.4,0.9142,0.6572,0.0858,0.0572,0.2572,0.1142,0.1428,-0.729,-0.4898,-0.5438,-0.5988,-0.674,-0.7466,-0.8618,-0.9442,-0.969,-0.977,-0.9132,0.721,0.9806,0.8326,0.6944,0.6094,0.5066,0.472,0.4038,0.241,0.1586,-0.1772,-0.7086,-0.907,-0.9628,-0.9478,-0.9486,-1,-1,-1,-1,-1,-1,-0.798,-0.6162,-0.5552,-0.2702,0.042,0.4252,0.15,0.1226,-0.1678,-0.4808,-0.5216,0.6046,0.911,0.6876,0.4758,0.3558,0.2526,0.216,0.1654,0.0122,-0.053,-0.3442,-0.7542,-0.8846,-0.9194,-0.9048,-0.9176,-1,-1,-1,-1,-1,-1,-0.8868,-0.89,-0.6868,0.0832,0.5866,0.9866,1,1,1,1,1,-0.66,-0.8378,-0.8912,-0.9224,-0.9778,-0.9712,-0.9134,-0.8912,-0.9112,-0.9156,-0.9024,-0.8668,-0.5468,-0.4334,-0.52,-0.64,-1,-1,-1,-1,-1,-1,0.6572,1,1,1,-0.4286,-0.4858,-0.5714,-0.4,-0.3142,0.0572,1,1,-0.6286,-0.7714,-0.7428,-0.9142,-0.9714,-0.7714,-0.8858,-0.8286,-0.8286,-0.6572,-0.6,-0.5714,-0.7428,-0.9714,-0.7714,-1,-1,-1,-1,-1,-1,0.224,0.2482,0.2612,0.268,0.2676,0.261,0.2462,0.1934,0.083,-0.195,0.004,-0.008,0.0012,-0.0096,-0.003,0.0476,0.1792,0.3008,0.5032,0.7086,-0.72,0.047,-0.5394,-0.1996,0.7078,0.828,0.8408,0.3416,0.0738,0.1908,-0.2214,-0.6794,-0.682,-0.5166,-0.3232,-0.341,-0.2798,-0.3002,-0.1858,-0.0178,0.005,-0.1146,-0.196,-0.1832,-0.1068,-0.0636,0.0662,0.0432,0.2214,0.3664,0.519,0.7302,0.7328,0.6998,0.8804,0.9338,1,0.9974,0.8396,0.659,-0.496,-0.5076,-0.8164,-0.6888,-0.712,-0.5632,-0.3194,-0.338,-0.2428,-0.2196,-0.1498,-0.0802,0.1174,0.1452,0.1638,0.259,0.1428,0.187,0.3496,0.4262,0.6748,0.5842,0.6818,0.7468,0.8932,0.8792,0.979,1,0.979,0.9652,0.8234,0.424,-0.951,-0.8258,-0.6588,-0.5632,-0.4846,-0.3178,-0.2,-0.227,0.0036,0.2122,0.2834,0.1828,0.4356,0.2982,0.173,0.2418,0.335,0.276,0.5632,0.4356,0.5018,0.5608,0.7792,0.6884,0.7742,0.897,0.8994,0.8404,1,0.9852,0.843,0.708,-0.6522,-1,1,-1,1,0.4,-0.4,0.7334,-1,-0.4108,0,0.2858,0.5,0.2322,-0.0892,0.0178,0.1964,0.4822,0.9464,1,0.9464,0.625,0.3928,0.3392,0.2322,0.1428,0.3036,0.2858,0.6786,0.1786,-0.1072,0.0358,0.0714,0.0358,-0.0714,0.0358,-0.0892,0.0358,-0.0536,-0.25,-0.6428,'26'
0.2034,0.983,0.9458,1,0.8848,0.3356,0.2678,0.1966,0.0542,0.0372,-0.0576,0.1016,0.0406,0.0474,0.0272,0.4,0.5084,0.8474,0.7424,0.5084,0.4238,0.583,0.4542,0.6882,0.6542,0.6306,0.5152,0.3966,0.3152,0.2,0.183,0.3186,0.077,0.7396,0.7042,0.8728,0.7782,0.3048,0.1686,0.0148,-0.136,-0.1302,-0.3166,-0.1804,-0.361,-0.1656,-0.355,-0.1864,-0.0414,0.1094,0.6538,0.7928,0.6036,0.7072,0.5326,0.6184,0.9202,1,0.5384,0.3728,0.3018,0.3344,0.1656,0.1628,0.1126,0.8252,0.758,0.8824,0.7378,0.2068,-0.0152,-0.2336,-0.395,-0.237,-0.479,-0.3782,-0.6168,-0.526,-0.6436,-0.5362,-0.2908,-0.2908,0.274,0.432,1,0.9328,0.442,0.4554,0.8016,0.6806,0.768,0.5832,0.5058,0.2538,0.2302,0.1328,0.0634,0.7118,0.6226,0.8044,0.5814,0.0258,-0.3996,-0.2968,-0.3826,-0.379,-0.602,-0.6706,-0.4476,-0.5814,-0.7118,-0.6364,-0.5198,-0.1766,-0.0566,0.3208,0.4066,0.7152,0.6946,0.5814,0.6878,1,0.8766,0.5334,0.362,0.2452,0.1218,0.1596,0.0566,0.7004,0.7774,1,0.498,-0.0932,-0.5748,-0.6438,-0.5708,-0.834,-0.7288,-0.7246,-0.7408,-0.8988,-0.8422,-0.8098,-0.749,-0.5588,-0.1822,0.0486,0.4696,0.579,0.5222,0.34,0.5466,0.8178,0.7854,0.4372,0.255,0.0446,-0.1214,-0.162,0.1254,0.6346,0.893,1,0.214,-0.2842,-0.5498,-0.6088,-0.5794,-0.7896,-0.7896,-0.6678,-0.7012,-0.9188,-0.9594,-0.7122,-0.5536,-0.3874,-0.2436,0.1254,0.727,0.856,0.6716,0.5166,0.524,0.6458,0.7158,0.1992,0.0738,-0.1328,-0.1734,-0.1366,0.0688,0.7522,0.8532,1,0.1146,-0.39,-0.711,-0.6652,-0.7248,-0.899,-0.9036,-0.7614,-0.7614,-0.9312,-0.8074,-0.8074,-0.7386,-0.7202,-0.5826,-0.4634,-0.0276,0.5964,0.5826,0.2432,0.3348,0.422,0.211,-0.0964,-0.4082,-0.7018,-0.601,-0.3808,0.1516,1,0.8788,0.7576,0.5758,-0.091,0.091,0.1516,-0.1516,-0.0304,-0.1516,-0.091,-0.091,-0.4546,0.2122,0.2122,0.8182,0.697,-0.0304,-0.0304,0.4546,0.6364,0.394,0.2122,0.394,-0.091,0.1516,0.1516,0.2122,-0.0304,0.394,0.6364,0.1282,1,0.9488,1,0.8974,0.282,0.077,0.2308,0.0256,0.0256,-0.1794,0.1282,0.077,0.0256,-0.0256,0.4872,0.3334,0.8974,0.7436,0.4872,0.4358,0.282,0.282,0.641,0.5898,0.1794,-0.1282,0.077,0.1282,-0.1282,0.0256,-0.077,0.114,0.595,0.7468,0.8988,0.3164,-0.1646,-0.4178,-0.5444,-0.4936,-0.5444,-0.5696,-0.6456,-0.7722,-0.8988,-0.6456,-0.6202,-0.595,-0.4178,-0.2658,0.1392,0.4936,1,0.8482,0.4684,0.7216,0.6962,0.6456,0.4684,0.4178,0.0632,0.114,-0.114,-0.5206,-0.4046,-0.393,-0.4506,-0.5294,-0.6288,-0.7182,-0.7536,-0.7846,-0.845,-0.7076,0.5056,0.9636,0.7892,0.5268,0.3522,0.2752,0.2388,0.113,-0.1086,-0.3814,-0.6198,-0.7138,-0.9026,-0.9708,-0.9618,-1,-1,-1,-1,-1,-1,-1,-0.6098,-0.4936,-0.421,-0.2054,0.0962,0.2682,0.455,0.1078,0.6238,0.0238,-0.3106,0.498,0.8934,0.7682,0.4756,0.292,0.233,0.1758,0.0436,-0.1636,-0.4256,-0.6668,-0.7522,-0.8864,-0.9378,-0.93,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.99,-0.9334,-0.38,0.42,1,1,1,1,1,0.7032,-0.8578,-0.9134,-0.8646,-0.946,-0.944,-0.928,-0.882,-0.862,-0.828,-0.888,-0.962,-0.8834,-0.5168,-0.56,-0.37,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,-0.0858,-0.8286,-0.8572,-0.8858,-0.9428,-0.4858,1,1,0.3142,-0.8,-0.8286,-0.9714,-0.8858,-0.8858,-0.8,-0.8858,-0.6,-0.4286,-0.6286,-0.6,-0.8286,-0.9142,-1,-1,-1,-1,-1,-1,-1,0.1574,0.185,0.218,0.2464,0.2606,0.2834,0.289,0.2702,0.2038,-0.112,0.0642,0.1184,0.1816,0.2802,0.3346,0.4372,0.5242,0.607,0.766,0.8262,-0.7334,0.1412,-0.2676,-0.2336,0.36,0.8986,0.9718,-0.1666,0.035,0.1348,-0.159,-0.5768,-0.6792,-0.6442,-0.5176,-0.186,-0.1832,-0.2238,-0.2292,-0.07,-0.0458,-0.0026,-0.089,-0.07,-0.1806,-0.1564,0.248,0.3046,0.0512,0.2452,0.4448,0.5688,0.7142,0.593,0.7062,0.9218,1,0.93,0.8382,0.682,-0.2206,-0.1738,-0.7106,-0.7992,-0.734,-0.6056,-0.5356,-0.4796,-0.3956,-0.3302,-0.1692,-0.1646,-0.0758,-0.0618,-0.0246,-0.0618,-0.0478,-0.0408,0.1786,0.2276,0.0362,0.1226,0.2416,0.4772,0.5286,0.6686,0.7316,0.811,1,0.7456,0.86,0.741,-0.2442,-0.1854,-0.784,-0.6972,-0.6174,-0.5586,-0.4342,-0.324,-0.1056,-0.0938,-0.061,-0.0212,0.1362,0.1292,0.0846,0.0752,0.0752,0.0306,0.4508,0.4226,0.1174,0.2112,0.1996,0.453,0.4882,0.5658,0.6948,0.7864,1,0.845,0.6056,0.3334,-0.561,-1,1,-1,1,1,-0.6,0.6334,-1,-0.3654,0.0576,0.1346,0.0962,0.1154,0,0.173,0.6154,0.3462,0.7116,0.577,0.7308,1,0.7308,0.077,0.1346,0.1924,0.6924,0.5,0.3462,0.423,0.2884,0.3076,0.1154,-0.0576,0.0192,0.077,-0.077,-0.1154,-0.1924,-0.327,-0.8076,'26'
-0.3686,0.1156,0.306,0.5028,0.5784,0.6044,0.2972,0.2886,0.0962,0.0572,0.1156,0.0336,0.1502,0.2152,0.3124,0.4032,0.4464,0.747,0.7794,1,0.8918,0.773,0.7102,0.7536,0.8444,0.9114,0.7514,0.7232,0.6368,0.5936,0.6194,0.641,-0.2436,0.2146,0.3528,0.5224,0.6266,0.68,0.2122,0.1758,0.2484,0.1078,0.1152,0.1322,0.2048,0.2266,0.2072,0.3696,0.3722,0.5976,0.886,1,0.937,0.9442,0.8424,0.7794,0.8424,0.8304,0.9272,0.7358,0.7576,0.6896,0.651,0.7116,-0.2724,0.1382,0.521,0.635,0.4676,0.4348,0.1254,-0.0368,0.019,0.0088,-0.014,-0.019,-0.0266,0.1178,0.1128,0.1178,0.2878,0.3486,0.5666,0.9518,1,0.8834,0.7946,0.7592,0.7642,0.858,0.8732,0.8352,0.7896,0.716,0.716,0.6932,-0.2824,0.088,0.6062,0.6788,0.2488,0.145,0.0388,-0.171,-0.1502,-0.1166,-0.2668,-0.2098,-0.1036,-0.1374,-0.1476,-0.013,0.0648,0.2202,0.355,0.57,0.9482,1,0.6994,0.6062,0.6684,0.7746,0.7902,0.8834,0.7564,0.6944,0.5674,0.5596,-0.2218,0.2006,0.9458,1,0.1794,-0.0286,0.08,-0.3002,-0.3514,-0.1916,-0.3574,-0.3212,-0.2398,-0.3152,-0.1976,-0.1584,-0.2006,0.0106,0.3182,0.4238,0.8764,0.804,0.9004,0.7134,0.6924,0.7194,0.801,0.8824,0.6984,0.5988,0.5444,0.5444,-0.1622,0.3064,0.907,1,0.3574,-0.2672,-0.3304,-0.5136,-0.5616,-0.4954,-0.5676,-0.5886,-0.5496,-0.4834,-0.6486,-0.5616,-0.4534,-0.3154,-0.084,0.1892,0.5256,0.8258,0.6696,0.4594,0.5016,0.5076,0.4504,0.4054,0.2942,0.2432,0.2252,0.1832,0.1716,0.9108,0.8118,0.7162,0.5478,0.0562,-0.1782,-0.1948,-0.3234,-0.3664,-0.3598,-0.5808,-0.6766,-0.4258,-0.4786,-0.4654,-0.3664,-0.1618,0.0298,0.2674,0.5874,1,0.9604,0.8416,0.792,0.802,0.6172,0.396,0.2278,0.2476,0.1056,0.2244,-0.6842,-0.0526,0.2106,0.579,0.6316,0.3158,0.2106,-0.0526,0.1052,-0.0526,0.0526,-0.1578,-0.2106,0.0526,0.2106,0.1052,0.2106,0.6316,0.6842,1,0.6316,0.7894,0.4736,0.7368,0.7368,1,0.7368,0.6842,0.579,0.3684,0.579,0.6842,-0.356,0.1186,0.2542,0.661,0.661,0.5594,0.4576,0.322,0.2542,0.1186,0.0508,0.2204,0.1526,0.2882,0.322,0.5254,0.5932,0.7288,0.8644,1,0.8644,0.8306,0.695,0.8306,0.8984,1,0.7288,0.7966,0.7288,0.7628,0.661,0.7288,-0.225,0.275,0.95,1,0.175,-0.125,0.05,-0.3,-0.4,-0.275,-0.375,-0.375,-0.375,-0.325,-0.275,-0.25,-0.25,-0.15,0.2,0.4,0.625,0.825,0.8,0.75,0.65,0.5,0.8,0.725,0.55,0.35,0.35,0.45,-1,-1,-1,-1,-1,-1,-1,-0.985,-0.9836,-0.9894,-0.9662,0.5638,0.5128,0.4778,0.4464,0.5888,0.5668,0.649,0.619,0.4682,0.0018,-0.2298,-0.7834,-0.9266,-0.929,-0.9384,-0.9618,-0.963,-0.9246,-0.8838,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9924,-0.9914,-0.9914,-0.9536,0.4794,0.2072,0.137,0.108,-0.0778,-0.2542,-0.3462,-0.4826,-0.5424,-0.6528,-0.7456,-0.9126,-0.952,-0.9504,-0.959,-0.9686,-0.9772,-0.9714,-0.9642,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9058,-0.9,-0.8334,-0.1734,-0.34,-0.392,-0.611,-0.5564,-0.6964,-0.6438,-0.68,-0.782,-0.8256,-0.811,-0.8074,-0.2968,-0.0534,-0.1268,-0.1,-0.3168,-0.31,-0.84,-0.8668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.1142,-0.6858,1,1,1,-0.9142,-0.9714,-1,-0.7714,-0.9428,-0.8286,-0.7142,-0.8572,-0.6572,-0.1428,0,-0.6,-0.7714,-0.6286,-0.1428,-0.1714,-0.5428,-0.8858,-1,-1,-1,1,1,1,1,0.9964,0.9828,0.9568,0.9116,0.8146,0.4728,0.6196,0.6182,0.6306,0.639,0.6336,0.6584,0.7032,0.7428,0.8336,0.943,-0.6266,0.2824,-0.9786,-0.6954,0.697,0.8878,0.6318,1,-0.1064,0.2766,0.4042,0.929,0.5886,0.4752,0.532,0.8724,0.7446,1,0.9148,0.2056,0.3758,0.5886,0.3618,0.3334,0.3334,0.532,-0.1632,0.0496,0.2624,0.3192,0.3618,0.8866,0.7304,0.3758,0.4184,0.1914,-0.0638,0.1774,0.1064,-0.6312,0.0404,0.029,0.2948,0.5492,0.5838,0.5028,0.3988,0.607,0.6648,0.8266,0.9076,0.6994,1,0.896,0.7688,0.7342,0.7456,0.422,0.5144,0.5838,0.8728,0.3872,0.3526,0.63,0.6184,0.6184,0.5492,0.5838,0.1908,0.0636,-0.133,-0.5606,-0.2686,-0.291,-0.1194,0.194,0.1268,0.0522,0.2762,-0.0074,0.3508,0.9402,0.8358,0.903,0.9776,0.8284,0.7986,0.8732,0.888,0.985,1,0.9776,0.8432,0.7762,0.4402,0.8208,0.8284,0.5374,0.4328,0.4254,0.291,0.2164,-0.2538,-0.5896,-0.9968,1,-1,-1,-1,-1,-1,-1,-1,-0.3198,0.1836,0.0748,0.238,0.0748,-0.0884,-0.0068,0.3062,0.4694,0.5782,0.5238,0.551,1,0.8232,0.238,0.3198,0.3742,0.7006,0.7688,0.619,0.6326,0.7414,0.4966,0.5238,0.1292,0.1428,-0.1564,-0.0612,-0.0204,-0.0612,0.2244,0.0884,'1'
-0.1696,0.4344,0.4248,0.7472,0.6944,0.7376,0.6486,0.4056,0.302,0.3262,0.2082,0.2924,0.172,0.3694,0.355,0.5476,0.6052,0.822,0.9398,1,0.8508,0.7978,0.7304,0.8098,0.8364,0.858,0.6028,0.5956,0.497,0.5018,0.5066,0.5354,-0.1498,0.387,0.3526,0.5116,0.4102,0.53,0.387,0.242,0.0806,0.1844,0.0024,0.1382,0.1498,0.258,0.212,0.2926,0.5968,0.6612,0.954,1,0.6728,0.689,0.606,0.6036,0.4954,0.4448,0.4838,0.4102,0.3802,0.3456,0.4216,0.3572,-0.1436,0.3964,0.3718,0.676,0.551,0.3914,0.1976,0.1436,0.0332,0.1264,0.0528,0.1068,0.1068,0.1288,0.2246,0.2122,0.4774,0.4332,0.757,0.8258,1,0.8602,0.6466,0.5926,0.6908,0.5828,0.6638,0.4528,0.4576,0.4944,0.519,0.5068,-0.0782,0.5072,0.7566,1,0.7652,0.3102,0.0028,0.0608,-0.0754,-0.0898,-0.0144,-0.1014,-0.2028,-0.2376,-0.0464,-0.0174,0.0956,0.3478,0.3972,0.8812,0.8666,0.9044,0.8028,0.7856,0.6348,0.7392,0.658,0.7768,0.5392,0.5914,0.545,0.5276,-0.0632,0.5288,0.7586,1,0.7386,-0.1954,-0.3794,-0.3304,-0.477,-0.4972,-0.385,-0.5058,-0.6696,-0.6436,-0.4828,-0.6868,-0.6236,-0.1294,-0.115,0.3276,0.4856,0.8736,0.7126,0.4282,0.523,0.6408,0.5058,0.5488,0.3936,0.3564,0.362,0.2528,0.1092,0.785,0.6484,0.8532,0.4914,-0.3344,-0.3618,-0.3516,-0.7098,-0.8806,-0.7134,-0.9146,-0.9488,-0.7236,-0.6894,-0.3516,-0.4096,-0.2526,-0.3378,-0.0854,0.669,0.8054,0.9762,1,0.983,0.9044,0.7236,0.5564,0.2354,-0.0308,0.0238,0.3412,0.0916,1,0.9282,0.7774,0.6194,-0.2244,-0.343,-0.246,-0.4902,-0.4794,-0.5764,-0.6552,-0.6518,-0.6624,-0.5692,-0.447,-0.562,-0.2998,-0.1096,0.1634,0.605,0.7846,0.7918,0.8492,0.7092,0.7954,0.4184,0.3034,0.1418,0.0378,-0.0448,-0.131,-0.2758,0.2758,0.2758,0.6896,0.7586,0.5172,0.5862,0.3104,0.3104,0.2414,0.2414,0.2068,0.2414,0.3794,0.4482,0.5518,0.6552,0.8966,1,0.7242,0.8276,0.6206,0.8276,0.5862,0.862,0.7242,0.6896,0.5862,0.4482,0.4482,0.6896,0.6206,-0.3076,0.2692,0.3462,0.6924,0.7308,0.577,0.5384,0.2692,0.2308,0.1924,0.1538,0.1154,0.1538,0.3462,0.3076,0.4616,0.6154,0.9616,1,0.7692,0.7692,0.7308,0.7308,0.8462,0.8462,0.6924,0.6154,0.4616,0.5,0.5,0.5,0.5384,-0.122,0.4634,0.7804,1,0.7318,0.2196,-0.1464,-0.1464,-0.3658,-0.3658,-0.2196,-0.3414,-0.5122,-0.317,-0.1708,-0.317,-0.244,0.1708,0.1708,0.6342,0.5122,0.8536,0.7074,0.7318,0.6586,0.7318,0.6586,0.7074,0.561,0.5122,0.3658,0.2682,-1,-1,-1,-1,-1,-1,-1,-0.988,-0.9872,-0.99,-0.5168,0.6024,0.398,0.5324,0.717,0.9052,0.9364,0.8918,0.4228,-0.1072,-0.3004,-0.4418,-0.4538,-0.8082,-0.913,-0.9144,-0.8784,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9848,-0.9808,-0.9762,-0.2952,0.9012,0.7172,0.7884,0.6312,0.648,0.4812,0.2838,-0.0668,-0.3644,-0.5368,-0.6324,-0.6292,-0.8288,-0.874,-0.8992,-0.8978,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.8534,-0.76,-0.2068,-0.524,-0.566,-0.482,-0.486,-0.564,-0.702,-0.8,-0.8164,-0.871,-0.8238,-0.8274,-0.7834,-0.2634,0.0166,-0.13,-0.5068,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,-0.3714,1,1,1,-0.7714,-0.9142,-0.9714,-0.7714,-0.5142,-0.4286,-0.8572,-0.6286,-0.7142,-0.7428,-0.6286,-0.3714,-0.6858,-0.6286,-0.5142,-1,-1,-1,-1,-1,-1,0.8964,0.892,0.883,0.8782,0.8634,0.8534,0.8318,0.7966,0.7182,0.309,0.3906,0.4036,0.4288,0.4144,0.39,0.3576,0.3184,0.3264,0.476,0.7162,-0.7334,0.2352,-0.4098,0.9084,0.9716,0.897,0.6756,1,-0.1836,0.1836,0.347,0,0.0204,-0.0408,0.2654,0.4082,0.6938,0.8776,0.6734,0.7346,0.796,0.8368,0.6938,0.6734,0.5918,0.7756,0.8572,0.9184,1,0.8368,0.6326,0.5714,0.449,0.4082,0.3266,0.3062,0.1836,-0.2858,-0.4082,-0.6122,-0.037,0.3704,0.6666,0.2408,0.0186,0.0186,0.037,0.1482,0.7222,0.9814,0.6112,0.6296,0.963,0.7408,0.426,0.537,0.574,0.8518,0.8334,0.8334,0.9444,1,0.6852,0.7408,0.7408,0.4814,0.2592,0.3888,0.5556,0.2038,-0.1112,-0.1852,0.28,0.6686,0.8172,0.7372,0.3372,0.2228,0.44,0.4286,0.92,0.9772,1,0.8172,0.8628,0.8058,0.7372,0.7258,0.68,0.8972,0.8286,0.92,0.9314,0.8972,0.76,0.7142,0.7142,0.2686,0.2686,0.0972,0.2914,0.0628,-0.1542,-0.3142,1,-1,-1,1,-1,-1,-0.2,-0.7666,-1,0.0294,0,0.0294,0.4558,0.4558,0.1618,0.4118,0.353,0.4706,0.5148,0.7942,0.853,0.897,0.7206,0.7352,0.4118,0.6324,0.8676,1,0.8824,0.7942,0.9264,0.9264,0.5882,0.5882,0.4264,0.5294,0.25,0.103,0.3382,0.3236,0.1324,'1'
0.0466,1,0.9362,0.7788,0.6168,0.032,-0.2138,-0.2776,-0.6412,-0.371,-0.5282,-0.4104,-0.5184,-0.4692,-0.2728,-0.145,-0.1254,0.1302,0.7346,0.656,0.9606,0.9606,0.7396,0.6068,0.6708,0.538,0.6756,0.5724,0.4988,0.317,0.2384,0.548,0.0852,0.779,0.69,0.628,0.3954,-0.062,-0.2984,-0.2094,-0.3992,-0.3838,-0.3954,-0.4728,-0.5232,-0.6706,-0.3644,-0.2868,-0.0968,0.2364,0.3682,0.9148,0.9844,0.7636,0.721,0.4652,0.3566,0.5466,0.7054,1,0.8024,0.7906,0.469,0.5582,-0.0456,0.5474,0.4386,0.3684,0.1264,-0.1824,-0.3754,-0.3264,-0.4736,-0.5122,-0.4632,-0.5754,-0.5368,-0.4878,-0.3264,-0.2702,-0.2176,0.1052,0.0912,0.4982,0.6492,1,0.835,0.3334,0.3052,0.428,0.4596,0.4912,0.8736,0.828,0.5018,0.386,-0.0884,0.4558,0.3622,0.3256,0.0684,-0.2454,-0.369,-0.3722,-0.546,-0.626,-0.4358,-0.6094,-0.5792,-0.3656,-0.2888,-0.2922,-0.2922,-0.0418,-0.0518,0.2854,0.8196,1,0.6994,0.5692,0.4224,0.4156,0.429,0.4558,0.7496,0.576,0.5226,0.3722,-0.029,0.5746,0.4582,0.411,0.1418,-0.2072,-0.5528,-0.531,-0.5164,-0.5854,-0.4546,-0.611,-0.5672,-0.3418,-0.2364,-0.3382,-0.309,-0.0764,-0.1382,0.2254,0.7782,1,0.7272,0.6582,0.4764,0.52,0.5528,0.4946,0.8764,0.7346,0.3272,0.371,0.119,0.8016,0.7024,0.5834,0.3254,-0.1388,-0.4722,-0.4326,-0.4366,-0.4802,-0.4206,-0.5358,-0.4166,-0.6032,-0.3572,-0.3928,-0.2976,-0.1944,-0.1904,0.3612,0.4126,0.9048,0.7222,0.7064,0.5596,0.7262,0.9404,1,0.8412,0.8452,0.5754,0.4604,0.1938,1,0.9064,0.568,0.3808,-0.51,-0.7372,-0.7328,-0.862,-0.7996,-0.7906,-0.7862,-0.6838,-0.7728,-0.7328,-0.8352,-0.7818,-0.6036,-0.3364,-0.1224,0.0868,0.7104,0.8752,0.706,0.5456,0.6258,0.706,0.7818,0.657,0.519,0.0734,0.0512,0.1352,0.8918,0.7838,0.8378,0.5136,0.2432,0.2432,-0.081,-0.2432,0.027,-0.027,-0.1892,-0.081,-0.2972,-0.1352,0.2972,0.1892,0.8378,0.946,0.8378,0.7838,0.8378,1,0.8918,0.7838,0.6756,0.4054,0.2972,0.3514,0.3514,0.2432,0.5676,0.1428,0.9428,0.8286,0.8858,0.7142,0.0858,-0.0858,-0.2,-0.4286,-0.2572,-0.3714,-0.3142,-0.2,-0.1428,-0.0858,-0.0286,0.0858,0.2,0.6,0.7714,0.8858,0.9428,0.6572,0.6,0.9428,1,0.4858,0.4858,0.8286,0.6572,0.5428,0.3714,-0.0786,0.4606,0.3932,0.3258,0.0786,-0.1236,-0.2808,-0.2584,-0.4832,-0.573,-0.3708,-0.573,-0.4832,-0.3258,-0.2134,-0.236,-0.236,-0.0338,-0.0112,0.3258,0.7528,1,0.8202,0.3258,0.3708,0.4382,0.3484,0.3932,0.7978,0.7528,0.4158,0.2808,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.1542,0.7378,0.5772,0.474,0.3556,0.2158,0.1328,0.0866,0.009,-0.0646,-0.0966,-0.199,-0.8548,-0.9572,-0.9666,-0.9538,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.0556,0.8292,0.8052,0.876,0.8366,0.7178,0.7428,0.622,0.4086,0.203,-0.0434,-0.2074,-0.8164,-0.8642,-0.8946,-0.9042,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8168,-0.8526,-0.905,-0.8578,-0.8268,-0.8068,-0.6978,-0.78,-0.8424,-0.8668,-0.9224,-0.909,-0.3434,-0.11,-0.2368,-0.2368,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,-0.6572,-0.6286,-1,-0.8858,-1,-1,-1,-0.8286,-0.2,-0.1142,-0.3714,-0.8286,-0.7142,-0.7142,-1,-1,-1,-1,-1,-1,-1,-0.0552,-0.0406,-0.0544,-0.056,-0.0518,-0.0312,-0.032,-0.0548,-0.0508,-0.1974,0.6764,0.6808,0.7148,0.6882,0.7082,0.7214,0.7458,0.7878,0.796,0.8958,-0.72,0.0236,0.3116,0.9362,0.7322,0.8552,0.7472,1,0.1282,0.077,0.282,0.4872,0.3846,0.2308,0.8974,0.8974,0.3334,0.8462,1,0.7948,0.9488,0.9488,0.6924,0.7436,0.8974,0.9488,0.8974,0.9488,0.9488,0.7948,0.7948,0.7948,0.7948,0.7948,0.7948,0.6924,0.5898,0.4872,0.282,-0.1282,0.2844,0.4128,0.3762,0.2478,0.1376,0.4496,0.7798,0.9816,1,0.8716,0.8348,0.8716,0.6698,0.6514,0.3212,0.6146,0.6146,0.7064,0.523,0.6698,0.5046,0.3028,0.3578,0.4312,0.4496,0.4862,0.523,0.3944,0.3212,0.2844,0.3394,0.101,0.6974,1,0.5294,0.3278,0.0924,-0.0588,0.1428,0.3278,0.6638,1,0.832,0.8656,0.7648,0.3278,0.3446,0.5798,0.6638,0.6302,0.6302,0.3782,0.1428,0.3446,0.2436,0.1764,0.1428,0.0252,0.0924,0.0588,0.1092,-0.0924,0.0084,-0.126,1,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.233,0.0226,-0.0978,-0.0978,-0.2932,-0.2932,-0.3534,-0.0676,0.0526,0.2482,0.7294,0.7894,0.9098,1,0.5188,0.233,0.4436,0.7142,0.8646,0.6692,0.639,0.594,0.4136,0.579,0.3534,0.1578,-0.4436,-0.2632,-0.2632,-0.1578,-0.218,-0.4136,'2'
-0.23,0.5432,0.54,0.5208,0.4728,0.0256,-0.0096,-0.3258,-0.3514,-0.2236,-0.246,-0.3418,-0.3482,-0.0608,-0.0894,0.0798,0.0288,0.3514,0.3194,1,0.984,0.476,0.4664,0.6774,0.6838,0.5654,0.5336,0.5048,0.5016,0.2204,0.3322,0.5718,-0.0302,0.5558,0.527,0.5006,0.4114,0.0198,-0.1064,-0.1826,-0.3298,-0.1274,-0.293,-0.2326,-0.2536,-0.0986,-0.2352,-0.088,0.0932,0.2142,0.4876,0.5926,0.9316,1,0.6058,0.5978,0.6872,0.7372,0.858,0.8844,0.6926,0.7056,0.6058,0.6006,-0.1362,0.403,0.3342,0.3646,0.205,-0.1966,-0.3398,-0.227,-0.3756,-0.3232,-0.2764,-0.2874,-0.205,-0.26,-0.0702,-0.1856,0.0234,0.1142,0.2902,0.6258,0.7496,0.879,0.9284,0.6782,0.6808,0.857,0.8156,1,0.912,0.7386,0.5928,0.7138,-0.1764,0.3314,0.2412,0.2722,0.0606,-0.2384,-0.3766,-0.3512,-0.4274,-0.481,-0.3118,-0.4358,-0.3624,-0.3174,-0.2046,-0.1538,-0.1086,0.086,0.0692,0.4724,0.7066,1,0.8392,0.5796,0.605,0.67,0.8534,0.8562,0.7968,0.7264,0.6502,0.5402,-0.062,0.531,0.4172,0.5104,0.2172,-0.2034,-0.2794,-0.2724,-0.4206,-0.5138,-0.3448,-0.5414,-0.4172,-0.3172,-0.2414,-0.2414,-0.2586,-0.0276,0.0518,0.3104,0.8482,1,0.8344,0.8794,0.8068,0.7586,0.969,0.8242,0.9138,0.6034,0.6758,0.8034,-0.0674,0.5286,0.404,0.532,0.2424,-0.1548,-0.3232,-0.2996,-0.357,-0.441,-0.4612,-0.6026,-0.4344,-0.394,-0.303,-0.3974,-0.3974,-0.2054,-0.2222,0.074,0.6228,0.808,0.862,0.9124,0.8586,0.835,1,0.8822,0.6262,0.4512,0.4344,0.3738,0.0236,0.7206,0.6514,0.5698,0.3594,-0.3282,-0.3658,-0.1868,-0.5008,-0.6138,-0.5448,-0.482,-0.5134,-0.4694,-0.4788,-0.5918,-0.4474,-0.416,-0.234,0.1366,0.4506,0.9592,1,0.6546,0.7112,0.8304,0.7394,0.4788,0.347,0.1554,0.1586,0.2496,-0.76,0.76,0.84,0.6,0.68,-0.12,-0.12,-0.44,-0.68,-0.84,-0.68,-0.68,-0.44,-0.2,0.12,0.28,-0.04,0.36,0.44,1,0.68,0.12,0.2,0.84,0.92,-0.04,0.12,0.12,-0.2,-0.04,0.44,0.12,-0.1428,0.6666,0.619,0.6666,0.6666,0.2858,0.1428,-0.1428,-0.238,0,-0.0952,0,-0.0952,0.1904,0.1428,0.381,0.3334,0.5238,0.4762,1,1,0.5714,0.5714,0.9524,0.9048,0.7142,0.5238,0.762,0.6666,0.4286,0.4762,0.9048,-0.1954,0.3334,0.2184,0.3104,0.0574,-0.2874,-0.4252,-0.4482,-0.5172,-0.5862,-0.4022,-0.5172,-0.4482,-0.3104,-0.2184,-0.1954,-0.1954,0.0114,0.1954,0.3564,0.839,1,0.6322,0.6552,0.7012,0.6782,0.839,0.7472,0.908,0.7472,0.6552,0.6782,-1,-1,-1,-1,-0.9774,-0.9876,-0.9728,-0.8356,-0.771,-0.9018,-0.3642,0.8138,0.6758,0.633,0.4858,0.2886,0.122,-0.044,-0.136,-0.2872,-0.3892,-0.4086,-0.6618,-0.8684,-0.9298,-0.9346,-0.9354,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9778,-0.9814,-0.9774,-0.9146,-0.8844,-0.947,-0.5308,0.2962,0.5244,0.5758,0.8362,0.8538,0.5958,0.1008,-0.1534,-0.3476,-0.5068,-0.6284,-0.7836,-0.891,-0.9056,-0.9188,-0.9234,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8268,-0.9734,-0.69,-0.8534,-0.89,-0.89,-0.6568,-0.5978,-0.6224,-0.5846,-0.5046,-0.474,-0.408,-0.476,-0.642,-0.646,-0.728,-0.898,-0.91,-0.44,-0.17,-0.1334,-0.45,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,-1,-0.7428,-0.7428,-0.9142,1,1,1,-0.6572,-0.8572,-0.7428,-0.9428,-0.7142,-0.6286,-0.9714,-0.8,-0.5142,-0.2858,-0.4286,-0.6,-0.6572,-0.8286,0.1714,-1,-1,-1,-1,-1,-1,0.2486,0.2406,0.2354,0.2336,0.2456,0.2436,0.2248,0.1924,0.1632,0.0552,0.5324,0.5642,0.5682,0.5908,0.6164,0.7008,0.7762,0.8316,0.914,1,-0.7334,0.1294,-0.535,0.146,0.344,0.2778,0.4564,1,-0.0244,-0.122,0.2196,0.561,0.561,0.5122,0.9512,0.9024,0.6586,0.756,0.7074,0.7074,0.756,0.756,0.561,0.8536,0.9024,0.756,0.7074,0.9024,0.9024,0.9024,1,1,0.8536,0.9024,1,0.9512,0.8536,0.8536,0.6098,0.0244,0.3626,0.1648,0.077,0.2308,0.099,-0.033,0.912,1,0.7142,0.4946,0.4286,0.6924,0.6704,0.3846,0.3406,0.8682,0.8022,0.5604,0.5164,0.6704,0.6264,0.4506,0.6264,0.6044,0.3626,0.5384,0.6044,0.5604,0.5604,0.6044,0.3846,0.099,0.6582,1,0.7436,0.453,0.3334,0.3504,0.4018,0.5726,0.7264,0.7778,0.8974,0.9146,0.9146,0.7436,0.5898,0.7606,0.9658,0.8974,0.8462,0.7606,0.5898,0.4188,0.3676,0.47,0.5214,0.2136,0.282,-0.0256,0.094,0.1282,-0.1794,-0.1966,0.251,-1,-1,1,-1,-0.4,-0.6,-0.8334,-1,-0.2836,-0.1492,0.1792,-0.0746,-0.1194,-0.1044,-0.0298,-0.0746,0.1194,0.597,0.612,0.6866,1,0.7314,0.2388,0.2388,0.612,0.9402,0.8956,0.6716,0.8956,0.5374,0.582,0.6418,0.4926,0.2836,0,-0.1344,-0.1044,0.1792,0.209,-0.194,'2'
-0.265,0.66,0.685,0.455,0.4,-0.1,-0.105,-0.28,-0.425,-0.355,-0.365,-0.47,-0.49,-0.15,-0.23,0.025,0.14,0.67,0.835,0.965,1,0.62,0.68,0.765,0.93,0.615,0.375,0.26,0.2,0.17,-0.02,0.23,-0.0018,0.6102,0.5774,0.5082,0.4244,0.0528,-0.0602,-0.1584,-0.3006,-0.133,-0.297,-0.286,-0.3224,-0.1074,-0.1184,0.0602,0.0966,0.286,0.49,0.7122,0.9562,1,0.7668,0.8214,0.8434,0.898,0.6394,0.4826,0.3078,0.348,0.286,0.3006,0.123,0.8256,0.7718,0.6108,0.463,-0.123,-0.3468,-0.1992,-0.463,-0.387,-0.5034,-0.396,-0.2394,-0.1588,-0.038,-0.0068,0.123,0.123,0.4586,0.4362,1,0.9464,0.8926,0.7808,0.8882,0.7494,0.7762,0.5838,0.5346,0.2484,0.4318,0.4004,0.1244,0.8454,0.7682,0.5322,0.3734,-0.1546,-0.3906,-0.3606,-0.5278,-0.3906,-0.4936,-0.4334,-0.2404,-0.2104,-0.2532,-0.279,-0.1072,-0.1932,0.1846,0.3648,0.7424,0.691,1,0.7554,0.7682,0.7124,0.8584,0.631,0.6996,0.4592,0.5064,0.5408,0.2134,0.973,0.8966,0.5596,0.3842,-0.2044,-0.4562,-0.5102,-0.4696,-0.2988,-0.5416,-0.4426,-0.2808,-0.272,-0.5192,-0.5146,-0.0292,-0.0966,0.182,0.2988,0.7168,0.672,1,0.7798,0.7932,0.5236,0.6944,0.6314,0.7708,0.3708,0.4292,0.5776,0.1884,0.9424,0.8848,0.5522,0.419,-0.4456,-0.561,-0.4102,-0.5476,-0.4412,-0.5964,-0.5432,-0.5742,-0.4502,-0.4856,-0.428,-0.2416,-0.2106,0.0732,0.0732,0.4546,0.6586,1,0.898,0.5964,0.5566,0.6586,0.4368,0.4014,0.286,0.3126,0.2106,0.1662,1,0.9866,0.2728,0.1884,-0.3924,-0.4722,-0.2372,-0.286,-0.6098,-0.6586,-0.6054,-0.5698,-0.6496,-0.765,-0.694,-0.725,-0.623,-0.2106,-0.082,0.2682,0.4678,0.4502,0.4988,0.4412,0.5788,0.5566,0.3792,0.1662,-0.0554,-0.0954,-0.1486,-0.6774,0.6774,0.871,0.613,-0.2904,-0.2904,-0.5484,-0.5484,-0.4838,-0.6774,-0.2258,-0.613,-0.3548,-0.2258,-0.2904,-0.2904,0.0322,0.871,1,0.8064,0.613,0.4194,0.2904,-0.0968,0.4838,0.0968,0.0968,0.0968,0.2258,0.2258,0.0322,0.1612,-0.0566,0.5094,0.434,0.585,0.3584,0.0188,-0.2076,0.0566,-0.132,-0.2076,-0.3208,-0.4716,-0.132,0.0188,0.0944,0.2076,0.5094,0.5472,0.9622,1,0.585,0.585,0.6982,0.6982,0.8868,0.7736,0.132,0.0566,0.283,0.132,0.0566,0.0188,0.0632,0.7974,0.7216,0.5696,0.3924,-0.2152,-0.367,-0.1898,-0.4684,-0.4936,-0.595,-0.4684,-0.2912,-0.1898,-0.0886,-0.0126,0.0886,0.0886,0.4178,0.4178,1,0.9746,0.8734,0.7468,0.8482,0.7216,0.7216,0.4936,0.443,0.2406,0.3924,0.2912,-0.919,-0.8096,-0.8158,-0.8602,-0.9324,-0.9164,-0.9412,-0.9074,-0.757,-0.481,-0.5016,0.7516,0.6618,0.376,0.3708,0.3806,0.3698,0.336,0.2336,0.1588,0.344,0.094,-0.8282,-0.8826,-0.886,-0.8736,-0.6724,-0.6948,-0.6778,-0.7108,-0.7998,-0.7526,-0.7838,-0.9138,-0.7346,-0.0836,0.1108,0.3032,0.7804,0.5506,0.4582,0.898,0.4378,0.3526,0.6218,0.8968,0.7032,0.5438,0.4468,0.428,0.267,0.1372,-0.0214,0.0594,-0.1662,-0.8118,-0.8612,-0.8714,-0.883,-0.7538,-0.7666,-0.7616,-0.7864,-0.848,-0.8196,-0.842,-0.83,-0.4968,0.9432,1,1,1,1,1,1,0.9866,0.76,-0.5058,-0.66,-0.443,-0.7058,-0.763,-0.803,-0.7686,-0.8076,-0.775,-0.8126,-0.855,-0.4,-0.2934,-0.5968,-0.8234,-0.94,-0.92,-0.8868,-0.9334,-0.9068,-0.96,-0.9368,1,1,1,0.3428,-0.7714,-0.8572,-0.8858,-0.8286,-0.1714,-0.2,1,1,-0.2,-0.8,-0.8,-0.8,-1,-1,-1,-0.8,-0.4572,0,-0.4858,0.0286,0.3142,-0.3428,-0.7714,-0.9714,-1,-1,-1,-1,-1,0.0986,0.1082,0.111,0.1208,0.1438,0.1592,0.1576,0.1264,0.044,-0.1792,0.4022,0.4456,0.4626,0.4884,0.5096,0.5772,0.6408,0.6842,0.7974,0.8702,-0.7734,-0.1648,0.3738,0.1022,0.7634,0.8806,0.8974,-0.2666,-0.71,-0.7276,-0.6898,-0.599,-0.6444,-0.5814,-0.6066,-0.4376,-0.256,-0.1324,-0.1022,-0.0618,0.0592,0.1072,-0.0038,0.1828,0.2484,0.3418,0.594,0.6216,0.7906,0.7554,0.9092,0.8512,0.8184,0.9042,0.9646,0.9268,1,0.6444,0.551,0.1526,-0.892,-0.826,-0.664,-0.54,-0.516,-0.584,-0.47,-0.462,-0.188,-0.18,-0.218,-0.122,-0.004,-0.1,-0.072,0.072,0.238,0.358,0.476,0.556,0.628,0.76,0.816,0.858,0.858,0.982,0.932,0.98,1,0.958,0.814,0.558,-0.6478,-0.8046,-0.8938,-0.7442,-0.7804,-0.7346,-0.7466,-0.6646,-0.1628,-0.1026,-0.3148,-0.2038,0.1508,-0.0446,-0.023,-0.0518,0.035,0.1798,0.2472,0.3776,0.4596,0.708,0.8624,0.8238,0.6646,0.836,0.8866,0.9782,1,0.8842,0.766,0.5512,-0.247,-1,1,-1,-1,-1,-0.6,0.9334,-1,0.037,0.4444,0.0186,0.3334,0.2408,-0.0926,-0.2222,0.0926,0.0926,0.463,0.8704,0.9074,1,0.8888,0.6482,0.3334,0.426,0.6296,0.8704,0.7222,0.7408,0.463,0.8148,0.8518,0.1852,0.463,0.3334,-0.2592,-0.2038,-0.4074,-0.1666,-0.6482,'3'
-0.1382,0.6772,0.7172,0.4876,0.4708,0.0216,0.0716,-0.1282,-0.0916,-0.2246,-0.1846,-0.1614,-0.1248,0.0016,0.1048,0.2812,0.5008,0.9634,1,0.8536,0.8836,0.777,0.99,0.8968,0.757,0.5308,0.3744,0.3344,0.3544,0.3144,0.3578,0.3778,0.074,0.7984,0.7796,0.4834,0.4204,-0.0048,-0.0866,-0.3386,-0.4646,-0.2252,-0.3228,-0.3574,-0.3826,-0.0488,-0.1496,0.0708,0.033,0.4236,0.4614,0.874,0.9434,1,0.9024,0.7448,0.7418,0.7732,0.6756,0.43,0.3606,0.326,0.2944,0.4174,0.1022,0.7886,0.7436,0.3344,0.2098,-0.2132,-0.4038,-0.442,-0.4904,-0.286,-0.5944,-0.4696,-0.3622,-0.2686,-0.2998,-0.2236,0.0156,0.0502,0.4108,0.428,1,0.9758,0.6568,0.5736,0.5216,0.4454,0.6916,0.5736,0.2548,0.2062,0.376,0.2306,0.1346,0.8546,0.7672,0.4364,0.24,-0.3054,-0.6182,-0.509,-0.5854,-0.5236,-0.5746,-0.5272,-0.48,-0.5346,-0.4546,-0.52,-0.1782,-0.1636,0.1128,0.5164,0.691,0.8872,1,0.52,0.5636,0.6328,0.5818,0.6618,0.5746,0.4218,0.2946,0.4582,0.0792,0.8,0.7018,0.5056,0.268,-0.3208,-0.649,-0.5208,-0.7208,-0.6944,-0.4982,-0.5396,-0.6868,-0.6754,-0.517,-0.3698,-0.1736,-0.132,-0.0038,0.517,0.5736,1,0.966,0.4868,0.385,0.3358,0.434,0.7094,0.4076,0.1584,0.3924,0.4754,0.0878,0.7762,0.704,0.587,0.3976,-0.2702,-0.463,-0.3116,-0.666,-0.58,-0.5044,-0.4698,-0.6006,-0.6696,-0.2152,-0.315,-0.2634,-0.0808,0.1876,0.4664,0.6524,0.8692,1,0.4974,0.4596,0.6868,0.6936,0.4114,0.3632,0.1944,0.0878,0.4148,0.108,1,0.939,0.1568,0.1324,-0.5438,-0.4094,-0.3116,-0.495,-0.6822,-0.6578,-0.5072,-0.5724,-0.6496,-0.4624,-0.499,-0.328,-0.3524,-0.116,0.0958,0.5356,0.6294,0.6496,0.5764,0.6456,0.6782,0.5682,0.1406,0.1284,-0.0794,-0.059,-0.0224,-0.5428,0.3142,0.4286,0.0858,-0.0858,-0.5428,-0.2,-0.2572,-0.6,-0.6,-0.3142,-0.3714,-0.2572,-0.4858,-0.2,-0.3142,0.7142,1,0.9428,0.5428,0.0858,0.3142,0.3714,0.4858,0.0286,0.1428,0.4286,0.4286,0.0286,-0.2,-0.1428,-0.2572,-0.3334,0.5,0.5834,0.375,0.2916,-0.0834,-0.125,-0.1666,-0.1666,-0.2916,-0.4584,-0.2084,-0.1666,-0.0416,0.125,0.2916,0.4584,0.9584,1,0.7916,0.5834,0.625,0.9166,0.9166,0.5416,0.2916,0.0834,0.1666,0.1666,0.0834,0.1666,0.2916,0.1826,0.7392,0.7044,0.426,0.3914,0.0956,-0.0086,-0.374,-0.374,-0.026,-0.0956,-0.287,-0.2,0.0608,-0.0782,0.0086,0.1304,0.3392,0.4434,0.6,0.8608,1,0.826,0.5652,0.6348,0.774,0.5826,0.4608,0.1826,0.3044,0.2696,0.3566,-0.9506,-0.9202,-0.9026,-0.9424,-0.9578,-0.9648,-0.96,-0.9506,-0.9178,-0.9026,-0.9048,0.7464,0.6618,0.7534,0.6042,0.3752,0.131,-0.0182,-0.03,-0.03,-0.0146,-0.2014,-0.7358,-0.8544,-0.9484,-0.9554,-1,-1,-1,-1,-1,-1,-1,-0.9058,-0.7036,-0.2614,0.0412,0.0554,8e-04,0.1958,0.2908,1,0.5966,0.2504,0.7084,0.8692,0.6624,0.4018,0.198,0.0198,-0.0784,-0.0856,-0.0832,-0.1244,-0.3684,-0.752,-0.8232,-0.8756,-0.8676,-1,-1,-1,-1,-1,-1,-1,-0.5,0.4266,1,1,1,1,1,1,1,1,1,-0.4178,-0.6178,-0.86,-0.8112,-0.829,-0.8002,-0.809,-0.8378,-0.8,-0.788,-0.846,-0.7368,-0.3934,-0.0134,-0.2334,-1,-1,-1,-1,-1,-1,-1,1,1,1,-0.2,-0.8286,-0.8572,-0.7714,-0.8,-0.5428,-0.5714,1,1,-0.4572,-0.6,-0.8286,-0.9428,-0.8858,-1,-0.9714,-1,-0.4572,0.5428,-0.7428,-0.7142,-0.8,-0.9142,-1,-1,-1,-1,-1,-1,-1,0.269,0.27,0.2774,0.257,0.2428,0.2106,0.1634,0.086,-0.086,-0.2088,0.1606,0.2076,0.2324,0.2816,0.3514,0.4104,0.4778,0.5422,0.67,0.714,-0.7466,0.0824,0.2362,-0.0982,0.8154,0.996,0.8424,0.1,-0.814,-0.8114,-0.5606,-0.3046,-0.3936,-0.3774,-0.1564,0.0674,0.4366,0.248,0.3342,0.4878,0.5256,0.4312,0.2292,0.2696,0.3882,0.5984,0.628,0.6874,0.7952,1,0.938,0.9326,0.9596,0.9622,0.9596,0.8706,0.7386,0.682,0.4366,0.1266,-0.8884,-0.7854,-0.5062,-0.3526,-0.335,-0.2828,-0.288,-0.206,-0.0698,-0.0908,-0.0366,0.0802,0.1274,0.2898,0.288,0.3036,0.3438,0.4154,0.5044,0.651,0.7294,0.7854,0.8534,0.8848,0.8638,0.883,0.9128,1,0.9564,0.8692,0.8936,0.7486,-0.854,-0.715,-0.5816,-0.3652,-0.3886,-0.3508,-0.3346,-0.1668,0.192,0.1578,0.0568,0.2426,0.2192,0.2372,0.2894,0.2606,0.3886,0.4878,0.533,0.513,0.6664,0.8432,0.8504,0.7854,0.9206,0.9676,0.8936,1,0.9622,0.8594,0.8432,0.6466,-0.7226,-1,1,-1,-1,-1,0,1,-1,-0.1642,0.0598,0.2388,0.2986,0.2238,0.194,0.2686,0.791,0.8806,0.7314,0.0896,0.1344,0.7314,0.6866,0.4328,0.2238,0.9702,0.8656,0.6866,0.8656,0.8508,0.9552,1,0.8656,0.6418,0.4926,0.3284,0,0.1194,0.0746,-0.3732,-0.6268,'3'
0.058,0.8356,0.7644,0.5814,0.3758,-0.1102,-0.4468,-0.3234,-0.4468,-0.4318,-0.3496,-0.387,-0.5102,-0.413,-0.185,-0.1552,0.0056,0.1402,0.3384,0.8504,1,0.6486,0.514,0.387,0.4616,0.7682,0.7682,0.3832,0.2448,0.2524,0.1402,0.2112,0.0968,0.7886,0.6882,0.6594,0.4266,-0.0968,-0.38,-0.276,-0.3584,-0.337,-0.344,-0.405,-0.3836,-0.5126,-0.2796,-0.2508,-0.025,0.2258,0.3406,0.7598,0.8028,1,0.9642,0.5268,0.4336,0.5054,0.6344,0.8638,0.5628,0.4588,0.2652,0.319,-0.0626,0.5204,0.4326,0.37,0.1474,-0.1756,-0.3888,-0.326,-0.417,-0.4358,-0.467,-0.558,-0.4576,-0.63,-0.5172,-0.4044,-0.2884,-0.0282,0.022,0.4012,0.5172,1,0.909,0.3448,0.2476,0.4294,0.4294,0.5548,0.254,0.3198,0.2288,0.185,0.0434,0.7028,0.5978,0.337,0.076,-0.1594,-0.3768,-0.337,-0.442,-0.4674,-0.6666,-0.808,-0.6812,-0.6124,-0.413,-0.4312,-0.3298,0.0978,0.1086,0.308,0.5724,1,0.8188,0.5616,0.3624,0.5362,0.7754,0.8478,0.5544,0.5182,0.6124,0.4892,0.2334,1,0.8458,0.5204,0.1734,-0.105,-0.332,-0.2976,-0.5118,-0.6188,-0.726,-0.8586,-0.8672,-0.5032,-0.3832,-0.3962,-0.4048,-0.1092,-0.1906,0.1606,0.4218,0.6616,0.6788,0.7816,0.5718,0.5974,0.5204,0.5846,0.8716,0.6146,0.6874,0.4476,0.2314,1,0.8678,0.3678,0.0578,-0.1942,-0.5578,-0.5082,-0.814,-0.8388,-0.7934,-0.9298,-0.8306,-0.9546,-0.905,-0.5786,-0.5124,-0.781,-0.7604,-0.3264,0.3058,0.7562,0.6322,0.3554,0.2066,0.4132,0.5,0.6034,0.7148,0.5868,0.5042,0.3472,0.168,1,0.9292,0.168,0.0858,-0.5448,-0.4926,-0.3432,-0.7798,-0.832,-0.6754,-0.541,-0.6418,-0.638,-0.6642,-0.653,-0.5634,-0.6194,-0.7798,-0.4814,0.0448,0.3844,0.3732,0.2762,0.168,0.3208,0.6642,0.6754,0.3432,0.1306,0.1268,-0.0112,-0.091,0.7272,0.8182,0.2728,0.1818,-0.1818,-0.3636,-0.6818,-0.2728,-0.2272,-0.1818,-0.1818,-0.6364,-0.3636,-0.409,0.091,0.2272,0.1818,-0.0454,0.7272,0.7728,0.2728,0.5,0.3636,0.7728,1,0.9546,0.2728,0.3182,0.2728,0.1818,0.3636,0.0304,0.7576,0.6364,0.6364,0.394,-0.0304,-0.2728,-0.2728,-0.3334,-0.2728,-0.394,-0.2728,-0.394,-0.1516,-0.091,-0.091,-0.091,-0.3334,0.2122,0.5152,0.5758,0.5758,-0.1516,0.2122,0.8788,1,0.8182,0.2122,0.0304,0.091,-0.2728,-0.0304,0.2132,1,0.8032,0.541,0.2132,-0.1476,-0.1804,-0.1148,-0.4426,-0.5082,-0.7704,-0.7378,-0.6722,-0.3114,-0.2132,-0.4098,-0.4098,0.0492,-0.0492,0.2786,0.541,0.836,0.6066,0.8032,0.705,0.6722,0.705,0.541,0.9016,0.7704,0.7704,0.5738,-1,-1,-1,-1,-1,-1,-1,-0.973,-0.9752,-0.6942,-0.4718,0.607,0.9482,0.9836,0.9048,0.7188,0.533,0.3706,0.227,0.1318,0.1248,0.0636,-0.7036,-0.9282,-0.9012,-0.8718,-0.8624,-0.78,-0.8458,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9576,-0.9584,1,1,0.601,0.7776,0.8838,0.916,0.9718,0.663,0.2852,0.0502,-0.0778,-0.0982,-0.2106,-0.6984,-0.8202,-0.8422,-0.8428,-0.861,-0.8256,-0.8728,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9068,-0.98,0.19,0.96,-0.7178,-0.889,-0.849,-0.8778,-0.816,-0.79,-0.828,-0.808,-0.7984,-0.8568,-0.9068,-0.6208,-0.0042,-0.1308,-0.5642,-0.7642,-0.9308,-0.8542,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,1,-0.6858,-0.8286,-1,-1,-1,-0.8572,-0.9428,-0.8858,-0.4858,-0.3142,-0.6858,-0.7142,-0.5428,0,0.0572,-0.7142,-0.6572,-1,-1,-1,-1,-0.1252,-0.1192,-0.1048,-0.113,-0.1132,-0.1152,-0.1182,-0.1054,-0.0986,-0.2538,0.7878,0.782,0.7416,0.7036,0.695,0.7074,0.716,0.7996,0.8426,0.8664,-0.72,0.1294,1,0.4502,0.3708,0.8342,0.8642,1,-0.6804,-0.3492,-0.077,0.1242,0.0532,0.065,0.1716,0.148,0.065,0.29,0.3492,0.1124,-0.0178,0.2072,0.3492,0.1006,0.1124,0.4674,0.6094,0.6804,0.9644,1,0.9172,0.5976,0.7396,0.716,0.6332,0.6686,0.3728,0.2782,0.2662,-0.136,-0.8144,-0.367,-0.3924,-0.3756,-0.443,-0.4262,-0.4852,-0.5106,-0.2996,0.2574,0.0718,-0.0802,0.1054,0.1476,0.173,0.097,0.3248,0.2658,0.6372,0.7552,0.8734,1,0.9324,1,0.9916,0.8902,0.8734,0.654,0.654,0.367,0.2996,0.0126,-0.1644,0.014,-0.4554,-0.5492,-0.493,-0.4366,-0.493,-0.3428,-0.0704,0.2206,0.1924,0.277,0.446,0.4272,0.0328,0.3896,0.3802,0.493,0.5586,0.8968,0.9062,1,0.8686,0.784,0.8968,0.615,0.5492,0.4836,0.2018,0.399,0.2488,0.0798,1,-1,-1,1,-1,-1,-0.6,-0.6334,-1,-0.5488,-0.3384,-0.0526,-0.1278,-0.2932,-0.173,-0.2482,-0.3834,-0.0076,0.0978,0.2932,0.639,0.7894,1,0.4888,0.3984,0.0978,0.4736,0.7142,0.8196,0.7744,0.4286,0.2782,0.3234,-0.0226,-0.0978,-0.2932,-0.2632,-0.3534,-0.3534,-0.0076,-0.4136,'4'
-0.127,0.4364,0.3388,0.5342,0.3094,-0.0162,-0.1628,-0.1074,-0.2476,-0.2768,-0.2378,-0.329,-0.2866,-0.202,-0.039,0.0358,0.114,0.4268,0.4756,1,0.9576,0.6938,0.5928,0.583,0.6058,0.7492,0.645,0.7394,0.3844,0.4072,0.316,0.29,-0.1172,0.4136,0.3062,0.456,0.1758,-0.0618,-0.1922,-0.2052,-0.3224,-0.4234,-0.3224,-0.5408,-0.4136,-0.2378,-0.189,-0.0032,-0.0488,0.2248,0.2964,0.5504,0.8664,1,0.7036,0.6548,0.482,0.4756,0.7068,0.697,0.7296,0.5766,0.5472,0.4854,-0.0944,0.4332,0.3298,0.5152,0.1158,-0.1088,-0.2086,-0.2762,-0.3832,-0.4546,-0.319,-0.476,-0.4688,-0.2584,-0.3262,-0.0196,-0.009,0.1158,0.4118,0.4154,0.8788,0.7754,1,0.7754,0.5366,0.6328,0.6614,0.9894,0.893,0.8146,0.6186,0.7112,-0.1224,0.415,0.2824,0.4558,0.051,-0.1632,-0.3164,-0.4252,-0.5238,-0.6292,-0.517,-0.6122,-0.6122,-0.3708,-0.3504,-0.136,-0.0816,0.0136,0.2346,0.2074,0.6258,0.7414,0.9422,0.6326,0.4388,0.534,0.5034,0.83,0.8198,1,0.6768,0.7312,-0.0708,0.4888,0.3402,0.4784,0.064,-0.2436,-0.354,-0.43,-0.589,-0.6132,-0.4888,-0.5268,-0.506,-0.4024,-0.437,-0.1744,-0.278,-0.1434,0.0086,0.0224,0.4438,0.6442,0.9274,0.6892,0.4818,0.5474,0.5474,0.8412,0.7616,1,0.7582,0.627,0.0694,0.7936,0.6378,0.6042,0.1622,-0.2926,-0.3474,-0.3348,-0.8568,-0.8106,-0.6042,-0.7178,-0.8316,-0.5706,-0.6464,-0.5326,-0.6168,-0.4526,-0.499,-0.2548,0.3978,0.6168,1,0.8526,0.381,0.5578,0.6378,0.8948,0.8778,0.5368,0.4442,0.3348,0.1554,1,0.8782,0.0084,-0.3194,-0.5294,-0.6008,-0.4874,-0.5924,-0.6932,-0.6932,-0.5042,-0.668,-0.5966,-0.4958,-0.5084,-0.4664,-0.3908,-0.3026,0.0042,0.1218,0.4202,0.853,0.8404,0.6176,0.6848,0.811,0.7058,0.395,0.269,0.1176,-0.063,0.0222,0.6,0.5112,0.6888,0.4222,0.2,0.0222,0.1556,-0.1556,-0.3334,0.0666,-0.0666,-0.0666,0.0222,0.2444,-0.0666,0.2444,0.6,0.7334,1,1,0.8222,0.6888,0.7778,0.8222,1,0.7334,0.6,0.5112,0.5112,0.3778,0.4666,-0.1836,0.347,0.2654,0.4286,0.1836,0.0204,-0.3062,-0.2244,-0.2244,-0.2244,-0.2244,-0.3062,-0.2654,-0.2244,-0.0612,0.0612,0.1428,0.4694,0.551,1,0.9592,0.4694,0.4286,0.4694,0.3878,0.5918,0.4286,0.5102,0.1428,0.2244,0.1428,0.1428,0.1646,0.6962,0.519,0.6708,0.2658,-0.0886,0.0886,0.0886,-0.595,-0.6202,-0.595,-0.4178,-0.3418,-0.2406,-0.2658,-0.0632,-0.1392,-0.0632,-0.0886,-0.0126,0.519,0.4684,0.9494,0.7468,0.5444,0.7468,0.7216,1,0.8228,0.9494,0.6456,0.6708,-1,-1,-1,-1,-1,-0.7992,-0.8708,-0.9472,-0.9202,-0.711,-0.2248,0.7298,0.9072,0.6888,0.5032,0.374,0.2484,0.1568,0.0488,-0.1392,-0.1802,-0.239,-0.5972,-0.8392,-0.9448,-0.9412,-0.9308,-0.8486,-0.8098,-0.8462,-0.7346,-0.7768,-1,-1,-1,-1,-1,-1,-0.887,-0.9228,-0.9626,-0.5692,1,0.9608,0.6532,0.8662,0.8266,0.6542,0.469,0.2716,0.1468,0.0092,-0.2834,-0.51,-0.5384,-0.7354,-0.8652,-0.9016,-0.9132,-0.8988,-0.8932,-0.8898,-0.9104,-0.8602,-0.8814,-1,-1,-1,-1,-1,-1,-0.9658,-0.9568,-0.9134,-0.8634,0.8532,0.8066,-0.409,-0.74,-0.5756,-0.569,-0.5334,-0.5468,-0.7712,-0.7446,-0.8,-0.858,-0.816,-0.7468,-0.4434,0.0766,-0.0768,-0.3668,-0.7468,-0.74,-0.9234,-0.9734,-0.8734,-1,-1,-1,-1,-1,-1,-0.5142,-0.8858,-0.1714,1,1,1,1,-0.8286,-0.9142,-1,-1,-1,-1,-0.8858,-0.2858,-0.4286,-0.3714,-0.7714,-0.5428,-0.6,-0.4286,-0.4286,-0.6572,-0.7428,-0.9142,-1,-0.7428,-1,0.2748,0.271,0.269,0.27,0.2724,0.2666,0.239,0.2226,0.1628,-0.067,0.6996,0.7118,0.7102,0.747,0.771,0.7708,0.7782,0.8066,0.8384,0.9006,-0.6934,0.0824,0.9452,0.3472,0.6068,0.8332,0.9284,1,-0.6586,-0.1952,0.0162,0.252,0.1788,0.1544,0.065,0.0406,0.0732,0.374,0.309,0.2114,0.13,0.122,0.2196,0.3252,0.4472,0.317,0.5448,0.496,0.7968,0.9594,0.9186,0.9594,0.878,0.87,1,0.9186,0.7318,0.756,0.3334,0.0326,-0.9122,-0.7808,-0.7368,-0.5176,-0.5878,-0.5176,-0.5526,-0.5264,-0.2894,0.0438,-0.1492,-0.079,0.2106,0.2018,-0.1316,-0.0176,0.2456,0.4824,0.4912,0.7544,0.921,0.9298,0.8772,0.8772,0.965,1,0.8508,0.7456,0.7018,0.7018,0.3596,0.0702,0.0192,0.1878,-0.0344,-0.3716,-0.3794,-0.3946,-0.272,-0.1112,-0.157,0.3794,0.2796,0.341,0.5708,0.525,0.2644,0.341,0.41,0.4942,0.6476,0.8084,0.931,1,1,0.977,0.9386,0.816,0.7932,0.6704,0.6476,0.6476,0.387,0.249,1,-1,-1,1,-0.4,-0.2,-0.4,-0.5666,-1,-0.6694,-0.438,-0.157,0.1736,0.1074,-0.2232,-0.2892,0.1404,0.19,0.2066,0.2892,0.2892,0.6694,0.405,0.1074,0.0082,0.091,0.8678,0.9338,0.7686,0.9338,1,0.6034,0.6034,0.3388,0.157,0.0082,-0.157,-0.0578,-0.124,-0.091,-0.5372,'4'
0.0496,0.7914,0.7682,0.4802,0.3378,-0.1292,-0.308,-0.2218,-0.457,-0.341,-0.4272,-0.3742,-0.3378,-0.3014,-0.159,-0.1954,0.053,0.0298,0.3576,0.639,1,0.9504,0.5828,0.4006,0.437,0.5,0.5332,0.7748,0.8146,0.9072,0.8708,0.8112,0.1878,0.9184,0.7796,0.4816,0.1224,-0.196,-0.4654,-0.498,-0.604,-0.7102,-0.747,-0.9388,-0.8694,-0.4408,-0.3674,-0.3878,-0.298,0.0326,-0.0326,0.249,0.8408,1,0.6204,0.3428,0.098,0.2326,0.3836,0.498,0.6734,0.7592,0.653,0.4204,0.2018,0.9238,0.7174,0.6234,0.0896,-0.2512,-0.4618,-0.574,-0.5606,-0.7174,-0.5336,-0.7848,-0.7578,-0.6636,-0.6996,-0.3452,-0.2466,-0.0718,0.2152,0.26,1,0.879,0.5964,0.2332,0.314,0.1794,0.148,0.6054,0.5382,0.7354,0.6098,0.74,0.227,0.8528,0.6688,0.6646,0.0634,-0.0756,-0.3866,-0.6156,-0.497,-0.6932,-0.6646,-0.955,-0.7424,-0.5256,-0.4152,-0.3292,-0.182,-0.2638,0.1534,0.2842,0.497,0.9754,1,0.1166,0.0184,0.272,0.4396,0.5052,0.7178,0.681,0.7996,0.5746,0.1706,0.7248,0.531,0.6008,0.0156,-0.0348,-0.3876,-0.5968,-0.4728,-0.748,-0.7674,-0.8294,-0.69,-0.6782,-0.4768,-0.4806,-0.2984,-0.4574,-0.2984,0.155,0.5038,1,0.8566,-0.0272,0.1744,0.2054,0.2714,0.4806,0.69,0.6782,0.6976,0.6472,0.3642,0.9916,0.8106,0.8822,0.259,-0.0106,-0.2968,-0.4232,-0.5578,-0.4526,-0.4274,-0.8022,-0.8948,-0.7264,-0.8484,-0.701,-0.3894,-0.4358,-0.1074,0.2252,0.3978,1,0.9874,0.2968,0.2084,0.4652,0.541,0.5958,0.9242,0.8064,0.6548,0.541,0.2466,1,0.8106,0.5154,0.185,-0.207,-0.4096,-0.3788,-0.6256,-0.7444,-0.9118,-0.8326,-0.9208,-0.7974,-0.7312,-0.6168,-0.4978,-0.4626,-0.423,-0.348,-0.0572,0.4758,0.608,0.467,0.2466,0.5286,0.5242,0.4978,0.3656,0.1894,0.0704,0.0264,-0.5882,0.647,0.7648,0.5294,0.1176,-0.2352,-0.2942,-0.2942,-0.5294,-0.4706,-0.7648,-0.5294,-0.647,-0.353,-0.2352,-0.2942,-0.0588,0.1764,0.353,0.4118,0.7058,0.7648,0.647,0.5882,0.647,0.7058,0.7648,1,0.9412,0.9412,1,1,0.0588,0.7254,0.6862,0.5294,0.4118,0.098,0.0196,-0.0196,-0.1764,-0.0588,-0.1764,-0.098,-0.1764,0.0196,-0.0588,0.1372,0.098,0.3334,0.2942,0.7254,0.7648,0.9608,0.7254,0.6078,0.4902,0.6862,0.6862,0.8824,0.804,1,0.8432,0.8824,0.2054,0.7534,0.5342,0.589,0.1232,-0.041,-0.2602,-0.3698,-0.2328,-0.4794,-0.726,-0.6164,-0.5342,-0.4246,-0.2602,-0.2054,-0.2328,-0.2602,-0.2876,0.178,0.3972,1,0.8356,0.0684,0.3424,0.3972,0.1232,0.5616,0.8356,0.8356,0.3972,0.726,-1,-1,-1,-1,-1,-1,-0.9728,-0.9804,-0.9784,-0.9794,-0.9296,0.7354,0.923,0.7462,0.6118,0.538,0.3732,0.1898,0.0738,0.0456,0.039,0.0358,-0.8428,-0.9274,-0.8992,-0.922,-0.8688,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.97,-0.971,-0.9738,-0.9672,-0.9076,0.635,0.4222,0.2328,0.171,0.1052,0.0262,-0.0144,-0.1772,-0.229,-0.3048,-0.381,-0.809,-0.8992,-0.8936,-0.8998,-0.9042,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9628,-0.9,-0.7334,-0.9,0.0132,-0.6224,-0.84,-0.7734,-0.7956,-0.8756,-0.878,-0.886,-0.92,-0.962,-0.958,-0.922,-0.3434,-0.26,-0.41,-0.45,-0.8534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4858,-0.8858,-0.7714,0.7142,1,1,-0.4858,-0.9142,-1,-0.9428,-1,-0.9428,-0.8858,-0.9428,-0.7428,-0.3714,-0.4858,-0.5714,-0.6572,-0.2572,0.4,-1,-1,-1,-1,-1,-1,-0.0092,-0.0242,-0.0424,-0.0706,-0.1058,-0.1368,-0.1598,-0.2666,-0.3552,-0.3708,0.8132,0.8004,0.7764,0.786,0.7466,0.7642,0.7064,0.6734,0.6908,0.6984,-0.6666,0.1176,-0.9232,-0.107,0.8842,0.6714,0.5984,1,0.2356,0.2,0.2,1,0.7778,0.5022,0.5912,0.7066,0.5644,0.5822,0.7156,0.6534,0.7244,0.8222,0.52,0.5022,0.4312,0.4756,0.2534,0.3512,0.5378,0.5288,0.6,0.4488,0.5378,0.5466,0.3066,0.3512,0.2,0.3422,0.0312,-0.2534,0.1738,0.3746,1,0.9614,0.6988,0.807,0.3822,0.807,0.7528,0.6988,0.5136,0.6526,0.7142,0.4286,0.5366,0.5598,0.305,0.6602,0.8764,0.7528,0.7838,0.8302,0.9074,0.946,0.7066,0.5752,0.5598,0.4826,0.4672,0.3976,0.0734,-0.081,-0.3092,-0.1588,-0.1476,0.0974,-0.0696,-0.2312,-0.0084,0.1086,-0.053,-0.0584,0.1476,0.287,0.1198,0.2034,0.5264,0.5376,0.3928,0.6992,0.9332,0.4262,0.6044,0.7716,0.9944,1,0.4818,0.2256,0.2758,0.1364,0.092,-0.181,-0.2256,-0.7214,-0.99,1,-1,-1,-1,-1,-0.8,-1,-1,-0.362,-0.0344,0.2068,0.2242,0.1896,-0.1034,0.138,-0.1206,0.2068,0.4656,0.6724,0.9138,0.7932,0.8794,0.7242,0.569,0.7068,0.8448,0.7242,0.6034,1,0.8276,0.7242,0.6206,0.5,0.0344,0.0172,-0.2932,-0.0518,-0.5344,-0.2068,-0.3448,'5'
-0.2478,0.3732,0.3702,0.2186,0.1312,-0.1662,-0.2594,-0.2478,-0.382,-0.2244,-0.3616,-0.3002,-0.3382,-0.169,-0.1866,-0.0788,-0.035,0.1078,0.3498,0.446,0.8192,0.9154,0.6998,0.5422,0.4898,0.5306,0.586,0.6968,0.9008,1,0.8862,0.8514,-0.0926,0.463,0.4366,0.3492,0.2646,-0.0952,-0.2196,-0.1428,-0.2962,-0.2248,-0.365,-0.1984,-0.299,-0.172,-0.082,0.0318,0.0556,0.1534,0.4286,0.5026,0.8704,0.9366,0.6984,0.7276,0.6006,0.6244,0.7222,0.7222,1,0.9948,0.9762,0.9366,-0.1088,0.4456,0.3876,0.3468,0.2018,-0.167,-0.3846,-0.251,-0.4282,-0.3584,-0.3236,-0.2918,-0.3556,-0.3556,-0.1292,-0.1756,-0.0044,-0.0508,0.2568,0.4194,0.6488,0.8316,0.9826,0.7358,0.5762,0.5558,0.614,0.8694,0.8868,1,0.9942,0.913,-0.0828,0.4834,0.3908,0.3344,0.1092,-0.1688,-0.3742,-0.3212,-0.51,-0.543,-0.4736,-0.5562,-0.5166,-0.4404,-0.2716,-0.1622,-0.0728,0.0728,0.0794,0.4868,0.5696,0.9966,0.861,0.596,0.4338,0.5762,0.596,0.6524,0.9736,0.9438,1,0.9106,-0.0388,0.5634,0.4578,0.25,0.0036,-0.236,-0.7676,-0.7536,-0.5246,-0.6056,-0.5036,-0.662,-0.4824,-0.4226,-0.2888,-0.2782,-0.2324,-0.1126,-0.155,0.236,0.433,0.6972,0.7218,0.8732,0.5422,0.6092,0.6408,0.6302,0.9402,0.8522,1,0.7992,0.0492,0.731,0.644,0.3826,0.159,-0.2348,-0.6098,-0.6628,-0.519,-0.4772,-0.5076,-0.5492,-0.4962,-0.591,-0.428,-0.5152,-0.3636,-0.144,-0.0038,0.3334,0.375,1,0.9772,0.8068,0.7196,0.7084,0.5872,0.784,0.8826,0.9204,0.6856,0.7728,-0.0796,0.7084,0.6554,0.2084,0.091,-0.4924,-0.3144,-0.2122,-0.5758,-0.5682,-0.5834,-0.5568,-0.5796,-0.591,-0.2878,-0.2766,-0.2008,-0.2084,-0.0076,-0.106,0.3258,0.6894,1,0.8902,0.5644,0.75,0.8144,0.731,0.6704,0.4584,0.4242,0.4356,0,0.9,1,0.55,0.2,0.2,0.15,0.2,-0.25,-0.2,-0.3,-0.25,-0.3,-0.35,-0.2,-0.1,-0.1,-0.05,0,0.15,0.55,0.55,0.5,0.3,0.35,0.35,0.55,0.55,0.55,0.9,0.7,0.3,-0.3114,0.1476,0.1148,0.1148,0.082,-0.1476,-0.246,-0.2786,-0.377,-0.2786,-0.3442,-0.2786,-0.246,-0.2132,-0.1476,-0.082,0.0492,0.0492,0.3442,0.4426,0.8032,0.8688,0.705,0.4098,0.4426,0.4754,0.6066,0.6394,0.9344,1,0.8688,0.8032,-0.1288,0.4258,0.3862,0.3466,0.208,-0.208,-0.3268,-0.2476,-0.3862,-0.3268,-0.3664,-0.2872,-0.4258,-0.3268,-0.109,-0.0496,-0.01,0.01,0.307,0.2872,0.7426,0.7426,0.8614,0.7822,0.6436,0.5446,0.6634,0.8218,1,0.7624,0.9802,0.8812,-1,-1,-1,-1,-1,-1,-1,-0.9804,-0.984,-0.9858,-0.9104,0.3788,0.7108,0.9814,0.9334,0.7188,0.4356,0.1818,0.0692,-0.0222,-0.0098,-0.4232,-0.7914,-0.8288,-0.8812,-0.9406,-0.9086,-0.9316,-0.9344,-0.9094,-0.8456,-0.8128,-1,-1,-1,-1,-1,-1,-1,-1,-0.9886,-0.9896,-0.9886,-0.9044,0.6766,0.4324,0.425,0.2202,0.1234,-0.152,-0.4044,-0.4594,-0.556,-0.6466,-0.7802,-0.8886,-0.8976,-0.9292,-0.9482,-0.9572,-0.9638,-0.9716,-0.9694,-0.9546,-0.9478,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.9268,-0.8134,-0.7368,-0.135,-0.07,-0.1446,-0.26,-0.2512,-0.5024,-0.5734,-0.649,-0.7178,-0.7178,-0.56,-0.34,-0.2934,-0.0734,0.3066,-0.4334,-0.4634,-0.7068,-0.73,-0.9368,-0.8868,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,-1,0.9428,1,1,-0.6286,-0.9428,-0.6858,-0.7142,-0.7428,-0.8572,-0.8286,-0.8858,-0.3142,-0.4,-0.5714,-0.8286,-0.4858,-0.3428,0.1142,-0.1714,-0.3428,-0.8,-0.9714,-0.6572,-1,0.1878,0.189,0.1904,0.1892,0.2024,0.2058,0.194,0.1822,0.151,-0.066,0.8886,0.8964,0.88,0.8824,0.886,0.8916,0.9344,0.9346,0.9448,0.9746,-0.7334,0.0236,-0.8946,-0.1716,1,0.7184,0.5036,1,-0.2142,-0.3062,-0.2448,1,0.7448,0.0816,0.5102,0.3776,0.2552,0.3062,0.2346,0.3062,0.5,0.3368,0.3164,0.1224,0.1428,0.0816,0.3674,0.398,0.204,0.2448,0.3164,0.4286,-0.051,-0.0102,0.1632,0.3062,0.0918,0.0102,0.0408,-0.3266,-0.0052,0.2592,0.3122,1,0.7354,0.8202,0.8836,0.619,0.6932,0.4814,0.5768,0.7038,0.5662,0.3862,0.5768,0.4498,0.3756,0.3544,0.1534,0.2486,0.5978,0.7142,0.1746,0.5026,0.3334,0.344,0.4074,0.418,0.0688,-0.1852,-0.0052,-0.4708,-0.2192,-0.1952,-0.02,1,0.753,0.4024,0.4662,0.1236,0.3546,0.498,0.6734,0.6574,0.6334,0.6494,0.737,0.737,0.8168,0.8566,0.8804,0.8248,0.8804,0.6494,0.5458,0.6654,0.4662,0.4662,0.4024,0.3148,0.267,-0.004,0.0756,-0.3068,-0.9974,1,-1,-1,-1,-1,-0.6,-1,-1,-0.305,-0.2056,0.0922,0.1774,0.2624,0.007,0.4042,0.4326,0.461,0.7446,0.617,0.688,0.8724,1,0.4752,0.6738,0.7588,0.8298,0.8156,0.7588,0.9716,0.6738,0.5178,0.7022,0.5602,0.305,0.1774,0.3192,-0.0638,0.0638,0.3192,0.1632,'5'
-0.301,0.199,0.213,0.551,0.537,0.7732,0.699,0.4444,0.324,0.287,0.1944,0.3334,0.3056,0.426,0.5694,0.7038,0.8842,1,0.75,0.625,0.6018,0.6666,0.7084,0.7732,0.6666,0.6944,0.4676,0.4398,0.4166,0.4212,0.3982,0.3982,-0.2714,0.1932,0.2568,0.5208,0.7458,0.9316,0.775,0.4866,0.2812,0.335,0.3154,0.3448,0.4474,0.4426,0.7164,0.6674,1,0.9266,0.7702,0.6578,0.643,0.6284,0.7604,0.7702,0.8582,0.5844,0.6284,0.4622,0.4718,0.4622,0.4376,0.5062,-0.2822,0.1738,0.237,0.4628,0.8104,0.9504,0.6976,0.5802,0.3408,0.3454,0.377,0.3138,0.386,0.4944,0.6434,0.8916,1,0.7698,0.8104,0.711,0.7066,0.8104,0.7698,0.9098,0.8104,0.6794,0.526,0.526,0.4628,0.517,0.5034,0.508,-0.3056,0.1222,0.1746,0.3538,0.6462,0.7554,0.5414,0.5896,0.3406,0.3232,0.3668,0.2838,0.4192,0.5546,0.6944,0.9432,1,0.6376,0.6812,0.6682,0.6332,0.7686,0.6724,0.8602,0.6944,0.5764,0.345,0.4236,0.3886,0.4018,0.4148,0.3756,-0.2744,0.1886,0.2936,0.475,0.7566,0.852,0.8472,0.8616,0.5514,0.5084,0.5608,0.5178,0.6802,0.9094,0.9952,0.9762,1,0.7518,0.7232,0.7136,0.6946,0.8998,0.8806,0.9762,0.704,0.6516,0.4702,0.4464,0.4702,0.3986,0.4844,0.4988,-0.2308,0.2588,0.2122,0.4638,0.7016,0.8322,0.7856,0.8462,0.5572,0.5524,0.6084,0.5758,0.7996,0.8834,1,0.7948,0.599,0.4918,0.5292,0.5104,0.5944,0.8554,0.7996,0.5432,0.3614,0.2028,0.0676,0.0256,0.0536,0.049,0.0582,0.2308,-0.016,0.7234,0.6784,0.3826,0.627,0.7428,0.91,1,0.7042,0.537,0.3504,0.5434,0.4726,0.6012,0.582,0.6398,0.3826,0.3118,0.254,0.3312,0.537,0.6528,0.672,0.344,0.0868,-0.0868,-0.1062,-0.1318,-0.119,-0.0226,0.0032,0.0354,-0.4036,0.1228,0.228,0.5088,0.4736,0.7192,0.6492,0.3684,0.3334,0.228,0.193,0.2982,0.2632,0.4386,0.4386,0.7544,0.6842,1,0.8948,0.579,0.5438,0.7192,0.6842,0.8246,0.7894,0.6842,0.614,0.4736,0.4736,0.4736,0.4386,0.4736,-0.3334,0.1666,0.2334,0.5,0.6,0.8,0.7,0.4,0.3334,0.2334,0.2,0.3,0.3,0.4,0.6,0.7,0.9334,1,0.7334,0.5334,0.5666,0.6,0.7,0.7334,0.6334,0.6666,0.4334,0.3666,0.3666,0.4,0.3334,0.3,-0.2858,0.1786,0.2142,0.4286,0.6428,0.75,0.8036,0.8214,0.5358,0.4642,0.5358,0.4822,0.6608,0.9464,1,0.6786,0.6428,0.6072,0.5536,0.5714,0.5892,0.7858,0.6608,0.7322,0.4108,0.4822,0.3036,0.2678,0.3214,0.2142,0.3572,0.375,-1,-1,-1,-1,-1,-1,-0.9904,-0.9908,-0.9926,-0.9946,-0.4616,0.1762,0.4192,0.8628,0.9634,0.6608,0.563,0.4678,0.368,0.3318,0.1294,-0.3114,-0.7438,-0.8968,-0.9144,-0.9214,-0.9418,-0.9348,-0.919,-0.9234,-0.931,-0.9464,-0.9068,-1,-1,-1,-1,-1,-1,-0.9936,-0.9934,-0.9892,-0.9876,-0.4298,0.301,0.4356,0.563,0.6554,0.6438,0.9346,0.7718,0.5816,0.3428,-0.053,-0.6606,-0.8462,-0.8892,-0.8372,-0.891,-0.9182,-0.9164,-0.9032,-0.892,-0.9136,-0.942,-0.9242,-1,-1,-1,-1,-1,-1,-0.9084,-0.9234,-0.8234,-0.74,-0.43,-0.36,-0.464,-0.668,-0.716,-0.616,-0.444,-0.504,-0.584,-0.692,-0.692,-0.82,-0.41,0.0766,0.6966,0.4566,0.32,0.35,0.3366,0.25,0.1532,-0.0534,-0.08,-1,-1,-1,-1,-1,-1,-0.2858,-0.8572,0,1,1,1,-0.7142,-0.9428,-0.8572,-0.8572,-0.8286,-0.6572,-0.1142,1,1,1,1,1,0.0572,-0.5142,-0.6858,-0.9428,-0.9142,-0.6858,-0.6572,-0.6858,-0.0858,1,1,1,1,1,1,1,1,1,1,0.0426,-2e-04,-2e-04,-0.0302,-0.0422,-0.0498,-0.0522,-0.039,-0.0702,-0.4384,-0.7334,-0.4824,-0.3024,0.2306,0.3586,0.437,0.4808,1,-0.0136,0.5616,0.6438,0.6164,0.5068,0.589,0.452,0.8082,0.863,1,0.8904,0.9452,0.8904,0.9178,0.7534,0.7808,0.8904,0.9178,0.9178,0.9178,0.9726,0.9452,0.9452,0.8904,0.863,0.7534,0.726,0.5342,0.3972,0.1506,0.0136,-0.041,0.1654,0.496,0.748,0.6692,0.4804,0.5118,0.5118,0.8426,0.937,1,0.937,1,0.9686,0.874,0.748,0.7322,0.811,0.9056,0.811,0.9212,0.9528,0.811,0.8898,0.8426,0.7796,0.685,0.5748,0.5276,0.3228,-0.1182,-0.2598,-0.4016,0.1094,0.4452,0.6642,0.6642,0.4598,0.3576,0.416,0.6204,1,0.9124,0.7518,0.854,0.8394,0.7664,0.5766,0.635,0.6058,0.7518,0.7372,0.7226,0.7518,0.7372,0.6496,0.7226,0.6934,0.489,0.4452,0.3722,0.1678,-0.2554,-0.5328,-0.7664,0.618,-1,-1,1,-1,-1,-0.8,-0.8334,-1,-0.6818,-0.5454,-0.303,-0.2122,-0.0304,-0.1364,0.1212,0.3484,0.3334,0.1818,0.4848,0.4848,0.4242,0.4696,0.3182,0.2878,0.4696,0.5758,0.6364,0.606,0.7424,0.4394,0.909,0.8484,0.9242,0.9546,1,0.9696,0.9546,0.7122,0.6212,0.303,'6'
-0.4354,0.3298,0.3878,0.62,0.884,0.9894,0.7572,0.599,0.2982,0.2612,0.1926,0.161,0.335,0.4406,0.5198,0.7098,0.9948,1,0.7626,0.5884,0.5726,0.7308,0.7836,0.8944,0.963,0.7256,0.6728,0.3192,0.4036,0.2824,0.335,0.3668,-0.242,0.3424,0.3196,0.5526,0.5342,0.9498,0.8996,0.5206,0.4384,0.443,0.3334,0.3882,0.379,0.5936,0.5662,0.8584,0.8768,1,0.9086,0.6986,0.7124,0.79,0.8538,0.9178,0.968,0.758,0.694,0.5022,0.557,0.4612,0.5708,0.6348,-0.2656,0.2188,0.1562,0.4024,0.6758,0.8594,0.7148,0.586,0.3398,0.4258,0.3438,0.3828,0.5118,0.5196,0.6836,0.75,1,0.918,0.6484,0.5196,0.586,0.625,0.7304,0.754,0.7578,0.5468,0.4844,0.2968,0.2578,0.3906,0.3594,0.4336,-0.2628,0.2016,0.165,0.393,0.6538,0.7882,0.6742,0.7596,0.5152,0.5316,0.5234,0.4826,0.67,0.6334,0.8534,0.8738,1,0.7148,0.6496,0.609,0.6374,0.7556,0.7434,0.837,0.7556,0.4746,0.3442,0.3156,0.275,0.389,0.3482,0.4012,-0.32,0.151,0.1468,0.3722,0.5574,0.6942,0.682,0.7746,0.5212,0.5452,0.5292,0.505,0.7666,0.7666,1,0.8592,0.6218,0.4486,0.489,0.4648,0.5412,0.7304,0.7586,0.5896,0.5654,0.2918,0.2354,0.1872,0.0824,0.2152,0.1872,0.3118,-0.1704,0.3588,0.287,0.5382,0.7086,0.879,0.8968,1,0.686,0.722,0.6636,0.6636,0.9418,0.9148,0.9552,0.8386,0.5068,0.3678,0.5112,0.4798,0.5784,0.8162,0.879,0.5022,0.4574,0.2242,0.1838,0.13,0.0494,0.1884,0.1704,0.3408,-0.2384,0.3864,0.3096,0.0794,0.2274,0.5836,0.8082,0.9232,0.7864,0.6164,0.4958,0.6494,0.748,0.8958,1,0.6548,0.4028,0.1342,0.211,0.2712,0.474,0.7206,0.715,0.5398,0.0302,0.052,-0.063,-0.074,-0.1946,-0.2164,-0.1014,-0.063,-0.4584,0.3334,0.3334,0.7084,1,1,0.7084,0.625,0.4584,0.375,0.1666,0.25,0.3334,0.375,0.4166,0.5416,0.9584,1,0.75,0.625,0.625,0.7916,0.6666,0.75,0.75,0.7916,0.7916,0.2916,0.2916,0.375,0.2916,0.4166,-0.125,0.2812,0.3124,0.625,0.9376,0.9688,0.7812,0.5624,0.3124,0.25,0.25,0.1562,0.375,0.4688,0.5312,0.7812,0.9688,1,0.8124,0.625,0.625,0.7188,0.75,0.8438,0.9376,0.75,0.5,0.2812,0.4376,0.2812,0.4062,0.4376,-0.2784,0.2578,0.299,0.4846,0.7114,0.8556,0.8762,0.9794,0.6908,0.6908,0.6288,0.6288,0.9588,0.897,1,0.8556,0.4846,0.402,0.4846,0.4846,0.5464,0.835,0.8556,0.402,0.464,0.1958,0.1958,0.031,-0.031,0.134,0.1752,0.3196,-1,-1,-1,-1,-1,-1,-0.9782,-0.981,-0.982,-0.982,-0.6844,0.3942,0.3052,0.656,0.9386,0.914,0.7278,0.6106,0.6096,0.5028,0.2146,-0.2656,-0.691,-0.8696,-0.8572,-0.9018,-0.9366,-0.8828,-0.8658,-0.896,-0.8914,-0.878,-0.9282,-1,-1,-1,-1,-1,-1,-0.9774,-0.9792,-0.951,-0.9452,-0.5726,-0.085,0.2154,0.8052,0.9712,0.9138,0.814,0.7538,0.8824,0.4426,0.1252,-0.4272,-0.7572,-0.8524,-0.8408,-0.8132,-0.824,-0.8402,-0.7764,-0.763,-0.7964,-0.8748,-0.9056,-1,-1,-1,-1,-1,-1,-0.7534,-0.8868,-0.7468,-0.6934,-0.5134,-0.648,-0.504,-0.504,-0.624,-0.528,-0.4934,-0.6034,-0.5768,-0.63,-0.5534,-0.57,-0.54,-0.07,0.18,0.3132,0.6,0.2566,0.1966,0.16,-0.17,-0.3934,-0.25,-1,-1,-1,-1,-1,-1,1,-0.7714,-0.4286,1,1,1,0.9428,0.3142,-0.6,-0.6286,-0.7714,-0.9142,-0.6286,-0.1714,0.1428,0.8286,0.3714,0.6286,-0.4858,-0.8572,-0.9714,-0.9428,-0.7142,-0.5428,0.8,0.7428,-0.4858,1,1,1,1,1,1,1,1,1,1,0.1448,0.1448,0.0994,0.0876,0.0712,0.1318,0.1126,0.0396,-0.1706,-0.5966,-0.7466,-0.4,-0.5102,-0.3512,0.058,0.1502,0.4488,1,-0.5576,-0.173,0.1538,0.173,0.0576,-0.0192,0.2116,0.5576,0.7116,0.6924,0.6538,0.7884,0.8076,0.6538,0.577,0.6346,0.827,0.9616,1,1,1,0.9616,0.8462,0.7116,0.577,0.5576,0.4038,0.1346,-0.0576,-0.0962,-0.4038,-0.8076,-0.2546,0,0.6,0.5636,0.3454,0.109,0.3454,0.6182,0.9636,0.7818,0.6728,0.9272,0.909,0.6,0.6,0.4364,0.7454,0.909,1,0.8728,0.9272,0.9272,0.8182,0.509,0.709,0.7818,0.3818,0.1636,0.0182,0.0182,-0.3454,-0.691,0.1214,0.6262,0.9814,0.7944,0.6822,0.4206,0.4018,0.5514,0.9066,0.7384,0.9066,0.9814,1,0.8318,0.6636,0.6074,0.7384,0.8318,0.9252,0.701,0.7196,0.7758,0.7944,0.6074,0.7944,0.7384,0.1214,0.0094,-0.0654,-0.1962,-0.6636,-0.6822,0.0378,-1,-1,1,-1,-1,-1,-0.8,-1,-0.812,-0.4188,-0.282,-0.3676,-0.0598,-0.1112,0.2478,0.7606,0.829,0.4872,0.3676,0.8632,0.7436,0.7778,0.8974,0.4018,0.6068,0.8974,0.9658,0.641,0.6752,1,0.7264,0.7606,0.7948,0.8974,0.7094,0.9146,0.7264,0.7094,0.624,0.2136,'6'
-0.0912,0.504,0.4336,0.5392,0.3696,-0.008,-0.2416,-0.1648,-0.2608,-0.2288,-0.2704,-0.3568,-0.12,-0.1744,-0.0112,0.1232,0.2352,0.5232,0.6224,1,0.984,0.7504,0.7056,0.824,0.8144,0.8112,0.6288,0.5648,0.6864,0.7408,0.8944,0.92,-0.1586,0.35,0.3532,0.5448,0.2778,-0.0832,-0.2842,-0.2842,-0.2778,-0.3846,-0.3186,-0.3344,-0.1994,-0.193,-0.1522,0.077,0.0298,0.2276,0.3878,0.617,0.8744,1,0.7048,0.7394,0.7488,0.7018,0.5164,0.3878,0.4756,0.4222,0.5228,0.7238,-0.2114,0.2914,0.1942,0.3486,0.1086,-0.2172,-0.4514,-0.4428,-0.3972,-0.4886,-0.4572,-0.5342,-0.3858,-0.4086,-0.34,-0.3228,-0.3372,0.0114,0.0714,0.3542,0.86,1,0.6372,0.42,0.6572,0.6286,0.4458,0.3314,0.4828,0.36,0.5114,0.5028,-0.1406,0.4006,0.3058,0.416,0.1712,-0.1284,-0.3792,-0.3608,-0.4496,-0.4802,-0.4128,-0.523,-0.3884,-0.3486,-0.2324,-0.2568,-0.214,0.0948,0.052,0.3516,0.7768,1,0.789,0.6208,0.8042,0.847,0.7676,0.7522,0.367,0.266,0.5474,0.37,-0.0566,0.5864,0.4894,0.4668,0.2634,-0.1212,-0.454,-0.4894,-0.4314,-0.4088,-0.4378,-0.4702,-0.4248,-0.441,-0.1954,-0.2794,-0.076,-0.0986,0.0048,0.567,0.6414,1,0.9838,0.7512,0.6834,0.7964,0.6542,0.4572,0.3862,0.5316,0.3958,0.5154,0.1022,0.9014,0.854,0.5438,0.416,-0.0986,-0.292,-0.5694,-0.4562,-0.2884,-0.562,-0.4636,-0.2846,-0.1752,-0.3942,-0.3614,-0.1606,-0.0876,0.1496,0.1824,0.7628,0.8796,0.7664,0.8212,1,0.9052,0.6824,0.5256,0.4598,0.3212,0.2956,0.4124,-0.2636,0.939,0.9652,-0.1286,-0.0152,-0.2114,-0.2114,-0.1896,-0.3552,-0.621,-0.5382,-0.4204,-0.4684,-0.3682,-0.2374,-0.1764,-0.281,-0.0894,0.268,0.3638,0.5904,1,0.9302,0.682,0.9826,0.8562,0.5382,0.0936,0.1722,0.159,-0.0762,0.0502,0.0312,0.5312,0.4688,0.2812,0.2188,0.0938,-0.125,-0.0624,-0.1876,-0.0624,-0.0938,-0.4062,0.0312,0.25,0.1562,0.4062,0.3124,0.625,0.7812,0.9062,0.8124,0.6562,0.7188,0.8438,1,0.9376,0.7188,0.6562,0.7188,0.8438,0.75,0.875,0.0182,0.5272,0.4546,0.6364,0.4546,0.1272,-0.0182,0.091,-0.0546,-0.0182,-0.091,-0.0546,0.0546,-0.0182,0.091,0.1636,0.3818,0.5636,0.8182,0.9636,1,0.7818,0.7818,0.891,0.8546,0.9636,0.7454,0.891,0.7454,0.7818,0.9272,0.9636,0.0426,0.6382,0.5744,0.4894,0.3192,-0.0426,-0.383,-0.4468,-0.2128,-0.1914,-0.2766,-0.1914,-0.1276,-0.1702,-0.1064,-0.1914,0.149,-0.0852,0.1064,0.617,0.7446,0.9362,1,0.6808,0.7022,0.8298,0.8298,0.6382,0.5958,0.5744,0.468,0.766,-1,-1,-1,-1,-0.9434,-0.9628,-0.9508,-0.9508,-0.9614,-0.9166,-0.2664,0.7514,0.9376,0.8184,0.6072,0.3958,0.2738,0.2306,0.1712,0.2008,0.3154,-0.4702,-0.7322,-0.9166,-0.9316,-0.8274,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9498,-0.9646,-0.6752,0.6362,1,1,1,0.763,0.8082,0.872,0.8584,0.4742,0.378,0.2308,0.0998,-0.1394,-0.2016,-0.6568,-0.8132,-0.9102,-0.9348,-0.891,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8244,-0.9134,-0.77,0.67,0.78,0.7466,0.53,-0.3334,-0.4512,-0.3268,-0.2556,-0.4624,-0.449,-0.6046,-0.536,-0.69,-0.826,-0.76,-0.74,-0.5068,-0.7934,-0.9434,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4286,0.3142,1,1,1,-0.0858,1,1,-0.1428,-0.6858,-0.8286,-0.9714,-0.9714,-0.8286,-0.7428,-0.6,-0.3428,-0.0858,0.0286,-0.1714,-0.6286,-0.8858,-1,-1,-1,-1,-1,-1,-1,0.2228,0.213,0.2146,0.2158,0.2192,0.2124,0.2036,0.1704,0.11,0.0036,0.5858,0.5674,0.5708,0.6068,0.6242,0.6584,0.6834,0.7702,0.868,0.8576,-0.7334,0.0942,0.8216,0.6454,0.6652,0.8966,0.8628,1,-0.7142,-0.6646,-0.4906,-0.3168,-0.3996,-0.321,-0.1636,-0.118,0.1098,0.2712,0.4038,0.5404,0.8136,0.851,1,0.9668,0.9378,0.7598,0.913,0.8758,0.822,0.8964,0.8344,0.7392,0.764,0.6688,0.6108,0.441,0.3292,0.205,0.0228,-0.2754,-0.7774,-0.6324,-0.5818,-0.484,-0.4638,-0.3018,-0.2176,-0.194,0.113,0.4132,0.339,0.5886,0.8112,0.8112,1,0.9932,0.9392,0.9056,0.909,0.9326,0.9426,0.892,0.892,0.8618,0.828,0.7268,0.6424,0.6864,0.565,0.2816,0.194,-0.0354,-0.5568,-0.3134,-0.4052,-0.4372,-0.469,-0.4492,-0.2894,-0.0538,0.1896,0.5728,0.521,0.6606,1,0.9082,0.7964,0.98,0.8484,0.952,0.9482,0.8882,0.9202,0.9042,0.7564,0.8044,0.8444,0.7366,0.545,0.4212,0.469,0.2256,0.05,-0.1218,0.9208,-1,-1,1,-0.8,-1,-1,-0.1,-1,-0.3694,-0.009,0.099,0.3694,0.3514,0.2972,0.91,1,0.7298,0.6396,0.4594,0.4054,0.5856,0.5676,0.6216,0.4774,0.2432,0.2792,0.2252,0.5496,0.946,0.6936,0.4774,0.5136,0.1532,0.1532,0.1352,0.2252,-0.099,-0.027,-0.045,-0.2612,'7'
-0.0746,0.7836,0.7426,0.6082,0.5186,-0.0262,-0.194,-0.3432,-0.556,-0.3544,-0.6828,-0.5858,-0.5708,-0.362,-0.2686,-0.1344,0.0522,0.1344,0.5858,0.6418,0.9626,1,0.7574,0.7762,0.9738,0.9814,0.7052,0.4626,0.3656,0.1902,0.6194,0.6082,-0.079,0.5058,0.4386,0.538,0.3772,-0.1112,-0.3684,-0.3334,-0.4474,-0.3802,-0.3508,-0.3392,-0.2106,-0.2486,-0.003,-0.0848,0.152,0.2486,0.4766,0.8274,1,0.8158,0.7924,0.7018,0.7398,0.4678,0.4182,0.3158,0.234,0.307,0.2632,0.4942,0.0438,0.6918,0.5972,0.7022,0.4466,-0.0438,-0.436,-0.373,-0.3416,-0.3696,-0.324,-0.45,-0.205,-0.282,-0.0612,-0.0052,0.1104,0.2294,0.2504,0.7688,0.7618,1,0.874,0.7092,0.6358,0.5796,0.6462,0.7338,0.4712,0.4992,0.6602,0.6078,-0.0602,0.5118,0.475,0.6656,0.2374,-0.1104,-0.321,-0.4214,-0.495,-0.5318,-0.408,-0.5352,-0.5284,-0.281,-0.3144,-0.0904,-0.0602,0.0502,0.321,0.4882,1,0.9432,0.7024,0.6454,0.7424,0.8128,0.7826,0.7926,0.6422,0.572,0.592,0.6856,-0.0958,0.4252,0.4958,0.6336,0.0722,-0.1394,-0.405,-0.59,-0.553,-0.5764,-0.6068,-0.5966,-0.59,-0.4218,-0.3882,-0.3714,-0.2134,-0.2034,0.005,0.442,0.5496,1,0.9294,0.61,0.5596,0.674,0.7984,0.7848,0.553,0.4824,0.4958,0.4992,0.0174,0.657,0.5762,0.7688,0.2024,-0.1252,-0.341,-0.5376,-0.6724,-0.7342,-0.7032,-0.6608,-0.7342,-0.7418,-0.5492,-0.4374,-0.4528,-0.4026,-0.0636,0.2138,0.6108,1,0.9692,0.4914,0.5722,0.6956,0.7804,0.7804,0.63,0.5838,0.472,0.445,0.2486,1,0.902,0.1216,-0.0744,-0.3866,-0.3176,-0.245,-0.695,-0.608,-0.6914,-0.6116,-0.7278,-0.9238,-0.8694,-0.7168,-0.6334,-0.648,-0.2994,-0.0598,0.481,0.6552,0.6552,0.3794,0.354,0.5136,0.4338,0.4846,0.383,0.2342,0.0418,0.1506,-0.3488,0.5814,0.5814,0.3024,0.3024,-0.2094,-0.0698,-0.3024,-0.2558,-0.2094,-0.5348,-0.8604,-0.628,-0.3488,0.1628,0.2558,0.3024,0.2094,0.3024,0.7674,0.814,0.628,0.5814,0.721,0.814,1,0.907,0.4884,0.4418,0.4884,0.8604,0.8604,-0.0858,0.7714,0.7142,0.6,0.4858,0.0858,-0.1428,-0.6,-0.3714,-0.3142,-0.4858,-0.4858,-0.9428,-0.7714,-0.7142,-0.3714,-0.0858,0.1428,0.4858,0.6,0.8286,0.7714,0.2572,0.5428,0.4858,1,0.7714,0.3142,0.4286,0.5428,0.4858,0.7142,-0.054,0.4864,0.5676,0.6756,0.054,-0.1082,-0.2702,-0.5136,-0.4324,-0.4324,-0.4594,-0.6216,-0.7838,-0.7568,-0.4054,-0.3514,-0.3244,-0.2702,0,0.3784,0.4324,1,0.946,0.5676,0.6756,0.7568,0.8918,0.8108,0.7568,0.5136,0.5676,0.7028,-1,-1,-0.9754,-0.981,-0.948,-0.9594,-0.9292,-0.9764,-0.9272,-0.7326,-0.3516,0.4432,0.9604,0.9518,0.777,0.535,0.3214,0.1248,-0.0738,-0.2438,-0.2022,-0.1748,-0.7184,-0.9158,-0.931,-0.9272,-0.879,-1,-1,-1,-1,-1,-1,-1,-1,-0.9494,-0.9732,-0.9476,-0.9696,-0.552,0.0734,0.489,1,0.7728,0.0442,0.638,0.708,0.327,0.3164,0.1764,-0.0254,-0.0794,-0.3442,-0.5438,-0.5574,-0.8212,-0.9334,-0.9494,-0.9506,-0.9326,-1,-1,-1,-1,-1,-1,-1,-1,-0.46,-0.8268,-0.8134,-0.72,-0.21,0.8632,0.7566,0.9266,0.45,-0.5534,-0.572,-0.68,-0.856,-0.69,-0.458,-0.598,-0.45,-0.734,-0.822,-0.848,-0.75,-0.39,-0.7568,-0.88,-0.9568,-1,-1,-1,-1,-1,-1,-1,-1,0.4,0.4858,-0.5428,1,1,1,1,-0.2,1,1,0.2,-0.8572,-0.8572,-0.9142,-0.9142,-0.9142,-0.9428,-0.2286,-0.3714,-0.4858,-0.0286,0.2,-0.2572,-1,-0.8286,-1,-1,-1,-1,-1,-1,-0.0308,-0.0244,-0.0158,0.012,0.0372,0.0506,0.0514,0.0244,-0.0052,-0.1266,0.8264,0.7896,0.805,0.8104,0.8086,0.79,0.75,0.7266,0.7902,0.8926,-0.68,0.1648,0.6926,-0.02,-0.0728,0.1768,0.2544,1,-0.8086,-0.6304,-0.387,-0.3522,-0.3826,-0.2478,-0.2392,-0.126,0.113,0.174,0.3,0.4086,0.526,0.513,0.7522,0.8,0.9,0.8304,0.9478,0.9348,1,0.8434,0.8522,0.9086,0.7696,0.8,0.7348,0.574,0.4566,0.4956,0.1608,0.0044,-0.928,-0.7046,-0.644,-0.6704,-0.6098,-0.5,-0.4394,-0.3522,-0.0416,0.3334,0.3446,0.481,0.6856,0.5834,0.8296,0.7766,0.9734,1,0.8372,0.8598,0.9318,0.8712,0.7804,0.8484,0.8372,0.8296,0.8446,0.9242,0.6932,0.6136,0.447,0.2424,-0.219,-0.1886,-0.3448,-0.36,-0.5466,-0.5848,-0.4324,-0.1466,0.0972,0.539,0.6038,0.5962,0.939,0.9276,0.4896,0.718,0.8362,1,0.798,0.9238,0.8628,0.8858,0.8058,0.6076,0.6914,0.6762,0.7066,0.6762,0.5734,0.5466,0.4858,0.1924,0.7238,-1,1,-1,-0.6,-1,-0.6,-0.0334,-1,-0.0556,0.1296,-0.074,0.4814,0.4074,0.0556,0.1666,0.1852,0.3888,0.5,0.6296,1,0.9444,0.6482,0.6852,0.3148,0.1852,0.6852,0.6852,0.8334,0.7408,0.2408,0.3704,0.3148,0.2592,0.0186,0.1482,0.0186,-0.1112,-0.2222,-0.0186,-0.2408,'7'
-0.2728,0.2636,0.4682,0.759,0.5864,0.7136,0.491,0.3818,0.2682,0.3228,0.2046,0.2228,0.3954,0.359,0.4364,0.409,0.6954,0.7546,0.9728,1,0.9864,0.8546,0.8318,0.8454,0.9318,0.8046,0.7,0.6772,0.7228,0.6546,0.6546,0.8272,-0.2154,0.3206,0.488,0.7368,0.5406,0.6698,0.3158,0.2106,0.287,0.2728,0.0862,0.024,0.22,0.0862,0.1578,0.244,0.3828,0.7608,0.8326,0.976,1,0.957,0.89,0.7416,0.7224,0.8996,0.689,0.6556,0.512,0.5838,0.6698,0.689,-0.2304,0.2488,0.6498,0.8202,0.5622,0.4194,0.1982,0.2028,0.152,0.0692,0.0322,-0.083,0.0692,0.0138,0.0968,0.2304,0.2258,0.5162,0.6082,0.9124,0.8894,1,0.8064,0.8756,0.894,0.8756,0.6912,0.5944,0.5714,0.4654,0.613,0.5806,-0.227,0.231,0.6196,0.775,0.5624,-0.0062,-0.0634,0.0062,-0.0756,-0.0798,-0.0798,-0.137,-0.0594,-0.1656,0.0266,0.0716,0.178,0.366,0.4192,0.7668,0.816,1,0.9142,0.8282,0.7874,0.7546,0.6564,0.64,0.546,0.5664,0.6156,0.6606,-0.2586,0.2424,0.1824,0.4188,0.2946,-0.1022,-0.2344,-0.1142,-0.2866,-0.2024,-0.2666,-0.2224,-0.1302,-0.1182,-0.01,-0.042,0.1142,0.0582,0.3828,0.547,0.7716,0.8558,1,0.7956,0.9038,0.6432,0.7274,0.5872,0.6232,0.5672,0.5712,0.6634,-0.2576,0.3922,0.369,0.2808,0.2204,-0.225,-0.3132,-0.3736,-0.4756,-0.369,-0.4478,-0.4756,-0.485,-0.2436,-0.2946,-0.1044,-0.0302,0.1322,0.2808,0.5778,0.8932,0.9954,1,0.9072,0.8886,0.7402,0.5314,0.4386,0.3458,0.2946,0.3736,0.4014,-0.3754,0.8142,0.8438,-0.0856,-0.3086,-0.5242,-0.078,-0.093,-0.5092,-0.7844,-0.658,-0.7844,-0.6208,-0.316,-0.1672,0.0186,0.2118,0.249,0.6728,0.7546,0.9554,0.6952,1,0.777,0.487,0.6432,0.3234,0.1672,0.1672,0.249,0.3828,0.3828,-0.451,0.0196,0.2942,0.4902,0.2942,0.4118,0.255,0.1764,-0.0196,0.0588,-0.0196,0.0196,0.1764,0.1764,0.255,0.255,0.5686,0.5294,1,0.9608,0.804,0.6078,0.7648,0.6078,0.804,0.5294,0.5294,0.4902,0.6078,0.451,0.4902,0.6862,-0.3044,0.2174,0.5218,0.7392,0.4782,0.7392,0.5218,0.3044,0.2174,0.2608,0.1304,0.174,0.3914,0.4348,0.4348,0.5218,0.7392,0.7826,1,0.826,0.9566,0.826,0.6522,0.8696,1,0.6956,0.5652,0.7826,0.826,0.6522,0.6522,0.8696,-0.3208,0.1886,0.1698,0.2642,0.1698,-0.2642,-0.3774,-0.283,-0.3962,-0.3208,-0.5284,-0.4716,-0.283,-0.2264,-0.1698,-0.151,0,0.0566,0.3396,0.5094,0.717,0.7924,1,0.8868,0.849,0.6792,0.6226,0.4716,0.4906,0.415,0.4528,0.5472,-1,-1,-1,-1,-1,-1,-1,-0.9836,-0.9874,-0.9444,0.0734,0.1352,0.0368,-0.0688,0.1078,0.5278,0.9688,0.2338,-0.2298,-0.4136,-0.484,-0.728,-0.953,-0.9804,-0.9804,-0.9726,-0.982,-0.9782,-0.961,-0.9452,-0.9422,-0.9374,-0.9202,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.9804,-0.8758,0.4226,0.529,0.4172,-0.0136,0.0868,0.22,0.9098,0.6864,0.46,-0.0598,-0.5492,-0.8146,-0.9588,-0.9764,-0.976,-0.699,-0.0064,0.7664,0.7014,0.9702,0.6524,0.2248,-0.0426,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.94,-0.3068,-0.43,-0.624,-0.688,-0.676,-0.6568,-0.7234,-0.6634,-0.38,-0.11,-0.2568,-0.71,-0.69,-0.7634,-0.8868,-0.8334,-0.1168,0.82,0.7866,0.73,0.6966,0.7766,0.8132,0.7266,-1,-1,-1,-1,-1,-1,-1,-0.8,1,1,1,0.7714,-0.5142,-0.8286,-0.9428,-0.8286,-0.7142,-0.8,0.4572,1,1,1,1,-0.4,1,1,1,1,-0.8286,-0.9428,-0.8572,-0.8,-0.5142,0.9626,0.9522,0.9522,0.9406,0.9322,0.9144,0.8918,0.852,0.7766,0.4884,0.3588,0.3596,0.3596,0.4314,0.411,0.4512,0.4902,0.5554,0.6462,0.717,-0.72,-0.3764,0.5994,0.6748,0.4552,0.721,-0.0226,1,-0.5224,-0.0746,0.0448,0.0746,-0.194,-0.0298,-0.0448,0.1642,0.597,0.8208,0.7314,0.6716,0.7612,0.7462,0.6268,0.6418,0.7014,0.7164,0.8358,1,1,0.8208,1,0.9402,0.582,0.3732,0.3284,0.5672,0.4776,-0.1344,-0.4478,-0.7462,0.1678,0.6778,0.9328,0.839,0.3826,0.302,0.3558,0.5436,0.7986,1,0.9194,0.9328,0.8926,0.7986,0.7316,0.7182,0.8926,0.7718,0.839,0.8524,0.7584,0.7046,0.6778,0.6912,0.3288,0.2886,0.1812,0.3558,0.2886,-0.1544,-0.4094,-0.8926,0.1348,0.4964,0.6666,0.4326,0.2978,0.2908,0.383,0.4964,0.688,1,0.8866,0.766,0.766,0.7234,0.6028,0.6738,0.7446,0.695,0.7164,0.766,0.7446,0.546,0.6524,0.5958,0.4468,0.2836,0.1348,0.2198,0.0852,-0.4398,-0.4468,-0.7164,1,-1,-1,1,-1,-1,-1,-0.6666,1,-0.8514,-0.8172,-0.8286,-0.5886,-0.6228,-0.44,-0.2572,-0.28,0.0858,0.1658,0.2228,0.4058,0.4514,0.8514,0.9886,0.9886,0.9428,0.9772,0.7486,0.92,1,0.9314,0.9886,0.92,0.9886,0.9086,0.8172,0.6572,0.5314,0.3828,0.2228,-0.4972,'8'
-0.329,0.355,0.5374,0.8372,0.8958,0.6678,0.1596,-0.0098,-0.1986,-0.127,-0.127,-0.114,-0.1986,0.1206,0.2574,0.5114,0.6156,0.974,1,0.9154,0.8566,0.8762,0.8958,0.7786,0.8828,0.7916,0.7328,0.8046,0.759,0.798,0.7328,0.7654,-0.2406,0.287,0.4202,0.6928,0.5652,0.4782,0.1884,0.1072,-0.026,0.026,-0.0724,0.0434,0.1304,0.1594,0.3044,0.2812,0.4898,0.6,1,0.9536,0.7392,0.774,0.774,0.8318,0.7914,0.8086,0.6116,0.5768,0.5826,0.4956,0.5884,0.5478,-0.1676,0.3464,0.4078,0.6704,0.4972,0.4636,0.229,0.2068,0.028,0.067,-0.0112,-0.028,0.0502,-0.0112,0.0558,0.1452,0.3296,0.5252,0.6816,1,0.9608,0.8324,0.8548,0.7988,0.7374,0.7654,0.704,0.6256,0.4972,0.6034,0.4972,0.6648,-0.1104,0.4012,0.5988,0.8314,0.6686,0.3838,0.0756,0.1512,-0.0524,-0.0116,-0.0174,-0.0466,0.0058,-0.128,0.0582,0.1162,0.2094,0.407,0.5058,0.8896,1,0.9244,0.9012,0.9302,0.8954,0.8256,0.721,0.6628,0.5232,0.6338,0.593,0.6338,-0.1832,0.3508,0.6544,0.8744,0.6702,0.0052,-0.2198,-0.0994,-0.3036,-0.2408,-0.267,-0.2514,-0.1676,-0.199,-0.0314,-0.11,0.068,0.1676,0.3612,0.6388,0.7696,0.911,1,0.7854,0.801,0.6806,0.6806,0.555,0.4922,0.4922,0.424,0.5602,-0.209,0.2746,0.2644,0.456,0.2342,-0.058,-0.2494,-0.2242,-0.325,-0.3804,-0.3148,-0.4458,-0.3048,-0.2746,-0.1586,-0.1032,-0.0528,0.1738,0.1436,0.5062,0.6574,1,0.8992,0.8438,0.6322,0.7682,0.592,0.607,0.5062,0.4358,0.5164,0.471,-0.1686,0.3896,0.279,0.221,-0.0058,-0.1744,-0.4768,-0.4652,-0.471,-0.5524,-0.4884,-0.628,-0.4826,-0.407,-0.3024,-0.2558,-0.2152,-0.0174,0.0116,0.4186,0.7732,1,0.8954,0.9826,0.8198,0.8256,0.564,0.5058,0.4534,0.378,0.3546,0.2848,-0.255,0.1764,0.5294,0.8824,0.9216,0.6078,0.0588,0.0196,-0.4118,-0.098,-0.1372,-0.098,-0.1372,0.098,0.2942,0.451,0.6078,0.9216,1,0.9216,0.804,0.8432,0.804,0.8824,0.8824,0.8432,0.647,0.6862,0.7254,0.7254,0.7254,0.6862,-0.1538,0.2692,0.6154,0.8846,0.923,0.6154,0.3076,0.1154,0.0384,0.0384,0.0384,0,0.1154,0.2692,0.2692,0.5,0.6924,0.923,0.9616,1,0.923,0.8846,0.8846,0.923,0.9616,0.9616,0.8846,0.8462,0.8076,0.8846,0.923,0.8462,-0.24,0.3,0.42,0.7,0.56,0.46,0.32,0.14,0,0.1,-0.02,0.08,0.14,0.2,0.28,0.3,0.52,0.62,1,0.98,0.84,0.82,0.9,0.88,0.88,0.8,0.68,0.58,0.64,0.54,0.62,0.6,-1,-1,-1,-1,-1,-1,-1,-0.9886,-0.9904,-0.9922,-0.575,0.136,0.1734,0.1818,0.2168,0.2674,0.4702,0.9102,0.7436,-6e-04,-0.3708,-0.5514,-0.6586,-0.8074,-0.9742,-0.9868,-0.9886,-0.9398,-0.9844,-0.9482,-0.8272,-0.9164,-0.832,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.9818,-0.98,-0.4728,0.136,0.2454,0.2584,0.3254,0.5046,0.5776,0.7952,0.8404,0.544,-0.017,-0.4096,-0.7074,-0.8316,-0.953,-0.9824,-0.9832,-0.505,0.243,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-0.7934,-0.9268,-0.72,-0.52,-0.56,-0.625,-0.505,-0.504,-0.544,-0.528,-0.756,-0.704,-0.22,-0.228,-0.54,-0.7434,-0.31,-0.36,-0.8268,-0.9134,0.12,0.9566,0.7932,0.8832,1,0.85,-1,-1,-1,-1,-1,-1,-1,-0.9428,-0.6858,1,1,1,-0.3714,-0.5428,-0.4572,-0.7714,-0.9142,-0.9428,-0.7714,-0.2572,1,1,1,0.8286,1,1,1,1,1,1,-0.0572,-0.7714,-0.7428,0.6994,0.6994,0.6422,0.6712,0.6834,0.6884,0.6982,0.7072,0.6896,0.4528,0.4974,0.4974,0.4414,0.4652,0.4554,0.4696,0.4876,0.516,0.6022,0.7834,-0.7334,-0.5058,-0.3362,-0.0356,0.2114,0.2476,0.2528,1,-0.1698,-0.0566,0.3962,0.3962,0.0944,0.0944,0.3584,0.3584,0.8114,0.9622,1,0.849,0.9246,0.8868,0.7736,0.8868,0.849,0.585,0.849,0.849,0.6982,0.5094,0.585,0.585,0.5094,0.585,0.5094,0.0188,0.0188,-0.2076,-0.5472,-0.7358,0,0.3962,0.415,0.2642,-0.0188,-0.151,0.2264,0.2452,0.7358,1,0.8302,0.6416,0.717,0.717,0.717,0.849,0.7548,0.5472,0.6982,0.8114,0.415,0.3018,0.3962,0.283,0.3018,0.5472,0.3396,0.0944,-0.151,-0.1886,-0.5094,-0.6226,0.3272,0.6728,1,0.3818,-0.0182,0.1454,0.3818,0.6364,0.909,1,0.9818,0.8182,0.8546,0.7636,0.8364,0.891,0.8364,0.6728,0.691,0.7636,0.5636,0.3818,0.509,0.4364,0.2546,0.3272,0.3454,0.091,-0.109,-0.3818,-0.4,-0.5454,0.0392,-1,-1,1,-1,-1,0,-0.8334,1,-0.7814,-0.7158,-0.6066,-0.683,-0.4208,-0.3334,-0.399,-0.2022,-0.0164,0.2022,0.1584,0.5082,0.4426,0.4644,0.4208,0.7704,0.7596,0.7814,0.9126,1,0.8032,0.9126,0.9234,0.9016,0.7704,0.7596,0.6066,0.6066,0.399,0.3224,0.0928,-0.082,'8'
-0.4046,0.0488,0.0744,0.2162,0.407,0.5628,0.8906,0.9488,0.9396,0.8558,0.8838,0.9442,1,0.7396,0.6046,0.4372,0.4,0.3534,0.4442,0.5652,0.6744,0.6162,0.4884,0.2838,0.172,0.1838,0.1232,-0.0116,0.007,0.0604,0.293,0.3698,-0.397,-0.0236,0.0124,0.1136,0.352,0.4736,0.7616,0.7548,0.8672,0.7638,0.7706,1,0.8988,0.5974,0.3544,0.3994,0.2958,0.235,0.2868,0.3454,0.4264,0.604,0.586,0.1992,0.0462,-0.0326,-0.1114,-0.0686,-0.0372,-0.0888,-0.0282,0.0844,-0.3546,0.0412,0.1142,0.218,0.4416,0.5902,0.8492,0.9058,1,0.8116,0.7832,0.993,0.8892,0.9482,0.616,0.5784,0.4676,0.3404,0.4534,0.5288,0.5406,0.8658,0.781,0.5736,0.3216,0.3522,0.2084,0.1354,0.2486,0.2604,0.324,0.4394,-0.3554,0.021,0.1296,0.2204,0.4064,0.5814,0.805,0.845,0.9314,0.6522,0.6124,0.7142,0.8982,1,0.7786,0.7586,0.5526,0.433,0.5038,0.546,0.5282,0.7542,0.639,0.6146,0.3312,0.3178,0.1628,0.0764,0.1738,0.2868,0.2868,0.391,-0.3182,0.1106,0.1882,0.334,0.5668,0.6352,0.9704,0.8882,0.4846,0.3728,0.48,0.4664,0.4618,0.6192,0.7492,1,0.8518,0.731,0.5872,0.6442,0.6168,0.6192,0.7354,0.6168,0.414,0.2612,0.2384,0.2816,0.2998,0.1744,0.2406,0.4322,-0.281,0.2666,0.2932,0.532,0.8022,0.918,0.5488,0.4934,0.199,0.1942,0.2714,0.1846,0.31,0.2642,0.4234,0.5488,0.655,0.947,1,0.8552,0.8336,0.7636,0.7612,0.8938,0.766,0.6188,0.4452,0.4258,0.3414,0.3558,0.4282,0.515,-0.124,0.6356,0.5774,0.4334,0.3598,0.611,0.467,0.1822,-0.0964,-0.1088,-0.216,-0.2068,-0.0872,0.0658,0.0444,0.069,0.3476,0.467,1,0.9908,0.8346,0.7612,0.8592,0.7734,0.8898,0.7182,0.4886,0.3384,0.3108,0.1852,0.2312,0.2252,-0.12,0.36,0.48,0.52,0.64,0.8,0.84,0.96,1,0.84,0.8,0.84,0.92,0.88,0.8,0.68,0.32,0.44,0.48,0.76,0.56,0.48,0.36,0.2,-0.12,0.16,0.16,0.16,0.2,0.08,0.32,0.32,-0.5,-0.1154,0,0.1924,0.423,0.5384,0.8846,1,0.8076,0.8462,0.8462,0.7308,0.9616,0.8076,0.5,0.3846,0.3462,0.2692,0.3846,0.6154,0.7308,0.3462,0.4616,0.1924,0.1924,0.1924,0.1538,0,0.1154,0.3076,0.1154,0.423,-0.3654,0.0192,0.0962,0.1924,0.4038,0.6154,0.7884,0.8654,0.9424,0.7692,0.827,1,0.8462,0.8462,0.5192,0.4808,0.3654,0.3076,0.3654,0.5192,0.577,0.7884,0.6538,0.5384,0.327,0.2884,0.1924,0.1538,0.25,0.2884,0.2692,0.3846,-1,-1,-1,-1,-1,-1,-1,-0.9656,-0.9672,-0.926,-0.7866,0.7624,0.7402,0.618,0.5972,0.5834,0.4286,0.4492,0.3374,0.6746,0.3218,-0.0516,-0.7918,-0.8916,-0.9432,-0.9294,-0.957,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9812,-0.9844,-0.8718,-0.8212,0.6774,0.8084,0.497,0.5688,0.4772,0.2092,-0.0286,-0.2936,-0.4198,-0.5604,-0.744,-0.925,-0.9526,-0.964,-0.9706,-0.9752,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9168,-0.95,-0.74,-0.61,-0.6092,-0.6438,-0.5674,-0.5764,-0.5638,-0.5946,-0.6238,-0.6946,-0.66,-0.6018,-0.7184,-0.3468,-0.24,-0.1634,-0.3768,-0.4334,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.1714,0.3714,1,1,1,-0.3714,-0.9714,-0.5714,-0.8,-0.5714,-0.5714,-0.8572,-0.7714,1,1,-0.2572,-0.6286,-0.8286,-0.7142,-0.7428,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.702,-0.6534,0.3294,-0.7306,-0.6014,0.8786,0.9646,0.9692,1,-0.3422,-0.1052,0.3422,0.579,0.4868,0.6974,0.8158,0.6316,0.4606,0.5394,0.5264,0.5,0.1974,0.5526,0.6052,0.7894,0.9868,1,0.8948,0.8158,0.7894,0.8158,0.75,0.7632,0.4474,0.0922,0.0132,0.0658,-0.3552,-0.4342,-0.2236,-0.5526,-0.3024,0.4264,0.4418,1,0.814,0.845,0.814,0.5968,0.4108,0.752,0.721,0.3178,0.2868,0.5194,0.5348,0.1162,0.5968,0.5348,0.5348,0.6434,0.4108,0.3178,0.6744,0.6434,0.3024,0.1628,-0.2094,0.2868,-0.0078,-0.0542,-0.2094,-0.69,-0.373,-0.0054,0.1244,0.6756,0.7082,0.6216,0.7298,0.6432,0.5568,0.7406,1,0.481,0.3622,0.0594,0.3298,0.254,0.2324,0.3946,0.6648,0.8054,0.7622,0.5676,0.3838,0.373,0.2108,0.0486,0.1352,0.1676,-0.0702,-0.2108,-0.4162,-0.5892,-0.5446,-1,-1,1,-1,-1,-0.8,-0.6334,-1,-0.3694,-0.2072,0.1712,0.6756,0.6576,0.2072,0.2792,0.2792,0.946,0.91,0.2792,0.7658,1,0.8378,0.1172,0.4594,0.6576,0.6756,0.6756,0.6936,0.7838,0.7298,0.7478,0.5496,0.5676,0.6036,0.6036,0.4054,0.063,0.1172,-0.027,-0.2432,'9'
-0.4206,0.0482,0.1116,0.2814,0.437,0.5394,0.9406,1,0.8996,0.8382,0.9652,0.8956,0.9058,0.7196,0.5742,0.476,0.4146,0.4228,0.3736,0.5046,0.6316,0.7502,0.656,0.5946,0.3962,0.3346,0.2508,0.2466,0.3184,0.3532,0.394,0.5374,-0.3638,0.039,0.132,0.2668,0.4264,0.4776,0.9222,0.8898,0.983,0.8766,1,0.8898,0.9544,0.5822,0.565,0.4416,0.3542,0.3808,0.3504,0.434,0.6448,0.662,0.7208,0.6524,0.3714,0.2516,0.2554,0.168,0.206,0.2916,0.2668,0.3904,-0.392,-0.0228,0.1232,0.233,0.375,0.4886,0.8182,0.8068,0.9338,0.8484,0.8902,1,0.9602,0.659,0.4962,0.4412,0.3428,0.341,0.3694,0.394,0.5076,0.733,0.7766,0.5624,0.4546,0.322,0.2254,0.2406,0.2272,0.2216,0.3068,0.4412,-0.382,-0.0442,0.1864,0.2482,0.3614,0.6622,0.8044,0.9898,1,0.7198,0.722,0.8312,0.967,0.9608,0.7528,0.6086,0.553,0.4562,0.4212,0.5242,0.6478,0.7136,0.8784,0.8002,0.52,0.3224,0.3142,0.279,0.2358,0.279,0.378,0.3554,-0.3458,0.0198,0.2688,0.3348,0.4934,0.8634,0.9956,0.7048,0.6982,0.5198,0.4274,0.5352,0.6828,0.6894,1,0.892,0.9758,0.7114,0.6454,0.652,0.7534,0.7974,0.967,0.881,0.5374,0.359,0.3722,0.3084,0.185,0.3216,0.4648,0.4406,-0.2774,0.1506,0.4406,0.5584,0.8754,0.8506,0.5968,0.461,0.2956,0.0442,0.0782,0.2072,0.239,0.3386,0.461,0.599,0.8324,0.8618,1,0.9094,0.8278,0.8506,0.846,0.8868,0.7734,0.7304,0.556,0.4654,0.4926,0.4406,0.5016,0.599,0.1064,0.8792,0.8396,0.5296,0.4244,0.7714,0.6662,0.393,0.1852,0.117,0.0486,-0.0276,0.0932,0.0906,0.1222,0.1642,0.3508,0.6268,0.7844,1,0.9474,0.9422,0.9342,0.8424,0.95,0.958,0.7504,0.5216,0.5296,0.406,0.4902,0.5796,-0.9024,-0.2682,-0.317,-0.4634,-0.4634,0.0732,0.756,0.8536,0.756,0.5122,0.5122,1,1,0.4634,0.317,0.0244,-0.122,-0.122,-0.0244,0.0732,0.5122,0.6098,0.5122,0.2682,0.0732,-0.1708,-0.317,-0.1708,-0.0732,0.0244,0.0732,0.2196,-0.375,0.0938,0.0312,0.3438,0.4376,0.625,0.875,1,0.875,0.8438,0.9376,1,0.8124,0.8124,0.4376,0.5624,0.4062,0.5,0.3438,0.375,0.4688,0.5938,0.75,0.4688,0.5312,0.375,0.4688,0.4062,0.5,0.5312,0.625,0.75,-0.3774,-0.0754,0.1698,0.2452,0.415,0.8114,0.9056,0.6226,0.3774,0.3018,0.2264,0.3208,0.434,0.434,0.6416,0.9434,1,0.6604,0.585,0.5284,0.6038,0.6416,0.8114,0.717,0.4906,0.3018,0.2642,0.2642,0.2264,0.3018,0.434,0.3774,-1,-1,-1,-1,-1,-1,-1,-0.9836,-0.9852,-0.9516,-0.8924,0.4706,0.9506,0.9128,0.8676,0.6564,0.3818,0.284,0.3818,0.6178,0.1616,0.0036,-0.7016,-0.8528,-0.9054,-0.9458,-0.9424,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9946,-0.9942,-0.9142,-0.874,0.4724,0.7826,0.8608,0.93,0.5214,0.2248,-0.1166,-0.227,-0.4316,-0.6274,-0.8052,-0.9252,-0.9428,-0.9514,-0.9626,-0.9634,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.9534,-0.76,-0.5534,-0.5684,-0.5768,-0.58,-0.5434,-0.5268,-0.54,-0.5684,-0.7218,-0.725,-0.7284,-0.9068,-0.6,-0.3,-0.1968,-0.2368,-0.3568,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4858,0.7142,1,1,1,-0.8286,-0.8858,-1,-1,-0.8286,-0.6286,-0.5142,-0.8,0.0286,0.6858,-0.3428,-0.7142,-0.7142,-0.6286,-0.6,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6008,-0.6266,0.4352,-0.9296,-0.5822,0.6606,0.6388,0.6834,1,-0.356,-0.096,0.2204,0.7288,0.6384,0.8418,0.9096,0.5142,0.2768,0.469,0.8758,0.9096,0.5142,0.3898,0.4916,0.6724,0.9662,1,0.9548,0.8418,0.8306,0.8192,0.6158,0.5706,0.3898,0.1638,0.2882,0.3108,0.322,0.1412,-0.243,-0.322,-0.3726,-0.0392,-0.1568,1,0.5882,0.6862,0.7058,0.196,-0.0196,0.3138,0.5882,0.745,0.0392,-0.1176,-0.2156,0.098,0.5882,0.3138,0.2746,0.5098,0.4902,-0.0588,0.1176,0.1372,-0.1176,-0.1764,-0.0196,-0.0784,0.0784,-0.1372,-0.1568,-0.2942,-0.244,0.183,0.3292,0.9268,0.8902,0.9512,1,0.683,0.5488,0.561,0.817,0.756,0.5976,0.3658,0.4024,0.5244,0.7196,0.683,0.6098,0.6098,0.6708,0.244,0.3536,0.317,0.3048,0.317,0.3658,0.3414,0.2804,-0.0366,-0.3536,-0.6464,-0.3772,-1,-1,1,-1,-1,-0.4,-0.7,-1,-0.411,0.3014,0.0274,0.411,0.2876,0.0274,0.137,0.548,0.9726,0.7124,0.5068,0.6438,0.9452,0.7398,0.3288,0.411,0.3972,1,0.863,0.7672,0.6576,0.7398,0.7672,0.6028,0.5206,0.4384,0.452,-0.0548,0.2466,0.0548,-0.0274,-0.4658,'9'
-0.164,0.427,0.7766,0.9676,0.7298,0.2648,0.1424,0.081,-0.063,-0.11,-0.1136,-0.0558,0.0054,0.1496,0.2684,0.427,0.5676,0.9532,0.9964,1,0.7766,0.7478,0.8018,0.8666,0.964,0.9532,0.8918,0.8162,0.6792,0.809,0.755,0.899,-0.3086,0.1038,0.3628,0.488,0.4538,0.4708,0.2092,0.101,0.0698,0.0526,0.0982,0.0668,0.0128,0.212,0.246,0.3456,0.5704,0.5676,1,0.9062,0.7012,0.6216,0.687,0.7156,0.6756,0.67,0.5248,0.5704,0.4652,0.485,0.5334,0.4652,-0.2396,0.1948,0.4792,0.5942,0.968,0.9488,0.3898,0.2076,0.2492,0.198,0.1854,0.1948,0.1916,0.3322,0.3898,0.4026,0.6326,0.8084,0.9808,0.9552,1,0.7956,0.706,0.8338,0.8978,0.9776,0.7572,0.6964,0.6486,0.5686,0.6646,0.6806,-0.303,0.1212,0.3758,0.4848,0.891,0.8636,0.2516,0.0878,0.1636,0.0848,0.0696,0.094,0.0576,0.1848,0.2546,0.2636,0.4758,0.5606,0.7272,0.9666,1,0.7212,0.6484,0.7394,0.794,0.8516,0.709,0.6546,0.5484,0.4788,0.5546,0.606,-0.2364,0.2056,0.4714,0.6106,0.7094,0.7188,0.2674,0.15,0.1438,0.054,0.1036,0.1098,0.0602,0.1592,0.2056,0.3262,0.425,0.4374,0.8486,0.796,1,0.762,0.796,0.7094,0.6816,0.8948,0.7466,0.7682,0.629,0.6538,0.5426,0.4622,-0.1766,0.3324,0.6468,0.8114,0.524,0.524,0.2456,0.1976,0.1048,-0.042,0.0628,-0.036,0.039,0.0868,0.0568,0.2096,0.1706,0.3802,0.6676,0.7814,0.994,1,0.6946,0.6108,0.6228,0.6826,0.7186,0.6348,0.6498,0.548,0.479,0.515,-0.0148,0.6112,0.664,1,0.832,0.1566,-0.0906,-0.061,-0.308,-0.4234,-0.407,-0.4564,-0.2916,-0.3608,-0.2388,-0.262,-0.206,0.0676,0.1368,0.2948,0.397,0.5848,0.5486,0.407,0.5584,0.72,0.6046,0.5716,0.4762,0.3378,0.1202,0.1104,0,0.5834,0.5416,0.7916,0.5834,0.2916,0,0.0416,0.0416,0.0416,-0.2084,-0.0834,0.0834,-0.0834,0.25,0.125,0.0834,0.75,0.7916,0.4166,0.5416,0.625,0.5,0.7084,0.8334,1,0.625,0.75,0.6666,0.5,0.5834,0.7084,-0.2632,0.421,0.2632,0.8422,0.6842,0,-0.2632,-0.1052,-0.3158,-0.1578,-0.2632,-0.0526,-0.2106,0.1052,0.1052,0.4736,0.4736,0.8422,0.6316,0.9474,0.7368,0.6842,0.5264,0.8422,0.6316,1,0.7368,0.7368,0.5264,0.8422,0.4736,0.7894,-0.3132,0.1112,0.3334,0.4344,0.5354,0.5556,0.2122,0.1112,0.091,0.0708,0.091,0.0708,0.0304,0.1718,0.2324,0.293,0.5556,0.6768,1,0.8384,0.7374,0.5758,0.596,0.7374,0.596,0.6768,0.5152,0.5556,0.495,0.4142,0.4344,0.4142,-1,-1,-1,-1,-1,-0.9922,-0.9922,-0.98,-0.8988,-0.912,-0.6682,0.607,0.598,0.0106,0.154,0.2708,0.2776,-0.051,-0.1314,-0.0366,0.0714,-0.1546,-0.8476,-0.9038,-0.9396,-0.9464,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9868,-0.987,-0.8834,-0.0616,0.7448,0.114,0.6076,0.9554,0.75,0.744,0.9108,0.9048,0.4106,0.2038,0.0288,-0.0384,-0.2828,-0.8246,-0.8798,-0.903,-0.9256,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9222,-0.96,-0.79,0.6966,0.84,0.5832,-0.6446,-0.6224,-0.5534,-0.5868,-0.6268,-0.5934,-0.7534,-0.9224,-0.8846,-0.9512,-0.968,-0.5368,-0.3768,-0.2834,-0.4434,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2572,-0.4572,1,1,1,1,1,-0.3714,-0.8,-0.9428,-1,-0.9714,-1,-1,-0.6572,0.4858,0.7714,0.2572,-0.8286,-0.8286,-0.5714,-1,-1,-1,-1,-1,-1,-1,0.371,0.4038,0.4298,0.4772,0.5164,0.5808,0.6386,0.71,0.7986,0.724,0.5876,0.5606,0.5588,0.5298,0.5264,0.4998,0.5052,0.5192,0.5598,0.683,-0.6666,0.0588,-0.1362,-0.16,0.6408,0.9442,0.9672,1,-0.6406,-0.2222,-0.0916,-0.0588,0.0458,0.0458,0.17,0.3202,0.2418,0.464,0.4968,0.5228,0.5164,0.7124,0.817,0.9282,0.9608,0.7712,0.8432,0.8104,0.8104,0.9412,1,0.9542,0.987,0.8366,0.7386,0.3986,0.4184,0.255,0.0654,-0.3464,-0.8824,-0.4476,-0.4884,-0.3452,-0.335,-0.2634,-0.243,-0.2174,0.1254,0.335,0.202,0.4476,0.6778,0.7442,0.8414,0.826,0.959,0.954,0.954,1,0.9232,0.9744,0.8364,0.7084,0.734,0.7902,0.729,0.7698,0.601,0.5242,0.248,0.0538,-0.2398,-0.0296,-0.1374,-0.186,-0.2668,-0.337,-0.256,-0.0242,0.2776,0.2452,0.3046,0.4448,0.9838,0.9138,0.6064,0.973,1,0.9192,0.7844,0.9138,0.7036,0.7036,0.7574,0.7196,0.6766,0.6712,0.5902,0.601,0.3584,0.2398,0.186,-0.0188,0.2106,-1,-1,1,-1,-1,-1,-0.3666,-1,-0.0858,0.1428,-0.1142,0.0714,0.0286,0,0.0428,-0.0428,-0.0572,0.4286,0.8858,1,0.5858,0.8714,0.4286,0.3858,0.3714,0.5858,0.5286,0.7286,0.6,0.6714,0.3286,0.4572,0.6,0.4,0.1572,-0.0428,-0.0428,0.1286,0.1286,-0.3286,'10'
-0.215,0.5488,0.5488,1,0.9396,0.0728,-0.0408,0.055,-0.254,-0.1154,-0.2896,-0.1546,-0.1758,-0.1154,-0.0054,0.1404,0.3606,0.5134,0.5418,0.485,0.3392,0.2434,0.421,0.4956,0.7194,0.7798,0.6448,0.3464,0.1972,0.3108,0.3712,0.5168,-0.0282,0.6198,0.6478,0.926,0.6478,0.7288,0.4718,0.5316,0.243,0.2008,0.236,0.1126,0.095,-0.0846,0.1726,0.4084,0.5106,0.7992,0.993,1,0.9014,0.5634,0.4824,0.6726,0.7112,0.7992,0.8416,0.6514,0.6408,0.6338,0.6302,0.8486,-0.1968,0.3658,0.3692,0.5838,0.6292,0.7236,0.4342,0.4244,0.1674,0.0504,-0.0082,-0.2162,-0.1284,-0.1512,-0.1252,0.1804,0.161,0.444,0.7854,1,0.7008,0.691,0.6422,0.6586,0.5578,0.4862,0.483,0.4472,0.4374,0.3204,0.3918,0.3822,-0.2368,0.2132,0.3894,0.5658,0.5606,0.6526,0.279,0.2868,0.1894,0.129,0.0974,0.0264,0.171,0.2264,0.3052,0.3684,0.3764,0.6578,0.679,1,0.879,0.6342,0.7052,0.771,0.7948,0.8078,0.629,0.5658,0.5236,0.3894,0.5236,0.5632,-0.2354,0.2696,0.5122,0.7146,0.475,0.532,0.2696,0.281,0.107,0.0414,-0.07,-0.07,0.0784,0.0956,0.1784,0.1554,0.1612,0.5436,0.6548,1,0.866,0.8202,0.8032,0.8972,0.9058,0.9258,0.6804,0.6206,0.6006,0.4836,0.535,0.6234,-0.1524,0.454,0.7334,1,0.7682,0.2412,-0.0572,0.0318,-0.238,-0.2476,-0.4698,-0.5174,-0.308,-0.3428,-0.3174,-0.2032,0.0158,0.2,0.2634,0.6476,0.7334,0.8794,0.8096,0.5714,0.5874,0.708,0.5682,0.4952,0.2794,0.292,0.3206,0.3334,-0.1212,0.5838,0.559,1,0.885,-0.2174,-0.385,-0.2888,-0.4286,-0.5372,-0.6024,-0.5218,-0.41,-0.3788,-0.5342,-0.444,-0.1646,-0.0776,0.1212,0.2142,0.4844,0.5248,0.3198,0.2732,0.41,0.3448,0.1894,0.0684,0.0466,-0.0994,-0.1552,-0.056,-0.1914,0.4894,0.4042,0.6596,0.617,0.1914,-0.0212,0.0212,-0.234,-0.0212,-0.234,-0.1064,-0.0638,0.0638,-0.1064,0.0638,0.0638,0.4468,0.532,0.617,0.3618,0.2766,0.532,0.617,0.8724,1,0.7872,0.532,0.4042,0.2766,0.4042,0.532,0.0232,0.8604,0.9534,0.9534,1,0.4884,0.4884,0.3024,0.2094,0.2094,0.0698,0.1628,0.1162,0.2558,0.3024,0.2558,0.5814,0.5814,0.4884,0.0698,0.3954,0.5814,0.4884,0.8604,1,0.8604,0.814,0.6744,-0.1628,0.7674,0.8604,0.8604,-0.1162,0.4418,0.5348,0.7674,0.7906,0.907,0.4884,0.5116,0.372,0.279,0.279,0.1162,0.3256,0.2326,0.3488,0.3954,0.3954,0.628,0.7674,1,0.814,0.8604,0.6046,0.6976,0.8604,0.9302,0.7906,0.6744,0.6744,0.5814,0.6744,0.721,-1,-1,-1,-1,-1,-0.988,-0.99,-0.9396,-0.9654,-0.8366,-0.6228,0.4048,0.6354,-0.2966,-0.4646,-0.4182,-0.2328,-0.2228,-0.2528,-0.2188,-0.1326,-0.2952,-0.5808,-0.903,-0.9608,-0.9574,-0.9808,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.975,-0.9812,-0.3816,0.6198,1,0.4192,0.4708,0.6438,-0.1114,-0.229,-0.133,0.3114,0.3498,-0.001,-0.1774,-0.1436,-0.3392,-0.6198,-0.879,-0.9156,-0.9176,-0.9402,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.9734,-0.2,1,1,0.3466,-0.74,-0.7134,-0.6224,-0.6468,-0.6934,-0.5424,-0.438,-0.644,-0.832,-0.9,-0.91,-0.89,-0.3534,-0.2434,-0.45,-0.4534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,1,1,1,1,1,1,-0.7428,-0.7428,-0.9428,-0.1142,-0.1142,-0.9428,-0.6286,-0.0858,-0.3714,-0.6286,-0.2,-0.1428,-0.8858,-0.6858,-0.4572,-1,-1,-1,-1,-1,-1,0.3914,0.402,0.4214,0.4362,0.4738,0.5066,0.5578,0.6344,0.7188,0.6032,0.639,0.5804,0.5604,0.5614,0.5256,0.5326,0.495,0.4452,0.4596,0.5824,-0.72,0.1058,0.3884,0.0482,0.334,0.7032,0.9522,1,-0.7458,-0.3756,-0.1988,-0.1326,-0.105,-0.0386,0.0884,0.1104,0.0994,0.315,0.442,0.464,0.6796,0.7624,1,0.9724,0.9338,0.9006,0.8066,0.8122,0.8674,0.8342,0.884,0.989,0.7016,0.6574,0.6078,0.5194,0.2708,0.2044,0.022,-0.348,-0.858,-0.7396,-0.4162,-0.2938,-0.3728,-0.4754,-0.3412,-0.2466,0.073,0.2072,0.215,0.2426,0.5898,0.5582,0.6528,0.9408,0.9408,0.7948,0.854,0.8896,0.8816,1,0.85,0.9488,0.8028,0.933,0.8816,0.641,0.57,0.4912,0.4674,0.2268,-0.2566,-0.0456,-0.1176,-0.1846,-0.2614,-0.4196,-0.3382,-0.1654,0.3382,0.4724,0.319,0.5732,0.976,1,0.602,0.9184,0.976,0.928,0.8082,0.7794,0.8658,0.8322,0.789,0.7266,0.9184,0.7746,0.6402,0.6834,0.4196,0.2134,0.151,-0.127,0.6386,-1,-1,1,-1,-1,-0.8,-0.2334,-1,-0.0484,0.1936,-0.0322,0.6612,0.3388,0.1452,0.0646,0.0646,0.5646,1,0.8064,0.887,0.6936,0.9194,0.6612,0.4194,0.387,0.9516,0.9678,0.7904,1,1,0.758,0.629,0.7742,0.629,0.3388,0.0968,0.0646,0.1936,0.2742,-0.258,'10'
-0.251,0.5362,0.5064,0.6808,0.6936,0.5234,0.532,0.2978,0.2086,0.0042,-0.0978,-0.0852,-0.0638,0.0978,0.0128,0.2382,0.2936,0.5744,0.9022,1,0.9574,0.8256,0.8128,0.9276,0.817,0.817,0.617,0.6298,0.4,0.4212,0.3404,0.4298,-0.183,0.347,0.4188,0.6616,0.812,0.976,0.6684,0.5316,0.241,0.2548,0.3162,0.2786,0.371,0.3264,0.518,0.453,0.5966,0.894,0.9384,1,0.9282,0.9794,0.9282,0.9076,0.877,0.8188,0.6582,0.5452,0.4496,0.4462,0.4462,0.5146,-0.2214,0.2382,0.2954,0.4698,0.8288,0.8994,0.4128,0.3288,0.2382,0.1376,0.1208,0.0672,0.1744,0.151,0.1812,0.3524,0.2986,0.5336,0.8524,1,0.7618,0.7986,0.7718,0.7684,0.7114,0.6342,0.3422,0.255,0.3456,0.2114,0.2852,0.4664,-0.2162,0.2496,0.4158,0.5748,0.9112,0.9334,0.4196,0.3308,0.1534,0.0574,0.1534,-0.024,-0.0388,0.2162,0.072,0.1424,0.475,0.5378,0.8632,0.8188,1,0.8226,0.7634,0.9482,0.9668,0.6044,0.5232,0.4492,0.2754,0.353,0.3826,0.3864,-0.1796,0.3008,0.4922,0.6368,0.8124,0.8086,0.3204,0.1954,0.0586,-0.0352,0.0234,-0.1836,-0.207,0.0274,-0.1328,-0.0312,0.2968,0.289,0.6758,0.7968,1,0.75,0.586,0.9218,0.871,0.3204,0.25,0.3828,0.0626,0.0234,0.1836,0.1758,-0.0994,0.4482,0.6468,0.8146,0.7042,0.7042,0.245,0.1082,0.0728,-0.2318,-0.2936,-0.3774,-0.426,-0.3334,-0.1656,-0.0198,0.192,0.1876,0.6954,0.797,1,0.7616,0.9116,0.7572,0.6822,0.5762,0.4438,0.2582,0.1214,0.1964,0.1214,0.1126,0.0626,0.717,0.717,0.9164,0.4106,0.4292,0.007,-0.058,-0.4014,-0.5684,-0.703,-0.5916,-0.5034,-0.3874,-0.225,-0.0952,0.007,0.0348,0.369,0.6194,0.8516,0.8422,0.9072,0.9954,1,0.6056,0.2344,0.2112,0.0116,0.0256,-0.0534,-0.058,-0.2272,0.3636,0.3636,0.3182,0.4546,0.1364,0.091,0.1364,0.091,-0.7272,-0.6818,-0.6364,-0.2272,-0.2728,-0.3182,-0.2272,0.1818,0.3182,0.7728,0.6818,0.8182,0.5,0.409,0.6364,0.9546,1,0.409,0.591,0.4546,0.0454,-0.1364,0.4546,-0.2432,0.6756,0.6756,0.6216,0.6756,0.081,0.4054,0.3514,0.2972,-0.027,-0.027,-0.027,0.027,0.027,-0.081,0.027,0.2972,0.6756,0.8378,0.7838,0.946,0.7838,0.7298,1,0.946,0.946,0.8378,0.6216,0.5136,0.2432,0.5136,0.4594,-0.2414,0.2414,0.4252,0.5632,0.908,0.931,0.4252,0.2874,0.1034,0.0114,0.0804,-0.1724,-0.0804,0.1494,0.0344,0.0804,0.4022,0.4942,0.7012,0.839,0.977,0.7702,0.7242,1,0.954,0.5862,0.3794,0.4712,0.1724,0.1494,0.3104,0.2414,-1,-1,-1,-0.9828,-0.978,-0.9798,-0.9792,-0.8042,-0.7596,-0.5454,-0.3234,0.4042,0.7932,0.9134,0.8576,0.578,0.3872,0.1128,-0.1062,-0.195,-0.243,-0.3392,-0.6326,-0.8914,-0.9454,-0.9694,-0.9614,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.947,-0.9844,-0.9888,-0.9902,-0.3376,-0.3664,-0.5654,-0.632,-0.21,0.3556,0.7574,0.6152,0.3802,0.1088,-0.2212,-0.4434,-0.5684,-0.6566,-0.7414,-0.8414,-0.926,-0.9444,-0.9608,-0.9678,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.66,-0.6134,-0.95,-0.7434,-0.42,0.4466,0.1832,-0.1868,-0.5058,-0.6316,-0.5344,-0.5376,-0.5676,-0.5026,-0.6776,-0.685,-0.7026,-0.845,-0.9076,-0.7668,-0.4168,-0.27,-0.3468,-0.6634,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.1428,-0.0572,-0.5428,1,1,1,-0.1428,-0.2,0.7428,0,-0.8,-0.6286,-0.9714,-0.6286,-0.5714,-0.9428,-0.8858,-0.6286,-0.4858,-0.2572,-0.6572,-0.6858,-0.4286,-0.5142,-1,-1,-1,-1,-1,-1,0.639,0.6666,0.6854,0.7186,0.7534,0.7986,0.8452,0.894,0.9278,0.784,0.5188,0.5362,0.5426,0.5118,0.505,0.4906,0.484,0.4246,0.461,0.5288,-0.68,-0.1176,-0.6756,-0.4086,-0.2226,0.0472,0.2496,1,-0.541,-0.0328,0.295,0.2678,0.377,0.3716,0.3388,0.388,0.4808,0.6284,0.6338,0.7868,0.9836,1,0.918,0.7704,0.6666,0.5902,0.6612,0.7104,0.7104,0.694,0.5136,0.399,0.4208,0.4208,0.4208,0.3934,0.1968,0.224,0.1202,-0.1256,-0.3574,-0.1112,0.2192,0.045,-0.015,-0.2312,-0.3034,-0.063,0.1472,0.3754,0.4354,0.7298,0.94,0.964,0.952,0.8318,1,0.91,0.94,0.8318,0.994,0.7958,0.6816,0.6036,0.5856,0.6456,0.6696,0.5256,0.5856,0.5316,0.2912,-0.009,0.1386,0.0856,0.4278,0.1092,0.1092,-0.1976,-0.1092,-0.0974,0.2744,0.6166,0.8702,0.8112,0.947,0.8998,0.6874,0.5516,0.6402,0.711,0.7464,1,0.764,0.8466,0.6166,0.947,0.8584,0.6638,0.7758,0.711,0.4808,0.5458,0.5162,0.2508,0.1538,-1,-1,1,-0.8,-1,-1,-0.2334,-1,-0.4616,-0.4154,0.077,0.0616,-0.0924,-0.0924,-0.0616,-0.0616,0.1846,0.5538,0.6154,0.6924,1,0.4616,0.2616,0.0924,0.2924,0.5384,0.6308,0.677,0.7538,0.723,0.5846,0.4616,0.1846,0.1846,-0.1384,-0.0154,-0.0462,0.077,0.123,-0.1846,'11'
-0.3156,0.5644,0.56,0.8044,0.8488,0.6356,0.3956,0.1066,0.0978,-0.0178,-0.1112,-0.1244,-0.0312,0.1556,0.2844,0.3066,0.4578,0.52,0.9244,1,0.8178,0.8534,0.8534,0.7688,0.92,0.9156,0.6134,0.5822,0.4934,0.32,0.3288,0.4044,-0.2606,0.2052,0.2954,0.5574,0.5168,0.6594,0.4556,0.3682,0.2024,0.2576,0.1994,0.2052,0.3188,0.2896,0.4702,0.3974,0.6244,0.802,1,0.8922,0.9476,0.8602,0.9534,0.837,0.8894,0.7904,0.7962,0.6302,0.5982,0.5778,0.4964,0.5954,-0.195,0.3356,0.3638,0.6204,0.6766,0.8172,0.4482,0.3744,0.1282,0.1142,0.174,0.1002,0.188,0.0474,0.2514,0.2724,0.4024,0.6696,0.7118,0.9964,1,0.7258,0.6872,0.863,0.754,0.761,0.5712,0.4798,0.304,0.3602,0.304,0.3392,-0.169,0.398,0.367,0.6,0.6194,0.736,0.27,0.2932,-0.0292,-0.0834,0.0252,-0.1496,-0.1534,-0.0058,0.099,0.0602,0.0758,0.569,0.5224,1,0.8874,0.8058,0.67,0.7786,0.7088,0.7282,0.3826,0.336,0.165,0.0912,0.2504,0.2854,-0.08,0.5606,0.579,0.8124,0.5836,0.6888,0.3822,0.3776,0.0984,-0.0344,0.0206,-0.2356,-0.254,-0.0756,-0.0068,-0.08,0.048,0.492,0.7574,1,0.9222,0.8306,0.9772,0.9908,0.7116,0.73,0.7574,0.5378,0.2814,0.3502,0.4142,0.3592,-0.004,0.6196,0.7412,1,0.753,0.5568,0.196,0.2628,-0.1608,-0.1764,0.0274,-0.0824,-0.1254,-0.1568,0.0078,-0.047,0.0784,0.2824,0.4352,0.9922,0.8862,0.7334,0.6196,0.8628,0.7294,0.6392,0.4746,0.3648,0.3294,0.302,0.0862,0.1334,0.0298,0.7744,0.7362,1,0.8042,0.1618,-0.0596,0.051,-0.3958,-0.4554,-0.6128,-0.6212,-0.2638,-0.268,-0.366,-0.366,-0.2128,-0.0468,0.0936,0.5532,0.8256,0.8382,0.8426,0.9192,0.8852,0.817,0.634,0.2212,0,0.0468,-0.034,0.068,-0.3,0.4,0.4,0,0.3,0.15,-0.4,-0.45,-0.25,-0.3,-0.8,-0.55,-0.6,-0.1,0.2,0.1,0.3,0.4,0.55,0.65,0.8,0.95,1,0.85,0.55,0.55,0.55,0.65,0.55,0.15,0,0.05,-0.1818,0.7272,0.7272,0.8636,1,0.5454,0.4546,0,0.1818,-0.091,0.0454,-0.1364,-0.0454,-0.1818,0.1364,0,0.2728,0.409,0.7728,0.8182,0.5,0.6818,0.8182,0.8636,1,1,0.591,0.7272,0.6818,0.591,0.591,0,-0.2978,0.234,0.3192,0.5744,0.5744,0.7446,0.5106,0.2978,0.0638,0.0852,0.1276,0.1064,0.2128,0.149,0.3192,0.3618,0.5106,0.7234,0.8086,0.9362,1,0.7446,0.7446,0.8086,0.7872,0.7022,0.6382,0.2554,0.1914,0.4042,0.3192,0.3404,-1,-1,-1,-1,-1,-0.9802,-0.9812,-0.805,-0.5834,0.3204,-0.459,0.5476,0.705,0.361,0.1772,-0.0706,-0.198,-0.2582,-0.2404,-0.0706,0.0056,-0.2148,-0.7436,-0.9,-0.9246,-0.9586,-0.9688,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9864,-0.986,-0.656,-0.3732,-0.3732,-0.6882,-0.2154,0.5434,0.724,0.1424,-0.213,-0.4744,-0.6026,-0.6256,-0.5822,-0.5452,-0.662,-0.857,-0.9178,-0.9238,-0.9452,-0.9538,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8734,-0.88,-0.3534,0.3166,-0.54,-0.4968,-0.4544,-0.5258,-0.3076,-0.6,-0.635,-0.6076,-0.695,-0.8626,-0.9076,-0.8726,-0.9326,-0.6134,-0.34,-0.3868,-0.4834,-0.2634,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,-0.2,-0.0858,1,1,-0.6,0.1142,-0.3428,-0.6858,-0.9428,-0.9428,-0.9142,-0.4858,-0.2,-0.1428,-0.7714,-0.7714,-0.8858,-0.2858,-1,-1,-1,-1,-1,-1,0.5168,0.552,0.589,0.6466,0.6906,0.7388,0.789,0.8362,0.851,0.6788,0.4654,0.4312,0.425,0.4212,0.436,0.4446,0.4572,0.4456,0.501,0.6156,-0.72,-0.1058,-0.697,-0.6026,-0.1584,0.0094,0.4152,1,-0.4872,0.0064,0.0128,-0.0064,0.1346,0.1602,0.0128,0.25,0.1666,0.3398,0.6026,0.782,0.968,1,0.859,0.609,0.5512,0.5512,0.6666,0.6794,0.6282,0.6026,0.4102,0.4166,0.4424,0.3462,0.5,0.4488,0.4488,0.2884,0.3076,-0.1924,-0.0294,0.1324,0.0442,-0.1102,-0.1692,-0.1764,-0.1986,-0.2648,0.0882,0.3824,0.5368,0.4412,0.7794,1,0.9044,0.7794,0.8676,0.9706,0.8014,0.7058,0.8602,0.8898,0.5808,0.5,0.5736,0.6176,0.8676,0.647,0.7426,0.647,0.625,0.2942,0.1856,0.1746,0.1524,0.0692,0.0028,-0.0748,-0.047,0.1966,0.1524,0.7064,0.6952,0.6732,0.7008,0.856,0.7728,0.5734,0.712,0.867,1,0.7286,0.8614,0.712,0.518,0.6232,0.8338,0.9114,0.7894,0.795,0.59,0.6786,0.5734,0.2244,-0.0154,-1,-1,1,-1,-1,-0.6,-0.2666,-1,-0.5074,-0.1792,0,0.2238,0.2238,0.1492,-0.0896,0.3284,0.403,0.582,0.612,0.4776,0.9254,1,0.403,0.209,0.6268,0.5074,0.5672,0.7612,0.7612,0.9254,0.9702,0.4478,0.597,0.2686,0.0896,0.1044,0.1194,0.2686,0.3284,0.0896,'11'
-0.3606,0.0156,0.258,0.3814,0.816,0.8224,0.513,0.4336,0.2602,0.1724,0.2246,0.2246,0.2142,0.3814,0.557,0.6908,0.9582,1,0.7074,0.5904,0.5632,0.5736,0.6196,0.768,0.7994,0.7136,0.5486,0.5068,0.417,0.3688,0.3876,0.3834,-0.306,0.0786,0.3012,0.3928,0.6906,0.66,0.8124,0.6014,0.4866,0.4372,0.3528,0.4702,0.6554,0.7162,1,0.8944,0.9438,0.7796,0.6694,0.585,0.5756,0.728,0.803,0.8148,0.6014,0.5546,0.4022,0.2896,0.3458,0.299,0.306,0.4186,-0.3836,-0.0888,0.2148,0.235,0.4218,0.9528,1,0.5726,0.6018,0.6918,0.8358,0.7502,0.7436,0.514,0.4488,0.3026,0.1766,0.1542,0.1968,0.1744,0.2598,0.4758,0.5816,0.6962,0.6288,0.4264,0.235,0.1564,0.1654,0.1744,0.1766,0.28,-0.37,-0.0598,0.3212,0.3992,0.5898,1,0.9926,0.702,0.8974,0.9072,0.7046,0.4506,0.2136,0.0158,-0.138,-0.1208,-0.1942,-0.265,-0.2014,-0.1844,-0.1306,-0.0648,0.1234,0.3676,0.5678,0.5164,0.3992,0.1648,0.0916,0.0428,0.0794,0.1526,-0.265,0.1174,0.5226,0.58,1,0.8574,0.945,0.9126,0.8476,0.495,0.24,0.07,-0.1974,-0.34,-0.4724,-0.5174,-0.535,-0.55,-0.59,-0.565,-0.4724,-0.4024,-0.3174,-0.085,0.2774,0.38,0.1324,-0.14,-0.2574,-0.285,-0.3224,-0.29,0.0014,0.7794,0.7426,0.8104,0.8274,1,0.8896,0.7736,0.8558,0.652,0.3098,-0.3352,-0.3268,-0.587,-0.5248,-0.522,-0.7454,-0.6124,-0.5672,-0.4568,-0.4766,-0.621,-0.6124,-0.4116,0.0694,0.0778,-0.2334,-0.488,-0.505,-0.536,-0.6238,-0.5502,-0.7102,0.8326,1,0.269,-0.0596,-0.095,0.1756,0.3752,0.5974,0.5588,0.169,-0.1948,-0.285,-0.372,-0.3558,-0.43,-0.459,-0.4686,-0.3624,-0.314,-0.5426,-0.7456,-0.5748,-0.6426,-0.5492,-0.7906,-0.4106,-0.079,-0.1046,-0.401,-0.4944,-0.5008,-0.45,0,0.05,0.5,1,1,0.6,0.4,0.15,0.15,0.05,0.05,0.1,0.2,0.45,0.65,0.6,1,0.9,0.55,0.6,0.55,0.7,0.8,0.85,0.85,0.6,0.6,0.45,0.5,0.4,0.45,-0.434,-0.0188,0.2452,0.5472,0.849,0.849,0.5472,0.4716,0.3208,0.283,0.2076,0.1698,0.283,0.3962,0.5094,0.6982,0.9246,0.849,0.8114,0.7736,0.7358,0.7358,0.849,0.9246,1,1,0.8114,0.7358,0.6604,0.6226,0.6604,0.6982,-0.2706,0.0588,0.5058,0.7412,1,0.9058,0.9294,0.9294,0.7882,0.4824,0.0352,-0.0118,-0.2,-0.4118,-0.4352,-0.5058,-0.647,-0.647,-0.5294,-0.647,-0.553,-0.4118,-0.3412,-0.153,0.3176,0.4352,-0.0118,-0.1764,-0.2942,-0.2942,-0.3882,-0.2942,-1,-1,-1,-1,-1,-1,-0.9862,-0.9868,-0.9808,-0.9852,-0.392,0.6948,0.6664,0.4822,0.5212,0.524,0.2732,0.105,0.0148,-0.3678,-0.581,-0.7702,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9896,-0.9902,-0.9886,-0.9894,-0.3248,0.6534,0.6174,0.7862,0.9092,0.8872,0.3488,-0.1016,-0.3828,-0.656,-0.8266,-0.901,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.9068,-0.9,-0.7034,-0.57,-0.6382,-0.6874,-0.5328,-0.6284,-0.645,-0.7034,-0.815,-0.8534,-0.8934,-0.9718,-0.97,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,-0.9142,-1,1,1,1,-0.6858,-0.6,-0.4858,-0.7142,-0.4858,-0.0572,0.1428,-0.5428,-0.1714,0.2286,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.1846,0.1336,0.096,0.0534,-0.0126,-0.1234,-0.2744,-0.4636,-0.2312,-0.0316,-0.5734,0.4,-0.2224,0.3526,0.5394,0.8234,0.8074,1,0.0864,0.8024,1,0.9506,0.5802,0.5802,0.6296,0.358,0.753,0.6544,0.753,0.753,0.7284,0.5308,0.5556,0.5308,0.7778,0.679,0.4074,0.4814,0.7038,0.8766,0.8518,0.8272,0.753,0.7284,0.5556,0.5308,-0.1852,-0.037,-0.1852,-0.753,0.287,0.6348,0.9652,0.9652,0.6,0.5826,0.6174,0.8782,0.9652,0.9478,0.913,0.9826,1,0.8434,0.6522,0.7392,0.826,0.8434,0.8782,0.8956,0.8956,0.913,0.826,0.7914,0.687,0.5652,0.513,0.426,0.2522,-0.026,-0.3044,-0.426,-0.0758,0.3334,0.7728,0.6818,0.3182,0.1666,0.2576,0.591,1,0.9394,0.5454,0.7878,0.909,0.7728,0.591,0.606,0.7728,0.8334,0.8484,0.803,0.7424,0.8484,0.7424,0.7122,0.7122,0.6212,0.4848,0.3182,0.1212,0.0606,-0.1212,-0.3636,0.9542,-1,-1,1,-0.8,-1,-1,-0.8,-1,0.3802,1,0.2112,1,1,0.6338,0.7746,0.6902,0.2958,0.3522,-0.0422,0.183,0.4084,0.2112,0.5212,0.2112,0.2958,0.5774,0.4084,0.2676,0.4084,0.2958,0.493,0.183,0.155,0.0986,0.1268,-0.1268,0.0422,0.0422,0.0986,-0.3522,'12'
-0.283,0.2634,0.3048,0.5658,0.7586,0.8976,0.7098,0.5048,0.2854,0.2976,0.2512,0.2342,0.4074,0.3658,0.5268,0.6,0.8196,0.9122,1,0.8,0.7292,0.722,0.7488,0.7146,0.7146,0.6268,0.583,0.5854,0.4098,0.3854,0.3732,0.3732,-0.1756,0.3334,0.2544,0.486,0.7914,0.939,0.6666,0.6946,0.402,0.4148,0.4224,0.369,0.4632,0.4758,0.6768,0.888,1,0.7048,0.771,0.6464,0.659,0.7558,0.7252,0.6972,0.5852,0.4326,0.3206,0.3816,0.1782,0.2392,0.2418,0.2468,-0.227,0.2404,0.3148,0.4848,0.7476,0.8062,1,0.9734,0.6282,0.5006,0.6362,0.7822,0.846,0.9442,0.9124,0.567,0.4634,0.3944,0.2882,0.413,0.506,0.5644,0.7556,0.7132,0.4528,0.3174,0.2218,0.0942,0.1288,0.1368,0.1314,0.2404,-0.3026,0.1086,0.3052,0.4252,0.7472,0.7394,1,0.8722,0.673,0.7394,0.7522,0.691,0.6016,0.3768,0.1546,0.1546,0.078,0.0396,0.0882,-0.0294,0.083,0.29,0.3462,0.691,0.604,0.3002,0.1112,0.1674,0.0984,0.06,0.0932,0.1622,-0.2636,0.1904,0.4098,0.5586,0.9774,1,0.952,0.8714,0.8916,0.6898,0.6142,0.1526,0.1626,-0.0038,-0.1046,-0.1904,-0.3266,-0.2258,-0.2534,-0.256,-0.1878,-0.1298,0.019,0.4402,0.5208,0.2282,0.1678,0.0064,-0.1274,-0.0316,-0.0618,0.0138,-0.1198,0.4624,0.3732,0.6044,0.8636,1,0.8524,0.8998,0.8412,0.7994,-0.064,-0.4846,-0.4428,-0.5654,-0.5516,-0.635,-0.713,-0.6796,-0.6602,-0.6908,-0.6324,-0.532,-0.3788,-0.1978,0.039,0.0474,-0.3872,-0.3956,-0.507,-0.5766,-0.5626,-0.4346,0.0464,0.9246,0.88,0.6536,0.5746,0.8044,0.7462,1,0.7908,0.9828,0.6364,-0.1802,-0.2452,-0.1218,-0.2042,-0.2762,-0.362,-0.4682,-0.5232,-0.5026,-0.3756,-0.3414,-0.163,0.0874,0.2076,0.0018,-0.1252,-0.3104,-0.3344,-0.379,-0.3242,-0.2762,-0.2962,0.2962,0.2962,0.6666,0.7408,0.7778,0.7408,0.3704,0.4444,0.1482,0.2592,0.2222,0.2962,0.4444,0.5186,0.6296,0.8148,0.8888,1,0.926,0.6666,0.7038,0.7778,0.7038,0.7408,0.7038,0.6666,0.6666,0.3704,0.4444,0.3334,0.4074,-0.0624,0.4062,0.375,0.6876,0.8124,0.9376,0.7812,0.625,0.4062,0.5,0.3438,0.375,0.5938,0.5938,0.75,0.7188,1,1,1,0.9062,0.875,0.7188,0.8438,0.7188,0.8438,0.7812,0.875,0.6876,0.7188,0.6562,0.6876,0.6562,-0.2422,0.2422,0.3894,0.579,0.9368,1,0.8948,0.8316,0.9158,0.7264,0.2,-0.0526,0.0316,-0.3894,-0.4106,-0.3474,-0.4736,-0.3894,-0.4948,-0.4106,-0.3684,-0.2842,-0.0736,0.2,0.4106,0.1158,0.0316,-0.2632,-0.221,-0.179,-0.221,-0.0948,-1,-1,-1,-1,-1,-1,-1,-0.9844,-0.9836,-0.9892,-0.7274,0.794,0.9226,0.7388,0.5658,0.509,0.5618,0.6714,0.635,0.1302,-0.1376,-0.4184,-0.8996,-0.9464,-0.967,-0.9736,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9866,-0.9858,-0.9858,-0.7008,0.7862,0.7048,0.4106,0.3506,0.643,0.5746,0.404,0.255,-0.2502,-0.4992,-0.7232,-0.9266,-0.9484,-0.9662,-0.962,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9628,-0.9468,-0.8668,-0.2868,-0.472,-0.64,-0.624,-0.696,-0.63,-0.648,-0.6892,-0.7928,-0.9382,-0.94,-0.8928,-0.69,-0.6734,-0.6468,-0.72,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6572,-0.7428,1,1,1,-0.7142,-0.4286,-0.3714,-0.7428,-0.8572,-0.4572,0.1142,-0.1142,-0.6572,-0.2858,-0.0858,-0.7428,-0.7428,-0.8858,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.113,0.1086,0.097,0.0904,0.0478,-0.0116,-0.109,-0.3254,-0.4852,-0.1506,-0.68,0.2352,-0.6148,0.0594,0.721,0.9962,0.9024,1,-0.1764,0.4118,0.6078,0.647,0.451,0.3334,0.5294,0.7648,0.9608,1,0.9216,0.8824,0.804,0.804,0.7254,0.6862,0.7254,0.9216,1,0.9608,0.9216,0.8824,0.7254,0.647,0.5686,0.3726,0.255,0.4902,0.4118,0.3726,0.0588,-0.255,-0.2858,0,0.6938,0.4694,0.1632,0.0612,0.1836,0.4694,0.7756,0.9796,0.653,0.6734,0.7552,0.7346,0.7346,0.449,0.5306,0.796,1,0.898,0.9592,0.9388,0.6734,0.6326,0.6122,0.2858,0.449,0.7756,0.6734,0.6122,0.5306,-0.0612,0.2476,0.604,0.7822,0.7426,0.3466,0.3466,0.2674,0.6832,1,1,0.8218,0.703,0.8614,0.8812,0.6238,0.5248,0.703,0.901,0.9802,0.8614,0.901,0.7822,0.604,0.5446,0.5842,0.4456,0.5248,0.8416,0.7822,0.6832,0.5644,0.1684,1,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.0344,0.362,0.5172,0.6724,0.8794,0.8448,0.6896,0.7586,0.5518,0.431,0.5518,0.3794,0.4138,0.5518,0.4828,0.5172,0.638,0.569,0.7068,0.6034,0.3104,0.7932,0.931,1,0.9482,0.862,0.7758,0.7068,0.3276,0.2586,0.1034,-0.5344,'12'
-0.1844,0.3818,0.3036,0.5098,0.5336,0.5814,0.217,0.1758,0.0044,-0.0456,-0.1194,-0.1908,-0.039,-0.0672,0.0174,0.1996,0.2408,0.4728,0.6138,1,0.937,0.8222,0.692,0.6572,0.7202,0.8438,0.8656,0.8416,0.642,0.6204,0.5466,0.5532,-0.127,0.4116,0.3268,0.3224,0.6916,0.835,0.52,0.5396,0.2616,0.2486,0.2008,0.1206,0.1682,0.1792,0.355,0.4962,0.5874,0.9914,1,0.7438,0.7024,0.6374,0.544,0.6374,0.7156,0.8654,0.5374,0.6048,0.444,0.4592,0.4918,0.444,-0.1062,0.4306,0.3162,0.3092,0.6312,0.7176,1,0.986,0.615,0.4982,0.4492,0.4376,0.559,0.8904,0.895,0.9206,0.8344,0.6032,0.433,0.3068,0.3232,0.4026,0.6616,0.6756,0.6172,0.5286,0.2858,0.1622,0.2228,0.2042,0.2742,0.3978,0.2486,1,0.8024,0.6156,0.8096,0.8166,0.7354,0.732,0.7954,0.6508,0.8166,0.746,0.7636,0.2522,0.1464,0.298,0.0582,0.0828,-0.3122,-0.3156,-0.3052,-0.1992,0.1358,0.09,0.2028,-0.231,-0.365,-0.4144,-0.2346,0.0124,0.1076,0.2028,0.3086,1,0.8714,0.1058,-0.1772,-0.68,-0.46,-0.3914,-0.1858,-0.26,0.1142,-0.0628,-0.0428,-0.2914,-0.32,-0.2314,-0.1858,-0.46,-0.4028,-0.3314,-0.4628,-0.4,-0.1742,-0.0058,-0.1342,-0.2686,-0.7772,-0.9486,-0.5572,-0.1258,-0.0772,-0.2114,0.2564,1,0.906,-0.0342,-0.2792,-0.906,-0.3504,-0.225,-0.3818,-0.3532,-0.0086,-0.0114,-0.0598,-0.1538,-0.285,-0.4302,-0.51,-0.3646,-0.1908,-0.433,-0.4616,-0.3106,-0.302,-0.0884,-0.0428,-0.4416,-0.641,-0.906,-0.5214,-0.2508,-0.302,-0.1938,0.2102,1,0.9096,-0.2888,-0.5678,-0.886,-0.3714,-0.328,-0.6306,-0.6778,-0.607,-0.3438,-0.1278,0.053,-0.1316,-0.171,-0.2612,-0.163,-0.116,-0.2534,-0.4616,-0.56,-0.3752,-0.0726,-0.0726,-0.1828,-0.6542,-0.8074,-0.3164,-0.1278,-0.167,-0.222,-0.25,0.2084,-0.125,0.5834,0.7084,0.3334,-0.2916,-0.2916,-0.1666,-0.4584,-0.375,-0.5416,-0.4166,-0.4584,-0.375,0,0.0416,0.0834,0.2084,0.9166,1,0.5416,0.25,0.6666,0.5416,0.5416,0.8334,0.9166,0.625,0.3334,0.4584,0.4584,-0.1628,0.4418,0.4418,0.6744,0.4418,0.4884,0.3024,0.1628,-0.0698,-0.1162,-0.1162,-0.2094,-0.2094,0.0232,0.0698,0.0698,0.1162,0.4418,0.3954,1,0.7674,0.9534,0.5814,0.721,0.907,0.907,0.9534,0.907,0.814,0.7674,0.4884,0.721,0.0632,0.6202,0.4936,0.519,1,0.9746,0.8228,0.7974,0.7468,0.924,0.9494,0.443,0.2152,0.1392,-0.0126,0.0886,-0.0632,-0.0126,-0.3418,-0.6456,-0.7216,-0.4936,-0.0632,0.0632,0.2406,-0.0632,-0.1646,-0.2406,-0.114,0.114,-0.0632,-0.3164,-1,-1,-1,-0.9764,-0.9844,-0.9784,-0.9844,-0.9854,-0.9756,-0.138,-0.1958,0.7924,0.7758,0.9226,0.711,0.571,0.2704,-0.048,0.0382,0.0724,0.0872,-0.6248,-0.719,-0.6778,-0.7228,-0.7032,-0.67,-0.7306,-0.76,-0.7356,-0.7228,-0.6984,-0.665,-1,-1,-1,-0.9762,-0.9802,-0.9774,-0.9822,-0.9184,-0.9734,-0.1496,-0.1184,0.423,0.823,0.8874,0.7328,0.5996,-0.0222,-0.5916,-0.5578,-0.5448,-0.5268,-0.8266,-0.8732,-0.8564,-0.8676,-0.8624,-0.849,-0.874,-0.8874,-0.8784,-0.8704,-0.8632,-0.8544,-1,-1,-1,-0.8316,-0.9068,-0.86,-0.92,-0.7934,-0.75,-0.6168,-0.2968,-0.5018,-0.3784,-0.4678,-0.6016,-0.64,-0.8,-0.9294,-0.934,-0.9308,-0.9324,-0.9232,-0.9668,-0.9234,-0.9668,-0.91,-0.8968,-0.9768,-0.9234,-0.8268,-0.8968,-0.93,-0.9434,-1,-1,-1,0.0572,-0.9428,-1,-0.1142,0.2,1,1,1,0.7428,-0.7714,-0.7428,-0.5714,0.6858,1,-0.5142,-0.9714,-0.8858,-0.8,-0.6572,-0.9714,-1,-1,-1,-1,-1,-1,-0.9714,-0.9428,-1,-1,0.6992,0.7106,0.7304,0.7606,0.786,0.8194,0.8588,0.9172,1,0.2354,0.8622,0.879,0.869,0.8504,0.8226,0.7818,0.6752,0.426,-0.0358,-0.3178,-0.6934,0.5412,-0.4182,0.4556,0.3598,0.4016,0.4544,1,0.2772,0.7108,0.8314,0.6024,0.3254,0.1808,0.2168,0.3374,0.4578,0.8916,0.9638,0.9036,0.8674,0.8434,0.8674,0.7832,0.7952,0.8796,1,0.9638,0.7832,0.759,0.6626,0.6746,0.3856,0.494,0.5542,0.2892,0.3012,0.1686,-0.0844,-0.3856,-0.4134,0.3334,0.68,-0.0934,-0.1866,-0.28,-0.1066,-0.0134,0.2,0.6934,0.9466,0.8534,0.8134,1,0.8666,0.72,0.7066,0.9066,0.9734,0.9466,0.88,0.68,0.68,0.7066,0.48,0.6,0.6534,0.4934,0.36,0.44,0.1334,-0.0134,0.3156,0.5294,0.6578,0.3476,0.0696,-0.0588,-0.1764,0.2086,0.3904,0.6256,0.9252,0.7968,0.786,0.9572,0.7112,0.615,0.722,0.9252,1,1,0.8288,0.6898,0.4866,0.4652,0.5188,0.5188,0.5402,0.2406,0.2514,0.2086,-0.1016,-0.6256,1,-1,-1,1,-1,-1,0.4,-0.6666,-1,0.9436,1,0.2394,0.2112,-0.0704,0.1268,0.5212,0.324,0.8592,0.4648,0.3802,0.493,0.3522,0.2676,0.2958,0.1268,0.014,-0.155,0.4366,0.7184,0.7184,0.7464,0.831,0.7464,0.3802,0.493,0.4084,-0.014,0.014,-0.2394,0.0704,-0.7464,'13'
-0.2334,0.2834,0.2548,0.412,0.7428,0.8238,0.4334,0.3572,0.162,0.1048,0.0858,0.0524,0.2238,0.2928,0.3666,0.531,0.619,0.9142,0.9428,1,0.8666,0.8548,0.8642,0.9358,0.969,0.9548,0.6786,0.619,0.5928,0.5166,0.6334,0.6858,-0.2132,0.2634,0.1608,0.2132,0.5872,0.6716,0.5826,0.5758,0.3614,0.2634,0.2566,0.2064,0.2998,0.4436,0.464,0.7766,0.7492,1,0.829,0.7674,0.6396,0.708,0.9064,0.9042,0.7856,0.6876,0.4778,0.2954,0.4026,0.4572,0.4982,0.6922,-0.1668,0.3226,0.2164,0.2756,0.5476,0.607,1,0.9604,0.644,0.5056,0.5624,0.6464,0.7108,0.9604,0.9234,0.963,0.822,0.555,0.4116,0.5056,0.4784,0.4908,0.9208,0.8122,0.7182,0.5278,0.4536,0.2386,0.2756,0.3868,0.325,0.6292,-0.0626,0.5144,0.3968,0.3578,0.739,0.825,0.9844,1,0.8616,0.7912,1,0.8982,0.9426,0.6866,0.483,0.3212,0.355,0.2558,0.2298,-0.0626,-0.1854,0.1672,0.496,0.6892,0.5092,0.4804,0.0732,0.1488,0.3108,0.2664,-0.0262,0.0966,0.2866,1,0.8434,0.1066,-0.32,-0.2766,-0.36,-0.2234,0.27,0.0866,-0.24,-0.13,-0.04,-0.0266,-0.0366,0.0266,-0.11,-0.1,-0.2034,-0.06,-0.36,-0.3466,-0.0166,-0.0834,-0.4434,-0.69,-0.9734,-0.6766,-0.4734,-0.0366,-0.0734,-0.1466,0.2378,1,0.9086,-0.0898,-0.3166,-0.7166,-0.5308,-0.4078,-0.1276,-0.0834,-0.4016,-0.4614,-0.4834,-0.3922,-0.074,-0.2788,-0.3322,-0.43,-0.3826,-0.5276,-0.6032,-0.6062,-0.452,-0.2032,-0.2692,-0.7418,-0.9338,-0.7984,-0.515,-0.411,-0.3292,-0.3134,-0.0916,0.9866,1,-0.401,-0.6106,-0.7204,-0.5174,-0.2446,-0.3144,-0.5906,-0.6738,-0.2746,-0.2046,-0.3844,-0.3112,-0.1182,-0.1148,-0.2646,-0.1914,-0.3778,-0.4342,-0.5374,-0.4476,-0.3212,-0.1148,-0.238,-0.6206,-0.4676,-0.0882,-0.055,-0.228,-0.3876,-0.421,0.4736,0.6842,0.4736,0.7368,0.8422,0.2632,0.3684,0.2106,0.0526,0.1052,0.0526,0.1578,0.2106,0.3684,0.4736,0.6842,0.6316,0.8948,0.9474,0.8948,0.8422,0.6842,0.7368,1,0.8948,0.7894,0.6316,0.6316,0.6842,0.8422,0.4736,-0.28,0.2,0.2,0.4,0.72,0.72,0.32,0.28,0.16,-0.08,0,0.08,0.08,0.32,0.16,0.4,0.68,0.72,1,0.96,0.72,0.68,0.88,0.88,0.96,0.64,0.64,0.6,0.52,0.64,0.56,0.56,-0.0934,0.4934,0.4134,0.3066,0.8666,0.8934,0.7066,0.7066,0.8134,0.76,1,0.76,0.36,0.2,0.1466,0.0134,-0.0134,0.0666,0.04,-0.4134,-0.8666,-0.5466,-0.0934,0.12,0.0134,0.0934,-0.3866,-0.0934,0.12,-0.0134,-0.0134,-0.68,-1,-1,-1,-1,-1,-1,-1,-0.9818,-0.9762,-0.9542,-0.774,0.6444,0.7674,0.5034,0.3984,0.4576,0.4814,-0.0648,-0.1364,-0.1392,-0.1382,-0.553,-0.8752,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9864,-0.984,-0.93,-0.6108,0.491,0.9014,0.7698,0.7042,0.671,0.561,-0.5654,-0.671,-0.678,-0.6808,-0.8306,-0.9482,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9252,-0.94,-0.94,-0.3268,-0.4764,-0.442,-0.4368,-0.5734,-0.5518,-0.5984,-0.8934,-0.8934,-0.8918,-0.8918,-0.885,-0.8768,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.1142,-0.7428,1,1,1,-0.9428,-0.8,-0.8,-0.7142,1,1,-0.8572,-0.9428,-0.8572,-0.7428,-0.7428,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.981,0.9844,0.9906,0.9966,1,1,1,1,1,0.3262,0.5424,0.5372,0.533,0.521,0.5136,0.4724,0.3686,0.1158,-0.2158,-0.4472,-0.7066,0.4118,-0.5942,-0.4916,0.4464,0.8576,0.7636,1,-0.2212,0.239,0.646,0.5576,0.3098,0.2566,0.3628,0.5398,0.823,1,0.9646,0.9292,0.8938,0.823,0.6814,0.6814,0.6992,0.8054,0.77,0.9116,0.9646,0.7346,0.6638,0.6106,0.5044,0.2744,0.3628,0.3628,0.115,-0.0266,-0.2566,-0.469,-0.36,0.104,0.68,0.456,0.04,0.088,0.088,0.232,0.632,0.84,0.68,0.664,0.776,0.68,0.536,0.616,0.76,0.856,0.728,1,0.984,0.648,0.568,0.632,0.616,0.184,0.536,0.504,0.456,0.296,-0.232,-0.296,-0.0544,0.2174,0.5978,0.4022,0.1304,0.163,0.337,0.3696,0.6304,0.924,0.913,0.7174,0.9566,0.924,0.6196,0.7174,0.9022,0.7392,0.7934,1,0.9456,0.674,0.5326,0.5434,0.4892,0.2608,0.5,0.3914,0.4782,0.0652,-0.2174,-0.3586,0.0818,-1,-1,1,-1,-1,-1,-0.7666,-1,0.4624,1,0.0322,0.3978,0.4408,0.3118,0.656,0.785,0.2688,0.5054,0.5484,0.4624,0.4408,-0.0538,0.4838,0.656,0.2258,0.2904,-0.0108,0.2044,0.4408,0.3118,0.0968,-0.0322,-0.0538,0.1398,0.0108,0.1182,-0.1182,-0.2474,-0.0968,-0.613,'13'
-0.1752,0.4756,0.4598,0.7338,0.6654,0.465,0.2332,0.1014,-0.1146,-0.1304,-0.1384,-0.1462,0.0172,0.0198,0.1964,0.1726,0.3386,0.4388,0.776,0.9736,1,0.8472,0.7048,0.668,0.8472,0.7892,0.784,0.6338,0.6338,0.5126,0.4888,0.6338,-0.0396,0.5732,0.483,0.6306,0.4856,0.669,0.3434,0.3708,0.108,0.1326,0.0752,0.0424,0.0588,-0.067,0.2148,0.1656,0.4062,0.6634,0.7976,0.9234,1,0.6224,0.5596,0.5704,0.6854,0.7538,0.7318,0.595,0.461,0.5212,0.431,0.472,-0.1698,0.342,0.2324,0.2428,0.6422,0.731,0.5456,0.53,0.2638,0.1592,0.1644,-0.0208,0.0836,0.2716,0.295,0.577,0.7362,1,0.8276,0.705,0.4074,0.3916,0.4046,0.402,0.6396,0.6006,0.6476,0.4516,0.3604,0.1436,0.1096,0.1462,-0.0564,0.5312,0.3882,0.306,0.726,0.796,0.8904,0.8326,0.4824,0.2998,0.3302,0.0684,0.1538,0.522,0.5616,1,0.8448,0.9452,0.6378,0.4642,0.312,0.3212,0.2176,0.166,0.5342,0.6074,0.7656,0.3546,0.3516,0.2116,0.1294,0.0838,0.2388,0.9878,0.7936,0.3158,0.6964,0.7732,0.4574,0.3968,0.1578,-0.0526,-0.1376,-0.3158,-0.1782,0.5668,0.5506,1,0.8056,0.494,0.1256,-0.2024,-0.5142,-0.5546,-0.2592,-0.2106,0.2186,0.2754,0.2712,-0.1094,-0.1336,-0.247,-0.3158,0.0162,0.2972,1,0.8776,0.1364,-0.1888,-0.2552,-0.5384,-0.5314,-0.8182,-0.7728,-0.6678,-0.5,-0.5734,-0.2308,-0.0944,-0.0944,-0.091,-0.3182,-0.3986,-0.4826,-0.3426,-0.2098,-0.451,-0.6014,-0.0524,-0.0454,-0.4266,-0.7062,-0.6118,-0.535,-0.5804,-0.5034,0.0504,1,0.9784,-0.3274,-0.6294,-0.7554,-0.6366,-0.4892,-0.6008,-0.8238,-0.7266,-0.4784,-0.608,-0.536,-0.0936,-0.133,-0.223,-0.313,-0.313,-0.3706,-0.3526,-0.4676,-0.4784,-0.3346,-0.1582,0.0648,0.0036,-0.687,-0.6978,-0.6294,-0.6618,-0.482,-0.2142,0.3214,0.25,0.7142,0.7858,0.6072,0.1072,0.0714,-0.0358,-0.2142,-0.1786,-0.0714,-0.0358,0,0.0714,0.1786,0.2858,0.4642,0.7142,1,1,0.75,0.6072,0.6786,0.8214,0.8214,0.75,0.7142,0.6428,0.5,0.5714,0.6428,-0.25,0.4584,0.5416,0.5834,0.6666,0.4584,0.125,-0.0834,-0.0416,-0.0834,-0.0834,-0.125,-0.0416,0.0416,0.25,0.2084,0.4584,0.5,0.9166,1,0.9166,1,0.8334,0.875,0.7916,1,0.875,0.5416,0.4584,0.3334,0.4166,0.3334,0.323,1,0.8154,0.2,0.7846,0.8462,0.4462,0.3846,0.2308,0.0462,0.0154,-0.2616,-0.1384,0.5692,0.5692,0.8462,0.7538,0.5384,0.1076,-0.1076,-0.4462,-0.7538,-0.077,-0.0462,0.323,0.2924,0.4154,0.1692,-0.077,-0.1384,-0.1692,0.077,-1,-1,-1,-1,-1,-1,-1,-0.9752,-0.9848,-0.9786,-0.4682,0.7484,0.9814,0.7954,0.8338,0.6834,0.4478,0.2966,-0.172,-0.2788,-0.2886,-0.4638,-0.8852,-0.8142,-0.7376,-0.8194,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.976,-0.982,-0.9764,-0.5024,0.5938,0.3732,0.533,0.7908,0.8054,0.2712,0.02,-0.547,-0.6606,-0.6684,-0.7452,-0.9344,-0.9106,-0.8736,-0.907,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.86,-0.9134,-0.78,-0.5768,-0.58,-0.598,-0.606,-0.6,-0.4692,-0.58,-0.72,-0.8928,-0.8928,-0.8928,-0.8782,-0.8268,-0.8934,-0.89,-0.8234,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5142,-0.9142,1,1,1,-0.6858,-0.4286,-0.6,-0.8858,-0.1142,0.9142,1,-0.6,-0.9714,-0.8,-0.7714,-0.8286,-0.9714,-0.6858,-1,-1,-1,-1,-1,-1,-1,0.642,0.6394,0.6398,0.6378,0.634,0.6364,0.6648,0.7274,0.8486,0.3506,0.7522,0.7396,0.727,0.7314,0.7436,0.7342,0.6686,0.5994,0.3582,0.0074,-0.7066,0.2706,-0.4442,0.4082,0.6346,0.6598,0.5372,1,-0.2766,0.234,0.1914,0.3192,0.1914,0.149,0.3192,0.1914,0.617,0.8724,0.9148,0.9574,0.9148,0.9148,0.8298,0.7872,0.8724,1,1,1,0.8724,0.8724,0.7446,0.7872,0.7446,0.7872,0.617,0.532,0.3618,0.4042,0.1914,-0.1064,-0.1456,0.398,0.3592,0.2622,0.068,0.068,0.0098,0.068,0.4368,0.6504,0.9418,0.7088,0.903,0.8058,0.7864,0.5922,0.5728,0.9224,0.8446,1,0.8252,0.767,0.4564,0.4564,0.864,0.6894,0.5922,0.5146,0.534,0.4368,0.3592,-0.0486,0.3448,0.6552,0.862,0.5518,0.2758,0.2414,0.3276,0.431,0.6724,0.862,1,0.8794,0.9138,0.8966,0.862,0.7414,0.7932,0.931,0.9138,0.9828,0.8276,0.6552,0.6206,0.5862,0.7068,0.4482,0.431,0.1206,0.0172,-0.0172,0.138,0.0344,0.6718,-1,-1,1,-1,-1,-1,-0.8334,-1,0.577,0.8462,0.1346,0.4808,0.5384,0.2884,0.4424,1,0.8462,0.6924,0.673,0.577,0.673,0.7884,0.327,0.5,0.5576,0.3462,0.4424,0.3462,0.0962,0.5384,0.6154,0.6924,0.4424,-0.173,0.173,0.2116,0.0384,-0.0384,-0.077,-0.3654,'14'
-0.1632,0.3572,0.278,0.4362,0.403,0.4974,0.1914,0.2118,0.0358,-0.028,-0.028,-0.1506,-0.0816,-0.1302,-0.0484,0.1608,0.1964,0.4438,0.625,1,0.9006,0.523,0.3826,0.4286,0.579,0.625,0.6684,0.6632,0.4898,0.4234,0.3368,0.3164,-0.2006,0.2838,0.164,0.1562,0.6094,0.664,0.3828,0.3256,0.164,-0.0078,0.0416,-0.0964,-0.0624,0.0364,0.0364,0.289,0.3984,0.5494,0.9818,1,0.5364,0.4192,0.3152,0.349,0.5312,0.6406,0.6744,0.6198,0.5546,0.3178,0.2708,0.3984,-0.1704,0.3274,0.1882,0.3096,0.7156,0.6888,0.8044,0.6266,0.3778,0.283,0.286,0.1852,0.1318,0.3126,0.4874,0.5318,1,0.8962,0.9792,0.7126,0.6562,0.5082,0.4638,0.7038,0.7334,0.8786,0.9112,0.8962,0.4992,0.36,0.366,0.2918,-0.0236,0.5354,0.3502,0.394,0.926,0.8888,0.7442,0.569,0.3636,0.2558,0.3164,0.2996,0.202,0.3198,0.8484,0.9562,1,0.9764,0.596,0.4074,0.239,0.266,0.367,0.458,0.4006,0.7576,0.6296,0.6026,0.2356,0.2558,0.2828,0.2356,0.266,1,0.7732,0.5382,0.1506,0.1298,-0.6372,-0.633,-0.3938,-0.7196,-0.6948,-0.501,-0.6578,-0.6206,0.831,0.9588,0.2372,0.1546,0.2206,-0.0886,-0.2494,-0.5506,-0.5464,-0.2824,0.2124,0.5176,0.1382,-0.4144,-0.497,-0.5506,-0.3608,-0.6742,0.2054,1,0.814,0.2752,-0.1938,-0.1938,-0.3528,-0.3838,-0.6356,-0.7714,-0.7984,-0.5388,-0.4186,-0.717,-0.1434,0.3798,0.1744,-0.0466,-0.128,-0.0194,-0.3178,-0.31,-0.5814,-0.5852,-0.4458,-0.0156,-0.0038,-0.531,-0.6202,-0.5776,-0.624,-0.7132,0.127,1,0.934,-0.3044,-0.454,-0.5582,-0.5582,-0.4678,-0.666,-0.6834,-0.7322,-0.7008,-0.6452,-0.5514,-0.3774,-0.1026,-0.0992,-0.054,-0.1478,-0.2974,-0.287,-0.433,-0.4608,-0.3634,-0.1408,0.113,-0.0086,-0.2766,-0.4296,-0.6278,-0.4956,-0.5408,0.0944,0.5472,0.585,0.8868,0.7736,0.6604,0.3962,0.3584,0.3208,0.132,0.1698,0.1698,0.2452,0.132,0.132,0.434,0.3208,0.5472,0.8868,1,0.9622,0.9246,0.8114,0.7358,0.9246,0.8114,0.8868,0.6982,0.8114,0.7736,0.7358,0.6226,-0.2,0.3334,0.2888,0.6,0.4222,0.4222,0.1556,0.2444,0.0666,0.0222,-0.0222,-0.1112,-0.0222,-0.2,-0.0666,0.1112,0.2888,0.4222,0.5112,1,0.9112,0.4222,0.3334,0.6,0.5556,0.7334,0.7334,0.8222,0.5112,0.5112,0.5556,0.5112,0,0.5588,0.353,0.2352,0.853,0.7648,0.3824,0.2058,0.0588,0.0294,0.1176,0.2058,0.1764,0.0294,0.9118,1,0.5294,0.3824,0.1176,-0.0882,-0.4412,-0.0588,0.1176,0,0.2352,0.6176,0.4412,0.2058,-0.1176,0.0294,0.2352,0.1764,-1,-1,-1,-1,-1,-1,-0.9768,-0.9756,-0.9536,-0.7998,-0.337,0.7742,0.6312,0.6594,0.4932,0.492,0.4432,-0.1124,-0.149,-0.2112,-0.2504,-0.3224,-0.8584,-0.867,-0.7632,-0.8462,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9766,-0.976,-0.728,-0.399,-0.367,0.4016,0.5304,0.8558,0.509,0.3868,0.1404,-0.539,-0.589,-0.6222,-0.6592,-0.694,-0.9276,-0.9298,-0.8874,-0.922,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9198,-0.9068,-0.8334,0.0532,0.02,-0.5492,-0.5946,-0.4328,-0.3674,-0.4728,-0.5856,-0.8656,-0.8928,-0.8946,-0.8928,-0.8834,-0.8568,-0.8034,-0.9268,-0.9534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.1142,-0.3714,1,1,1,1,-0.9142,-0.8572,-0.8858,-0.9428,1,1,-0.9428,-0.8858,-0.8286,-0.7142,-0.7714,-0.8858,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.7242,0.7314,0.7412,0.7526,0.7738,0.803,0.8406,0.9002,0.969,0.3278,0.6946,0.6964,0.6614,0.6574,0.6166,0.5978,0.5516,0.5246,0.4004,0.0898,-0.6666,0.3176,-0.482,0.7682,0.3486,0.29,0.3226,1,-0.6142,-0.3604,-0.269,-0.269,-0.401,-0.2082,-0.2182,-0.1472,0.0254,0.8172,0.8984,0.6446,0.4924,0.4214,0.4112,0.3908,0.594,1,1,0.7564,0.7664,0.8782,0.7564,0.3198,-0.2182,0.137,0.1168,0.1676,0.2792,0.1676,-0.4822,-0.8072,-0.3302,0.3578,0.3394,0,-0.11,-0.1926,-0.156,0.1652,0.3028,0.8348,0.844,0.9266,0.945,0.8348,0.6698,0.4312,0.688,0.9634,1,0.9266,0.9358,0.8256,0.9266,0.422,-0.1744,0.1192,0.2936,0.422,0.5596,0.5688,-0.2386,-0.3486,0.1972,0.4408,0.5484,0.3692,0.1972,0.061,0.2688,0.2402,0.2974,0.5842,0.871,0.785,0.8064,0.8352,0.6846,0.6488,0.6918,0.8638,0.9354,0.9928,1,0.9212,0.6918,0.6416,-0.0108,0.5268,0.448,0.6918,0.706,0.7204,0.233,-0.3334,0.5106,-1,-1,1,-1,-1,-1,-0.5334,-1,0.3494,0.2772,0.012,0.735,0.3494,0.5662,0.6386,0.3494,0.7108,0.5904,0.5422,1,0.8796,0.9036,0.3734,0.4216,0.1566,0.3494,0.5904,0.5422,0.8072,0.5662,0.4458,0.229,0.3254,0.229,0.3494,0.494,0.3012,0.2772,-0.2048,-0.6626,'14'
-0.3868,0.1002,0.2894,0.3554,0.6992,0.8194,0.7936,0.6934,0.5244,0.5816,0.6562,0.977,1,0.7392,0.553,0.5072,0.4584,0.47,0.6618,0.788,0.6648,0.381,0.1834,0.3066,0.4126,0.3324,0.2722,0.3238,0.3782,0.4614,0.7364,0.7822,-0.2224,0.2466,0.3586,0.5128,0.9668,1,0.7428,0.6702,0.764,0.8184,0.9304,0.9304,0.9364,0.6066,0.528,0.4796,0.3888,0.5068,0.6762,0.7004,0.5642,0.4886,0.1558,0.2436,0.3736,0.3404,0.3556,0.3344,0.289,0.4674,0.8064,0.9184,-0.2644,0.152,0.3374,0.456,1,0.9726,0.4376,0.5866,0.7174,0.927,0.9392,0.4984,0.392,0.2614,0.161,0.2218,0.1428,0.0852,0.304,0.3678,0.5046,0.149,0.0852,-0.1124,-0.0426,0.0882,-0.0212,0.0182,0.0456,0.155,0.3556,0.3314,-0.2158,0.228,0.5136,0.6352,1,0.9514,0.4712,0.696,0.8146,0.9484,0.918,0.3162,0.1732,0.0364,-0.0244,0,-0.0638,-0.082,0.1156,0.4468,0.5106,0.0212,-0.0396,-0.2584,-0.07,0.0426,-0.1094,-0.1368,-0.0426,0.0364,0.1884,0.2918,-0.184,0.2828,0.66,0.7928,0.7774,0.762,0.6352,0.8578,1,0.629,0.493,0.0758,-0.0046,-0.1222,-0.2766,-0.184,-0.2766,-0.2982,-0.048,0.221,0.3786,0.0262,-0.286,-0.1902,-0.2736,-0.1684,-0.2798,-0.187,-0.1778,-0.1994,0.1314,0.119,-0.095,0.4524,0.8098,1,0.6098,0.6786,0.7704,0.718,0.8394,0.646,0.0492,-0.3214,-0.2426,-0.436,-0.5246,-0.4656,-0.636,-0.4098,-0.4066,-0.3082,0.1704,0.1442,-0.505,-0.7148,-0.5574,-0.4984,-0.3934,-0.5082,-0.5442,-0.3378,-0.1312,0.1114,0.1622,0.8142,0.7814,0.9162,0.7268,0.5228,0.9708,1,0.4354,0.1766,-0.6066,-0.7158,-0.581,-0.7122,-0.5846,-0.705,-0.9344,-0.847,-0.7996,-0.7522,-0.4644,-0.3114,-0.541,-0.6502,-0.6284,-0.6758,-0.7924,-0.7888,-0.8398,-0.643,-0.399,0.1002,-0.2542,0.1186,0.2882,0.2882,0.5932,0.8984,0.9322,0.4576,0.4576,0.3898,0.661,0.8644,1,0.9662,0.5254,0.4238,0.4238,0.5254,0.7288,0.8644,0.7628,0.3898,0.2204,0.5254,0.5594,0.2542,0.2542,0.322,0.356,0.5932,0.7628,0.7288,-0.5384,-0.1154,0.077,-0.0384,0.6154,0.923,0.8462,0.3462,0,0.2308,0.3076,0.9616,1,0.6924,0.1538,0.1924,0.077,0.077,0.577,0.7692,0.6924,0.1154,0.077,0.3076,0.2308,-0.0384,-0.077,0.1154,0.1924,0.2692,0.6538,0.7692,-0.2904,0.1398,0.3118,0.4194,1,0.9784,0.4838,0.5484,0.699,0.914,0.9784,0.4408,0.3764,0.3118,0.1398,0.2258,0.1612,0.1612,0.3118,0.1398,0.4194,0.2044,0.0752,-0.0322,-0.0752,0.1182,0.0108,0.0322,0.0752,0.1612,0.5698,0.613,-1,-1,-1,-1,-1,-1,-0.9932,-0.9932,-0.9908,-0.9904,-0.6346,0.1348,0.4474,0.635,0.8418,0.9694,0.4696,0.1862,0.1842,0.2946,0.2076,-0.3178,-0.9162,-0.9586,-0.9752,-0.9582,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9924,-0.9926,-0.9904,-0.9876,-0.5068,0.7388,0.8408,0.6878,0.7662,0.9658,0.5156,0.08,0.0392,-0.1526,-0.3092,-0.623,-0.9442,-0.9726,-0.9766,-0.9738,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8934,-0.94,-0.9,-0.7468,-0.71,-0.56,-0.5624,-0.6734,-0.7178,-0.72,-0.7556,-0.82,-0.7846,-0.804,-0.842,-0.84,-0.7834,-0.79,-0.7134,-0.85,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,-0.8572,1,1,1,-0.8286,-0.8858,0.5714,0.1142,-0.9428,-0.8572,-0.7714,-0.5142,0.6286,0.6572,-0.0858,-0.6858,-0.8572,-0.8858,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6944,-0.6666,0.0824,-0.5238,0.2328,1,0.8326,0.7654,1,-0.074,0.5186,0.7038,0.7778,0.7038,0.8518,1,0.963,0.7778,0.8518,0.8518,0.5926,0.5926,0.5556,0.6296,0.7038,0.6666,0.4444,0.4814,0.5186,0.4814,0.3334,0.2962,0.037,-0.4074,0.1112,0.2222,0.037,-0.2222,-0.2592,-0.4814,-0.5926,0.1596,0.7142,0.7984,0.9328,0.7648,0.7648,1,0.8656,0.6302,0.731,0.7142,0.4286,0.4622,0.4286,0.4286,0.6302,0.5966,0.3782,0.4622,0.4118,0.3782,0.1764,0.2774,-0.0252,-0.2606,0.0588,0.1764,-0.21,-0.3278,-0.4286,-0.4454,-0.563,0.094,0.3504,0.7436,0.983,0.641,0.829,1,0.8974,0.641,0.6924,0.7606,0.3334,0.5556,0.47,0.5214,0.7436,0.6752,0.5042,0.5042,0.5042,0.1794,0.0086,0.1624,-0.2308,-0.5556,-0.094,0.0256,-0.0598,-0.0598,-0.0428,-0.1966,-0.5898,0.8866,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.2234,0.1456,0.6116,0.9806,1,0.3204,0.3592,0.4174,0.2816,0.3204,0.301,0.4368,0.2234,0.4952,0.4758,0.2622,0.0486,0.1262,0.4564,0.3204,0.5922,0.5922,-0.0098,0.068,0.1844,0.0098,0.0874,0.0486,0.2234,0.0292,-0.1068,-0.534,'15'
-0.2664,0.3284,0.3234,0.6356,0.7794,1,0.8836,0.549,0.482,0.6456,0.777,0.9876,0.891,0.819,0.497,0.549,0.435,0.5044,0.5812,0.72,0.6604,0.596,0.2366,0.2366,0.0162,0.1648,0.2888,0.2714,0.2936,0.3582,0.4424,0.8066,-0.2272,0.2904,0.2694,0.5832,0.6558,0.8572,0.6838,0.4192,0.5012,0.6066,0.9438,1,0.5246,0.5128,0.274,0.2694,0.0094,-0.0398,0.2552,0.2482,0.5176,0.4052,0.0046,-0.103,-0.2716,-0.438,-0.3208,-0.2622,-0.1968,-0.0444,0.11,0.342,-0.1408,0.3876,0.4544,0.7112,0.7902,0.921,0.5654,0.5902,0.7556,0.758,1,0.926,0.4246,0.2864,0.1654,-0.032,-0.0962,0.0814,0.1482,0.1828,0.2222,0.3456,0.2814,-0.2544,-0.2642,-0.1334,-0.279,-0.1876,-0.121,-0.0642,0.2618,0.2888,-0.1332,0.4026,0.6494,0.843,0.7784,0.8486,0.6886,0.655,1,0.8514,0.6298,0.3604,0.1838,-0.1472,-0.1388,-0.209,-0.3408,-0.2202,-0.1444,0.0126,0.5624,0.6044,-0.0462,-0.338,-0.2034,-0.3632,-0.4642,-0.296,-0.265,-0.4782,0.0912,0.3044,-0.1308,0.3954,0.7384,0.9098,0.5844,0.6046,0.6598,0.779,1,0.7238,0.1162,-0.314,-0.3344,-0.4534,-0.564,-0.7616,-0.5756,-0.4854,-0.657,-0.1744,0.2384,0.1018,-0.4534,-0.6424,-0.6076,-0.7674,-0.7966,-0.5436,-0.7006,-0.6308,0.003,0.0466,-0.0406,0.4938,0.8182,1,0.67,0.323,0.793,0.7482,0.228,0.0574,-0.2756,-0.5748,-0.572,-0.6,-0.7006,-0.7454,-0.891,-0.8322,-0.7678,-0.6924,-0.4406,-0.4294,-0.5104,-0.6084,-0.7118,-0.9132,-0.8518,-0.8602,-0.8798,-0.7006,-0.5048,-0.2868,0.1516,0.9962,0.8902,0.4848,0.3522,0.6212,0.9054,1,0.3522,-0.091,-0.5606,-0.4772,-0.4432,-0.341,-0.606,-0.7234,-0.7008,-0.5304,-0.447,-0.4242,-0.466,-0.4204,-0.606,-0.5152,-0.5568,-0.5568,-0.697,-0.6554,-0.644,-0.1856,-0.0038,-0.0984,-0.4782,0.2174,0.4782,0.6522,0.826,0.9566,0.8696,0.5652,0.6956,0.6522,0.7392,1,0.9566,0.8696,0.826,0.5652,0.6086,0.6522,0.4782,0.7826,0.913,0.6956,0.2174,0.3044,0.2608,0.3914,0.4348,0.3914,0.5218,0.6086,0.4782,0.8696,-0.283,0.3208,0.283,0.6604,0.8114,0.8868,0.849,0.6604,0.585,0.5472,0.7358,0.8868,1,0.849,0.4716,0.3962,0.4716,0.434,0.6226,0.6604,0.3584,0.4716,0.2076,0.2076,-0.0566,0.3208,0.283,0.3208,0.2076,0.434,0.434,0.6604,-0.077,0.4506,0.5384,0.8242,0.8682,1,0.6484,0.7142,0.912,0.8902,0.956,0.8682,0.4726,0.2528,0.1868,-0.1648,-0.011,0.1648,0.2088,0.2748,0.2528,0.5604,0.4726,-0.099,-0.055,0.099,-0.1428,-0.099,0.033,-0.055,0.1208,-0.077,-1,-1,-1,-1,-1,-1,-0.9864,-0.9832,-0.9864,-0.9808,-0.7906,0.5198,0.9482,0.7546,0.5994,0.4504,0.3198,0.2074,0.268,0.311,-0.0274,-0.5006,-0.8558,-0.9172,-0.9602,-0.9714,-0.9746,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9872,-0.986,-0.9852,-0.9788,-0.706,0.6306,0.9368,0.9486,0.7092,0.182,0.0276,-0.0674,-0.2162,-0.3252,-0.499,-0.7568,-0.8768,-0.907,-0.9454,-0.9562,-0.9614,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9454,-0.94,-0.86,-0.8134,-0.4034,-0.588,-0.654,-0.704,-0.676,-0.7964,-0.8092,-0.8038,-0.8038,-0.8564,-0.8564,-0.902,-0.81,-0.7068,-0.6534,-0.6,-0.8068,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3428,-0.9142,-0.8,1,1,1,-0.0858,-0.4,-0.7714,-0.5428,-0.7428,-0.6858,-0.5714,-0.7428,-0.7428,-0.4858,-0.6572,-0.8286,-0.7428,-1,-0.6286,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.936,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7686,-0.6934,0.2588,-0.6448,0.134,0.5756,0.6418,0.8706,1,0.0182,0.4182,0.7454,0.7454,0.709,0.8182,1,0.9636,0.8182,0.8546,0.8182,0.5636,0.5636,0.5636,0.6,0.8546,0.9636,0.7454,0.7818,0.891,0.891,0.891,0.891,0.9272,0.5636,0.0546,0.2,0.0182,-0.1636,-0.1272,-0.091,-0.3818,-0.2698,0.2698,0.7936,0.6984,0.5874,0.6508,1,0.762,0.6508,0.6984,0.7936,0.5714,0.4762,0.4604,0.5714,0.7302,0.7778,0.6666,0.635,0.9524,0.8888,0.6666,0.873,0.6826,0.3968,0.1746,0.365,0.1112,-0.0158,-0.1112,-0.0318,-0.2064,0.2466,0.548,0.7398,0.822,0.6302,0.7672,1,0.7946,0.6712,0.7534,0.8494,0.548,0.5068,0.5342,0.4794,0.589,0.8494,0.5342,0.5068,0.726,0.6986,0.4658,0.7534,0.6712,0.1232,0.178,0.315,0.1506,0,0.0136,-0.041,-0.1506,1,-1,-1,1,-1,-1,-0.8,-0.8334,1,-0.5238,-0.1588,0.0158,0.2858,1,0.9682,-0.0318,0.1746,0.3016,0.1428,-0.2222,-0.2064,0.0318,0.0476,0.1112,0.1112,0.0952,0.0158,0.0634,0.0952,0.0634,0.2064,0.1428,0.0952,0,0.0634,-0.127,-0.0476,-0.127,0.0476,0.0158,-0.5238,'15'
-0.0804,0.6626,0.6586,0.3092,0.2972,-0.1326,-0.1566,-0.3052,-0.2972,-0.3654,-0.3294,-0.3896,-0.3776,-0.2168,-0.1968,-0.0442,-0.0722,0.0602,0.2168,0.4258,0.6104,0.8634,0.8394,0.6948,0.731,0.8714,0.9278,0.976,1,0.755,0.6746,0.5944,-0.0846,0.4892,0.4462,0.4594,0.3566,-0.0182,-0.1542,-0.1742,-0.3466,-0.2538,-0.3898,-0.2238,-0.184,-0.0548,-0.0812,0.048,0.1344,0.2272,0.393,0.4726,0.8276,0.9072,0.9104,0.9038,0.8442,0.854,0.9734,1,1,0.9204,0.801,0.718,-0.1334,0.4072,0.331,0.4004,0.2306,-0.123,-0.3968,-0.3068,-0.4004,-0.3552,-0.3414,-0.3656,-0.2132,-0.2756,-0.137,-0.2166,-0.0294,0.0642,0.1994,0.4558,0.5806,0.9446,1,0.7504,0.6152,0.7746,0.7746,0.8994,0.8336,0.799,0.6742,0.6776,-0.0666,0.5176,0.4118,0.4236,0.2,-0.0706,-0.4824,-0.4314,-0.3334,-0.3882,-0.3764,-0.5138,-0.3648,-0.3568,-0.2118,-0.153,-0.0824,0.1058,0.102,0.4432,0.5608,0.9058,0.749,0.9294,0.7372,0.851,0.9686,1,1,0.953,0.745,0.6196,-0.0368,0.5656,0.4632,0.4344,0.1926,-0.0532,-0.4468,-0.3976,-0.3156,-0.3566,-0.3976,-0.5122,-0.4344,-0.4796,-0.3238,-0.2254,-0.1476,0.0328,0.0204,0.3648,0.4222,0.75,0.7132,0.9304,0.7622,0.8606,0.955,1,0.873,0.8196,0.5574,0.4016,0.108,0.813,0.7026,0.5972,0.319,-0.0024,-0.4772,-0.434,-0.3574,-0.41,-0.6546,-0.8034,-0.6834,-0.5108,-0.3382,-0.434,-0.3382,-0.0936,-0.1224,0.247,0.4532,0.8514,0.7794,1,0.717,0.8562,0.8418,0.8752,0.5108,0.458,0.3526,0.2326,0.2236,1,0.9386,0.3816,0.3114,-0.4122,-0.4868,-0.4386,-0.5438,-0.7018,-0.6184,-0.4824,-0.4562,-0.5878,-0.5702,-0.4692,-0.4386,-0.3992,-0.1622,0.0878,0.1448,0.5308,0.7808,0.7544,0.5834,0.9166,0.8026,0.465,0.2808,-0.0132,0.2808,0.2544,0,0.5,0.409,0.2272,-0.1364,-0.4546,-0.591,-0.091,0,-0.1364,-0.1364,-0.5,-0.4546,-0.2272,-0.2272,-0.091,-0.2728,-0.2728,-0.1364,-0.0454,0.5,0.591,0.5,0.591,0.6818,0.7728,0.7272,0.7728,1,0.8636,0.6364,0.6818,-0.1352,0.946,1,0.4594,0.5136,-0.081,0.081,-0.3514,-0.2972,-0.5676,-0.2972,-0.4594,-0.1352,-0.1892,0.081,0.081,0.1352,0.2972,0.3514,0.5676,0.6216,0.8378,0.5676,0.8918,0.7298,0.946,0.8918,1,1,0.7838,0.8378,0.4054,-0.0526,0.579,0.4474,0.4736,0.2106,-0.1316,-0.4736,-0.5,-0.2894,-0.3684,-0.579,-0.6578,-0.5526,-0.579,-0.5,-0.2368,-0.1842,-0.0264,-0.0264,0.3158,0.421,0.6578,0.7894,1,0.7894,0.8422,1,0.9736,0.8422,0.7106,0.4474,0.4736,-1,-1,-1,-1,-0.9874,-0.9866,-0.6666,0.4986,0.0652,0.1556,-0.5186,0.5918,0.8748,0.6682,0.5778,0.4208,0.2696,0.137,0.0348,-0.1044,-0.1726,-0.246,-0.7422,-0.9222,-0.9586,-0.9556,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.986,-0.9862,-0.8142,-0.2436,-0.3542,-0.343,-0.6834,-0.0844,0.7894,0.9086,0.6704,0.5188,0.1724,-0.1258,-0.2664,-0.4766,-0.5982,-0.6434,-0.8524,-0.9224,-0.9548,-0.954,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.88,-0.96,-0.8,-0.78,-0.55,-0.6268,-0.4168,-0.7458,-0.603,-0.5344,-0.495,-0.4576,-0.6176,-0.7626,-0.8526,-0.8026,-0.8626,-0.9126,-0.8268,-0.1168,-0.2034,-0.3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6,1,1,1,0.0858,-0.4,-0.0286,1,1,-0.9142,-0.8572,-0.8572,-0.8858,-0.9142,-0.6858,-0.5428,-0.3428,0,0,-0.6572,-0.5428,-0.5142,-1,-1,-1,-1,-1,-1,-1,-0.1912,-0.1318,-0.1062,-0.0294,-0.0074,0.0454,0.0762,0.104,0.0932,-0.0468,0.8998,0.894,0.904,0.9298,0.94,0.963,0.978,1,1,1,-0.7334,-0.1176,-0.6886,-0.6538,-0.0706,0.4502,0.6644,1,0.62,0.35,0.07,0.215,0.185,0.165,0.245,0.34,0.835,1,0.825,0.885,0.88,0.745,0.61,0.755,0.925,0.875,0.71,0.82,0.805,0.58,0.5,0.52,0.5,0.5,0.515,0.36,0.34,0.24,0.065,-0.11,0.4466,0.4708,0.398,0.3058,0.068,0.0534,-0.0388,0.0098,0.2136,0.6068,0.8398,0.8106,0.8834,1,0.835,0.6748,0.4708,0.9466,0.8398,0.9272,0.9514,0.9466,0.6844,0.5776,0.67,0.7136,0.568,0.4854,0.432,0.3058,0.2476,-0.0048,0.215,0.1916,0.229,0.1496,0.0608,-0.028,-0.0654,-0.0888,0.0888,0.4392,0.5654,0.6542,0.701,1,0.9954,0.514,0.6028,0.5514,0.7336,0.8084,0.6496,0.7102,0.6262,0.7056,0.7664,0.7758,0.5374,0.43,0.3786,0.5094,0.3832,0.0374,-0.1422,-1,-1,1,-1,-1,-0.4,-0.1,-1,-0.2888,0.0222,-0.0814,-0.0074,-0.0222,-0.1408,-0.0222,0.0222,-0.1408,-0.0222,0.837,0.8518,0.9852,1,0.6148,0.1408,0.3778,0.674,0.6148,0.6,0.6592,0.6888,0.3186,0.4518,0.1408,0.1704,-0.0518,-0.274,-0.2148,-0.2148,-0.3778,-0.7482,'16'
-0.0866,0.8014,0.8556,0.4512,0.4332,-0.0324,0.0686,-0.325,-0.2346,-0.3212,-0.1768,-0.2816,-0.213,-0.1192,0,-0.047,0.1264,0.166,0.3322,0.5668,0.8772,0.7798,0.5704,0.4332,0.5704,0.7004,1,0.9964,0.9242,0.7834,0.6714,0.7112,0.0414,0.6338,0.6194,0.485,0.4364,0.1158,0.05,-0.1016,-0.1816,-0.033,-0.1102,-0.1072,-0.196,0.0902,-0.0072,0.1474,0.0558,0.2646,0.1702,0.4736,0.6394,1,0.917,0.5966,0.5794,0.9028,0.8054,0.957,0.857,0.8912,0.7796,0.565,0.0582,0.7454,0.6946,0.5382,0.4,-0.0328,-0.229,-0.2728,-0.3746,-0.1782,-0.3928,-0.2546,-0.211,-0.109,-0.1128,-0.0436,-0.029,0.011,0.2946,0.349,0.9782,0.9528,0.9964,0.931,0.851,0.7346,0.931,0.84,1,0.8146,0.7128,0.6254,-0.0388,0.574,0.507,0.3486,0.183,-0.2112,-0.4788,-0.4648,-0.405,-0.324,-0.4824,-0.4436,-0.3592,-0.3838,-0.567,-0.5316,-0.155,-0.176,0.0846,0.3556,0.5564,0.8522,1,0.6268,0.5212,0.5212,0.5492,0.8626,0.8522,0.764,0.6902,0.7254,-0.0148,0.5888,0.5074,0.3888,0.1778,-0.2444,-0.5074,-0.437,-0.4926,-0.474,-0.4408,-0.5112,-0.5334,-0.6444,-0.574,-0.5962,-0.4296,-0.226,-0.1222,0.2556,0.3148,1,0.9778,0.4148,0.3186,0.6444,0.5704,0.8,0.5556,0.663,0.4296,0.5,0.075,0.7688,0.6788,0.6232,0.379,-0.2334,-0.4346,-0.3618,-0.6574,-0.7088,-0.5802,-0.5846,-0.743,-0.6916,-0.5118,-0.6316,-0.516,-0.3534,-0.2934,0.182,0.2976,1,0.9786,0.576,0.4518,0.5974,0.7302,0.8716,0.4904,0.4818,0.3148,0.3576,0.1628,0.9752,0.9176,0.6536,0.5464,-0.332,-0.3114,-0.167,-0.534,-0.5918,-0.732,-0.567,-0.5298,-0.4226,-0.5794,-0.5918,-0.6908,-0.5546,-0.1216,-0.0268,0.3774,0.864,1,0.6702,0.7814,0.8226,0.7196,0.6248,0.6,0.2742,0.1918,0.2454,-0.081,0.8378,0.946,0.6216,0.3514,-0.2972,-0.3514,-0.5676,-0.6216,-0.5676,-0.5136,-0.6216,-0.7838,-0.5676,-0.5676,-0.4054,-0.027,0.1352,0.5136,0.5676,0.8378,0.7298,0.081,0.6216,0.4594,0.6216,0.7298,1,0.7298,0.081,0.4594,0.5676,-0.282,0.7436,0.7948,0.1282,0.3334,-0.1794,-0.0256,-0.641,-0.4872,-0.641,-0.3846,-0.5898,-0.1794,-0.2308,-0.1282,-0.077,-0.1282,0.077,0.2308,0.4358,0.3334,0.5898,0.4358,0.5898,0.3334,0.5898,0.8462,1,0.7948,0.7436,0.5384,0.3846,0.0322,0.5914,0.5268,0.3978,0.2044,-0.1612,-0.5268,-0.6774,-0.3764,-0.2904,-0.4408,-0.4838,-0.4408,-0.4838,-0.4408,-0.4408,-0.1612,-0.1612,0.0538,0.3764,0.5054,0.785,0.914,0.5054,0.4838,0.613,0.5914,1,0.871,0.656,0.5054,0.7204,-1,-1,-1,-1,-1,-0.9866,-0.9844,-0.148,-0.5562,-0.4512,-0.6376,0.6576,0.3816,0.3536,0.2478,0.1568,0.074,-0.0622,-0.1834,-0.2492,-0.2338,-0.4098,-0.5356,-0.8498,-0.9622,-0.9564,-0.9298,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9822,-0.9794,-0.3328,-0.2076,-0.1986,-0.6296,0.3798,0.5906,0.898,0.6644,0.3504,0.3016,0.0908,-0.1602,-0.337,-0.3862,-0.5346,-0.6542,-0.8654,-0.9392,-0.9432,-0.9262,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.9068,-0.81,-0.0634,-0.27,-0.25,-0.675,-0.62,-0.55,-0.625,-0.6676,-0.6726,-0.66,-0.6934,-0.7424,-0.6112,-0.7978,-0.86,-0.3934,-0.2068,-0.3734,-0.4,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,0.5142,0.4858,1,-0.2286,-0.7428,-0.7714,-0.8572,-0.8572,-0.6,-0.8286,-0.7714,-0.9142,0.0572,-0.1714,-0.2572,-0.2858,-0.0858,-0.5142,-1,-1,-1,-1,-1,-1,-0.0162,0.029,0.066,0.1058,0.1436,0.1612,0.1716,0.156,0.0732,-0.0646,0.8182,0.8376,0.8556,0.8286,0.8598,0.863,0.922,0.9606,1,1,-0.76,-0.0352,-0.6792,-0.1736,0.498,0.451,0.4604,1,0.523,0.2792,0.1328,0.1762,-0.0352,0.1924,0.3712,0.5718,0.6368,1,0.859,0.9024,0.832,0.6694,0.6856,0.5068,0.7452,0.7886,0.6532,0.6152,0.6368,0.6368,0.5068,0.5284,0.2574,0.4146,0.5392,0.4742,0.4146,0.3334,0.0948,-0.1816,-0.1292,-0.119,0.0026,0.1392,-0.2,-0.0632,-0.0076,0.1088,0.276,0.595,0.686,0.5848,0.9494,1,0.5798,0.524,0.5746,0.7368,0.6304,0.8278,0.7518,0.6304,0.5494,0.4784,0.4784,0.3924,0.4936,0.514,0.281,0.276,0.1494,-0.3518,0.0898,0.1538,-0.0642,-0.0512,-0.0962,-0.359,-0.218,-0.218,0.0256,0.3076,0.8012,0.718,0.6924,1,0.8142,0.75,0.6474,0.9102,0.9358,0.9552,0.9038,0.9744,0.6474,0.75,0.9102,0.7116,0.5962,0.3142,0.4424,0.532,0.4358,-0.1858,0.4872,-1,-1,1,-1,-1,0,-0.2,-1,-0.233,0.188,-0.3834,0.203,0.1428,-0.1428,-0.1278,0.0376,0.203,0.3834,0.7142,0.5488,0.8948,1,0.1578,0.173,0.8496,0.9098,0.8196,0.8496,0.9548,0.639,0.3684,0.4736,0.2482,0.188,0.1578,0.0676,-0.0676,-0.173,-0.0376,-0.3834,'16'
-0.1432,0.5678,0.599,0.5,0.5442,0.1928,0.2708,-0.0364,0.1016,-0.1588,-0.0156,-0.177,0.052,-0.0808,0.1614,0.1172,0.5104,0.487,0.9766,1,0.8412,0.8308,0.8932,0.9948,0.7838,0.8438,0.7214,0.7162,0.6302,0.763,0.776,0.9114,-0.0738,0.4756,0.4846,0.6232,0.6096,0.26,0.2464,0.0738,0.0692,0.0034,0.008,-0.0534,-0.0466,0.194,0.2122,0.4098,0.4802,0.8728,0.9182,0.9024,0.9478,0.9274,1,0.714,0.5686,0.4824,0.512,0.4098,0.4234,0.4438,0.5528,0.6368,-0.1078,0.4352,0.629,1,0.899,0.1132,-0.0478,0.045,-0.1378,-0.0368,-0.0096,0.0614,0.277,0.3942,0.6916,0.6972,0.8908,0.869,0.768,0.8226,0.9154,0.8336,0.5144,0.3042,0.247,0.2306,0.1788,0.236,0.2578,0.3206,0.4788,0.5688,-0.2118,0.2616,0.8224,1,0.701,0.3644,0.3396,0.3022,0.134,0.2274,0.3956,0.7228,0.7538,0.729,0.6728,0.4268,0.2928,0.3582,0.4984,0.5888,0.5982,0.4922,0.2024,0.0654,-0.0062,-0.025,0,-0.0156,0.0342,0.1496,0.3116,0.5514,-0.1882,0.2806,0.8614,1,0.5874,0.5082,0.5016,0.3796,0.3366,0.7162,0.7492,0.4158,0.3334,0.1848,0,0.0826,0.0264,0.0264,0.2244,0.231,0.4224,0.1486,-0.0198,-0.3168,-0.3696,-0.2344,-0.4026,-0.3136,-0.1948,-0.1782,0.0594,0.3334,-0.0162,0.6084,0.6926,1,0.8674,0.5954,0.5178,0.5276,0.6764,0.686,0.4466,0.1456,-0.0518,-0.178,-0.191,-0.301,-0.3334,-0.2006,-0.081,0.1068,0.1294,-0.0324,-0.191,-0.5178,-0.3884,-0.4304,-0.5534,-0.3624,-0.3042,-0.2622,-0.1068,0.3916,-0.057,0.943,1,0.306,0.0818,0.0854,0.1922,0.4342,0.573,0.2882,-0.1814,-0.274,-0.2028,-0.2136,-0.299,-0.3132,-0.331,-0.3168,-0.1814,-0.0178,-0.0926,-0.121,-0.1174,-0.242,-0.2278,-0.363,-0.4056,-0.6476,-0.6476,-0.4734,-0.3238,-0.1566,-0.12,0.56,0.6,0.44,0.48,0.04,0.16,-0.2,-0.04,-0.32,-0.12,-0.2,0,-0.04,0.16,0.16,0.52,0.52,0.92,0.88,0.84,0.84,0.76,0.76,1,1,0.72,0.76,0.68,0.8,0.84,0.88,-0.1804,0.5082,0.541,0.3442,0.4098,0.1148,0.2132,-0.1148,0.0492,-0.1476,-0.0164,-0.1148,0.0164,-0.0164,0.082,0.1476,0.4098,0.5082,0.8688,1,0.7378,0.6722,0.541,0.9344,0.8688,0.7704,0.7704,0.6394,0.705,0.6394,0.7704,0.705,-0.2644,0.2184,0.816,0.931,0.4482,0.4482,0.4252,0.3334,0.1264,0.4482,0.6322,1,0.885,0.4482,0.3104,0.2644,0.1724,0.1954,0.3334,0.4252,0.6322,0.3794,0.1034,-0.1264,-0.1724,-0.0574,-0.1724,-0.1724,-0.0574,-0.0344,0.0574,0.3334,-1,-1,-0.9904,-0.994,-0.994,-0.9346,-0.684,-0.7348,-0.7976,-0.8138,0.2394,0.073,-0.0186,0.0544,0.4134,0.9352,0.5428,0.0736,-0.0272,-0.0888,-0.4626,-0.6172,-0.9178,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9874,-0.989,-0.9898,-0.6582,1,-0.2698,0.0312,-0.2876,0.318,0.8398,0.5746,0.7032,0.7706,0.9506,0.347,-0.0714,-0.1474,-0.1954,-0.506,-0.7184,-0.9358,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,-0.9668,-0.78,-0.7168,0.51,0.64,0.6866,0.4866,-0.3268,-0.4,-0.3334,-0.269,-0.5868,-0.7984,-0.8164,-0.8454,-0.8476,-0.8142,-0.892,-0.9076,-0.8908,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,-1,1,1,1,-0.4858,-0.6,0.3428,1,1,-0.6286,-0.6,-0.4,-0.4,-0.3428,-0.2858,-0.6,-0.4286,0.9714,1,-0.5428,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.4868,0.492,0.4952,0.508,0.507,0.5142,0.5164,0.5142,0.5192,0.5594,0.7046,0.7016,0.7306,0.711,0.7036,0.6876,0.6138,0.4592,-0.055,-0.4614,-0.7066,0.0352,0.6106,0.7282,0.8114,0.941,0.5976,1,-0.403,0.0284,0.0544,0.0544,0.1286,0.1286,0.024,0.1504,0.1764,0.2636,0.3552,0.499,0.7254,0.8082,0.891,1,0.8736,0.8868,0.8344,0.926,0.8606,0.8606,0.878,0.8082,0.7212,0.7254,0.7864,0.6994,0.5948,0.3376,0.3376,0.0458,-0.2412,-0.2304,-0.2092,-0.3014,-0.2802,-0.1986,-0.0354,0.11,0.1454,0.429,0.3758,0.4894,0.6064,0.7696,1,0.8936,0.727,0.8618,0.9184,0.954,0.8334,0.954,0.727,0.5992,0.7836,0.7554,0.6774,0.7128,0.4504,0.4008,0.422,0.0602,0.1358,0.4426,0.3334,-0.0088,-0.0652,-0.0794,0.037,0.1922,0.4886,0.6826,0.8236,0.7178,0.9048,0.9612,1,0.9718,0.926,0.8342,0.9366,0.9964,0.9648,0.933,0.7108,0.672,0.7566,0.6156,0.5838,0.4708,0.3156,0.2734,0.1888,-0.0652,1,-1,-1,1,0,-1,-1,0.0666,-1,0.3738,1,0.3132,0.4748,0.2526,0.1112,0.5556,0.5152,0.2526,0.4546,0.4142,0.5758,0.495,0.2324,0.1718,0.192,0.2728,0.3536,0.3132,0.596,0.5354,0.4344,0.293,0.2122,0.0506,0.1516,-0.0304,-0.0102,-0.091,0.0304,0.0102,-0.7374,'17'
0.117,0.8378,0.843,0.516,0.4654,0.0904,0.0586,-0.2048,-0.2102,-0.1356,-0.1968,-0.1436,-0.1808,-0.0824,-0.032,0.1462,0.141,0.4016,0.4308,0.8164,0.8564,1,0.9814,0.843,0.851,0.9548,0.9628,0.7074,0.6676,0.7234,0.7686,0.7234,0.1546,0.8536,0.826,0.5802,0.5166,0.1602,0.0636,-0.1216,-0.2348,-0.0856,-0.2044,-0.1326,-0.2624,-0.127,-0.2514,0.0746,-0.0636,0.232,0.5138,0.8398,0.732,0.8812,0.7818,1,0.7984,0.511,0.3012,0.2292,0.1216,0.127,0.185,0.4226,0.2356,1,0.9428,0.9124,0.7576,0.2222,0.0202,0.0034,-0.1784,0.0304,-0.1784,-0.027,-0.2122,-0.0976,0.1448,0.2458,0.4546,0.4546,0.8014,0.7878,0.6498,0.697,0.7004,0.5758,0.202,0.1078,-0.1346,-0.1986,-0.0034,-0.0168,-0.0472,0.2122,0.1086,0.793,0.6994,1,0.783,0.1386,-0.0084,0.1018,0.0218,0.0518,0.1352,0.1052,0.4658,0.3322,0.3522,0.3222,0.5292,0.2588,0.232,0.359,0.4424,0.5792,0.5894,-0.0318,-0.0852,-0.222,-0.3456,-0.2086,-0.2454,-0.0418,0.1186,0.2788,0.0328,0.6558,0.7026,1,0.7872,0.1236,0.0172,0.086,0.1236,0.1236,0.5368,0.4022,0.446,0.2738,-0.0046,-0.299,-0.3082,-0.4272,-0.3584,-0.0548,-0.0516,0.2206,0.133,-0.1268,-0.277,-0.4022,-0.5586,-0.3928,-0.5306,-0.4272,-0.2958,-0.1362,0.1166,0.8424,0.7734,1,0.826,-0.028,0.087,0.2118,0.4812,0.6454,0.4746,0.0968,-0.2906,-0.3366,-0.4286,-0.4746,-0.688,-0.6716,-0.6256,-0.4516,-0.33,-0.3004,-0.3366,-0.642,-0.642,-0.711,-0.6716,-0.6912,-0.6814,-0.573,-0.4056,0.1002,-0.2088,0.9602,1,0.0498,0.0458,0.344,0.6302,0.5428,0.7614,0.9802,0.6422,-0.1054,-0.0338,0.0298,-0.2286,-0.157,-0.2446,-0.1094,-0.181,-0.2366,-0.2804,-0.2326,-0.1372,-0.161,-0.2842,-0.4394,-0.3558,-0.3758,-0.511,-0.4752,-0.1968,0.01,-0.1,0.85,1,0.65,-0.1,-0.35,-0.55,-0.65,-0.3,-0.25,-0.5,-0.4,-0.3,-0.6,-0.1,-0.1,-0.4,0.1,0.25,0.4,0.55,0.65,0.75,0.25,0.6,0.75,1,0.95,0.65,0.8,0.7,0.7,-0.1708,0.5122,0.3658,0.317,0.122,-0.2682,-0.317,-0.4634,-0.4146,-0.4146,-0.4146,-0.4146,-0.4146,-0.317,-0.2196,-0.1708,-0.1708,-0.0244,0.317,0.4634,0.9512,1,0.8048,0.756,0.9024,0.9024,0.6586,0.6586,0.3658,0.4634,0.7074,0.6586,0.0352,0.7648,0.6942,0.5764,0.4824,0.0118,-0.1058,-0.1294,-0.2942,-0.2236,-0.3648,-0.2236,-0.4118,-0.5058,-0.2706,-0.0118,-0.0824,0.153,0.8588,1,0.5294,0.6706,0.7412,0.7648,0.3882,0.3412,-0.0118,0.0118,0.0588,0.1058,-0.0118,0.0352,-1,-0.9832,-0.9786,-0.9766,-0.9776,-0.8106,-0.7582,-0.749,-0.8534,-0.8908,-0.791,0.7508,0.6462,0.5146,0.4112,0.3916,0.51,0.6108,0.5782,0.5212,-0.1572,-0.6546,-0.7658,-0.9142,-0.9682,-0.957,-0.959,-1,-1,-1,-1,-1,-1,-1,-0.9718,-0.965,-0.9626,-0.965,-0.1266,-0.1996,0.3402,0.1572,-0.0486,-0.2838,0.8348,0.5952,0.3956,0.2144,0.1904,0.3244,0.4816,0.3998,0.331,-0.3188,-0.7008,-0.79,-0.8864,-0.9164,-0.9164,-0.9164,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.6868,-0.9234,-0.6434,-0.4468,0.4932,0.7366,0.73,0.5866,0.61,-0.53,-0.702,-0.714,-0.778,-0.86,-0.914,-0.854,-0.892,-0.908,-0.9492,-0.951,-0.9134,-0.6268,-0.58,-0.6168,-0.75,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,-1,1,1,1,0.1428,-0.8,0.2286,0.8286,1,-0.6572,-0.6286,-0.2858,-0.6,-0.8,-0.5428,-0.3142,-0.5142,-0.3428,-0.7714,-0.6286,-0.6572,-0.8858,-0.9428,-0.4286,-1,-1,-1,-1,-1,-1,0.012,0.0178,0.0384,0.0704,0.076,0.088,0.0898,0.094,0.1288,0.2382,0.8524,0.8382,0.8446,0.8352,0.8456,0.8094,0.7638,0.6746,0.2778,-0.226,-0.7466,0.2,-0.3648,0.207,0.8968,0.9508,0.8544,1,-0.145,0.0038,-0.0074,0.0372,0.0112,-0.0892,0.0074,0.0484,0.0484,0.1264,0.2566,0.3532,0.6172,0.9144,0.933,1,0.8774,0.7324,0.8476,0.948,0.9108,0.6506,0.5874,0.5428,0.5502,0.513,0.4982,0.4498,0.4386,0.3382,0.3198,-0.249,-0.6762,-0.3416,-0.3808,-0.42,-0.4128,-0.3666,-0.242,-0.0782,-0.025,0.1672,0.338,0.299,0.6014,0.8576,1,0.911,0.7972,0.7652,0.7366,0.8078,0.968,0.7864,0.6512,0.7224,0.7296,0.7188,0.758,0.7616,0.5588,0.6228,0.363,-0.0072,-0.5292,-0.347,-0.3058,-0.323,-0.4296,-0.4502,-0.1512,-0.055,-0.079,-0.024,0.3058,0.4708,0.756,0.9656,1,0.6736,0.7422,0.7216,0.78,0.8866,0.8798,0.8076,0.5602,0.6392,0.708,0.6014,0.5636,0.6564,0.5842,0.6804,0.3264,-0.0584,0.274,-1,-1,1,-1,-1,-0.4,0.1666,-1,-0.566,-0.151,0.0944,0.3774,0.8114,1,0.3584,0.1886,0.566,0.3584,-0.0566,0.3396,0.2452,0.283,0.5284,0.8868,-0.0944,0.151,0.3396,0.5284,0.6416,0.1886,0.3774,0.132,-0.2076,0.585,0.6604,0,-0.2076,-0.3774,-0.3208,-0.5284,'17'
-0.3506,0.0848,0.1956,0.2644,0.476,0.7564,1,0.9532,0.7934,0.7614,0.9164,0.7688,0.4858,0.3654,0.2694,0.1956,0.171,0.1956,0.412,0.631,0.5768,0.2202,0.0184,-0.1906,-0.3234,-0.3038,-0.1512,-0.0184,0.0036,0.144,0.3654,0.3948,-0.2736,0.1612,0.1518,0.2952,0.5484,0.577,1,0.9116,0.7922,0.8232,0.9116,0.4838,0.252,0.166,0.0682,0.0204,0.006,0.0634,0.233,0.2162,0.1876,0.0704,-0.2258,-0.4576,-0.503,-0.4504,-0.4814,-0.4744,-0.4098,-0.276,-0.0346,0.0322,-0.2692,0.1554,0.1626,0.2812,0.6156,0.6536,0.9716,0.841,0.853,0.9762,1,0.3334,0.2076,0.2266,-0.0296,-0.0772,0.1056,0.0628,0.217,0.1246,0.2456,-0.1554,-0.1792,-0.433,-0.535,-0.478,-0.5872,-0.5422,-0.3024,-0.3808,-0.2076,0.0012,-0.2594,0.1742,0.1912,0.3032,0.659,0.6322,0.939,0.7662,0.8514,0.9902,1,0.464,0.3422,0.3764,0.201,0.2326,0.3204,0.3276,0.4666,0.2546,0.011,-0.3934,-0.464,-0.4982,-0.6712,-0.732,-0.6078,-0.6102,-0.5152,-0.5298,-0.3398,0.1132,-0.1986,0.2482,0.1836,0.3002,0.675,0.6848,1,0.8536,0.655,0.7718,0.799,0.5956,0.5086,0.6402,0.3622,0.3126,0.6526,0.5756,-0.0024,-0.2034,-0.5384,-0.5384,-0.5558,-0.9306,-0.7742,-0.665,-0.8486,-0.8486,-0.608,-0.6328,-0.4442,-0.1488,-0.1216,0.3704,0.3386,0.4894,0.8412,0.8466,1,0.8836,0.7064,0.5424,0.6322,0.992,0.963,0.8492,0.6694,0.7486,0.5158,0.3624,-0.3174,-0.4418,-0.5978,-0.7354,-0.7222,-0.8334,-0.836,-0.8386,-0.9708,-0.8598,-0.7408,-0.6826,-0.3334,-0.2884,0.0306,0.6606,0.5168,0.6056,0.945,1,0.9174,0.8288,0.584,0.4618,0.5902,0.8074,1,0.844,0.7248,0.9022,0.7828,0.1652,-0.1926,-0.373,-0.6942,-0.8074,-0.6972,-0.6484,-0.5076,-0.7432,-0.8226,-0.6452,-0.7218,-0.633,-0.7004,-0.263,-0.4348,-0.174,0.1304,0.174,0.174,0.6522,0.9566,1,0.6956,0.6522,0.913,0.913,0.4348,0.3044,-0.2174,0.1304,0.0434,0.174,0.2608,0.6956,0.6522,0.0434,0,-0.6956,-0.4348,-0.2608,-0.2608,-0.174,0.0434,0,0.5652,0.5218,-0.4782,-0.3044,-0.174,0.087,0.2174,0.8696,1,0.6086,0.6086,0.5652,0.8696,0.913,0.5652,0.3044,0.3478,-0.2174,0,-0.1304,0.3914,0.7392,0.6522,0.0434,-0.0434,-0.4782,-0.4348,-0.3914,0.1304,0.2608,0.087,0.2174,0.6086,0.6522,-0.2272,0.2272,0.1818,0.25,0.6818,0.6364,1,0.8636,0.591,0.7954,0.7954,0.409,0.4318,0.591,0.2954,0.2046,0.5682,0.5,0.1364,-0.0682,-0.75,-0.409,-0.4546,-0.659,-0.7728,-0.6136,-0.7272,-0.7272,-0.7272,-0.6364,-0.4772,-0.1818,-1,-1,-1,-1,-1,-1,-1,-1,-0.9816,-0.9854,-0.4666,0.6566,0.8554,0.7022,0.7644,0.8332,0.6692,0.4548,0.2852,0.192,0.224,-0.0864,-0.839,-0.9408,-0.9582,-0.935,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9868,-0.9844,-0.4656,0.8824,0.8338,0.5608,0.631,0.7546,0.5732,0.2538,0.0142,-0.1716,-0.219,-0.5472,-0.8844,-0.9252,-0.9248,-0.9504,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.8734,-0.6934,-0.6674,-0.6674,-0.591,-0.5946,-0.6492,-0.6946,-0.7364,-0.7982,-0.835,-0.7234,-0.8684,-0.6034,-0.5468,-0.5734,-0.5534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,1,1,1,-0.7142,-0.8,-1,-0.9714,-0.8572,-0.8858,-0.8286,-0.9714,-0.8286,0.1142,0.1142,-0.8,-0.9714,-0.7428,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6666,0.3412,-0.5506,0.537,0.9926,1,0.8856,1,-0.25,-0.0416,0.7084,1,1,0.7916,0.7916,0.75,0.5834,0.5416,0.7084,0.5834,0.25,0.3334,0.6666,0.8334,0.625,0.3334,0.5416,0.7084,0.5834,0.5834,0.5416,0.25,0,0.2916,0.2916,-0.125,-0.3334,-0.4166,-0.2916,-0.5,0.0702,0.2808,0.5614,1,0.7894,0.7018,0.6666,0.3508,0.4036,0.5964,0.6842,0.2456,-0.0526,0.2106,0.3158,0.7544,0.614,0.035,0.228,0.5964,0.4736,0.4036,0.421,0.228,-0.0878,0.193,0.1754,-0.0878,-0.228,-0.4386,-0.4386,-0.5438,0.3174,0.6032,0.9048,0.9366,1,0.9682,0.9366,0.7142,0.635,0.746,0.746,0.5396,0.2858,0.4762,0.635,0.7142,0.7142,0.4762,0.4286,0.3492,0.2698,0.3016,0.3174,0.127,-0.0318,0.2222,0.0318,-0.365,-0.238,-0.3968,-0.4444,-0.6984,1,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.375,0.0178,-0.0358,0.2322,0.3572,0.2142,0.7858,0.8392,0.8036,0.8036,-0.0536,-0.0358,0.0536,0.1428,0.5714,0.375,0.5,0.3928,0.6786,1,0.9108,0.1964,0,0.0358,-0.1428,-0.1964,-0.0536,-0.2322,-0.1964,0,0.1072,-0.1608,'18'
-0.5166,0.1792,0.1714,0.3386,0.5272,0.6892,0.9708,1,0.8646,0.8804,1,0.7556,0.4848,0.2696,0.2908,0.097,0.0864,0.182,0.2298,0.4342,0.429,0.3174,0.0678,-0.0624,-0.2776,-0.3838,-0.2828,-0.1686,-0.097,0.2378,0.2642,0.19,-0.3272,0.0766,0.1902,0.3202,0.4872,0.6218,0.9676,0.8562,0.696,0.9606,1,0.4292,0.1346,0.0672,-0.0488,0.0092,-0.0534,-0.0208,0.2204,0.2576,0.3062,0.065,-0.051,-0.304,-0.399,-0.4338,-0.457,-0.4038,-0.2344,-0.0534,-0.0024,-0.044,-0.3294,0.0514,0.2192,0.3078,0.521,0.6646,0.8778,0.691,0.7556,1,0.9402,0.1258,-0.0012,0.0682,-0.109,-0.1616,-0.0706,0.006,0.0706,0.4802,0.4276,-0.1474,-0.339,-0.4252,-0.5904,-0.612,-0.6646,-0.5712,-0.4228,-0.1832,-0.1426,-0.2096,-0.3008,0.1028,0.233,0.3408,0.5814,0.6692,0.9348,0.7544,0.7894,1,0.985,0.3284,0.163,0.0452,0.0652,0.0652,0.0502,0.1504,0.2706,0.2006,0.1128,-0.3158,-0.376,-0.5162,-0.629,-0.7394,-0.5814,-0.599,-0.3934,-0.1128,-0.0176,-0.1002,-0.2716,0.1614,0.2466,0.3842,0.652,0.6646,1,0.8924,0.6996,0.7622,0.8398,0.6496,0.6146,0.4142,0.2866,0.4318,0.5544,0.5594,0.264,0.1064,-0.249,-0.4068,-0.3668,-0.5018,-0.522,-0.652,-0.642,-0.527,-0.3968,-0.3542,-0.1114,-0.0212,-0.254,0.2434,0.2514,0.4392,0.7672,0.8386,0.9894,0.955,0.7724,0.6482,0.791,0.8836,1,0.7302,0.717,0.8202,0.7248,0.5344,0.3492,-0.0688,-0.4232,-0.3784,-0.4498,-0.492,-0.41,-0.5476,-0.4708,-0.5608,-0.492,-0.4948,-0.3756,-0.0794,-0.0544,0.5676,0.4672,0.4924,0.7154,0.8716,0.8158,0.802,0.4672,0.5314,0.5146,0.6122,0.9052,0.9246,1,0.7964,0.8662,0.6122,0.2274,-0.2218,-0.325,-0.4114,-0.4114,-0.3836,-0.403,-0.431,-0.4504,-0.3054,-0.2692,-0.4784,-0.5482,-0.2748,-0.5294,0.5294,0.7058,0.353,0.647,0.5882,0.8824,0.8824,1,0.8236,1,0.353,0.4706,0.353,0.353,-0.2352,0.2942,-0.0588,0,0.4118,0.647,0.647,0.353,0.1764,0.2352,-0.353,0,0.0588,-0.2352,-0.0588,0.4118,0.4118,-0.3572,0.1072,0.2142,0.3214,0.5,0.7858,1,0.9642,0.7142,0.8214,0.8572,0.7858,0.5714,0.4286,0.3214,0.2858,0.1072,0.25,0.3214,0.5714,0.6428,0.5358,0.1786,0.0358,0.0358,-0.0714,-0.0358,0.2142,0.2142,0.3928,0.4642,0.4286,-0.2292,0.2084,0.25,0.3958,0.6666,0.7292,1,0.9376,0.6876,0.6666,0.7708,0.6666,0.6666,0.4376,0.375,0.5,0.6876,0.7292,0.25,0,-0.2084,-0.3124,-0.3542,-0.4792,-0.375,-0.5624,-0.5624,-0.4376,-0.2916,-0.2084,-0.0834,0,-1,-1,-1,-1,-1,-1,-1,-1,-0.972,-0.9748,-0.9678,0.2838,0.7168,0.8976,0.899,0.686,0.658,0.6762,0.6678,0.5936,0.5402,-0.0526,-0.8108,-0.8668,-0.9074,-0.916,-0.9384,-0.9482,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9824,-0.978,-0.9706,0.2808,0.9012,0.8922,0.7754,0.5688,0.5168,0.3948,0.414,0.3364,0.077,-0.4608,-0.8252,-0.8492,-0.8746,-0.8844,-0.897,-0.9138,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.9534,-0.7868,-0.656,-0.6764,-0.68,-0.6182,-0.6128,-0.68,-0.7346,-0.7056,-0.7856,-0.8256,-0.831,-0.57,-0.3568,-0.4668,-0.4,-0.4034,-0.5934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5714,-0.7142,1,1,-0.5714,-0.8858,-0.8858,-0.9142,-0.9428,-0.8858,-0.8,-0.9428,-0.2572,0.1428,0,-0.8572,-0.9142,-0.7142,-0.6858,-0.8858,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6534,0.2942,-0.9702,-0.6054,0.4302,0.3854,0.645,1,-0.0666,0.0476,0.0096,1,0.6,-0.0858,0.4286,0.619,0.5238,0.5048,0.6,0.2952,0.4858,0.0476,0.5048,-0.162,-0.2,0.2572,0.2952,0.7142,0.5048,0.162,-0.219,0.2,0.2572,0.2952,-0.2572,0.3142,-0.4858,-0.3524,0.2762,-0.3524,0.031,-0.1428,0.7516,0.7764,0.4782,0.3788,0.7018,0.677,0.913,0.9504,0.4658,0.7392,1,0.2298,0.5032,0.4286,0.677,0.3168,0.205,0.4286,0.4782,0.6024,0.2546,0.5156,0.2546,0.3664,0.5404,0.4906,0.2422,-0.056,0.2298,0.0062,-0.018,-0.1258,0.3174,0.8562,0.7486,1,1,0.6766,0.3892,0.3892,0.545,0.497,0.6886,0.6886,0.545,0.6646,0.6646,0.2934,0.1258,0.461,0.3414,0.7366,0.545,0.545,0.6048,0.7126,0.4372,0.4012,0.2814,0.1138,-0.006,-0.6168,-0.996,1,-1,-1,-1,-1,-1,-1,-1,-0.233,0.0076,-0.203,0.2932,0.3834,0.2932,0.7894,1,0.6842,0.5038,0.2782,0.0828,0.3234,0.0526,0.188,0.218,-0.0376,0.0226,0.2632,0.8796,0.8948,0.9098,0.5038,0.3534,0.3984,0.3384,0.2782,-0.0226,-0.1278,-0.3082,-0.1428,-0.188,'18'
-0.46,-0.0368,0.1318,0.2398,0.689,0.7452,0.5508,0.365,0.2614,0.2008,0.2008,0.188,0.2398,0.3866,0.5206,0.689,0.905,1,0.8444,0.7192,0.6976,0.6674,0.758,0.715,0.7538,0.6026,0.5378,0.5422,0.5076,0.5162,0.5422,0.4254,-0.3884,-0.006,0.1872,0.3118,0.5534,0.5774,0.6258,0.5412,0.3762,0.2596,0.3158,0.32,0.2958,0.493,0.5856,0.7102,0.9718,1,0.6298,0.5614,0.6136,0.6016,0.7142,0.658,0.67,0.5212,0.4446,0.4286,0.328,0.3844,0.324,0.328,-0.2864,0.1624,0.2308,0.4102,0.577,0.6452,0.8376,0.8162,0.547,0.4572,0.4572,0.4188,0.5428,0.7052,0.7394,1,0.9358,0.8376,0.7094,0.6496,0.641,0.7264,0.7948,0.7864,0.6368,0.5512,0.4488,0.4402,0.4658,0.3676,0.218,0.188,-0.233,0.2536,0.1958,0.431,0.5876,0.7484,0.7608,0.8762,0.5794,0.6412,0.5588,0.5794,0.7896,0.7484,1,0.9052,0.8474,0.7114,0.6206,0.5092,0.6578,0.7526,0.831,0.6372,0.6824,0.435,0.431,0.402,0.3568,0.068,0.0104,0.1588,-0.0976,0.4552,0.4024,0.4024,0.6952,0.8414,0.8536,0.9674,0.691,0.687,0.5082,0.5692,0.7032,0.7318,0.9878,1,0.5488,0.374,0.4918,0.4716,0.5326,0.6056,0.7398,0.5162,0.5,0.374,0.2032,0.065,0.0528,-0.065,-0.1952,0.0204,-0.2226,0.4884,0.422,0.3688,0.3222,0.7874,0.7542,0.8338,0.681,0.2624,0.1628,0.0898,0.3488,0.4418,0.6744,0.8804,1,0.5016,0.1362,0.2226,0.4618,0.8672,0.8804,0.6146,0.5282,0.3156,0.2292,0.1628,-0.0034,-0.3024,-0.2956,-0.2692,-0.5234,-0.3832,-0.3458,-0.6916,-0.6728,-0.6542,-0.57,-0.3832,-0.7944,-0.3644,-0.5234,-0.7196,-0.3926,-0.4206,-0.5888,-0.1122,-0.0094,-0.43,-0.5982,-0.486,-0.215,0.2336,0.43,0.729,1,0.7102,0.4672,0.3272,0.3458,0.0934,0.1308,-0.028,-0.4694,-0.2654,-0.3878,-0.0204,0.7142,0.8776,0.7142,-0.0612,-0.1836,0.0204,-0.2654,-0.102,0.1428,0.1428,0.3878,0.4286,0.9184,1,0.796,0.4286,0.5102,0.3878,0.6734,0.5918,0.6734,0.3878,0.4286,0.347,0.3878,0.4694,0.4286,0.2244,-0.4716,-0.0944,0.132,0.3208,0.6226,0.6982,0.3208,0.3584,0.3208,0.2452,0.283,0.1698,0.2452,0.4716,0.4716,0.7358,0.6982,1,0.7736,0.7358,0.6604,0.6982,0.7736,0.7358,0.6982,0.585,0.5094,0.3584,0.585,0.5094,0.6226,0.434,-0.1,0.46,0.42,0.32,0.56,0.66,0.84,0.88,0.64,0.54,0.22,0.34,0.38,0.54,0.68,1,0.98,0.46,0.48,0.44,0.58,0.72,0.64,0.76,0.68,0.46,0.4,0.22,0.12,-0.32,-0.12,0.06,-1,-1,-1,-1,-1,-1,-1,-1,-0.9826,-0.979,-0.4698,0.7008,0.906,0.8632,0.8422,0.8284,0.9344,0.865,0.3996,-0.218,0.0748,-0.1058,-0.6506,-0.7864,-0.843,-0.9088,-0.9324,-0.9444,-0.9114,-0.886,-0.8156,-0.864,-0.8996,-1,-1,-1,-1,-1,-1,-1,-1,-0.9878,-0.9862,-0.4646,0.5828,0.8382,0.9262,0.9122,0.812,0.8226,0.605,0.0626,-0.5886,-0.5816,-0.5126,-0.51,-0.4884,-0.4852,-0.5056,-0.5466,-0.5596,-0.6188,-0.7054,-0.6794,-0.6276,-0.6494,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.96,-0.69,-0.6068,-0.71,-0.5534,-0.4934,-0.5368,-0.6468,-0.6568,-0.6768,-0.4468,-0.6134,-0.1234,0.7766,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,1,1,1,-0.4858,-0.4572,-0.3714,-0.7142,-0.4572,0.1714,0.4572,0.3714,1,1,-0.2572,-0.5428,-0.8858,-0.9428,-0.9428,-0.9428,-0.8286,-0.8858,-0.9428,-0.8,-0.7428,1,1,1,1,1,1,1,1,1,1,0.031,0.0816,0.0642,0.043,0.0204,-0.0122,-0.0706,-0.1898,-0.3748,-0.3358,-0.7466,-0.3412,-0.4706,0.3184,0.691,0.7876,0.8776,1,-0.0286,0.0858,0.4858,0.5142,0.4,0.4286,0.3714,0.6572,0.8858,0.9142,0.8286,0.8,0.8,0.7714,0.8,0.7714,0.6858,0.8572,0.9714,1,1,0.9428,0.8858,0.8572,0.7714,0.6858,0.5428,0.4,0.2,0.0286,-0.0286,-0.5142,0.0984,0.3442,0.6066,0.5246,0.246,0.3114,0.246,0.377,0.9508,1,0.6886,0.6886,0.623,0.6066,0.623,0.5574,0.4754,0.6722,0.836,0.9344,0.8852,0.8524,0.7214,0.8032,0.6066,0.5902,0.4754,0.3114,0.082,-0.2132,-0.4262,-0.623,0.1968,0.4918,0.8852,0.8032,0.5574,0.459,0.623,0.7868,0.9016,1,0.8524,0.836,0.9016,0.7378,0.705,0.705,0.6558,0.754,0.8688,0.918,0.9016,0.8852,0.7704,0.7214,0.5738,0.459,0.4098,0.1968,-0.1312,-0.4098,-0.4426,-0.6722,0.5782,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.5948,-0.5556,-0.5556,-0.621,-0.268,-0.255,-0.2156,-0.1504,0.0326,-0.0458,-0.2026,0.0326,0.0588,-0.0588,-0.085,0.1504,0.085,0.255,0.6862,0.5816,0.5816,0.5164,0.6862,0.7124,0.9216,0.8432,0.7254,0.8562,0.9346,0.9738,1,0.7778,'19'
-0.301,0.2312,0.2634,0.4892,0.6774,0.7312,0.5162,0.4302,0.1882,0.258,0.172,0.215,0.344,0.3764,0.4516,0.5216,0.7904,0.914,1,0.914,0.758,0.758,0.8226,0.828,0.8818,0.699,0.7312,0.586,0.5646,0.5376,0.5646,0.5752,-0.3152,0.174,0.2446,0.4836,0.75,0.913,0.6684,0.4892,0.299,0.337,0.2718,0.2336,0.424,0.337,0.4402,0.5164,0.6684,0.9022,1,0.6576,0.625,0.5816,0.5816,0.7336,0.6902,0.6794,0.5706,0.4022,0.1848,0.2174,0.174,0.3044,-0.28,0.1734,0.2054,0.392,0.7546,0.8774,0.5894,0.6106,0.3974,0.3706,0.328,0.2534,0.3866,0.2906,0.4134,0.6266,0.696,1,1,0.7334,0.68,0.6694,0.552,0.6694,0.5734,0.6746,0.264,0.328,0.3066,0.248,0.2374,0.2694,-0.2602,0.2076,0.198,0.389,0.6946,0.7948,0.7374,0.7566,0.4892,0.432,0.432,0.2984,0.4702,0.4798,0.5752,0.8186,0.8282,1,0.9332,0.747,0.6038,0.6946,0.661,0.747,0.6946,0.7136,0.3652,0.3174,0.3412,0.2362,0.2268,0.1838,-0.3054,0.1774,0.1872,0.3842,0.6404,0.739,0.7784,0.8178,0.4778,0.4532,0.4976,0.404,0.5172,0.596,0.7044,0.9606,1,0.596,0.5812,0.6108,0.5566,0.6502,0.5666,0.6946,0.4926,0.468,0.2168,0.2464,0.0148,0,-0.0394,-0.0788,-0.1428,0.3818,0.3194,0.5844,0.8494,0.974,0.9272,0.9844,0.6104,0.6156,0.6156,0.5532,0.7662,0.7142,0.922,0.865,1,0.6624,0.6104,0.6416,0.626,0.6624,0.6104,0.6676,0.548,0.2988,0.174,0.2468,-0.0078,-0.1376,-0.0494,-0.065,-0.069,0.5518,0.4344,0.4206,0.5794,0.862,0.7104,0.7862,0.5862,0.3724,0.2276,0.3104,0.731,0.7518,0.9586,1,0.7172,0.6828,0.462,0.1518,0.531,0.7586,0.6758,0.5932,0.338,0.262,0.1518,0.1862,-0.0758,-0.0344,-0.2206,-0.1104,-0.5136,0.1892,0.2432,0.4054,0.6216,0.6216,0.5136,0.2972,0.027,0.027,-0.1352,-0.081,0.081,0.081,0.2972,0.4594,0.6216,1,0.8378,0.7838,0.5676,0.5676,0.5676,0.5136,0.8378,0.3514,0.5676,0.4054,0.1352,0.1892,0.2972,0.1352,-0.3846,0.077,0.2692,0.5,0.6924,0.8462,0.6154,0.3076,0.2308,0.1924,0.077,0.1924,0.3846,0.3846,0.5,0.5384,0.8846,0.8846,1,1,0.7692,0.8076,0.9616,0.8462,0.9616,0.8846,0.6924,0.6154,0.5384,0.4616,0.577,0.6154,-0.2352,0.2352,0.255,0.451,0.7058,0.7844,0.8628,0.8824,0.5098,0.4902,0.5294,0.451,0.6078,0.6666,0.7648,0.9608,1,0.6078,0.5294,0.5686,0.5098,0.6274,0.5882,0.5882,0.4118,0.3726,0.1764,0.196,-0.0784,-0.0392,-0.2352,-0.1764,-1,-1,-1,-1,-1,-1,-1,-0.9826,-0.9826,-0.9544,-0.7186,0.591,0.9072,0.9398,0.8944,0.7168,0.4846,0.3916,0.398,0.3762,0.336,-0.3888,-0.715,-0.4298,-0.6694,-0.9134,-0.9344,-0.9636,-0.97,-0.9744,-0.9672,-0.9744,-0.9744,-1,-1,-1,-1,-1,-1,-1,-0.988,-0.9862,-0.7538,-0.405,0.3404,0.86,0.735,0.6756,0.483,0.3244,0.2264,0.2946,0.1412,-0.165,-0.6448,-0.8016,-0.716,-0.6264,-0.4166,-0.4478,-0.5404,-0.5152,-0.6098,-0.591,-0.618,-0.6222,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.9668,-0.6668,-0.3434,-0.365,-0.5,-0.616,-0.652,-0.748,-0.672,-0.74,-0.652,-0.684,-0.624,-0.592,-0.44,-0.5134,0.5932,0.9432,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,1,0.7142,-0.4858,-0.8858,-0.8572,-0.7714,-0.6858,-0.5714,-0.0858,1,1,0.5428,1,1,-0.3428,-0.6858,-0.8572,-0.8286,-1,-0.9714,-0.8286,-0.8,1,1,1,1,1,1,1,1,1,1,0.4016,0.4016,0.3324,0.2962,0.2704,0.2146,0.1868,0.125,0.0402,-0.4092,-0.7334,-0.4942,-0.3436,-0.3846,0.9698,0.8132,0.805,1,-0.41,-0.3382,0.2518,0.2518,0.1224,0.0792,0.1798,0.4388,0.7986,0.8848,0.7266,0.8562,0.8562,0.741,0.6834,0.8418,1,0.9568,0.9712,0.8274,0.8274,0.8992,0.8562,0.8562,0.6116,0.4964,0.2662,0.108,0.0648,-0.2806,-0.3094,-0.6402,-0.4976,-0.1628,0.5162,0.1442,0.0884,-0.0232,0.0698,0.414,0.907,0.9348,0.7768,0.879,0.9256,0.8046,0.7302,0.8512,0.9348,0.9256,0.8976,0.8512,0.8326,0.8976,1,0.879,0.786,0.6186,0.3954,0.2838,0.1348,-0.2094,-0.4418,-0.6466,-0.239,0.239,0.6682,0.561,0.1414,0.1902,0.1512,0.4244,0.9024,1,0.9024,0.8634,0.9512,0.8342,0.6,0.7756,0.7952,0.6586,0.8048,0.5318,0.7268,0.8536,0.756,0.6878,0.7756,0.4048,0.5122,0.1414,0.044,-0.1804,-0.356,-0.3854,-0.3596,-1,-1,1,-1,-1,-0.8,-0.6334,-1,-0.7086,-0.588,-0.397,-0.1558,-0.196,-0.387,-0.1356,-0.2362,-0.015,-0.1256,0.0954,-0.0754,0.015,0.216,0.1558,0.196,0.186,0.196,0.2764,0.397,0.3066,0.608,0.7286,0.6984,0.5478,0.7588,0.8894,0.7488,0.6784,0.6884,1,0.8894,'19'
0.0982,0.8844,0.896,0.472,0.4182,0.0096,-0.1176,-0.1908,-0.2986,-0.2756,-0.3718,-0.3026,-0.3372,-0.129,-0.1484,-0.0944,-0.0212,0.2292,0.2794,0.711,0.8034,1,0.9576,0.684,0.6378,0.7534,0.8536,0.8382,0.6608,0.4836,0.3988,0.4644,0.168,0.8816,0.8358,0.4122,0.2862,-0.0802,-0.2748,-0.3054,-0.5076,-0.271,-0.5306,-0.3778,-0.4122,-0.2558,-0.2786,-0.1488,-0.0382,0.042,0.2748,0.4122,0.8778,1,0.9732,0.8512,0.626,0.6412,0.6832,0.8168,0.7558,0.5954,0.4046,0.3626,0.173,0.9102,0.7932,0.3888,0.1236,-0.137,-0.6044,-0.618,-0.4562,-0.4652,-0.5236,-0.6808,-0.6494,-0.7574,-0.5012,-0.4382,-0.2988,-0.0562,-0.0112,0.4426,0.4426,1,0.8922,0.7708,0.537,0.4382,0.6898,0.8338,0.8382,0.8606,0.5192,0.4562,0.2188,1,0.8542,0.473,0.1342,-0.28,-0.36,-0.3552,-0.5952,-0.6942,-0.633,-0.8258,-0.9388,-0.6518,-0.52,-0.5342,-0.5152,-0.0964,-0.1906,0.2658,0.5012,0.7552,0.873,0.9952,0.2706,0.2612,0.7742,0.6894,0.9294,0.713,0.6142,0.4258,0.2402,1,0.849,0.437,0.1304,-0.1624,-0.5424,-0.5102,-0.611,-0.698,-0.8306,-0.9908,-0.9084,-0.7208,-0.5058,-0.5836,-0.6064,-0.3272,-0.428,-0.103,0.0984,0.428,0.6248,0.7254,-0.0572,-0.016,0.5102,0.405,0.5836,0.3226,0.3272,0.2448,0.2236,1,0.8588,0.5248,0.1718,-0.3412,-0.8542,-0.7788,-0.5952,-0.6518,-0.7082,-0.7224,-0.6142,-0.8352,-0.7458,-0.5718,-0.5436,-0.6188,-0.3742,-0.04,-0.1812,0.153,0.2894,0.3506,0.0636,0.0588,0.5388,0.4964,0.3694,0.2094,0.007,0.0306,0.2174,1,0.942,0.3788,0.3126,-0.4782,-0.3002,-0.3044,-0.7184,-0.793,-0.6066,-0.586,-0.6314,-0.6066,-0.3954,-0.441,-0.4906,-0.4286,-0.4038,-0.2216,0.0144,0.5528,0.532,0.5072,0.4078,0.4742,0.4038,0.4244,0.3084,0.0476,0.027,-0.1014,0.1162,0.907,1,0.4884,0.3954,0.1628,-0.1162,0.0698,-0.2094,-0.1162,-0.3488,-0.1162,-0.2094,-0.1162,0.0698,-0.1628,-0.0698,0.2558,0.2558,0.721,0.721,0.721,0.6744,0.2094,0.4884,0.5348,0.721,0.5814,0.4418,0.5814,0.4418,0.1628,0.0698,0.721,0.6744,0.5348,0.3024,-0.2094,-0.3024,-0.2558,-0.3954,-0.2558,-0.5348,-0.4418,-0.4418,-0.3024,-0.2558,-0.2094,0.0698,0.0698,0.2558,0.5814,1,0.814,0.814,0.628,0.8604,0.721,0.8604,0.5814,0.5814,0.0698,0.3488,0.3024,0.2308,0.9384,0.7846,0.4154,0.1076,-0.2,-0.323,-0.2924,-0.8154,-0.9692,-0.5384,-0.5692,-0.6308,-0.6616,-0.5692,-0.4154,-0.3846,-0.1384,-0.2616,0.077,-0.0154,-0.1692,0.9076,1,0.3538,0.1384,0.8154,0.6924,0.723,0.5384,0.2308,0.5692,-1,-1,-1,-1,-0.9796,-0.9836,-0.8432,-0.85,-0.5344,-0.6496,-0.698,0.8442,0.848,0.7008,0.4686,0.2652,0.1268,0.033,-0.0668,-0.1588,-0.2042,-0.1056,-0.7764,-0.9438,-0.9186,-0.9226,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.9686,1,1,1,0.5848,-0.3208,0.5968,0.9028,0.586,0.4042,0.1834,0.0712,-0.1728,-0.2938,-0.3704,-0.401,-0.3414,-0.7936,-0.8928,-0.904,-0.8952,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9,-0.86,0.7766,1,1,0.8766,0.5632,-0.6426,-0.74,-0.8026,-0.8776,-0.8468,-0.8624,-0.9556,-0.9668,-0.9534,-0.94,-0.9668,-0.7734,-0.26,-0.4768,-0.5368,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,1,1,1,0.1142,1,1,0.7428,-0.8572,-0.6572,-0.8286,-0.8858,-0.8858,-0.8,-0.9142,-0.9142,-0.9428,-0.5714,-0.4572,-0.6572,-0.7428,-0.8,-1,-1,-1,-1,-1,-1,-1,-0.069,-0.0544,-0.0356,-0.0088,-0.016,-0.0218,-0.0584,-0.1516,-0.2446,-0.3432,0.9018,0.88,0.871,0.8898,0.8896,0.9012,0.9316,0.9352,0.8868,0.853,-0.72,0,-0.3954,0.0216,0.5634,0.84,0.815,1,-0.8708,-0.5748,-0.4796,-0.4014,-0.3606,-0.2994,-0.3096,-0.3096,-0.1802,0.1258,-0.0748,-0.0238,0.221,0.2278,0.0238,0.1598,0.1666,0.4286,0.5272,0.5442,0.5442,0.813,1,0.8946,0.847,0.8062,0.7414,0.6598,0.4184,0.4422,0.398,-0.0748,-0.6198,-0.6162,-0.6162,-0.6374,-0.6866,-0.4472,-0.4718,-0.3134,-0.0176,0.1514,0.2922,0.1654,0.3098,0.4402,0.0246,0.338,0.3134,0.4894,0.4754,0.831,0.9014,0.9436,1,0.824,0.7712,0.7746,0.8028,0.6478,0.5846,0.2922,0.3204,-0.0106,-0.3426,-0.1394,-0.1752,-0.3228,-0.2948,-0.2032,-0.255,-0.0836,0.0358,0.2868,0.5338,0.3666,0.482,0.757,0.498,0.275,0.231,0.6216,0.5538,0.5578,0.9084,1,0.992,0.8168,0.9522,0.8088,0.7052,0.6374,0.51,0.2788,0.1274,-0.1792,1,-1,-1,1,-1,-1,-1,0.0334,-1,-0.239,-0.0266,0.0796,0.5576,0.3628,0.1858,0.0088,0.1858,0.5752,0.2744,0.416,0.8054,1,0.9116,0.6284,0.4514,0.5398,0.8584,0.7876,1,0.7876,0.9646,0.6106,0.6284,0.5576,0.3452,0.1504,0.0266,-0.062,-0.0442,-0.3628,-0.77,'20'
-0.1402,0.5762,0.6432,0.4512,0.4786,0.1586,0.25,-0.0122,-0.0122,-0.1464,-0.1036,-0.186,-0.003,-0.0092,0.128,0.1068,0.2408,0.497,0.7408,0.872,0.875,0.8536,0.7226,0.6586,0.7896,1,0.9634,0.692,0.622,0.5946,0.5092,0.5182,-0.0754,0.5332,0.509,0.5392,0.4668,0.1204,0.0272,-0.0332,-0.1416,-0.0964,-0.2108,-0.0934,-0.226,0.003,-0.0392,0.1898,0.1416,0.3946,0.5512,0.774,0.8644,1,0.8644,0.75,0.8374,0.9728,0.9338,0.976,0.8042,0.771,0.6476,0.7078,0.0992,0.8254,0.758,0.5952,0.4444,-0.0834,-0.2936,-0.3016,-0.4088,-0.246,-0.3968,-0.2936,-0.1706,-0.0912,-0.1866,-0.1428,0.119,0.1072,0.3374,0.4088,0.8928,0.8492,0.8928,0.7896,0.8928,0.7858,0.9802,1,0.9802,0.7976,0.6944,0.7064,0.0432,0.7154,0.6164,0.4268,0.1918,-0.2288,-0.398,-0.3196,-0.501,-0.5092,-0.4598,-0.5422,-0.4556,-0.5876,-0.4598,-0.3402,-0.1794,-0.031,0.0392,0.4392,0.435,0.9176,0.8226,0.3732,0.3238,0.5382,0.835,1,0.8474,0.8886,0.6248,0.6248,0.0206,0.713,0.5672,0.5398,0.1846,-0.1754,-0.508,-0.5354,-0.426,-0.5672,-0.7312,-0.713,-0.5808,-0.5398,-0.4988,-0.4396,-0.4852,-0.2028,-0.2756,0.0478,0.5444,0.6902,0.6218,0.6218,0.6538,0.5718,0.8724,0.8132,1,0.5536,0.672,0.7038,0.0608,0.6982,0.589,0.5766,0.262,-0.0902,-0.4968,-0.4634,-0.346,-0.4508,-0.5262,-0.6226,-0.5974,-0.4382,-0.3542,-0.3082,-0.3208,-0.241,-0.2704,-0.023,0.2956,0.4758,0.7694,0.7064,0.673,0.6646,1,0.8826,0.7526,0.48,0.5682,0.5346,0.1656,1,0.914,0.5742,0.4022,-0.4108,-0.544,-0.3592,-0.7462,-0.7032,-0.7936,-0.6646,-0.5914,-0.6086,-0.4752,-0.514,-0.7204,-0.4752,-0.4322,-0.299,0.0022,0.6602,0.7248,0.4064,0.4882,0.6474,0.587,0.5784,0.0924,0.015,-0.0452,-0.0022,-0.2632,0.1578,0.3158,0.0526,0,-0.3684,0.1052,-0.3158,-0.3684,-0.2632,-0.3158,-0.3684,-0.3684,-0.0526,0.0526,-0.1578,-0.4736,0.6842,1,0.8422,0.579,0.5264,0.4736,0.3684,0.9474,1,0.7894,0.5264,0.6842,0.579,0,0.3158,-0.102,0.8368,0.9184,0.5102,0.551,0.347,0.347,0.2654,-0.0612,-0.102,-0.102,-0.0612,0.102,0.2654,-0.0204,0.3878,0.2654,0.5918,0.6734,0.8368,1,0.796,0.7552,0.7142,0.8368,0.9592,0.7142,0.7142,0.4286,0.5102,0.5102,0.7552,-0.1556,0.4888,0.4444,0.4,0.2888,-0.1112,-0.2222,-0.2888,-0.4666,-0.3556,-0.4888,-0.3112,-0.4,-0.2222,-0.1112,0.0222,0,0.1334,0.4,0.5334,0.8666,1,0.6666,0.4666,0.7556,0.7556,0.8888,0.8666,0.6888,0.6888,0.4666,0.4222,-1,-1,-1,-1,-0.982,-0.988,-0.8706,-0.7754,-0.64,-0.7326,-0.7428,0.5722,0.3056,0.1796,0.1564,0.0656,-0.0708,-0.2438,-0.388,-0.472,-0.4976,-0.381,-0.5756,-0.9238,-0.9742,-0.9734,-0.9726,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9814,-0.9832,0.2084,1,1,0.194,-0.3098,0.1396,0.806,0.6722,0.1264,-0.1062,-0.2116,-0.3962,-0.4744,-0.554,-0.6482,-0.659,-0.7566,-0.9242,-0.9546,-0.9568,-0.9654,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.9934,-0.0968,1,1,0.9066,0.5666,-0.47,-0.325,-0.23,-0.6226,-0.67,-0.7176,-0.7076,-0.7424,-0.7756,-0.8334,-0.9912,-0.9434,-0.5,-0.34,-0.5,-0.72,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,0.8858,0.8572,1,0.7428,0,-0.3428,-0.2858,-0.8858,-0.7142,-0.7714,-0.8,-0.9714,0.2,0.1714,-0.6286,-0.5428,-0.8286,-0.9142,-0.7142,-1,-1,-1,-1,-1,-1,0.512,0.5138,0.4994,0.5068,0.5052,0.4924,0.449,0.3614,0.1816,-0.0592,0.6572,0.6514,0.69,0.7494,0.7556,0.8126,0.852,0.8808,0.94,0.9564,-0.7334,-0.0352,-0.372,-0.4634,0.2022,0.479,0.594,1,-0.6604,-0.4162,-0.2878,-0.2506,-0.0808,-0.0684,-0.147,-0.1428,-0.0104,0.1304,0.0642,0.1098,0.3168,0.2132,0.2464,0.4328,0.6522,0.6894,0.7102,0.971,0.9752,0.9006,1,0.8964,0.8634,0.8178,0.8096,0.793,0.7102,0.6854,0.5818,0.321,-0.6942,-0.6942,-0.6354,-0.6132,-0.72,-0.5396,-0.5874,-0.4732,-0.1012,0.0128,-0.0018,0.0792,0.2966,0.0534,-0.0092,0.348,0.396,0.5174,0.5322,0.8268,0.8896,1,0.779,0.7312,0.6354,0.6464,0.4954,0.4806,0.5248,0.3222,0.175,-0.1382,-0.3898,-0.2058,-0.136,-0.0442,-0.0808,-0.125,-0.0258,0.158,0.353,0.6986,0.728,0.4374,0.6728,0.592,0.4448,0.2978,0.5662,0.5736,0.5808,0.9816,1,0.9522,0.7316,0.6838,0.625,0.636,0.4852,0.511,0.3124,0.2794,0.0736,-0.1912,1,-1,-1,1,-1,-1,-0.6,-0.0334,-1,-0.46,0.06,-0.04,0.38,0.22,-0.12,-0.02,-0.06,0.3,0.2,0.86,0.74,0.96,1,0.56,0.3,0.7,0.9,0.96,0.56,0.64,0.66,0.58,0.58,0.18,0,0,-0.18,-0.32,-0.14,-0.14,-0.56,'20'
-0.0014,0.7576,0.7198,0.235,0.0978,-0.1154,-0.2964,-0.4598,-0.4336,-0.4628,-0.3782,-0.3518,-0.3694,-0.3402,-0.238,-0.235,-0.1708,0.124,0.124,0.4482,0.6906,0.7898,0.6554,0.416,0.5386,0.7518,0.8102,1,0.9328,0.8862,0.857,0.8978,-0.1726,0.3622,0.2914,0.248,0.0812,-0.1658,-0.4698,-0.408,-0.3394,-0.3028,-0.3006,-0.3234,-0.1908,-0.2572,-0.024,-0.024,0.1726,0.3874,0.5178,0.9428,1,0.8172,0.856,0.7942,0.744,0.7988,0.696,0.6458,0.4948,0.5726,0.5314,0.68,-0.1846,0.3192,0.27,0.4728,0.3212,-0.0522,-0.2678,-0.159,-0.2018,-0.1526,-0.1356,-0.1376,-0.0288,-0.0886,0.174,0.2124,0.4578,0.778,0.921,0.874,0.9638,0.9424,1,0.6648,0.603,0.4386,0.413,0.366,0.2806,0.4472,0.4706,0.6414,-0.1352,0.4178,0.4758,0.7464,0.5484,0.0894,-0.1086,-0.0386,-0.0604,-0.0484,0.0724,0.0096,0.2608,0.413,0.6086,0.7584,0.872,0.6764,0.7488,0.8068,0.8236,1,0.9444,0.3938,0.2898,0.2488,0.116,0.2028,0.2826,0.384,0.6256,0.6666,-0.0888,0.4834,0.7774,1,0.7668,0.1814,0.0438,0.0808,0.2,0.1524,0.4888,0.6344,0.7986,0.5788,0.5072,0.208,0.2476,0.2794,0.2582,0.5602,0.4782,0.5868,0.3774,0.1258,-0.0754,-0.012,-0.0252,-0.0304,0.1418,0.1602,0.4438,0.494,-0.0868,0.4974,0.7244,1,0.7908,0.125,0.0842,0.1608,0.6276,0.6276,0.3368,0.2552,-0.0178,-0.1684,-0.3342,-0.4388,-0.3904,-0.2832,-0.2322,0.028,0.0358,0.0586,-0.0076,-0.449,-0.5154,-0.4516,-0.5256,-0.3928,-0.3904,-0.3138,0.0714,0.1096,0.0574,1,0.9374,0.6974,0.5756,0.0956,0.2314,0.4678,0.3808,0.3356,-0.0886,-0.367,-0.4434,-0.4922,-0.5756,-0.5304,-0.447,-0.3808,-0.4192,-0.4192,-0.4922,-0.5026,-0.5166,-0.6626,-0.6904,-0.7634,-0.7496,-0.6278,-0.6766,-0.5896,-0.1966,-0.1478,-0.0256,0.9488,1,0.4872,0.3334,0.077,0.2308,0.0256,-0.282,-0.2308,0.077,-0.0256,-0.1794,-0.1282,-0.2308,0.0256,-0.2308,-0.077,-0.077,0.077,0.282,0.641,0.3334,0.077,0.3846,0.4872,0.6924,0.7436,0.7436,0.5898,0.8974,0.8462,0.2244,0.9592,0.9592,0.551,0.2244,0.102,-0.102,-0.0204,-0.3062,-0.3062,-0.3062,-0.0612,-0.2654,-0.0204,-0.0612,-0.0204,-0.0612,0.3062,0.3878,0.551,0.8776,0.9184,0.551,0.5918,0.7142,0.6734,0.9184,1,0.9592,1,0.9592,0.9184,-0.1566,0.4216,0.494,0.8314,0.6144,0.0844,-0.1084,-0.0602,-0.0362,-0.0362,0.0844,0.0844,0.3494,0.7108,0.8796,0.5904,0.7108,0.5904,0.6144,0.8072,0.7832,1,0.8796,0.3254,0.1566,0.2048,0.0362,0.1566,0.3012,0.3254,0.6386,0.6144,-1,-1,-1,-1,-1,-1,-1,-1,-0.9858,-0.985,-0.7518,-0.0588,0.1222,0.335,0.5232,0.72,0.7404,0.8932,0.9268,0.8226,0.313,-0.3714,-0.8304,-0.8808,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9876,-0.987,-0.8892,-0.457,0.2262,0.439,0.7152,0.6176,0.1128,0.0484,0.0394,-0.0326,-0.3696,-0.7424,-0.9226,-0.9466,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.98,-0.7934,-0.6874,-0.5782,-0.3456,-0.2364,-0.2474,-0.3874,-0.8182,-0.875,-0.915,-0.9184,-0.9868,-0.9368,-0.9368,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,0.2858,1,1,0.0286,-0.7428,-0.9428,-0.9142,-0.4858,-0.1714,-0.5142,0.1142,0.1428,-0.4572,-0.8,-0.2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.174,-0.1608,-0.1538,-0.1396,-0.1312,-0.1096,-0.0754,-0.0056,0.1164,0.2496,0.772,0.8008,0.8792,0.898,0.8998,0.8958,0.8676,0.7968,0.5376,-0.1384,-0.7334,0.353,-0.8664,-0.7534,-0.5066,-0.3288,-0.3442,1,-0.0848,-0.4406,0.1526,0.661,0.8136,0.4068,0.7288,0.8814,1,0.1526,0.9152,0.339,0.661,0.7118,0.5594,0.5762,0.305,0.661,0.7966,0.5594,0.5594,0.305,0.5424,0.4238,0.2882,0.7288,0.3898,0.5084,0.017,0.2372,-0.017,-0.7118,0.1764,0.103,0.8236,0.75,0.6912,0.6324,0.5882,0.3236,0.7058,0.7206,0.6618,0.75,1,0.7794,0.647,0.0588,0.6618,0.647,0.853,0.397,0.603,0.4558,0.9706,0.75,0.3382,0.6176,0.647,0.4264,0.5736,-0.0588,0.0588,-0.4412,0.011,0.5714,0.5384,0.3736,0.2748,0.044,0.3626,0.2748,0.4286,0.5164,0.8902,0.7692,0.6044,0.7252,0.4946,0.6044,0.6704,1,0.912,0.7692,0.4066,0.1978,0.6374,0.7252,0.1978,0.3626,0.3406,0.3186,-0.1318,0.055,-0.099,-0.6154,-0.9962,1,-1,-1,-1,-1,-1,-1,-1,0.3726,1,0.3334,0.1764,0.3922,0.1372,-0.098,0.3726,0.2942,0.4902,0.3922,0.2942,0.3726,0.2942,-0.0196,0.0196,0,-0.1764,0.0588,0.4314,0.3334,-0.0392,0.196,0.1372,0.1372,0.2352,0.1176,0.0392,0.0588,-0.0784,0.0196,-0.1372,'21'
0.296,1,0.9328,-0.0912,-0.264,-0.5232,-0.616,-0.5232,-0.6416,-0.6576,-0.8144,-0.7632,-0.8496,-0.616,-0.5264,-0.5712,-0.5264,-0.4784,-0.3312,0.088,0.184,0.3024,0.2384,0.0624,-0.024,-0.0496,-0.04,0.088,0.5136,0.6256,0.648,0.6576,0.2276,0.9814,0.8694,0.0784,-0.1642,-0.2686,-0.3844,-0.2724,-0.6082,-0.6044,-0.4104,-0.4888,-0.556,-0.6082,-0.3208,-0.25,-0.041,0.0784,0.1754,0.8134,0.8172,0.8844,0.806,0.6156,0.6456,0.9478,0.8022,1,0.8432,0.8844,0.8656,0.903,-0.011,0.59,0.4836,0.2802,0.014,-0.1738,-0.4616,-0.4304,-0.3928,-0.4742,-0.5462,-0.7214,-0.5274,-0.4178,-0.3082,0.0172,0.0204,0.349,0.64,1,0.8154,0.781,0.7934,0.8904,0.7996,0.8028,0.4366,0.3522,0.396,0.205,0.3616,0.6964,0.0034,0.6096,0.4624,0.4794,0.0754,-0.209,-0.3424,-0.4246,-0.363,-0.5856,-0.4554,-0.5136,-0.4554,-0.1952,-0.0548,0.3082,0.6198,0.7602,0.952,1,0.774,0.7364,0.6918,0.4898,0.1096,-0.1164,-0.0514,-0.1678,-0.2192,0.1268,0.2364,0.4486,0.2588,1,0.7808,0.9824,0.3948,0.0526,-0.0702,-0.2018,-0.1842,-0.3904,-0.25,-0.1578,-0.0044,0.5132,0.465,0.7106,0.1886,0.272,0.0658,0.272,0.7588,0.4824,0.193,-0.3378,-0.478,-0.5394,-0.636,-0.6622,-0.4036,-0.2106,0.2018,0.2192,0.2124,0.8432,0.7712,1,0.6274,0.1242,0.1078,0.0588,0.1798,0.1504,0.2974,0.0326,-0.062,-0.3594,-0.4084,-0.3954,-0.5262,-0.5228,-0.5752,-0.4346,0,-0.0196,-0.4738,-0.6634,-0.6732,-0.8268,-0.8138,-0.8562,-0.8594,-0.7484,-0.3496,-0.0816,0.2868,1,0.9158,0.5624,0.423,0.0146,0.1636,0.2576,0.4846,0.368,-0.1994,-0.3322,-0.3484,-0.4814,-0.5008,-0.5008,-0.6142,-0.5138,-0.504,-0.4944,-0.491,-0.4262,-0.5916,-0.611,-0.5754,-0.6856,-0.773,-0.893,-0.8834,-0.7666,-0.6078,-0.2868,0.4666,1,1,0.4,0.2334,0.1334,0.1666,0.2,-0.1334,-0.1666,-0.3,-0.1666,-0.4334,-0.2334,-0.0666,0.1,0.0334,-0.0334,0.1,0.1666,0.4,0.3334,0.3666,0.2666,0.2666,0.1334,0.0666,0.3,0.5666,0.5334,0.7334,0.7666,0.4468,1,0.9574,-0.0638,-0.0638,-0.149,-0.3192,-0.1914,-0.5744,-0.4468,-0.3192,-0.3192,-0.3192,-0.3192,-0.4042,-0.3618,-0.532,-0.149,-0.0638,0.3192,0.617,0.4894,0.1914,0.0638,-0.149,-0.2766,0.234,0.3618,0.4042,0.8298,0.9148,0.7446,0.0294,0.6764,0.5,0.5588,0.147,-0.2648,-0.2942,-0.3236,-0.3236,-0.5,-0.5,-0.5,-0.4412,-0.147,0.0882,0.4118,0.8824,1,0.8236,0.8824,0.9412,0.9118,0.5294,0.3824,0.0588,-0.147,-0.0882,-0.2058,-0.2058,0.0588,0.2352,0.4118,-1,-1,-1,-1,-1,-1,-1,-0.983,-0.9814,-0.9726,-0.552,0.146,0.5802,0.9522,0.9426,0.8018,0.5528,0.361,0.2924,0.3676,0.3134,-0.0432,-0.8398,-0.9378,-0.9184,-0.9094,-0.911,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9722,-0.9732,-0.9644,-0.699,-0.2078,0.224,0.7126,0.9552,0.7708,0.517,0.122,0.0024,-0.0074,-0.0054,-0.341,-0.864,-0.9274,-0.9156,-0.921,-0.9254,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.89,-0.7334,-0.8468,-0.904,-0.78,-0.712,-0.616,-0.762,-0.69,-0.886,-0.9364,-0.9328,-0.931,-0.9092,-0.8068,-0.72,-0.8168,-0.8668,-0.7668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3428,-0.5714,0.2286,1,1,0.3714,-0.3714,-0.7428,-0.6572,0.2572,0.0858,-0.4572,-0.4572,-0.6858,-0.3428,-0.3142,-0.8858,-0.8858,-0.8572,-0.6858,-1,-1,-1,-1,-1,-1,-0.893,-0.8806,-0.8744,-0.8784,-0.85,-0.8038,-0.693,-0.5748,-0.4266,-0.2004,0.4586,0.4602,0.4574,0.5146,0.588,0.6496,0.6938,0.7424,0.634,-0.0944,-0.6934,0.2236,-0.6518,-0.3552,-0.239,-0.1682,-0.0688,-0.4334,-0.163,-0.163,0.3696,1,0.8586,0.3804,0.2934,0.3696,0.2718,0.4348,0.5978,0.25,0.5652,0.4022,0.3152,0.2174,0.2934,0.3586,0.1522,0.087,-0.0108,0.1956,0.163,0.0652,-0.076,0.1848,0.25,0.337,-0.1086,0.1086,0.076,-0.4892,0.0044,-0.0672,0.426,1,0.7938,0.5156,0.5784,0.4978,0.5156,0.5606,0.4888,0.5336,0.4888,0.3902,0.453,0.3094,0.5336,0.695,0.5964,0.6322,0.426,0.3452,0.6144,0.453,0.2646,0.3094,0.2914,0.1032,0.166,0.0494,0.2018,-0.0314,0.3006,0.719,-0.1242,0.0588,-0.0522,-0.1764,-0.0718,-0.085,-0.1568,-0.196,0.2288,0.1176,0.0522,-0.0196,0.5686,0.5948,0.5164,0.9412,1,0.562,0.2614,0.1242,0.3726,0.255,-0.0196,-0.0066,0.1176,-0.0916,-0.1176,-0.1176,-0.3398,-0.8758,-0.9952,1,-1,-1,-1,-1,-1,-1,-1,0.12,0.1734,0.4134,0.5466,1,0.9466,0.6,0.6,0.3334,0.4666,0.92,0.9466,0.5466,0.0934,0.2,0.1734,0.5466,0.3066,0.1734,0.2,0.36,0.2266,0.28,0.36,0.4666,0.3334,0.52,-0.2,-0.4934,-0.36,-0.3866,-0.7866,'21'
0.1188,0.8238,0.7662,0.8634,0.7194,0.09,-0.1188,0.0036,-0.2014,-0.1258,-0.2986,-0.2266,-0.108,0.0108,0.0828,0.0864,0.3058,0.3382,0.7086,0.8454,1,0.7302,0.4712,0.59,0.6906,0.6618,0.723,0.5396,0.4712,0.464,0.4028,0.5396,0.0628,0.7306,0.631,0.5904,0.3726,-0.0296,-0.2878,-0.1772,-0.2656,-0.2288,-0.3874,-0.4096,-0.2842,-0.3654,-0.1402,-0.144,0.059,0.225,0.3948,0.7012,0.8302,0.8524,0.8118,0.5498,0.583,0.8228,0.8118,1,0.8266,0.6716,0.5166,0.5794,-0.0158,0.5782,0.4834,0.3322,0.0826,-0.1354,-0.3322,-0.3006,-0.42,-0.4622,-0.4622,-0.5992,-0.4622,-0.3848,-0.2408,-0.2022,-0.1354,0.1634,0.1388,0.427,0.6732,1,0.8066,0.5008,0.3602,0.4658,0.775,0.7856,0.8594,0.7856,0.645,0.4938,0.0018,0.6182,0.4934,0.3346,0.0472,-0.1948,-0.4292,-0.414,-0.4442,-0.5464,-0.5048,-0.6824,-0.516,-0.4292,-0.3422,-0.2476,-0.2438,0.0964,0.0472,0.3724,0.7882,0.9774,0.5954,0.6144,0.4556,0.4366,0.6862,0.6748,1,0.826,0.8564,0.6332,-0.0038,0.6226,0.5056,0.351,0.0452,-0.2076,-0.366,-0.3736,-0.4302,-0.5284,-0.5284,-0.668,-0.4944,-0.4604,-0.3924,-0.2642,-0.2982,0.0416,0.0114,0.3094,0.6114,0.785,0.6038,0.6716,0.5094,0.4754,0.649,0.7208,1,0.785,0.9284,0.668,0.1162,0.8286,0.718,0.4134,0.1466,-0.1504,-0.2914,-0.2342,-0.6114,-0.642,-0.6914,-0.8514,-0.859,-0.7524,-0.539,-0.4286,-0.322,-0.28,-0.2686,0.0514,0.2266,0.6724,0.562,0.5772,0.4134,0.5428,0.5352,0.6458,1,0.9276,0.7104,0.642,0.1954,1,0.9392,0.3092,0.203,-0.3548,-0.4952,-0.4308,-0.7496,-0.8254,-0.6736,-0.6964,-0.7116,-0.7306,-0.5978,-0.6546,-0.5218,-0.5978,-0.5256,-0.3092,0.093,0.6054,0.723,0.6016,0.3814,0.5712,0.613,0.8216,0.6394,0.5028,0.3928,0.26,0.3618,1,0.9148,0.9574,0.8724,0.4468,0.3618,0.3618,0.2766,0.0212,0.0212,0.0638,0.0212,0.3192,0.2766,0.4894,0.4468,0.8724,0.9574,0.9574,0.9574,0.8298,0.8724,0.7872,0.8298,0.5744,0.617,0.4468,0.3618,0.4894,0.532,0.617,-0.102,0.5102,0.4286,0.6734,0.551,-0.0204,-0.1428,-0.1836,-0.3062,-0.2244,-0.4286,-0.2244,-0.2244,-0.0612,-0.102,0.0204,0.2244,0.347,0.8368,1,0.796,0.5102,0.3062,0.5102,0.3878,0.551,0.4694,0.4694,0.2244,0.3878,0.2654,0.3878,0.0422,0.7464,0.5774,0.4648,0.155,-0.183,-0.4084,-0.4084,-0.4648,-0.493,-0.493,-0.662,-0.6902,-0.6338,-0.5492,-0.5492,-0.493,-0.014,-0.1268,0.155,0.4648,0.6902,0.5212,0.7184,0.324,0.2958,0.5212,0.5212,1,0.831,0.6056,0.7184,-1,-1,-1,-1,-1,-1,-0.6744,-0.5386,-0.601,-0.7132,-0.493,0.8702,0.574,0.4712,0.2974,0.1404,0.0344,-0.0378,-0.1124,-0.1702,-0.198,-0.228,-0.8084,-0.8994,-0.9436,-0.9544,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7786,-0.694,-0.745,-0.815,-0.5304,0.721,0.459,0.6104,0.437,0.258,0.1452,0.0306,-0.0754,-0.2584,-0.4086,-0.4678,-0.8282,-0.8598,-0.8922,-0.9148,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9254,-0.932,-0.9354,-0.9354,-0.6854,-0.8088,-0.762,-0.7376,-0.682,-0.6688,-0.7564,-0.7624,-0.7756,-0.82,-0.84,-0.904,-0.6,-0.08,0.03,-0.01,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.0858,-0.7714,-0.6286,1,1,1,-0.8,-0.7142,-0.9428,-1,-1,-1,-0.7714,-0.6286,-0.5142,-0.2858,-0.5142,-0.8,-0.7428,-0.5428,-1,-1,-1,-1,-1,-1,-1,0.1962,0.1966,0.1892,0.19,0.1674,0.1496,0.1276,0.0938,0.0298,-0.1016,0.5678,0.5684,0.6044,0.6298,0.6456,0.6774,0.7398,0.7614,0.8142,0.8874,-0.72,0.0588,-0.5232,0.0726,1,0.8758,0.469,1,0.315,0.5068,0.315,0.3424,0.4246,0.3424,0.6986,0.8356,0.863,0.8082,0.6986,0.9452,0.9178,0.9178,0.9178,0.726,1,0.9178,0.8082,0.8082,0.8082,0.6986,0.5068,0.2876,0.6164,0.5068,0.5068,0.6438,0.5342,0.6164,0.178,0.0684,0.3412,0.4824,-0.1294,0.0588,-0.0352,-0.0588,0.1058,0.5058,0.6,0.3882,0.3882,0.6706,0.6,0.4824,0.553,0.1764,0.8824,0.6,0.3176,0.8118,0.6706,0.6236,0.7882,0.7176,0.647,0.4824,0.6706,0.7648,0.9764,1,0.953,0.647,0.6976,0.9534,0.5348,0.279,-0.0466,-0.1162,0.186,0.4186,0.6976,0.7674,0.721,0.907,0.7906,0.4652,0.4652,0.3024,0.721,0.6744,0.7442,1,0.4652,0.372,0.3488,0.5582,0.3488,0.2326,0.3256,0.3488,0.372,0.4652,0.6976,0.5582,0.8518,-1,-1,1,-0.8,1,-1,-0.8,-1,-0.3566,-0.1826,-0.0434,0.287,0.2696,-0.2348,-0.3392,0.4086,0.4608,0.4608,0.5478,0.6348,0.826,0.913,0.7392,0.513,0.7044,0.9652,0.8434,0.7392,0.8086,1,0.6348,0.4608,0.2,-0.0086,0.3044,0.3218,0.3914,0.4608,0.4434,-0.026,'22'
0.1294,0.8326,0.8274,0.702,0.6444,0.2184,0.1294,-0.1686,-0.2366,-0.004,-0.0772,-0.166,-0.2,-0.0066,-0.0824,0.0326,0.3334,0.4772,0.7674,0.9372,1,0.919,0.6784,0.736,0.8248,0.8928,0.932,0.8928,0.6602,0.7594,0.621,0.6314,0.0838,0.7844,0.7066,0.5658,0.3772,-0.024,-0.3354,-0.2246,-0.3114,-0.2066,-0.3532,-0.2874,-0.2574,-0.2426,-0.1526,-0.1676,0.0718,0.1646,0.3772,0.7066,0.9372,0.982,0.7784,0.5568,0.47,0.5778,0.7904,0.8712,0.8832,1,0.7904,0.7904,-0.0914,0.482,0.3768,0.266,0.0332,-0.1912,-0.3628,-0.3186,-0.5402,-0.5762,-0.4044,-0.5208,-0.5512,-0.4542,-0.3048,-0.241,-0.1746,0.0388,0.0332,0.4266,0.615,1,0.8448,0.252,0.2826,0.3934,0.3988,0.4266,0.6454,0.6066,0.7646,0.6454,-0.1044,0.4368,0.3406,0.2582,-0.0082,-0.2308,-0.4286,-0.4478,-0.5824,-0.695,-0.467,-0.695,-0.6044,-0.294,-0.2252,-0.2362,-0.2528,-0.0934,-0.0796,0.1566,0.5302,0.6676,0.5742,0.6154,0.3708,0.3296,0.4506,0.3874,0.6484,0.8626,1,0.7528,-0.047,0.5542,0.4282,0.4076,0.085,-0.302,-0.352,-0.3812,-0.5894,-0.6656,-0.4898,-0.7184,-0.7156,-0.4222,-0.3608,-0.2522,-0.3108,-0.2492,-0.1642,0.0498,0.3988,0.519,0.8622,0.8798,0.522,0.4428,0.563,0.6012,0.8006,0.9266,1,0.783,0.2048,1,0.8784,0.6424,0.3576,-0.2778,-0.3716,-0.2674,-0.757,-0.7534,-0.6076,-0.6944,-0.6598,-0.6112,-0.5486,-0.6562,-0.6632,-0.5416,-0.4514,0.052,0.3368,0.8716,0.743,0.7014,0.6494,0.7084,0.5868,0.6876,0.9862,0.9062,0.5868,0.4376,-0.2164,0.9304,1,0.295,0.0226,-0.4736,-0.5462,-0.4554,-0.519,-0.4978,-0.4856,-0.3828,-0.6642,-0.646,-0.6158,-0.5704,-0.6218,-0.4674,-0.2708,-0.1196,0.186,0.6914,0.755,0.5734,0.5612,0.522,0.5068,0.528,0.4736,0.2738,0.0862,0.0892,0,0.8636,1,0.591,0.5,0.3182,0.2728,0.1364,0,-0.1364,-0.091,-0.1364,-0.1818,0.1364,0.2272,0.2272,0.5,0.591,0.7272,0.909,0.8636,0.8182,0.7272,0.8182,1,0.9546,0.6818,0.5454,0.4546,0.591,0.591,0.7728,0.1578,0.7192,0.7192,0.6492,0.6492,0.3684,0.2982,-0.0878,-0.1228,0.0878,0.0526,-0.0176,-0.1228,0.0526,0.0176,0.2982,0.2632,0.4736,0.579,0.965,1,0.7544,0.7192,0.7192,0.7894,0.7894,0.7192,0.228,0.2982,0.579,0.579,0.6492,0.1136,0.6818,0.6136,0.4546,0.2272,-0.1818,-0.1818,-0.1364,-0.5682,-0.4318,-0.2728,-0.341,-0.7728,-0.5,-0.3864,-0.3636,-0.2954,-0.1136,-0.159,0.0228,0.3864,0.6818,0.5454,0.5682,0.591,0.6818,0.5454,0.591,1,0.9546,0.6818,0.6136,-1,-1,-0.979,-0.979,-0.9642,-0.972,-0.8402,-0.5144,-0.634,-0.8498,-0.6882,0.9328,0.889,0.6804,0.4062,0.2122,0.0752,-0.0296,-0.1248,-0.2174,-0.2506,-0.242,-0.6174,-0.9126,-0.9634,-0.904,-0.918,-1,-1,-1,-1,-1,-1,-1,-1,-0.9786,-0.9772,-0.9748,-0.9794,-0.922,-0.7798,-0.8396,-0.9094,-0.644,0.2492,0.7888,0.1888,0.061,0.047,-0.129,-0.1924,-0.3438,-0.4926,-0.6124,-0.6216,-0.784,-0.9136,-0.9426,-0.9382,-0.9538,-1,-1,-1,-1,-1,-1,-1,-1,-0.8146,-0.9068,-0.8634,-0.77,-0.9234,-0.89,-0.89,-0.7,0.1866,-0.7038,-0.5746,-0.7582,-0.7474,-0.5582,-0.5982,-0.5656,-0.7292,-0.842,-0.8946,-0.9518,-0.74,-0.0068,-0.0034,-0.6668,-0.6834,-1,-1,-1,-1,-1,-1,-1,-1,-0.2,-0.9428,-0.9714,-0.9142,-0.2286,-0.4286,0,1,1,1,-0.0572,0.4572,-0.9714,-0.8858,-1,-0.8858,-0.6,-0.4286,-0.6,-0.7142,-0.6858,-0.6,-0.3428,-0.4858,0.2572,-1,-1,-1,-1,-1,-1,0.2508,0.2354,0.2094,0.1958,0.1702,0.1424,0.1088,0.0818,0.031,-0.1168,0.6874,0.698,0.7454,0.7682,0.7722,0.7736,0.7742,0.7944,0.8052,0.8568,-0.72,0.3176,-0.5734,-0.1704,0.138,0.3316,0.4674,1,0.416,0.5752,0.0266,0.0266,0.0266,0.239,0.0442,0.3098,0.4514,0.6638,0.6106,0.5752,0.646,0.5576,0.8584,0.77,0.6992,0.5752,0.593,0.4868,0.77,0.3982,0.5576,0.6638,0.6992,0.8054,1,0.9646,0.6284,0.5576,0.3628,-0.0974,-0.4822,-0.3928,-0.1428,-0.0714,-0.1428,-0.4286,0.1964,0.2858,0.7142,0.6964,0.75,0.625,0.4108,0.6608,0.6608,0.5358,0.2678,0.6964,0.4464,0.6786,0.75,0.6608,0.5892,0.3928,0.7142,0.9286,0.8214,1,0.6786,0.7858,0.6072,-0.0892,0.04,0.28,0.2534,0.2266,-0.0266,-0.24,0.3466,0.4,0.8266,0.88,1,0.8,0.9866,0.8266,0.6934,0.4666,0.8534,0.8,0.5334,0.8934,0.7866,0.8534,0.8266,0.6,0.5334,0.64,0.52,0.6934,0.8534,0.5466,0.64,0.4666,-0.4604,-1,-1,1,-1,1,-0.4,-0.6666,-1,-0.3188,-0.0434,0,0.087,0.058,0.0724,0.1884,0.2028,0.3914,0.4058,0.4928,0.6666,0.7392,0.5072,0.3624,0.3624,0.4348,0.9566,1,0.5218,0.855,0.7246,0.5652,0.6812,0.4782,0.3188,0.1594,0.1884,0.2174,-0.1884,0.029,-0.2608,'22'
-0.0158,0.752,0.6614,0.8622,0.6024,0.059,-0.189,-0.122,-0.244,-0.2678,-0.2284,-0.3268,-0.1614,-0.0944,-0.004,0.1772,0.3386,0.6654,0.807,0.9528,0.8386,0.7716,0.933,1,0.9292,0.7716,0.307,0.1692,0.0512,-0.0472,0.0434,0.1772,-0.0866,0.46,0.3234,0.4434,0.0734,-0.2634,-0.35,-0.4366,-0.4866,-0.6666,-0.4966,-0.5766,-0.53,-0.4934,-0.5666,-0.35,-0.2734,-0.11,0.27,0.3766,1,0.9566,0.5766,0.48,0.66,0.5266,0.5466,0.15,0.0966,0.07,-0.0566,0.1234,-0.0434,0.5126,0.5776,0.7472,0.2708,-0.1552,-0.2672,-0.3936,-0.5306,-0.5416,-0.462,-0.491,-0.5452,-0.3322,-0.3754,-0.2202,-0.1046,-0.083,0.3032,0.7582,1,0.7292,0.8376,0.7582,0.7364,0.9206,0.751,0.3104,0.1372,0.2094,0.296,0.2454,-0.06,0.4992,0.8078,1,0.633,-0.1972,-0.132,-0.2178,-0.362,-0.41,-0.2658,-0.259,-0.2282,-0.0532,-0.1424,0.091,0.2968,0.3894,0.6432,0.6638,0.753,0.6192,0.7462,0.554,0.4202,0.1012,0.1012,0.0188,-0.115,0.091,0.1492,0.283,-0.0466,0.56,0.7434,1,0.7734,-0.17,-0.28,-0.2334,-0.1534,-0.1834,-0.14,-0.1434,-0.0266,0.0434,0.1466,0.02,-0.0034,-0.1034,-0.16,-0.1434,-0.2034,0.07,0.01,-0.11,-0.3534,-0.3466,-0.4866,-0.5766,-0.56,-0.5666,-0.35,-0.1234,0.1834,1,0.98,0.1866,0.12,0.2034,0.1334,0.11,0.05,0.29,0.24,0.1134,-0.0734,-0.22,-0.3166,-0.3734,-0.3466,-0.4334,-0.3334,-0.34,-0.5,-0.42,-0.08,-0.1634,-0.3966,-0.43,-0.51,-0.6334,-0.5334,-0.43,-0.2834,0.0266,-0.3298,0.9088,1,0.1192,-0.2808,-0.3334,-0.0702,-0.0246,0.0526,0.0912,-0.1438,-0.3544,-0.0878,-0.1018,-0.1964,-0.4,-0.3052,-0.235,0.0176,0.035,-0.235,-0.4036,-0.4596,-0.2666,-0.2982,-0.4036,-0.6912,-0.5474,-0.5544,-0.4948,-0.3754,-0.407,0.2728,0.8788,0.8182,1,0.8788,0.394,0.0304,0.1516,-0.1516,0.091,-0.2122,0.1516,0.0304,0.3334,0.0304,0.3334,0.6364,0.8182,0.1516,0.4546,0.5758,0.7576,0.5152,0.697,0.394,0.394,0.091,-0.0304,0.1516,-0.0304,0.091,-0.0304,0.24,0.76,0.84,1,0.8,0.44,0,0.24,0.08,0.2,0.16,0.2,0.36,0.36,0.52,0.4,0.84,0.92,1,0.8,0.72,0.8,1,0.96,0.96,0.48,0.56,0.4,0.36,0.36,0.28,0.56,-0.0526,0.579,0.7106,1,0.7632,-0.3684,-0.3684,-0.3684,-0.1578,-0.1316,-0.079,-0.079,0.0526,-0.2106,0.079,-0.1316,-0.2632,-0.2632,-0.2106,-0.3158,-0.3948,-0.1578,-0.3158,-0.2894,-0.421,-0.3684,-0.6052,-0.6578,-0.5264,-0.5,-0.3948,-0.3158,-0.8946,-0.6396,1,1,1,1,1,0.7522,-0.6894,-0.866,-0.5714,0.7456,0.0026,-0.1098,-0.1596,-0.111,0.2212,0.457,0.0948,-0.2512,-0.3768,-0.684,-0.9108,-0.9222,-0.7868,-1,-1,-1,-1,-1,-1,-1,-1,-0.586,0.992,1,1,1,1,1,1,-0.751,-0.8896,-0.2504,0.7788,0.175,0.055,0.0234,0.0716,0.2594,0.314,-0.0638,-0.439,-0.5336,-0.7572,-0.9138,-0.9292,-0.8388,-1,-1,-1,-1,-1,-1,-1,-1,-0.6434,0.91,-0.6,-0.6234,-0.66,-0.7168,-0.7168,-0.8034,-0.9,-0.8734,-0.6534,-0.6378,-0.609,-0.7334,-0.709,-0.672,-0.826,-0.838,-0.872,-0.93,-0.928,-0.926,-0.7934,-0.9434,-0.9768,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,0.9714,-0.6,-0.8,1,1,1,1,1,1,-0.2858,-0.9142,-1,-0.9714,-0.2572,0,0.9142,-0.3142,-0.5714,-0.7142,-0.6,-0.8572,-0.4572,-1,-1,-1,-1,-1,-1,-1,-1,0.1798,0.163,0.1182,0.1042,0.0884,0.0718,0.014,-0.0022,0.0134,0.0394,0.2732,0.2976,0.3768,0.4274,0.4714,0.5576,0.6208,0.7214,0.7444,0.0654,-0.7066,0.1294,-0.1896,0.4494,0.99,0.7742,0.3852,1,-0.2184,0.2644,0.7472,0.7702,0.6782,0.816,0.931,1,0.931,1,0.954,0.931,0.931,0.885,0.839,0.7702,0.7242,0.7702,0.7472,0.7012,0.7702,0.816,0.7012,0.6552,0.7242,0.6552,0.5172,0.4942,0.3564,0.3104,0.1264,-0.3564,0.2372,0.3196,0.3402,0.5052,0.299,0.402,0.6288,0.8144,0.7114,0.7732,0.6082,0.6702,0.732,0.7938,0.7938,0.6908,1,0.9588,0.6908,0.9176,0.732,0.7526,0.7114,0.7732,0.7526,0.732,0.7732,0.6908,0.567,0.4226,0.3402,-0.3196,0.6572,1,0.7142,0.4666,0.3524,0.219,0.3904,0.4858,0.562,0.4666,0.4286,0.6,0.562,0.3714,0.2762,0.238,0.7334,0.638,0.4476,0.7334,0.3904,0.2762,0.238,0.4286,0.181,0.1048,0.2572,0.0666,0.1238,-0.238,0.0286,-0.0858,0.6934,-1,-1,1,-1,1,-1,-0.8,-1,-0.1604,0.7778,0.1604,0.3334,1,0.679,0.6296,0.8518,0.4814,0.9012,0.7038,0.3334,0.3828,0.358,0.2098,-0.0124,-0.1112,0.358,0.4074,0.753,0.7038,0.8272,0.6296,0.5308,0.1358,0.1112,-0.1112,0.1852,-0.0864,0.1852,-0.3086,-0.8024,'23'
-0.106,0.5984,0.7424,1,0.8826,0.2954,0.1704,0.2424,0.25,0.3636,0.3636,0.4166,0.3296,0.3372,0.0984,0.0492,-0.0946,-0.1174,-0.1478,-0.2234,-0.072,0.1704,0.3372,0.1856,0.0228,-0.2766,-0.2804,-0.3978,-0.4166,-0.2272,-0.269,-0.216,0.2296,1,0.8618,0.9704,0.605,0.1062,-0.116,-0.0962,-0.1902,-0.279,-0.1556,-0.353,-0.1654,-0.0814,0.0814,0.1802,0.4074,0.4914,0.432,0.7086,0.5604,0.5852,0.6692,0.8272,0.2988,-0.0618,-0.121,-0.1902,-0.3136,-0.2346,-0.126,-0.1754,0.13,0.8062,0.6644,0.669,0.2672,-0.2198,-0.3806,-0.4184,-0.494,-0.6596,-0.513,-0.8582,-0.6974,-0.617,-0.6028,-0.6548,-0.532,-0.1774,0.078,0.2718,0.9528,1,0.6832,0.5934,0.8628,0.688,0.2388,0.007,-0.0402,0.0732,0.0496,0.305,0.1024,0.7648,0.695,0.9608,0.6688,-0.0022,-0.1328,-0.098,-0.22,-0.329,-0.316,-0.403,-0.2332,-0.2942,-0.1764,-0.1112,-0.0936,0.3202,0.5164,0.8518,0.7168,0.939,0.8954,0.9956,1,0.987,0.4684,0.3944,0.2898,0.1242,0.3334,0.5382,-0.0608,0.5544,0.6758,1,0.8122,-0.2412,-0.2118,-0.1124,-0.2596,-0.2376,-0.3812,-0.418,-0.0644,-0.1492,-0.046,0.0976,0.2634,0.5728,0.6428,0.3886,0.4328,0.7974,0.7642,0.5028,0.3592,0.1234,-0.035,-0.1528,-0.2744,-0.1124,-0.0166,0.1566,-0.056,0.579,0.6086,1,0.8586,-0.2664,-0.227,-0.0428,-0.3124,-0.1744,-0.2368,-0.1414,-0.0362,0.0098,0.2664,0.2434,0.1578,0.0954,-0.1052,-0.1612,0.1152,0.2664,0.329,0.0132,-0.2368,-0.3882,-0.421,-0.4112,-0.3256,-0.3092,-0.2368,0.2468,0.1478,1,0.9728,0.6342,0.568,0.1362,0.0856,0.2334,0.0934,0.214,0.1478,0.3386,0.3814,0.3736,0.2024,0.1128,0.07,-0.035,-0.1634,-0.1206,-0.0038,0.14,0.3814,0.3696,-0.0856,-0.3852,-0.4046,-0.4552,-0.284,-0.1712,0.0312,0.3152,0.238,0.9524,1,0.9524,1,0.762,0.619,0.5238,0.5714,0.5238,0.4762,0.5238,0.238,0.238,0.1428,-0.2858,-0.5714,0,-0.238,-0.1428,-0.2858,-0.0476,0.381,0.238,0.3334,0.0476,-0.4286,-0.0952,-0.4762,0.0476,0.0952,0.0952,-0.0834,0.4584,0.6666,1,0.9166,0.4166,0.375,0.4584,0.4166,0.5416,0.5416,0.625,0.3334,0.3334,-0.2084,-0.25,-0.2084,-0.2916,-0.2916,-0.3334,-0.0834,0.1666,0.4166,0.4584,0.125,-0.2916,-0.2916,-0.5,-0.375,-0.4166,-0.2916,-0.1666,0.183,0.831,0.6902,0.662,0.2676,0.014,-0.2958,-0.2958,-0.2112,-0.3802,-0.183,-0.6056,-0.3522,-0.2676,-0.3522,-0.0422,-0.0704,0.3522,0.5774,0.9718,0.7746,0.5774,0.9718,1,0.3802,-0.014,0.2958,0.0986,-0.2112,0.183,0.2958,0.014,-0.9854,-0.9892,-0.8108,0.3878,0.2738,0.0342,0.1688,0.0222,-0.668,-0.89,-0.9324,0.7496,0.5914,-0.2632,-0.4054,-0.4074,-0.3004,-0.0442,0.1948,0.1486,0.0102,-0.4402,-0.8394,-0.9196,-0.9576,-0.9664,-0.89,-1,-1,-1,-1,-1,-1,-0.9742,-0.9816,-0.2282,0.5844,0.7064,0.5744,0.8734,0.5244,-0.7208,-0.9104,-0.9182,0.6718,0.5632,-0.2716,-0.4066,-0.3968,-0.2322,-0.0396,0.1726,0.0704,-0.0774,-0.5248,-0.8378,-0.8942,-0.9274,-0.9394,-0.7662,-1,-1,-1,-1,-1,-1,-0.9734,-0.9468,0.08,-0.3768,-0.7634,-0.8234,-0.7368,-0.8734,-0.94,-0.9034,-0.5268,-0.8326,-0.84,-0.9026,-0.8676,-0.89,-0.85,-0.829,-0.8824,-0.8734,-0.8424,-0.9556,-0.9168,-0.7,-0.5968,-0.7134,-0.7034,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,0.9142,-0.2858,0.2572,1,1,0.5142,1,1,0.4286,0.0572,-0.2572,-0.7142,-0.8,-0.6286,-0.5714,-0.2858,-0.1428,0.1428,-0.5142,-0.7142,-0.9142,-0.8,-0.7142,-1,-1,-1,-1,-1,-1,0.6166,0.5966,0.575,0.5148,0.4694,0.4212,0.301,0.1638,0.0404,0.0982,-0.6162,-0.652,-0.6698,-0.7572,-0.7584,-0.7448,-0.5636,-0.245,0.1284,-0.1114,-0.7334,-0.0236,-0.9274,-0.1764,0.7292,0.9654,0.9122,1,-0.3104,0.1494,0.4022,0.3794,0.6782,0.7472,0.7242,0.4482,0.7242,0.6092,0.816,0.7932,0.6322,0.7242,0.6782,0.908,0.931,0.7932,0.6092,1,0.908,0.862,1,0.816,0.839,0.862,0.6092,0.7242,0.7472,0.4022,0.2874,-0.1724,-0.7482,-0.2028,-0.1468,-0.1888,-0.2448,-0.2028,-0.2028,0.2168,0.4126,-0.077,0.063,0.091,0.6784,0.3146,0.3566,0.4826,0.3146,0.2868,0.6924,0.6924,1,0.916,0.6504,0.6084,0.7062,0.8882,0.902,0.5664,0.3846,0.5524,0.6364,0.063,0.3162,0.587,0.587,0.458,-0.0194,0.1354,0.213,0.3678,0.6388,0.329,0.458,0.4968,1,0.6904,0.2646,0.4322,0.458,0.8838,0.9484,0.742,0.8452,0.8194,0.5354,0.5226,0.7548,0.6774,0.742,0.4968,0.4322,0.471,0.342,-0.2646,1,1,-1,-1,-1,-1,-0.8,-0.7334,-1,-0.5834,-0.5208,0.3124,0.4792,0.4376,0.875,0.9584,0.4584,0.4584,0.3334,0.1458,-0.0208,0.375,0.4584,0.3542,0.375,0.0624,0.2292,0.1458,0.125,0.8334,1,0.5,0.25,0.0416,0.0624,0.2084,-0.1458,-0.375,-0.0208,-0.1042,-0.25,'23'
-0.5636,0.0662,0.21,0.4696,0.5856,0.7404,0.685,0.4364,0.3426,0.2818,0.2596,0.3038,0.3922,0.464,0.6244,0.674,0.9558,1,0.9834,0.9668,0.873,0.8618,0.9282,0.9448,0.9282,0.9282,0.8122,0.8066,0.7404,0.7292,0.7846,0.768,-0.3854,0.0828,0.1868,0.4894,0.6454,0.8818,0.7684,0.3996,0.2482,0.357,0.253,0.338,0.4658,0.5224,0.6974,0.74,0.9622,0.981,1,0.9952,0.8724,0.825,0.8866,0.8204,0.9574,0.8676,0.792,0.6596,0.669,0.565,0.6738,0.636,-0.3162,0.1256,0.1906,0.4326,0.6744,0.8418,0.693,0.5768,0.3442,0.4046,0.3906,0.4094,0.521,0.5116,0.6884,0.6652,0.972,0.893,1,0.8698,0.8418,0.7674,0.8698,0.828,0.9162,0.7768,0.8232,0.6558,0.6558,0.6512,0.6232,0.6976,-0.3468,0.124,0.1088,0.357,0.5646,0.7216,0.6102,0.7114,0.4026,0.3822,0.4532,0.4582,0.5038,0.4684,0.7822,0.7822,1,0.8632,1,0.8126,0.838,0.7874,0.8582,0.8482,0.8784,0.7114,0.6962,0.5444,0.4988,0.5342,0.4228,0.595,-0.391,0.0164,0.074,0.2634,0.3992,0.5186,0.6666,0.7284,0.3662,0.3704,0.428,0.3744,0.5062,0.5268,0.7038,0.8766,1,0.7736,0.7696,0.679,0.7038,0.7326,0.679,0.712,0.5884,0.5226,0.428,0.358,0.288,0.3744,0.3744,0.4116,-0.4878,-0.1024,0.082,0.2214,0.4796,0.5286,0.6722,0.664,0.4796,0.4098,0.3812,0.3688,0.459,0.6722,0.709,1,0.9672,0.8196,0.709,0.7786,0.7132,0.7336,0.4836,0.4836,0.3606,0.3032,0.2746,0.1844,0.246,0.332,0.3648,0.3114,-0.3574,0.2494,0.2288,0.2802,0.4704,0.6298,0.5322,0.5012,0.342,0.2544,0.162,0.1928,0.4808,0.4602,0.5526,0.815,1,0.9846,0.892,0.8304,0.5836,0.527,0.2544,-0.0796,-0.0488,-0.0334,-0.0746,-0.126,-0.0848,0.0642,0.0746,-0.0232,-0.909,0.0454,0.409,0.3182,0.5,0.6364,0.6364,0.5454,0.3636,0.3182,0.3636,0.3636,0.3636,0.591,0.6818,0.7728,0.9546,0.9546,1,1,1,0.909,0.9546,1,0.9546,0.909,0.909,0.909,0.8182,0.8636,0.8636,0.8636,-0.5926,0.037,0.074,0.5926,0.7038,0.7408,0.7778,0.4444,0.4814,0.2962,0.3704,0.3704,0.4814,0.4444,0.6666,0.6666,0.926,0.8148,1,0.963,0.926,0.926,0.963,0.963,0.926,0.963,0.8148,0.8518,0.6666,0.7408,0.7408,0.7778,-0.3438,0.0938,0.1876,0.4688,0.6406,0.8594,0.7344,0.4218,0.2968,0.375,0.2812,0.3438,0.4844,0.5156,0.7188,0.7188,0.9062,0.8906,1,0.9376,0.8594,0.7344,0.7968,0.7032,0.9218,0.7344,0.7656,0.5624,0.6718,0.5938,0.6718,0.7032,-1,-1,-1,-1,-1,-1,-1,-1,-0.9864,-0.9864,-0.9464,0.12,0.4752,0.8372,0.9688,0.6562,0.2074,0.0244,-0.1106,-0.1092,-0.2184,-0.558,-0.9546,-0.981,-0.9762,-0.8786,-0.8806,-0.8672,-0.9308,-0.9512,-0.9662,-0.9728,-0.9756,-1,-1,-1,-1,-1,-1,-1,-1,-0.9908,-0.9918,-0.9482,0.4282,0.7738,0.8346,0.993,0.6832,0.428,0.3864,0.5168,0.4856,0.1346,-0.7204,-0.9584,-0.9872,-0.9838,-0.7428,-0.7118,-0.7122,-0.7092,-0.7328,-0.7638,-0.7906,-0.826,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.8934,-0.3334,-0.305,-0.315,-0.38,-0.58,-0.532,-0.488,-0.556,-0.34,-0.404,-0.368,-0.58,-0.5868,-0.8068,-0.7634,-0.31,0.13,0.7066,0.92,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,0.6572,1,1,1,-0.4572,-0.6,-0.6286,-0.6572,-0.7142,-0.6286,0.6858,1,1,1,-0.0286,1,1,1,0.4,-0.7714,-0.6286,-0.8,-0.9428,-0.8858,1,1,1,1,1,1,1,1,1,1,0.407,0.407,0.378,0.3762,0.3854,0.3622,0.326,0.2836,0.2036,-0.3212,-0.7466,-0.5058,-0.9798,-0.242,0.7834,0.802,0.8412,1,-0.1042,-0.2638,0.2884,1,0.7668,0.5828,0.497,0.362,0.632,0.362,0.3742,0.4234,0.5214,0.4846,0.2148,0.2392,0.595,0.4846,0.043,0.3496,0.3988,0.5092,0.4724,0.4602,0.3988,0.1902,0.3496,0.0062,0.0674,0.0674,-0.092,-0.8896,0.026,0.091,0.5454,0.6104,0.4546,0.3896,0.4676,1,0.3246,0.7142,0.6624,0.4676,0.4416,0.1948,0.6494,0.6754,0.5844,0.7402,0.6234,0.5584,0.6884,0.6364,0.5844,0.7532,0.4806,0.6624,0.4676,0.4026,0.1038,-0.1168,-0.078,-0.5194,-0.3122,-0.1226,-0.162,0.2648,0.2332,0.0672,0.1778,0.249,0.5256,0.6206,0.2806,0.4388,0.4308,0.3834,0.4704,0.4308,0.3044,0.5652,0.5968,0.8102,1,0.6284,0.8972,0.8182,0.6284,0.5574,0.1542,0.2728,0.0672,-0.1304,-0.3754,-0.8578,-0.9962,1,-1,-1,-1,-1,-0.8,-1,1,-0.8698,-0.716,-0.3964,-0.5148,-0.6686,-0.4674,-0.2426,-0.219,0.1834,0.065,0.2544,0.2662,0.219,0.219,0.1716,0.1834,0.3136,0.3846,0.1716,0.3728,0.4912,0.6686,0.5148,0.6094,0.7752,0.929,0.8462,0.8934,1,0.9882,0.9172,0.7042,'24'
-0.0222,0.6334,0.5888,0.5112,0.5112,1,0.9334,0.8778,0.7334,0.3778,0.2,0.2666,0.4778,0.6444,0.5112,0.5778,0.5888,0.9334,0.9556,0.7334,0.4888,0.4556,0.8112,0.9112,0.8112,0.6112,0.3334,0.3112,0.2,0.2556,0.5444,0.6444,-0.1192,0.5138,0.4678,0.1744,0.734,1,0.7798,0.7798,0.5138,0.312,0.266,0.3394,0.1744,0.266,0.5964,0.5964,0.7798,0.7614,0.8256,0.7706,0.734,0.734,0.9816,0.789,0.5596,0.3762,0.4588,0.4312,0.1744,0.0826,0.2568,0.4496,-0.1666,0.4562,0.3948,0.2982,0.7018,0.9736,0.7982,0.6578,0.4474,0.3684,0.1228,0.2894,0.386,0.4824,0.614,0.6578,0.9736,1,0.8422,0.8596,0.807,0.7894,0.9474,0.8684,0.6492,0.5526,0.465,0.307,0.193,0.2456,0.4386,0.2368,-0.224,0.328,0.264,0.496,0.64,0.896,0.744,0.648,0.464,0.456,0.248,0.336,0.376,0.472,0.592,0.672,0.96,1,0.92,0.904,0.864,0.816,0.76,0.704,0.52,0.408,0.312,0.304,0.424,0.408,0.528,0.632,-0.3358,0.1072,0.2072,0.4142,0.7286,0.8286,0.45,0.4928,0.3214,0.3,0.2428,0.1928,0.35,0.3714,0.5286,0.7642,0.85,0.9572,1,0.8786,0.8,0.8642,0.7358,0.5142,0.3428,0.2572,0.3072,0.2214,0.3286,0.3286,0.4142,0.4428,-0.6094,0.0976,0.1814,0.4698,0.7024,0.6558,0.3954,0.172,0.0232,-0.0698,-0.0512,-0.107,0.1442,0.1162,0.3954,0.507,0.9442,1,0.9628,0.907,0.9442,0.7116,0.3768,0.2186,-0.0604,-0.0232,-0.107,-0.0512,-0.0884,-0.0604,0.0512,0.1256,-0.5124,0.2338,0.4228,0.1442,0.2238,0.2936,0.0846,-0.1244,-0.0746,-0.1144,-0.204,-0.0946,0.0646,0.1442,0.194,0.602,0.7014,1,0.9502,0.8208,0.7314,0.5422,0.2836,0.1542,0.1244,-0.015,0.1244,0.1344,-0.2238,-0.0646,-0.005,-0.0646,0.0204,0.5918,0.551,0.5102,0.4694,0.8776,0.796,0.8368,0.7142,0.3878,0.3062,0.0612,0.5102,0.6734,0.551,0.5102,0.4286,0.8368,1,0.9592,0.551,0.347,0.6326,0.8368,0.8368,0.551,0.3878,0.4286,0.2654,0.5102,0.5102,0.5918,-0.1708,0.5122,0.4634,0.1708,0.7074,1,0.756,0.9024,0.561,0.2682,0.2682,0.317,0.1708,0.2196,0.4634,0.6098,1,0.9512,0.9512,0.8536,0.7074,0.756,0.9024,0.7074,0.6586,0.2682,0.3658,0.4146,0.4146,0.2196,0.4634,0.6098,-0.3664,0.208,0.208,0.5248,0.802,0.9208,0.6238,0.3664,0.1684,0.1684,0.1288,0.1288,0.3466,0.307,0.406,0.703,0.901,0.9208,1,0.802,0.8416,0.7624,0.6634,0.2674,0.1288,0.1486,0.1486,0.1288,0.1882,0.1486,0.1882,0.2674,-1,-1,-1,-1,-0.9798,-0.9714,-0.9778,-0.7534,-0.8486,-0.7596,-0.1222,-0.0174,-0.008,0.0344,0.1646,0.352,0.6464,1,0.767,0.2514,-0.0704,-0.7204,-0.946,-0.9704,-0.9778,-0.981,-0.8074,-0.711,-0.5892,-0.8836,-0.9682,-0.965,-0.9756,-1,-1,-1,-1,-0.987,-0.9294,-0.971,-0.491,-0.7744,-0.806,-0.4726,-0.3574,-0.3616,-0.3396,-0.105,0.1104,0.362,0.9552,0.6784,0.0832,-0.2088,-0.8456,-0.9186,-0.981,-0.9852,-0.986,-0.3716,-0.3318,-0.0446,-0.131,-0.0178,0.0128,-0.237,-1,-1,-1,-1,-0.9734,-0.5,-0.6,-0.1,0,0.1332,-0.4734,-0.6934,-0.6668,-0.66,-0.7068,-0.7334,-0.6934,-0.6534,-0.5934,-0.5734,-0.6268,-0.49,-0.6768,-0.7568,-0.9468,-0.8934,-0.64,0.4032,1,1,1,1,1,-1,-1,-1,-1,0.3714,0.5714,1,1,-0.4,0.4572,0.4858,-0.4858,-0.6858,-0.8,-0.4286,-0.1142,-0.3142,-0.4,1,1,1,1,1,0.3714,-1,1,1,1,1,0.6286,0.2858,-0.7428,-0.8286,1,1,1,1,1,1,1,1,1,1,-0.089,-0.089,-0.218,-0.218,-0.1862,-0.1334,-0.139,-0.0798,-0.1238,-0.3284,-0.7734,-0.7176,-0.4184,-0.3766,-0.3396,-0.3722,-0.2146,0.8166,-0.0526,0.048,0.2814,0.3136,0.4554,0.6248,0.7758,0.6568,0.881,1,0.7666,0.8124,0.7804,0.4234,0.4646,0.373,0.492,0.46,0.4004,0.286,0.2266,0.46,0.3822,0.2998,0.3638,0.4324,0.6156,0.2448,0.3456,0.1212,0.0846,-0.2952,-0.5766,-0.1678,0.4198,0.3358,0.2116,0.1204,0.2592,0.219,0.8284,1,0.8906,0.9124,0.8686,0.6752,0.4744,0.489,0.8138,0.8284,0.8906,0.865,0.949,0.8394,0.6132,0.6642,0.3576,0.0438,-0.0948,-0.0328,0.1132,0.1278,-0.0218,-0.1898,0.2294,0.4392,0.5082,0.6072,0.3794,0.2294,0.2654,0.3704,0.7152,0.877,0.7782,0.883,1,0.6732,0.5442,0.5142,0.6462,0.85,0.7722,0.6702,0.97,0.859,0.6522,0.6372,0.4482,0.0734,-0.0704,0.3254,0.3374,0.1424,0.0794,-0.1034,-0.997,-1,1,-1,0.2,-1,-0.8,0.5,1,-0.9078,-0.6958,-0.7328,-0.6222,-0.5944,-0.576,-0.576,-0.3548,-0.2258,-0.3364,-0.235,-0.189,-0.189,-0.318,-0.2166,-0.2718,-0.2442,-0.1706,0.0692,0.106,0.2074,0.4102,0.447,0.3824,0.3364,0.3364,0.447,0.53,0.659,1,0.7788,0.2626,'24'
0.0136,0.7486,0.7186,1,0.9234,0.5028,0.388,0.5928,0.3798,0.358,-0.071,-0.1694,-0.399,-0.388,-0.5984,-0.6174,-0.623,-0.5928,-0.4754,-0.3744,-0.4316,-0.552,-0.7296,-0.754,-0.705,-0.6694,-0.541,-0.6558,-0.552,-0.2868,-0.224,-0.448,-0.0928,0.4736,0.396,0.5338,0.7994,1,0.8446,0.9274,0.8522,0.8848,0.5112,0.376,0.0526,-0.0878,-0.0978,-0.2756,-0.1804,-0.4036,-0.3284,0.1052,0.1478,-0.223,-0.4962,-0.4736,-0.5814,-0.5038,-0.4712,-0.3408,-0.015,0.0552,0.1002,-0.1078,-0.2042,0.2836,0.1856,0.1598,0.664,0.7362,0.9534,0.958,0.538,0.7526,1,0.8274,0.2812,0.1996,0.2486,0.0386,0.0012,-0.1622,-0.0338,0.1668,0.1738,0.2392,0.0666,0.0946,-0.3512,-0.4492,-0.5146,-0.1342,0.0828,0.0642,0.1038,0.3046,-0.2306,0.2598,0.1504,0.1456,0.5632,0.631,1,0.9684,0.619,0.6844,0.864,0.5534,0.602,0.3786,0.3666,-0.051,-0.0946,0,-0.0486,0.0606,0.3422,0.3714,-0.0266,-0.0486,-0.2718,-0.3738,-0.2718,-0.3908,-0.2038,0.1408,0.136,0.4418,-0.204,0.288,0.1768,0.162,0.5624,0.6168,1,0.953,0.7528,0.607,0.6886,0.8838,0.9604,0.7132,0.691,0.3054,0.1742,0.2164,0.0086,0.1348,0.644,0.6242,0.0556,-0.068,-0.0186,-0.2336,-0.2534,-0.1742,-0.2064,0.1668,0.3548,0.5228,-0.1764,0.3014,0.1908,0.3158,0.587,0.6446,1,0.952,0.5486,0.4214,0.2436,0.3638,0.4574,0.7552,0.772,0.8704,0.7984,0.4814,0.371,0.4718,0.6422,0.6686,0.431,0.3494,0.198,0.078,-0.0228,0.102,0.1692,0.1836,0.3614,0.671,-0.1184,0.457,0.36,0.5044,0.726,0.8556,0.4646,0.5068,0.1308,0.1458,-0.1008,-0.1732,-0.0884,0.0636,0.31,0.5118,0.6688,0.8954,1,0.6338,0.6338,0.6438,0.5916,0.6688,0.5516,0.4496,0.2952,0.2752,0.2826,0.35,0.3126,0.3998,0.2632,0.9298,1,0.7894,0.8948,0.6492,0.6492,0.5438,0.7192,0.6842,0.228,0.193,0.0878,-0.0526,-0.228,-0.193,-0.0176,-0.228,0.1228,0.0878,-0.0878,-0.2982,-0.2982,0.0176,0.193,0.1228,-0.0176,0.0176,-0.193,-0.4036,-0.0526,-0.1578,0.3062,0.9184,1,0.8776,0.796,0.5918,0.6326,0.7552,0.7552,0.5918,0.3062,0.1836,0.0204,-0.2654,-0.2654,-0.4286,-0.2654,-0.2654,-0.4286,-0.0612,0.0204,0.0204,-0.3062,-0.5102,-0.3878,-0.3878,-0.3062,-0.102,-0.102,-0.1836,-0.1428,-0.3062,-0.125,0.375,0.2708,0.3124,0.8124,0.8958,0.9792,1,0.7292,0.7292,0.9376,0.7916,0.3334,0.2708,0.2708,0.1042,0.0416,-0.0416,0.1458,0.3124,0.3334,0.3958,0.125,0.1666,-0.1666,-0.2292,-0.3542,-0.125,0.2916,0.2292,-0.0416,0.0834,-1,-1,-1,-1,-1,-1,-1,-1,-0.9822,-0.9828,-0.7936,-0.108,0.7004,0.1636,-0.0126,-0.1596,-0.2172,-0.326,-0.347,-0.3574,-0.207,-0.2984,-0.4574,-0.6518,-0.8742,-0.908,-0.9508,-0.9514,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9712,-0.9744,-0.843,-0.2954,0.5362,0.8164,0.7236,0.9074,0.5994,0.4124,0.4506,0.3104,0.2504,-0.0536,-0.4176,-0.6424,-0.8154,-0.8388,-0.8792,-0.8776,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7872,-0.9568,-0.96,-0.922,-0.86,-0.7782,-0.7546,-0.7782,-0.76,-0.7534,-0.6434,-0.695,-0.7634,-0.7484,-0.9668,-0.6868,-0.4668,-0.3034,-0.1334,-0.2268,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3142,-0.8572,0.7142,0.8286,0.2286,0.1714,-0.1142,-0.8572,-1,-0.8572,-0.6858,-0.5428,-0.6,-0.3142,-0.1714,0.1142,-0.4286,-0.6286,-0.7714,-0.8286,-1,-1,-1,-1,-1,0.54,0.5562,0.5686,0.6102,0.656,0.7176,0.8022,0.9186,1,1,-0.52,-0.5494,-0.5676,-0.5544,-0.5504,-0.5392,-0.6166,-0.704,-0.829,-0.8042,-0.7066,0.3648,-0.8622,-0.5094,-0.4346,-0.2976,-0.022,-0.8834,-0.1774,0.0496,0.4326,0.8156,0.8014,1,0.7022,0.7872,0.9008,0.8298,0.4326,0.3334,0.617,0.5178,0.546,0.4184,0.5744,0.39,0.3334,0.3192,0.39,0.4184,0.461,0.4468,0.5178,0.2482,0.4752,0.3758,0.688,0.4326,-0.0354,-0.305,0.1772,0.557,0.7468,0.8228,1,0.8228,0.886,0.557,0.6582,0.8608,0.6962,0.633,0.7342,0.5316,0.8734,0.7088,0.7468,0.5064,0.633,0.8734,0.886,0.7088,0.519,0.557,0.633,0.4556,0.4684,0.557,0.4556,0.2406,0.1646,-0.1266,0.3572,1,0.7142,0.1428,0.6548,0.5952,0.5952,0.0834,0.0952,0.3572,0.2976,0.119,0.1786,0.1072,0.262,0.25,0.3572,0.1786,0.0476,0.512,0.488,0.1428,0.0238,0.2976,0.2738,0.381,0.1666,0.3096,0.25,0.381,0.262,-0.0834,-0.9954,1,-1,-1,-1,-1,0.2,-1,-1,0.045,0.0674,0.337,0.6742,0.5394,0.4044,0.528,0.6966,0.7528,0.6068,0.236,0.618,0.8314,0.6742,0.6966,0.618,0.764,0.663,0.7078,0.6404,0.8988,1,0.6966,0.5618,0.4832,0.4158,0.3596,0.1348,0.2696,0.191,0.382,0.1686,'25'
0.0682,0.8828,0.7792,1,0.7902,0.2044,0.3324,0.3106,-0.0872,-0.2126,-0.4006,-0.6212,-0.6702,-0.6212,-0.6622,-0.872,-0.7766,-0.733,-0.7248,-0.6512,-0.5832,-0.7138,-0.722,-0.684,-0.7902,-0.7792,-0.793,-0.8092,-0.7412,-0.7302,-0.8746,-0.8092,-0.1916,0.2998,0.338,0.5066,0.8074,0.8556,1,0.9258,0.8736,0.685,0.344,-0.0832,-0.1354,-0.2358,-0.354,-0.2938,-0.3722,-0.2918,-0.1314,-0.1114,0.2558,0.1154,-0.302,-0.3862,-0.3742,-0.4584,-0.5166,-0.2698,-0.304,-0.1796,-0.302,-0.3862,-0.3414,0.0402,0.1532,0.2592,0.5364,0.5928,0.8888,0.7554,0.7708,0.9846,1,0.444,0.2198,0.1924,0.0984,0.1344,0.0402,-0.006,0.172,0.2764,0.3464,0.3464,0.3002,0.0076,-0.0282,0.006,-0.0094,-0.018,-0.0076,0.177,0.319,0.1924,-0.2992,0.1184,0.2302,0.3438,0.5582,0.6962,0.9944,0.8826,1,0.9776,0.9702,0.8994,0.7782,0.7186,0.4502,0.4744,0.396,0.3084,0.3942,0.4614,0.5136,0.8136,0.7502,0.301,0.2152,0.2972,0.1762,0.1482,0.1874,0.3216,0.437,0.5564,-0.2882,0.1184,0.2862,0.3894,0.519,0.79,1,0.792,0.7996,0.6222,0.5648,0.5858,0.7156,0.7938,0.874,0.834,0.7348,0.5362,0.6316,0.6736,0.624,0.79,0.624,0.5916,0.2978,0.2232,0.2004,0.1316,0.2176,0.2614,0.2672,0.519,-0.2178,0.2842,0.4918,0.6494,0.8858,0.8796,0.7074,0.5996,0.3174,0.11,0.1784,0.1162,0.1266,0.2926,0.2158,0.359,0.6142,0.6784,1,0.9958,0.8672,0.7262,0.6804,0.6784,0.61,0.4316,0.3526,0.2966,0.3196,0.3486,0.4606,0.639,-0.0764,0.7924,0.7732,0.537,0.4248,0.4152,0.272,0.0526,-0.1122,-0.2076,-0.3508,-0.315,-0.191,-0.2602,-0.1312,-0.1312,0,0.1026,0.6158,1,0.981,0.7948,0.8544,0.8926,0.8998,0.7924,0.5084,0.4152,0.3676,0.3102,0.272,0.339,0.1364,0.9546,1,0.6818,0.6364,0.2272,0.1818,0,-0.091,-0.1818,-0.0454,0,-0.2272,0.0454,-0.1364,-0.5,-0.2272,-0.2272,0,-0.1818,-0.2272,-0.409,-0.1818,-0.1364,-0.091,-0.2272,-0.5,-0.4546,-1,-0.3182,-0.1818,-0.2272,0.1708,1,1,0.9024,0.8048,0.5122,0.561,0.2196,0.122,-0.317,-0.1708,-0.4146,-0.317,-0.317,-0.317,-0.317,-0.2196,-0.317,-0.317,-0.317,-0.317,-0.317,-0.3658,-0.2682,-0.4634,-0.2682,-0.2682,-0.3658,-0.2682,-0.317,-0.4634,-0.1708,-0.234,0.1914,0.2128,0.3404,0.6808,0.7022,1,0.9148,0.8298,0.5958,0.6596,0.2766,0,-0.0212,-0.0852,0.0212,-0.1702,-0.1276,0.1702,0.2766,0.468,0.3192,-0.0852,-0.0852,-0.0852,-0.4256,-0.4042,-0.2766,-0.0212,-0.0212,-0.1064,-0.2128,-1,-1,-1,-1,-1,-1,-1,-1,-0.977,-0.976,-0.82,-0.2014,0.604,0.8188,0.821,0.844,0.4992,0.2242,0.0834,0.2536,-0.0246,-0.2668,-0.7708,-0.9148,-0.9422,-0.965,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9846,-0.9846,-0.9466,-0.7762,-0.4146,0.1576,0.6272,0.9256,0.577,0.1976,-0.1134,-0.3314,-0.5388,-0.7494,-0.9064,-0.9368,-0.9508,-0.9586,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8924,-0.9868,-0.9234,-0.9686,-0.8886,-0.7716,-0.6716,-0.6672,-0.732,-0.7228,-0.7628,-0.7628,-0.6988,-0.8788,-0.77,-0.37,-0.4068,-0.2368,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4,-0.8572,0.2858,0.2858,0.8286,0.6286,-0.2286,-0.6,-1,-0.6572,-0.4572,-0.6,-0.2572,0.2572,-0.4286,-0.6,-0.5714,-0.6572,-1,-1,-1,-1,-1,-1,-1,0.3394,0.3424,0.3568,0.3912,0.4856,0.6188,0.7522,0.898,1,1,-0.4462,-0.4202,-0.4198,-0.3976,-0.3592,-0.3632,-0.4452,-0.4782,-0.5902,-0.4214,-0.6534,0.7648,-0.95,-0.8206,-0.7732,-0.7762,-0.7828,-1,-0.0294,-0.103,0.3236,0.9118,1,0.9412,0.8088,0.6764,0.5588,0.647,0.5148,0.4412,0.9412,0.6618,0.6764,0.4118,0.2942,0.3236,0.2942,0.0442,0.2058,0.3088,0.4706,0,0.2206,0.4412,0.4264,0.4264,0.4118,0.4264,0.2794,-0.103,0.056,0.072,0.904,0.84,0.632,0.712,0.792,0.84,0.52,0.456,0.92,0.856,1,0.52,0.44,0.344,0.728,0.632,0.408,0.552,0.536,0.168,0.296,0.328,0.344,0.52,0.488,0.376,0.184,0.296,0.216,-0.328,0.477,1,0.2308,0.0616,0.4154,0.1692,0.277,0.523,0.3076,0.1846,0.4308,0.3846,0.6462,0.5846,0.3384,0.3538,0.3846,0.2308,0.1076,0.3076,0.2,0.3538,0.1076,-0.2,-0.123,0.1846,0.323,-0.123,-0.077,0.0308,-0.2,-0.5384,-0.9934,1,-1,-1,-1,-1,-0.6,-1,-1,-0.6034,-0.3884,-0.0744,0.4546,0.3058,-0.157,0.2728,0.8348,1,0.3884,0.2396,0.1404,0.438,0.2066,-0.091,0.0248,0.372,0.4546,0.2892,0.372,0.5042,0.7686,0.19,0.6364,0.5042,0.2396,0.091,0.1736,0.2562,0.2396,0.2562,-0.6198,'25'
0.1506,1,0.971,0.6516,0.5354,0.0998,-0.0562,-0.1688,-0.303,-0.1288,-0.2522,-0.285,-0.2522,-0.176,-0.0852,-0.0054,0.354,0.5318,0.9854,0.9528,0.7132,0.7096,0.5934,0.7604,1,0.9854,0.7168,0.4664,0.354,0.216,0.187,0.1834,0.1224,0.8304,0.7586,0.341,0.1648,-0.2496,-0.527,-0.5236,-0.5236,-0.4094,-0.7096,-0.765,-0.677,-0.6084,-0.106,-0.1484,-0.0474,-0.0538,0.3182,0.5562,1,0.9314,0.5498,0.5334,0.6934,0.4846,0.5758,0.5074,0.3246,-0.0016,0.018,0.0212,0.2496,0.915,0.7982,0.1894,-0.1186,-0.147,-0.6036,-0.561,-0.5716,-0.6566,-0.7274,-0.8902,-0.7982,-0.3628,-0.253,-0.4408,-0.4514,-0.0442,0.0266,0.253,0.8088,1,0.7558,0.5186,0.239,0.2,0.4584,0.6212,0.6354,0.43,0.423,0.5222,0.3346,1,0.7968,0.1792,-0.247,-0.235,-0.3546,-0.4462,-0.6334,-0.9562,-0.8248,-0.8366,-0.7888,-0.5936,-0.6374,-0.5936,-0.3784,-0.3306,-0.251,0.0756,0.4702,0.6216,0.8168,0.231,0.1634,0.1554,0.0718,0.1434,0.3306,0.5538,0.9562,0.9244,0.3544,1,0.811,0.307,-0.2322,-0.2796,-0.4292,-0.6496,-0.5708,-0.8544,-0.7716,-0.8504,-0.8268,-0.6378,-0.6024,-0.563,-0.307,-0.3386,-0.2796,-0.0472,0.2796,0.7126,0.811,0.0944,-0.0354,0.1456,-0.1024,-0.0276,0.4292,0.4528,0.8582,0.7756,0.3424,1,0.8094,0.3774,-0.14,-0.3386,-0.393,-0.432,-0.5058,-0.8288,-0.8482,-0.926,-0.786,-0.642,-0.7588,-0.7354,-0.4902,-0.4474,-0.498,-0.2412,0.2646,0.5252,0.498,0.1984,0.1906,-0.0622,-0.1556,-0.1284,0.1828,0.3464,0.3268,0.3308,0.3284,1,0.815,0.4302,-0.0114,-0.4604,-0.5962,-0.6,-0.6906,-0.8642,-0.7584,-0.6868,-0.5396,-0.4416,-0.5622,-0.5056,-0.5622,-0.3736,-0.4038,-0.132,0.3924,0.649,0.6378,0.2566,-0.0378,0.1962,0.1774,0.3056,0.6528,0.5924,0.3886,0.2452,0.1162,0.907,0.9534,0.3024,0.3488,0.1162,0.1162,-0.0232,-0.0232,-0.0698,-0.0698,-0.5348,-0.0698,-0.0698,0.0232,0.2558,0.5348,0.907,0.814,0.1628,0.1162,0.2558,0.0698,0.8604,0.907,0.8604,0.721,0.907,1,0.814,0.8604,0.721,0.1666,1,1,0.7778,0.6666,0.2222,0,-0.3334,-0.3334,-0.1666,-0.2778,-0.7222,-0.8334,-0.2778,-0.5556,-0.6112,0.3888,0.8888,1,0.7222,0.5556,0.7778,0.6112,1,0.7778,1,0.7222,0.3888,0.3888,0.3888,0.5556,0.5556,0.183,0.9154,0.8592,0.3802,0.1268,-0.183,-0.7464,-0.7746,-0.493,-0.4648,-0.5774,-0.5492,-0.6902,-0.7184,-0.1268,-0.2394,-0.1268,0.0704,0.3522,0.6902,1,0.8592,0.8592,0.7184,0.8028,0.5212,0.5492,0.7464,0.6338,0.2394,0.0986,0.2394,-0.9818,-0.9738,-0.9818,-0.8882,-0.2842,-0.383,-0.6744,-0.8286,-0.9446,-0.9628,-0.7086,0.6028,0.9546,0.8378,0.5414,0.2258,0.0604,-0.007,-0.0604,-0.0624,-0.0898,-0.1018,-0.7732,-0.8548,-0.865,-0.8952,-0.9254,-0.9344,-0.9144,-0.761,-0.6896,-0.5686,-0.5514,-0.9718,-0.9594,-0.9536,-0.8804,-0.3264,-0.2532,-0.4676,-0.6494,-0.6298,-0.3712,-0.0946,0.8074,0.9008,0.6602,0.4256,0.1264,0.0026,-0.112,-0.1612,-0.1822,-0.2176,-0.2416,-0.7124,-0.7306,-0.7624,-0.7422,-0.7668,-0.8268,-0.8638,-0.7406,-0.75,-0.6602,-0.6502,-0.98,-0.8468,-0.8,-0.6234,-0.83,-0.2668,0.0566,0.6432,1,1,1,-0.578,-0.812,-0.776,-0.86,-0.932,-0.934,-0.938,-0.942,-0.948,-0.924,-0.8346,-0.54,-0.1268,-0.0268,-0.3568,-0.24,-0.3934,-0.5334,-0.8,-0.9068,-0.9168,-0.8534,-1,-0.7428,-0.5428,1,1,1,-0.4286,-0.6858,-0.4572,0.1714,0.6,1,-0.4,-0.6286,-0.8,-0.8572,-0.9142,-1,-0.8858,-0.8,-0.9428,-0.5428,-0.4572,-0.6572,-0.5428,-0.5142,-0.6572,-0.0858,-0.2286,-0.1714,-0.6286,-1,-1,0.0604,0.0288,0.0054,0.008,-0.0258,-0.0622,-0.1342,-0.2262,-0.3892,-0.6042,0.6278,0.6462,0.657,0.6564,0.6902,0.7332,0.7026,0.7336,0.7252,0.6704,-0.68,0.1882,-0.1278,0.3712,0.8942,0.7762,0.971,-0.575,0.362,0.5538,-0.182,-0.4012,-0.6008,-0.6986,-0.405,-0.1194,0.1624,-0.0294,0.1702,-0.1194,0.3502,0.2408,0.3424,0.3424,0.2954,0.3424,0.315,0.409,0.6086,0.7104,0.863,0.9022,0.9844,1,0.9256,0.8396,0.6674,0.8396,0.8356,0.4872,-0.3122,-0.1822,-0.6728,-0.4982,-0.4944,-0.2194,-0.264,-0.4014,-0.1672,-0.0966,0.0484,-0.0298,0.1672,0.0484,-0.0038,0.2528,0.3234,0.2602,0.1302,0.2528,0.3198,0.5354,0.5242,0.565,0.7696,0.7324,0.8216,0.9256,0.9182,1,0.8514,0.3644,-0.8036,-0.5766,-0.592,-0.549,-0.4846,-0.3282,-0.3128,-0.3344,0.3068,0.2792,0.1534,0.1626,0.2332,0.2178,0.3528,0.2148,0.3804,0.3774,0.2056,0.3496,0.4938,0.4938,0.5398,0.5368,0.5828,0.7914,0.9662,1,0.9662,0.8834,0.7884,0.6196,-0.3814,-1,-1,1,1,-0.8,-0.8,0.3334,-1,-0.2062,0.1756,-0.0534,0.2978,0.1908,0.0688,0.0534,0.2062,0.3588,0.8016,0.939,0.8474,0.832,0.7862,0.6946,0.5268,0.5268,0.771,1,0.6184,0.6794,0.771,0.8016,0.542,0.3894,0.252,0.084,0.0076,-0.0534,-0.2824,-0.084,-0.1908,'26'
0.1938,0.9354,0.8266,0.8096,0.5408,-0.0918,-0.136,-0.0646,-0.1564,-0.1122,-0.0952,-0.1326,-0.0238,-0.0544,0.1326,0.2654,0.5816,0.8436,1,0.7552,0.6258,0.381,0.5068,0.8368,0.9864,0.83,0.2926,0.0782,0.0714,0.0782,0.034,0.1224,0.0858,0.773,0.6932,0.5614,0.3588,-0.0828,-0.3958,-0.276,-0.3252,-0.2638,-0.3558,-0.3496,-0.2454,-0.3006,-0.23,-0.2668,0.092,0.224,0.4816,0.7884,1,0.8466,0.6748,0.6442,0.684,0.7576,0.7362,0.4264,0.322,0.2086,0.1134,0.1596,-0.0094,0.5982,0.4556,0.2626,-0.1076,-0.2944,-0.5886,-0.5886,-0.636,-0.6836,-0.4906,-0.6044,-0.5538,-0.4842,-0.5032,-0.3576,-0.2974,-0.0506,0.269,0.4146,0.9556,1,0.7944,0.5602,0.3132,0.2468,0.4114,0.5728,0.617,0.614,0.5854,0.5094,0.1004,0.7732,0.5986,0.4238,-0.0632,-0.3494,-0.6356,-0.684,-0.8328,-0.658,-0.4908,-0.8922,-0.8438,-0.7138,-0.803,-0.4722,-0.3978,-0.264,0.1636,0.197,0.829,0.6766,0.9702,0.6766,0.2118,0.1412,0.1486,0.5948,0.6394,1,0.777,0.9516,0.1428,0.8718,0.7106,0.5274,0.066,-0.2968,-0.5604,-0.6446,-0.6594,-0.8316,-0.8168,-0.8534,-0.7766,-0.5678,-0.6264,-0.6044,-0.6118,-0.3882,0.022,0.1722,0.6118,0.6228,0.7436,0.6374,0.3114,0.1246,0.3114,0.4726,0.5164,1,0.9194,0.8828,0.1706,1,0.8716,0.6256,0.3468,-0.134,-0.556,-0.5302,-0.7064,-0.8202,-0.688,-0.7504,-0.633,-0.8018,-0.6146,-0.6074,-0.5192,-0.5744,-0.5706,-0.0018,0.3614,0.8826,0.7468,0.5744,0.2184,0.3578,0.3432,0.534,0.7614,0.622,0.5744,0.4238,-0.1972,0.9692,1,0.1218,0.1526,-0.554,-0.3826,-0.331,-0.5712,-0.7564,-0.6296,-0.53,-0.6398,-0.6844,-0.5678,-0.6536,-0.5026,-0.386,-0.139,0.0394,0.3962,0.4854,0.4202,0.2006,0.3826,0.7084,0.6364,0.3344,0.108,-0.084,-0.1184,-0.06,0.1428,1,0.9286,0.6428,0.1428,-0.5714,-0.2142,-0.6428,-0.4286,-0.1428,-0.2858,-0.2858,0.0714,0.0714,-0.1428,-0.0714,-0.1428,0.6428,0.5,-0.2142,0.7142,0.7142,0.9286,1,0.7858,0.9286,0.6428,0.2142,0.4286,0.6428,0.6428,0.4286,0.2962,0.7408,0.7038,0.6666,0.4444,-0.037,0.1852,0.1852,-0.1482,-0.2222,0.1482,0.1112,0.1482,0,0.2592,0.4444,0.7408,0.8518,0.7408,0.5556,0.2592,0.2962,0.5556,0.8518,1,0.8888,0.4814,0.4444,0,0.2962,0.5186,0.4074,0.0618,0.7038,0.6296,0.432,0.2098,-0.0618,-0.4568,-0.3086,-0.3086,-0.2346,-0.2346,-0.3086,-0.358,-0.4814,-0.2346,-0.2098,0.037,0.1604,0.3828,0.9012,1,0.8518,0.8518,0.7038,0.679,0.9012,0.8518,0.679,0.4814,0.5062,0.3086,0.4568,-0.9784,-0.97,-0.9724,-0.898,-0.0636,0.1056,-0.186,-0.6026,-0.802,-0.7022,-0.2484,0.3854,0.9064,0.8488,0.3386,0.0036,-0.084,-0.1848,-0.275,-0.3434,-0.2642,-0.3758,-0.7094,-0.8644,-0.9112,-0.9556,-1,-1,-1,-1,-1,-1,-1,-0.9582,-0.9522,-0.9558,-0.9054,-0.2546,-0.1236,-0.1994,-0.534,-0.5374,-0.3084,0.0732,0.483,0.9498,0.8552,0.6474,0.2658,0.0298,-0.109,-0.2308,-0.3236,-0.3638,-0.465,-0.7232,-0.822,-0.8382,-0.8144,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.8334,-0.86,-0.7468,-0.89,-0.89,-0.7468,-0.0468,0.8132,0.8366,0.1932,-0.5528,-0.751,-0.7964,-0.7764,-0.8382,-0.8292,-0.6746,-0.8328,-0.8838,-0.951,-0.9668,-0.9068,-0.49,-0.3768,-0.28,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,-0.9714,0.5714,0.6858,1,1,-0.5428,-0.6858,-0.2572,-0.2572,0.1714,-0.0572,-0.6286,-0.8286,-0.8,-1,-1,-0.9142,-0.6572,-0.4858,-0.5714,-0.7142,-0.6858,-0.6,-0.7714,-1,-1,-1,-1,-1,-1,-1,-0.0322,-0.0244,-0.01,-0.0048,0.005,-0.008,-0.0256,-0.0568,-0.2274,-0.313,0.2052,0.1932,0.2254,0.2638,0.3182,0.4018,0.485,0.566,0.6348,0.6512,-0.6934,0.3176,0.08,0.1746,0.3288,0.4846,0.816,-0.1834,0.7894,1,0.4674,-0.0144,-0.0304,0.0398,-0.0176,0.1674,0.3748,0.1292,-0.161,-0.0334,0.1132,-0.0462,-0.1132,-0.1132,0.0176,0.1484,0.2918,0.362,0.2982,0.4354,0.5438,0.4546,0.2664,0.3206,0.2982,0.3238,0.244,-0.0334,0.0176,-0.2472,0.1978,0.3296,-0.4726,-0.2768,-0.4312,-0.4426,-0.3446,-0.1902,0.1488,0.0358,0.017,0.1036,0.1224,0.2166,0.194,0.0622,0.1224,0.2768,0.4274,0.4726,0.4952,0.5142,0.7514,0.6836,0.71,0.8342,0.9774,1,0.921,0.9888,0.951,0.4764,0.0788,0.2194,-0.4942,-0.484,-0.3568,-0.3768,-0.2596,-0.149,0.1458,0.1726,0.129,0.1524,0.387,0.3668,0.2194,0.2664,0.2798,0.0988,0.4338,0.551,0.665,0.6884,0.8358,0.9096,0.9464,0.7922,0.9632,0.99,0.9128,1,0.99,0.665,0.0306,-1,-1,1,1,-1,-0.4,0.4,-1,-0.3466,-0.1734,0.04,0.56,0.44,-0.08,0.44,0.9734,1,0.4134,0.0266,-0.0134,0.36,0.4,0.2534,0.32,0.5066,0.3866,0.1334,0.3066,0.6266,0.8,0.6666,0.7334,0.3066,0.24,0.1734,0.0134,-0.12,0.2134,0.1466,-0.68,'26'
-0.4698,-0.0602,0.1518,0.4698,0.9132,0.8892,0.518,0.2386,0.1518,0.0988,0.1422,0.2,0.2964,0.4458,0.6964,0.8216,1,0.9856,0.7976,0.759,0.841,0.918,0.788,0.7784,0.5518,0.4216,0.3012,0.3302,0.3928,0.4602,0.465,0.5374,-0.3834,-0.1214,0.2572,0.5728,0.8156,0.9708,0.5874,0.2766,0.2282,0.0388,0.199,0.2234,0.2622,0.3786,0.6504,0.767,0.8738,1,0.8834,0.733,0.7378,0.8058,0.767,0.7718,0.5874,0.4418,0.4078,0.364,0.5436,0.5486,0.602,0.6602,-0.3966,-0.1122,0.2668,0.566,0.9452,1,0.4514,0.227,0.1122,0.0524,0.0424,0.192,0.232,0.3168,0.4714,0.6408,0.9052,0.995,0.965,0.8054,0.8154,0.8654,0.8454,0.7856,0.6958,0.4364,0.3966,0.3316,0.4264,0.4614,0.601,0.606,-0.4964,-0.0514,0.1834,0.4768,0.907,0.8044,0.3154,0.0514,0.0904,-0.0122,0.0074,0.198,0.1834,0.242,0.3838,0.555,0.731,1,0.9902,0.8386,0.7458,0.8044,0.7898,0.7604,0.6234,0.555,0.4572,0.3252,0.4768,0.423,0.4914,0.5354,-0.5492,-0.108,0.247,0.6116,0.765,0.386,0.1224,-0.0648,-0.0984,-0.151,-0.0168,0.036,-0.0456,0.0936,0.2902,0.319,0.6546,0.9472,1,0.8706,0.8992,0.8034,0.861,0.9568,0.8466,0.4868,0.5108,0.4196,0.4388,0.458,0.5348,0.4436,-0.5282,-0.0664,0.3072,0.4742,0.5626,0.1254,-0.2826,-0.1744,-0.3416,-0.5184,-0.3218,-0.2628,-0.258,-0.0074,-0.0222,0.0418,0.2628,0.5872,0.8574,1,0.7494,0.828,0.833,0.9362,0.7986,0.71,0.5184,0.4104,0.4054,0.312,0.5332,0.4398,-0.5152,0.021,0.408,0.4638,0.24,-0.2448,-0.38,-0.4546,-0.6084,-0.4918,-0.4638,-0.4172,-0.366,-0.3054,-0.1236,-0.1888,0.1142,0.3614,0.571,0.972,1,0.7342,0.8554,0.8928,0.8648,0.5338,0.5618,0.5058,0.4778,0.366,0.5058,0.4312,-0.282,0.1794,0.282,0.6924,1,1,0.6924,0.2308,0.1282,0.077,0.077,0.1282,0.1794,0.3846,0.6924,0.9488,1,1,0.6924,0.7948,0.9488,1,1,0.7948,0.4872,0.4358,0.282,0.1282,0.282,0.3334,0.3334,0.3846,-0.5714,-0.0952,0.0952,0.381,0.8572,0.6666,0.4762,0.2858,0.1428,0.0476,0.1428,0.0952,0.2858,0.4286,0.5238,0.7142,1,0.8096,0.8096,0.6666,0.6666,0.8096,0.7142,0.6666,0.5714,0.381,0.381,0.238,0.3334,0.381,0.4762,0.381,-0.6046,-0.186,0.186,0.4418,0.5116,0.1162,-0.2094,-0.186,-0.4186,-0.3954,-0.2094,-0.186,-0.2326,0.0232,-0.093,0.2558,0.4652,0.721,0.9302,1,0.7442,0.6976,0.8372,0.8372,0.6744,0.4884,0.5348,0.3488,0.4884,0.4186,0.5348,0.5348,-1,-1,-1,-1,-1,-1,-1,-0.9554,-0.9708,-0.9004,-0.314,0.6172,0.9248,0.8188,0.7588,0.8222,0.8376,0.6444,0.2994,-0.231,-0.351,-0.2248,-0.487,-0.544,-0.7608,-0.8466,-0.839,-0.8502,-0.8738,-0.915,-0.9372,-0.9442,-0.9366,-1,-1,-1,-1,-1,-1,-1,-0.966,-0.982,-0.945,-0.1452,0.1714,0.6822,0.373,0.3618,0.3068,0.324,0.2552,-0.1018,-0.4358,-0.6878,-0.1424,-0.6778,-0.8074,-0.8802,-0.8938,-0.916,-0.9128,-0.9174,-0.9308,-0.9444,-0.9596,-0.9656,-1,-1,-1,-1,-1,-1,-1,-0.8366,-0.9,-0.83,-0.7634,-0.92,-0.7934,-0.89,-0.9,-0.8134,-0.84,-0.8172,-0.7572,-0.7458,-0.803,-0.76,-0.7968,-0.66,-0.58,-0.38,-0.5068,-0.4668,-0.6434,-0.4234,-0.6834,-0.67,-0.5768,-1,-1,-1,-1,-1,-1,-1,-0.2286,-0.5428,1,1,1,0.1714,-1,-1,-0.9428,-0.8,-0.7714,-0.5714,-0.2858,-0.3714,0.0858,-0.3428,-0.6286,-0.5142,-0.7142,-0.7714,-0.9142,-0.8858,-0.6,-0.4858,-0.4572,-0.5428,1,1,1,1,1,1,1,1,1,0.9228,-0.392,-0.3884,-0.376,-0.3562,-0.3338,-0.3356,-0.2868,-0.2488,-0.1302,0.1974,-0.2534,-0.2706,-0.049,-0.148,0.3092,0.832,0.589,1,0.063,0.3154,0.6216,0.6216,0.3334,0.2612,0.4594,0.8198,1,0.928,0.928,0.946,0.7478,0.6396,0.7118,0.8558,0.8558,0.8558,0.7298,0.7298,0.6036,0.2252,0.045,0.027,-0.081,-0.063,0.081,0.1532,-0.099,-0.2612,-0.4234,-0.5856,-0.1404,0.2066,0.6694,0.5538,0.2232,0.2232,0.3388,0.719,1,0.8016,0.9174,0.8842,0.6364,0.5206,0.6034,0.8182,0.8182,0.8016,0.7024,0.686,0.5538,0.2066,-0.091,-0.157,-0.2396,-0.2728,-0.124,0.0248,-0.0082,-0.0744,-0.2728,-0.3058,0.2858,0.4108,1,0.7678,0.1786,0.1608,0.2322,0.7142,0.9464,0.8392,0.8392,0.8572,0.6608,0.4822,0.5178,0.5,0.6608,0.6428,0.5358,0.5892,0.6608,0.1428,0,-0.2322,-0.0358,-0.0714,-0.0536,0,0.0536,0.2142,0,-0.0178,0.4468,-1,-1,1,-0.8,-1,0,-0.8,-1,-0.2598,-0.2284,0.1812,0.4016,0.3386,0.2284,-0.1182,0.2284,0.3858,0.8898,0.6378,0.685,0.5906,0.5906,0.622,0.8582,1,0.8898,0.7166,0.622,0.0394,0.1338,-0.1024,-0.0078,0.0708,0.0866,0.0866,0.307,0.3858,0.3858,0.0866,-0.1024,'1'
-0.4632,-0.0934,0.1134,0.348,0.8808,0.9284,0.3996,0.2406,0.161,0.0854,0.157,0.2128,0.328,0.5308,0.658,0.7892,1,0.9404,0.7774,0.7932,0.7614,0.7376,0.6858,0.5428,0.332,0.3916,0.3956,0.3678,0.4354,0.5428,0.5268,0.5746,-0.5148,-0.1308,0.089,0.2252,0.9756,1,0.2076,0.1588,0.082,0.0576,0.0052,0.0262,0.2042,0.26,0.3298,0.4904,0.7836,0.6788,0.672,0.7556,0.4904,0.7382,0.7138,0.3228,0.3508,0.3054,0.2146,0.2076,0.3508,0.3404,0.4102,0.4486,-0.4784,-0.1438,0.0792,0.4532,1,0.9856,0.2554,0.1188,0.0612,-0.036,-0.1116,-0.0144,0.1618,0.1474,0.3202,0.446,0.669,0.8382,0.7698,0.7446,0.6366,0.6834,0.6294,0.5504,0.572,0.1834,0.367,0.2914,0.2806,0.4208,0.464,0.367,-0.4944,-0.0754,0.1472,0.4378,0.9246,0.7886,0.1812,0.132,0.0416,-0.034,0,0.0754,0.1472,0.185,0.3284,0.5472,0.6906,0.951,1,0.8416,0.751,0.7774,0.7396,0.7396,0.5736,0.5208,0.4754,0.4604,0.5284,0.4982,0.5886,0.5358,-0.5592,-0.1294,0.2168,0.5702,0.6904,0.286,-0.0492,-0.1294,-0.1766,-0.2314,-0.1584,-0.082,-0.0092,0.0638,0.2314,0.3624,0.5664,0.8652,1,0.9562,0.898,0.8616,0.9234,0.8908,0.745,0.5702,0.5738,0.4172,0.4936,0.4864,0.5592,0.4608,-0.4834,0.0022,0.2936,0.3686,0.4128,-0.0286,-0.4482,-0.298,-0.5144,-0.6158,-0.5452,-0.3908,-0.4526,-0.3598,-0.117,-0.1568,0.1258,0.3598,0.8058,1,0.8852,0.7174,0.7528,0.691,0.6336,0.6204,0.4128,0.4172,0.404,0.3068,0.5452,0.4392,-0.4538,0.1596,0.5924,0.6596,0.2564,-0.1596,-0.5462,-0.5294,-0.4748,-0.647,-0.4958,-0.3782,-0.3404,-0.3236,-0.2436,-0.1512,0.0588,0.2648,0.4874,0.8908,1,0.9118,0.9454,0.9076,0.9118,0.6638,0.7394,0.5462,0.521,0.5462,0.5588,0.5966,-0.027,0.4594,0.2432,0.4054,0.1352,0.7298,0.7838,0.6756,0.5136,0.4594,0.6756,0.5676,0.2432,0.7838,0.8378,0.5136,0.8378,0.946,1,0.7298,0.946,1,0.8918,0.4594,0.7838,0.7838,0.6756,0.6216,0.7838,0.4054,0.5676,0.6216,-0.5218,-0.0434,0.2174,0.3044,0.8696,0.913,0.4782,0.1304,0.174,0.174,0.1304,0.2174,0.3914,0.5652,0.6522,0.7826,0.9566,1,0.7826,0.826,0.826,0.7826,0.6522,0.5218,0.3914,0.2174,0.3044,0.3044,0.2608,0.3914,0.4782,0.3914,-0.5714,-0.119,0.238,0.5476,0.5476,0.0952,-0.3334,-0.3572,-0.4048,-0.7142,-0.2858,-0.3334,-0.2858,-0.0476,-0.0476,0.0952,0.3572,0.4524,0.9048,1,0.619,0.7142,0.8096,0.6428,0.6428,0.5238,0.4286,0.4286,0.4048,0.262,0.3572,0.4286,-1,-1,-1,-1,-1,-1,-1,-0.982,-0.9886,-0.9858,-0.9722,0.4066,0.9608,0.938,0.8862,0.735,0.4404,0.195,-0.0916,-0.4946,-0.51,-0.436,-0.6096,-0.8198,-0.927,-0.9388,-0.9404,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8016,-0.9778,-0.9668,-0.9672,0.6588,0.8702,0.7542,0.7234,0.641,0.444,0.3546,0.1262,-0.551,-0.5598,-0.339,-0.7618,-0.8272,-0.9188,-0.9274,-0.931,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.4666,-0.4068,-0.2634,-0.4168,-0.8176,-0.9626,-0.96,-0.955,-0.9176,-0.844,-0.847,-0.757,-0.847,-0.86,-0.8068,-0.9012,-0.4778,-0.3312,-0.2012,-0.3878,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.9428,1,-0.4858,1,1,-0.5428,-0.9714,-0.9142,-1,-1,-0.9142,0.4,0.4286,-0.6,0.0286,-0.2572,0.1714,-0.5428,-0.8858,-0.8286,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.8752,-0.5132,-0.5326,-0.5186,-0.5152,-0.4886,-0.4558,-0.433,-0.3526,-0.1844,0.1882,-0.2666,-0.0588,-0.9676,-0.3356,0.8862,0.8856,1,1,-0.9154,-0.2964,-0.2182,-0.3812,-0.355,-0.2964,-0.2574,-0.2312,0.101,-0.2442,0.0424,-0.1206,-0.0814,-0.0098,0.127,0.2574,0.075,-0.1074,0.3356,0.342,0.3812,0.4006,0.3356,0.2768,0.4854,0.5114,0.7654,0.987,0.9674,1,0.7004,0.3356,-0.55,-0.3438,-0.1126,0.1688,0.225,0.225,0.2876,0.4624,1,0.975,0.7438,0.6812,0.5688,0.475,0.4438,0.6438,0.6626,0.6,0.525,0.3312,0.4624,0.2062,0.35,0.4126,0.5376,0.5376,0.5812,0.5938,0.4874,0.6812,0.6188,0.1376,-0.2656,-0.0104,0.4374,0.401,0.323,0.3854,0.25,0.625,1,0.9896,0.8282,0.9062,0.5782,0.6042,0.573,0.7448,0.6928,0.7344,0.9322,0.823,0.6718,0.573,0.2708,0.3542,0.7292,0.8072,0.7084,0.7812,0.4584,0.4948,0.2864,0.1458,-0.4892,-1,1,-1,-1,-1,-1,0,-1,-0.103,-0.147,0.4852,0.397,0.1176,-0.1176,0.0442,0.0148,0.2352,0.5148,0.9412,0.7648,0.8382,0.853,0.603,0.6912,0.9852,1,0.4852,0.4706,0.25,0.3676,0.4118,0.2942,0.1324,0.2942,0.1764,0.0882,0.1764,0.2206,0.0588,-0.2942,'1'
-0.3774,0.1806,0.5904,0.5322,0.4936,0.1354,0.0064,-0.1742,-0.213,-0.1838,-0.0354,0.129,0.1484,0.3096,0.5452,0.7064,0.7646,0.9096,0.9516,0.9612,1,0.9646,0.8612,0.7452,0.6,0.4516,0.5226,0.5322,0.5904,0.5646,0.7806,0.7516,-0.4584,0.1056,0.4556,0.3056,0.1862,0.0584,-0.1834,-0.4362,-0.4056,-0.2806,-0.4138,-0.1972,-0.1416,-0.025,0.0528,0.2916,0.3722,0.5638,0.8388,0.9028,0.9444,0.9084,1,0.8862,0.4834,0.4334,0.5028,0.3806,0.4306,0.55,0.7,0.7612,-0.4624,0.2342,0.552,0.3612,0.055,0.029,-0.156,-0.4248,-0.4248,-0.3612,-0.4132,-0.3468,-0.1446,-0.13,-0.0924,0.1156,0.3612,0.367,0.656,1,0.971,0.945,0.9364,0.9132,0.7398,0.5028,0.5404,0.5,0.5144,0.6098,0.7024,0.818,-0.5062,0.2888,0.4868,0.18,-0.0516,-0.1854,-0.2524,-0.4924,-0.5454,-0.4588,-0.4422,-0.3724,-0.2832,-0.1186,-0.1046,0.0404,0.1828,0.4254,0.6346,0.8856,1,0.9024,0.9498,0.9804,0.8494,0.537,0.5314,0.5286,0.5342,0.5788,0.7434,0.8298,-0.5678,0.2148,0.286,0.1492,-0.305,-0.4146,-0.5596,-0.6306,-0.6334,-0.6334,-0.5568,-0.461,-0.4008,-0.3024,-0.1928,-0.0642,0.056,0.3462,0.565,0.8166,1,0.9726,0.97,0.9508,0.8058,0.5158,0.4912,0.3954,0.5102,0.4746,0.7236,0.7538,-0.354,0.2738,0.3576,0.1424,-0.5402,-0.5766,-0.7884,-0.7628,-0.9854,-0.8102,-0.7116,-0.5218,-0.5438,-0.5146,-0.416,-0.4598,-0.3978,-0.084,0.0656,0.5364,0.8906,0.8576,1,0.938,0.8504,0.4818,0.3212,-0.0146,0.1094,0.1642,0.343,0.4562,-0.0984,0.1844,-0.295,-0.5246,-0.5738,-0.4468,-0.336,-0.5082,-0.6476,-0.8688,-0.9016,-0.754,-0.5778,-0.6394,-0.3688,-0.455,-0.5122,-0.2582,0.0286,0.4262,0.7786,1,0.8402,0.7992,0.791,0.7008,0.3606,0.418,0.2582,0.3524,0.586,0.6598,-0.6,0.4,0.4,0.45,0.05,-0.1,-0.1,-0.2,-0.25,-0.3,-0.05,0.3,0.6,0.85,1,1,0.7,0.3,0.4,0.45,0.75,0.75,0.6,0.55,0.45,0.4,0.8,0.9,0.7,0.3,0.3,0.35,-0.5264,0.1578,0.579,0.421,0.3684,0.2106,0.0526,-0.1578,-0.1578,-0.1578,-0.1052,0.0526,0.1052,0.3684,0.4736,0.6842,0.6842,1,0.8422,0.8948,0.8948,0.5264,0.6842,0.579,0.3158,0.3684,0.3684,0.4736,0.421,0.6316,0.5264,0.6316,-0.5466,0.28,0.2266,0.28,-0.3334,-0.4134,-0.6,-0.6,-0.6266,-0.5734,-0.5734,-0.4934,-0.7066,-0.3334,-0.1734,-0.28,-0.0934,0.1466,0.5466,0.8134,0.9734,1,0.9466,0.92,0.7866,0.52,0.3866,0.28,0.36,0.3334,0.7066,0.68,-1,-1,-1,-1,-1,-1,-1,-1,-0.9654,-0.9654,-0.9436,0.5518,0.7362,0.7948,0.9662,0.9702,0.8488,0.5486,0.078,-0.3024,-0.7016,-0.7184,-0.7144,-0.77,-0.8512,-0.9236,-0.9444,-0.9436,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9738,-0.973,-0.9462,0.1648,0.592,0.8416,0.8566,0.8638,0.7794,0.8408,0.2894,-0.652,-0.774,-0.8556,-0.8274,-0.8332,-0.8746,-0.896,-0.8984,-0.9072,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.88,-0.88,-0.85,-0.84,-0.782,-0.696,-0.6746,-0.78,-0.6456,-0.6928,-0.642,-0.8582,-0.4582,-0.9364,-0.7134,-0.51,-0.3568,-0.1634,-0.0534,0.0466,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7428,-0.9714,1,1,-0.7428,-1,-1,-1,-0.9714,-0.7714,1,1,-0.7714,-0.8572,-0.9428,-0.9714,-0.9142,-0.8572,-0.8858,0.0572,-1,-1,-1,-1,-1,0.5794,0.5762,0.5632,0.5634,0.5644,0.5514,0.5298,0.4992,0.4546,0.1676,-0.1178,-0.0588,-0.0376,-6e-04,0.064,0.1338,0.2028,0.3018,0.4462,0.5826,-0.3066,0.2706,-0.9706,-0.5706,0.1894,0.357,0.451,1,0,0.2134,0.764,0.7866,0.809,0.7078,0.7528,0.8988,1,0.6742,0.955,0.9776,0.8988,0.8764,0.6742,0.573,0.5618,0.4944,0.3708,0.4044,0.573,0.5506,0.472,0.6068,0.4044,0.2922,0.5056,0.4832,0.146,0.1124,0.045,-0.3596,-0.2728,0.6084,0.5524,0.8042,0.8042,0.8462,1,0.7482,0.6504,0.7202,0.5944,0.8602,0.958,0.8882,0.5244,0.1888,0.6084,0.2868,0.3146,0.021,0.3006,0.2588,0.2308,0.3426,0.3986,0.063,0.3006,0.2308,-0.021,0.1468,-0.021,-0.5384,-0.0688,0.418,0.3756,0.4604,0.5978,0.5768,0.926,1,0.619,0.3968,0.4708,0.6614,0.6084,0.3228,0.2698,0.4286,0.5026,0.4498,0.217,0.164,0.5662,0.3756,0.291,0.2486,0.1006,0.3016,0.2592,0.291,0.238,0.0052,-0.0264,-0.5238,-0.9854,1,-1,-1,-1,-1,0.2,-1,-1,-0.5096,-0.2774,0.1484,0.2646,0.2516,0.0838,0.0064,-0.058,0.2258,0.7032,0.6258,0.5096,0.4838,0.7548,0.5484,0.8838,1,0.7678,0.4452,0.0452,0.1354,0.058,0.2904,0.4194,0.1484,-0.0968,-0.0452,-0.0194,0.1226,0.3032,0.2774,0.071,'2'
-0.3078,0.1264,0.6038,0.5608,0.4558,0.16,0.012,-0.0454,-0.0644,-0.1122,0.136,0.0978,0.1886,0.2792,0.4416,0.5704,0.7948,0.957,0.9474,1,0.9332,0.8998,0.8138,0.6182,0.5084,0.5132,0.5036,0.5322,0.537,0.6372,0.747,0.5608,-0.4572,0.0812,0.4402,0.3206,0.3076,0.0384,-0.1324,-0.1966,-0.2052,-0.2864,-0.1068,-0.0556,-0.0086,0.0642,0.282,0.4358,0.5256,0.688,1,0.9872,0.9744,0.8676,0.8846,0.9488,0.6666,0.594,0.5684,0.577,0.5598,0.812,0.765,0.7948,-0.4916,0.0358,0.3634,0.2052,0.0132,-0.0696,-0.2016,-0.3522,-0.322,-0.371,-0.1902,-0.1826,-0.1526,-0.047,0.1488,0.273,0.371,0.5254,0.8456,0.9096,1,0.872,0.9698,0.985,0.7364,0.5932,0.5254,0.5556,0.5254,0.7212,0.7138,0.725,-0.5058,0.0996,0.3754,0.1992,-0.1112,-0.134,-0.249,-0.3946,-0.456,-0.3794,-0.3066,-0.2298,-0.1878,-0.1264,0.0306,0.1916,0.341,0.4636,0.7242,0.9616,0.9924,1,0.9924,0.9386,0.8046,0.6628,0.567,0.613,0.6092,0.6974,0.7586,0.7472,-0.5576,0.1116,0.2924,-0.0192,-0.1884,-0.273,-0.3808,-0.573,-0.4692,-0.5154,-0.423,-0.3692,-0.2538,-0.1616,-0.0384,0.0924,0.2462,0.4384,0.6962,0.9192,0.9846,1,1,0.9384,0.8462,0.7192,0.6308,0.65,0.6538,0.7076,0.8346,0.8154,-0.5624,0.28,0.3648,0.1952,-0.4352,-0.4494,-0.6188,-0.7976,-0.6706,-0.7176,-0.6988,-0.7176,-0.5294,-0.4682,-0.3694,-0.1858,-0.0258,0.0964,0.5248,0.873,0.9388,1,0.9858,0.9436,0.6894,0.5152,0.4352,0.4964,0.4964,0.5248,0.6848,0.7458,-0.3904,0.3334,0.3772,0.1184,-0.6492,-0.6272,-0.8202,-0.7368,-0.886,-0.9474,-1,-0.8684,-0.7588,-0.6798,-0.6052,-0.3992,-0.4254,-0.193,0.0702,0.4824,0.7412,0.7938,0.943,1,0.671,0.2894,0.3378,0.2062,0.1536,0.2808,0.3026,0.4386,-0.1724,0.1724,0.4482,0.6552,-0.3104,0.0344,-0.0344,-0.0344,-0.5862,-0.3104,0.2414,0.0344,0.1724,0.3794,0.3794,0.4482,0.862,0.862,0.931,1,0.5862,0.7242,0.7242,0.6552,0.3794,0.6552,0.5862,0.4482,-0.1034,0.2414,0.4482,-0.4482,-0.5,0.15,0.4,0.1,0.4,0.15,0,-0.1,-0.15,-0.2,-0.05,0.05,0.1,0.2,0.4,0.6,0.85,0.85,0.9,0.95,1,0.95,0.6,0.5,0.5,0.4,0.15,0.55,0.65,0.55,0.6,0.6,-0.6288,0.0928,0.2372,0.031,-0.3196,-0.464,-0.567,-0.6702,-0.6082,-0.6702,-0.6082,-0.5258,-0.4846,-0.2372,-0.2372,-0.1134,0.1958,0.299,0.6082,0.8762,1,1,1,0.9588,0.7938,0.6288,0.5876,0.6494,0.6494,0.6702,0.8144,0.7732,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8752,-0.8318,0.6508,0.6138,0.615,0.6096,0.6518,0.5998,0.487,0.2636,-0.0498,-0.3416,-0.4772,-0.5954,-0.7462,-0.9208,-0.9512,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.946,-0.0454,0.227,0.5134,0.9216,0.8386,0.7496,0.8494,0.8826,-0.0018,-0.7362,-0.7586,-0.8022,-0.8818,-0.9424,-0.9382,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9134,-0.9334,-0.7372,-0.6916,-0.6172,-0.4716,-0.5144,-0.4686,-0.5316,-0.5716,-0.6686,-0.7744,-0.6826,-0.8134,-0.49,-0.18,-0.1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,-0.9428,-1,-1,-1,-0.9714,0.4858,1,1,-0.4858,-0.4572,-0.6286,-0.6858,-0.5428,-1,-1,-1,-1,-1,-1,-1,0.5652,0.5556,0.5748,0.584,0.5834,0.5854,0.5906,0.586,0.54,0.1788,-0.0642,-0.0546,-0.0254,0.011,0.0792,0.134,0.2308,0.3502,0.4694,0.6238,-0.4,-0.2,-0.9476,-0.579,0.0498,0.1798,0.1888,1,1,0.7524,-0.162,0.2572,0.181,0.2572,0.2572,-0.1048,0.4666,-0.1048,-0.181,0.2,0.4286,0.2572,-0.181,-0.0096,0.0666,-0.2762,0.3334,0.2572,-0.4096,-0.3142,0.0476,-0.1428,-0.238,0.0666,0.0666,0.1428,-0.3714,0.1048,-0.4286,-0.619,1,0.7588,0.2198,0.3758,0.39,0.6738,0.6028,0.5602,-0.0922,-0.0212,0.3334,0.8156,0.4894,0.2056,0.3618,0.2908,0.4468,0.4042,0.0922,0.1348,0.3476,0.1206,0.0496,0.3476,0.3192,-0.1774,-0.149,0.0638,0.0638,-0.2198,-0.3476,-0.6596,1,0.9272,-0.006,0.3212,0.3576,0.0182,0.4666,0.5758,0.1758,0.103,0.4304,0.697,0.406,0.3576,0.1394,0.1878,0.2,0.0424,0.309,0.2,0.2606,0.2364,0.0304,0.006,0.1272,0.0424,-0.006,-0.0546,0.1152,0.091,-0.0424,-0.394,-1,1,-1,-1,-1,-0.4,-0.8,-1,-1,-0.2554,-0.0948,-0.1094,-0.051,-0.051,-0.1532,-0.0364,-0.051,0.3868,0.6204,0.7664,1,0.6934,0.8832,0.8102,0.7226,0.7956,0.4744,0.5912,0.5328,0.343,0.2554,0.2116,-0.0072,0.197,0.0948,0.0218,0.1678,0.1094,0.416,0.343,-0.0218,'2'
-0.2816,0.1224,0.7836,0.7918,0.2938,0.1224,0.2244,-0.0082,-0.0244,0.0082,0.1592,0.2164,0.3306,0.5552,0.6898,1,0.9756,0.9102,0.7918,0.8368,0.947,0.8816,0.7224,0.5796,0.498,0.3836,0.3224,0.3632,0.5552,0.5388,0.6694,0.747,-0.3656,-0.0784,0.6456,0.6568,0.1568,0.0672,0.1008,-0.0932,-0.168,-0.0858,0.0074,-0.0262,0.1008,0.2762,0.3582,0.5634,0.8208,0.8844,1,0.8918,0.8656,0.8806,0.8208,0.6232,0.5112,0.4738,0.4776,0.4626,0.4926,0.541,0.6902,0.7762,-0.3436,0.1324,0.831,0.812,0.0556,0.025,0.0058,-0.1824,-0.1976,-0.1824,-0.1824,-0.0786,-0.0442,0.0596,0.2552,0.3128,0.4972,0.808,0.9232,1,0.9692,0.9386,0.812,0.762,0.5202,0.57,0.5394,0.3782,0.6008,0.6122,0.6622,0.762,-0.3768,0.2072,0.7634,0.6646,0.0256,0.0178,-0.1242,-0.2504,-0.353,-0.3372,-0.3058,-0.1756,-0.1756,-0.0808,-0.002,0.1834,0.2742,0.507,0.6016,0.8304,1,0.9566,0.8146,0.7672,0.6924,0.566,0.495,0.4122,0.4714,0.5306,0.6528,0.7238,-0.5134,0.1762,0.4022,0.2606,-0.0728,-0.157,-0.341,-0.4904,-0.4866,-0.5172,-0.3946,-0.3334,-0.2912,-0.1686,-0.0114,0.0766,0.1878,0.3716,0.5364,0.8314,0.9578,1,0.8314,0.9426,0.9042,0.6054,0.475,0.4138,0.475,0.479,0.6284,0.6704,-0.3182,0.5152,0.6314,0.5152,-0.0758,-0.2778,-0.6314,-0.7626,-0.5708,-0.6414,-0.6566,-0.6616,-0.7324,-0.5252,-0.3232,-0.2728,-0.1616,0.197,0.2424,0.6718,0.995,0.9748,1,0.8888,0.8232,0.7272,0.6464,0.5252,0.5656,0.4646,0.6666,0.8334,-0.4466,0.2912,0.3786,0.0146,-0.6166,-0.5242,-0.8252,-0.7718,-0.8932,-0.9612,-0.8884,-0.5632,-0.6068,-0.8544,-0.7234,-0.5874,-0.5048,-0.1456,-0.1456,0.2088,0.5826,0.6942,0.8834,1,0.7718,0.4272,0.2718,0.131,0.0534,0.199,0.4078,0.3834,-0.1818,0.2272,0.6818,0.6364,0.3182,0.091,0.1364,0,0,0.0454,0.1818,0.2728,0.3182,0.6364,0.8636,1,0.9546,0.8182,0.591,0.7272,0.8182,0.6818,0.5454,0.5454,0.2272,0.2728,0.1818,0.2728,0.3182,0.3182,0.591,0.6818,-0.409,0.1364,0.6818,0.7728,0.3182,0.091,0.091,-0.1364,-0.2272,-0.1818,0,0.091,0.1818,0.5454,0.6818,0.909,1,0.8636,0.7728,0.7272,0.8636,0.909,0.6818,0.4546,0.3636,0.2272,0.3182,0.2272,0.409,0.5,0.591,0.591,-0.0968,0.5054,0.6344,0.6344,0.2258,-0.0538,-0.3118,-0.3978,-0.3118,-0.3764,-0.1612,-0.0538,-0.2258,-0.0108,0.1398,0.0538,0.2044,0.4194,0.5484,0.7634,1,0.9354,0.914,0.8924,0.871,0.699,0.7204,0.5914,0.656,0.613,0.7204,0.957,-0.9724,-0.9734,-0.9694,-0.9728,-0.9768,-0.9728,-0.9762,-0.9718,-0.9738,-0.9656,-0.7724,0.623,0.9252,0.8186,0.7876,0.677,0.4558,0.1656,-0.2462,-0.5378,-0.6222,-0.6886,-0.64,-0.8404,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8846,-0.7818,-0.6496,-0.5206,-0.5166,-0.4434,-0.407,-0.429,-0.3824,-0.3652,-0.4656,0.5002,0.9862,0.9208,0.6052,0.467,0.3586,0.3796,0.3142,-0.4896,-0.6894,-0.7702,-0.6974,-0.8472,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.5666,0.8932,1,1,1,1,1,1,1,1,0.7966,-0.82,-0.7116,-0.7916,-0.8858,-0.8744,-0.883,-0.87,-0.7076,-0.915,-0.8176,-0.8676,-0.8634,-0.4,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.7142,0.0572,-0.1714,-0.6286,-0.8572,-0.8,-1,-0.9428,-0.9714,-0.2572,1,1,0,-0.7714,-0.7714,-0.9714,-1,-0.9428,0.7714,1,-0.4572,-0.4,-0.7714,-0.2858,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.5568,0.5666,0.5818,0.5922,0.6026,0.6166,0.6096,0.5686,0.501,0.2048,-0.592,-0.5538,-0.5232,-0.4838,-0.424,-0.347,-0.2384,-0.0978,0.1254,0.4408,-0.4666,-0.153,-0.578,-0.1012,0.5158,0.935,0.9954,1,-0.9226,-0.508,-0.4328,-0.1772,-0.1772,-0.0248,0.0956,0.579,0.4308,0.4286,0.3662,0.463,0.3168,0.1922,0.3104,0.5038,0.5102,0.4394,0.4394,0.6606,0.8668,0.9764,1,0.9634,0.9742,0.6434,0.7208,0.8862,0.7702,0.3964,0.4414,0.2438,-0.9172,-0.6814,-0.5352,-0.4234,-0.3448,-0.309,-0.2372,0.0318,0.0234,0.0442,0.1268,0.1794,0.1532,0.1668,0.189,0.269,0.4648,0.4262,0.4704,0.458,0.7144,0.7034,0.7724,0.731,0.8138,0.7006,0.822,0.9186,0.9944,1,0.88,0.7062,-0.8122,-0.5972,-0.444,-0.3734,-0.3178,-0.2292,-0.1284,-0.0112,0.1314,0.1706,0.142,0.1856,0.2142,0.16,0.172,0.3388,0.4486,0.4862,0.5116,0.6124,0.752,0.8408,0.8196,0.8888,0.964,0.973,0.9398,0.9144,0.9684,1,0.8648,0.6724,-0.9494,-1,1,-1,-1,-1,-1,1,-1,0.1026,0.0256,0.0642,-0.1282,-0.0256,0.0642,0.077,-0.1282,-0.0128,0.2692,0.859,1,0.9872,0.5384,0.4872,0.5512,0.8846,0.8846,0.4616,0.2692,0.218,0.1538,-0.0256,-0.0256,0.1154,0.1538,0.1924,0.077,0.0512,0.0512,-0.1026,-0.5642,'3'
-0.3244,0.1364,0.6958,0.6196,0.2662,0.0872,0.0872,-0.0022,-0.0514,-0.1052,0.123,0.1454,0.2126,0.4004,0.7182,0.8434,1,0.924,0.7808,0.7986,0.7898,0.8434,0.7136,0.651,0.302,0.208,0.2796,0.3826,0.387,0.5838,0.6958,0.7226,-0.403,-0.0314,0.6242,0.6034,0.1608,0.0688,0.0564,-0.0606,-0.1942,-0.1692,0.0104,-0.002,0.048,0.2108,0.4196,0.4948,0.808,0.9206,1,0.8664,0.7746,0.879,0.7912,0.762,0.4488,0.3444,0.357,0.453,0.3654,0.499,0.6952,0.7078,-0.387,0.1052,0.6778,0.6242,0.0918,0.047,-0.038,-0.0738,-0.2572,-0.2886,-0.1992,-0.1186,-0.0246,0.0336,0.2662,0.3826,0.4496,0.7852,0.9374,1,0.9686,0.8568,0.8658,0.7762,0.6376,0.5392,0.3468,0.5078,0.5436,0.5526,0.7046,0.736,-0.435,0.1572,0.6036,0.476,0.0114,-0.0114,-0.189,-0.262,-0.3668,-0.3576,-0.303,-0.3486,-0.1982,0.0068,0.025,0.1344,0.3258,0.4806,0.7358,0.9408,1,0.8452,0.877,0.8542,0.6584,0.5308,0.3986,0.4578,0.4124,0.599,0.6264,0.6948,-0.5316,0.1262,0.3558,0.1756,-0.1262,-0.1622,-0.3334,-0.599,-0.4684,-0.491,-0.5316,-0.3468,-0.2388,-0.1622,-0.063,0.099,0.2388,0.4054,0.59,0.8964,1,0.955,0.937,0.9144,0.7568,0.6082,0.4864,0.473,0.545,0.518,0.6756,0.7478,-0.5598,0.1532,0.2728,0.0574,-0.2728,-0.3588,-0.5454,-0.7082,-0.7272,-0.6698,-0.6172,-0.5454,-0.4832,-0.3636,-0.2058,-0.0574,0.0622,0.201,0.4832,0.622,0.8996,0.8996,1,0.9186,0.7512,0.5216,0.5216,0.421,0.4402,0.5358,0.5694,0.756,-0.3032,0.5548,0.6968,0.129,-0.3806,-0.5742,-0.658,-0.6388,-0.8388,-0.871,-0.8646,-0.813,-0.7678,-0.6774,-0.1612,-0.329,-0.2838,-0.2,-0.071,0.387,0.8064,1,0.9354,0.8968,0.6774,0.5354,0.342,0.142,0.213,0.1354,0.329,0.387,-0.3158,0.2106,0.6842,0.6316,0.2632,0.0526,-0.1578,-0.3158,-0.2632,-0.2632,-0.0526,0.1052,0.1052,0.421,0.7894,1,1,0.6316,0.6316,0.6316,0.8422,0.7894,0.7368,0.3684,0.0526,-0.0526,-0.1052,0,0,0.5264,0.6316,0.7894,-0.5,0.091,0.6364,0.6818,0.3182,0,-0.1364,-0.091,-0.1818,-0.2272,-0.0454,0.0454,0.1818,0.3636,0.6818,0.8636,1,0.8182,0.6364,0.6818,0.7272,0.7728,0.591,0.5454,0.2728,0.091,0.2728,0.3636,0.409,0.5,0.591,0.6364,-0.6042,0.0624,0.2292,-0.0834,-0.2084,-0.3124,-0.4584,-0.6042,-0.5208,-0.625,-0.5,-0.375,-0.2292,-0.1876,-0.0834,0,0.1458,0.3124,0.625,0.7708,0.9376,0.9792,1,0.9584,0.7292,0.6458,0.5624,0.5624,0.5834,0.5624,0.6876,0.7292,-0.948,-0.9456,-0.9668,-0.965,-0.9668,-0.9744,-0.9684,-0.972,-0.9744,-0.971,-0.6824,0.5326,0.9668,0.908,0.891,0.8118,0.6518,0.3324,0.0872,-0.1698,-0.421,-0.5284,-0.5684,-0.7634,-0.8706,-0.8834,-0.8076,-0.7812,-0.8212,-1,-1,-1,-1,-0.9108,-0.8264,-0.706,-0.5496,-0.4494,-0.4266,-0.4224,-0.5464,-0.5114,-0.3656,-0.5394,0.2436,0.7664,0.7808,0.8932,0.661,0.6184,0.634,0.8044,0.8198,-0.5212,-0.7266,-0.6792,-0.8532,-0.907,-0.9174,-0.8796,-0.8738,-0.888,-1,-1,-1,-1,-0.0734,0.7,1,1,1,1,1,1,1,1,0.8666,-0.6634,-0.5568,-0.6434,-0.6334,-0.6234,-0.6604,-0.6742,-0.5094,-0.4924,-0.7294,-0.8038,-0.8076,-0.6576,-0.7376,-0.7076,-0.8042,-0.7442,-0.6808,-1,-1,-1,-1,1,0.6572,-0.1714,-0.5714,-0.8858,-0.9142,-0.9714,-0.9428,-0.8,-0.2858,1,1,0.6286,-1,-0.9714,-0.9428,-1,-1,-0.9714,1,1,-0.2,-0.8286,-0.4,-0.7428,-0.7142,-0.9714,-0.9142,-0.8286,-1,-1,-1,-1,0.5464,0.5464,0.5664,0.5894,0.5928,0.6058,0.6108,0.5944,0.563,0.2464,-0.5468,-0.5468,-0.519,-0.4818,-0.4558,-0.3718,-0.2974,-0.1668,0.042,0.3902,-0.44,-0.2942,-0.6058,-0.2384,0.347,0.7194,0.7828,0.725,-0.7546,-0.5818,-0.3432,-0.2636,-0.1636,-0.216,-0.084,0.266,0.3454,0.391,0.4182,0.3704,0.325,0.325,0.4228,0.5318,0.5818,0.3614,0.6046,0.6636,0.8432,0.966,1,0.8954,0.6136,0.7136,0.8364,0.9022,0.8682,0.6864,0.5818,0.2682,-0.8722,-0.6748,-0.534,-0.3738,-0.3592,-0.1796,-0.1796,-0.1392,-0.102,-0.0098,0.0372,0.0324,0.0404,0.1488,0.1716,0.2492,0.521,0.4062,0.4742,0.542,0.7492,0.7056,0.7864,0.8624,0.7912,0.809,0.9062,0.992,1,0.9854,0.911,0.6602,-0.958,-0.7038,-0.607,-0.4242,-0.4058,-0.2798,-0.2578,0.0128,0.0548,0.0804,0.064,0.1792,0.1152,0.0512,0.0988,0.2614,0.4004,0.3858,0.4278,0.574,0.7404,0.7258,0.6984,0.808,0.8538,0.8318,0.8482,0.9196,0.9288,1,0.841,0.627,-0.9494,-1,1,-1,-1,-1,-0.6,1,-1,0.1846,0.3692,-0.123,-0.2154,-0.1076,-0.2154,-0.123,0.0616,-0.1846,0.1076,0.4,0.9538,1,0.277,0.3538,0.4308,0.4616,0.5076,0.4462,0.3076,0.2462,0.2308,0.277,0.123,0.4308,0.5076,0.2308,0.3384,0.0616,0.0924,-0.0616,-0.6,'3'
-0.34,0.0342,0.666,0.6902,0.002,-0.2394,-0.2072,-0.324,-0.3844,-0.2796,-0.2234,-0.2434,-0.0866,-0.0302,0.006,0.344,0.4808,0.6016,1,0.9678,0.7102,0.8108,0.827,0.674,0.501,0.344,0.3038,0.2918,0.4044,0.3602,0.3924,0.5292,-0.3128,0.04,0.72,0.7636,0.051,-0.0982,-0.1128,-0.1818,-0.2364,-0.2654,-0.12,-0.1054,-0.0146,-0.04,0.0546,0.3236,0.3564,0.5272,0.9564,0.9746,0.9854,0.9054,1,0.9164,0.8582,0.7164,0.509,0.4364,0.6182,0.531,0.6254,0.7418,-0.2936,0.0744,0.684,0.7472,0.0818,-0.1636,-0.2454,-0.4014,-0.394,-0.3346,-0.3458,-0.249,-0.104,-0.1598,-0.0186,0.171,0.2156,0.4646,0.684,0.8588,0.9814,1,0.9592,0.8328,0.9666,0.7174,0.6952,0.5278,0.4832,0.565,0.71,0.6394,-0.3242,0.0452,0.7014,0.7092,-0.1866,-0.2888,-0.3006,-0.4146,-0.5206,-0.497,-0.3832,-0.3674,-0.281,-0.1748,-0.1278,0.0452,0.1944,0.328,0.6188,0.8272,0.9804,0.9882,0.894,1,0.9608,0.8232,0.6228,0.5638,0.6424,0.5638,0.7014,0.8074,-0.4136,0.2428,0.631,0.4758,-0.2854,-0.2816,-0.468,-0.569,-0.6466,-0.5766,-0.464,-0.3436,-0.297,-0.231,-0.0796,0.0408,0.169,0.3592,0.5884,0.8174,0.965,0.9844,0.9806,1,0.9962,0.833,0.7242,0.569,0.6156,0.5572,0.7476,0.798,-0.4756,0.425,0.6068,0.1966,-0.3572,-0.4376,-0.5348,-0.7674,-0.759,-0.8054,-0.7632,-0.6532,-0.5392,-0.4208,-0.2304,-0.1206,-0.036,0.2812,0.5096,0.797,0.9958,1,0.8224,0.8732,0.9282,0.8224,0.6702,0.5222,0.5688,0.4968,0.8308,0.8436,-0.2418,0.5628,0.6604,0.2744,-0.5162,-0.628,-0.7442,-0.6838,-0.5814,-0.6466,-0.8372,-0.6698,-0.5488,-0.5534,-0.321,-0.372,-0.2512,-0.079,0.2094,0.8186,0.9256,0.8418,0.879,0.8558,0.828,0.5814,0.6,0.3814,0.3442,0.5302,0.6466,1,-0.3158,0.2106,0.7368,0.6842,0,-0.1052,-0.1578,-0.3684,-0.3684,-0.3684,-0.421,-0.2632,-0.1052,0.1052,0.1578,0.4736,0.579,0.8422,0.7368,1,0.9474,0.6842,0.8422,0.8422,0.6842,0,0.3684,0.421,0.3158,0.3158,0.6316,0.6316,-0.3062,-0.0612,0.6326,0.6326,-0.0612,-0.2244,-0.2654,-0.3062,-0.3878,-0.2244,-0.2244,-0.3062,-0.0612,-0.0204,-0.102,0.2654,0.4694,0.5102,1,0.8368,0.5918,0.796,0.6734,0.5918,0.2654,0.2654,0.2654,0.2654,0.347,0.3062,0.3878,0.5102,-0.3186,0.011,0.6924,0.7362,0.055,-0.077,-0.2528,-0.2968,-0.2528,-0.3186,-0.2528,-0.1648,-0.055,-0.099,0.011,0.1428,0.2088,0.4946,0.7362,0.934,0.978,1,0.978,0.8242,0.934,0.7362,0.7142,0.5164,0.4726,0.5604,0.7142,0.6264,-1,-1,-1,-1,-1,-1,-1,-0.9862,-0.9888,-0.9876,-0.634,0.6604,0.9932,0.8474,0.6668,0.441,0.25,0.1698,-0.0104,-0.181,-0.4414,-0.6304,-0.8026,-0.8704,-0.9396,-0.9648,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.984,-0.9872,-0.986,-0.4656,0.4324,0.9208,0.9716,0.756,0.4242,0.3438,0.2748,0.1918,-0.0026,-0.5544,-0.7046,-0.8224,-0.8804,-0.939,-0.9396,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8734,-0.8534,-0.7934,-0.04,-0.8258,-0.7972,-0.7516,-0.7858,-0.8316,-0.75,-0.8,-0.7,-0.7776,-0.8626,-0.8526,-0.77,-0.75,-0.3534,-0.0868,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,-1,1,1,1,-0.7142,-0.9142,-0.8858,-1,-0.9428,-1,-0.9428,0.2286,0.9142,0.7428,1,-0.0858,0.2286,-0.0286,-1,-1,-1,-1,-1,-1,-1,0.2084,0.226,0.2248,0.2344,0.2496,0.2736,0.2868,0.2776,0.2192,-0.0296,0.2252,0.2522,0.2508,0.277,0.309,0.3626,0.4212,0.5128,0.6222,0.7496,-0.5466,-0.1412,-0.4262,-0.1234,0.5346,0.7552,0.891,1,-0.4482,-0.1494,-0.0804,0.1954,0.2184,0.2874,0.3794,0.3334,0.862,0.862,0.7472,1,0.862,0.5862,0.7472,0.7702,0.885,0.931,0.954,0.931,0.908,0.885,0.7012,0.7702,0.816,0.862,1,0.6092,0.4022,0.4482,0.1954,-0.2184,-0.3466,0.109,0.0892,0.0496,-0.1684,-0.109,0.01,0.1684,0.5842,0.802,0.3466,0.5644,0.3664,0.1288,0.109,0.3466,0.505,0.6238,0.4456,0.208,0.7822,0.7426,0.6634,0.8218,0.9406,0.9604,1,0.6436,0.7228,0.7624,0.6238,0.2278,0.2962,0.5556,0.5186,0.2038,-0.074,0.1852,0.2038,0.3704,0.6852,1,0.7778,0.8704,0.5926,0.537,0.5186,0.6112,0.5926,0.7408,0.5,0.4074,0.6112,0.7222,0.537,0.5926,0.6852,0.5,0.6852,0.6666,0.3334,0.4444,0.3888,0.2222,0.2392,-1,-1,1,-1,-1,-1,-0.8,-1,-0.3556,0.0444,0,-0.0222,0.1556,0.0888,0.0666,0.0666,0.2,0.4,0.5778,0.9112,0.9334,1,0.7778,0.7556,0.8888,0.9334,0.7556,0.6888,0.7556,0.0888,0.2666,0.3556,0.2666,0.3112,0.4666,0.2444,0.2888,0.0666,-0.1556,-0.3334,'4'
-0.3004,0.2108,0.7892,0.6906,0.1704,0.0762,-0.1122,-0.2466,-0.2198,-0.3992,-0.3318,-0.1838,-0.0718,0.0224,0.13,0.3498,0.6458,0.7534,1,0.9192,0.9642,0.8162,0.8252,0.8206,0.695,0.6098,0.5156,0.4708,0.5068,0.6816,0.6458,0.7354,-0.4818,-0.012,0.437,0.3368,-0.0018,0.0224,-0.164,-0.2678,-0.2816,-0.2678,-0.3126,-0.2366,-0.05,0.0018,0.0432,0.2436,0.4058,0.5578,0.6892,1,0.9206,0.8964,0.9344,0.8066,0.8066,0.6926,0.5786,0.5614,0.6234,0.7858,0.7064,0.7236,-0.4822,0.0324,0.4344,0.3152,-0.0596,-0.0188,-0.2164,-0.3186,-0.3322,-0.2742,-0.2402,-0.2198,-0.1346,0.0222,0.029,0.1448,0.3798,0.5502,0.7002,0.8978,1,0.9728,0.9966,0.9454,0.8126,0.7512,0.6696,0.7308,0.7104,0.7786,0.8262,0.7138,-0.54,0.101,0.3764,0.1846,-0.1778,-0.1638,-0.317,-0.4564,-0.4808,-0.439,-0.3484,-0.324,-0.209,-0.0836,-0.0034,0.108,0.2752,0.4356,0.6412,0.8362,0.9408,0.993,1,0.993,0.9268,0.8292,0.7526,0.7074,0.7038,0.7666,0.8048,0.7666,-0.5918,0.1904,0.3414,-0.0188,-0.4202,-0.4512,-0.53,-0.5884,-0.6604,-0.6364,-0.5678,-0.5026,-0.3584,-0.2864,-0.2488,-0.084,0.0704,0.2246,0.4476,0.6912,0.9382,0.9932,1,0.976,0.9622,0.8766,0.7838,0.729,0.6982,0.7632,0.8216,0.7564,-0.5228,0.3112,0.3486,0.0872,-0.5146,-0.5726,-0.697,-0.7302,-0.78,-0.9254,-0.863,-0.9128,-0.6432,-0.5602,-0.5518,-0.3776,-0.307,-0.0456,0.278,0.4854,0.8298,0.9128,0.9502,0.8714,1,0.9876,0.7552,0.668,0.6308,0.6514,0.722,0.8008,-0.2644,0.5366,0.592,0.2644,-0.4056,-0.5768,-0.6776,-0.7482,-0.7482,-0.9244,-0.7732,-0.7784,-0.7984,-0.5466,-0.5668,-0.3904,-0.189,-0.2292,0.1134,0.3954,0.6322,0.869,0.874,0.9546,0.9244,1,0.7178,0.597,0.4862,0.4862,0.6624,0.7834,0.1162,0.2558,0.8604,0.814,0.1628,0.2094,-0.1162,-0.1628,-0.0698,-0.3954,-0.3024,-0.1162,-0.0232,-0.0698,0.2558,0.3024,0.721,0.907,1,0.7674,0.7674,0.4884,0.4884,0.721,0.3954,0.3024,0.5814,0.3488,0.4418,0.628,0.3954,0.7674,-0.353,0.4706,0.8824,0.8236,0.1764,0.0588,-0.1176,-0.2942,-0.2352,-0.4118,-0.2352,-0.1176,-0.1764,0.0588,0.1764,0.4118,0.647,0.8824,1,1,0.9412,0.9412,0.8824,0.8824,0.7058,0.4706,0.4706,0.4118,0.4706,0.5882,0.5882,0.5882,-0.5952,0.2142,0.381,-0.0476,-0.4286,-0.5,-0.5476,-0.5476,-0.8096,-0.7858,-0.738,-0.5476,-0.3572,-0.381,-0.4286,-0.1428,-0.0714,0.119,0.238,0.5952,0.9762,0.9286,0.9524,1,0.881,0.881,0.7858,0.5714,0.6428,0.6428,0.738,0.5952,-1,-1,-1,-1,-1,-1,-1,-0.8814,-0.8892,-0.97,-0.6296,0.7164,0.8538,0.786,0.8238,0.7748,0.559,0.1912,-0.168,-0.4044,-0.5402,-0.6226,-0.6948,-0.9054,-0.914,-0.8514,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9672,-0.9696,-0.9874,-0.7344,-0.3644,0.2136,0.6038,0.9006,0.8934,0.8144,0.6154,-0.2488,-0.6164,-0.7114,-0.8728,-0.9042,-0.9646,-0.9628,-0.9502,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.9468,-0.89,-0.2134,-0.8,-0.6476,-0.6026,-0.5226,-0.4876,-0.4976,-0.5076,-0.5576,-0.5176,-0.5076,-0.6426,-0.71,-0.5834,-0.6734,-0.7034,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,-0.8286,1,1,1,0.4858,-0.8858,-1,-1,-0.9714,-0.3142,0.0286,0,0.0572,0.0286,-0.3714,-0.6286,-0.8572,-0.4858,-1,-1,-1,-1,-1,-1,-1,0.2656,0.2814,0.3074,0.3406,0.3682,0.4,0.4332,0.4644,0.4556,0.1,0.3612,0.367,0.4014,0.4234,0.4412,0.4598,0.5036,0.5642,0.6458,0.7732,-0.36,-0.0942,-0.6974,-0.5598,-0.3632,-0.1882,0.1094,1,-0.3914,-0.174,0.1086,-0.1086,0.326,0.5652,0.587,0.4566,1,1,0.6304,0.3478,0.413,0.6304,0.7392,0.674,0.7392,0.7174,0.7826,0.9566,0.9348,0.9348,0.7826,0.8044,0.6304,0.6086,0.5652,0.4782,0.3044,0.3696,0.1304,-0.5652,-0.5102,0.1836,0.1632,-0.1836,-0.0408,-0.1428,-0.2244,0.0612,0.8776,0.898,0.449,0.5102,0.4694,0.1836,0.5102,0.5714,0.6122,0.6326,0.7346,0.6938,0.7756,0.9184,0.7552,0.7756,0.8776,0.796,0.7142,1,0.7552,0.5918,0.5102,0.2858,0.4864,0.7568,0.5676,-0.1082,-0.1082,-0.3514,0,0.3514,0.973,0.8918,0.6756,0.4054,0.5946,0.4594,0.6756,0.8108,0.7838,0.6486,0.7298,0.919,0.8648,0.8108,0.8648,0.7838,0.5676,0.8108,0.8918,1,0.7028,0.4594,0.3514,0.2162,-0.3996,-1,-1,1,-1,0,-0.8,-0.8,-1,0.0728,-0.0728,0,0.0546,-0.0546,0.0728,0.0182,-0.0546,0.4,0.1818,0.9818,0.9636,0.9818,0.6546,0.6,0.709,1,0.9272,0.7454,0.4728,0.1272,0.4182,0.3636,0.1636,0,-0.0182,0.0182,-0.091,-0.0728,-0.1636,-0.2546,-0.509,'4'
-0.3226,0.3922,0.9304,0.8098,-0.0766,-0.0256,-0.2112,-0.2714,-0.4338,-0.4802,-0.4338,-0.3874,-0.2994,-0.1694,-0.109,0.0208,0.1786,0.341,0.703,0.9026,1,0.9536,0.9444,0.9954,0.9536,0.9396,0.8516,0.7354,0.6474,0.8422,0.9164,0.8236,-0.2296,0.2444,1,0.9754,-0.2396,-0.353,-0.3778,-0.4814,-0.5556,-0.5604,-0.5604,-0.4568,-0.432,-0.368,-0.1506,-0.1062,-0.0074,0.2544,0.3136,0.7284,0.8172,0.8914,0.9852,0.8172,0.7482,0.9654,0.842,0.5456,0.4074,0.4864,0.6592,0.5408,-0.2022,0.1862,1,0.9308,-0.218,-0.3032,-0.3936,-0.5744,-0.6276,-0.7074,-0.5958,-0.5266,-0.4788,-0.383,-0.1756,-0.1702,-0.0638,0.1756,0.5478,0.6382,0.8192,0.7766,0.867,0.8776,0.8352,0.8458,0.782,0.6064,0.4788,0.6224,0.6808,0.6436,-0.2474,0.4302,0.9892,0.8388,-0.2688,-0.2688,-0.5752,-0.6452,-0.6828,-0.715,-0.6666,-0.5752,-0.6076,-0.3978,-0.3602,-0.156,-0.0698,0.215,0.3978,0.7044,0.9354,0.8978,0.8602,0.8494,0.9354,1,0.7904,0.6612,0.6398,0.6236,0.785,0.828,-0.4056,0.476,0.7482,0.4056,-0.3198,-0.3198,-0.5164,-0.8186,-0.7078,-0.7934,-0.6372,-0.5314,-0.5164,-0.476,-0.199,-0.0982,-0.0226,0.2292,0.4508,0.7934,1,0.9094,0.7632,0.8186,0.9848,0.8942,0.8338,0.6676,0.6624,0.6524,0.7784,0.8892,-0.623,0.3986,0.5084,0.1122,-0.4368,-0.451,-0.58,-0.7136,-0.7184,-0.8138,-0.704,-0.5752,-0.556,-0.4654,-0.2124,-0.1646,0.0072,0.198,0.5178,0.7614,1,0.8854,0.8186,0.8758,0.9666,0.9904,0.8472,0.7518,0.6898,0.747,0.8854,0.8806,-0.1778,0.4536,0.6658,0.3368,-0.3688,-0.5332,-0.6392,-0.7136,-0.687,-0.74,-0.7242,-0.4642,-0.5438,-0.512,-0.2998,-0.3316,-0.3156,0.0238,0.2202,0.7242,1,0.8886,0.7772,0.7718,0.7454,0.7294,0.6286,0.581,0.496,0.4588,0.6392,0.74,-0.1698,0.3208,0.7358,0.6226,-0.0566,0.0188,-0.0944,-0.283,-0.3584,-0.283,-0.2076,-0.2076,-0.0944,-0.0566,0.0566,0.0944,0.283,0.3962,0.7358,0.849,1,0.849,0.7736,0.9622,0.8868,0.7736,0.8114,0.6982,0.7358,0.6604,0.8868,0.8114,-0.4762,0.4286,0.762,0.6666,0,-0.0476,-0.1428,-0.1904,-0.3334,-0.381,-0.3334,-0.238,-0.1904,-0.0476,0.0476,0.1428,0.2858,0.4762,0.762,1,0.9524,0.9524,0.9048,1,0.9524,0.8572,0.7142,0.762,0.762,0.8572,0.9048,0.8572,-0.359,0.4872,0.718,0.3334,-0.2564,-0.359,-0.4358,-0.8206,-0.5384,-0.7692,-0.4102,-0.359,-0.2564,-0.4616,0,0,0.1282,0.2564,0.4872,0.8462,1,0.923,0.7692,0.9488,0.9488,0.9744,0.8206,0.6154,0.7692,0.641,0.8206,0.923,-1,-1,-1,-0.9642,-0.9654,-0.9844,-0.9794,-0.8702,-0.7544,-0.1336,0.1286,0.686,0.9794,0.8554,0.5654,0.4412,0.3832,0.2188,0.035,-0.265,-0.548,-0.5714,-0.747,-0.846,-0.951,-0.9794,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9484,-0.964,-0.9828,-0.9752,-0.847,-0.7988,1,1,0.6416,0.2964,0.238,0.0888,0.0706,0.0244,-0.032,0.031,0.0486,-0.6156,-0.7242,-0.8344,-0.8676,-0.8982,-0.914,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8168,-0.7968,-0.84,-0.7734,-0.7168,-0.8034,-0.5634,-0.4534,-0.8772,-0.8916,-0.9772,-0.9544,-0.86,-0.8658,-0.823,-0.8144,-0.7116,-0.8316,-0.7686,-0.7,-0.3968,0.11,0.0032,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4286,-0.3714,-0.5428,-0.1142,1,1,1,0.1714,-0.7428,-0.7428,-1,-1,-1,-1,-1,-1,1,1,-0.7428,-0.7428,-0.2286,-0.4572,-0.4,-1,-1,-1,-1,-1,-1,-1,0.2654,0.2692,0.2508,0.2122,0.1968,0.1322,0.07,-0.002,-0.0698,-0.2364,0.8534,0.881,0.9092,0.9338,0.9394,0.9384,0.959,0.9592,0.9522,0.9248,-0.44,-0.2118,1,0.876,0.6204,0.4852,0.262,1,0.0128,0.4808,0.1744,-0.183,-0.3106,-0.268,-0.132,-0.0298,0.268,0.7788,0.9234,0.8128,0.7872,0.7446,0.7618,1,0.949,0.8978,0.8808,0.651,0.3276,-0.0128,-0.0212,0.149,0.251,0.2596,0.1574,-0.0298,-0.0808,-0.0042,0.0298,-0.234,0.021,0.5384,0.2448,0.056,-0.035,0.021,0.1328,0.2728,0.4966,0.8742,0.965,0.8742,0.916,0.7692,0.7692,1,0.993,0.8812,0.8532,0.7272,0.4336,0.1888,0.1958,0.2728,0.3146,0.3286,0.2238,0.1398,0.028,0.098,0.07,-0.1678,0.0536,0.6214,0.205,0.1294,-0.0726,-0.0536,0.0914,0.2176,0.407,0.817,0.937,0.9874,1,0.8234,0.7982,0.9306,0.9242,0.9054,0.7224,0.6466,0.4258,0.2618,0.06,0.2114,0.2302,0.2618,0.0914,0.022,-0.0348,0.0094,0.022,-0.2302,1,-1,-1,1,-0.4,-1,-0.8,-0.5666,-1,-0.5036,-0.2846,0.124,0.1094,-0.1532,-0.2262,-0.1678,0.1532,0.2554,0.489,0.5912,0.8978,0.927,0.8832,1,0.7664,0.8978,0.8686,0.8832,0.8686,0.562,0.4744,0.2846,0.562,0.4306,0.4598,0.489,0.4744,0.4306,0.2846,-0.0948,-0.5036,'5'
-0.5016,0.0572,0.4646,0.3738,-0.2492,-0.4176,-0.4108,-0.3704,-0.5354,-0.5084,-0.357,-0.3536,-0.3434,-0.2222,-0.0472,-0.0102,0.1144,0.367,0.6398,0.9192,0.9292,0.8384,1,0.9696,0.9596,0.8014,0.66,0.6228,0.569,0.6902,0.7946,0.9024,-0.3908,-0.1238,0.2866,0.3224,-0.254,-0.3812,-0.3486,-0.4332,-0.482,-0.4788,-0.3258,-0.2996,-0.2736,-0.2052,-0.0944,-0.0066,0.0228,0.2672,0.632,0.7654,1,0.9284,0.847,0.9348,0.9478,0.8014,0.6092,0.6124,0.5928,0.7004,0.7394,0.8566,-0.398,-0.0756,0.2072,0.2468,-0.273,-0.3914,-0.4078,-0.421,-0.4704,-0.5032,-0.3422,-0.3158,-0.2764,-0.2236,-0.1118,0.0164,0.023,0.2236,0.5986,0.7006,1,0.9276,0.8356,0.9408,0.9376,0.7566,0.6118,0.6316,0.5856,0.5822,0.6776,0.7764,-0.3866,-0.0816,0.3284,0.3068,-0.3248,-0.4918,-0.579,-0.4736,-0.579,-0.6152,-0.4664,-0.4048,-0.3938,-0.245,-0.1906,-0.0636,0.118,0.274,0.5462,0.8912,0.9892,0.9746,0.971,0.971,1,0.8802,0.6696,0.6298,0.5862,0.6624,0.7132,0.8258,-0.4744,0.017,0.3534,0.1872,-0.4366,-0.55,-0.6258,-0.7126,-0.7542,-0.671,-0.6598,-0.6408,-0.5122,-0.3534,-0.361,-0.2514,-0.0322,0.1532,0.4102,0.758,1,0.9432,0.7808,0.9018,0.8828,0.7202,0.4594,0.4216,0.3988,0.482,0.5464,0.6748,-0.5568,0.318,0.4412,-0.0636,-0.5568,-0.6918,-0.7958,-0.7186,-0.7418,-0.7842,-0.6146,-0.5646,-0.6146,-0.476,-0.3256,-0.2524,-0.0982,0.129,0.4644,0.8536,1,0.8266,0.8612,0.946,0.923,0.7148,0.445,0.4026,0.395,0.4836,0.5068,0.7572,-0.436,0.4312,0.5356,-0.2228,-0.5308,-0.692,-0.9384,-0.891,-0.8578,-0.9764,-0.7488,-0.7536,-0.6966,-0.5924,-0.5072,-0.4028,-0.2274,-0.1138,0.2796,0.7678,0.9526,0.9716,0.8436,1,0.9668,0.635,0.3696,0.2938,0.18,0.3364,0.2228,0.4976,-0.617,0.149,0.4042,0.0212,-0.149,-0.4042,-0.3618,-0.3192,-0.617,-0.4894,-0.4042,-0.3192,-0.3192,-0.234,-0.1064,-0.0212,0.0638,0.2766,0.6596,0.8298,1,0.7022,0.9148,0.7872,0.9148,0.7022,0.532,0.4042,0.4042,0.4894,0.5744,0.7022,-0.5926,0.1112,0.4074,0.3334,-0.3334,-0.3704,-0.4444,-0.4074,-0.4444,-0.4444,-0.3334,-0.2962,-0.3334,-0.1852,-0.1112,0,0.1482,0.2962,0.7038,0.8888,0.8518,0.8518,0.963,1,0.963,0.7408,0.6666,0.5926,0.5926,0.7038,0.7778,0.926,-0.5294,0.2706,0.4824,0.1058,-0.5058,-0.7176,-0.7176,-0.6706,-0.9294,-0.7882,-0.6236,-0.6,-0.6,-0.6236,-0.4824,-0.2236,-0.1294,0.1764,0.4824,0.8352,0.9764,0.8588,0.8588,0.9764,1,0.6942,0.3882,0.4588,0.4118,0.4588,0.6,0.7882,-1,-1,-1,-1,-1,-0.9848,-0.957,-0.925,-0.9816,-0.8232,-0.4422,0.6,0.9188,0.7266,0.6526,0.5928,0.5068,0.4852,0.4988,0.4582,0.0764,-0.2398,-0.6542,-0.9156,-0.9426,-0.949,-0.953,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9926,-0.9846,-0.966,-0.9918,-0.8558,-0.6426,0.3472,0.7576,0.8502,0.9486,0.7926,0.4358,0.2496,-0.0234,-0.1176,-0.342,-0.6932,-0.8794,-0.8794,-0.8588,-0.9048,-0.93,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.8034,-0.69,-0.82,-0.5834,-0.59,-0.2344,-0.0658,-0.0744,-0.0944,-0.05,-0.065,-0.2776,-0.455,-0.64,-0.795,-0.9,-0.74,0.08,0.0166,0.0332,-0.1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,-0.0858,-0.3714,0.6858,1,1,1,-0.7142,-1,-1,-1,-1,-1,-0.9714,-0.9428,0.2286,1,0.7428,1,-0.7714,-0.4858,-0.0286,-1,-1,-1,-1,-1,-1,0.1982,0.1882,0.1924,0.1876,0.1882,0.1808,0.1832,0.1954,0.1556,-0.1358,0.966,0.9524,0.9546,0.9464,0.9278,0.9182,0.9274,0.9538,0.9564,0.936,-0.5334,-0.1294,-0.56,-0.199,0.515,0.5224,0.6412,1,0.25,0.6428,0.3214,0.3572,0.2142,0.2142,0.3572,0.3928,0.6428,0.75,1,0.9286,1,0.7858,0.75,0.7858,0.8572,0.8214,0.8214,0.75,0.6786,0.5358,0.3214,0.3928,0.25,0.2858,0.1786,0.1786,0.0358,-0.0714,-0.1428,-0.3928,0.1128,0.594,0.3534,0.1128,-0.0828,0.0076,0.0978,0.1428,0.4136,0.8796,1,1,1,0.7142,0.594,0.7744,0.9398,0.8496,0.7294,0.7894,0.6692,0.4286,0.1578,0.203,0.233,0.218,0.0828,0.0978,0.0226,-0.0376,0.0376,-0.218,0.2298,0.6486,0.3648,0.2298,0.1486,0.1216,0.2838,0.3244,0.554,0.8108,0.9864,1,0.973,0.7838,0.7162,0.7838,0.9594,0.8648,0.7972,0.7702,0.6892,0.5406,0.3784,0.446,0.3648,0.4054,0.2432,0.2162,0.1892,0.1622,0.1892,-0.1216,0.3644,-1,-1,1,-1,-1,-0.8,-0.8334,-1,-0.4714,-0.2572,-0.2,0.0858,0.0142,-0.4,-0.1,-0.0142,0.1,0.4572,0.9572,1,0.8428,0.8286,0.7858,0.8858,0.9714,0.5572,0.6858,0.7286,0.6572,0.4286,0.4572,0.4142,0.4,0.0428,0.3858,0.6286,0.5572,0.2,0.0286,-0.2142,'5'
-0.4788,-0.0992,0.2012,0.7224,0.8696,0.677,0.2182,0.0312,-0.1784,-0.1444,-0.0254,0.0652,0.0708,0.2068,0.439,0.6374,0.83,1,0.9546,0.6998,0.6828,0.7168,0.745,0.7168,0.5014,0.3088,0.2012,0.2522,0.405,0.3768,0.6034,0.6488,-0.4814,-0.201,0.1534,0.5026,0.5502,0.5502,0.3386,0.1746,0.0476,0.037,0.1216,0.1694,0.2276,0.3228,0.5238,0.6614,0.8148,1,0.9894,0.8148,0.8254,0.8306,0.8518,0.7354,0.6084,0.4814,0.4126,0.4286,0.5132,0.5238,0.6032,0.7196,-0.4316,-0.2076,0.142,0.5082,0.5792,0.7486,0.5464,0.317,0.1858,0.1312,0.1748,0.246,0.3334,0.4098,0.5246,0.754,1,0.9562,0.9398,0.7704,0.7158,0.7868,0.7978,0.6394,0.4972,0.3716,0.3498,0.3662,0.4536,0.4644,0.6394,0.6994,-0.4448,-0.2292,0.116,0.3638,0.6172,0.903,0.7358,0.4016,0.283,0.2614,0.283,0.3478,0.461,0.6388,0.8328,1,0.9622,0.903,0.876,0.7952,0.7952,0.8382,0.6604,0.4824,0.4556,0.256,0.3584,0.353,0.4232,0.4286,0.655,0.6982,-0.5124,-0.3234,-0.0548,0.0846,0.597,0.7562,0.6368,0.4676,0.398,0.2736,0.4278,0.383,0.4926,0.7462,1,0.995,0.7512,0.607,0.6218,0.6616,0.6816,0.6666,0.5024,0.3084,0.199,0.1492,0.219,0.1742,0.2588,0.2936,0.4528,0.5224,-0.4936,-0.2378,-0.023,-0.0384,0.688,0.8414,0.9336,0.6214,0.3708,0.3708,0.4066,0.5806,0.826,1,0.9898,0.7392,0.5602,0.5856,0.6164,0.6624,0.7034,0.6112,0.2174,0.2276,0.1662,0.0128,0.0946,0.0998,0.2174,0.2992,0.4988,0.6266,-0.4958,-0.097,-0.0138,0.0638,0.6122,0.9446,1,0.8726,0.5678,0.5512,0.7452,0.8948,0.8172,0.8006,0.6898,0.4626,0.435,0.385,0.4182,0.4848,0.4792,0.3962,0.0304,-0.1192,-0.2576,-0.302,-0.1302,-0.1302,0.0692,0.1358,0.518,0.518,-0.4,-0.2,0.12,0.48,0.64,0.4,0.16,-0.08,-0.12,-0.2,-0.08,0.12,0.12,0.12,0.36,0.44,0.76,1,1,0.64,0.72,0.8,0.8,0.68,0.48,0.08,0.24,0.28,0.36,0.36,0.64,0.6,-0.3636,0.0454,0.091,0.8636,1,0.6364,0.2728,-0.5,-0.5,-0.5454,-0.591,-0.5,-0.3636,-0.3182,0.0454,0.3182,0.2728,0.591,0.4546,0.1364,0.3182,0.409,0.591,0.591,0.2728,-0.091,-0.091,-0.1364,0.1818,0.091,0.1364,0.3636,-0.5106,-0.2766,-0.0852,0,0.6382,0.7446,0.8724,0.5106,0.3618,0.4042,0.4468,0.532,0.766,0.9362,1,0.8086,0.5532,0.5532,0.6808,0.6808,0.7234,0.6596,0.4468,0.2978,0.2128,0.149,0.1702,0.1276,0.2978,0.3404,0.4468,0.5958,-1,-1,-1,-1,-1,-1,-1,-1,-0.9824,-0.9794,-0.8338,0.5242,0.7456,0.4852,0.385,0.378,0.5554,0.6676,0.4972,0.2204,-0.2478,0.0786,-0.6494,-0.9484,-0.97,-0.9774,-0.9754,-0.9774,-0.9674,-0.974,-0.973,-0.9744,-0.977,-1,-1,-1,-1,-1,-1,-1,-1,-0.9884,-0.9886,-0.8758,-0.0628,0.2648,0.3512,0.264,0.291,0.5424,0.8652,0.9502,0.5052,-0.2334,0.2508,-0.6774,-0.9476,-0.9444,-0.9632,-0.9624,-0.9336,-0.9326,-0.9256,-0.9312,-0.9364,-0.9414,-1,-1,-1,-1,-1,-1,-1,-1,-0.8868,-0.8934,-0.6368,-0.792,-0.828,-0.732,-0.756,-0.772,-0.852,-0.82,-0.812,-0.8368,-0.8634,-0.94,-0.8068,-0.4134,-0.0068,0.0632,0.0166,0.2632,0.3066,0.43,0.28,0.33,0.3732,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,1,1,1,1,-0.1428,-1,-1,-0.9428,-1,-0.5428,0.6858,0.7714,1,1,0.8858,-0.0286,-0.9142,-0.5714,-0.3714,-0.8572,-0.9714,-0.9142,-0.9428,-0.6572,0.9756,0.996,1,1,1,1,1,1,1,1,-0.2466,-0.2228,-0.2254,-0.1924,-0.1584,-0.114,-0.0962,-0.1142,-0.284,-0.8138,-0.4666,-0.4352,-0.9786,-0.2066,-0.0156,0.378,0.186,1,0.0282,0.3108,1,0.6724,0.6158,0.7966,0.8758,0.7062,0.695,0.7628,0.774,0.7966,1,0.5142,0.548,0.5368,0.548,0.4916,0.548,0.6724,0.548,0.4916,0.2656,0.4576,0.548,0.4576,0.3786,-0.0056,0.2204,0.1186,0.1864,-0.0508,-0.028,0.2402,0.7988,0.8994,0.6202,0.7878,0.8882,0.8324,1,0.4636,0.7878,0.6536,0.743,0.743,0.7766,0.933,0.5866,0.877,0.6424,0.4302,0.933,0.4748,0.296,0.3072,0.3966,0.4302,0.4748,0.4972,0.162,0.3966,0.2178,-0.095,-0.018,0.1802,0.2702,0.3874,0.3874,0.2342,0.4774,0.5406,0.7928,0.8198,0.8828,1,0.901,0.3874,0.6036,0.6666,0.8378,0.6666,0.7838,0.8468,0.919,0.6126,0.1262,0.4864,0.4144,0.5766,0.1622,0.099,-0.072,0.1622,-0.099,-0.6396,-0.999,1,-1,-1,-1,-1,-1,-1,-1,-0.8978,-0.6788,-0.2262,-0.2116,-0.2992,-0.0656,-0.0802,0.1678,0.3576,0.5328,0.5036,0.416,0.416,0.4014,0.27,0.2408,0.2116,0.3722,0.5912,0.5182,0.635,0.5912,0.7226,0.6058,0.8248,0.6934,0.5912,0.8978,1,0.7226,0.5182,-0.0948,'6'
-0.5258,-0.2044,0.079,0.4224,0.5258,0.4986,0.2098,0.0844,0.0518,0.0246,0.0408,0.0954,0.1662,0.2588,0.4006,0.6076,0.8202,1,0.9346,0.8092,0.7712,0.8802,0.9456,0.94,0.6676,0.515,0.5204,0.3842,0.515,0.6076,0.5586,0.7656,-0.5196,-0.2122,0.134,0.4804,0.5364,0.581,0.419,0.2346,0.095,0.134,0.162,0.2012,0.2738,0.4302,0.5308,0.6536,0.972,0.9498,1,0.8212,0.8156,0.81,0.8882,0.7988,0.7654,0.5642,0.514,0.447,0.486,0.5196,0.6146,0.7094,-0.5026,-0.3174,0.1006,0.381,0.4498,0.6826,0.5186,0.3386,0.1534,0.1746,0.1798,0.291,0.3544,0.4604,0.508,0.783,1,0.9894,0.8148,0.7408,0.6878,0.8148,0.8306,0.7408,0.7142,0.492,0.3334,0.3598,0.4074,0.4232,0.3968,0.5714,-0.5124,-0.2632,0.0914,0.3186,0.6842,0.9336,0.784,0.3796,0.2022,0.2798,0.324,0.3684,0.4682,0.6786,0.8726,1,0.9668,0.9114,0.795,0.734,0.7396,0.7784,0.8338,0.7008,0.6122,0.4516,0.457,0.3906,0.3628,0.507,0.5124,0.5624,-0.524,-0.3582,-0.0856,0.091,0.615,0.7486,0.7272,0.4974,0.3316,0.3316,0.369,0.4652,0.6256,0.8824,1,0.9786,0.8074,0.7006,0.647,0.6578,0.7594,0.8074,0.7914,0.6898,0.524,0.3958,0.3422,0.2994,0.4172,0.492,0.5402,0.8022,-0.636,-0.3398,-0.2282,-0.0776,0.3834,0.7864,0.83,0.5388,0.398,0.4174,0.4612,0.67,0.864,1,0.8786,0.733,0.67,0.5728,0.636,0.7234,0.8398,0.7622,0.6456,0.568,0.3834,0.2428,0.2378,0.2524,0.4758,0.568,0.6554,0.9078,-0.5896,-0.1948,-0.1064,0.0078,0.5688,0.9116,0.9792,0.7922,0.548,0.6156,0.8182,0.9324,1,0.9272,0.7298,0.6364,0.548,0.6,0.5948,0.7974,0.8442,0.7662,0.4858,0.3922,0.3402,0.3766,0.3246,0.3558,0.574,0.7142,0.8234,0.9428,-0.4482,-0.2758,0.0344,0.4138,0.5172,0.4828,0.069,-0.0344,0.1034,0.0344,0.0344,-0.0344,0.138,0.2414,0.3794,0.3794,0.7242,1,0.9656,0.7242,0.7586,0.8276,0.931,0.8966,0.6206,0.4482,0.5172,0.3794,0.5518,0.6206,0.5862,0.8276,-0.6,-0.16,0.12,0.56,0.64,0.44,0.28,0.16,0.12,0.08,0.12,0.16,0.24,0.36,0.52,0.64,0.92,1,0.92,0.92,0.84,0.92,0.96,0.96,0.68,0.52,0.48,0.36,0.48,0.52,0.4,0.64,-0.523,-0.3762,-0.0458,0.156,0.6698,0.8716,0.7064,0.3394,0.2294,0.2844,0.3212,0.3394,0.4678,0.7064,0.945,1,0.8348,0.7432,0.688,0.633,0.688,0.7432,0.7798,0.633,0.523,0.4128,0.3762,0.2294,0.3944,0.4678,0.4496,0.7064,-1,-1,-1,-1,-1,-0.9888,-0.9864,-0.9858,-0.9812,-0.6348,-0.2272,0.1344,0.3152,0.2884,0.2146,0.1808,0.592,0.9282,0.4066,0.1588,0.0572,-0.1162,-0.7026,-0.9502,-0.9714,-0.9714,-0.9736,-0.9724,-0.9754,-0.973,-0.976,-0.975,-0.98,-1,-1,-1,-1,-1,-0.993,-0.993,-0.9938,-0.992,-0.6476,0.141,0.149,0.3206,0.2506,0.3224,0.4116,0.518,0.9318,0.9842,0.9156,0.7832,0.186,-0.7088,-0.9638,-0.9612,-0.947,-0.953,-0.9618,-0.9614,-0.9526,-0.9578,-0.9538,-0.9522,-1,-1,-1,-1,-1,-0.7268,-0.7268,-0.84,-0.95,-0.73,-0.6868,-0.715,-0.76,-0.89,-0.825,-0.756,-0.904,-0.884,-0.76,-0.812,-0.848,-0.872,-0.8134,-0.29,-0.0968,-0.02,0.0366,0.25,0.2232,0.48,0.6366,0.6066,0.7532,-1,-1,-1,-1,-1,-0.5142,-0.7714,-0.7714,1,1,1,-0.3428,-0.8858,-0.7714,-1,-1,0.2286,1,-0.2286,0.3142,1,1,1,1,-0.2,-0.7428,-0.7428,-0.8572,-0.9142,-0.8858,-0.9714,-1,-0.9428,1,1,1,1,1,1,1,1,1,1,0.1936,0.1936,0.2026,0.212,0.1936,0.174,0.1598,0.0984,-0.082,-0.6634,-0.4534,-0.5176,0.1584,0.1572,0.0836,0.4402,0.2316,1,-0.0206,0.3932,0.6,0.462,0.2828,0.3104,0.3656,0.6,0.9172,0.9724,0.9172,1,0.9034,0.7104,0.7518,0.862,0.9172,0.9448,0.9172,0.7932,0.8206,0.7794,0.531,0.3656,0.2552,0.269,0.2138,0.0482,0.062,0.0206,-0.2552,-0.3932,-0.0136,0.3836,0.5754,0.4794,0.2876,0.315,0.3698,0.548,0.9042,1,0.8494,0.9452,0.9042,0.685,0.7534,0.8356,0.9178,0.959,0.8904,0.7808,0.8082,0.7808,0.548,0.3836,0.3288,0.274,0.2602,0.137,0.1096,0,-0.0684,-0.3014,-0.077,0.3846,0.5674,0.4616,0.25,0.3076,0.327,0.548,0.923,1,0.8846,0.9616,0.8462,0.6538,0.7308,0.8174,0.9038,0.923,0.8654,0.7212,0.7404,0.6924,0.5,0.2692,0.25,0.1442,0.173,0.0576,0.0192,-0.0674,-0.2212,-0.4038,0.5942,-1,-1,1,-0.6,-1,-1,-0.7666,-1,-0.9306,-0.5834,-0.1388,-0.1528,-0.0972,0.0138,0.2916,0.3472,0.2222,0.5834,0.4584,0.5,0.3888,0.4166,0.4306,0.4306,0.5972,0.5556,0.4444,0.5972,0.6944,0.8194,0.6806,0.6666,0.8472,0.8194,0.875,0.8334,1,0.7916,0.7084,0.5,'6'
-0.1942,0.455,0.9768,0.7798,-0.4202,-0.287,-0.5188,-0.5536,-0.4898,-0.6754,-0.3972,-0.3566,-0.2986,-0.1478,-0.1768,0.0086,0.3392,0.7392,0.7392,0.8202,0.8724,0.913,1,0.7218,0.6406,0.5594,0.6174,0.5072,0.5884,0.7682,0.716,0.513,-0.2962,0.4126,1,0.8412,-0.2646,-0.1588,-0.3704,-0.418,-0.4868,-0.4498,-0.3174,-0.2858,-0.238,-0.2064,-0.1058,0.0264,0.2328,0.5926,0.6508,0.926,0.9576,0.926,0.8624,0.8836,0.7302,0.508,0.7884,0.6296,0.6138,0.8306,0.6666,0.545,-0.3752,0.3662,0.7708,0.609,-0.2404,-0.2494,-0.2944,-0.5192,-0.573,-0.3708,-0.3798,-0.2674,-0.2808,-0.1866,-0.0472,0.0832,0.2,0.4966,0.7078,0.928,1,0.9596,0.8606,0.7932,0.7168,0.537,0.6044,0.573,0.5956,0.6494,0.7618,0.663,-0.5346,0.2308,0.424,0.136,-0.29,-0.353,-0.4122,-0.6646,-0.499,-0.507,-0.4556,-0.4082,-0.2466,-0.1992,-0.0336,0.0296,0.144,0.4162,0.6332,0.8264,1,1,0.9488,0.933,0.8856,0.6646,0.6686,0.6332,0.637,0.649,0.7002,0.6252,-0.5782,0.215,0.3402,-0.1106,-0.4906,-0.5324,-0.6576,-0.5782,-0.5658,-0.7244,-0.641,-0.4614,-0.4238,-0.3194,-0.2108,-0.1106,-0.0522,0.2902,0.499,0.7996,0.9624,0.9708,0.9958,1,0.9416,0.6952,0.7494,0.5908,0.62,0.7036,0.7244,0.6702,-0.547,0.2308,0.188,-0.0214,-0.5598,-0.7478,-0.7264,-0.7394,-0.7136,-0.829,-0.8418,-0.688,-0.5086,-0.4744,-0.4102,-0.312,-0.1068,0.03,0.2436,0.688,0.876,0.906,0.97,1,0.8804,0.5898,0.5598,0.4572,0.4658,0.5384,0.547,0.547,-0.3222,0.5966,0.535,0.0868,-0.5966,-0.7928,-0.6022,-0.5686,-0.8768,-0.9328,-0.9048,-0.7648,-0.675,-0.5238,-0.4174,-0.5126,-0.4118,-0.507,-0.2492,0.0308,0.5014,0.9608,0.9944,1,0.8376,0.6134,0.3726,0.3558,0.2774,0.3278,0.4062,0.5014,-0.3334,0.2778,0.5556,0.3888,-0.5,-0.2222,-0.2778,-0.6112,-0.7222,-0.7222,-0.5,-0.4444,-0.3334,-0.1666,0.2222,0.5,0.6112,0.6112,0.3888,0.5556,0.5556,0.8334,0.9444,0.8334,0.6666,0.3334,0.1666,0.4444,0.7222,1,0.9444,0.5556,-0.125,0.4376,1,0.8124,-0.25,-0.25,-0.375,-0.5,-0.5,-0.625,-0.25,-0.125,-0.0624,-0.25,-0.3124,-0.0624,0.375,0.75,0.625,0.75,0.875,0.75,0.875,0.5624,0.4376,0.6876,0.6876,0.1876,0.375,0.5,0.625,0.5,-0.4762,0.2142,0.238,-0.1666,-0.4286,-0.5,-0.5952,-0.881,-0.738,-0.7142,-0.6904,-0.7142,-0.381,-0.3572,-0.3572,-0.1428,-0.0952,0.238,0.4524,0.6904,0.8572,0.9762,0.881,1,0.881,0.738,0.6904,0.6428,0.619,0.6904,0.6904,0.738,-1,-1,-1,-0.8346,-0.8792,-0.9342,-0.9712,-0.9438,-0.9704,-0.9478,-0.4468,0.2882,0.8058,0.976,0.9306,0.742,0.44,0.1194,-0.142,-0.3438,-0.5154,-0.6424,-0.6418,-0.7632,-0.8634,-0.943,-0.9498,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9262,-0.947,-0.9632,-0.9366,-0.6984,-0.2366,-0.2896,-0.4788,-0.3396,-0.0808,0.0554,0.2226,0.4438,0.7972,0.7866,0.2754,-0.1908,-0.6826,-0.8324,-0.6706,-0.8548,-0.8732,-0.8892,-0.908,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9722,-0.9668,-0.8534,-0.7,0.1866,0.5432,0.5366,0.2032,-0.7858,-0.863,-0.8316,-0.7544,-0.7516,-0.54,-0.54,-0.543,-0.5144,-0.75,-0.8576,-0.64,-0.6534,-0.2868,0.0132,-0.0434,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2,-0.9714,-0.6286,1,1,1,0.1428,1,1,-0.2572,-0.7714,-0.7714,-1,-1,-0.8858,-0.6286,0.5428,0.5428,-0.2572,-0.1428,-0.6858,-0.8,-0.8286,-0.6,-1,-1,-1,-1,-1,-1,-0.3172,-0.311,-0.2752,-0.2424,-0.223,-0.1962,-0.1448,-0.1008,-0.0508,-0.2224,0.4076,0.393,0.455,0.4916,0.5276,0.5506,0.5914,0.6544,0.6724,0.7676,-0.2934,-0.1882,-0.4634,-0.4418,-0.356,-0.2024,-0.1136,1,-0.3496,-0.1848,-0.0556,-0.069,-0.0244,0.2116,0.2784,0.1982,0.4966,0.5502,0.4966,0.7416,0.7194,0.9466,1,0.9466,0.8352,0.8574,0.7194,0.706,0.6036,0.657,0.6214,0.666,0.5768,0.6882,0.6258,0.559,0.4878,0.176,0.1448,-0.265,-0.9028,-0.5954,-0.4708,-0.393,-0.3774,-0.2802,-0.1984,-0.0544,0.2762,0.3464,0.5292,0.7588,0.6264,0.8016,0.9844,1,0.8288,0.9456,0.8716,0.8444,0.8522,0.8482,0.7782,0.7976,0.7898,0.6654,0.646,0.537,0.537,0.2918,0.3074,0.074,-0.0876,-0.0338,-0.272,-0.3214,-0.3842,-0.1776,-0.0022,0.227,0.627,0.654,0.654,0.8202,0.7078,0.7932,0.9956,1,0.991,0.955,0.7528,0.7798,0.9102,0.9416,0.8202,0.8338,0.618,0.3484,0.5012,0.5012,0.3574,0.2494,0.173,0.0022,-0.5426,-1,-1,1,-0.6,-0.8,-1,-0.1334,1,-0.1656,-0.0994,0.0728,0.0198,0.0728,-0.0332,0.0198,0.0596,0.1524,0.3908,0.7218,0.841,1,0.735,0.7086,0.841,0.6822,0.6556,0.8278,0.6424,0.5894,0.4172,0.2582,0.298,0.3378,0.2052,0.245,0.0332,0.2318,0.086,0.0332,-0.3774,'7'
-0.259,0.1446,0.8494,0.7952,-0.1928,-0.2168,-0.3012,-0.3674,-0.253,-0.3072,-0.265,-0.1326,-0.1446,0.0422,0.3374,0.4096,0.6686,1,0.982,0.9096,0.8494,0.8674,0.747,0.6746,0.6566,0.5904,0.6446,0.7108,0.8554,0.7832,0.747,0.753,-0.3518,0.0836,0.7468,0.7266,-0.1342,-0.1544,-0.1696,-0.2354,-0.2708,-0.2708,-0.1494,-0.0886,-0.0784,0.0632,0.3216,0.3368,0.5544,0.8886,0.924,1,0.8532,0.9088,0.8734,0.7468,0.6506,0.5696,0.6,0.681,0.8178,0.7164,0.767,0.7468,-0.4186,0.0244,0.6016,0.565,-0.0732,-0.0854,-0.1422,-0.1422,-0.256,-0.248,-0.1342,-0.0814,-0.0406,0.0732,0.2682,0.3374,0.4472,0.7398,0.8862,1,0.9634,0.8902,0.8618,0.7846,0.687,0.6178,0.6056,0.6626,0.7764,0.7236,0.7318,0.8334,-0.5112,0.0788,0.4788,0.3696,-0.0506,-0.1112,-0.196,-0.2162,-0.3212,-0.2888,-0.192,-0.1394,-0.0748,0.0666,0.1596,0.2888,0.4708,0.604,0.8546,0.9434,0.9758,1,0.9434,0.903,0.798,0.7212,0.701,0.6566,0.802,0.7858,0.8384,0.8748,-0.5324,0.1386,0.355,0.1082,-0.0432,-0.2122,-0.3204,-0.4546,-0.4632,-0.4502,-0.3464,-0.303,-0.1688,-0.0692,0.0044,0.1688,0.3464,0.5844,0.8138,0.9784,1,0.961,0.9696,0.9826,0.8614,0.7142,0.6884,0.645,0.7402,0.7748,0.8572,0.909,-0.5094,0.3154,0.4178,0.3316,-0.2668,-0.2938,-0.5796,-0.7628,-0.682,-0.779,-0.6928,-0.4286,-0.461,-0.3908,-0.2776,-0.213,-0.1428,0.213,0.4286,0.8544,0.9138,0.903,0.876,1,0.806,0.434,0.477,0.3316,0.4716,0.5688,0.7682,0.8168,-0.3158,0.5556,0.5964,0.5672,-0.2748,-0.3626,-0.5614,-0.7954,-0.7602,-0.7894,-0.6024,-0.614,-0.6316,-0.503,-0.5614,-0.6082,-0.1462,0.0936,0.4678,0.8422,0.9474,0.7602,0.883,1,0.7076,0.3334,0.4094,0.386,0.5088,0.4678,0.8422,0.9298,-0.2352,0.0588,0.7648,0.647,-0.1176,-0.2352,-0.4706,-0.5294,-0.2942,-0.353,-0.353,-0.1764,-0.0588,0,0.353,0.5294,0.5882,1,0.647,0.9412,1,0.7648,0.9412,0.8236,0.647,0.647,0.8236,1,0.8824,0.7648,1,0.8824,-0.2,0.2,0.85,0.8,-0.2,-0.1,-0.25,-0.3,-0.2,-0.4,-0.25,-0.1,-0.25,0.05,0.4,0.4,0.65,1,0.9,0.85,0.85,0.85,0.8,0.65,0.55,0.5,0.6,0.6,0.85,0.75,0.7,0.7,-0.5764,0.2,0.3648,0.2236,-0.2942,-0.3882,-0.5058,-0.6,-0.6236,-0.647,-0.5294,-0.4588,-0.3412,-0.2,-0.1294,0.0118,0.0824,0.2942,0.6942,0.9294,0.9764,0.8824,0.953,1,0.8118,0.553,0.5294,0.553,0.553,0.6,0.8352,0.9294,-1,-1,-1,-1,-0.8484,-0.874,-0.9522,-0.953,-0.9794,-0.967,-0.443,0.314,0.8138,0.9844,0.9492,0.8112,0.5494,0.1752,-0.0928,-0.3826,-0.5052,-0.5846,-0.6262,-0.7166,-0.9092,-0.9488,-0.9332,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.952,-0.9574,-0.9088,-0.735,-0.4386,-0.46,-0.5704,-0.3572,-0.0228,0.26,0.5166,0.82,0.9244,0.6518,0.2544,-0.4838,-0.7408,-0.8262,-0.8264,-0.8724,-0.9238,-0.9472,-0.958,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9858,-0.96,-0.72,0.4332,0.6666,0.6332,-0.0434,-0.76,-0.79,-0.7668,-0.6768,-0.5068,-0.4968,-0.5,-0.5168,-0.5468,-0.6316,-0.6286,-0.61,-0.4368,-0.0134,0.0732,-0.3434,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.0572,1,1,1,1,1,1,1,-0.7428,-0.5142,-0.6,-0.9142,-1,-0.9142,1,1,1,-0.6858,-0.2858,-0.3714,-0.3428,0.0286,0,-1,-1,-1,-1,-1,-1,0.0046,0.005,0.0116,0.0338,0.0552,0.0756,0.1322,0.2,0.3088,0.1302,0.4386,0.394,0.3878,0.3986,0.4176,0.4116,0.415,0.4264,0.4886,0.6328,-0.4266,-0.3176,-0.6062,-0.4948,-0.307,-0.208,0.012,1,-0.8098,-0.3562,-0.3076,-0.0972,-0.0486,0.0324,0.085,0.2106,0.4818,0.4372,0.5466,0.6114,0.6438,0.7894,0.9676,1,0.9272,0.7936,0.7408,0.5748,0.6396,0.6276,0.502,0.5384,0.5142,0.591,0.5264,0.421,0.3684,0.162,-0.0932,-0.251,-0.8402,-0.6702,-0.5244,-0.4202,-0.2778,-0.2188,-0.177,-0.0486,0.2778,0.3194,0.4652,0.5208,0.625,0.7604,0.8994,1,0.7604,0.8124,0.8056,0.7396,0.7604,0.7882,0.7812,0.7952,0.7708,0.7604,0.7326,0.559,0.3994,0.0972,0.184,-0.0244,-0.054,0.0928,-0.08,-0.1706,-0.1102,-0.1922,-0.0712,0.2958,0.715,0.7796,0.8876,0.8402,0.581,0.8186,1,0.918,0.8488,0.7668,0.7668,0.7754,0.7452,0.6718,0.6328,0.6242,0.702,0.5982,0.3736,0.2312,0.2398,0.149,0.1404,-0.0584,-0.6408,-1,-1,1,-0.6,-0.4,-0.2,-0.1,-1,-0.0274,0.0822,0.4384,0.548,0.411,0.137,0.3424,0.2054,0.3698,0.6028,0.959,0.9726,0.9452,0.863,0.8082,0.7672,0.9178,1,0.9316,0.726,0.6576,0.6164,0.411,0.3424,0.411,0.4932,0.548,0.3836,0.2192,0.411,0.3562,-0.0136,'7'
-0.3484,0.086,0.1856,0.6924,0.7556,0.638,0.258,0.1222,0.0408,-0.0316,0.077,0.1312,0.1494,0.3212,0.448,0.6832,0.828,0.8372,0.9548,0.6924,0.629,0.7648,0.8372,0.7556,0.801,0.62,0.6924,0.7376,0.81,0.8552,0.8824,1,-0.4008,-0.0042,0.2406,0.806,0.8312,0.6286,0.2236,0.1054,0.0886,-0.0632,0.0886,0.038,0.097,0.2406,0.3502,0.3586,0.578,0.8902,0.9324,1,0.8566,0.7468,0.7638,0.7806,0.7046,0.6372,0.6708,0.4684,0.6456,0.6624,0.8144,0.5612,-0.3588,0.084,0.4732,0.9848,0.9618,0.4274,0.1068,-0.0382,0,-0.2596,-0.0076,-0.0306,0.0458,0.0076,0.29,0.313,0.4122,0.855,0.7862,0.8474,0.9924,0.8932,0.8932,1,0.9694,0.8778,0.748,0.748,0.6564,0.8168,0.9542,0.71,-0.3526,0.1008,0.5324,0.4388,0.4676,0.2374,-0.1582,-0.2014,-0.1798,-0.3742,-0.2446,-0.187,-0.0648,-0.259,0.1438,0.151,0.1798,0.5612,0.7626,0.8346,0.9424,0.9856,0.964,0.9136,1,0.8562,0.7266,0.4676,0.6906,0.6402,0.6474,0.6618,-0.3742,0.1726,0.6402,0.482,0.2086,0.0864,-0.223,-0.4388,-0.3956,-0.4028,-0.4604,-0.2734,-0.1798,-0.259,0,-0.0432,0.1582,0.223,0.7122,0.8202,0.9784,0.9064,0.849,1,0.8706,0.7698,0.669,0.5972,0.6474,0.6116,0.6474,0.6258,-0.45,0.3214,0.6142,0.3858,-0.0142,-0.0142,-0.1786,-0.4358,-0.4286,-0.3786,-0.3642,-0.4786,-0.2142,-0.1858,-0.1428,-0.05,0.1358,0.2142,0.4858,0.8714,1,0.9928,0.8,0.9858,0.95,0.7072,0.6642,0.5642,0.4858,0.5358,0.6642,0.5714,-0.5198,0.2688,0.4266,0.319,-0.2544,-0.3978,-0.577,-0.6846,-0.7562,-0.6702,-0.4768,-0.319,-0.3906,-0.4122,-0.2974,-0.1542,-0.0752,0.0968,0.4122,0.7778,0.9714,0.9498,0.8782,0.9856,1,0.6918,0.5914,0.448,0.3764,0.4336,0.5198,0.448,-0.1904,0.381,0.2858,0.5714,0.5238,0.238,0.4762,0.238,0.2858,0.238,0.238,0.381,0.3334,0.4762,0.4762,0.619,0.6666,0.619,0.762,0.4762,0.5714,0.5238,0.6666,0.619,0.7142,0.762,0.762,0.8572,0.8096,0.9048,0.8096,1,-0.4634,-0.0732,0.317,0.7074,0.7074,0.6098,0.4634,0.2196,0.0732,-0.0244,0.0732,0.122,0.1708,0.2196,0.4634,0.561,0.756,0.9512,1,0.9512,0.8536,0.9024,0.8536,0.8536,0.8048,0.4634,0.7074,0.6098,0.6586,0.6098,0.6098,0.8048,-0.3506,0.091,0.5064,0.922,0.922,0.3766,0.065,-0.091,-0.039,-0.2728,-0.065,-0.065,0.039,-0.039,0.2728,0.2988,0.3506,0.8182,0.8182,0.922,1,0.8962,0.922,0.974,1,0.948,0.7142,0.6884,0.6624,0.7142,0.8962,0.7402,-1,-1,-1,-1,-0.9762,-0.972,-0.9288,-0.9762,-0.9644,-0.571,-0.2276,-0.1014,0.35,0.7746,0.9832,0.6466,0.152,0.2476,0.3562,0.4074,0.2194,-0.2738,-0.4704,-0.6616,-0.9394,-0.97,-0.9812,-0.9744,-0.967,-0.937,-0.9082,-0.9706,-0.9694,-1,-1,-1,-1,-0.9646,-0.9668,-0.8996,-0.9664,-0.951,-0.1728,0.2988,0.5166,0.9328,0.8884,0.8346,0.8356,0.5974,0.5772,0.6646,0.5974,0.6436,0.2946,-0.4256,-0.2666,-0.9398,-0.9626,-0.9714,-0.9658,-0.9626,-0.6526,-0.382,0.08,0.3428,-1,-1,-1,-1,-0.8708,-0.8668,-0.7534,-0.84,-0.8534,-0.81,-0.84,-0.82,-0.84,-0.75,-0.83,-0.83,-0.845,-0.95,-0.89,-0.932,-0.816,-0.74,-0.8534,-0.7034,-0.8234,-0.7634,-0.8034,-0.8934,-0.8934,-0.3468,0.2766,0.3866,0.4132,-1,-1,-1,-1,-0.6286,-0.8286,-0.6858,-0.4,1,1,0.5714,0.8,0.6572,-0.3714,-1,-0.8858,-0.8858,-0.9428,-0.9428,-0.9428,-0.4,1,1,1,1,-0.2858,-1,-1,1,1,1,0.8858,-0.6572,0.9038,0.9442,0.9442,0.9498,0.9666,0.9732,0.9702,0.9326,0.8272,0.4996,0.1338,0.1792,0.1792,0.2006,0.184,0.214,0.2538,0.3798,0.5234,0.7032,-0.4266,-0.5648,0.3994,0.0606,0.8378,1,0.873,1,0.0562,0.3596,0.7752,0.618,0.3258,0.3258,0.4494,0.7078,0.955,1,0.9438,0.8988,0.7752,0.7304,0.7528,0.8764,0.854,0.854,0.7528,0.6292,0.5506,0.2808,0.1686,0.0224,0.0224,0.1574,0.1686,0.1124,-0.0786,-0.0338,-0.1012,-0.4158,0.11,0.3508,0.8534,0.7068,0.3404,0.288,0.4346,0.644,1,0.9058,0.9476,1,0.7172,0.6544,0.7592,0.8952,0.8848,0.7592,0.6858,0.7068,0.4974,0.2252,0.2252,0.0994,0.0262,0.3298,0.1414,0.089,-0.0158,-0.068,-0.0052,-0.1308,0.1346,0.3942,1,0.7308,0.077,0.2116,0.1826,0.6442,0.9712,0.8558,0.9808,0.952,0.6058,0.5384,0.5576,0.7788,0.7884,0.6634,0.4904,0.7212,0.5288,0.0384,0.0674,0.0192,0.077,0.1442,0.2404,0.1538,-0.077,0.0192,-0.0674,-0.2884,0.3824,-1,-1,1,-0.4,-1,-1,-0.6666,1,-0.7916,-0.5938,-0.4896,-0.3124,-0.2812,-0.2812,0.073,0.2916,0.4584,0.625,0.6562,0.6042,0.6042,0.698,0.9376,1,0.6146,0.7188,0.6042,0.7292,0.7916,0.7188,0.6666,0.75,0.7708,0.7292,0.677,0.7396,0.5834,0.5312,0.302,0.1876,'8'
-0.5016,-0.12,0.0462,0.4584,0.7354,0.717,0.2184,0.1016,0.0338,-0.0338,0.0462,0.083,0.12,0.2554,0.4154,0.5754,0.883,1,0.963,0.8276,1,0.9446,0.9384,0.717,0.5876,0.6308,0.44,0.4276,0.477,0.4216,0.5138,0.637,-0.44,-0.237,0.2984,0.723,0.7476,0.483,0.2738,0.1938,0.077,0.0338,0.0646,0.1076,0.1938,0.2738,0.3354,0.4708,0.7046,0.9076,1,0.9262,0.8092,0.803,0.8338,0.6738,0.52,0.563,0.4216,0.4154,0.4584,0.6,0.5876,0.6246,-0.4444,-0.0618,0.3828,0.6604,0.6976,0.2716,0.1172,0.0494,-0.0988,-0.074,-0.105,-0.0124,0.1112,0.1914,0.2902,0.4382,0.6296,0.6914,0.9382,1,1,0.8704,0.963,0.926,0.8086,0.679,0.605,0.642,0.6112,0.7654,0.8086,0.7222,-0.4648,-0.0648,0.3588,0.247,0.3058,0.1176,-0.0352,-0.0824,-0.1942,-0.1588,-0.153,-0.0706,0,0.0824,0.1412,0.3,0.4352,0.5764,0.753,1,0.9942,0.8882,0.9294,0.8824,0.8706,0.7294,0.6236,0.5942,0.6236,0.7352,0.7352,0.7176,-0.4896,0.0154,0.397,0.2886,0.1134,-0.0052,-0.1546,-0.201,-0.2526,-0.2578,-0.1494,-0.134,-0.1186,0.0412,0.0464,0.1752,0.3196,0.5258,0.6908,0.9484,1,0.9072,0.8918,0.902,0.8092,0.7422,0.5928,0.598,0.6444,0.6702,0.7164,0.7062,-0.545,0.127,0.3228,0.1852,0,-0.2116,-0.3544,-0.3704,-0.4126,-0.3968,-0.3334,-0.2804,-0.2116,-0.164,-0.1112,-0.0158,0.2222,0.381,0.5926,0.91,1,0.963,0.9154,0.9366,0.8624,0.7248,0.5978,0.5292,0.5132,0.5608,0.6456,0.6296,-0.518,0.3374,0.6266,0.482,-0.1386,-0.3494,-0.5784,-0.5844,-0.524,-0.5964,-0.512,-0.476,-0.271,-0.2228,-0.253,-0.0422,0.0422,0.0964,0.488,0.9156,0.9398,0.9096,1,0.988,0.7892,0.4398,0.518,0.1746,0.3734,0.3674,0.4278,0.3192,-0.4418,-0.0232,0.2094,0.5348,0.907,0.7674,0.1628,0.1162,0.0232,-0.1162,-0.0232,-0.0232,0.0698,0.2558,0.5814,0.5814,0.9534,1,0.814,0.7674,0.9534,0.814,0.814,0.721,0.4884,0.5814,0.5814,0.3488,0.6744,0.6744,0.814,0.907,-0.551,-0.1428,0.0204,0.4694,0.6734,0.7142,0.1836,-0.0612,-0.102,-0.0204,-0.0612,0.0612,0.0612,0.0612,0.2654,0.4286,0.796,0.796,1,0.7142,0.8776,0.9592,0.8776,0.6326,0.551,0.5918,0.2244,0.3878,0.3878,-0.102,0.2244,0.4286,-0.56,0.06,0.28,0.14,-0.02,-0.16,-0.28,-0.36,-0.38,-0.38,-0.32,-0.26,-0.16,-0.1,-0.04,0.1,0.26,0.42,0.58,0.78,1,0.9,0.88,0.94,0.82,0.68,0.68,0.52,0.56,0.62,0.58,0.68,-1,-1,-1,-1,-1,-1,-0.9764,-0.9178,-0.929,-0.9644,-0.5886,0.3554,0.4392,0.7578,0.964,0.5682,0.2206,0.2708,0.214,0.0474,-0.2634,-0.2394,-0.6912,-0.9796,-0.9758,-0.9824,-0.9852,-0.9808,-0.9612,-0.9636,-0.976,-0.9694,-0.9718,-1,-1,-1,-1,-1,-1,-0.9848,-0.9368,-0.9356,-0.9652,-0.4,0.5738,0.4012,0.2646,0.411,0.5322,0.7884,0.8136,0.7902,0.5776,-0.3802,-0.2936,-0.7052,-0.9784,-0.9848,-0.9866,-0.9872,-0.986,-0.8602,-0.7034,-0.5976,-0.6166,-0.55,-1,-1,-1,-1,-1,-1,-0.7468,-0.9,-0.8068,-0.3534,-0.7268,-0.74,-0.765,-0.82,-0.816,-0.744,-0.632,-0.628,-0.656,-0.632,-0.796,-0.844,-0.5268,-0.5134,-0.7668,-0.77,-0.8234,-0.8468,-0.1768,0.53,0.53,0.5232,0.4632,-1,-1,-1,-1,-1,-1,-0.2572,0.3428,1,1,1,1,-0.3428,-1,-0.9142,-1,-1,-1,-0.8572,1,1,1,1,1,-0.4286,-0.9428,-1,1,1,1,0,-0.8572,-0.8572,1,1,1,1,1,1,1,1,0.9728,0.6452,0.2074,0.2074,0.1456,0.0938,0.0702,0.074,0.1306,0.2074,0.365,0.575,-0.4534,-0.5058,-0.3306,0.2708,1,0.2018,0.2606,1,-0.456,0.205,0.6904,0.7908,0.8076,0.6318,0.657,0.8494,0.9164,0.8326,0.7238,1,0.933,0.8578,0.5732,0.6066,0.5564,0.4644,0.657,-0.0544,0.1046,0.1464,0.2134,0.1966,0.4896,0.4476,0.364,0.2218,0.1046,-0.0042,-0.2302,-0.456,-0.3318,0.2272,1,0.809,0.2772,0.2228,0.4,0.4818,0.8318,0.809,0.6,0.6864,0.4046,0.3272,0.3046,0.4728,0.5546,0.441,0.4,0.4272,0.309,0.3272,0.1954,0.0318,0.1182,0.1364,0.0546,0.0182,-0.0364,-0.0636,-0.1,-0.65,0.2718,0.4792,0.5024,0.4746,0.1428,0.4102,0.53,0.553,0.8434,0.9448,0.8388,0.8388,0.682,0.5484,0.6222,0.811,0.9262,1,0.7788,0.7604,0.811,0.8248,0.7374,0.7236,0.7282,0.8018,0.8248,0.8618,0.682,0.6176,0.5576,-0.0092,-0.9952,1,-1,-1,-1,-1,-1,-1,1,-0.6804,-0.5052,-0.3196,-0.1546,-0.134,-0.0412,0.134,0.165,0.402,0.6082,0.4124,0.5568,0.598,0.835,0.897,0.9794,0.9794,1,0.9588,0.8248,0.8762,0.8866,0.866,0.8866,0.866,0.7732,0.464,0.6908,0.6702,0.5154,0.2578,0.0104,'8'
-0.5106,-0.1762,0.0304,0.0152,0.4924,0.5866,0.7294,0.9818,0.9118,0.9088,0.9696,1,0.8572,0.611,0.5928,0.6232,0.5684,0.7204,0.7598,0.6232,0.4712,0.4468,0.3192,0.1946,0.2736,0.2492,0.301,0.4894,0.5836,0.5258,0.4742,0.392,-0.4698,-0.1682,0.035,0,0.5238,0.5874,0.7174,1,0.8826,0.9524,0.927,0.7842,0.6698,0.4698,0.5936,0.4858,0.3746,0.5142,0.6444,0.3778,0.3396,0.346,0.0444,-0.0158,0.0158,-0.0222,-0.0096,0.219,0.2096,0.2508,0.365,0.2318,-0.4784,-0.2636,-0.0042,0.0042,0.5006,0.5398,0.7016,0.9052,1,0.9498,0.8214,0.9108,0.6624,0.4644,0.523,0.59,0.311,0.5984,0.576,0.5118,0.1994,0.2162,0.046,-0.0292,0.0182,0.0098,0.0516,0.2636,0.403,0.3082,0.325,0.311,-0.5622,-0.2162,-0.0918,0.0108,0.3028,0.5972,0.7784,0.8918,1,0.8082,0.8378,0.8676,0.8432,0.7568,0.8298,0.7622,0.6244,0.7082,0.7594,0.554,0.4162,0.3568,0.173,0.146,0.1406,0.119,0.2432,0.3,0.4648,0.4028,0.354,0.3514,-0.592,-0.2012,-0.1326,0.0356,0.4664,0.7062,0.846,0.8774,0.652,0.4864,0.6804,0.632,0.746,0.8716,0.9258,0.963,1,0.8602,0.9372,0.843,0.6634,0.6206,0.535,0.435,0.435,0.3238,0.4038,0.458,0.4864,0.5122,0.5606,0.435,-0.5542,-0.1648,-0.0518,0.1272,0.821,0.8712,0.6924,0.507,0.2496,0.2716,0.3218,0.3438,0.4192,0.5134,0.7112,0.9278,0.9434,0.9812,1,0.9058,0.7896,0.8148,0.5824,0.573,0.5668,0.4412,0.5416,0.4756,0.5478,0.4976,0.5448,0.46,-0.5204,0.0038,0.0484,0.5948,0.9144,0.7658,0.4238,0.1562,-0.0038,0.0074,0.1784,0.2118,0.1524,0.1338,0.29,0.4536,0.5204,0.9034,0.9926,1,0.8662,0.8066,0.6988,0.6282,0.6208,0.5688,0.554,0.5354,0.4684,0.5874,0.6988,0.736,-0.4222,-0.2888,0.0222,0.0222,0.4666,0.6444,0.7334,0.9556,1,0.7778,0.9112,0.9112,0.7778,0.5112,0.2444,0.5112,0.3778,0.2888,0.6444,0.5556,0.3778,0.1556,0.0666,-0.0222,-0.1112,0.1112,0.1556,0.2888,0.5556,0.4666,-0.1556,0.1112,-0.5918,-0.1836,-0.1428,0.0204,0.3062,0.5102,0.4286,0.9184,0.7552,0.6734,0.8368,1,0.5918,0.4286,0.4286,0.551,0.4694,0.6734,0.7552,0.4286,0.347,0.4286,0.347,0.102,0.2244,0.2244,0.2244,0.347,0.4694,0.5102,0.3878,0.2244,-0.5862,-0.1724,-0.0804,0.0804,0.6092,0.6782,0.6782,0.5632,0.3794,0.2414,0.4022,0.4482,0.5632,0.6552,0.839,0.954,0.977,0.954,1,0.908,0.7702,0.7932,0.5862,0.4712,0.4942,0.3564,0.4252,0.4022,0.4482,0.4942,0.4712,0.3334,-1,-1,-1,-1,-1,-0.8888,-0.9078,-0.971,-0.956,-0.956,-0.317,0.6324,0.946,0.7816,0.7806,0.6866,0.6806,0.5414,0.306,0.0066,-0.0516,-0.395,-0.6716,-0.7676,-0.8728,-0.9058,-0.9118,-0.9268,-0.8698,-0.8668,-0.7586,-0.7716,-0.7746,-1,-1,-1,-1,-1,-0.9412,-0.9496,-0.9898,-0.984,-0.9866,-0.2552,0.6544,0.297,0.0568,0.144,0.2806,0.5786,0.4176,0.1416,-0.4004,-0.5488,-0.8108,-0.8992,-0.9246,-0.9358,-0.9352,-0.9524,-0.9676,-0.969,-0.9708,-0.9562,-0.9568,-0.9558,-1,-1,-1,-1,-1,-0.8334,-0.8768,-0.89,-0.9168,-0.9134,-0.8434,-0.878,-0.804,-0.796,-0.738,-0.814,-0.8,-0.78,-0.684,-0.656,-0.7,-0.746,-0.46,-0.1868,-0.1534,-0.1668,-0.1434,-0.3768,-0.7068,-0.71,-0.79,-0.7,-0.87,-1,-1,-1,-1,-1,-0.4858,0.0572,-0.1142,-0.8858,1,1,1,-0.7142,-1,-0.8858,-0.9142,-0.9142,-0.9428,-0.6572,-0.4,-0.0286,-0.1714,-0.7714,-0.8286,-0.7714,-0.6858,-0.4286,-0.5142,-0.4,-0.5428,-0.9142,-0.9714,-0.3714,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.24,0.1764,-0.244,-0.1528,1,0.7212,0.5488,1,-0.081,0.2612,0.3874,0.8018,0.8738,1,0.982,0.8198,0.8378,0.7658,0.7118,0.6396,0.4234,0.4774,0.5136,0.5676,0.4234,0.4054,0.3874,0.4414,0.3154,0.2252,0.1532,0.027,0.081,0.081,0.045,0.027,-0.1352,-0.2252,-0.4234,-0.6396,-0.2714,-0.0852,0.3488,0.8294,0.8604,1,0.969,0.4264,0.6124,0.659,0.5038,0.2714,0.0078,0.1318,0.2404,0.2404,0.1782,0.3798,0.3178,0.5194,0.2404,0.0542,0.0388,-0.2094,-0.0078,-0.1782,0.0232,-0.1318,-0.2558,-0.3334,-0.5348,-0.69,0.0344,0.3218,0.6552,0.954,1,0.885,0.954,0.7932,0.862,0.8736,0.8276,0.6666,0.4942,0.5518,0.6092,0.4598,0.4368,0.3794,0.3564,0.5172,0.4022,0.2068,0.2068,0.069,0.2068,0.138,0.1724,0.0114,0,-0.046,-0.1954,-0.6092,1,-1,-1,1,-1,-1,0.2,-0.7666,1,-0.2298,0,0.5406,0.5136,0.2162,0.081,0.2568,0.446,0.554,0.6892,0.4054,0.5,0.7028,0.6756,0.8244,0.9324,1,0.973,0.8108,0.2432,0.1756,0.1352,0.2298,0.3244,0.419,0.3108,0.2162,0.054,0.0406,0.3784,0.2838,-0.3244,'9'
-0.4336,-0.2212,0.0088,0.0796,0.4408,0.5576,0.6318,0.9008,0.9116,0.7664,0.9716,0.9646,1,0.9858,0.9186,0.7982,0.823,0.8726,0.823,0.7558,0.7098,0.653,0.4442,0.3912,0.4054,0.4194,0.6176,0.6956,0.7098,0.7806,0.7168,0.6212,-0.4256,-0.225,0.0554,0.083,0.436,0.5744,0.5882,0.9724,0.9862,0.737,1,0.9204,0.8824,0.9066,0.7266,0.647,0.5536,0.6644,0.5744,0.519,0.5364,0.353,0.263,0.2318,0.256,0.3288,0.4394,0.5364,0.5468,0.526,0.474,0.398,-0.469,-0.1788,0.0442,0.069,0.4336,0.5682,0.5964,1,0.9964,0.777,0.9682,0.8124,0.8832,0.8408,0.7734,0.6992,0.5398,0.6424,0.5858,0.5398,0.4442,0.3876,0.2744,0.2424,0.1646,0.3204,0.2602,0.416,0.4442,0.3558,0.2106,0.1682,-0.5302,-0.2148,-0.0294,0.0232,0.422,0.4868,0.6166,1,0.8702,0.83,0.7806,0.932,0.8392,0.7898,0.8392,0.762,0.626,0.6692,0.7434,0.5826,0.4684,0.4838,0.3478,0.2086,0.2148,0.255,0.2674,0.456,0.4528,0.4498,0.4096,0.3384,-0.5688,-0.2262,-0.0948,-0.0366,0.3822,0.6606,0.9266,0.9572,0.74,0.6146,0.7492,0.789,0.8104,0.9114,1,0.9664,0.89,0.899,0.89,0.8166,0.7828,0.6758,0.5412,0.37,0.3792,0.3976,0.263,0.584,0.6056,0.581,0.7004,0.529,-0.5486,-0.2486,-0.0794,0.0158,0.7108,0.9858,0.9718,0.5238,0.425,0.1428,0.4286,0.3686,0.2664,0.5486,0.5486,0.732,0.9118,1,0.7426,0.7002,0.7354,0.6614,0.6014,0.6508,0.4426,0.4992,0.3616,0.3792,0.425,0.6684,0.6508,0.5768,-0.5994,-0.3472,-0.0674,0.3678,0.855,0.9068,0.6166,0.1364,-0.0018,-0.05,0.019,0.1054,-0.05,0.0398,0.2988,0.475,0.6994,0.9516,1,0.962,0.8134,0.848,0.893,0.8204,0.696,0.6614,0.5682,0.5752,0.6408,0.4542,0.6926,0.6408,-0.0834,0.4166,0.3334,0.4584,0.5416,0.5834,0.6666,0.625,0.7916,0.75,0.9166,0.875,1,1,0.9584,0.9166,0.9166,0.875,0.875,0.875,0.75,0.8334,0.75,0.7084,0.7084,0.6666,0.75,0.75,0.7916,0.75,0.7916,0.75,-0.6086,-0.2608,-0.174,0,0.3478,0.3478,0.7392,0.7826,0.7392,0.7826,0.826,0.913,0.9566,1,0.826,0.826,0.8696,0.8696,0.8696,0.826,0.7826,0.6956,0.5652,0.5218,0.5218,0.5218,0.7826,0.7392,0.6956,0.826,0.6522,0.7392,-0.6304,-0.2608,-0.1086,-0.0434,0.3696,0.7608,0.913,0.7392,0.5218,0.3478,0.587,0.5652,0.5652,0.7826,0.9566,1,0.913,0.8478,0.826,0.7174,0.7174,0.5434,0.4566,0.3478,0.1956,0.2826,0.1086,0.326,0.4566,0.5218,0.6086,0.4348,-1,-1,-1,-1,-1,-1,-0.8444,-0.9768,-0.9794,-0.7846,-0.827,0.1904,0.7382,0.7216,0.6816,0.665,0.8218,0.926,0.51,-0.1852,0.0508,-0.2386,-0.7028,-0.8694,-0.9312,-0.93,-0.9492,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.948,-0.9922,-0.994,-0.8708,-0.9162,0.5844,0.3692,0.1544,0.0602,0.1144,0.3958,0.6804,0.3024,-0.5576,-0.1776,-0.6464,-0.907,-0.9456,-0.9458,-0.9622,-0.9684,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7724,-0.9,-0.7768,-0.71,-0.6068,-0.735,-0.7576,-0.7776,-0.735,-0.7646,-0.7334,-0.78,-0.7778,-0.8,-0.8934,-0.8268,-0.2968,-0.0568,0.03,-0.0834,-0.2468,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.8,1,1,1,1,1,-0.6,-0.9428,-1,-1,-0.9428,-0.8286,1,1,1,0.0286,0.0858,-0.6286,-0.7142,-0.6572,-0.2858,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.973,-0.36,0,-0.9714,-0.293,0.9334,0.5962,0.5104,1,-0.2562,0.2122,0.708,0.7246,0.5978,0.664,0.978,1,0.5812,0.5316,0.4546,0.449,0.3774,0.5262,0.5372,0.4766,0.4326,0.3608,0.3994,0.6088,0.5042,0.3498,0.416,0.405,0.4326,0.6034,0.6474,0.4932,0.4326,0.405,0.1516,-0.0688,-0.1686,0.0636,0.3408,0.7304,0.6104,0.5656,0.6854,1,0.618,0.6854,0.6404,0.6554,0.8652,0.618,0.588,0.648,0.8052,0.4756,0.1836,0.3408,0.4082,0.3932,0.4756,0.4082,0.3034,0.3632,0.4308,0.5056,0.2434,0.1162,0.1236,-0.221,0.1288,0.3218,0.5622,0.7038,0.7726,0.824,0.9914,1,0.8756,0.897,0.8412,0.6566,0.5364,0.7424,0.8198,0.824,0.6052,0.5194,0.5708,0.6052,0.5494,0.5364,0.4206,0.3176,0.133,0.2618,0.3348,0.3048,0.249,0.1588,0.06,-0.485,-0.858,1,-1,-1,-1,-1,-1,-1,-1,-0.3376,0.1,0.35,0.2876,0.0624,0.075,0.2626,0.2,0.2376,0.85,0.65,0.6374,0.875,0.7124,0.8876,0.875,1,0.9624,0.85,0.475,0.4124,0.45,0.425,0.175,-0.0376,0.375,0.4376,0.325,0.45,0.7124,0.5624,-0.2,'9'
-0.2406,0.196,0.8412,0.7916,0.8808,0.4988,0.2854,0.1216,0.062,0.0372,0.1812,0.2952,0.4342,0.6626,0.7618,1,0.8362,0.856,0.9058,0.8908,0.8164,0.5136,0.4094,0.2308,0.1862,0.3152,0.479,0.593,0.6278,0.469,0.5038,0.4888,-0.4868,-0.1094,0.1812,0.6716,0.6868,0.5622,0.2868,0.1548,0.1548,0.1548,0.2754,0.4188,0.4868,0.6226,0.9886,0.8754,0.9208,0.951,1,0.9774,0.766,0.6226,0.5018,0.366,0.385,0.4378,0.483,0.5886,0.7434,0.5472,0.4114,0.4868,-0.534,-0.1542,0.1112,0.4122,0.656,0.7168,0.344,0.147,0.1612,0.1864,0.1756,0.405,0.448,0.6344,0.8064,0.9354,0.8638,0.939,1,0.7706,0.8208,0.8494,0.509,0.3692,0.4122,0.3836,0.344,0.577,0.5592,0.4696,0.5592,0.5304,-0.541,-0.1566,0.0142,0.3844,0.7972,0.8008,0.21,0.089,0.1602,0.0604,0.185,0.3132,0.3024,0.5302,0.758,0.8576,0.9572,1,0.8362,0.8042,0.9822,0.822,0.4982,0.5124,0.5088,0.2526,0.3914,0.4876,0.5018,0.5516,0.612,0.4982,-0.559,-0.2098,-0.0476,0.3298,0.7214,0.619,0.0864,0.0264,0.0476,-0.2276,0.1394,0.0618,0.2276,0.3898,0.5486,0.7602,1,0.9754,0.7778,0.8694,0.8766,0.753,0.552,0.559,0.2592,0.3122,0.3474,0.3298,0.4956,0.4992,0.485,0.485,-0.5256,-0.1106,0.1582,0.3518,0.6522,0.4466,0.0632,-0.0514,-0.0158,-0.2728,-0.0988,0.004,0.0276,0.3676,0.3794,0.6996,0.8894,0.8696,0.9052,1,0.9684,0.7668,0.8458,0.6166,0.3084,0.3794,0.328,0.3518,0.4902,0.3558,0.589,0.585,-0.5132,-0.0224,0.3794,0.501,0.4158,0.0832,-0.2374,-0.282,-0.3712,-0.4564,-0.14,-0.136,-0.1602,-0.075,0.1034,0.3104,0.5496,0.6064,1,1,0.9066,0.862,0.9148,0.6796,0.4442,0.282,0.1644,0.2942,0.3306,0.3306,0.505,0.5456,-0.1334,0.2,1,0.8666,0.6,0.2666,0,-0.0666,-0.2,-0.2,-0.1334,-0.2,0.1334,0.2666,0.2,0.8,0.4,0.4,1,0.6666,-0.0666,0.2666,0.4666,0.1334,-0.6,0.2,0.6666,0.6666,-0.0666,0,0.2,0.6666,-0.2,0.2,0.8858,0.8858,0.7714,0.4286,0.2572,0.0286,0.0286,-0.0286,0.1428,0.3714,0.3142,0.6,0.8858,0.8858,0.7142,0.7714,0.4858,0.9428,1,0.4858,0.3714,0.3142,0.3142,0.6572,0.7142,0.6,0.7714,0.7142,0.4858,0.6572,-0.5218,-0.1522,0.1086,0.5218,0.5218,0.587,0.3044,0.174,0.1086,0.1304,0.2392,0.3914,0.4782,0.6304,0.9566,0.8478,0.913,0.913,1,0.9348,0.7608,0.587,0.4348,0.3478,0.3696,0.3478,0.3914,0.5652,0.7392,0.4782,0.4348,0.5,-1,-1,-1,-0.9792,-0.9796,-0.9706,-0.9628,-0.9684,-0.9684,-0.9632,-0.5222,0.146,0.7,0.808,0.4256,0.5906,0.7176,0.6052,0.3318,-0.0382,-0.273,-0.4398,-0.438,-0.4024,-0.791,-0.9486,-0.9604,-0.9622,-0.9542,-1,-1,-1,-1,-1,-1,-1,-0.9852,-0.9844,-0.9806,-0.8454,-0.77,-0.481,-0.4448,-0.5714,-0.3904,0.2452,0.6814,0.769,0.9266,0.9298,0.7036,0.293,-0.165,-0.4652,-0.6664,-0.6534,-0.6458,-0.8764,-0.9348,-0.9354,-0.9274,-0.9262,-1,-1,-1,-1,-1,-1,-1,-0.82,-0.9168,-0.8568,-0.39,0.38,0.48,0.4866,-0.0034,-0.9116,-0.78,-0.723,-0.6326,-0.6276,-0.6976,-0.69,-0.715,-0.71,-0.7476,-0.7576,-0.8368,-0.6334,-0.45,-0.11,-0.0734,-0.03,-0.0734,-1,-1,-1,-1,-1,-1,-1,-0.9428,-1,1,1,1,1,0.4572,1,1,0.2286,-0.2286,-0.4,-0.9142,-0.8858,-0.9428,-0.6858,-0.7428,-0.4286,0.0572,-0.6858,0.1428,0.7142,-0.4572,-0.7428,-0.9428,-0.4572,-1,-1,-1,-1,0.601,0.6262,0.6556,0.6968,0.7322,0.786,0.8562,0.941,1,0.9754,-0.6016,-0.604,-0.6386,-0.6726,-0.6968,-0.7,-0.7406,-0.7956,-0.7832,-0.5006,-0.32,-0.1176,-0.6326,-0.5648,-0.4118,-0.164,0.1632,1,-0.6034,-0.4204,-0.0458,-0.0632,-0.0588,-0.0152,0.1852,0.2114,0.3072,0.3116,0.4728,0.6514,0.817,0.9302,1,0.9084,0.8474,0.7952,0.5904,0.56,0.6296,0.6166,0.5992,0.4902,0.5642,0.5512,0.5076,0.5382,0.1808,0.2114,0.0894,-0.2026,-0.8696,-0.6124,-0.5472,-0.41,-0.3826,-0.338,-0.2934,-0.0394,0.1012,0.2796,0.4752,0.4614,0.5678,0.8524,1,0.8902,0.832,0.849,0.8216,0.6946,0.849,0.705,0.7462,0.6672,0.8834,0.6946,0.6054,0.4888,0.482,0.2042,0.2418,0.0806,-0.2812,-0.1808,-0.2048,-0.241,-0.3132,-0.3294,-0.233,0.273,0.4538,0.6506,0.9116,0.8274,0.3936,0.739,1,0.9196,0.755,0.8756,0.6666,0.6746,0.9076,0.7912,0.6024,0.739,0.6868,0.5944,0.5622,0.506,0.4498,0.1204,0.241,0.008,-0.5548,-1,-1,1,-0.8,-1,-0.6,-0.0334,-1,-0.4194,-0.0322,-0.1398,0.2904,0.2044,0.2474,-0.0538,0.1828,0.3978,0.9354,0.5914,0.4838,0.5698,0.6774,0.8494,0.9784,1,0.9354,0.828,0.4838,0.0752,0.0538,0.1398,-0.0322,0.3548,0.3764,-0.0322,0.0538,0.2044,0.3548,0.3334,-0.0108,'10'
-0.3506,0.0464,0.5876,0.6494,0.7578,0.4278,0.1494,0.067,0.0876,0.067,0.2062,0.2474,0.2836,0.5618,0.6958,0.8556,1,0.902,0.9536,0.8712,0.9536,0.902,0.6082,0.5824,0.5052,0.634,0.7062,0.8454,0.8556,0.7062,0.5206,0.4794,-0.492,-0.0808,0.2286,0.6812,0.6812,0.6352,0.3718,0.2378,0.1454,0.1362,0.2934,0.3072,0.4134,0.5704,0.8244,0.8522,1,0.9584,0.9538,0.9446,0.746,0.709,0.612,0.4458,0.4966,0.5104,0.552,0.6536,0.7274,0.5982,0.4966,0.4504,-0.5372,-0.1268,0.159,0.4286,0.847,0.8832,0.4728,0.1872,0.1992,0.1912,0.2152,0.328,0.501,0.6378,0.7988,0.9476,1,0.8994,0.9558,0.988,0.7826,0.5534,0.5774,0.5332,0.3562,0.4124,0.4486,0.505,0.5774,0.6498,0.5332,0.4164,-0.5844,-0.18,-0.0166,0.4248,0.8144,0.7366,0.3396,0.1392,0.154,0.102,0.1948,0.2578,0.3358,0.4954,0.7366,0.9258,1,0.922,0.9294,0.8738,0.8218,0.6066,0.6474,0.5474,0.4138,0.4582,0.41,0.5028,0.473,0.6326,0.6624,0.499,-0.6598,-0.2098,-0.0396,0.3534,0.5992,0.6332,0.2174,0.07,0.0776,-0.0246,0.1494,0.1948,0.1872,0.4102,0.5464,0.7844,0.9962,1,0.9508,0.9244,0.845,0.8224,0.7694,0.7618,0.6106,0.5388,0.4934,0.6106,0.5842,0.7618,0.777,0.5728,-0.6348,-0.1702,0.0788,0.6556,0.8092,0.585,0.1494,-0.0332,-0.0374,-0.1536,-0.054,-0.0664,0.0788,0.1742,0.3196,0.473,0.7594,0.971,1,0.888,0.7966,0.8216,0.9294,0.8962,0.7136,0.5312,0.4482,0.3942,0.4274,0.6266,0.5934,0.4564,-0.7184,-0.4038,0.3416,0.6274,0.615,0.0352,-0.0766,-0.2092,-0.2174,-0.2836,-0.3416,-0.2464,-0.1346,-0.0394,0.056,0.325,0.5114,0.6894,0.9544,0.9668,0.88,0.9254,1,0.9918,0.7392,0.793,0.586,0.6314,0.5818,0.6978,0.5984,0.6564,-0.1794,0.077,0.7948,0.7948,0.5898,0.3846,-0.0256,-0.0256,0.077,-0.0256,0.1282,0.077,0.1282,0.3846,0.5384,0.8462,0.9488,0.7948,0.8974,0.7948,1,0.9488,0.5898,0.641,0.3846,0.641,0.7436,0.7948,0.7948,0.641,0.4358,0.3846,-0.45,0.15,0.45,0.4,0.65,0.45,0.25,0.05,0.05,0.05,0.15,0.25,0.35,0.55,0.7,0.8,0.95,1,0.9,0.8,0.9,0.9,0.5,0.5,0.55,0.55,0.65,0.65,0.7,0.6,0.55,0.4,-0.5764,-0.0588,0.0588,0.3412,0.8588,0.8118,-0.0118,0.153,0.1294,0.0118,0.2236,0.247,0.153,0.4588,0.553,0.7648,0.9764,0.8824,0.9294,1,0.953,0.953,0.9058,0.9058,0.6236,0.553,0.553,0.553,0.5294,0.7412,0.6706,0.4118,-1,-1,-1,-1,-0.987,-0.9884,-0.9594,-0.9042,-0.97,-0.9694,-0.3172,0.1476,0.7722,0.661,0.4976,0.9318,0.8842,0.338,0.0158,-0.0956,-0.3686,-0.3526,-0.5282,-0.809,-0.9094,-0.947,-0.9654,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9906,-0.9916,-0.9038,-0.7616,-0.6144,-0.592,-0.6818,-0.3172,0.1512,0.3098,0.529,0.784,0.8818,0.9408,0.5674,-0.3464,0.26,-0.4292,-0.7462,-0.8952,-0.9402,-0.9544,-0.9664,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9068,-0.9668,-0.5068,0.6866,0.56,0.6966,-0.36,-0.73,-0.61,-0.64,-0.5916,-0.6086,-0.5658,-0.6362,-0.6352,-0.8352,-0.6608,-0.6608,-0.7956,-0.5022,-0.2822,-0.2622,-0.299,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,0.6,1,1,1,-0.1428,-0.7428,-0.6,-0.8858,-0.8,-1,1,1,0.3714,1,0.1142,0.0286,-0.2286,-0.8,-0.6572,-1,-1,-1,-1,-1,-1,0.7524,0.7632,0.7836,0.7938,0.8322,0.8908,0.9402,1,1,1,-0.0428,-0.0586,-0.0802,-0.1078,-0.151,-0.2098,-0.274,-0.4134,-0.539,-0.185,-0.2266,-0.2352,-0.684,-0.4966,-0.2864,-0.0606,0.201,1,-0.6746,-0.2584,-0.1052,-0.0334,0,0.043,0.11,0.1818,0.1722,0.335,0.3876,0.512,0.7034,0.7752,0.9378,1,0.8852,0.7178,0.7368,0.7894,0.7224,0.646,0.7272,0.512,0.5646,0.5598,0.4688,0.3876,0.2776,0,-0.1722,-0.4354,-0.856,-0.7614,-0.4622,-0.303,-0.341,-0.2008,-0.2084,-0.1478,0.2272,0.2462,0.5378,0.606,0.4622,0.8864,1,0.9394,0.9016,0.8864,0.8446,0.8902,0.822,0.8144,0.856,0.9696,0.716,0.784,0.7614,0.5454,0.3826,0.3334,0.3182,0.125,-0.002,0.2162,0.2122,0.2,0.1112,0.103,0.2,0.402,0.6606,0.8102,0.8546,0.9718,0.6444,0.8748,1,0.9596,0.899,0.798,0.6808,0.701,0.697,0.8586,0.8828,0.7494,0.604,0.4666,0.2484,0.1798,0.3454,0.305,0.2242,-0.1596,-0.7506,-1,-1,1,-0.6,-1,-1,-0.0334,-1,-0.431,-0.1896,-0.1206,0.0862,-0.3276,-0.431,-0.138,-0.1552,-0.0862,0.638,1,0.931,0.8794,0.8276,0.2068,0.5172,0.5172,0.6206,0.3448,0.2586,0.069,-0.1552,-0.3276,-0.2068,-0.2758,0.069,-0.138,-0.0172,-0.0518,-0.2414,-0.2242,-0.8104,'10'
-0.2088,0.2444,0.48,0.6134,1,0.96,0.3688,0.2356,0.3022,0.12,0.2444,0.3688,0.3378,0.4044,0.5866,0.5512,0.7644,0.9466,0.96,0.8,0.8488,0.7956,0.6534,0.5334,0.3778,0.3822,0.4712,0.3956,0.6134,0.6534,0.68,0.7778,-0.411,-0.1314,0.248,0.5342,0.7372,0.6372,0.6372,0.3944,0.2346,0.2778,0.3778,0.3012,0.391,0.5906,0.6572,0.8004,1,0.9468,0.9966,0.9002,0.8502,0.8336,0.654,0.564,0.5474,0.4276,0.5308,0.441,0.5806,0.6472,0.624,0.7372,-0.4162,-0.1564,0.2656,0.563,0.7176,0.9624,0.8004,0.3974,0.2504,0.209,0.1978,0.2882,0.4764,0.4614,0.5028,0.8418,0.902,0.9134,1,0.9888,0.9096,0.7138,0.71,0.789,0.5556,0.4726,0.5706,0.4538,0.42,0.548,0.7402,0.6082,-0.502,-0.0926,0.1698,0.4208,0.973,1,0.4518,0.1584,0.2046,0.1584,0.1004,0.2586,0.3166,0.336,0.5366,0.7104,0.7528,0.915,0.9962,0.8842,0.7452,0.7722,0.7838,0.637,0.475,0.471,0.4362,0.4248,0.5444,0.4634,0.5984,0.6564,-0.5802,-0.1606,0.0584,0.6022,0.792,0.5802,0.2226,0.0292,0.0364,-0.0474,0.0364,0.124,0.084,0.2226,0.3576,0.4964,0.77,0.9562,1,0.927,0.8284,0.792,0.7774,0.7446,0.6496,0.5146,0.4636,0.3614,0.4598,0.354,0.5548,0.489,-0.5244,-0.0574,0.2612,0.6942,0.8174,0.2738,-0.1082,-0.0998,-0.3164,-0.2866,-0.0744,-0.0998,-0.0106,0.0744,0.0828,0.2824,0.4522,0.7622,1,0.9448,0.8556,0.8344,0.6688,0.758,0.7154,0.4182,0.482,0.3546,0.3758,0.4438,0.4946,0.6178,-0.4958,-0.0714,0.3908,0.4244,0.4202,0.084,-0.2058,-0.3278,-0.3362,-0.437,-0.2984,-0.21,-0.147,-0.0798,-0.0126,0.1428,0.2058,0.521,0.8698,0.9496,0.9622,0.9664,0.9076,0.9916,1,0.769,0.79,0.6008,0.6134,0.584,0.7648,0.7394,-0.1112,0.4444,0.3334,0.5556,0.6112,0.6112,0.2222,-0.1666,-0.2778,-0.1666,-0.1112,-0.2778,-0.2222,0,0,-0.1666,0.1112,0.4444,0.6112,0.7222,0.9444,1,0.8888,0.8888,0.6112,0.2222,0.2778,0.2222,0.4444,0.5556,0.6112,0.7222,-0.3,0.2,0.45,0.6,1,0.95,0.3,0.35,0.35,0.05,0.2,0.35,0.3,0.1,0.45,0.6,0.6,0.6,0.9,0.7,0.25,0.7,0.75,0.35,0.5,0.6,0.65,0.6,0.75,0.9,0.9,0.8,-0.5778,-0.1778,0.1778,0.7112,0.8,0.2888,-0.0444,-0.0444,-0.1334,-0.2666,-0.0222,0,0,0.1112,0.0888,0.3112,0.4444,0.8222,1,0.9556,0.7112,0.8444,0.7334,0.7778,0.6222,0.4,0.4888,0.4222,0.4,0.4444,0.5112,0.5112,-1,-1,-1,-0.9752,-0.9864,-0.98,-0.9856,-0.748,-0.7808,-0.9074,-0.6492,0.4528,0.9336,0.5876,0.3252,0.2628,0.3762,0.3614,0.229,-0.0972,-0.6148,-0.3916,-0.555,-0.593,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9874,-0.988,-0.988,-0.9878,-0.3002,-0.6564,-0.84,-0.7756,-0.049,0.7962,0.7542,0.4264,0.333,0.2944,0.2598,0.0606,-0.3128,-0.7918,-0.0948,-0.4778,-0.6798,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7598,-0.843,-0.8298,-0.6898,-0.4898,0.0436,0.0802,-0.193,-0.7802,-0.6746,-0.7114,-0.7486,-0.8716,-0.9376,-0.8626,-0.9026,-0.895,-0.95,-0.8426,-0.74,-0.6834,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,-0.9714,-1,1,1,1,0.2286,1,1,0.7714,-0.9142,-0.8572,-1,-0.8858,-0.8286,-0.9142,0.7714,0.4,0.1428,0.1142,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.81,0.8292,0.8618,0.8892,0.9328,0.9896,1,1,1,1,-0.2298,-0.2368,-0.275,-0.2838,-0.3284,-0.3552,-0.3716,-0.3944,-0.3532,0.0068,-0.32,-0.1412,-0.7598,-0.5454,-0.0354,0.3856,0.7188,1,-0.2312,0.2474,0.4462,0.4194,0.4678,0.613,0.586,0.6936,0.8118,0.9194,0.9354,0.914,0.7956,0.5592,0.5216,0.5968,0.8818,1,0.758,0.7366,0.7634,0.613,0.613,0.5698,0.656,0.699,0.5538,0.5054,0.3924,0.2956,0.2742,-0.0108,-0.4126,0.0886,0.1646,0.1798,0.0734,0.2152,0.433,0.4684,0.6506,0.8582,1,0.8228,0.6912,0.762,0.8936,0.8126,0.8178,0.8684,0.8076,0.8178,0.7266,0.6912,0.4734,0.4936,0.5342,0.6152,0.6354,0.4936,0.443,0.4278,0.2,0.0936,0.3082,0.3684,0.4636,0.4988,0.2582,0.228,0.233,0.2682,0.8446,1,0.965,0.8898,0.97,0.7344,0.7142,0.99,0.9298,0.8196,0.8096,0.6642,0.7042,0.639,0.5438,0.6992,0.619,0.4888,0.4036,0.4186,0.223,0.2482,0.188,0.0676,1,-1,-1,1,-0.6,-1,-1,-0.2334,-1,0.0338,0.4916,0.4576,-0.4238,-0.4238,-0.2882,-0.2372,-0.2542,-0.1186,0.4406,0.7796,0.7628,0.9662,0.5932,0.4916,0.678,0.983,1,0.4576,0.2542,0.356,0.2712,0.017,0.0508,0.1186,0.1694,0.2034,0.5932,0.2372,0.2372,0.339,0.1526,'11'
-0.1548,0.3274,0.369,0.6012,1,0.9464,0.6964,0.2798,0.125,0,0.0238,-0.0178,0.0892,0.1846,0.2262,0.363,0.5238,0.6846,0.8036,0.75,0.7202,0.7678,0.7976,0.762,0.5774,0.3988,0.244,0.3334,0.1548,0.0834,0.1488,0.137,-0.2904,0.0146,0.3432,0.7068,0.824,0.959,0.8064,0.525,0.2492,0.1378,0.2024,0.1964,0.3372,0.3314,0.3958,0.613,0.7008,0.8826,0.9942,0.9354,1,0.9882,0.8652,0.8652,0.7184,0.3958,0.2434,0.2316,0.1086,0.1496,0.0498,-0.0322,-0.3822,-0.119,0.1848,0.4836,0.838,1,0.5594,0.2962,0.1696,0.0278,0.114,0.1392,0.1494,0.195,0.3822,0.4632,0.681,0.9292,0.9594,0.9444,0.9494,0.8734,0.8684,0.8582,0.676,0.438,0.3164,0.2202,0.1444,0.124,0.1594,-0.0026,-0.478,-0.1268,0.0926,0.3512,1,0.9804,0.3024,0.244,0.1074,-0.0682,0.0976,0.1074,0.0536,0.1756,0.2586,0.4146,0.6146,0.7854,0.9074,0.9708,0.844,0.7658,0.8146,0.878,0.7414,0.5952,0.517,0.3464,0.361,0.239,0.3024,0.2488,-0.525,-0.1306,0.0072,0.6248,0.8764,0.6674,0.2494,0.1164,0.1068,-0.1212,0.0072,0.0356,0.0166,0.1782,0.221,0.3254,0.5154,0.772,0.8528,1,0.848,0.7198,0.772,0.9002,0.9002,0.6818,0.601,0.392,0.2304,0.297,0.3396,0.3016,-0.4842,-0.0316,0.1576,0.8452,0.9256,0.5416,0.066,-0.02,-0.1862,-0.255,-0.0602,-0.0946,-0.0774,-0.0086,0.106,0.1518,0.3696,0.6046,0.725,1,0.9426,0.725,0.8166,0.8854,0.828,0.8338,0.7594,0.3468,0.1232,-0.066,0.0946,0.0888,-0.6636,-0.2954,0.3364,0.6728,0.5728,0.1136,-0.1772,-0.291,-0.3728,-0.3546,-0.2546,-0.291,-0.2364,-0.0772,0.0454,0.0046,0.2954,0.3728,0.6682,1,0.8772,0.6,0.5818,0.7636,0.8272,0.8272,0.8228,0.4864,0.5136,0.341,0.3454,0.359,-0.05,0.45,0.25,0.45,0.7,0.85,0.4,0.05,-0.3,-0.25,-0.1,-0.2,-0.3,0,-0.15,0.15,0.05,0.8,1,1,0.8,0.8,0.75,0.8,0.6,0.6,0.45,0.5,0.35,0.25,0.25,-0.15,-0.1112,0.2444,0.3778,0.5112,1,1,0.7334,0.2,0.2888,0.1556,-0.1112,0.0222,0.2444,0.2,0.3778,0.3778,0.5112,0.7778,0.7778,0.7334,0.4222,0.7778,0.8222,0.7778,0.4666,0.4222,0.4222,0.4222,-0.0666,0.0222,0.1556,0.3778,-0.5122,-0.122,0.0488,0.7074,0.9024,0.683,0.1952,0.122,0,-0.1952,-0.1464,-0.0244,-0.2196,0.0244,0.0976,0.2196,0.3902,0.683,0.8536,1,0.7074,0.5366,0.4878,0.8048,0.756,0.6342,0.5854,0.317,0,0.0976,0.1952,0.1464,-0.9776,-0.9846,-0.9782,-0.9798,-0.9594,-0.7384,-0.7368,-0.8644,-0.8772,-0.9092,-0.693,0.4516,0.6438,0.4868,0.631,0.7142,0.9722,0.7062,0.4082,-0.0718,-0.3758,-0.2588,-0.421,-0.6972,-0.8308,-0.9466,-0.952,-1,-1,-1,-1,-1,-1,-0.9822,-0.9844,-0.9812,-0.9838,-0.9488,-0.6106,-0.5494,-0.8078,-0.8396,-0.8016,-0.6604,0.0106,0.301,0.5546,0.7912,0.7556,0.8968,0.931,0.2904,-0.32,-0.4328,0.0014,-0.3128,-0.7932,-0.8706,-0.9546,-0.9476,-1,-1,-1,-1,-1,-1,-0.8032,-0.7734,-0.86,-0.8634,-0.8134,-0.2634,0.0932,-0.0034,-0.1068,0.01,-0.25,-0.87,-0.94,-0.92,-0.9034,-0.84,-0.8634,-0.8634,-0.91,-0.8834,-0.76,-0.803,-0.7968,-0.6868,-0.4,-0.2568,-0.1968,-1,-1,-1,-1,-1,-1,-0.3714,-1,-1,-0.9142,1,1,1,0.4286,-0.5714,-0.6286,1,1,-0.3142,-0.9714,-1,-1,-0.9142,-0.5428,1,0.9714,-0.8,0.2,0.1428,0.4572,1,0.2858,0.1428,-1,-1,-1,-1,-1,-1,0.8826,0.923,0.9536,0.9794,1,1,1,1,1,1,0.2962,0.2274,0.126,0.076,0.012,0.0192,-0.0104,0.014,0.096,0.3336,-0.3066,-0.3176,-0.699,-0.3382,0.1314,0.19,0.29,1,-0.5762,0.1966,0.1728,0.3152,0.1966,0.244,0.2678,0.3424,0.6338,0.6746,1,0.9796,0.8136,0.6814,0.5762,0.522,0.461,0.7118,0.722,0.6372,0.5628,0.478,0.478,0.5458,0.5152,0.5526,0.6338,0.5424,0.278,0.1694,0.105,-0.0678,-0.1882,0.203,0.4428,0.3764,0.2398,0.048,0.155,0.214,0.5904,0.7676,0.8488,0.9226,0.9336,0.904,0.9226,0.9226,0.8192,0.8118,1,0.8892,0.7564,0.6974,0.642,0.738,0.6826,0.7158,0.6384,0.5572,0.4798,0.5314,0.3986,0.1108,-0.2814,-0.0894,0.4702,0.4768,0.1622,0.1854,0.1192,0.1456,0.5496,0.894,1,1,0.9768,0.8046,0.7582,0.8676,0.7186,0.6688,0.6854,0.6754,0.7052,0.4966,0.6358,0.7284,0.7582,0.7418,0.5264,0.4338,0.4304,0.4006,0.3676,-0.0066,-0.159,-1,-1,1,-1,-1,-1,0.2334,-1,-0.5102,-0.2518,-0.0476,0.0476,-0.0612,0.0612,0.1836,0.1292,0.3062,0.9456,1,0.9456,0.9728,0.9048,0.932,0.7278,0.687,0.4558,0.7824,0.864,0.7142,0.6054,0.238,0.347,0.4286,0.4422,0.5646,0.6326,0.4422,0.415,0.3334,-0.1836,'11'
-0.505,-0.0802,0.2274,0.5218,0.729,0.7726,0.4582,0.184,-0.0402,0.0502,0.0836,0.0802,0.2274,0.4046,0.4616,0.8964,1,0.8328,0.7424,0.689,0.7658,0.9064,0.796,0.5552,0.4816,0.3044,0.2342,0.281,0.3144,0.301,0.5752,0.5518,-0.3812,-0.151,0.2986,0.5864,0.7158,0.8812,0.518,0.2626,-0.0108,-0.0468,0.0108,0.054,0.1834,0.3634,0.5612,0.9352,1,0.6008,0.446,0.4316,0.4856,0.5864,0.5144,0.3382,0.2194,-0.0252,0.0216,0.0648,0.0504,0.0756,0.2734,0.367,-0.399,-0.2022,0.167,0.4586,0.9226,1,0.6696,0.3252,0.2548,0.2022,0.0966,0.29,0.4236,0.5326,0.652,0.4376,0.3182,0.1248,0.188,0.2514,0.399,0.427,0.2514,-0.065,-0.1528,-0.2794,-0.3146,-0.3498,-0.29,-0.079,0.0264,0.1142,-0.4948,-0.115,0.1114,0.3972,0.8606,1,0.9756,0.7386,0.7178,0.7386,0.784,0.655,0.54,0.3276,0.2334,0.1534,0.0244,0.014,0.0836,0.244,0.4076,0.439,0.216,-0.0348,-0.0278,-0.237,-0.0488,-0.0174,0.1638,0.2752,0.3554,0.2126,-0.6072,-0.1354,0.099,0.307,0.8944,1,0.858,0.8646,0.9438,0.66,0.3036,0.0694,0.0132,-0.0594,-0.1684,-0.1288,-0.066,-0.1452,-0.0198,0.1354,0.3862,0.4324,0.3862,0.0924,0.0166,-0.033,0.0528,0.2344,0.5016,0.4554,0.3004,0.241,-0.6134,-0.0716,0.1506,0.4916,0.9696,1,0.8934,0.8448,0.726,0.3456,-0.0442,-0.041,-0.1842,-0.2542,-0.2512,-0.1538,-0.1994,-0.2328,-0.038,0.175,0.376,0.4186,0.2542,0.029,0.0198,-0.0168,0.1934,0.2998,0.6682,0.6834,0.4824,0.3486,-0.4748,-0.2138,0.0346,0.5158,0.912,1,0.9246,0.5598,0.3208,0.0566,-0.1886,-0.1698,-0.2704,-0.261,-0.1164,-0.1352,-0.195,0.0314,0.0534,0.0378,0.0158,-0.0754,-0.2296,-0.2484,-0.2232,-0.3144,0.066,0.2452,0.2988,0.1384,0.0786,0.1636,-0.5218,-0.087,0.174,0.3478,0.5218,0.3478,0.3914,0.174,0.0434,0.0434,0.174,0.174,0.3044,0.4782,0.6086,0.7826,1,0.8696,0.7826,0.826,0.913,0.8696,0.7392,0.7392,0.7392,0.4348,0.4782,0.5218,0.4782,0.5218,0.6956,0.7392,-0.5652,-0.174,0.174,0.5218,0.8696,0.826,0.2608,0.2174,0.087,0.087,0.1304,0.174,0.3044,0.4348,0.6522,0.913,0.9566,1,0.913,0.826,1,1,0.9566,0.6086,0.4348,0.3478,0.3478,0.3914,0.3914,0.4782,0.6956,0.7826,-0.5238,-0.1428,-0.0476,0.1904,0.6904,1,0.9048,0.5952,0.6904,0.9048,0.9762,0.5,0.262,0.1904,0.0952,0.0952,0.0238,-0.0476,0.1428,0.238,0.5238,0.5476,0.4048,-0.0714,0.0952,-0.4286,-0.0238,0.0714,0.1666,0.4762,0.5,0.2142,-1,-1,-1,-1,-1,-1,-0.9272,-0.9664,-0.9706,-0.8892,-0.6306,0.3,0.6874,0.6566,0.7974,0.9698,0.6236,0.487,0.4716,0.377,0.2922,-0.1976,-0.8382,-0.8872,-0.9398,-0.9286,-0.9488,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9388,-0.9746,-0.9734,-0.842,-0.4074,0.567,0.809,0.5804,0.541,0.6926,0.8584,0.9236,0.8402,0.5414,0.1428,-0.338,-0.8804,-0.9288,-0.947,-0.9322,-0.9524,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9054,-0.89,-0.81,-0.6334,-0.7568,-0.6912,-0.8734,-0.9534,-0.9156,-0.9224,-0.9334,-0.94,-0.92,-0.8912,-0.92,-0.934,-0.8134,-0.6934,-0.48,-0.5768,-0.5334,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-0.8286,0.1714,1,1,1,-0.6286,-0.7142,-0.8572,-0.6858,0.9142,0.2286,-0.9714,-0.4858,0.1142,0.3714,0.2858,-0.6,-0.8572,-0.9142,0.3142,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.294,-0.3434,-0.335,-0.3446,-0.3578,-0.4186,-0.5044,-0.6232,-0.8748,-0.3952,-0.2134,0.0588,-0.5388,0.0664,0.7472,0.6642,0.6914,1,-0.0286,0.3904,0.6,0.5428,0.3524,0.3142,0.581,0.8476,1,0.9238,0.981,0.981,0.6762,0.638,0.619,0.7524,0.8858,0.8476,0.8476,0.8476,0.6762,0.5238,0.2,0.219,0.238,-0.0858,0.1048,0.162,-0.0286,-0.181,-0.1048,-0.4286,-0.4578,0.1446,0.9156,0.5302,-0.0964,0.0482,0.1686,0.506,1,0.482,0.9036,0.9036,0.2892,0.3132,0.1808,0.3494,0.4578,0.4458,0.506,0.7952,0.518,0.3734,-0.0602,-0.0722,-0.1446,-0.2168,-0.2892,-0.0722,-0.1446,-0.4096,-0.3012,-0.4578,0.0348,0.3838,0.6046,0.5466,0.221,0.2674,0.3954,0.7442,0.9186,0.814,0.8604,1,0.8024,0.721,0.779,0.8954,0.9534,0.907,0.8604,0.907,0.8372,0.7326,0.686,0.5814,0.5232,0.3954,0.1628,0.279,0.1744,0.1396,0.0116,-0.1744,0.5088,-1,-1,1,-1,-1,-1,-0.7334,-1,-0.4678,-0.371,0.0968,0.0968,0.3226,0.3548,0.1774,0.3064,0.4194,0.3226,0.4678,0.2258,0.387,0.5,0.4032,0.5162,0.3388,0.5484,0.5806,1,0.613,0.1452,0.3226,0.2904,0.129,0.113,0,0,0.0322,0.0484,-0.0646,-0.4354,'12'
-0.428,-0.0856,0.082,0.603,0.6722,0.6248,0.1366,0.071,0.0564,-0.0346,0.0784,0.1294,0.2204,0.388,0.7012,0.9818,1,0.9234,0.7596,0.836,0.9234,0.9052,0.7486,0.5082,0.377,0.3296,0.3078,0.388,0.49,0.632,0.7778,0.8106,-0.3834,-0.0548,0.1644,0.5984,0.7404,0.8864,0.3144,0.1562,0.0466,-0.0386,-0.075,0.1764,0.2778,0.4726,0.7972,0.927,1,0.5822,0.57,0.497,0.5172,0.7606,0.5132,0.1724,0.4158,0.067,0.0832,0.0588,0.0426,0.282,0.3104,0.3388,-0.4216,-0.138,0.1568,0.3384,0.8676,1,0.5842,0.4216,0.38,0.2136,0.2704,0.4328,0.6938,0.7882,0.8488,0.7052,0.4632,0.4366,0.38,0.4782,0.4896,0.448,0.3422,0.225,-0.0284,0.0548,-0.0056,0.138,0.2288,0.2892,0.4366,0.4594,-0.4802,-0.1224,0.0396,0.2656,0.8154,0.8456,1,0.7816,0.7176,0.7288,0.9246,0.8794,0.6874,0.5066,0.3522,0.2656,0.145,0.2504,0.3258,0.4576,0.5292,0.4576,0.1638,0.096,-0.0208,0.0208,0.0998,0.2278,0.4538,0.3522,0.2656,0.243,-0.5462,-0.1362,-0.0054,0.3068,0.6188,0.931,0.8584,1,0.9854,0.971,0.4482,0.303,0.1506,0.0164,-0.0598,-0.0708,-0.0454,0.078,0.1108,0.343,0.4156,0.401,0.1652,0.107,-0.049,0.0926,0.1252,0.401,0.452,0.3322,0.0598,0.009,-0.615,-0.123,0.0304,0.1908,0.8502,0.9216,0.9002,1,0.8716,0.4582,-0.0446,-0.009,-0.1764,-0.2762,-0.2406,-0.2478,-0.173,-0.0304,-0.0018,0.2156,0.255,0.1622,-0.1016,-0.1764,-0.1942,-0.0516,0.009,0.3512,0.4652,0.426,0.2228,0.1194,-0.4432,-0.2072,-0.1982,0.0066,0.7104,0.8664,1,0.8308,0.3986,0.1314,-0.2606,-0.2472,-0.4432,-0.4832,-0.4388,-0.3854,-0.3006,-0.2338,-0.0334,0.0112,-0.0556,-0.0602,-0.0334,-0.1804,-0.5278,-0.421,-0.568,-0.2516,0.1314,0.2116,-0.0868,0.0646,-0.3192,0.2766,0.234,0.5744,0.532,0.3192,0.4042,0.149,0.2766,0.149,0.234,0.2766,0.4042,0.617,0.6596,0.8298,0.9148,0.9148,0.8724,0.9574,0.8724,1,0.8724,0.7446,0.7022,0.6596,0.6596,0.7446,0.7872,0.9148,0.8724,0.9148,-0.5,-0.1364,0.2728,0.3636,0.7272,0.6818,0.1364,0.1364,0.0454,0.0454,0.0454,0.1818,0.1818,0.4546,0.6364,0.909,0.8182,0.8182,0.8182,0.8636,1,0.9546,0.591,0.4546,0.409,0.3182,0.3636,0.3182,0.591,0.6364,0.7728,0.8182,-0.494,-0.1326,0.0844,0.3012,0.8554,0.9036,1,0.6144,0.5662,0.518,0.8072,0.8554,0.8314,0.518,0.3494,0.229,0.1808,0.1326,0.2772,0.4458,0.3976,0.4458,0.1566,0.0602,0.012,0.012,0.0844,0.0844,0.4698,0.3494,0.2048,0.3494,-1,-1,-1,-1,-1,-0.9718,-0.979,-0.9762,-0.979,-0.9752,-0.4288,0.164,0.6718,0.6546,0.9122,0.9542,0.8072,0.4376,0.3896,0.178,-0.148,-0.553,-0.8492,-0.9282,-0.9104,-0.8906,-0.7862,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.984,-0.9864,-0.9824,-0.983,-0.9652,-0.4026,0.4082,0.3052,0.2362,0.3202,0.5082,0.622,0.7436,0.6062,0.2808,-0.2884,-0.7046,-0.9304,-0.9604,-0.9536,-0.9452,-0.9166,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.903,-0.8468,-0.88,-0.7,-0.6268,-0.8,-0.725,-0.82,-0.8676,-0.7626,-0.68,-0.665,-0.6776,-0.6734,-0.6668,-0.6824,-0.68,-0.7634,-0.6568,-0.55,-0.7,-0.7734,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4,-1,-0.8858,-0.3142,1,1,1,-0.6286,-0.9142,-0.8572,-0.5428,0.6286,-0.2,-0.0858,-0.3714,-0.3428,0.5428,0.1714,-0.5714,-0.8572,-0.8286,-0.6,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.292,-0.3222,-0.3918,-0.462,-0.519,-0.552,-0.609,-0.7094,-0.9434,-0.5434,-0.2666,-0.0352,-0.2526,-0.0866,0.694,0.2714,0.4514,1,0.2062,0.481,0.7404,0.5572,0.3436,0.4504,0.603,0.832,1,0.939,1,0.9542,0.7252,0.71,0.832,0.8932,0.9084,0.939,0.9084,0.832,0.6336,0.4046,0.1146,-0.0076,0.1146,0.252,0.2824,0.1756,0.0688,0.0382,-0.1298,-0.2824,-0.4634,0.3984,0.8048,0.2196,-0.1544,-0.0894,0.057,0.6586,1,0.5284,0.9512,0.8048,0.2032,0.2358,0.4472,0.691,0.5284,0.7236,0.6422,0.6586,0.3008,-0.057,-0.1056,-0.3008,-0.2682,-0.1056,0.1382,0.0244,-0.2682,-0.1382,-0.252,-0.4308,0.0096,0.2572,0.7904,0.3142,0.1238,0.2572,0.4666,0.7904,0.981,0.9048,0.962,1,0.7524,0.6762,0.7524,0.8858,0.8666,0.7904,0.8666,0.8286,0.7524,0.562,0.3142,0.0858,0.3142,0.3334,0.4666,0.4476,0.1428,0.0096,-0.0666,-0.7142,1,-1,-1,1,-1,-1,-0.8,-0.8,1,-0.0204,-0.0612,-0.2654,0.3266,0.5102,0.5102,0.7142,0.4286,0.449,0.449,0.551,0.5714,0.6938,0.5102,0.5714,0.8164,1,0.8368,0.9184,0.8776,0.8164,0.5714,0.4898,0.2654,0,0.3674,0.1428,0.2858,0.1224,0.0204,-0.0612,-0.2654,'12'
-0.3396,-0.0278,0.3982,0.466,0.5648,0.3704,0.1296,-0.0308,-0.071,-0.321,-0.4876,-0.3642,-0.2314,-0.0618,0.0402,0.247,0.5834,0.7254,1,0.9228,0.8518,0.9476,0.8888,0.8364,0.679,0.5124,0.5308,0.5278,0.571,0.6666,0.8672,0.8612,-0.3502,-0.0432,0.386,0.4308,0.535,0.6752,0.5052,0.1744,0.1208,-0.1028,-0.2102,-0.0402,0.1236,0.3354,0.4694,0.8302,0.9494,1,0.9494,0.854,0.8778,0.8838,0.8242,0.8152,0.4724,0.538,0.4844,0.4218,0.681,0.7378,0.7974,0.9076,-0.3606,-0.1394,0.2272,0.3788,0.8788,1,0.7424,0.5364,0.4666,0.397,0.597,0.794,0.897,0.9636,0.8424,0.806,0.6636,0.7454,0.7242,0.6546,0.6122,0.6182,0.4848,0.2788,0.2848,0.2454,0.3152,0.4212,0.6848,0.8122,0.897,0.8334,-0.366,0.1124,0.2934,0.3334,0.3478,0.4928,0.6486,0.808,0.855,1,0.9276,0.7608,0.4602,0.384,0.4602,0.576,0.7754,0.895,0.866,0.8406,0.7934,0.7428,0.395,-0.0472,-0.0834,0.0834,0.4094,0.5144,0.6486,0.674,0.6594,0.674,-0.3636,0.2108,0.3224,0.3182,-0.4298,0.1818,0.467,0.6404,0.9132,0.9628,0.7272,0.4504,0.128,0.1364,0.4834,0.6404,0.8926,0.9628,0.9298,0.8512,0.9132,1,0.6528,0.2148,-0.1612,0.0206,0.4256,0.281,0.2314,0.4546,0.7314,0.8966,0.0734,0.5592,0.6358,0.3418,-0.8914,-0.067,0.0926,0.1246,0.5464,0.7892,0.6806,0.3674,0.099,-0.0096,0.4696,0.8084,1,0.8084,0.7124,0.4952,0.6038,0.8274,0.5336,-0.2012,-0.4888,0.0544,0.1374,-0.099,-0.3036,-0.2972,-0.016,0.0798,0.5,1,0.4278,-0.2892,-0.8132,-0.5,-0.1808,0.018,0.1386,0.2832,0.265,0.3012,0.1868,-0.3554,0.4096,0.3374,0.8374,0.8976,0.8012,0.6024,0.4036,0.1868,0.0362,-0.3374,-0.265,0.1686,0.1988,-0.7048,-0.5482,-0.3614,-0.229,0.3916,-0.3778,0.1112,0.2888,0.3334,0.4666,0.3778,0.0222,-0.0222,-0.1556,-0.3334,-0.4222,-0.2888,-0.1556,-0.0222,0.1112,0.2444,0.5556,0.7778,0.9112,0.9556,0.9112,1,1,0.8666,0.7334,0.5556,0.5112,0.5112,0.5556,0.6888,0.7778,0.8222,-0.35,-0.15,0.4,0.5,0.55,0.35,0,-0.1,-0.15,-0.5,-0.4,-0.45,-0.3,-0.15,0,0.15,0.4,0.8,0.85,0.9,0.9,0.75,1,0.85,0.65,0.65,0.4,0.7,0.55,0.5,1,0.7,-0.4444,0,0.1666,0.3612,0.6944,0.8056,0.7222,0.6666,0.75,1,0.9722,0.8334,0.5556,0.2778,0.3612,0.5,0.6112,0.7222,0.7222,0.6944,0.5278,0.3334,0.1112,-0.25,-0.0278,0.0556,0.3334,0.6666,0.8334,0.7778,0.6666,0.4444,-1,-1,-1,-1,-1,-0.8974,-0.9812,-0.9866,-0.9764,-0.6636,-0.298,0.3904,0.7044,0.7112,0.9006,0.7606,0.0486,-0.3248,-0.5016,-0.5202,-0.6396,-0.7414,-0.8142,-0.8904,-0.9182,-0.8696,-0.8448,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9114,-0.987,-0.9896,-0.9848,-0.402,-0.3352,0.1912,0.2592,0.5042,0.7386,0.7768,-0.0052,-0.4872,-0.6308,-0.7434,-0.8478,-0.89,-0.921,-0.9474,-0.9496,-0.9282,-0.925,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7768,-0.7734,-0.88,-0.9268,-0.4468,-0.5934,-0.666,-0.526,-0.478,-0.6146,-0.6328,-0.6346,-0.5964,-0.5782,-0.7364,-0.8382,-0.891,-0.8734,-0.6734,-0.45,-0.4934,-0.83,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.1142,0.2,-1,1,1,1,1,-0.9142,-0.8,-0.8572,-0.3714,0.3142,-0.8858,-0.4,0.5714,-0.2286,-0.8858,-0.7714,-0.8572,-0.8,-0.8,-0.6858,-1,-1,-1,-1,-1,-1,0.7682,0.7808,0.789,0.7956,0.8116,0.8384,0.8774,0.9646,1,0.7302,0.5368,0.5282,0.5096,0.493,0.4662,0.421,0.3014,-0.019,-0.4338,-0.488,-0.2,0.2706,-0.1686,-0.1834,0.1172,0.2446,0.3066,1,-0.0654,0.3178,0.3832,0.1122,0.056,-0.0468,-0.0468,0.187,0.6822,0.8786,0.8412,0.9532,0.8504,0.6356,0.7476,0.9252,1,0.9626,0.8412,0.7196,0.1588,0.0748,-0.187,0.056,0.1776,0.3272,0.2524,0.0748,-0.1962,-0.0094,-0.028,-0.3272,0.2308,0.5,0.5674,0.2692,0.1058,-0.048,0.0384,0.298,0.7692,0.9904,0.9712,1,0.8654,0.673,0.7116,0.9616,0.9712,0.8558,0.702,0.625,0.1634,-0.0288,-0.202,0.1346,0.125,0.3366,0.2404,-0.048,-0.0866,-0.2404,-0.2116,-0.3366,0.174,0.5826,0.6696,0.3914,0.1566,0,0.0434,0.2608,0.6696,1,0.8782,0.9566,0.7478,0.4608,0.5392,0.713,0.713,0.8086,0.6608,0.4,0.1914,0.0086,-0.1392,0.113,0.0608,0.313,0.113,0.0522,-0.0522,0.0956,0.1478,-0.0522,0.713,-1,-1,1,-1,-1,-0.6,-0.6,-1,-0.2754,0.2464,0.174,0.3188,0.2464,0.4928,0.4782,0.8116,1,0.884,0.9856,0.5942,0.4928,0.6086,0.2464,0.6232,0.6232,0.4782,0.4202,0.5652,0.4782,0.0724,0.4202,0.4348,0.4492,0.2898,0.1594,0.2174,0.2028,0.0144,0.3188,0.1014,'13'
-0.3678,-0.0904,0.378,0.3412,0.4414,0.2442,0.1506,-0.077,-0.02,-0.1506,-0.572,-0.3278,-0.1872,-0.0836,0.1138,0.2676,0.4482,0.8362,0.98,1,0.8696,0.883,0.9866,0.8696,0.592,0.5418,0.495,0.5552,0.572,0.806,0.8394,0.816,-0.3412,-0.0568,0.3914,0.378,0.5484,0.408,0.3512,0.1372,0.1338,0.0702,-0.2976,-0.0402,0.0368,0.1872,0.4348,0.6422,0.7726,1,0.923,0.8228,0.7926,0.7424,0.8762,0.6488,0.602,0.5284,0.418,0.3612,0.4984,0.8128,0.7792,0.776,-0.3646,-0.0902,0.3194,0.4028,0.5208,0.8056,0.6424,0.4166,0.3056,0.1562,0.1006,0.3056,0.5174,0.7848,0.8716,1,0.9062,0.6528,0.6702,0.5902,0.5244,0.6666,0.6666,0.4444,0.3298,0.2778,0.257,0.4098,0.4792,0.6424,0.809,0.7604,-0.4098,-0.007,0.2792,0.4276,0.9152,0.9434,0.7562,0.583,0.622,0.6432,0.894,1,0.947,0.901,0.6432,0.6114,0.6396,0.7208,0.7244,0.6008,0.4488,0.516,0.4594,0.2226,0.1554,0.3004,0.3534,0.5548,0.7138,0.742,0.7174,0.5972,-0.3318,0.2402,0.4004,0.2678,-0.1534,-0.1304,0.199,0.6064,0.849,0.881,0.6934,0.5378,0.1946,-0.048,0.2494,0.4782,0.73,1,0.936,0.6888,0.817,0.73,0.5058,-0.2174,-0.1534,0.222,0.2768,0.2356,0.199,0.4324,0.6064,0.643,-0.2698,0.2328,0.3968,0.2222,-0.492,0.074,0.3968,0.4814,0.762,0.9524,0.7196,0.217,0.053,-0.1058,0.2328,0.3968,0.8678,1,0.7354,0.4708,0.5608,0.4868,0.3386,-0.1482,0.0212,0.3334,0.3122,-0.217,-0.2064,0.2592,0.4498,0.5396,0.6576,1,0.589,0.0684,-0.5274,-0.1028,0.0684,0.185,0.452,0.4384,0.3424,0.1302,-0.1302,-0.2466,-0.1438,0.3082,0.637,0.7054,0.589,0.4726,0.4658,0.178,-0.4246,-0.3698,0.0616,0.1164,-0.137,-0.4794,-0.6576,-0.4794,0.0958,0.1028,-0.2888,-0.0222,0.2888,0.3778,0.4222,0.1556,-0.0666,-0.2,-0.1556,-0.4222,-0.6888,-0.4666,-0.2888,-0.3334,-0.0222,0.1112,0.3778,0.5556,1,0.8666,0.7334,0.9112,0.8222,0.9112,0.4222,0.3778,0.4666,0.5112,0.5556,0.6888,0.9112,0.7334,-0.5218,-0.174,0.2174,0.2608,0.2608,0.174,0,-0.1304,-0.087,-0.3044,-0.5218,-0.3914,-0.2174,0,0.087,0.2608,0.5218,0.826,0.9566,0.9566,0.913,0.913,1,0.9566,0.6522,0.6522,0.5218,0.5652,0.6086,0.7392,0.7826,0.7392,-0.4286,-0.091,0.091,0.2728,0.7142,0.6884,0.5064,0.4286,0.5584,0.8962,1,0.922,0.4286,0.1428,0.3506,0.2468,0.5584,0.6104,0.6884,0.4026,0.4286,0.2728,0.013,-0.091,-0.2988,0.065,0.2468,0.5064,0.5584,0.4286,0.4806,0.3766,-1,-1,-1,-1,-1,-1,-1,-0.9834,-0.9864,-0.6216,-0.6366,0.3186,0.755,0.8734,0.7708,0.9624,0.74,0.02,-0.3954,-0.5778,-0.5356,-0.6902,-0.8274,-0.8832,-0.8356,-0.8356,-0.8318,-0.8636,-0.8636,-0.905,-0.8546,-0.8974,-0.911,-1,-1,-1,-1,-1,-1,-1,-0.9868,-0.9882,-0.038,-0.7062,0.4384,0.4096,0.5276,0.6536,0.8208,0.6952,-0.153,-0.5864,-0.714,-0.747,-0.8738,-0.9266,-0.9434,-0.932,-0.9304,-0.93,-0.9382,-0.94,-0.9502,-0.9358,-0.9482,-0.9574,-1,-1,-1,-1,-1,-1,-1,-0.8268,-0.8868,-0.4568,-0.5034,-0.3756,-0.389,-0.3178,-0.4978,-0.56,-0.4912,-0.5356,-0.6312,-0.67,-0.828,-0.924,-0.8468,-0.7268,-0.8468,-0.8734,-0.7434,-0.84,-0.84,-0.6868,-0.78,-0.58,-0.7568,-1,-1,-1,-1,-1,-1,-1,-0.9714,1,1,1,1,-0.8858,-0.9142,-0.9142,-0.7142,0.4572,0.9428,-0.2572,-0.7714,0.3714,0.0286,-0.9142,-1,-0.9714,-1,-1,-1,-1,-1,-1,-0.9714,-1,0.7632,0.7508,0.7582,0.7592,0.773,0.7816,0.814,0.888,1,0.774,0.4732,0.46,0.4606,0.457,0.4388,0.4068,0.339,0.0956,-0.4082,-0.472,-0.3334,0.0824,-0.8264,-0.0994,0.574,0.619,0.4938,1,0.0096,0.3076,0.4038,0.1634,0.1826,-0.0962,0.125,0.1538,0.6058,0.9424,0.875,1,0.827,0.6924,0.8558,0.9712,0.9712,0.923,0.875,0.6346,0.5,0.327,0.3846,0.298,0.1826,0.2692,0.173,0.125,0.173,0.1826,0.0384,-0.1924,-0.2272,0.303,0.3484,0.0304,-0.0454,-0.197,-0.1212,-0.1818,0.4394,1,0.803,0.8182,0.7424,0.3788,0.6666,0.7272,0.7576,0.8636,0.6818,0.6818,0.409,0.2878,0.1212,0.091,0.1212,0,-0.091,-0.197,-0.1364,-0.2576,-0.0758,-0.394,0.5148,0.6686,0.8224,0.4674,0.29,-0.0296,0.29,0.432,0.6804,1,0.9054,0.9882,0.7752,0.5858,0.6804,0.9054,0.7988,0.7042,0.645,0.432,0.1952,-0.077,0.3136,0.29,0.1242,-0.0414,0.1598,-0.0532,-0.1834,-0.29,-0.1834,-0.4792,1,-1,-1,1,-1,-1,-0.6,-0.6666,-1,-0.1034,0.1206,0.138,0.2932,0.2758,0.2932,0.5172,0.4482,0.7586,0.6552,0.8104,0.7242,1,0.8966,0.4138,0.6724,0.7414,0.2242,0.569,0.4828,0.6552,0.7414,0.8966,0.4656,0.3104,0.2932,0.2068,0.3794,0.2932,0.1896,0.1034,-0.4138,'13'
-0.3936,-0.0744,0.4468,0.375,0.3936,0.2526,0.149,-0.0026,-0.0904,-0.2102,-0.3804,-0.1702,-0.0798,0.0266,0.274,0.391,0.7208,0.976,0.9708,0.9282,0.8856,0.992,0.9336,0.8538,0.7074,0.657,0.625,0.7074,0.7102,0.8324,1,0.9414,-0.3968,-0.1018,0.3838,0.342,0.4334,0.363,0.2924,0.1096,0.06,-0.0262,-0.3054,-0.081,0.0234,0.1254,0.3682,0.5796,0.6658,1,0.8798,0.786,0.718,0.7416,0.8302,0.7468,0.6476,0.543,0.4882,0.53,0.6058,0.6736,0.7416,0.812,-0.3768,-0.0742,0.3442,0.4244,0.5548,0.7538,0.5044,0.3354,0.2612,0.0652,0.0118,0.1364,0.3026,0.5164,0.6796,0.905,1,0.9554,0.7804,0.6112,0.5786,0.6588,0.7834,0.6944,0.4926,0.4244,0.3916,0.368,0.4986,0.5846,0.733,0.7744,-0.5128,-0.1486,-0.0014,0.1994,0.5582,0.5582,0.3842,0.1566,0.1888,0.1406,0.0174,0.2102,0.3414,0.6278,1,0.9866,0.6868,0.6492,0.6064,0.435,0.3708,0.4564,0.4698,0.4512,0.2182,0.1218,0.2048,0.1138,0.1808,0.344,0.4672,0.5636,-0.3122,0.414,0.6306,0.673,0.1592,0.2994,0.2782,-0.1592,0.3122,0.2314,-0.4268,-0.053,0.5202,0.6858,0.7494,0.7452,0.7154,0.949,1,0.9618,0.8684,0.8938,0.758,0.3164,-0.0022,-0.363,-0.6306,-0.758,-0.7664,-0.3122,0.414,0.673,0.1808,0.743,0.8868,0.8692,0.3856,0.1938,0.2288,0.0196,0.2984,0.281,-0.1286,-0.5904,0.2114,0.5512,0.7472,0.7386,0.7212,0.9216,0.939,0.9738,0.9956,1,0.7298,0.4422,-0.1808,-0.573,-0.7212,-0.878,-0.9128,-0.2984,0.3202,0.5338,0.6444,1,0.2544,0.0618,-0.1754,0.0814,0.116,-0.032,-0.121,-0.1062,-0.5556,-0.5604,-0.279,-0.0222,0.353,0.447,0.605,0.5506,0.8074,0.7186,0.4864,0.437,0.2592,0.0124,-0.3086,-0.368,-0.8518,-0.7086,-0.6988,-0.4568,-0.0172,0.2494,-0.4634,0.0732,0.4146,0.3658,0.317,0.2682,-0.0732,-0.2682,-0.4634,-0.561,-0.5122,-0.4146,-0.317,-0.1708,0.0244,0.2682,0.561,0.9024,0.9512,0.8048,0.8048,0.8536,0.9024,0.8536,0.5122,0.4634,0.4146,0.561,0.561,0.8536,1,1,-0.5,-0.0416,0.25,0.0416,0.2084,0.0834,-0.0416,-0.1666,-0.1666,-0.25,-0.375,-0.2084,-0.0834,0.0416,0.2084,0.375,0.6666,0.6666,1,0.7916,0.6666,0.875,0.8334,0.875,0.625,0.5,0.5,0.5834,0.625,0.8334,0.9584,0.875,-0.4754,0.0164,0.3114,0.4426,-0.0164,0.3114,0.3442,-0.0164,0.3442,0.1148,-0.1476,0.1804,0.705,1,0.9672,0.836,0.8032,0.9672,0.9344,0.7704,0.836,0.7704,0.3442,-0.0492,0.0164,-0.0492,-0.3442,-0.0492,0.0164,0.3114,0.7704,0.8688,-1,-1,-1,-1,-1,-1,-0.9834,-0.9844,-0.981,-0.9834,-0.6352,0.5042,0.8704,0.8746,0.7868,0.9442,0.4964,-0.0092,-0.3132,-0.375,-0.4862,-0.694,-0.78,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.986,-0.987,-0.9874,-0.9882,-0.7332,0.7256,0.6676,0.383,0.4952,0.5572,0.239,-0.2202,-0.6984,-0.736,-0.7956,-0.893,-0.9214,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8368,-0.7668,-0.68,-0.7334,-0.6734,-0.4,-0.4746,-0.4292,-0.5528,-0.5564,-0.5364,-0.4638,-0.7274,-0.8038,-0.8918,-0.9518,-0.9134,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,-0.9428,-1,1,1,1,-1,-1,-1,-1,-0.2,1,1,-0.9428,-0.0572,-0.2858,-0.1142,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.7726,0.7778,0.7878,0.7916,0.7994,0.8112,0.8336,0.8922,0.9978,0.6496,0.4506,0.4558,0.4496,0.4406,0.4218,0.391,0.3534,0.2444,-0.1278,-0.459,-0.2,0.3294,-0.7088,-0.2662,0.8162,0.9802,0.9942,1,-0.2,-0.091,0.1272,-0.1636,0.091,-0.0182,0.1272,0.4182,0.6,0.8546,0.8182,0.891,0.7818,0.709,0.7818,0.8546,1,1,0.7818,0.5636,0.091,-0.1636,-0.2728,-0.0546,0.0182,-0.0546,0.091,0.0182,0.0546,-0.0182,0.0182,-0.491,0.4314,0.549,0.549,0.451,0.353,0.1372,0.2746,0.4706,0.7254,1,0.8628,0.9804,0.804,0.6862,0.745,0.8628,1,0.902,0.7254,0.451,0,-0.1568,-0.0784,0.0784,-0.0196,-0.255,-0.0392,-0.098,-0.1568,-0.098,0,-0.647,0.3492,0.6508,0.635,0.4286,0.254,0.0476,0.2698,0.4762,0.746,0.9682,0.9206,0.9366,0.7936,0.6666,0.8254,1,0.9842,0.8254,0.7936,0.5396,0.0158,-0.1112,-0.0318,0.0794,-0.238,-0.2222,0.0794,0.0318,0.0158,0.0476,-0.0476,-0.492,1,-1,-1,1,-1,-1,-1,-0.8334,-1,0.647,0.7648,0.479,0.647,0.6806,0.4454,0.5462,0.8824,0.8656,0.8488,0.8488,0.6806,0.647,0.2268,-0.1092,0.6638,1,0.731,0.647,0.7648,0.6806,0.2774,0.3614,0.4286,0.2606,0.2774,0.2436,0.2436,0.1428,0.126,0.1932,-0.563,'14'
-0.4256,-0.0562,0.1976,0.4488,0.4286,0.2352,-0.0476,-0.2324,-0.2236,-0.5758,-0.5614,-0.5094,-0.3882,-0.1746,-0.0188,0.0678,0.293,0.619,0.9884,1,0.8644,0.8816,0.9076,0.8558,0.622,0.4776,0.3766,0.4372,0.495,0.5382,0.671,0.7864,-0.408,-0.1416,0.2662,0.493,0.5184,0.4816,0.1814,0.0878,0,-0.3428,-0.3796,-0.306,-0.2238,-0.0254,0.0906,0.3654,0.5524,0.7988,0.9604,1,0.7536,0.8414,0.8216,0.881,0.5808,0.4788,0.4334,0.4504,0.592,0.558,0.6148,0.8158,-0.424,-0.192,0.126,0.384,0.7594,0.8138,0.447,0.2866,0.1978,0.1806,-0.0172,0.086,0.2894,0.4728,0.745,0.9656,1,0.894,0.7766,0.6532,0.5014,0.6992,0.7564,0.6992,0.5072,0.3094,0.2922,0.3124,0.4412,0.4986,0.6704,0.7852,-0.5176,-0.1464,0,0.1056,0.42,0.672,0.561,0.3414,0.2846,0.1762,0.1898,0.317,0.5556,0.9132,1,0.9052,0.6964,0.6476,0.6178,0.4418,0.2682,0.5366,0.4932,0.3956,0.187,0.0216,0.122,0.1274,0.3036,0.355,0.4418,0.5772,-0.4444,0.1704,0.374,0.4334,0.4148,0.4666,0.3074,0.0926,0.1556,-0.0222,-0.0666,0.3038,0.774,0.8592,0.826,0.9334,0.937,0.9556,1,0.774,0.7444,0.7852,0.6666,0.2556,0.0704,-0.1296,-0.0778,-0.1296,0.0704,0.4112,0.8,0.9592,0.3434,0.9018,0.9132,0.6754,0.415,0.3208,0.385,0.1132,0.2226,0.1548,-0.3094,-0.0566,0.2868,0.3208,0.283,0.6416,0.7584,0.966,1,0.9358,0.883,0.883,0.7774,0.0114,-0.1208,-0.3094,-0.5472,-0.8906,-0.6,-0.1774,0.5246,0.6378,0.5718,1,0.2682,-0.1436,-0.29,-0.2196,-0.355,-0.2792,-0.6694,-0.756,-0.7832,-0.3766,-0.252,-0.0352,0.4634,0.3712,0.328,0.1762,0.4742,0.6748,0.3496,0.496,0.5502,0.1112,-0.3062,-0.317,-0.5664,-0.7886,-0.7506,-0.3984,0.3822,0.4906,-0.3846,0.3846,0.3846,0.3334,0.4872,0.2308,0.1794,0.0256,-0.077,-0.2308,-0.282,-0.2308,0.0256,0.077,0.282,0.3334,0.5898,0.6924,0.8974,1,0.8974,0.8462,0.8974,0.7436,0.641,0.5898,0.3846,0.3846,0.282,0.3846,0.5898,0.4872,-0.5454,-0.091,0.2272,0.409,0.3636,0.2728,0.0454,-0.2272,-0.2728,-0.409,-0.5454,-0.5,-0.3182,-0.1818,0,0.1364,0.409,0.6818,1,0.9546,0.8636,0.909,0.909,0.8182,0.6364,0.5,0.4546,0.5,0.591,0.7272,0.8182,0.8182,-0.5082,0.0492,0.246,0.3114,0.377,0.4098,0.1476,-0.0492,0.0164,-0.4098,-0.1804,0.2132,0.705,0.9344,0.7378,0.836,0.836,1,1,0.705,0.4098,0.4426,0.246,-0.082,-0.4098,-0.8032,-0.0164,-0.2786,0.1148,0.3114,0.7704,0.9016,-1,-1,-1,-1,-1,-1,-1,-0.9766,-0.981,-0.8516,-0.5976,0.144,0.8006,0.9636,0.9706,0.4866,-0.0398,-0.1222,-0.3764,-0.4918,-0.6062,-0.7944,-0.9064,-0.9106,-0.9184,-0.8994,-0.8726,-0.9002,-0.8474,-0.8396,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9832,-0.9842,-0.8968,-0.6982,0.1662,0.7512,0.7,0.9388,0.6674,0.203,-0.0634,-0.5664,-0.7474,-0.8274,-0.9104,-0.9508,-0.9512,-0.9574,-0.9512,-0.9426,-0.9552,-0.9356,-0.9328,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.9468,-0.7668,-0.5468,-0.422,-0.4256,-0.3874,-0.491,-0.5364,-0.5982,-0.5346,-0.5182,-0.7492,-0.8584,-0.8518,-0.68,-0.86,-0.7168,-0.76,-0.7268,-0.91,-0.8568,-0.9168,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6286,0.3428,1,1,1,-0.9428,-1,-0.9714,-0.5714,-0.6572,0.8572,1,-0.0858,-0.3714,-0.8858,-0.8858,-1,-1,-1,-0.9714,-1,-1,-1,-1,-1,-1,0.6384,0.6578,0.678,0.6972,0.7248,0.7582,0.8064,0.891,1,0.6692,0.4654,0.4762,0.491,0.4944,0.5172,0.5224,0.4976,0.3498,-0.1218,-0.493,-0.2,0.3294,-0.6346,-0.5252,0.1122,0.4054,0.4108,0.05,0.2968,0.3594,0.3282,0.375,0.1876,-0.0938,0.1876,0.3126,0.2344,1,0.875,0.9376,0.6406,0.6562,0.5624,0.8126,0.7032,0.4062,0.3594,0.4218,0.4218,0.1094,0.1406,0.0782,0.0468,0.0312,0.0624,0.0624,0.0156,0.0782,0.0156,-0.3282,0.125,0.5,0.5312,0.2396,-0.0624,-0.1666,-0.1042,0.0624,0.3542,1,0.8438,0.9688,0.7292,0.448,0.5208,0.5416,0.5938,0.625,0.427,0.302,0.2916,0.0938,-0.2812,-0.0416,-0.1146,-0.1458,-0.0104,-0.1666,-0.2084,-0.2812,-0.25,-0.4376,0.066,0.472,0.5026,0.1168,-0.0862,-0.2386,-0.1066,0.1066,0.3908,1,0.8376,0.7462,0.6346,0.4214,0.4416,0.6244,0.594,0.5634,0.594,0.5228,0.33,0.1472,-0.2182,-0.2182,-0.1878,-0.2792,-0.0762,-0.0152,-0.0558,-0.269,-0.0558,-0.2994,-0.4534,-1,-1,1,-1,-1,-1,-0.6334,-1,0.2978,0.1702,0.0638,-0.1064,-0.0212,-0.2554,0.3404,0.5532,0.6382,1,0.2554,0.617,0.234,0.1276,0.1276,0.8936,0.8298,0.4468,0.0426,0.0852,0.5744,0.532,0.2554,0.0638,-0.1276,-0.0212,-0.0426,0.2128,-0.0638,-0.3404,-0.149,-0.7234,'14'
-0.4296,-0.1936,0.1972,0.4226,0.8556,1,0.7112,0.4578,0.4894,0.5634,0.9578,0.9226,0.574,0.3274,0.2112,0.2394,0.0492,0.1374,0.2394,0.2958,0.5564,0.426,0.0458,-0.1056,-0.074,-0.1162,-0.1268,0.0422,0.2992,0.3346,0.4894,0.2816,-0.474,-0.1906,0.1338,0.3732,0.7922,0.9308,0.5654,0.4772,0.5182,0.5654,1,0.9212,0.2504,0.1308,0.052,0.0488,-0.0992,0.0646,0.1056,0.326,0.5402,0.3418,-0.0426,0.0204,-0.2062,-0.1496,-0.1024,-0.0678,0.2188,0.3196,0.307,0.1716,-0.4968,-0.0954,0.1842,0.4244,0.931,1,0.454,0.4408,0.5822,0.625,0.8224,0.6448,0.4014,-0.069,0,-0.0624,-0.2236,-0.0198,0.0098,0.227,0.3948,0.2828,-0.056,-0.1776,-0.1644,-0.3388,-0.1644,-0.079,0.0032,0.2796,0.2862,0.1514,-0.4796,0.0336,0.2176,0.5858,1,0.9256,0.4442,0.4514,0.7274,0.961,0.862,0.4266,0.1682,-0.1044,-0.1328,-0.1788,-0.2318,-0.2036,-0.0408,0.1716,0.3628,0.3664,0.0054,-0.2248,-0.2176,-0.3592,-0.1894,-0.0584,0.2424,0.331,0.384,0.1964,-0.4768,0.1228,0.5936,0.7424,0.9034,0.501,0.2998,0.6498,1,0.8994,0.2354,-0.1106,-0.2878,-0.3038,-0.3158,-0.324,-0.3078,-0.3118,-0.2234,0.0866,0.3642,0.3602,0.0302,-0.2516,-0.2112,-0.3844,-0.2152,-0.151,0.2676,0.513,0.4728,0.2796,-0.4496,0.0596,0.789,1,0.7844,0.3578,0.8348,0.9634,0.5688,-0.0092,-0.4036,-0.6468,-0.5,-0.5734,-0.6146,-0.7478,-0.9496,-0.8348,-0.6698,-0.5872,-0.2248,-0.055,-0.4358,-0.5322,-0.711,-0.5458,-0.4588,-0.4816,0,0.1376,0.2614,0.1698,-0.4278,0.1394,0.7788,1,0.5818,0.827,0.9376,0.4904,-0.077,-0.4664,-0.6154,-0.6826,-0.4856,-0.4856,-0.6058,-0.5722,-0.4952,-0.6298,-0.7356,-0.6876,-0.2596,-0.0576,-0.375,-0.5674,-0.5,-0.6106,-0.5096,-0.548,-0.3174,-0.0384,0.0818,-0.0432,-0.4546,-0.2272,0.1364,0.3636,0.7728,0.8636,0.7728,0.3636,0.409,0.591,0.909,1,0.8636,0.4546,0.3636,0.3182,0.2272,0.3182,0.4546,0.591,0.6364,0.409,-0.0454,-0.1818,-0.3182,-0.3636,-0.3636,-0.2728,0,0.2272,0.1818,0.1364,-0.5,-0.0454,0.1818,0.2728,0.8636,1,0.409,0.5,0.5,0.5,0.7272,0.4546,0.6818,0.3636,0.1818,0.2272,0.1818,0,0.2728,0.3636,0.4546,0.1818,0.091,-0.0454,-0.1364,0,0,0,0.5454,0.409,0.5,0.3182,-0.5362,0.1304,0.6522,0.913,0.971,0.3914,0.2174,0.913,1,0.7682,0.0724,-0.0724,-0.3914,-0.4202,-0.4202,-0.4492,-0.3624,-0.3044,-0.4202,-0.0434,0.4202,0.3624,-0.1594,-0.1884,-0.2174,-0.3914,-0.3624,-0.1884,0.2754,0.5942,0.5942,0.3044,-1,-1,-1,-1,-1,-1,-0.9792,-0.9796,-0.9746,-0.9774,-0.868,0.4206,0.7162,0.8126,0.831,0.963,0.5312,-2e-04,-0.353,-0.483,-0.3548,-0.5792,-0.8736,-0.87,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9816,-0.9826,-0.975,-0.979,-0.9318,0.415,0.7472,0.9022,0.7668,0.7292,0.3432,-0.0894,-0.493,-0.6844,-0.6072,-0.7772,-0.9368,-0.9314,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9034,-0.8168,-0.8868,-0.7134,-0.63,-0.8126,-0.835,-0.76,-0.78,-0.7846,-0.8,-0.7934,-0.8734,-0.8778,-0.8978,-0.9068,-0.96,-0.99,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,-0.9428,-0.9142,-0.4572,1,1,-0.9428,-1,-0.8572,-1,-0.9714,-0.3714,1,0.6572,-0.3428,-0.0572,-0.2572,-0.1714,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-0.989,-0.9342,-0.9114,-0.8656,-0.5032,-0.2934,0.0236,-0.9528,-0.2584,0.4346,0.6714,0.6998,1,-0.11,0.2356,0.4974,1,0.7172,0.7486,0.5916,0.6336,0.979,0.7068,0.4974,0.2566,0.9058,0.5288,0.7906,0.5288,0.6754,0.1308,0.2042,0.4032,0.5916,0.644,0.487,0.3718,0.1518,0.3298,0.4554,0.4032,0.3822,-0.1518,-0.0262,-0.5602,-0.0882,0.2568,0.9616,0.9616,0.9234,0.7778,0.8774,0.8774,0.5862,0.6934,0.885,0.6476,1,0.6246,0.8698,0.9846,0.8314,0.6246,0.9234,0.9004,0.908,0.816,0.6934,0.6628,0.5708,0.6322,0.6934,0.6704,0.5172,0.341,0.318,-0.6934,0.2662,0.4062,0.3502,0.647,0.535,0.6526,0.6078,0.4678,0.591,0.4062,0.7142,0.6638,0.5966,0.6694,0.7592,0.8656,0.5966,0.4846,0.9832,0.8712,1,0.888,0.3222,0.3502,0.2156,0.2492,0.7536,0.7536,0.6302,0.311,0.0588,-0.255,-0.9872,1,-1,-1,-1,-1,-0.6,-1,-1,0.7614,1,0.89,0.9082,0.7432,0.4862,0.266,0.4678,0.578,0.523,0.3762,0.1744,0.4128,0.5964,0.7614,0.8532,0.8532,0.4496,0.1192,0.266,0.3762,0.3762,0.3394,0.266,0.211,0.3394,0.5964,0.1744,0.3762,-0.0276,-0.156,-0.4496,'15'
-0.3576,0.0728,0.2406,0.3386,0.8102,0.7974,0.8988,0.7056,0.5316,0.6266,0.8292,0.9556,1,0.9556,0.6646,0.5348,0.5474,0.5158,0.4716,0.6108,0.7564,0.8164,0.595,0.5412,0.4178,0.2848,0.3386,0.4968,0.4368,0.5792,0.7184,0.595,-0.31,0.0384,0.377,0.5654,0.8882,0.9106,1,0.6326,0.5654,0.5878,0.9808,0.9776,0.984,0.8146,0.6454,0.4472,0.3642,0.393,0.4314,0.4282,0.6294,0.7156,0.7924,0.409,0.3068,0.179,0.1884,0.1694,0.3834,0.6326,0.7156,0.4568,-0.3232,-0.037,0.4006,0.6902,0.8686,0.9428,0.899,0.5994,0.559,0.6262,0.8418,1,0.9798,0.5724,0.4344,0.3232,0.2626,0.2424,0.3098,0.4714,0.5556,0.6902,0.6398,0.4848,0.293,0.1986,0.2222,0.2896,0.4006,0.6094,0.7306,0.6532,-0.4592,-0.0122,0.338,0.6812,0.9098,0.993,0.688,0.4592,0.4628,0.747,1,0.9792,0.5736,0.4004,0.2928,0.1682,0.182,0.1578,0.2166,0.4108,0.5008,0.643,0.5148,0.3484,0.2582,0.0884,0.1058,0.2652,0.3344,0.5356,0.7088,0.5702,-0.5334,0.063,0.4592,0.8334,1,0.7074,0.4038,0.3666,0.6222,0.9296,0.9074,0.474,0.137,0.0556,-0.0704,-0.074,-0.0704,-0.037,-0.026,0.1926,0.5408,0.6038,0.563,0.2704,0.126,0.0186,0.1,0.2556,0.4482,0.5962,0.6074,0.437,-0.5488,-0.1282,0.6582,1,0.877,0.2136,0.2752,0.7676,0.8666,0.5692,0.0838,-0.1282,-0.2958,-0.2786,-0.2888,-0.4736,-0.3402,-0.3128,-0.2582,-0.2034,0.2992,0.5146,0.4324,0.0086,-0.0428,-0.0838,-0.0564,0.3982,0.5008,0.3676,0.0086,-0.0462,-0.4508,0.0984,0.8582,1,0.7666,0.7026,0.913,0.6796,0.2266,-0.2768,-0.5332,-0.5102,-0.4508,-0.492,-0.5286,-0.5424,-0.611,-0.611,-0.6614,-0.5378,-0.2586,0.1212,0.1716,-0.2448,-0.2906,-0.3502,-0.2494,-0.0664,-0.2448,-0.4004,-0.5424,-0.4782,-0.3,0.3,0.25,0.25,0.6,0.65,0.7,0.65,0.25,0.5,0.85,0.95,0.95,1,0.9,0.7,0.6,0.55,0.5,0.65,0.65,0.75,0.75,0.65,0.55,0.4,0.4,0.55,0.55,0.7,0.75,0.65,-0.451,-0.0588,0.1372,0.3726,0.7648,0.8432,0.7254,0.6862,0.4902,0.6078,0.6862,0.9216,1,0.7254,0.5686,0.4902,0.4902,0.4118,0.5294,0.6078,0.7648,0.7648,0.4118,0.451,0.2942,0.255,0.255,0.451,0.4902,0.7648,0.804,0.3726,-0.7074,-0.122,0.439,0.9756,1,0.5854,0.2196,0.1952,0.7318,1,0.8292,0.2926,-0.2926,-0.317,-0.317,-0.244,-0.1952,-0.1952,-0.2926,0,0.3658,0.5122,0.4146,0.0732,-0.122,-0.1952,-0.122,0.0488,0.2926,0.317,0.3658,0.2196,-1,-1,-1,-1,-1,-1,-1,-1,-0.987,-0.9814,-0.9168,0.5222,0.6038,0.8156,0.9806,0.9296,0.9354,0.6928,0.371,-0.0784,-0.4924,-0.5142,-0.8392,-0.9168,-0.9466,-0.9378,-0.8504,-0.8536,-0.8892,-0.9458,-0.9758,-0.9684,-0.9644,-1,-1,-1,-1,-1,-1,-1,-1,-0.9922,-0.9896,-0.9334,0.5246,0.1588,0.1356,0.1738,0.2798,0.2336,-0.001,-0.3674,-0.5886,-0.7866,-0.8178,-0.9338,-0.943,-0.9728,-0.9738,-0.947,-0.9474,-0.9594,-0.9728,-0.9812,-0.9782,-0.9782,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.78,-0.6356,-0.7378,-0.7046,-0.7578,-0.8068,-0.7446,-0.809,-0.8134,-0.8112,-0.829,-0.884,-0.8768,-0.8234,-0.6334,-0.6268,-0.8868,-0.8934,-0.81,-0.4134,-0.2834,-0.6134,-0.3534,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,0.4286,1,1,-0.8858,-0.9714,-1,-1,-0.9142,0.2,0.9714,1,0.3142,-0.6,-0.5142,-0.2858,-0.7428,-0.3428,-0.5428,-0.8572,-0.8572,-0.7428,-0.8572,-0.9142,-0.9714,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.53,-0.3866,0.0588,-0.8998,-0.313,1,0.5256,0.1672,1,-0.0968,0.2258,0.4838,0.613,0.6774,0.2904,0.4838,0.2904,0.6774,0.3548,0.8064,0.8064,0.871,1,0.871,1,0.871,0.871,0.871,0.871,0.871,0.613,0.3548,0.4194,0.3548,0.4194,0.4194,0.4194,0.2904,0.1612,0.0322,-0.0968,0.125,0.2084,0.7916,0.8542,0.5624,0.7084,0.7708,0.5,0.25,0.5208,0.6666,0.5208,0.5834,0.4376,0.6458,1,0.5624,0.7708,0.7916,0.6458,0.7084,0.5624,0.5208,0.3958,0.3124,0.2708,0.375,0.3958,0.1876,0.2708,0.0208,-0.875,0.122,0.2196,0.4634,0.3658,0.2926,0.7318,1,0.683,0.4878,0.5854,0.6098,0.5122,0.4878,0.3658,0.6098,0.8048,0.5122,0.7074,0.8292,0.7074,0.756,0.7804,0.7318,0.4634,0.7074,0.6586,0.5122,0.2926,0.2926,0.439,0.1952,-0.7074,1,-1,-1,1,-1,-1,-1,-0.8334,1,-0.5594,-0.2034,-0.017,0.0508,-0.1016,0.322,0.2712,0.6102,0.4068,0.3728,0.3898,0.5424,0.661,0.661,0.1694,0.4238,0.7966,0.4916,0.1694,0.5424,0.4406,0.6102,1,0.5084,0.2034,0.5594,0.4916,0.1016,0,-0.2204,0.0848,-0.017,'15'
-0.1316,0.3374,0.8724,1,0.5308,0.2634,0.0124,-0.1604,-0.214,-0.2922,-0.2016,-0.0534,0.0206,0.1728,0.2386,0.3456,0.535,0.6748,0.6996,0.893,0.963,0.9506,0.8806,0.8436,0.646,0.5514,0.5308,0.4898,0.6214,0.712,0.9176,0.93,-0.3836,0.0822,0.678,0.637,0.1952,0.072,0.0102,-0.137,-0.1506,-0.2158,-0.2054,-0.0102,0.0102,0.1302,0.3528,0.4246,0.5856,0.8356,0.863,0.9794,1,0.9692,0.9384,0.7602,0.6952,0.5172,0.5924,0.5754,0.6746,0.7294,0.7842,0.8802,-0.4342,0.1902,0.6326,0.5056,0.0992,0.0146,-0.1674,-0.2456,-0.2944,-0.3366,-0.2196,-0.1708,-0.1056,0.0178,0.1318,0.3106,0.4602,0.6098,0.8016,0.9772,0.9804,1,0.8536,0.7822,0.7366,0.5414,0.5284,0.5382,0.6552,0.6488,0.8048,0.8796,-0.511,0.205,0.4164,0.1294,0.022,-0.1294,-0.2586,-0.3974,-0.388,-0.4258,-0.3786,-0.2586,-0.1736,-0.0946,0.06,0.1892,0.325,0.552,0.735,0.9054,0.9906,1,0.981,0.8928,0.7602,0.6404,0.5584,0.489,0.593,0.5742,0.7382,0.8044,-0.5824,0.168,0.3156,0.077,-0.2464,-0.4348,-0.485,-0.482,-0.526,-0.5416,-0.5102,-0.3594,-0.3186,-0.3092,-0.1648,0.0486,0.1586,0.4254,0.5448,0.8178,1,0.9058,0.865,0.8996,0.8776,0.595,0.5572,0.5322,0.5196,0.5824,0.6892,0.8022,-0.5464,0.2336,0.347,0.1066,-0.3334,-0.3952,-0.519,-0.6014,-0.6598,-0.7422,-0.5704,-0.4398,-0.4468,-0.3642,-0.086,-0.0996,0.103,0.3264,0.519,0.8042,1,0.8866,0.969,0.9312,0.9038,0.567,0.6116,0.4468,0.5292,0.5704,0.6942,0.8556,-0.2386,0.151,0.0634,0.0284,-0.466,-0.558,-0.6236,-0.8162,-0.86,-0.7592,-0.7462,-0.733,-0.663,-0.7812,-0.6542,-0.488,-0.5142,0.0066,0.116,0.3916,0.768,0.9256,1,0.9124,0.7986,0.5754,0.2428,0.2778,0.256,0.081,0.4792,0.6936,0.1516,0.8182,0.6364,0.9394,0.697,0.2122,0.2122,-0.1516,-0.8182,-0.5152,-0.2122,-0.3334,-0.2728,-0.2728,-0.2728,0.0304,0.091,-0.091,0.5152,0.6364,0.8182,0.6364,1,0.8788,0.5758,0.4546,0.1516,0.2122,0.394,0.697,0.8182,0.8788,-0.2222,0.3334,0.6666,0.8888,0.4444,0.3334,-0.5,-0.3888,-0.3334,-0.7222,-0.5,-0.3334,-0.4444,-0.1112,-0.2222,-0.6112,0.1112,0.2778,0.2222,0.3334,1,0.9444,0.5556,0.5556,0.6112,0.3888,0.3888,0.3888,0.3334,0.6112,0.5,0.8888,-0.587,0.1522,0.2608,0.0652,-0.2826,-0.3696,-0.5218,-0.5652,-0.6086,-0.7392,-0.4782,-0.3478,-0.4348,-0.3478,-0.0652,-0.1086,0.1522,0.3478,0.5652,0.7608,1,0.7392,0.8914,0.8478,0.8478,0.5652,0.6086,0.413,0.5434,0.5434,0.674,0.8478,-1,-0.9802,-0.9732,-0.9832,-0.9788,-0.9782,-0.9828,-0.9382,-0.8654,-0.9068,-0.7408,0.5736,0.7464,0.601,0.4816,0.1974,-0.0516,-0.1848,-0.244,-0.2942,-0.399,-0.7626,-0.8308,-0.878,-0.927,-0.9342,-0.9514,-0.9554,-1,-1,-1,-1,-1,-1,-0.976,-0.9726,-0.9748,-0.9758,-0.9752,-0.9774,-0.935,-0.7716,-0.7564,-0.7028,0.2028,0.6884,0.9282,0.924,0.7422,0.6278,0.732,0.685,0.4208,-0.2284,-0.7962,-0.8688,-0.8842,-0.8858,-0.8926,-0.8966,-0.9166,-1,-1,-1,-1,-1,-1,-0.9168,-0.9368,-0.81,-0.8334,-0.8534,-0.83,-0.8968,-0.4934,-0.05,-0.2634,-0.9576,-0.9226,-0.86,-0.8224,-0.709,-0.8024,-0.709,-0.6334,-0.6668,-0.7868,-0.5068,-0.8334,-0.53,-0.4134,-0.3734,-0.3768,-0.4468,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6,1,1,-0.0286,0.0572,1,0.4572,-1,-0.9714,-0.9428,-0.9428,-0.9428,-0.8858,-0.4858,1,0.6858,-0.4,-0.4572,-0.0858,-0.4572,-0.5142,-0.6,-1,-1,-1,-1,-1,0.2828,0.3138,0.3644,0.3808,0.4066,0.4292,0.448,0.4614,0.4414,0.1894,0.4538,0.4332,0.3976,0.386,0.3842,0.3776,0.3864,0.4112,0.475,0.6422,-0.32,0.0118,-0.7242,-0.4288,0.2734,0.521,0.624,0.7334,-0.0202,0.1822,0.2632,0.1336,0.085,0.0122,0.4574,0.9434,1,0.83,0.8866,0.8542,0.66,0.8948,0.66,0.8786,0.7652,0.5708,0.6032,0.5304,0.4412,0.3846,0.328,0.417,0.3928,0.3846,0.3604,0.2632,0.3198,0.2388,-0.077,-0.3766,-0.313,-0.025,0.1966,0.1578,0.097,0.0582,0.169,0.4016,0.5236,0.6952,0.9168,0.8172,0.7728,0.6066,0.7174,1,0.9834,0.8228,0.7174,0.5512,0.6676,0.3906,0.5124,0.4072,0.3962,0.1856,0.4404,0.3352,0.0804,0.1192,0.169,-0.1966,0.208,0.3106,0.265,0.134,0.1282,0.0256,-0.094,0.2706,0.6354,0.9374,1,0.8974,0.9772,0.715,0.7948,0.9202,0.8746,0.8632,0.812,0.624,0.715,0.6524,0.6752,0.5954,0.584,0.3504,0.4986,0.2364,-0.037,0.094,0.396,0.0314,-0.7598,-1,-1,1,-1,-1,-0.8,-0.3334,-1,-0.0064,0.1848,0.363,0.5924,0.2994,0.1848,0.3504,0.223,0.4904,0.516,0.8726,0.9236,1,0.8472,0.9236,0.949,0.8344,0.9108,0.707,0.6688,0.707,0.7834,0.8472,0.9108,0.9236,0.9618,0.9236,0.8598,0.7708,0.6434,0.4904,-0.0446,'16'
-0.1466,0.3974,0.648,0.7866,0.52,0.1626,0.0774,-0.0134,-0.168,-0.2534,-0.2054,-0.0826,-0.1786,0.0506,0.056,0.1574,0.3706,0.5254,0.6374,0.9466,1,0.8134,0.7974,0.6694,0.52,0.3014,0.3706,0.4026,0.3974,0.552,0.6586,0.7546,-0.3906,-0.1016,0.6118,0.6388,0.1648,-0.0248,0.0474,-0.1332,-0.228,-0.1558,-0.0564,-0.0836,0.0338,0.1332,0.1512,0.386,0.4808,0.553,0.8104,0.8826,1,0.982,0.9458,0.7832,0.6704,0.711,0.5214,0.6028,0.684,0.6252,0.7516,0.8104,-0.3774,0.0736,0.7058,0.6666,0.005,-0.0932,-0.1372,-0.2794,-0.2304,-0.2844,-0.304,-0.1716,-0.2206,-0.0882,0.0784,0.0882,0.2598,0.4656,0.5736,0.8284,0.9902,1,0.8676,0.8432,0.7794,0.554,0.5098,0.4558,0.4706,0.4314,0.6422,0.6078,-0.4862,0.1536,0.5566,0.4206,-0.1032,-0.1234,-0.325,-0.4812,-0.466,-0.471,-0.456,-0.3652,-0.2494,-0.194,-0.1586,0.0328,0.1688,0.2796,0.5164,0.6876,0.9596,0.9848,0.9194,1,0.8136,0.5718,0.6424,0.5566,0.5366,0.5114,0.607,0.6826,-0.4378,0.3964,0.5976,0.1242,-0.3018,-0.3314,-0.4616,-0.6508,-0.6214,-0.6804,-0.8344,-0.5444,-0.4498,-0.4082,-0.4556,-0.1066,-0.148,0.0474,0.213,0.497,0.6864,0.8934,0.9468,1,0.8402,0.8816,0.5918,0.568,0.4556,0.4616,0.6864,0.6804,-0.3842,0.3432,0.437,0.2844,-0.431,-0.5132,-0.736,-0.695,-0.6656,-0.7772,-0.8592,-0.5308,-0.525,-0.607,-0.5014,-0.4018,-0.3548,-0.0792,0.091,0.3666,0.8124,0.8006,0.9414,1,0.9942,0.6656,0.5484,0.5308,0.525,0.3842,0.5426,0.607,-0.4604,0.3174,0.4604,0.1798,-0.5292,-0.5978,-0.8942,-0.7672,-0.8096,-0.8412,-0.6932,-0.6244,-0.5874,-0.508,-0.365,-0.508,-0.455,-0.3068,-0.164,0.4444,0.8412,1,0.926,0.947,0.947,0.7354,0.656,0.5026,0.619,0.4444,0.6614,0.7672,0.16,0.68,0.64,0.56,0.48,0.04,0.28,0.28,-0.12,-0.08,0,0,-0.44,-0.04,0,-0.16,0.12,0.36,0.68,0.96,1,0.56,0.8,0.48,0.16,0.2,0.44,0.32,0.52,0.84,1,0.84,0.1482,0.5186,0.8518,1,0.8148,0.6296,0.2592,0.074,0.2222,-0.074,0.1482,0.2222,0.2592,0.3704,0.2222,0.4074,0.5556,0.7038,0.5186,0.7778,0.926,0.6296,0.7038,0.8148,0.7778,0.5926,0.4814,0.4814,0.5186,0.6666,0.5186,0.6296,-0.2666,0.4,0.5556,0,-0.3112,-0.1778,-0.3112,-0.4444,-0.3556,-0.6,-0.8666,-0.3556,-0.4444,-0.4,-0.2666,-0.0666,-0.1334,-0.0666,0.2222,0.3334,0.7778,0.8444,0.9556,1,0.9112,0.8444,0.5778,0.5778,0.4444,0.4222,0.6888,0.6444,-1,-1,-1,-1,-1,-0.987,-0.9756,-0.8054,-0.8532,-0.8758,-0.8384,0.3906,0.9888,0.6984,0.8088,0.741,0.475,-0.0178,-0.3316,-0.3698,-0.4186,-0.515,-0.6644,-0.7592,-0.9244,-0.9556,-0.9688,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9846,-0.9776,-0.795,-0.8376,-0.8118,-0.7534,-0.075,0.546,0.8184,0.8542,0.4182,0.5148,0.3062,-0.442,-0.4178,0.1358,-0.229,-0.6634,-0.7876,-0.895,-0.8896,-0.9312,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.9,-0.78,-0.2234,0.0566,0.0732,-0.576,-0.736,-0.5568,-0.6234,-0.74,-0.7,-0.72,-0.8234,-0.8368,-0.7768,-0.7868,-0.87,-0.73,-0.3268,-0.0986,-0.0838,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7428,1,1,1,-0.4286,0.0572,1,1,-0.3714,-0.4286,-0.6286,-0.8,0.6286,0.7142,-0.3428,-0.3142,0.8286,-0.2572,-0.5142,-0.2572,-0.5142,-0.1714,-1,-1,-1,-1,-1,-1,0.404,0.4272,0.4448,0.4682,0.483,0.5126,0.53,0.5048,0.429,0.0658,0.4234,0.4078,0.382,0.405,0.391,0.3844,0.4234,0.4816,0.566,0.7782,-0.4534,-0.3648,-0.7464,-0.4974,0.1354,0.5072,0.6052,1,0.0958,0.3836,0.4932,0.4384,0.2328,0.1438,0.459,0.5822,0.822,1,0.7398,0.7054,0.7466,0.5958,0.7398,0.5822,0.3768,0.5,0.6506,0.6576,0.6506,0.6096,0.548,0.4316,0.3836,0.541,0.5,0.411,0.1576,0.1506,-0.0342,-0.1986,-0.2664,0.1902,0.3206,0.1358,0.0598,0.0978,0.0598,0.1576,0.6196,0.8532,0.9348,0.7826,0.8316,0.6358,0.6902,0.913,1,0.8478,0.8206,0.6576,0.576,0.6086,0.4728,0.2392,0.1902,0.3968,0.4184,0.3206,0.3532,0.3968,0.1522,-0.3804,0.0186,0.0842,0.1542,0.1542,0.014,0.1168,0.0374,0.1308,0.4672,0.8364,1,0.7758,0.7616,0.542,0.5842,0.8272,0.9112,0.6962,0.5888,0.6262,0.8084,0.7336,0.486,0.3644,0.2944,0.472,0.3272,0.3178,0.4018,0.4486,0.3084,0.0234,-0.3898,-1,-1,1,-1,-1,-0.8,-0.2334,-1,-0.6842,-0.2106,-0.228,-0.3508,-0.2808,-0.2808,-0.386,-0.0526,-0.035,0.6492,0.8246,0.7544,0.9298,0.7894,0.8948,1,0.7544,1,0.7018,0.6316,0.3684,0.2456,0.2808,0.0878,0.2808,0.3684,0.2808,-0.1404,-0.2982,-0.0176,0,-0.1754,'16'
-0.2968,0.3996,0.582,0.34,-0.0248,-0.2272,-0.3666,-0.3964,-0.466,-0.5224,-0.3566,-0.3466,-0.1874,-0.0548,0.1376,0.1974,0.5324,0.738,0.99,1,0.8938,0.9204,0.9702,0.884,0.8208,0.7712,0.7744,0.8442,0.9834,0.9104,0.9072,0.8208,-0.3402,0.2304,0.3998,0.3402,-0.055,-0.2838,-0.379,-0.3492,-0.471,-0.471,-0.3284,-0.2748,-0.2214,-0.0402,0.0966,0.2066,0.474,0.7652,0.9644,1,0.8216,0.8544,0.8632,0.7682,0.7028,0.6494,0.7534,0.7772,0.9258,0.887,0.8782,0.8246,-0.405,0.0764,0.4872,0.4618,-0.1332,-0.2606,-0.4136,-0.5156,-0.541,-0.5184,-0.3966,-0.3428,-0.2662,-0.1218,0.0114,0.3116,0.5326,0.7508,1,0.9716,0.8866,0.8386,0.6968,0.5354,0.524,0.473,0.5892,0.694,0.8244,0.8696,0.8158,0.7508,-0.4828,0.0482,0.4498,0.348,-0.0674,-0.1966,-0.3426,-0.4278,-0.4552,-0.4112,-0.2848,-0.2462,-0.1692,0.0152,0.2324,0.4636,0.769,0.9284,1,0.923,0.8708,0.7882,0.4498,0.282,0.326,0.3342,0.5076,0.6286,0.7772,0.8074,0.7276,0.6726,-0.5108,0.1816,0.3784,0.2524,0.0616,-0.08,-0.3262,-0.24,-0.3876,-0.3076,-0.2646,-0.043,0.0954,0.3292,0.7016,1,1,0.9292,0.96,0.9446,0.7384,0.4276,0.1662,0.12,0.24,0.2676,0.443,0.643,0.8524,0.84,0.7384,0.6708,-0.4116,0.4486,0.6172,0.823,0.251,-0.214,-0.247,-0.3416,-0.3992,-0.3168,-0.0988,0.354,0.568,0.6748,0.8148,0.6708,0.6214,0.8848,1,0.8888,0.4856,0.1152,-0.1028,-0.2058,-0.0082,-0.0494,0.2716,0.4856,0.8888,0.9466,0.7408,0.6872,-0.196,0.5572,0.995,1,0.2468,-0.3334,-0.2672,-0.2214,0.023,0.3894,0.425,0.3536,0.033,-0.1298,-0.1806,-0.1654,-0.2264,0.0788,0.2214,0.1502,-0.033,-0.2162,-0.6132,-0.547,-0.3536,-0.5012,-0.2824,-0.0432,0.3028,0.603,0.5776,0.1908,-0.0698,0.628,0.6744,0.2558,0.1628,0.0232,0.0698,-0.3024,-0.0232,-0.4418,-0.0698,-0.3024,0.1628,0.0698,0.1628,0.2558,0.5348,0.5348,0.8604,0.8604,0.9534,1,0.8604,0.9534,0.8604,0.814,0.814,0.721,0.907,0.5348,0.628,0.1628,-0.1764,0.4118,0.5294,0.4902,0.1372,-0.0588,-0.2942,-0.2156,-0.4902,-0.3334,-0.1764,-0.098,0.0196,0.098,0.255,0.3334,0.6078,0.6862,0.8824,0.9216,0.9608,0.9216,1,0.9216,0.8824,0.7648,0.8824,0.7648,1,0.8824,1,0.8824,-0.5556,0.1334,0.3112,0.2666,0.0222,-0.1556,-0.3112,-0.2888,-0.3778,-0.2888,-0.1556,-0.1334,0.0888,0.3112,0.6666,1,0.8,0.8444,0.8666,0.8888,0.4222,0.2888,0.0888,0.0666,0.1334,0.2222,0.3334,0.5778,0.7334,0.7556,0.6,0.5334,-0.979,-0.9682,-0.9756,-0.973,-0.9168,-0.8146,-0.9472,-0.9364,-0.908,-0.881,-0.8856,0.4148,0.6928,0.64,0.565,0.9296,0.933,0.661,0.366,0.2612,0.0338,-0.1922,-0.8362,-0.9506,-0.952,-0.937,-1,-1,-1,-1,-1,-1,-1,-0.9856,-0.9838,-0.9838,-0.9848,-0.5894,-0.2142,-0.6976,-0.6996,-0.5978,-0.661,-0.8098,0.233,0.8218,0.5908,0.4236,0.7542,0.7702,0.7626,0.2294,-0.2396,-0.5618,-0.7016,-0.9426,-0.9676,-0.9698,-0.9696,-1,-1,-1,-1,-1,-1,-1,-0.8868,-0.82,-0.96,-0.7834,-0.72,0.0232,0.1732,0.1932,0.3132,0.2332,0.24,-0.7,-0.7134,-0.52,-0.4868,-0.6,-0.5956,-0.6178,-0.622,-0.776,-0.904,-0.926,-0.7934,-0.6968,-0.6368,-0.77,-1,-1,-1,-1,-1,-1,-1,-0.7714,-1,-1,1,1,1,1,-0.4858,-0.8,0.3142,1,1,-1,-1,-1,-1,-0.6858,-0.7428,-0.3142,0.3714,0.6,1,-0.4858,-0.4858,-0.8858,-0.6286,-1,-1,-1,-1,-1,-1,-1,0.0454,0.0164,0.0492,0.009,0.0278,0.0436,0.0642,0.0808,0.125,0.177,0.6208,0.6066,0.618,0.615,0.61,0.6228,0.6052,0.5866,0.5034,-0.091,-0.4534,0.0942,-0.8188,-0.5452,0.07,0.637,0.829,-0.1166,-0.4972,-0.1502,-0.0846,0.0846,0.142,0.2268,0.2814,0.3606,0.4672,0.642,0.7514,0.8716,0.9644,1,0.9316,0.8688,0.806,0.623,0.3852,0.4618,0.3388,0.2842,0.2076,0.1722,0.3306,0.2186,0.0902,0.1804,0.1584,0.123,0.0628,-0.1312,-0.656,-0.447,-0.2026,-0.18,-0.0996,0.0128,-0.0032,0.2122,0.3376,0.4598,0.7074,0.8972,0.9936,0.955,1,0.91,0.8586,0.8168,0.656,0.7364,0.7332,0.6206,0.492,0.3602,0.4244,0.5016,0.5466,0.553,0.5466,0.5948,0.4984,0.0836,-0.5866,-0.391,-0.3878,-0.2404,-0.1378,-0.202,-0.0994,0.2308,0.3686,0.6666,0.7084,0.8012,0.7916,0.75,1,0.9744,0.7916,0.8238,0.5962,0.452,0.5192,0.5064,0.3878,0.2692,0.3366,0.4358,0.4198,0.4744,0.4712,0.468,0.3302,0.048,0.9558,-1,-1,1,-1,-1,-0.8,0.3,-1,-0.1804,0.0492,-0.0492,0.4098,0.6066,0.705,0.705,0.2132,0.5082,0.4426,0.246,-0.0164,0.377,0.3442,0.082,0.0492,-0.082,0.0492,0.1804,0.7704,1,0.5738,0.377,0.1804,0.377,0.6394,0.8032,0.705,0.4098,0.1804,0.0492,-0.4754,'17'
-0.1944,0.3292,0.2618,0.3446,0.1578,-0.0414,-0.1914,-0.1608,-0.216,-0.2068,-0.2098,-0.1578,-0.0322,0.0168,0.1394,0.3354,0.3966,0.7458,0.7886,0.9846,0.9878,1,0.9264,0.7886,0.6784,0.66,0.758,0.755,0.85,0.8284,0.9326,0.8162,-0.3128,0.08,0.265,0.4026,0.122,-0.0266,-0.1978,-0.2594,-0.223,-0.3856,-0.2454,-0.0856,-0.066,0.0688,0.066,0.265,0.5064,0.6326,0.972,1,0.9186,0.8486,0.8288,0.7082,0.61,0.526,0.5876,0.655,0.7364,0.8092,0.8176,0.826,-0.3794,-0.0404,0.4782,0.5472,0.0374,-0.2054,-0.2444,-0.3074,-0.3254,-0.3254,-0.1694,-0.0764,-0.0584,0.0164,0.1814,0.3644,0.5472,0.805,0.985,1,0.952,0.895,0.829,0.6342,0.5172,0.4932,0.5952,0.6342,0.7872,0.859,0.853,0.808,-0.4144,0.0954,0.6876,0.648,-0.2006,-0.148,-0.2236,-0.2204,-0.3224,-0.2894,-0.2532,-0.204,-0.0822,0.079,0.204,0.4276,0.7828,0.9638,1,0.9474,0.9144,0.8816,0.6052,0.4244,0.3618,0.296,0.375,0.5,0.6644,0.7302,0.7434,0.704,-0.4956,0.293,0.556,0.4032,0.1154,0.0658,-0.119,-0.19,-0.2646,-0.2008,-0.0942,0.016,0.1794,0.3606,0.666,0.865,0.9076,0.8614,0.904,0.9502,1,0.7798,0.485,0.325,0.318,0.3464,0.4388,0.5986,0.8366,0.9538,0.8756,0.8294,-0.5294,0.3446,0.7774,0.8908,0.2816,0.0336,-0.2942,-0.3026,-0.2184,-0.1176,0.2858,0.5378,0.6512,0.6428,0.5924,0.395,0.2774,0.416,0.7394,1,0.958,0.3908,-0.0294,-0.0504,-0.021,-0.0588,0.2058,0.3404,0.7984,0.895,0.8908,0.7016,-0.4182,0.25,0.8702,1,0.351,0.0144,-0.0288,0.0096,0.351,0.3654,0.125,-0.149,-0.4038,-0.4616,-0.625,-0.6202,-0.5818,-0.3414,-0.1298,0.101,0.1058,-0.1778,-0.4616,-0.6586,-0.7164,-0.7356,-0.5528,-0.577,-0.0192,0.1586,0.1538,-0.048,-0.1064,0.617,0.6596,0.3192,-0.0212,-0.149,-0.149,-0.2766,-0.234,-0.149,-0.1914,-0.149,-0.149,0.0638,0.0638,0.2766,0.2766,0.6596,0.7872,1,1,0.8724,0.9148,0.617,0.5744,0.3192,0.6596,0.7022,0.7446,0.6596,0.7022,0.6596,-0.1764,0.2942,0.255,0.3726,0.1764,0.0588,-0.1764,-0.0588,-0.2156,-0.2156,-0.098,-0.1764,0.0196,-0.098,0.1764,0.3334,0.451,0.7648,0.9608,1,0.9608,0.9216,1,0.8824,0.7648,0.7648,0.647,0.7648,0.804,0.9216,0.9216,0.9608,-0.5556,0.2222,0.3778,0.4222,0.0888,-0.1556,-0.3112,-0.2666,-0.2222,-0.1556,-0.0888,0.1334,0.4444,0.8222,0.8,0.6,0.5334,0.4888,0.7778,0.8888,0.9112,0.4888,0.2666,0.1334,0.1334,0.1556,0.4222,0.6444,0.8666,1,0.9556,0.8666,-1,-1,-0.9862,-0.9896,-0.9888,-0.9902,-0.8452,-0.8786,-0.9228,-0.9102,-0.7818,0.2204,0.1304,0.2428,0.3978,0.5474,0.9068,0.8462,0.2066,-0.0646,-0.101,-0.2912,-0.8394,-0.9456,-0.951,-0.8958,-0.8776,-1,-1,-1,-1,-1,-1,-1,-1,-0.9894,-0.9906,-0.983,-0.9888,-0.1304,-0.644,-0.6426,-0.453,-0.6988,0.2322,0.8018,0.8498,0.9794,0.793,0.5528,0.4614,0.1944,-0.2554,-0.5478,-0.6692,-0.9222,-0.9548,-0.966,-0.954,-0.9496,-1,-1,-1,-1,-1,-1,-1,-1,-0.9112,-0.8434,-0.7168,-0.7768,-0.3668,0.05,0.22,0.2032,0.14,-0.505,-0.3176,-0.355,-0.345,-0.365,-0.48,-0.6126,-0.5476,-0.5978,-0.7846,-0.84,-0.81,-0.52,-0.5034,-0.9834,-0.88,-1,-1,-1,-1,-1,-1,-1,-1,-0.5714,-1,-0.8286,1,1,1,-0.0572,-0.4858,1,1,-0.6,-1,-1,-0.8286,-0.7428,-0.9714,-0.4858,1,1,0.6858,0.2572,-0.3428,-0.4286,-0.6572,-0.4858,-1,-1,-1,-1,-1,-1,0.2602,0.2838,0.2912,0.32,0.338,0.363,0.3836,0.3908,0.3462,0.3868,0.6176,0.625,0.5954,0.6092,0.5964,0.5946,0.5782,0.562,0.4714,-0.0314,-0.5334,-0.047,-0.7538,-0.3598,0.2154,0.5498,0.7866,1,-0.6234,0.1262,0.0734,0.0546,0.2956,0.2618,0.3446,0.5518,0.5932,0.6912,0.9736,0.9322,1,0.8456,0.838,0.8418,0.6346,0.6912,0.4538,0.4538,0.3822,0.3446,0.2354,0.2166,0.292,0.2994,0.047,0.1488,0.0848,0.273,0.209,-0.0886,-0.5606,-0.2462,-0.1174,0.0758,0.1704,0.1818,-0.0114,0.2878,0.3068,0.5796,0.6818,0.8446,0.966,1,0.9508,0.909,0.8826,0.7538,0.6894,0.5984,0.716,0.7046,0.5606,0.5644,0.6364,0.6022,0.606,0.6326,0.5492,0.5266,0.4848,0.2196,-0.5118,-0.2774,-0.1836,-0.1524,-0.004,-0.0156,0.039,0.0664,0.25,0.668,0.8438,0.9492,1,0.9376,0.8672,0.6914,0.6992,0.8124,0.5274,0.5898,0.4882,0.621,0.4532,0.3516,0.5118,0.5704,0.4726,0.4688,0.4648,0.5234,0.3046,0.0196,1,-1,-1,1,-1,-1,-0.8,0,-1,-0.4696,0.0454,0.3484,0.7576,0.8484,0.6818,0.091,0.3182,0.1818,0.7272,0.6818,0.5758,0.3636,0.409,0.4848,0.394,0.697,0.5,0.6212,0.6818,0.697,1,0.6666,0.1364,0.2424,0.409,0.303,0.1818,0.1364,0.1364,0.106,-0.2424,'17'
-0.4458,-0.2012,0.0154,0.1252,0.5556,0.7946,0.8846,0.8874,0.9296,1,0.9382,0.7188,0.4064,0.4178,0.4234,0.5162,0.6906,0.685,0.4992,0.1984,-0.0154,-0.0408,-0.0718,0.1926,0.2884,0.3558,0.2406,-0.0042,-0.0718,-0.0998,-0.0352,0.0324,-0.4358,-0.1396,0.1648,0.1676,0.7094,0.8632,1,0.8882,0.9274,0.9162,0.7262,0.6648,0.3604,0.3072,0.2012,0.2318,0.4246,0.2318,0.081,0.0308,-0.2234,-0.377,-0.1648,-0.0196,-0.0838,-0.0028,0.0224,-0.3408,-0.5364,-0.6396,-0.5698,-0.5252,-0.4414,-0.1872,0.1312,0.176,0.715,0.838,0.9804,0.9162,0.9636,1,0.8548,0.715,0.5084,0.4078,0.4162,0.4218,0.3826,0.4246,0.1928,-0.176,-0.134,-0.1676,-0.1536,0.0754,0.2374,0.2542,-0.0474,-0.2682,-0.3212,-0.4526,-0.5056,-0.4804,-0.4964,-0.1054,0.0632,0.2012,0.6344,0.941,0.9354,0.9494,0.9634,0.9746,0.9944,1,0.8144,0.7216,0.8002,0.761,0.5414,0.3502,0.1562,-0.1082,-0.0632,-0.1392,-0.114,0.1308,0.1926,0.187,0.0098,-0.0858,-0.308,-0.3418,-0.277,-0.3446,-0.5964,-0.1612,-0.0406,0.1192,0.633,0.8532,0.8374,0.709,0.6566,0.772,0.9816,0.9922,0.882,1,0.9634,0.8322,0.4678,0.2398,0.0668,0.0222,-0.0774,-0.2346,-0.114,-0.1612,-0.025,0.1716,0.245,0.2582,0.19,-0.0222,-0.1402,-0.114,-0.6498,-0.2068,-0.1644,0.1168,0.6206,0.7904,0.7878,0.5092,0.4642,0.5624,0.801,0.9072,0.9522,1,0.9124,0.5624,0.2202,-0.0954,-0.0954,-0.2042,-0.329,-0.3554,-0.3634,-0.3766,-0.2758,-0.1326,0.0292,0.3952,0.366,0.053,-0.0584,-0.1644,-0.2278,0.0348,-0.3436,-0.5406,0.0656,0.1738,0.081,0.1506,0.1506,-0.0078,0.2972,0.7568,1,0.8958,0.5174,0.5444,0.3128,-0.2084,-0.1584,-0.2702,-0.4324,-0.5212,-0.5444,-0.637,-0.502,-0.1622,-0.0308,0.1738,0.498,0.3514,0.3088,0.0656,-0.3488,-0.1162,-0.0232,0.0698,0.5348,0.628,0.8604,0.814,0.8604,0.9534,1,0.7674,0.4884,0.5348,0.4884,0.5348,0.814,0.7674,0.6744,0.3024,0.3024,0.1628,0.0232,0.3024,0.4418,0.4884,0.1628,0.0232,0.1162,-0.0698,0.0232,0.2094,-0.4848,-0.2122,-0.3636,0.091,0.4848,0.606,0.7878,0.697,0.7272,1,0.9394,0.394,0.2424,0.2424,0.303,0.394,0.7878,0.8484,0.4848,0.3334,0.2424,0.0304,0,0.2728,0.4848,0.6364,0.4546,0.1212,0.1818,0.1818,0.0606,0.3636,-0.5744,-0.149,0.0426,0.2128,0.6382,0.8086,0.8086,0.7234,0.7446,0.7446,0.9362,1,0.851,0.9148,0.9574,0.6382,0.5744,0.3404,0.1064,0.1064,0,-0.0852,-0.0638,-0.0852,-0.0852,0.3404,0.3404,0.1064,0.149,-0.0426,-0.1276,-0.0852,-1,-1,-1,-1,-1,-1,-0.9286,-0.8802,-0.9632,-0.9744,-0.942,0.1516,0.9196,0.845,0.7524,0.788,0.615,0.5936,0.3464,0.0978,-0.3204,-0.7678,-0.7758,-0.8828,-0.9414,-0.9308,-0.911,-0.9244,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9458,-0.8846,-0.9504,-0.9884,-0.9808,0.4584,0.8498,0.5558,0.4704,0.6144,0.7114,0.9328,0.695,0.2118,-0.4264,-0.8884,-0.8964,-0.9132,-0.906,-0.9282,-0.9356,-0.9462,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8626,-0.82,-0.65,-0.9,-0.8634,-0.874,-0.866,-0.938,-0.9274,-0.9038,-0.922,-0.821,-0.7018,-0.6946,-0.6036,-0.5946,-0.5904,-0.3436,-0.207,-0.2536,-0.3236,-0.427,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4286,0.4286,0.7142,0.6,1,1,-0.6572,-0.8572,-0.9428,-0.8572,-0.8,-0.6,-0.6858,-0.4,0.6572,-0.1428,-0.8572,-0.7142,-0.7428,-0.8572,-0.7714,-0.1714,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.9316,-0.9496,-0.9638,-1,-1,-1,-1,-1,-1,-1,-0.2666,0.2706,-0.9812,-0.2474,0.8006,0.163,0.7336,1,-0.2358,0.2682,0.6532,0.7074,0.6694,1,0.9296,0.6532,0.485,0.588,0.561,0.5068,0.42,0.4038,0.3224,0.1924,0.2086,0.317,0.2304,0.214,0.1112,0.1056,0.1544,0.2846,0.214,0.2574,0.2466,0.3062,-0.019,-0.0894,0.019,-0.1382,-0.3074,0.105,0.4086,0.4086,0.105,0.6032,0.5486,0.3774,0.4164,0.354,0.393,0.4396,0.7976,0.533,0.3308,0.354,0.6032,0.7276,0.6108,0.9144,0.9688,0.7744,0.7976,0.8522,1,0.9766,0.8366,0.8054,0.4942,0.5408,0.712,0.4552,-0.0414,0.4344,0.9586,1,0.4966,0.7034,0.9104,0.9172,0.7034,0.7034,0.738,0.5518,0.6966,0.7172,0.6414,0.5242,0.5794,0.6206,0.7172,0.4966,0.6068,0.5724,0.4414,0.6758,0.6552,0.5932,0.6344,0.8758,0.662,0.4,0.469,-0.1656,-0.632,1,-1,-1,-1,-1,-0.4,-1,-1,-0.3016,-0.0952,0.3016,0.381,0.4286,0.6984,0.5556,0.6032,0.508,0.4444,0.6508,0.0952,0.3174,0.6032,1,0.9206,0.7936,0.4604,0.7142,0.8412,0.5714,0.2698,0.381,0.1428,0.238,0.3968,0.0476,0,0.1746,0.1746,0.4126,0.0476,'18'
-0.438,-0.252,0.0426,0.1162,0.69,0.783,0.8838,0.9342,1,0.9962,0.7596,0.372,0.1976,0.1782,0.1666,0.1434,0.3372,0.4884,0.5388,0.31,0.0582,-0.0116,-0.0426,0.0272,0.1822,0.345,0.3798,0.252,0.062,0.0116,0.0504,0.0542,-0.4534,-0.2278,0.0732,0.1722,0.6832,0.7504,0.8496,0.9326,1,0.905,0.7466,0.4298,0.1842,0.1366,0.1326,0.1208,0.2198,0.406,0.295,0.1842,-0.0416,-0.1644,-0.0852,-0.0336,0.101,0.2674,0.2158,0.0496,-0.097,-0.192,-0.1842,-0.1644,-0.5294,-0.1802,0.0132,0.0322,0.5598,0.8102,0.8862,0.962,1,0.9166,0.8102,0.5978,0.3282,0.26,0.3018,0.2714,0.3662,0.4762,0.15,-0.0588,-0.1802,-0.1802,-0.184,-0.1424,0.0816,0.1992,0.1688,0.017,-0.2372,-0.2752,-0.2752,-0.3168,-0.5696,-0.2038,-0.0666,0.0972,0.398,0.7448,0.9962,1,0.7904,0.7942,0.7676,0.7066,0.5314,0.52,0.5314,0.562,0.4438,0.2496,0.0058,-0.0438,-0.2342,-0.261,-0.2762,-0.2648,-0.1314,0.0514,0.082,-0.078,-0.2496,-0.2876,-0.3524,-0.3142,-0.5556,-0.2022,-0.082,0.122,0.501,0.8288,1,0.8834,0.6794,0.6976,0.7778,0.8542,0.6648,0.8252,0.8724,0.7924,0.3406,0.2168,-0.0418,-0.2422,-0.235,-0.3224,-0.326,-0.348,-0.2386,-0.133,0.0492,0.0128,-0.1658,-0.275,-0.3296,-0.3552,-0.5804,-0.1568,-0.0472,0.1948,0.7354,0.9358,0.8412,0.6748,0.6332,0.6786,0.8564,0.9244,0.9962,1,0.9774,0.7882,0.4896,0.104,0.0246,-0.1266,-0.3194,-0.3762,-0.3346,-0.3724,-0.312,-0.0472,0.0776,0.2174,0.2212,-0.0586,-0.104,-0.138,-0.4874,-0.0874,0.0214,0.1534,0.8524,1,0.8718,0.4796,0.5456,0.4796,0.7786,0.899,0.9262,0.9766,0.903,0.7436,0.503,0.1612,-0.099,-0.0874,-0.297,-0.3632,-0.3126,-0.3514,-0.3748,-0.1806,-0.0912,0.231,0.3242,0.1106,0.0136,0.0136,-0.5238,-0.1428,0.0476,0.1904,0.6666,0.8096,0.9524,0.9048,1,1,0.6666,0.619,0.381,0.3334,0.2858,0.3334,0.5238,0.5238,0.5714,0.4762,0.2858,0.1428,0.1428,0.1904,0.381,0.4286,0.4286,0.381,0.1428,0.1428,0.1428,0.1428,-0.3636,-0.3182,0.0454,-0.091,0.6818,0.8182,0.909,0.9546,1,1,0.8182,0.2272,0.1818,0.1818,0.1818,0,0.3182,0.5454,0.5454,0.5454,-0.091,0.0454,-0.0454,0.0454,-0.0454,0.409,0.4546,0.1818,0.1818,-0.1364,0.0454,-0.0454,-0.5556,-0.2444,-0.0888,-0.0222,0.4444,0.7778,1,1,0.7778,0.7778,0.8222,0.7112,0.5112,0.4888,0.6,0.6222,0.5334,0.2888,0.0444,-0.0222,-0.2666,-0.2444,-0.2888,-0.2666,-0.2888,0.0222,-0.0222,-0.1112,-0.3112,-0.2444,-0.3778,-0.2888,-1,-1,-1,-1,-1,-1,-1,-1,-0.9832,-0.9308,-0.2134,0.6906,0.9832,0.8268,0.6826,0.4994,0.3698,0.238,0.1554,0.1888,-0.133,-0.3776,-0.6178,-0.8826,-0.934,-0.9464,-0.9352,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9858,-0.9576,-0.1742,0.8378,0.9376,0.7632,0.8336,0.8506,0.6492,0.4376,0.1572,0.2246,-0.1578,-0.453,-0.6288,-0.917,-0.9384,-0.923,-0.894,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.87,-0.72,-0.6344,-0.6776,-0.69,-0.6776,-0.675,-0.6426,-0.74,-0.8926,-0.9076,-0.9076,-0.925,-0.8368,-0.81,-0.58,-0.4368,-0.2668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.1142,1,1,1,-0.9714,-0.7714,-0.8858,-0.5428,-0.5142,-0.6572,-1,-0.6858,-0.2286,-0.5428,0,-0.5428,-0.6286,-0.3714,-0.7714,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.4092,-0.4066,-0.4564,-0.511,-0.5376,-0.5314,-0.5556,-0.6532,-0.8832,-1,-0.2266,-0.0942,0.1212,0.6282,0.7988,0.9832,0.9664,1,0.5102,0.6326,0.7142,0.9592,1,0.8776,0.7142,0.551,0.5918,0.6326,0.6326,0.4694,0.5102,0.551,0.3878,0.3062,0.2654,0.2654,0.2244,0.2244,0.0612,-0.0612,-0.347,-0.1428,-0.347,0.0612,0.0204,0.102,-0.1428,-0.102,-0.551,-0.7142,0.2,0.376,0.824,0.968,1,0.984,0.52,0.456,0.728,0.76,0.568,0.472,0.632,0.584,0.408,0.328,0.312,0.296,0.392,0.328,0.248,0.168,-0.024,-0.168,-0.152,0.088,0.136,0.136,-0.2,-0.328,-0.584,-0.904,0.1472,0.3334,0.783,0.938,1,0.9534,0.5504,0.4574,0.69,0.659,0.5504,0.4264,0.6434,0.628,0.4264,0.4108,0.4108,0.3488,0.1938,0.2094,0.0852,0.0852,0.0232,-0.0698,-0.1472,-0.0232,0.2404,0.0078,-0.2248,-0.4264,-0.4884,-0.721,0.7968,-1,-1,1,-0.8,-1,-1,-0.8334,1,-0.69,-0.5038,-0.0698,0.1472,0.0852,0.5348,0.5658,0.5814,0.659,0.5348,0.3488,-0.0698,0.0698,0.5038,1,0.907,0.814,0.8604,0.3644,0.0078,0.2248,0.2094,0.3178,0.2404,-0.0852,0.1008,0.3488,0.5038,0.2404,0.3644,0.3334,-0.3798,'18'
-0.4194,-0.0064,0.1548,0.6452,0.6968,0.5548,0.2258,0.0968,-0.071,-0.0904,-0.0646,-0.0322,-0.071,0.1936,0.2322,0.6,0.8322,1,0.8322,0.8064,0.8258,0.8968,0.871,0.6452,0.6388,0.4646,0.4064,0.5162,0.6452,0.613,0.6774,0.8064,-0.3358,0.083,0.4152,0.9062,0.8844,1,0.5812,0.3502,0.1842,0.0036,0.083,0.0974,0.1408,0.2564,0.5306,0.5668,0.6678,0.9638,0.7184,0.6534,0.7328,0.7328,0.7618,0.7978,0.5162,0.408,0.2346,0.278,0.444,0.3718,0.509,0.6824,-0.3656,-0.0874,0.301,0.5728,0.8446,1,0.5276,0.178,0.165,-0.2038,-0.0032,0.0032,0.0098,0.1262,0.3852,0.424,0.631,0.8512,0.6894,0.5276,0.6052,0.6052,0.6828,0.644,0.4628,0.0938,0.2168,0.2104,0.1068,0.2492,0.2298,0.3074,-0.4438,-0.1598,0.1656,0.355,0.935,1,0.4142,0.3076,0.2308,0.0946,0.0356,0.1538,0.1006,0.2604,0.3668,0.4378,0.6272,0.6332,0.5918,0.3492,0.5798,0.568,0.3372,0.3906,0.2604,0,0.0236,-0.006,-0.0474,0.0888,0.1184,0.2662,-0.5044,-0.0926,0.1344,0.3194,1,0.9762,0.7552,0.4508,0.385,0.2836,0.3134,0.385,0.4388,0.5402,0.8986,0.9044,0.8926,0.6656,0.594,0.6238,0.582,0.6896,0.5642,0.3314,0.0686,0.0806,-0.0208,0.0388,0.1344,0.1104,0.2776,0.4686,-0.525,-0.1144,0.0264,0.349,0.6598,0.9002,0.7888,0.3608,0.3666,0.2668,0.3372,0.4428,0.5366,0.742,0.9824,1,0.9354,0.6892,0.6892,0.6716,0.6774,0.6304,0.4662,0.2492,0.2024,0.0498,0.0264,0.0968,0.1144,0.1496,0.4018,0.5132,-0.4562,-0.1062,-0.0126,0.4124,0.7688,0.9562,0.7,0.2374,0.1124,-0.0312,0.0124,0.225,0.4124,0.7688,0.9624,1,0.85,0.35,0.375,0.3812,0.4438,0.5312,0.2374,0.025,-0.05,-0.3938,-0.1938,-0.3062,-0.2376,-0.25,0.0688,0.1874,-0.3954,0.2094,0.2094,0.5348,0.5814,0.2558,0.3024,0.2094,0.0698,0.0232,0.0698,0.1162,0.1628,0.3488,0.4884,0.628,0.721,0.8604,0.8604,0.907,0.9534,0.9534,0.907,0.907,0.814,0.814,0.7674,0.814,0.8604,0.907,1,1,-0.4884,-0.1628,0.2558,0.5814,0.5814,0.5814,0.3024,0.0698,-0.0698,-0.1628,0.0232,0.0698,0.1628,0.2558,0.4418,0.5814,0.8604,1,0.8604,0.814,0.7674,0.7674,0.6744,0.721,0.628,0.2094,0.3024,0.3954,0.3954,0.2558,0.5348,0.5814,-0.4588,-0.1294,0.1764,0.3412,0.9764,1,0.553,0.4118,0.2942,0.1764,0.1764,0.2236,0.2942,0.3648,0.5764,0.6706,0.5764,0.647,0.6,0.4588,0.5058,0.5058,0.4352,0.2236,0.247,0.0118,0.0588,0.0824,-0.0824,0.0352,0.0824,0.2706,-1,-1,-1,-1,-1,-0.9734,-0.8498,-0.9414,-0.9808,-0.8034,-0.5278,0.028,0.3248,0.3146,0.369,0.547,0.8582,0.9536,0.7352,0.158,-0.0556,-0.2588,-0.757,-0.9398,-0.9414,-0.9532,-0.9392,-0.9664,-0.969,-0.9744,-0.9798,-0.975,-0.9786,-1,-1,-1,-1,-1,-0.9636,-0.8854,-0.9582,-0.9804,-0.8548,-0.571,0.4604,0.0574,0.0166,0.1498,0.326,0.5444,0.5368,0.6896,0.569,0.065,-0.3438,-0.8292,-0.8898,-0.7952,-0.7968,-0.7732,-0.6594,-0.6448,-0.6512,-0.58,-0.5764,-0.5404,-1,-1,-1,-1,-1,-0.56,-0.7134,-0.9468,-0.8,-0.8068,-0.91,-0.812,-0.936,-0.988,-0.88,-0.872,-0.904,-0.9,-0.876,-0.8,-0.9,-0.8768,-0.7,-0.0268,0.6466,1,0.99,1,1,1,1,1,1,-1,-1,-1,-1,-1,-0.3714,-0.0286,0.3142,0.6572,1,1,1,0.3714,-0.8572,-0.8858,-1,-0.8858,-0.8572,-1,-0.6572,0.4858,1,1,1,0.7142,-0.6572,-0.9428,-0.6858,-0.8286,-0.9142,-0.9142,-0.8286,-0.9142,0.8998,0.926,0.9478,0.9624,0.9764,0.9978,1,1,1,1,0.1626,0.1084,0.108,0.0904,0.0878,0.0736,0.0228,-0.0378,-0.1186,-0.6306,-0.3866,-0.447,-0.5584,-0.2184,0.6924,0.0506,0.0208,0.8666,-0.227,0.0248,0.3348,0.3574,0.2944,0.1102,0.3978,0.7438,0.9146,0.8158,1,0.9146,0.4382,0.3484,0.4112,0.6494,0.6854,0.4786,0.3574,0.4338,0.1686,0.1056,0.1416,0.1596,0.0742,0.1192,0.0112,0.1416,0.0922,-0.1102,-0.191,-0.3574,-0.1006,0.6202,0.933,0.5922,0.5474,0.4582,0.8938,0.7766,1,0.514,0.7486,0.6312,0.6146,0.4358,0.5474,0.6368,0.5866,0.2682,0.2402,0.2402,0.4916,0.3464,0.285,0.1452,0.1844,0.285,0.1508,0.0446,0.2346,0.296,0.4636,0.2794,0.172,0.6408,0.879,0.4896,0.206,0.3308,0.4404,0.5728,0.9244,0.9886,0.8488,1,0.7808,0.4934,0.6446,0.7126,0.758,0.7618,0.5992,0.5954,0.5614,0.2552,0.0094,-0.0586,0.0018,0.0964,0.2362,0.1266,-0.0434,-0.1948,-0.2098,-0.3346,-0.9856,1,-1,-1,-1,-0.8,-1,-1,-1,-0.9318,-0.7728,-0.5,-0.466,-0.2046,-0.2954,-0.409,-0.2728,-0.0114,-0.034,-0.0682,-0.091,-0.0568,-0.0454,0.1478,0.216,0.1704,0.2046,0.1364,0.4772,0.5682,0.6022,0.7272,0.534,0.8182,0.6478,0.8296,1,0.9546,0.625,0.6478,0.3182,'19'
-0.534,-0.0226,0.1068,0.631,0.8058,0.6764,0.042,-0.055,-0.2168,-0.3334,-0.3916,-0.2168,-0.0938,0.1456,0.2298,0.5728,0.903,1,0.9094,0.7346,0.7734,0.864,0.7606,0.4952,0.4046,0.3656,0.2104,0.3916,0.3462,0.5016,0.5858,0.5664,-0.5102,-0.1254,0.0904,0.4518,0.8776,0.9184,0.1954,0.137,0.038,-0.003,-0.0146,0.137,0.1662,0.2944,0.411,0.6618,0.965,1,0.9358,0.8368,0.7552,0.7376,0.7376,0.551,0.3644,0.2594,0.1196,0.2244,0.0438,0.3178,0.3644,0.3412,-0.473,-0.1138,0.1676,0.473,0.8862,1,0.497,0.2096,0.1976,0.006,0.1018,0.1736,0.1916,0.3474,0.4432,0.6766,0.8802,0.9162,0.6766,0.6766,0.6108,0.5988,0.6048,0.497,0.1976,0.0778,0.0718,0.042,0.012,0.2396,0.2634,0.2276,-0.5012,-0.1502,0.084,0.2722,0.883,1,0.5012,0.3384,0.3028,0.1654,0.1806,0.2978,0.3536,0.4402,0.603,0.888,0.827,0.9034,0.7252,0.6386,0.6438,0.7048,0.6438,0.5166,0.4148,0.1552,0.1246,0.1858,0.201,0.1604,0.4096,0.4452,-0.5388,-0.199,0.0048,0.1504,0.7816,0.8156,0.665,0.4224,0.3446,0.2816,0.267,0.369,0.4758,0.6554,0.8058,1,0.8204,0.7234,0.7088,0.6748,0.6796,0.5436,0.5048,0.403,0.2184,0.1214,0.0922,0.0632,0.102,0.1214,0.2718,0.3738,-0.5146,-0.152,0.0186,0.216,0.6586,0.9574,0.888,0.3494,0.3386,0.2266,0.36,0.4346,0.4934,0.76,0.9946,1,0.8774,0.68,0.6586,0.7014,0.6746,0.5946,0.4934,0.2534,0.152,0.0186,-0.0186,0.0346,0.0346,0.1414,0.2214,0.232,-0.484,-0.223,-0.0764,0.2866,0.7962,1,0.5542,0.3184,0.1592,0.0318,0.223,0.2612,0.3694,0.7134,0.9936,0.8472,0.5478,0.3694,0.3758,0.2738,0.2738,0.191,0.121,0.0192,-0.2038,-0.3312,-0.2484,-0.2738,-0.3694,-0.3058,0.0064,-0.0064,0.0286,0.6572,0.6572,0.8858,1,0.4858,0.3142,0.0858,-0.2,-0.6,-0.4858,-0.3142,0.0858,0.1428,0.3142,0.3142,0.7714,0.8858,0.6572,0.1428,0.1428,0.4858,0.3714,-0.2,-0.3142,-0.1428,-0.2,-0.1428,0.0858,0.3714,0.4858,0.6,-0.591,-0.1364,-0.0454,0.4546,0.8636,0.7272,-0.3182,-0.2272,-0.7272,-0.4546,-0.5,-0.8182,-0.7272,-0.1818,-0.1818,0.3636,0.8636,1,0.8636,0.409,0.6818,0.909,0.7728,0.4546,0.2272,0.1364,-0.0454,0.3182,0.1818,0.5454,0.6818,0.1818,-0.5334,-0.2,-0.0222,0.1334,0.7778,0.8444,0.8444,0.4222,0.3334,0.2444,0.3778,0.4222,0.4666,0.7112,1,0.9778,0.8222,0.6888,0.6444,0.6444,0.7334,0.6222,0.4222,0.3334,0.1778,-0.0666,-0.0222,0.0222,0,0.0888,0.2222,0.2888,-1,-1,-1,-1,-1,-1,-1,-0.9772,-0.9782,-0.9276,-0.4166,0.0436,0.2394,0.462,0.5414,0.7258,0.973,0.9022,0.6768,0.2558,-0.104,-0.2288,-0.8462,-0.9344,-0.911,-0.8926,-0.9668,-0.9712,-0.9756,-0.9704,-0.9826,-0.9782,-0.98,-1,-1,-1,-1,-1,-1,-1,-0.9806,-0.9844,-0.9636,-0.3904,0.2888,0.2802,0.4852,0.452,0.5554,0.757,0.8128,0.8818,0.4926,-0.1674,-0.3762,-0.8738,-0.9092,-0.8398,-0.7694,-0.7006,-0.6804,-0.722,-0.757,-0.7816,-0.8036,-0.7776,-1,-1,-1,-1,-1,-1,-1,-0.84,-0.8734,-0.7668,-0.6268,-0.7,-0.636,-0.596,-0.692,-0.72,-0.72,-0.6868,-0.64,-0.6068,-0.6868,-0.7134,-0.56,-0.02,0.8632,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-0.6858,-0.5714,1,1,1,1,-0.8286,-0.9714,-0.9142,-0.8572,-1,-0.9714,0.1428,0.5714,1,1,1,1,-0.5714,-0.6286,-0.8572,-0.8286,-0.9142,-0.8286,-1,-0.9142,0.894,0.894,0.9208,0.9494,0.99,1,1,1,1,1,-0.0392,-0.0392,-0.0432,-0.0678,-0.0674,-0.1558,-0.226,-0.3194,-0.4694,-0.8322,-0.3866,-0.4118,-0.445,-0.4034,0.6054,0.1156,0.5308,0.6834,0.12,0.22,0.26,0.77,0.79,0.63,0.91,1,0.85,0.68,0.8,0.89,0.98,0.78,0.94,0.9,0.88,0.53,0.71,0.71,0.89,0.58,0.62,0.68,0.67,0.83,0.73,0.7,0.93,0.55,0.62,0.49,0.1732,0.496,0.378,0.5276,0.6536,0.7086,1,0.7952,0.7796,0.5276,0.7086,0.7402,0.685,0.6536,0.7796,0.7952,0.7796,0.504,0.63,0.6142,0.5118,0.6142,0.441,0.3938,0.4804,0.748,0.7322,0.441,0.6142,0.7166,0.4724,0.1654,-0.1422,0.474,0.7726,0.3838,0.0616,0.2086,0.2418,0.5972,0.9478,0.8768,0.8862,1,0.5592,0.4502,0.5214,0.6492,0.7488,0.526,0.5546,0.4218,0.4028,0.3792,0.2038,-0.1138,0.071,0.071,0.109,-0.0522,-0.0806,-0.1564,-0.0568,-0.2418,-0.992,1,-1,-1,-1,-1,-1,-1,-1,-0.7962,-0.8472,-0.5924,-0.4522,-0.363,-0.465,-0.1338,-0.1592,0.0574,-0.2102,0.0064,0.0064,-0.0446,-0.0446,-0.0192,0.0828,0.1592,0.1338,0.4268,0.3248,0.7324,0.8854,0.8216,0.6942,0.5796,0.9618,0.809,1,0.7708,0.809,0.7452,0.4012,'19'
-0.1238,0.4524,0.7048,0.819,0.6,0.262,0.0142,-0.0762,-0.1142,-0.1904,-0.1238,-0.0428,0.062,0.2142,0.3238,0.3286,0.4858,0.7858,0.9238,1,1,0.9952,0.9572,0.7238,0.5666,0.5858,0.581,0.5666,0.6666,0.7666,0.8334,0.8286,-0.3618,-0.0078,0.6304,0.7004,0.2334,-0.0544,-0.105,-0.2646,-0.2218,-0.2256,-0.2296,-0.07,0.0194,0.0428,0.2684,0.3152,0.4592,0.7354,0.7666,1,0.9222,0.8988,0.7198,0.7432,0.572,0.428,0.4864,0.6226,0.6342,0.6382,0.6032,0.716,-0.369,-0.031,0.6372,0.6742,-0.0144,-0.2412,-0.167,-0.2908,-0.398,-0.336,-0.2,-0.2248,-0.1216,-0.002,0.0516,0.233,0.3444,0.5382,0.7444,0.8474,1,0.9176,0.831,0.7154,0.6372,0.5134,0.464,0.5216,0.5506,0.5588,0.7072,0.666,-0.47,0.0766,0.5734,0.4866,-0.0974,-0.1388,-0.296,-0.325,-0.3664,-0.3582,-0.3044,-0.2298,-0.1594,-0.056,0.0684,0.1594,0.3002,0.5114,0.6728,0.8758,0.9958,1,0.9752,0.9296,0.822,0.6604,0.6024,0.6066,0.6728,0.706,0.7806,0.7598,-0.5272,0.1838,0.3738,0.0586,-0.1232,-0.2686,-0.3576,-0.507,-0.5556,-0.5798,-0.5394,-0.406,-0.3212,-0.293,-0.1354,-0.006,0.095,0.3172,0.5878,0.7536,0.9556,0.992,1,0.9434,0.8222,0.7494,0.6728,0.5718,0.6484,0.5272,0.7252,0.794,-0.4778,0.4464,0.5614,0.342,-0.2584,-0.3212,-0.5718,-0.7494,-0.6344,-0.7232,-0.8538,-0.5666,-0.598,-0.4152,-0.2638,-0.2428,-0.201,0.1332,0.2794,0.6136,0.906,0.8642,0.7076,1,0.9478,0.4464,0.4726,0.5352,0.3524,0.5352,0.7128,0.5614,-0.4694,0.4388,0.4642,0.3112,-0.4184,-0.454,-0.7142,-0.8418,-0.801,-0.8826,-0.7858,-0.699,-0.7552,-0.7244,-0.5664,-0.5766,-0.2448,-0.046,0.1072,0.4846,0.796,0.8214,0.9336,1,0.9132,0.5,0.4948,0.3164,0.2602,0.4438,0.5918,0.6582,-0.1176,0.7648,0.8236,0.647,0.5882,0.1764,0.0588,0.0588,-0.2942,-0.5294,-0.2352,-0.0588,0.0588,-0.0588,0.1176,0.0588,0.2942,0.647,0.9412,0.9412,1,0.9412,1,0.5294,0.1176,0.4118,0.353,0.4706,0.5294,0.5882,0.647,0.7058,-0.2,0.4,0.65,0.85,0.65,0.3,0.05,-0.15,-0.15,-0.2,-0.15,-0.1,0,0.1,0.3,0.4,0.55,0.85,0.85,0.85,0.9,1,0.85,0.55,0.55,0.55,0.55,0.45,0.5,0.65,0.7,0.65,-0.5454,0.1818,0.3636,0.091,-0.1364,-0.2954,-0.409,-0.5682,-0.75,-0.659,-0.5228,-0.4546,-0.409,-0.3636,-0.3182,-0.0454,0.0454,0.25,0.5,0.6364,0.8182,1,0.909,0.9546,0.75,0.7046,0.5228,0.5228,0.5228,0.409,0.5682,0.7272,-1,-1,-1,-0.988,-0.9876,-0.983,-0.9884,-0.9504,-0.8834,-0.9074,-0.8562,0.2308,0.8612,0.971,0.8102,0.6384,0.4682,-0.0952,-0.3506,-0.4686,-0.5242,-0.6254,-0.6604,-0.749,-0.9548,-0.968,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.989,-0.9886,-0.988,-0.988,-0.832,-0.2584,-0.6238,-0.8282,-0.1774,0.6514,0.7168,0.5402,0.4688,0.6342,0.8038,-0.229,-0.648,-0.677,-0.776,-0.785,-0.8184,-0.9288,-0.963,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8668,-0.8668,-0.85,-0.8834,-0.6034,0.6532,0.3632,0.09,-0.9068,-0.7768,-0.7768,-0.7406,-0.6458,-0.5286,-0.4116,-0.423,-0.6458,-0.5972,-0.643,-0.5534,-0.1634,0.2332,-0.1368,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,-1,-1,1,1,1,1,1,1,1,-1,-1,-1,-1,0.1714,0.8,-0.0858,-0.9142,-0.7428,-0.7714,-0.3428,0.0286,0.9142,-1,-1,-1,-1,-1,-1,-1,0.3802,0.3978,0.4046,0.4112,0.4164,0.4238,0.4214,0.4014,0.3694,0.129,0.2224,0.2496,0.2498,0.2576,0.2474,0.2806,0.3038,0.3626,0.4676,0.6866,-0.4534,-0.2588,-0.8556,-0.6202,-0.1196,0.503,0.6824,1,-0.8972,-0.2864,-0.1136,-0.1946,-0.1622,-0.1028,-0.1622,0.0216,0.319,0.3244,0.2054,0.1352,0.2702,0.2702,0.481,0.5514,0.7136,0.7028,0.6864,0.8972,1,0.9136,0.7676,0.746,0.6594,0.6054,0.5568,0.4,0.4486,0.4108,0.2162,-0.2432,-0.8034,-0.3294,-0.2658,-0.2024,-0.318,-0.3294,-0.2196,0.1388,0.3294,0.7688,0.7052,0.341,0.37,0.341,0.4278,0.6128,0.7168,0.6764,0.7804,0.8382,0.9248,1,0.6878,0.7514,0.6764,0.607,0.6994,0.578,0.555,0.4682,0.526,0.0404,-0.183,0.25,0.256,-0.0182,-0.1036,-0.0792,0.1342,0.256,0.439,0.9024,0.6586,0.7378,0.6036,0.4574,0.494,0.7318,1,0.7074,0.7926,0.7804,0.817,0.756,0.7318,0.6402,0.6342,0.3902,0.3658,0.2682,0.2926,0.2196,0.2196,-0.2012,-0.05,-1,-1,1,-1,-1,-0.4,-0.3,-1,-0.625,-0.1528,-0.2084,-0.1528,0.0278,0.0278,0.0416,0.125,0.0834,0.3334,0.4862,0.8888,1,0.6944,0.6666,0.6528,0.7916,0.875,0.6806,0.5278,0.6944,0.4444,0.2362,0.2778,0.3194,0.3056,0.0972,0.3612,0.0834,0.1112,0.1388,-0.0694,'20'
-0.1352,0.4162,0.8324,0.946,0.4378,0.1784,0.119,-0.1082,-0.2054,-0.2864,-0.1136,-0.081,0.0594,0.081,0.3028,0.3244,0.5514,0.746,1,0.946,0.8864,0.9136,0.681,0.6162,0.4594,0.3838,0.4648,0.4918,0.6918,0.8756,0.8486,0.8702,-0.4422,0,0.562,0.5206,0.0454,-0.0124,-0.0702,-0.1652,-0.248,-0.2232,-0.1158,-0.1364,0,0.124,0.219,0.3554,0.4834,0.7356,0.876,1,0.8966,0.8596,0.8016,0.5414,0.4958,0.4338,0.5082,0.4628,0.5124,0.7356,0.686,0.7768,-0.4018,0.1026,0.6562,0.5758,0.0848,0.0536,-0.0892,-0.2098,-0.317,-0.259,-0.259,-0.25,0.0044,-0.0134,0.0804,0.2902,0.4018,0.5714,0.8304,0.9152,1,0.9286,0.8794,0.7276,0.616,0.5134,0.5446,0.5358,0.634,0.7544,0.7232,0.817,-0.5102,0.137,0.4832,0.3124,0.0022,-0.0516,-0.2584,-0.3752,-0.4248,-0.3978,-0.3662,-0.3078,-0.155,-0.0786,0.0202,0.137,0.2808,0.5102,0.7168,0.8338,1,0.8966,0.9506,0.7484,0.7078,0.636,0.4832,0.4966,0.582,0.5506,0.654,0.7168,-0.5704,0.1626,0.3146,0.1454,-0.2148,-0.3058,-0.5228,-0.6052,-0.6008,-0.666,-0.5488,-0.475,-0.3882,-0.2582,-0.1454,-0.0802,0.1062,0.2886,0.6052,0.8482,0.9436,1,1,0.8048,0.8004,0.6052,0.4838,0.5228,0.501,0.6138,0.666,0.7266,-0.6208,0.2728,0.3194,0.3038,-0.2416,-0.4858,-0.6988,-0.7298,-0.8442,-0.8442,-0.7662,-0.6624,-0.6728,-0.491,-0.4182,-0.2676,-0.2104,0.1012,0.2572,0.7818,0.9064,0.9844,1,0.9844,0.7714,0.6416,0.387,0.2728,0.3974,0.3662,0.3558,0.7714,-0.3262,0.4502,0.4932,0.3316,-0.213,-0.5956,-0.7196,-0.6334,-0.7844,-0.9838,-0.6118,-0.5956,-0.6064,-0.4824,-0.4932,-0.3478,-0.089,-0.1106,0.337,0.5364,0.9892,0.9354,1,0.9946,0.9408,0.7358,0.38,0.353,0.4124,0.4232,0.6118,0.7036,0.1,0.75,0.75,0.65,0.55,0.05,0.1,-0.05,-0.4,-0.3,-0.15,-0.15,0.15,-0.15,0.15,0,0.4,0.4,1,0.85,0.35,1,1,0.9,0.25,0.2,0.6,0.6,0.35,0.75,0.55,0.75,-0.0244,0.4146,0.8536,1,0.756,0.4146,0.0244,-0.0732,0.0244,-0.1708,-0.2196,0.0244,-0.1708,0.0732,0.3658,0.317,0.4634,0.6586,0.756,0.4634,0.4634,0.317,0.3658,0.5122,0.3658,0.2196,0.4146,0.4634,0.5122,0.8048,0.561,0.8536,-0.561,0.1952,0.2926,0.244,-0.1952,-0.3414,-0.5366,-0.561,-0.6098,-0.7804,-0.6098,-0.5122,-0.439,-0.244,-0.1952,-0.0244,0.0976,0.244,0.6098,0.7318,0.878,1,0.9756,0.8292,0.7318,0.683,0.4634,0.5854,0.4634,0.5854,0.6586,0.561,-1,-1,-1,-0.9874,-0.9866,-0.9462,-0.8892,-0.9224,-0.8892,-0.913,-0.8986,0.4136,0.9042,0.48,0.465,0.3416,0.0828,-0.2418,-0.4776,-0.5702,-0.5852,-0.6406,-0.6716,-0.848,-0.954,-0.9074,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.982,-0.9816,-0.7486,-0.0548,0.0564,-0.254,-0.4956,-0.765,0.0178,0.7608,0.888,0.609,0.591,0.4484,0.4492,-0.1608,-0.5344,-0.5784,-0.7008,-0.7776,-0.8472,-0.9072,-0.9082,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.9668,-0.6534,0.9066,0.9766,0.5932,0.3166,0.2266,-0.7068,-0.7134,-0.58,-0.6834,-0.5686,-0.6286,-0.6,-0.64,-0.64,-0.7144,-0.7772,-0.78,-0.33,0.0966,-0.5368,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,1,1,1,-0.2,-0.0572,0.8286,1,1,1,-0.8572,-1,-1,-1,-0.4,0.3428,-0.1428,-0.9428,-0.6572,-0.5714,-0.4,-0.6858,-0.4572,-1,-1,-1,-1,-1,-1,-1,0.2846,0.3038,0.3312,0.3464,0.3788,0.4048,0.4344,0.4496,0.45,0.118,0.178,0.1636,0.17,0.1654,0.1756,0.194,0.2274,0.2758,0.3728,0.5946,-0.3734,-0.2588,-0.7914,-0.4798,0.1408,0.5218,0.7956,1,-0.8034,-0.449,-0.2716,-0.2986,-0.3064,-0.0404,-0.0828,-0.052,0.318,0.5376,0.4644,0.368,0.3642,0.445,0.5646,0.607,0.765,0.9692,0.946,0.9576,1,0.9884,0.9114,0.8998,0.923,0.9114,0.9422,0.946,0.7264,0.7842,0.711,0.2292,-0.7766,-0.2662,-0.2514,-0.2364,-0.136,-0.1918,-0.1098,0.2812,0.5418,0.8398,0.769,0.5158,0.4488,0.352,0.5866,0.65,0.8138,0.7878,0.8064,0.9218,0.9218,0.9888,1,0.81,0.6164,0.8026,0.6984,0.7878,0.7356,0.6648,0.5716,0.2998,-0.6762,-0.2746,-0.1926,-0.0738,-0.0902,-0.2664,-0.0492,0.2582,0.4304,0.996,1,0.6804,0.5614,0.5492,0.6394,0.6886,0.7868,0.6516,0.7008,0.6886,0.6352,0.6598,0.5,0.414,0.4714,0.496,0.6558,0.5778,0.4426,0.5164,0.4304,0.2828,0.0548,-1,-1,1,-1,-1,-0.4,0.1,-1,-0.216,-0.2,-0.136,-0.168,-0.248,-0.264,0.12,0.056,0.072,0.232,0.728,0.712,0.792,0.792,0.936,0.84,0.968,1,0.776,0.712,0.264,0.36,0.248,0.328,0.472,0.504,0.28,0.408,0.456,0.376,0.216,-0.168,'20'
0.2578,0.6684,0.6264,0.2684,-0.379,-0.4684,-0.7052,-0.4736,-0.521,-0.721,-0.8842,-0.7158,-0.6684,-0.5316,-0.379,-0.2158,0.1526,0.7106,0.7106,0.6684,0.821,0.821,0.5684,0.5736,0.4316,0.3842,0.4368,0.5894,0.8422,0.9106,0.9474,1,0.0178,0.3058,0.6252,0.353,-0.3926,-0.566,-0.6962,-0.716,-0.9132,-0.933,-0.8382,-0.6884,-0.503,-0.29,-0.1124,0.1558,0.4912,0.7002,0.8934,0.8344,0.7948,0.8738,0.9764,0.8698,0.7514,0.6884,0.7594,0.8462,0.9802,1,0.9882,0.9684,-0.2446,0.0416,0.5574,0.441,-0.3778,-0.5242,-0.6838,-0.6706,-0.8968,-0.8836,-0.7372,-0.5974,-0.401,-0.2546,-0.1548,0.2312,0.5208,0.7604,0.9834,0.757,0.8602,1,0.7804,0.6638,0.6506,0.5774,0.7438,0.8104,0.9768,0.857,0.827,0.7604,-0.317,0.029,0.6508,0.559,-0.363,-0.4548,-0.6448,-0.7642,-0.7396,-0.7702,-0.7336,-0.559,-0.2434,-0.1516,0.0046,0.4824,0.8162,0.899,1,0.85,0.8928,0.7978,0.562,0.3874,0.4762,0.415,0.5926,0.7702,0.9204,0.7886,0.7734,0.5896,-0.357,0.32,0.7898,0.6198,-0.3818,-0.2982,-0.6724,-0.7434,-0.7064,-0.6846,-0.4838,-0.3786,-0.286,0.0108,0.4528,0.8424,1,0.864,0.9412,0.8826,0.629,0.354,0.0942,0.0418,0.0448,0.1716,0.3632,0.524,0.762,0.7928,0.5332,0.5486,-0.4256,0.6656,0.8784,0.473,-0.0946,-0.1452,-0.4088,-0.5574,-0.3986,-0.4594,-0.1386,0.044,0.3514,0.8108,1,0.9358,0.723,0.8852,0.902,0.8244,0.3986,0.0878,-0.1352,-0.1588,-0.0744,-0.0406,0.2432,0.4696,0.7736,0.8648,0.6756,0.6182,-0.407,0.8872,1,0.762,-0.023,-0.073,-0.3904,-0.3444,-0.2192,-0.0396,0.478,0.6618,0.645,0.1816,0.2026,0.0898,0.1942,0.4656,0.6744,0.549,-0.0146,-0.2066,-0.4406,-0.453,-0.119,-0.2108,-0.0648,0.19,0.4572,0.7828,0.8622,0.7788,0.5556,1,0.7038,0.4814,0.037,0.2592,0.3334,0.4814,-0.3334,0.1112,0.037,0.037,-0.2592,-0.2592,-0.1112,0.037,0.4814,0.5556,0.7778,0.8518,0.926,0.5556,0.037,0.2592,0.1852,0.5556,0.4814,-0.1112,0.1852,0.1112,0.037,0.4814,0.3334,0.7038,0.2592,0.4814,-0.037,-0.7038,-0.037,-0.037,-0.4814,-0.5556,-0.3334,-0.1852,-0.1852,-0.4814,-0.1112,0.1112,0.2592,0.7038,0.6296,0.4814,0.7038,0.7778,0.6296,0.3334,0.4814,0.4074,0.4074,0.5556,0.7778,1,1,1,0.013,0.2728,0.6364,0.4806,-0.1948,-0.3766,-0.6364,-0.4546,-0.6884,-0.4546,-0.3766,-0.5064,-0.4286,-0.091,0.1428,0.2728,0.4546,0.8962,0.8442,0.8442,0.8702,0.922,0.922,0.8182,0.6884,0.6884,0.7662,0.8182,0.974,1,1,0.7142,-1,-1,-1,-1,-1,-1,-0.9794,-0.9642,-0.9752,-0.977,-0.8122,-0.6364,-0.5704,-0.4122,-0.0672,0.3672,0.691,0.943,0.9806,0.509,-0.3,-0.5296,-0.6128,-0.8328,-0.9522,-0.966,-0.951,-0.954,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9724,-0.9636,-0.9746,-0.9736,-0.888,-0.7586,-0.6532,-0.454,-0.0482,0.556,0.8546,0.92,0.5714,0.1912,-0.4276,-0.6726,-0.7518,-0.8798,-0.9306,-0.9532,-0.9482,-0.9516,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.76,-0.7334,-0.6868,-0.7668,-0.9368,-0.932,-0.9092,-0.8364,-0.5546,-0.62,-0.711,-0.7456,-0.7182,-0.7856,-0.8182,-0.802,-0.8634,-0.7368,-0.64,-0.6,-0.62,-0.5934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,-0.9714,-1,-0.7142,0.3714,0.6,-0.2,-0.7714,-0.7142,-0.9142,-1,-0.9142,-0.9142,-0.8,0.9428,-0.1428,-0.4572,-0.6286,-0.8572,-0.8,-0.7714,-0.8572,-1,-1,-1,-1,-1,-0.5698,-0.5732,-0.5648,-0.5796,-0.5712,-0.6074,-0.6608,-0.6062,-0.5344,-0.3648,0.2356,0.2498,0.265,0.2998,0.349,0.3956,0.4376,0.4652,0.4466,-0.1038,-0.4934,0.2942,-0.8708,-0.8086,-0.7602,-0.7468,-0.7104,-0.975,-0.0866,0.2534,0.64,0.56,0.72,0.72,0.84,0.66,0.7134,0.7066,0.8266,0.56,1,0.76,0.8066,0.82,0.5066,0.4734,0.34,0.4134,0.6534,0.54,0.3666,0.2934,0.34,0.2534,0.4666,0.48,0.18,0.1066,0.0534,-0.3334,-0.0808,0.4106,0.3964,0.6562,0.4878,0.4596,0.8736,1,0.5438,0.7334,0.621,0.4948,0.7824,0.628,0.3894,0.3404,0.5228,0.3964,0.2912,0.179,0.3052,0.3824,0.0808,0.3684,0.235,0.0948,0.1298,0.2982,0.1438,-0.0036,-0.1088,-0.3192,0.5276,0.6764,0.6246,0.631,0.8122,0.4886,0.8706,0.9676,0.6894,0.7864,0.8964,0.754,0.8122,0.644,0.7476,0.8576,1,0.411,0.4304,0.5728,0.4952,0.657,0.4692,0.4498,0.3398,0.3398,0.3074,0.3852,0.3722,0.424,-0.0292,-0.534,-0.9906,1,-1,-1,-1,-1,-0.8,-1,-1,-0.0642,0.1192,0.211,0.2478,0.3394,0.523,0.4128,0.3578,0.4678,0.5964,0.6698,0.5046,0.4312,0.2294,0.5596,0.7064,0.4678,0.578,0.3944,1,0.5412,0.4496,0.5046,0.5046,0.3578,0.523,0.6514,0.7064,0.5412,0.523,0.3578,-0.3578,'21'
0.0772,0.5292,0.8832,0.5254,-0.1374,-0.2806,-0.5744,-0.8342,-0.8456,-0.985,-0.9398,-0.6046,-0.5706,-0.5104,-0.2994,0.0018,0.42,0.6534,0.7212,0.823,0.71,0.8758,1,0.8984,0.789,0.6648,0.7702,0.887,0.8268,0.9662,0.8568,0.789,-0.141,0.3378,0.7996,0.5756,-0.3582,-0.3446,-0.8506,-0.7284,-0.7792,-0.9592,-0.7624,-0.5722,-0.5416,-0.4466,-0.2496,0.0118,0.2938,0.64,0.7556,0.9016,0.7454,0.9762,1,0.8846,0.8506,0.7386,0.854,0.922,0.742,0.7522,0.7522,0.4668,-0.3276,0.192,0.7372,0.644,-0.1074,-0.2712,-0.421,-0.4096,-0.5,-0.5508,-0.4944,-0.3502,-0.2288,-0.1214,-0.0254,0.2938,0.5762,0.7514,1,0.87,0.8502,0.9436,0.7034,0.63,0.6242,0.6526,0.726,0.7882,0.6694,0.6102,0.579,0.3814,-0.3924,0.1734,0.7236,0.6402,0.0326,-0.0508,-0.2046,-0.2594,-0.2882,-0.3612,-0.3324,-0.1526,-0.03,0.0744,0.2074,0.5724,0.9192,1,0.9374,0.8774,0.9244,0.7158,0.4968,0.4602,0.4602,0.5672,0.6558,0.7732,0.6636,0.5932,0.5332,0.4054,-0.3798,0.3372,0.7184,0.4736,0.2432,0.1636,-0.1124,-0.1692,-0.2062,-0.1978,-0.0356,0.1266,0.2716,0.5618,0.8294,0.909,1,0.8662,0.909,0.8862,0.7524,0.6102,0.3826,0.2318,0.3116,0.4908,0.5904,0.8436,0.8094,0.5164,0.4168,0.3456,-0.3968,0.5732,0.933,1,0.3828,0.0406,-0.1852,-0.238,0.03,0.2768,0.5062,0.5062,0.6402,0.5308,0.1888,0.1394,0.0158,0.291,0.5802,0.6684,0.4498,0.1182,-0.164,-0.1288,-0.2452,0.0688,0.2452,0.5414,0.7072,0.3756,0.2804,0.1852,-0.0732,0.6406,0.9008,1,0.4138,-0.0874,0.0828,0.5982,0.5744,0.3096,-0.409,-0.532,-0.4468,-0.5082,-0.6454,-0.7494,-0.8298,-0.5272,-0.253,-0.2576,-0.2246,-0.3428,-0.6548,-0.6028,-0.6738,-0.5272,-0.5224,-0.0308,0.1064,0.0402,-0.1112,-0.2672,0.5,0.7,1,0.55,0.6,-0.15,0.05,-0.4,-0.15,-0.3,-0.25,0.1,0,0.3,0.05,0.5,0.4,0.65,0.6,0.9,0.95,0.8,0.95,0.85,0.8,0.75,0.9,1,0.85,0.9,0.75,0.8,0.4546,0.909,0.9546,0.7728,0.3636,0.2728,0.1818,0.1364,-0.091,-0.1364,-0.0454,-0.091,0,-0.2272,-0.0454,0.3636,0.6818,0.7728,0.7728,0.8636,0.8182,0.8636,1,0.909,0.7272,0.7728,0.7728,0.8636,0.909,0.909,0.9546,0.909,-0.4934,0.3066,0.4934,0.4934,0.12,-0.0934,-0.2266,-0.36,-0.1734,-0.0934,-0.04,0.3066,1,0.8934,0.52,0.3334,0.3066,0.44,0.7066,0.6534,0.6266,0.12,-0.0134,0.12,0.04,0.2534,0.36,0.7066,0.6266,0.3334,0.2534,0.2,-1,-1,-1,-1,-1,-1,-0.9832,-0.9856,-0.9864,-0.9848,-0.7946,-0.5148,-0.321,-0.0904,0.4342,0.8568,0.9756,0.7208,0.1084,-0.236,-0.3844,-0.6178,-0.8958,-0.9038,-0.8918,-0.8368,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9786,-0.9822,-0.9782,-0.9766,-0.8754,-0.6616,-0.4602,-0.292,0.2582,0.7478,0.9252,0.6914,0.1442,-0.319,-0.5688,-0.733,-0.9246,-0.9272,-0.9236,-0.8946,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7068,-0.7468,-0.6334,-0.6868,-0.9168,-0.8656,-0.7274,-0.8474,-0.74,-0.805,-0.6734,-0.7118,-0.695,-0.7818,-0.8484,-0.7984,-0.79,-0.8634,-0.9534,-0.9334,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,-0.9714,-0.9142,-0.5142,1,1,-0.7142,-0.5428,-0.4,-0.8858,-0.9714,-0.8572,-0.4,1,0,0.3428,0,-0.8286,-0.8286,-0.7714,-1,-1,-1,-1,-1,-1,-1,-0.5982,-0.6358,-0.6286,-0.6448,-0.6546,-0.6826,-0.6678,-0.554,-0.292,0.0252,0.5984,0.6192,0.621,0.6226,0.6568,0.6758,0.6862,0.6888,0.5874,0.0902,-0.4934,0.3882,-0.8588,-0.7394,-0.7486,-0.6042,-0.58,-0.2584,-0.2388,0.209,0.306,0.5374,0.5672,0.5074,0.9254,0.903,0.7164,0.4626,0.7462,0.8432,1,0.6194,0.4926,0.418,0.5672,0.2836,0.2238,0.3432,0.3208,0.3358,0.515,0.515,0.2388,0.2238,0.2538,0.1044,0.0522,-0.3208,-0.1492,-0.6492,-0.2648,0.1692,0.3456,0.7574,0.5,0.603,0.6912,0.5808,0.9558,0.8088,0.9338,1,0.6398,0.6764,0.5662,0.3602,0.5736,0.3676,0.0808,0.4044,0.3456,0.2794,0.0956,0.228,0.3308,0.2942,0.3236,0.353,0.2868,0.0514,-0.1102,-0.5148,0.5174,0.7152,0.4884,0.622,0.5,0.5872,0.7442,0.564,0.8488,0.9652,0.9418,0.9476,0.8604,1,0.7674,0.9302,0.75,0.4942,0.5058,0.4476,0.6104,0.4652,0.2906,0.3198,0.2268,0.372,0.3024,0.1628,0.2094,0.2326,0.093,-0.2674,-0.9838,1,-1,-1,-1,-1,-0.8,-1,-1,0.4022,0.2874,0.4712,1,0.816,0.2414,0.4022,-0.0114,0.3564,0.5862,0.4942,0.2414,0.0114,0.0574,0.3334,0.3334,0.2874,0.1954,0.0574,0.1034,0.908,0.885,0.931,0.4022,-0.0344,0.1264,0.0344,-0.1494,0.0344,-0.0574,0.0114,-0.3334,'21'
-0.3426,0.1124,0.5506,0.5956,0.5338,0.1516,-0.1798,-0.236,-0.264,-0.2922,-0.1516,-0.0562,-0.045,0.1686,0.4326,0.7304,0.8314,1,0.9382,0.7584,0.9214,0.8202,0.6124,0.4944,0.4044,0.4214,0.455,0.5898,0.7472,0.7978,0.6798,0.6742,-0.4474,0.0464,0.3888,0.4572,0.3986,0.115,-0.2128,-0.2666,-0.3008,-0.3202,-0.2762,-0.1688,-0.1002,-0.0172,0.1688,0.3398,0.7164,0.8386,0.9854,1,0.9658,0.9756,0.9706,0.7556,0.6382,0.6088,0.5158,0.687,0.6724,0.643,0.8974,0.7066,-0.4692,0.0664,0.365,0.3128,0.2512,0.0758,-0.256,-0.3128,-0.3554,-0.3412,-0.308,-0.2086,-0.1232,-0.0996,0.0522,0.256,0.4312,0.564,0.7726,1,0.929,0.9526,0.9242,0.8626,0.711,0.5924,0.6304,0.6114,0.6114,0.654,0.8152,0.7726,-0.4948,0.119,0.332,0.2026,0.0396,-0.0438,-0.3028,-0.4196,-0.3696,-0.499,-0.332,-0.236,-0.2652,-0.1064,0.0062,0.0814,0.2568,0.4948,0.716,0.9206,1,0.9624,0.9582,0.9458,0.8038,0.6702,0.5782,0.5532,0.641,0.595,0.7578,0.737,-0.5476,0.1458,0.2854,0.1628,-0.1966,-0.3404,-0.4884,-0.5264,-0.5052,-0.6068,-0.4884,-0.4164,-0.332,-0.2178,-0.1078,0.0064,0.167,0.2854,0.5434,0.8182,0.9916,1,1,0.9874,0.8562,0.6532,0.5856,0.5392,0.5898,0.5434,0.6914,0.666,-0.3958,0.5468,0.7462,0.6918,-0.2688,-0.4682,-0.9214,-0.7824,-0.7402,-0.7946,-0.722,-0.7402,-0.577,-0.4924,-0.4924,-0.3354,-0.1722,-0.0876,0.2024,0.5528,0.8852,0.8248,0.9456,1,0.7522,0.4924,0.4984,0.4562,0.565,0.4502,0.4502,0.4622,-0.4884,0.5246,0.7622,0.4522,-0.3436,-0.5142,-0.6434,-0.752,-0.7416,-0.6796,-0.726,-0.4832,-0.5762,-0.5142,-0.3282,-0.3902,-0.3644,-0.1112,0.1214,0.4988,0.9328,1,0.8864,0.9432,0.6848,0.4006,0.3746,0.1214,0.1782,0.0852,-0.0026,0.1834,-0.1852,0.037,0.7038,0.4814,0.4814,0.1112,-0.1852,-0.3334,-0.6296,-0.3334,-0.1112,0.037,0.2592,0.3334,0.5556,0.8518,0.6296,0.7038,1,0.8518,0.5556,0.926,0.4814,0.2592,0.1852,0.037,0.7038,1,0.926,0.8518,0.4814,0.4074,-0.421,0.2106,0.421,0.4736,0.5264,0.2106,-0.0526,-0.2106,-0.2106,-0.2632,-0.1052,0,0.0526,0.2632,0.421,0.7894,0.8948,1,1,0.9474,0.9474,0.8422,0.7894,0.579,0.3684,0.4736,0.4736,0.579,0.6842,0.8948,0.9474,0.7368,-0.5238,0.2142,0.2858,0.3334,-0.2858,-0.262,-0.6428,-0.5952,-0.5476,-0.7142,-0.6428,-0.5714,-0.4524,-0.4048,-0.238,-0.1428,0.0238,0.1904,0.3096,0.619,1,0.9524,0.9524,0.9762,0.738,0.4762,0.5,0.4524,0.5476,0.4762,0.5952,0.5238,-1,-1,-1,-1,-1,-1,-0.731,-0.7738,-0.7908,-0.81,-0.66,0.7164,0.9622,0.8736,0.726,0.625,0.527,0.3324,0.0516,-0.1976,-0.1272,-0.3058,-0.4852,-0.6888,-0.8782,-0.9172,-0.9154,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9138,-0.924,-0.9222,-0.9238,-0.8656,0.0284,0.6786,0.954,0.924,0.8642,0.779,0.6582,0.1108,-0.6478,-0.6336,-0.6992,-0.7194,-0.7986,-0.92,-0.9002,-0.9218,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9994,-1,-0.9168,-0.7468,-0.7168,-0.8168,-0.7934,-0.6868,-0.683,-0.5544,-0.5286,-0.4716,-0.5258,-0.6716,-0.7286,-0.7058,-0.6034,-0.3868,-0.1534,0.1732,0.19,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3428,-0.2572,-0.1142,-0.4286,1,1,1,-0.8,-1,-1,-0.9714,-0.5142,1,1,-0.6858,0.4,-0.6,0.1142,-0.1428,-0.2572,0.1714,-1,-1,-1,-1,-1,-1,0.414,0.4036,0.4252,0.425,0.4446,0.4584,0.475,0.49,0.4734,0.1398,-0.1732,-0.1664,-0.1242,-0.1032,-0.0344,0.0186,0.1286,0.2572,0.4368,0.6182,-0.3066,-0.247,-0.8898,-0.4644,0.16,0.4916,0.6886,1,1,0.941,0.4926,0.2508,0.1858,0.3274,0.4572,0.4042,0.475,0.5812,0.4454,0.3746,0.292,0.3274,0.2508,0.1564,0.298,0.1446,0.2094,0.1386,0.3924,0.3392,0.0384,0.115,0.1328,0.1622,0.2744,0.2508,0.2626,0.0796,0.2212,-0.1446,0.9312,0.7626,0.4062,0.4376,0.4126,0.5874,0.775,0.8,0.7562,0.725,0.625,0.45,0.6438,0.575,0.8188,0.8876,0.8374,0.6376,0.6188,0.5624,0.7938,1,0.8438,0.8876,0.7,0.5938,0.8312,0.8938,0.5562,0.5376,0.65,0.1688,0.835,0.7096,0.2806,0.2344,0.241,0.4126,0.4522,0.9802,0.9604,0.8086,0.6964,0.5842,0.637,0.6106,0.736,0.835,0.7492,0.9604,0.9076,0.9142,0.9802,0.9472,0.9208,0.868,0.967,0.868,0.9538,0.835,0.9868,1,0.8086,0.3598,-0.9956,1,-1,-1,-1,1,-1,-1,-1,-0.2052,-0.0994,0.0332,0.0198,0.0994,-0.0066,0.0198,0.3378,0.4304,0.5364,0.6424,0.9072,0.9338,0.9206,0.9072,0.894,0.9072,1,0.841,0.735,0.457,0.6292,0.457,0.4172,0.457,0.1788,0.139,0.2186,0.4834,0.4966,0.4172,0.0066,'22'
-0.3348,0.1572,0.6128,0.435,0.4214,0.2392,-0.057,-0.2072,-0.1436,-0.2256,0.0206,0.0478,0.189,0.3486,0.5854,0.6948,0.9682,0.9864,1,0.8906,0.8634,0.763,0.5126,0.3804,0.4032,0.4168,0.5126,0.7858,0.6856,0.7358,0.6674,0.5398,-0.4574,0.0674,0.4964,0.3724,0.2446,0.1312,-0.1028,-0.1632,-0.2164,-0.2164,-0.0886,-0.0816,0.0284,0.1596,0.2588,0.3476,0.6276,0.8298,0.8192,1,0.9858,0.8794,0.9326,0.649,0.5,0.5142,0.5426,0.7056,0.6276,0.7022,0.9362,0.7446,-0.451,0.0882,0.4444,0.2942,0.0784,-0.0164,-0.1732,-0.3006,-0.2942,-0.2942,-0.1928,-0.1274,-0.085,0.0392,0.2058,0.3398,0.4412,0.6078,0.8922,0.9282,0.9968,1,0.9542,0.9052,0.6602,0.6764,0.5948,0.6602,0.6568,0.853,0.8562,0.8072,-0.5326,0.1224,0.3386,0.1034,-0.1574,-0.1924,-0.3386,-0.5136,-0.4214,-0.45,-0.4626,-0.31,-0.186,-0.167,-0.027,0.1574,0.3196,0.4912,0.698,0.9078,0.9904,1,0.9872,0.9014,0.7456,0.6566,0.5802,0.7106,0.6884,0.7996,0.8506,0.8028,-0.5904,0.1772,0.3184,-0.0362,-0.3908,-0.463,-0.611,-0.6626,-0.6868,-0.7074,-0.6006,-0.4526,-0.4354,-0.284,-0.2014,-0.1188,0.0878,0.3322,0.5938,0.7866,0.945,0.945,1,0.938,0.7488,0.5766,0.5972,0.6386,0.611,0.7522,0.8072,0.7694,-0.5178,0.4062,0.4866,0.009,-0.3794,-0.5224,-0.8482,-0.8572,-0.8884,-0.9732,-0.759,-0.741,-0.616,-0.6072,-0.4732,-0.4108,-0.2322,0.0268,0.3526,0.6518,0.8482,0.9866,1,0.9508,0.6474,0.5134,0.3214,0.4508,0.4062,0.4866,0.6696,0.567,-0.0898,0.2696,0.2022,0.0956,-0.4832,-0.6236,-0.7472,-0.8426,-0.8708,-0.8258,-0.9382,-0.8314,-0.7134,-0.691,-0.4832,-0.5,-0.4326,-0.264,-0.0562,0.3258,0.7978,0.9382,1,0.8426,0.7192,0.5224,0.354,0.3426,0.4214,0.455,0.5562,0.5562,-0.2142,0.1428,0.5714,0.3572,0.4286,0.1428,-0.2142,-0.1428,-0.3572,-0.2142,0,0,0.4286,0.5714,0.8572,1,0.9286,0.9286,0.9286,0.7142,0.5714,0.5,0.1428,0.2858,0.2858,0.2858,0.5714,0.7142,0.4286,0.5714,0.2858,0.1428,-0.3658,0.0732,0.6586,0.6586,0.4146,0.2196,-0.0732,-0.122,-0.122,-0.2196,0.0244,0.0244,0.1708,0.2682,0.5122,0.8048,1,1,0.9512,0.8048,0.8048,0.5122,0.2682,0.1708,0.2196,0.2682,0.4634,0.756,0.7074,0.7074,0.6586,0.317,-0.4736,0.2842,0.3894,0.0526,-0.2632,-0.3684,-0.5578,-0.5578,-0.5158,-0.5368,-0.4736,-0.3684,-0.4526,-0.2,-0.1158,-0.0736,0.1578,0.3684,0.6,0.7894,0.979,0.8106,1,0.9368,0.7894,0.4948,0.621,0.6842,0.621,0.7474,0.7264,0.7474,-1,-1,-1,-1,-1,-1,-1,-1,-0.774,-0.7962,-0.7064,0.696,0.943,0.9242,0.9196,0.9592,0.8462,0.5388,0.1974,-0.1426,-0.3954,-0.6634,-0.8824,-0.7962,-0.7716,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9422,-0.9468,-0.9196,-0.2698,0.0898,0.3846,0.5554,0.5876,0.7426,0.9234,0.0594,-0.646,-0.7746,-0.8986,-0.9576,-0.9442,-0.9424,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.94,-0.8068,-0.7976,-0.685,-0.5326,-0.555,-0.5,-0.455,-0.4376,-0.51,-0.6576,-0.6824,-0.6246,-0.4834,-0.8434,-0.8568,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,1,1,1,0.3428,-0.9142,-1,-1,-1,-0.4572,0.9714,0.5714,-0.3714,-0.1714,-0.6286,-0.8572,-0.7428,-1,-1,-1,-1,-1,-1,-1,-1,0.4642,0.4906,0.4966,0.515,0.5344,0.5574,0.5696,0.5754,0.5128,0.1058,-0.377,-0.318,-0.2882,-0.2446,-0.1726,-0.0978,0.0012,0.1578,0.3212,0.561,-0.3466,-0.0588,-0.9222,-0.7222,-0.2372,-0.0532,0.0412,0.8834,1,0.843,0.3404,0.068,0.1938,0.1518,0.665,0.4764,0.3194,0.0994,0.1518,0.2252,0.11,0.267,0.0786,-0.1204,-0.2042,0.1518,0.2146,-0.0786,0.0994,0.0052,-0.089,-0.0472,0.0786,0.0786,-0.4346,0.0158,-0.1414,-0.0576,-0.3926,-0.6754,1,0.8438,0.25,0.1718,0.0704,0.3124,0.664,0.6016,0.414,0.414,0.375,0.539,0.4218,0.3906,0.4296,0.3282,0.461,0.4062,0.2344,0.2188,0.3282,0.1016,0.2734,0.414,0.2968,0.1562,0.2656,0.1406,0.1094,-0.1562,-0.289,-0.4766,0.7976,0.6276,0.2146,0.0284,-0.085,0.0364,0.4656,1,0.9434,0.8462,0.8138,0.7652,0.5708,0.5142,0.7652,0.8542,0.5466,0.587,0.7814,0.498,0.6356,0.5708,0.6438,0.749,0.7004,0.587,0.749,0.7732,0.7652,0.3846,0.5384,-0.1012,-0.98,1,-1,-1,-1,0.6,-0.8,-1,-1,0.1628,0.0388,-0.0388,0.2714,0.1938,0.0852,0.1162,0.3644,0.1318,0.5348,0.659,0.7054,0.721,0.1318,0.5504,0.7364,0.9534,1,0.5348,0.5194,0.4108,0.3798,0.2248,0.1162,0.0698,0.2094,0.2404,0.2558,0.3334,0.1782,0.1628,-0.1782,'22'
-0.3014,0.0352,0.4552,0.8154,1,0.9674,0.915,0.7304,0.7322,0.7358,0.8552,0.7936,0.8172,0.6254,0.486,0.4426,0.3248,0.334,0.4498,0.5512,0.6796,0.7918,0.6978,0.4606,0.343,0.2778,0.3304,0.3502,0.439,0.5692,0.6452,0.7322,-0.0376,0.4016,0.985,0.8766,0.97,0.4556,0.603,0.8136,1,0.8436,0.609,0.4828,0.182,0.2782,0.0316,0.0076,-0.0196,0.1008,0.3294,0.4526,0.6422,0.2572,-0.0226,-0.0466,0.0256,-0.0676,0.0286,0.3444,0.7234,0.7022,0.7354,0.5128,-0.3496,0.2988,0.5834,0.4674,0.2906,0.0366,-0.2744,-0.2886,-0.4208,-0.372,-0.2988,-0.0996,0.0244,0.1566,0.3842,0.561,0.7724,0.9208,0.9918,1,0.9878,0.941,0.5914,0.3536,0.2926,0.2012,0.3434,0.3944,0.5224,0.7032,0.8862,0.9186,-0.399,0.3146,0.481,0.4444,-0.1006,-0.3902,-0.5482,-0.6172,-0.6864,-0.7924,-0.6972,-0.533,-0.5352,-0.3102,-0.0768,0.1394,0.4702,0.8336,0.961,0.9308,0.9092,1,0.7794,0.4162,0.2714,0.2302,0.1352,0.187,0.3946,0.533,0.7016,0.8962,-0.4366,0.2412,0.6612,0.792,0.2204,-0.0874,-0.3762,-0.3908,-0.447,-0.5344,-0.2806,-0.1934,-0.0458,0.0706,0.314,0.6612,0.8878,1,0.9438,0.9272,0.8544,0.815,0.5094,0.1476,0.1808,0.1206,0.1726,0.2142,0.4968,0.5884,0.5384,0.4408,-0.2476,0.49,1,0.995,0.7054,0.4184,0.1708,0.2128,0.4184,0.4852,0.4184,0.4778,0.5396,0.3664,0.4332,0.4356,0.2178,0.3712,0.458,0.4778,0.2896,0.193,-0.0198,-0.307,-0.1014,-0.094,0.1608,0.3788,0.656,0.5792,0.1362,-0.0174,0.1942,0.6474,0.4244,0.108,0.295,0.313,0.3706,0.4496,0.392,0.3598,-0.0828,-0.3454,-0.241,-0.2446,-0.331,-0.2086,0.1798,0.6224,1,0.9028,0.5072,0.4496,-0.1834,-0.8454,-0.6582,-0.6188,-0.6008,-0.2122,0.2302,0.3202,0.1044,0.277,-0.2308,0.1282,0.5384,0.641,1,0.7948,0.5384,0.4872,0.2308,0.4358,0.5898,0.5384,0.8974,0.7436,0.7948,0.5898,0.282,0.282,0.4358,0.2308,0.5384,0.7436,0.641,0.3846,0.0256,0.2308,0.1794,0.0256,0.282,0.3334,0.1794,0.3846,-0.35,0,0.3,0.7,0.75,0.85,0.7,0.5,0.45,0.45,0.8,1,0.95,0.9,0.9,0.65,0.45,0.5,0.45,0.6,0.8,0.95,0.85,0.5,0.4,0.15,0.2,0.3,0.3,0.45,0.65,0.7,-0.229,0.0844,0.6386,0.9036,1,0.6626,0.5422,0.5662,0.759,0.8796,1,0.6868,0.518,0.3976,0.2772,0.3254,0.3012,0.3494,0.6386,0.6144,0.6386,0.3494,0.2772,0.3012,0.3012,0.229,0.3734,0.4458,0.7832,0.9036,0.9278,0.8314,-1,-1,-1,-1,-1,-1,-1,-0.9824,-0.9768,-0.9824,-0.762,0.2864,0.2362,-0.0018,0.2824,-0.3536,-0.56,-0.4054,-0.3694,-0.4564,-0.5696,-0.7844,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9832,-0.9798,-0.9494,-0.6854,0.4822,0.3164,-0.1146,0.444,-0.3724,-0.5386,-0.4226,-0.4688,-0.597,-0.673,-0.867,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9,-0.8934,-0.74,-0.42,-0.849,-0.9124,-0.8912,-0.7634,-0.81,-0.8256,-0.74,-0.7934,-0.94,-0.8916,-0.879,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,-0.4286,1,1,1,1,1,-0.2858,-0.4,-1,-0.9142,0,0.2,-0.4858,-0.4858,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,0.9636,0.9166,0.6056,0.4814,-1,-1,-0.8944,-0.7654,-0.6882,-0.601,-0.5798,-0.6608,-0.3732,-0.4188,-0.8666,1,-0.7376,-0.243,0.1812,0.6328,0.6082,1,-0.5422,0.0844,0.518,0.5662,0.759,0.5422,0.9278,0.9518,0.518,0.8554,0.976,1,0.8796,0.8314,0.5662,0.735,0.8554,0.9518,0.9278,0.6144,0.6868,0.7832,0.9036,0.9518,0.8796,0.9036,0.9278,1,0.8554,0.9278,0.8072,0.1084,-0.244,0.0732,0.4146,0.439,0.4878,0.3902,0.6098,0.9268,0.5366,0.7804,0.9024,0.9512,0.6586,0.6342,0.7318,0.4146,0.9024,0.8536,0.6342,0.4634,0.7074,0.8536,0.6098,0.683,0.683,0.7804,1,0.9756,0.683,0.8048,0.7074,0.3414,0.6558,0.836,0.918,0.8852,0.754,0.7704,0.918,0.9672,0.7704,0.8196,0.8196,0.9508,0.6722,0.7704,0.705,0.7214,1,0.918,0.754,0.7868,0.7868,0.8032,0.754,0.7868,0.7214,0.6558,0.705,0.7214,0.6886,0.7214,0.623,0.5082,0.0296,-1,-1,1,-1,-1,-1,-0.8,-1,0.7284,0.6544,0.2592,0.2346,0.5556,0.8766,0.753,0.4568,0.8766,0.9506,1,0.4074,0.4814,0.4074,0.7284,0.8766,0.9506,0.3828,0.6296,0.679,0.5802,0.7038,0.7778,0.6544,0.358,0.2098,0.7778,0.5308,0.5062,0.2592,-0.2346,-0.5802,'23'
-0.3132,-0.0208,0.4362,0.833,0.9512,0.8654,0.7308,0.529,0.427,0.369,0.4918,0.7796,1,0.986,0.9072,0.7402,0.717,0.71,0.8028,0.7518,0.6032,0.369,0.29,0.1856,0.1856,0.2158,0.3016,0.3828,0.4014,0.4618,0.536,0.3852,-0.3714,-0.0974,0.38,0.7502,0.8422,0.827,0.6648,0.5136,0.5794,0.7438,0.8116,1,0.7438,0.5356,0.4612,0.3296,0.3734,0.5158,0.6078,0.5378,0.391,0.1084,0.058,-0.0054,0.0406,0.0952,0.1698,0.2332,0.2246,0.2354,0.321,0.2354,-0.3382,0.201,0.598,1,0.897,0.5246,0.196,0.0466,0.022,0.1372,0.3308,0.5318,0.696,0.7844,0.8578,0.8824,0.9706,0.9706,0.9632,0.8848,0.8138,0.5662,0.3284,0.201,0.1814,0.1912,0.2574,0.3726,0.5172,0.6692,0.7892,0.7254,-0.4686,0.232,0.4014,0.413,0.0928,-0.1856,-0.348,-0.4246,-0.3758,-0.5662,-0.3574,-0.1508,-0.2018,0.0672,0.1926,0.4106,0.7772,0.9698,1,0.9118,0.9072,0.6636,0.3968,0.283,0.1624,0.1276,0.13,0.1856,0.2366,0.3828,0.4872,0.5082,-0.4538,0.218,0.6282,0.7846,0.223,-0.059,-0.3616,-0.3744,-0.4642,-0.5794,-0.223,-0.1794,-0.1872,0.0924,0.2616,0.5488,0.8564,1,0.9076,0.9154,0.8206,0.6256,0.482,0.3102,0.0102,0.0102,0.0692,0.159,0.3206,0.4642,0.6974,0.6308,-0.3178,0.3444,0.8842,1,0.9536,0.7086,-0.0066,0.0894,0.1292,-0.063,0.6324,0.7152,0.7582,0.957,0.914,0.6126,0.606,0.6358,0.5034,0.649,0.4702,0.053,-0.063,-0.2252,-0.2484,-0.0662,-0.043,0.3278,0.606,0.6026,0.4504,0.3378,-0.0726,0.3932,0.5512,0.53,0.983,1,0.5642,0.6538,0.7864,0.7906,0.6624,0.2948,-0.2436,-0.3974,-0.0684,-0.0684,0.1966,0.3376,0.594,0.6838,0.47,-0.0086,-0.0556,-0.5854,-0.6496,-0.8676,-0.8548,-0.3418,0.0598,0.0812,0.0642,0.0512,-0.1794,0.077,0.6924,0.9488,1,0.4358,0.3334,0.2308,0.1282,0.0256,0.0256,0.3334,0.5384,0.641,1,1,0.7948,0.641,0.6924,0.5384,0.5384,0.1794,-0.0256,0.077,-0.1282,0.2308,0.1282,0.1794,0.4872,0.5384,0.6924,0.5384,-0.4,0.15,0.45,0.85,1,0.75,0.5,0.4,0.3,0.2,0.35,0.6,0.8,0.95,1,0.75,0.8,0.7,0.75,0.7,0.55,0.35,0.2,0,0.05,0.1,0.25,0.35,0.45,0.55,0.6,0.55,-0.3902,0,0.3902,0.878,0.8048,0.4146,0.2196,0.0244,0,0.1464,0.1708,0.6342,0.8048,1,0.8048,0.6098,0.6342,0.683,0.7318,0.5854,0.6098,0.3902,0.1708,0,0.0732,0.1708,0.122,0.3414,0.3902,0.3902,0.7074,0.6098,-1,-1,-1,-1,-1,-1,-0.9894,-0.9836,-0.9878,-0.9844,-0.5356,0.801,0.8034,0.7356,0.51,-0.0244,-0.3732,-0.3666,-0.3218,-0.409,-0.5318,-0.7162,-0.8254,-0.7638,-0.8148,-0.8856,-0.8554,-0.811,-0.8398,-0.8726,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9866,-0.9862,-0.9868,-0.9876,-0.5372,0.5122,0.9516,0.5202,0.2138,-0.1832,-0.4502,-0.5062,-0.5586,-0.5734,-0.7182,-0.8352,-0.9072,-0.8786,-0.8984,-0.9258,-0.9162,-0.898,-0.908,-0.9308,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.838,-0.8514,-0.858,-0.7914,-0.5146,-0.9518,-0.9376,-0.9072,-0.873,-0.8,-0.8044,-0.7894,-0.7668,-0.8508,-0.884,-0.7988,-0.6468,-0.9068,-0.7768,-0.7068,-0.8168,-0.7568,-0.8168,-0.9234,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,-0.6572,-0.5142,-0.6,-0.6572,-0.9142,-1,-0.8858,0.0572,-0.1428,-0.4858,-0.7142,-0.8286,-0.8572,-0.8,-0.9714,-1,-1,-0.4,-1,-1,-1,1,1,1,1,1,1,1,1,0.8926,0.7158,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9526,-0.2134,0.753,-0.5844,0.0802,0.471,0.5836,0.5302,1,0.0086,0.0434,0.4434,0.6,0.5478,0.3392,0.2174,0.8956,0.913,0.7218,0.9826,1,0.913,0.774,0.9304,0.9304,0.8434,0.9478,0.8782,0.8608,0.8608,0.8782,0.7044,0.513,0.7044,0.4956,0.4608,0.426,0.3044,0.3566,0.2174,-0.2696,0.1764,0.3176,0.4824,0.3648,0.2706,0.0824,0.3176,0.9058,0.9058,0.6236,0.6942,0.6942,0.6,0.6236,0.7176,0.7882,0.7648,1,1,0.8824,0.8588,0.9764,0.8352,0.9294,0.953,0.9058,0.953,0.7648,0.8352,0.8118,0.1058,-0.2,0.5868,0.9008,0.9174,0.752,0.4546,0.5538,0.7024,0.9504,1,0.7852,0.7686,0.5868,0.4876,0.4876,0.7024,0.686,0.719,0.6694,0.6198,0.5702,0.2066,0.3884,0.405,0.2232,0.438,0.2562,0.2728,0.2562,0.3058,0.0414,0.157,0.0248,0.125,-1,-1,1,-1,-1,0.2,-0.8,-1,0.2778,0.3704,0.0926,0.5186,0.5926,0.8518,0.2038,0.574,0.7962,0.963,0.8888,0.8704,1,0.3334,0.4444,0.463,0.8148,0.8148,0.5,0.4074,0.6296,0.8518,0.6112,0.5,0.463,0.4444,0.4814,0.1666,0.2592,0.2592,0.2962,-0.1112,'23'
-0.3924,-0.097,0.1898,0.6372,0.7806,0.9494,0.5444,0.1476,0.1562,-0.114,0.232,0.114,0.3586,0.3924,0.6118,0.8312,0.8396,0.8312,0.865,0.713,0.9494,0.9916,0.7552,1,0.8988,0.6034,0.6118,0.3586,0.5358,0.4514,0.8228,0.7468,-0.4708,-0.0818,0.1984,0.4864,0.8832,1,0.572,0.1596,0.175,0.1206,-0.0818,0.2608,0.284,0.105,0.5642,0.6032,0.7588,0.891,0.7198,0.6654,0.4008,0.6342,0.5564,0.3386,0.5408,0.4864,0.2918,0.2062,0.4474,0.105,0.5486,0.642,-0.4924,-0.1076,0.177,0.4076,0.8924,1,0.5384,0.1462,0.1384,0.1616,-0.0384,0.2154,0.2076,0.2076,0.4154,0.4692,0.5692,0.777,0.5616,0.377,0.4154,0.4538,0.423,0.4924,0.5,0.2,0.1924,0.223,-0.0308,0.177,0.1538,0.2462,-0.5294,-0.1324,0.125,0.2648,0.9412,1,0.4192,0.2058,0.2058,0.1986,0.0736,0.2132,0.3014,0.3088,0.4264,0.6398,0.7058,0.625,0.647,0.5442,0.3898,0.5294,0.5882,0.5,0.2868,0.2352,0.2942,0.2206,0.1764,0.2648,0.25,0.2426,-0.5654,-0.1428,0.0536,0.2142,0.881,0.8988,0.6012,0.3274,0.2798,0.238,0.2322,0.2916,0.4048,0.5358,0.6726,0.8036,1,0.8214,0.6846,0.6428,0.6608,0.619,0.637,0.5952,0.5358,0.3096,0.3572,0.3572,0.2262,0.369,0.4762,0.4584,-0.6232,-0.2174,-0.113,0.2464,0.5014,0.7972,0.6174,0.2928,0.1246,0.1188,0.2058,0.2,0.3566,0.4086,0.745,0.942,1,0.7276,0.6928,0.629,0.6812,0.6986,0.6522,0.513,0.4492,0.3508,0.3566,0.3798,0.3508,0.426,0.5188,0.5768,-0.642,-0.4546,-0.2556,0.2728,0.875,0.8978,0.517,0.1704,-0.0398,0.0284,0.0512,0.1876,0.2954,0.4488,0.8522,1,0.9432,0.7444,0.5512,0.5796,0.6818,0.6534,0.4546,0.4034,0.3182,0.3182,0.3352,0.4034,0.267,0.4318,0.5624,0.5738,-0.4418,-0.3024,0.0232,0.3954,0.8604,0.907,0.1628,0.1628,0.0232,-0.2558,0.1162,-0.3954,0.3488,0.3488,0.3488,0.907,0.814,0.814,1,0.721,0.907,1,0.3024,0.907,0.8604,0.4884,0.628,0.4418,0.5814,0.5814,0.8604,0.9534,-0.3888,0,0.3888,0.7222,0.6112,1,0.7778,0.3334,0.3334,0,0.2778,0.1666,0.4444,0.5556,0.5556,0.8334,0.8888,0.7222,0.8334,0.6666,0.7778,0.8334,0.4444,0.8888,0.6666,0.6112,0.6666,0,0.3888,0.2778,0.3888,0.0556,-0.6,-0.22,-0.12,0.18,0.34,0.72,0.6,0.28,0.18,0.14,0.16,0.24,0.32,0.44,0.68,0.94,1,0.82,0.64,0.66,0.64,0.66,0.64,0.52,0.34,0.3,0.4,0.4,0.38,0.42,0.48,0.52,-1,-1,-1,-1,-1,-1,-0.9612,-0.9772,-0.9756,-0.9642,-0.4884,-0.0158,0.313,0.56,0.6914,0.8452,0.9566,0.9704,0.637,0.1582,-0.1044,-0.1586,-0.8396,-0.883,-0.97,-0.9694,-0.9736,-0.973,-0.973,-0.9798,-0.9182,-0.8494,-0.9654,-1,-1,-1,-1,-1,-1,-0.976,-0.9828,-0.9816,-0.9704,-0.0656,-0.1244,0.2024,0.2626,0.3032,0.4908,0.6374,0.797,0.9228,0.8118,0.3982,0.3022,-0.8772,-0.855,-0.9754,-0.9782,-0.9808,-0.9838,-0.981,-0.985,-0.877,-0.759,-0.782,-1,-1,-1,-1,-1,-1,-0.8934,-0.9534,-0.9168,-0.8234,-0.74,-0.7,-0.82,-0.835,-0.88,-0.9,-0.87,-0.86,-0.83,-0.815,-0.79,-0.752,-0.8334,-0.57,-0.69,-0.85,-0.8368,-0.74,-0.9134,-0.8,-0.24,0.1532,0.9166,-1,-1,-1,-1,-1,-1,0.3428,-0.9142,-0.5428,1,1,1,0.5142,-0.9428,-1,-0.9714,-0.8858,-0.9142,-0.9142,-0.4286,1,1,1,0.8858,0.9714,-0.8572,-1,-0.9714,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.0898,-0.0012,-0.0012,-0.0054,-0.0426,-0.1132,-0.1654,-0.2182,-0.251,-0.4592,-0.3866,-0.5882,-0.2294,-0.1848,-0.1422,0.3534,0.2642,1,0.1492,0.403,0.582,0.5224,0.4328,0.4926,0.597,0.806,0.9552,0.9702,0.9402,0.985,0.9402,0.8208,0.8508,0.9702,1,0.9552,0.8956,0.8656,0.7612,0.6268,0.4776,0.5074,0.3432,0.403,0.2986,0.2388,0.1792,0.1344,0.015,-0.2238,-0.4576,0.1186,0.7628,0.4746,-0.0338,0.1016,0.1186,0.4746,1,0.9322,0.8306,0.8644,0.5254,0.5424,0.4238,0.8814,0.8814,0.7118,0.644,0.8306,0.644,0.322,0.322,0.0678,0.0848,0.322,0.2882,0,-0.0848,-0.1016,-0.0678,-0.339,0.2962,0.568,0.926,0.7778,0.3456,0.2716,0.4444,0.642,0.9754,1,0.9012,0.8766,0.679,0.568,0.7284,0.926,0.9382,0.9012,0.8272,0.8766,0.6172,0.5308,0.4692,0.3704,0.3704,0.4444,0.284,0.1728,0.037,-0.074,-0.074,-0.247,1,-1,-1,1,-1,-1,-1,-0.7666,1,-0.7654,-0.6296,-0.3828,-0.1112,-0.1728,0.1112,0.2098,0.2962,0.1482,0.1728,0.2592,0.2098,0.1852,0.358,0.4814,0.321,0.432,0.4444,0.4692,0.753,0.7778,0.8148,0.9754,0.7778,0.7654,0.9012,0.8642,1,0.9136,0.8888,0.7654,0.5432,'24'
-0.4056,-0.0522,0.0442,0.4618,0.8876,0.8956,0.3574,0.269,0.1726,-0.02,0.1888,0.1726,0.3092,0.4298,0.6224,0.8474,1,1,0.8714,0.8554,0.7028,0.8314,0.767,0.735,0.5422,0.6144,0.3334,0.4538,0.4136,0.4538,0.5824,0.6386,-0.4206,-0.1428,0.127,0.4842,0.865,1,0.5556,0.2222,0.2142,-0.0158,0.1032,0.1746,0.1826,0.2698,0.5714,0.619,0.6904,0.8492,0.6032,0.4842,0.619,0.5318,0.6112,0.5874,0.3334,0.2142,0.1746,0.1984,0.3096,0.4444,0.5396,0.5874,-0.439,-0.13,0.122,0.4308,0.8456,1,0.5692,0.252,0.2358,0.0488,0.1708,0.1626,0.1952,0.3902,0.5122,0.7398,0.8618,0.7398,0.6586,0.691,0.5772,0.5366,0.4146,0.5204,0.2196,0.1788,0.1382,0.1382,0.1138,0.3008,0.2926,0.3984,-0.4678,-0.113,0.121,0.2742,0.887,1,0.7258,0.492,0.3952,0.25,0.2742,0.2904,0.363,0.4112,0.5888,0.8146,0.8306,0.871,0.7178,0.6452,0.637,0.5646,0.5322,0.5242,0.3468,0.2822,0.2822,0.3952,0.242,0.508,0.637,0.4354,-0.5234,-0.1094,0.0624,0.1562,0.8516,0.9296,0.9688,0.5468,0.4218,0.3984,0.4218,0.4376,0.5234,0.6172,0.7578,0.8984,1,0.914,0.836,0.8282,0.664,0.7344,0.5704,0.4376,0.4454,0.3906,0.2812,0.3828,0.4376,0.5938,0.5782,0.6328,-0.5862,-0.1586,-0.0276,0.1448,0.662,0.8758,0.7724,0.4068,0.3172,0.2966,0.3586,0.3586,0.4414,0.5448,0.8344,0.9932,1,0.8344,0.8344,0.7656,0.6966,0.6828,0.531,0.4206,0.3172,0.3518,0.2482,0.3586,0.3242,0.5242,0.5862,0.5724,-0.7094,-0.4594,-0.1486,0.0676,0.7364,0.9324,0.7162,0.1622,0.1486,0.0946,0.1486,0.2364,0.2972,0.6148,0.831,1,0.8716,0.7702,0.7094,0.7432,0.669,0.5338,0.419,0.2972,0.223,0.3176,0.2972,0.3852,0.4256,0.5946,0.6892,0.6554,-0.3334,0.0834,0.0834,0.2916,0.6666,0.7084,0.25,0.25,0.125,-0.125,0.1666,0.2084,0.375,0.5,0.5834,0.875,0.9166,1,0.9166,0.875,0.75,0.8334,0.75,0.8334,0.625,0.6666,0.375,0.5,0.5416,0.5834,0.6666,0.5834,-0.4884,-0.0698,0.1628,0.5348,0.907,0.814,0.3954,0.3024,0.2558,0.0698,0.2094,0.2094,0.3488,0.4884,0.628,0.814,1,0.9534,0.814,0.814,0.6744,0.7674,0.7674,0.5348,0.5814,0.5814,0.3488,0.4418,0.4884,0.4418,0.5814,0.628,-0.5698,-0.1612,-0.0108,0.0968,0.699,0.9354,0.914,0.4624,0.3118,0.3548,0.3978,0.3978,0.4838,0.5698,0.699,0.8924,1,0.871,0.8064,0.8064,0.656,0.699,0.5054,0.3764,0.2688,0.3118,0.3334,0.2474,0.3764,0.5484,0.5268,0.5054,-1,-1,-1,-1,-0.9828,-0.9838,-0.9778,-0.9824,-0.7998,-0.958,-0.8366,0.2486,0.6214,0.6996,0.8588,0.946,0.9936,0.7428,0.6436,0.4806,0.0688,-0.181,-0.8862,-0.949,-0.976,-0.9774,-0.9778,-0.985,-0.9854,-0.89,-0.9774,-0.9774,-0.9774,-1,-1,-1,-1,-0.992,-0.9922,-0.9882,-0.9898,-0.853,-0.9812,-0.868,-0.2564,-0.114,-0.0668,-0.0498,-0.0084,0.0734,0.1136,0.326,0.8656,0.1536,0.0388,-0.936,-0.9522,-0.9856,-0.9886,-0.9898,-0.992,-0.9918,-0.9472,-0.9044,-0.7814,-0.7076,-1,-1,-1,-1,-0.8934,-0.8768,-0.7768,-0.73,-0.93,-0.9268,-0.76,-0.8468,-0.9934,-0.955,-0.96,-0.955,-0.96,-0.98,-0.855,-0.885,-0.855,-0.77,-0.7568,-0.6568,-0.7568,-0.8934,-0.8534,-0.8,-0.8368,-0.4868,0.7066,0.9232,1,-1,-1,-1,-1,-0.9428,-0.9714,-0.8572,0.7714,1,0.0286,1,1,1,0.6,-0.9142,-0.8858,-0.9428,-1,-0.8,-0.0286,1,1,1,-0.0572,0.2,-0.7142,-1,-1,1,1,1,1,-0.7428,1,1,1,1,1,1,1,1,1,1,-0.3018,-0.3018,-0.3234,-0.3376,-0.3554,-0.3492,-0.3876,-0.4302,-0.509,-0.6946,-0.4,-0.6236,-0.9696,-0.2986,-0.1606,-0.0784,-0.0554,1,0.0762,0.381,0.619,0.7286,0.681,0.7428,0.8904,0.9142,1,0.5858,0.7666,0.9334,0.9572,0.9952,0.819,0.9142,0.8762,0.5476,0.619,0.5666,0.6476,0.8096,0.5714,0.5476,0.5904,0.7,0.6476,0.5666,0.4524,0.3524,0.2428,-0.362,-0.08,0.335,0.74,0.85,0.795,0.615,0.615,0.715,0.975,0.79,0.68,1,0.665,0.62,0.675,0.6,0.53,0.6,0.68,0.375,0.515,0.415,0.335,0.365,0.355,0.455,0.33,0.36,0.145,0.085,0.155,-0.205,0.0254,0.2246,0.9456,0.6702,0.2536,0.2972,0.6196,0.8406,1,0.7934,0.9782,0.9674,0.6812,0.6304,0.5254,0.721,0.8224,0.7934,0.8624,0.75,0.692,0.6848,0.2754,0.2682,0.2682,0.326,0.1884,0.2608,0.1086,0.0036,-0.0254,-0.2572,-0.998,1,-1,-1,-1,-1,-1,-1,1,-0.8446,-0.5854,-0.43,-0.1398,-0.088,-0.1502,0.3056,0.2538,0.2228,0.2746,0.2228,0.1918,0.1918,0.2538,0.2954,0.43,0.3576,0.3368,0.6062,0.7306,1,0.9896,0.9482,0.8446,0.8446,0.7928,0.9068,0.886,0.5854,0.8134,0.658,0.5336,'24'
0.1098,0.661,0.877,1,0.8138,0.6686,0.2514,-0.3446,-0.4078,-0.5904,-0.6834,-0.5904,-0.5418,-0.445,-0.769,-0.6276,-0.4302,-0.1658,-0.0392,-0.4228,-0.7504,-0.784,-0.784,-0.7318,-0.9144,-0.8324,-0.5122,-0.2254,-0.2924,-0.4824,-0.769,-0.6908,0.0044,0.4702,0.7234,1,0.9272,0.9098,0.5662,0.1238,-0.15,-0.2634,-0.6098,-0.5254,-0.4672,-0.508,-0.505,-0.3392,-0.2198,0.0394,0.0132,-0.2664,-0.5574,-0.607,-0.6944,-0.5808,-0.4644,-0.3042,-0.0538,0.0276,0.0132,-0.2372,-0.7962,-0.7526,-0.4626,-0.0808,0.1542,0.5506,0.8942,0.9412,1,0.903,0.7914,0.536,0.116,-0.0602,-0.119,-0.1484,-0.1336,-0.0514,0.1454,0.304,0.3128,-0.113,-0.3128,-0.398,-0.4038,-0.3158,-0.1776,0.2012,0.2188,0.1924,-0.072,-0.2658,-0.4008,-0.2394,-0.4644,-0.2274,0.0154,0.166,0.7072,0.8828,0.9832,0.947,0.9944,1,0.9274,0.6736,0.445,0.311,0.339,0.3556,0.4952,0.5732,0.509,0.2776,0.0684,-0.0572,-0.0014,0.0042,0.1074,0.4924,0.5314,0.311,0.0544,0.1046,0.191,0.2022,-0.5208,-0.2504,-0.1004,0.0388,0.3602,0.6546,0.901,1,0.7322,0.8554,0.941,0.941,0.8232,0.5636,0.5824,0.4912,0.585,0.5958,0.4512,0.3628,0.2022,0.063,0.0576,0.0228,0.1138,0.2824,0.3494,0.3574,0.2156,0.2102,0.1646,0.1594,-0.5184,-0.2082,-0.0754,0.0074,0.3176,0.6868,1,0.9882,0.7902,0.7104,0.746,0.8522,0.9026,0.876,0.7992,0.8198,0.7164,0.7488,0.6218,0.4948,0.3856,0.1226,0.1344,-0.0162,-0.0044,0.028,0.1196,0.2024,0.232,0.1404,0.0546,0.0664,-0.502,-0.0402,-0.054,0.112,0.5546,0.8036,0.8036,0.6072,0.3388,0.2532,0.4274,0.4218,0.4772,0.6984,0.8534,1,0.9918,0.942,0.8922,0.8922,0.8728,0.693,0.4854,0.3554,0.2864,0.2752,0.3112,0.3858,0.4634,0.455,0.4938,0.4882,0.409,0.6818,1,0.909,0.7728,0.6818,0.6364,0.0454,-0.091,-0.091,-0.4546,-0.3182,-0.1364,-0.0454,0,-0.091,0.091,0.0454,0,-0.2272,-0.091,-0.3636,-0.2728,-0.1818,-0.5,-0.4546,-0.2728,-0.1364,0,-0.1818,-0.409,-0.2272,0.2916,0.6666,0.9166,1,0.7916,0.4584,0.4166,-0.0834,0.125,-0.0416,-0.3334,-0.2084,-0.0416,-0.1666,-0.25,-0.1666,0,0.2916,0.25,0.1666,-0.4166,-0.5416,0,-0.125,-0.5,-0.2916,-0.0834,-0.125,-0.2916,-0.25,-0.2916,-0.0834,-0.44,0.04,0.3866,1,0.8666,0.92,0.9734,0.52,0.0934,-0.12,-0.44,-0.4134,-0.52,-0.4934,-0.4666,-0.4134,-0.1734,0.12,0.0666,-0.3066,-0.6266,-0.76,-0.7334,-0.6266,-0.44,-0.2534,0.1734,0.0934,-0.12,-0.4666,-0.7866,-0.52,-1,-1,-1,-1,-1,-1,-0.983,-0.9846,-0.9808,-0.9842,-0.8228,-0.4118,-0.3044,0.154,0.8416,0.6476,0.3574,-0.0128,-0.213,-0.3848,-0.3108,-0.334,-0.4164,-0.6044,-0.72,-0.8036,-0.8474,-0.9288,-0.9534,-0.871,-0.9456,-1,-1,-1,-1,-1,-1,-1,-1,-0.9868,-0.9874,-0.9856,-0.9856,-0.9302,-0.7526,-0.6904,-0.4364,0.3102,0.8626,0.9054,0.777,0.582,0.1756,0.2598,0.1254,-0.2934,-0.742,-0.7762,-0.85,-0.8992,-0.9198,-0.9438,-0.935,-0.9572,-1,-1,-1,-1,-1,-1,-1,-1,-0.69,-0.69,-0.7034,-0.7434,-0.95,-0.93,-0.93,-0.8946,-0.8182,-0.6474,-0.6838,-0.7092,-0.6838,-0.682,-0.5928,-0.6582,-0.61,-0.4734,-0.44,-0.4568,-0.34,-0.11,-0.5134,-0.72,-0.68,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,-1,-1,-0.7714,0.7142,0.5714,-0.9142,-0.0858,0.5714,0,-0.8572,-0.8,-0.8,-0.4858,-0.0858,-0.6,0.4286,0.2,-0.3714,-0.6286,-0.6572,-0.4286,-0.4858,-0.7142,-0.6858,-1,-1,0.2766,0.2626,0.2696,0.2424,0.2522,0.2958,0.401,0.604,0.9234,1,-0.4498,-0.4334,-0.426,-0.432,-0.3998,-0.3596,-0.339,-0.269,-0.326,-0.7914,-0.3334,0.2824,-0.9348,-0.7846,-0.7664,-0.7366,-0.7368,-0.9166,0.1732,0.4972,0.419,0.4078,0.5978,0.9442,1,0.8436,0.9218,0.7318,0.743,0.6984,0.7094,0.8324,0.6536,0.4972,0.5084,0.553,0.4972,0.5308,0.5308,0.5418,0.5978,0.5866,0.5978,0.5418,0.5418,0.4526,0.609,0.5642,0.3744,-0.1508,-0.0798,0.2392,0.4846,0.73,0.7914,0.6196,1,0.6442,0.8528,0.5706,0.7792,0.681,0.7792,0.6688,0.6074,0.5214,0.816,0.3006,0.6442,0.6564,0.816,0.2638,0.3742,0.7056,0.8036,0.632,0.5214,0.2884,0.3988,0.2884,0.3988,-0.178,0.9498,1,0.5478,0.5276,0.186,0.417,0.3468,0.0452,0.3166,0.2864,0.216,0.4974,0.3768,0.3668,0.2362,0.1758,0.2562,0.0854,-0.005,-0.0552,0.1256,0.0954,0.005,-0.1558,-0.186,0.0754,0.005,0.0252,-0.0252,-0.1356,-0.0452,-0.3366,-0.994,-1,-1,1,-1,-1,0,-0.4334,-1,-0.3838,-0.0466,0.3838,0.4302,0.407,0.1976,0.2674,0.1512,0.6628,0.8838,0.8604,0.8838,0.6162,0.6396,0.3838,0.7442,1,0.9186,0.6976,0.4302,0.1976,0.1396,0.0814,0.4302,0.3256,0.4884,0.2558,0.3024,0.4418,0.3838,0.279,0.128,'25'
-0.0154,0.5638,0.85,1,0.925,0.8706,0.5366,-0.2232,-0.5502,-0.666,-0.7206,-0.632,-0.7752,-0.8296,-0.724,-0.7546,-0.6218,-0.3152,-0.1652,-0.2436,-0.833,-0.8364,-0.7752,-0.9522,-0.673,-0.5264,-0.305,-0.1006,-0.2028,-0.4174,-0.7684,-0.6354,-0.372,-0.0864,0.3988,0.8096,0.9464,1,0.9256,0.756,0.4376,-0.006,-0.2858,-0.2678,-0.4048,-0.4108,-0.2916,-0.1964,0.0864,0.116,-0.0536,-0.3096,-0.5178,-0.6072,-0.5952,-0.6042,-0.1994,-0.0298,0.0178,0.0358,-0.1072,-0.4852,-0.7202,-0.4256,-0.4686,-0.2768,0.048,0.2004,0.6384,0.7884,1,0.9238,0.8942,0.9656,0.7712,0.5842,0.4342,0.3924,0.358,0.3924,0.4884,0.6162,0.4096,0.2522,0.0848,-0.0332,0.0136,0.0702,0.2546,0.4538,0.326,0.1612,-0.0036,-0.0504,0.0702,0.0652,-0.5188,-0.2612,-0.045,0.113,0.5066,0.6282,0.8736,1,0.881,0.8614,0.9514,0.8834,0.7618,0.6598,0.5528,0.5772,0.5894,0.6404,0.6184,0.407,0.2758,0.1738,0.0936,0.113,0.2516,0.3876,0.4046,0.198,0.0766,0.1398,0.1276,0.1252,-0.5424,-0.3124,-0.1126,0.0384,0.3798,0.6888,0.9256,1,0.7142,0.5982,0.7282,0.8234,0.8398,0.8048,0.7956,0.7538,0.7096,0.7514,0.7376,0.6818,0.503,0.3334,0.2288,0.173,0.1638,0.317,0.3612,0.4076,0.3054,0.3404,0.2752,0.1846,-0.55,-0.2432,-0.0716,0.1262,0.5864,0.8752,0.8934,0.6358,0.3966,0.3212,0.3862,0.4382,0.537,0.6828,0.8388,0.935,1,0.9792,0.9506,0.922,0.7972,0.6592,0.4954,0.3732,0.2848,0.2718,0.2484,0.2874,0.3082,0.4694,0.4772,0.3212,-0.382,-0.005,0.168,0.6978,0.922,1,0.4432,0.1342,-0.0084,-0.1512,-0.0628,-0.0594,0.0628,0.2462,0.3242,0.5144,0.7658,0.9626,1,0.9626,0.9016,0.9558,0.9898,0.742,0.5552,0.5042,0.287,0.365,0.3718,0.5076,0.5552,0.5008,0.05,0.5,1,1,0.75,0.85,0.6,-0.15,-0.3,-0.55,-0.35,-0.5,-0.3,-0.35,-0.15,-0.35,0,0.1,0,-0.2,-0.3,-0.3,-0.7,-0.4,-0.15,-0.15,-0.2,0.05,0,-0.1,-0.1,-0.35,0.1578,0.6316,0.6842,1,0.8422,0.4736,0.579,-0.1578,-0.3684,-0.4736,-0.2632,-0.2632,-0.6316,-0.5264,-0.4736,-0.421,-0.3684,-0.1052,-0.0526,-0.2106,-0.3158,-0.421,-0.3684,-0.4736,-0.2632,-0.1052,-0.1052,-0.421,-0.421,-0.1052,-0.3684,-0.3158,-0.4418,-0.2326,0.1628,0.4418,0.8372,0.9302,0.907,1,0.9768,0.4186,0.1162,0.0232,-0.0698,-0.1396,-0.0232,0.093,0.3024,0.3256,0.0698,-0.0698,-0.2558,-0.3954,-0.4186,-0.2558,0.0466,0.0698,0.1162,0.0698,0,-0.5348,-0.4884,-0.186,-1,-1,-1,-1,-1,-1,-1,-0.9818,-0.9788,-0.9708,-0.5532,-0.2586,0.2758,0.885,0.7428,0.5582,0.287,0.1428,-0.0216,-0.1054,-0.1428,-0.1922,-0.6602,-0.7872,-0.893,-0.9456,-0.9344,-0.9404,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.988,-0.988,-0.9802,-0.8698,-0.7516,-0.5382,0.0542,0.672,0.9408,0.8202,0.7234,0.4184,0.1204,-0.1438,-0.5404,-0.8356,-0.8664,-0.9086,-0.94,-0.9432,-0.957,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8468,-0.9734,-0.6868,-0.93,-0.911,-0.8582,-0.76,-0.715,-0.6784,-0.6668,-0.695,-0.62,-0.6284,-0.6234,-0.6334,-0.43,-0.07,-0.08,-0.1268,-0.1568,-0.1834,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,-0.8858,-0.2572,0.8,-0.1142,-0.1428,0.7714,0.0858,-0.9428,-0.8,-0.7428,-0.6858,-0.1428,-0.0286,0.6,0.0286,-0.8,-0.5142,-0.7428,-0.7714,-0.8,-1,-1,-1,-1,-1,0.489,0.5006,0.5356,0.5744,0.6374,0.7218,0.8734,1,1,1,-0.054,-0.0722,-0.1006,-0.1042,-0.0882,-0.0862,-0.1456,-0.2336,-0.5082,-0.7182,-0.3734,0.4,-0.8362,-0.8052,-0.7732,-0.7412,-0.7042,-0.8916,0.871,0.9678,0.387,0.6452,0.6774,0.5162,0.4516,1,0.7096,0.5806,0.1936,0.4194,0.4516,0.4194,0.613,0.5806,0.5484,0.7096,0.6452,0.129,0.258,0.4194,0.4194,0.7096,0.7096,0.5806,0.6452,0.5484,0.5484,0.3548,0.0322,-0.0968,0.8988,1,0.6962,0.1392,-0.0126,0.114,0.1898,0.3924,0.2658,0.1898,0.0886,-0.038,0.1646,0.1646,0.3418,0.1646,0.3418,0.3418,0.114,0.114,0.3924,0.2406,0.0886,0.038,0.3164,0.1646,0.1646,0.1392,-0.2658,-0.0632,-0.1898,-0.519,0.6616,0.9538,1,0.7538,0.077,0,0.0308,-0.123,-0.1538,-0.1846,-0.0462,-0.1538,-0.0462,0.0462,-0.0154,-0.0308,-0.0924,-0.1692,-0.2462,-0.277,-0.2462,-0.0154,0.0308,-0.1538,-0.0308,-0.123,-0.0308,-0.1384,-0.3846,-0.4,-0.323,-0.8154,-0.7302,-1,-1,1,-0.8,-1,0,-0.7666,-1,-0.4244,-0.3382,-0.0792,0.0504,0.0648,-0.0648,-0.0072,0.0216,0.3812,0.6834,0.7266,0.7266,0.741,0.5396,0.3526,0.813,1,0.5972,0.4676,0.1654,0.2662,-0.151,0.1366,0.151,0.1224,0.151,0.2086,0.3094,0.4964,0.4676,0.2374,0.1366,'25'
-0.135,0.2872,0.8824,0.737,0.3634,0.0726,-0.1142,-0.1418,-0.3218,-0.391,-0.2042,-0.0866,-0.0658,0.0658,0.3702,0.654,1,0.9516,0.6816,0.2042,0.571,0.6402,0.5916,0.7094,0.6748,0.0588,0.1764,0.2042,0.3494,0.2942,0.398,0.391,-0.345,-0.01,0.61,0.54,0.255,0.09,-0.075,-0.125,-0.225,-0.29,-0.295,-0.085,0.02,0.04,0.195,0.49,0.755,0.89,1,0.875,0.745,0.73,0.79,0.84,0.66,0.46,0.435,0.365,0.42,0.39,0.525,0.555,-0.365,0.065,0.6,0.475,0.18,0.06,-0.165,-0.225,-0.255,-0.345,-0.28,-0.18,-0.115,-0.025,0.035,0.255,0.41,0.75,0.9,1,0.885,0.915,0.81,0.905,0.88,0.56,0.505,0.5,0.535,0.495,0.675,0.64,-0.4114,0.212,0.5562,0.3616,-0.0224,-0.0274,-0.3366,-0.3666,-0.3616,-0.4564,-0.3316,-0.2668,-0.2518,-0.1322,-0.0124,0.1372,0.2918,0.4912,0.7906,0.9052,1,0.96,0.9402,0.9252,0.8404,0.6558,0.571,0.4912,0.5562,0.5362,0.626,0.6558,-0.5304,0.1512,0.3318,0.0836,-0.2912,-0.3544,-0.4356,-0.6344,-0.5576,-0.5802,-0.544,-0.368,-0.3724,-0.2416,-0.0744,-0.0294,0.1106,0.3002,0.553,0.7788,1,0.9368,0.9098,0.9232,0.8148,0.5396,0.4944,0.4312,0.4808,0.4718,0.5396,0.6344,-0.4108,0.405,0.507,0.1842,-0.2578,-0.3542,-0.6544,-0.728,-0.8074,-0.9094,-0.7168,-0.7168,-0.5184,-0.4164,-0.2974,-0.2974,-0.1444,0.1218,0.3882,0.6714,0.9886,1,0.949,0.966,0.9264,0.5468,0.456,0.3938,0.4108,0.2238,0.524,0.439,-0.3044,0.3286,0.488,0.3236,-0.3382,-0.459,-0.4976,-0.6086,-0.6426,-0.7246,-0.5604,-0.5314,-0.488,-0.43,-0.343,-0.3044,-0.2078,0.087,0.2754,0.6908,0.9856,0.9806,0.971,1,0.9662,0.5266,0.4252,0.4058,0.3864,0.3236,0.488,0.5266,0.1612,0.3548,0.9354,0.742,0.4838,0.2258,-0.0968,-0.1612,-0.1612,-0.2904,-0.0968,0.0322,0.0322,0.0322,0.4194,0.742,1,0.9354,0.613,0.0322,0.5484,0.4194,0.613,0.742,0.6774,0.0968,0.2904,0.2904,0.5484,0.613,0.742,0.4838,-0.1428,0.5714,1,0.9286,0.3572,0,-0.1428,-0.1428,-0.4286,-0.3572,-0.2142,-0.0714,-0.0714,-0.0714,0.3572,0.5,0.7858,0.9286,0.6428,0.0714,0.3572,0.5714,0.4286,0.5,0.5714,0.2858,0.4286,0.3572,0.4286,0.3572,0.5,0.4286,-0.519,0.2152,0.367,0.114,-0.3418,-0.3924,-0.6202,-0.8734,-0.8734,-0.7974,-0.7468,-0.7722,-0.6708,-0.4684,-0.2658,-0.3418,-0.114,0.114,0.3418,0.7468,1,0.8482,1,0.8482,0.8482,0.519,0.443,0.3418,0.3924,0.2152,0.4936,0.367,-0.9706,-0.7636,-0.6022,-0.6842,-0.7448,-0.7738,-0.7774,-0.8026,-0.779,-0.6938,-0.3678,0.3362,0.7802,0.9936,0.9624,0.8294,0.6938,0.547,0.1464,-0.2376,-0.3534,-0.451,-0.6616,-0.8076,-0.9436,-0.9486,-1,-1,-1,-1,-1,-1,-1,-0.9754,-0.8864,-0.788,-0.7314,-0.6806,-0.5048,-0.3872,-0.3044,-0.1978,-0.0876,-0.2534,-0.133,0.2746,0.5456,0.7652,0.8838,0.787,0.8832,0.8668,-0.1736,-0.3888,-0.201,-0.724,-0.831,-0.8346,-0.895,-1,-1,-1,-1,-1,-1,-1,-0.7234,-0.9768,-0.8468,-0.22,0.6366,1,1,1,1,1,0.66,-0.6268,-0.79,-0.6968,-0.6634,-0.7734,-0.7634,-0.6486,-0.6172,-0.7744,-0.7944,-0.7544,-0.87,-0.1968,0.09,-0.0034,-1,-1,-1,-1,-1,-1,-1,0.4,1,1,0.5714,-0.3428,-0.6572,-0.8572,-0.8858,-0.7142,-0.3428,1,1,1,-0.6572,-1,-1,-1,-1,0.4858,1,-0.5142,-0.1428,0.3714,0.1428,-0.2286,-0.1142,-1,-1,-1,-1,-1,-1,-1,0.2086,0.2086,0.2486,0.292,0.304,0.362,0.397,0.433,0.4198,0.144,-0.2078,-0.2078,-0.1902,-0.1442,-0.1202,-0.0496,0.0088,0.1352,0.3098,0.5886,-0.3866,-0.2824,-0.2596,-0.19,-0.1564,0.0796,0.3382,-0.325,-0.1664,-0.2818,-0.598,-0.7792,-0.8122,-0.7134,-0.6474,-0.3608,-0.3904,-0.4794,-0.3904,-0.3872,-0.3344,-0.163,-0.1104,0.0774,0.117,0.2488,0.3278,0.4662,0.4794,0.509,0.6014,0.6738,0.8748,0.6804,0.9836,1,0.878,0.799,0.687,0.2916,-0.2722,-0.3962,-0.884,-0.8114,-0.787,-0.7816,-0.5418,-0.4932,-0.31,-0.415,-0.372,-0.248,-0.283,0.0324,0.116,0.1374,0.2292,0.2506,0.2292,0.531,0.4448,0.6362,0.6954,0.7628,0.8302,0.8168,0.9434,0.9866,0.9514,0.9514,1,0.868,-0.2986,-0.3698,-0.7232,-0.9316,-0.7808,-0.8384,-0.622,-0.2054,-0.1946,-0.3836,-0.2932,-0.1042,-0.2658,-0.1864,-0.0328,0.115,0.2712,0.3288,0.5042,0.4822,0.4684,0.7014,0.641,0.7534,0.8466,0.7178,0.937,1,0.9726,0.9288,0.7534,0.4658,-0.8968,-1,1,-1,1,0,-0.8,0.6334,-1,-0.5396,-0.1366,0.0504,0.0648,-0.0216,-0.108,0.1224,0.0216,0.2086,0.4964,0.8418,0.9568,1,0.9568,0.7122,0.6402,0.8274,0.8274,0.7554,0.7986,0.7842,0.5396,0.2086,0.4244,0.41,0.4676,0.3812,0.223,0.3382,0.151,0.0648,-0.2374,'26'
-0.2366,0.0706,0.7344,0.6016,0.3692,0.0374,-0.2448,-0.3858,-0.4606,-0.4356,-0.2946,-0.303,-0.054,0.0954,0.502,0.751,1,0.7842,0.5352,0.444,0.5436,0.5602,0.834,0.6598,0.0374,0.0622,-0.0456,-0.054,0.0456,0.112,0.195,0.2946,-0.3724,0.077,0.5508,0.3908,0.4276,0.2492,0.04,-0.1324,-0.1384,-0.157,-0.0524,0.003,0.12,0.2924,0.4216,0.6308,1,0.957,0.9876,0.7908,0.797,0.8462,0.9076,0.7292,0.5754,0.4954,0.3292,0.3538,0.3908,0.5876,0.5508,0.6492,-0.456,-0.0826,0.376,0.28,0.2106,0.104,-0.0986,-0.1894,-0.2214,-0.2106,-0.1786,-0.1146,0.008,0.1414,0.1574,0.3386,0.6214,0.8986,1,0.936,0.7974,0.8346,0.8774,0.696,0.664,0.5466,0.4346,0.3546,0.424,0.6534,0.5626,0.6214,-0.5056,-0.0114,0.3198,0.152,0.0386,-0.0476,-0.2336,-0.297,-0.3378,-0.3606,-0.2154,-0.2108,-0.161,0.0022,0.1112,0.2608,0.4196,0.6598,0.8956,1,0.9546,0.8956,0.9184,0.8684,0.7006,0.5918,0.4876,0.5284,0.5012,0.5918,0.6326,0.7506,-0.533,0.0044,0.2512,0.0176,-0.1146,-0.1938,-0.37,-0.4186,-0.4582,-0.4626,-0.3832,-0.304,-0.1762,-0.1234,-0.0044,0.1366,0.2908,0.4934,0.7534,0.9604,1,0.9648,0.978,0.9208,0.7488,0.5992,0.4582,0.4934,0.4538,0.6256,0.6256,0.7224,-0.5924,0.084,0.2374,-0.0264,-0.247,-0.41,-0.4868,-0.6212,-0.6498,-0.6212,-0.578,-0.4628,-0.3622,-0.319,-0.1798,-0.0744,0.0456,0.2566,0.6164,0.8706,0.9952,1,1,0.8896,0.7074,0.5492,0.3622,0.3908,0.4004,0.4772,0.578,0.6306,-0.3112,0.426,0.5288,0.2386,-0.2266,-0.5046,-0.71,-0.7342,-0.7824,-0.9396,-0.7522,-0.7462,-0.4984,-0.3776,-0.4622,-0.3836,-0.2266,-0.0272,0.293,0.716,0.8912,1,0.9698,0.861,0.6918,0.42,0.2628,0.1904,0.0392,0.0514,0.1662,0.1662,0.0322,0.2258,0.871,0.742,0.4838,0.0968,-0.1612,-0.6774,-0.4838,-0.2258,-0.4194,-0.0322,-0.0322,0.0968,0.5484,0.871,1,0.613,0.2904,0.0968,0.3548,0.613,0.742,0.8064,-0.2258,0.2904,0.1612,0.3548,0.2904,0.4194,0.2904,0.4838,-0.2904,0.3548,0.6774,0.4838,0.2904,-0.0322,-0.1612,-0.2904,-0.2904,-0.2904,-0.1612,-0.0322,0.0322,0.1612,0.4838,0.9354,1,0.742,0.613,0.613,0.5484,0.613,0.5484,0.4838,0.3548,0.0322,-0.1612,-0.0322,-0.2258,-0.0968,0.2258,0.2258,-0.6,0.02,0.18,-0.04,-0.18,-0.26,-0.46,-0.56,-0.58,-0.62,-0.46,-0.42,-0.34,-0.24,-0.12,0.06,0.18,0.38,0.54,0.9,0.92,0.96,1,0.84,0.72,0.62,0.48,0.5,0.42,0.6,0.56,0.68,-0.9462,-0.9372,-0.95,-0.8718,-0.7898,-0.7308,-0.6858,-0.6872,-0.6718,-0.5948,-0.3256,0.3398,0.8846,0.9756,0.9692,0.9692,0.9308,0.8692,0.6538,0.3924,-0.0526,-0.4012,-0.477,-0.6398,-0.773,-0.7372,-0.9358,-0.9256,-0.6794,-0.7564,-1,-1,-1,-0.9852,-0.9824,-0.9816,-0.9398,-0.8834,-0.8444,-0.7328,-0.8016,-0.7624,-0.754,-0.741,-0.5954,-0.2916,-0.058,0.3048,0.655,0.9244,0.9444,0.8558,0.5572,-0.4566,-0.8324,-0.8644,-0.8444,-0.9224,-0.925,-0.9422,-0.9598,-0.918,-0.9272,-1,-1,-1,-0.9116,-0.8768,-0.8534,0.0532,0.4066,0.5532,0.5866,0.76,0.9332,1,0.4332,-0.428,-0.772,-0.616,-0.364,-0.364,-0.364,-0.26,-0.3434,-0.31,-0.4334,-0.7,-0.5968,-0.5668,-0.3634,-0.4534,0.0566,-0.2968,-0.9034,-0.4368,-1,-1,-1,-0.6572,-0.8858,1,1,1,-0.7142,-0.6572,-0.9142,-1,-0.5142,0.8858,1,1,0.1428,-0.7428,-0.8858,-1,-0.9142,-0.6286,1,1,1,-0.8858,-0.1428,-0.5428,-0.3142,-0.3428,-0.2858,-0.6,-0.2572,-1,-1,-1,0.1824,0.1824,0.2204,0.2636,0.328,0.3846,0.444,0.5102,0.5498,0.2932,-0.3818,-0.3818,-0.3744,-0.3526,-0.3118,-0.2678,-0.2086,-0.1088,0.0974,0.4012,-0.4266,-0.4118,-0.7564,-0.6104,-0.5898,-0.3456,-0.1972,-0.5834,-0.0596,-0.096,-0.7782,-0.6158,-0.586,-0.4768,-0.3676,-0.0198,0.0496,-0.3642,-0.139,-0.0562,-0.0264,-0.0132,0.1192,0.2616,0.4668,0.447,0.4668,0.51,0.7252,0.851,1,0.9768,0.7748,0.7914,0.735,0.8444,0.798,0.606,0.51,0.2218,-0.1564,-0.2178,-0.6656,-0.9234,-0.776,-0.684,-0.5214,-0.3558,-0.3282,-0.3098,-0.089,-0.0706,-0.0522,-0.046,0.0122,0.227,0.2792,0.2424,0.3466,0.6226,0.7086,0.73,0.8374,0.9202,0.9018,0.9386,1,0.9724,0.9172,0.8558,0.8804,0.4326,-0.147,-0.0864,-0.2652,-0.6168,-0.6542,-0.4956,-0.5044,-0.0806,-0.0548,-0.2594,-0.144,-0.1642,-0.1874,-0.0518,0.072,0.147,0.1902,0.3286,0.415,0.4842,0.8012,0.709,0.781,0.876,0.925,0.8904,0.9164,1,0.951,0.7838,0.6512,0.4034,-0.9446,-1,1,-1,1,-1,-0.6,0.7,-1,-0.3114,-0.1476,-0.2132,-0.1804,-0.4098,-0.246,-0.082,-0.0656,0.4262,0.5246,0.8032,1,0.9344,0.6886,0.6722,0.9672,0.8032,0.918,1,0.459,0.8032,0.6066,0.2622,0.4098,0.2296,0.3606,0.164,0.3114,0.2132,-0.0656,-0.1148,-0.3278,'26'
-0.3514,0.021,0.3244,0.5316,0.7448,0.6006,0.1142,-0.03,-0.081,-0.1652,-0.1202,-0.1352,-0.051,0.039,0.1262,0.2942,0.6456,1,0.94,0.7718,0.7958,0.7538,0.8228,0.6666,0.5436,0.5616,0.4834,0.2762,0.4324,0.4174,0.6846,0.5676,-0.3958,-0.0926,0.2674,0.2828,0.5012,0.3214,-0.0566,-0.0616,-0.2082,-0.2724,-0.221,-0.324,-0.2006,0.0258,0.0308,0.1902,0.5038,0.748,1,0.856,0.73,0.6606,0.7584,0.8534,0.599,0.5372,0.3984,0.4832,0.473,0.383,0.7044,0.7352,-0.3592,-0.0498,0.3646,0.373,0.4034,0.185,-0.047,-0.0746,-0.2376,-0.268,-0.2596,-0.3122,-0.1906,0.0248,-0.0028,0.174,0.4586,0.7128,1,0.8978,0.9614,0.79,0.8508,0.9696,0.779,0.71,0.4862,0.616,0.605,0.442,0.7872,0.8176,-0.3588,-0.0864,0.4612,0.426,0.2856,-0.0308,-0.0776,-0.2152,-0.4232,-0.473,-0.3822,-0.4436,-0.306,-0.1508,-0.0512,0.06,0.227,0.5402,0.7834,1,0.9736,0.833,0.9092,0.8506,0.798,0.7072,0.6046,0.5022,0.5344,0.5052,0.7248,0.751,-0.4016,-0.0556,0.4286,0.3324,0.212,-0.0616,-0.2422,-0.3804,-0.6572,-0.567,-0.606,-0.7234,-0.3834,-0.3414,-0.3022,-0.0888,0.0828,0.3264,0.5458,0.8828,1,0.8706,0.8076,0.8676,0.7384,0.6992,0.5218,0.4736,0.5008,0.4436,0.6842,0.6932,-0.255,0.255,0.6,0.4642,0.4202,-0.2294,-0.4568,-0.5926,-0.6036,-0.7798,-0.7872,-0.5854,-0.6478,-0.5634,-0.4276,-0.255,-0.1376,0.0312,0.3578,0.89,1,0.901,0.8716,0.8532,0.7284,0.6588,0.3834,0.3652,0.3688,0.2844,0.534,0.5522,0.103,0.6958,1,0.8712,0.5928,-0.2268,-0.3144,-0.3506,-0.7372,-0.8506,-0.9794,-0.6546,-0.665,-0.7216,-0.5104,-0.3196,-0.2628,-0.1702,0.1752,0.7784,0.9432,0.9536,0.8506,0.7114,0.531,0.3918,0.0722,-0.1082,-0.103,-0.2268,-0.1134,-0.0052,-0.3714,0.0858,0.4858,0.9428,0.9428,0.7714,0.2572,0.0286,-0.2,-0.3714,-0.3714,-0.4286,-0.2572,-0.2,-0.2,-0.1428,0.3714,0.7714,1,0.2572,0.7714,0.8858,0.6,0.7142,0.3142,0.4858,0.2,0.0286,0.3714,0.3714,0.4286,0.5428,-0.5,-0.1818,-0.1364,0.6364,0.7272,0.2728,0.1364,-0.2272,-0.3182,-0.591,-0.2728,-0.2728,-0.1364,-0.1364,-0.3182,-0.091,0.2272,0.9546,1,0.6364,0.5,0.4546,0.4546,0.1818,0.2272,0.3636,0.091,0.1364,0.2728,0,0.5,0.4546,-0.4158,-0.0112,0.2808,0.1686,0.146,-0.236,-0.3484,-0.4158,-0.528,-0.663,-0.5956,-0.5506,-0.5506,-0.4382,-0.3034,-0.2584,-0.0786,0.0786,0.3932,0.7978,1,0.7528,0.7078,0.7978,0.5506,0.4832,0.4606,0.1686,0.3932,0.3484,0.3034,0.528,-1,-1,-1,-1,-1,-1,-1,-0.967,-0.9638,-0.8272,-0.7382,0.5654,0.8732,0.6148,0.6066,0.6198,0.5754,0.4042,0.2148,-0.0256,-0.1984,-0.3268,-0.6708,-0.8684,-0.9474,-0.939,-0.9622,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9718,-0.9702,-0.865,-0.6314,0.2628,0.8634,0.8302,0.7482,0.8112,0.4428,0.202,0.0492,-0.3104,-0.6016,-0.715,-0.8688,-0.9286,-0.9386,-0.9608,-0.9652,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9314,-0.9734,-0.81,0.1432,-0.564,-0.442,-0.5,-0.534,-0.484,-0.508,-0.55,-0.604,-0.69,-0.828,-0.9456,-0.91,-0.5568,-0.2868,-0.8134,-0.8034,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3714,0.1428,1,1,1,-0.7142,-1,-1,-0.9714,-0.8572,-0.9714,-0.9142,-0.1142,-0.0572,-0.3142,-0.4286,-0.1714,-0.0858,-0.1428,-0.4858,-1,-1,-1,-1,-1,-1,0.839,0.8392,0.8302,0.833,0.822,0.8098,0.7958,0.7646,0.7102,0.4104,0.223,0.2316,0.232,0.2546,0.2724,0.3002,0.327,0.372,0.4554,0.558,-0.5334,0.1882,-0.6408,-0.3448,0.203,0.2424,0.9198,1,-0.3526,0.3812,0.5828,0.2662,0.0072,0.0216,-0.108,0.223,0.6978,0.8992,0.928,0.9568,0.8562,0.813,0.4676,0.5972,0.5828,0.4244,0.3238,0.6116,1,0.928,0.7842,0.6258,-0.1224,-0.0792,-0.0072,0.0936,0.3238,0.3812,0.1224,-0.1942,-0.4864,-0.377,-0.1804,-0.1476,-0.2022,-0.0492,-0.0054,0.377,0.6394,0.847,0.683,0.8252,0.694,0.5628,0.377,0.6502,0.683,0.3224,0.1694,0.4972,1,0.858,0.7268,0.7704,-0.0274,0.1148,0.1366,0.399,0.2568,0.3552,0.4098,-0.1366,-0.2702,0.081,0.1892,0.1622,-0.2298,-0.2432,-0.2702,0.1216,0.7838,1,0.446,0.7162,0.6082,0.2702,0.1216,0.5136,0.3918,0,-0.081,0.2568,0.5946,0.473,0.3918,0.4594,-0.5406,-0.3378,-0.3108,-0.0676,-0.1352,-0.027,-0.0946,-0.7162,-0.4002,-1,-1,1,-1,-1,-0.6,-0.7,-1,-0.4336,-0.0442,0.0266,0.239,0.2212,-0.2744,-0.1858,0.0796,-0.0796,0.5044,0.77,0.6284,0.6284,0.5222,0.7876,0.6992,0.5222,0.5752,0.6992,1,0.6814,0.8054,0.4514,-0.0442,0.4514,0.3982,0.2036,0.0088,0.0442,0.2744,0.239,-0.0974,'1'
-0.4426,0.0366,0.308,0.5502,0.7042,0.6968,0.198,0.11,-0.044,-0.0268,0.0464,0.0856,0.071,0.2396,0.423,0.56,0.9388,1,0.8216,0.7848,0.8386,0.7678,0.7556,0.6332,0.5158,0.3814,0.3178,0.3766,0.3838,0.4914,0.4866,0.4206,-0.3222,0.085,0.4004,0.5234,0.7002,0.7226,0.2148,0.1342,-0.0246,0.0358,0.114,0.0716,0.056,0.2752,0.3624,0.5168,0.8792,0.9396,1,0.9598,0.9374,0.8502,0.9574,0.689,0.6488,0.4474,0.387,0.5034,0.4384,0.5526,0.6174,0.6376,-0.3564,0.0206,0.3472,0.4436,0.577,0.5426,0.0092,-0.1104,-0.0528,-0.085,-0.1172,-0.085,-0.0022,0.0804,0.3034,0.354,0.5954,0.8758,1,0.8276,0.7978,0.8414,0.7494,0.6506,0.538,0.5448,0.331,0.3288,0.3954,0.492,0.5034,0.4528,-0.3494,0.0052,0.3852,0.4312,0.4744,0.3444,-0.028,-0.125,-0.1632,-0.222,-0.2398,-0.1888,-0.0204,-0.046,0.0918,0.3342,0.3878,0.6914,0.9082,1,0.7756,0.7168,0.8572,0.7322,0.6454,0.5026,0.3342,0.4158,0.3904,0.4516,0.5408,0.5128,-0.3698,-0.0574,0.466,0.4312,0.3058,0.0094,-0.0762,-0.2042,-0.4312,-0.458,-0.3778,-0.4098,-0.287,-0.1456,-0.028,0.0708,0.255,0.5434,0.7998,1,0.9894,0.7758,0.7784,0.749,0.7356,0.6368,0.4232,0.5434,0.4632,0.506,0.685,0.6262,-0.3824,0.063,0.5268,0.3794,0.2718,-0.0938,-0.3702,-0.4532,-0.6282,-0.6282,-0.6774,-0.6498,-0.5054,-0.3456,-0.3088,-0.1858,-0.0016,0.315,0.53,0.8894,1,0.8802,0.7634,0.742,0.8494,0.7358,0.5546,0.5484,0.447,0.576,0.6498,0.7358,-0.3454,0.3056,0.6274,0.3526,0.1356,-0.302,-0.7252,-0.7142,-0.8988,-0.9204,-0.9602,-0.8952,-0.8698,-0.8444,-0.6348,-0.5154,-0.3382,-0.1212,0.1428,0.4828,1,0.9458,0.6926,0.4648,0.736,0.6312,0.2116,0.32,0.1212,0.1682,0.3274,0.3852,-0.4146,0.3658,0.317,0.756,0.9024,0.8048,0.5122,0.317,0.317,0.1708,0.2682,0.2196,0.3658,0.0244,0.561,0.6098,0.9024,1,0.9024,0.6586,0.6098,0.4146,0.4634,0.6098,0.3658,0.6586,0.2196,0.561,0.2682,0.4146,0.4634,0.2682,-0.6112,-0.0556,0.2778,0.5556,0.8888,0.8888,0.2778,-0.1666,-0.3334,-0.2778,0,0,-0.0556,0.1666,0.2778,0.2778,0.8334,1,0.8334,0.7778,0.7222,0.6666,0.5556,0.7222,0.2778,-0.0556,0.2222,0,0,0.1112,0.1666,0.1112,-0.3696,0.0218,0.3696,0.4348,0.587,0.5,-0.1086,-0.1086,-0.0652,-0.174,-0.3044,-0.174,0.0218,0.0434,0.1522,0.3478,0.4782,0.9348,0.913,1,0.7826,0.8478,0.913,0.8478,0.5652,0.326,0.3914,0.4348,0.3696,0.5,0.5,0.587,-1,-1,-1,-1,-1,-1,-0.967,-0.9708,-0.9722,-0.8506,-0.5646,0.1556,0.8822,0.9518,0.9518,0.7114,0.533,0.5012,0.3532,0.0886,-0.1126,-0.3164,-0.638,-0.8684,-0.9064,-0.905,-0.9304,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9824,-0.9776,-0.9704,-0.8962,-0.7088,-0.0012,0.8102,0.9438,0.8116,0.529,0.1764,0.1538,-0.0022,-0.3036,-0.6122,-0.7376,-0.839,-0.9176,-0.93,-0.9146,-0.9258,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9568,-0.8134,-0.7368,-0.6468,-0.55,-0.582,-0.4346,-0.4492,-0.4582,-0.551,-0.4492,-0.4238,-0.5274,-0.722,-0.9256,-0.9546,-0.8268,-0.5368,-0.23,-0.1868,-0.02,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6572,-0.4286,0.3714,1,1,1,0.0572,-0.9714,-0.9428,-0.8858,-0.9428,-1,-1,-0.7714,-0.6286,-0.5714,-0.2286,-0.3142,-0.7142,-0.9142,-0.3428,-1,-1,-1,-1,-1,-1,1,1,1,0.9966,0.9898,0.9866,0.9776,0.9516,0.8688,0.5518,-0.1498,-0.1264,-0.0976,-0.0814,-0.0554,-0.0222,0.0098,0.0532,0.1372,0.4184,-0.6,0.2942,-0.6706,-0.413,-0.0404,0.0936,0.4392,-0.0834,-0.3514,-0.3784,-0.3108,0.1352,0.1216,0.0946,0.0946,0.0136,-0.0676,0.4054,0.2568,-0.081,0.4864,0.3378,0.1216,0.1082,0.2838,0.2298,-0.3378,-0.446,0,0.1216,0.5946,0.4864,0.5406,0.7028,0.6622,0.527,0.5946,0.581,1,0.6216,-0.1634,0.251,0.769,0.251,0.0996,-0.0996,0.3068,0.2988,0.9682,1,0.6574,0.6892,0.5618,0.275,0.1952,0.259,0.0756,-0.227,0.0756,0.5458,0.4342,0.1952,-0.0358,-0.1714,-0.1236,0.0756,0.1474,0.1792,0.2192,0.1792,0.1872,-0.0598,-0.3012,0.359,0.6602,0.1924,-0.2052,-0.2244,-0.1026,0.3142,1,0.923,0.6988,0.6988,0.141,0.1026,0.1154,0.2116,-0.173,-0.25,0.0642,0.4616,0.4358,-0.0448,-0.1218,-0.4038,-0.4744,-0.141,0.1794,0.0256,-0.0512,-0.1794,-0.1924,-0.5448,-0.9042,-1,-1,1,-0.8,-1,-0.8,-0.3334,-1,-0.4584,-0.1112,-0.0972,0,-0.0138,-0.2362,-0.0556,-0.0556,0.25,0.6806,0.7362,0.625,0.5138,0.5556,0.6666,0.5972,0.6944,0.625,0.9862,1,0.7362,0.4862,0.4444,0.2778,0.3056,0.2084,0.5556,0.4584,0.4028,0.3056,-0.0278,-0.3056,'1'
-0.1746,0.417,0.3662,0.4704,0.3408,-0.017,-0.2,-0.1522,-0.3888,-0.324,-0.2986,-0.214,-0.1154,-0.0592,0.0788,0.1126,0.3718,0.4902,0.9184,0.9212,1,0.9014,0.9324,0.8338,0.6732,0.5296,0.4902,0.4056,0.5408,0.5098,0.6958,0.7916,-0.1994,0.3392,0.246,0.4324,0.2052,-0.1528,-0.3158,-0.278,-0.4788,-0.511,-0.2664,-0.3654,-0.2692,-0.1936,-0.0684,0.016,0.0858,0.444,0.505,0.9506,1,0.9826,0.8224,0.9506,0.936,0.9942,0.6826,0.575,0.6128,0.5604,0.6652,0.7148,-0.2784,0.1664,0.1748,0.3426,0.035,-0.27,-0.4406,-0.4938,-0.5888,-0.5664,-0.4294,-0.5664,-0.5216,-0.256,-0.3174,-0.1888,-0.1048,0.0462,0.365,0.502,1,0.9636,0.7286,0.614,0.7958,0.737,0.7818,0.5636,0.5188,0.4182,0.4126,0.5916,-0.2348,0.213,0.3188,0.4214,-0.098,-0.297,-0.6766,-0.7294,-0.661,-0.4836,-0.5396,-0.748,-0.5614,-0.4464,-0.3686,-0.3872,-0.2162,-0.0452,0.157,0.5864,0.7418,1,0.9066,0.773,0.8506,0.9036,0.7792,0.5304,0.521,0.4308,0.4744,0.549,-0.2424,0.1562,0.447,0.4758,-0.4148,-0.6876,-0.7702,-0.799,-0.763,-0.6732,-0.7092,-0.7594,-0.6804,-0.5978,-0.5548,-0.4326,-0.289,-0.1346,0.1346,0.4578,0.885,1,0.982,0.72,0.7918,0.9964,0.9102,0.5764,0.5296,0.4148,0.4184,0.5296,-0.1794,0.1832,0.771,0.6604,-0.3664,-0.6068,-0.5992,-0.5916,-0.9656,-0.71,-0.7176,-0.6908,-0.6412,-0.6488,-0.5534,-0.458,-0.229,-0.1946,0.0648,0.5152,1,0.9886,0.9466,0.8244,0.8702,0.8816,0.7022,0.477,0.3474,0.252,0.3778,0.4198,0.0148,0.5706,1,0.7852,-0.2506,-0.5032,-0.659,-0.7178,-0.7136,-0.6968,-0.8484,-0.6548,-0.6,-0.5074,-0.4064,-0.5158,-0.499,-0.4442,-0.1664,0.4064,0.8948,0.8358,0.7474,0.8652,0.5958,0.5536,0.4022,0.1494,-0.12,-0.1748,-0.0778,-0.0358,-0.098,0.451,0.4118,0.4902,0.3726,0.0588,-0.1764,-0.098,-0.3334,-0.1764,-0.3334,-0.098,-0.1372,0.0588,0.098,0.2156,0.5686,0.7648,1,0.9216,0.9608,1,0.804,0.7648,0.5294,0.5294,0.451,0.4118,0.647,0.6078,0.8824,0.9216,-0.0878,0.4386,0.4036,0.4736,0.3684,0.0526,-0.0878,-0.0176,-0.2632,-0.1578,-0.3334,-0.1578,-0.0176,0.0878,0.193,0.2982,0.4736,0.579,0.9298,1,0.7894,0.8246,0.8246,0.8596,0.5088,0.4736,0.4036,0.3684,0.5438,0.4386,0.7894,0.6842,-0.2292,0.2084,0.2916,0.4166,0.0416,-0.1666,-0.3542,-0.4792,-0.5834,-0.4166,-0.3958,-0.5,-0.5624,-0.25,-0.4166,-0.2084,-0.0624,-0.0208,0.3542,0.6876,1,0.9166,0.875,0.8334,0.8334,0.9792,0.8958,0.5834,0.4376,0.5208,0.6666,0.6666,-1,-1,-1,-1,-1,-1,-1,-1,-0.9636,-0.9536,-0.441,0.7134,0.8406,0.9678,0.9092,0.8446,0.7478,0.4612,0.338,0.2916,0.1908,-0.108,-0.7074,-0.8426,-0.9152,-0.9052,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9726,-0.9674,-0.5206,0.4254,0.8904,0.773,0.8428,0.7684,0.4618,0.1442,-0.1018,-0.3034,-0.4794,-0.638,-0.8572,-0.8846,-0.9086,-0.938,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.9268,-0.7034,-0.3446,-0.1978,-0.32,-0.32,-0.202,-0.324,-0.344,-0.508,-0.748,-0.866,-0.916,-0.7168,-0.3,-0.2734,-0.62,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,-0.4858,-0.8572,-0.9142,-0.8572,-1,-1,-1,-0.6286,-0.3142,-0.2,-0.2572,-0.6572,-0.3142,-0.5428,-1,-1,-1,-1,-1,-1,-1,0.3006,0.2938,0.2976,0.301,0.295,0.2738,0.2446,0.2062,0.1032,-0.2418,0.4204,0.459,0.498,0.5406,0.5732,0.6292,0.6872,0.7604,0.8586,0.8882,-0.6534,0.1294,-0.3092,-0.0848,0.3718,0.6524,0.7084,1,-0.4444,0,0.1666,0.0556,0,0.0556,0.6666,0.8888,0.8888,0.9444,0.8888,0.8334,0.8334,0.7778,0.5556,0.7778,0.8334,0.8334,0.9444,1,1,0.9444,0.7778,0.7778,0.7222,0.5,0.5556,0.6112,0.4444,0.2222,-0.0556,-0.2778,0.0516,0.2784,0.2578,0.2784,0.1134,0.0722,0.7732,1,1,1,0.9382,0.7732,0.6908,0.7526,0.6494,0.6494,0.6702,0.6494,0.8762,0.8762,0.9382,0.8762,0.567,0.6494,0.567,0.3814,0.5464,0.6908,0.6494,0.464,0.5052,0.1958,0.4506,0.6704,0.5604,0.1648,-0.033,-0.1428,-0.011,0.2088,0.8682,0.934,0.8682,1,0.4946,0.5384,0.6264,0.7582,0.8022,0.5824,0.7362,0.4946,0.2088,0.2088,0.055,-0.2748,-0.055,-0.1208,-0.033,-0.077,-0.2308,-0.099,0.1648,0.077,0.3046,-1,-1,1,-1,-1,-0.6,-0.8334,-1,-0.638,-0.2,-0.1238,-0.0858,-0.0858,-0.0096,-0.1428,0.162,0.2952,0.3334,0.619,0.3524,0.6952,0.7334,0.7714,0.3524,0.7524,0.3334,0.8666,1,0.7904,0.7334,0.2762,0.3524,0.1238,0.1048,0.5428,0.0286,-0.219,-0.1428,-0.2762,-0.6,'2'
-0.2696,0.2162,0.2696,0.4606,0.205,-0.177,-0.278,-0.2808,-0.4972,-0.5786,-0.3426,-0.4214,-0.295,-0.1516,-0.0956,0.1742,0.1966,0.5618,0.8146,1,0.8932,0.7584,0.7866,0.8118,0.4016,0.3792,0.2192,0.191,0.3596,0.3456,0.5898,0.6798,-0.2402,0.2664,0.1966,0.377,0.0976,-0.179,-0.409,-0.4382,-0.5168,-0.6274,-0.5022,-0.508,-0.4178,-0.2372,-0.2228,-0.0538,-0.048,0.2402,0.5254,0.6856,0.9272,1,0.9184,0.8952,0.805,0.6972,0.4586,0.4236,0.5372,0.374,0.3828,0.671,-0.1818,0.3104,0.2758,0.4358,0.0408,-0.138,-0.5078,-0.5988,-0.6802,-0.5706,-0.4734,-0.58,-0.5894,-0.326,-0.4232,-0.2508,-0.0502,0.022,0.4232,0.6082,0.9938,0.9374,1,0.7836,0.8276,0.8808,0.8214,0.6364,0.4576,0.4796,0.6238,0.6394,-0.2654,0.1592,0.2166,0.3286,-0.1764,-0.254,-0.8078,-0.7704,-0.6844,-0.7618,-0.8048,-0.7962,-0.65,-0.5524,-0.4434,-0.4836,-0.2482,-0.0704,0.0444,0.4892,0.65,1,0.8708,0.6528,0.7474,0.7504,0.581,0.4348,0.5668,0.3572,0.386,0.5782,-0.262,0.141,0.324,0.3644,-0.324,-0.4822,-0.8418,-0.6186,-0.7086,-0.7086,-0.6868,-0.6838,-0.755,-0.6682,-0.6124,-0.4232,-0.3892,-0.1876,0.11,0.3116,0.6528,0.9162,1,0.7024,0.6962,0.8016,0.721,0.5752,0.5224,0.4108,0.538,0.5628,-0.1816,0.1486,0.5808,0.5314,-0.3366,-0.6996,-0.7228,-0.6006,-0.8878,-0.9142,-0.8482,-0.9142,-0.8844,-0.7096,-0.6138,-0.5116,-0.4126,-0.1782,0.0594,0.3168,0.6766,0.9834,1,0.6402,0.7492,0.7656,0.7062,0.5842,0.561,0.3664,0.4918,0.5248,0.0702,0.4422,1,0.814,-0.3306,-0.5496,-0.7024,-0.7314,-0.8926,-0.8512,-0.781,-0.7314,-0.5826,-0.5372,-0.5868,-0.5702,-0.6198,-0.4794,-0.2562,0.1488,0.5496,0.909,0.8802,0.6198,0.5496,0.8554,0.7272,0.2934,0.3802,0.2934,0.033,0.2396,-0.3658,0.1708,0.2196,0.561,0.2682,-0.2682,-0.2682,-0.2682,-0.756,-0.6586,-0.317,-0.3658,-0.317,-0.317,-0.0732,0.2682,0.3658,0.9512,1,0.8536,0.7074,1,0.8536,0.4146,0.122,0.1708,-0.0732,-0.0244,0.2682,0.2196,0.8048,0.7074,-0.2,0.3334,0.2444,0.5556,0.3334,-0.0666,-0.1112,-0.2,-0.4666,-0.5112,-0.2,-0.2444,-0.1556,-0.0666,0.0666,0.2888,0.4222,0.8666,1,0.9556,1,1,0.9556,0.7334,0.5556,0.4666,0.2888,0.3334,0.4222,0.4222,0.8222,0.8222,-0.2632,0.221,0.1368,0.3052,0.0526,-0.2632,-0.3894,-0.4106,-0.5578,-0.621,-0.4948,-0.6842,-0.621,-0.3052,-0.3264,-0.179,-0.0526,0.0948,0.3894,0.4736,0.9578,1,0.7474,0.6632,0.7684,0.621,0.4106,0.4736,0.4948,0.2632,0.3264,0.5368,-1,-1,-1,-1,-1,-1,-0.9486,-0.9692,-0.9568,-0.9506,-0.1906,0.8166,0.963,0.9774,0.9156,0.8744,0.8106,0.656,0.5674,0.5118,0.343,-0.0546,-0.6252,-0.8476,-0.93,-0.899,-0.9156,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.965,-0.969,-0.965,-0.9676,-0.5246,0.3474,0.9056,0.6216,0.4994,0.4774,0.412,0.2432,0.11,-0.1002,-0.3558,-0.6468,-0.7956,-0.8422,-0.8732,-0.8474,-0.903,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8868,-0.9134,-0.86,-0.9468,-0.7534,-0.4178,-0.206,-0.406,-0.426,-0.502,-0.382,-0.436,-0.396,-0.604,-0.788,-0.932,-0.62,0.1132,0.24,0.0632,-0.3868,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,-1,-1,1,1,1,-0.3714,-0.7428,-0.7714,-0.7714,-0.8572,-0.9428,-1,-0.8572,0.2286,0.1142,-0.2286,-0.6286,-0.9428,-0.6,0.0572,-1,-1,-1,-1,-1,-1,0.2358,0.239,0.2386,0.2272,0.2116,0.1924,0.1574,0.1042,0.0016,-0.2764,0.331,0.373,0.3938,0.4278,0.4718,0.527,0.5806,0.6622,0.774,0.864,-0.6534,0.1648,-0.513,0.0182,0.253,0.5116,0.925,1,0.102,0.551,0.4694,0.2654,0.1428,0.4286,0.6734,0.7552,0.5918,0.3878,0.4286,0.4286,0.3062,0.2244,0.7552,0.8776,0.7142,0.5918,1,1,0.8368,0.7142,0.551,0.5102,0.4694,0.4694,0.4286,0.4286,0.4286,0.4286,0.347,-0.102,0.279,0.6744,0.5582,0.093,-0.0232,0.0698,0.5582,0.8372,1,0.7442,0.7442,0.5814,0.372,0.1396,0.4652,1,0.4652,0.3488,0.8838,0.6046,0.4884,0.4186,0.2558,0.0698,0.0232,0.0698,0.0466,0.1396,0.1628,0.2326,0.1628,-0.0466,0.3272,0.7758,0.701,0.0654,-0.0842,-0.0094,0.2336,0.458,0.9252,0.9626,1,0.8318,0.514,0.4018,0.4766,0.9066,0.6636,0.5328,0.6636,0.6822,0.1588,0.1028,-0.2898,-0.3644,-0.3458,-0.271,0.0654,-0.1028,-0.6262,-0.2524,-0.3084,-0.4206,0.0802,-1,-1,1,-1,-1,-0.4,-0.8334,-1,-0.5068,-0.3972,-0.3698,-0.274,-0.3698,-0.178,-0.1918,-0.2466,-0.137,0.3424,0.3562,0.4246,0.5068,0.6164,0.6576,0.3698,0.4246,0.5206,0.685,0.959,1,0.5342,0.411,0.5068,0.0822,0.452,0.2876,0.178,0.0822,0.2328,0.1918,-0.1644,'2'
-0.2058,0.5036,0.489,0.8014,0.658,0.022,-0.1764,-0.2132,-0.4338,-0.2904,-0.3236,-0.272,-0.0588,-0.0294,0.353,0.3898,0.8714,0.9596,0.9816,0.7904,0.75,0.853,1,0.7942,0.489,0.2794,0.1948,0.2058,0.217,0.217,0.2904,0.5184,-0.2138,0.3124,0.444,0.6772,0.4738,-0.0582,-0.414,-0.435,-0.3962,-0.42,-0.2974,-0.3602,-0.139,-0.1778,-0.0104,0.1748,0.2706,0.6264,0.701,1,0.985,0.8356,0.7518,0.8834,0.731,0.5486,0.3034,0.3424,0.3184,0.3304,0.4618,0.432,-0.2778,0.2026,0.4222,0.5918,0.2622,-0.2308,-0.4726,-0.529,-0.5886,-0.526,-0.3972,-0.3594,-0.3406,-0.2528,-0.3532,-0.0676,-0.0172,0.1428,0.5982,0.796,1,0.9654,0.8618,0.843,0.7614,0.595,0.4914,0.3814,0.35,0.2716,0.325,0.4506,-0.2686,0.1872,0.5442,0.636,0.0142,-0.3816,-0.689,-0.7208,-0.6714,-0.583,-0.6856,-0.5584,-0.4982,-0.477,-0.3816,-0.1908,-0.0954,0.1342,0.3462,0.6926,0.9788,1,0.8622,0.8304,0.8622,0.834,0.6644,0.3922,0.4064,0.3144,0.4558,0.523,-0.264,0.0944,0.6608,0.657,-0.5184,-0.7572,-0.7842,-0.5992,-0.8536,-0.8766,-0.8228,-0.7418,-0.711,-0.5954,-0.5376,-0.4336,-0.3642,-0.1022,0.183,0.5298,0.9384,1,0.8728,0.761,0.7764,0.8498,0.5916,0.2562,0.3718,0.2062,0.3372,0.445,-0.1888,0.339,1,0.854,-0.2832,-0.7382,-0.6052,-0.5278,-0.8198,-0.8928,-0.9056,-0.7812,-0.7168,-0.8584,-0.5836,-0.5364,-0.5236,-0.2618,-0.1202,0.3606,0.9056,0.9142,0.6438,0.5278,0.691,0.751,0.4164,0.0128,0.0042,-0.0816,-0.0128,0.1374,-0.0484,0.5982,1,0.6766,-0.1362,-0.709,-0.575,-0.5382,-0.5612,-0.6444,-0.9954,-0.5936,-0.5012,-0.575,-0.7228,-0.589,-0.3856,-0.3718,-0.5012,-0.1686,0.5428,0.746,0.261,0.187,0.1964,0.455,0.1502,-0.2148,-0.321,-0.3626,-0.2378,-0.1408,0,0.7778,0.8334,0.7222,0.3334,-0.4444,-0.6112,-0.5,-0.2778,-0.3888,-0.2222,-0.2778,-0.1112,-0.3334,0.3888,0.1666,0.9444,1,0.5,0,0.2778,0.2778,0.2222,0.4444,-0.1666,0.1112,-0.2778,-0.2778,-0.1112,-0.0556,-0.1112,0.2222,-0.102,0.5102,0.5918,0.7552,0.6734,0.1836,0.0612,-0.0204,-0.1836,-0.1836,-0.347,-0.1428,0.0612,0.2244,0.3878,0.5102,0.8776,1,0.8368,0.5918,0.551,0.7142,0.6734,0.7552,0.4286,0.4694,0.102,0.0612,0.347,0.3062,0.3878,0.3062,-0.2728,0.1818,0.8484,0.7576,-0.3636,-0.8484,-0.4546,-0.394,-0.6666,-0.7576,-0.697,-0.5454,-0.7272,-0.697,-0.4848,-0.2728,-0.3334,-0.1212,0.2424,0.4848,0.7576,1,0.8788,0.606,0.8484,0.7576,0.5454,0.1212,0.1516,0.091,0.2122,0.2424,-0.9658,-0.9456,-0.9618,-0.9496,-0.9476,-0.9578,-0.9396,-0.9516,-0.9356,-0.9376,-0.9376,0.563,0.9638,0.9658,0.851,0.8208,0.6314,0.424,0.4098,0.1582,-0.0716,-0.3132,-0.5388,-0.7664,-0.861,-0.9194,-0.9296,-1,-1,-1,-1,-1,-1,-0.9616,-0.9234,-0.752,-0.1266,-0.3856,-0.302,0.0354,0.21,0.7478,0.435,-0.2254,0.055,0.6728,0.8288,0.798,0.8048,0.4214,0.181,-0.0166,-0.349,-0.5168,-0.6582,-0.7656,-0.8568,-0.867,-0.8688,-0.9292,-1,-1,-1,-1,-1,-1,-0.93,-0.4334,0.6332,1,1,1,1,1,1,1,0.8366,-0.4578,-0.5,-0.4068,-0.3,-0.4578,-0.5648,-0.6276,-0.8032,-0.8786,-0.9008,-0.8388,-0.8408,-0.5608,-0.2442,-0.0942,-0.5908,-1,-1,-1,-1,-1,-1,-0.3142,1,1,1,-0.4858,-0.7714,-0.6,-0.8572,-0.6572,0.2858,1,1,-0.2286,-0.8572,-1,-1,-0.9142,-0.9714,-0.4858,-0.2572,-0.6572,-0.9714,-0.8,-0.5428,-0.5714,0,0.4572,-1,-1,-1,-1,-1,-1,0.2562,0.2544,0.2652,0.2532,0.2542,0.2312,0.1988,0.1622,0.0632,-0.198,-0.0734,-0.0576,-0.031,0.0262,0.066,0.149,0.2392,0.3392,0.543,0.6648,-0.6266,0.0588,-0.4342,-0.5152,0.0276,0.2442,0.528,0.3584,-0.6552,-0.6504,-0.44,-0.2934,-0.352,-0.4352,-0.418,0.0146,0.088,-0.1712,-0.1076,0.0806,-0.0538,-0.176,0.0196,0.2322,0.3668,0.3668,0.5916,0.7114,1,0.9242,0.9046,0.6894,0.5942,0.6528,0.6406,0.5746,0.5722,0.5746,0.4376,0.0122,-0.8942,-0.8372,-0.7862,-0.5568,-0.5882,-0.653,-0.5294,-0.3314,-0.2098,-0.3216,-0.2804,-0.1706,-0.3,-0.3176,-0.198,-0.0176,0.1274,0.147,0.2196,0.304,0.6078,0.902,1,0.849,0.7138,0.8156,0.7412,0.804,0.7176,0.849,0.549,0.3,-0.8718,-0.7246,-0.7018,-0.6768,-0.545,-0.5162,-0.4914,-0.1148,0.2046,0.0574,-0.0286,0.1606,-0.0822,-0.0936,-0.042,0.1128,0.197,0.4168,0.2696,0.39,0.6042,0.8068,1,0.8662,0.719,0.738,0.7782,0.7246,0.7916,0.6864,0.4934,0.3442,-0.7222,-1,1,-1,-1,-1,-0.2,0.9666,-1,-0.4906,0.0188,-0.0754,0.0566,0.151,-0.0378,-0.0754,0.0378,0.2076,0.5472,0.8114,0.8302,0.9812,0.9434,0.717,0.6038,0.3208,0.434,0.8302,1,1,0.6226,0.6982,0.434,0.1698,-0.2642,0,0.3962,0.3774,0.434,0.2452,0.0754,'3'
-0.1412,0.5118,0.5148,0.5648,0.5058,0.1352,0.0736,-0.0236,-0.0912,-0.0676,-0.1618,-0.1148,-0.0618,0.253,0.3764,0.7558,0.8324,1,0.8148,0.803,0.7118,0.8794,0.8706,0.8324,0.6118,0.5118,0.3588,0.3264,0.2236,0.3176,0.4176,0.6558,-0.2006,0.3394,0.274,0.5282,0.3918,0.0354,-0.1428,-0.1716,-0.3604,-0.274,-0.2582,-0.211,-0.0458,-0.0406,0.156,0.1402,0.4364,0.6042,0.9134,0.9424,0.882,0.8086,1,0.9528,0.6356,0.4076,0.4312,0.2792,0.3394,0.308,0.405,0.5334,-0.2352,0.2264,0.4088,0.5648,0.2118,-0.1148,-0.4118,-0.4676,-0.497,-0.5058,-0.403,-0.5088,-0.4558,-0.1558,-0.15,-0.0236,0.0676,0.3264,0.6118,0.903,1,0.95,0.9648,0.9706,0.8206,0.5706,0.4118,0.2942,0.3382,0.253,0.3764,0.5324,-0.2828,0.1102,0.4554,0.5,-0.2084,-0.4792,-0.5952,-0.5982,-0.631,-0.628,-0.613,-0.5566,-0.5358,-0.5148,-0.369,-0.253,-0.1756,0.0416,0.3274,0.619,0.9376,1,0.8392,0.8392,0.7352,0.5952,0.4316,0.2202,0.2886,0.1458,0.3066,0.381,-0.2552,0.1048,0.6538,0.6328,-0.451,-0.7412,-0.7482,-0.57,-0.7762,-0.8636,-0.8252,-0.8602,-0.8672,-0.7588,-0.6258,-0.5594,-0.3286,-0.098,0.1644,0.493,0.9406,1,0.8706,0.7938,0.7868,0.6958,0.4826,0.1854,0.2342,0.1364,0.2028,0.2658,-0.1376,0.3036,0.992,0.8624,-0.2914,-0.7004,-0.502,-0.498,-0.7126,-0.7126,-0.6924,-0.7086,-0.7854,-0.7004,-0.6396,-0.579,-0.4534,-0.2834,-0.0364,0.3482,0.7814,1,0.8744,0.757,0.7086,0.6194,0.4574,0.1458,0.1376,0.0242,0.0728,0.1984,-0.0918,0.4104,1,0.773,-0.0656,-0.5458,-0.4716,-0.4498,-0.7598,-0.8296,-0.7468,-0.6682,-0.6288,-0.572,-0.3318,-0.5152,-0.6594,-0.3538,-0.2926,0.1834,0.8078,0.738,0.642,0.4848,0.3362,0.1442,0.1354,-0.345,-0.3756,-0.3974,-0.262,-0.2184,-0.5,0.4376,0.5,-0.1876,-0.0624,-0.1876,-0.4376,-0.4376,-0.5624,-0.3124,-0.5624,-0.5624,-0.375,0.0624,0.1876,0.625,1,0.6876,0.125,0.25,0.5624,0.375,0.9376,0.875,0.3124,0.5,0.25,0.5624,-0.0624,0,0.1876,0.5,-0.1628,0.5814,0.5348,0.5814,0.4884,0.1162,0.0698,-0.1162,-0.1628,-0.0232,-0.1162,0.0232,-0.0698,0.3488,0.3488,0.907,0.9534,1,0.907,0.7674,0.721,1,1,0.4418,0.4884,0.3954,0.3488,0.0698,0.1162,0.2094,0.2558,0.5814,-0.038,0.2912,0.7974,0.7468,-0.1392,-0.519,-0.519,-0.4684,-0.6456,-0.519,-0.5696,-0.5444,-0.8482,-0.7216,-0.2912,-0.2406,-0.2406,-0.0886,0.3418,0.5696,0.8482,1,0.9746,0.8988,0.8734,0.8734,0.5696,0.4178,0.2912,0.2912,0.3924,0.3164,-0.9558,-0.9508,-0.9738,-0.9574,-0.9558,-0.9656,-0.9508,-0.9672,-0.9524,-0.9622,-0.946,0.5754,0.9704,0.8476,0.7328,0.6016,0.323,0.2,0.0722,-0.0934,-0.2214,-0.4066,-0.5836,-0.7574,-0.9196,-0.9378,-0.9114,-1,-1,-1,-1,-1,-1,-0.9132,-0.7138,-0.2468,0.24,0.071,-0.2382,0.144,0.2862,0.5904,-0.0888,-0.3322,-0.1886,0.4124,0.6898,0.3634,0.1494,-0.143,-0.3558,-0.4858,-0.6418,-0.7216,-0.783,-0.8536,-0.9006,-0.927,-0.9126,-0.9236,-1,-1,-1,-1,-1,-1,-0.12,1,1,1,1,1,1,1,1,1,1,-0.4378,-0.292,-0.23,-0.292,-0.466,-0.434,-0.584,-0.68,-0.884,-0.938,-0.928,-0.9134,-0.7134,0.04,0.0832,-0.0768,-1,-1,-1,-1,-1,-1,1,1,0.5428,0.3714,-0.2286,-0.4286,-0.6286,-0.7714,-0.7714,-0.2572,1,1,-0.2858,-0.8572,-1,-0.9428,-0.8858,-0.9142,-0.8,-0.7714,-0.5714,-0.8286,-0.5714,-0.0286,-0.2,-0.8286,0.3428,-1,-1,-1,-1,-1,-1,0.2492,0.2884,0.3054,0.3252,0.341,0.353,0.3572,0.3228,0.1928,-0.1076,-0.0206,-0.005,0.0066,0.0262,0.0666,0.108,0.203,0.3106,0.4512,0.5714,-0.5866,0.1648,-0.3908,-0.5828,-0.2142,-0.0082,0.2126,0.5,-0.7572,-0.7454,-0.5652,-0.4946,-0.5436,-0.5494,-0.5162,-0.3536,-0.3574,-0.3614,-0.332,-0.3752,-0.4026,-0.238,-0.1088,0.2714,0.2792,0.2596,0.573,0.7572,0.949,1,0.9824,0.7296,0.4162,0.4104,0.528,0.3948,0.4162,0.3966,0.336,0.0128,-0.8546,-0.7628,-0.7494,-0.6608,-0.6642,-0.6492,-0.5422,-0.462,-0.4168,-0.3868,-0.3668,-0.3082,-0.3284,-0.3584,-0.2314,-0.0042,0.1478,0.1964,0.432,0.6374,0.8112,0.8446,0.8128,0.833,0.8746,0.761,0.9916,0.9732,1,0.8296,0.7528,0.4336,-0.8866,-0.885,-0.7464,-0.6814,-0.603,-0.573,-0.5146,-0.1826,-0.0708,-0.1826,-0.146,0.0692,-0.0226,-0.1042,-0.0176,0.0392,0.316,0.4062,0.3528,0.6564,0.8366,0.8832,0.9382,0.8816,0.7798,0.8916,0.8698,0.9016,1,0.9182,0.7998,0.5664,-0.8118,-1,1,-1,-1,-1,-0.4,1,-1,-0.4814,-0.4814,-0.2,-0.0518,-0.0666,-0.1852,-0.037,0.0666,0.2888,0.4222,0.4666,0.7334,0.674,0.437,0.4222,0.6888,0.5408,0.526,0.6592,1,0.8962,0.5408,0.6296,0.763,0.3038,0.2444,0.4814,0.1408,-0.1112,0.0666,0.0962,-0.6888,'3'
-0.164,0.4024,0.8164,0.8204,0.1992,-0.25,-0.5274,-0.5196,-0.5508,-0.6484,-0.5976,-0.5898,-0.4492,-0.4532,-0.375,-0.1718,0.043,0.5898,0.8204,1,0.7618,0.7032,0.914,0.836,0.7304,0.3906,0.211,0.164,0.1172,0.25,0.3204,0.6718,-0.3016,0.0858,0.5206,0.5874,-0.1366,-0.4286,-0.6476,-0.4888,-0.5334,-0.5428,-0.6064,-0.546,-0.4444,-0.5428,-0.5556,-0.1842,-0.1968,0.1112,0.4984,0.5842,1,0.9366,0.7238,0.854,0.8984,0.6412,0.5112,0.4286,0.308,0.2794,0.4794,0.6444,-0.299,0.0934,0.3894,0.4454,-0.243,-0.5046,-0.62,-0.6074,-0.651,-0.6948,-0.6574,-0.6106,-0.6044,-0.6728,-0.5888,-0.2928,-0.2898,-0.0312,0.2866,0.4486,1,0.944,0.6854,0.7258,0.7602,0.8318,0.7166,0.5452,0.3988,0.38,0.6012,0.6728,-0.2564,0.1462,0.409,0.4676,-0.2728,-0.513,-0.6364,-0.6884,-0.7272,-0.7272,-0.7078,-0.672,-0.6298,-0.7176,-0.591,-0.2922,-0.2988,-0.0488,0.2532,0.3636,0.8798,0.7988,0.8604,0.75,0.7662,1,0.8474,0.698,0.552,0.4936,0.6624,0.789,-0.2734,0.0934,0.4634,0.4838,-0.4398,-0.7284,-0.657,-0.674,-0.7996,-0.8234,-0.786,-0.8642,-0.8472,-0.6842,-0.6808,-0.4568,-0.3208,-0.1782,0.1104,0.4568,0.6468,1,0.871,0.6672,0.8982,0.922,0.6944,0.5858,0.6298,0.5246,0.657,0.7792,-0.2636,0.1588,0.7328,0.6282,-0.5524,-0.6606,-0.7436,-0.7546,-0.87,-0.9676,-0.917,-0.8158,-0.8448,-0.8304,-0.5884,-0.5054,-0.3358,-0.0506,0.1372,0.538,0.9928,1,0.7618,0.7112,0.87,0.8158,0.6932,0.6174,0.574,0.4874,0.6678,0.8122,-0.0706,0.3942,1,0.7676,-0.4356,-0.4232,-0.7054,-0.6514,-0.7884,-0.7884,-0.9834,-0.6846,-0.6764,-0.6224,-0.7468,-0.498,-0.4522,-0.2158,0.0414,0.5104,0.9088,0.9626,0.664,0.6556,0.7428,0.7136,0.5892,0.2366,0.4274,0.22,0.4772,0.5186,-0.0666,0.9334,1,0.5334,0.5334,0.0666,0.0666,-0.6666,-0.4666,-0.6666,-0.7334,-0.3334,-0.3334,-0.6,-0.6,0.0666,0.2,0.6666,0.5334,0.3334,0.4666,0.4666,0.7334,0.6,0.4666,0.2666,-0.6,-0.2,0.1334,0.2,0.2,0.6,0.0666,0.7778,0.8666,0.9112,0.5112,0.0222,-0.1556,0.0222,-0.3778,-0.2444,-0.1112,-0.1112,0.0222,-0.0666,0.2444,0.1556,0.4666,0.5556,0.9112,0.9556,0.8666,0.8666,1,0.8666,0.7334,0.5112,0.4222,0.2888,0.1112,0.3778,0.4666,0.6444,-0.3024,0.093,0.372,0.4186,-0.1628,-0.5116,-0.5582,-0.721,-0.7442,-0.628,-0.721,-0.721,-0.5814,-0.6512,-0.6512,-0.2558,-0.2326,-0.0232,0.3024,0.4884,1,0.9302,0.6976,0.7442,0.7442,0.8838,0.7674,0.6046,0.4186,0.4652,0.628,0.6976,-1,-1,-1,-1,-1,-1,-1,-0.9462,-0.9576,-0.9462,-0.7652,0.7536,0.846,0.8518,0.7806,0.6554,0.5418,0.488,0.5014,0.5092,0.4744,0.0934,-0.6516,-0.8268,-0.898,-0.9076,-0.9268,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9514,-0.96,-0.9458,-0.495,0.1498,0.5064,0.807,0.9362,0.9248,0.8316,0.708,0.631,0.361,0.0518,-0.3076,-0.767,-0.8298,-0.8526,-0.8916,-0.9058,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.9468,-0.8734,-0.1834,-0.749,-0.7112,-0.6312,-0.469,-0.452,-0.482,-0.404,-0.546,-0.712,-0.866,-0.944,-0.84,-0.3834,-0.27,-0.5334,-0.7668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7142,-0.9428,1,1,1,-0.6572,-0.9142,-1,-1,-1,-1,-1,-1,-0.1428,0.7428,-0.3714,-0.8286,-0.5714,-0.3142,-0.0572,-1,-1,-1,-1,-1,-1,-0.134,-0.1348,-0.1324,-0.1578,-0.1598,-0.1658,-0.1812,-0.2104,-0.2636,-0.3938,0.4018,0.4342,0.4756,0.512,0.5626,0.6234,0.673,0.7604,0.8632,0.9078,-0.6,0.1294,-0.416,-0.3418,0.1784,0.3362,0.2944,1,-0.647,-0.2942,-0.2942,-0.1764,0.153,0.2236,0.247,0.1764,0.6,0.5058,0.3882,0.6942,0.6706,0.7412,0.5764,0.6,0.6942,0.4118,0.9294,0.953,1,0.9058,0.7176,0.3176,0.6,0.7882,0.5058,0.4352,0.1058,-0.1058,-0.3176,-0.8118,-0.4666,-0.0476,0.0096,-0.0096,-0.181,0.1428,0.2572,0.162,0.8476,0.9048,0.562,0.7142,0.4858,0.4666,0.4666,0.581,0.6952,0.581,0.8476,1,0.981,0.6572,0.6762,0.7334,0.6762,0.7714,0.7524,0.7334,0.562,0.3904,0.2952,-0.1048,0.15,0.425,0.4,-0.175,-0.275,-0.375,0.075,-0.3,0.675,0.975,0.4,0.975,0.7,0.475,0.175,0.425,1,0.725,0.725,0.85,0.875,0.875,0.4,0.475,0.525,0.875,0.725,0.55,0.45,0.425,0.3,-0.125,-0.0508,-1,-1,1,-1,-1,-0.4,-0.8,-1,-0.271,-0.1588,-0.1588,0.0094,-0.215,-0.215,-0.0654,-0.1776,0.1588,0.4392,0.7196,0.8692,0.757,0.5328,0.8504,0.9066,0.9252,0.3644,0.9626,1,0.4766,0.2898,0.2336,0.458,0.3084,0.4954,0.4954,0.1962,0.1214,0.2336,0.1588,0.0654,'4'
-0.1834,0.3404,0.2548,0.3786,0.1738,-0.1142,-0.3024,-0.2452,-0.3666,-0.4096,-0.4286,-0.4834,-0.2952,-0.2262,-0.1,0.1024,0.1738,0.612,0.6096,1,0.9334,0.7452,0.7548,0.938,0.719,0.7404,0.431,0.4642,0.531,0.4976,0.7452,0.7048,-0.2052,0.2754,0.2004,0.381,0.1066,-0.123,-0.4138,-0.4186,-0.5124,-0.6226,-0.4842,-0.531,-0.4208,-0.2848,-0.2732,-0.0528,-0.0996,0.1934,0.4678,0.6272,0.9132,1,0.7914,0.7866,0.843,0.7608,0.5522,0.4888,0.6318,0.5592,0.6108,0.7492,-0.217,0.2724,0.3916,0.5318,0.0926,-0.1006,-0.582,-0.6932,-0.5582,-0.5502,-0.5186,-0.656,-0.6694,-0.3888,-0.3756,-0.283,-0.0344,-0.008,0.4126,0.6878,0.8862,0.9788,1,0.783,0.8756,0.9894,0.8334,0.7302,0.627,0.6112,0.7858,0.783,-0.2248,0.208,0.5022,0.57,-0.1486,-0.3804,-0.6266,-0.5728,-0.5926,-0.6182,-0.751,-0.7794,-0.5418,-0.5954,-0.519,-0.3042,-0.2476,0.0976,0.2022,0.5106,0.9688,1,0.9124,0.703,0.7964,0.901,0.85,0.6152,0.5814,0.5022,0.6578,0.6718,-0.082,0.235,0.744,0.7274,-0.363,-0.6162,-0.6272,-0.5354,-0.8164,-0.8636,-0.8192,-0.9806,-0.7414,-0.5938,-0.477,-0.491,-0.2962,-0.0486,0.135,0.3964,0.8026,1,0.9332,0.591,0.7386,0.7858,0.7636,0.5744,0.5076,0.349,0.5772,0.566,-0.0016,0.4034,1,0.8902,-0.2872,-0.5354,-0.4756,-0.3846,-0.8556,-0.8524,-0.8148,-0.62,-0.708,-0.6452,-0.4946,-0.5604,-0.526,-0.3156,-0.0486,0.2244,0.5448,0.8776,0.7238,0.4222,0.4066,0.6766,0.5982,0.372,0.2968,0.102,0.2654,0.3092,0.0904,0.3914,1,0.8384,-0.122,-0.55,-0.4738,-0.4706,-0.6038,-0.607,-0.8066,-0.4706,-0.5118,-0.4928,-0.198,-0.3788,-0.569,-0.2774,-0.1886,0.1284,0.5278,0.553,0.4928,0.3566,0.6418,0.6514,0.1822,0.011,-0.0776,-0.2614,-0.0682,-0.027,0.1924,0.6924,0.6538,0.6538,0.3846,0.1538,-0.1154,0,0.1154,-0.1538,0,-0.1154,-0.077,0.2692,0.3076,0.5,0.5,1,0.9616,0.8846,0.6538,0.8462,0.8846,0.923,0.7692,0.8462,0.577,0.423,0.6538,0.4616,0.6924,0.9616,-0.0566,0.434,0.3962,0.4716,0.2452,0.132,-0.0188,0.0188,-0.2076,-0.2452,-0.1698,-0.3208,-0.0188,-0.2076,0.0944,0.283,0.434,0.6982,0.7358,0.849,0.849,0.8114,0.8868,1,0.849,0.6226,0.3584,0.5472,0.5094,0.585,0.7736,0.7358,0.2156,0.4314,0.8432,0.8236,-0.0196,-0.2352,-0.196,-0.1372,-0.5098,-0.451,-0.2942,-0.5098,-0.2942,-0.1372,0.0784,-0.0784,-0.0588,0.0196,0.353,0.5294,0.8824,1,1,0.647,0.9216,0.9608,0.8824,0.6666,0.5686,0.5882,0.6666,0.647,-1,-1,-1,-1,-1,-1,-1,-1,-0.9688,-0.9706,-0.64,0.5262,0.7594,0.7704,0.8714,0.967,0.8054,0.6602,0.5518,0.3094,0.0744,-0.1846,-0.5868,-0.866,-0.8824,-0.9338,-0.9302,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9744,-0.9718,-0.3724,0.4988,0.9384,0.8696,0.8938,0.74,0.3914,0.0986,-0.2204,-0.4078,-0.5428,-0.6594,-0.8132,-0.8958,-0.8834,-0.93,-0.9542,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.98,0.18,-0.36,-0.291,-0.3182,-0.34,-0.305,-0.3368,-0.55,-0.73,-0.9212,-0.9422,-0.954,-0.8922,-0.4656,-0.1722,-0.4522,-0.859,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,-0.7714,-0.8572,-0.8,-0.9142,-0.9714,-0.9142,-0.5428,-0.6,-0.7142,-0.8572,-0.2858,-0.1142,-0.2572,0.6,-0.3142,-1,-1,-1,-1,-1,-1,0.1452,0.1464,0.1576,0.1686,0.1736,0.169,0.1366,0.0888,-0.0148,-0.2908,0.6058,0.608,0.6326,0.6462,0.6612,0.7048,0.7518,0.792,0.859,0.845,-0.6,0.4,-0.3986,-0.3278,0.3246,0.7176,0.9326,1,-0.4432,-0.2372,-0.1134,-0.2164,0.1958,0.3402,0.3196,0.3402,0.6082,0.6494,0.402,0.5258,0.7938,0.8144,0.897,0.8556,0.8762,0.6702,0.732,0.9794,1,0.9588,0.9382,0.567,0.5052,0.4432,0.4432,0.2578,-0.0928,-0.299,-0.4226,-0.5464,-0.5258,-0.3608,-0.402,-0.464,-0.402,-0.1958,0.0104,0.134,0.464,0.4226,0.3608,0.4432,0.299,0.402,0.4226,0.6288,0.8144,0.6082,0.6288,0.9794,1,0.9382,0.7114,0.7526,0.4432,0.7526,0.6702,0.5464,0.3402,0.0104,-0.3402,-0.3608,0.1842,0.3026,0.0526,-0.2368,-0.171,-0.4736,-0.1448,0.0132,0.5,0.4606,0.4474,0.4736,0.3948,0.5132,0.3948,0.5922,0.8422,0.8026,0.7106,0.6974,0.829,1,0.9474,0.6316,0.4868,0.75,0.6578,0.6578,0.5526,0.3026,0.171,-0.1448,0.4478,-1,-1,1,-1,-1,-0.6,-0.7666,-1,-0.4746,-0.0848,-0.1016,-0.0508,-0.1864,-0.0678,-0.0338,0.1016,-0.0508,0.2712,0.5594,0.4916,0.6272,0.7458,0.8306,0.7458,0.3898,0.4406,0.7796,0.7458,1,0.5254,0.339,0.0848,0.0508,0.305,0.356,0.1526,0.2034,-0.0508,-0.2542,-0.4576,'4'
-0.2156,0.2468,0.3246,0.465,0.0676,-0.213,-0.3584,-0.413,-0.7038,-0.548,-0.4572,-0.5558,-0.5506,-0.3324,-0.3974,-0.2572,-0.1584,-0.0858,0.2832,0.626,1,0.8988,0.5558,0.5584,0.6338,0.5896,0.6,0.4572,0.3376,0.2546,0.374,0.3922,-0.2258,0.2476,0.3516,0.4966,0.0642,-0.2312,-0.45,-0.5896,-0.6608,-0.5404,-0.4994,-0.513,-0.5842,-0.3926,-0.3132,-0.223,-0.1574,-0.0314,0.3296,0.5786,0.7374,0.9234,0.9562,0.71,0.792,1,0.7894,0.595,0.4638,0.4582,0.6006,0.5294,-0.2402,0.192,0.3954,0.4888,-0.113,-0.404,-0.6214,-0.6242,-0.6016,-0.5988,-0.7146,-0.6384,-0.6554,-0.6158,-0.4492,-0.3984,-0.2288,0.0594,0.1638,0.4632,0.8306,1,0.8248,0.6724,0.8362,0.7966,0.7204,0.5564,0.5594,0.3644,0.4888,0.5678,-0.243,0.1526,0.5016,0.5296,-0.43,-0.729,-0.6884,-0.6418,-0.757,-0.81,-0.704,-0.7538,-0.6792,-0.6604,-0.539,-0.38,-0.3116,-0.1652,0.1246,0.461,0.7976,1,0.9532,0.7788,0.8318,0.9066,0.7976,0.5608,0.542,0.4018,0.4922,0.595,-0.252,0.1098,0.7094,0.6198,-0.5982,-0.6476,-0.6568,-0.6538,-0.9474,-0.8702,-0.864,-0.9506,-0.9166,-0.7744,-0.6476,-0.5086,-0.4034,-0.1282,0.0974,0.4158,0.8888,1,0.9506,0.7094,0.7712,0.9382,0.765,0.49,0.5024,0.4064,0.4992,0.626,-0.0992,0.516,1,0.7782,-0.5932,-0.331,-0.5764,-0.5932,-0.7244,-0.6908,-0.8958,-0.8924,-0.8722,-0.711,-0.6134,-0.5092,-0.395,-0.1564,0.1194,0.3782,0.869,0.9194,0.6874,0.526,0.6638,0.7546,0.6268,0.331,0.311,0.2236,0.2168,0.4522,-0.03,0.6926,1,0.6288,-0.2894,-0.2734,-0.7564,-0.7086,-0.8484,-0.9322,-0.9042,-0.7126,-0.8244,-0.8284,-0.964,-0.7486,-0.501,-0.5728,-0.2176,0.1536,0.7126,0.98,0.7644,0.5688,0.6806,0.7684,0.493,0.2496,0.2456,-0.2136,0.1418,0.2496,0.0952,0.5238,0.9048,0.9048,0.381,0.0476,0.0952,0.0476,-0.1428,-0.238,-0.238,-0.0952,-0.1904,-0.381,-0.238,-0.1904,-0.0952,-0.1428,0.1904,0.619,0.9524,1,0.619,0.762,0.7142,0.7142,0.4286,0.4762,0.2858,0.2858,0.3334,0.4286,0.0416,0.4584,0.5,0.625,0.375,0,-0.1666,-0.4584,-0.4166,-0.25,-0.25,-0.4166,-0.2916,-0.2084,-0.3334,-0.0416,0.0416,0.0834,0.4584,0.75,1,0.8334,0.7916,0.75,0.75,0.7916,0.75,0.625,0.5,0.4584,0.6666,0.625,-0.0724,0.4782,0.971,0.7972,-0.4202,-0.3624,-0.6522,-0.5652,-0.5652,-0.4782,-0.855,-0.7682,-0.7972,-0.6812,-0.7392,-0.5942,-0.3334,-0.0144,0.1594,0.5362,0.971,0.942,1,0.6232,0.884,0.6812,0.7682,0.5652,0.4492,0.4492,0.4202,0.6812,-1,-1,-1,-1,-1,-1,-1,-1,-0.9412,-0.9474,-0.3866,0.3908,0.8592,0.9748,0.9244,0.7226,0.687,0.731,0.6596,0.4958,0.3656,-0.0504,-0.7016,-0.8676,-0.9306,-0.9328,-0.9432,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9492,-0.9574,-0.5562,0.2076,0.8354,0.938,0.8068,0.6486,0.4804,0.448,0.1956,-0.1734,-0.2926,-0.4998,-0.8252,-0.8668,-0.9056,-0.9252,-0.9528,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8334,-0.9134,-0.8034,-0.46,-0.3256,-0.331,-0.4438,-0.4564,-0.4346,-0.571,-0.64,-0.8196,-0.9396,-0.9072,-0.759,-0.4456,-0.429,-0.6356,-0.9122,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5714,1,1,1,-0.8572,-0.9428,-0.9714,-1,-1,-1,-0.7428,-0.5714,-0.9714,-0.4286,-0.4858,-0.7714,-0.5714,-0.1142,-0.2572,-1,-1,-1,-1,-1,-1,0.0542,0.056,0.06,0.06,0.0472,0.047,0.0278,-0.0392,-0.1436,-0.3524,0.854,0.8756,0.883,0.8962,0.9084,0.9306,0.9684,0.9856,1,0.9702,-0.5866,0.3176,-0.3528,-0.4,-0.2048,0.4526,0.7994,0.725,0,0.3478,0.3478,0.0434,-0.087,0.174,0.174,0.2174,0.5218,0.826,0.913,1,0.9566,0.913,0.7826,0.8696,0.9566,1,0.8696,0.7826,0.5218,0.4348,0.3044,0.2174,0.2608,0.2174,0.5218,0.6086,0.5652,0.6086,0.3478,-0.0434,0.3334,0.6666,0.3334,-0.1176,-0.1764,-0.2156,-0.098,0.0392,0.1764,0.549,1,0.7058,0.745,0.6862,0.451,0.4902,1,0.8824,0.647,0.7254,0.353,0.1176,0.1568,-0.098,-0.0784,-0.0588,0.549,0.7254,0.6274,0.549,0.6862,0.255,0.1058,0.6706,0.4352,-0.1294,-0.4118,-0.4118,-0.3882,-0.3882,-0.2706,0.4118,1,0.4588,0.647,0.1764,0.153,0.0824,0.8118,0.7412,0.3176,0.4588,0.1058,-0.1058,-0.2706,-0.3882,-0.2942,-0.3412,-0.1764,0.3176,-0.1058,0.3882,0.7176,0.2,0.2556,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.0992,0.0534,-0.0534,0.145,-0.145,-0.0534,-0.145,-0.1146,-0.0076,0.2672,0.832,0.603,0.5878,0.7558,0.2978,0.4962,0.4352,0.1756,0.9236,1,0.3282,0.2978,-0.1604,0.2978,0.0534,0.1756,0.084,0.2366,-0.2214,-0.2214,-0.2366,-0.374,'5'
-0.2522,0.2664,0.224,0.2138,0.0436,-0.147,-0.4042,-0.3252,-0.463,-0.4448,-0.459,-0.4286,-0.2988,-0.4184,-0.1834,-0.1328,0.0234,0.1854,0.3252,0.8054,0.8622,0.8216,0.8096,0.771,0.7386,1,0.8966,0.763,0.6556,0.6414,0.7568,0.846,-0.2078,0.2954,0.219,0.1854,0.0214,-0.1276,-0.426,-0.4614,-0.4538,-0.437,-0.3588,-0.4072,-0.3328,-0.4296,-0.2396,-0.1966,-0.0588,0.163,0.2562,0.6254,0.67,0.8696,0.8658,0.6906,0.6962,1,0.8788,0.7446,0.5564,0.6346,0.7446,0.823,-0.193,0.2944,0.195,0.3118,0.0584,-0.1228,-0.4854,-0.5068,-0.5068,-0.5868,-0.4678,-0.5458,-0.4132,-0.3178,-0.2944,-0.1208,-0.0858,0.1716,0.2982,0.6042,0.8772,1,0.9142,0.8032,0.9006,0.9338,0.8402,0.733,0.6882,0.653,0.768,0.7972,-0.2676,0.15,0.2822,0.3892,-0.1752,-0.2466,-0.6432,-0.6474,-0.5698,-0.658,-0.6748,-0.637,-0.5866,-0.53,-0.4312,-0.3138,-0.1794,-0.0116,0.2004,0.511,0.788,1,0.9664,0.7082,0.8488,0.9728,0.8406,0.6936,0.66,0.6054,0.7166,0.7712,-0.3174,0.0148,0.3994,0.363,-0.3606,-0.7292,-0.7906,-0.6428,-0.893,-0.8998,-0.8362,-0.9136,-0.827,-0.6996,-0.6314,-0.4994,-0.4038,-0.2332,0.0444,0.3516,0.6928,1,0.9704,0.661,0.7702,0.843,0.777,0.6406,0.6292,0.4836,0.6292,0.7156,-0.2194,0.0732,0.6134,0.4598,-0.2392,-0.5936,-0.7398,-0.7646,-0.9206,-0.824,-0.8612,-0.9182,-0.8314,-0.7918,-0.6802,-0.6084,-0.3754,-0.2366,-0.0038,0.2764,0.6828,1,0.9158,0.5688,0.6778,0.8612,0.8018,0.5762,0.5142,0.4572,0.5416,0.6852,0.048,0.5868,1,0.6926,-0.2892,-0.719,-0.7356,-0.6694,-0.9768,-0.8348,-0.7422,-0.6496,-0.7256,-0.5306,-0.243,-0.3918,-0.6892,-0.5802,-0.309,0.071,0.6528,0.8248,0.676,0.4842,0.7652,0.891,0.5834,0.1272,0.2364,0.0414,0.2462,0.3024,-0.2766,0.149,0.3192,0.1914,-0.0638,-0.0638,-0.3192,-0.149,-0.1064,-0.3618,-0.6596,-0.234,-0.234,-0.4894,-0.0212,0.0638,0.149,0.0212,0.3192,0.9148,1,0.8298,0.7022,0.7446,0.7872,0.6596,0.2766,0.6596,0.7022,0.3618,0.532,0.7446,-0.1482,0.3334,0.2962,0.3704,0.1482,-0.037,-0.1112,-0.1112,-0.2222,-0.3334,-0.1482,-0.3704,-0.1852,-0.2222,-0.1112,0.1112,0.1482,0.4074,0.3704,0.8888,0.963,0.963,0.7038,0.8518,0.926,1,0.7408,0.7038,0.6666,0.4814,0.7408,0.6666,-0.2292,0.1876,0.2292,0.375,0.0624,-0.1458,-0.5416,-0.6666,-0.5624,-0.5834,-0.5,-0.6458,-0.5834,-0.3334,-0.3124,-0.1458,-0.0208,0.0416,0.3542,0.6458,0.8958,0.8124,0.9376,0.8124,0.8124,1,0.9376,0.7708,0.6458,0.625,0.8124,0.8334,-1,-1,-1,-1,-1,-1,-1,-1,-0.958,-0.9526,-0.958,0.4228,0.8284,0.9616,0.8978,0.7388,0.6804,0.463,0.3114,0.1014,-0.0392,-0.3042,-0.5836,-0.8156,-0.9196,-0.9324,-0.9416,-0.9488,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9758,-0.972,-0.9426,0.3436,0.9178,0.8546,0.755,0.5932,0.4136,0.1322,-0.165,-0.4204,-0.6322,-0.7524,-0.853,-0.9146,-0.9458,-0.9652,-0.9704,-0.9726,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9282,-0.9,-0.8534,-0.28,-0.3154,-0.3616,-0.3986,-0.3016,-0.2072,-0.3286,-0.4616,-0.6786,-0.7872,-0.89,-0.9068,-0.5834,-0.51,-0.8134,-0.8534,-0.9134,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3142,-0.9142,1,1,-1,-0.9428,-0.9428,-0.9142,-1,-1,-1,-0.7142,-0.6572,-0.5714,-0.4572,-0.2858,0.1142,-0.1142,-0.8858,-0.6572,-1,-1,-1,-1,-1,0.2654,0.2638,0.244,0.23,0.2046,0.1782,0.1616,0.1414,0.0842,-0.2348,0.949,0.9568,0.9804,0.9978,1,1,1,1,1,1,-0.64,0.6706,-0.9716,-0.7066,0.3004,0.5774,0.6248,1,0.2558,0.8294,0.814,0.5968,0.4574,0.752,0.876,0.814,0.814,0.7364,0.969,0.9534,1,0.5814,0.5814,0.845,0.752,0.0542,0.4418,0.845,0.9534,0.5814,0.5968,0.721,0.6744,0.814,0.6744,0.4728,0.2094,0.5658,0.3178,-0.0078,0.2032,0.5156,0.6406,0.8124,0.5782,0.7032,0.375,0.8124,0.4376,0.6718,0.9218,1,0.9376,0.7812,0.5312,0.5626,0.6562,0.7968,0.1718,0.6094,0.8906,0.5782,0.5156,0.5312,0.7812,0.7188,0.7344,0.6718,0.4062,0.4844,0.375,-0.4532,0.108,0.036,0.1224,0.9136,0.8992,0.4388,0.7842,0.813,0.482,0.6402,0.7554,0.7122,1,0.482,0.5252,0.6116,0.4532,0.2374,0.4388,0.4676,0.7698,0.5108,0.5972,0.4532,0.6116,0.0936,0.6402,0.554,0.367,0.41,0.2086,-0.8418,-0.982,1,-1,-1,-1,-1,-0.2,-1,-1,-0.1406,0.0624,-0.1406,0.2188,0.1094,-0.25,-0.2032,-0.2968,-0.1406,0.4532,0.5,0.4688,1,0.7812,0.6562,0.4218,0.4688,0.3282,0.6718,0.8906,0.2812,0.2188,0.1406,0.0312,0.1876,0.1876,0.0782,-0.1718,-0.125,-0.0468,-0.2032,-0.5468,'5'
-0.5416,-0.0564,0.1694,0.382,0.7808,0.9004,0.5946,0.3488,0.176,0.1562,0.1694,0.1296,0.402,0.5416,0.6678,0.9468,1,0.7142,0.7342,0.8672,0.8074,0.4552,0.3356,0.0632,-0.0764,0.1162,-0.123,-0.0366,0.176,0.289,0.475,0.402,-0.4922,-0.0732,0.157,0.3036,0.665,0.7434,0.6282,0.623,0.3508,0.2774,0.356,0.424,0.513,0.7958,0.801,1,0.9476,0.7172,0.8272,0.979,0.7278,0.5602,0.3194,0.309,0.178,0.1256,0.0732,0.288,0.377,0.4974,0.4974,0.398,-0.3468,0.0302,0.2562,0.387,0.6532,0.6684,0.8694,0.794,0.387,0.4774,0.5326,0.5376,0.7136,1,0.8794,0.99,0.7438,0.7738,0.9498,0.9096,0.8744,0.7336,0.5478,0.2714,0.2412,0.4272,0.3316,0.3316,0.4724,0.5728,0.7488,0.7588,-0.4536,-0.1042,0.1888,0.2676,0.5662,0.814,1,0.7972,0.2788,0.4874,0.4254,0.4986,0.9098,0.9042,0.983,0.8648,0.6732,0.8422,0.831,0.938,0.9098,0.662,0.3972,0.3296,0.3352,0.307,0.2394,0.4028,0.4986,0.5662,0.6902,0.6508,-0.419,-0.1466,0.1312,0.162,0.3778,0.9384,1,0.527,0.419,0.5218,0.5526,0.6864,0.8354,0.892,0.9074,0.6144,0.5372,0.6246,0.7532,0.748,0.7944,0.563,0.383,0.2854,0.2134,0.2544,0.1774,0.3778,0.4652,0.5424,0.5938,0.5784,-0.4524,-0.193,0.1354,0.2334,0.487,1,0.9596,0.2968,0.5158,0.5044,0.5734,0.8962,0.856,0.7118,0.5446,0.51,0.464,0.6138,0.6714,0.8674,0.7118,0.3084,0.2162,0.1412,0.0374,0.1354,0.0662,0.1586,0.4236,0.3544,0.389,0.3544,-0.3886,-0.1246,0.0792,0.2754,0.7736,1,0.9094,0.283,0.4114,0.4416,0.834,0.9472,0.7056,0.3962,0.215,0.215,0.0944,0.2906,0.6076,0.585,0.5774,0.0792,-0.2452,-0.1396,-0.4416,-0.3812,-0.3584,-0.1622,-0.1018,-0.1018,-0.0868,-0.1018,-0.5384,0.0384,0.1924,0.5,0.7692,0.8846,0.577,0.3462,0.1538,0.1924,0.1538,0.1154,0.4616,0.3846,0.7308,0.8846,1,0.6538,0.8076,0.8076,0.8462,0.3462,0.423,0.1154,0,0.1538,0.1154,0,0.0384,0.3846,0.3076,0.423,-0.4736,-0.0176,0.1578,0.3684,0.7894,0.8948,0.6492,0.4036,0.2982,0.193,0.2982,0.2632,0.4736,0.579,0.6842,1,1,0.7192,0.6842,0.8948,0.7894,0.5088,0.2982,0.1228,0.228,0.2632,-0.0526,0.0176,0.3684,0.2632,0.579,0.4386,-0.4386,-0.035,0.1754,0.3334,0.6316,0.7018,0.6842,0.6492,0.4036,0.2982,0.421,0.4386,0.5264,0.8772,0.8772,1,0.9122,0.7894,0.8596,0.9474,0.7368,0.6316,0.386,0.3508,0.1754,0.1052,0.193,0.3334,0.4036,0.5614,0.5614,0.4912,-1,-1,-1,-1,-1,-1,-1,-1,-0.9698,-0.9646,-0.621,0.2314,0.625,0.4138,0.339,0.3574,0.4006,0.638,0.9292,0.9554,0.7468,0.1068,-0.6604,-0.9462,-0.954,-0.9436,-0.9488,-0.9528,-0.958,-0.941,-0.9554,-0.962,-0.9646,-1,-1,-1,-1,-1,-1,-1,-1,-0.9868,-0.986,-0.798,-0.2948,0.2584,0.2958,0.358,0.5632,0.691,0.8174,0.9672,0.6942,0.3564,-0.3318,-0.9022,-0.9464,-0.9304,-0.911,-0.8878,-0.8724,-0.9162,-0.9012,-0.8768,-0.8774,-0.8674,-1,-1,-1,-1,-1,-1,-1,-1,-0.9134,-0.92,-0.7968,-0.635,-0.53,-0.44,-0.375,-0.47,-0.535,-0.585,-0.608,-0.616,-0.684,-0.724,-0.61,-0.1868,0.4032,0.46,0.4832,0.4266,0.5466,0.3132,0.3978,0.3644,0.381,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,1,0.3142,-0.4286,-0.6286,-0.9428,-1,-0.8858,0.2,1,1,1,0.8286,-0.2,-0.4,-0.8858,-0.8,-0.7428,-0.8572,-0.9142,-0.8858,-0.9428,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6266,-0.553,-0.764,-0.475,-0.0356,0.289,0.2972,1,-0.0952,0.3334,0.1904,0.381,0.619,0.619,0.6666,0.8096,0.762,0.9048,1,0.9048,0.762,0.619,0.5714,0.5238,0.4762,0.4286,0.6666,0.8096,0.8572,0.7142,0.5238,0.238,0.0476,0.1428,0,-0.1904,0.2858,0.0952,-0.4286,-0.4762,0.1346,0.3846,0.7308,0.673,0.4424,0.3654,0.6538,0.6346,0.75,0.7116,1,0.6538,0.4038,0.4038,0.25,0.3654,0.3654,-0.0192,0.5192,0.6924,0.7884,0.577,0.3654,0.423,-0.1154,-0.2692,-0.0962,-0.1538,0.0192,0.0962,-0.0192,-0.6346,0.0642,0.523,0.8532,0.7614,0.3028,0.211,0.4678,0.8348,1,0.8348,0.7248,0.4496,0.211,0.101,0.1192,0.523,0.3394,-0.0276,0.4678,0.6146,0.6514,0.4496,0.0826,-0.156,-0.4496,-0.3944,-0.3944,-0.3762,-0.0642,-0.0458,-0.5412,-0.8532,-0.3594,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.754,-0.5738,-0.1968,0.0328,0.164,-0.082,0.1804,0.3442,0.6066,0.5574,0.5902,0.705,0.9016,0.7378,0.5082,0.6066,0.7378,0.836,0.836,0.7214,0.8032,1,1,0.9016,0.9016,0.9344,0.8032,0.9508,0.918,0.8032,0.7378,0.541,'6'
-0.5132,-0.0394,-0.0394,0.1842,0.6974,0.8158,0.6578,0.5132,0.3486,0.2894,0.3356,0.3026,0.5658,0.6974,0.875,0.9342,0.9342,0.8618,0.921,1,0.9474,0.6908,0.4342,0.4014,0.2894,0.3224,0.2894,0.3618,0.579,0.6514,0.6382,0.5724,-0.3594,0.0588,0.2026,0.3398,0.745,0.7778,0.83,0.7648,0.451,0.3856,0.4314,0.5228,0.5424,0.7778,0.9084,1,0.817,0.621,0.732,0.7648,0.817,0.634,0.4576,0.353,0.3334,0.366,0.2746,0.3986,0.6994,0.719,0.8692,0.719,-0.347,0.0232,0.1928,0.306,0.671,0.6916,0.8458,0.779,0.2956,0.3934,0.455,0.5578,0.712,0.9384,0.856,0.964,0.7172,0.707,0.82,0.7686,1,0.8612,0.5372,0.3934,0.3984,0.4602,0.3984,0.4602,0.6298,0.6966,0.8252,0.8098,-0.406,-0.0254,0.137,0.264,0.6244,0.6446,0.8578,0.7868,0.2436,0.3654,0.4416,0.6092,0.7258,1,0.8832,0.7006,0.594,0.6446,0.7818,0.7412,1,0.8782,0.4822,0.3402,0.3756,0.4112,0.3654,0.4264,0.5888,0.6904,0.7106,0.731,-0.372,0.0184,0.182,0.2982,0.715,0.7308,0.905,0.81,0.3088,0.4564,0.5304,0.7308,0.7308,0.942,0.81,0.5726,0.525,0.562,0.694,0.789,1,0.8576,0.3826,0.2982,0.3034,0.3774,0.3246,0.3668,0.599,0.6782,0.6886,0.6728,-0.2882,0.1588,0.3176,0.4588,0.9648,1,0.947,0.8706,0.6352,0.6648,0.7882,0.9706,0.9824,0.653,0.5942,0.4588,0.4352,0.547,0.7706,0.7824,0.9118,0.8176,0.3412,0.153,0.2058,0.2882,0.3118,0.2824,0.4764,0.7118,0.4648,0.453,-0.1086,0.4158,0.4008,0.5056,0.955,1,0.8876,0.5806,0.5206,0.528,0.543,0.7228,0.543,0.4532,0.2134,0.2808,0.251,0.221,0.648,0.7978,0.7228,0.4532,-0.0636,-0.1986,-0.1836,-0.0936,-0.2584,-0.161,0.1686,0.4082,0.221,0.1012,-0.6364,-0.091,0.091,0.3636,0.6818,0.6818,0.6818,0.5454,0.3636,0.3636,0.3636,0.3636,0.5454,0.7728,1,1,0.909,1,1,0.9546,0.6818,0.7728,0.5,0.3636,0.3182,0.2272,0.3182,0.3636,0.5,0.6364,0.409,0.3636,-0.5094,-0.0944,0.0188,0.1698,0.6604,0.8114,0.3962,0.5094,0.3208,0.283,0.283,0.3208,0.434,0.6604,0.7358,0.9622,0.9622,0.7358,0.6982,1,0.8868,0.5472,0.434,0.4716,0.3208,0.3584,0.3208,0.2452,0.6226,0.5094,0.6982,0.5094,-0.2746,0.1568,0.2942,0.451,0.9216,0.9608,1,0.9216,0.6078,0.647,0.7844,0.9804,1,0.8236,0.7254,0.5882,0.5294,0.6666,0.745,0.745,1,0.902,0.4314,0.255,0.2942,0.3726,0.3922,0.4706,0.6078,0.8432,0.6666,0.647,-1,-1,-1,-1,-1,-1,-0.9842,-0.975,-0.9796,-0.8966,-0.8078,0.1944,0.3598,0.26,0.3894,0.528,0.6582,0.7616,0.8162,0.892,0.9696,-0.0218,-0.8282,-0.9344,-0.9288,-0.9576,-0.9676,-0.9602,-0.9668,-0.9722,-0.9732,-0.975,-0.964,-1,-1,-1,-1,-1,-1,-0.9914,-0.985,-0.9874,-0.9458,-0.8446,0.19,0.4064,0.3234,0.6876,0.8324,0.9452,0.9504,0.746,0.4274,0.1436,-0.6182,-0.8972,-0.9044,-0.8778,-0.8634,-0.8542,-0.8776,-0.8674,-0.8696,-0.8756,-0.8894,-0.8858,-1,-1,-1,-1,-1,-1,-0.9696,-0.8134,-0.82,-0.7868,-0.2868,-0.42,-0.52,-0.51,-0.465,-0.51,-0.415,-0.45,-0.5,-0.632,-0.692,-0.672,-0.23,0.2732,0.6532,0.67,0.71,0.6032,0.64,0.6266,0.6666,0.5032,0.5266,-1,-1,-1,-1,-1,-1,-0.5714,-0.7428,-0.1142,1,1,1,1,-0.7714,-0.7714,-0.8572,-1,-1,-0.5714,0.2572,1,1,1,0.7428,-0.1714,-0.8858,-0.9714,-0.9142,-1,-0.9714,-0.9714,-0.9714,-0.8858,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.68,-0.5648,-0.851,-0.3584,0.5432,0.3562,0.2624,0.7834,-0.5814,0.0542,0.7364,0.4884,-0.3178,0.0388,0.1318,0.907,1,0.5658,0.69,0.4264,0.1318,0.0232,0.4108,0.1162,0.1472,0.1628,-0.0698,-0.1472,-0.1162,-0.0078,0.2714,0.1318,0.0698,-0.1628,-0.2714,-0.3488,-0.2558,-0.3024,-0.2868,-0.7984,-0.0704,0.1408,0.3802,0.2676,0.1408,0.0986,0.3944,0.9436,1,0.8028,0.7888,0.4788,0.3098,0.2254,0.4226,0.324,0.2394,0.1408,0.1408,0.1408,-0.0704,0.5774,0.5916,0.3944,0.4366,0.169,-0.2112,-0.5352,0.014,0.1126,0.2816,-0.1972,-0.3572,-0.1666,0.4524,0.4166,0.0476,0.119,0.5476,0.9524,0.9048,0.988,1,0.7142,0.381,0.3214,0.4166,0.5952,0.4404,0.0596,0,0.0952,-0.2976,0.4048,0.4286,0.4048,0.6428,0.3334,-0.262,-0.4762,0.25,0.3334,0.2976,0.0358,-0.8348,-1,-1,1,-1,-1,-1,-0.7,-1,-0.826,-0.7972,-0.087,-0.087,0.029,-0.0144,0.1884,0.3768,0.3624,0.5072,0.3914,0.4638,0.4492,0.5218,0.6232,0.8696,0.8116,0.7102,0.5072,1,0.8116,0.7826,0.8116,0.6956,0.7246,0.913,0.913,0.8116,0.7102,0.6086,0.3914,0.3768,'6'
-0.1626,0.3196,0.4318,0.5776,0.2038,-0.1664,-0.2412,-0.2934,-0.4804,-0.357,-0.2598,-0.2822,-0.2486,0.0056,0.0168,0.2822,0.529,0.7384,0.9926,1,0.828,0.7982,0.8094,0.6786,0.5214,0.428,0.4542,0.6224,0.6262,0.6486,0.57,0.4878,-0.272,0.18,0.4368,0.5786,0.1264,-0.2068,-0.4062,-0.5402,-0.4904,-0.4022,-0.3832,-0.4176,-0.4252,-0.2298,-0.0536,0,0.2606,0.4904,0.8314,0.9732,1,0.7854,0.797,0.6284,0.4406,0.3946,0.318,0.3372,0.521,0.5478,0.682,0.6628,-0.2248,0.2206,0.6018,0.696,-0.0406,-0.3662,-0.4904,-0.5032,-0.5074,-0.4646,-0.6402,-0.5718,-0.3618,-0.409,-0.349,-0.0406,0.015,0.3276,0.743,1,0.94,0.9186,0.923,0.7944,0.5632,0.3876,0.3748,0.3104,0.2676,0.3404,0.7474,0.7474,-0.16,0.28,0.855,0.88,-0.275,-0.57,-0.525,-0.585,-0.615,-0.555,-0.79,-0.795,-0.685,-0.635,-0.53,-0.315,-0.135,0.06,0.355,0.875,1,0.825,0.535,0.575,0.41,0.37,0.07,0.2,0.22,0.23,0.5,0.63,-0.1684,0.2474,1,0.9264,-0.5578,-0.5052,-0.621,-0.6,-0.7526,-0.9,-0.9264,-0.9264,-0.7422,-0.879,-0.721,-0.7,-0.4052,-0.1474,0.0422,0.6106,0.9578,0.8736,0.4,0.421,0.3106,0.3474,0.1948,-0.079,0.121,0.0368,0.3106,0.5578,-0.1782,0.4212,1,0.8088,-0.2662,-0.3954,-0.6382,-0.69,-0.602,-0.7468,-0.8812,-0.6486,-0.664,-0.7622,-0.7932,-0.8036,-0.5348,-0.447,-0.2042,0.3488,0.4626,0.2868,0.2764,0.2558,0.3746,0.4108,0.106,0.0542,0.044,-0.0026,0.4678,0.3334,-0.1692,0.6554,1,0.5938,-0.1262,-0.68,-0.8954,-0.7662,-0.9384,-0.7908,-0.8708,-0.76,-0.8708,-0.6924,-0.5692,-0.5692,-0.5754,-0.44,-0.1076,0.5692,0.637,0.5016,0.52,0.3354,0.2862,0.3108,0.0524,-0.12,-0.04,-0.1138,-0.0954,0.397,-0.15,0.25,0.35,0.55,0.15,-0.3,-0.35,-0.4,-0.7,-0.5,-0.4,-0.3,-0.2,-0.05,0.2,0.3,0.45,0.7,1,0.65,0.6,0.35,0.7,0.6,0.65,0.6,0.5,0.45,0.8,0.75,0.7,0.55,-0.2572,0.3142,0.3142,0.6572,0.2572,-0.3714,-0.3142,-0.4286,-0.4286,-0.5428,-0.4286,-0.7142,-0.3714,-0.0286,-0.1428,0.3142,0.6572,0.9428,0.7714,1,1,0.9428,0.9428,0.7142,0.4286,0.0858,0.3714,0.7142,0.7142,0.5428,0.4858,0.3142,-0.0136,0.452,1,0.9178,-0.3698,-0.2876,-0.315,-0.3698,-0.5068,-0.6438,-0.8082,-0.8356,-0.5342,-0.5616,-0.8356,-0.6164,-0.178,-0.041,0.2054,0.8082,1,0.7534,0.589,0.6164,0.4794,0.5068,0.452,0.2054,0.4246,0.2602,0.5068,0.7808,-1,-1,-1,-1,-1,-0.9558,-0.9446,-0.9446,-0.9224,-0.8672,-0.4906,0.1872,0.5636,0.8604,0.9734,0.918,0.896,0.8582,0.7276,0.4508,0.1518,-0.2204,-0.6566,-0.887,-0.9224,-0.907,-0.9446,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.9396,-0.6348,-0.4156,-0.2736,-0.4028,0.0366,0.765,0.9248,0.837,0.5034,0.3256,0.1456,0.0842,-0.1688,-0.3488,-0.5616,-0.8042,-0.875,-0.8634,-0.9174,-0.947,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.8734,-0.4234,0.7566,0.6532,0.0732,-0.6372,-0.3744,-0.3772,-0.4458,-0.5476,-0.6926,-0.81,-0.92,-0.9176,-0.915,-0.9176,-0.8734,-0.3534,0.0066,-0.6934,-0.94,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,-0.1428,1,1,-0.2286,-0.7428,-0.8286,-0.8572,-0.8,-0.9714,-0.7142,-0.8,-0.8,-0.5428,-0.1428,0.2858,-0.5142,0.1142,0.2858,-1,-1,-1,-1,-1,-1,-0.0178,0.0208,0.039,0.0714,0.0716,0.0856,0.0736,0.0206,-0.0794,-0.2724,0.3826,0.3814,0.386,0.3904,0.3772,0.3848,0.4306,0.4716,0.5214,0.5722,-0.5734,-0.1294,-0.4198,-0.243,-0.0196,0.44,0.7078,1,-0.5468,-0.4138,-0.293,-0.2628,-0.0936,-0.1178,0.1058,0.0514,0.3534,0.275,0.2448,0.6798,0.6496,0.716,0.843,1,0.8188,0.6858,0.6194,0.6254,0.6616,0.6012,0.4744,0.3232,0.4442,0.6496,0.6738,0.5528,0.4138,0.4744,0.287,-0.0694,-0.7422,-0.5412,-0.3506,-0.3402,-0.4896,-0.4432,-0.2886,-0.0928,0.0412,0.0516,0.3608,0.6598,0.5206,0.6238,1,0.8298,0.8042,0.603,0.5928,0.7114,0.6134,0.6598,0.701,0.5722,0.5516,0.6444,0.7062,0.8042,0.8762,0.6444,0.5258,0.0928,-0.1282,-0.0154,-0.2256,-0.477,-0.3898,-0.4462,-0.159,0.0924,0.4,0.5384,0.5846,1,0.8512,0.441,0.7744,0.682,0.6206,0.4358,0.5538,0.5794,0.6718,0.6102,0.4102,0.3744,0.3436,0.4666,0.6924,0.5642,0.6052,0.3538,0.2358,-0.159,0.0546,-1,-1,1,-0.8,-1,-0.8,-0.2334,-1,-0.4222,-0.2444,-0.126,-0.126,-0.1408,-0.3038,-0.2,-0.1704,0.0222,0.0222,0.1556,0.3482,0.6148,0.6,0.837,0.4222,0.274,0.6444,1,0.8666,0.4814,0.3778,0.1556,0.2296,-0.0814,-0.1112,-0.0814,0.0074,-0.126,-0.3038,-0.2444,-0.7186,'7'
-0.141,0.3762,0.3166,0.4264,0.2508,-0.0626,-0.3636,-0.3918,-0.373,-0.351,-0.2194,-0.2728,-0.0314,-0.1316,0.0032,0.2696,0.4764,0.8714,1,0.6896,0.5768,0.6802,0.6614,0.63,0.58,0.5016,0.3982,0.417,0.5612,0.743,0.605,0.7116,-0.1828,0.3546,0.2846,0.5516,0.3832,0.043,-0.2718,-0.2338,-0.2592,-0.2432,-0.151,-0.1892,0.0048,-0.0938,0.0716,0.2624,0.4308,0.876,1,0.8918,0.9492,0.8664,0.8664,0.8632,0.8092,0.6694,0.5484,0.5166,0.647,0.806,0.8282,0.93,-0.2706,0.2158,0.2978,0.5076,0.2978,-0.0972,-0.3618,-0.3434,-0.3708,-0.4134,-0.3344,-0.4072,-0.2188,-0.1884,-0.079,0.0972,0.1338,0.5228,0.5776,1,0.9362,0.6322,0.687,0.842,0.6262,0.544,0.4954,0.4924,0.617,0.535,0.5958,0.6018,-0.2816,0.171,0.5234,0.6684,0.2712,-0.1814,-0.4922,-0.5752,-0.468,-0.4474,-0.392,-0.399,-0.4576,-0.2366,-0.2816,-0.1018,0.1778,0.3264,0.6512,0.8722,1,0.886,0.7824,0.8204,0.7858,0.6994,0.6994,0.5198,0.4992,0.5578,0.6132,0.8066,-0.2784,0.1384,0.6008,0.6462,-0.1594,-0.5902,-0.7198,-0.5412,-0.6148,-0.6498,-0.5482,-0.5516,-0.5866,-0.5762,-0.464,-0.1454,-0.0718,0.1874,0.464,0.7724,1,0.9474,0.6252,0.7898,0.7724,0.7092,0.6532,0.422,0.4606,0.4886,0.5726,0.7022,-0.1028,0.2288,0.827,0.791,-0.373,-0.4342,-0.4882,-0.4378,-0.6036,-0.654,-0.6468,-0.9028,-0.6756,-0.4774,-0.3262,-0.2468,-0.0954,0.1136,0.4126,0.755,1,0.9784,0.6648,0.7046,0.7298,0.8018,0.737,0.4702,0.5532,0.4702,0.481,0.7226,-0.1428,0.3742,0.9546,0.7824,-0.4014,-0.2518,-0.601,-0.7234,-0.9366,-0.8458,-0.8504,-0.8232,-0.7278,-0.6508,-0.7324,-0.6326,-0.4694,-0.1292,-0.0884,0.542,1,0.9138,0.474,0.5012,0.3832,0.61,0.5012,0.1972,0.2244,0.1292,0.1338,0.2698,-0.1364,0.409,0.2728,0.409,0.1818,-0.091,-0.3182,-0.6364,-0.591,-0.5,-0.2272,-0.2272,-0.1364,-0.2272,-0.3636,0.2728,0.5,0.9546,1,0.6364,0.5,0.5454,0.591,0.591,0.5454,0.5,0.2728,0.3636,0.8182,0.909,0.8182,0.8636,-0.2682,0.3658,0.2196,0.4146,0.1708,-0.2196,-0.4146,-0.561,-0.6098,-0.561,-0.4146,-0.4146,-0.122,-0.1708,-0.122,0.2682,0.5122,0.8536,1,0.6098,0.6586,0.7074,0.7074,0.7074,0.6098,0.4634,0.317,0.4146,0.6586,0.8048,0.4634,0.6586,-0.1132,0.3774,0.415,0.585,0.434,0.0944,-0.1698,-0.1698,-0.1698,-0.151,-0.0754,-0.1132,0.0378,-0.0378,0.0944,0.283,0.3962,0.8114,0.868,0.9622,1,0.849,0.8114,0.9246,0.849,0.6982,0.585,0.585,0.717,0.8114,0.868,0.9246,-1,-1,-1,-0.9632,-0.9618,-0.9618,-0.9716,-0.9418,-0.9106,-0.8696,-0.4852,0.156,0.451,0.7646,0.956,0.9702,0.9546,0.729,0.3986,0.271,0.0866,-0.2128,-0.6,-0.8582,-0.9164,-0.9418,-0.9418,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.97,-0.97,-0.455,-0.974,-0.8428,-0.6738,-0.4194,-0.4346,-0.1862,0.4224,0.686,0.8392,0.8932,0.684,0.285,-0.0158,-0.2922,-0.4712,-0.6488,-0.8174,-0.8768,-0.852,-0.918,-0.9506,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9234,-0.93,-0.0268,-0.7668,-0.7568,0.56,0.6766,0.2032,-0.5826,-0.4,-0.4126,-0.3526,-0.34,-0.4068,-0.5556,-0.6424,-0.849,-0.8624,-0.9378,-0.96,-0.33,-0.0134,-0.16,-0.64,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7142,1,1,1,1,1,0.5428,1,1,-0.4572,-0.6858,-0.8858,-0.9142,-0.9428,-0.9142,-0.8858,-0.9142,-0.3714,-0.1142,-0.1714,-0.1714,-0.5714,0.4572,0.0858,-1,-1,-1,-1,-1,-1,-0.0078,0.017,0.0318,0.0682,0.095,0.1302,0.1702,0.1934,0.1712,-0.099,0.3722,0.357,0.3618,0.3484,0.3656,0.3754,0.39,0.4544,0.5578,0.6868,-0.68,-0.0118,-0.4712,-0.397,-0.2316,0.0036,0.2524,1,-0.1386,0.1622,0.2036,0.3038,0.1328,0.3216,0.4336,0.3452,0.5162,0.8112,0.5694,0.6578,0.8584,0.5398,0.7346,0.705,0.7404,0.6814,0.7582,0.9292,1,0.9764,0.941,0.9056,0.587,0.823,0.7228,0.7818,0.5988,0.6578,0.5222,-0.3216,-0.351,-0.1038,0.0376,0.4128,0.2582,0.2098,0.554,0.5496,0.51,0.4702,0.51,0.4084,0.5806,0.5718,0.5674,0.6248,0.4746,0.6998,0.6512,0.797,0.8102,0.894,0.8984,1,0.9162,0.7704,0.7924,0.6732,0.3068,0.2494,0.3864,0.095,-0.6574,-0.4364,-0.442,-0.464,-0.5028,-0.3674,-0.21,-0.0332,0.2072,0.2072,0.4668,0.8204,0.6686,0.4834,0.826,0.9282,0.942,1,0.989,0.9752,0.9226,0.8176,0.7016,0.5194,0.6188,0.6298,0.7128,0.7486,0.7762,0.558,0.3288,-0.1078,-0.9736,-1,1,-1,-0.8,-1,-0.6,0.7,-1,-0.4546,-0.2728,-0.405,0.2066,0.124,-0.2066,-0.1736,0.124,0.0744,0.405,0.4546,0.8512,1,0.8842,0.686,0.7686,0.6198,0.7852,0.8348,0.9834,0.6034,0.471,0.5372,0.0248,-0.157,0.2232,0.157,0.3388,0.19,-0.0082,-0.0578,-0.19,'7'
-0.2966,0.1234,0.3596,0.5224,0.496,0.5014,0.1812,0.1286,-0.0184,-0.0394,0.0552,0.0498,0.0708,0.2336,0.2126,0.4594,0.6536,0.79,0.9528,1,0.832,0.8006,0.937,0.832,0.6956,0.5276,0.58,0.538,0.5276,0.5486,0.5014,0.6588,-0.3782,-0.0218,0.313,0.4304,0.3782,0.3956,0.013,-0.0434,-0.1478,-0.1174,-0.0392,-0.0522,-0.0566,0.1304,0.1,0.2478,0.474,0.5392,0.9914,1,0.7652,0.687,0.774,0.6174,0.6826,0.574,0.5566,0.4392,0.3434,0.4434,0.6,0.6608,-0.3676,0.007,0.438,0.5456,0.3584,0.349,0.0398,-0.068,-0.1522,-0.0866,-0.0492,-0.1194,-0.1054,0.1008,0.1382,0.2224,0.4426,0.5644,0.883,0.8688,1,0.8032,0.8502,0.897,0.8408,0.7002,0.5644,0.4942,0.555,0.5598,0.6956,0.6252,-0.3738,-0.0292,0.5,0.5776,0.2136,0.1408,-0.0242,-0.2088,-0.17,-0.131,-0.2282,-0.2136,-0.0292,-0.0098,0.0486,0.165,0.2962,0.568,0.7184,1,0.9564,0.9126,0.9564,0.9564,0.7428,0.631,0.6504,0.5194,0.5146,0.5146,0.6068,0.7184,-0.454,-0.1216,0.5136,0.5434,-0.077,-0.211,-0.2258,-0.1862,-0.2456,-0.34,-0.33,-0.3102,-0.2506,-0.201,-0.0968,0.077,0.067,0.2606,0.598,0.7816,1,0.8412,0.7766,0.737,0.6824,0.5584,0.4442,0.335,0.4044,0.33,0.4888,0.5334,-0.4848,0.1136,0.6786,0.6232,-0.0526,-0.3186,-0.3518,-0.3186,-0.518,-0.5236,-0.4792,-0.457,-0.4404,-0.252,-0.1358,-0.0748,0.0416,0.2854,0.5402,0.8504,0.989,1,0.8338,0.9224,0.7894,0.6288,0.4848,0.3628,0.3796,0.3296,0.4958,0.5624,-0.8352,0.0486,0.3108,0.221,-0.4008,-0.633,-0.8202,-0.633,-0.678,-0.663,-0.7454,-0.4906,-0.618,-0.618,-0.4906,-0.3558,-0.3484,0.0412,0.7304,0.9176,1,0.6104,0.97,0.97,0.633,0.146,0.0112,0.161,0.1162,-0.0862,0.1162,0.3484,-0.0938,0.25,0.4688,0.7188,0.7188,0.625,0.2812,0.3124,0.2188,0.0624,0.2188,0.1876,0.2812,0.375,0.3124,0.5938,0.75,0.9688,1,1,0.875,0.9062,1,0.9376,0.75,0.6876,0.7188,0.5938,0.6876,0.6876,0.6876,0.75,-0.0572,0.2572,0.4858,0.6286,0.6286,0.6286,0.3714,0.3142,0.1714,0.1714,0.2572,0.2286,0.2286,0.4,0.3428,0.5142,0.7428,0.8,1,1,0.8286,0.7428,0.9714,0.9142,0.7714,0.6,0.6286,0.6572,0.6,0.6286,0.6286,0.7142,-0.3738,0.1314,0.6768,0.6768,-0.0304,-0.2526,-0.192,-0.0708,-0.2728,-0.293,-0.3536,-0.2728,-0.2526,-0.0304,-0.0506,0.0506,0.1718,0.3738,0.5556,1,0.9394,0.9798,0.9192,0.9394,0.7576,0.6162,0.6162,0.4344,0.4546,0.4748,0.5758,0.6768,-1,-1,-1,-1,-1,-1,-1,-0.9802,-0.9716,-0.7862,-0.4836,0.7246,0.6306,0.7862,0.9024,0.9852,0.89,0.8172,0.7096,0.3996,-0.2192,-0.774,-0.9444,-0.9592,-0.9728,-0.9506,-0.9234,-0.9494,-0.9704,-0.9692,-0.9654,-0.9728,-0.9654,-1,-1,-1,-1,-1,-1,-1,-0.983,-0.981,-0.751,-0.621,0.456,0.7002,0.9892,0.8236,0.7986,0.7216,0.3762,0.243,-0.1444,-0.4204,-0.8068,-0.9706,-0.975,-0.981,-0.8974,-0.6598,-0.4616,-0.4896,-0.5004,-0.469,-0.582,-0.4782,-1,-1,-1,-1,-1,-1,-1,-0.8934,-0.96,-0.7068,-0.25,-0.516,-0.332,-0.356,-0.428,-0.4,-0.404,-0.48,-0.532,-0.652,-0.432,-0.432,-0.74,-0.8334,-0.9334,-0.72,0.5332,0.8166,0.7432,0.7566,0.6932,0.7266,0.7132,-1,-1,-1,-1,-1,-1,-1,-0.6572,1,1,1,1,0.2,-0.9142,-0.9428,-0.9428,-0.8572,-0.7142,-0.2858,0.4,1,1,1,-0.9428,0.0286,1,1,1,-0.8,-0.8572,-0.9428,-0.8286,-0.9142,0.8596,0.8654,0.8654,0.8654,0.859,0.8536,0.8474,0.8302,0.7776,0.4956,0.443,0.4426,0.4426,0.4244,0.4392,0.4348,0.4412,0.4926,0.5276,0.5956,-0.6266,-0.4706,-0.7184,0.3216,0.4698,0.661,0.8394,0.9666,-0.2536,0.3944,0.6478,0.2958,0.0282,-0.0846,0.0282,0.338,0.8874,0.9578,0.9014,1,0.8028,0.7184,0.6198,0.676,0.6478,0.4788,0.324,0.3802,0.4788,0.5634,0.3944,0.2394,0.0282,-0.0422,0.2676,0.3662,0.1268,-0.014,-0.1972,-0.3944,-0.2258,0.0162,0.4194,-0.387,-0.5322,-0.387,-0.3226,0.0968,0.5322,1,0.6612,0.7258,0.5484,0.5162,0.4678,0.371,0.5646,0.242,0.2742,0.0162,0.6612,0.6936,0.2904,-0.3388,-0.258,0.0322,0.387,0.5646,0.2096,-0.2904,-0.2904,-0.4354,-0.0224,0.3596,0.4832,0.2584,0.0224,-0.0338,0.0338,0.1012,0.6068,1,0.8314,0.9662,0.7752,0.573,0.528,0.618,0.6292,0.4494,0.3146,0.2922,0.2584,0.3596,-0.0112,-0.4606,-0.4944,-0.1574,-0.045,0.1348,0.045,-0.4382,-0.5506,-0.6292,-0.2594,-1,-1,1,-1,-1,-1,-0.6666,1,-0.9084,-0.5424,-0.5948,-0.6862,-0.5948,-0.647,-0.6602,-0.5424,-0.3464,-0.1764,-0.0196,0.2156,0.3856,0.3986,0.634,0.83,1,0.7516,0.7648,0.5686,0.5556,0.5424,0.7648,0.9346,0.7778,0.6078,0.5948,0.4772,0.5556,0.5948,0.3202,0.2942,'8'
-0.4518,-0.0666,0.4222,0.5112,0.7432,0.6544,0.2,-0.0272,-0.0666,-0.1754,-0.116,0.037,0.042,0.1754,0.437,0.595,0.8766,0.9358,1,0.8716,0.8666,0.6494,0.5456,0.432,0.3976,0.2198,0.1704,0.1506,0.3382,0.3086,0.3038,0.2148,-0.3758,0.0558,0.4606,0.6146,0.6108,0.6416,0.3334,0.287,-0.0482,-0.0674,0.106,0.0982,0.16,0.3448,0.3604,0.657,0.8228,1,0.946,1,0.9306,0.919,0.8806,0.7842,0.4952,0.4682,0.472,0.445,0.472,0.5376,0.634,0.6918,-0.3898,0.0252,0.3898,0.5306,0.379,0.4368,0.2274,0.2022,-0.1588,-0.101,0.0542,-0.0578,0.0216,0.26,0.26,0.4476,0.6102,0.7978,0.8954,1,0.8014,0.8268,0.9278,0.888,0.5018,0.426,0.527,0.5198,0.5812,0.5488,0.538,0.7328,-0.3954,0.0228,0.413,0.5676,0.3462,0.2408,0.1494,0.1528,-0.174,-0.2442,-0.0264,-0.1564,-0.0966,0.1494,0.2056,0.3076,0.3006,0.6696,0.7504,1,0.8664,0.7996,0.8384,0.8946,0.5888,0.5888,0.5008,0.4236,0.6098,0.515,0.6344,0.6344,-0.3298,0.096,0.5218,0.6754,0.48,-0.0402,0.0226,0.0506,-0.1658,-0.1938,-0.117,-0.2042,-0.0856,-0.082,0.0366,0.2216,0.2844,0.5602,0.5602,1,0.9512,0.85,0.7382,0.8708,0.6894,0.7242,0.4136,0.4346,0.6404,0.6126,0.7556,0.672,-0.3676,0.0356,0.6798,0.7944,0.423,-0.0276,-0.6324,-0.423,-0.3596,-0.34,-0.2806,-0.3596,-0.2648,-0.17,-0.1384,0.0198,0.0948,0.3162,0.581,0.838,1,0.8814,0.7984,0.8616,0.8024,0.7668,0.6404,0.4584,0.5652,0.5256,0.5574,0.6522,-0.7024,-0.013,0.41,0.3682,-0.107,-0.3994,-0.4516,-0.4412,-0.6502,-0.7128,-0.6396,-0.5456,-0.6188,-0.551,-0.483,-0.3472,-0.0914,0.2062,0.6344,1,0.9164,0.6972,0.4622,0.457,0.4882,0.5404,0.483,0.2324,0.1854,0.1174,0.081,0.2062,-0.4666,-0.1556,0.3334,0.5556,0.7778,0.5112,0.2444,0.0666,-0.1556,-0.1112,-0.0666,-0.1556,-0.1556,0.2,0.3778,0.4666,0.9556,1,0.9556,0.8666,0.6888,0.7334,0.5556,0.1556,0.3778,0.2,0.1112,0.2444,0.2444,0.2888,0.4222,0.1112,-0.2142,0.1072,0.5,0.5714,0.75,0.6786,0.3928,0.25,0.25,0.0714,0.0714,0.25,0.2142,0.2142,0.5,0.7142,0.7858,0.9286,1,0.9642,0.8572,0.8214,0.7858,0.6786,0.4642,0.25,0.2858,0.3928,0.3572,0.3572,0.1428,0.2142,-0.4106,0.0526,0.621,0.8106,0.5158,-0.179,-0.4948,-0.4526,-0.2842,-0.3474,-0.3474,-0.3264,-0.2422,-0.0948,-0.1158,0.0948,0.1578,0.3684,0.6632,0.8316,0.8736,1,0.979,0.979,0.8736,0.7684,0.6,0.621,0.6842,0.5578,0.5368,0.8106,-1,-1,-1,-1,-1,-1,-1,-0.9818,-0.981,-0.9732,-0.743,-0.4902,-0.249,-0.0214,0.1162,0.336,0.611,0.9068,0.9874,0.6798,0.1264,-0.698,-0.9486,-0.9604,-0.9652,-0.9518,-0.9652,-0.9802,-0.977,-0.9732,-0.9754,-0.9762,-0.977,-1,-1,-1,-1,-1,-1,-1,-0.9812,-0.9818,-0.9442,-0.7264,-0.4496,-0.0122,0.5248,0.6698,0.6992,0.9164,0.9408,0.9342,0.6336,0.0248,-0.6984,-0.9622,-0.969,-0.974,-0.8046,-0.6096,-0.1892,-0.3182,-0.496,-0.5278,-0.474,-0.487,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.9334,-0.6034,-0.5434,-0.5868,-0.42,-0.4134,-0.4,-0.4268,-0.4534,-0.45,-0.4134,-0.6458,-0.623,-0.3172,-0.4734,-0.7134,-0.8468,-0.1034,0.84,0.7866,0.8466,0.79,0.7732,0.71,0.4966,-1,-1,-1,-1,-1,-1,-1,-0.7428,0.1142,1,1,1,1,0.0858,-0.9142,-0.7428,-0.8,-0.8572,-0.6286,-0.3428,1,1,1,-0.5428,1,1,1,0.5428,-0.8858,-0.8286,-0.8858,-0.8572,-0.7714,0.936,0.9412,0.9432,0.9494,0.9568,0.962,0.9702,0.9682,0.9436,0.662,-0.3382,-0.3402,-0.3252,-0.318,-0.2746,-0.2422,-0.1772,-0.0784,0.07,0.373,-0.72,-0.3058,-0.7394,-0.5718,-0.4334,-0.1728,0.0204,-0.1334,-0.4016,-0.1024,0.0236,0.0552,0.0078,-0.0866,0.1338,0.1496,0.0552,0.0866,0.4174,0.3544,0.37,0.1654,-0.0552,0.0708,0.0866,-0.307,0.0236,0.1182,0.2914,0.0394,0.5434,0.559,0.811,0.9528,1,0.9842,0.8582,0.6378,0.559,0.1024,-0.2142,0.2858,0.4404,0.1548,0,-0.1428,0.1666,0.369,1,0.9404,0.869,0.7976,0.3572,0.3452,0.262,0.4166,0.3096,-0.2738,-0.1428,0.6666,0.762,0.4762,0.25,-0.012,-0.012,0.0476,0.3096,0.1666,-0.0714,0.0596,0.0714,-0.119,-0.131,0.619,0.869,0.25,0.0358,0,0.0238,0.3334,1,1,0.9048,0.6072,0.3214,0.3572,0.2738,0.4166,0.0476,-0.3334,0.369,0.5596,0.5358,0.2858,0.1904,0.262,-0.0952,-0.3334,-0.0834,-0.1072,-0.012,-0.1786,-0.1072,-0.488,-0.721,-1,-1,1,-1,-1,-1,-0.6,1,-0.8292,-0.622,-0.561,-0.4024,-0.4878,-0.5732,-0.2804,-0.122,0.0488,-0.061,0.2318,0.2318,0.244,0.3292,0.4634,0.817,0.9146,0.7682,0.9268,1,0.7804,0.622,0.7682,0.7318,0.6342,0.7196,0.7682,0.6952,0.5854,0.5366,0.4024,0.0854,'8'
-0.4902,-0.1656,0.0588,0.1286,0.3966,0.6906,0.8474,0.7408,0.732,0.7996,0.865,1,0.8714,0.7668,0.562,0.4858,0.5186,0.6318,0.6906,0.8692,0.7844,0.464,0.2876,0.3072,0.2898,0.4052,0.4444,0.5796,0.5752,0.2724,0.0916,-0.0196,-0.4486,-0.1236,0.0964,0.1698,0.392,0.6416,0.7966,0.7212,0.7632,0.7966,0.8574,1,0.8638,0.784,0.6058,0.522,0.5576,0.675,0.7212,0.891,0.8386,0.608,0.4822,0.4508,0.4046,0.4842,0.5472,0.654,0.6164,0.48,0.216,0.0902,-0.4306,-0.1344,0.0746,0.0908,0.3042,0.729,0.7796,0.9288,0.8164,0.7152,0.8346,0.8554,1,0.876,0.6854,0.6532,0.5592,0.6188,0.7842,0.8554,0.9586,0.8164,0.566,0.419,0.396,0.5064,0.5132,0.6762,0.7634,0.651,0.3686,0.1664,-0.4432,-0.2114,0.0618,0.134,0.469,0.817,0.884,0.9202,0.5696,0.4588,0.4922,0.598,0.8712,1,0.9046,0.8016,0.7216,0.683,0.786,0.8762,0.9974,0.915,0.5644,0.415,0.3608,0.4124,0.3506,0.585,0.6676,0.6598,0.5104,0.299,-0.3916,-0.1898,0.082,0.3028,0.8546,0.903,0.3458,0.3244,0.2356,0.082,0.0714,0.1278,0.3324,0.5828,0.8466,0.992,1,0.9112,0.7766,0.8278,0.8574,0.6986,0.599,0.389,0.1978,0.2624,0.1924,0.311,0.3836,0.3702,0.3782,0.2328,-0.3358,0.0688,0.2978,0.6412,0.8778,0.771,-0.1526,-0.0572,-0.603,-0.3932,-0.4466,-0.3396,-0.1756,0.0992,0.2022,0.5268,0.752,0.9962,1,0.6068,0.6984,0.7824,0.6718,0.477,0.145,0.1908,0.0954,0.126,0.21,0.1718,0.4236,0.2328,-0.0254,0.33,0.4468,0.6446,0.2792,-0.0204,-0.3858,-0.2132,-0.7056,-0.4416,-0.7258,-0.6142,-0.528,-0.5228,-0.538,-0.3908,-0.0254,0.5432,1,0.8782,0.5786,0.7512,0.9746,0.6852,0.2742,0.1726,-0.0456,-0.2588,-0.1472,-0.005,0.396,0.396,-0.6444,-0.2444,-0.1556,0.1112,0.3778,0.8222,0.7778,1,0.9112,0.7334,0.9112,0.9112,1,0.7334,0.6444,0.5112,0.5556,0.6444,0.7334,0.8666,0.9112,0.4666,0.2888,0.2444,0.2444,0.2888,0.3778,0.6444,0.6,0.0222,-0.0666,-0.0222,-0.64,-0.32,-0.12,0,0.24,0.6,0.72,0.76,0.76,0.76,0.88,1,0.76,0.76,0.48,0.48,0.52,0.52,0.44,0.72,0.36,0.44,0.12,0.08,0.2,0.4,0.36,0.56,0.36,0.12,-0.04,-0.12,-0.4348,-0.2608,-0.0218,0.1956,0.6522,0.7174,0.326,0.2392,0.1956,0.087,0.0218,0,0.1956,0.4348,0.5434,0.9782,1,0.674,0.587,0.7392,0.7392,0.6522,0.4566,0.2826,0.174,0.1956,0.1086,0.2608,0.2826,0.3044,0.3478,0.1956,-1,-1,-1,-1,-1,-1,-1,-1,-0.9728,-0.96,-0.615,0.163,0.7988,0.8354,0.6582,0.5638,0.4392,0.2252,0.1342,-0.3004,-0.3834,-0.7236,-0.877,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9902,-0.9896,-0.7132,-0.0784,0.5902,0.7518,0.621,0.287,0.0226,-0.3346,-0.6374,-0.8328,-0.8906,-0.9522,-0.9756,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.9068,-0.6034,-0.5892,-0.531,-0.4928,-0.531,-0.5182,-0.5746,-0.5692,-0.7528,-0.8382,-0.7928,-0.8134,-0.9368,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,-0.4572,-0.9428,-0.8572,-0.8572,-0.5714,-0.3714,-0.4858,-0.4858,-0.4,-0.5714,-0.7714,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.726,-0.48,0.3176,-0.7316,-0.3706,-0.1876,-0.0864,0.2334,1,-0.2352,0.196,0.6862,0.902,1,0.8628,0.9608,0.7254,0.7058,0.7648,0.7058,0.6666,0.451,0.6078,0.6862,0.255,-0.0588,0.353,0.6078,0.5882,0.451,0.3334,0.2942,0.3138,0.098,0.196,0.2352,0.0392,0,0.0196,-0.1176,-0.3334,0.1926,0.2844,0.5964,0.6698,0.8348,0.7432,0.7248,0.5046,0.7798,0.9266,1,0.633,0.5596,0.7248,0.523,0.211,0.266,0.3394,0.5596,0.4496,0.3944,0.1744,0.5596,0.4496,0.4678,0.6698,0.578,0.523,0.4312,0.633,0.5596,0.3394,-0.0086,0.1624,0.6752,0.983,0.9488,0.9488,1,0.7436,0.7094,0.8632,0.9146,0.5042,0.453,0.6068,0.641,0.2308,-0.0428,0.4872,0.7264,0.7606,0.5726,0.3162,0.0598,-0.0086,-0.0428,-0.1282,-0.094,-0.282,-0.265,-0.1966,0.0428,-0.094,0.0626,-1,-1,1,-1,-1,-1,-0.8,-1,0.2046,0.409,0.1136,0.5682,0.2272,0.409,0.5454,0.659,0.591,0.6818,0.7954,1,0.9546,0.409,0.591,0.9318,0.7272,0.3182,0.25,0.159,0.3864,0.6364,0.3182,0.2954,0.1818,0.1818,0.4546,0.2728,0.2728,-0.2272,0.091,-0.25,'9'
-0.5226,-0.2544,0.0576,0.089,0.2502,0.6774,0.799,0.7466,0.6314,0.6942,0.9582,1,0.6858,0.4974,0.5288,0.4178,0.3864,0.4618,0.6272,0.6732,0.6272,0.5456,0.4198,0.2524,0.265,0.535,0.5518,0.4974,0.2732,0.1414,-0.0304,-0.1414,-0.491,-0.215,0.0888,0.1188,0.1786,0.6962,0.7498,0.9102,0.814,0.7006,1,0.9636,0.7604,0.6,0.615,0.4994,0.3648,0.4268,0.6386,0.6428,0.7754,0.5336,0.5038,0.3348,0.4374,0.4524,0.63,0.5272,0.4396,0.1358,0.0632,-0.0802,-0.4664,-0.2042,0.1312,0.1174,0.2064,0.74,0.8244,1,0.788,0.6762,0.838,0.927,0.9522,0.7104,0.5622,0.5302,0.48,0.5394,0.6078,0.7424,0.708,0.6898,0.4458,0.3568,0.3364,0.553,0.521,0.5872,0.5508,0.3478,0.0764,-0.0628,-0.489,-0.2798,0.0852,0.0682,0.5086,0.7518,1,0.9464,0.3454,0.4598,0.5036,0.6424,0.944,0.9854,0.8322,0.5766,0.5402,0.5402,0.6424,0.8272,0.8662,0.5816,0.3796,0.3552,0.2652,0.3528,0.331,0.5012,0.5718,0.5182,0.2726,0.0656,-0.4618,-0.1454,0.1194,0.2834,0.8676,0.836,0.7468,0.433,0.2058,0.1338,0.1654,0.154,0.433,0.6316,0.9108,1,0.9684,0.7554,0.7956,0.9454,0.9454,0.7756,0.528,0.3122,0.1626,0.223,0.2258,0.3152,0.551,0.4992,0.4848,0.3008,-0.461,0.0844,0.3116,0.6558,0.7436,0.552,0.1624,0.0844,-0.3864,-0.1916,-0.3896,-0.3896,-0.1558,-0.0032,0.211,0.75,1,0.987,0.974,0.8994,0.8928,0.8084,0.698,0.526,0.1396,0.2078,0.0488,0.2176,0.3798,0.4058,0.474,0.409,-0.357,0.2978,0.7554,1,0.4872,-0.0098,-0.1006,-0.3688,-0.7042,-0.6844,-0.7752,-0.637,-0.5424,-0.4122,-0.3648,-0.1794,0.0966,0.5898,0.9802,0.9092,0.6568,0.7554,0.9054,0.645,0.1716,0.2228,0.069,-0.1242,-0.0414,-0.0216,0.2032,0.361,-0.5918,-0.2654,-0.0204,0.1428,0.4694,0.6734,1,0.9592,0.4286,0.7142,0.9184,0.9184,0.6734,0.5918,0.4286,0.3878,0.3878,0.4286,0.551,0.6734,0.5918,0.551,0.3062,0.2654,0.347,0.4694,0.551,0.3878,0.3062,0.102,-0.1428,-0.2244,-0.6538,-0.3462,-0.0384,0.077,0.1538,0.6924,0.8076,0.6538,0.6924,0.6924,0.923,1,0.6154,0.4616,0.3846,0.3846,0.3846,0.3462,0.5384,0.6154,0.5,0.4616,0.2308,0.1924,0.2308,0.3846,0.3076,0.423,0.077,0,-0.2308,-0.2692,-0.4872,-0.077,0.1282,0.5898,0.8462,0.718,-0.0512,-0.0256,-0.3076,-0.1538,-0.282,-0.1026,0,0.1538,0.3076,0.8206,0.8974,1,0.7692,0.8206,0.923,0.8974,0.5642,0.359,0.077,0.1282,-0.0512,0.2308,0.4616,0.4872,0.3846,0.2564,-1,-1,-1,-1,-1,-1,-1,-0.9634,-0.9666,-0.9482,-0.538,0.6064,0.7898,0.7614,0.7414,0.9216,0.7798,0.4796,0.493,0.1426,0.121,-0.0692,-0.7048,-0.9416,-0.9516,-0.9616,-0.9466,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9904,-0.9924,-0.9884,-0.6878,0.3658,0.7086,0.6248,0.5532,0.3884,0.0646,-0.2842,-0.5022,-0.7334,-0.8014,-0.8632,-0.9482,-0.9788,-0.9818,-0.9878,-0.9864,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8534,-0.9668,-0.8,-0.6468,-0.5,-0.4328,-0.4492,-0.5346,-0.5074,-0.562,-0.5946,-0.6638,-0.7656,-0.88,-0.9256,-0.6934,-0.43,-0.6668,-0.8534,-0.8368,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,-1,1,1,1,-0.9714,-1,-1,-0.8858,-0.6572,-0.5142,-0.4286,-0.4,-0.4,-0.1714,-0.4,-0.5428,-0.8,-0.8572,-0.5714,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.6848,-0.6924,-0.6984,-0.7002,-0.7204,-0.7196,-0.726,-0.7374,-0.8674,-0.6472,-0.4266,0.3058,-0.6248,-0.1198,0.206,0.3888,0.7742,1,-0.5556,-0.037,0.7038,1,1,1,0.8518,0.926,0.7778,0.926,1,0.7038,0.6296,0.5556,0.4814,0.1112,0.4074,0.4074,0.2592,0.1852,0.4074,0.1112,0.3334,0.5556,0.7778,0.7038,0.7038,0.5556,0.2592,0.2592,0.1852,-0.5556,-0.1464,0.0488,0.6342,0.9268,0.8536,0.9268,0.756,0.683,0.4878,1,0.9268,0.6586,0.5366,0.7074,0.6098,-0.1708,-0.1464,-0.0976,0.4634,0.317,0.1464,0.0732,0.244,0.3902,0.0976,-0.1464,-0.3414,-0.4146,-0.3902,-0.0976,0.0244,-0.244,-0.126,0.126,0.6974,1,0.8488,0.9496,0.8992,0.5462,0.4958,0.7984,0.7816,0.4118,0.5126,0.6638,0.563,0.1596,-0.0756,-0.0084,0.731,0.7648,0.5462,0.4622,0.1428,0.21,-0.0084,-0.3782,-0.4958,-0.6134,-0.5462,-0.311,-0.0924,-0.4958,0.045,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.5206,-0.1736,-0.1404,0.1074,0.0248,-0.2728,-0.1736,-0.0248,0.157,0.6034,1,0.8182,0.3554,0.2232,0.3058,0.6198,0.3058,0.2232,0.19,-0.0082,-0.091,0.1074,0.124,-0.0248,0.0082,0.2066,-0.2892,-0.4876,-0.4876,-0.3224,-0.2232,-0.6694,'9'
-0.4072,0.0784,0.4146,0.6662,0.4844,0.1008,-0.0834,-0.0362,-0.1706,-0.188,-0.0784,-0.1158,0.1258,0.2578,0.487,0.9178,1,0.7784,0.6562,0.8206,0.8058,0.5566,0.3774,0.203,0.1506,0.2802,0.2678,0.3998,0.4844,0.4072,0.3076,0.218,-0.3426,0.0482,0.467,0.5736,0.698,0.6598,0.2588,0.0838,0.1092,0.165,0.1346,0.1904,0.3706,0.4772,0.7766,0.901,1,0.863,0.8426,0.8858,0.9188,0.835,0.6142,0.505,0.4112,0.4518,0.4796,0.6522,0.7082,0.6752,0.5102,0.4468,-0.3106,0.0398,0.4416,0.5784,0.9174,0.7664,0.3504,0.2878,0.1994,0.077,0.0968,0.0798,0.1938,0.4102,0.5156,1,0.9516,0.943,0.8062,0.792,0.9516,0.8804,0.8176,0.4758,0.3732,0.396,0.2422,0.3334,0.527,0.4844,0.5384,0.3304,-0.2748,0.086,0.553,0.7782,1,0.6622,0.255,0.1854,-0.0728,-0.149,-0.2252,-0.212,-0.1358,0.1126,0.4304,0.4868,0.8112,0.9072,0.9338,0.798,0.755,0.8146,0.692,0.5,0.1324,0.2052,0.159,0.2582,0.298,0.2682,0.3112,0.2782,-0.2676,0.0212,0.5846,0.905,1,0.345,0.1302,0.0282,-0.3522,-0.486,-0.493,-0.6198,-0.2992,-0.1972,-0.0106,0.243,0.5774,0.8662,0.9226,0.8274,0.7816,0.7008,0.655,0.4824,0.1796,0.1936,0.095,0.2042,0.155,0.1866,0.3274,0.2852,-0.3004,0.213,0.635,0.8822,0.8632,0.1026,-0.441,-0.3574,-0.3346,-0.597,-0.6996,-0.7452,-0.616,-0.498,-0.2206,-0.1712,0.194,0.5476,0.9924,1,0.9468,0.7376,0.787,0.635,0.1292,0.095,0.0228,-0.0038,0.0076,-0.0722,0.2776,0.2624,-0.0796,0.3584,0.6992,0.9336,0.7744,-0.3362,-0.4514,-0.4824,-0.6194,-0.8806,-0.8452,-0.8408,-0.7478,-0.7212,-0.4424,-0.4336,-0.3362,0.146,0.4824,1,0.9912,0.6416,0.8362,0.6062,0.1284,-0.0442,-0.2346,-0.1814,-0.2036,-0.469,-0.093,-0.0796,-0.193,0.2632,0.4736,0.6492,0.5438,0.1578,-0.0526,0.0176,-0.2982,-0.193,-0.0526,-0.0878,0.193,0.1578,0.4386,0.7894,1,0.8948,0.6492,0.8246,0.8948,0.6492,0.5088,0.2632,0.2632,0.4386,0.4386,0.614,0.614,0.5438,0.4736,0.3684,-0.2632,0.228,0.4386,0.6842,0.579,0.1228,-0.1578,-0.0526,-0.1578,-0.0526,-0.0176,-0.0176,0.2632,0.228,0.4736,0.8246,1,0.8948,0.6492,0.7894,0.8948,0.6492,0.4386,0.1578,0.228,0.4036,0.4386,0.5438,0.5088,0.4736,0.4386,0.3684,-0.4846,-0.134,0.2578,0.299,0.6702,0.567,0.1546,0.0516,0.031,-0.0104,-0.0516,0.0104,0.1958,0.2784,0.4846,0.9588,1,0.6288,0.5464,0.6702,0.7526,0.732,0.5258,0.299,0.299,0.3814,0.299,0.299,0.5052,0.5052,0.4432,0.3196,-1,-1,-1,-1,-0.9646,-0.9686,-0.962,-0.9046,-0.9686,-0.949,-0.3238,0.5148,0.6402,0.4166,0.6076,0.5344,0.3302,0.1276,-0.1066,-0.3368,-0.482,-0.5696,-0.7266,-0.8784,-0.9332,-0.9438,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.9632,-0.944,-0.5828,-0.5816,-0.5322,-0.4658,0.3868,0.8318,0.763,0.9342,0.4874,0.1656,-0.042,-0.2892,-0.482,-0.6292,-0.728,-0.8348,-0.9066,-0.9156,-0.9458,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9382,-0.902,-0.932,0.0512,0.5812,0.478,-0.5288,-0.566,-0.504,-0.508,-0.488,-0.668,-0.828,-0.846,-0.86,-0.8492,-0.8838,-0.94,-0.9368,-0.69,-0.6734,-0.8068,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5142,-1,1,1,1,1,1,1,0.0286,-0.6858,-0.5428,-0.7142,-0.8286,-0.9142,-0.9428,-0.8858,-0.8572,-0.8,-0.6858,-0.8,-0.7714,-0.6572,-1,-1,-1,-1,-1,-1,-1,0.522,0.5432,0.5886,0.6244,0.6676,0.7014,0.747,0.7996,0.83,0.589,-0.4466,-0.4914,-0.5116,-0.5222,-0.505,-0.4922,-0.48,-0.4508,-0.3984,-0.1066,-0.5466,0.2236,-0.4006,-0.0998,0.1824,0.5514,0.8438,1,-0.9144,-0.4678,-0.3516,-0.2906,-0.3028,-0.2232,-0.211,-0.1376,0.2782,0.37,0.364,0.786,0.6392,0.8532,1,0.792,0.6636,0.6392,0.5902,0.6146,0.578,0.5596,0.633,0.3212,0.3212,0.3516,0.4802,0.3456,0.3762,0.3884,0.26,-0.1498,-0.7974,-0.7226,-0.6906,-0.472,-0.6106,-0.4986,-0.3494,-0.2,0.1574,0.3706,0.6906,0.8774,0.6106,0.536,1,0.92,0.6694,0.7334,0.616,0.792,0.616,0.6054,0.664,0.6694,0.536,0.5946,0.712,0.7066,0.6746,0.7174,0.36,0.0934,0.2816,0.4366,0.4178,0.0188,-0.0422,0.0188,0.183,0.54,0.8968,0.7418,0.9766,0.7606,0.6056,0.6478,1,0.9062,0.5446,0.737,0.662,0.3662,0.4836,0.3098,0.1456,0.061,0.061,0.3428,0.4132,0.324,0.3098,0.2442,0.0798,-0.2488,-0.5212,-1,-1,1,-0.6,-1,-0.6,-0.1666,-1,-0.04,0.06,0,0.02,0.1,-0.26,0.28,0.04,0.18,0.74,0.88,1,0.72,0.58,0.34,0.38,0.44,0.54,0.46,0.28,0.28,-0.04,0.14,0.06,0.16,-0.02,-0.14,0,0.04,0,-0.08,-0.92,'10'
-0.2296,0.2452,0.5876,0.8366,0.681,0.4086,0.0894,0.1154,0.0402,-0.0142,0.1518,0.1024,0.2788,0.45,0.6108,0.9326,1,0.987,0.9404,0.8806,0.987,0.9766,0.8262,0.5798,0.5564,0.5046,0.5668,0.6576,0.7276,0.8754,0.8262,0.585,-0.3798,0.0012,0.3898,0.4994,0.7384,0.7384,0.198,0.0934,0.0984,0.1358,0.1458,0.2154,0.2628,0.4222,0.6886,0.7534,1,0.975,0.7958,0.7758,0.8954,0.8256,0.8182,0.604,0.5194,0.4022,0.5044,0.5616,0.6912,0.7012,0.7186,0.6014,-0.3736,-0.0358,0.3516,0.6182,0.9862,0.8708,0.272,0.2748,0.2528,0.1016,0.1374,0.1868,0.2968,0.3874,0.544,0.9258,0.9862,1,0.838,0.8324,0.901,0.9286,0.9368,0.783,0.6648,0.4972,0.5164,0.467,0.5796,0.7308,0.7472,0.7418,-0.4106,-0.1616,0.2676,0.7368,0.8856,0.5164,0.319,0.2446,0.0014,-0.0702,0.01,0.0158,0.0958,0.2104,0.3218,0.6138,0.9114,1,0.9428,0.8026,0.8226,0.897,0.8856,0.8856,0.6882,0.5022,0.5022,0.4822,0.5594,0.6652,0.6938,0.7052,-0.4484,-0.132,0.2744,0.8722,0.8896,0.1872,0.013,-0.074,-0.1552,-0.2394,-0.2104,-0.2076,-0.1466,0.045,0.1262,0.315,0.6024,0.9014,1,0.913,0.8984,0.8896,0.8752,0.823,0.6836,0.4746,0.4862,0.3962,0.5182,0.611,0.6256,0.6372,-0.411,0.042,0.4564,0.835,0.7412,-0.0324,-0.3496,-0.3592,-0.5502,-0.5566,-0.4886,-0.5436,-0.4142,-0.3786,-0.2298,0.0032,0.275,0.4758,0.864,1,0.9936,0.877,0.7994,0.7896,0.6504,0.2944,0.3462,0.246,0.3172,0.4304,0.4886,0.6052,-0.2248,0.2742,0.534,0.6454,0.4846,-0.2866,-0.6948,-0.7238,-0.9092,-0.864,-0.9836,-0.8062,-0.897,-0.6082,-0.5216,-0.4762,-0.435,-0.1958,0.2454,0.6742,1,0.8186,0.6536,0.6372,0.3154,-0.064,-0.0762,-0.1628,-0.2454,-0.1134,-0.0804,0.2908,-0.1786,0.3214,0.4286,0.7142,0.5714,0.25,-0.0714,0,-0.1428,-0.0358,0.0358,0.0714,0.2858,0.2858,0.5714,0.6072,1,0.9286,0.8928,0.7142,0.8572,0.75,0.8214,0.4642,0.6428,0.5714,0.6428,0.6786,0.75,0.8572,0.8214,0.6072,-0.36,0.2,0.4,0.76,0.64,0.16,-0.32,-0.24,-0.16,-0.16,-0.04,-0.08,0.2,0.08,0.44,0.8,1,0.88,0.92,0.76,0.8,0.88,0.84,0.48,0.4,0.44,0.32,0.6,0.6,0.8,0.48,0.52,-0.4318,-0.2046,0.2954,0.8636,0.8636,0.1136,-0.1136,-0.1818,-0.2046,-0.3182,-0.2046,-0.25,-0.2272,-0.0682,0.0454,0.2046,0.4318,0.6818,0.9546,1,0.841,0.7954,0.7954,0.8182,0.5454,0.4318,0.4546,0.2954,0.5,0.5228,0.5682,0.6818,-1,-1,-1,-1,-1,-0.9834,-0.988,-0.9722,-0.9662,-0.921,-0.37,0.5646,0.382,0.3754,0.7432,0.6614,0.4478,0.295,0.1364,-0.2784,-0.4948,-0.7192,-0.8546,-0.913,-0.9608,-0.9728,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.985,-0.9862,-0.8406,-0.6912,-0.6264,-0.4638,0.1988,0.3058,0.6526,0.8984,0.6442,0.346,0.1252,-0.1476,-0.4598,-0.673,-0.845,-0.907,-0.9368,-0.9418,-0.9516,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.86,-0.94,-0.2534,0.4832,0.62,-0.2668,-0.4646,-0.4668,-0.448,-0.524,-0.574,-0.606,-0.62,-0.752,-0.8,-0.894,-0.93,-0.9468,-0.6668,-0.2934,-0.19,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,1,1,1,-0.5714,-0.9142,-0.9428,-1,-0.9428,-0.8,-0.6572,-0.7428,0.5428,0.3428,-0.6858,-0.7428,-0.7714,-0.8,-1,-1,-1,-1,-1,-1,-1,0.5722,0.6148,0.6368,0.6678,0.7116,0.7504,0.804,0.8486,0.9146,0.6574,-0.0818,-0.1194,-0.1304,-0.153,-0.1646,-0.1744,-0.1884,-0.1662,-0.0786,0.1892,-0.52,0.153,-0.4148,-0.1122,0.144,0.3332,0.4304,1,-0.6766,-0.4448,-0.4232,-0.1374,-0.089,-0.0404,0.0242,0.0242,0.2022,0.3154,0.4016,0.655,0.7898,1,0.9192,0.6928,0.4932,0.5418,0.4932,0.4394,0.4716,0.5094,0.4556,0.3908,0.2884,0.4448,0.5472,0.531,0.31,0.31,0.0944,-0.0998,-0.8644,-0.608,-0.613,-0.5578,-0.5778,-0.417,-0.206,-0.1608,0.5478,0.5326,0.5578,0.613,0.6684,0.985,0.99,0.9448,0.9296,0.6282,0.8392,0.8694,0.8492,0.784,0.6582,0.7286,0.6684,0.7688,0.8844,1,0.7086,0.7738,0.5376,0.191,0.206,0.407,0.4272,0,-0.201,-0.1708,0.1156,0.392,0.8442,0.7386,0.8492,1,0.7538,0.799,0.9096,0.8392,0.6332,0.7036,0.7738,0.5176,0.4724,0.2262,0.412,0.2914,0.1458,0.0552,0.201,0.3668,0.4824,0.4824,0.1658,-0.1056,-0.5706,-1,-1,1,-0.4,-1,-0.8,-0.2,-1,-0.343,-0.051,0.0218,0.1386,0.0656,-0.0364,0.0072,-0.124,0.6788,0.5912,0.781,0.9854,0.854,0.708,0.8686,0.562,0.0218,0.124,0.27,0.27,0.1094,0.1386,0.0364,0.343,0.9708,1,0.0802,0.0948,0.051,-0.051,-0.0802,-0.5328,'10'
-0.2714,0.3756,0.3558,0.7046,0.6428,0.7524,0.668,0.2968,0.187,0.083,-0.0268,0.1392,0.1054,0.3924,0.4036,0.713,0.7666,1,0.8846,0.7694,0.7046,0.7468,0.6202,0.3474,0.2546,0.2462,0.2124,0.249,0.263,0.3474,0.3896,0.3446,-0.3606,0.064,0.31,0.4692,0.6936,0.766,0.3704,0.2352,0.1074,0.0132,0.105,0.1724,0.2618,0.368,0.5972,0.7588,1,0.971,0.9156,0.8262,0.8866,0.8336,0.7226,0.5392,0.421,0.4114,0.3848,0.4572,0.5296,0.5996,0.6598,0.6212,-0.4206,-0.1402,0.2962,0.5476,0.7672,0.5978,0.1614,0.209,0.0714,-0.0502,0.045,0.0424,0.135,0.2804,0.4312,0.6296,0.8572,1,0.947,0.8096,0.844,0.836,0.783,0.6376,0.426,0.3994,0.3518,0.4048,0.4576,0.492,0.6508,0.6482,-0.4426,-0.1578,0.3384,0.7856,0.8468,0.219,0.0996,0.069,-0.173,-0.1332,-0.1792,-0.1454,-0.1148,0.0444,0.1148,0.3048,0.5774,0.8744,1,0.9664,0.8438,0.8774,0.8744,0.6968,0.4456,0.418,0.3324,0.366,0.3324,0.4028,0.663,0.657,-0.4622,0.021,0.3624,0.7874,0.736,-0.0144,-0.3462,-0.3076,-0.3462,-0.4782,-0.446,-0.533,-0.3688,-0.256,-0.2078,0.0982,0.2592,0.5394,0.9356,1,0.8582,0.7488,0.752,0.6328,0.517,0.4396,0.2882,0.256,0.2754,0.359,0.533,0.5974,-0.4628,0.1448,0.4064,0.6184,0.424,-0.1096,-0.5478,-0.3852,-0.6114,-0.6502,-0.6784,-0.6466,-0.6008,-0.417,-0.3392,-0.166,-0.053,0.2544,0.7562,1,0.947,0.629,0.735,0.6926,0.4028,0.371,0.1272,0.1024,0.1024,0.1202,0.431,0.4806,-0.2026,0.4846,0.718,0.9956,0.555,-0.3216,-0.4186,-0.4052,-0.8942,-0.8678,-0.9472,-0.74,-0.8018,-0.6212,-0.5726,-0.467,-0.4582,-0.1894,0.3876,0.8238,1,0.4008,0.6344,0.5594,0.3436,0.2908,-0.0748,-0.229,-0.348,-0.4714,0.0176,0.0396,0.091,0.9394,0.9394,1,0.8788,0.9394,0.7576,0.394,0.091,-0.1516,-0.091,-0.091,-0.5152,-0.2122,0.2728,0.394,0.2122,0.5152,0.6364,0.7576,0.4546,0.697,0.5758,-0.5152,-0.2728,-0.091,0.091,0.2122,0.2122,-0.2728,0.1516,-0.2122,-0.3334,0.4222,0.4222,0.7334,0.7334,0.7334,0.6888,0.0666,0.1112,0.1112,0.0666,0.1112,0.1112,0.4222,0.3778,0.7778,0.7778,1,1,0.7778,0.7778,0.6,0.6444,0.3334,0.2444,0.1112,0.2,0.2888,0.3334,0.4222,0.5112,0.4222,-0.4946,-0.1648,0.2748,0.6924,0.7142,0.1428,0.011,-0.033,-0.2088,-0.1428,-0.2308,-0.2088,-0.1428,0.055,-0.011,0.077,0.5164,0.912,1,0.8682,0.6704,0.6924,0.7802,0.5384,0.3186,0.3846,0.2088,0.2968,0.2968,0.2528,0.5824,0.5604,-1,-1,-1,-1,-0.9808,-0.9774,-0.9516,-0.8716,-0.8052,-0.9404,-0.7828,0.2854,0.4034,0.6264,0.8886,0.6848,0.5386,0.246,-0.1154,-0.336,-0.4508,-0.543,-0.7884,-0.8806,-0.9392,-0.9618,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.985,-0.9836,-0.936,-0.7814,-0.7144,-0.9056,-0.8774,-0.212,0.4634,0.829,0.836,0.3586,0.0692,-0.2694,-0.4648,-0.641,-0.7392,-0.8148,-0.9106,-0.9478,-0.9662,-0.97,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9798,-0.9868,-0.86,-0.0134,0.3932,0.1766,-0.3434,-0.7334,-0.509,-0.456,-0.516,-0.536,-0.69,-0.654,-0.814,-0.844,-0.902,-0.966,-0.8634,-0.75,-0.6768,-0.78,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4572,-0.4,1,1,0.3428,1,1,1,0.4,-0.7142,-0.9714,-0.9142,-0.7428,-0.8286,-0.9428,-0.5428,-0.3714,-0.5714,-0.5428,-0.8858,-0.9714,-0.8858,-1,-1,-1,-1,-1,-1,-1,0.8474,0.8726,0.8854,0.9036,0.9306,0.9524,0.983,0.9864,0.9858,0.5994,-0.5318,-0.5128,-0.511,-0.5048,-0.4966,-0.472,-0.439,-0.3842,-0.2288,0.112,-0.44,0.153,-0.8716,-0.679,-0.2702,-0.01,0.1982,1,-0.4368,0.2,0.279,0.3158,0.2158,0.2578,0.3474,0.3842,0.5474,0.6948,1,0.9948,0.6684,0.6632,0.5684,0.5736,0.6474,0.6736,0.7842,0.921,0.7948,0.8,0.579,0.4578,0.4,0.4894,0.5158,0.5684,0.4,0.2474,-0.1158,-0.4632,-0.4472,0.0022,0.0338,-0.0338,-0.0472,-0.0112,0.1236,0.2224,0.4338,0.555,0.6494,0.964,0.663,0.546,0.546,0.6044,0.5236,0.636,0.7438,1,0.7708,0.4786,0.4966,0.4562,0.6224,0.5236,0.5596,0.6674,0.4292,0.4696,0.3932,0.0876,0.0826,0.2572,0.233,0.3156,0.2572,0.136,0.3156,0.4466,0.9174,1,0.8738,0.8786,0.4418,0.4514,0.4902,0.602,0.4418,0.2282,0.432,0.767,0.9224,0.67,0.5146,0.4854,0.2428,0.1166,0.1214,0.2088,0.1748,0.2136,0.3058,0.1262,-0.7152,-1,-1,1,-1,-1,-1,-0.1334,-1,0.0112,0.0338,-0.0562,0.146,-0.0112,-0.236,-0.2584,-0.1236,0.2134,0.618,0.663,1,0.9326,0.2134,0.1236,0.0112,0.1012,-0.3258,-0.3484,0.0786,-0.1236,0.0338,-0.0562,0.0338,-0.0562,-0.3484,-0.191,-0.3034,-0.0562,-0.3258,-0.3708,-0.7528,'11'
-0.2724,0.3448,0.3,0.6276,0.5896,0.6862,0.6276,0.2482,0.1104,-0.0172,-0.0518,0.1724,0.231,0.4206,0.4414,0.6482,0.8518,1,0.8932,0.8828,0.7966,0.831,0.7482,0.6242,0.4104,0.431,0.3172,0.3896,0.4932,0.5206,0.6138,0.5586,-0.3216,0.1238,0.3068,0.5222,0.7286,0.8584,0.593,0.3362,0.1298,0.1386,0.174,0.1356,0.3776,0.354,0.5664,0.7316,0.8908,0.9174,1,0.8142,0.8614,0.8436,0.8408,0.5722,0.5074,0.5222,0.4042,0.4602,0.475,0.5516,0.6962,0.711,-0.3602,0.0726,0.3292,0.4838,0.765,0.8146,0.3478,0.1406,0.0386,-0.082,0.0386,0.1406,0.221,0.3756,0.3724,0.6908,0.7744,1,0.8794,0.8548,0.8084,0.8362,0.9072,0.8702,0.5486,0.4498,0.5024,0.524,0.595,0.6074,0.6446,0.7188,-0.3584,0.0162,0.4104,0.5114,0.759,0.7296,0.0554,-0.0716,0,-0.013,-0.0326,0.013,0.1108,0.2182,0.316,0.4006,0.658,0.8404,1,0.9154,0.873,0.9284,0.9414,0.8242,0.6808,0.6286,0.4724,0.5276,0.5504,0.5472,0.8014,0.8046,-0.3818,-0.0582,0.3786,0.3852,0.4724,0.2912,-0.0388,-0.0906,-0.1942,-0.2072,-0.2394,-0.2556,-0.1554,-0.081,-0.013,0.2168,0.424,0.6666,0.9352,1,0.9386,0.877,0.919,0.8674,0.6894,0.5826,0.4952,0.4692,0.534,0.5502,0.7508,0.767,-0.3882,-0.1318,0.4358,0.3554,0.3296,-0.088,-0.2198,-0.3736,-0.575,-0.5604,-0.5312,-0.6228,-0.392,-0.403,-0.238,0.0366,0.0806,0.3516,0.652,0.9304,1,0.8096,0.8242,0.8792,0.608,0.586,0.4616,0.3846,0.4176,0.3186,0.608,0.6924,-0.2412,0.157,0.555,0.377,0.0258,-0.363,-0.6112,-0.6112,-0.7564,-0.7142,-0.794,-0.7142,-0.7752,-0.7424,-0.7096,-0.5878,-0.4708,-0.1944,0.2928,0.5878,1,0.9016,0.747,0.7564,0.569,0.3162,0.1148,-0.0586,0.0258,-0.082,0.1334,0.2224,0.2174,0.826,0.826,0.6956,0.7392,0.3478,0.4782,0.3478,0.2174,-0.4348,-0.2174,0,0.1304,0.4782,0.5218,0.174,0.6956,0.9566,0.913,0.913,0.826,1,0.9566,0.6956,0.3914,0.3478,0.5652,0.6522,0.6956,0.5652,0.6086,0.4782,-0.28,0.4,0.36,0.68,0.68,0.64,0.6,0.24,0.24,0.16,0.08,0.16,0.16,0.32,0.36,0.68,0.72,1,1,0.76,0.8,0.64,0.68,0.4,0.24,0.24,0.16,0.2,0.08,0.32,0.32,0.32,-0.4546,-0.1364,0.341,0.2954,0.2728,-0.0682,-0.2272,-0.3636,-0.4772,-0.4546,-0.409,-0.5454,-0.4546,-0.3864,-0.1818,0.0228,0.091,0.3636,0.7728,0.841,1,0.841,0.75,0.7954,0.6136,0.591,0.3864,0.4772,0.4772,0.409,0.7272,0.7272,-1,-1,-1,-1,-1,-0.9718,-0.9752,-0.8506,-0.8046,-0.8634,-0.8706,0.5374,0.8434,0.9576,0.9446,0.9518,0.761,0.3126,0.1254,-0.0312,-0.2054,-0.4668,-0.7352,-0.88,-0.9658,-0.9234,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.982,-0.9806,-0.4556,-0.661,-0.8332,-0.8322,-0.011,0.9762,0.8198,0.7362,0.6402,0.476,0.4062,0.264,-0.1984,-0.5608,-0.7628,-0.8974,-0.9322,-0.9386,-0.921,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9068,-0.9068,-0.1434,0.47,0.27,-0.0634,-0.6116,-0.4226,-0.5326,-0.485,-0.4676,-0.49,-0.545,-0.495,-0.585,-0.7826,-0.7976,-0.92,-0.4768,-0.0034,-0.16,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2286,1,1,1,1,1,1,1,-0.8572,-1,-0.9142,-0.6572,-0.7714,-0.7142,0.1428,0.5714,0.4572,-0.1714,-0.1428,-0.4858,-0.2,-1,-1,-1,-1,-1,-1,-1,0.8176,0.8426,0.8642,0.896,0.9286,0.9538,0.982,1,0.987,0.677,-0.3184,-0.2834,-0.2696,-0.2624,-0.2496,-0.2448,-0.2348,-0.1922,-0.0508,0.3016,-0.64,-0.0942,-0.805,-0.683,0.0102,0.7098,0.9816,1,-0.4182,-0.1324,0.0702,0.148,0.2,0.2312,0.2936,0.3714,0.5064,0.6728,0.8702,1,0.8754,0.787,0.7246,0.4702,0.7194,0.761,0.8026,0.891,0.6572,0.5376,0.3974,0.3038,0.1948,0.0962,-0.0078,-0.1012,-0.1636,0.0338,-0.1688,-0.5948,-0.6172,-0.0114,0.0514,-0.3372,-0.4114,-0.2742,-0.1142,-0.04,0.4058,0.4228,0.5714,0.7086,0.7828,0.7828,0.6058,0.6686,0.68,0.6342,0.8572,1,0.6972,0.44,0.52,0.5086,0.3828,0.4228,0.6,0.4458,0.44,0.3142,0.3086,-0.04,-0.4758,-0.0026,0.1858,0.2774,-0.0788,-0.252,-0.0076,0.1044,0.4148,0.9644,1,0.7302,0.5928,0.4352,0.6082,0.6488,0.6132,0.486,0.5726,0.71,0.374,0.5166,0.598,0.5674,0.2824,0.257,0.0534,0.1094,-0.084,-0.0484,-0.089,-0.5268,0.1262,-1,-1,1,-1,-1,-0.4,-0.1666,-1,-0.5738,-0.2786,-0.164,-0.3114,-0.2296,-0.4098,-0.082,-0.3442,-0.3114,0.3442,0.8524,0.5738,0.7868,0.7868,0.6394,0.5246,0.5082,0.6066,1,0.9508,0.7378,0.6558,0.246,0.2622,0.0656,0.2296,0.5082,0.1312,0.246,-0.0328,0.0164,-0.4754,'11'
-0.4018,-0.091,0.1642,0.214,0.4986,0.915,0.9354,0.5102,0.2698,0.3782,0.4516,0.5044,0.698,1,0.9736,0.6716,0.5308,0.5572,0.7244,0.7888,0.8358,0.5894,0.3988,0.2376,0.1612,0.2258,0.1964,0.3372,0.4898,0.566,0.5426,0.5074,-0.3896,-0.0858,0.2178,0.2208,0.4264,0.997,1,0.6994,0.5736,0.6104,0.727,0.9172,0.9632,0.8958,0.7576,0.6258,0.5766,0.595,0.7148,0.957,0.9202,0.6748,0.4356,0.4172,0.2392,0.3588,0.3774,0.3896,0.6688,0.73,0.6688,0.5398,-0.3996,-0.0648,0.2576,0.2734,0.5292,0.962,1,0.6462,0.6304,0.7346,0.9778,0.883,0.5324,0.3302,0.3238,0.286,0.2448,0.2734,0.444,0.6808,0.7726,0.6146,0.466,0.365,0.1722,0.1564,0.2322,0.346,0.5546,0.5608,0.444,0.3554,-0.3344,0,0.3704,0.446,0.6886,0.9574,1,0.7934,0.8524,0.9278,0.4622,0.3704,0.0786,0.0622,0.0328,-0.0032,-0.1246,-0.1016,0.141,0.3934,0.4622,0.5804,0.4852,0.3672,0.059,0.0164,0.164,0.3148,0.3114,0.3016,0.1738,0.154,-0.3226,0.0018,0.4902,0.6578,0.8502,0.9714,0.9252,0.9786,1,0.95,0.2228,-0.1088,-0.1336,-0.173,-0.1908,-0.1658,-0.2014,-0.1908,-0.1622,0.073,0.394,0.4296,0.4368,0.262,0.0374,0.148,0.0374,0.1088,0.2906,0.1908,0.2514,0.1516,-0.3358,-0.061,0.5152,0.8512,0.9504,1,0.9656,1,0.9924,0.6718,0.0534,-0.1908,-0.374,-0.4656,-0.4236,-0.4198,-0.4504,-0.4886,-0.3206,-0.0802,0.0992,0.355,0.4084,0.1794,-0.1832,-0.061,-0.0534,0.0114,0.1068,0.019,0.061,0.0152,-0.1362,0.1876,0.5784,0.9692,0.9898,0.9384,0.8046,1,0.964,0.2648,-0.4242,-0.5578,-0.779,-0.455,-0.455,-0.712,-0.671,-0.5424,-0.5682,-0.6504,-0.3368,0.0026,-0.0694,-0.3882,-0.6556,-0.6144,-0.6658,-0.4448,-0.4858,-0.5168,-0.4448,-0.527,-0.35,0.1,0.15,0.35,0.45,0.95,1,0.6,0.45,0.45,0.45,0.6,0.7,0.9,1,0.55,0.55,0.5,0.8,0.85,0.6,0.65,0.2,-0.45,-0.35,0.05,0.1,0,0.35,0.4,0.5,0.5,-0.4666,-0.0666,0.1112,0.3778,0.4222,1,1,0.4666,0.2888,0.2888,0.3778,0.5112,0.6444,1,0.8222,0.8222,0.5112,0.6888,0.7334,0.8666,0.7778,0.5556,0.4666,0.3334,0.2,0.2888,0.3334,0.3334,0.5112,0.6,0.6444,0.5556,-0.4712,-0.0804,0.2414,0.2874,0.5402,0.931,1,0.6092,0.6322,0.7242,0.885,0.816,0.2874,0.0804,0.0574,0.1264,-0.0804,-0.0114,0.1954,0.4942,0.6322,0.4252,0.4022,0.3334,0.0804,-0.0114,0.1034,0.3794,0.4482,0.4482,0.3564,0.1954,-1,-1,-1,-1,-1,-1,-1,-0.9576,-0.9772,-0.7818,-0.103,0.6682,0.953,0.8,0.659,0.7136,0.6228,0.6304,0.6136,0.5454,0.341,-0.2636,-0.7894,-0.9152,-0.9378,-0.9378,-0.9378,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9796,-0.9862,-0.8194,-0.3192,0.5532,0.888,0.5662,0.3376,0.2532,-0.0356,-0.0686,-0.088,-0.2058,-0.44,-0.7702,-0.9384,-0.9652,-0.9404,-0.966,-0.9726,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.77,-0.9668,-0.6534,-0.5134,-0.635,-0.6046,-0.6356,-0.5912,-0.6446,-0.7446,-0.7046,-0.7556,-0.8224,-0.6556,-0.8446,-0.9234,-0.74,-0.7268,-0.6868,-0.7868,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5142,1,1,1,1,-0.8572,-1,-0.8,-0.4,-0.5714,-0.9142,-0.9428,-0.5714,0.4,1,-0.1714,-0.4572,-0.3714,-0.6572,-0.7142,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8838,-0.271,-0.5734,0.0352,-0.2256,-0.0494,0.7282,0.7086,0.9184,1,-0.1142,0.0286,0.5428,0.4572,0.3714,0.3,0.4714,0.9714,1,0.7428,0.9286,0.5142,0.1858,0.3142,0.3572,0.6,0.3428,0.0572,-0.0428,0.3572,0.7142,0.6,0.5,0.0286,-0.5142,-0.1286,0.0142,0.0142,0.2,0.1572,0.1572,-0.6286,0.07,0.3504,0.7962,0.8854,0.5032,0.4012,0.6306,1,0.9108,0.809,0.9872,0.5286,0.3122,0.1592,0.4904,0.5414,0.363,0.1592,0.1592,0.6816,0.6942,0.5668,0.3886,-0.121,-0.2612,-0.1974,-0.2484,0.0318,0.0318,0.1338,0.1464,-0.3376,0.1982,0.5188,0.915,0.849,0.6038,0.415,0.783,1,0.9622,0.868,0.8584,0.5566,0.4056,0.2736,0.5944,0.6982,0.5566,0.1698,0.1698,0.6982,0.8302,0.5754,0.1982,0.066,-0.217,-0.2264,-0.0944,0.4528,0.349,0.0472,0.0944,-0.2358,0.1214,-1,-1,1,-0.6,-1,-1,-0.6666,-1,-0.1522,0.2174,0.3478,0.3696,0.6086,1,0.8914,0.7174,0.5434,0.4782,0.5652,0.087,0.3478,0.087,0.6086,0.6304,0.413,0.0434,0.5,0.587,0.587,0.3914,0.4348,0.3478,0.3044,0.3696,0.4348,0.3696,0.326,-0.1956,0.3478,0.0434,'12'
-0.4566,-0.0896,0.1794,0.288,0.6414,0.7066,0.7092,0.4184,0.3044,0.3098,0.3016,0.3586,0.6006,0.7336,1,0.9674,0.7772,0.7554,0.7908,0.8696,0.8124,0.4294,0.3206,0.3152,0.2066,0.1766,0.212,0.3288,0.3722,0.443,0.3234,0.1712,-0.385,-0.0336,0.1758,0.2532,0.602,0.7622,0.9354,0.7338,0.4884,0.5944,0.509,0.6408,0.8966,0.907,0.8372,0.7442,0.7106,0.8268,0.8502,1,0.8914,0.4728,0.4056,0.4186,0.2842,0.217,0.2894,0.4988,0.5168,0.6408,0.54,0.3746,-0.3714,-0.0232,0.1728,0.2354,0.57,0.8096,0.9456,0.7142,0.698,0.8504,0.932,1,0.7606,0.6898,0.4858,0.4858,0.5238,0.6898,0.7552,0.8994,0.619,0.347,0.3034,0.17,0.1428,0.287,0.2544,0.3496,0.5102,0.5756,0.1946,0.151,-0.3658,-0.0372,0.2114,0.3228,0.6086,0.8886,0.9542,0.7514,0.8772,1,0.6314,0.5828,0.2514,0.1342,0.1572,0.1858,0.1772,0.2772,0.5886,0.5686,0.3972,0.1542,0.0714,-0.0258,-0.0228,0.0542,0.0086,-0.0286,-0.0514,-0.0914,0.1142,0.0342,-0.3564,-0.0676,0.3474,0.588,0.7534,1,0.9038,0.967,0.988,0.9098,0.176,-0.1278,-0.2,-0.188,-0.197,-0.224,-0.1278,0.0286,0.2452,0.4016,0.4166,0.0796,-0.1098,-0.197,-0.203,-0.0556,-0.0766,0.221,0.239,-0.1488,-0.3864,-0.3954,-0.3638,-0.0832,0.4128,0.8466,0.863,0.9348,1,0.9216,0.8858,0.1942,-0.106,-0.3508,-0.403,-0.5138,-0.3572,-0.3376,-0.354,-0.3606,-0.0474,0.305,0.3312,0.044,-0.2366,-0.2986,-0.4324,-0.1876,-0.1224,0.1452,0.23,-0.093,-0.429,-0.553,-0.232,0.0338,0.4978,0.789,0.962,1,0.8902,0.8946,0.9746,0.0422,-0.0802,-0.384,-0.5654,-0.6752,-0.5864,-0.54,-0.6118,-0.5444,-0.3502,0.0254,0.3248,0.308,-0.3756,-0.5106,-0.4304,-0.443,-0.3248,-0.0084,0.0296,-0.1098,-0.713,-0.7848,-0.5814,-0.1162,0.1162,0.4418,0.628,0.6744,0.6744,0.2558,0.2558,0.1162,0.2094,0.2558,0.4418,0.6744,0.907,1,0.9534,0.721,0.7674,0.7674,0.628,0.4418,0.3024,0.1162,0.0698,0.1628,0.0698,0.0698,0.3024,0.3488,0.2094,-0.1628,-0.5834,-0.2084,0.0416,0.2084,0.75,0.75,0.4166,0.3334,0.2084,0.25,0.2084,0.25,0.5,0.625,1,0.9584,0.7084,0.625,0.75,0.75,0.75,0.4166,0.3334,0.125,0.0834,0.125,0.0834,0,0.2084,0.25,0.3334,0.0416,-0.4286,-0.0816,0.1224,0.1428,0.449,0.7756,0.8776,0.6122,0.6734,0.8572,1,1,0.204,0.1224,0.2244,0.2858,0.2654,0.4694,0.6734,0.7142,0.347,0.2858,0.1224,0.0204,-0.0204,0.1632,0.0204,0.1428,0.4082,0.3062,-0.1224,-0.1632,-1,-1,-1,-1,-1,-1,-0.968,-0.9708,-0.9262,-0.8078,-0.436,0.252,0.5182,0.883,0.8134,0.8008,0.7828,0.6296,0.6016,0.415,0.2144,-0.2396,-0.7772,-0.9178,-0.9262,-0.9456,-0.9596,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9858,-0.9852,-0.972,-0.932,-0.7668,-0.0506,0.6054,0.9126,0.6376,0.5254,0.2882,0.0348,-0.1848,-0.3702,-0.4966,-0.7188,-0.9422,-0.954,-0.9678,-0.9762,-0.9828,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9522,-0.9468,-0.8068,-0.6468,-0.7734,-0.6224,-0.64,-0.638,-0.62,-0.7,-0.794,-0.8228,-0.8744,-0.8844,-0.8824,-0.8724,-0.8678,-0.6378,-0.6178,-0.8678,-0.8912,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.0572,-0.6858,0.0858,1,1,1,-0.5428,-1,-0.8286,-0.6572,-0.6858,-0.7142,-0.8,-0.9142,-0.6,1,-0.3428,-0.8,-0.8,-0.7428,-0.5142,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6076,-0.5866,0.153,-0.7434,-0.619,-0.0046,0.142,0.37,0.0166,-0.0582,0.0292,0.068,0.767,0.602,0.136,0.4174,0.5922,0.398,0.5632,0.8156,0.8932,1,0.9418,0.5048,0.5728,0.4368,0.8252,0.6504,0.4758,0.4564,0.301,0.369,0.3398,0.2718,0.4078,0.2718,0.5534,0.2622,0.0098,-0.0292,-0.534,-0.1656,0.3034,0.6344,0.3242,0.131,0.0896,0.3034,0.7586,1,0.6828,0.669,0.5656,0.5724,0.4966,0.462,0.262,0.2276,-0.0758,0.0276,0.2,0.2758,-0.0414,0.1172,0.2276,-0.069,0.069,0.3172,0.062,0.269,0.269,0.1104,-0.5656,-0.094,0.4266,0.908,0.523,0.2342,0.1554,0.4748,0.9168,1,0.7286,0.7506,0.5098,0.1992,0.1904,0.418,0.1816,0.0854,-0.1554,0.418,0.5668,0.3916,0.0722,0.1292,0.046,-0.1684,-0.2122,-0.2078,0.0678,0.488,0.4486,0.4136,-0.3916,-0.986,1,-1,-1,-1,-1,-1,-1,-1,-0.2808,0.2584,0.3258,0.7078,0.4606,0.8652,0.2134,0.1236,0.2584,0.7304,0.7752,0.4158,0.1236,0.1236,0.1236,0.1012,0.1012,0.146,0.3484,0.528,0.7978,0.7528,1,-0.191,-0.146,-0.1012,-0.0786,-0.3258,-0.236,-0.146,-0.236,-0.7304,'12'
-0.3696,0.0242,0.099,0.1932,0.5798,0.5556,0.3938,0.2246,0.273,0.0894,0.1014,0.2004,0.186,0.3962,0.6956,0.9106,1,0.901,0.8962,0.9542,0.8962,0.8334,0.5314,0.4758,0.331,0.3986,0.401,0.4082,0.628,0.7126,0.657,0.628,-0.3358,0.0228,0.0632,0.1136,0.3964,0.7474,0.8888,0.5606,0.5304,0.452,0.5606,0.6288,0.8636,0.9116,1,0.841,0.8484,0.7146,0.7374,0.851,0.9116,0.8814,0.4596,0.2602,0.308,0.4798,0.3914,0.4546,0.9016,0.9066,0.601,0.4596,-0.2518,0.1664,0.187,0.246,0.3932,0.8646,0.9794,0.6142,0.617,0.9058,0.9264,1,0.7674,0.6966,0.4904,0.6378,0.676,0.2812,0.2312,0.3402,0.8498,0.8262,0.1988,0.0516,0.1252,0.4404,0.402,0.6406,0.7408,0.7908,0.3932,0.3048,0.0784,0.7164,0.5,0.6232,-0.0038,-0.4216,-0.3022,0.7948,0.9962,0.9814,1,0.2126,0.0448,0.2836,0.5224,0.6232,0.6792,0.6082,0.5522,0.2686,0.3956,0.3582,0.332,-0.4888,-0.6306,-0.5598,0.1828,0.265,0.7014,0.5784,0.2388,0.4702,0.2078,0.969,0.802,0.7242,0.297,-0.5068,-0.1806,0.3786,1,0.8486,0.7592,0.433,0.4564,0.235,0.2816,0.8252,0.7476,0.7826,0.5534,0.297,0.6894,0.7942,0.4174,-0.1456,-0.732,-0.464,0.1146,0.67,0.7942,0.7476,0.3786,0.5806,0.1604,0.9214,0.8522,0.632,0.4528,0.0188,0.1604,0.327,0.8868,1,0.61,0.6572,0.6604,0.6226,0.2642,0.61,0.8806,0.7358,0.3994,0.1886,0.368,0.4906,0.4906,-0.132,-0.349,-0.0504,0.1226,0.6824,0.7264,0.5628,0.349,0.4654,-0.003,0.8478,0.815,0.1552,0.3582,0.9254,0.9254,0.818,0.7432,0.6478,0.5314,0.9344,1,0.7552,0.4656,0.3582,0.3374,0.006,-0.1732,0.0926,0.191,0.397,0.4896,0.5612,0.4956,0.2686,0.1492,0.2656,0.5164,0.6,0.4656,0.1104,-0.4468,0.0212,0.0212,0.234,0.5744,0.6596,0.1064,0.0638,0.0638,-0.0212,0.0212,-0.0638,0.0638,0.1914,0.149,0.5744,0.7446,1,0.7022,0.9148,0.9148,0.9574,0.5744,0.532,0.2766,0.0638,0.3618,0.3618,0.4468,0.6596,0.5744,0.4894,-0.3962,0.0188,0.0566,0.2076,0.585,0.6226,0.2076,0.0188,0.2076,0.0188,0.132,0.1698,0.132,0.1698,0.585,0.7358,0.9622,0.9622,0.9622,0.8868,1,0.8114,0.585,0.434,0.434,0.3962,0.283,0.4716,0.4716,0.6226,0.7358,0.7358,-0.1808,0.2048,0.253,0.3494,0.6144,0.9036,1,0.5422,0.5662,0.9278,0.8554,0.9036,0.5662,0.5422,0.3734,0.4698,0.5904,0.0602,-0.0844,-0.1566,0.5422,0.5422,0.1326,0.0362,0.0844,0.494,0.494,0.735,0.5904,0.4698,0.3254,0.3254,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.9694,-0.3168,0.7588,0.635,0.8152,0.939,0.4662,0.4292,0.5128,0.6094,0.717,0.5756,0.119,-0.6962,-0.902,-0.9534,-0.9566,-0.947,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9844,-0.9856,-0.53,0.4978,0.7336,0.7682,0.728,-0.4122,-0.5364,-0.5498,-0.5896,-0.5518,-0.3682,-0.672,-0.8994,-0.9416,-0.9616,-0.9568,-0.9606,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8768,-0.93,-0.56,-0.3328,-0.3928,-0.46,-0.542,-0.6746,-0.8,-0.7946,-0.8092,-0.8928,-0.7982,-0.9274,-0.7668,-0.4234,-0.66,-0.6668,-0.64,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,1,1,1,-0.8286,-0.8286,0.6286,1,-0.9142,-0.9428,-0.8572,0.8286,0.6858,1,-0.5714,-0.7428,-0.7142,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.6356,-0.3712,-0.386,-0.435,-0.4958,-0.592,-0.6712,-0.797,-0.8886,-0.8244,-0.799,-0.6666,0.3058,-0.4608,-0.2612,0.1932,0.875,0.9026,1,-0.1112,0.2962,0.2962,0.2592,0.1852,0,0.1112,0.5186,0.8888,1,1,0.926,0.5556,0.3704,0.3334,0.2962,0.1482,0.1112,0.1112,0.1852,0.4444,0.4814,0.1112,-0.074,-0.037,-0.1112,-0.037,0.1482,0.1482,-0.1112,-0.2962,-0.5926,0.074,0.2778,0.3888,0.2962,0.1852,0.0186,0.0186,0.463,0.8518,1,0.8518,0.6482,0.4074,0.3888,0.3888,0.426,0.2222,0.1296,0.074,0.2222,0.6296,0.6482,-0.0556,-0.3888,-0.1482,-0.3334,-0.2408,0.2038,0.2222,0.0556,0.0186,-0.3704,0.101,0.2844,0.633,0.4128,0.156,0.1926,0.2294,0.4496,0.89,1,0.9082,0.8166,0.4128,0.5046,0.633,0.688,0.3578,0.211,0.3762,0.4678,0.7982,0.7248,0.101,-0.3578,-0.3394,-0.3028,-0.1376,0.156,0.156,0.2294,0.0642,-0.1926,0.052,-1,-1,1,-1,-1,-0.6,-0.8334,-1,-0.12,0.08,-0.02,0.58,0.46,0.24,0.96,1,0.2,0.22,0.48,0.66,0.52,0.6,0.88,0.78,0.34,0.26,0.36,0.62,0.5,0.66,0.44,0.32,0.12,0.38,0.32,-0.06,-0.14,-0.22,-0.46,-0.56,'13'
-0.3276,0.095,0.0232,0.0892,0.4884,0.5852,0.5058,0.5232,0.279,0.2344,0.2422,0.1918,0.3586,0.5272,0.6046,0.9942,1,0.8082,0.7538,0.8334,0.7558,0.8934,0.7034,0.5368,0.4922,0.5232,0.3158,0.372,0.5678,0.5466,0.6628,0.4826,-0.2944,0.142,0.0584,0.0836,0.4446,0.5344,0.9144,0.929,0.405,0.3508,0.5366,0.645,0.7828,0.952,1,0.9458,0.9332,0.6326,0.593,0.8476,0.714,0.8518,0.593,0.5762,0.4864,0.4822,0.3946,0.3924,0.6534,0.618,0.7474,0.4802,-0.2,0.279,0.1456,0.2666,0.5828,0.6272,0.9482,0.879,0.5852,0.763,0.8814,0.9926,1,0.5852,0.5482,0.7828,0.6592,0.4346,0.3432,0.395,0.6914,0.642,0.3456,0.2544,0.2074,0.2864,0.3754,0.6172,0.6766,0.5038,0.4024,0.242,0.0174,0.6098,0.5052,0.6306,-0.108,-0.2788,-0.2752,0.8954,1,0.9826,0.8816,0.3206,0.5052,0.5296,0.561,0.7074,0.8362,0.648,0.568,0.5052,0.6864,0.6724,0.3764,-0.3102,-0.798,-0.3658,0.0384,0.5644,0.7666,0.5644,0.352,0.425,-0.0126,0.4758,0.5834,0.5906,-0.4686,-0.7558,0.1096,0.641,0.8922,1,0.3214,0.3286,0.4866,0.088,0.4578,0.7236,0.6912,0.641,0.3536,0.343,0.562,0.641,0.4542,-0.2172,-0.7774,-0.8456,-0.3608,0.4004,0.6768,0.5942,0.3394,0.3788,0.0488,0.4586,0.8308,0.7444,-0.267,-0.827,-0.1466,0.3572,1,0.812,0.5828,0.4512,0.2744,0.2782,0.3948,0.594,0.718,0.5414,0.2744,0.282,0.5676,0.6128,0.515,-0.2782,-0.673,-0.921,-0.564,0.3458,0.594,0.4624,0.2294,0.218,0.1624,0.6346,1,0.7106,0.061,0.2386,0.401,0.67,0.7412,0.5076,0.6446,0.731,0.5888,0.1676,-0.0964,0.2488,0.2336,0.071,-0.4366,-0.3148,-0.1218,0.1422,0.1016,-0.33,-0.863,-0.8172,-0.7766,-0.0456,0.4874,0.1116,-0.3554,-0.528,-0.5094,-0.0944,-0.0944,0.0188,0.4716,0.5472,0.3208,0.2452,0.0188,0.0188,0.0566,0.0944,0.132,0.283,0.5094,0.8114,0.7358,1,0.8868,0.7736,0.849,0.9246,0.6982,0.6226,0.4716,0.4716,0.3208,0.434,0.585,0.6604,0.6604,0.3962,-0.4,0.04,0,0.08,0.52,0.64,0.36,0.36,0.2,0.2,0.04,0.12,0.24,0.28,0.48,0.92,0.88,0.92,0.88,0.84,0.88,1,0.76,0.56,0.4,0.4,0.24,0.24,0.2,0.56,0.76,0.56,-0.1764,0.3176,0.3176,0.4118,0.7882,0.7176,0.7882,0.7412,0.6706,0.9764,1,0.7412,0.7412,0.4588,0.647,0.7648,0.5058,0.4824,0.0588,0.3176,0.4588,0.3176,0.0352,0.0118,0.1294,0.3882,0.4118,0.5058,0.6,0.553,0.3648,0.2706,-1,-1,-1,-1,-1,-1,-1,-1,-0.9594,-0.9578,-0.0852,0.5904,0.728,0.8484,0.9546,0.7044,0.398,0.2104,0.1274,8e-04,-0.1244,-0.2994,-0.7638,-0.8718,-0.925,-0.9312,-0.9374,-0.9438,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9844,-0.9734,-0.3256,0.5552,0.776,0.803,0.687,-0.2498,-0.574,-0.6516,-0.7082,-0.747,-0.7746,-0.8262,-0.9076,-0.9436,-0.961,-0.9674,-0.9766,-0.9818,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9,-0.8868,-0.46,-0.2964,-0.3238,-0.3982,-0.46,-0.685,-0.8218,-0.7968,-0.8534,-0.9018,-0.8868,-0.8934,-0.7068,-0.6,-0.67,-0.71,-0.8134,-0.9134,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,1,1,1,-0.7142,-0.8572,-0.2,1,-0.8572,-1,-1,-0.9714,0.0286,-0.2572,-0.8572,-0.8286,-0.6858,-0.9714,-0.8572,-0.7714,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.5988,-0.3716,-0.4312,-0.4886,-0.542,-0.5924,-0.6788,-0.8266,-0.9528,-0.9456,-0.9128,-0.6266,0.4,-0.2812,0.1128,0.151,0.771,0.9802,1,0.1148,0.377,0.5738,0.6066,0.246,0.3442,0.4098,0.7704,0.9672,0.9672,0.9344,1,0.7378,0.541,0.6722,0.6722,0.6394,0.4426,0.5082,0.5082,0.5082,0.6394,0.541,0.377,0.082,-0.082,-0.3442,-0.3442,-0.2132,-0.1476,0.082,-0.246,0.04,0.216,0.536,0.456,0.232,0.216,0.328,0.568,0.904,1,0.968,0.984,0.616,0.408,0.6,0.68,0.584,0.312,0.392,0.472,0.488,0.664,0.616,0.312,-0.008,0.088,-0.216,-0.184,-0.232,-0.168,0.04,-0.056,-0.0166,0.1666,0.6,0.4834,0.15,0.2166,0.2334,0.6666,0.9834,1,0.8834,0.7334,0.5666,0.3834,0.6334,0.6166,0.5666,0.2666,0.4166,0.2834,0.45,0.45,0.55,0.2,-0.0334,-0.0834,-0.4,-0.4,-0.2666,-0.0834,0.0166,-0.2834,0.2014,-1,-1,1,-0.8,-1,-0.8,-0.8334,-1,-0.2188,-0.0624,0.0782,0.3126,0.2656,0.2032,1,0.9376,0.5468,0.0938,0.2812,0.625,0.5156,0.1406,0.2812,0.1718,0.1718,-0.1718,0.2188,0.2188,0.1406,-0.1562,-0.1874,-0.3438,-0.1094,-0.25,-0.25,-0.25,-0.1562,-0.2188,-0.3594,-0.8906,'13'
-0.3462,0.0964,0.1032,0.2508,0.5618,0.5982,0.428,0.3688,0.1486,0.0056,0.1032,0.117,0.1464,0.3304,0.4824,0.7004,0.9318,1,0.8842,0.8456,0.9206,0.9002,0.8252,0.68,0.4666,0.3688,0.3576,0.3394,0.4234,0.4506,0.5006,0.5028,-0.3292,0.0988,0.0102,0.179,0.4506,0.5164,0.5432,0.5432,0.1728,0.0884,0.247,0.181,0.2798,0.5884,0.6214,1,0.9424,0.57,0.461,0.6172,0.677,0.7674,0.5824,0.5968,0.2408,0.1914,0.2614,0.2326,0.391,0.4754,0.535,0.3292,-0.2476,0.2238,0.2262,0.388,0.6762,0.7286,0.7096,0.6642,0.2858,0.2452,0.419,0.4428,0.5096,1,0.9762,0.9642,0.8524,0.5952,0.3786,0.4452,0.6738,0.6976,0.9358,0.869,0.3858,0.2238,0.3024,0.3714,0.4142,0.4666,0.588,0.5738,0.0482,0.6632,0.6186,0.7972,0.292,0.2578,-0.519,-0.1306,0.0446,-0.3128,-0.5154,-0.1616,0.6736,1,0.7972,0.4948,0.7698,0.7044,0.2784,0.1512,0.244,0.5532,0.6288,0.3058,-0.3162,-0.6254,-0.7114,-0.8592,-0.7148,-0.3162,0.3676,0.7492,0.441,0.9168,0.97,1,0.431,0.198,-0.2612,-0.0848,0.1814,0.401,-0.0382,-0.421,0.1814,0.7604,0.8436,0.7072,0.7738,0.7272,0.5042,0.4242,0.4942,0.5974,0.8668,0.8236,0.0948,-0.5806,-0.7304,-0.8768,-0.7004,-0.421,0.381,1,0.3366,0.6602,1,0.9084,0.4706,0.1308,-0.0458,-0.2876,0.1112,-0.0294,-0.464,-0.3824,0.3758,0.5032,0.5164,0.6536,0.683,0.6666,0.4184,0.2778,0.2648,0.4576,0.696,0.6112,-0.2648,-0.3986,-0.5686,-0.768,-0.7582,-0.281,0.549,0.768,0.203,0.6942,0.8046,0.614,0.178,0.163,0.233,0.0326,-0.4636,-0.7394,-0.609,-0.594,-0.2982,0.3534,0.9598,1,0.4838,0.163,-0.3082,-0.2682,0.0476,0.188,0.6592,0.5438,0.3484,0.1128,-0.3082,-0.0828,-0.0376,0.2682,0.594,0.3784,-0.5186,-0.1112,-0.1112,0,0.3334,0.2962,0.1112,0,0,-0.2592,-0.2962,-0.1112,-0.1852,-0.074,0.1852,0.2222,0.5556,0.926,1,0.7038,0.7408,0.5186,0.4444,0.6296,0.4074,0.2222,0.1112,0.1852,0.3334,-0.037,0.037,0.4074,-0.44,0,0,0.2,0.52,0.56,0.28,0.16,0.12,-0.08,0.04,0.08,0.04,0.28,0.2,0.44,0.88,0.96,0.76,0.72,0.84,0.76,1,0.64,0.44,0.52,0.48,-0.08,0.28,0.44,0.16,0.08,-0.2098,0.1852,0.3828,0.4814,0.605,0.5556,0.2592,0.1852,0.1112,-0.1852,-0.037,0.358,0.7778,1,0.8024,0.5062,0.6544,0.5802,0.0864,0.1358,0.1604,0.4074,0.5308,0.3334,0.2098,0.037,-0.0864,-0.2346,0.0618,0.2098,0.5802,0.5556,-1,-1,-1,-1,-1,-1,-1,-1,-0.9704,-0.9662,-0.4872,0.1592,0.9028,0.9554,0.923,0.9596,0.618,0.4238,0.1592,-0.031,-0.0512,-0.1242,-0.695,-0.8218,-0.8732,-0.9338,-0.965,-0.9608,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9834,-0.9844,-0.4812,-0.0168,0.9018,0.8988,0.553,0.2522,-0.3892,-0.5086,-0.5978,-0.672,-0.6858,-0.7146,-0.872,-0.9088,-0.9448,-0.9654,-0.9772,-0.9784,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.9068,-0.47,-0.282,-0.2328,-0.2856,-0.44,-0.4638,-0.7768,-0.81,-0.9084,-0.9134,-0.8218,-0.8668,-0.75,-0.4134,-0.66,-0.74,-0.8068,-0.86,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,1,1,1,-0.2572,-0.8858,-0.8572,1,1,-0.8,-0.9714,-0.9714,0.4,-0.1714,-0.7142,-0.3428,-0.2,-0.5428,-0.9142,-0.9428,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,0.9802,0.4034,-0.0572,-0.1002,-0.1194,-0.1834,-0.248,-0.335,-0.4188,-0.535,-0.6904,-0.6992,-0.6534,0.3764,-0.389,-0.1844,-0.1462,0.041,0.1666,1,-0.0962,0.2116,0.3654,0.3462,0.1154,0.1346,0.327,0.3076,0.7308,1,0.9424,0.827,0.6924,0.4424,0.423,0.5576,0.3846,0.0192,0.1154,0.2308,0.1538,-0.0384,-0.1346,0.2884,0.2308,0.0192,0.1346,0.1924,0.3076,0.077,-0.1154,-0.3076,0.074,0.4074,0.2962,0.463,0.1482,0.0556,0.2962,0.4814,0.8148,1,1,0.9074,0.7038,0.5926,0.6482,0.6482,0.6482,0.3888,0.3518,0.5,0.2962,0.037,0.4814,0.7038,0.7038,0.3334,0.1112,0.037,0.1296,0.2408,0.2408,0.037,-0.0468,0.1876,0.4218,0.3124,0.125,0.0156,0.0782,0.3438,0.8282,1,0.7344,0.75,0.6406,0.3124,0.4218,0.4218,0.4532,0.2188,0.2812,0.4376,0.1718,0.1718,0.3594,0.7344,0.5468,0.25,-0.25,-0.0468,0.1406,0,0.0938,-0.125,-0.0998,-1,-1,1,-1,-1,-0.6,-0.8,-1,0.2484,0.4496,0.4094,0.557,0.49,0.3288,0.5302,1,0.9866,0.5974,0.49,0.7986,0.7182,0.7046,0.9464,0.7986,0.4766,0.4228,0.906,0.812,0.5168,0.6376,0.6912,0.5168,0.3154,0.2484,0.0604,-0.0068,-0.047,0.2348,0.208,0.1276,'14'
-0.247,0.2374,0.139,0.1654,0.5876,0.6858,0.5948,0.5996,0.343,0.283,0.2518,0.2638,0.4076,0.4412,0.506,1,0.9904,0.9256,0.8322,0.9016,0.753,0.8538,0.8274,0.825,0.6188,0.6092,0.422,0.3742,0.5876,0.59,0.729,0.5012,-0.364,0.023,-0.0552,0.001,0.324,0.3782,0.5586,0.5426,0.2096,0.1194,0.1876,0.2978,0.3742,0.5146,0.637,1,0.9318,0.5366,0.4122,0.5226,0.5326,0.5848,0.7714,0.7572,0.5386,0.4564,0.334,0.4744,0.5566,0.5948,0.6128,0.4644,-0.28,0.1428,0.0384,0.173,0.4262,0.4564,0.4146,0.3658,0.122,-0.015,0.0708,0.252,0.3124,0.6608,0.712,1,0.87,0.4564,0.2428,0.3078,0.3356,0.3774,0.7306,0.6608,0.3844,0.2218,0.173,0.3914,0.3984,0.3752,0.4844,0.7096,-0.0258,0.5612,0.3646,0.5162,0.1194,0.0936,-0.6806,-0.1838,-0.0032,-0.3774,-0.5548,-0.529,0.158,0.5194,0.6678,0.7936,0.771,0.7096,0.2612,0.1194,0.2678,0.329,0.4678,0.4904,0.2742,-0.1968,-0.6742,-0.8484,-0.8516,-0.142,0.5032,1,0.1454,0.5986,0.6124,0.6298,0.0554,-0.225,-0.6332,-0.1972,0.0762,0.2006,-0.4844,-0.9066,-0.3772,0.2906,0.7336,0.8166,0.6782,0.564,0.3426,0.1142,0.2284,0.2976,0.5502,0.4982,0.3564,-0.0934,-0.436,-0.7854,-0.91,-0.3114,0.3738,1,0.3016,0.638,0.9524,0.8244,0.4772,0.0054,-0.2322,-0.2176,0.031,-0.159,-0.3236,-0.5284,-0.1846,0.6454,0.777,0.6672,0.6198,0.6416,0.393,0.181,0.2432,0.393,0.766,0.733,0.2138,-0.2614,-0.6234,-0.8282,-0.9598,-0.3456,0.616,1,0.223,0.7008,1,0.6692,-0.2178,-0.1496,-0.4226,-0.2598,-0.349,-0.5906,-0.895,-0.8006,-0.307,0.244,0.7586,0.958,0.7638,0.1602,-0.3964,-0.6116,-0.6326,-0.5066,-0.0866,0.0656,-0.0078,-0.2494,-0.5538,-0.5434,-0.6588,-0.5854,0.1444,0.4226,-0.3182,0.2272,0.0454,0.2272,0.7272,0.8636,0.409,0.4546,0.091,0.0454,0.1364,-0.091,0.091,0.2272,0.3182,0.6364,0.591,0.909,0.8636,0.909,0.6818,0.6364,1,1,0.5,0.5,0.591,0.4546,0.5,0.7272,0.909,0.5454,-0.3024,0.2558,0.1628,0.1162,0.5814,0.721,0.4884,0.4418,0.3954,0.3024,0.1628,0.2094,0.4418,0.3024,0.3954,0.9534,1,0.907,0.8604,0.907,0.721,0.8604,0.5814,0.5814,0.721,0.721,0.3488,0.1628,0.6744,0.4884,0.814,0.628,-0.3258,0.146,0.0338,0.191,0.5056,0.528,0.3484,0.2808,0.0338,-0.0786,0.0786,0.236,0.2808,0.7078,0.618,1,0.8426,0.3484,0.0562,0.0786,0.2134,0.3034,0.7528,0.663,0.3932,0.236,0.1012,0.4158,0.4158,0.3708,0.5956,0.8426,-1,-1,-1,-1,-1,-1,-1,-1,-0.9666,-0.9698,-0.3612,0.3678,0.7592,0.8762,0.9414,0.719,0.704,0.4314,0.2208,0.0284,-0.072,-0.1254,-0.6036,-0.7926,-0.8964,-0.9198,-0.9632,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9862,-0.9872,-0.7892,-0.2724,0.6394,0.8998,0.4842,-0.3806,-0.511,-0.5996,-0.673,-0.7446,-0.7826,-0.8112,-0.9074,-0.9358,-0.9542,-0.9682,-0.982,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.94,-0.67,-0.3874,-0.2892,-0.2856,-0.3438,-0.5874,-0.7782,-0.8,-0.8728,-0.9056,-0.8884,-0.7768,-0.8134,-0.5868,-0.53,-0.7468,-0.7868,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,-0.3142,-0.8858,1,1,-0.6572,-0.9428,-0.9428,-0.9428,-0.2858,-0.3714,-0.8,-0.8572,-0.6858,-0.6286,-0.8,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,0.9486,0.2792,-0.1968,-0.2082,-0.2292,-0.2458,-0.2698,-0.306,-0.3664,-0.4252,-0.5682,-0.58,-0.6534,0.3294,-0.7558,-0.5456,-0.4808,-0.2098,0.0516,1,0.1818,0.3636,0.3636,0.1818,0.2272,0.2272,0.2728,0.4546,0.591,0.5454,0.7272,1,0.9546,0.6818,0.6818,0.7728,0.409,0.2272,0.3182,0.2728,0.6364,0.909,0.6364,0.1818,-0.1818,-0.091,-0.0454,0.0454,-0.1818,0.0454,0.091,-0.2728,0.3264,0.5368,0.8316,0.4948,0.4948,0.221,0.0526,0.4526,0.979,1,0.8106,0.9368,0.7894,0.621,0.7264,0.7894,0.7894,0.2422,0.4526,0.3474,0.6422,0.8106,0.2,-0.0106,-0.4106,-0.0948,0.2,0.1368,0.0526,0.4316,0.3474,-0.2422,0.3536,0.495,0.9798,0.899,0.4546,0.192,0.2122,0.4344,0.798,0.899,0.8788,1,0.8788,0.7172,0.7172,0.899,0.7778,0.394,0.3738,0.4142,0.3132,0.3334,0.3536,-0.192,-0.192,-0.0708,-0.0102,-0.293,-0.0708,0.091,0.1516,-0.3132,-0.6086,-1,-1,1,-1,-1,-0.4,-0.8334,-1,-0.2,0.2,0.152,0.184,0.216,0.104,0.376,0.84,1,0.136,0.456,0.328,0.792,0.584,0.168,0.184,0.184,-0.024,0.44,0.536,0.52,0.536,0.52,0.28,0.008,0.232,0.12,0.088,-0.312,-0.136,0.072,-0.088,'14'
-0.3496,0.0158,0.4276,0.5372,0.961,0.8588,0.6444,0.7442,0.732,1,0.8562,0.3764,0.257,0.2448,0.1912,0.1912,0.2716,0.581,0.5468,0.5128,0.313,0.2326,0.067,0.0134,0.1668,0.4836,0.5348,0.3008,0.218,-0.0646,-0.1304,-0.1036,-0.341,0.0176,0.4546,0.6186,1,0.8762,0.5556,0.851,0.8156,0.7526,0.553,0.3232,0.1338,0.053,0.043,0.0834,0.106,0.3208,0.5278,0.6314,0.2652,0.1314,0.0152,-0.0556,0.0378,0.3258,0.3384,0.3232,0.1844,0.0378,-0.2576,-0.207,-0.322,0.0368,0.5198,0.7712,1,0.743,0.6186,0.8984,0.6978,0.6554,0.1102,-0.0424,-0.0848,-0.2288,-0.2288,-0.1214,-0.0226,0.0536,0.2966,0.404,0.3474,-0.192,-0.1694,-0.1808,-0.243,0.031,0.2118,0.226,0.082,-0.3108,-0.3644,-0.387,-0.3354,-0.0458,0.5274,0.878,1,0.686,0.8324,0.8994,0.3598,0.128,-0.125,-0.5458,-0.5122,-0.5274,-0.442,-0.4298,-0.3902,-0.2958,0.0824,0.0274,-0.061,-0.378,-0.5854,-0.5244,-0.628,-0.442,-0.186,-0.0946,-0.3536,-0.6006,-0.8568,-0.8506,-0.2124,0.043,0.563,0.9876,1,0.6862,0.9292,0.8124,0.0584,-0.2892,-0.5016,-0.677,-0.6246,-0.597,-0.5846,-0.7046,-0.6524,-0.5108,-0.2584,-0.197,-0.5324,-0.6646,-0.7908,-0.7138,-0.7076,-0.6,-0.5446,-0.5416,-0.56,-0.8954,-0.843,-0.7508,-0.2176,0.1564,0.5578,1,0.9218,0.5782,0.7654,0.4456,-0.3572,-0.619,-0.881,-0.721,-0.7278,-0.6632,-0.6224,-0.6666,-0.7414,-0.653,-0.619,-0.7278,-0.6904,-0.7552,-0.7142,-0.704,-0.6938,-0.6632,-0.636,-0.7278,-0.7926,-0.9048,-0.8776,-0.8776,-0.2682,0.0616,0.587,1,0.8696,0.6014,0.7608,0.2718,-0.6486,-0.8334,-0.826,-0.7246,-0.6666,-0.7138,-0.6558,-0.75,-0.7644,-0.692,-0.663,-0.7392,-0.7246,-0.6522,-0.6776,-0.7464,-0.616,-0.7464,-0.895,-0.8732,-0.8298,-0.826,-0.721,-0.8044,-0.2882,-0.017,0.356,0.5254,0.7288,0.7288,0.661,0.695,0.9322,1,0.7966,0.4576,0.2882,0.2542,0.356,0.2542,0.4238,0.5932,0.695,0.661,0.356,0.1186,0.2204,0.1864,0.2882,0.5254,0.5594,0.4916,0.2204,0.1186,-0.0848,0.017,-0.4694,-0.102,0.3062,0.5918,0.8368,0.796,0.5918,0.6326,0.7552,1,0.8368,0.347,0.2244,0.1428,0.1836,0.1836,0.3878,0.7142,0.7552,0.4694,0.347,0.1428,0.1428,0.102,0.2244,0.5918,0.6734,0.4694,0.2244,-0.0204,-0.0612,-0.102,-0.3506,-0.065,0.5324,0.8182,1,0.6104,0.7662,0.948,0.5064,0.3766,-0.065,-0.2728,-0.4286,-0.4026,-0.3246,-0.3506,-0.2468,-0.2988,0.2468,0.3766,-0.065,-0.2988,-0.4806,-0.3506,-0.3506,-0.2728,0.1688,0.065,-0.8442,-0.4026,-0.6104,-0.6624,-1,-1,-1,-1,-1,-1,-1,-1,-0.9748,-0.9792,-0.5394,0.404,0.9022,0.9472,0.7922,0.558,0.3414,0.0204,-0.1798,-0.3942,-0.4932,-0.5568,-0.8284,-0.9418,-0.9626,-0.9374,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9736,-0.9748,-0.4328,0.6804,0.9538,0.7998,0.6152,0.3574,0.163,-0.1394,-0.3838,-0.5904,-0.6604,-0.7158,-0.8832,-0.9504,-0.9504,-0.9386,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.88,-0.9734,-0.85,-0.658,-0.7528,-0.7382,-0.7874,-0.8056,-0.811,-0.8146,-0.84,-0.8674,-0.8856,-0.8764,-0.93,-0.8334,-0.8534,-0.85,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,1,1,1,-0.5714,-0.9714,-0.8286,-0.6858,-0.6858,-0.6858,-0.9714,-0.9142,-1,-0.7714,-0.6286,-0.8572,-0.9142,-0.6858,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.172,-0.1774,-0.1782,-0.1964,-0.2098,-0.1988,-0.1458,-0.0916,-0.0998,-0.2036,-0.4934,0.2942,-0.2928,0.2126,0.6836,0.7584,0.8676,1,0.3076,0.6538,0.923,1,1,0.9616,0.6154,0.6154,0.577,0.8462,0.577,0.4616,0.577,0.577,0.5,0.2692,0.1924,0.423,0.2308,0.2308,0.1924,0.1154,0.077,-0.0384,0.077,0.2308,0.1924,0.2308,0.2692,-0.2308,-0.2692,-0.3846,0.1478,0.513,1,0.9826,0.913,0.9304,0.3218,0.4608,0.6348,0.9478,0.4956,0.3392,0.287,0.6174,0.2348,0.1304,0.2174,0.4434,0.3914,0.2348,0.0434,-0.0956,-0.1652,-0.1478,-0.0086,0.1304,0.113,0.113,0.0782,-0.4608,-0.4956,-0.5652,0.0714,0.5358,0.7142,0.8392,1,1,0.4464,0.4464,0.625,0.9108,0.625,0.3392,0.6072,0.7322,0.4464,0.1072,0.2322,0.375,0.3214,0.1072,0.0714,-0.0358,-0.0358,-0.1964,-0.1072,-0.1072,-0.3036,0,0.125,-0.6072,-0.5178,-0.6964,0.367,-1,-1,1,-0.8,-1,-1,-0.8334,-1,-0.0666,0.2666,0.5,1,0.7666,0.6,0.2666,0.7334,0.4,0.5334,0.5666,0.5666,0.6334,0.5,0.1334,0.2666,0.5,0.4666,0.4,0.1666,0.3666,0.4666,0.4666,0.4334,0.3,0.4334,0.4,0.1666,0.2334,0.1334,0.1334,-0.5334,'15'
-0.313,0.1174,0.3196,0.4718,0.9196,0.9804,0.6218,0.5978,0.8044,0.837,1,0.8108,0.5434,0.3956,0.4304,0.4608,0.4544,0.6782,0.6478,0.6348,0.4456,0.2652,0.1108,0.1434,0.0218,0.0174,0.2956,0.4586,0.624,0.476,0.3696,0.2674,-0.3422,0.0662,0.3334,0.4768,0.9558,1,0.5718,0.6226,0.8654,0.7174,0.777,0.457,0.3642,0.2914,0.2318,0.2716,0.2826,0.4062,0.671,0.7196,0.3466,0.095,0.0684,-0.0242,-0.128,0.086,0.1346,0.2406,0.4702,0.5982,0.5188,0.3156,-0.326,0.056,0.4258,0.5158,1,0.944,0.601,0.8564,0.91,0.652,0.5816,0.1898,0.0194,0.0486,0.1144,0.073,0.1362,0.3358,0.4502,0.4696,0.4282,-0.0024,-0.1752,-0.1532,-0.2238,-0.1704,-0.0876,0.0024,0.2604,0.4648,0.5548,0.438,-0.3352,0.01,0.519,0.802,1,0.669,0.7284,0.9264,0.6746,0.4682,0.041,-0.1966,-0.2192,-0.3012,-0.2872,-0.1684,-0.1654,-0.0042,0.2362,0.2814,0.2674,-0.0976,-0.3494,-0.4116,-0.488,-0.4088,-0.3154,-0.3182,-0.0496,0.0862,0.4314,0.5332,-0.415,-0.0222,0.4712,0.997,1,0.486,0.8906,0.7488,0.2348,-0.1728,-0.3708,-0.4298,-0.672,-0.5864,-0.5982,-0.5214,-0.424,-0.3884,-0.1256,0.0074,-0.0576,-0.483,-0.7282,-0.7224,-0.7636,-0.6544,-0.672,-0.7252,-0.4652,-0.2998,0.164,0.3264,-0.3738,0.1314,0.542,1,0.8936,0.737,0.9144,0.5126,-0.1876,-0.3206,-0.5982,-0.6602,-0.7134,-0.7754,-0.681,-0.6248,-0.6278,-0.6484,-0.4446,-0.3116,-0.3412,-0.6042,-0.9114,-0.9734,-0.9528,-0.8258,-0.8848,-0.8996,-0.7548,-0.6574,-0.3914,0.0872,-0.3828,0.2414,0.6552,1,0.7586,0.8104,0.8206,0.4242,-0.2758,-0.5758,-0.6586,-0.6758,-0.762,-0.7552,-0.6448,-0.7482,-0.7794,-0.7656,-0.5862,-0.4656,-0.538,-0.7138,-0.9656,-0.8104,-0.7104,-0.9068,-0.9034,-0.9276,-0.8276,-0.7552,-0.6068,-0.269,-0.48,-0.08,0.12,0.4,0.76,0.68,0.6,0.6,0.68,1,1,0.64,0.56,0.32,0.32,0.44,0.44,0.88,0.96,0.6,0.32,0.16,0.12,0,-0.12,0.12,0.16,0.48,0.56,0.2,0.28,0.28,-0.4814,-0.074,0.1482,0.3704,0.7408,0.7778,0.5186,0.4814,0.5556,0.8888,1,0.7408,0.2962,0.2962,0.2962,0.2592,0.3704,0.5556,0.5186,0.3704,0.2592,0.1112,-0.037,-0.074,-0.1852,-0.074,0.037,0.2962,0.3704,0,0.1112,0.1112,-0.3076,0.077,0.4038,0.5192,1,1,0.5962,0.7884,0.923,0.7308,0.7116,0.3076,0.173,0.173,0.1924,0.2692,0.25,0.3462,0.6154,0.5,0.423,0.0384,0.0384,0.0384,-0.0962,0,-0.0192,0.0192,0.5192,0.5,0.577,0.3846,-1,-1,-1,-1,-1,-1,-1,-0.985,-0.9824,-0.9376,-0.4562,0.2516,0.7602,0.9506,0.8754,0.5082,0.28,0.2522,0.0606,-0.154,-0.3118,-0.5212,-0.8686,-0.9472,-0.9722,-0.975,-0.9756,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9608,-0.9858,-0.9544,-0.222,0.6412,0.9568,0.9344,0.7262,0.2992,0.0196,-0.0816,-0.2774,-0.4534,-0.5818,-0.7328,-0.9192,-0.9568,-0.9752,-0.9786,-0.9778,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5888,-0.96,-0.89,-0.6968,-0.634,-0.798,-0.74,-0.7492,-0.811,-0.7892,-0.8564,-0.8896,-0.9122,-0.905,-0.9214,-0.9322,-0.9022,-0.8622,-0.929,-0.9022,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,0.0572,1,1,1,-0.8286,-0.8286,-0.7714,-0.8858,-0.8,-0.7714,-0.8,-0.8572,-0.8858,-0.4572,-0.4858,-0.8,-0.9142,-1,-0.8286,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-0.9992,-0.938,-0.7508,-0.5466,0.2824,-0.1776,0.2658,0.595,0.799,0.8364,1,0.1618,0.5148,0.8824,0.9706,0.7352,1,0.7352,0.6618,0.7648,0.7942,0.6618,0.3236,0.3676,0.4706,0.6764,0.5442,0.5294,0.5588,0.603,0.5442,0.6324,0.5736,0.2648,0.1764,0.0294,-0.0442,0.1912,0.1176,-0.0588,-0.2648,-0.4118,-0.4852,0.0484,0.2904,0.8388,0.8226,0.871,1,0.7258,0.4838,0.5968,0.9678,0.3226,0.1452,0.0646,0.1452,0.7096,0.2904,0.1936,0.371,0.5806,0.4032,0.5646,0.5484,0.0162,-0.242,-0.2096,-0.0162,0.0646,-0.0484,-0.3388,-0.5484,-0.5484,-0.6452,0.088,0.456,0.904,0.872,0.744,1,0.744,0.504,0.712,0.984,0.52,0.36,0.248,0.376,0.728,0.584,0.52,0.648,0.744,0.68,0.744,0.552,0.168,-0.072,-0.2,-0.152,0.104,0.168,-0.12,-0.712,-0.76,-0.792,0.075,-1,-1,1,-1,-1,-1,-0.8,-1,0.0968,0.699,0.7634,0.957,0.914,0.613,1,0.914,0.7204,0.6344,0.7204,0.5054,0.613,0.5914,0.5484,0.2474,0.5054,0.5484,0.5054,0.2474,0.5484,0.5914,0.1828,0.0752,0.1828,0.2904,0.742,0.5698,0.0752,0.2258,0.0752,-0.2044,'15'
-0.1468,0.484,0.4604,0.3592,0.2884,0.0118,-0.0894,-0.312,-0.4132,-0.349,-0.3694,-0.2816,-0.4098,-0.0792,-0.1568,0.1434,0.1332,0.4198,0.7032,1,0.9292,0.8078,0.7066,0.9224,0.7976,0.7672,0.6188,0.548,0.4064,0.5244,0.5682,0.8078,-0.2168,0.3162,0.253,0.3734,0.238,-0.0722,-0.235,-0.1144,-0.4126,-0.3494,-0.3404,-0.3042,-0.1234,-0.1296,0.012,-0.024,0.2048,0.2922,0.518,0.8132,1,0.9216,0.741,0.8072,0.8404,0.8042,0.756,0.5512,0.5482,0.5392,0.6144,0.7228,-0.2114,0.2686,0.2368,0.3958,0.1414,-0.151,-0.2814,-0.3164,-0.4912,-0.6026,-0.4244,-0.4436,-0.38,-0.1956,-0.1828,0.0048,0.0016,0.221,0.4754,0.647,0.9268,1,0.7742,0.7392,0.8028,0.822,0.7678,0.6152,0.6312,0.5548,0.6534,0.7616,-0.2802,0.1682,0.4178,0.537,-0.009,-0.226,-0.537,-0.6238,-0.5624,-0.5298,-0.5914,-0.642,-0.396,-0.3164,-0.2694,-0.2766,-0.0814,0.1464,0.3346,0.736,0.8952,1,0.8734,0.7866,0.8842,0.9746,0.9132,0.6962,0.6782,0.6166,0.7106,0.8084,-0.294,0.061,0.5232,0.552,-0.344,-0.6094,-0.7204,-0.5268,-0.6344,-0.6094,-0.7168,-0.7348,-0.595,-0.5484,-0.509,-0.3046,-0.1828,-0.0502,0.2974,0.62,0.9068,0.9892,0.8422,0.7348,0.871,1,0.8746,0.6236,0.613,0.5162,0.6058,0.7026,-0.2328,0.088,0.7456,0.683,-0.3972,-0.6126,-0.5186,-0.413,-0.8278,-0.863,-0.9452,-0.777,-0.7926,-0.7222,-0.636,-0.3346,-0.2798,-0.135,0.135,0.4716,0.8552,1,0.8786,0.6556,0.816,0.8904,0.7378,0.4246,0.4404,0.2486,0.315,0.4638,-0.0674,0.4182,1,0.7932,-0.2548,-0.4424,-0.5384,-0.5674,-0.8798,-0.9326,-0.8174,-0.6634,-0.7836,-0.6394,-0.4134,-0.399,-0.6538,-0.5384,-0.1154,0.1874,0.8366,0.9856,0.6972,0.5144,0.452,0.7644,0.5866,0.0962,0.202,-0.0288,-0.0528,0.0914,0.1764,1,1,0.5882,0.2942,0.353,-0.0588,-0.2352,-0.7648,-0.4706,-0.1764,-0.1176,-0.353,-0.1176,0.0588,-0.0588,0.2942,-0.1764,0.4118,0.647,0.7058,0.7648,0.647,0.9412,0.8236,0.5882,0.4118,0.4118,0.2942,0.2942,0.4706,0.5882,0.1044,0.582,0.582,0.4626,0.4328,0.194,0.1044,0.0448,-0.015,0.0448,-0.0448,0.0448,-0.0448,0.2238,0.1642,0.3732,0.3432,0.6418,0.6418,1,0.9702,0.791,0.791,0.8806,0.8508,0.7612,0.7612,0.7014,0.7014,0.6418,0.6418,0.8508,-0.2682,0.0732,0.561,0.5366,-0.4634,-0.7074,-0.683,-0.5122,-0.683,-0.7804,-0.7074,-0.6342,-0.683,-0.5366,-0.561,-0.2926,-0.1952,-0.0488,0.1952,0.3902,0.9756,1,0.7074,0.6586,0.683,0.9024,0.6586,0.4634,0.561,0.3658,0.317,0.5122,-1,-1,-1,-1,-1,-0.9632,-0.9498,-0.857,-0.7004,-0.8956,-0.8782,0.6908,0.7604,0.656,0.6676,0.7508,0.8126,0.7218,0.6368,0.5092,0.283,-0.0938,-0.5864,-0.8086,-0.9362,-0.9458,-0.94,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9694,-0.9668,-0.8596,-0.6662,-0.8116,-0.885,0.3096,0.9038,0.9168,0.7356,0.9168,0.7778,0.5634,0.1848,-0.1224,-0.4264,-0.6102,-0.8312,-0.876,-0.9078,-0.95,-0.9572,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9324,-0.9268,-0.81,-0.22,0.2432,-0.0534,-0.565,-0.2,-0.0926,-0.2426,-0.24,-0.28,-0.32,-0.4556,-0.5778,-0.7424,-0.7468,-0.7168,-0.3668,-0.07,-0.63,-0.6934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4,0.1428,1,1,-0.0858,0.6,1,1,-1,-1,-1,-1,-0.8572,-0.8286,-0.4286,-0.2858,0.1714,-0.3428,-0.3714,0.1428,0.5714,-0.6572,-1,-1,-1,-1,-1,-1,0.1694,0.184,0.2006,0.2212,0.2472,0.272,0.2928,0.29,0.2196,-0.0856,0.6698,0.6728,0.6836,0.6864,0.7012,0.7138,0.7232,0.7788,0.8394,0.8596,-0.64,-0.0118,-0.8838,-0.7032,0.3348,0.8948,0.965,1,-0.2934,0.3502,0.3124,0.2366,0.1608,0.3564,0.5646,0.7602,1,0.6782,0.754,0.8548,0.6908,0.7034,0.4132,0.6908,0.6214,0.552,0.836,0.8548,0.634,0.5206,0.3564,0.3438,0.4258,0.4006,0.47,0.3438,0.205,0.2366,0.1356,-0.041,-0.5548,0.006,-0.0976,-0.1524,-0.0914,-0.1402,0.1036,0.2196,0.5426,0.7196,0.5914,0.7804,0.756,0.494,0.6036,0.7378,0.7318,0.5854,0.9512,1,0.4512,0.311,0.1586,0.2134,-0.0914,0.006,0.1402,0.128,0.1158,-0.1098,0,-0.1158,-0.2106,-0.0066,0.0066,-0.0986,-0.2236,-0.0132,0.0132,0.125,0.0526,0.6644,0.6578,1,0.8092,0.4934,0.454,0.5394,0.6644,0.4408,0.5394,0.6184,0.125,0.1776,0.5328,0.4606,-0.1052,-0.2302,0.1908,0.1974,0.25,-0.2434,-0.1052,-0.4736,-0.1024,-1,-1,1,-1,-1,-0.2,-0.3,-1,-0.3166,-0.2166,0.0166,-0.0666,-0.0166,0.0666,0.1166,0.0834,-0.0334,0.3,0.6834,0.6666,0.7666,0.8666,0.5334,0.8666,0.8,0.8166,0.9666,0.9666,1,0.75,0.5166,0.55,0.1166,0.05,0.2334,0.3334,0.1834,0.2834,0.2334,-0.1,'16'
-0.1508,0.5702,0.5772,0.3068,0.3102,-0.0294,0.0226,-0.2928,-0.2616,-0.3692,-0.2616,-0.234,-0.1474,-0.085,0.019,0.137,0.2444,0.3934,0.6672,0.7782,1,0.9168,0.7678,0.785,0.702,0.591,0.4524,0.3518,0.5182,0.5078,0.6084,0.6846,-0.1738,0.3748,0.3366,0.3716,0.2696,0.0654,-0.0846,-0.276,-0.3556,-0.228,-0.4258,-0.3876,-0.2186,-0.1164,0.008,0.0718,0.2122,0.4036,0.6332,0.8532,1,0.965,0.8374,0.8468,0.882,0.8532,0.78,0.5502,0.5726,0.6108,0.665,0.9106,-0.2542,0.2012,0.2044,0.3666,0.0796,-0.1046,-0.4446,-0.482,-0.4696,-0.6162,-0.5414,-0.5164,-0.454,-0.273,-0.2918,-0.0796,-0.0046,0.1326,0.351,0.6412,0.9812,1,0.7224,0.7598,0.8034,0.7878,0.6756,0.4134,0.504,0.5226,0.557,0.6068,-0.2914,0.1064,0.3264,0.4172,-0.1624,-0.2496,-0.672,-0.6126,-0.5846,-0.616,-0.7382,-0.7348,-0.459,-0.424,-0.452,-0.253,-0.1064,0.0786,0.2356,0.5428,0.8324,1,0.8814,0.7138,0.7802,0.815,0.7102,0.4136,0.473,0.431,0.4032,0.6266,-0.2156,0.1664,0.5976,0.5894,-0.4866,-0.6756,-0.6714,-0.8234,-0.9712,-0.8358,-0.6468,-0.7248,-0.844,-0.6016,-0.5728,-0.458,-0.3264,-0.1048,0.1664,0.4456,0.7782,1,0.9096,0.7494,0.7002,0.7946,0.7412,0.5196,0.4004,0.306,0.3922,0.536,-0.1204,0.2732,0.8842,0.7362,-0.2962,-0.5926,-0.8334,-0.8564,-0.9538,-0.7038,-0.824,-0.7408,-0.6436,-0.6574,-0.6158,-0.6436,-0.3612,-0.25,-0.051,0.2916,0.8194,1,0.926,0.7268,0.787,0.8982,0.7824,0.3982,0.301,0.2546,0.0556,0.3426,-0.054,0.491,1,0.712,-0.2082,-0.784,-0.707,-0.7378,-0.8818,-0.8046,-0.9074,-0.7532,-0.6864,-0.7326,-0.712,-0.5218,-0.3882,-0.3676,-0.239,0.234,0.9126,1,0.707,0.5938,0.4962,0.491,0.3728,-0.162,-0.1312,-0.1106,0.018,0.0796,0.1666,1,1,0.3334,0.2778,0.0556,-0.1112,-0.2778,-0.1112,-0.5556,-0.2778,-0.0556,-0.1112,-0.0556,-0.0556,0.2778,0.2778,0,0.7778,0.8334,0.8888,0.7778,0.6666,0.7778,0.7222,0.3334,0.3888,0.1666,0.6666,0.8888,0.6666,1,-0.0638,0.7446,0.7872,0.4042,0.4468,0.0638,0.1064,-0.149,-0.0638,-0.1914,-0.0638,-0.1064,0.0638,0.0212,0.1914,0.1914,0.4468,0.4894,0.8724,1,0.8724,0.9574,0.9148,0.9574,0.6596,0.7022,0.6596,0.4894,0.4894,0.4468,0.3618,0.7872,-0.2894,0.1052,0.4736,0.5264,-0.421,-0.6578,-0.6578,-0.6842,-0.8158,-0.6842,-0.5,-0.5526,-0.7632,-0.3948,-0.3684,-0.3422,-0.2106,-0.1578,0.2894,0.5526,0.7106,1,0.9736,0.9474,0.8684,0.8948,0.6842,0.4736,0.5526,0.3684,0.4736,0.6842,-1,-1,-1,-1,-1,-1,-0.9694,-0.9744,-0.8032,-0.9022,-0.9022,0.697,0.598,0.3524,0.2388,0.1998,0.1326,0.041,0.036,-0.0984,-0.2438,-0.3672,-0.6786,-0.857,-0.9376,-0.9634,-0.9706,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.978,-0.9796,-0.5748,-0.742,-0.8406,-0.0086,0.9948,0.7484,0.4758,0.29,0.0736,-0.22,-0.4064,-0.5476,-0.648,-0.7242,-0.861,-0.9086,-0.9324,-0.948,-0.967,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9134,-0.9734,-0.65,-0.07,0.03,-0.71,-0.3226,-0.1976,-0.29,-0.2276,-0.3,-0.465,-0.735,-0.8276,-0.8576,-0.9756,-0.93,-0.6434,-0.11,-0.1768,-0.7468,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,0.2858,0.4,1,1,-0.9142,-0.8858,-0.9428,-0.8572,-0.6572,-0.6572,-0.8286,-0.5714,-0.3714,0.3142,0,-0.7714,0,-0.1142,-1,-1,-1,-1,-1,-1,0.2104,0.2258,0.2358,0.2454,0.2564,0.2776,0.2848,0.2788,0.1784,-0.202,0.4942,0.5346,0.5688,0.5736,0.5912,0.5986,0.6216,0.6786,0.7504,0.8118,-0.6266,-0.0706,-0.8386,-0.6844,-0.026,0.4012,0.9896,1,-0.1954,-0.0652,0.0268,0.0498,0.1264,0.1188,0.6476,1,0.954,0.8544,0.839,0.8008,0.7394,0.8468,0.6016,0.6092,0.5556,0.3716,0.479,0.5556,0.6934,0.6782,0.3026,0.3486,0.3564,0.2874,0.3794,0.3794,0.0958,0.2184,0.1188,0.0574,-0.4908,-0.3874,-0.1882,-0.1882,-0.2472,0.0036,0.0406,0.3948,0.8598,0.9262,0.7786,0.7934,0.6236,0.3726,0.2988,0.594,0.6088,0.203,0.476,1,0.4982,0.2324,0.4464,0.3874,0.0848,0.1144,0.4318,0.321,0.166,0.3726,0.0774,-0.2916,-0.449,0.0792,0.117,0.0642,-0.034,-0.3056,-0.034,0.1018,0.366,0.4868,1,0.9396,0.7284,0.5246,0.449,0.668,0.6076,0.5774,0.5924,0.9622,0.5774,0.366,0.3584,0.2302,0.2452,0.215,0.5246,0.449,0.3208,0.5018,0.3434,-0.2452,0.1706,-1,-1,1,-1,-1,-0.2,-0.4,-1,-0.6724,-0.2586,-0.2758,-0.4656,-0.4482,-0.1896,-0.2068,-0.1552,-0.3276,0.5862,0.862,0.7758,0.8794,0.7414,0.5518,0.7586,0.6896,0.4828,0.6724,1,0.8276,0.362,0.0344,0.1724,0.1034,0.2586,0.4138,0.2932,0.3794,0.3794,0.7414,0.5518,'16'
-0.1824,0.4932,0.4864,0.3278,0.2972,-0.0202,-0.054,-0.3142,-0.3412,-0.2364,-0.2702,-0.2602,-0.294,0.071,0.0472,0.4628,0.4898,0.9832,1,0.9392,0.9392,0.8582,0.8514,0.5844,0.5844,0.4628,0.4764,0.4898,0.5472,0.7264,0.7972,0.7838,-0.2314,0.3448,0.2914,0.5244,0.4016,0.0582,-0.096,-0.178,-0.389,-0.2692,-0.2818,-0.2094,0.0678,0.1212,0.3544,0.5056,1,0.9528,0.9968,0.9528,0.978,0.8582,0.326,0.2188,0.1686,0.1182,0.156,0.2378,0.4708,0.5528,0.7858,0.77,-0.1248,0.419,0.81,1,0.6722,0.0392,-0.1546,-0.3036,-0.2924,-0.1396,-0.0056,0.1546,0.4228,0.7094,0.6164,0.8696,0.8286,0.7468,0.8808,0.9516,0.8548,0.3408,-0.0018,-0.013,-0.1174,-0.0652,0.0316,0.08,0.3334,0.501,0.7952,0.7468,-0.251,0.138,0.9666,1,0.205,-0.0418,0.0586,-0.021,0.0042,0.2134,0.4518,0.339,0.4854,0.205,-0.046,-0.0712,-0.0502,0.1256,0.3264,0.502,0.3934,-0.2218,-0.59,-0.523,-0.5188,-0.5524,-0.6402,-0.6862,-0.3472,-0.2218,0.2426,0.3808,-0.1562,0.296,1,0.8602,0.408,0.296,0.1468,0.3006,0.5338,0.3426,0.2728,-0.2728,-0.5104,-0.4638,-0.5572,-0.5152,-0.4312,-0.3706,-0.1328,-0.0722,-0.2448,-0.6644,-0.9114,-0.8882,-0.7716,-0.7902,-0.669,-0.7808,-0.8042,-0.8088,-0.5898,-0.4266,0.0268,0.4014,1,0.7956,0.5962,0.197,0.3772,0.9952,0.9318,-0.1728,-0.528,-0.4452,-0.3918,-0.416,-0.5766,-0.8054,-0.601,-0.5086,-0.3918,-0.348,-0.5036,-0.6642,-0.4744,-0.4258,-0.343,-0.2846,-0.4404,-0.5864,-0.4744,-0.4988,-0.601,-0.601,0.2538,0.6,0.9044,0.7792,0.582,0.0328,0.6238,1,0.7374,-0.4986,-0.4568,-0.2598,-0.2538,-0.4448,-0.2418,-0.3134,-0.2776,-0.0508,-0.2,-0.3672,-0.3492,-0.3612,-0.588,-0.1164,-0.0626,-0.3314,-0.397,-0.6896,-0.4508,-0.4568,-0.2716,-0.3374,-0.2084,0.5416,0.5416,0.2084,0.2084,-0.25,-0.2084,-0.3334,-0.2916,-0.375,-0.3334,-0.4166,-0.2916,-0.0834,0.0416,0.3334,0.4584,0.8334,1,0.6666,0.75,0.5834,0.7916,0.4166,0.5834,0.3334,0.5834,0.4166,0.6666,0.5834,0.9166,0.8334,-0.3062,0.3878,0.3878,0.1836,0.1428,-0.1836,-0.1836,-0.6326,-0.4694,-0.347,-0.4286,-0.2654,-0.2654,-0.0612,-0.0612,0.347,0.4286,0.9592,1,0.796,0.8776,0.7552,0.796,0.5918,0.5918,0.3062,0.4286,0.5102,0.5918,0.7142,0.8368,0.551,-0.05,0.225,1,1,0.3,0.225,0.25,0.125,0.35,0.35,0.65,0.5,0.525,0.125,-0.025,0.025,-0.075,0.1,0.325,0.5,0.5,-0.2,-0.525,-0.375,-0.225,-0.325,-0.325,-0.55,-0.075,0.05,0.575,0.675,-1,-1,-1,-0.975,-0.975,-0.8662,-0.8462,-0.9476,-0.96,-0.955,-0.3162,0.17,0.035,0.195,0.565,0.9588,0.59,0.0974,-0.2988,-0.51,-0.635,-0.755,-0.8688,-0.9324,-0.96,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9542,-0.966,-0.7196,-0.0676,-0.581,-0.5248,-0.666,-0.3796,0.8326,0.9006,0.8708,0.932,0.774,0.2996,-0.1518,-0.4602,-0.575,-0.689,-0.7934,-0.8852,-0.921,-0.9422,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.88,-0.96,-0.53,0.4366,0.5866,0.6432,0.4366,-0.53,-0.44,-0.19,-0.2726,-0.5426,-0.7526,-0.8576,-0.875,-0.8776,-0.89,-0.9,-0.9046,-0.93,-0.83,-0.88,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,1,1,1,-0.4286,-0.6572,1,1,1,-0.8286,-0.6286,-0.5428,-0.2572,0.3714,0.2858,-0.3714,-0.8572,-0.9714,-0.6858,-0.8,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.1444,0.1614,0.1784,0.1946,0.2358,0.2688,0.2902,0.3072,0.279,0.4024,0.3554,0.3422,0.3166,0.2946,0.2254,0.1598,0.0644,-0.199,-0.5822,-0.5606,-0.5866,-0.0588,-0.3446,0.4398,0.8972,0.9838,0.9516,1,-0.3692,-0.1258,-0.0978,-0.1378,-0.1418,-0.0538,0.014,0.1258,0.3094,0.457,0.6008,0.9282,0.8364,1,0.8124,0.6526,0.7844,0.8762,0.968,0.7326,0.5888,0.549,0.453,0.3972,0.3174,0.4012,0.7086,0.505,0.2934,0.2216,-0.0658,-0.1896,-0.5198,-0.4648,-0.403,-0.1286,-0.2076,-0.259,-0.163,-0.036,0.0668,0.2144,0.3756,0.6296,0.849,0.8628,0.8284,0.7838,0.65,0.7874,1,0.9348,0.6638,0.5162,0.482,0.5128,0.4236,0.5952,0.729,0.7222,0.5438,0.3688,0.1114,-0.0944,0.2142,0.3254,0.0516,0.0158,-0.0834,-0.0596,-0.012,0.0516,0.3016,0.6032,0.6388,0.988,1,0.9048,0.8572,1,0.9604,0.8412,0.8888,0.8016,0.6468,0.5634,0.2896,0.3294,0.1468,0.2302,0.4564,0.6508,0.5674,0.1746,-0.0874,-0.3134,0.4058,-1,-1,1,-0.8,-1,-1,0.1334,-1,0.0466,0.3024,0.4884,0.6744,1,0.3256,0.1396,0.186,0.3024,0.372,-0.0466,0.279,0.186,0.1162,0.0698,0.1162,0.0698,0.2558,0.1162,0.4652,-0.1396,0.0698,-0.1162,0.3488,0.2558,0.2094,0.186,0.1396,-0.1628,0.186,0.1396,-0.5116,'17'
-0.1122,0.5642,0.5252,0.4342,0.3594,-0.1284,-0.2878,-0.3788,-0.574,-0.5284,-0.5902,-0.5252,-0.2,-0.1642,0.044,0.0926,0.5186,0.6456,1,0.9252,0.5838,0.5024,0.4602,0.0926,0.07,0.0114,0.1024,0.1968,0.2814,0.4732,0.6682,0.535,-0.0918,0.4898,0.406,0.6734,0.4712,0.0638,-0.3188,-0.4276,-0.4152,-0.4308,-0.3126,-0.2722,0.0326,0.1912,0.437,0.8756,1,0.86,0.9036,0.773,0.661,0.0576,-0.2192,-0.266,-0.1228,-0.0886,-0.1788,-0.0234,0.1198,0.2752,0.4214,0.2256,-0.032,0.5354,0.8086,1,0.5852,0.0992,-0.578,-0.6348,-0.4504,-0.5284,-0.3652,-0.0568,0.1242,0.1242,0.1596,0.1206,0.1454,0.1596,0.2836,0.4078,0.1134,-0.1312,-0.188,-0.2978,-0.4114,-0.2624,-0.273,-0.1808,-0.0212,0.0106,0.39,0.4114,-0.1332,0.3622,0.91,1,0.3058,-0.3434,-0.546,-0.441,-0.3584,-0.1332,0.2346,0.3772,-0.0732,-0.3772,-0.4822,-0.591,-0.4784,-0.456,-0.3134,-0.2082,-0.3846,-0.4296,-0.6698,-0.7936,-0.7786,-0.865,-0.8836,-0.7336,-0.6772,-0.347,0.0206,0.137,-0.0038,0.4286,0.97,1,0.0338,-0.2932,-0.173,0.0526,0.1692,0.2782,-0.2068,-0.421,-0.5902,-0.5676,-0.624,-0.594,-0.594,-0.6128,-0.2518,-0.2444,-0.376,-0.579,-0.8572,-0.7894,-0.6954,-0.7406,-0.7858,-0.891,-0.8458,-0.8158,-0.5376,-0.4286,0.0572,0.4754,1,0.9882,-0.14,-0.3452,-0.006,0.2426,0.0178,-0.3688,-0.6646,-0.6252,-0.858,-0.7476,-0.6844,-0.7318,-0.7634,-0.5424,-0.4872,-0.5582,-0.57,-0.637,-0.8856,-0.5976,-0.5188,-0.6844,-0.72,-0.8304,-0.7238,-0.8344,-0.5306,-0.4596,0.193,0.5614,1,0.8772,-0.1184,-0.1008,0.25,0.4342,0.0132,-0.3202,-0.6492,-0.4518,-0.421,-0.6096,-0.5922,-0.6754,-0.7588,-0.6448,-0.6184,-0.4122,-0.5264,-0.5702,-0.7982,-0.5614,-0.4606,-0.5132,-0.6798,-0.8114,-0.7106,-0.6228,-0.6008,-0.6578,-0.12,0.76,0.84,0.12,-0.2,-0.28,-0.68,-0.68,-0.52,-0.68,-0.68,-0.76,-0.52,-0.36,-0.44,-0.76,-0.04,0.36,0.36,0.76,0.6,0.52,0.68,0.44,0.44,-0.36,-0.04,0.12,0.12,0.52,1,0.84,0.1186,0.661,0.695,0.4916,0.4916,0.0848,0.017,-0.1186,-0.322,-0.3898,-0.4916,-0.661,-0.017,0.017,0.1526,0.356,0.5932,0.9322,1,0.8644,0.695,0.8306,0.7966,0.5254,0.1526,0.2542,0.2542,0.1864,0.2542,0.4238,0.7628,0.6272,-0.077,0.6,0.6924,1,0.6616,-0.0462,-0.4154,-0.4154,-0.4462,-0.6924,-0.477,-0.3538,-0.1076,0.2924,0.3538,0.6616,0.6616,0.7538,0.5692,0.6616,0.2924,-0.3538,-0.1384,-0.077,-0.2,-0.1692,-0.2616,-0.0462,0.2308,-0.0462,0.2616,0.077,-1,-1,-1,-0.9576,-0.9608,-0.956,-0.8678,-0.9266,-0.92,-0.9282,-0.9282,0.4454,0.411,0.473,0.5792,0.7846,0.9234,0.6362,0.3768,0.1598,-0.0506,-0.465,-0.7226,-0.9168,-0.9526,-0.9478,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.9316,-0.837,0.404,-0.422,-0.4004,-0.3694,-0.6846,0.5504,0.7026,0.8776,0.7086,0.6438,0.6726,0.3046,0.114,-0.0396,-0.2362,-0.5696,-0.6834,-0.9064,-0.928,-0.9232,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9624,-0.9534,-0.9634,-0.1368,0.3766,0.3932,0.5166,0.04,-0.6578,-0.6934,-0.6446,-0.8068,-0.868,-0.87,-0.884,-0.914,-0.912,-0.916,-0.954,-0.96,-0.88,-0.95,-0.9034,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3142,-0.9142,1,1,-0.0286,-0.6286,1,1,1,-0.8572,-0.8,-0.2286,-0.5714,-0.5142,-0.5142,-0.8858,-1,-0.9714,-0.8286,-0.8,-0.7428,-0.9142,-0.4858,-1,-1,-1,-1,-1,-1,-1,-0.066,-0.0548,-0.0562,-0.0178,0.0036,0.0358,0.0368,0.033,-0.057,-0.0408,0.0412,0.0096,-0.0598,-0.0816,-0.132,-0.2314,-0.3868,-0.5396,-0.6634,-0.553,-0.64,0.1294,-0.7842,-0.4016,0.7806,0.753,0.681,1,-0.6124,-0.1102,-0.1586,-0.2202,-0.1806,-0.119,-0.0088,0.0396,0.2512,0.3524,0.4934,0.9384,1,1,0.9118,0.8458,0.8678,0.9824,0.8854,0.6564,0.6212,0.3744,0.3348,0.1762,0.229,0.5242,0.392,0.2644,0.1762,0.1982,0.1102,-0.3172,-0.596,-0.4164,-0.4326,-0.1306,-0.2122,-0.3878,-0.0734,0.098,0.1266,0.2326,0.3836,0.6898,1,0.9388,0.8368,0.7388,0.649,0.8244,0.8938,0.9142,0.7592,0.7306,0.4898,0.5632,0.498,0.6164,0.6326,0.6408,0.5388,0.3918,0.253,-0.0286,-0.6296,-0.1808,-0.377,-0.3028,-0.3072,-0.3464,-0.098,-0.0632,0.0326,0.3638,0.3638,0.7038,0.7734,0.743,0.7604,0.817,0.5206,0.6252,0.8692,1,0.4248,0.377,0.3856,0.2898,0.3028,0.3464,0.3638,0.5206,0.5076,0.5816,0.5032,0.0806,1,-1,-1,1,-1,-1,-1,0.0334,-1,0.2394,0.2112,0.4084,0.8874,0.9436,0.7464,0.8592,0.8028,0.7464,0.5774,1,0.9436,0.7184,0.4648,0.493,0.5212,0.7184,0.7464,0.4084,0.2958,0.4084,0.0986,0.0704,0.3522,0.5492,0.4366,0.7464,0.8028,-0.155,0.183,0.2112,-0.3522,'17'
-0.4696,-0.1552,0.1216,0.2138,0.4716,0.8176,0.9454,0.7632,0.7128,1,0.9078,0.589,0.3438,0.2662,0.283,0.239,0.283,0.522,0.6332,0.6856,0.4884,0.283,0.1762,0.1572,0.1866,0.5408,0.5556,0.2368,0.1006,-0.0398,-0.1278,-0.1216,-0.4834,-0.1984,0.1012,0.1446,0.378,0.8286,0.9194,0.5764,0.8326,1,0.8286,0.6012,0.3904,0.2934,0.3306,0.283,0.3016,0.5,0.7004,0.7604,0.4174,0.2852,0.2024,0.2232,0.3224,0.5702,0.4918,0.2954,0.1158,0.0082,-0.0744,-0.1508,-0.4676,-0.194,0.1466,0.1574,0.3578,0.8858,0.89,0.61,0.9634,1,0.9698,0.8362,0.5108,0.4376,0.362,0.4354,0.5538,0.7802,0.8966,0.5712,0.3426,0.1982,0.1962,0.2134,0.375,0.5732,0.5948,0.3362,0.138,-0.056,-0.1358,-0.1422,-0.4856,-0.238,0.1322,0.1778,0.6274,0.8918,0.8028,0.7572,0.762,0.9038,1,0.9592,0.6106,0.5216,0.5986,0.7332,0.7356,0.6442,0.3846,0.101,-0.077,-0.1514,-0.137,-0.1948,0.0024,0.2524,0.2812,0.2284,0.0288,-0.2404,-0.3534,-0.3366,-0.5146,-0.1112,0.1082,0.2192,0.9094,0.9416,0.8508,0.7778,0.5848,0.7924,0.9298,1,0.8158,0.766,0.8626,0.965,0.6316,0.1198,-0.1286,-0.1696,-0.5088,-0.459,-0.5644,-0.5264,-0.4736,-0.304,-0.0906,0.193,0.1258,-0.307,-0.6112,-0.7192,-0.41,-0.0468,0.1892,0.416,0.9122,0.8396,0.7126,0.5704,0.295,0.5128,0.9516,1,0.873,0.8548,0.7126,0.5068,-0.053,-0.3252,-0.5854,-0.649,-0.6248,-0.6944,-0.773,-0.758,-0.6822,-0.6612,-0.7308,-0.4674,-0.1982,-0.2738,-0.7488,-0.9152,-0.1952,0.0854,0.2724,0.2236,0.7764,0.7926,0.3496,0.0976,-0.122,-0.1626,0.6098,0.9268,1,0.8902,0.6056,-0.0244,-0.4674,-0.5122,-0.565,-0.8008,-0.6504,-0.6544,-0.748,-0.7682,-0.6422,-0.7318,-0.7032,-0.8414,-0.5488,-0.4066,-0.5894,-0.7032,-0.628,-0.2094,0.0232,0.3024,0.3954,0.814,0.628,0.9534,1,1,0.814,0.814,0.3488,0.0232,0.1628,0.0232,0.2558,0.3954,0.4884,0.4884,0.3488,0.2094,-0.3954,-0.1162,-0.2094,0.3488,0.4418,-0.0698,-0.1628,-0.4418,-0.5348,-0.7674,-0.6326,-0.2244,0.102,0.2244,0.347,0.8368,1,0.5102,0.7552,1,0.7552,0.6326,0.3878,0.2654,0.1836,0.2244,0.3062,0.4286,0.5918,0.7142,0.2654,0.1836,0.1428,-0.0204,0.102,0.4694,0.3878,0.102,-0.2244,-0.102,-0.1836,-0.3878,-0.3882,-0.153,0.1294,0.4118,0.8118,0.7412,0.7176,0.553,0.3648,0.5764,0.9294,1,0.8118,0.8352,0.7176,0.6942,0.2,-0.153,-0.3648,-0.3176,-0.5058,-0.647,-0.6236,-0.6,-0.3882,-0.4352,-0.3648,0.0352,-0.0588,-0.0588,-0.5294,-0.647,-1,-1,-1,-1,-1,-1,-1,-1,-0.9724,-0.9738,-0.4796,0.452,0.9278,0.9566,0.9132,0.7516,0.636,0.255,0.0906,-0.1814,-0.41,-0.7228,-0.8594,-0.9304,-0.958,-0.958,-0.9684,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.99,-0.99,-0.5246,0.4188,0.9692,0.9546,0.781,0.6028,0.2194,-0.1386,-0.4408,-0.6226,-0.7954,-0.9126,-0.9632,-0.9726,-0.9768,-0.977,-0.9808,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.9668,-0.72,-0.6292,-0.6164,-0.6238,-0.631,-0.582,-0.7038,-0.5782,-0.7056,-0.8134,-0.8718,-0.9234,-0.89,-0.8268,-0.74,-0.76,-0.89,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,-1,-1,-1,-0.8,-0.5714,-0.8286,-0.5714,-0.4572,-0.6572,-0.6286,-0.6858,-0.8858,-0.8858,-0.8858,-0.4286,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.353,-0.3604,-0.3338,-0.3124,-0.2722,-0.2696,-0.2876,-0.3222,-0.5352,-1,-0.4666,0.3412,-0.3998,-0.168,0.3074,0.5356,0.818,1,0.1272,0.3818,0.8182,0.9272,0.9636,1,0.8182,0.7818,0.9272,0.9272,0.9272,0.709,0.7454,0.7818,0.709,0.2364,0.4546,0.3454,0.709,0.8546,0.8182,0.6728,0.6728,0.709,0.491,0.309,0.1272,0.0546,-0.0182,0.091,0.0546,-0.1272,0.0894,0.3984,0.5448,1,0.9024,0.8536,0.626,0.3496,0.6422,0.7074,0.6422,0.4308,0.561,0.6098,0.561,0.2032,0.0732,0.0732,0.6098,0.626,0.691,0.5772,0.3496,0.4308,0.2032,-0.1382,-0.2032,-0.2032,-0.2846,-0.2032,-0.2032,-0.3658,-0.027,0.419,0.7702,1,0.8514,0.973,0.6892,0.473,0.5946,0.7972,0.7972,0.446,0.4324,0.6756,0.4054,0.2432,0.1892,0.1352,0.7298,0.8784,0.6892,0.6622,0.3648,0.419,0.2028,-0.1216,-0.0946,-0.1622,-0.2028,-0.054,-0.1622,-0.4864,0.1524,-1,-1,1,-0.8,-1,-1,-0.8334,-1,-0.0694,-0.0416,-0.0138,0.3612,0.25,0.4584,0.7638,0.8888,1,0.3612,0.3056,0.2222,0.3334,0.3334,0.375,0.375,0.125,-0.1666,0.25,0.1806,0.1944,0.0694,0.0972,0.1388,0.0972,-0.0138,-0.0834,-0.0972,0,0.0556,-0.1944,-0.375,'18'
-0.4028,-0.0982,0.1926,0.2416,0.5186,0.8506,0.9764,0.7072,0.8094,1,0.892,0.7584,0.5128,0.44,0.3792,0.391,0.3792,0.5226,0.7152,0.7956,0.717,0.5618,0.389,0.338,0.4224,0.666,0.6268,0.446,0.2946,0.1178,-0.0176,-0.0688,-0.446,-0.1184,0.1132,0.1934,0.5314,0.6202,0.8032,0.6358,0.5888,1,0.9548,0.46,0.3642,0.4268,0.3014,0.2526,0.317,0.4896,0.5506,0.7804,0.737,0.331,0.223,0.298,0.3868,0.4128,0.5384,0.3816,0.3014,-0.0278,-0.0574,-0.0888,-0.3978,-0.0364,0.1752,0.2718,0.6532,0.6368,0.8558,0.7226,0.697,0.9982,1,0.6424,0.5328,0.4726,0.4544,0.48,0.562,0.7154,0.8576,0.626,0.4452,0.2738,0.2226,0.2554,0.3832,0.4708,0.4344,0.427,0.2518,0.1278,-0.0164,-0.2226,-0.4074,-0.0798,0.175,0.2416,0.5976,0.814,0.9292,0.6482,0.64,0.8666,0.9454,1,0.6644,0.6098,0.6906,0.8624,0.8524,0.4378,0.3306,0.1466,0.0496,-0.084,-0.088,-0.094,-0.0294,0.1486,0.2376,0.4298,0.4438,0.1142,-0.1526,-0.1324,-0.4218,-0.1814,0.1996,0.474,0.635,0.9546,0.8004,0.5646,0.5804,0.8572,0.9796,1,0.8934,0.8956,0.8912,0.6236,0.2108,-0.0612,-0.1814,-0.331,-0.4104,-0.4536,-0.4876,-0.4784,-0.492,-0.3424,-0.2858,0.0182,0.229,0.2132,-0.2494,-0.458,-0.4394,-0.0974,0.1758,0.5534,0.525,0.677,0.3966,0.3872,0.4466,0.5724,1,0.8528,0.8076,0.7672,0.4846,-0.1116,-0.278,-0.665,-0.798,-0.7814,-0.6414,-0.7672,-0.9382,-0.8908,-0.7434,-0.8314,-0.867,-0.703,-0.4062,-0.3706,-0.5296,-0.7672,-0.2518,0.08,0.3364,0.623,0.5806,0.6924,0.3906,0.3242,0.288,0.5234,0.7376,1,0.8944,0.8944,0.4058,0.0226,-0.3604,-0.807,-0.7616,-0.8492,-0.623,-0.6652,-0.9004,-0.6652,-0.6048,-0.7738,-0.831,-0.8642,-0.5686,-0.4962,-0.7194,-0.9458,-0.5744,-0.1914,0.0638,0.149,0.5744,0.4894,0.9148,0.7872,0.7446,0.9148,1,0.4468,0.4042,0.2766,0.234,0.3192,0.234,0.2766,0.6596,0.4468,0.5744,0.3618,0.3192,0.234,0.2766,0.4042,0.1064,0.234,0.0638,-0.0212,-0.1914,-0.3192,-0.4902,-0.1764,0.1764,0.1764,0.451,0.8824,1,0.5686,0.7648,0.9216,0.804,0.7648,0.4902,0.2942,0.2942,0.4118,0.3334,0.451,0.7254,0.804,0.804,0.5686,0.2942,0.3334,0.2156,0.6862,0.6078,0.4118,0.098,-0.0196,-0.2156,-0.3726,-0.5682,-0.2728,-0.0682,0.3864,0.5228,0.6818,0.2954,0.2954,0.3864,0.5228,1,0.9772,0.75,0.75,0.5682,0.159,-0.3182,-0.5454,-0.6818,-0.6136,-0.5682,-0.75,-0.8182,-0.7728,-0.8182,-0.659,-0.6364,-0.5682,0,0,-0.409,-0.6818,-1,-1,-1,-1,-1,-1,-0.9638,-0.9694,-0.9262,-0.9624,-0.3004,0.483,0.7896,0.8356,0.9694,0.9554,0.7254,0.6418,0.5094,0.1192,-0.101,-0.5066,-0.8356,-0.9248,-0.9526,-0.9498,-0.9638,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9862,-0.9878,-0.9362,-0.9558,-0.3244,0.521,0.9572,0.9716,0.9366,0.7784,0.6616,0.4268,0.0544,-0.329,-0.576,-0.7992,-0.9356,-0.9602,-0.9686,-0.9708,-0.9716,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8468,-0.8868,-0.78,-0.5468,-0.4534,-0.5984,-0.565,-0.5184,-0.6234,-0.6354,-0.6354,-0.6786,-0.7848,-0.7416,-0.8632,-0.8586,-0.8834,-0.77,-0.7834,-0.7368,-0.77,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,-0.5428,-0.2,1,1,1,-0.9714,-0.8,-0.8,-0.8286,-0.8286,-0.6858,-0.7142,-0.6572,-0.8858,-0.2572,-0.6858,-0.8,-1,-0.9714,-0.8572,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.1698,-0.1416,-0.1256,-0.111,-0.1106,-0.1086,-0.1144,-0.1832,-0.476,-1,-0.6134,0.5176,-0.1582,-0.024,0.2974,0.6518,0.8116,0.6584,0.1612,0.4838,0.8388,0.9354,1,1,0.8064,0.5806,0.6774,0.9354,0.9354,0.6452,0.6452,0.6452,0.4516,0.2904,0.2258,0.1612,0.6774,0.7742,0.7096,0.5484,0.1612,0.3548,-0.0322,-0.129,-0.0322,-0.0646,-0.0322,-0.129,-0.3548,-0.4516,-0.2182,0.0364,0.8,0.9454,0.891,1,0.5454,0.2546,0.291,0.909,0.9454,0.2182,0.5272,0.691,0.1272,-0.0182,-0.1818,-0.3818,0.7818,0.9636,0.6,0.3272,0.0182,0.1454,-0.1636,-0.5272,-0.3272,-0.4182,-0.4,-0.4546,-0.3454,-0.5818,-0.0192,0.2692,0.5962,0.923,0.8846,1,0.5,0.4038,0.423,0.8076,0.8462,0.4038,0.3654,0.577,0.1346,-0.173,-0.423,-0.423,0.4424,0.6346,0.327,-0.2116,-0.077,0.1346,-0.1346,-0.423,-0.4424,-0.4808,-0.4424,-0.3654,-0.327,-0.4038,0.543,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.2904,-0.113,0.3226,0.387,0.0484,0.2904,0.758,0.9194,1,0.371,0.1774,0.1774,0.258,0.2742,0.4678,0.129,0.1452,0.129,0,0.0806,0.129,-0.0968,0.0162,0,0.129,0.0968,-0.1774,-0.1612,0.0322,0.0322,-0.0646,-0.6774,'18'
-0.44,-0.0466,0.2134,0.3266,0.7866,0.78,0.68,0.4734,0.3334,0.36,0.3866,0.34,0.3866,0.7134,0.9266,1,0.8534,0.6666,0.6734,0.78,0.86,0.7466,0.38,0.26,0.2266,0.1934,0.08,0.1,0.1134,0.1666,0.3866,0.32,-0.4344,-0.0612,0.1486,0.2712,0.5918,0.6094,0.6734,0.5918,0.3178,0.3294,0.3936,0.3528,0.4694,0.7318,0.8658,1,0.7376,0.656,0.656,0.7202,0.9476,0.8368,0.3702,0.2712,0.3062,0.2304,0.1312,0.242,0.1836,0.2594,0.5336,0.5276,-0.453,-0.0998,0.134,0.2364,0.527,0.527,0.7322,0.6182,0.322,0.322,0.3334,0.3732,0.5328,0.6752,0.9544,1,0.6068,0.453,0.6468,0.5954,0.6696,0.584,0.5726,0.3048,0.208,0.2706,0.1112,0.1566,0.2764,0.3106,0.4928,0.4018,-0.4508,-0.1344,0.1344,0.206,0.5164,0.618,0.7792,0.612,0.3374,0.3254,0.2656,0.3432,0.612,0.6656,1,0.9462,0.4448,0.594,0.6298,0.618,0.594,0.7374,0.5642,0.3492,0.3014,0.2716,0.1402,0.2656,0.3432,0.3314,0.3492,0.582,-0.4402,-0.1258,0.1446,0.1886,0.5094,0.7422,0.8616,0.5408,0.3144,0.3396,0.3018,0.3522,0.7296,0.8616,1,0.7044,0.629,0.5472,0.5284,0.6164,0.8238,0.8238,0.585,0.4088,0.2956,0.3082,0.2642,0.2264,0.2704,0.3144,0.5912,0.5284,-0.406,-0.109,0.1948,0.2212,0.538,0.8152,0.8746,0.4126,0.3136,0.3664,0.3466,0.4654,0.7228,0.9802,1,0.67,0.5842,0.4324,0.5578,0.538,0.6898,0.7624,0.7756,0.3928,0.241,0.3136,0.0958,0.0826,0.2608,0.2278,0.3202,0.5908,-0.262,0.0874,0.1826,0.3492,0.5318,0.8254,0.7302,0.2778,0.1666,-0.0318,0.1112,0.238,0.5874,1,0.9682,0.6984,0.4682,0.2858,0.2698,0.2858,0.5476,0.5794,0.5238,0.127,-0.2302,-0.1826,-0.4048,-0.3334,-0.2936,-0.5318,-0.008,0.1032,-0.5102,-0.1428,0.1428,0.347,0.796,0.796,0.5102,0.4694,0.1836,0.347,0.3062,0.2654,0.4286,0.7142,1,1,0.796,0.6734,0.7142,0.8368,0.8368,0.6326,0.3062,0.2244,0.2244,0.1428,0.0612,-0.0204,0.1836,0.1836,0.2654,0.1836,-0.52,-0.16,0.12,0.32,0.72,0.8,0.52,0.52,0.28,0.32,0.32,0.28,0.52,0.76,0.84,1,0.92,0.76,0.72,0.68,0.84,0.76,0.4,0.4,0.12,0.04,0.16,0.2,0.16,0.12,0.36,0.44,-0.4174,-0.1262,0.165,0.2038,0.5534,0.8252,0.8834,0.4174,0.3398,0.3786,0.3398,0.4174,0.7864,0.9418,1,0.6894,0.631,0.4952,0.6116,0.6504,0.8446,0.8058,0.7476,0.398,0.3204,0.398,0.2038,0.2234,0.3398,0.3204,0.4758,0.6504,-1,-1,-1,-1,-1,-1,-1,-0.9702,-0.9546,-0.9656,-0.3606,0.373,0.6772,0.8026,0.9844,0.9012,0.851,0.815,0.7116,0.7382,0.5236,-0.1818,-0.7336,-0.9326,-0.9482,-0.9514,-0.9608,-0.964,-0.9592,-0.9656,-0.9686,-0.9546,-0.9656,-1,-1,-1,-1,-1,-1,-1,-0.987,-0.9844,-0.9812,-0.6922,-0.1674,0.3188,0.6674,0.9558,0.9734,0.8696,0.8936,0.8372,0.5132,0.1138,-0.66,-0.883,-0.8138,-0.7368,-0.667,-0.5846,-0.5258,-0.3634,-0.4858,-0.6186,-0.6704,-0.6796,-1,-1,-1,-1,-1,-1,-1,-0.9134,-0.8734,-0.7668,-0.5868,-0.5334,-0.515,-0.355,-0.46,-0.335,-0.34,-0.425,-0.49,-0.57,-0.535,-0.66,-0.3934,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-0.7714,-0.2858,1,1,1,1,0,-0.8,-0.9142,-0.8286,-0.8,-0.5142,1,1,1,1,1,-0.1714,-0.7142,-0.9714,-0.7714,-0.8286,-0.8286,-0.7428,-0.8572,-0.8,1,1,1,1,1,1,1,1,1,1,-0.9898,-0.9898,-1,-1,-1,-1,-1,-1,-1,-1,-0.64,-0.6118,-0.5954,-0.2568,0.1256,0.39,0.7436,1,-0.1304,0.3914,0.5218,0.5218,0.3478,0.087,0.2174,0.7392,0.913,0.9566,1,0.913,0.6522,0.4348,0.3914,0.4348,0.3044,-0.087,0.3478,0.6522,0.7826,0.7392,0.6956,0.6522,0.6086,0.5652,0.4782,0.2608,0.3044,0.3914,0.5652,0.3478,0.0086,0.3392,0.6522,0.7566,0.4608,0.374,0.4782,0.9478,1,0.774,0.9652,0.4782,0.3914,0.2348,0.3392,0.5826,0.5304,0.113,0.6174,0.687,0.8782,0.6348,0.6174,0.2696,0.4434,0.3914,0.1478,-0.2522,0.1304,0.2,0.2174,-0.2174,-0.0104,0.4432,0.9382,0.9794,0.3196,0.4226,0.4226,0.8762,0.9794,0.6702,1,0.6288,0.2164,0.2578,0.1546,0.4226,0.2578,-0.0516,0.7732,0.9588,0.7526,0.4846,0.402,0.2784,0.464,0.3196,0.0104,-0.4432,0.0516,0.0928,0.2784,-0.6702,-0.1436,-1,-1,1,-0.8,-1,-1,-0.8334,-1,-0.8404,-0.6196,-0.4478,-0.4846,-0.5214,-0.4234,-0.497,-0.1534,-0.2148,-0.2024,-0.1902,-0.3496,-0.1166,0.0062,-0.092,-0.0798,0.1166,0.1902,0.362,0.3374,0.5092,0.6196,0.6688,0.4478,0.6564,0.951,1,0.8282,0.865,0.9754,0.7914,0.6564,'19'
-0.3788,0.0408,0.2044,0.3242,0.673,0.7002,0.6676,0.5968,0.3352,0.3242,0.3896,0.406,0.4878,0.7438,0.9292,1,0.8038,0.7384,0.7712,0.7494,0.8148,0.6404,0.4278,0.3024,0.2752,0.248,0.1716,0.2752,0.237,0.3298,0.4714,0.3896,-0.335,0.0394,0.1872,0.3004,0.6996,0.739,0.7044,0.6552,0.399,0.34,0.4434,0.468,0.5074,0.8326,0.7882,1,0.872,0.7636,0.7832,0.8178,0.8572,0.8276,0.4384,0.3202,0.3152,0.271,0.3104,0.4236,0.399,0.4236,0.5222,0.6552,-0.3764,0.0322,0.1612,0.2956,0.7634,0.785,0.8656,0.7956,0.4354,0.4032,0.5054,0.4838,0.5484,0.9516,0.871,1,0.785,0.7956,0.9086,0.8978,1,0.9086,0.5592,0.3226,0.3494,0.4032,0.3978,0.4194,0.301,0.4462,0.785,0.8548,-0.4032,-0.0108,0.129,0.2474,0.7258,0.7312,0.8924,0.8118,0.3656,0.4516,0.5,0.4892,0.715,0.9462,0.8064,0.8978,0.6344,0.6452,0.7796,0.8172,1,0.8388,0.629,0.387,0.3602,0.4354,0.3172,0.3172,0.4302,0.4732,0.8656,0.8172,-0.373,-0.0054,0.1784,0.2648,0.7244,0.681,0.9298,0.7784,0.3946,0.5244,0.4972,0.546,0.8864,1,0.8108,0.8054,0.681,0.5622,0.7244,0.8054,0.8378,0.8378,0.773,0.5136,0.427,0.4864,0.2648,0.3298,0.5568,0.6,0.7082,0.6918,-0.382,-0.0262,0.1954,0.347,0.7084,0.8542,1,0.7084,0.411,0.5452,0.516,0.5918,0.9884,0.9416,0.8076,0.656,0.6852,0.6034,0.551,0.7026,0.9242,0.9884,0.7434,0.5626,0.411,0.3878,0.3936,0.3644,0.4402,0.481,0.7784,0.7668,-0.2848,0.038,0.2784,0.3544,0.633,1,0.9368,0.5126,0.2722,0.3038,0.4368,0.4494,0.7342,0.886,0.8038,0.4114,0.3924,0.3164,0.386,0.538,0.6772,0.7532,0.519,0.2278,0.0506,0.038,-0.1518,-0.1202,-0.019,0.0254,0.1962,0.3608,-0.4,-0.08,0.16,0.36,0.68,0.8,0.76,0.56,0.36,0.36,0.36,0.36,0.56,0.72,0.92,1,0.96,0.76,0.84,0.88,0.84,0.64,0.48,0.4,0.2,0.28,0.24,0.28,0.32,0.36,0.4,0.32,-0.5,-0.1154,0.077,0.3076,0.577,0.6154,0.577,0.5,0.1538,0.2308,0.2308,0.2308,0.5,0.6924,0.8846,1,0.8462,0.6154,0.7308,0.6924,0.7308,0.6538,0.3462,0.2692,0.1154,0.1538,0.1154,0.1154,0.1538,0.2308,0.423,0.4616,-0.3518,0.037,0.1666,0.2962,0.7592,0.7592,0.9444,0.8518,0.3888,0.5,0.537,0.5556,0.8148,0.9814,0.8704,0.9074,0.6482,0.6296,0.7962,0.8704,1,0.8334,0.7222,0.5,0.4444,0.5,0.3148,0.3704,0.537,0.5556,0.9074,0.8148,-1,-1,-1,-1,-1,-1,-1,-1,-0.972,-0.9744,-0.553,0.1634,0.6206,0.8276,0.9412,0.9604,0.9782,0.991,0.8876,0.7088,0.521,-0.0408,-0.7306,-0.926,-0.9604,-0.9616,-0.9616,-0.9642,-0.9694,-0.9694,-0.9616,-0.972,-0.9642,-1,-1,-1,-1,-1,-1,-1,-1,-0.9878,-0.9882,-0.7802,0.018,0.5346,0.7776,0.876,0.944,0.9532,0.9924,0.9208,0.841,0.391,-0.3588,-0.8582,-0.8,-0.8188,-0.772,-0.4188,-0.5696,-0.654,-0.6398,-0.6084,-0.676,-0.6612,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.9668,-0.5534,-0.46,-0.435,-0.415,-0.495,-0.515,-0.448,-0.444,-0.6,-0.656,-0.648,-0.712,-0.4468,0.9266,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,1,-0.4572,-1,-0.9428,-0.9428,-0.8,-0.8858,-0.2,1,1,1,1,-0.3428,-0.5714,-0.6,-0.8,-1,-0.8,-0.8858,-0.8858,-0.7142,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.68,-0.5294,-0.7402,-0.3582,0.234,0.587,0.77,1,0.0222,0.4666,0.6666,0.5334,0.4444,0.2888,0.4,0.9556,0.8666,0.8888,1,0.4666,0.3556,0.3778,0.5112,0.4666,0.1556,-0.0888,0,0.5334,0.9778,0.6666,0.4,-0.0222,-0.0666,-0.2666,-0.3334,-0.5334,-0.4888,-0.3112,-0.3556,-0.5334,-0.1486,0.01,0.9604,0.9604,-0.0694,-0.1486,0.2674,0.9802,1,0.6436,0.9208,0.3862,0.1486,0.1684,0.307,0.4654,0.109,0.0694,-0.0694,0.5446,0.7822,0.5248,0.4456,0.3862,-0.0892,0.1288,-0.1288,-0.406,-0.3664,-0.3466,-0.2476,-0.3466,0.0444,0.1778,0.6888,0.6888,0.2222,0.3112,0.3778,0.8222,1,0.8222,0.8222,0.6888,0.3334,0.3112,0.3334,0.4888,0.2666,0.2666,-0.1112,0.4444,0.9556,0.6,0.1112,0.1778,0.2666,0.5334,0.2444,-0.1334,-0.3556,-0.3112,-0.1778,-0.8444,0.479,-1,-1,1,-1,-1,-0.8,-0.8,-1,-0.8802,-0.7604,-0.6498,-0.5668,-0.6314,-0.5024,-0.5576,-0.318,-0.4746,-0.4194,-0.318,-0.3088,-0.2626,-0.318,-0.3456,-0.1336,-0.1428,-0.2074,-0.023,0.0876,0.2074,0.2258,0.2258,0.1152,0.1798,0.0322,0.06,0.235,0.9448,1,0.2996,0.2166,'19'
-0.0986,0.567,0.5348,0.3474,0.2794,-0.0372,-0.076,-0.3474,-0.37,-0.2536,-0.3344,-0.4088,-0.4152,-0.1374,-0.134,0.0824,0.021,0.328,0.5154,0.9064,0.8772,1,0.8384,0.9516,0.8804,0.8998,0.8126,0.5928,0.5024,0.5056,0.4636,0.6866,-0.14,0.4228,0.3714,0.32,0.2,0.0314,-0.1372,-0.4342,-0.4258,-0.2942,-0.4886,-0.38,-0.14,-0.0828,-0.1686,-0.14,0.14,0.1258,0.4714,0.6058,1,0.96,0.9286,0.8258,0.9172,0.8458,0.6972,0.5742,0.6028,0.52,0.6514,0.7286,-0.1994,0.3282,0.2332,0.227,0.0122,-0.132,-0.5368,-0.5798,-0.5306,-0.5736,-0.6012,-0.589,-0.365,-0.4602,-0.3466,-0.135,-0.0644,0.095,0.1748,0.5828,0.6932,1,0.8896,0.7454,0.7116,0.8496,0.6656,0.635,0.546,0.4908,0.6442,0.6656,-0.263,0.1948,0.2176,0.3604,-0.0324,-0.2402,-0.5942,-0.7142,-0.7078,-0.6364,-0.5876,-0.6462,-0.5812,-0.409,-0.4512,-0.2824,-0.1884,-0.065,0.2402,0.4058,0.737,0.8994,1,0.7176,0.7922,0.828,0.7954,0.6948,0.6526,0.539,0.6072,0.6916,-0.2672,0.1264,0.4694,0.4874,-0.3682,-0.6028,-0.6932,-0.6714,-0.751,-0.7292,-0.7762,-0.7472,-0.5884,-0.5848,-0.5884,-0.3972,-0.325,-0.1084,0.166,0.4224,0.787,1,0.9784,0.7726,0.8808,0.982,0.917,0.7148,0.7004,0.5452,0.639,0.6968,-0.1506,0.2642,0.8082,0.6752,-0.4168,-0.5694,-0.542,-0.589,-0.953,-0.769,-0.7142,-0.7534,-0.7182,-0.6594,-0.6164,-0.4716,-0.3464,-0.2994,0.0098,0.3268,0.7104,0.9648,1,0.7026,0.7378,0.863,0.7142,0.5264,0.4794,0.3072,0.4442,0.4872,0.0632,0.5098,1,0.7476,-0.3204,-0.6748,-0.5632,-0.466,-0.8252,-0.903,-0.9902,-0.733,-0.801,-0.699,-0.4708,-0.5826,-0.5292,-0.7622,-0.5146,-0.034,0.4368,0.665,0.4806,0.3786,0.4708,0.7524,0.5826,0.1796,0.1796,0.034,0.1166,0.034,0.1904,0.762,0.7142,0.1428,-0.3334,-0.2858,-0.0476,-0.238,-0.381,-0.1428,-0.1428,-0.5714,-0.1428,0.0952,0.1904,-0.0952,-0.1428,-0.238,0.3334,0.9524,1,0.7142,0.762,0.9524,0.9524,0.6666,0.619,-0.0476,0.238,0.0952,0.0476,0.1428,0.1072,0.6786,0.6428,0.4642,0.4642,0.1786,0.1428,0.0358,-0.0714,0,-0.1072,0,-0.0358,0.1786,0.0714,0.2858,0.2142,0.6072,0.5358,0.9286,1,0.9642,0.7858,0.8928,0.8572,0.7858,0.7142,0.6428,0.6072,0.6072,0.5358,0.7142,-0.1954,0.0574,0.5862,0.5172,-0.5402,-0.4482,-0.6092,-0.5862,-0.908,-0.5632,-0.5632,-0.7702,-0.5862,-0.4482,-0.3334,-0.3794,-0.2644,-0.1494,0.1034,0.3794,0.6322,1,0.885,0.6552,0.7242,0.7702,0.7702,0.6322,0.4482,0.3794,0.4942,0.5632,-1,-1,-1,-1,-0.9664,-0.9478,-0.9218,-0.752,-0.7558,-0.9068,-0.8696,0.713,0.711,0.5526,0.4482,0.4222,0.3868,0.4296,0.3476,0.2862,0.0476,-0.2096,-0.616,-0.7968,-0.849,-0.9218,-0.8938,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.9624,-0.8466,0.7028,0.0596,-0.6434,-0.7656,0.1776,0.9464,0.7338,0.6044,0.592,0.6774,0.5306,0.2492,-0.1704,-0.5024,-0.6492,-0.8076,-0.8532,-0.877,-0.914,-0.9284,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9758,-0.9034,-0.8468,0.87,1,0.6,-0.0068,-0.66,-0.42,-0.4112,-0.5068,-0.4224,-0.3712,-0.3556,-0.5312,-0.8224,-0.929,-0.9868,-0.8734,-0.3234,-0.3334,-0.4734,-0.7668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6572,-0.2,1,1,1,1,1,1,1,-0.9428,-1,-1,-1,-1,-0.6286,-0.0858,-0.0286,-0.7428,-0.5142,-0.5142,-0.3142,-0.0286,-0.3142,-1,-1,-1,-1,-1,-1,0.0558,0.073,0.0982,0.1108,0.1272,0.127,0.1452,0.111,0.0478,-0.2364,0.7372,0.7366,0.7926,0.774,0.7762,0.7926,0.8158,0.879,0.9482,0.9784,-0.68,0.0352,-0.7822,-0.6426,0.1378,0.7172,0.9992,1,-0.8824,-0.5038,-0.3452,-0.3146,-0.1764,0.1612,0.0946,-0.0998,-0.0384,0.2328,0.0742,-0.0742,-0.0076,0.2634,0.3606,0.468,0.4424,0.4424,0.7648,0.821,1,0.9694,0.9028,0.9232,0.9182,0.7954,0.954,0.908,0.8722,0.514,0.2992,0.0844,-0.8514,-0.4676,-0.41,-0.4244,-0.4676,-0.3094,-0.3622,-0.0792,-0.0072,0.343,0.434,0.4628,0.6642,0.2758,0.2854,0.2662,0.482,0.6306,0.506,0.693,1,0.8082,0.6498,0.6212,0.669,0.6834,0.6786,0.8896,0.669,0.5732,0.3526,0.2326,-0.4302,0,-0.0376,-0.242,-0.2096,-0.344,0.0054,0.2044,0.2634,0.6398,1,0.914,0.9194,0.8334,0.586,0.5108,0.6936,0.6882,0.6022,0.6882,0.9248,0.785,0.6774,0.5752,0.5054,0.5322,0.6182,0.6774,0.4784,0.387,0.2904,0.1344,1,-1,-1,1,-1,-1,-0.4,-0.1334,-1,0.0484,-0.0322,-0.0484,-0.1612,-0.0646,-0.129,-0.113,0.0646,0.0322,0.3226,0.887,0.5162,1,0.8226,0.8548,0.5806,0.5968,0.3388,0.871,0.9678,0.8064,0.613,0.2258,0.0806,0.2096,-0.0806,-0.1774,0.0968,-0.0322,0,-0.1936,-0.2904,'20'
-0.0114,0.8792,0.8956,0.4878,0.4682,-0.0278,-0.018,-0.2952,-0.3116,-0.6574,-0.6508,-0.5758,-0.5432,-0.5008,-0.5856,-0.3932,-0.3376,0.0668,0.3898,0.6508,0.863,0.8662,0.7846,0.7096,0.9738,1,0.739,0.6084,0.5302,0.5302,0.6378,0.7488,-0.064,0.6942,0.663,0.5882,0.4882,0.0982,-0.0328,-0.1544,-0.3322,-0.301,-0.507,-0.4664,-0.3978,-0.2918,-0.2918,-0.117,-0.064,0.1076,0.3978,0.6506,0.9252,1,0.8846,0.7286,0.8658,0.819,0.6662,0.5664,0.5226,0.3978,0.5414,0.5632,-0.0618,0.5264,0.4178,0.5806,0.3274,-0.0408,-0.3544,-0.267,-0.6592,-0.7346,-0.6892,-0.6652,-0.4932,-0.442,-0.448,-0.3242,-0.1342,-0.0648,0.2912,0.4812,0.81,0.9458,1,0.7194,0.7104,0.7164,0.623,0.5898,0.5264,0.4812,0.4268,0.5626,-0.084,0.3608,0.631,0.7266,0.028,-0.318,-0.6178,-0.71,-0.8714,-0.9406,-0.687,-0.6474,-0.8584,-0.7594,-0.7232,-0.5882,-0.3872,-0.2258,-0.061,0.196,0.5124,0.9472,1,0.6772,0.6508,0.7792,0.565,0.3476,0.0774,0.005,0.0906,0.1532,0.2104,0.6826,0.9262,0.9778,-0.0554,-0.428,-0.7084,-0.6494,-0.8856,-0.69,-0.6568,-0.7048,-0.5018,-0.5536,-0.5904,-0.6532,-0.4464,-0.4096,-0.2104,0.0184,0.3764,0.9298,1,0.5868,0.7934,0.904,0.476,0.321,0.2324,0.0996,0.037,0.096,0.2218,0.6528,1,0.933,-0.6946,-0.8242,-0.636,-0.523,-0.887,-0.8786,-0.7908,-0.6904,-0.8452,-0.8118,-0.9122,-0.8954,-0.841,-0.5272,-0.3724,-0.0334,0.4394,0.9122,0.8662,0.6026,0.6528,0.6486,0.4268,0.2426,0.1966,-0.1632,-0.1338,-0.0252,0.3786,0.7642,1,0.8276,-0.483,-0.6962,-0.5328,-0.4694,-0.7506,-0.7278,-0.9728,-0.7006,-0.483,-0.3198,-0.297,-0.4332,-0.3606,-0.4332,-0.5284,-0.093,0.2744,0.7234,0.619,0.3242,0.5238,0.4558,0.3514,0.0522,-0.1202,-0.3514,-0.17,-0.3878,0.1904,0.8572,0.8096,0.4286,0.1428,0.1428,0.0476,-0.1904,-0.0476,-0.1428,-0.238,-0.238,0.0952,-0.0476,-0.238,-0.1428,-0.5714,0.0952,0.7142,0.9048,0.9048,0.762,0.5238,0.4286,1,1,0.619,0.7142,0.3334,0.4286,0.1904,0.238,0.0434,0.826,0.8696,0.5218,0.4348,-0.0434,0.1304,-0.3914,-0.3044,-0.6086,-0.4348,-0.3914,-0.3478,-0.3914,-0.2608,-0.3478,-0.1304,-0.087,0.6522,0.7826,0.8696,1,0.826,0.9566,0.9566,0.913,0.913,0.5652,0.6086,0.4782,0.6522,0.4348,-0.0454,0.3864,0.6364,0.7272,0.1818,-0.0454,-0.3864,-0.5454,-0.6364,-0.75,-0.4546,-0.3636,-0.5,-0.5454,-0.7954,-0.25,-0.0682,0.0454,0.091,0.409,0.8182,1,0.8636,0.8182,0.841,0.7046,0.7046,0.4546,0.4546,0.1364,0.0682,0.091,-1,-1,-1,-1,-0.9692,-0.9572,-0.7556,-0.7368,-0.935,-0.9334,-0.8838,0.7076,0.5488,0.2154,0.077,0.0512,0.0736,-0.0308,-0.0838,-0.1042,-0.2786,-0.4958,-0.7522,-0.8548,-0.9076,-0.923,-0.9556,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.951,-0.9368,0.2374,0.8782,-0.475,-0.7674,-0.7912,0.6564,0.8186,0.5084,0.1528,0.3162,0.1706,-0.0776,-0.1742,-0.222,-0.3914,-0.5918,-0.79,-0.8448,-0.858,-0.8842,-0.9392,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.8734,0.1932,0.8932,0.48,-0.0034,-0.0968,-0.692,-0.638,-0.666,-0.696,-0.614,-0.652,-0.7564,-0.8728,-0.88,-0.9164,-0.9146,-0.8668,-0.61,-0.2634,-0.53,-0.84,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,1,1,0.3714,1,-0.5714,-0.5142,-0.9428,-0.7428,-0.2858,-0.8572,-0.8858,-0.8572,-0.6858,-0.8286,-0.8,-0.8,-0.7714,0.3142,0.0572,-1,-1,-1,-1,-1,-1,0.0246,0.0312,0.039,0.0526,0.0724,0.0854,0.1128,0.1246,0.0212,-0.3542,0.8612,0.8602,0.886,0.876,0.8904,0.8792,0.8754,0.8668,0.8764,0.8182,-0.6266,0.2352,-0.7852,-0.3818,0.7386,0.9774,0.8436,1,-0.7726,-0.1416,-0.06,-0.1072,-0.1244,-0.1374,-0.1846,-0.206,0.2918,0.4936,0.4636,0.6224,0.5836,0.4464,0.3776,0.4334,0.7124,0.7812,0.648,0.7768,0.9098,1,0.8712,0.9012,0.837,0.854,0.7296,0.7768,0.5364,0.5966,0.2232,-0.1116,-0.724,-0.2784,-0.2882,-0.2058,-0.1332,-0.0412,0.0412,0.2542,0.4334,0.6708,0.6804,0.9274,0.9854,0.7578,0.6756,0.5254,0.937,1,0.6804,0.787,0.9418,0.816,0.879,0.8402,0.6222,0.6368,0.7046,0.4528,0.6658,0.5594,0.3754,-0.0944,-0.2718,-0.1086,-0.087,0.0272,-0.0652,-0.1794,-0.0054,0.1086,0.1414,0.3642,0.6576,1,0.8642,0.6196,0.4348,0.4294,0.5978,0.674,0.576,0.549,0.5598,0.375,0.3968,0.2554,0.2174,0.4946,0.2446,0.4402,0.3968,0.2826,0.0924,-0.0924,1,-1,-1,1,-1,-1,-0.2,0,-1,-0.2,0.2148,0.1408,-0.037,-0.0666,-0.126,0.1408,0.2592,0.2,0.3186,0.3186,0.4814,1,0.8518,0.126,0.4518,0.3778,0.437,0.5704,0.5852,0.3926,0.1556,0.1704,0.1556,-0.0962,0.0518,0.0518,0.0222,-0.037,-0.0666,-0.0814,-0.4814,'20'
0.217,0.9374,0.7136,0.2438,-0.2706,-0.3602,-0.396,-0.387,-0.4988,-0.8032,-0.736,-0.5124,-0.3422,-0.4272,-0.4944,-0.2304,0.0604,0.1006,0.2348,0.4452,0.378,-0.0514,-0.0246,0.1722,0.2572,0.4004,0.812,0.7762,0.6958,0.6644,0.736,1,-0.1302,0.4028,0.2834,0.4058,0.0444,-0.219,-0.6172,-0.6202,-0.6814,-0.4978,-0.3966,-0.5284,-0.4334,-0.1944,-0.2772,-0.026,0.3324,0.4854,1,1,0.8162,0.6692,0.703,0.7152,0.6202,0.66,0.6906,0.565,0.5742,0.7764,0.8592,0.9694,-0.2006,0.3444,0.5868,0.7964,0.479,-0.1348,-0.3562,-0.4162,-0.3892,-0.3682,-0.1796,-0.2186,-0.1318,0.1976,0.3832,0.7486,0.8204,1,0.7694,0.8742,0.9282,0.9192,0.2844,0.2036,0.0988,0.1526,0.2964,0.2874,0.3384,0.6916,0.6766,0.7486,-0.1968,0.3074,0.8634,1,0.4666,-0.213,-0.3496,-0.3756,-0.252,-0.161,-0.1708,-0.1024,0.4666,0.5968,0.3008,0.2976,0.2292,0.2456,0.3626,0.6456,0.6846,0.2032,-0.2,-0.3464,-0.4082,-0.3756,-0.2586,-0.1512,0.0472,0.2422,0.4602,0.4926,-0.17,0.265,0.9524,1,-0.0092,-0.4004,-0.3236,-0.0786,-0.053,0.1152,0.2358,0.148,-0.2286,-0.3126,-0.3748,-0.3638,-0.4296,-0.393,-0.1846,0.031,0.1774,-0.0458,-0.8756,-0.7916,-0.7184,-0.7112,-0.7294,-0.7002,-0.51,-0.4662,-0.0676,0.1188,-0.0846,0.338,1,0.8874,0.183,0.0176,-0.0352,0.0316,0.2712,-0.0176,-0.1902,-0.4402,-0.6232,-0.7254,-0.5316,-0.6126,-0.567,-0.5388,-0.588,-0.4402,-0.3522,-0.486,-0.757,-0.6972,-0.669,-0.764,-0.9788,-0.9472,-0.757,-0.6198,-0.5036,-0.2464,0.0968,0.6824,1,0.6526,0.4392,-0.1216,-0.1414,0.2258,0.0322,-0.454,-0.603,-0.7172,-0.6874,-0.6278,-0.7518,-0.727,-0.7766,-0.603,-0.7568,-0.6824,-0.603,-0.598,-0.7172,-0.6724,-0.3698,-0.4044,-0.6526,-0.6874,-0.9504,-0.866,-0.8264,-0.7172,0.3334,1,0.9444,0.1666,0,-0.1112,0,-0.1666,-0.3334,-0.6666,-0.5556,-0.0556,0,-0.1666,-0.2778,0.2778,0.3334,0,0,-0.2778,-0.1666,-0.1666,-0.1112,0,0.3334,0.3334,0.3334,0.4444,0.3334,0.2222,-0.1112,0.3888,0.5898,1,0.8462,0.4872,0.1282,0.0256,0.1794,0.2308,0.077,-0.077,-0.4872,-0.0256,0.1794,0.2308,0.1794,-0.0256,0.1794,0.1794,0.5898,0.641,0.4872,0.5898,0.282,0.077,0.1794,0.641,0.7436,0.7436,0.6924,0.6924,0.8974,1,-0.2162,0.2972,0.8918,1,0.3784,-0.3514,-0.3514,-0.3514,-0.2432,-0.1352,-0.1352,0.1082,0.5946,0.6216,0.1892,0.081,0.081,0.2162,0.2702,0.5676,0.4594,0.1622,-0.2972,-0.3784,-0.4324,-0.4324,-0.2432,-0.1892,-0.1352,0.2162,0.4324,0.5676,-1,-1,-1,-1,-1,-1,-1,-0.9644,-0.9762,-0.9684,-0.901,-0.6502,-0.5552,-0.2278,0.1788,0.6898,0.9274,0.608,0.3004,0.0086,-0.41,-0.6198,-0.86,-0.9156,-0.9314,-0.9498,-0.9524,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.9552,-0.7242,-0.9114,-0.7332,-0.5238,0.3188,0.6384,0.8228,0.7234,0.35,0.0358,-0.2686,-0.5452,-0.71,-0.8818,-0.9096,-0.9042,-0.9302,-0.9364,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.9734,-0.6068,-0.9034,-0.862,-0.738,-0.386,-0.44,-0.75,-0.802,-0.87,-0.8766,-0.899,-0.899,-0.9154,-0.9208,-0.7776,-0.7908,-0.7876,-0.8676,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,0.0286,0.0858,-0.2,0.1714,0.9714,0.3714,-0.6858,-0.6,-0.4286,-0.3428,-0.6858,-0.6858,-0.7714,-0.7428,-0.8,-0.8858,-0.9428,-0.9714,-0.8,-1,-1,-1,-1,-1,-1,-0.6742,-0.6224,-0.6646,-0.6226,-0.5736,-0.548,-0.493,-0.3484,-0.2188,-0.0728,0.2388,0.2762,0.3376,0.396,0.4476,0.497,0.5208,0.4248,0.0326,-0.2792,-0.6534,0.2236,-0.924,-0.7466,-0.7018,-0.7582,-0.7512,-1,-0.3606,-0.2654,-0.1836,0.1428,-0.1564,-0.1292,-0.102,0.0476,0.0068,0.238,0.0612,0.2654,0.2244,0.415,0.6326,0.7278,0.8232,0.9592,0.9864,1,0.8368,0.7552,0.5102,0.3878,0.3606,0.4014,0.5102,0.5374,0.1836,-0.0476,-0.0748,-0.3606,-0.134,0.1546,0.0516,0.464,0.2372,0.0516,0.5052,0.4432,0.4846,0.464,0.1958,0.3402,0.6288,0.2784,0.3814,0.3608,0.6702,0.5876,0.7114,1,0.6702,0.299,0.2578,0.134,0.0928,0.1546,0.4226,0.2784,-0.1752,-0.3608,0.0722,-0.2164,0.8124,1,-0.0208,0.6458,0.25,-0.3124,0.4792,0.0416,0.5208,0.3124,0.3542,0.3124,0.375,0.25,0.3958,0.4166,0.3334,0.25,0.1666,0.2084,0.2916,0.3334,-0.0834,0.1876,0.1458,0.1458,0.1876,0.125,0.0416,0.1876,0.0416,-0.0624,-0.1782,-1,-1,1,-1,-1,-1,-0.6334,-1,-0.2632,0.5578,0.621,0.3052,1,0.7474,0.4736,0.7684,0.5158,0.3894,0.3894,0.3264,0.3052,0.2632,0.3474,0.0948,0.3684,0.2842,0.4106,0.3264,0.4526,0.179,0.3684,0.3052,0.1368,0.2,0.1368,0.0526,-0.0526,0.0736,-0.0106,-0.3474,'21'
-0.1794,0.3212,0.1856,0.3394,-0.086,-0.27,-0.647,-0.7526,-0.7346,-0.641,-0.5384,-0.5114,-0.5444,-0.3424,-0.285,-0.086,0.3364,0.5476,1,0.9156,0.8522,0.7254,0.472,0.2942,0.261,0.285,0.261,0.261,0.4902,0.6168,0.5806,0.5354,-0.1402,0.3842,0.5214,0.6952,0.314,0.0274,-0.622,-0.5792,-0.3414,-0.3048,-0.186,-0.1464,-0.1586,0.2804,0.4696,0.6554,0.7896,0.8658,0.8292,0.814,1,0.8506,0.1982,0.006,0.0946,0.2196,0.183,0.2104,0.3598,0.5548,0.6646,0.7378,-0.0696,0.4868,0.8444,1,0.4304,0.0298,-0.414,-0.288,-0.1324,-0.0034,-0.01,0.235,0.457,0.6192,0.1986,0.2484,0.255,0.159,0.361,0.7218,0.8278,0.308,-0.1656,-0.192,-0.3178,-0.2186,-0.1722,-0.1556,0.1954,0.3842,0.5794,0.5464,-0.083,0.4044,0.9314,1,0,-0.4658,-0.4188,-0.0036,0.1696,0.3862,-0.0614,-0.083,-0.361,-0.4766,-0.4658,-0.4512,-0.473,-0.527,-0.2528,0.0324,0.0938,-0.1046,-0.7582,-0.9566,-0.9098,-0.6896,-0.722,-0.7978,-0.5632,-0.5234,0.0974,0.1768,-0.0348,0.3784,1,0.9132,-0.184,-0.0556,0.1632,0.2534,0.2744,0.0626,-0.5174,-0.6876,-0.7118,-0.743,-0.7396,-0.8194,-0.757,-0.5868,-0.5348,-0.4584,-0.3888,-0.6146,-0.875,-0.7534,-0.698,-0.823,-0.9132,-0.9618,-0.8298,-0.8716,-0.5208,-0.2222,0.011,0.4652,1,0.7912,-0.0184,0.077,0.4908,0.3296,-0.2674,-0.5824,-0.8792,-0.945,-0.6776,-0.6008,-0.7106,-0.6666,-0.5092,-0.5568,-0.5568,-0.7106,-0.5714,-0.6996,-0.729,-0.6886,-0.6814,-0.7436,-0.8644,-0.8974,-0.7216,-0.6704,-0.8388,-0.5494,0.2148,0.7482,1,0.6494,0.0074,-0.1802,0.3728,0.3038,-0.1506,-0.4172,-0.6544,-0.605,-0.6098,-0.3778,-0.4962,-0.5012,-0.5802,-0.5852,-0.5112,-0.432,-0.3234,-0.4074,-0.6296,-0.4124,-0.2444,-0.6494,-0.8766,-0.7926,-0.837,-0.6296,-0.8716,-0.6296,0.0732,0.5122,0.3658,0.4146,-0.0244,-0.4634,-0.756,-0.6098,-0.9512,-0.6098,-0.5122,-0.4634,-0.3658,-0.317,-0.4146,0.0732,0.122,0.6586,0.8536,0.756,0.756,0.5122,0.8536,0.9024,0.6098,0.6098,0.6586,0.6586,0.756,1,1,0.561,-0.0222,0.3778,0.2,0.3334,0.0222,-0.2444,-0.4222,-0.9112,-0.7778,-0.5556,-0.4666,-0.5556,-0.5112,-0.2444,-0.0666,0.0222,0.3334,0.6888,1,0.7778,0.7778,0.8222,0.7778,0.6444,0.5556,0.4666,0.2888,0.3778,0.6444,0.6,0.8222,0.6888,-0.1304,0.4202,0.826,1,0.3624,-0.0434,-0.4202,-0.3334,-0.2174,-0.0144,-0.0724,0.3044,0.1304,0.3914,-0.0144,0.0144,0.1014,0.0724,0.3044,0.7682,0.826,0.1884,-0.2464,-0.2464,-0.4202,-0.3914,-0.2464,-0.2464,0.1014,0.3914,0.5942,0.1884,-1,-1,-1,-1,-1,-1,-0.963,-0.96,-0.9734,-0.9468,-0.5134,-0.0148,0.4142,0.7752,0.9586,0.9186,0.6066,0.3832,0.0918,-0.1952,-0.3876,-0.5992,-0.7514,-0.9498,-0.9468,-0.9468,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9492,-0.9434,-0.952,-0.9076,-0.6204,0.2114,0.8964,0.8314,0.6892,0.6024,0.2502,-4e-04,-0.2624,-0.4602,-0.5846,-0.691,-0.773,-0.8992,-0.9076,-0.8898,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8758,-0.8868,-0.8934,-0.44,-0.74,-0.536,-0.416,-0.594,-0.68,-0.8128,-0.831,-0.8346,-0.8892,-0.9492,-0.9364,-0.9474,-0.85,-0.7734,-0.7634,-0.71,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2858,-0.9428,0.0572,0.2,1,1,-0.8286,-0.6572,-0.5142,-0.3714,-0.5142,-0.8286,-0.8858,-0.9428,-0.9142,-0.9428,-0.6286,-0.7142,-0.7714,-0.8858,-1,-1,-1,-1,-1,-1,-1,-0.3676,-0.3446,-0.3358,-0.3028,-0.277,-0.2276,-0.1832,-0.1488,-0.1326,0.0664,0.5078,0.452,0.4344,0.3854,0.3058,0.1954,0.0264,-0.2668,-0.4768,-0.4516,-0.6,0.2588,-0.546,-0.4018,0.0326,0.4394,0.7418,-0.475,0.1148,0.4536,0.377,0.9672,0.7268,0.7924,0.9454,0.8252,0.8798,0.847,0.8798,0.7704,0.8142,0.4972,0.6284,0.6612,0.6612,0.6612,0.6722,0.5738,0.7814,0.53,0.541,0.552,0.6722,0.4098,0.8032,0.388,0.3552,0.4316,0.2568,-0.4208,0.1834,0.3584,0.4834,0.8,0.7,0.525,0.5666,0.7084,0.6166,0.7334,0.925,0.95,0.925,0.875,0.8834,1,0.7666,0.6166,0.6916,0.5666,0.7584,0.75,0.7166,0.6166,0.375,0.4584,0.7834,0.35,0.1916,0.3416,0.3,-0.1166,0.3372,0.4662,0.1612,-0.2024,-0.126,-0.1202,0.003,0.0734,0.2082,0.5132,0.5014,0.6598,1,1,0.613,0.6774,0.7536,0.6774,0.6364,0.3196,0.3782,0.2786,0.1496,-0.0322,-0.0322,0.132,0.2024,0.0498,0.1086,0.519,0.2082,-0.2434,-0.9812,1,-1,-1,-1,-0.8,-1,-1,-1,-0.3278,0.0084,-0.0252,0.4118,0.2606,1,0.8488,0.647,0.5126,0.5966,0.3446,0.1428,0.2606,0.2436,0.0084,0.21,0.126,-0.0252,-0.0084,-0.042,0.2436,0.1932,0.0924,0.0588,-0.0756,-0.0756,0.126,-0.1092,-0.0252,-0.0252,-0.21,-0.2606,'21'
-0.1808,0.2968,0.6684,0.7712,0.1542,-0.3034,-0.4892,-0.539,-0.476,-0.393,-0.4926,-0.4594,-0.2736,-0.1742,-0.005,0.277,0.5356,0.7744,0.8938,1,0.98,0.9536,0.9966,0.8142,0.529,0.2936,0.2836,0.277,0.3666,0.5656,0.7944,0.8442,-0.247,0.1798,0.5274,0.6036,-0.0702,-0.4726,-0.6464,-0.6494,-0.6676,-0.6616,-0.744,-0.6554,-0.436,-0.4786,-0.3994,-0.0976,-0.0214,0.2318,0.6402,0.881,0.869,0.9146,0.7836,0.8598,1,0.7164,0.6036,0.4786,0.4542,0.567,0.6068,0.6798,-0.2358,0.148,0.5544,0.5934,-0.304,-0.691,-0.6682,-0.5968,-0.6814,-0.8048,-0.7658,-0.8016,-0.8212,-0.561,-0.522,-0.3236,-0.161,-0.0244,0.3886,0.7398,1,0.948,0.7106,0.883,0.7756,0.8212,0.7822,0.678,0.4114,0.5284,0.5186,0.6586,-0.1884,0.1818,0.6786,0.6494,-0.6072,-0.7142,-0.763,-0.672,-0.9578,-0.9838,-0.8962,-0.8376,-0.8668,-0.8084,-0.591,-0.5488,-0.328,-0.1168,0.1168,0.4772,0.909,1,0.7272,0.6818,0.763,0.7954,0.841,0.5812,0.4124,0.4676,0.4156,0.5454,-0.0652,0.3706,1,0.8472,-0.4786,-0.676,-0.6946,-0.7206,-0.8026,-1,-0.9478,-0.877,-0.7878,-0.7542,-0.7058,-0.6834,-0.4152,-0.1956,-0.0986,0.404,0.769,0.9366,0.8398,0.769,0.6984,0.8808,0.9776,0.7468,0.4526,0.527,0.445,0.5716,-0.2036,0.4702,0.8558,0.5604,-0.5208,-0.445,-0.737,-0.791,-0.9136,-0.845,-0.8018,-0.8162,-0.6864,-0.7442,-0.701,-0.7514,-0.4558,-0.301,-0.301,0.254,0.8594,1,0.6828,0.7946,0.7118,0.6576,0.755,0.3874,0.1388,0.1604,0.164,0.2252,-0.1364,0.6946,1,0.5316,-0.3686,-0.4746,-0.6456,-0.6946,-0.6986,-0.7922,-0.8208,-0.6538,-0.6172,-0.6538,-0.6416,-0.7312,-0.4826,-0.56,-0.275,0.0958,0.6496,0.7352,0.613,0.776,0.5926,0.723,0.67,0.1242,0.116,-0.0062,-0.0916,0.0386,0.0588,0.5294,0.5882,0.7648,0.1176,-0.2942,-0.5882,-0.4118,-0.4118,-0.2942,-0.4118,-0.2352,-0.0588,0.1176,0.4118,0.8824,1,1,0.8824,0.8824,0.8824,0.9412,0.8824,0.353,-0.0588,-0.1176,0.1176,0.0588,0.2352,0.7648,0.8236,0.8824,-0.3158,0.1578,0.5264,0.6842,0.1052,-0.2632,-0.5264,-0.7894,-0.7368,-0.4736,-0.421,-0.421,-0.5264,-0.0526,-0.2106,0.1578,0.8422,0.8948,0.7368,0.579,1,0.6842,0.8948,0.421,0.421,0.2106,0,0.2106,0.421,0.4736,0.8422,0.7894,0.0684,0.5068,1,0.8356,-0.2602,-0.3698,-0.0958,-0.178,-0.726,-0.8356,-0.9178,-0.4794,-0.3424,-0.7534,-0.452,-0.7808,-0.5342,0.041,0.0136,0.4794,0.863,0.9178,0.726,0.8082,0.6438,0.9726,1,0.6438,0.452,0.5342,0.6712,0.4246,-1,-1,-1,-0.9412,-0.9598,-0.953,-0.958,-0.9546,-0.943,-0.8926,-0.5672,0.6744,0.9664,0.7652,0.6376,0.5402,0.4664,0.2718,0.1476,0.005,-0.1426,-0.2986,-0.6476,-0.8558,-0.9178,-0.9496,-0.9346,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9564,-0.9622,-0.952,-0.9194,-0.912,-0.867,-0.8234,-0.641,0.455,0.8234,0.6402,0.5502,0.3502,0.077,-0.1774,-0.3546,-0.4514,-0.5276,-0.6424,-0.7886,-0.8838,-0.8808,-0.8946,-0.907,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.8734,-0.7268,-0.48,-0.3334,0.0132,0.0466,-0.3468,-0.538,-0.406,-0.362,-0.338,-0.412,-0.5474,-0.702,-0.831,-0.8838,-0.9528,-0.9346,-0.7868,-0.44,0.0466,-0.1268,-0.2934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,-0.8286,-0.3142,-0.2286,-0.7142,-0.3142,-0.5714,1,1,-0.8286,-1,-1,-0.9714,-0.9714,-0.9714,-0.8286,-0.9428,-0.8,-0.7428,-0.3142,-0.3428,-0.8,-0.8858,-0.6,-1,-1,-1,-1,-1,-1,-0.0902,-0.0956,-0.1304,-0.15,-0.1624,-0.203,-0.2506,-0.305,-0.398,-0.5516,0.133,0.1766,0.2298,0.2856,0.3638,0.4394,0.5312,0.6338,0.743,0.8078,-0.5334,0.247,-0.6032,-0.4382,0.2776,0.8386,0.9448,-0.4166,-0.3218,-0.391,-0.1764,0.3218,0.1072,0.135,0.4186,0.6956,0.6678,0.5916,0.6748,0.647,0.8754,0.8824,0.481,0.8546,0.9238,0.7302,0.8408,1,0.91,0.7232,0.737,0.7716,0.5916,0.5916,0.6678,0.7094,0.6748,0.6332,0.3564,-0.0726,-0.3164,-0.124,0.033,0.114,0.0734,0.0684,0.438,0.8076,0.9088,0.7822,0.676,0.6102,0.7722,0.6658,0.519,1,0.8026,0.5798,0.6202,0.681,0.6912,0.7114,0.681,0.5746,0.7216,0.681,0.7722,0.6708,0.514,0.5088,0.4076,0.1544,0.3394,0.4072,-0.0678,0.0678,-0.1132,-0.1538,0.3574,0.8642,1,0.8552,0.7556,0.896,0.8372,0.7014,0.5746,0.7918,0.6244,0.5114,0.647,0.7466,0.7692,0.8552,0.5702,0.5972,0.6562,0.7466,0.8416,0.6606,0.5068,0.4932,0.543,0.2444,-0.9404,-1,1,-1,-0.6,-1,-0.6,0.0334,-1,-0.685,-0.1968,-0.2126,-0.307,-0.2598,-0.4016,-0.559,-0.1338,-0.1968,-0.1812,0.433,0.2126,0.433,0.5118,0.6536,0.5906,0.5434,0.2284,0.4646,1,0.8582,0.5118,0.2126,0.1654,-0.0236,-0.0866,0.2126,0.0236,-0.1182,0.1654,0.0866,-0.6378,'22'
-0.1078,0.4778,0.3814,0.4752,0.2294,-0.0216,-0.3814,-0.4474,-0.3688,-0.3638,-0.341,-0.4068,-0.2802,-0.2142,-0.0216,0.0292,0.166,0.7314,0.787,1,0.9924,0.9214,0.815,0.8656,0.7212,0.5006,0.3106,0.3156,0.313,0.3942,0.526,0.5818,-0.1568,0.3728,0.2822,0.3404,0.1174,-0.0732,-0.5448,-0.5494,-0.403,-0.4494,-0.4658,-0.54,-0.3426,-0.3356,-0.2126,-0.094,-0.043,0.2706,0.3148,0.7678,0.7142,1,0.835,0.9002,0.8886,0.9744,0.5424,0.5354,0.5772,0.503,0.5656,0.489,-0.195,0.335,0.215,0.405,0.075,-0.145,-0.6176,-0.63,-0.6126,-0.6926,-0.5126,-0.57,-0.5076,-0.355,-0.3876,-0.1276,-0.18,0.035,0.3874,0.5074,0.985,0.995,1,0.8874,0.8474,0.915,0.985,0.7224,0.7424,0.55,0.5224,0.6676,-0.2212,0.2286,0.3316,0.4374,-0.1524,-0.226,-0.7272,-0.6928,-0.6584,-0.7272,-0.7616,-0.7346,-0.5798,-0.5406,-0.3932,-0.3882,-0.2506,-0.0024,0.1548,0.452,0.7002,0.9878,1,0.801,0.8746,0.968,0.8918,0.7126,0.6684,0.5012,0.5136,0.5848,-0.2106,0.1658,0.4342,0.4422,-0.4078,-0.7052,-0.9052,-0.6684,-0.8264,-0.8764,-0.7552,-0.8394,-0.871,-0.671,-0.6578,-0.4894,-0.3158,-0.2158,-0.0052,0.3236,0.6052,0.9474,1,0.7316,0.8368,0.9842,0.8474,0.5922,0.5948,0.4158,0.3578,0.471,-0.1204,0.2048,0.756,0.6566,-0.2922,-0.6114,-0.5844,-0.5904,-0.8464,-0.8704,-0.9246,-0.8434,-0.6958,-0.6566,-0.7228,-0.509,-0.5692,-0.2922,-0.0332,0.2982,0.6868,0.9156,0.9488,0.6596,0.8254,1,0.7802,0.509,0.521,0.229,0.226,0.2952,-0.0586,0.4216,1,0.7504,-0.2174,-0.8148,-0.7164,-0.501,-0.55,-0.6938,-0.6748,-0.5614,-0.5728,-0.588,-0.3534,-0.467,-0.4972,-0.3838,-0.293,-0.0322,0.3988,0.7316,0.777,0.501,0.5614,0.5954,0.4934,0.225,0.1456,-0.0624,0.07,0.1154,-0.0304,0.5758,0.394,0.4546,0.091,-0.3334,-0.5152,-0.697,-0.8788,-0.7576,-0.8788,-0.5152,-0.394,-0.091,0.2728,0.3334,0.8182,0.8788,0.8788,0.8788,0.9394,1,0.6364,0.2728,0.2728,0.394,0.394,0.3334,0.2728,0.5152,0.697,0.8182,-0.25,0.35,0.2,0.4,0.2,-0.3,-0.5,-0.55,-0.5,-0.5,-0.4,-0.55,-0.45,-0.4,-0.2,-0.05,0.15,0.9,1,0.8,0.8,0.9,0.9,0.55,0.35,0.1,0,-0.05,0.15,0.15,0.4,0.3,-0.1326,0.1808,0.4698,0.494,-0.2048,-0.494,-0.735,-0.6386,-0.6626,-0.6386,-0.5904,-0.6386,-0.8314,-0.4698,-0.494,-0.494,-0.229,-0.0362,0.0844,0.4698,0.6868,1,0.8796,0.8554,0.8314,0.8072,0.8796,0.6868,0.5422,0.4216,0.5422,0.494,-1,-1,-1,-1,-1,-0.6088,-0.5244,-0.5844,-0.6044,-0.5778,-0.44,0.8088,0.9556,0.8622,0.7756,0.8066,0.7534,0.5112,0.3912,0.2288,0.0266,-0.2334,-0.5978,-0.8266,-0.9312,-0.9444,-0.9312,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8218,-0.7694,-0.7792,-0.7736,-0.6786,-0.5896,0.3606,0.7318,0.8332,0.856,0.933,0.7384,0.444,0.0458,-0.2616,-0.5012,-0.6524,-0.7866,-0.847,-0.856,-0.8782,-0.9052,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.9434,-0.9234,-0.83,-0.6368,-0.46,-0.5834,-0.5118,-0.5368,-0.3634,-0.2784,-0.3068,-0.3386,-0.6386,-0.72,-0.877,-0.974,-0.7268,-0.29,-0.0734,-0.1134,-0.31,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.2,0.1428,-0.4286,-0.6572,0.2572,0.2572,1,-0.7142,-0.9142,-0.8858,-0.9428,-1,-0.9714,-0.8572,-0.7714,-0.4572,-0.4858,-0.4286,-0.7714,-0.8572,-0.8572,-0.4572,-1,-1,-1,-1,-1,-1,0.0054,0.01,0.0108,0.0122,0.019,0.0142,-8e-04,-0.015,-0.083,-0.2928,0.3352,0.399,0.4414,0.4706,0.5228,0.606,0.6798,0.7352,0.8466,0.8834,-0.64,0.4942,-0.57,-0.4276,0.1954,0.695,0.6214,-0.625,0.3052,0.3684,0.0106,-0.0526,-0.1158,-0.0948,0.3894,0.7474,0.8526,0.8106,0.7684,0.7264,0.7052,0.7894,0.2842,0.8736,0.8736,0.5368,0.8526,1,0.9158,0.9158,0.5368,0.7264,0.7684,0.7264,0.6422,0.7052,0.4526,0.6,0.579,0.1158,0.3034,0.3708,-0.0112,-0.3708,-0.3258,-0.3258,0.3034,0.6854,0.7528,0.7304,0.7752,0.7078,0.3708,0.4832,0.4158,0.955,1,0.8426,0.7978,0.8876,0.6854,0.7078,0.528,0.4606,0.4158,0.663,0.6404,0.573,0.3484,0.528,0.573,0.3034,0.3828,0.5062,0.2098,-0.2592,-0.2098,-0.3086,-0.0618,0.6544,1,0.5062,0.7038,0.6296,0.4074,0.432,0.358,0.7284,0.8766,0.4074,0.2346,0.7284,0.5308,0.4814,0.3334,0.2346,0.284,0.0618,0.432,0.432,0.284,0.2346,0.3086,0.2098,-0.4244,-1,-1,1,-0.6,1,-0.6,-0.8,-1,-0.4286,-0.4286,-0.508,0,-0.1746,-0.3016,-0.0794,0.0318,0.1904,0.3334,0.762,0.5874,0.746,0.746,0.381,0.6984,0.8412,0.5396,0.4286,0.9524,1,0.635,0.635,0.1746,0.1746,0.381,0.254,0,-0.238,0.0318,0.0318,-0.5874,'22'
-0.1574,0.3736,0.8378,1,0.6152,0.4244,0.2592,0.24,0.4436,0.5166,0.5166,0.256,0.097,-0.0684,-0.2114,-0.1192,-0.1414,-0.151,0.0652,0.275,0.3926,0.2782,0.0048,-0.2146,-0.3386,-0.2972,-0.3672,-0.4594,-0.2114,-0.1892,0.0112,0.2972,-0.0528,0.4884,0.9578,1,-0.1502,-0.446,-0.573,-0.5688,-0.4164,-0.5222,-0.4588,-0.2178,-0.0824,0.1162,0.057,0.2558,0.3362,0.408,0.5434,0.5772,0.6576,0.8732,0.7758,0.239,-0.091,-0.1206,-0.2854,-0.2854,-0.1036,-0.1502,-0.057,0.3954,-0.093,0.3582,1,0.8744,-0.3348,-0.6698,-0.6046,-0.6372,-0.893,-0.8186,-0.8698,-0.6372,-0.7582,-0.6232,-0.5348,-0.2884,0.0512,0.4186,0.9302,0.9768,1,0.6372,0.9488,0.9768,0.828,0.5582,0.4046,0.2698,0.4558,0.4094,0.786,0.9906,-0.2762,0.3584,0.7324,0.482,0.2898,-0.0154,-0.2898,-0.3414,-0.4134,-0.4168,-0.4134,-0.5094,-0.2864,-0.0806,0.0704,0.3996,0.7976,0.904,1,0.9932,0.8834,0.8868,0.5472,0.3138,0.06,0.084,0.036,0.0772,0.283,0.41,0.6672,0.681,-0.3238,0.468,0.7774,1,0.7732,0.0928,-0.2948,-0.1958,-0.5134,-0.464,-0.336,-0.064,0.2908,0.6082,0.5752,0.5134,0.2866,0.2536,0.4598,0.8474,0.868,0.0104,-0.3568,-0.435,-0.5298,-0.4556,-0.4928,-0.6082,-0.2866,-0.0722,0.3196,0.2536,-0.3444,0.5574,0.7828,1,0.5782,-0.1148,-0.332,-0.3778,-0.4698,-0.2066,0.0606,-0.1732,-0.1398,-0.428,-0.549,-0.62,-0.6242,-0.453,-0.332,-0.2234,-0.2526,-0.499,-0.5866,-0.5658,-0.5198,-0.5408,-0.7704,-0.8038,-0.8204,-0.6326,-0.4572,-0.4906,-0.053,0.8442,1,0.1776,-0.2772,0.1464,-0.0904,0.053,0.0904,0.0032,-0.4392,-0.5888,-0.7758,-0.5264,-0.813,-0.8566,-0.3956,-0.4766,-0.5514,-0.514,-0.6074,-0.62,-0.651,-0.5202,-0.4766,-0.6324,-0.8256,-0.9066,-0.7944,-0.6822,-0.5514,-0.514,0.2558,0.814,0.814,1,0.814,0.628,0.4418,0.5348,0.7674,0.721,0.3488,0.1628,0.0698,0.0232,-0.1628,-0.0698,0.2094,-0.1162,-0.1162,0.3488,0.3954,0.1162,0.0698,0.0698,-0.3024,-0.1628,-0.0698,0.0232,0.0232,-0.0698,0.1628,0.0698,0.0588,0.4902,0.8824,1,0.8432,0.5294,0.451,0.6078,0.8824,0.804,0.4902,0.1764,0.255,-0.098,-0.0588,0.1764,0.0588,0.0196,0.3726,0.4902,0.6078,0.5294,0.0588,0.0588,-0.2156,0.0588,0.1372,0.098,0.098,0.2156,0.451,0.647,-0.0136,0.3424,0.5342,0.4794,-0.5342,-0.452,-0.452,-0.6712,-0.4246,-0.452,-0.4794,-0.7534,-0.8082,-0.2876,-0.3424,-0.0136,0.5616,0.6712,0.6164,0.589,0.6438,1,0.9452,0.4246,-0.0136,0.0958,-0.0136,-0.041,0.0136,-0.041,0.2876,0.3972,-0.9644,-0.9656,-0.7654,0.2492,0.3282,0.824,1,0.378,-0.6508,-0.7718,-0.7668,0.666,0.782,-0.174,-0.5092,-0.2518,-0.2746,-0.355,-0.3066,-0.3728,-0.5526,-0.7438,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.9552,-0.2962,0.4488,1,1,1,1,-0.6858,-0.8062,-0.8062,0.5772,0.6284,-0.2226,-0.5314,-0.2954,-0.1706,-0.2702,-0.3698,-0.4902,-0.6464,-0.7872,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.96,-0.2468,-0.8034,-0.7768,-0.5834,-0.6134,-0.8,-0.8834,-0.95,-0.8434,-0.846,-0.87,-0.756,-0.846,-0.816,-0.736,-0.8074,-0.931,-0.911,-0.9038,-0.9528,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,1,0.6858,1,1,1,-0.0572,1,1,0.3142,0.8858,-0.6572,-0.6572,-0.8286,-0.3428,-0.3714,-0.6858,-0.7142,-0.4572,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.6372,0.6318,0.6152,0.5952,0.5276,0.4022,0.2312,-0.0062,-0.0658,0.0508,-0.5168,-0.5422,-0.5774,-0.6354,-0.709,-0.7738,-0.6798,-0.3658,-0.1338,-0.385,-0.3866,0.2352,-0.8294,-0.3312,0.473,0.9012,0.9776,1,-0.5,0.1072,0.2678,0.3214,0.6072,0.6608,0.4464,0.6072,0.6428,0.5178,0.6428,0.5,0.5178,0.5178,0.6608,0.8392,0.7322,0.7142,0.8928,1,0.8392,0.8214,0.4286,0.4822,0.5892,0.6428,0.625,0.3572,0.1072,0.1072,-0.2678,-0.4286,-0.322,0.2882,0.305,0.2204,-0.0848,0.0508,0.2712,0.7118,0.4068,0.305,0.7118,0.5932,0.5424,0.3898,0.3728,0.356,0.4406,0.5932,0.661,1,0.7458,0.6272,0.4746,0.5594,0.5762,0.5594,0.6102,0.4068,0.4406,0.1356,-0.0678,-0.3898,0.353,0.5686,0.5294,0.098,0.0392,0.1568,0.5098,0.804,0.2942,0.2746,0.7648,0.745,0.2746,0.3138,0.3334,0.7254,0.804,0.4118,0.549,1,0.7058,0.5686,0.6274,0.3922,0.4118,0.5294,0.5294,0.255,0.2746,0.196,0.1568,-0.098,0.6624,1,-1,-1,-1,-1,-1,-0.8,-1,0.9286,0.7142,0.6428,0.75,1,0.9642,0.3572,0.2858,0.5358,0.6428,0.4642,0.4286,0.3928,0.25,0.4286,0.5358,0.25,0.0714,0,0.1428,0.3572,0.3572,0.3214,0.1428,-0.0358,-0.2142,0.25,0.4642,0.1428,0.1428,0,-0.1786,'23'
-0.2854,0.1432,0.4494,0.5934,0.9636,1,0.4804,0.391,0.5096,0.6226,0.7102,0.8578,0.845,0.7502,0.6372,0.5242,0.4494,0.5278,0.752,0.7448,0.9562,0.8268,0.5168,0.278,0.3218,0.4568,0.4422,0.6336,0.681,0.8196,0.6262,0.6572,-0.028,0.535,0.6666,0.7816,0.7872,0.7788,0.4174,0.944,1,0.888,0.7226,0.1876,0.14,0.1288,-0.2044,-0.1204,-0.0392,-0.1064,0.2606,0.4902,0.6162,0.479,-0.1568,-0.2942,-0.2492,0.0056,0.0224,0.4174,0.605,0.5518,0.2044,0.1372,-0.1746,0.3804,0.808,1,0.6346,0.4058,0.311,0.2554,0.6092,0.4358,0.6232,0.355,0.2138,0.126,0.1006,0.0242,-0.0196,0.1654,0.3132,0.4358,0.563,0.5352,0.0104,-0.045,-0.2254,-0.1768,-0.126,0.0612,0.1492,0.2994,0.3618,0.637,-0.1826,0.3192,0.458,0.5902,0.0258,-0.2072,-0.6774,-0.6104,-0.467,-0.4132,-0.42,-0.3774,-0.1938,-0.0236,0.131,0.3102,0.4244,0.7312,0.8768,0.9866,1,0.9306,0.7536,0.5632,0.3684,0.2744,0.243,0.3258,0.3818,0.514,0.823,0.9328,-0.3004,0.0772,0.5236,0.5516,-0.1782,-0.4936,-0.5344,-0.4228,-0.573,-0.5516,-0.44,-0.5,-0.324,-0.1652,-0.0386,0.339,0.631,0.6438,1,0.9742,0.8648,0.6696,0.588,0.2554,0.1824,0.1974,0.1052,0.2424,0.3948,0.5794,0.7082,0.766,-0.1834,0.2922,1,0.8482,0.6562,0.1662,-0.0602,-0.0688,-0.1806,0.0286,0.0488,0.1806,0.5214,0.3696,0.4068,0.4212,0.2722,0.3782,0.5158,0.828,0.7078,0.0458,-0.2808,-0.3754,-0.427,-0.318,-0.4442,-0.2206,0.023,0.3554,0.553,0.3496,-0.066,0.2894,1,0.8018,0.6384,0.0598,-0.0188,-0.0786,-0.0724,0.2642,0.0472,-0.346,-0.4968,-0.4906,-0.5912,-0.588,-0.5284,-0.39,-0.2672,-0.132,-0.3396,-0.5314,-0.7422,-0.5944,-0.4276,-0.6572,-0.8176,-0.651,-0.5754,-0.6194,-0.4466,-0.5346,-0.255,0.1372,0.4902,0.647,0.7254,0.7254,0.3334,0.1764,0.1372,0.2942,0.4118,0.5686,0.804,1,0.8432,0.2942,0.3334,0.4118,0.647,0.7254,0.9608,0.804,0.3726,0.1764,0.2156,0.3726,0.255,0.3726,0.5294,0.647,0.6862,0.647,-0.1428,0.2142,0.5358,0.6786,0.9286,0.9286,0.3928,0.2858,0.4286,0.5,0.5358,0.7142,0.8572,1,0.8214,0.5714,0.5,0.5,0.7142,0.8214,1,0.8214,0.5714,0.2858,0.2142,0.5358,0.2858,0.4642,0.7858,0.75,0.7142,0.6072,-0.0684,0.4794,0.6438,0.8356,0.589,0.5342,0.452,0.8082,1,0.6986,0.589,-0.1232,-0.315,-0.0958,-0.5068,-0.2876,0.0136,-0.0684,0.1506,0.589,0.6712,0.0958,-0.0136,-0.0684,-0.0684,0.041,-0.2328,-0.1506,0.3972,0.452,0.6438,0.2054,-1,-1,-1,-1,-1,-1,-0.984,-0.9756,-0.9772,-0.9102,-0.2034,0.3382,0.7822,-0.5712,0.0488,0.2878,-0.3998,-0.521,-0.2688,-0.5102,-0.6816,-0.7692,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9898,-0.985,-0.963,-0.815,-0.5038,0.4742,0.5358,-0.774,-0.5062,-0.321,-0.4552,-0.5436,-0.5412,-0.7296,-0.8674,-0.9092,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9456,-0.86,-0.87,0.2466,-0.74,-0.683,-0.713,-0.7886,-0.7558,-0.6958,-0.4116,-0.456,-0.6442,-0.9496,-0.947,-0.9562,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3428,-0.7714,1,1,1,1,1,1,0.5142,0.1142,0.1714,-0.8572,-0.2858,-0.0572,-0.4,0.0858,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,0.9396,0.8892,0.6748,0.3804,-0.9922,-0.974,-0.9558,-0.8914,-0.75,-0.6614,-0.6324,-0.524,-0.5678,-0.4764,-0.6534,0.7412,-0.4168,-0.2468,0.0638,0.4928,0.8508,1,-0.5184,-0.089,-0.0786,0.068,0.2774,0.3508,0.3718,0.6336,0.4974,0.466,0.3298,0.4974,0.5602,0.5812,0.6754,0.8116,0.8116,0.801,0.843,0.9162,1,0.9686,0.8952,0.9162,0.7172,0.644,0.6858,0.4346,0.487,0.0472,0.0052,-0.5078,0.1718,0.293,0.3636,0.1212,0.2324,0.101,0.3334,0.7374,0.5858,0.5454,0.8586,0.7576,0.4748,0.4646,0.4546,0.7676,0.8282,0.697,0.7374,0.6666,1,0.8282,0.808,0.6464,0.596,0.5858,0.4142,0.4546,0.3738,0.3232,0.2424,0.091,0.3548,0.914,0.8924,0.663,0.3764,0.4982,0.8924,1,0.5986,0.7634,0.9856,0.7348,0.4266,0.4336,0.6702,0.8064,0.7562,0.699,0.706,0.613,0.7204,0.4624,0.2044,0.025,0.0108,-0.0394,0.0036,0.2186,-0.0036,-0.1326,-0.1542,-0.319,-0.585,-1,-1,1,-0.4,-1,-1,-0.5666,-1,0.6962,1,0.6202,0.1898,0.114,0.0886,0.114,0.114,0.0632,0.2152,0.0632,-0.0126,0.367,-0.0126,0.3164,0.1392,0.0632,-0.0126,0.038,-0.0632,0.2152,0.2152,0.0886,0.2152,0.1898,0.2406,0.1392,0.0126,0.1392,-0.0632,-0.038,-0.2152,'23'
-0.2152,0.2828,0.2236,0.4852,0.7974,1,0.7974,0.519,0.3334,0.2742,0.2742,0.3164,0.4684,0.6034,0.7216,0.9746,0.941,0.73,0.6372,0.7806,0.7638,0.6962,0.4852,0.2406,0.1476,0.0464,-0.0886,0.0464,0.232,0.038,0.3502,0.46,-0.4184,-0.012,0.1314,0.267,0.6892,0.6972,0.5776,0.498,0.2908,0.2112,0.275,0.3546,0.3864,0.6494,0.8168,1,0.6812,0.6176,0.6812,0.6574,0.8486,0.6892,0.4104,0.243,0.251,0.2192,0.1714,0.0756,0.2828,0.275,0.4184,0.4422,-0.4216,-0.0764,0.1726,0.237,0.6546,0.751,0.8714,0.6144,0.3172,0.3654,0.269,0.3574,0.6224,0.7108,1,0.9116,0.984,0.8554,0.8232,0.8554,0.759,0.8474,0.4698,0.3976,0.253,0.253,0.3092,0.3654,0.3092,0.3654,0.6868,0.759,-0.4296,-0.1094,0.1016,0.1876,0.4766,0.8438,0.9296,0.5312,0.211,0.3516,0.3282,0.336,0.5234,0.789,0.8516,1,0.9532,0.7422,0.7968,0.7734,0.8906,0.75,0.4922,0.289,0.2266,0.289,0.1328,0.164,0.4454,0.336,0.4218,0.6172,-0.4692,-0.1846,0.0692,0.1308,0.3846,0.8538,0.8924,0.3308,0.1924,0.2924,0.323,0.2616,0.3924,0.7846,0.8076,1,0.8308,0.677,0.7846,0.8076,0.8846,0.4462,0.3692,0.2924,0.1076,0.0924,0.2076,0.2692,0.323,0.3154,0.5616,0.6692,-0.5158,-0.2894,0.0692,0.239,0.434,0.7484,0.654,0.3334,0.132,0.0944,0.132,0.2076,0.4088,0.6792,0.9056,1,0.9056,0.7988,0.8616,0.8238,0.717,0.3836,0.2704,0.151,0.0692,0.0692,0.1258,0.1636,0.2202,0.239,0.4906,0.5534,-0.562,-0.0476,0.0762,0.438,0.8,0.8096,0.5524,0.0096,-0.181,-0.2,-0.2,0.0286,0.1428,0.5048,0.7334,0.9238,0.8666,1,0.8858,0.8286,0.5238,-0.0666,-0.4,-0.238,-0.381,-0.419,-0.4476,-0.4762,-0.2572,-0.038,-0.019,0.2666,-0.1154,0.3846,0.2308,0.5384,0.7308,0.9616,0.8462,0.5,0.2692,0.3846,0.3846,0.423,0.5384,0.5384,0.923,1,0.9616,0.7308,0.6154,0.577,0.6538,0.4616,0.5,0.1538,0.1538,-0.2692,-0.1924,0,0.1538,-0.1924,0.2692,0.423,-0.0434,0.2754,0.3334,0.4492,0.826,0.913,0.7972,0.6232,0.4782,0.3624,0.4492,0.4782,0.5072,0.6812,0.826,1,0.971,0.7392,0.7392,0.7682,0.826,0.7392,0.5362,0.4492,0.3914,0.4202,0.2754,0.3044,0.5072,0.5072,0.6232,0.6522,-0.4414,-0.2252,0.099,0.2252,0.3874,0.7478,0.7118,0.4054,0.1172,0.1532,0.2252,0.3334,0.4054,0.7118,0.8738,1,0.8918,0.7838,0.8558,0.7478,0.7658,0.4954,0.3694,0.2432,0.1532,0.1892,0.2252,0.2432,0.3154,0.3694,0.5316,0.6396,-1,-1,-1,-1,-1,-1,-1,-1,-0.9728,-0.9674,-0.7308,0.051,0.3882,0.4576,1,0.4548,0.467,0.573,0.6206,0.444,0.1842,-0.5582,-0.928,-0.9524,-0.966,-0.879,-0.7756,-0.947,-0.9484,-0.9592,-0.9646,-0.9632,-0.9714,-1,-1,-1,-1,-1,-1,-1,-1,-0.9886,-0.9872,-0.8836,-0.469,-0.1414,0.0696,1,0.3652,0.5568,0.667,0.6288,0.5074,0.0042,-0.8108,-0.9602,-0.98,-0.983,-0.8532,-0.775,-0.8598,-0.794,-0.7384,-0.7858,-0.8392,-0.7936,-1,-1,-1,-1,-1,-1,-1,-1,-0.9,-0.8334,-0.82,-0.6334,-0.5934,-0.48,-0.44,-0.5268,-0.4468,-0.5268,-0.48,-0.425,-0.47,-0.585,-0.61,-0.76,-0.82,-0.76,-0.2534,0.7232,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6858,0.3428,1,1,1,1,0.1142,-0.9428,-1,-1,-0.8572,1,1,1,1,-0.7142,0.0572,1,1,1,0.3142,-0.8,-0.8572,-0.9428,-0.9142,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6,-0.6824,-0.8598,-0.6228,-0.1892,-0.011,0.7004,1,-0.0956,0.1826,0.2348,0.4434,-0.026,-0.026,0.6,1,0.8086,0.513,0.6522,0.774,0.8434,0.2,0.1652,0.4608,0.4608,0.1652,0.0608,0.0782,0.6522,0.7566,0.2348,0.3218,0.4086,0.4086,0.2696,0.2522,0.3392,0.5478,0.2696,-0.2,-0.0118,0.1882,0.3412,0.5412,0.2706,0.2236,0.4588,1,0.5058,0.3648,0.4706,0.5412,0.7176,0.5648,0.5412,0.5648,0.447,0.4824,0.4706,0.4706,0.3412,0.1764,0.2942,0.4706,0.4942,-0.047,0.153,0.1764,0.047,0.0588,0.0352,-0.2236,0.011,0.5164,0.7802,0.934,0.5164,0.2748,0.5934,0.5274,0.7912,0.7252,0.901,0.8132,0.8242,0.6374,0.7472,0.5054,0.5824,0.5604,0.6704,0.6484,1,0.8792,0.6264,0.5824,0.3296,0.5274,0.6704,0.5164,0.5384,0.4616,0.4726,-0.2198,-0.997,1,-1,-1,-1,-1,-1,-1,1,-0.8342,-0.6906,-0.6244,-0.4806,-0.569,-0.547,-0.5248,-0.547,-0.3702,-0.3592,-0.2044,-0.2266,-0.3702,-0.1382,0.0498,0.0608,-0.116,0.116,0.116,0.2818,0.4254,0.5802,0.337,0.4034,0.4586,1,0.9006,0.569,0.5028,0.4144,0.348,0.2708,'24'
-0.5746,-0.1132,0.077,0.2036,0.7376,0.8734,0.7104,0.5204,0.2218,0.1402,0.2036,0.267,0.3304,0.5204,0.6924,0.9638,1,0.6832,0.7556,0.7738,0.629,0.638,0.439,0.4028,0.1494,0.1946,0.086,0.1222,0.2398,0.1946,0.4842,0.4932,-0.4872,-0.0916,0.1428,0.2674,0.641,0.6484,0.7362,0.6556,0.326,0.326,0.4212,0.326,0.3334,0.6704,0.8462,1,0.7948,0.8828,0.8534,0.8096,0.8534,0.7362,0.5164,0.26,0.2748,0.2968,0.2454,0.2162,0.1576,0.2674,0.4798,0.4946,-0.5016,-0.1362,0.0366,0.1694,0.5216,0.5614,0.6014,0.5748,0.2492,0.2026,0.3356,0.3024,0.3422,0.6412,0.7142,1,0.907,0.7408,0.7276,0.794,0.6944,0.6878,0.4486,0.382,0.2226,0.1894,0.2624,0.2624,0.2758,0.3422,0.4418,0.5482,-0.419,-0.0878,0.169,0.2702,0.6216,0.6148,0.7636,0.6284,0.4122,0.3918,0.3986,0.4122,0.527,0.6622,0.9528,1,0.9324,0.8648,0.8784,0.8716,0.9392,0.554,0.4864,0.4054,0.2838,0.3784,0.1824,0.1824,0.419,0.3784,0.5202,0.6554,-0.4296,-0.1056,0.183,0.2606,0.655,0.6056,0.6902,0.5422,0.4508,0.3592,0.331,0.4366,0.5634,0.662,0.9788,0.9788,1,0.9084,0.9508,0.9436,0.9436,0.493,0.3944,0.3732,0.2536,0.2746,0.155,0.2254,0.3944,0.3944,0.4508,0.683,-0.516,-0.2128,0.1138,0.2828,0.5336,0.4052,0.2944,0.2478,0.2304,0.2128,0.172,0.2304,0.4402,0.5102,0.7434,0.9534,1,0.895,0.8718,0.8892,0.6676,0.3702,0.2594,0.2012,0.038,0.0846,0.0846,0.172,0.1138,0.1312,0.3586,0.4286,-0.5836,0.0038,0.3086,0.3086,0.3234,0.145,0.1152,-0.0334,-0.0408,-0.0408,0.0334,0.0112,0.1822,0.4722,0.8066,0.9628,0.9034,0.881,0.9554,1,0.5614,-0.0334,-0.1152,-0.1524,-0.316,-0.3086,-0.1896,-0.1078,0.0186,0.0112,0.0408,0.3904,-0.75,0.125,0.1876,0.4376,0.6876,0.875,0.8124,0.6876,0.5,0.4376,0.4376,0.4376,0.5,0.5624,0.8124,1,1,0.6876,1,0.8124,0.75,0.75,0.6876,0.75,0.3124,0.4376,0.25,0.25,0.25,0.4376,0.875,0.875,-0.375,-0.0624,0.1562,0.25,0.6562,0.75,0.7188,0.5624,0.3124,0.3124,0.3438,0.3438,0.4062,0.5312,0.8124,1,1,0.7812,0.7812,0.75,0.7188,0.5,0.5312,0.2812,0.1876,0.25,0.0624,0.125,0.2812,0.2188,0.375,0.4688,-0.4546,-0.1736,0.1404,0.2562,0.5868,0.5206,0.405,0.3224,0.3388,0.3058,0.2232,0.3058,0.5372,0.5372,0.8016,0.9174,1,0.9338,0.9174,0.9008,0.7852,0.4546,0.372,0.3224,0.157,0.1404,0.2066,0.2892,0.2728,0.2728,0.471,0.5538,-1,-1,-1,-1,-1,-1,-1,-1,-0.9702,-0.9844,-0.4958,0.0048,0.6094,0.6594,0.7802,0.9678,0.957,0.9068,0.8016,0.7288,0.2736,-0.5962,-0.8912,-0.9342,-0.9762,-0.9236,-0.8876,-0.939,-0.9654,-0.9726,-0.9702,-0.9714,-0.9666,-1,-1,-1,-1,-1,-1,-1,-1,-0.9924,-0.9938,-0.8004,-0.5206,0.0034,0.0474,0.279,1,0.6042,0.451,0.3564,0.1594,-0.2736,-0.8548,-0.9684,-0.9804,-0.9888,-0.887,-0.8936,-0.8628,-0.8214,-0.855,-0.7926,-0.8332,-0.8274,-1,-1,-1,-1,-1,-1,-1,-1,-0.87,-0.9668,-0.72,-0.5268,-0.4868,-0.4534,-0.3868,-0.3134,-0.3,-0.4,-0.39,-0.42,-0.29,-0.445,-0.5234,-0.58,-0.7868,-0.62,-0.0468,0.79,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,1,1,-0.0286,-0.6286,-0.9714,-0.9428,-0.4,1,1,1,1,-0.5428,0.6858,1,1,1,0.1428,-0.5714,-0.9142,-0.9714,-0.8572,1,1,1,1,1,1,1,1,1,1,-0.8604,-0.8782,-0.8782,-0.9316,-0.9506,-0.9734,-1,-1,-1,-1,-0.6666,-0.6824,-0.7626,-0.6518,-0.1024,0.0294,0.1952,1,-0.077,0.3676,0.7094,0.7264,0.47,0.4358,0.5726,0.9488,1,0.7606,0.7094,0.624,0.624,0.5898,0.47,0.5384,0.624,0.5556,0.3334,0.3162,0.7948,0.7948,0.5898,0.3504,0.47,0.4358,0.4018,0.0428,0.0598,0.3676,0.2992,-0.0428,-0.0358,0.3928,0.6964,0.7858,0.4822,0.3928,0.5,0.9286,1,0.75,0.6428,0.375,0.2322,0.2858,-0.0714,0.0536,0.2858,0.25,0.125,0.4822,0.8392,0.5714,0.4464,-0.0892,-0.3036,-0.0892,-0.2858,-0.2858,-0.375,-0.2142,0.125,-0.1428,-0.54,-0.06,1,1,-0.2,-0.18,0.04,0.52,0.92,0.48,0.44,0.38,0.12,-0.02,-0.1,0.36,0.3,0.12,-0.1,0.48,0.88,0.72,0.42,0.38,0.38,0.36,-0.04,-0.28,-0.24,-0.28,-0.1,-0.3,-0.0386,-1,-1,1,-1,-1,-1,-0.8,1,-0.9156,-0.771,-0.6868,-0.518,-0.5662,-0.518,-0.506,-0.1928,-0.2048,-0.1808,-0.1928,-0.024,-0.1686,-0.253,0.024,0,0.229,0.1084,0.518,0.6266,0.8434,0.5302,0.6144,0.759,0.8674,0.6868,0.7952,0.7952,0.7108,1,0.8192,0.6144,'24'
-0.4008,0.0308,0.58,0.8914,0.9384,1,0.95,0.9002,0.4714,0.2422,-0.0044,-0.166,-0.2746,-0.3538,-0.351,-0.2218,-0.1954,-0.0308,0.0896,0.028,-0.1748,-0.3098,-0.4566,-0.4038,-0.3568,-0.301,-0.0896,-0.0308,-0.0044,-0.2952,-0.4596,-0.5066,-0.4262,-0.1806,0.19,0.2846,0.5018,0.9764,0.8962,0.9434,0.9504,0.9316,1,0.582,0.2988,0.3082,0.216,0.2514,0.3082,0.5064,0.6954,0.7544,0.3224,0.1878,0.1122,0.0768,0.0886,0.131,0.4286,0.3814,0.3978,-0.013,-0.1948,-0.1878,-0.474,-0.2426,0.0952,0.068,0.3764,0.771,0.923,1,0.6508,0.7552,0.8004,0.6894,0.5284,0.4468,0.2812,0.347,0.3538,0.4354,0.687,0.6644,0.4944,0.2336,0.1428,0.118,0.0362,0.2064,0.322,0.5192,0.4966,0.1904,-0.068,-0.1496,-0.4506,-0.2294,0.0772,0.0344,0.4792,0.7312,1,0.9762,0.5338,0.5958,0.6838,0.767,0.8336,0.7574,0.5934,0.4864,0.4316,0.4888,0.6314,0.7622,0.7004,0.3388,0.1796,0.1392,0.0488,0.208,0.1796,0.4008,0.579,0.5292,0.2652,0.1106,-0.4412,-0.1348,0.1036,0.1886,0.7276,0.8554,0.6908,0.5148,0.41,0.1178,0.2284,0.3106,0.583,0.7816,0.8724,0.983,1,0.6624,0.7758,0.7276,0.7418,0.5972,0.3532,0.2256,0.166,0.1008,0.0326,0.146,0.3248,0.4042,0.4382,0.3418,-0.4086,-0.0462,0.1892,0.6152,0.8028,0.7742,0.0524,-0.0174,-0.2846,-0.364,-0.291,-0.2464,0.0048,0.1892,0.2718,0.5326,0.9014,1,0.965,0.7678,0.8188,0.7392,0.7424,0.628,0.3068,0.2496,0.1384,0.0302,0.202,0.2368,0.364,0.4436,-0.3782,0.2056,0.5372,0.8308,0.4576,0.0052,-0.1226,-0.3956,-0.6442,-0.6442,-0.7064,-0.5302,-0.3576,-0.2918,-0.1952,-0.057,0.1676,0.5302,0.917,1,0.893,0.779,0.7962,0.7374,0.4232,0.3368,0.2332,0.0674,0.2124,0.0708,0.4438,0.4232,0.1162,0.5814,1,1,0.814,0.6744,0.814,0.3954,-0.0698,-0.1628,-0.2558,-0.2094,-0.2558,-0.1628,-0.1162,-0.1628,-0.0232,-0.2094,-0.0232,-0.0232,-0.4418,-0.5814,-0.4884,-0.3024,-0.4418,-0.1628,-0.2558,-0.2094,0.0232,0.0232,-0.0698,-0.2558,-0.0566,0.4716,0.5472,1,0.9246,0.585,0.7736,0.3962,0.0566,0.0188,-0.132,-0.2452,-0.132,-0.2452,-0.132,-0.1698,-0.3584,-0.2076,-0.132,-0.0944,-0.0944,-0.132,-0.132,-0.2076,-0.132,-0.283,-0.0944,0.0944,0.0188,0.0566,-0.0566,-0.434,-0.4634,-0.1952,0.0488,0.122,0.6098,0.756,0.7074,0.4634,0.4146,0.1464,0.2196,0.2196,0.5122,0.7804,1,0.9756,0.878,0.6098,0.756,0.7074,0.7074,0.4634,0.2682,0.2196,0.1708,0.1464,-0.0244,0.0732,0.317,0.5122,0.3902,0.3414,-1,-1,-1,-1,-1,-1,-1,-1,-0.7534,-0.9184,-0.631,0.4428,0.679,0.6936,0.6426,0.7258,0.647,0.342,0.3378,0.1788,0.0606,-0.0634,-0.6338,-0.8556,-0.9286,-0.9534,-0.949,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9312,-0.9708,-0.8948,-0.4352,0.2156,0.8098,0.897,0.9216,0.8436,0.3492,-0.028,-0.4316,-0.6086,-0.717,-0.8932,-0.9372,-0.9644,-0.9674,-0.9772,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.952,-0.9768,-0.9668,-0.871,-0.7892,-0.6456,-0.642,-0.6638,-0.7,-0.6884,-0.6834,-0.8078,-0.7256,-0.839,-0.5556,-0.4756,-0.6856,-0.6522,-0.8456,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.0858,-0.8858,1,1,1,-0.7428,-1,-1,-0.9142,-0.7428,-0.6572,-0.7142,-0.6286,0.0858,-0.1714,-0.8286,-0.8286,-0.8858,-0.6858,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.3844,-0.3688,-0.3686,-0.3442,-0.3398,-0.3542,-0.3954,-0.5076,-0.7034,-0.5934,-0.48,0.3764,-0.876,-0.7494,-0.5624,-0.4744,-0.07,-0.575,0.7142,1,0.7516,0.3664,-0.1678,0.2422,0.441,0.6274,0.59,0.3914,0.5652,0.6646,0.5404,0.292,0.3292,0.1678,0.1428,0.031,0.2422,0.292,0.3416,0.267,0.1552,0.2174,0.1926,0.3416,0.4534,0.3168,0.1926,0.1304,0.267,0.056,-0.0526,0.8596,0.8422,1,0.4562,0.4736,0.6492,0.6842,0.7544,0.7544,0.5964,0.9474,0.772,0.2456,0.579,0.6666,0.3334,0.4562,0.4912,0.5964,0.228,0.4386,0.2808,0.4912,0.5438,0.193,0.3334,0.1754,-0.3684,0.0526,-0.0878,-0.4562,0.5,0.9358,0.9102,1,0.7692,0.141,0.2436,0.4488,0.3846,0.3334,0.2692,0.077,0.3718,0.1794,0.2436,0.2436,0.1924,0.1154,0.0642,0.1154,0.2564,0.3334,0.2436,0.2308,0.0642,0.3334,0.1282,0.1794,0.1794,0.2052,-0.0642,-0.6154,-0.908,1,-1,-1,-1,-0.8,-0.6,-1,-1,0.2284,0.3228,0.2598,0.1024,-0.0078,-0.244,-0.307,-0.1654,0.37,0.7166,1,0.7638,0.6692,0.0708,0.0708,0.1812,0.2914,0.0236,-0.2284,-0.3544,-0.2126,-0.5906,-0.1338,0.1338,-0.307,-0.3386,-0.307,-0.244,-0.3386,-0.5748,-0.5748,-0.937,'25'
-0.2848,0.1822,0.9028,0.9244,1,0.838,0.8164,0.2686,0.0878,-0.1202,-0.3414,-0.4332,-0.4062,-0.4872,-0.2982,-0.2766,-0.2524,-0.2172,-0.1148,-0.1956,-0.3144,-0.4198,-0.5736,-0.56,-0.3414,-0.3766,-0.301,-0.4116,-0.4252,-0.5546,-0.5034,-0.5682,-0.402,-0.0674,0.2096,0.2942,0.677,0.877,1,0.8884,0.8596,0.9634,0.7904,0.4808,0.3634,0.2692,0.2576,0.3212,0.302,0.55,0.6038,0.6712,0.2558,0.1826,0.1366,0.1308,0.2924,0.573,0.4596,0.1942,0.002,-0.127,-0.2462,-0.3538,-0.43,-0.1172,0.1034,0.1538,0.4144,0.7672,0.8732,0.8732,0.8402,0.9618,0.9496,1,0.6246,0.5464,0.4804,0.4788,0.4752,0.6542,0.7342,0.814,0.4856,0.3936,0.2962,0.2284,0.2598,0.5586,0.496,0.496,0.2372,0.0878,-0.0894,-0.2094,-0.4332,-0.1544,0.1016,0.0904,0.2468,0.7532,0.7984,1,0.7532,0.676,0.7514,0.8042,0.8626,0.7646,0.614,0.5894,0.5442,0.6404,0.7628,0.8474,0.8136,0.5612,0.3748,0.292,0.305,0.3634,0.3954,0.6252,0.6308,0.354,0.0904,-0.0132,-0.457,-0.218,0.1258,0.2872,0.738,0.9098,0.6038,0.543,0.4382,0.325,0.304,0.3732,0.5242,0.7422,0.9938,1,0.8888,0.8428,0.8322,0.87,0.9874,0.7756,0.5682,0.3816,0.3334,0.3102,0.3102,0.52,0.5828,0.4738,0.3668,0.1614,-0.4234,0.0194,0.326,0.7908,0.6618,0.4794,0.0682,-0.0656,-0.124,-0.2116,-0.275,-0.2554,-0.1046,-0.0706,0.1728,0.4672,0.601,0.9124,0.9854,1,0.9172,0.9538,0.9416,0.7932,0.511,0.506,0.2798,0.2872,0.3188,0.2408,0.4842,0.4476,-0.1154,0.3392,0.492,0.7976,0.5452,-0.2292,-0.4138,-0.4778,-0.7514,-0.7726,-0.826,-0.7122,-0.5418,-0.5098,-0.318,-0.357,-0.3358,-0.0408,0.3464,0.9858,1,0.6696,0.7762,0.5844,0.3322,0.2612,-0.158,-0.2184,-0.3534,-0.2612,-0.0124,-0.0196,-0.122,0.5122,0.9024,1,0.8536,0.7074,0.2682,-0.2196,-0.2196,-0.2196,-0.1708,-0.0732,-0.2196,-0.6098,-0.0732,-0.2196,0.0244,-0.0244,-0.0244,-0.0732,-0.2196,-0.2682,-0.6098,-0.2196,-0.0732,-0.1708,-0.4634,-0.2682,-0.2196,-0.122,-0.0732,-0.1708,0.1428,0.3878,0.9592,1,0.7552,0.6734,0.5102,0.0204,-0.347,-0.2244,-0.102,-0.2244,-0.2244,-0.1428,-0.102,-0.1428,-0.2244,-0.2654,-0.347,-0.1428,-0.3062,-0.2244,-0.1428,-0.102,-0.102,-0.2244,-0.1836,-0.2244,-0.1428,-0.2654,-0.0204,-0.2244,-0.4772,-0.159,0.1364,0.409,0.659,0.7272,0.2046,0,-0.0228,-0.0682,-0.2272,-0.0454,-0.0454,0.1364,0.2728,0.7954,0.8182,1,0.7954,0.841,0.8636,0.7954,0.6136,0.5682,0.341,0.3182,0.2046,0.409,0.4318,0.5,0.5454,0.4772,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7668,-0.6518,0.1166,0.8132,0.6996,0.7578,0.6144,0.5202,0.6368,0.7638,0.3482,0.2512,-0.55,-0.7878,-0.9074,-0.9536,-0.9522,-0.9686,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.955,-0.93,-0.7344,-0.1734,0.3918,0.7158,0.9082,0.5506,0.3058,0.036,-0.5008,-0.6778,-0.9054,-0.9484,-0.9692,-0.976,-0.9812,-0.9848,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9314,-0.8782,-0.8968,-0.7338,-0.6544,-0.64,-0.5686,-0.5944,-0.6446,-0.7216,-0.7172,-0.893,-0.9186,-0.8634,-0.68,-0.6934,-0.8934,-0.9068,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,-0.6,1,1,-0.2858,-0.9428,-0.9714,-0.8572,-0.8572,-0.5714,-0.6,0.4286,0.1428,-0.9142,-0.8572,-0.9142,-0.9428,-0.9142,-1,-1,-1,-1,-1,-1,0.7424,0.7712,0.8488,0.8934,0.98,1,1,1,1,1,-0.4006,-0.4076,-0.3516,-0.3122,-0.31,-0.3204,-0.3152,-0.4076,-0.5788,-0.4362,-0.5466,0.6706,-0.915,-0.8776,-0.8254,-0.7416,-0.666,-1,-0.134,0.299,0.2578,0.5258,0.4226,0.2784,0.0928,0.402,0.5258,0.3196,0.7526,0.897,1,0.134,0.7526,0.402,0.2784,0.0516,0.2372,0.402,0.4226,0.5876,0.5052,0.5258,0.3196,0.4846,0.6908,0.2164,0.0928,0.0722,-0.031,-0.134,0.6404,1,0.809,0.5956,0.0898,0.4044,0.528,0.472,0.3484,0.4494,0.663,0.3708,0.663,0.472,0.4832,0.4494,0.191,-0.0112,0.236,0.0112,0.1686,0.4606,0.3146,0.3146,0.382,0.2134,0.4382,0.472,-0.0112,0.0786,0.2584,-0.2134,0.653,1,0.9694,0.4184,0.296,0.4082,0.296,0.3878,0.3878,0.1836,0.1836,0.1428,0.551,0.1632,0.1326,0.2552,0.0204,0.1326,0,0.1938,0.3062,0.3368,0.0612,0,0.0408,0.2244,0.2142,-0.0204,0.0306,-0.1428,-0.0408,-0.1734,-0.9304,1,-1,-1,-1,-0.6,-1,-1,-1,-0.193,0.0526,-0.035,0.4912,0.228,-0.0526,0.0878,0.228,0.0176,0.8246,0.9824,1,0.386,0.193,0.386,0.807,0.0176,0.2106,0.193,0.2808,0.3158,-0.035,0.228,0.1404,0.0176,0.1052,-0.1052,0.1404,0.1578,0.0526,-0.2456,-0.5264,'25'
-0.1582,0.367,0.5824,0.7292,0.217,-0.2756,-0.4094,-0.566,-0.6052,-0.416,-0.403,-0.5758,-0.5008,-0.2234,0.0082,0.1028,0.5172,0.6314,1,0.8792,0.765,0.8336,0.85,0.9314,0.7944,0.367,0.1778,0.168,0.305,0.279,0.4324,0.465,-0.259,0.1952,0.4476,0.5804,0.1554,-0.2696,-0.506,-0.6254,-0.6148,-0.5698,-0.5272,-0.5298,-0.6334,-0.352,-0.3094,-0.2218,0.0146,0.0756,0.4448,0.7238,0.9124,0.753,0.7954,1,0.9442,0.7398,0.5484,0.3414,0.3546,0.3414,0.4714,0.5006,-0.2122,0.2428,0.426,0.5236,-0.148,-0.426,-0.6794,-0.7984,-0.7038,-0.6336,-0.7344,-0.7374,-0.6122,-0.5756,-0.5298,-0.4748,-0.3068,-0.023,0.0962,0.4138,0.7038,0.9878,0.9236,0.771,0.9146,1,0.8778,0.6062,0.5908,0.4596,0.4564,0.652,-0.1592,0.2428,0.5746,0.5712,-0.484,-0.7788,-0.7622,-0.732,-0.856,-0.8994,-0.8158,-0.8694,-0.8726,-0.6616,-0.7386,-0.598,-0.35,-0.2696,-0.0586,0.34,0.742,0.99,0.9632,0.7622,0.809,1,0.9866,0.7722,0.7386,0.5042,0.5912,0.6684,-0.2168,0.122,0.7122,0.5738,-0.3624,-0.7414,-0.6684,-0.6758,-0.909,-0.938,-0.9234,-0.8288,-0.8506,-0.898,-0.898,-0.7304,-0.4864,-0.4026,-0.2276,0.2022,0.6502,1,0.9418,0.5556,0.541,0.8252,0.887,0.7888,0.7268,0.581,0.5592,0.6138,-0.104,0.513,0.9666,0.6988,-0.2416,-0.7584,-0.6506,-0.6394,-0.8774,-0.829,-0.8884,-0.736,-0.539,-0.5688,-0.6172,-0.6654,-0.3568,-0.238,0.052,0.3754,0.8328,1,0.9406,0.7064,0.5948,0.974,0.9852,0.8438,0.7324,0.5874,0.5688,0.6728,-0.1312,0.6968,1,0.5738,-0.4754,-0.4632,-0.6106,-0.7132,-0.9304,-0.8606,-0.9262,-0.8074,-0.7664,-0.6926,-0.664,-0.6066,-0.4754,-0.336,-0.3402,0.1844,0.6804,0.8074,0.4836,0.3812,0.4344,0.6926,0.8114,0.455,0.1886,0.1106,-0.0286,-0.0984,0.1052,0.6316,0.6316,0.7368,0.3684,-0.3684,-0.421,-0.579,-0.8948,-0.2632,-0.3684,-0.7894,-0.0526,0.1052,0.3684,0.6842,0.9474,1,0.9474,0.6316,0.7368,0.7894,0.7368,0.8948,0.579,0.3158,0.2106,0.421,0.5264,0.3684,0.579,0.5264,-0.2,0.4286,0.6,0.6572,0.2,-0.4286,-0.6,-0.9428,-0.7142,-0.4858,-0.5428,-0.7142,-0.9428,-0.2572,0.0286,0.2572,0.7142,0.7714,0.8286,0.7714,0.7142,0.9428,1,0.6,0.6572,0.1428,0.0858,-0.0286,0.2,0.3142,0.4286,0.6,-0.3012,0.1566,0.3494,0.4698,0.0362,-0.4458,-0.6868,-0.8796,-0.7108,-0.735,-0.7108,-0.6626,-0.6386,-0.5422,-0.4698,-0.4698,-0.1808,-0.0362,0.1084,0.5422,0.5904,0.9036,0.8796,0.9036,0.8796,1,0.5904,0.3734,0.4458,0.3494,0.3734,0.5422,-0.967,-0.964,-0.9684,-0.9744,-0.922,-0.865,-0.802,-0.7404,-0.715,-0.631,-0.3848,0.4718,0.9774,0.7674,0.3548,0.0488,-0.0458,-0.1222,-0.2288,-0.2708,-0.2274,-0.2784,-0.5768,-0.802,-0.907,-0.9294,-0.9054,-1,-1,-1,-1,-1,-1,-0.9666,-0.9586,-0.9558,-0.8544,-0.724,-0.745,-0.516,-0.4246,-0.3086,-0.245,-0.4188,0.1144,0.9218,0.8508,0.4682,0.1348,-0.0616,-0.2066,-0.3682,-0.5028,-0.5376,-0.5972,-0.7508,-0.8318,-0.8914,-0.8826,-0.9008,-1,-1,-1,-1,-1,-1,-0.9334,-0.9268,-0.7,1,1,0.7332,1,1,1,1,-0.0968,-0.614,-0.552,-0.46,-0.3964,-0.46,-0.5146,-0.68,-0.7582,-0.84,-0.82,-0.8892,-0.88,-0.6068,-0.1934,-0.1668,-0.5,-1,-1,-1,-1,-1,-1,-0.6286,-0.7142,1,1,1,-0.2572,-0.2286,-0.7714,-0.6858,-0.2572,1,1,-0.6286,-0.9428,-0.8858,-1,-1,-1,-1,-1,-0.8286,-0.7142,-0.4286,-0.4286,-0.9428,-0.8,0,-1,-1,-1,-1,-1,-1,-0.2116,-0.1788,-0.1594,-0.1406,-0.1144,-0.1086,-0.1096,-0.1232,-0.2614,-0.4398,0.2628,0.3016,0.3282,0.3614,0.428,0.4996,0.56,0.6774,0.8254,0.868,-0.56,0.2706,-0.4392,-0.2914,-0.084,0.242,0.6376,-0.55,-0.3728,-0.33,-0.7078,-0.5862,-0.7504,-0.5534,-0.5666,-0.527,-0.5534,-0.596,-0.5994,-0.5534,-0.573,-0.3662,-0.3432,-0.1954,-0.0378,0.051,-0.0114,0.1724,0.33,0.261,0.3366,0.4318,0.34,0.2086,0.2546,0.5764,0.78,1,0.8522,0.5764,-0.2006,-0.1646,-0.6856,-0.7724,-0.9132,-0.7306,-0.7066,-0.3922,-0.2844,-0.6048,-0.491,-0.2874,-0.3234,-0.3084,-0.2036,-0.1018,0.048,0.2126,0.1976,0.1886,0.524,0.548,0.4282,0.548,0.3802,0.3982,0.6378,0.964,0.961,1,0.8324,0.6138,0.0134,0.0636,-0.378,-0.6354,-0.6354,-0.5652,-0.4816,-0.174,0.0034,-0.1036,-0.107,0.2006,0.1036,-0.077,-0.0402,0.0134,0.281,0.2074,0.2308,0.4716,0.6588,0.6388,0.5118,0.505,0.3044,0.495,0.7626,1,0.9398,0.9432,0.9096,0.5284,-0.7348,-1,-1,1,1,-1,-0.4,0.3666,-1,-0.3554,0.1404,0.0248,0.1074,0.0414,-0.0248,0.0744,0.0578,0.2066,0.2562,0.8348,0.6528,0.9834,1,0.9338,0.8348,0.5538,0.6034,0.8182,0.9504,0.8016,0.719,0.5372,0.6364,0.5372,0.8348,0.5372,0.5868,0.3388,-0.0082,0.0414,-0.5538,'26'
-0.0744,0.4862,0.4306,0.6234,0.2906,-0.0744,-0.3664,-0.3664,-0.4278,-0.4802,-0.3198,-0.419,-0.2584,-0.1154,0.0248,0.3606,0.5766,0.9766,0.8686,0.7694,0.673,0.7722,0.9854,1,0.7928,0.5008,0.2438,0.1884,0.2906,0.2292,0.3314,0.3782,-0.1786,0.3372,0.2498,0.4082,0.2,-0.1502,-0.2876,-0.245,-0.5054,-0.5384,-0.3964,-0.5054,-0.3184,-0.29,-0.1456,-0.0272,0.0486,0.4036,0.406,0.9526,0.903,0.9456,0.806,1,0.7988,0.8438,0.465,0.3846,0.4698,0.432,0.5148,0.4178,-0.198,0.3128,0.2414,0.433,0.1112,-0.1954,-0.4968,-0.5504,-0.6372,-0.6782,-0.4942,-0.6092,-0.5478,-0.272,-0.3128,-0.198,-0.1444,0.0574,0.3256,0.4968,0.972,1,0.9438,0.8442,0.857,0.8492,0.7804,0.5402,0.5786,0.4126,0.4508,0.6144,-0.2064,0.2698,0.3968,0.5122,-0.1112,-0.29,-0.6738,-0.7748,-0.746,-0.6682,-0.7402,-0.7114,-0.5036,-0.443,-0.5758,-0.443,-0.2438,-0.0506,0.0506,0.4574,0.746,1,0.9972,0.873,0.8066,0.922,0.9336,0.7114,0.6422,0.5526,0.5816,0.6306,-0.2176,0.1994,0.4592,0.4864,-0.4532,-0.707,-0.7854,-0.6948,-0.8006,-0.7552,-0.8158,-0.843,-0.8158,-0.7342,-0.7704,-0.562,-0.3294,-0.275,0.003,0.3898,0.6164,1,0.9426,0.6858,0.6888,0.8096,0.8066,0.6858,0.6798,0.4048,0.4834,0.562,-0.1362,0.2136,0.709,0.6718,-0.3746,-0.7182,-0.7214,-0.6192,-0.8576,-0.7678,-0.6038,-0.7182,-0.6842,-0.5604,-0.5386,-0.5356,-0.3282,-0.0836,0.0402,0.3282,0.8112,0.9288,0.9442,0.7368,0.8328,1,0.8606,0.6842,0.6316,0.4954,0.514,0.5418,0.0164,0.383,1,0.8838,-0.4628,-0.6188,-0.3684,-0.2886,-0.7604,-0.8912,-0.7242,-0.5136,-0.5064,-0.5644,-0.5934,-0.3576,-0.354,-0.2886,-0.1688,0.0926,0.4048,0.9238,0.8476,0.401,0.6552,0.7278,0.8766,0.3794,0.2994,0.1506,0.1578,0.049,-0.2122,0.394,0.3334,0.3334,-0.0304,-0.4546,-0.394,-0.394,-0.6364,-0.6364,-0.7576,-0.8788,-0.9394,-0.4546,0.1516,0.2728,0.8788,1,0.5758,0.091,0.1516,0.5152,0.5758,0.2728,0.5758,0.5758,0.3334,0.1516,0.0304,-0.2122,0.091,0.2122,-0.3158,0.2632,0.3158,0.4736,0.0526,-0.421,-0.4736,-0.7894,-0.4736,-0.421,-0.4736,-0.6316,-0.421,-0.2632,0.0526,0.2632,0.8948,1,0.7368,0.5264,0.3158,0.5264,0.6316,0.1052,0.2632,0.2106,0.2106,0,-0.3684,-0.2632,-0.1052,0,-0.2526,0.2324,0.192,0.293,0.0506,-0.1718,-0.5354,-0.6364,-0.5354,-0.6566,-0.5354,-0.5354,-0.3738,-0.2526,-0.2122,-0.1516,-0.192,0.0708,0.2728,0.4546,0.8788,1,0.7778,0.7374,0.8182,0.7778,0.5556,0.4142,0.5152,0.2526,0.3536,0.5152,-1,-1,-0.9446,-0.8734,-0.6598,-0.632,-0.64,-0.63,-0.64,-0.6578,-0.4956,0.6874,0.9644,0.8952,0.7388,0.6262,0.5352,0.3492,0.2206,0.1632,0.1356,-0.0782,-0.5708,-0.826,-0.9188,-0.915,-0.9248,-1,-1,-1,-1,-1,-1,-1,-1,-0.9646,-0.9372,-0.723,-0.5676,0.0958,0.0604,0.1332,0.1826,0.254,0.059,0.7218,0.7258,0.5316,0.4274,0.1886,0.0358,-0.2032,-0.302,-0.4074,-0.6242,-0.7844,-0.8506,-0.8966,-0.9046,-0.918,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.9268,-0.3468,0.0766,0.8666,1,1,1,1,-0.3364,-0.311,-0.3928,-0.2982,-0.3528,-0.502,-0.5292,-0.7,-0.7384,-0.8418,-0.92,-0.78,-0.3234,-0.0134,-0.34,-0.34,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,0.6572,-0.6858,-0.8286,-0.1714,1,1,-0.3142,-0.8286,-0.7428,-0.9142,-1,-1,-0.8,-1,-0.1428,0.0572,-0.1142,-0.7428,-0.8572,-0.8572,-0.4858,-1,-1,-1,-1,-1,-1,-0.0948,-0.077,-0.0422,-0.018,0.015,0.0462,0.0716,0.059,-0.0116,-0.273,0.2122,0.2214,0.278,0.3156,0.3658,0.4498,0.5376,0.6356,0.7534,0.8702,-0.64,0.353,0.4734,-0.033,-0.1204,0.1558,0.3114,-0.4334,0.1706,0.2144,-0.324,-0.3396,-0.3396,-0.3896,-0.3616,-0.2926,-0.2644,-0.2238,-0.2582,-0.1988,-0.2896,-0.1612,-0.058,0.0736,0.083,0.299,0.518,0.759,0.9718,0.9906,0.9812,0.9718,0.8466,0.9124,1,0.95,0.8654,0.6306,0.3302,-0.1674,-0.2396,-0.2218,-0.8136,-0.8018,-0.8106,-0.8432,-0.7308,-0.4882,-0.5384,-0.6302,-0.6006,-0.4172,-0.4024,-0.4172,-0.3018,-0.0888,0.0088,0.1332,0.2218,0.429,0.6746,0.6834,0.7988,0.7928,0.8728,0.9142,1,0.932,0.9912,0.923,0.787,0.2662,-0.223,-0.1866,-0.7336,-0.5848,-0.6606,-0.6186,-0.5736,-0.296,-0.2006,-0.2904,-0.2566,0.1164,-0.0378,-0.1528,-0.1584,-0.0772,0.0042,0.0604,0.1332,0.3744,0.5428,0.4642,0.5484,0.756,0.8514,1,0.9496,0.8766,0.8934,0.6242,0.3772,-0.195,-0.661,-1,1,-1,1,-1,-0.6,0.4,-1,-0.4046,-0.2672,-0.0992,-0.2672,-0.2672,-0.0992,-0.0992,0.1146,0.084,0.4504,0.6336,0.542,0.603,0.5572,0.603,0.6794,0.832,0.481,0.7558,0.8778,1,0.5726,0.542,0.481,0.6336,0.3894,0.481,0.4046,0.2062,0.1298,0.0534,-0.3894,'26'
-0.2614,0.225,0.1886,0.459,0.8128,1,0.8206,0.7036,0.433,0.4746,0.3472,0.3836,0.2718,0.29,0.368,0.3628,0.563,0.5604,0.7192,0.7452,0.766,0.6488,0.6514,0.6488,0.6776,0.766,0.7322,0.3602,0.2926,0.329,0.2484,0.1444,-0.249,0.2274,0.2106,0.4754,0.846,1,0.781,0.704,0.4778,0.5306,0.4224,0.4296,0.3766,0.3358,0.485,0.3936,0.6078,0.6126,0.805,0.7208,0.757,0.6968,0.7762,0.6774,0.7424,0.7448,0.728,0.562,0.497,0.3862,0.302,0.4104,-0.2976,0.129,0.2772,0.433,0.9514,1,0.6372,0.6016,0.4432,0.3232,0.2924,0.1596,0.2108,0.2516,0.2414,0.3154,0.2848,0.392,0.6092,0.6858,0.6628,0.6602,0.6578,0.645,0.696,0.6756,0.6552,0.4738,0.3972,0.3716,0.2874,0.295,-0.3062,0.0904,0.3616,0.4986,1,0.9154,0.5568,0.3148,0.2974,0.0146,-0.175,-0.1108,-0.1342,-0.0466,-0.0116,0.032,0.102,0.172,0.3936,0.4314,0.446,0.3148,0.2712,0.4898,0.4956,0.4868,0.4314,0.3412,0.2186,0.242,0.207,0.239,-0.2694,0.042,0.2694,0.8882,1,0.968,0.517,0.2096,-0.0938,-0.4012,-0.4412,-0.3414,-0.4212,-0.465,-0.3094,-0.3134,-0.1816,-0.038,0.3294,0.7366,0.8044,0.6448,0.6328,0.7326,0.7126,0.6726,0.7206,0.6368,0.2774,0.1856,-0.014,0.1976,-0.2552,0.062,0.5448,0.7656,1,0.6644,-0.1356,-0.1908,-0.4114,-0.6736,-0.7288,-0.4896,-0.7426,-0.5908,-0.4942,-0.6368,-0.7932,-0.292,0.2046,0.6598,0.8804,0.9264,0.8068,0.761,0.8068,0.9862,0.784,0.3472,-0.0896,-0.0344,-0.0252,-0.0298,0.015,0.2836,0.4428,0.6418,0.7462,0.3184,-0.204,-0.6616,-0.7462,-0.6866,-0.7462,-0.6666,-0.5572,-0.4776,-0.3482,-0.4478,-0.403,-0.2886,-0.3284,0.1742,0.6816,1,0.806,0.8258,0.7014,0.9652,0.587,0.1492,0.0248,-0.209,-0.0498,-0.189,-0.1428,0.3334,0.238,0.5238,0.746,1,0.873,0.7142,0.5238,0.5556,0.238,0.365,0.3334,0.4604,0.238,0.3016,0.5874,0.6508,0.7778,0.8096,0.8412,0.873,0.8412,0.7142,0.8412,0.873,0.7778,0.3334,0.1428,0.3334,0.2698,0.365,-0.2858,0.2142,0.1428,0.5,0.75,1,0.8572,0.6428,0.3214,0.4642,0.25,0.3928,0.0714,0.1786,0.3928,0.3928,0.3928,0.5358,0.7142,0.75,0.3928,0.3572,0.5714,0.3572,0.6072,0.5358,0.6072,0.2858,0.3214,0.1786,0.25,0.1786,-0.3334,-0.2122,0.3636,0.6666,0.9696,0.8182,0.0606,0,-0.2122,-0.4242,-0.5758,-0.4546,-0.3636,-0.5152,-0.394,-0.4848,-0.697,-0.5152,0.0606,0.7576,1,0.909,0.5152,0.697,0.4848,0.697,0.606,0.2424,-0.0304,0.2424,0.2728,0.2728,-1,-1,-1,-1,-1,-1,-1,-0.9832,-0.989,-0.8162,-0.1374,0.3094,0.472,0.5814,0.7212,0.8816,0.7862,0.1622,-0.2,-0.3914,-0.6224,-0.756,-0.831,-0.9202,-0.9694,-0.9786,-0.98,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9868,-0.9896,-0.6196,0.4428,0.5354,0.6582,0.7852,0.8134,0.8138,0.4102,-0.1976,-0.332,-0.5212,-0.713,-0.8454,-0.9,-0.9466,-0.9612,-0.9614,-0.9658,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8434,-0.93,-0.67,-0.4734,-0.7024,-0.6912,-0.6868,-0.7178,-0.709,-0.7424,-0.72,-0.814,-0.792,-0.8,-0.83,-0.8368,-0.5768,-0.2368,-0.1668,-0.3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,-0.7714,-0.8286,-0.9714,-0.9142,-0.7714,-0.7428,-0.7428,-0.6,-0.2286,-0.3142,-0.4,-0.7714,-0.4858,-0.4572,-0.8,-0.4286,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.9314,0.3274,0.323,0.3622,0.3772,0.3884,0.3868,0.3778,0.4442,0.5354,0.6338,-0.6134,0.1058,0.4952,0.6678,0.4004,0.5562,0.6428,1,-0.4482,0.062,0.6138,0.6966,0.3518,0.1724,0.1862,0.3932,0.6138,0.7794,0.8344,0.8482,1,0.9448,0.5586,0.3518,0.6,0.6414,0.4896,0.1724,0.462,0.3932,0.3518,-0.1586,-0.1034,0.1034,0.1586,0.2276,0.5172,0.462,0.3242,-0.0206,-0.2,0.1878,0.491,0.6242,0.4424,0.1394,0.2728,0.3818,0.6484,1,0.9516,0.8182,0.7818,0.709,0.491,0.2606,0.2728,0.1516,0.0666,0.0304,0.2122,0.0666,-0.2606,-0.6,-0.7212,-0.2,-0.1272,0.2,0.103,0.3454,0.2606,0.0546,0.1082,0.4414,0.901,0.991,0.6936,0.4864,0.4144,0.4954,0.7388,0.982,1,0.937,0.91,0.919,0.5136,0.4144,0.5496,0.6756,0.4054,0.2792,0.4774,0.2432,0.036,-0.2522,-0.1982,-0.1082,0,0.018,0.2522,0.2522,0.1892,-0.1712,0.1976,-1,-1,1,-0.2,-1,-0.8,-0.6666,-1,-0.2602,-0.2054,-0.1096,0.1096,0.041,0.0136,0.1506,-0.1232,0.6438,0.863,1,0.5206,0.3698,0.4794,0.6576,0.6028,0.5616,0.589,0.4932,0.4658,0.7946,0.7946,0.5616,0.3836,0.4658,0.2876,0.2602,-0.0136,-0.0958,-0.1096,-0.0274,-0.1644,'1'
-0.227,0.407,0.4184,0.6602,0.6556,0.9908,1,0.5142,0.5256,0.1494,0.1928,0.2634,0.2726,0.3866,0.4322,0.464,0.5484,0.683,0.7696,0.8654,0.9408,0.6944,0.6762,0.5256,0.5782,0.5462,0.4504,0.398,0.2156,0.2178,0.2428,0.2588,-0.2402,0.3206,0.3164,0.6254,0.5958,1,0.962,0.4772,0.4434,0.217,0.1788,0.3672,0.3334,0.3292,0.3058,0.5112,0.492,0.727,0.7058,0.8646,0.8582,0.7884,0.7778,0.7228,0.7292,0.5874,0.6126,0.547,0.5556,0.4202,0.4392,0.4412,-0.2498,0.2604,0.2454,0.582,0.7214,1,0.8906,0.3462,0.2132,0.2754,0.1232,0.1576,0.0912,0.2048,-0.001,0.1254,0.0912,0.1748,0.5928,0.6678,0.4962,0.5862,0.447,0.4598,0.5176,0.5392,0.432,0.357,0.1232,0.1726,0.3098,0.3034,-0.2628,0.2024,0.293,0.5186,0.879,1,0.7,0.3604,0.3488,0.3488,-0.0094,-0.0442,0.107,-0.0046,-0.1698,-0.1162,-0.0046,0.1372,0.2512,0.407,0.414,0.414,0.393,0.3628,0.3186,0.2652,0.279,0.1488,0.007,0.079,0.179,0.2512,-0.2644,0.1144,0.395,0.6104,1,0.8964,0.4768,0.1198,0.1362,-0.0054,-0.1716,-0.2916,-0.2588,-0.2262,-0.2562,-0.2234,-0.1852,0.0354,0.308,0.3978,0.5122,0.4168,0.3596,0.3352,0.2834,0.3978,0.3842,0.2888,0.1716,0.1744,0.1716,0.1826,-0.0892,0.2448,0.6934,0.9726,0.8902,0.9588,0.4142,-0.0114,-0.3456,-0.8078,-0.8398,-0.913,-0.9268,-0.6934,-0.5926,-0.6476,-0.6018,-0.2906,0.405,0.7254,0.881,1,0.881,0.5286,0.7528,0.8856,0.8582,0.817,0.4966,0.3318,0.2678,0.222,0.0998,0.4286,0.7612,1,0.6242,0.3698,-0.1702,-0.2916,-0.4404,-0.73,-0.91,-0.7026,-0.7338,-0.679,-0.6594,-0.5694,-0.456,-0.2486,0.0958,0.4168,0.683,0.8944,1,0.8864,0.8318,0.8708,0.8238,0.82,0.456,0.3346,0.4324,0.3228,-0.283,0.434,0.4716,0.6604,0.6982,0.9622,1,0.6226,0.283,0.132,0.2076,0.0188,-0.0188,0.2076,0.3962,0.4716,0.6604,0.7736,1,0.8868,0.8114,0.8114,0.6604,0.585,0.8868,0.849,0.6226,0.6604,0.283,0.3584,0.2452,0.5094,-0.2962,0.3704,0.3704,0.5926,0.5556,0.926,0.963,0.4814,0.4814,0.2222,0.2222,0.1112,0.1112,0.1482,0.2962,0.1482,0.4444,0.4074,0.6666,0.963,1,0.7778,0.7778,0.6666,0.5556,0.5186,0.5186,0.4074,0.2222,0.2962,0.074,0.1482,-0.1212,0.1516,0.5454,0.8484,0.909,0.8788,0.5758,0.1818,-0.1516,-0.394,-0.394,-0.5454,-0.4546,-0.394,-0.7272,-0.7576,-0.5758,0.303,0.3636,0.8182,0.8788,1,0.697,0.7272,0.7878,0.5758,0.7576,0.8484,0.5758,0.1212,0.2728,0.3334,-1,-1,-1,-1,-1,-1,-1,-0.9896,-0.984,-0.6542,-0.356,0.1204,0.4244,0.486,0.6018,0.727,0.7888,0.9222,0.3808,-0.287,-0.4816,-0.5578,-0.624,-0.6702,-0.7844,-0.8848,-0.951,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.987,-0.9774,-0.503,-0.2648,0.3766,0.8188,0.9248,0.8904,0.9092,0.785,0.7568,0.0712,-0.4734,-0.618,-0.6886,-0.7644,-0.6574,-0.8526,-0.9008,-0.9352,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9168,-0.9534,-0.52,-0.4168,-0.724,-0.736,-0.676,-0.708,-0.77,-0.778,-0.7856,-0.8292,-0.762,-0.8656,-0.9074,-0.9634,-0.7,-0.7234,-0.5668,-0.2668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,-0.2572,-0.8572,-0.8286,-0.7142,-0.8286,-0.8,-0.6572,-0.3428,-0.2286,-0.7142,-0.7142,-1,-0.8,-0.5714,-0.6572,-0.3142,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.89,0.151,0.1238,0.0936,0.1134,0.108,0.1368,0.1778,0.2372,0.2914,0.5434,-0.7334,0.2352,-0.2294,0.084,0.3544,0.4818,0.5314,1,-0.107,0.414,0.3396,0.4698,0.414,0.2744,0.3024,0.4884,0.5628,0.8976,0.9162,0.9534,1,0.814,0.6094,0.4512,0.572,0.6,0.572,0.5534,0.5906,0.5906,0.2744,-0.1442,0.0232,0.0698,-0.0976,0.1534,0.1348,0.079,0.0604,-0.628,-0.2218,0.457,0.7828,0.7376,0.457,0.1764,0.2398,0.276,0.5022,1,0.991,0.8462,0.9458,0.8734,0.5022,0.5746,0.439,0.3846,0.5114,0.457,0.5566,0.466,0.1312,-0.1584,-0.1312,0.0046,0.0408,0.2126,0.3484,0.2398,0.1222,-0.258,0.249,0.5162,0.6246,0.7618,0.3358,0.1408,0.213,0.473,0.6028,1,0.9712,0.6678,0.7834,0.6462,0.5234,0.4658,0.5306,0.3862,0.314,0.4658,0.2708,0.0686,-0.2418,-0.1696,-0.0974,0.1408,0.1986,0.379,0.4296,0.5234,0.2636,-0.2418,-0.2234,-1,-1,1,0,-1,0.4,-0.5666,-1,-0.7108,-0.0362,-0.0844,0.0844,0.1326,0.0602,0.1326,0.0844,0.3012,0.9278,1,0.6626,0.8314,0.6626,0.4458,0.2772,0.759,0.6626,0.1808,0.1326,0.6386,0.6386,0.5422,0.3494,-0.3012,-0.0844,-0.1326,-0.4216,-0.253,-0.0602,-0.3734,-0.6386,'1'
0.1078,0.7514,0.7276,0.8742,0.8024,0.3592,0.2574,0.0598,-0.03,-0.2664,-0.3502,-0.2066,-0.3054,-0.006,-0.1438,-0.045,-0.1766,0.021,0.1138,0.479,0.7514,1,0.8562,0.9132,0.8444,0.9042,0.7694,0.8952,0.7724,0.545,0.6228,0.6556,-0.0544,0.6234,0.6234,0.5788,0.5536,0.1744,0.1548,-0.0488,-0.0544,-0.3054,-0.3054,-0.1994,-0.1854,-0.1994,-0.166,-0.0684,-0.0264,-0.0292,0.0348,0.2942,0.3724,0.721,0.8214,0.8856,1,0.7656,0.8996,0.8214,0.9832,0.7154,0.8298,0.6876,-0.0034,0.5386,0.541,0.587,0.5732,0.2226,0.1996,0.0404,0.022,-0.211,-0.225,-0.1396,-0.1534,-0.1234,-0.1096,0.0312,0.045,0.045,0.0588,0.2988,0.3334,0.6678,0.7116,0.9308,1,0.8154,0.8778,0.8108,0.88,0.6562,0.7508,0.6332,-0.0944,0.4812,0.4392,0.7632,0.6252,0.1844,-0.0344,-0.2264,-0.4752,-0.4542,-0.6522,-0.5922,-0.5412,-0.5172,-0.3554,-0.3284,-0.2414,-0.2444,0.0104,0.0944,0.3854,0.5502,0.844,0.997,1,0.949,0.838,0.847,0.7272,0.6462,0.5292,0.4692,-0.1024,0.386,0.8886,1,0.3932,-0.1132,-0.4902,-0.6876,-0.8062,-0.824,-0.7846,-0.9426,-0.8708,-0.6912,-0.7164,-0.684,-0.6948,-0.6912,-0.429,-0.2926,0.0018,0.0952,0.4578,0.6266,0.8168,0.7594,0.6158,0.7128,0.623,0.623,0.4866,0.289,-0.0222,0.5462,1,0.8746,0.1476,-0.2288,-0.3948,-0.5682,-0.7822,-0.8488,-0.9114,-0.8302,-0.856,-0.7416,-0.6494,-0.7712,-0.8154,-0.7416,-0.5202,-0.4538,-0.203,-0.0296,0.203,0.6752,0.8782,0.9742,0.6346,0.6938,0.6052,0.465,0.4612,0.2878,0.1214,0.729,1,0.9346,0.2056,-0.3786,-0.6168,-0.729,-0.701,-0.7336,-0.8038,-0.6308,-0.6588,-0.8272,-0.799,-0.7384,-0.5608,-0.6074,-0.5888,-0.3178,-0.1728,0.0888,0.2476,0.5234,0.93,0.93,0.9066,0.958,0.8552,0.715,0.57,0.4954,0.0204,0.5918,0.551,0.796,0.7142,0.1428,0.102,-0.102,-0.102,-0.3062,-0.2654,-0.1836,-0.3062,-0.1428,-0.2244,-0.1836,-0.3878,-0.2654,-0.1428,0.4286,0.8776,1,0.551,0.6326,0.9592,1,0.7142,0.5102,0.347,0.2654,0.5918,0.551,0.0638,0.7022,0.6596,0.9148,0.8298,0.3618,0.2766,-0.0638,-0.1914,-0.1914,-0.2766,-0.2766,-0.1914,0.0212,0.0212,0.1064,-0.1064,0.0638,0.532,0.617,0.7872,1,0.8724,0.5744,0.7872,0.8298,0.532,0.6596,0.5744,0.5744,0.0638,0.7022,0.109,0.406,0.9406,1,0.4456,0.0694,-0.1684,-0.307,-0.4852,-0.3466,-0.3862,-0.3664,-0.3664,-0.3664,-0.3664,-0.406,-0.3664,-0.604,-0.2872,-0.1882,0.2278,0.1684,0.3664,0.8812,0.9406,0.8614,0.7822,0.901,0.7426,0.6832,0.7426,0.4456,-1,-1,-1,-1,-1,-1,-1,-1,-0.8484,-0.867,-0.3124,0.6212,0.519,0.5332,0.544,0.5426,0.6518,0.8692,0.847,0.336,-0.2316,-0.391,-0.6398,-0.6612,-0.7798,-0.8678,-0.9236,-0.9264,-0.955,-0.9706,-0.9778,-0.9828,-0.9864,-1,-1,-1,-1,-1,-1,-1,-1,-0.8986,-0.9088,-0.3588,0.434,0.4788,0.6874,0.6912,0.8898,0.6792,0.6018,0.424,0.0034,-0.4222,-0.5418,-0.7124,-0.7422,-0.8096,-0.8514,-0.8816,-0.892,-0.9102,-0.9258,-0.9404,-0.9654,-0.971,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9868,-0.86,-0.7912,-0.709,-0.64,-0.66,-0.5334,-0.6446,-0.7846,-0.8734,-0.8534,-0.8356,-0.878,-0.91,-0.9334,-0.6634,-0.3468,-0.0968,-0.27,-0.2034,0.09,-0.2968,-0.8734,-0.8934,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,1,1,1,-0.5142,-0.6858,-0.8858,-0.7714,-0.7142,-0.8,-0.4572,-0.9428,-0.6,-0.8572,-0.8572,-0.7714,-0.6,-0.7142,-0.7428,-0.7714,-0.4572,-0.3714,-0.2572,-0.4858,-0.9142,0.3522,0.355,0.3502,0.3608,0.3604,0.3482,0.3414,0.365,0.3834,0.0344,0.8882,0.8926,0.8756,0.9306,0.9512,0.9874,1,1,1,1,-0.7334,0.0588,-0.1464,0.3684,0.5234,0.3104,0.4258,1,0.9394,0.9394,0.5152,0.394,-0.1516,0.091,0.394,0.5152,0.6364,0.697,0.8182,0.8788,0.9394,1,0.697,0.697,0.5758,0.5758,0.5152,0.6364,0.6364,0.697,0.7576,0.8182,0.9394,0.8788,0.7576,0.6364,0.4546,0.091,-0.1516,-0.5152,0.3584,0.7548,0.6982,0.132,0.151,-0.0378,0.283,0.717,0.9812,1,0.7924,0.8114,0.8114,0.6604,0.5094,0.717,0.5472,0.3962,0.3208,0.5284,0.6416,0.6604,0.6604,0.6604,0.6416,0.717,0.8302,0.7358,0.4906,0.3396,0.151,-0.2452,0.5714,0.8036,0.75,0.25,0.0178,-0.1608,0.0178,0.2142,0.5,0.6964,1,0.9464,0.6072,0.6608,0.4108,0.5892,0.6786,0.2322,0.25,0.1964,0,-0.0178,0.0536,0.2142,0.2858,-0.0178,0.2858,0.2322,0.2322,-0.0536,0,-0.1072,0.583,-1,-1,1,-1,-0.2,-0.2,-0.8334,1,-0.5572,-0.3714,-0.2428,-0.0572,0.2,0.1286,0.1286,0.3286,0.4572,0.1142,-0.1572,0.3142,0.3714,0.4286,0.1572,0.2142,0.1286,-0.1286,-0.1428,0.5714,0.9572,1,0.9714,0.4428,0.2286,-0.1428,-0.1714,-0.3714,-0.1286,-0.0714,-0.0714,-0.5,'2'
-0.0032,0.6304,0.708,0.969,0.764,0.2546,-0.1024,-0.295,-0.5124,-0.4938,-0.3976,-0.441,-0.5124,-0.5962,-0.3758,-0.3572,-0.2516,-0.2018,-0.0622,0.3074,0.6056,0.9752,1,0.851,0.8168,0.8944,0.8634,0.9162,0.7422,0.6522,0.5496,0.4658,-0.1138,0.4702,0.4232,0.5662,0.4678,0.1114,-0.027,-0.3178,-0.4748,-0.5288,-0.7186,-0.6788,-0.4702,-0.3506,-0.3786,-0.2966,-0.2638,-0.2028,-0.0152,0.0222,0.4208,0.4372,0.8194,0.8124,1,0.9672,0.7608,0.7092,0.9344,0.8616,0.7702,0.6624,-0.0508,0.5406,0.4608,0.7112,0.5048,0.1582,-0.2352,-0.4168,-0.6012,-0.5846,-0.6012,-0.6588,-0.9038,-0.7882,-0.5296,-0.6066,-0.491,-0.4662,-0.2958,-0.0976,0.0398,0.3562,0.6314,0.8872,1,0.9614,0.8486,0.8376,0.802,0.6534,0.6478,0.48,0.1376,0.5902,0.871,0.9914,0.4184,0.1318,-0.4498,-0.6074,-0.5042,-0.7478,-0.8538,-0.8052,-0.7134,-0.5674,-0.6962,-0.7192,-0.5816,-0.5932,-0.3438,-0.2148,-0.129,-0.0114,0.3094,0.6992,0.9542,1,0.914,0.7822,0.8482,0.9026,0.7078,0.6418,0.095,0.459,1,0.9214,-0.1738,-0.3574,-0.6328,-0.682,-0.8,-0.8722,-0.7804,-0.7574,-0.8394,-0.8032,-0.8786,-0.918,-0.8886,-0.8328,-0.623,-0.6066,-0.6918,-0.3902,-0.0754,0.1016,0.5246,0.5868,0.5672,0.3804,0.3672,0.6426,0.4394,0.2754,0.0444,0.684,1,0.634,-0.1176,-0.1984,-0.5838,-0.6262,-0.6262,-0.7688,-0.9422,-0.9576,-0.896,-0.9268,-0.7226,-0.7496,-0.7958,-0.7072,-0.5838,-0.634,-0.5068,-0.2562,-0.0444,0.3448,0.6994,0.8652,0.7032,0.6918,0.6878,0.711,0.5646,0.5568,0.3048,0.734,1,0.8154,0.339,-0.5022,-0.7082,-0.8798,-0.6866,-0.8498,-0.824,-0.824,-0.9484,-0.6738,-0.648,-0.9012,-0.5622,-0.5408,-0.4936,-0.3948,-0.2104,0.043,0.442,0.6952,0.8412,0.7812,0.6352,0.734,0.6438,0.897,0.8112,0.545,-0.1708,0.3658,0.7074,0.9512,0.6586,-0.0244,-0.2196,-0.2196,-0.4634,-0.561,-0.4146,-0.5122,-0.4634,-0.8048,-0.561,-0.4634,-0.561,-0.1708,0.0244,0.4146,0.4634,0.9512,0.9024,0.8048,0.9024,1,0.756,0.561,0.2682,0.317,0.1708,0.317,-0.091,0.4546,0.7272,0.9546,0.6818,0.091,-0.1364,-0.1364,-0.409,-0.591,-0.5,-0.6818,-0.409,-0.5454,-0.9546,-0.2272,-0.2272,0.1364,0.091,0.409,0.7272,1,0.6364,0.8636,0.909,0.9546,0.8182,0.8182,0.4546,0.5,0.3636,0.1364,0.221,0.6422,0.9158,0.9578,0.3894,0.1158,-0.3684,-0.4316,-0.3894,-0.579,-0.6632,-0.3474,-0.3474,-0.6632,-0.5578,-0.4948,-0.579,-0.579,-0.3474,-0.1578,-0.2,-0.0526,0.3894,0.7684,0.8736,0.979,0.9368,0.9578,0.9368,1,0.7052,0.621,-1,-1,-1,-1,-1,-1,-1,-1,-0.8836,-0.8678,-0.3632,0.6754,0.1082,0.0978,0.0234,-0.044,-0.0682,-0.1572,-0.3038,-0.465,-0.6144,-0.7046,-0.8054,-0.8884,-0.9266,-0.944,-0.9596,-0.972,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9126,-0.8998,-0.4002,0.6302,0.2058,0.425,0.216,0.0124,-0.0802,-0.2624,-0.4394,-0.5786,-0.6776,-0.7532,-0.8176,-0.8542,-0.878,-0.8914,-0.8976,-0.9366,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.9934,-0.8468,-0.742,-0.718,-0.636,-0.6456,-0.7256,-0.74,-0.84,-0.902,-0.882,-0.9746,-0.9346,-0.79,-0.5668,-0.41,-0.35,-0.1868,-0.3,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,-0.7142,-0.7142,-0.5428,-0.6286,-0.6,-0.4,-0.8858,-0.8858,-0.8858,-0.8286,-0.7142,-0.7142,-0.6858,-0.5714,-0.3142,-0.2,-1,-1,-1,-1,-1,0.1936,0.1968,0.1946,0.1966,0.2062,0.2136,0.2238,0.232,0.1434,-0.2432,1,1,1,1,1,1,1,1,1,1,-0.6534,0.2706,-0.3464,0.7046,0.9196,0.4902,0.1626,1,0.946,0.8918,0.3514,-0.1352,0.2432,0.2972,0.5676,0.6216,0.3514,0.6216,0.6216,0.5136,0.3514,0.4594,0.4054,0.3514,0.7298,0.6756,0.6756,0.6216,0.8378,0.946,1,0.8378,0.8378,0.8378,0.7838,0.7298,0.6216,0.5136,0.2432,-0.1892,0.767,0.8446,0.767,0.1844,0.2038,0.2038,0.631,0.5922,0.7476,0.864,0.864,1,0.9806,0.8446,0.4758,0.8252,0.8446,0.6894,0.7088,0.6504,0.7476,0.8058,0.7864,0.5728,0.5534,0.7282,0.5728,0.7088,0.631,0.6894,0.5728,-0.0292,0.5898,0.983,1,0.282,0.094,-0.0086,0.0256,0.1452,0.3504,0.7094,0.8974,0.8974,0.9658,0.9316,0.5042,0.6582,0.7436,0.4872,0.5726,0.47,0.5384,-0.0598,0.0598,0.0086,0.1966,-0.094,-0.0598,0.1624,0.3334,0.1452,-0.0256,-0.2992,0.4744,-1,-1,1,-0.8,0.6,-0.6,-0.8334,-1,0.1316,0.1448,0.4868,0.5132,0.3026,0.4606,0.5264,0.3422,0.5264,0.8948,0.9868,0.6316,0.7894,0.7894,0.8158,0.75,0.7632,0.5132,0.6578,0.8158,1,1,0.829,0.5132,0.3422,0.4868,0.8158,0.9474,0.9606,0.8422,0.7236,0.2894,'2'
-0.1836,0.832,0.9176,0.8044,1,0.6192,0.3036,0.1458,-0.1492,-0.1938,0.0222,0.0086,0.1424,0.2384,0.2692,0.53,0.6466,0.8354,0.8354,0.88,0.8868,0.5574,0.6192,0.7186,0.7564,0.6432,0.482,0.554,0.41,0.4134,0.4134,0.3208,-0.274,0.65,0.7116,0.7958,0.9124,0.4878,0.1994,-0.0372,-0.1864,-0.329,-0.3226,-0.3614,0.1086,0.1312,-0.0048,0.1086,0.2642,0.4748,0.4036,0.8056,0.7244,1,0.974,0.838,0.906,0.65,0.5722,0.41,0.4458,0.1962,0.1864,0.248,-0.046,0.6486,0.673,0.827,0.8432,0.2594,0.2892,-0.027,0.0352,-0.2946,-0.2082,-0.2162,-0.0568,-0.1432,0.0082,-0.0082,0.0946,0.1648,0.4108,0.4244,0.646,0.8946,1,0.9838,0.8298,0.8136,0.8676,0.8028,0.5784,0.454,0.4756,0.5244,-0.0048,0.6176,0.6012,1,0.8476,0.248,0.021,-0.436,-0.5008,-0.6208,-0.7504,-0.6078,-0.436,-0.3354,-0.2576,-0.2674,-0.2026,-0.0502,0.0892,0.2382,0.4748,0.731,0.88,0.88,0.7082,0.773,0.6466,0.4878,0.5008,0.3808,0.3128,0.2772,-0.1282,0.2894,0.9488,1,0.326,-0.1684,-0.3004,-0.6594,-0.7472,-0.7692,-0.7838,-0.8572,-0.9378,-0.8058,-0.7692,-0.707,-0.6044,-0.6336,-0.4212,-0.2784,-0.0732,0.3882,0.6814,0.7876,0.7766,0.8132,0.7326,0.6776,0.6484,0.5092,0.315,0.2528,0.0898,0.5648,1,0.7804,0.3852,0.046,-0.2974,-0.4492,-0.5888,-0.8044,-0.976,-0.7286,-0.7804,-0.7844,-0.6526,-0.7446,-0.7924,-0.6926,-0.6488,-0.3932,-0.1258,0.0578,0.533,0.7366,0.8244,0.8404,0.6846,0.8922,0.7884,0.541,0.4492,0.2974,0.2984,0.661,1,0.7804,0.4798,-0.3366,-0.4176,-0.3508,-0.7232,-0.7996,-0.8664,-0.642,-0.6992,-0.4892,-0.4176,-0.556,-0.623,-0.5656,-0.432,-0.284,-0.3842,-0.0548,0.3556,0.5704,0.6754,0.7566,0.747,0.895,0.7232,0.3986,0.3938,0.3366,-0.5,0.8334,0.8888,0.5,0.8334,0.3334,-0.1666,-0.5,0,0.0556,-0.2778,-0.0556,0.0556,0.1666,0.1666,0.8334,1,0.9444,0.5,0.3888,0.5556,0.1666,-0.1112,0.4444,0.3334,0.4444,0.4444,0.4444,0.4444,0.2778,0.1112,0.0556,-0.2196,0.9024,1,0.7074,0.9024,0.6586,0.3658,0.2196,-0.317,-0.122,0.0732,0.0732,0.4146,0.5122,0.3658,0.4146,0.7074,0.9512,1,0.6586,0.7074,0.3658,0.6098,0.7074,0.6586,0.756,0.317,0.5122,-0.317,0.2682,0.2196,0.3658,0.0362,0.3012,1,0.9278,0.2772,0.0602,-0.0602,-0.494,-0.4458,-0.494,-0.494,-0.518,-0.7108,-0.735,-0.6386,-0.5422,-0.5422,-0.6144,-0.3012,-0.2772,-0.229,0.3734,0.518,0.759,0.976,0.9036,0.8554,0.8314,0.7832,0.6626,0.3976,0.3254,-0.9836,-0.9796,-0.9884,-0.9782,-0.974,-0.9678,-0.9536,-0.946,-0.944,-0.9002,-0.6852,0.4316,0.582,0.6864,0.6114,0.5348,0.543,0.8832,0.6046,-0.0554,-0.3914,-0.5928,-0.72,-0.8278,-0.9474,-0.961,-0.974,-1,-1,-1,-1,-1,-1,-0.9296,-0.8866,-0.7298,-0.6958,-0.6766,-0.573,-0.6972,-0.5912,-0.5944,-0.454,-0.3952,0.3132,0.8138,0.9058,0.9374,0.6892,0.6,0.7498,0.385,-0.2156,-0.51,-0.6622,-0.7508,-0.839,-0.8842,-0.8974,-0.9332,-1,-1,-1,-1,-1,-1,0.1766,0.77,1,1,1,1,1,1,1,0.9532,0.7666,-0.745,-0.6826,-0.7076,-0.6712,-0.7912,-0.909,-0.9756,-0.9246,-0.9446,-0.9534,-0.9268,-0.8734,-0.5868,-0.29,-0.2,-0.5934,-1,-1,-1,-1,-1,-1,1,1,0.1428,-0.4858,-0.8286,-1,-0.7428,-0.8572,-0.8286,-0.6572,1,1,-0.3428,-0.7714,-0.7142,-0.7714,-0.7142,-0.5142,-0.3714,-0.4,-0.6,-0.8286,-0.0286,0.2286,-0.4286,0.1714,-0.0286,-1,-1,-1,-1,-1,-1,0.4772,0.4946,0.5174,0.5254,0.5354,0.5412,0.5412,0.5344,0.4892,0.1038,-0.049,-0.0086,0.0914,0.1122,0.169,0.2324,0.3136,0.4474,0.649,0.8744,-0.7334,0.0118,-0.4246,0.0374,0.265,0.518,0.6734,-0.425,-0.7276,-0.6344,-0.5656,-0.357,-0.2294,-0.0478,-0.0454,0.1878,0.308,0.2688,0.2688,0.3202,0.3496,0.3154,0.3128,0.3472,0.3742,0.4404,0.524,0.7056,0.6858,0.8674,0.8306,0.7694,0.87,0.8454,0.6638,0.951,1,0.8258,0.7154,0.2466,-0.8526,-0.5152,-0.2626,-0.2314,0.0194,0.047,0.1042,0.1944,0.2958,0.2996,0.3512,0.2626,0.3732,0.3658,0.3658,0.364,0.4268,0.4414,0.4342,0.5576,0.565,0.6406,0.6534,0.6646,0.7364,0.777,0.7254,0.8526,1,1,0.8046,0.495,-0.962,-0.184,-0.1708,0.017,0.0246,0.0986,0.0834,0.3454,0.4308,0.2372,0.2618,0.2866,0.3586,0.3112,0.3244,0.4288,0.4554,0.3984,0.556,0.5256,0.5294,0.723,0.7096,0.8292,0.9716,0.9222,0.8008,0.8064,1,0.9906,0.7894,0.5902,-0.9318,-1,1,-1,-1,-1,-0.4,1,-1,-0.2202,0.1446,0.0818,0.0566,0.0188,0.1824,0.2704,0.195,0.346,0.7988,1,0.8364,0.6856,0.6982,0.4968,0.522,0.7358,0.4214,0.4466,0.6226,0.6352,0.5472,0.6856,0.5472,0.3836,0.434,0.283,0.2452,0.371,0.283,0.2704,-0.4592,'3'
-0.2288,0.8592,0.9472,0.9578,0.993,0.5106,0.0774,-0.2816,-0.1408,-0.3204,-0.1022,-0.169,0.0986,0.0564,0.4154,0.493,0.8698,0.9436,0.9296,1,0.8802,0.7148,0.4824,0.7218,0.75,0.6902,0.6232,0.4472,0.2782,0.2008,0.1126,0.257,-0.0422,0.7118,0.7176,0.8574,0.8398,0.0684,0.0248,-0.412,-0.4614,-0.473,-0.4264,-0.4002,-0.3216,-0.08,-0.0102,0.1034,0.1732,0.313,0.5488,0.703,0.9156,1,0.8864,0.9418,0.968,0.9854,0.8748,0.7496,0.5866,0.4002,0.313,0.4934,0.0174,0.664,0.588,0.8606,0.702,-0.0682,-0.2964,-0.347,-0.6038,-0.6862,-0.6386,-0.5246,-0.4644,-0.4548,-0.2932,-0.2868,-0.0332,-0.122,0.2076,0.347,0.5372,0.7622,0.9112,1,0.9588,0.8732,0.7084,0.7432,0.6102,0.4706,0.4422,0.5118,-0.0718,0.4548,0.8564,1,0.407,-0.057,-0.8306,-0.908,-0.7864,-0.8454,-0.8932,-0.9374,-0.8638,-0.7716,-0.7496,-0.6428,-0.628,-0.5616,-0.2118,-0.0608,0.175,0.3186,0.5764,0.8932,0.9006,0.8122,0.6316,0.6354,0.5948,0.429,0.278,0.1566,-0.0122,0.3934,1,0.9306,-0.3136,-0.5044,-0.5044,-0.4766,-0.532,-0.6152,-0.8406,-0.955,-0.844,-0.7782,-0.7054,-0.6152,-0.584,-0.6222,-0.428,-0.123,0.0226,0.1578,0.5252,0.7678,0.9688,0.9168,0.5944,0.7886,0.7816,0.5876,0.4108,0.3102,0.0766,0.646,1,0.7482,0.1022,-0.0474,-0.511,-0.6168,-0.657,-0.7262,-0.9306,-0.938,-0.7884,-0.635,-0.719,-0.7262,-0.7738,-0.854,-0.6862,-0.4052,-0.2408,0.0072,0.157,0.646,0.792,0.8686,0.6314,0.6716,0.697,0.6642,0.5912,0.2884,0.1762,0.7228,1,0.5722,0.1248,-0.4654,-0.6238,-0.6198,-0.6872,-0.794,-0.699,-0.9446,-0.703,-0.7228,-0.7584,-0.5762,-0.604,-0.6278,-0.6356,-0.402,-0.3426,-0.2792,0.2118,0.4138,0.398,0.3664,0.3386,0.4456,0.592,0.5722,0.5604,0.6674,-0.2572,0.7714,0.9428,0.7142,0.0286,0.1428,0.1428,0.1428,-0.7142,-0.5428,0.2,0.2,0.1428,0.2,-0.0286,0.8286,1,0.9428,0.3714,0.5428,0.7142,0.1428,0.0858,0.4286,0.6572,0.7714,0.8858,0.7714,0.4858,0.6572,0.5428,0.6,-0.2444,0.7778,0.9112,0.8666,0.9556,0.6,0.1112,-0.0222,-0.1112,0.0222,-0.0222,-0.2888,0.1112,0.2888,0.1556,0.6444,0.7334,1,1,0.6,0.6888,0.2888,0.2888,0.2888,0.6888,0.6,0.2444,0.3778,0.2888,0.3778,0.3334,-0.0222,-0.0136,0.6438,0.589,0.9178,0.6712,-0.0958,-0.452,-0.726,-0.4794,-0.589,-0.7534,-0.863,-0.726,-0.7534,-0.6712,-0.2876,-0.2602,-0.2054,-0.2054,0.2876,0.452,0.726,0.5342,0.9452,0.9452,1,0.7534,0.6712,0.2602,0.3972,0.6164,0.452,-0.9682,-0.9608,-0.9682,-0.966,-0.967,-0.9682,-0.966,-0.967,-0.9586,-0.948,-0.9098,0.6284,0.895,0.6178,0.4172,0.516,0.829,0.9332,0.723,0.2462,-0.1794,-0.4214,-0.5562,-0.7186,-0.8704,-0.8842,-0.9332,-0.9544,-0.9682,-0.9702,-1,-1,-1,-0.5034,-0.407,-0.4426,-0.5218,-0.474,-0.5616,-0.469,-0.6004,-0.4874,-0.472,-0.4126,0.3462,0.8858,0.6256,0.4138,0.3064,0.4162,0.4862,0.2308,-0.124,-0.4396,-0.6052,-0.6678,-0.7606,-0.8214,-0.7766,-0.9,-0.9134,-0.9264,-0.9502,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.9932,0.93,-0.6578,-0.72,-0.809,-0.8556,-0.784,-0.804,-0.87,-0.8974,-0.9402,-0.9582,-0.8962,-0.849,-0.669,-0.619,-0.3622,-0.419,-0.4056,-0.519,-0.7922,-1,-1,-1,-0.8858,-0.9428,-0.9428,-0.9142,-0.8858,-0.9142,-0.9428,-0.9714,-0.8572,-0.9428,0.9142,1,0.0858,-0.0286,-0.8572,-0.6,-0.8572,-0.8572,-0.6858,-0.5142,-0.8,-0.8572,-0.7714,-0.6572,-0.2,0.2,0.3714,-0.4286,-0.6572,-0.6286,-1,-1,-1,0.3148,0.3228,0.3412,0.3372,0.3378,0.3214,0.294,0.2362,0.1068,-0.2452,0.0508,0.051,0.0948,0.1152,0.1484,0.2484,0.3692,0.5614,0.701,0.84,-0.6534,0.1294,-0.4058,-0.2928,0.3518,0.5838,0.8478,-0.2584,-0.8214,-0.5808,-0.4052,-0.2,-0.1026,0.0598,0.1188,0.4922,0.5912,0.3476,0.3846,0.234,0.4746,0.4258,0.411,0.3918,0.4126,0.5026,0.4494,0.5144,0.6074,0.6856,0.6488,0.7462,0.7948,0.9602,1,0.7108,0.8848,0.9306,0.6296,0.3196,-0.7904,-0.6394,-0.4298,-0.2424,-0.1406,0.0434,0.0644,0.178,0.2588,0.2728,0.295,0.3044,0.3126,0.3642,0.3384,0.473,0.3934,0.3348,0.473,0.5902,0.7132,0.7646,0.7834,0.7576,0.877,0.9648,0.8922,0.938,0.8876,1,0.9626,0.6546,-0.801,-0.5724,-0.419,-0.269,-0.204,-0.1416,0.0528,0.1404,0.2222,0.2576,0.3018,0.2928,0.3122,0.3406,0.3076,0.3792,0.4168,0.4224,0.4304,0.585,0.5804,0.685,0.7044,0.7544,0.792,1,0.9488,0.818,0.901,0.9306,0.876,0.5156,-0.7582,-1,1,-1,-1,-1,0,1,1,-0.25,-0.0334,-0.1334,0.0666,0.05,-0.25,-0.1666,0.15,0.3834,1,0.9834,0.35,0.65,0.8834,0.3834,0.4,0.55,0.3334,0.2166,0.5166,0.6666,0.6334,0.9166,0.9,0.5166,0.4666,0.1334,0.4166,0.35,0.5,0.4666,0.2334,'3'
0.1684,0.872,0.8552,0.909,0.8452,0.3198,0.266,0.037,-0.037,-0.1482,-0.1482,0.0202,0.0034,-0.1616,-0.0202,0.2794,0.1852,0.2828,0.3602,0.771,0.8384,1,0.9664,0.8888,0.899,0.9394,0.9494,0.6936,0.5522,0.5186,0.6566,0.734,-0.2092,0.4748,0.4978,0.4892,0.5122,0.062,0.1024,-0.0966,-0.0274,-0.2988,-0.1948,-0.3536,-0.2266,-0.1688,-0.0072,-0.166,0.0852,-0.0592,0.2612,0.2034,0.6076,0.5468,1,0.9654,0.9048,0.9048,0.8702,0.9076,0.5584,0.6248,0.5152,0.6162,-0.0748,0.5112,0.5262,0.5686,0.581,0.2094,0.217,0.0948,0.1322,-0.1396,-0.0898,-0.0798,0.0074,0.0124,0.1122,0.0624,0.187,0.1496,0.3118,0.3766,0.5936,0.6758,0.9376,0.8478,1,0.9252,0.9128,0.8554,0.7506,0.7182,0.7058,0.7008,-0.067,0.5248,0.4928,0.7696,0.6588,0.2158,0.0438,-0.0292,-0.1662,-0.2712,-0.3994,-0.2916,-0.2624,-0.1546,-0.1896,-0.1108,-0.0874,-0.0554,-0.0612,0.1662,0.3994,0.6384,0.7434,0.9184,0.9504,1,0.9504,0.863,0.7696,0.6852,0.5976,0.6734,-0.2082,0.2232,0.8348,0.8874,0.2346,-0.1594,-0.5984,-0.85,-0.696,-0.7898,-0.865,-0.7598,-0.6622,-0.6472,-0.7374,-0.6622,-0.6848,-0.6322,-0.5348,-0.0244,0.1858,0.4596,0.741,0.88,1,0.9362,0.6136,0.591,0.4896,0.107,0.0694,0.3058,-0.0586,0.6216,1,0.7298,0.1622,-0.3108,-0.518,-0.563,-0.8108,-0.8154,-0.982,-0.8018,-0.7612,-0.8694,-0.6486,-0.4414,-0.446,-0.4234,-0.2748,-0.018,0.1216,0.3604,0.7388,0.8288,0.946,0.9504,0.9324,0.919,0.5046,0.2882,0.518,0.6352,-0.161,0.4512,0.6462,0.3878,0.043,-0.6826,-0.7234,-0.6962,-0.805,-0.9592,-0.9366,-0.7732,-0.737,-0.8594,-0.8548,-0.7778,-0.8232,-0.6916,-0.6734,-0.2744,-0.102,0.2244,0.7552,1,0.9456,0.7732,0.5692,0.474,0.2608,0.1792,0.1928,0.2608,0.0666,0.6888,0.6888,0.7334,0.6,0.0222,-0.1556,-0.0222,-0.2888,0.0222,-0.0222,-0.3778,-0.0222,0.0222,0.0222,0.1112,-0.2,0.1556,0.2,0.3778,1,0.8666,0.3334,0.4666,0.4222,0.7334,0.5112,0.6444,0.5556,0.4666,0.4222,0.4222,0.0434,0.7392,0.7392,0.826,0.7392,0.3044,0.174,-0.0434,0,-0.3914,-0.4782,-0.0434,-0.174,-0.2608,-0.4348,0.087,0.2608,0.3478,0.6522,0.7826,0.7826,0.8696,0.6086,0.9566,0.8696,1,0.6956,0.7392,0.4782,0.4782,0.3044,0.6086,-0.221,0.3894,0.3052,0.6632,0.5368,0.0736,-0.0526,-0.179,-0.3894,-0.3684,-0.6,-0.5368,-0.3894,-0.2632,-0.3684,-0.3264,-0.1578,-0.1368,-0.1158,-0.1158,0.4106,0.3894,0.7052,0.6632,1,0.9368,0.8948,0.7894,0.6842,0.4736,0.5368,0.6,-1,-1,-1,-1,-1,-1,-1,-0.8812,-0.9264,-0.9446,-0.445,0.4034,0.636,0.6608,0.6244,0.5368,0.5258,0.8198,0.6368,-0.094,-0.4216,-0.5762,-0.6644,-0.7644,-0.9204,-0.9446,-0.9664,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.928,-0.9526,-0.8498,0.602,0.0842,0.4004,0.7818,0.9204,0.7428,0.4722,0.5088,0.1586,-0.398,-0.6082,-0.684,-0.7786,-0.818,-0.8818,-0.895,-0.878,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9994,-0.93,-0.8934,0.36,-0.69,-0.7626,-0.66,-0.6376,-0.6,-0.6156,-0.8112,-0.929,-0.9178,-0.8712,-0.909,-0.8734,-0.7434,-0.1268,-0.1134,-0.2868,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.0858,-0.2858,1,1,1,0.0858,-0.8286,-1,-0.7428,-0.1714,-0.3142,-0.6,-0.6286,-0.6858,-0.8,-0.8286,-0.3714,-0.4572,-0.0858,0.3428,-1,-1,-1,-1,-1,-1,0.2626,0.2818,0.2938,0.3114,0.3112,0.3222,0.3394,0.3774,0.4096,0.03,0.7338,0.7238,0.7636,0.7786,0.8122,0.847,0.905,0.9812,1,1,-0.7334,0,0.4822,0.0342,0.1082,0.1046,0.2478,1,-0.631,0.1068,0.2622,0.4174,0.5534,0.4368,0.631,0.6504,0.4368,0.5728,0.7864,0.7864,0.631,0.6894,0.6894,0.903,0.864,0.767,0.903,0.8834,1,0.9806,0.7282,0.7088,0.6116,0.8058,0.7476,1,0.9224,0.4174,0.1068,-0.2038,-0.534,-0.3592,-0.0098,-0.068,-0.1456,0.0292,-0.1456,-0.2622,-0.2428,0.1844,0.2428,0.2816,0.4564,0.3204,0.3204,0.398,0.4758,0.398,0.3204,0.5146,0.8252,0.8252,0.6116,0.4758,0.6894,0.7864,0.9418,1,0.767,0.6116,0.6894,0.4758,0.034,0.1972,0.0068,-0.4558,-0.2244,-0.17,-0.3062,-0.2108,-0.1292,0.4014,0.5646,0.3334,0.5782,0.4286,0.1428,0.1428,0.687,0.7688,0.3334,0.5918,0.7414,1,0.8912,0.8912,0.7824,0.7552,0.7552,0.6326,0.5238,0.3878,0.5646,0.5102,1,-1,-1,1,-1,-1,-0.4,-0.7666,-1,-0.4386,-0.3508,-0.3334,-0.1228,-0.1754,-0.1404,0.0176,-0.0526,0.2106,0.7894,0.9122,1,0.6316,0.7192,0.807,0.7192,0.772,0.6316,0.5264,0.7894,0.6842,0.8422,0.6316,0.5964,0.2456,-0.0878,-0.035,-0.0176,0.035,0.1754,0.1228,-0.1404,'4'
0.0586,0.7252,0.6416,0.8962,0.6516,0.1122,-0.3434,-0.2764,-0.3802,-0.3736,-0.3032,-0.3334,-0.3434,-0.4238,-0.2294,-0.5042,-0.2998,-0.4204,-0.2094,0.1926,0.4204,0.6616,0.6884,0.7286,0.7822,0.9128,0.9262,1,0.7286,0.5712,0.5578,0.5912,0.092,0.7822,0.7116,0.9202,0.776,0.3128,0.1074,-0.181,-0.4786,-0.365,-0.6412,-0.5246,-0.5246,-0.4386,-0.503,-0.4294,-0.316,-0.3098,0.2116,0.1718,0.408,0.5368,1,0.8496,0.9878,0.8558,0.7914,0.7608,0.8036,0.7668,0.8988,0.8436,0.0666,0.7464,0.652,0.9284,0.7138,0.2944,-0.0666,-0.2976,-0.548,-0.5056,-0.587,-0.5934,-0.5414,-0.5642,-0.6,-0.587,-0.4178,-0.5512,-0.174,-0.0114,0.239,0.4114,0.5578,0.8048,1,0.9122,0.7398,0.7464,0.5024,0.5902,0.6326,0.857,-0.0282,0.4542,0.8802,1,0.2078,-0.0986,-0.5458,-0.8592,-0.7536,-0.9226,-0.9684,-0.9402,-0.8486,-0.7676,-0.7816,-0.817,-0.7288,-0.6902,-0.486,-0.4014,-0.0598,0.324,0.6232,0.8556,0.8944,0.8098,0.7008,0.6232,0.3768,0.243,0.0212,0.1092,0.0668,0.4878,1,0.8368,-0.0146,-0.2854,-0.5008,-0.5138,-0.6444,-0.6934,-0.938,-0.8826,-0.8042,-0.7422,-0.6802,-0.7456,-0.8532,-0.69,-0.566,-0.3736,-0.204,-0.0212,0.3932,0.6412,0.8598,0.8792,0.8598,0.9022,0.6966,0.5628,0.4128,0.3246,0.153,0.682,1,0.5626,-0.0656,-0.3002,-0.4592,-0.4156,-0.7058,-0.7814,-0.9126,-0.8808,-0.8846,-0.7932,-0.7892,-0.7296,-0.7138,-0.6382,-0.6144,-0.511,-0.4394,-0.2286,0.1848,0.3836,0.7694,0.837,0.7496,0.9126,0.7018,0.3518,0.1212,0.0656,0.2844,0.526,0.8246,0.6304,0.128,-0.4028,-0.6208,-0.5592,-0.8246,-0.91,-0.7536,-0.5118,-0.5972,-0.711,-0.782,-0.8246,-0.692,-0.545,-0.6446,-0.2512,-0.128,0.346,0.635,1,0.9906,0.9526,0.8484,0.8104,0.635,0.3364,0.2274,0.3034,0.0232,0.5814,0.4884,0.721,0.4418,-0.4418,-0.4418,-0.3024,-0.3954,-0.4884,-0.3024,-0.1162,-0.3024,-0.3488,-0.3024,-0.2558,-0.0698,-0.2558,0.3024,0.4418,0.7674,0.814,0.721,0.814,0.721,0.814,1,1,0.4884,0.1628,0.5348,0.3954,0.0286,0.7142,0.7142,1,0.6,0.2572,-0.2,-0.2,-0.4858,-0.4286,-0.4286,-0.3714,-0.2572,-0.2,-0.0858,-0.4858,-0.4858,-0.3714,-0.8286,-0.5428,0.3714,0.4858,0.7142,0.7714,0.6,0.8286,0.8858,0.8858,0.6572,0.3714,0.4858,0.4858,0.2528,0.4946,1,0.912,0.1648,0.077,-0.2308,-0.2088,-0.1428,-0.3186,-0.4066,-0.4066,-0.7582,-0.4726,-0.5824,-0.7582,-0.3406,-0.3626,-0.2748,-0.1208,0.1868,0.2968,0.4726,0.912,0.8242,0.8682,0.956,0.8902,0.8462,0.7142,0.3846,0.5384,-1,-1,-1,-1,-1,-1,-1,-0.8644,-0.9374,-0.911,-0.4648,0.8644,0.8676,0.6598,0.488,0.5548,0.8028,0.7244,0.205,-0.1744,-0.3726,-0.4848,-0.7086,-0.7954,-0.877,-0.9226,-0.9576,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9012,-0.9422,0.3454,1,0.6654,0.824,0.5988,0.42,0.4274,0.6096,0.4496,-0.0612,-0.3716,-0.4866,-0.5888,-0.7144,-0.7694,-0.7802,-0.8548,-0.8918,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.983,-0.9834,-0.7,0.8166,-0.762,-0.746,-0.788,-0.89,-0.71,-0.778,-0.811,-0.8546,-0.9092,-0.902,-0.8164,-0.66,-0.4568,-0.25,-0.3468,-0.42,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.0286,1,1,1,1,-0.7428,-0.8572,-0.8858,-0.8858,-0.7142,-0.5714,-0.6286,-0.8858,-0.9142,-0.5714,-0.4286,-0.4,-0.6286,-0.4572,-0.6286,-1,-1,-1,-1,-1,-1,0.0274,0.033,0.0512,0.0708,0.1022,0.1198,0.141,0.1568,0.0908,-0.2616,1,1,1,1,1,1,1,1,1,1,-0.6,0.2352,0.7298,0.3696,0.5846,0.707,1,1,-0.7546,-0.6074,-0.1656,0.0062,0.1166,0.3128,0.3128,0.3128,0.1656,0.1412,0.3866,0.4478,0.6564,0.7056,0.497,0.5828,0.6074,0.7424,0.7056,0.595,0.9878,1,0.9142,0.7914,0.6932,0.7056,0.5338,0.4602,0.4478,0.2148,0.1902,-0.362,-0.6492,-0.3918,-0.427,-0.4386,-0.497,-0.2398,-0.1696,-0.228,-0.1228,0.076,0.1696,-0.0526,0.2398,0.3802,0.2866,0.0878,0.3216,0.31,0.3918,0.4854,0.7544,0.9532,1,0.6492,0.8596,0.7076,0.6024,0.6258,0.6374,0.5088,0.3918,-0.0878,0.0212,0.149,0.0354,-0.3476,-0.3476,-0.1914,-0.4042,-0.1774,-0.2908,0.149,0.3334,0.1632,0.5036,0.5602,0.4184,0.3334,0.3618,0.3334,0.2766,0.4752,0.9574,0.7588,0.6312,0.7304,1,0.5886,0.39,0.6454,0.6738,0.6738,0.4042,-0.2198,1,-1,-1,1,-1,-1,-1,-0.7,1,-0.0354,0.078,0.4042,0.4894,0.007,0.2198,0.4894,0.5602,0.7164,0.929,0.9008,0.7164,0.9858,0.5036,0.4752,0.7588,0.9148,0.2056,0.2482,0.5178,0.8014,1,0.9432,0.8298,0.461,0.2766,0.1914,-0.0212,0.234,0.2198,0.0638,0.007,'4'
-0.525,0.5388,0.735,0.6764,0.5112,0.1808,-0.167,-0.2426,-0.1738,-0.1462,-0.3908,-0.2496,-0.2634,-0.3184,-0.2358,-0.3012,-0.1084,-0.1532,0.0844,0.1772,0.3046,0.3528,0.7832,0.845,0.9242,1,0.9932,0.876,0.8314,0.7624,0.7728,0.7384,-0.5236,0.5754,0.692,0.2966,0.5364,0.3776,0.0114,-0.0146,-0.2286,-0.1086,-0.4458,-0.1474,-0.2674,-0.3646,-0.3582,-0.3646,-0.1928,-0.3452,0.0568,0.0048,0.3744,0.4328,0.611,0.8088,0.6952,1,0.9806,0.731,0.8346,0.6434,0.7568,0.637,-0.5616,0.6506,0.798,0.4178,0.6268,0.4828,-0.0446,-0.0206,-0.315,-0.1576,-0.4864,-0.3082,-0.3664,-0.3596,-0.291,-0.459,-0.2432,-0.363,0.1542,0.1576,0.2432,0.4042,0.4486,0.9042,0.8938,0.9042,1,0.75,0.8802,0.7706,0.6164,0.6404,-0.23,0.5644,0.6196,0.4938,0.589,0.1688,0.0368,-0.1718,-0.0276,-0.1718,-0.1718,-0.2424,-0.2976,-0.2944,-0.319,-0.2546,-0.178,-0.0582,-0.043,0.043,0.2056,0.3774,0.6074,0.7148,0.9418,1,0.9326,1,0.9724,0.905,0.7516,0.6258,-0.04,0.5962,0.5048,0.8514,0.718,0.1734,-0.0704,-0.1162,-0.2304,-0.2572,-0.4972,-0.5048,-0.482,-0.52,-0.4666,-0.3562,-0.4058,-0.5466,-0.4286,-0.1924,0.0514,0.1772,0.3448,0.638,0.8286,0.958,0.958,1,0.9962,0.9162,0.8514,0.859,0.0202,0.417,0.9878,1,0.2956,-0.1822,-0.4574,-0.6762,-0.6356,-0.7166,-0.915,-0.834,-0.8542,-0.8098,-0.838,-0.838,-0.7288,-0.7652,-0.4454,-0.409,-0.2146,-0.089,0.1174,0.4616,0.672,0.6276,0.5222,0.7692,0.753,0.7166,0.5668,0.413,-0.005,0.7086,1,0.7438,0.3568,-0.1708,-0.7488,-0.7036,-0.7286,-0.9096,-0.8292,-0.9548,-0.8442,-0.7538,-0.819,-0.8392,-0.784,-0.7036,-0.5628,-0.3668,-0.2562,-0.2864,-0.005,0.2964,0.6232,0.7588,0.6282,0.7186,0.7136,0.6984,0.6784,0.4422,-0.4666,0.1,0.7,0.7666,0.4,-0.0666,-0.0334,-0.2334,-0.1666,-0.0334,-0.1334,-0.1334,-0.0334,0.1,0.1,0,0.1666,0.2,0.2334,0.3666,0.4334,0.5,0.6666,0.8334,0.8,0.7666,1,1,0.9,0.9334,0.9334,0.9334,-0.5686,0.4118,0.6078,0.6078,0.3726,0.0588,-0.6078,-0.647,-0.255,-0.3334,-0.5294,-0.6862,-0.4118,-0.451,-0.2156,-0.3334,-0.255,-0.098,0.1372,0.3334,0.3726,0.5686,0.6862,0.8432,0.9216,1,0.9216,0.647,0.7648,0.5294,0.451,0.5294,0.0244,0.561,0.756,0.9512,0.6586,0.1464,-0.1464,-0.2196,-0.1952,-0.317,-0.8048,-0.439,-0.4146,-0.5366,-0.5854,-0.561,-0.7318,-0.7804,-0.756,-0.561,-0.1464,-0.0732,0.2682,0.5366,0.6342,0.8536,0.878,1,0.9512,0.9756,0.8048,0.9512,-1,-1,-1,-1,-1,-1,-1,-1,-0.9842,-0.9782,-0.365,0.6712,0.714,0.7888,0.9798,0.8488,0.5852,0.4196,0.4946,0.446,-0.0498,-0.3374,-0.4482,-0.5044,-0.6594,-0.8202,-0.9244,-0.9348,-0.955,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.975,-0.9706,-0.37,0.894,0.6914,0.8484,0.829,0.8796,0.9582,0.6484,0.4596,0.24,-0.2482,-0.488,-0.541,-0.2844,-0.725,-0.8194,-0.8954,-0.8912,-0.907,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8814,-0.8948,-0.7048,-0.5844,-0.7472,-0.7514,-0.894,-0.7214,-0.694,-0.6484,-0.7576,-0.8976,-0.915,-0.975,-0.9768,-0.7134,-0.8668,-0.5868,-0.34,-0.3034,-0.3968,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,-0.4858,-0.7428,-0.6572,-0.6,-0.6572,-0.6286,-0.2572,-0.4286,-0.5428,-0.8572,-0.6572,-0.0286,0.0286,-0.5428,-0.3714,-0.6286,-0.2858,-1,-1,-1,-1,0.2896,0.3046,0.3238,0.3432,0.3608,0.3852,0.4128,0.4344,0.44,0.1532,1,1,1,1,1,1,1,1,1,1,-0.88,-0.1058,-0.231,0.6624,0.9316,0.842,0.7044,1,-0.451,0.098,0.1372,0.0196,-0.2942,-0.255,-0.0588,0.1372,0.1764,0.255,0.451,0.6078,0.8432,0.9608,1,1,0.9608,0.9608,0.7254,0.255,0.0196,0.2156,0.5686,0.6078,0.4902,0.1372,-0.098,-0.098,0.1372,0.098,0.0196,-0.451,-0.3398,0.67,0.6504,-0.2234,-0.398,-0.5146,-0.1262,-0.2038,-0.301,-0.0098,0.2622,0.6504,0.8446,0.8834,0.9224,0.8058,0.8058,1,0.631,0.3204,-0.068,0.3786,0.6116,0.6504,0.2816,0.068,-0.2622,-0.3398,0.2234,0.2428,0.1262,-0.165,-0.4414,1,0.8918,0.009,-0.1172,-0.1532,-0.2792,-0.1892,-0.1892,0.1172,0.1352,0.5856,0.8558,0.8198,0.6576,0.6036,0.6216,0.8558,0.6756,0.1892,-0.027,0.1712,0.3154,0.2972,0.009,-0.2432,-0.1172,-0.045,-0.081,-0.045,-0.1172,-0.2252,0.7298,-1,-1,1,-0.8,-1,0.6,-0.8334,1,-0.802,-0.5644,-0.0298,0.2476,-0.3466,-0.2476,-0.1486,-0.0496,0.4654,0.505,0.3664,0.4456,0.5446,0.208,0.1486,0.0496,0.7426,0.1486,0.1486,0.5842,1,0.9604,0.4258,0.505,-0.2278,-0.3664,-0.4456,-0.1288,0.0892,0.406,-0.1486,-0.5842,'5'
-0.2708,0.7774,0.8794,0.4932,0.3136,-0.118,-0.1608,-0.2922,-0.4048,-0.5228,-0.5068,-0.504,-0.5576,-0.4852,-0.4022,-0.4932,-0.3994,-0.3432,-0.185,-0.1554,0.008,-0.016,0.193,0.3512,0.7774,0.9008,0.7694,0.8124,0.8096,1,0.9142,0.8338,-0.1268,0.6682,0.6936,0.4308,0.4654,-0.159,-0.0898,-0.3572,-0.2488,-0.5898,-0.5392,-0.493,-0.3388,-0.507,-0.2328,-0.3732,-0.4562,-0.546,-0.2534,-0.2812,-0.076,-0.06,0.2812,0.3294,0.894,0.9746,0.8226,0.9608,0.8088,1,0.8318,0.9194,0.0174,0.7674,0.7624,0.6856,0.6584,0.109,0.0718,-0.2376,-0.25,-0.4876,-0.5446,-0.4678,-0.4752,-0.406,-0.3812,-0.4876,-0.4728,-0.4628,-0.4504,-0.1906,-0.0496,0.1212,0.3194,0.5594,0.9184,1,0.9356,0.8862,0.9456,0.9158,0.9728,0.9826,0.0452,0.6828,0.6828,0.9098,0.5148,0.1912,-0.3374,-0.5116,-0.6174,-0.748,-0.8228,-0.9222,-0.9472,-0.8724,-0.8134,-0.9316,-0.8506,-0.8352,-0.58,-0.5024,-0.3188,-0.3438,-0.0234,0.2472,0.6424,0.7636,0.7542,0.7854,0.86,1,0.9626,0.8444,0.1104,0.4766,1,0.9092,-0.2344,-0.4584,-0.646,-0.5734,-0.8214,-0.8488,-0.9516,-0.7882,-0.8276,-0.8094,-0.8276,-0.9334,-0.8246,-0.773,-0.891,-0.6854,-0.4978,-0.3888,-0.1134,0.183,0.6762,0.9364,0.8306,0.7004,0.6278,0.776,0.7066,0.5886,0.2406,0.7254,1,0.6712,0.2372,-0.0814,-0.383,-0.3526,-0.6406,-0.6712,-0.861,-0.705,-0.695,-0.6848,-0.7694,-0.844,-0.6204,-0.5796,-0.4984,-0.5424,-0.322,-0.356,0,0.2576,0.6712,0.8814,0.6406,0.6916,0.6576,0.7254,0.6916,0.5084,0.3256,0.5478,0.636,0.7662,0.3832,-0.3564,-0.5594,-0.7126,-0.4138,-0.7242,-0.7394,-0.6744,-0.6322,-0.544,-0.5978,-0.4866,-0.7242,-0.7204,-0.2682,-0.2222,-0.0882,0.2644,0.521,0.59,0.6284,0.9272,0.9042,1,0.9464,0.4406,0.4482,0.3564,-0.7446,0.1914,0.617,0.5744,0.1064,-0.0212,-0.3192,-0.3618,-0.7872,-0.7446,-0.617,-0.7022,-0.6596,-0.2766,-0.234,-0.234,-0.2766,-0.149,-0.0212,-0.4468,0.0638,0.1914,0.234,0.7022,0.9574,1,0.9148,0.9148,0.8724,0.9574,0.7446,0.9148,-0.1526,0.695,0.7966,0.4916,0.2882,-0.356,-0.0508,0.017,-0.0508,-0.0508,-0.2542,-0.1864,-0.2542,-0.2204,-0.1864,-0.3898,-0.0848,-0.0508,-0.4576,-0.017,0.0848,0.0848,-0.1526,0.356,0.8306,1,0.8984,0.695,0.9322,0.9662,0.8644,0.661,0.0652,0.413,0.7826,0.6956,-0.174,-0.3696,-0.5,-0.3914,-0.587,-0.7826,-0.5434,-0.5,-0.587,-0.5218,-0.6086,-0.4782,-0.5434,-0.7174,-0.7608,-0.5218,-0.4348,-0.1304,0.1956,0.3696,0.7608,1,0.913,0.826,0.7608,0.7392,0.6304,0.4782,-1,-1,-1,-1,-1,-1,-1,-1,-0.9602,-0.9666,-0.5246,0.4158,0.9192,0.886,0.8616,0.7374,0.7616,0.9154,0.6234,0.057,-0.33,-0.4094,-0.6926,-0.8232,-0.918,-0.9474,-0.9538,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.949,-0.9562,-0.3916,0.3366,0.5144,0.7368,0.8876,0.634,0.6196,0.551,0.3054,-0.193,-0.4864,-0.5128,-0.6778,-0.7328,-0.783,-0.8158,-0.858,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9068,-0.9734,-0.68,-0.7256,-0.8492,-0.7928,-0.7728,-0.76,-0.735,-0.88,-0.815,-0.9134,-0.845,-0.73,-0.5568,-0.3368,-0.0368,-0.2668,-0.2734,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,1,1,1,-0.1714,-0.8572,-0.7428,-0.7428,-0.6286,-0.7142,-0.5428,-0.7428,-0.8572,-0.6,-0.1714,-0.2286,-0.6286,-0.5142,-0.5714,-1,-1,-1,-1,-1,-1,0.1084,0.106,0.1152,0.119,0.117,0.1096,0.1076,0.1126,0.1328,-0.2242,0.9416,0.9356,0.9308,0.98,1,1,1,1,1,1,-0.7066,0.3764,-0.3716,0.4314,0.3852,0.146,0.3636,1,0.1148,0.4754,0.4098,0.0492,-0.1148,-0.1148,-0.2132,-0.082,0.082,0.1476,0.2786,0.5082,0.8032,0.8688,1,0.9344,0.8688,0.6066,0.4754,0.5082,0.1804,0.4754,0.541,0.6066,0.3114,0.0164,0.1804,0.3114,0.377,-0.0492,-0.246,-0.2132,0.0516,0.6288,0.1134,0.031,-0.134,-0.299,-0.2578,-0.2372,-0.0104,0.031,0.0928,0.567,1,0.9176,0.9176,0.9794,0.8556,0.8144,0.835,0.3608,0.2164,0.4846,0.5464,0.7526,0.134,-0.1958,0.1752,0.1752,0.732,0.6702,0.1546,-0.299,0.055,0.6264,0.4506,0.033,-0.1208,-0.2748,-0.2088,-0.1648,-0.1868,-0.099,0.2308,0.5164,1,0.8682,0.8022,0.956,0.934,0.912,0.8462,0.3406,-0.055,0.4286,0.5604,0.6264,-0.033,-0.1428,-0.2528,0.1648,0.4286,0.4066,0.055,-0.1868,0.6826,-1,-1,1,-1,-1,-0.6,-0.8334,-1,-0.2106,-0.0394,0.1842,0.4868,0.3948,-0.0394,0.2632,0.5,0.6052,0.671,0.7894,0.6316,0.8948,0.7368,0.4868,0.6842,0.5132,0.4606,0.1184,0.5922,1,0.9736,0.8684,0.6448,0.5394,0.4078,0.1842,0.0394,0.0922,0.0394,0.0526,-0.1184,'5'
-0.211,0.3972,0.3808,0.6548,0.6274,1,0.9726,0.7754,0.7206,0.3424,0.337,0.452,0.3206,0.441,0.3534,0.6932,0.622,0.9068,0.8082,0.6658,0.6054,0.5068,0.452,0.7424,0.6438,0.6274,0.5342,0.4466,0.348,0.3534,0.326,0.3698,-0.2896,0.2622,0.224,0.552,0.6994,0.9782,0.858,1,0.8416,0.5738,0.3442,0.47,0.5136,0.601,0.705,0.7596,0.7704,0.8088,0.7104,0.6612,0.683,0.683,0.7978,0.7814,0.7268,0.6886,0.4154,0.3006,0.2296,0.2896,0.3224,0.3224,-0.255,0.2026,0.2288,0.451,0.6862,0.83,0.9084,1,0.6688,0.5774,0.56,0.5382,0.6034,0.525,0.7342,0.6994,0.8824,0.7516,0.647,0.512,0.5774,0.5556,0.5816,0.7386,0.7342,0.4466,0.403,0.2332,0.2026,0.1852,0.1982,0.3116,-0.2926,0.1512,0.278,0.4292,0.7024,0.7658,1,1,0.8292,0.722,0.6732,0.6,0.6878,0.7708,0.7854,0.7756,0.6976,0.4342,0.3268,0.4586,0.517,0.5464,0.7074,0.6634,0.6048,0.483,0.2536,0.0342,0.0146,0.0196,0.0732,0.2732,-0.298,0.1198,0.376,0.4818,0.7158,0.6936,0.8998,0.9554,1,0.5654,0.5376,0.5988,0.532,0.5766,0.6936,0.6602,0.3314,0.2144,0.17,0.0306,0.1644,0.326,0.5098,0.6324,0.6546,0.5154,0.3204,0.1588,0.103,0.2256,0.1754,0.2814,-0.2848,-0.019,0.2912,0.2594,0.4178,0.6456,0.8924,1,0.5886,0.2912,0.3164,0.5316,0.4304,0.6582,0.576,0.2406,-0.095,-0.2216,-0.095,0.076,0.1456,0.2278,0.462,0.5632,0.3608,0.2658,-0.0822,-0.1582,-0.4304,-0.4684,-0.2026,-0.0444,-0.109,0.2228,0.3364,0.2038,0.763,0.82,0.82,0.7156,0.6398,0.4408,0.6966,0.7914,1,0.6966,0.4598,0.3364,-0.0522,-0.3744,-0.2228,-0.0996,-0.0616,0.0806,0.3554,0.7346,0.6682,0.5734,-0.0522,0.2512,0.327,0.4502,0.6304,0.2132,-0.1698,0.4716,0.434,0.6982,0.6982,0.9622,1,0.7358,0.5472,0.1698,0.2452,0.2452,0.2452,0.434,0.3962,0.7736,0.849,1,1,0.6226,0.5094,0.5472,0.585,0.7736,0.7358,0.849,0.8114,0.4716,0.3584,0.3584,0.3962,0.3584,-0.1,0.4334,0.4,0.6666,0.6,1,1,0.9334,0.8666,0.5334,0.4,0.6666,0.5666,0.5334,0.4,0.6,0.7334,0.9,0.8666,0.8,0.6666,0.7,0.5334,0.8,0.8334,0.7,0.3,0.4666,0.2666,0.4666,0.3666,0.5,-0.3412,-0.0118,0.2942,0.2942,0.4352,0.6942,0.7412,1,0.8588,0.3882,0.2236,0.1294,0.2706,0.5294,0.4824,0.153,-0.0352,-0.1294,0.1764,0.3648,0.3882,0.553,0.6706,0.7412,0.7176,0.6236,0.3176,0.1764,0.0588,0.1294,0.2706,0.3176,-1,-1,-1,-1,-1,-1,-1,-0.9772,-0.9848,-0.8312,-0.1738,0.3654,0.6624,0.9224,0.9316,0.984,0.978,0.9494,0.6362,0.1984,0.0362,-0.1012,-0.6676,-0.951,-0.9586,-0.9536,-0.968,-0.9604,-0.9628,-0.9704,-0.9654,-0.9586,-0.9638,-1,-1,-1,-1,-1,-1,-1,-0.9878,-0.9888,-0.6716,-0.436,-0.0076,0.2928,0.7578,0.935,0.9668,0.7914,0.5568,0.1506,-0.1802,-0.2508,-0.4922,-0.803,-0.8744,-0.8474,-0.762,-0.7858,-0.771,-0.7724,-0.8268,-0.8402,-0.8066,-0.8238,-1,-1,-1,-1,-1,-1,-1,-0.8934,-0.9734,-0.7,-0.5134,-0.77,-0.68,-0.692,-0.624,-0.66,-0.676,-0.688,-0.664,-0.7,-0.64,-0.612,-0.2234,0.3832,0.6866,0.9566,0.8732,1,1,1,1,1,0.89,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,0.2572,0.1714,-0.5142,-0.9428,-0.8572,-0.8572,-0.5142,-0.1142,-0.1428,-0.3142,1,1,0.4572,-0.5428,-0.6,-0.9142,-0.8,-0.8286,-1,-0.9714,-0.9428,-0.8572,1,1,1,1,1,1,1,1,1,1,0.0016,-0.0596,-0.0596,-0.1252,-0.2012,-0.1952,-0.2068,-0.2696,-0.4288,-0.481,-0.7066,-0.4824,-0.4872,-0.2138,0.0708,0.276,0.6422,1,-0.5328,-0.0218,0.5766,0.781,0.416,0.343,0.4014,0.4744,0.854,0.8978,1,0.9854,0.9124,0.7664,0.6058,0.635,0.781,0.8832,0.6788,0.5328,0.5766,0.6788,0.6496,0.2554,-0.1386,-0.3722,-0.3138,-0.1094,0.197,0.1824,0.1532,-0.27,-0.18,0.2804,0.5062,0.6988,0.3222,0.1214,0.2888,0.272,0.5564,1,0.9414,0.657,0.8158,0.7992,0.4644,0.4476,0.498,0.4394,0.5732,0.2636,0.3892,0.3974,0.272,0.2552,-0.0628,-0.3222,-0.1548,0.021,0.2302,0.272,0.1214,-0.1966,0.3628,0.5784,0.745,0.8824,0.549,0.2844,0.3824,0.6666,0.951,1,0.8138,0.8726,0.9216,0.902,0.3726,0.5294,0.549,0.598,0.4902,0.2746,0.2156,0.2352,0.196,0.1274,-0.3922,-0.255,-0.1862,0.1274,0.2648,0.3236,0.2844,-0.0196,-0.2746,-1,-1,1,-1,-1,-1,-0.6334,-1,-0.8194,-0.7362,-0.3472,-0.1806,-0.2084,0.1528,-0.2638,0.3472,0.3334,0.3334,0.375,0.2084,0.3334,0.3612,0.25,0.2638,0.3194,0.4028,0.5556,0.4584,0.4584,0.9306,0.9306,0.9862,0.9584,1,0.875,0.8334,0.9166,0.8334,0.5278,0.1944,'6'
-0.2464,0.4028,0.3972,0.6058,0.6348,1,0.9362,0.4782,0.3914,0.0144,0.0202,0.345,0.3218,0.4898,0.4318,0.6406,0.6696,0.8782,0.9014,0.8608,0.8492,0.6232,0.658,0.5594,0.5652,0.6754,0.6232,0.4608,0.4202,0.2406,0.345,0.258,-0.2534,0.392,0.3974,0.5734,0.568,0.92,0.9094,0.616,0.616,0.024,-0.0134,0.408,0.4186,0.488,0.52,0.7706,0.8026,0.9626,1,0.7814,0.824,0.5146,0.6,0.616,0.6854,0.6054,0.488,0.1946,0.2,0.0614,0.104,0.152,-0.2196,0.4006,0.3902,0.5762,0.5556,0.8192,0.8088,0.8656,0.8604,0.2558,0.2144,0.509,0.5142,0.5762,0.5814,0.8294,0.8552,0.9742,1,0.7622,0.845,0.7726,0.8192,0.659,0.7364,0.6072,0.633,0.3644,0.2764,0.1318,0.1628,0.3436,-0.2164,0.344,0.3166,0.508,0.4442,0.7904,0.7084,1,0.9088,0.2392,0.0706,0.2756,0.3668,0.5672,0.7358,0.918,0.7266,0.7404,0.6174,0.6628,0.6356,0.722,0.6128,0.7448,0.6538,0.7312,0.4988,0.2984,0.107,0.0842,0.0842,0.262,-0.201,0.2964,0.2312,0.4422,0.618,0.7688,0.9346,1,0.6834,0.6634,0.5428,0.5126,0.5276,0.6934,0.8694,0.7538,0.8342,0.6482,0.583,0.6582,0.6834,0.588,0.6232,0.7488,0.6634,0.4522,0.3366,0.2212,0.1356,0.0954,0.216,0.2614,-0.1758,0.297,0.291,0.4182,0.703,0.6666,0.7696,0.9334,1,0.5878,0.5696,0.7516,0.806,0.9334,0.909,0.7152,0.5878,0.4666,0.4242,0.4788,0.4666,0.5576,0.7516,0.6848,0.6728,0.4484,0.2364,0.291,0.1576,0.2848,0.3758,0.0728,-0.1506,0.1872,0.0684,-0.0868,0.2146,0.6438,0.927,1,0.6074,0.3698,0.4978,0.8538,0.8082,0.8812,0.6804,0.2968,-0.0046,0.0684,0.0958,-0.0868,-0.1232,0.2602,0.516,0.4794,0.2602,0.4338,0.516,0.6164,0.516,0.4886,-0.1506,-0.1964,-0.3618,0.1914,0.1914,0.4042,0.8724,1,0.7022,0.532,0.1914,0.149,-0.0638,0.1064,0.234,0.2766,0.4042,0.4894,0.7446,0.7872,0.7872,0.9148,0.9574,0.7446,0.7022,0.7872,0.7872,0.8724,0.7446,0.532,0.532,0.4042,0.3618,0.5744,-0.2654,0.3878,0.3878,0.5918,0.5918,1,0.9592,0.5102,0.347,0.0612,0.2244,0.4694,0.4694,0.551,0.551,0.6734,0.6734,0.796,0.796,0.4694,0.4694,0.4286,0.3878,0.2654,0.551,0.5102,0.4694,0.1428,0.2654,0.1428,0.2654,0.0612,-0.2622,0.3592,0.3592,0.534,0.4952,0.8058,0.767,0.9612,0.903,0.2622,0.165,0.4758,0.4174,0.631,0.6116,1,0.9418,0.8834,0.7864,0.8252,0.7282,0.6894,0.631,0.767,0.7088,0.7282,0.67,0.3786,0.2622,0.0292,0.2622,0.3398,-1,-1,-1,-1,-1,-1,-1,-0.9818,-0.9798,-0.8978,-0.3368,0.6926,0.5106,0.6502,0.633,0.6966,0.8878,0.9566,0.8686,0.7532,0.175,-0.264,-0.8948,-0.9504,-0.9666,-0.9606,-0.9576,-0.9696,-0.9778,-0.9748,-0.9706,-0.9738,-0.9342,-1,-1,-1,-1,-1,-1,-1,-0.9838,-0.9868,-0.7878,-0.2344,0.5524,0.2978,0.418,0.7906,0.5218,0.863,0.7576,0.852,0.528,0.3394,-0.542,-0.8942,-0.9126,-0.9154,-0.9332,-0.8816,-0.8998,-0.9592,-0.9654,-0.9604,-0.9046,-0.8272,-1,-1,-1,-1,-1,-1,-1,-0.88,-0.9534,-0.6634,-0.1468,-0.62,-0.64,-0.688,-0.62,-0.592,-0.584,-0.612,-0.58,-0.592,-0.66,-0.668,0.2,0.46,0.2432,0.1366,0.16,0.5266,0.3266,0.0732,0,0.4732,0.7232,-1,-1,-1,-1,-1,-1,-1,-0.5142,1,1,1,0.0858,-0.4572,-0.6858,-0.5714,-0.4572,-0.4858,-0.7428,-0.8286,0.1714,1,1,1,0.0286,-0.2286,-0.7428,-0.5142,-0.7428,-0.5714,-0.9142,-0.0858,1,0.5714,1,1,1,1,1,1,1,1,1,1,0.1172,0.1172,0.031,-0.0246,-0.0278,-0.0904,-0.1324,-0.1362,-0.2078,-0.4106,-0.7734,-0.4942,-0.1124,0.3422,0.4664,0.3124,0.3702,1,-0.3676,-0.147,0.3088,0.353,0.1176,0.0882,0.2206,0.353,0.6324,1,0.9852,0.8824,0.9558,0.9852,0.8088,0.6618,0.7648,0.7794,0.7352,0.6618,0.6618,0.5882,0.5148,0.0148,-0.1912,-0.2942,-0.3824,-0.2942,-0.4264,-0.3088,-0.2206,-0.353,-0.2906,0.093,0.2442,0.186,0.1162,0.1396,0.0466,0.128,0.3604,0.6744,0.7094,0.779,1,1,0.5348,0.3488,0.407,0.4302,0.3488,0.3488,0.2442,0.4186,0.407,-0.0814,-0.221,-0.3024,-0.3024,-0.2558,-0.1744,0.1046,0.0698,-0.2326,0,0.1876,0.6608,0.5982,0.3214,0.1964,0.3214,0.25,0.4018,0.9018,1,0.625,0.866,0.7054,0.6072,0.3214,0.384,0.3214,0.2858,0.009,0.4554,0.2946,0.009,-0.5268,-0.3482,-0.3304,-0.259,0,0.1964,0.3392,0.2054,0.0624,-0.1584,-1,-1,1,-1,-1,-0.8,-0.6666,-1,-0.6888,-0.5408,-0.4666,-0.2296,-0.3334,-0.1704,-0.0074,-0.1112,0.2,0.3334,0.363,0.4518,0.437,0.4074,0.4222,0.4518,0.5408,0.6888,0.7186,0.7482,0.7038,0.8222,1,0.8814,0.9704,0.9112,0.8518,0.8666,0.7186,0.8666,0.674,0.4518,'6'
-0.0946,0.4546,0.6516,0.9016,0.6818,0.1136,-0.2196,-0.1856,-0.1554,-0.1856,-0.2122,-0.3106,-0.2234,-0.178,-0.0076,-0.0152,0.0796,0.519,0.5644,0.9508,0.8826,1,0.894,0.8826,0.697,0.8144,0.5796,0.6136,0.6628,0.6554,0.678,0.5416,-0.1808,0.2962,0.8424,1,0.627,0.2538,-0.0962,-0.2076,-0.2308,-0.3846,-0.3038,-0.3424,-0.35,-0.1384,-0.1924,-0.2038,0.077,0.1076,0.4576,0.7076,0.9038,0.9154,0.7924,0.8616,0.7884,0.7962,0.573,0.5576,0.5076,0.573,0.673,0.6462,-0.2642,0.1504,0.8456,0.8902,0.2846,0.0772,-0.0488,-0.435,-0.5406,-0.4308,-0.4634,-0.4716,-0.4634,-0.4472,-0.3536,-0.3414,-0.2804,-0.1952,0.183,0.3658,0.809,1,0.8862,0.7724,0.809,0.7032,0.5204,0.3984,0.2886,0.313,0.3984,0.4186,-0.2524,0.2898,0.8552,0.6682,0.5,-0.0234,-0.444,-0.4066,-0.5374,-0.785,-0.8692,-0.7384,-0.7524,-0.8364,-0.8412,-0.6962,-0.7336,-0.458,-0.1728,0.2898,0.7196,0.813,0.8926,1,0.9112,0.799,0.4814,0.444,0.2898,0.1214,0.2758,0.5654,-0.0442,0.5588,0.8138,0.8628,0.7058,0.1764,-0.5196,-0.4264,-0.6078,-0.6862,-0.902,-0.8872,-0.9216,-0.745,-0.6764,-0.6618,-0.7156,-0.3824,0.0442,0.1666,0.5442,0.7598,1,0.9852,0.8628,0.8284,0.7402,0.3774,0.2892,0.304,0.3774,0.5686,-0.0346,0.394,0.5974,0.749,0.4718,-0.013,-0.2988,-0.3246,-0.8052,-0.7748,-0.8008,-0.6796,-0.5108,-0.5542,-0.5714,-0.4632,-0.3246,-0.2814,0.0476,0.1386,0.407,0.8832,1,0.9004,0.9784,0.8096,0.6406,0.4762,0.4588,0.2208,0.2988,0.5454,-0.2192,0.2192,0.6916,0.8698,0.3108,-0.4554,-0.6386,-0.7254,-0.9036,-0.8362,-0.971,-0.8314,-0.7108,-0.6338,-0.6578,-0.5856,-0.4746,-0.5952,-0.494,-0.0506,0.1228,0.5518,0.976,1,0.918,0.9084,0.6144,0.335,0.0844,0.0698,0.041,0.3156,-0.0454,0.5,0.6364,0.8636,0.6818,0,-0.2272,-0.091,-0.1364,-0.2272,-0.3182,-0.3182,-0.1818,-0.2272,0,0.2728,0.3182,0.6818,0.7272,0.909,1,0.9546,0.9546,0.9546,1,0.909,0.7272,0.6364,0.7272,0.591,0.6818,0.5,-0.08,0.44,0.64,0.8,0.64,0.12,-0.2,-0.12,-0.12,-0.16,-0.12,-0.16,-0.16,-0.08,0.08,0.12,0.12,0.48,0.6,0.88,0.96,1,0.8,0.72,0.76,0.8,0.52,0.48,0.68,0.72,0.48,0.48,-0.0714,0.4286,0.6666,0.7142,0.5714,0.0952,-0.3572,-0.3572,-0.5,-0.5952,-0.6666,-0.8096,-0.8572,-0.4286,-0.5476,-0.5952,-0.5238,-0.262,0.1666,0.0714,0.3334,0.5238,1,0.9524,0.9048,0.5952,0.6904,0.4524,0.381,0.4762,0.0952,0.381,-1,-1,-0.9872,-0.9888,-0.9866,-0.9438,-0.941,-0.9702,-0.9602,-0.5632,-0.092,0.1616,0.551,0.9036,0.8374,0.4814,0.1108,-0.2826,-0.4482,-0.5552,-0.5908,-0.6212,-0.7614,-0.8942,-0.9666,-0.9742,-0.9748,-1,-1,-1,-1,-1,-1,-1,-1,-0.9798,-0.9802,-0.8664,-0.3298,0.2654,0.8416,0.287,-0.0546,0.0698,0.2688,0.618,0.909,0.759,0.3568,0.036,-0.2696,-0.4634,-0.5154,-0.5882,-0.645,-0.7684,-0.8678,-0.9298,-0.938,-0.9462,-1,-1,-1,-1,-1,-1,-1,-1,-0.8662,-0.9468,-0.86,0.4032,0.6866,0.69,0.6066,0.1866,-0.5334,-0.7,-0.723,-0.7258,-0.7572,-0.7676,-0.8176,-0.775,-0.8876,-0.8076,-0.6826,-0.77,-0.86,-0.5634,-0.2,-0.1734,-0.5834,-1,-1,-1,-1,-1,-1,-1,-1,-0.3714,-0.2572,1,1,1,-0.3142,0.6,1,1,0.9428,-0.7142,-0.8572,-0.9428,-0.9142,-0.8286,-0.7714,-0.7142,-0.7428,-0.9428,-0.2572,-0.4572,-0.1428,-0.6286,-0.5428,0.3142,-1,-1,-1,-1,-1,-1,0.2112,0.2166,0.2228,0.2414,0.2526,0.2692,0.2974,0.3132,0.2924,0.059,0.7432,0.7974,0.768,0.7716,0.7882,0.797,0.8348,0.84,0.9192,0.9796,-0.4666,-0.1294,0.0454,0.1224,0.27,0.4158,0.587,1,-0.804,-0.4122,-0.3624,-0.2846,-0.1912,0.014,0.129,0.21,0.3842,0.4028,0.3904,0.5988,0.8444,0.9346,1,0.8414,0.717,0.7262,0.6982,0.6112,0.6578,0.7822,0.7326,0.7388,0.7356,0.6018,0.4526,0.241,0.1384,0.042,0.0108,-0.2598,-0.8502,-0.5584,-0.4612,-0.335,-0.314,-0.1196,-0.0382,0.2036,0.4612,0.611,0.6216,0.8738,0.8818,0.774,0.971,1,0.7766,0.9106,0.9526,0.774,0.8608,0.9264,0.9658,0.9448,0.8608,0.732,0.703,0.519,0.4744,0.4534,0.2064,0.0486,0.3628,0.5972,0.6172,-0.0514,-0.0658,-0.0314,0.0686,0.28,0.5172,0.8858,0.9228,0.9714,0.9714,0.7514,0.98,1,0.7142,0.7258,0.7372,0.48,0.5258,0.5914,0.5628,0.5942,0.7372,0.58,0.5542,0.4086,0.2314,0.22,0.2286,-0.0514,0.098,-1,-1,1,0.2,-1,-0.6,0.2666,-1,-0.186,0.1628,0.2094,0.0582,0.1628,-0.093,0.1744,0.1162,0.1628,0.5232,0.9534,1,0.5814,0.593,0.4302,0.407,0.5698,0.5116,0.6628,0.6396,0.6396,0.5582,0.407,0.2094,0.0814,0.093,-0.128,-0.0116,0.0582,0.0232,-0.093,-0.3954,'7'
-0.9076,-0.6982,-0.669,-0.0998,0.163,0.3188,0.2944,0.236,-0.129,-0.163,0.0364,0.4794,0.5718,0.4794,0.747,1,0.9854,0.7324,0.5232,0.197,-0.1094,-0.2408,-0.0608,0.09,0.2408,0.27,0.382,0.2068,0.0754,0.1874,0.1824,0.5036,-0.9288,-0.9796,-0.659,-0.2162,0.14,0.1348,0.2062,0.145,0.0026,0.0688,0.0992,0.318,0.6488,0.8474,1,0.883,0.6488,0.5268,0.4656,0.3282,-0.0382,-0.2162,-0.0382,-0.0586,0.0484,0.089,0.1756,0.1604,0.1094,0.2468,0.318,0.6234,-0.7718,-0.7864,-0.4708,0.097,0.3932,0.3834,0.3932,0.2962,0.2766,0.2088,0.335,0.6262,0.9126,0.9126,1,0.8738,0.7282,0.6554,0.67,0.3932,0.1748,-0.0632,0.102,0.2136,0.0922,0.0776,0.2864,0.165,0.1214,0.3106,0.4758,0.7136,-0.8726,-0.7824,-0.5862,-0.0026,0.2148,0.3422,0.4058,0.3528,0.0186,-0.0238,0.1564,0.5968,0.7878,1,0.9788,0.7772,0.5702,0.4006,0.3688,0.236,-0.0292,-0.1034,-0.1194,-0.077,-0.0132,0.0664,-0.0344,0.0928,0.0026,-0.0558,0.114,0.581,-0.781,-0.747,-0.6934,-0.1192,-0.0316,0.0024,0.0364,0.0268,0.0122,-0.0218,0.051,0.601,0.7226,0.961,1,0.4404,0.2262,0.2312,0.2408,0.1776,0.0364,-0.3528,-0.2262,0.0072,0.129,0.1192,-0.0122,0.0316,-0.0656,0.0414,0.0414,0.3042,-0.7386,-0.794,-0.794,-0.1156,0.0302,0,0.1256,0.1156,-0.1156,-0.0704,0.0854,0.3116,0.7588,1,0.8442,0.4724,0.2512,0.0502,0.0452,-0.0954,-0.201,-0.2964,-0.206,-0.3316,-0.0954,0.0654,0.0954,-0.2562,-0.206,-0.0904,0.015,0.397,-0.6778,-0.7382,-0.7652,0.0268,0.188,0.208,-0.0536,0.0536,0,0.0268,0.1744,0.698,1,0.9798,0.9128,0.4026,0.1006,0.0604,-0.0672,-0.2886,-0.463,-0.2954,-0.3692,-0.1476,0.0806,0.094,0.0268,-0.2618,-0.0268,0.0738,-0.161,-0.1276,-0.5676,-0.5136,-0.4594,0.1892,0.1352,0.4594,0.6756,0.5136,0.081,0.1892,0.4054,0.5676,0.4594,1,0.946,0.4594,0.8378,0.7298,0.8378,0.2972,0.1352,0.1892,-0.2432,0.1352,0.7838,0.946,0.7838,0.5136,0.1352,0.4594,0.7298,0.6756,-0.762,-0.5238,-0.8096,-0.0476,0.0476,0.0476,0,0,0.0476,0.0952,0.1904,0.6666,0.619,0.381,0.5714,0.8096,1,0.6666,0.2858,0.3334,-0.0476,-0.1904,-0.0476,0.1428,0.0476,0,0.1428,0,0.1904,0.238,0.381,0.4762,-0.7272,-0.4242,-0.5758,0.2728,0.394,0.2728,0.091,-0.0304,0.0606,0.2424,0.4848,0.6666,0.3334,0.5758,1,0.8788,0.4242,0.2728,0.3636,0.4546,0.0304,-0.0304,0.091,0.1212,0.4546,0.4546,0.1516,0.091,0.2424,0.2728,-0.0304,0.394,-1,-1,-1,-1,-0.7282,-0.5534,-0.1262,-0.631,-0.2428,-0.4368,-0.1456,0.5146,0.3204,0.4368,0.5728,0.4368,0.3398,0.1262,-0.0874,-0.3398,-0.2428,-0.3786,-0.4174,-0.5146,-0.5922,-0.631,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7966,-0.7568,0.608,-0.742,-0.32,-0.2358,-0.201,0.598,0.5682,0.7618,0.9058,0.6278,0.4244,0.454,-0.0272,-0.2358,-0.3846,-0.5534,-0.6328,-0.6774,-0.6824,-0.7518,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8934,-0.9,-0.6868,-0.8034,-0.65,-0.46,-0.2134,-0.06,-0.1076,-0.135,-0.1626,-0.1926,-0.3826,-0.2776,-0.3526,-0.4776,-0.555,-0.685,-0.86,-0.7468,-0.8268,-0.9334,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,-0.1428,-0.0286,-0.2858,0.6286,-0.3714,-0.0572,-0.4572,-0.9714,-0.8858,-0.8858,-0.9428,-0.8286,-0.7714,-0.6858,-0.9428,-0.9142,-0.8286,-0.8572,-1,-1,-0.9714,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.8804,-0.9046,-0.879,-0.8128,-0.835,-0.816,-0.8338,-0.8956,-0.955,-0.9722,0,-0.0942,-0.2208,0.1612,0.6972,0.8014,0.6426,-0.9416,-0.283,-0.2982,0.132,0.3358,0.4188,0.683,0.8264,1,0.6604,0.3208,0.3434,0.2754,0.3132,0.5018,0.4716,0.7132,0.849,0.4868,0.366,0.2982,0.268,0.4716,0.434,0.3812,0.3284,0.2982,0.2226,0.2302,0.1698,0.2226,-0.117,-0.5472,-0.1944,-0.1388,0.2986,0.6876,0.493,0.25,0.5348,1,0.9098,0.6112,0.3612,0.3124,0.5208,0.3888,0.3334,0.3264,0.5972,0.6666,0.6458,0.3264,0.257,0.3124,0.3124,0.257,0.3472,0.1736,0.2638,0.2014,0.1944,0.2014,0.0278,-0.1736,-0.4972,-0.3204,0.2044,0.4034,0.2486,0.221,0.6686,0.8508,1,0.6464,0.1988,0.4088,0.4696,0.4918,0.3204,0.5082,0.9116,0.9172,0.8564,0.652,0.558,0.8232,0.9006,0.558,0.8066,0.5194,0.5082,0.3812,0.0498,-0.0332,0.0276,-0.4088,1,-1,-1,1,-1,-1,-1,0.0334,-1,-0.1428,0.4066,0.3846,0.5604,0.2968,0.2528,0.8902,1,0.5824,0.3406,0.2968,0.3626,0.4066,0.4726,0.3406,0.4066,0.5604,-0.033,0.1428,0.1208,0.3846,0.2968,0.2528,0.2308,0.2088,0.055,0.2748,0.2748,0.5384,0.3186,0.099,-0.099,'7'
-0.1694,0.3688,0.4884,0.7808,0.8272,1,0.7808,0.5482,0.2226,0.1894,0.2692,0.3222,0.2226,0.2426,0.289,0.2624,0.3754,0.3024,0.6346,0.7408,0.8738,0.7142,0.7674,0.8738,0.8672,0.8406,0.8406,0.6412,0.6678,0.495,0.4486,0.6612,-0.2122,0.3266,0.4748,0.7778,0.7846,0.9664,0.7374,0.495,0.1852,0.2188,0.266,0.293,0.3064,0.2862,0.3468,0.2862,0.4612,0.3804,0.596,0.771,0.9932,0.798,0.8182,0.8518,0.9664,0.9596,1,0.7644,0.7778,0.6296,0.5824,0.6902,-0.2022,0.2908,0.518,0.7396,0.7506,0.867,0.529,0.385,0.1136,0.108,0.1578,0.0914,0.1468,0.108,0.2632,0.2244,0.313,0.4626,0.507,0.5734,0.6232,0.8892,0.9224,0.867,0.795,1,0.8726,0.8504,0.6288,0.6786,0.5124,0.5458,-0.2462,0.2274,0.6884,0.8318,0.7882,0.8256,0.2462,0.1776,0.0156,-0.215,-0.1776,-0.0716,-0.109,-0.1962,-0.1152,-0.053,-0.2024,-0.053,0.1652,0.2088,0.539,0.6574,0.9066,0.8816,0.8816,1,0.9814,0.8006,0.6074,0.514,0.489,0.4954,-0.2418,0.1768,0.834,0.899,0.7762,0.5812,0.1408,-0.2418,-0.278,-0.3502,-0.4658,-0.379,-0.4224,-0.574,-0.4152,-0.314,-0.2708,-0.314,-0.0758,0.1768,0.4152,0.7112,0.769,0.9062,0.9566,1,0.8268,0.7834,0.6318,0.3646,0.1768,0.1986,-0.1866,0.4928,0.9138,0.9712,0.9712,0.3398,-0.2058,-0.4736,-0.4258,-0.646,-0.665,-0.6556,-0.6364,-0.5886,-0.4736,-0.4832,-0.6076,-0.6556,-0.1004,0.1292,0.1578,0.646,0.9426,0.9808,0.9618,1,0.8756,0.7416,0.4546,0.5502,0.2822,0.5694,-0.3362,0.3618,0.6086,0.583,0.3276,-0.0808,-0.7532,-0.7702,-0.7958,-0.949,-0.7618,-0.7702,-0.8382,-0.8212,-0.8298,-0.8128,-0.6086,-0.4298,-0.217,0.0468,0.149,0.651,0.8212,1,0.966,0.8724,0.8298,0.9744,0.549,0.566,0.3702,0.4042,-0.25,0.3334,0.4166,0.75,0.8334,1,0.7084,0.5416,0.0416,0.2084,0.25,0.2916,0.125,0.125,0.375,0.2916,0.3334,0.375,0.7916,0.875,0.875,0.875,0.75,1,1,0.875,0.875,0.6666,0.5834,0.4584,0.4584,0.625,-0.25,0.2916,0.4584,0.75,0.75,0.9584,0.7084,0.5416,0.125,0.0834,0.25,0.2916,0.25,0.2084,0.2084,0.2916,0.4166,0.0416,0.5834,0.875,0.9166,0.7084,0.875,0.9584,1,0.7916,0.8334,0.8334,0.75,0.2916,0.4166,0.7084,-0.3062,0.1632,0.5306,0.6734,0.6326,0.7346,0.3266,0.1632,0,-0.0408,-0.204,-0.1428,-0.0408,-0.0408,0,0,0.0204,0.1224,0.1428,0.3878,0.6734,0.653,1,0.9388,0.8572,0.8164,0.9388,0.7346,0.4694,0.4898,0.4898,0.551,-1,-1,-1,-1,-1,-1,-1,-0.9836,-0.9858,-0.8722,-0.082,0.7128,0.8666,0.9168,0.942,0.9756,0.9984,0.9144,0.6736,0.2004,-0.1566,-0.4766,-0.7772,-0.9404,-0.9544,-0.9734,-0.9678,-0.9686,-0.9734,-0.9718,-0.9216,-0.9678,-0.9646,-1,-1,-1,-1,-1,-1,-1,-0.9832,-0.987,-0.8434,0.2074,0.6636,0.7604,0.9226,0.7432,0.6226,0.4116,0.252,0.0066,-0.3672,-0.5372,-0.6832,-0.8694,-0.9622,-0.9678,-0.9752,-0.8586,-0.7214,-0.4504,-0.2076,-0.1054,0.013,-0.2766,-1,-1,-1,-1,-1,-1,-1,-0.8934,-0.94,-0.6668,-0.2534,-0.77,-0.76,-0.69,-0.705,-0.69,-0.785,-0.87,-0.835,-0.84,-0.816,-0.664,-0.7034,-0.54,-0.4134,-0.7,-0.67,0.4232,0.7432,0.64,0.41,0.2366,0.1632,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,0.4,-0.6858,-0.8286,-0.4286,-0.1142,0.0286,-0.0286,-0.0572,-0.1142,-0.2858,0.8572,1,0.6858,-0.6,-0.4858,1,1,1,-0.5714,-0.8286,-0.8,-0.4858,1,1,1,1,1,1,1,1,0.9682,0.6046,0.6948,0.729,0.729,0.7794,0.8272,0.839,0.9066,0.9234,0.9422,0.998,-0.6666,-0.5648,0.4684,0.5864,0.6576,0.7686,0.904,1,-0.0404,0.3642,0.5376,0.4798,0.156,-0.0752,0.1676,0.4566,0.5144,0.815,0.9422,1,0.9654,0.896,0.7804,0.5954,0.5954,0.7226,0.6648,0.6764,0.6648,0.5028,0.0636,-0.156,-0.0174,0.029,0.133,0.2832,0.237,0.3064,0.133,-0.1908,-0.1978,0.1098,0.3406,0.3846,-0.088,0,0.011,0.099,0.1758,0.6814,1,0.7472,0.6924,0.7802,0.4726,0.4286,0.3296,0.1428,0.1428,0.2088,0.3076,0.1648,-0.3186,-0.5054,-0.3406,-0.077,0.077,0.3186,0.1758,0.2638,0.2088,-0.4836,0.186,0.5232,0.6744,0.7442,0.4418,0.0466,0.1628,0.1744,0.314,0.6976,1,0.8838,0.721,0.779,0.6162,0.3838,0.5348,0.3954,0.1162,0.279,0.3372,0.2326,-0.628,-0.3488,-0.3488,0.0232,0.2442,0.2442,0.3256,0.1396,0.0814,-0.0582,0.8494,-1,-1,1,-0.8,-1,-1,-0.7,1,-0.8202,-0.6932,-0.4814,-0.2064,-0.3016,-0.3334,-0.2276,0.2276,0.2804,0.492,0.492,0.6084,0.746,0.6614,0.8518,0.7884,0.873,0.9154,0.7672,0.7038,0.8412,0.7248,0.6826,0.7142,1,0.8412,0.7672,0.746,0.545,0.4814,0.217,-0.037,'8'
-0.1456,0.3896,0.4226,0.6996,0.831,1,0.7136,0.4178,-0.0986,-0.061,-0.0798,-0.1502,-0.2018,-0.1596,0.0752,0.0188,0.1314,0.385,0.4694,0.5868,0.784,0.7324,0.6338,0.6572,0.6292,0.8592,0.7746,0.615,0.4414,0.4226,0.324,0.216,-0.1842,0.3514,0.484,0.72,0.8674,1,0.5872,0.3464,-0.0712,-0.0762,-0.0222,-0.1056,0.1352,0.0664,0.1942,0.032,0.14,0.2236,0.4448,0.4988,0.4792,0.7298,0.71,0.5724,0.4546,0.6462,0.7346,0.7248,0.4938,0.3906,0.3022,0.1842,-0.1836,0.2704,0.6378,0.7908,1,0.9948,0.2602,0.1378,0.0204,-0.2398,-0.1938,-0.0256,-0.097,-0.0408,-0.1836,-0.1122,-0.204,0.0766,0.2908,0.5154,0.847,0.8928,0.6684,0.5612,0.6224,0.7296,0.8112,0.7142,0.4438,0.4286,0.3316,0.2704,-0.1942,0.253,0.753,0.8058,1,0.8294,0.0588,-0.1942,-0.2352,-0.5176,-0.7,-0.4236,-0.3294,-0.3176,-0.3058,-0.3824,-0.3294,0.0118,0.047,0.2412,0.7058,0.753,0.7352,0.6118,0.5824,0.753,0.8236,0.7882,0.4882,0.4648,0.4,0.2176,-0.218,0.2526,0.7716,0.9032,0.9654,0.2596,-0.128,-0.301,-0.6956,-0.7924,-0.9516,-0.7302,-0.7786,-0.8546,-0.654,-0.5294,-0.2318,-0.211,-0.1558,0.2664,0.4118,0.6886,0.8686,0.744,0.7716,1,0.9238,0.834,0.647,0.4602,0.218,0.3426,-0.42,0.3266,0.68,0.8,0.46,-0.1,-0.4666,-0.5066,-0.6866,-0.7134,-0.7666,-0.8734,-0.7134,-0.8466,-0.7266,-0.7066,-0.4534,-0.4666,-0.3334,-0.1734,0.4466,0.66,0.8134,0.92,1,0.9666,0.9734,0.92,0.5934,0.4066,0.34,0.2466,-0.3806,0.1504,0.4808,0.3806,-0.0266,-0.2094,-0.3392,-0.3688,-0.4926,-0.5812,-0.5812,-0.6106,-0.3924,-0.351,-0.4042,-0.3924,-0.4986,-0.3216,-0.056,0.1504,0.3156,0.652,0.7582,0.646,0.7582,0.941,0.941,1,0.3274,0.1564,0.2566,0.1268,-0.2272,0.3182,0.2728,0.591,0.7728,0.9546,0.591,0.5,-0.091,0,-0.3636,-0.5,-0.4546,-0.1364,-0.0454,0.0454,0.1364,0.4546,0.5,0.8636,1,0.7728,0.7728,0.7272,0.7728,0.8182,0.7728,0.2728,0.1818,0.409,0.409,-0.1364,-0.2272,0.3182,0.3636,0.6818,0.7728,1,0.6364,0.409,-0.1364,-0.091,0,-0.0454,-0.3636,-0.091,0.091,-0.2728,-0.0454,0.1364,0.5,0.4546,0.409,0.7272,0.7272,0.6364,0.6364,0.909,0.8182,0.5454,0.3636,0.5454,0.1818,0.3182,-0.1892,0.2162,0.6216,0.7838,0.8378,0.1082,-0.1622,-0.2972,-0.6486,-0.6216,-0.6486,-0.6486,-0.6486,-0.6486,-0.4324,-0.3514,-0.1352,-0.1352,-0.1082,0.2972,0.2702,0.8648,1,1,0.8378,0.919,0.946,0.7568,0.3514,0.4324,0.3244,0.2702,-1,-1,-1,-1,-1,-1,-1,-0.9762,-0.9788,-0.9364,-0.3286,0.293,0.4922,0.6176,0.8212,0.9118,0.6422,0.2496,0.0412,-0.0556,-0.3472,-0.7856,-0.961,-0.9704,-0.9728,-0.9644,-0.978,-0.9728,-0.9636,-0.9652,-0.9542,-0.9492,-0.9288,-1,-1,-1,-1,-1,-1,-1,-0.9738,-0.975,-0.7588,0.492,0.3818,0.7138,0.7712,0.899,0.9488,0.5624,0.119,-0.0052,-0.1208,-0.4632,-0.798,-0.9648,-0.9688,-0.972,-0.94,-0.773,-0.729,-0.1488,0.4596,1,1,1,-1,-1,-1,-1,-1,-1,-1,-0.8454,-0.96,-0.8234,-0.1968,-0.8,-0.812,-0.796,-0.7868,-0.81,-0.8668,-0.8534,-0.8068,-0.7934,-0.6068,-0.45,-0.7834,-0.7834,-0.9034,-0.89,-0.3834,0.63,0.6632,0.6732,0.6332,0.5132,0.4532,-1,-1,-1,-1,-1,-1,-1,0,-0.1714,1,1,-0.1428,-0.9714,-1,-0.8858,-0.9142,-0.6572,-0.8,-0.6286,-0.6572,1,1,1,-0.8,-0.8858,1,1,1,1,0.9142,-0.6858,-0.8,0.2858,0.9768,0.9732,0.9732,0.9688,0.9662,0.9614,0.9552,0.9446,0.8878,0.5516,0.6734,0.7404,0.7404,0.6674,0.6558,0.6096,0.6542,0.6302,0.6894,0.8474,-0.5866,-0.3764,0.7168,0.4254,0.4498,0.7294,0.6796,1,-0.3846,-0.011,0.055,-0.011,-0.055,-0.2748,-0.099,0.077,0.4286,0.912,1,0.8682,0.8902,0.8462,0.6924,0.7362,0.6044,0.7362,0.8022,0.4946,0.5164,0.2748,0.2088,0.1868,-0.077,0.1428,0.2968,0.1428,0.2968,0.3846,0.2308,-0.4286,-0.1136,0.1818,0.2728,0.3068,0.0796,0.0114,0.25,0.2728,0.4204,0.841,1,0.8636,0.9432,0.8636,0.6478,0.6022,0.5568,0.625,0.6478,0.4204,0.284,0.2954,0.1136,-0.034,-0.0796,0.091,0.2386,0.341,0.3864,0.466,0.3522,0.1136,0.1552,0.4162,0.7392,0.6894,0.2546,-0.1552,0.031,0.1552,0.3044,0.4782,0.8882,0.8882,1,0.8634,0.7516,0.5032,0.441,0.4038,0.3664,-0.205,0.056,0.1304,-0.1428,-0.1304,-0.205,0.118,0.1552,0.354,0.5528,0.5404,0.3788,-0.0808,1,-1,-1,1,-1,-1,-1,-0.7334,1,-0.6218,-0.3134,-0.204,-0.2338,-0.2238,-0.005,0.0846,0.3034,0.413,0.4826,0.5422,0.6318,0.7412,0.7612,0.8208,0.791,0.8508,0.8508,0.8906,0.8308,0.9104,0.8508,1,0.9402,0.8508,0.9104,0.9204,0.811,0.592,0.4826,0.4726,0.403,'8'
-0.6592,0.0384,0.0866,0.1088,0.4052,0.4778,0.6936,0.8084,0.8146,1,0.9476,0.7762,0.5544,0.4838,0.248,0.123,0.0686,-0.0544,0.0202,0.008,0.0384,0.1956,0.375,0.2884,0.1754,0.0362,-0.0484,-0.2178,-0.1714,-0.1734,0.0666,0.2016,-0.419,-0.0624,0.01,0.1294,0.4172,0.4624,0.696,0.7448,1,0.8842,0.7376,0.5458,0.542,0.258,0.2506,0.0298,-0.01,-0.0262,-0.1132,-0.01,0.1076,0.1096,0.3412,0.2924,0.1782,0.0678,0.0082,-0.1746,-0.2272,0.0734,0.0914,0.142,-0.4034,-0.054,0.0638,0.1564,0.4498,0.4536,0.697,0.8764,1,0.7992,0.807,0.7182,0.6428,0.3186,0.1274,0.081,-0.025,-0.0444,0.0078,-0.0308,0.054,0.1602,0.2896,0.3224,0.2336,0.0308,-0.054,-0.1196,-0.28,-0.0888,-0.0232,0.085,-0.4212,-0.1264,0.047,0.0658,0.2936,0.4524,0.605,0.8872,0.9602,1,0.7826,0.8412,0.6468,0.4858,0.2936,0.0574,-0.0616,-0.1328,-0.0722,-0.0554,-0.0638,0.1556,0.2832,0.3208,0.1516,-0.0762,-0.1348,-0.2456,-0.3354,-0.3794,-0.2664,-0.1598,-0.4382,-0.2494,-0.0832,0.0706,0.1662,0.3728,0.7052,0.9346,1,0.6524,0.607,0.5994,0.5844,0.5994,0.6272,0.3702,0.1134,0.1008,0.0756,0.1662,0.4358,0.4534,0.3828,0.0202,-0.1764,-0.3602,-0.4106,-0.4962,-0.6348,-0.5542,-0.5718,-0.5314,-0.3832,-0.108,0.021,0.014,0.3588,0.662,0.871,0.7318,0.2508,0.094,0.007,-0.1672,0.129,0.2858,0.5122,0.6446,0.8466,1,0.9652,0.9652,0.7736,0.7352,0.5888,0.4564,0.3344,0.3658,0.0348,-0.1324,-0.4112,-0.331,-0.3832,-0.338,-0.0922,0.136,0.1068,0.7476,1,0.7962,0.2524,-0.369,-0.7088,-0.7184,-0.966,-0.6554,-0.6166,-0.4514,-0.5436,-0.4514,-0.2428,0.2088,0.6942,0.932,0.9806,0.8204,0.602,0.733,0.6262,0.6602,0.4174,0.3204,-0.335,-0.5632,-0.3058,0,-1,-0.1,0.0666,-0.1334,0.2334,0.2666,0.5,0.8,0.6334,0.9,1,0.7334,0.4,0.4334,0.2,0.3,0.1666,0.0666,0.1,0.0334,0.0666,0.1334,0.3666,0.4334,0.2666,0.1666,0.1666,-0.1334,0.1666,0.1666,-0.0334,0.2,-0.7576,0.0606,0.2424,0.091,0.4242,0.4546,0.5454,0.697,0.5152,0.9394,1,0.6364,0.5152,0.5152,0.0606,0.1818,0.1212,-0.2122,-0.1212,-0.2728,-0.2424,0.0304,0.4546,0.4848,0.3334,0.0304,-0.1818,-0.1516,-0.2424,-0.0304,0.1818,0.2424,-0.439,-0.2682,-0.0976,0.0488,0.1952,0.5122,0.683,1,1,0.9024,0.7074,0.8292,0.7804,0.9024,1,0.7318,0.244,0.1952,0.0244,0.1952,0.439,0.2926,0.1708,-0.1708,-0.3414,-0.439,-0.439,-0.4634,-0.439,-0.3658,-0.4634,-0.7804,-1,-1,-1,-1,-1,-1,-0.9798,-0.9814,-0.9858,-0.9814,-0.7884,-0.351,0.6068,0.976,0.846,0.6112,0.2382,-0.0198,-0.2868,-0.505,-0.5992,-0.6696,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.993,-0.995,-0.9944,-0.9942,-0.77,-0.444,0.7312,0.9624,0.7146,0.5186,0.1524,-0.2094,-0.5688,-0.7808,-0.8792,-0.9268,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8658,-0.9334,-0.8168,-0.91,-0.7134,-0.48,-0.5528,-0.5468,-0.57,-0.5718,-0.5768,-0.6484,-0.7218,-0.6518,-0.82,-0.9334,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6286,-1,-1,1,1,1,0.3142,-1,-0.9714,-0.8858,-0.6,-0.3714,-0.2,-0.0572,-0.1428,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.6408,-0.6792,-0.714,-0.7362,-0.7372,-0.733,-0.746,-0.7438,-0.811,-0.6136,-0.56,0.4118,-0.6918,-0.5168,-0.484,-0.544,-0.2688,1,0.1076,0.5076,0.7538,0.9384,0.9692,1,1,0.9076,0.7538,0.6616,0.723,0.6924,0.723,0.5692,0.5384,0.5692,0.4154,0.4154,0.323,0.323,0.3538,0.323,0.2616,0.3538,0.323,0.1692,0.2616,0.2308,0.2308,0.1384,0.077,-0.1076,-0.356,0.2542,0.4068,0.8136,1,0.8814,0.8136,0.7118,0.322,0.4238,0.4746,0.5424,0.5254,0.1186,0.2712,0.1864,0.2882,0.1864,0,-0.1694,-0.2542,-0.0678,-0.2712,-0.1186,-0.2712,-0.2542,-0.2712,0.0338,-0.1356,-0.4406,-0.4916,-0.8136,-0.3834,0.2166,0.45,0.6666,0.9,1,0.7666,0.5,0.4334,0.2666,0.25,0.3666,0.3666,0.15,0.3,0.3334,0.4,0.4,0.05,-0.1834,-0.3834,-0.0334,-0.1666,-0.3166,-0.3834,-0.2666,-0.3334,-0.1,-0.2666,-0.3834,-0.35,-0.5334,-0.4786,-1,-1,1,-1,-1,-1,-0.8334,-1,0.4256,0.3192,0.4894,0.2766,0.1914,0.0426,0.0426,0.1064,0.1064,0.7446,0.8724,1,0.851,0.6382,0.1702,0.2128,0.766,0.532,0.2128,0.234,0.5106,0.617,0.3404,-0.0212,0.1276,-0.0426,-0.149,0.0852,0.2554,0.6382,0.3404,-0.2554,'9'
-0.3576,0.0624,0.0298,0.2024,0.4612,0.5704,0.7028,0.743,1,0.9962,0.7986,0.7182,0.4612,0.348,0.1658,0.0278,0.0162,-0.118,-0.0854,-0.072,-0.0854,0.0642,0.21,0.3768,0.2502,0.233,0.047,0.068,0.068,0.0968,0.2368,0.1236,-0.382,0.0102,0.0398,0.1952,0.5116,0.5818,0.7576,0.7688,1,0.9556,0.815,0.6948,0.4246,0.2026,0.1526,-0.0342,-0.0324,-0.1138,-0.173,-0.0824,-0.025,0.1452,0.3246,0.3876,0.2932,0.2562,0.1304,0.0898,0.1304,0.1618,0.297,0.186,-0.404,-0.0646,0.1112,0.1878,0.4848,0.4728,0.6768,0.9192,1,0.7596,0.6666,0.6768,0.499,-0.004,0.0364,0.0162,-0.1272,-0.2102,-0.1272,-0.1272,-0.0546,0.0646,0.198,0.2546,0.1798,0.0484,-0.0344,-0.0788,0.0102,0.0748,0.101,0.006,-0.4178,-0.1268,0.1246,0.1092,0.2944,0.5546,0.709,0.9492,0.9868,1,0.9802,0.9118,0.6494,0.204,0.151,-0.0034,-0.2812,-0.301,-0.2458,-0.2392,-0.2194,-0.065,-0.0254,0.096,0.0012,-0.1312,-0.2812,-0.2084,-0.1864,-0.043,0.0804,0.0804,-0.4244,-0.222,-0.0512,0.0722,0.2956,0.4664,0.845,1,0.9974,0.6926,0.59,0.6294,0.4718,0.4612,0.4166,0.2458,-0.0276,0.0014,-0.067,0.0434,0.1458,0.3036,0.4192,0.3798,-0.0854,-0.2852,-0.4454,-0.406,-0.4848,-0.3562,-0.322,-0.1012,-0.3592,-0.0658,0.1062,0.167,0.494,0.8382,1,0.9022,0.3254,-0.0152,0.059,0.0252,0.258,0.4232,0.4806,0.693,0.6998,0.6156,0.4974,0.4436,0.5076,0.3424,0.3254,0.3356,0.1264,0.1028,-0.2176,-0.1468,-0.1264,-0.2344,-0.0826,-0.1298,-0.2496,-0.006,0.1536,0.2814,0.6726,0.517,0.469,0.0778,-0.533,-0.6766,-0.6048,-0.501,-0.2894,-0.2534,-0.3972,-0.4012,0.0658,0.473,0.6766,1,0.8842,0.7446,0.517,0.7326,0.6368,0.6288,0.1816,0.046,-0.2296,0.006,0.042,-0.1138,-0.5,-0.0416,0.2084,0.3334,0.25,0.5834,0.5,0.5416,1,0.9584,0.8334,0.75,0.7084,0.5,0.375,0.3334,-0.0834,0.0834,0.125,-0.0834,-0.0416,-0.0834,0.4166,0.625,0.2916,0.375,0.375,0.25,0.2084,0.3334,0.2916,0.125,-0.4182,-0.0546,-0.1272,0.0546,0.3818,0.491,0.6728,0.6364,1,0.9272,0.6,0.5272,0.2,0.091,-0.091,-0.2728,-0.2,-0.3818,-0.2728,-0.1636,-0.2364,-0.1272,-0.1636,0.3454,0.309,0.0182,-0.2364,-0.0546,-0.0546,-0.0182,0.1636,0.0182,-0.3732,-0.1044,0.0746,0.2238,0.4328,0.612,1,0.9702,0.9402,0.1642,0.3134,0.2836,0.3432,0.582,0.4328,0.9402,0.7612,0.612,0.582,0.6418,0.6716,0.3134,0.4328,0.4926,-0.1044,0.1642,-0.2836,0.1344,0.0448,-0.0448,-0.1344,-0.2836,-1,-1,-1,-1,-1,-1,-1,-0.9802,-0.986,-0.8298,-0.4548,0.4918,0.9358,0.9762,0.8634,0.551,0.3124,0.051,-0.2262,-0.3166,-0.4588,-0.6152,-0.7952,-0.9144,-0.9688,-0.9646,-0.9704,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9922,-0.993,-0.7798,-0.6354,0.3834,0.87,0.9172,0.585,0.3092,0.262,-0.1312,-0.5804,-0.748,-0.842,-0.8782,-0.9416,-0.968,-0.98,-0.9834,-0.9858,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.959,-0.9468,-0.9068,-0.7034,-0.6856,-0.7256,-0.755,-0.72,-0.6984,-0.6968,-0.6868,-0.7618,-0.7784,-0.8318,-0.8018,-0.7834,-0.59,-0.54,-0.7568,-0.7468,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4572,1,1,1,0.1714,-0.9428,-0.9428,-0.8,-0.8858,-0.7428,-0.6,-0.4286,-0.3428,-0.4,-0.4,-0.1428,-0.4572,-0.6572,-0.8,-0.8,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.535,-0.5282,-0.497,-0.5128,-0.4704,-0.4118,-0.3822,-0.361,-0.501,-0.4634,-0.5334,0.4118,-0.6938,-0.513,0.2708,0.7256,0.6872,1,-0.2444,0.2112,0.3666,0.7778,0.8334,1,0.8556,0.5444,0.2888,0.2556,0.3444,0.6222,0.7222,0.4778,0.5222,0.5888,0.5222,0.1888,-0.1112,-0.1112,-0.0334,-0.0888,-0.1334,-0.0888,-0.2,-0.4334,-0.1888,-0.1666,-0.0888,-0.0222,-0.1666,-0.5,-0.091,0.5324,0.6624,0.909,0.948,1,0.8182,0.5454,0.4806,0.2858,0.4286,0.6364,0.8442,0.5454,0.6364,0.7532,0.6494,0.2468,-0.1688,-0.1298,-0.1818,-0.1168,-0.052,-0.1558,-0.3246,-0.1948,-0.2338,-0.039,0.091,0.039,0.065,-0.5584,0.0194,0.2258,0.3936,0.6774,0.871,1,0.587,0.613,0.4322,0.3032,0.2646,0.8452,0.8838,0.471,0.342,0.471,0.3678,0.213,-0.3678,-0.5484,-0.4064,0.0322,0.0322,0.0452,-0.1612,-0.2774,-0.0968,0.1096,0.2,0.3162,0.2904,-0.1226,0.2654,-1,-1,1,-0.8,-1,-0.8,-0.7,-1,-0.28,-0.088,0.344,0.728,0.456,-0.072,-0.04,0.2,0.744,1,0.792,0.84,0.84,0.872,0.6,0.44,0.712,0.584,0.44,0.232,0.376,0.216,0.232,0.392,0.056,-0.088,0.088,0.088,0.296,0.296,-0.04,-0.584,'9'
-0.1862,0.388,0.5944,1,0.9074,0.822,0.6536,0.433,0.2906,0.1934,0.0558,0.1838,0.1862,0.2574,0.497,0.5398,0.7248,0.8576,0.9288,0.955,0.7912,0.8054,0.6798,0.5136,0.554,0.5492,0.4662,0.4116,0.5208,0.5658,0.5588,0.4022,-0.3284,0.1622,0.2778,0.5664,0.7852,1,0.8464,0.3894,0.2716,0.3536,0.1306,0.1832,0.2548,0.2758,0.5094,0.5116,0.5978,0.6064,0.8,0.7642,0.7094,0.7178,0.7558,0.701,0.5242,0.52,0.4716,0.3494,0.3348,0.3474,0.2252,0.24,-0.31,0.1206,0.3078,0.4634,0.9392,1,0.5942,0.558,0.452,0.3326,0.204,0.1612,0.2198,0.3416,0.3462,0.4182,0.495,0.7024,0.788,0.8444,0.5738,0.6122,0.6956,0.7226,0.6978,0.567,0.4206,0.3866,0.3304,0.2378,0.31,0.3078,-0.3024,0.0664,0.3626,0.5934,1,0.877,0.7466,0.3776,0.2722,-0.064,-0.2772,-0.2446,-0.222,-0.2998,-0.1468,0.1268,0.3074,0.4554,0.4906,0.5634,0.596,0.6286,0.6688,0.7164,0.7064,0.5006,0.3826,0.3652,0.1418,0.192,0.1694,0.2296,-0.2938,0.0438,0.3688,0.7656,0.95,1,0.6718,0.05,-0.0126,-0.3062,-0.6188,-0.5406,-0.2406,-0.1532,-0.35,-0.0532,0.15,0.3968,0.5906,0.775,0.825,0.6906,0.6844,0.7844,0.6906,0.5812,0.4188,0.1782,-0.0438,-0.1844,-0.1032,0.1532,-0.3628,-0.0272,0.1966,0.4102,1,0.8984,0.105,-0.1118,-0.539,-0.8,-0.6984,-0.7356,-0.6102,-0.339,-0.2372,-0.2238,-0.0542,0.1728,0.5796,0.7662,0.5728,0.5288,0.3492,0.5526,0.5424,0.4068,0.3492,0.261,0.0272,-0.0306,-0.0712,0.2068,-0.2996,0.1246,0.3736,0.533,0.4592,0.2802,-0.4592,-0.7354,-0.7976,-0.891,-0.895,-0.8016,-0.7666,-0.7822,-0.5214,-0.4514,-0.3308,-0.2724,0.07,0.5876,0.9378,1,0.7666,0.4592,0.5914,0.6342,0.467,0.0894,-0.463,-0.2568,-0.2918,-0.2102,-0.0612,0.5918,0.6326,0.9184,0.9184,0.4694,0.1836,0.102,0.102,-0.0204,0.102,0.0612,0.2244,0.2654,0.5102,0.4694,0.551,0.5918,0.6734,0.9184,1,0.796,0.6734,0.5918,0.4694,0.6326,0.5918,0.4286,0.796,0.6326,0.796,0.347,-0.3334,0.3334,0.4902,1,0.9216,0.5294,0.3334,0.2942,0.2156,0.1372,-0.0196,0.2156,0.3334,0.3726,0.3726,0.451,0.8432,0.9216,0.8432,0.7648,0.8824,0.8824,0.5686,0.4902,0.4902,0.4118,0.647,0.647,0.647,0.6078,0.7254,0.6862,-0.3264,0.0316,0.3264,0.4736,1,0.9368,0.6632,0.3264,0.3474,-0.0948,-0.2422,-0.0948,-0.0948,-0.1158,-0.0316,0.3052,0.4316,0.6,0.5158,0.5368,0.7264,0.7474,0.5368,0.579,0.7684,0.621,0.3264,0.3474,0.2842,0.2842,0.0316,0.0948,-1,-1,-1,-1,-0.9926,-0.9904,-0.9772,-0.967,-0.9752,-0.9708,-0.7072,0.6066,0.2764,0.644,0.7168,0.7004,0.2032,-0.2008,-0.3618,-0.456,-0.655,-0.7612,-0.855,-0.9022,-0.9662,-0.9854,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9912,-0.9894,-0.672,-0.631,0.1932,0.4846,-0.1572,0.3192,0.3712,0.8958,0.9136,0.7018,0.1344,-0.3424,-0.3742,-0.5282,-0.6978,-0.8308,-0.896,-0.9346,-0.9586,-0.967,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.9268,-0.2234,0.6432,0.71,0.6032,0.1766,-0.742,-0.7274,-0.751,-0.7382,-0.7638,-0.7638,-0.84,-0.8928,-0.8656,-0.7868,-0.8868,-0.8668,-0.7168,-0.4468,-0.34,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,1,0.9142,1,1,-0.5714,-0.7428,-0.6572,-0.6572,-0.3142,-0.8,-0.6286,-0.4858,-0.5428,-0.6,-0.7714,-0.6,-0.7428,0.0286,-1,-1,-1,-1,-1,-1,-1,0.7968,0.8098,0.8476,0.8782,0.9214,0.9606,1,1,1,0.9276,-0.0656,-0.0448,-0.042,-0.0384,0.0106,0.0276,0.0414,0.0784,0.1916,0.3766,-0.5734,0.3294,-0.2254,-0.3284,0.472,0.6424,0.2376,1,-0.7064,-0.4286,-0.362,-0.1976,-0.1312,-0.0764,-0.0528,0.1116,0.1938,0.409,0.456,0.7652,0.8944,1,0.9766,0.8044,0.7612,0.82,0.8082,0.7534,0.7534,0.8434,0.82,0.7064,0.636,0.6438,0.405,0.366,0.276,0.0568,-0.0058,-0.276,-0.7638,-0.5724,-0.402,-0.3452,-0.2466,-0.157,-0.1002,0.2376,0.4678,0.5456,0.6024,0.7998,0.701,0.7638,0.9432,0.8864,0.9134,0.9104,0.8654,0.7968,0.8684,0.991,1,0.7908,0.7458,0.7788,0.722,0.4858,0.417,0.3872,0.2376,-0.0792,-0.5316,-0.359,-0.3282,-0.4358,-0.3128,-0.3014,0.025,0.2514,0.5892,0.712,0.7274,1,0.977,0.7812,0.831,0.831,0.7928,0.8542,0.927,0.7236,0.6238,0.6354,0.716,0.7888,0.8502,0.785,0.8042,0.4894,0.3666,0.3014,0.2898,-0.1362,-0.022,-1,-1,1,-0.8,-1,-0.6,0,-1,-0.7196,-0.5514,-0.3644,-0.1402,-0.3832,-0.4018,-0.3832,-0.3832,-0.1402,0.1588,1,0.8318,0.8504,0.7944,0.4392,0.4206,0.4392,0.3832,0.271,0.3458,0.4954,0.1214,0.1962,-0.028,-0.2524,-0.271,-0.458,-0.2524,-0.5514,-0.514,-0.1028,-0.2524,'10'
-0.1376,0.4338,0.5874,1,0.9232,0.6772,0.5608,0.299,0.1376,-0.0212,0.0264,0.0926,0.1852,0.2698,0.4048,0.4048,0.7116,0.6904,0.8544,0.8096,0.627,0.5926,0.4392,0.3306,0.2302,0.3412,0.336,0.3518,0.283,0.3174,0.3492,0.3704,-0.2168,0.2852,0.393,0.661,0.8424,1,0.7688,0.3982,0.272,0.3088,-0.0328,-0.0486,0.0696,0.025,0.3166,0.414,0.6478,0.7136,0.8396,0.619,0.611,0.4534,0.4692,0.2562,0.075,0.2274,0.1668,-0.0354,0.0066,-0.1144,-0.0118,0.0198,-0.216,0.248,0.424,0.5866,0.952,1,0.5814,0.512,0.2906,0.1014,-0.1334,-0.1946,-0.1386,-0.0454,-0.016,0.2586,0.3226,0.4426,0.536,0.5226,0.5414,0.504,0.4,0.4134,0.368,0.168,0.0426,-0.0426,-0.136,-0.1254,0.0294,-0.0214,-0.1322,0.3368,0.545,0.605,1,0.8766,0.8624,0.4498,0.3122,-0.3262,-0.1252,-0.1006,-0.2346,0.0794,0.3756,0.2628,0.351,0.5168,0.612,0.8306,0.8412,0.612,0.8306,0.94,0.8624,0.5802,0.4956,0.3792,0.2734,0.3016,0.291,0.217,-0.1664,0.1664,0.3788,0.3908,0.7034,1,0.6674,0.2586,-0.2946,-0.7194,-0.5632,-0.467,-0.4428,-0.2384,-0.046,-0.0662,0.0902,0.3668,0.6874,0.8356,0.8276,0.8156,0.8396,0.8396,0.499,0.4268,0.2666,0.1262,0.0822,-0.0822,-0.0942,0.03,-0.0888,0.2278,0.2374,0.3812,0.928,0.9616,0.271,-0.1366,-0.5204,-0.88,-0.7458,-0.6594,-0.4964,-0.554,-0.3142,-0.3286,0.1176,0.5588,0.9616,1,0.9808,0.88,0.7986,0.8896,0.6882,0.6354,0.4772,0.2086,-0.0216,0.0984,0.2086,0.5252,-0.0942,0.1558,0.1312,0.4468,0.3566,0.25,-0.0082,-0.4386,-0.8114,-0.9098,-0.836,-0.709,-0.7868,-0.7418,-0.582,-0.4386,-0.2418,0.1188,0.2786,0.9878,1,0.668,0.5328,0.377,0.5902,0.6886,0.2664,0.1558,-0.0696,-0.1312,-0.2132,0.123,0.0612,0.6734,0.7142,1,0.9184,0.4286,0.4286,0.0204,0.0612,-0.1428,-0.0612,-0.0612,0.1428,0.1836,0.3878,0.3062,0.551,0.7552,0.8368,0.8776,0.9184,0.8776,0.8368,0.7552,0.7142,0.7552,0.7142,0.7142,0.6326,0.4694,0.551,0.3062,0.077,0.5076,0.723,1,0.9692,0.5384,0.4462,0.2616,0.077,0.2,0.1076,0.2924,0.3538,0.4462,0.3538,0.4154,0.5692,0.5076,0.5076,0.6308,0.6308,0.6616,0.5692,0.323,0.1076,0.1692,0.477,0.4462,0.2616,0.323,0.3846,0.477,-0.1702,0.2766,0.4468,0.617,0.9788,1,0.5744,0.4894,0.3192,0.1064,-0.1064,-0.0638,-0.0852,0.0212,0.149,0.2554,0.4042,0.2978,0.5106,0.4042,0.5532,0.5106,0.4256,0.4042,0.532,0.2766,0.234,0.1914,0.1064,-0.2128,0.0638,0.0212,-1,-1,-0.9894,-0.9894,-0.9918,-0.9872,-0.985,-0.9776,-0.9786,-0.9736,-0.8186,0.6392,0.2014,0.1658,0.179,0.0366,-0.2842,-0.4528,-0.5574,-0.6602,-0.7406,-0.777,-0.7788,-0.8058,-0.8972,-0.9576,-0.9798,-1,-1,-1,-1,-1,-1,-1,-1,-0.9862,-0.985,-0.963,-0.91,-0.736,-0.314,0.305,0.6164,-0.3034,0.5718,0.3756,0.4086,0.3666,0.1496,-0.1748,-0.3536,-0.5432,-0.6634,-0.728,-0.7824,-0.823,-0.7424,-0.883,-0.939,-0.9602,-1,-1,-1,-1,-1,-1,-1,-1,-0.88,-0.8668,-0.7534,0.0666,0.5832,0.7032,0.6332,0.5432,0.2666,-0.756,-0.756,-0.704,-0.72,-0.724,-0.742,-0.798,-0.83,-0.736,-0.826,-0.852,-0.9568,-0.76,-0.8,-0.6068,-0.4334,-1,-1,-1,-1,-1,-1,-1,-1,-0.6858,-0.6286,1,1,1,1,0.0858,1,1,1,-0.5714,-0.8286,-0.8858,-0.8286,-0.8858,-0.8572,-0.8572,-0.8,-0.6572,-0.6286,-0.8858,-0.6858,-0.5428,-0.5142,-0.8,-1,-1,-1,-1,-1,-1,0.6964,0.7146,0.738,0.7756,0.8132,0.848,0.8836,0.935,0.979,0.8812,-0.1898,-0.2078,-0.233,-0.2534,-0.2868,-0.3186,-0.3154,-0.2424,-0.1036,0.2026,-0.6,0.1764,-0.448,-0.3084,0.4066,0.988,0.8284,0.75,-0.6394,-0.5494,-0.3948,-0.2318,-0.3262,-0.206,-0.0772,-0.073,0.1888,0.1802,0.1888,0.4636,0.6824,0.9314,0.8884,0.97,1,0.8584,0.794,0.6052,0.6952,0.6566,0.7682,0.7854,0.7812,0.6438,0.4506,0.3218,0.3992,0.1674,-0.0472,-0.2104,-0.7626,-0.551,-0.3652,-0.28,-0.2774,-0.0968,0.071,0.182,0.3496,0.427,0.4554,0.742,0.8658,0.8246,1,0.933,0.827,0.827,0.8606,0.7832,0.8064,0.907,0.8788,0.871,0.8426,0.7368,0.773,0.6594,0.6336,0.4142,0.28,0.0038,-0.7228,-0.5276,-0.4286,-0.2702,-0.4144,-0.1118,-0.0268,0.2588,0.5418,0.7596,0.836,0.9858,1,0.9236,0.8868,0.9858,0.9292,0.8048,0.8954,0.8558,0.7878,0.8104,0.819,0.836,0.7736,0.8416,0.6322,0.4342,0.4398,0.3438,0.3042,0.0042,-0.8124,-1,-1,1,-1,-1,-0.2,0.3334,1,-0.579,-0.5964,-0.0176,-0.0702,-0.0702,-0.1578,-0.0526,-0.0878,0.1228,0.9474,1,0.6666,0.6842,0.4736,0.2982,0.4736,0.5264,0.5614,0.386,0.386,0.0878,0.4912,0.614,0.5614,-0.1052,-0.193,-0.2808,-0.5438,-0.3684,-0.1578,-0.4036,-0.4562,'10'
-0.219,0.3744,0.398,0.6678,0.6958,0.78,0.7972,0.4822,0.547,0.2104,0.2772,0.3182,0.4498,0.4498,0.6052,0.5534,0.7756,0.7584,1,0.9676,0.9288,0.8964,0.8468,0.836,0.6202,0.6462,0.411,0.4714,0.3052,0.3528,0.329,0.3938,-0.2416,0.2578,0.2998,0.6102,0.7386,1,0.8624,0.6126,0.4352,0.426,0.2346,0.3466,0.3488,0.44,0.4796,0.58,0.727,0.8366,0.8926,0.8624,0.8016,0.7922,0.79,0.7876,0.7176,0.5612,0.3956,0.419,0.3628,0.3536,0.3326,0.3466,-0.2982,0.1456,0.387,0.5312,0.975,1,0.742,0.6478,0.4258,0.2454,0.1706,0.1428,0.2122,0.4148,0.3536,0.3786,0.4452,0.6116,0.6282,0.7116,0.6366,0.656,0.7282,0.7892,0.742,0.6256,0.4368,0.301,0.1844,0.2038,0.2316,0.2178,-0.299,0.0532,0.485,0.6446,0.9102,1,0.97,0.3754,0.1328,0.0764,-0.073,-0.3122,-0.2492,-0.0898,-0.123,-0.1428,0.0466,0.4584,0.6944,0.7308,0.6944,0.784,0.7642,0.7442,0.7242,0.5382,0.3024,0.1894,0.0232,-0.0466,-0.03,0.1562,-0.428,0.0364,0.241,0.5216,1,0.8926,0.65,0.2582,-0.1404,-0.2964,-0.4558,-0.7436,-0.5564,-0.4836,-0.4246,-0.3172,-0.0226,0.0746,0.532,0.636,0.6984,0.5668,0.4662,0.3414,0.3484,0.1334,-0.0294,-0.1612,-0.4558,-0.3206,-0.2374,-0.0988,-0.4262,0.091,0.1838,0.907,1,0.6808,0.3252,-0.2202,-0.2848,-0.4344,-0.5474,-0.4304,-0.507,-0.2242,-0.2202,-0.0748,0.0708,0.1394,0.495,0.8666,0.9232,0.8424,0.6848,0.802,0.7454,0.6122,0.2606,0.2162,0.0344,-0.2364,-0.1272,-0.1192,-0.0942,0.26,0.4754,0.7354,0.695,0.2332,-0.2556,-0.5246,-0.5022,-0.5784,-0.8654,-0.5606,-0.5022,-0.453,-0.4844,-0.4844,-0.3408,-0.1748,0.0986,0.6816,1,0.973,0.7534,0.8072,0.7174,0.8206,0.3588,0.0404,-0.0762,-0.0582,-0.0404,-0.1032,-0.3024,0.4418,0.4884,0.4884,0.5814,0.4418,0.1628,0.5348,0.3954,-0.1628,-0.0698,0.2558,0.2558,0.5348,0.3954,0.5814,0.628,0.9534,0.814,1,1,0.9534,0.9534,0.3024,0.2094,0.5348,0.4418,0.3488,0.1628,0.2094,0.1162,0.3488,-0.451,0.2942,0.3334,0.6078,0.647,0.6862,0.7648,0.3726,0.451,0.255,0.3334,0.255,0.4902,0.451,0.6862,0.647,0.804,0.7648,1,0.9216,0.804,0.804,0.5686,0.7648,0.451,0.3726,0.098,0.1372,0.0196,0.255,0.1764,0.1764,-0.3334,0.0512,0.4872,0.6666,0.7948,1,0.8974,0.4102,0.1026,-0.0256,0.0256,-0.282,-0.282,-0.2052,-0.3846,-0.1538,0.282,0.359,0.6666,0.7436,0.5642,0.7692,0.6924,0.6924,0.641,0.1794,0.282,0.1538,-0.0256,0.0512,0,0.2308,-1,-1,-1,-1,-0.9858,-0.9848,-0.961,-0.9304,-0.8658,-0.851,-0.6816,0.4748,0.5604,0.8612,0.9264,0.83,0.1966,0.1304,-0.1706,-0.442,-0.5784,-0.758,-0.8878,-0.9586,-0.9814,-0.9852,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.988,-0.988,-0.7176,-0.6072,-0.6796,-0.6286,-0.4778,0.4682,0.9082,0.8928,0.6874,0.483,0.0328,-0.1102,-0.4642,-0.6336,-0.725,-0.8738,-0.9232,-0.9644,-0.9772,-0.9852,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8668,-0.9134,-0.5968,0.5066,0.4732,0.2766,0.0866,-0.4668,-0.5668,-0.698,-0.74,-0.752,-0.77,-0.71,-0.812,-0.766,-0.744,-0.784,-0.6568,-0.4468,-0.5068,-0.82,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5428,1,1,1,-0.6,-0.5142,1,1,-0.6858,-0.4286,-0.8572,-0.6572,-0.4286,-0.6286,-0.6858,-0.5428,0.4,0,-0.5428,-0.4,-0.6572,-0.6572,-1,-1,-1,-1,-1,-1,-1,0.9884,1,1,1,1,1,1,1,1,0.971,-0.1836,-0.1524,-0.136,-0.092,-0.0832,-0.0584,-0.08,-0.0564,0.1332,0.308,-0.5066,0.153,-0.459,-0.2024,0.3858,0.8198,0.884,1,-0.9098,-0.3684,-0.0978,0.0376,0.233,0.228,0.3334,0.4236,0.5538,0.6992,0.8346,0.9398,0.9548,0.97,1,0.8246,0.985,0.8998,0.8446,0.985,0.985,0.9098,0.6942,0.624,0.6692,0.624,0.609,0.4988,0.3384,0.4086,0.3384,0.168,-0.5166,-0.2876,-0.0026,0.1756,0.201,0.084,0.2162,0.3028,0.3536,0.4198,0.6794,0.9084,0.9644,0.939,0.7048,0.7862,0.8932,0.8932,0.8932,0.8932,1,0.9644,0.9644,0.6896,0.715,0.659,0.4758,0.425,0.4606,0.3792,0.2978,0.0076,-0.0324,0.0684,0.1152,0.4748,0.4136,0.223,0.2302,0.2662,0.4676,0.723,1,0.9928,0.8238,0.7734,0.5036,0.5684,0.8706,0.8562,0.831,0.813,0.687,0.7482,0.6258,0.5144,0.482,0.5,0.4244,0.4352,0.2338,0.0936,0.1438,-0.349,0.2452,-1,-1,1,-0.8,-1,-0.8,-0.0666,-1,-0.3578,-0.2844,-0.266,0.2294,0.1376,-0.2294,-0.156,-0.0642,0.156,0.7798,1,0.7432,0.5964,0.3762,0.156,0.156,0.633,0.6146,0.4496,0.4312,0.5596,0.3394,0.0642,0.0276,-0.156,-0.2844,-0.1192,-0.2478,-0.2294,-0.3944,-0.0826,-0.2478,'11'
-0.1044,0.5324,0.5248,0.6468,0.612,0.8458,0.786,0.8184,0.7364,0.316,0.2488,0.3258,0.2338,0.301,0.2712,0.311,0.3732,0.6666,0.6716,1,0.9876,0.9104,0.9004,0.8956,0.8482,0.8284,0.781,0.592,0.5024,0.383,0.4054,0.4304,-0.1636,0.4132,0.3682,0.653,0.7004,1,0.8426,0.8452,0.653,0.1736,0.0886,0.216,0.0462,0.1236,0.0812,0.1736,0.4906,0.553,0.8952,0.9052,0.8302,0.8328,0.7828,0.7652,0.7254,0.653,0.4656,0.4258,0.3184,0.2084,0.271,0.1986,-0.1902,0.3178,0.3438,0.573,0.8776,1,0.802,0.8412,0.362,0.3046,0.0572,-0.0494,-0.1432,-0.0078,0.125,0.302,0.3776,0.6406,0.724,0.7994,0.7448,0.6614,0.5598,0.5208,0.5182,0.4192,0.2968,0.1928,-0.073,0.026,-0.0286,-0.013,-0.213,0.213,0.493,0.5646,1,0.9254,0.9066,0.5708,0.182,0.0046,-0.2566,-0.3468,-0.3282,-0.157,-0.0016,0.101,0.3188,0.6206,0.8694,0.8942,0.6672,0.6236,0.5676,0.4526,0.437,0.2318,0.1664,0.0078,-0.1416,-0.0762,-0.1478,-0.0606,-0.2366,0.0572,0.439,0.5688,0.79,1,0.626,0.1756,0.1298,-0.1756,-0.4886,-0.439,-0.4504,-0.481,-0.3702,-0.3016,-0.126,0.1336,0.5496,0.7214,0.748,0.542,0.4428,0.5114,0.4428,0.5114,0.3816,0.1756,0.0534,-0.145,-0.0916,-0.0954,-0.1922,0.0918,0.4236,0.4672,1,0.8864,0.0918,-0.048,-0.2838,-0.572,-0.9126,-0.8254,-0.8296,-0.6288,-0.4848,-0.38,-0.2402,-0.0394,0.179,0.476,0.703,0.8384,0.7904,0.5808,0.7162,0.62,0.227,0.1092,-0.262,-0.1266,-0.0656,-0.0088,0.1642,0.3846,0.6258,0.7796,0.684,0.422,-0.0644,-0.1976,-0.4386,-0.7298,-0.7464,-0.7048,-0.4886,-0.3804,-0.3014,-0.3014,0.0436,0.0188,0.368,0.4012,0.7048,1,0.9126,0.4636,0.8128,0.8752,0.8128,0.3762,0.2182,-0.002,0.0852,0.0436,-0.1072,0.4642,0.3928,0.3572,0.2858,0.3928,0.5714,0.6786,0.3928,0.3928,0.2858,0.3214,0.3214,0.1072,0.2858,0.2142,0.3928,0.4286,0.6428,0.6428,0.5,0.5,0.5,0.75,0.7858,1,0.8928,0.75,0.5,0.5,0.5,0.3928,-0.1698,0.434,0.4716,0.5094,0.5472,0.6982,0.7358,0.6226,0.4716,0.3962,0.3208,0.3962,0.2452,0.3584,0.0566,0.3208,0.283,0.5472,0.6982,0.7358,1,0.849,0.8114,0.6604,0.4716,0.3962,0.434,0.5472,0.4716,0.283,0.3208,0.2452,-0.2858,0.1666,0.4524,0.5476,1,1,0.8334,0.619,0.3572,-0.1428,-0.238,-0.5,-0.3334,-0.1666,-0.0238,0,0.381,0.6666,0.8572,0.6428,0.619,0.5952,0.4048,0.3334,0.3096,0.4524,0.0952,-0.5,-0.3572,-0.119,-0.119,0.119,-1,-0.973,-0.9836,-0.9722,-0.9134,-0.7798,-0.8278,-0.7972,-0.7712,-0.8826,-0.502,0.3394,0.6452,0.7528,0.8558,0.9712,0.827,0.3278,0.0346,-0.1674,-0.402,-0.549,-0.6914,-0.8096,-0.9212,-0.9568,-0.9548,-0.9682,-1,-1,-1,-1,-1,-1,-0.9754,-0.9816,-0.969,-0.569,-0.1504,-0.5922,-0.5552,-0.5834,-0.5432,-0.398,0.5212,0.7294,0.86,0.782,0.9168,0.4776,-0.0322,-0.2312,-0.4174,-0.6466,-0.7508,-0.8186,-0.8786,-0.9256,-0.9412,-0.9454,-0.9522,-1,-1,-1,-1,-1,-1,-0.9268,-0.9534,-0.7068,-0.7334,0.37,0.4,0.22,0.0766,0.02,-0.0368,-0.61,-0.672,-0.726,-0.744,-0.734,-0.782,-0.804,-0.8564,-0.8092,-0.7728,-0.8856,-0.8568,-0.77,-0.4368,-0.4268,-0.44,-0.5368,-1,-1,-1,-1,-1,-1,-0.5142,-0.8572,1,1,1,-0.4,-0.7142,-0.7142,-0.6286,0,0.0286,-0.8,-0.7428,-0.8572,-0.8286,-0.7142,-0.7714,-0.8286,-0.7428,-0.7142,-0.7428,-0.6858,-0.6286,-0.8286,-0.8858,-0.7142,-0.3714,-1,-1,-1,-1,-1,0.9468,0.9598,0.976,0.9886,0.9982,1,1,1,1,0.8916,0.4218,0.4418,0.4692,0.4708,0.4724,0.4774,0.4732,0.4388,0.3472,0.4488,-0.6,0.2236,-0.378,-0.0736,0.3638,0.7736,0.846,-0.5334,-0.5548,-0.1472,0.0514,0.2398,0.3116,0.291,0.2842,0.5274,0.5,0.5342,0.702,0.9554,0.9624,1,0.8596,0.7636,0.9864,0.8768,0.8972,0.7808,0.8116,0.8322,0.8664,0.7636,0.524,0.678,0.7602,0.6506,0.4042,0.5068,0.4178,0.0582,-0.3916,-0.4026,0.0236,0.377,0.5192,0.2386,0.2422,0.2168,0.4134,0.4354,0.7742,0.8178,0.785,0.8032,0.5956,0.734,0.8616,0.8032,0.7742,0.8106,0.8032,1,0.9234,0.8506,0.6394,0.5702,0.4462,0.4754,0.4718,0.5992,0.479,0.2058,-0.3002,-0.1972,0.1012,0.396,0.4494,0.2362,0.3464,0.293,0.5098,0.7264,0.9894,1,0.9396,0.9182,0.7656,0.7726,0.8294,0.794,0.524,0.5134,0.7868,0.6732,0.5914,0.46,0.4174,0.318,0.2114,0.357,0.6056,0.4104,0.215,-0.0408,1,-1,-1,1,-0.6,-1,-0.6,0.3,-1,-0.3944,-0.0276,0.101,0.101,0.1376,-0.0642,0.3578,0.0826,0.5964,0.688,0.6514,0.6146,1,0.7614,0.266,0.3394,0.5412,0.6698,0.4678,0.3762,0.1926,0.3944,0.523,0.4312,0.156,0.3028,0.2478,0.101,0.211,0.1926,0.0276,-0.688,'11'
-0.1546,0.4128,0.3844,0.6086,0.617,1,0.932,0.5716,0.4894,0.271,0.217,0.1944,0.2312,0.4242,0.2908,0.4042,0.5206,0.6256,0.6198,0.634,0.5348,0.4724,0.5178,0.654,0.549,0.583,0.3476,0.3192,0.2624,0.288,0.2142,0.2,-0.179,0.3606,0.3236,0.5394,0.7052,1,0.8764,0.879,0.7264,0.5078,0.4578,0.5842,0.4894,0.5894,0.6552,0.7184,0.8026,0.8526,0.5684,0.6184,0.3394,0.371,0.621,0.6052,0.4552,0.4342,0.2842,0.25,0.0526,0.0132,0.1184,0.0474,-0.2462,0.216,0.2324,0.4112,0.7194,0.813,0.9724,1,0.6864,0.579,0.6038,0.6258,0.747,0.6616,0.7442,0.4938,0.4278,0.0454,-0.0262,-0.0592,0.1252,0.326,0.403,0.4002,0.15,0.139,0.0206,0.0124,-0.0068,0.0398,0.0288,0.128,-0.2672,0.152,0.3504,0.4432,0.7728,0.7472,0.984,0.9392,1,0.8688,0.8496,0.8816,0.664,0.3184,-0.008,-0.0432,-0.3024,-0.4048,-0.4592,-0.2768,-0.2576,-0.2,0.0368,0.1392,-0.072,0.0912,0.0688,0.0144,-0.1328,-0.0592,-0.088,-0.3664,-0.2896,-0.0548,0.1768,0.2408,0.4848,0.7836,0.9604,1,0.6464,0.558,0.2866,0.0152,-0.4208,-0.4482,-0.5884,-0.5946,-0.8598,-0.9696,-0.9024,-0.8048,-0.6372,-0.4542,-0.4146,-0.3354,-0.2652,-0.2682,-0.3476,-0.2074,-0.1676,-0.3202,-0.308,-0.2988,-0.2186,-0.0666,0.1518,0.4666,0.9038,1,0.937,0.8038,0.7296,0.4556,-0.1592,-0.363,-0.426,-0.526,-0.674,-0.8814,-0.8222,-0.8852,-0.974,-0.9444,-0.874,-0.8296,-0.8408,-0.9,-0.4888,-0.2444,-0.3408,-0.374,-0.263,-0.3,-0.3,-0.1296,-0.0776,0.0694,0.2122,0.4816,0.653,0.8654,1,0.649,0.2204,-0.1306,-0.4938,-0.4816,-0.5878,-0.5184,-0.5714,-0.7592,-0.747,-0.6244,-0.7224,-0.8204,-0.7346,-0.7062,-0.7918,-0.747,-0.7346,-0.5142,-0.3632,-0.1142,-0.0694,0.0612,0.0776,0.3714,-0.1698,0.3962,0.3584,0.5094,0.6604,1,0.8868,0.1698,0.3584,-0.2452,-0.0188,-0.1698,-0.132,0.3584,0.283,0.283,0.3208,0.5094,0.8114,0.8114,0.6226,0.434,0.4716,0.7358,0.8868,0.8868,0.5472,0.4716,0.283,0.3208,0.0944,0.0566,-0.0358,0.5,0.4642,0.7142,0.6072,1,0.9642,0.5358,0.5358,0.3928,0.25,0.2142,0.0714,0.2142,0.2858,0.3214,0.6072,0.7858,0.8572,0.7858,0.5714,0.5358,0.5,0.6428,0.5358,0.0714,0.3572,0.3928,0.2858,0.4286,0.3214,0.3572,-0.2826,0.1086,0.326,0.3914,0.7174,0.826,0.913,1,0.9782,0.826,0.8478,0.8696,0.5,0.0652,-0.1304,-0.413,-0.413,-0.3044,-0.4348,-0.326,-0.413,-0.4566,0.1086,0.0434,0.0218,0.3044,0.326,0.0434,-0.0218,0.0652,-0.174,-0.3478,-1,-1,-1,-1,-1,-1,-1,-0.9796,-0.985,-0.908,-0.0644,0.2534,0.7948,0.8738,0.8588,0.9706,0.867,0.4184,0.2704,0.0276,-0.4204,-0.6958,-0.8494,-0.9332,-0.9754,-0.9836,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9874,-0.9878,-0.8542,-0.315,-0.2042,0.2932,0.553,0.7036,0.8922,0.7704,0.5286,0.2032,-0.2498,-0.6508,-0.8226,-0.9224,-0.9634,-0.982,-0.9866,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9354,-0.97,-0.8134,-0.4468,-0.775,-0.7876,-0.7868,-0.7712,-0.7424,-0.7624,-0.7846,-0.8024,-0.8756,-0.9046,-0.86,-0.8034,-0.7234,-0.8534,-0.9668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3714,0.8572,1,1,-0.2858,-0.1142,-0.8,-0.3428,-0.4,-0.2286,-0.2572,-0.2572,-0.3428,-0.4286,-0.5714,-0.6572,-0.2,-0.2572,-0.8,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.0344,0.0798,0.0194,-0.0148,-0.1206,-0.2032,-0.3104,-0.4774,-0.653,-0.364,-0.64,0.0236,-0.2456,-0.2382,-0.2492,-0.1372,0.1548,1,-0.5122,0.0366,0.3414,0.3536,0.2196,0.2804,0.0122,0.4024,0.7318,1,0.8536,0.7196,0.5854,0.4268,0.4146,0.439,0.5854,0.622,0.5488,0.2926,0.317,0.3048,-0.0366,-0.1098,-0.1952,-0.1586,-0.1464,0.0976,0.2074,0.1952,0.061,-0.317,-0.0254,0.4178,0.8228,0.8482,0.3164,0.2784,0.3038,0.6962,0.8228,0.9368,1,0.7848,0.8354,0.7594,0.595,0.2278,0.4178,0.6456,0.443,0.2406,0.2658,0.2532,-0.0506,-0.076,-0.038,-0.1266,0.1646,-0.038,0.367,0.3924,0.2026,-0.4304,0.2202,0.434,0.7862,0.7988,0.5094,0.1824,0.2956,0.522,0.7988,1,0.9622,0.8868,0.7736,0.8238,0.7988,0.6604,0.6604,0.8238,0.7862,0.5974,0.346,0.107,0.0692,-0.0314,0.1446,0.132,0.2452,0.4214,0.61,0.5974,0.1824,-0.1698,-0.1156,-1,-1,1,-1,-1,-1,-0.7,-1,0.3548,0.242,0.387,0.8388,0.4032,0.258,0.2258,0.0162,0.0322,0.129,0.0646,-0.0484,0.2096,0.5968,0.5806,0.7258,1,0.8226,0.2096,0.1936,0.1612,0.0968,0.2742,0.4838,0.5646,0.9678,0.9516,0.9678,0.3226,0.2258,0,-0.113,'12'
-0.3824,0.3898,0.446,0.522,0.9338,1,0.8824,0.4926,0.2574,0.125,0.0858,0.0956,0.152,0.179,0.3064,0.478,0.451,0.7622,0.875,0.995,0.88,0.7084,0.6446,0.6348,0.6544,0.6912,0.6862,0.5686,0.4852,0.348,0.2696,0.2648,-0.2104,0.3792,0.373,0.5896,0.5604,1,0.977,0.7084,0.677,0.3584,0.327,0.4084,0.3896,0.3396,0.3374,0.4208,0.4354,0.7208,0.6938,0.5958,0.5938,0.498,0.4354,0.4834,0.4624,0.498,0.473,0.2854,0.2646,0.1604,0.2292,0.3084,-0.2124,0.2858,0.24,0.4624,0.6706,0.8888,0.8374,1,0.8096,0.5674,0.4802,0.5358,0.6488,0.6726,0.742,0.7282,0.3016,0.1666,0.123,0.119,0.113,0.2342,0.3908,0.4126,0.4088,0.4028,0.2936,0.1428,0.0834,0.1626,0.1388,0.1726,-0.2586,0.174,0.2608,0.4004,0.7734,0.7986,1,0.9382,0.8764,0.8078,0.8832,0.6796,0.643,0.1464,0.0458,-0.1784,-0.254,-0.4324,-0.5102,-0.492,-0.3226,-0.2014,0.0664,0.2014,0.3456,0.4074,0.3432,0.286,0.2242,0.1236,0.167,0.238,-0.2794,0.0442,0.2148,0.2912,0.6118,0.853,0.9588,1,0.747,0.7088,0.4324,0.1148,-0.3412,-0.6352,-0.6,-0.55,-0.497,-0.65,-0.7794,-0.6882,-0.6882,-0.6618,-0.5412,-0.5824,-0.3824,-0.2824,-0.1294,0.0852,-0.0324,-0.297,-0.203,-0.1676,0.041,0.2378,0.3142,0.429,0.899,0.9016,1,0.6394,0.3716,0.3196,-0.1994,-0.3798,-0.53,-0.623,-0.6312,-0.6776,-0.7132,-0.817,-0.8416,-0.642,-0.6202,-0.6776,-0.623,-0.5602,-0.571,-0.511,-0.153,0.1912,0.1804,0.1284,0.1366,-0.0984,0.1586,0.3948,0.4022,0.7344,1,0.8708,0.8118,0.5202,0.4612,0.107,-0.225,-0.5056,-0.7638,-0.8154,-0.7896,-0.8376,-0.7232,-0.7048,-0.9446,-0.9226,-0.7896,-0.7344,-0.904,-0.786,-0.6236,-0.6716,-0.6642,-0.369,-0.1108,-0.1144,-0.1624,-0.1772,-0.8868,-0.0188,0.2452,0.132,0.9246,1,0.6604,0.132,0.0944,-0.4716,-0.3208,-0.434,-0.0566,-0.0188,-0.2452,0.0188,-0.0566,0.132,0.6604,0.585,0.0566,0.132,0.0566,0.132,0.283,0.1698,0.3584,0.283,-0.0566,-0.0944,-0.2076,-0.6982,-0.7084,0.0416,0.1666,-0.0834,0.375,0.5416,0.3334,0.125,0.125,0.1666,0.1666,0.0416,-0.25,0.0416,0.1666,0.1666,0.0416,0.3334,0.9584,1,0.7916,0.0416,0.5416,0.7084,0.6666,0.4584,0.0834,0.4166,0.5834,0.5,0.1666,-0.0416,-0.2954,0.1136,0.2728,0.3636,0.8182,0.7272,0.9318,0.9546,1,1,0.8864,0.5454,0.2728,-0.341,-0.4772,-0.4546,-0.3864,-0.3864,-0.409,-0.4772,-0.341,-0.2728,-0.091,-0.091,0.159,0.25,0.3182,0.1818,0.0682,-0.1364,0,0.091,-1,-1,-1,-1,-1,-1,-1,-1,-0.9834,-0.9878,-0.3086,0.173,0.552,0.8608,0.8722,0.9254,0.9268,0.481,-0.013,-0.285,-0.458,-0.5664,-0.695,-0.873,-0.9484,-0.9648,-0.967,-0.9706,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.991,-0.9908,-0.5952,-0.3544,-0.0748,0.1832,0.477,0.8452,0.7316,0.2398,-0.3046,-0.609,-0.7626,-0.8232,-0.8672,-0.941,-0.9426,-0.949,-0.9596,-0.9696,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8934,-0.87,-0.7534,-0.5728,-0.6474,-0.6656,-0.702,-0.6474,-0.6328,-0.6546,-0.682,-0.88,-0.9034,-0.955,-0.8368,-0.7768,-0.5634,-0.3868,-0.2568,-0.3568,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,-0.7714,-0.6858,-0.4572,-0.3428,-0.3714,-0.1428,-0.2858,-0.4858,-0.7428,-0.6,-0.2286,-0.5142,-0.5714,-0.6572,-0.8572,-0.3142,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.3506,0.3426,0.3374,0.2954,0.249,0.222,0.0796,-0.0652,-0.2716,-0.1498,-0.68,0.3412,-0.5066,-0.3996,-0.4346,-0.3736,-0.2272,1,-0.0848,0.661,0.9662,1,0.7288,0.661,0.695,0.695,0.8306,0.8644,0.695,0.7628,0.7288,0.7628,0.5932,0.4916,0.6272,0.5932,0.4916,0.4576,0.5594,0.5254,0.4238,0.0508,-0.1864,-0.356,-0.356,-0.3898,0.017,0.1864,0.1864,-0.0508,-0.277,0.477,1,0.9692,0.4,0.2154,0.3538,0.4154,0.4616,0.6154,0.677,0.4154,0.3846,0.5692,0.4,0.4308,0.4616,0.323,0.2462,0.323,0.4462,0.3846,0.277,-0.0154,-0.4308,-0.3846,-0.3692,-0.2462,-0.0462,-0.0308,0.123,-0.0462,-0.3438,0.3438,1,0.9532,0.2656,-0.0468,0.2344,0.2032,0.2812,0.7344,0.6406,0.4062,0.4688,0.4844,0.2812,0.2968,0.3438,0.2188,0.3124,0.25,0.2812,0.25,0.0938,-0.2188,-0.5,-0.3282,-0.3282,-0.1718,-0.0938,-0.0624,-0.1406,-0.375,-0.2324,-1,-1,1,-0.6,-1,-0.4,-0.8334,-1,-0.4452,-0.2262,-0.0218,0.2262,0.3722,0.6496,0.5182,0.0948,-0.0802,0.0218,-0.0656,-0.051,0.0948,0.4014,0.7956,1,0.5182,0.5912,0.6934,0.562,0.343,0.5474,0.489,0.2554,0.124,-0.0218,-0.0656,-0.0218,-0.2554,-0.0656,-0.1386,-0.2408,'12'
-0.3358,0.4278,0.457,0.6848,0.76,0.8304,0.7042,0.2824,0.2388,-0.0182,-0.0206,0.1346,0.1078,0.0618,0.1564,0.3116,0.423,0.6364,0.7916,0.937,1,0.9854,0.869,0.8448,0.8958,0.9054,0.9152,0.7722,0.6048,0.5466,0.5394,0.5128,-0.1622,0.48,0.4778,0.7556,0.7312,0.9466,0.9288,0.7044,0.7044,0.3556,0.3444,0.4912,0.4866,0.5712,0.58,0.6666,0.6734,0.8934,0.8956,0.9644,1,0.7334,0.7934,0.6556,0.6756,0.5422,0.54,0.4044,0.4488,0.3444,0.4044,0.4356,-0.159,0.3906,0.3452,0.6536,0.7324,0.9236,0.8376,1,0.9498,0.8542,0.6082,0.6368,0.761,0.7922,0.7252,0.7276,0.7108,0.6368,0.4528,0.3572,0.4194,0.515,0.4934,0.4552,0.3548,0.3524,0.2592,0.1972,0.0872,0.123,0.1398,0.2928,-0.0784,0.4436,0.703,0.7714,1,0.9386,0.5494,0.8226,0.9044,0.9112,0.8634,0.9488,0.8294,0.8362,0.5188,0.1672,-0.0648,-0.198,-0.3208,-0.2798,-0.2662,-0.2116,-0.0068,0,-0.1434,-0.454,-0.2458,-0.2252,-0.1946,-0.1296,-0.2832,-0.4266,0.206,0.6114,1,0.9162,-0.3568,-0.2998,0.2294,0.34,0.196,0.2428,0.3768,0.3468,0.0888,-0.2496,-0.5578,-0.541,-0.2864,-0.1692,-0.0988,0.0686,-0.0184,0.015,0.1056,0.2026,-0.0252,-0.4974,-0.8928,-0.2362,-0.139,-0.4774,-0.7386,-0.7756,0.2322,0.504,1,0.7678,0.1772,0.3346,0.4448,0.1418,-0.0158,-0.1456,0.3308,0.4174,0.2322,-0.1536,-0.5906,-0.5354,-0.315,-0.3228,-0.3308,-0.252,-0.433,-0.433,-0.4212,-0.1418,-0.252,-0.5078,-0.5354,-0.244,-0.2914,-0.4134,-0.7126,-0.9252,0.1882,0.415,0.2614,0.3346,1,0.883,0.4442,0.6966,0.978,0.7038,0.7586,0.7478,0.6344,0.5576,0.1882,-0.0092,-0.2358,-0.298,-0.3894,-0.4588,-0.6636,-0.3748,0.0494,0.1956,0.3308,0.2394,0.17,0.1444,0.0494,-0.159,-0.521,-0.8976,-0.6538,0.2308,0.3846,0.5,1,1,0.423,0.4616,0.1924,0.1154,-0.0384,-0.0384,0.1924,0.1924,0.2308,0.2692,0.1538,0.5384,0.3462,0.8076,0.8846,0.6538,0.7692,0.6538,0.577,0.5384,0.8462,0.8462,0.5384,0.5384,0.577,0.4616,-0.6888,0.1556,0.2444,0.0222,0.4222,0.4222,0.2444,-0.2,0.0222,0.1112,-0.1112,0.1112,0.1112,-0.1556,0.1112,0.4222,0.4222,0.4666,0.7334,0.9556,0.8666,1,0.8666,0.7334,0.8666,0.8222,0.3778,0.3778,0.4222,0.0222,-0.1112,0.4222,-0.3012,0.1326,0.3976,0.5662,1,0.9278,0.3734,0.5662,0.5904,0.8314,0.759,0.8554,0.7108,0.759,0.2772,0.2048,-0.3976,-0.494,-0.494,-0.5422,-0.4216,-0.3012,-0.3494,-0.2048,-0.1326,-0.3976,-0.5904,-0.4216,-0.2048,-0.0362,-0.4216,-0.518,-1,-1,-1,-1,-1,-1,-1,-1,-0.9806,-0.9866,-0.4992,0.0582,0.585,0.6572,0.5582,0.8614,0.64,0.0074,-0.0998,-0.1916,-0.3056,-0.4716,-0.6692,-0.8518,-0.9352,-0.9546,-0.9634,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.987,-0.9898,-0.5504,-0.1888,0.5578,0.339,0.5882,0.754,0.1068,-0.5604,-0.6248,-0.6748,-0.6014,-0.6858,-0.8112,-0.8534,-0.8876,-0.9228,-0.9412,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.86,-0.8734,-0.7668,-0.5656,-0.542,-0.6274,-0.6182,-0.6056,-0.7256,-0.842,-0.9474,-0.9674,-0.871,-0.86,-0.81,-0.37,-0.19,-0.3168,-0.3734,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,1,1,1,0.5714,-0.6286,-0.4,0.7142,1,0.3142,-0.7714,0.5428,0.1714,-0.7714,-0.2572,-0.1714,-0.0286,-0.0572,0.0572,-1,-1,-1,-1,-1,-1,0.9772,0.975,0.9716,0.9726,0.9752,0.9832,0.9938,1,1,0.7094,0.6218,0.6434,0.6886,0.7264,0.61,0.5312,0.4124,0.14,-0.3248,-0.4234,-0.6134,0.3176,-0.3408,-0.2574,-0.1008,-0.2544,-0.2136,1,-0.44,0.36,0.52,0.56,0.36,0.36,0.4,0.44,0.56,0.84,0.92,0.96,1,1,0.88,0.76,0.76,0.68,0.56,0.32,0.36,0.4,0.24,-0.04,-0.12,-0.4,-0.04,0.28,0.32,0.28,0.16,-0.36,-0.3536,0.3738,0.9192,0.7172,0.2122,0.0102,0.192,0.1718,0.3334,0.8586,0.9596,0.7778,1,0.9596,0.7374,0.5758,0.6566,0.5354,0.3738,0.1718,0.4748,0.4142,0.2122,-0.2122,-0.1314,-0.3334,0.0304,0.2728,0.6162,0.6768,0.2122,-0.0708,-0.1482,0.4444,1,0.7222,0.3888,0.074,-0.037,0.2222,0.1666,0.574,0.6852,0.4814,0.4444,0.5926,0.4814,0.4444,0.2778,0.2778,0.1296,0.1852,0.2592,0.1852,0,-0.2962,-0.2778,-0.2408,-0.1482,0.1296,0.2592,0.1482,-0.0926,-0.3518,0.2968,-1,-1,1,-0.8,-1,-0.6,-0.8334,-1,-0.175,-0.325,0.2,0.225,0.65,0.625,0.4624,0.275,0.275,-0.0874,-0.1,-0.075,0.3124,0.5126,0.5876,0.525,-0.0126,-0.075,-0.1624,0.85,1,0.5624,-0.1126,-0.0874,0.05,-0.1624,-0.3124,-0.0376,0.0874,0.1374,0.125,-0.0376,'13'
0.0092,0.6776,0.6328,0.9208,0.8414,1,0.86,0.7068,0.5324,0.2708,0.2206,0.3554,0.1466,0.1704,0.2364,0.3262,0.366,0.5984,0.7542,0.8838,0.8494,0.7966,0.5746,0.6354,0.7252,0.815,0.8414,0.7596,0.5588,0.5034,0.3976,0.4742,-0.0792,0.512,0.454,0.6906,0.761,1,0.8138,0.7862,0.6226,0.688,0.522,0.5924,0.6126,0.6378,0.683,0.6704,0.8516,0.7762,0.8516,0.7334,0.449,0.4516,0.4642,0.5598,0.6528,0.673,0.7308,0.5346,0.3636,0.117,0.2176,0.2378,-0.203,0.2846,0.2946,0.4826,0.8514,0.9332,0.4654,0.6212,1,0.9034,0.5694,0.5372,0.6608,0.7426,0.7772,0.542,0.5124,0.2278,0.1238,0.1486,0.0174,0.109,0.1684,0.208,0.458,0.5074,0.3366,0.208,-0.0372,0.0174,0.1114,0.2054,-0.0348,0.4826,0.6528,0.7118,0.7466,0.6424,0.382,1,0.8958,0.632,0.8646,0.9202,0.5348,0.5,0.198,-0.0868,-0.2744,-0.2534,-0.4166,-0.4966,-0.5764,-0.507,-0.3994,-0.2604,0.0348,0.1112,-0.132,-0.5244,-0.4584,-0.125,-0.118,-0.125,0.2506,0.6072,1,0.8196,-0.539,-0.531,0.2104,0.1504,-0.01,0.014,0.1422,-0.0942,-0.3548,-0.4148,-0.5592,-0.519,-0.3146,-0.0862,-0.018,0.022,-0.1022,-0.3266,-0.1704,-0.1744,0.1944,0.1664,-0.6714,-0.9158,-0.1784,0.1544,-0.03,-0.539,0.3106,0.617,1,0.617,-0.3106,0.0978,0.3106,-0.0426,-0.1914,0.0468,0.0852,0.0852,0.1148,-0.2,-0.3234,-0.3574,-0.0212,0.0808,0.1914,0.2042,-0.0298,-0.4086,-0.349,-0.3106,0.1446,0.0894,-0.7446,-0.9106,-0.583,-0.2936,-0.4086,-0.6382,0.3226,0.6268,0.3088,0.6268,0.9908,0.954,0.6682,0.4424,0.7604,0.7282,0.9816,1,0.6082,0.258,-0.0738,-0.0646,-0.2812,-0.3502,-0.2858,-0.4424,-0.7604,-0.9216,-0.6406,-0.1152,0.6406,0.6958,0.2488,0.2074,0.47,0.2996,-0.4102,-0.894,-0.234,0.4468,0.4894,0.7872,0.9148,0.4894,0.7022,0.3192,0.3618,0.1914,0.0638,-0.0212,-0.0638,-0.0212,0.1064,0.0638,0.0212,0.2766,0.3618,0.8298,1,0.9148,0.4042,0.4468,0.2766,0.4042,0.7446,0.7446,0.2766,0.4894,0.4894,0.2766,-0.0952,0.619,0.6666,1,1,0.9048,0.8572,0.5714,0.4762,0.1904,0.0952,0.238,0.1428,-0.1428,-0.0952,0.238,0.238,0.1904,0.4762,0.9524,0.8572,0.8096,0.762,0.762,0.8572,0.9524,0.619,0.5238,0.5714,0.5714,0.4762,0.7142,-0.0344,0.3564,0.4942,0.5632,0.885,0.7242,0.5402,1,0.816,0.6322,0.862,0.862,0.5172,0.2874,0.4022,0.0344,-0.2184,0.0114,-0.2414,-0.4022,-0.7012,-0.5402,-0.5862,-0.1494,0.1034,0.2874,0.1034,-0.3564,-0.977,-0.4942,-0.1264,-0.1034,-1,-1,-1,-1,-1,-1,-0.9724,-0.9772,-0.8684,-0.4974,-0.276,0.6754,0.5534,0.6612,0.9646,0.9386,0.4194,-0.1454,-0.3006,-0.4454,-0.4494,-0.5108,-0.581,-0.74,-0.8786,-0.9424,-0.9504,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9804,-0.9804,-0.884,-0.5768,-0.3466,0.1344,0.2354,0.4784,0.9368,0.7786,0.0294,-0.5932,-0.6764,-0.757,-0.7378,-0.6702,-0.7276,-0.7686,-0.8192,-0.852,-0.8748,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.93,-0.9668,-0.7434,-0.5534,-0.27,-0.722,-0.7674,-0.6964,-0.671,-0.682,-0.7946,-0.9328,-0.8946,-0.9128,-0.9018,-0.745,-0.7468,-0.4034,-0.1634,0.0832,0.3966,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,0.4572,1,1,1,-0.1428,-0.6858,-0.5714,-0.7428,0.3714,1,0.1428,-0.6572,-0.9714,0.0858,-0.0286,-0.4858,-0.2858,-0.4,-0.6572,-0.6858,-1,-1,-1,-1,-1,-1,0.8954,0.8948,0.8886,0.8988,0.9114,0.931,0.9518,0.9834,0.9948,0.577,0.517,0.5102,0.4232,0.3912,0.3344,0.1904,0.153,-0.0782,-0.3184,-0.3938,-0.5734,0.3294,-0.3924,0.2204,0.1292,0.1248,0.0602,1,-0.425,0.4084,0.5666,0.5916,-0.0584,-0.0416,0.0166,-0.1166,0.2916,0.5834,1,0.6334,0.625,0.6334,0.4916,0.3084,0.5584,0.5334,0.3166,0.175,0.2834,0.0834,-0.1,0.0166,0.05,-0.35,-0.125,-0.05,0.125,0.4166,0.3834,0.0666,-0.3388,0.551,0.6244,0.6408,-0.1266,0.1346,0.1184,0.0368,0.347,0.649,1,0.7306,0.796,0.9346,0.5674,0.502,0.6408,0.5918,0.4858,0.3796,0.249,0.1674,-0.2244,-0.1184,0.0204,-0.1836,0.0694,0.0368,0.0858,0.3632,0.2898,-0.2326,0.0088,0.3422,0.5088,0.4912,0.1754,-0.0878,-0.0264,0.1404,0.3772,0.9474,1,0.7456,0.8508,0.9298,0.7192,0.7192,0.8508,0.7982,0.6052,0.5,0.3508,0.2106,-0.1492,-0.035,0.079,0.0964,0.4036,0.5264,0.2894,0.4912,0.7192,0.3508,-0.6556,-1,-1,1,-0.8,-1,0,-0.5,-1,-0.5568,-0.4162,-0.027,0.0486,0.081,0.1892,0.3946,0.2756,0.1352,0.081,-0.146,0.027,0.0594,0.0594,0.0486,0.0702,-0.2972,-0.4162,-0.0702,0.027,0.5352,1,0.9352,0.1676,-0.254,-0.4378,-0.2108,-0.1352,-0.2864,-0.3514,-0.3946,-0.5784,'13'
-0.1262,0.4738,0.5024,0.912,0.8238,1,0.8238,0.5666,0.3976,0.1596,-0.0072,0.081,0.031,0.1214,-0.0238,0.0214,0.2142,0.2262,0.5762,0.588,0.8238,0.8952,0.6762,0.6524,0.5858,0.6334,0.8286,0.7476,0.6762,0.4952,0.6262,0.5572,-0.1054,0.4716,0.4518,0.8246,0.7226,1,0.8558,0.9024,0.7158,0.3074,0.1786,0.2942,0.2142,0.3008,0.2408,0.2986,0.3008,0.3674,0.7802,0.7692,0.687,0.6538,0.656,0.6226,0.7714,0.738,0.787,0.7026,0.465,0.383,0.5406,0.4938,-0.1968,0.2962,0.3842,0.5902,0.8958,1,0.7546,0.7986,0.7292,0.6226,0.4166,0.3056,0.2292,0.0996,0.1968,0.1274,0.243,0.426,0.3936,0.176,0.0718,0.1226,0.0856,0.0672,0.1644,0.287,0.338,0.3866,0.3102,0.0486,-0.0186,0.0416,-0.1182,0.2812,0.624,0.7138,1,0.7372,0.3478,0.5342,0.5008,0.1548,-0.0184,-0.0648,-0.0948,-0.0016,0.0282,0.4044,0.5208,0.4542,0.3678,0.208,0.1082,0.0948,0.0716,0.2014,0.421,0.4342,0.5342,0.544,0.2946,0.2046,0.0848,0.0848,0.175,0.5188,1,0.8032,0.3094,0.0938,0.35,0.2906,-0.2,-0.7718,-0.7718,-0.8812,-0.9468,-0.7812,-0.5126,-0.0126,0.0188,-0.1438,-0.1,-0.1968,-0.4782,-0.4468,-0.4532,-0.4094,-0.3782,-0.1188,-0.1374,-0.35,-0.5532,-0.75,-0.7438,-0.725,0.3686,0.7372,1,0.761,0.4608,0.1878,0.2798,0.447,-0.1126,-0.5836,-0.9624,-0.7576,-0.6996,-0.8566,-0.5564,-0.075,0.256,0.174,-0.0308,-0.0444,-0.0546,-0.3208,-0.2866,-0.3994,-0.4368,-0.1126,-0.0716,-0.0478,-0.3038,-0.529,-0.4982,-0.6484,0.1372,0.5142,0.6514,0.68,0.8458,0.6286,0.1314,-0.5428,-0.1886,-0.3542,-0.5486,-0.4742,-0.3828,-0.0342,0.3542,0.7772,1,0.7372,0.2628,0.2858,0.16,0.1714,0.04,-0.0686,0.5372,0.64,0.5542,0.24,0.1428,0.0742,0.1372,0.0228,-0.2,0.32,0.32,0.84,1,0.92,0.56,0.32,0.36,0.24,0.08,-0.04,0.08,-0.12,-0.32,-0.08,0.08,0,0.28,0.36,0.72,0.64,0.52,0.48,0.48,0.56,0.36,0.2,0.4,-0.44,0.36,0.4,-0.082,0.4098,0.3114,0.7704,0.705,0.8032,0.6722,0.5082,0.3442,0.246,0.082,0.1476,0.1476,0.2132,0.2132,0.1804,0.3442,0.4754,0.7378,0.836,0.9344,1,0.9344,0.836,0.7378,0.8032,0.8688,0.9016,0.8032,0.705,0.705,0.705,0.0624,0.4062,0.6876,1,1,0.4062,0.2188,0.1876,-0.4688,-0.5312,-0.5,-0.5312,-0.7188,0.125,0.4376,0.2812,0.1562,-0.25,0.25,0,-0.1562,-0.0624,-0.2188,-0.0938,0.125,0,0.2188,0.375,0.25,-0.25,-0.1876,0.0312,-1,-1,-1,-1,-1,-1,-1,-0.9834,-0.9812,-0.9574,-0.6856,0.397,0.4548,0.4346,0.6264,0.9452,0.4844,0.0248,-0.2758,-0.4966,-0.56,-0.493,-0.635,-0.7266,-0.8874,-0.946,-0.9618,-0.969,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9802,-0.9814,-0.7896,-0.575,0.3484,0.5928,0.6906,0.818,0.9028,0.2372,-0.4022,-0.5906,-0.7194,-0.7362,-0.5566,-0.6542,-0.6888,-0.829,-0.8516,-0.8904,-0.9248,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.9534,-0.8068,-0.4068,-0.76,-0.84,-0.7674,-0.6746,-0.755,-0.7684,-0.87,-0.885,-0.9734,-0.9518,-0.7784,-0.71,-0.5434,-0.41,-0.2534,-0.3134,-0.44,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,0.6286,1,1,1,-0.5714,-0.8,-0.6572,-0.6572,1,1,-0.7142,-1,1,1,-0.4858,-0.6572,-0.6286,-0.4858,-0.5428,-0.6,-1,-1,-1,-1,-1,0.9436,0.9506,0.9512,0.9604,0.9646,0.9746,0.9956,1,1,0.6516,0.5694,0.6208,0.6252,0.64,0.6752,0.6906,0.6672,0.4814,0.287,0.1304,-0.5466,0.3882,-0.5732,0.0466,0.424,0.2634,0.4732,1,-0.425,-0.05,0.5126,0.375,0.025,-0.05,-0.1126,0.0624,0.225,0.5376,0.9376,0.9,0.9,1,0.975,0.7124,0.65,0.5874,0.65,0.625,0.725,0.775,0.65,-0.0126,0.0624,-0.15,-0.0624,0,0.1,0.275,0.1876,-0.0376,-0.7938,-0.0722,0.3608,0.2164,0.1134,-0.1546,0.0516,0.031,0.1958,0.6702,0.9176,0.9382,0.9588,1,0.7732,0.8556,0.8144,0.7938,0.3608,0.567,0.4432,0.5464,0.2784,-0.1134,-0.031,-0.1958,-0.1958,0.0722,0.2784,0.3402,0.1134,-0.567,-0.1366,0.5108,0.8562,0.3526,0.295,0.2086,0.223,0.1654,0.1798,0.4676,1,0.9856,0.4964,1,0.9856,0.6546,0.8274,0.7554,0.6834,0.5252,0.367,0.108,0.0936,-0.223,0.2662,0.108,0.4388,0.4388,0.5108,0.6116,0.5396,-0.0504,-0.2302,-1,-1,1,-1,-1,-0.2,-0.7,-1,-0.3194,-0.2362,0,0.1388,0.125,0.3334,0.5416,0.9584,1,0.3334,0.4028,0.5,0.6112,0.5416,0.625,0.6112,0.2778,0.2638,0.0834,0.4306,0.7916,0.6528,0.3612,0.0972,0.0416,-0.0694,-0.0556,-0.0416,-0.0834,-0.2084,-0.25,-0.5694,'14'
-0.219,0.5846,0.6118,0.8782,0.8962,0.8578,0.912,0.4446,0.4176,0.0722,-0.009,-0.0836,0.079,0.0248,0.1784,0.106,0.2934,0.4176,0.7156,0.772,1,0.8532,0.8082,0.72,0.6772,0.6998,0.7404,0.824,0.6478,0.517,0.4762,0.5734,-0.0906,0.5664,0.56,0.8484,0.8126,0.9326,0.8864,1,0.979,0.4884,0.4294,0.4926,0.4422,0.3494,0.3494,0.3178,0.5664,0.7326,0.819,0.7852,0.7558,0.6736,0.5494,0.5768,0.7916,0.819,0.6906,0.7726,0.4926,0.4042,0.4884,0.3936,-0.188,0.338,0.3976,0.5952,0.8904,1,0.6834,0.719,0.7834,0.6786,0.419,0.3976,0.1976,0.2166,0.412,0.6642,0.762,0.6096,0.5738,0.5096,0.4286,0.269,0.4166,0.4524,0.612,0.6714,0.6858,0.5976,0.3738,0.2904,0.1928,0.1714,0.1758,0.6832,1,0.9696,0.8264,0.653,0.4664,0.4404,0.1496,-0.3622,-0.4144,-0.462,-0.653,-0.5054,-0.18,0.5618,0.6702,0.462,0.1366,0.2104,0.1626,-0.2494,-0.3796,-0.102,0.1366,0.3318,0.4404,0.5618,-0.102,-0.5748,-0.5922,-0.5098,0.3834,0.6766,1,0.7934,0.2866,0.2734,0.21,0.2834,0.1366,-0.5466,-0.9466,-0.8534,-0.9,-0.6566,-0.58,-0.1034,0.0666,-0.06,-0.1734,-0.26,-0.21,-0.43,-0.6034,-0.4666,-0.2766,-0.1466,-0.19,-0.2466,-0.4734,-0.6566,-0.6634,-0.8634,0.5448,0.8658,1,0.7846,0.5528,0.313,0.1708,0.4552,0.0732,-0.6748,-0.9106,-0.6788,-0.817,-0.557,-0.4472,0.313,0.5162,0.1748,0.0692,-0.0284,-0.1056,-0.256,-0.3334,-0.2926,-0.3496,-0.0772,0.122,-0.004,-0.1952,-0.5528,-0.5934,-0.5122,-0.0658,0.2236,-0.1536,0.1754,0.636,0.7018,0.0922,-0.5308,-0.0308,-0.1316,-0.4474,-0.1096,0.1666,0.4562,0.386,0.9122,1,0.3728,-0.2412,-0.3508,-0.2236,-0.1798,-0.1448,0.0394,0.272,0.3508,0.4956,0.5132,0.079,0.1096,0.0308,-0.1842,-0.3024,0.628,0.628,0.721,0.6744,0.628,0.4884,0.3954,0.2094,0.1162,-0.0698,0.0698,0.0698,-0.0232,-0.0232,-0.1628,-0.1628,0.3954,0.5814,0.5814,0.9534,1,0.9534,0.907,0.7674,0.7674,0.1162,0.628,0.5348,0.721,0.5814,0.6744,-0.234,0.4894,0.532,0.8724,0.9574,0.7022,0.8298,0.3618,0.0638,-0.234,-0.234,-0.234,-0.234,0.149,0.1914,0.3618,0.3618,0.4468,0.5744,0.7446,1,0.8724,0.8298,0.617,0.6596,0.7446,0.7446,0.7872,0.532,0.5744,0.532,0.6596,0.0492,0.4754,0.5082,0.9344,1,0.4754,0.1804,0.0492,0.1804,0.0164,-0.4098,-0.7378,-0.246,-0.2132,-0.3442,0.7704,0.9344,0.5738,-0.0164,-0.1148,-0.0164,-0.2786,-0.8032,-0.3114,0.377,0.4098,0.7704,0.705,-0.0164,-0.377,-0.3442,-0.2786,-1,-1,-1,-1,-1,-1,-0.9828,-0.9762,-0.9126,-0.4106,-0.3174,0.8022,0.9354,0.694,0.7862,0.8632,0.115,-0.152,-0.288,-0.405,-0.3108,-0.383,-0.6264,-0.7766,-0.8774,-0.9296,-0.9524,-0.9448,-0.9658,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9834,-0.9804,-0.8932,-0.517,-0.3286,0.3806,0.3312,0.701,0.844,0.443,-0.3558,-0.6394,-0.6848,-0.741,-0.636,-0.5932,-0.7018,-0.7468,-0.8408,-0.8604,-0.8762,-0.877,-0.9308,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9368,-0.8868,-0.73,-0.5368,-0.3834,-0.5768,-0.6768,-0.635,-0.5618,-0.7018,-0.7734,-0.8468,-0.9418,-0.9616,-0.9032,-0.7754,-0.63,-0.3834,-0.4368,-0.1434,-0.1068,-0.36,-0.34,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6,0.1714,1,1,0.5142,-0.1142,-0.4858,-0.7142,-0.7428,-0.1142,1,-0.2,-0.8858,-0.2572,1,-0.4,-0.5714,-0.8858,-0.7142,-0.5428,-0.7142,-0.4858,0.2572,-1,-1,-1,-1,0.9216,0.9316,0.9388,0.951,0.96,0.9638,0.9714,1,0.9894,0.606,0.6194,0.6386,0.6364,0.6464,0.6232,0.5344,0.4886,0.3998,0.3022,0.0824,-0.4934,0.4706,-0.3082,-0.249,0.1102,0.404,0.9508,1,-0.353,0.3432,0.647,0.5784,0.1372,0.0196,0.049,-0.0294,0.3334,0.5588,0.9314,0.9804,1,0.9314,0.6666,0.598,0.7254,0.5196,0.4216,0.2254,0.6078,0.4706,0.1764,-0.1372,-0.0686,-0.0294,-0.049,0.2156,0.2942,0.5,0.402,-0.0392,-0.3438,0.6522,0.8102,0.8024,0.0276,-0.0514,0.083,0.1936,0.1304,0.5968,0.8102,0.7076,0.992,1,0.6758,0.5416,0.5178,0.5178,0.2728,0.4704,0.6206,0.2332,0.0118,-0.257,-0.2252,-0.0276,0.075,0.3044,0.2964,0.6522,0.3914,-0.0198,-0.1734,0.4134,0.5556,0.4756,0.0756,0.0934,-0.0488,0.1466,0.1288,0.5644,0.84,0.8844,0.8312,0.7244,0.6444,0.68,0.52,0.6444,0.2444,0.6266,0.6534,0.4666,0.0134,-0.2712,0.0756,0.3778,0.4666,0.7334,0.7956,1,0.5288,0.2534,-0.6032,-1,-1,1,-0.4,-1,-0.2,-0.5,-1,-0.3802,-0.3098,-0.2394,0.0704,0.183,0.4508,0.5774,0.662,0.3802,0.2394,0.014,0.0282,0.2958,0.2536,0.2112,0.0986,-0.1408,-0.155,0.0846,-0.0846,0.9014,1,0.5212,0.4648,0,0.0282,-0.2394,0,-0.169,-0.2254,-0.8028,-0.817,'14'
-0.2506,0.2484,0.205,0.4266,0.6542,0.8634,0.8468,1,0.8136,0.7142,0.675,0.7494,0.412,0.3478,0.1118,0.0766,-0.0082,-0.0186,0.0456,0.0372,0.1574,0.1656,0.3892,0.3872,0.3146,0.1678,0.1552,0.0952,0.174,0.381,0.4554,0.4742,-0.245,0.2198,0.1756,0.449,0.777,0.9306,0.8928,1,0.7034,0.775,0.7982,0.817,0.2724,0.243,0.2492,0.182,0.0178,-0.062,-0.1862,-0.0474,0.0998,0.2472,0.3438,0.3144,0.369,0.203,0.2218,0.2702,0.2576,0.4952,0.4574,0.5984,-0.2592,0.2032,0.2502,0.4344,0.9034,1,0.8922,0.9124,0.8182,0.771,0.816,0.6812,0.0708,-0.0684,0.0662,-0.3132,-0.4568,-0.3512,-0.4074,-0.3198,-0.2772,-0.1448,0.331,0.4568,0.248,0.1066,0.0572,0.1066,0.2368,0.3602,0.5062,0.504,-0.223,0.2006,0.411,0.5428,1,0.941,0.899,0.6438,0.7504,0.9354,0.7812,0.0996,-0.3268,-0.3914,-0.5148,-0.5176,-0.467,-0.5428,-0.4082,-0.3016,-0.1444,0.0042,0.2034,0.4334,0.3324,0.0604,-0.122,0.0322,0.0744,0.3072,0.4026,0.1754,-0.0856,0.2058,0.4864,0.6794,0.8324,1,0.9016,0.7668,0.745,0.5556,0.0274,-0.5738,-0.6722,-0.7924,-0.705,-0.8142,-0.9744,-0.8288,-0.7486,-0.6394,-0.4572,-0.4826,-0.1548,-0.0054,-0.0456,-0.3042,-0.3224,-0.1622,-0.0346,0.2422,0.1476,-0.2496,0.0638,0.2766,0.4788,0.805,0.8546,0.8086,0.929,1,0.5212,-0.1666,-0.4574,-0.5992,-0.6986,-0.8368,-0.8368,-0.8582,-0.766,-0.8618,-0.6596,-0.6738,-0.8334,-0.5992,-0.3368,-0.0354,-0.1064,-0.4326,-0.6666,-0.578,-0.4716,-0.3086,-0.2802,-0.5638,0.2032,0.4486,0.5936,1,0.7908,0.7868,0.8792,1,0.2434,-0.501,-0.6178,-0.7022,-0.6982,-0.5814,-0.847,-0.662,-0.5372,-0.674,-0.9476,-0.8592,-0.6902,-0.823,-0.662,-0.344,-0.3642,-0.5332,-0.831,-0.9074,-0.7666,-0.3158,-0.171,-0.493,0,0.4334,0.4,0.5666,0.7666,0.9334,0.8666,0.9,0.7666,0.7,1,0.9334,0.4,0.1334,0.4,0.1666,0.0666,0.3,0.3334,0.3666,0.6,0.4666,0.7334,0.7666,0.6,0.4,0.5,0.5666,0.6,0.8,0.7334,0.7334,-0.2414,0.2758,0.1724,0.4828,0.5862,0.8276,0.8276,1,0.8276,0.8276,0.5518,0.6552,0.3448,0.4138,0.1724,0.1724,0.0344,0,0.1034,0.1724,0.3448,0.3448,0.5518,0.6552,0.5862,0.3794,0.3794,0.3794,0.4138,0.4482,0.5862,0.6552,0.037,0.284,0.5308,0.7038,0.753,1,0.8024,0.8272,0.8766,0.4814,0.358,-0.679,-0.5556,-0.605,-0.5062,-1,-0.6296,-0.432,-0.358,-0.3828,-0.432,-0.3828,0.037,0.3086,0.358,-0.2346,-0.1358,0.1358,0.2346,0.3828,0.3086,0.2098,-1,-1,-1,-1,-1,-1,-1,-0.9888,-0.9874,-0.6932,-0.446,0.2512,0.7216,0.9038,0.9786,0.8534,0.4082,-0.2064,-0.4848,-0.6404,-0.7432,-0.7852,-0.886,-0.9678,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.991,-0.9924,-0.665,-0.1602,0.3006,0.807,0.8782,0.7232,0.36,-0.1408,-0.5684,-0.7444,-0.8286,-0.8894,-0.903,-0.955,-0.9686,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7868,-0.9334,-0.68,-0.6868,-0.6582,-0.6528,-0.7128,-0.7582,-0.7656,-0.7692,-0.8546,-0.891,-0.8964,-0.9528,-0.902,-0.8968,-0.6634,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5428,1,1,1,-0.2,-0.6858,-0.8,-0.7142,-0.6286,-0.3142,-0.0572,-0.0858,-0.6286,-0.7142,-0.6,-0.4858,-0.4858,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.29,-0.302,-0.3388,-0.3904,-0.3856,-0.3786,-0.3674,-0.289,-0.1012,0.0358,-0.6134,0.3058,0.0158,-0.024,0.2048,0.4518,0.5378,1,-0.1696,0.366,0.6696,1,0.9376,1,0.9108,0.3214,0.1608,0.2322,0.375,0.4732,0.4018,0.3036,0.4822,0.4822,0.3214,-0.0982,-0.0536,0.3928,0.5268,0.3482,0.009,-0.0892,-0.116,-0.1072,-0.1964,-0.0358,0.134,0.2946,0.0892,-0.1072,-0.09,0.46,0.83,0.98,1,0.77,0.76,0.32,0.21,0.24,0.55,0.53,0.36,0.14,0.28,0.34,0.17,-0.29,0.17,0.4,0.64,0.42,0.11,-0.13,-0.19,-0.12,-0.22,-0.01,0.17,0.38,0.15,0.06,0.0072,0.259,0.6402,0.8776,0.8776,1,0.7122,0.4676,0.3884,0.4604,0.6044,0.5684,0.5756,0.2806,0.482,0.5972,0.4172,-0.0072,0.3022,0.331,0.4388,0.4892,0.0072,-0.0432,0.0144,0.0936,-0.1582,0.1366,0.2374,0.4748,0.482,0.2302,-0.4544,-1,-1,1,0,-1,-1,-0.6,-1,0.3846,0.2308,0.7308,0.9616,1,0.3654,0.2692,0.2116,0.1346,0.1346,0.3076,0.1346,0.673,0.4808,0.7308,0.7884,0.6346,0.327,0.4616,0.2692,0.1346,-0.0576,0.0576,-0.2308,-0.0576,0.0962,0.2116,-0.0384,0.077,0.3076,0.4808,-0.1346,'15'
-0.1802,0.3554,0.2792,0.4696,0.7664,0.9188,0.896,1,0.6016,0.4822,0.7208,0.6878,0.2132,0.1828,-0.0228,-0.1346,-0.104,-0.2894,-0.1828,0.005,0.0812,0.1852,0.2106,0.2512,0.1954,0.0482,0.028,-0.061,-0.0204,0.0432,-0.0888,-0.3884,-0.188,0.33,0.2528,0.4994,0.8506,1,0.9128,0.9926,0.8606,0.883,0.7708,0.731,0.1034,-0.061,-0.2504,-0.3474,-0.4372,-0.218,-0.1084,-0.0536,0.0038,0.1158,0.2428,0.457,0.4122,0.208,0.1332,0.1332,0.1706,0.3674,0.2578,0.071,-0.226,0.2286,0.3532,0.4994,0.9676,1,0.8972,0.824,0.7186,0.6428,0.6888,0.2232,-0.0988,-0.345,-0.4316,-0.5346,-0.5724,-0.5264,-0.586,-0.5886,-0.5372,-0.383,0.0718,0.1556,-0.0176,-0.161,-0.3044,-0.3098,-0.0988,0.0014,-0.0068,-0.2774,-0.2158,0.163,0.42,0.5354,0.8484,0.7594,0.7792,0.687,0.9144,1,0.4794,-0.2718,-0.5914,-0.7398,-0.8122,-0.8714,-0.8518,-0.7528,-0.6836,-0.6706,-0.4762,-0.3838,-0.0808,0.1828,0.0378,-0.1598,-0.2224,-0.163,0.1136,0.173,-0.0808,-0.5024,-0.0422,0.1964,0.4982,0.6526,0.8666,1,0.7544,1,0.9754,0.2036,-0.3088,-0.3474,-0.4386,-0.7088,-0.7088,-0.8878,-0.9438,-0.8878,-0.9052,-0.7438,-0.6386,-0.6386,-0.035,0.2,-0.007,-0.2106,-0.3578,-0.2666,-0.2526,-0.2492,-0.4246,-0.7754,0.1184,0.3334,0.4644,0.7668,0.9708,0.9052,0.9418,1,0.377,-0.3516,-0.745,-0.785,-0.7012,-0.8724,-0.8434,-0.9052,-0.9344,-0.796,-0.7888,-0.7596,-0.694,-0.6794,-0.4718,-0.297,-0.399,-0.4354,-0.5154,-0.6612,-0.5446,-0.4172,-0.4316,-0.5118,0.2028,0.4406,0.627,0.9906,0.8042,1,0.9628,0.2262,-0.5104,-0.7342,-0.8648,-0.7482,-0.8554,-0.8508,-0.8182,-0.9674,-0.9114,-0.7296,-0.8182,-0.7762,-0.7202,-0.711,-0.6736,-0.5478,-0.4826,-0.3426,-0.6784,-0.8554,-0.7996,-0.5804,-0.4966,-0.7202,-0.125,0.4166,0.2084,0.5416,0.8334,0.9584,0.9584,1,0.5,0.5,0.6666,0.5416,-0.0416,0.0834,0.25,0.1666,-0.2084,-0.375,-0.25,0.2084,0.1666,0.2916,0.2084,0.5416,0.4584,0.0416,0.2916,0.1666,-0.0416,0.0834,-0.2916,-0.5416,-0.0944,0.3962,0.283,0.4716,0.7358,0.9246,0.9246,1,0.6604,0.2076,0.585,0.6604,0.3584,0.3208,-0.0188,0.0566,0.2076,0.0188,-0.0566,0.2076,0.2452,0.3584,0.3962,0.0566,0.0944,0.132,0.0944,0.0188,0.132,0.0188,-0.132,-0.3962,-0.075,0.125,0.375,0.45,0.725,0.9,0.575,1,1,0.125,-0.2,-0.25,-0.275,-0.575,-0.55,-0.725,-0.7,-0.65,-0.85,-0.55,-0.475,-0.475,0.075,0.175,-0.175,-0.075,-0.375,-0.15,0,-0.35,-0.575,-0.6,-1,-1,-1,-1,-1,-1,-0.9836,-0.985,-0.9054,-0.6224,-0.2096,0.4196,0.8154,0.9302,0.97,0.8408,0.2814,-0.031,-0.3382,-0.5226,-0.625,-0.7326,-0.8774,-0.9478,-0.9758,-0.9784,-0.983,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9884,-0.9882,-0.8208,-0.5452,0.226,0.1304,0.7468,0.8756,0.768,0.408,-0.0642,-0.2658,-0.5738,-0.703,-0.7762,-0.8694,-0.9314,-0.9614,-0.9674,-0.9582,-0.969,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8534,-0.94,-0.8134,-0.61,-0.6634,-0.756,-0.754,-0.756,-0.758,-0.778,-0.78,-0.768,-0.762,-0.852,-0.8874,-0.9274,-0.9,-0.78,-0.7234,-0.6434,-0.62,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,-0.1714,-0.2286,-0.6286,-0.6286,-0.6858,-0.4572,-0.6,-0.0286,0.0858,-0.7714,-0.6858,-0.6858,-0.6858,-0.8,-0.7428,-0.8572,-0.6858,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.3352,-0.342,-0.3924,-0.3686,-0.2826,-0.1706,-0.1022,-0.069,0.0014,0.1146,-0.5734,0.2,0.3088,-0.202,-0.0202,0.246,0.5702,1,-0.4142,-0.1516,0.394,0.909,0.7878,0.9798,0.6868,0.4242,0.2122,0.192,0.6364,1,0.7676,0.3434,0.3536,-0.0506,0.4344,0.4444,0.2424,0.202,0.6162,0.7676,0.2526,-0.2122,-0.4344,-0.495,-0.1414,-0.1516,-0.1818,0.0808,-0.1314,-0.1818,-0.3082,0.406,0.9248,0.9098,0.9098,0.9924,0.767,0.361,0.2782,0.2932,0.421,1,0.6616,0.2256,0.5038,0.0602,0.203,0.0526,0.03,0.3082,0.639,0.5564,0.0828,-0.3082,-0.6542,-0.594,-0.2256,0.015,0.03,0.1428,0.1504,-0.1428,0.1974,0.3416,0.674,0.975,0.9184,1,0.7304,0.3982,0.2038,0.1222,0.3918,0.6112,0.4984,0.348,0.4734,0.185,-0.1912,0.047,-0.0532,-0.0408,0.304,0.3228,-0.0282,-0.5048,-0.6802,-0.6866,-0.348,-0.0972,0.0032,0.2226,0.0344,-0.1474,-0.467,-1,-1,1,-0.8,-1,-1,-0.4334,-1,-0.1404,-0.1404,0.4546,0.9174,1,1,0.752,0.3554,0.5372,0.4214,0.2892,0.3554,0.6364,0.5206,0.752,0.3884,0.405,0.5206,0.6198,0.6528,0.5702,0.2396,0.157,0.19,0.405,0.405,0.372,0.0082,0.2728,0.3058,0.2396,-0.2892,'15'
-0.4724,0.6748,0.7976,0.5214,0.7576,0.5858,0.1688,0.1258,-0.132,-0.0736,-0.2944,-0.1134,-0.2116,0.1196,0.1074,0.138,0.2362,0.365,0.684,0.5706,0.9878,0.9878,0.8926,1,0.7914,0.9202,0.8344,0.5184,0.5184,0.2822,0.5,0.4478,-0.3164,0.5502,0.6316,0.54,0.6594,0.3444,0.2326,0.0698,0.0368,-0.0344,-0.1004,-0.0776,-0.075,0.0344,-0.0444,0.1664,0.019,0.3062,0.2706,0.6138,0.6518,0.9034,1,0.8348,0.8628,0.7636,0.7712,0.69,0.5298,0.4282,0.5248,0.5324,-0.151,0.5218,0.5514,0.5996,0.6476,0.2562,0.3364,-0.0068,0.071,-0.174,-0.0228,-0.174,0.0892,0,0.19,0.1282,0.2746,0.2518,0.4692,0.508,0.7002,0.7918,0.8512,1,0.8582,0.9406,0.8512,0.833,0.73,0.6636,0.6362,0.762,-0.1176,0.4634,0.538,0.881,0.751,0.1922,-0.0042,-0.1702,-0.1922,-0.3666,-0.3804,-0.3526,-0.3444,-0.195,-0.195,-0.1702,-0.1286,-0.0402,0.0706,0.3306,0.4994,0.8064,0.9778,1,0.9226,0.8728,0.8506,0.7344,0.538,0.3444,0.433,0.3832,-0.1834,0.354,1,0.9638,0.4882,0.0672,-0.118,-0.4338,-0.5826,-0.7096,-0.8656,-0.8222,-0.8112,-0.844,-0.8186,-0.735,-0.677,-0.5898,-0.2522,-0.107,0.2776,0.5826,0.8222,0.7786,0.55,0.6914,0.6262,0.4664,0.2486,0.0816,0.0236,0.0128,0.0382,0.6576,0.8542,0.9234,0.6502,0.0092,-0.337,-0.5884,-0.6102,-0.694,-0.9126,-0.654,-0.53,-0.6284,-0.4972,-0.439,-0.3698,-0.3406,-0.1038,-0.0054,0.3188,0.694,1,0.9782,0.9454,0.9344,0.9126,0.8908,0.45,0.2678,0.2496,0.1512,-0.074,0.446,0.8732,1,0.277,-0.6236,-0.5392,-0.7716,-0.9112,-0.8478,-0.9112,-0.6956,-0.759,-0.6406,-0.6914,-0.6152,-0.5434,-0.5222,-0.1502,-0.1924,0.129,0.6364,0.907,0.9958,0.704,0.5814,0.6322,0.4546,0.1502,0.0232,-0.0528,0.1586,-0.1112,0.7038,0.8148,0.4444,0.5926,0.4074,0.3334,0.3334,0.2222,0.074,0,-0.1852,0.037,0.037,0,0.1112,0.2592,0.4074,0.5556,0.5556,0.7408,0.926,1,0.5926,0.6666,0.7408,0.7408,0.4074,0.4074,0.2962,0.6296,0.7038,-0.5834,0.6666,0.7916,0.5,0.75,0.5834,0.2916,0.1666,-0.0834,-0.0416,-0.0834,0.0834,-0.125,0.0834,0.0416,0.0834,0.1666,0.375,0.5834,0.5416,1,0.875,0.875,1,0.75,1,0.875,0.625,0.7084,0.4166,0.625,0.5834,-0.0974,0.4868,0.5044,0.7522,0.7168,0.292,0.2212,0.1328,0.0796,-0.239,-0.3098,-0.0442,-0.115,0.0088,-0.0088,0.0442,-0.0266,0.0974,0.1504,0.5222,0.5398,0.947,0.9824,1,1,0.9646,0.9646,0.7876,0.77,0.6106,0.593,0.7876,-1,-1,-1,-1,-1,-0.9872,-0.9862,-0.6856,-0.8654,-0.8578,-0.7304,0.1804,0.2232,0.369,0.421,0.3144,0.3848,0.8634,0.1314,-0.4026,-0.505,-0.6666,-0.7926,-0.8894,-0.9648,-0.976,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9814,-0.9832,-0.4934,-0.5302,-0.6226,-0.5708,0.1934,0.327,0.5434,0.7906,0.8842,0.5562,0.6016,-0.159,-0.481,-0.5678,-0.7156,-0.8428,-0.9022,-0.944,-0.956,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.92,-0.3968,0.11,0.1632,-0.0334,-0.7468,-0.7646,-0.8378,-0.6934,-0.5046,-0.629,-0.888,-0.94,-0.91,-0.926,-0.94,-0.8868,-0.72,-0.36,-0.23,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,1,1,1,-0.4858,0.8572,1,-0.5714,-0.1142,-0.5428,-0.3714,-0.1428,-0.4286,-0.2858,-0.5428,-0.8858,-0.3142,-0.5714,-0.5428,-0.6,-0.5142,-1,-1,-1,-1,-1,-1,-1,0.6152,0.6124,0.6054,0.6058,0.6022,0.605,0.6108,0.6168,0.5938,0.2138,0.8042,0.778,0.7546,0.7508,0.7776,0.7728,0.8496,0.8666,0.9668,1,-0.7734,0.1058,-0.583,-0.2162,0.2704,0.3134,0.2578,1,-0.3002,0.0146,0.1604,-0.0554,-0.1078,0.2304,0.0788,0.6852,0.8134,1,0.8368,0.6326,0.5744,0.6852,0.6502,0.5976,0.5626,0.5394,0.516,0.6268,0.9126,0.8192,0.761,0.8192,0.5218,0.5686,0.6502,0.5102,0.3644,0.2304,0.1896,-0.0088,-0.3812,0.1288,0.1486,0.0694,0.2524,0.2822,0.3812,0.4852,0.6336,0.9852,1,0.8118,0.7624,0.6782,0.6684,0.7872,0.7722,0.693,0.5694,0.5792,0.901,0.8514,0.792,0.8416,0.49,0.594,0.6684,0.3862,0.3316,0.3316,0.3268,0.1732,-0.17,0.0702,-0.0068,0.0702,-0.0522,-0.0884,0.0114,0.1066,0.1972,0.6054,1,0.9864,0.7824,0.8548,0.5874,0.6508,0.796,0.7006,0.4784,0.4196,0.6326,0.678,0.7824,0.7914,0.3152,0.4558,0.4422,0.152,0.0022,0.1338,0.4014,0.0794,-0.0062,-1,-1,1,-1,-1,-0.6,-0.1666,-1,-0.5676,-0.045,0.009,0.081,-0.063,0.045,-0.027,0.099,-0.009,0.6756,0.7658,0.4414,0.7118,0.7838,0.4054,0.6936,0.8018,0.4234,0.1172,0.1352,0.6936,1,0.7478,0.6936,0.6216,-0.1352,-0.1712,-0.2792,0.027,0.1352,-0.2252,-0.5856,'16'
-0.2006,0.864,0.937,0.6948,0.8276,0.2736,0.1808,-0.1344,-0.3266,-0.549,-0.4162,-0.4528,-0.3466,-0.383,-0.2306,-0.1742,-0.068,0.078,0.194,0.4892,0.519,1,0.8606,0.9138,0.874,0.947,1,0.6782,0.6916,0.456,0.6816,0.592,-0.1464,0.6906,0.7458,0.6768,0.743,0.21,0.2072,-0.185,-0.4724,-0.616,-0.3094,-0.4172,-0.1962,-0.2624,0.036,0.0194,0.069,0.1104,0.279,0.384,0.5994,0.8454,0.8756,1,0.8922,0.8398,0.8122,0.7514,0.7376,0.5636,0.594,0.5774,0.0026,0.641,0.6144,0.8164,0.758,0.282,0.2022,-0.093,-0.1702,-0.359,-0.4414,-0.1888,-0.242,-0.0718,-0.1196,-0.1276,-0.1702,-0.0586,0.1064,0.343,0.484,0.7846,0.9228,0.9974,0.9654,0.9336,1,0.891,0.782,0.5798,0.5692,0.5452,-0.1308,0.3994,0.8256,0.9866,0.5134,0.0402,-0.3558,-0.5704,-0.5536,-0.5302,-0.5772,-0.6006,-0.5,-0.49,-0.5168,-0.6308,-0.4564,-0.255,-0.1174,0.0604,0.2652,0.5168,0.9026,0.9732,1,0.9698,0.9598,0.9766,0.8758,0.5536,0.4832,0.4866,-0.087,0.5652,1,0.7754,0.2066,-0.1124,-0.4276,-0.5254,-0.5942,-0.6594,-0.6522,-0.7174,-0.7246,-0.75,-0.8406,-0.8732,-0.8044,-0.7102,-0.5218,-0.4094,-0.25,-0.0254,0.4276,0.8298,0.8406,0.8696,0.8298,0.9818,0.9492,0.6268,0.4818,0.4348,0.04,0.7264,1,0.6252,0.259,-0.3094,-0.7432,-0.7642,-0.8736,-0.7684,-0.7978,-0.7348,-0.6632,-0.7852,-0.8484,-0.8358,-0.7642,-0.6252,-0.5368,-0.3642,-0.1284,0.1116,0.4064,0.7094,0.7474,0.739,0.8526,0.8316,0.8864,0.5284,0.5664,0.3558,0.0174,0.6972,0.9354,0.7766,0.1762,-0.4938,-0.7172,-0.6328,-0.7568,-0.7966,-0.9206,-0.737,-0.7966,-0.8312,-0.8214,-0.9256,-0.603,-0.6476,-0.6972,-0.613,-0.4194,-0.0472,0.5186,0.7866,0.7866,0.7718,0.9256,1,0.8462,0.2158,0.0124,-0.0272,0.0204,0.8776,0.8776,0.347,0.551,0.0612,0.1428,-0.2654,-0.0612,-0.1428,-0.2244,-0.1836,0.1836,0.1428,0.102,0.0204,0.2244,0.3062,0.347,0.347,0.6326,0.8776,0.7552,0.7142,0.8368,0.8776,1,0.9184,0.7552,0.4286,0.7142,0.796,-0.1162,0.907,0.9534,0.6744,0.814,0.2558,0.3024,-0.1628,-0.2558,-0.4418,-0.3954,-0.2558,-0.1628,-0.2094,-0.2558,-0.2094,0.0232,0.1628,0.2094,0.4884,0.628,1,0.7674,1,0.907,1,0.9534,0.6744,0.4418,0.4884,0.628,0.628,-0.25,0.1944,1,0.9722,-0.25,-0.3888,-0.4722,-0.3888,-0.5556,-0.5834,-0.7778,-0.8056,-0.8056,-0.6388,-0.7222,-0.7222,-0.6944,-0.5278,-0.5834,-0.3334,-0.0278,0.2778,0.5,0.8612,0.8334,0.7222,0.6112,0.6944,0.6666,0.3056,0.25,0.1666,-1,-1,-1,-1,-0.9868,-0.9832,-0.6462,-0.8964,-0.8788,-0.8986,-0.6198,0.0486,0.104,0.1966,0.2332,0.3484,0.6738,0.792,0.004,-0.4418,-0.514,-0.6352,-0.7526,-0.8614,-0.9446,-0.9592,-0.9628,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9766,-0.9752,-0.0552,-0.55,-0.5924,-0.6866,-0.5606,-0.0416,0.0902,0.2478,0.4644,0.5024,0.6892,0.6326,-0.096,-0.5324,-0.6156,-0.6852,-0.7938,-0.853,-0.9002,-0.9158,-0.9188,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.9,-0.48,0.0832,0.14,0.5866,-0.1834,-0.8468,-0.82,-0.8112,-0.7578,-0.769,-0.766,-0.848,-0.874,-0.926,-0.884,-0.926,-0.84,-0.5834,-0.21,-0.1734,-0.27,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,0.9714,-0.4286,-0.3428,0.2572,0.3714,-0.6286,-0.6572,-0.8858,-0.8858,-0.6572,-0.0858,-0.3428,-0.2,-0.8858,-0.8858,-0.4286,-0.3714,-0.6858,-0.7714,-0.6,-1,-1,-1,-1,-1,-1,0.324,0.333,0.3476,0.3608,0.366,0.3786,0.3884,0.394,0.3554,-0.0288,0.9994,1,0.969,0.989,0.956,0.9422,0.9432,1,1,1,-0.6666,0.1176,-0.5898,-0.242,-0.0318,0.029,0.0314,1,-0.1924,0.0684,0.2094,0.2264,0.171,0.3846,0.5684,0.7692,0.9616,1,0.9914,0.7394,0.8248,0.7606,0.641,0.7094,0.8462,0.7778,0.6112,0.7864,0.9018,0.8334,0.735,0.577,0.4358,0.5,0.4316,0.3632,0.3974,0.3248,0.2992,0,-0.336,0.045,0,0.0286,0.1476,0.0942,0.004,0.1886,0.4754,0.5574,0.8114,0.8074,0.6024,0.627,0.5656,0.545,0.7868,0.623,0.4386,0.6598,0.9222,1,0.836,0.7214,0.4304,0.4632,0.4098,0.3442,0.0902,0.2378,0.2132,-0.2828,0.186,0.3016,-0.0786,0.062,-0.19,-0.1942,-0.1034,-0.0868,0.0248,0.3016,0.562,0.8636,0.8264,0.7562,0.5786,0.6652,0.6942,0.6736,0.2892,0.4586,0.752,1,0.967,0.7976,0.376,0.2396,0.314,0.343,0.2644,0.4132,0.3264,-0.1158,1,-1,-1,1,-0.4,-1,-0.4,0,-1,-0.6396,-0.1892,-0.081,0.099,-0.3154,-0.4414,-0.2252,0.1352,0.009,0.5316,0.8018,0.3874,1,0.8558,0.099,0.2792,0.6756,0.5316,-0.3514,0.099,0.6936,0.8558,0.5676,0.7838,0.2792,0.063,-0.7118,-0.4414,-0.081,-0.1172,-0.3694,-0.7478,'16'
-0.368,0.6364,0.723,0.4574,0.6046,0.238,0.1082,-0.0678,-0.215,-0.2958,-0.3824,-0.365,-0.2988,-0.2236,-0.0158,0.2092,0.267,0.7142,0.6392,1,0.951,0.8384,0.9452,0.746,0.7056,0.4286,0.3738,0.3362,0.3622,0.3478,0.4084,0.5728,-0.1656,0.5264,0.561,0.6046,0.6552,0.2022,0.2644,-0.0506,0.0758,-0.1518,-0.0666,-0.138,0.154,0.0828,0.2966,0.239,0.5978,0.6298,0.9126,1,0.9264,0.9978,0.9012,0.8206,0.6666,0.508,0.4966,0.423,0.5012,0.492,0.6276,0.6666,-0.1766,0.38,0.4816,0.8576,0.7738,0.2096,0.047,-0.0444,-0.164,-0.2274,-0.1232,0.0266,-0.0266,0.1208,0.197,0.4282,0.54,0.784,0.8754,1,0.972,0.9518,0.8806,0.5452,0.3214,0.2224,0.235,0.2758,0.291,0.3722,0.413,0.6468,-0.2158,0.133,0.9448,1,0.81,0.5406,0.1088,0.088,-0.1502,-0.209,-0.1918,-0.026,0.0466,0.0156,0.4576,0.5268,0.506,0.4854,0.4232,0.627,0.7306,0.6408,0.5682,0.354,0.0432,-0.0224,-0.0674,0.0224,-0.0018,0.0916,0.3056,0.5094,-0.2594,0.2384,0.728,1,0.9832,0.3514,0.2426,0.0292,-0.2134,-0.2678,-0.021,0.0754,-0.0544,-0.0836,-0.1924,-0.8076,-0.7154,-0.661,-0.6862,-0.2008,-0.1966,-0.159,-0.1548,-0.3808,-0.7448,-0.682,-0.749,-0.636,-0.7154,-0.5146,-0.4602,-0.0418,-0.0652,0.226,0.5174,1,0.8348,0.587,0.2696,0.0696,0.0218,-0.1304,-0.5044,-0.7044,-0.713,-0.8044,-0.7392,-0.7304,-0.8696,-0.8348,-0.9696,-0.887,-0.7914,-0.7826,-0.4044,-0.5218,-0.726,-0.7218,-0.8956,-0.9478,-0.9434,-0.687,-0.7348,-0.3782,0.317,0.5902,0.6722,1,0.6776,0.552,0.1366,0.552,0.3662,-0.3224,-0.918,-0.7104,-0.7268,-0.601,-0.6886,-0.8088,-0.8416,-0.6448,-0.6612,-0.705,-0.552,-0.9836,-0.7596,-0.5082,-0.5356,-0.541,-0.7432,-0.836,-0.8142,-0.7596,-0.5082,-0.2568,-0.4418,0.721,0.814,0.3488,0.5348,0.1162,0.0698,-0.0698,-0.3024,-0.4418,-0.2094,-0.2094,-0.3024,-0.2094,-0.1628,0.1628,0.3024,0.721,0.628,1,1,0.7674,0.907,0.721,0.7674,0.1628,0.4884,0.5814,0.5814,0.4418,0.3954,0.9534,-0.28,0.6,0.68,0.44,0.56,0.28,0.04,-0.04,-0.24,-0.4,-0.4,-0.28,-0.48,-0.36,0.04,0.32,0.32,0.68,0.6,1,0.96,0.6,0.84,0.68,0.68,0.48,0.24,0.48,0.52,0.56,0.44,0.48,-0.1026,0.3846,0.718,1,0.9744,0.4102,0.359,0.2052,0.077,-0.077,0.1282,0.3846,0.4616,0.5384,0.077,-0.5384,-0.6154,-0.5384,-0.359,0.077,0.1538,0.077,-0.2052,-0.3334,-0.2308,-0.2052,-0.4102,-0.1026,-0.2308,-0.1538,-0.077,0.4102,-1,-1,-0.9888,-0.9888,-0.9878,-0.9352,-0.9738,-0.9626,-0.9176,-0.8508,-0.0654,-0.03,0.0054,0.0772,0.1504,0.7442,0.604,-0.1206,-0.2668,-0.5808,-0.7128,-0.8064,-0.8994,-0.9586,-0.9868,-0.9838,-0.9898,-1,-1,-1,-1,-1,-1,-1,-1,-0.9852,-0.985,-0.7586,-0.431,-0.4112,-0.4528,-0.437,-0.4908,-0.1012,-0.02,0.2904,0.7382,0.8426,0.936,0.5458,-0.11,-0.3502,-0.6344,-0.7534,-0.8414,-0.9144,-0.9606,-0.9758,-0.977,-0.98,-1,-1,-1,-1,-1,-1,-1,-1,-0.933,-0.8934,-0.8134,0.4866,0.8032,0.72,0.6832,0.5066,-0.68,-0.7534,-0.66,-0.4534,-0.2912,-0.664,-0.852,-0.886,-0.912,-0.918,-0.926,-0.946,-0.96,-0.8134,-0.85,-0.8134,-0.8934,-1,-1,-1,-1,-1,-1,-1,-1,-0.6286,1,1,1,0.4858,-0.6,-0.6572,1,1,0.0858,-0.4858,-0.6286,-0.7428,-0.7142,-0.1428,0.4858,0.7142,-0.5142,-0.8858,-0.7142,-0.8,-0.9142,-0.9142,-1,-0.2858,-1,-1,-1,-1,-1,-1,0.4254,0.4408,0.4624,0.4728,0.481,0.4968,0.5138,0.5252,0.5364,0.5518,0.4704,0.4742,0.4648,0.4496,0.453,0.4246,0.414,0.3676,0.164,-0.1058,-0.5734,0.1294,-0.0504,-0.0026,-0.0644,-0.0146,0.1572,0.625,-0.8944,-0.4852,-0.406,-0.1816,-0.0034,0.165,0.1518,0.231,0.1816,0.363,0.5974,0.604,0.8448,0.8646,0.9306,0.8614,0.8152,0.9406,0.9504,1,0.9372,0.8812,0.858,0.6634,0.6766,0.7096,0.6766,0.5446,0.6204,0.693,0.5082,0.2278,-0.895,-0.5432,-0.4416,-0.2894,-0.2994,-0.3638,-0.1336,-0.1844,0.0084,0.1946,0.286,0.4552,0.7292,1,0.9932,0.912,0.7192,0.7902,0.8172,0.973,0.9256,0.9086,0.8748,0.7766,0.7902,0.7698,0.7022,0.7462,0.6818,0.6886,0.6954,0.3536,0.0692,0.2782,0.1636,0.0084,-0.2748,-0.231,-0.0758,0.0252,0.1434,0.6424,0.6424,0.6424,0.8382,1,0.8112,0.8348,0.9224,0.764,0.7436,0.7876,0.6964,0.6188,0.4334,0.5178,0.4132,0.403,0.349,0.4738,0.3356,0.5076,0.5042,0.0994,0.3556,-1,-1,1,-0.2,-1,-0.8,0.3,-1,-0.1428,-0.5556,0.365,0.873,0.9682,0.873,0.746,0.6508,0.3334,0.238,0.0158,0.2064,0.4604,0.8096,1,0.3334,0.492,-0.1112,0.4604,0.365,0.619,0.492,0.2698,-0.0158,0.1428,-0.4286,-0.1746,0.0794,-0.1112,-0.0794,0.492,-0.5556,'17'
-0.0714,0.7554,0.77,0.7526,0.7554,0.15,0.1616,-0.2314,-0.1994,-0.6332,-0.5896,-0.441,-0.3596,-0.4206,-0.31,-0.0568,0.0888,0.4062,0.5778,0.8108,1,0.7176,0.4556,0.3624,0.377,0.5342,0.7088,0.607,0.706,0.636,0.9272,0.9768,0.1338,0.79,0.7716,1,0.9396,0.4384,0.3412,0.0708,-0.0446,-0.0814,-0.2074,-0.0734,-0.0918,0.1706,-0.0132,-0.0788,0.1208,0.252,0.433,0.706,0.6956,0.6116,0.6194,0.5984,0.4068,0.2546,0.2572,0.286,0.3254,0.5092,0.5564,0.8268,-0.1274,0.391,0.7734,1,0.7762,0.2662,-0.034,-0.0538,-0.3032,-0.3512,-0.2436,-0.1954,-0.1162,-0.0594,0.1332,0.306,0.544,0.6148,0.626,0.5666,0.6034,0.7168,0.6006,0.1756,-0.0736,-0.1104,-0.1898,-0.1784,-0.1304,0.1474,0.2634,0.4702,-0.169,0.3002,1,0.8728,0.6858,0.2524,0.0656,-0.0458,-0.2962,-0.507,-0.3956,-0.2882,0.0536,0.3678,0.4076,0.2842,0.2524,0.0218,0.0458,0.169,0.2564,0.2128,0.2724,-0.0736,-0.4552,-0.4832,-0.4076,-0.2206,-0.2206,-0.0536,0.2764,0.5188,-0.0128,0.5064,0.8498,1,0.721,0.3176,-0.0214,-0.2188,-0.369,0,-0.1974,-0.2146,-0.5022,-0.6652,-0.734,-0.7596,-0.7596,-0.8068,-0.7812,-0.7038,-0.4764,-0.4206,-0.236,-0.4206,-0.9742,-0.691,-0.7296,-0.6566,-0.7812,-0.7596,-0.5108,-0.1288,0.0514,0.5112,0.7126,1,0.6592,0.1868,0.1048,0.2362,0.154,-0.4908,-0.5318,-0.6592,-0.7044,-0.692,-0.7002,-0.6632,-0.503,-0.5606,-0.7248,-0.885,-0.614,-0.6222,-0.4086,-0.2978,-0.6344,-0.7126,-0.6714,-0.844,-0.7536,-0.7166,-0.6428,-0.5564,0.1674,0.537,0.7784,1,0.729,0.3892,0.3152,0.5862,0.6848,-0.1034,-0.6206,-0.5468,-0.729,-0.8916,-0.867,-0.6306,-0.6552,-0.7684,-0.803,-0.7882,-0.6552,-0.6108,-0.739,-0.7142,-0.5124,-0.4434,-0.5468,-0.9212,-0.7882,-0.6256,-0.6896,-0.601,0.1072,0.75,0.75,0.6786,0.6786,0.2142,0.2858,-0.0714,-0.1072,-0.3928,-0.3928,-0.5358,-0.2858,-0.25,-0.0358,0.1786,0.3572,0.4642,0.75,0.5714,0.8928,0.8214,0.3928,0.3928,0.5358,0.6428,0.7858,0.8214,0.7142,0.7858,0.8928,1,-0.1556,0.6444,0.6444,0.6,0.6,0.0222,0.0666,-0.2888,-0.2888,-0.6888,-0.5112,-0.3778,-0.3778,-0.5556,-0.4666,0.0666,0.1556,0.3334,0.6,0.8222,1,0.7778,0.6888,0.5112,0.5112,0.5112,0.5556,0.5556,0.7334,0.6888,0.9112,0.9556,-0.1786,0.3214,1,0.75,0.7858,0.25,0.1072,-0.2142,-0.3928,-0.75,-0.8572,0.0714,0.1428,0.3928,0,-0.25,-0.1428,-0.1786,-0.2858,-0.0714,0.2142,0.25,0.3572,-0.0358,-0.4642,-0.4642,-0.5358,-0.1072,-0.25,-0.25,0.3928,0.8214,-0.9878,-0.9834,-0.8928,-0.9236,-0.9396,-0.9254,-0.8382,-0.8856,-0.928,-0.878,-0.1078,-0.192,-0.0656,0.1086,0.5234,0.9018,0.0476,-0.2942,-0.4958,-0.6006,-0.666,-0.7444,-0.8986,-0.966,-0.9782,-0.9852,-1,-1,-1,-1,-1,-1,-1,-0.9804,-0.9752,-0.1188,-0.443,-0.3572,-0.3532,-0.2458,-0.3948,-0.433,-0.6958,-0.2878,-0.1552,-0.0126,0.0044,0.4062,0.8436,-0.0732,-0.4278,-0.5774,-0.6606,-0.7074,-0.7628,-0.9164,-0.9554,-0.9662,-0.9748,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.9134,-0.14,0.81,0.7432,0.7566,0.6032,0.57,0.6632,0.3232,-0.8468,-0.822,-0.764,-0.872,-0.828,-0.886,-0.9,-0.908,-0.934,-0.9438,-0.9182,-0.8782,-0.9034,-0.68,-0.8068,-0.9334,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,-0.7142,-0.8286,-0.9142,-0.8858,-0.1142,1,1,0.8858,-0.6,-0.6286,-0.6,-0.5428,-0.0286,0.8572,-0.4572,-0.8858,-0.8858,-0.4572,-0.4286,-0.7714,-0.8858,-0.7428,-1,-1,-1,-1,-1,-1,-1,0.2102,0.2096,0.2348,0.2474,0.2682,0.2912,0.3094,0.325,0.3716,0.3656,0.66,0.6488,0.6792,0.6498,0.64,0.627,0.5152,0.3656,0.0322,-0.1636,-0.4666,0.2118,-0.2826,-0.2834,-0.1414,-0.1248,-0.0802,-0.5,-0.8406,-0.3044,-0.2198,-0.1038,-0.1136,-0.1086,-0.0362,0,0.1014,0.2078,0.3044,0.3864,0.5724,0.8672,0.8188,0.8816,0.8044,0.7682,0.6546,0.9252,1,0.9372,0.727,0.686,0.6884,0.6714,0.5894,0.4444,0.3286,0.4856,0.3236,0.0628,-0.6394,-0.3798,-0.4544,-0.315,-0.2692,-0.3028,-0.1972,-0.0576,0.1634,0.2692,0.3198,0.4544,0.6876,0.8076,0.8438,0.8462,0.7116,0.7524,0.8558,0.9832,1,0.94,0.7908,0.6924,0.5746,0.6322,0.5456,0.5384,0.5264,0.6826,0.4038,0.1802,0.0516,0.2154,0.107,-0.115,-0.2312,-0.1862,-0.0912,-0.025,0.313,0.5694,0.6486,0.6804,1,0.9286,0.9048,0.8996,0.8864,0.741,0.7094,0.934,0.9736,0.7992,0.6618,0.5112,0.5456,0.5456,0.4452,0.4398,0.4558,0.5298,0.4346,0.1492,1,-1,1,-1,-0.8,-1,-1,0.8,-1,0.3418,0.1646,0.4684,0.7974,1,0.6962,0.0632,0.114,0.1392,0.0632,0.3164,0.2152,0.2912,0.4178,0.2406,0.2406,0.5696,0.1392,0.2658,0.3418,0.6456,0.7468,0.519,-0.0632,-0.2912,-0.4936,-0.1646,-0.367,-0.1646,0.2912,0.4684,0.2658,'17'
-0.3758,0.0758,0.04,0.278,0.449,0.6642,0.8468,1,0.8452,0.8012,0.581,0.5078,0.26,0.2454,0.1132,0.079,-0.0726,-0.1084,-0.009,-0.0122,0.1524,0.3154,0.4198,0.3202,0.1948,0.0758,0.0986,0.141,0.1834,0.0774,0.0758,0.1198,-0.3798,0.0324,0.0358,0.2468,0.5578,0.6842,0.9218,1,0.96,0.995,0.6892,0.6824,0.3682,0.3234,0.2054,0.1106,-0.0408,-0.1738,-0.0656,-0.0308,0.0674,0.3416,0.3832,0.192,0.1936,0.0872,0.049,0.1954,0.1272,0.0408,0.0158,0.1088,-0.3984,-0.018,0.0114,0.1868,0.5066,0.6016,0.823,0.859,1,0.9886,0.6394,0.5722,0.3492,0.2328,0.1246,-0.0918,-0.0754,-0.3132,-0.1868,0.1,0.0722,0.2688,0.1656,-0.0622,-0.1622,-0.059,-0.146,-0.0804,-0.1836,-0.1786,-0.0214,-0.0442,-0.4146,-0.073,0.0694,0.1832,0.5284,0.5338,0.733,0.863,1,0.8346,0.7188,0.4912,0.331,0.0444,-0.073,-0.1352,-0.2278,-0.146,0.0444,-0.0302,-0.1832,-0.194,-0.3346,-0.4768,-0.4556,-0.4556,-0.4698,-0.4146,-0.4022,-0.3096,-0.2864,-0.242,-0.3008,-0.0216,0.251,0.3052,0.5,0.7814,0.829,1,0.9242,0.8594,0.8702,0.868,0.552,0.2034,0.1558,0.0714,0.0584,-0.1018,-0.3354,-0.4632,-0.5584,-0.645,-0.7142,-0.79,-0.8116,-0.7424,-0.8506,-0.9242,-0.7252,-0.58,-0.5454,-0.5174,-0.17,0.0218,0.3276,0.4734,0.8666,0.9296,0.9758,0.9344,0.8446,0.801,0.9564,1,0.818,0.6092,0.5364,0.3132,-0.1262,-0.347,-0.5,-0.534,-0.7136,-0.7306,-0.7718,-0.7524,-0.7598,-0.7816,-0.949,-0.8228,-0.818,-0.6844,-0.7548,-0.7962,-0.0464,0.1914,0.3392,0.4434,0.7566,0.8754,0.8376,0.8754,0.7942,0.4608,0.716,0.8782,1,1,0.7972,0.5044,0.0638,-0.1478,-0.455,-0.6318,-0.6724,-0.6608,-0.8174,-0.7624,-0.774,-0.8986,-0.9044,-0.9652,-0.8666,-0.6376,-0.4464,-0.3798,-0.2786,0.2132,0.2786,0.4098,0.5082,0.7378,0.836,1,1,0.836,0.6722,0.5082,0.3114,0.2132,0.082,0.082,0.0164,-0.0164,0.2132,0.3114,0.4754,0.6394,0.6394,0.4754,0.5082,0.541,0.541,0.541,0.5082,0.3442,0.0492,0.0492,-0.033,0.2968,0.2748,0.4506,0.5384,0.6924,0.8242,1,0.978,0.8022,0.7142,0.5604,0.4066,0.3186,0.2528,0.2968,0.033,0.077,0.1208,0.1648,0.2968,0.4946,0.5824,0.4506,0.2968,0.2748,0.2308,0.3406,0.3626,0.3406,0.3186,0.3186,-0.305,-0.0338,0.1694,0.2204,0.4916,0.644,0.7458,1,1,0.8306,0.7458,0.678,0.2882,0.0338,0.017,0.017,0.1526,0.2372,-0.0678,-0.1526,-0.1864,-0.4406,-0.4916,-0.6272,-0.7458,-0.5084,-0.5594,-0.644,-0.6272,-0.5932,-0.4746,-0.2712,-1,-1,-1,-1,-1,-1,-1,-0.9852,-0.987,-0.6152,-0.5078,0.6176,0.9732,0.9102,0.7976,0.6692,0.547,0.2214,-0.0258,-0.172,-0.4004,-0.6272,-0.8402,-0.9306,-0.9694,-0.967,-0.9756,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9936,-0.9944,-0.587,-0.684,0.5874,0.949,0.924,0.9312,0.8346,0.7312,0.2176,-0.2038,-0.4416,-0.6986,-0.819,-0.9074,-0.9492,-0.96,-0.9676,-0.975,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9,-0.92,-0.7334,-0.6068,-0.6534,-0.6468,-0.6384,-0.6134,-0.5934,-0.5968,-0.66,-0.7918,-0.8084,-0.9186,-0.8632,-0.74,-0.66,-0.5534,-0.5934,-0.66,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,1,-0.9714,-0.9142,-0.9142,-0.7714,-0.4572,-0.3428,-0.6,-0.6,-0.5428,-0.3714,-0.2,-0.3714,-0.3714,-0.5142,-0.6,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.2466,-0.2618,-0.259,-0.2926,-0.2882,-0.2822,-0.354,-0.474,-0.6158,-1,-0.68,0.4588,-0.695,-0.2384,0.5006,0.773,0.7952,1,-0.3016,0.3334,0.619,0.8968,1,0.8572,0.492,0.246,0.0874,0.0952,0.0476,0.5238,0.3254,0.1904,0.2064,0.127,0.0634,-0.1746,-0.3412,-0.381,-0.4604,-0.627,-0.5634,-0.7064,-0.5318,-0.4366,-0.2778,-0.1112,-0.0318,-0.1112,-0.2222,-0.7858,-0.328,0.416,0.656,0.888,1,0.664,0.352,0.088,0.048,0.12,0.328,0.4,0.288,0.232,0.232,0.144,0.208,-0.12,-0.44,-0.352,-0.4,-0.52,-0.552,-0.64,-0.672,-0.456,-0.104,0.088,0.224,0.28,-0.016,-0.184,-0.0484,0.445,0.5948,0.8854,1,0.5418,0.3832,0.2422,0.1278,0.1982,0.4538,0.5948,0.4096,0.3744,0.2864,0.119,0.0484,-0.1102,-0.4362,-0.3656,-0.3832,-0.6476,-0.5506,-0.4626,-0.4538,-0.1454,0.0484,0.3392,0.3568,0.3656,0.4096,-0.0926,-0.321,-1,-1,1,0.2,-1,-1,-0.6,-1,-0.603,-0.1908,0.1604,0.3894,0.0688,0.6336,1,0.9848,0.8778,0.4656,0.1756,-0.0688,-0.0382,0.2672,0.6336,0.2978,0.2214,0.023,0.1146,0.0534,-0.0534,-0.0382,-0.084,0.0382,0.2672,0.2062,0.0992,0.3588,0.4656,0.1604,0.1604,-0.2214,'18'
-0.3464,0.076,0.0948,0.2714,0.5474,0.645,0.9118,0.9474,1,0.9118,0.6094,0.4648,0.262,0.0384,-0.0442,-0.2638,-0.307,-0.3502,-0.1662,-0.0234,0.1456,0.26,0.0686,0.0816,-0.0178,0.0084,0.0328,-0.0366,-0.3878,-0.5944,-0.7184,-0.508,-0.3424,0.0728,0.0944,0.2722,0.6064,0.6982,0.9496,0.973,1,0.9694,0.6154,0.5202,0.2992,0.1284,0.0764,-0.1716,-0.1338,-0.283,-0.2758,-0.0116,0.1482,0.3514,0.2112,-0.0116,-0.0476,0.0206,0.0098,0.0188,-0.4214,-0.477,-0.619,-0.4124,-0.365,0.0414,0.103,0.2506,0.6182,0.6782,0.905,0.891,1,0.9138,0.7238,0.5584,0.3,0.0114,0.0272,-0.08,-0.154,-0.3262,-0.249,-0.1716,0.0238,0.0624,-0.321,-0.379,-0.3826,-0.2928,-0.1996,-0.3632,-0.6342,-0.759,-0.6394,-0.3932,-0.3528,0.0272,0.1724,0.2772,0.655,0.6454,0.8372,0.878,1,0.7636,0.7848,0.4728,0.345,0.2422,0.0524,-0.0446,-0.1162,-0.0484,-0.0562,-0.155,-0.4554,-0.626,-0.7422,-0.686,-0.686,-0.6648,-0.5698,-0.4786,-0.562,-0.8992,-0.9534,-0.9458,-0.127,0.138,0.4098,0.4522,0.6704,0.9132,0.9576,1,0.882,0.8486,0.8908,0.9198,0.6792,0.5634,0.5568,0.4432,0.187,-0.1404,-0.4632,-0.5924,-0.608,-0.657,-0.7104,-0.7016,-0.8286,-0.784,-0.804,-0.7706,-0.6948,-0.6748,-0.755,-0.8998,-0.054,0.148,0.3692,0.516,0.928,0.9724,1,0.9254,0.7234,0.7316,0.989,0.906,0.9226,0.8312,0.6598,0.3858,-0.2532,-0.502,-0.6182,-0.7316,-0.7648,-0.7344,-0.8312,-0.9004,-0.7704,-0.8064,-0.823,-0.9474,-0.8396,-0.87,-0.8616,-0.8728,0.0098,0.165,0.1618,0.466,0.686,0.7702,0.809,0.6344,0.165,0.2136,0.5178,0.7994,0.864,1,0.8156,0.6278,-0.042,-0.2816,-0.4466,-0.5534,-0.4724,-0.7638,-0.767,-0.7314,-0.7702,-0.903,-0.9902,-0.754,-0.7734,-0.835,-0.7638,-0.7152,-0.2452,0.2452,0.0944,0.3962,0.5094,0.6982,0.8868,1,0.9246,0.7736,0.5472,0.3208,0.3584,0.132,0.0566,0.0188,-0.0188,0.0188,0.1698,0.2452,0.283,0.6604,0.5472,0.3584,0.2076,0.3584,0.3208,0.283,-0.2076,-0.4716,-0.3584,-0.3584,-0.3572,0.1072,-0.0358,0.2858,0.5714,0.6786,0.9286,0.9642,1,0.9642,0.6072,0.5358,0.1428,-0.1072,-0.1428,-0.0714,-0.25,-0.3572,-0.1072,0,0.1786,0.1072,0.1786,-0.0358,-0.0358,0,0.0714,0,-0.2858,-0.3928,-0.3928,-0.2858,-0.2696,0.0782,0.2,0.3392,0.6696,0.687,0.826,0.8956,1,0.826,0.826,0.513,0.4434,0.3914,0.287,0.0086,0.026,0.1652,0.0434,-0.2696,-0.4608,-0.3044,-0.287,-0.3218,-0.3566,-0.7218,-0.3044,-0.2348,-0.5478,-0.8782,-0.7566,-0.774,-1,-1,-1,-1,-1,-1,-0.9854,-0.9624,-0.4502,-0.3008,-0.3544,0.6794,0.9656,0.9252,0.7816,0.7108,0.4846,0.0978,-0.2228,-0.4956,-0.592,-0.7554,-0.88,-0.956,-0.9726,-0.977,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.992,-0.9822,-0.4792,-0.4776,-0.4528,0.569,0.8556,0.8678,0.708,0.6824,0.3674,-0.0784,-0.4172,-0.6906,-0.8142,-0.8788,-0.9324,-0.9528,-0.96,-0.9784,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.9468,-0.6034,-0.66,-0.6334,-0.6234,-0.6284,-0.63,-0.64,-0.64,-0.64,-0.7386,-0.8694,-0.8324,-0.9354,-0.8016,-0.6868,-0.6334,-0.5834,-0.67,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,1,1,0.2572,0.8,-0.2286,-0.8,-1,-0.9142,-0.7428,-0.6858,-0.6858,-0.7142,-0.7714,-0.8286,-0.4286,-0.4572,-0.6286,-0.6572,-0.5714,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.1086,-0.1228,-0.1472,-0.1678,-0.1644,-0.1772,-0.226,-0.3296,-0.6536,-1,-0.6666,0.5058,-0.4276,0.0046,0.5672,0.4578,0.8056,1,-0.2832,0.4278,0.765,0.9458,1,0.6808,0.2952,0.1988,0.235,0.1988,0.5602,0.5964,0.3614,0.1988,0.0422,-0.024,0.0964,-0.1386,-0.4638,-0.5784,-0.4398,-0.5904,-0.5302,-0.1626,-0.1626,-0.1446,0.2228,0.2772,0.241,0.247,-0.1746,-0.6204,-0.2196,0.3766,0.7832,0.9132,1,0.5392,-0.0678,0.0732,0.084,0.1274,0.2846,0.29,0.0082,0.0244,-0.1924,-0.214,-0.2412,-0.393,-0.599,-0.5826,-0.5338,-0.6152,-0.5068,-0.328,-0.252,-0.0732,0.0786,0.2412,0.2086,0.1762,0.084,-0.1654,0.046,0.29,0.5556,0.9512,1,0.691,0.1924,0.2304,0.187,0.3712,0.485,0.5014,0.4254,0.4364,0.1598,-0.3008,-0.1056,-0.29,-0.8212,-0.6206,-0.5718,-0.3116,0.046,0.1978,0.019,0.1056,0.2196,0.187,0.4364,0.42,0.3984,-0.1166,-0.1076,-1,-1,1,1,-1,-1,-0.3666,-1,-0.5076,-0.3692,0.123,0.3384,0.3384,0.3692,1,0.8924,0.7076,0.6,0.2616,-0.0308,-0.1076,0.2308,0.2616,0.4924,0.4308,0.3384,0.2616,0.2924,0.1692,0,0.123,0.0154,0.3538,0.1384,0.0924,0.0924,0.1846,0.1846,-0.0308,-0.4,'18'
-0.2566,0.3186,0.3142,0.6284,0.5974,1,0.9646,0.5486,0.5088,0.2212,0.208,0.1592,0.1682,0.3894,0.3894,0.4868,0.5044,0.646,0.6548,0.6726,0.6062,0.5132,0.5222,0.4734,0.5132,0.5884,0.6284,0.6018,0.5796,0.2478,0.2744,0.4558,-0.2614,0.2958,0.2958,0.5508,0.568,1,0.9654,0.7884,0.7452,0.4514,0.4212,0.5292,0.4816,0.6286,0.581,0.7884,0.7408,0.9222,0.8704,0.8748,0.8272,0.5464,0.5032,0.4816,0.4644,0.6976,0.6588,0.5378,0.5162,0.2656,0.2398,0.5076,-0.2388,0.2818,0.2646,0.5226,0.6,0.9398,0.8408,1,0.8968,0.5182,0.3764,0.6,0.4624,0.5742,0.6646,0.8408,0.7764,0.914,0.7118,0.6904,0.5182,0.3334,0.2732,0.3678,0.5742,0.6774,0.501,0.4236,0.2688,0.3032,0.1914,0.3032,-0.2842,0.1626,0.154,0.3796,0.6442,0.7744,0.9176,1,0.7094,0.5704,0.5444,0.5184,0.4968,0.5054,0.705,0.744,0.8264,0.6268,0.2624,0.1584,0.3016,0.3188,0.2928,0.4144,0.3796,0.5272,0.371,0.2234,0.2018,0.115,0.154,0.2104,-0.2648,0.1514,0.3514,0.454,0.773,0.773,1,0.9082,0.946,0.6756,0.6,0.5946,0.5514,0.6324,0.5838,0.7406,0.5838,0.1298,-0.081,-0.2378,-0.0324,0.0756,0.1892,0.346,0.4648,0.4378,0.2702,0.146,0.1514,0.1568,0.0918,0.2108,-0.3082,0.0188,0.239,0.2894,0.4528,0.805,0.8806,1,0.6604,0.4528,0.239,0.4026,0.371,0.5032,0.4026,0.5032,0.195,0.0252,0.0378,0.1132,-0.0504,-0.1572,-0.107,0.044,0.151,0.1636,0.0692,0.0566,-0.0378,0.0504,0.0628,0.195,-0.1282,0.2136,0.2478,0.188,0.8462,0.923,0.8888,1,0.8632,0.2736,0.53,0.47,0.6838,0.923,0.812,0.718,0.1282,0.0256,-0.0086,0.0256,0.1282,0.094,0.1966,0.094,0.3932,0.5128,0.3248,-0.0256,-0.2136,-0.2478,-0.1624,0.2394,-0.2068,0.3794,0.3794,0.6896,0.6896,1,0.9656,0.5172,0.5172,0.138,0.1724,0.069,0.0344,0.2758,0.3448,0.1724,0.3448,0.5862,0.6552,0.6206,0.6206,0.5518,0.5172,0.2414,0.5172,0.7932,0.862,0.6552,0.5518,0.3104,0.3448,0.4138,-0.2758,0.3104,0.2758,0.6206,0.5518,1,0.9656,0.5862,0.4828,0.2414,0.1724,0.2758,0.2068,0.3794,0.3448,0.5862,0.5518,0.6552,0.5862,0.7242,0.6552,0.5518,0.5172,0.5862,0.5518,0.6896,0.6552,0.6206,0.5862,0.3448,0.3104,0.5172,-0.2826,0.1304,0.3478,0.4566,0.7608,0.7174,1,0.826,0.9782,0.6522,0.6304,0.6522,0.5218,0.6956,0.6956,0.8478,0.4782,-0.1086,-0.2608,-0.1522,-0.087,0.1086,0.2826,0.5,0.4782,0.5,0.2392,0.1304,0.174,0,-0.0218,0.2608,-1,-1,-1,-1,-1,-1,-0.9844,-0.9824,-0.981,-0.528,-0.0106,0.692,0.945,0.9844,0.9462,0.9558,0.9728,0.7892,0.6178,0.2254,0.0214,-0.2962,-0.826,-0.9224,-0.9578,-0.9708,-0.9728,-0.9762,-0.9734,-0.9782,-0.9612,-0.9694,-0.9578,-1,-1,-1,-1,-1,-1,-0.9906,-0.991,-0.9766,-0.4762,-0.358,0.025,0.3122,0.5028,0.6336,0.8478,0.9702,0.53,0.0792,-0.065,-0.3684,-0.64,-0.8354,-0.7446,-0.8022,-0.7728,-0.8314,-0.8082,-0.819,-0.8394,-0.8606,-0.8596,-0.8628,-1,-1,-1,-1,-1,-1,-0.8616,-0.92,-0.8668,-0.34,-0.4668,-0.656,-0.66,-0.676,-0.608,-0.596,-0.62,-0.644,-0.656,-0.66,-0.61,-0.5834,0.3266,1,1,1,1,1,1,1,1,0.9632,0.9366,-1,-1,-1,-1,-1,-1,-0.4,-0.7428,1,1,1,0.1428,-0.2,-0.6858,-0.6,-0.6,-0.6286,-0.1428,0.1142,-0.5428,0,1,1,0.7142,-0.6858,-1,-0.9714,-0.9428,-0.9142,-0.9428,-0.9428,-0.8286,-0.8858,1,1,1,1,1,1,1,1,1,1,0.368,0.3184,0.2106,0.1146,0.0832,0.0426,-0.0782,-0.2306,-0.3964,-0.5634,-0.7334,-0.447,-0.3342,-0.1426,0.115,0.2632,0.4026,1,-0.5442,0.0232,0.2558,0.3302,0.0232,-0.1162,-0.1162,0.2466,0.4976,0.7582,1,0.814,0.7024,0.7024,0.479,0.3768,0.6094,0.3488,0.4976,0.5814,0.5348,0.386,0.5256,0.4976,-0.2744,-0.3768,-0.0604,-0.0884,-0.1348,0.2372,0.2186,-0.0232,-0.5514,0.2242,0.729,0.7476,0.3458,0.0748,0.0654,0.243,0.5046,1,0.9626,0.785,0.5328,0.7196,0.6168,0.4486,0.4766,0.542,0.4112,0.3178,0.2242,0.0842,0.243,0.299,-0.3552,-0.271,-0.1308,-0.1214,-0.1588,0.3272,0.1588,0.0654,0.2602,0.561,0.8862,0.8536,0.2358,0.1788,0.2602,0.4308,0.5204,1,0.9106,0.9674,0.9268,0.943,0.8456,0.561,0.691,0.691,0.7318,0.5528,0.3414,0.4146,0.2926,0.3008,-0.252,-0.187,0.1138,0.374,0.4472,0.496,0.4716,-0.0406,-0.3546,-1,-1,1,-0.4,-1,-1,-0.5666,-1,-0.922,-0.4546,-0.3896,-0.2728,-0.3116,-0.1948,-0.1428,0,-0.2598,0.052,-0.026,0,-0.013,0,0.1688,0.1298,0.3116,0.3246,0.3506,0.2728,0.4286,0.5454,0.6754,0.6234,0.7922,0.8832,1,0.7402,0.7532,0.8052,0.6364,0.6364,'19'
-0.209,0.5074,0.5224,0.617,0.6418,0.9452,1,0.5024,0.403,0.1792,0.1144,0.0646,0.189,0.1692,0.3134,0.3384,0.4228,0.6218,0.6766,0.816,0.8458,0.7264,0.5772,0.5274,0.4278,0.6368,0.617,0.4876,0.4776,0.4378,0.418,0.408,-0.2076,0.4416,0.4416,0.5942,0.5752,0.9236,0.914,0.7996,0.7948,0.4368,0.4416,0.5322,0.5322,0.6802,0.7088,0.7088,0.7566,0.9332,1,0.8186,0.8282,0.494,0.4654,0.432,0.537,0.5894,0.5942,0.5036,0.3938,0.2984,0.3078,0.1934,-0.2182,0.3564,0.352,0.5118,0.486,0.8186,0.7884,0.9092,0.892,0.5334,0.5162,0.6588,0.6372,0.8012,0.784,0.8876,0.8704,1,0.9828,0.7366,0.7366,0.5334,0.555,0.365,0.4298,0.4342,0.3174,0.3046,0.352,-0.0928,0.0152,0.0886,-0.2506,0.2974,0.2552,0.4848,0.569,0.8594,0.7846,1,0.8408,0.6722,0.5456,0.6768,0.6722,0.7752,0.836,0.911,0.9578,1,0.6674,0.7096,0.5504,0.5176,0.4614,0.5316,0.5598,0.6206,0.4192,0.26,0.2506,0.068,0.0024,0.1148,-0.1958,0.2816,0.3136,0.4852,0.8016,0.8606,1,0.9624,1,0.8552,0.614,0.4262,0.4746,0.4798,0.6032,0.6782,0.7372,0.4906,0.3994,0.3352,0.3404,0.362,0.3672,0.4798,0.6032,0.6354,0.2922,0.1314,0.0724,0.0294,-0.11,-0.126,-0.2638,0.0618,0.2638,0.2768,0.544,0.746,0.8306,1,0.772,0.2182,0.2704,0.2442,0.2248,0.6286,0.7264,0.6742,0.4528,0.4072,0.1922,0.2052,-0.2182,-0.0032,0.153,0.2704,0.57,0.6156,0.368,0.0554,-0.127,-0.2052,-0.1856,-0.3812,-0.1604,0.1522,-0.0124,-0.2016,0.4238,0.3828,0.6378,0.8766,0.8436,0.5802,0.4404,0.605,0.753,1,0.753,0.6132,0.3992,0.07,-0.3004,-0.07,0.0288,0.0618,0.1112,0.3252,0.5968,0.6214,0.1112,-0.2428,-0.4074,-0.3498,-0.1852,-0.0864,-0.2244,0.551,0.5918,0.6326,0.7552,0.8368,0.9592,0.5918,0.3878,0.0612,-0.1428,-0.0612,0.3062,0.3062,0.3878,0.5102,0.6326,0.6326,0.7142,0.8368,0.9592,1,0.5918,0.5102,0.5102,0.7142,0.8776,0.796,0.4286,0.2654,0.2244,0.3062,-0.2142,0.4286,0.4286,0.5714,0.5358,0.9286,1,0.6786,0.4642,0.3214,0.3214,0.1072,0.0714,0.1786,0.2858,0.4642,0.5,0.7142,0.7142,0.8928,0.9286,0.8214,0.7142,0.7142,0.7142,0.7142,0.6072,0.4642,0.5358,0.4642,0.5714,0.5358,-0.3052,0.2,0.221,0.3894,0.7052,0.8316,0.9578,1,0.9158,0.8948,0.6842,0.621,0.6,0.4316,0.621,0.6842,0.8526,0.5578,0.4526,0.3894,0.3264,0.2842,0.3052,0.3684,0.3474,0.5158,0.4106,0.0526,-0.2842,-0.0736,-0.1578,-0.2842,-1,-1,-1,-1,-1,-1,-1,-0.9784,-0.9832,-0.648,-0.0338,0.352,0.6582,0.8014,0.7602,0.8708,0.9906,0.9222,0.8024,0.499,0.2584,-0.2752,-0.7706,-0.8774,-0.928,-0.9672,-0.9644,-0.9682,-0.9626,-0.955,-0.955,-0.9634,-0.9522,-1,-1,-1,-1,-1,-1,-1,-0.9894,-0.9898,-0.7122,0.029,-0.2478,-0.0476,0.2144,0.464,0.82,0.9002,0.5114,0.0418,-0.1348,-0.032,-0.63,-0.8424,-0.7802,-0.785,-0.7842,-0.7628,-0.7628,-0.737,-0.7466,-0.7098,-0.661,-0.6954,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.8868,-0.8234,-0.44,-0.752,-0.748,-0.676,-0.556,-0.672,-0.596,-0.664,-0.66,-0.648,-0.66,-0.66,-0.25,0.65,0.85,1,1,0.9066,0.98,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-0.8,1,1,1,-0.2858,0.0286,-0.4572,-0.5428,-0.6286,-0.7142,-0.1714,-0.2,-0.3714,0.4858,0.8286,1,1,-0.6286,-0.7142,-0.9714,-0.7142,-0.8572,-0.8286,-0.8572,-0.8858,-0.6,1,1,1,1,1,1,1,1,1,1,0.2966,0.3328,0.2386,0.199,0.169,0.0814,-0.023,-0.2782,-0.5048,-0.5828,-0.7734,-0.447,0.1798,-0.403,-0.1204,-0.0874,0.0608,1,-0.2394,0.1408,0.7606,0.7606,0.2676,0.0564,0.183,0.324,0.2394,0.8028,1,0.6902,0.9154,0.9154,0.6902,0.493,0.4366,0.4788,0.507,0.4084,0.5212,0.4508,-0.0422,-0.0846,-0.2112,-0.169,-0.3662,-0.3098,0.183,0.6056,0.5634,0.155,-0.4304,0.0182,0.5758,0.4182,0.2122,-0.091,0.2606,0.5272,0.6242,0.7696,1,0.8546,0.7818,0.7696,0.4546,0.2484,0.3454,0.394,0.1272,0.0666,0.4182,0.0666,-0.2728,-0.4546,-0.3212,-0.3334,-0.2848,0.2242,0.006,0.3454,0.297,0.1272,0.1112,0.3828,0.8148,0.8518,0.395,0.1358,0.1234,0.2716,0.321,0.6914,1,0.753,0.642,0.753,0.605,0.2222,0.3334,0.321,0.1234,0.1976,0.5802,0.2098,-0.1112,-0.6172,-0.2716,-0.1852,-0.0124,0.074,0.074,0.3704,0.4074,0.1976,0.2274,-1,-1,1,-0.6,-1,-1,-0.7,-1,-0.76,-0.64,-0.34,-0.19,-0.37,-0.04,0.13,0.27,0.23,0.12,0.08,-0.01,0.06,0.17,0.09,0.03,0.25,0.27,0.28,0.32,0.51,0.52,0.48,0.54,0.67,0.61,1,0.81,0.49,0.69,0.71,0.57,'19'
-0.1692,0.79,0.8652,0.6144,0.7304,0.3668,0.304,0.1504,0.0722,-0.0188,-0.0126,0.047,-0.1066,0.0094,-0.0032,0.1504,0.025,0.3386,0.3292,0.8496,0.8872,0.9624,1,0.5862,0.7806,0.6552,0.7554,0.7366,0.5736,0.5736,0.5768,0.7304,-0.0236,0.8672,0.8988,0.8516,0.921,0.3334,0.4534,0.0268,0.1564,-0.128,-0.0458,-0.229,0.109,-0.0142,0.1944,0.1374,0.2386,0.2606,0.5892,0.6714,0.8672,0.9778,0.94,0.8988,0.9336,1,0.8926,0.8988,0.6936,0.643,0.5704,0.7504,0.0148,0.6746,0.6656,0.8462,0.7958,0.3402,0.2752,0.0828,0.003,-0.1568,-0.2338,-0.0088,-0.0858,-0.0178,-0.068,0.0414,0.0208,0.148,0.2692,0.4852,0.6242,0.9556,1,0.8994,0.864,0.8846,0.9112,0.7722,0.6656,0.4438,0.4674,0.5444,-0.057,0.5172,0.752,0.9804,0.69,0.168,-0.3214,-0.3084,-0.5138,-0.589,-0.5758,-0.5562,-0.5792,-0.5596,-0.4682,-0.5334,-0.2594,-0.1224,0.1092,0.3376,0.553,0.8076,1,0.8304,0.7324,0.7128,0.6934,0.54,0.279,0.0376,-0.0016,0.0212,-0.1784,0.3986,1,0.9056,0.1644,-0.2412,-0.4686,-0.6258,-0.7308,-0.7412,-0.8812,-0.7868,-0.8952,-0.7202,-0.8182,-0.9056,-0.7518,-0.7272,-0.6504,-0.2868,-0.0244,0.3216,0.6644,0.6608,0.528,0.507,0.535,0.493,0.3356,0.077,0.021,0.0034,-0.1038,0.6692,0.9076,0.573,0.2654,-0.2538,-0.5924,-0.7076,-0.877,-0.9038,-0.8116,-0.773,-0.873,-0.6346,-0.6576,-0.55,-0.5808,-0.5,-0.277,0.0154,0.273,0.5538,0.8692,1,0.8846,0.827,0.9346,0.8076,0.5924,0.2654,0.177,0.277,0.2526,0.7628,1,0.9846,0.4484,-0.366,-0.603,-0.598,-0.603,-0.665,-0.902,-0.9226,-0.7114,-0.7216,-0.7062,-0.5876,-0.5824,-0.4742,-0.2216,0.1186,0.2784,0.5774,0.8402,0.7578,0.634,0.6908,0.8608,0.8144,0.5824,0.0876,0.0876,0.2578,-0.3334,0.5556,0.6,0.2888,0.3334,-0.0222,0.1112,-0.0666,-0.3334,-0.2888,-0.6888,-0.3334,-0.3778,-0.2444,-0.2444,-0.0666,0.0222,0.3334,0.2,0.6888,0.9556,1,0.5112,0.4222,0.8222,0.8222,0.6444,0.4222,0.6,0.4222,0.6444,0.6888,-0.077,0.7308,0.8076,0.577,0.6924,0.3846,0.3462,0.1538,0.1538,0.077,0.077,0.1154,0.077,0.1154,0,0.077,-0.1154,0.3462,0.5384,0.6924,0.8076,1,0.923,0.6538,0.7692,0.7308,0.7692,0.6538,0.6538,0.6924,0.7308,0.7308,-0.1464,0.244,0.878,1,0.439,-0.0732,-0.6098,-0.4634,-0.5854,-0.7074,-0.8292,-0.7074,-0.8292,-0.756,-0.4878,-0.561,-0.3902,-0.3658,-0.244,0.122,0.4634,0.5366,0.756,0.8292,0.7318,0.8292,0.8048,0.4634,0,-0.0976,0.122,0.0732,-1,-1,-1,-1,-0.982,-0.988,-0.8726,-0.8914,-0.9034,-0.8688,-0.8326,0.3604,0.5512,0.518,0.497,0.5528,0.672,0.9268,0.5928,-0.0972,-0.4382,-0.6078,-0.7316,-0.874,-0.9646,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9736,-0.9748,-0.3962,0.3306,1,0.1114,-0.336,0.4096,0.6262,0.8292,0.806,0.6756,0.7626,0.8362,0.3908,-0.1404,-0.4794,-0.6562,-0.77,-0.8742,-0.9302,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8814,-0.9282,-0.3182,1,0.9086,0.7252,0.2452,-0.6948,-0.8504,-0.8526,-0.8614,-0.7678,-0.7712,-0.9068,-0.929,-0.886,-0.936,-0.962,-0.85,-0.6168,-0.2968,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,1,1,1,-0.6,0.5428,1,1,-0.7714,-0.5714,-0.8286,-0.7142,-0.5714,-0.4858,-0.8,-0.8286,-0.5428,-0.6286,-0.7428,-0.6572,-0.7428,-1,-1,-1,-1,-1,-1,-1,-1,0.4974,0.5002,0.5048,0.502,0.5078,0.5108,0.506,0.4932,0.4442,0.0228,0.751,0.766,0.7734,0.804,0.8068,0.789,0.8256,0.9002,0.9556,0.9696,-0.6934,0.0824,-0.3934,-0.1384,0.4112,0.6278,0.689,1,-0.798,-0.2702,-0.097,-0.1712,0.0226,0.1134,0.1134,0.0144,0.1258,0.2372,0.4104,0.3154,0.3154,0.3526,0.332,0.464,0.5876,0.5876,0.5958,0.7774,1,0.9546,0.9092,0.967,0.8432,0.7278,0.736,0.7154,0.633,0.6082,0.4846,0.1052,-0.9362,-0.4382,-0.4064,-0.3108,-0.259,-0.0478,-0.0518,-0.1952,0.1116,0.3386,0.745,0.6136,0.4742,0.3586,0.3108,0.4382,0.494,0.6654,0.6294,0.6294,1,0.9602,0.8366,0.7968,0.741,0.6852,0.6812,0.6614,0.6136,0.5738,0.5338,0.2908,-0.5618,-0.324,-0.1934,-0.1516,-0.2588,-0.1142,-0.0164,0.1188,0.3426,0.7996,0.916,0.7342,0.8508,0.8742,0.585,0.6876,0.8182,0.7482,0.6924,0.7668,0.916,1,0.8882,0.8742,0.6644,0.5338,0.599,0.6876,0.7482,0.5152,0.4312,0.1842,0.8878,-1,-1,1,-1,-1,-0.4,-0.0666,-1,-0.3016,-0.127,0.1588,0.2064,0.0476,0.254,0.1746,0.2698,0.4126,0.9524,0.8412,0.9048,0.7142,0.7142,0.508,0.7302,0.9524,0.6984,0.365,0.4286,0.5874,1,0.762,0.6032,0.2222,0.127,-0.0794,-0.0476,0.2698,0.2858,-0.0794,-0.3016,'20'
-0.1428,0.7414,0.8096,0.585,0.6734,0.2824,0.1666,0.0374,-0.1122,-0.1768,-0.1938,-0.1972,-0.204,-0.1904,-0.0374,0.0714,0.0476,0.2688,0.3198,0.7176,0.704,0.9864,1,0.8232,0.8368,0.8368,0.7926,0.585,0.5238,0.381,0.364,0.5034,-0.198,0.6204,0.6436,0.67,0.703,0.0858,0.1552,-0.3564,-0.2508,-0.571,-0.4026,-0.3136,-0.099,-0.274,-0.1782,-0.1816,0.0528,0.0298,0.3696,0.439,0.6568,0.957,1,0.9636,0.802,0.8086,0.6898,0.505,0.3928,0.1948,0.2178,0.2508,0.093,0.7176,0.6778,0.897,0.7874,0.3688,0.1994,-0.1462,-0.2758,-0.176,-0.3422,-0.1628,-0.1828,-0.0466,-0.1196,-0.103,-0.2724,-0.073,0.1362,0.3256,0.5348,0.7808,0.8936,1,0.9734,0.9336,0.9102,0.6678,0.5482,0.3122,0.422,0.475,-0.0206,0.502,0.823,1,0.4898,0.0206,-0.6338,-0.6666,-0.5802,-0.646,-0.8436,-0.786,-0.5926,-0.6338,-0.7902,-0.8272,-0.6832,-0.4116,-0.2386,0.0082,0.2098,0.4938,0.7654,0.9548,0.856,0.8066,0.8272,0.786,0.5638,0.3128,0.3662,0.4198,0.0318,0.3954,1,0.9196,-0.1798,-0.4208,-0.518,-0.6956,-0.7802,-0.8308,-0.8816,-0.9874,-0.8604,-0.8098,-0.852,-0.8012,-0.7674,-0.7378,-0.6194,-0.408,-0.2558,-0.129,0.5392,0.869,0.8394,0.8012,0.8646,0.8478,0.7716,0.5348,0.4208,0.5434,0.1122,0.7102,1,0.6962,-0.014,-0.187,-0.6214,-0.7242,-0.715,-0.5608,-0.8926,-0.9158,-0.8458,-0.701,-0.7384,-0.7524,-0.7242,-0.7102,-0.528,-0.5982,-0.3412,0.0514,0.5468,0.687,0.7898,0.7476,0.8318,0.8738,0.542,0.3692,0.2758,0.4018,0.1486,0.5676,0.7702,0.455,0.1352,-0.3558,-0.6306,-0.599,-0.6666,-0.9504,-0.7162,-0.6262,-0.8424,-0.6036,-0.5046,-0.5586,-0.3918,-0.4054,-0.4684,-0.3334,-0.1442,0.2928,0.6126,0.9684,1,0.91,0.7388,0.7928,0.4594,0.4054,0.3378,0.2792,-0.2728,0.5,0.5454,0.0454,0.091,-0.2728,-0.4546,-0.3182,-0.409,-0.409,-0.2728,-0.3182,-0.7728,-0.409,0.091,0.091,-0.3636,0,0.409,0.6818,0.8182,1,0.8182,0.6818,0.5,0.8636,0.8636,0.6364,0.6364,0.6364,0.4546,0.4546,0.0588,0.9216,1,0.647,0.804,0.5294,0.3334,0.3334,0.098,0.0588,-0.098,-0.0196,0.0196,0.0588,-0.1764,0.0196,-0.0588,0.3334,0.2942,0.6078,0.8432,0.7254,0.8824,0.7648,0.7648,0.9216,0.804,0.5686,0.6862,0.647,0.7254,0.8432,-0.2116,0.4808,0.4808,0.5576,0.5576,0.1154,0.0962,-0.2884,-0.25,-0.4424,-0.4038,-0.1538,-0.0962,-0.3654,-0.2308,-0.1538,0,0.0384,0.1924,0.2884,0.4808,0.7692,1,0.827,0.7308,0.6346,0.5,0.327,0.3846,0.2692,0.1924,0.2308,-1,-1,-1,-0.9762,-0.9782,-0.9772,-0.8068,-0.898,-0.8812,-0.8048,-0.8366,0.6306,0.6642,0.6722,0.6998,0.7148,0.7722,0.6542,0.4016,-0.06,-0.3382,-0.5226,-0.6216,-0.7782,-0.9,-0.9376,-0.9564,-0.9614,-1,-1,-1,-1,-1,-1,-1,-1,-0.9674,-0.965,-0.921,0.2614,1,0.986,0.4156,-0.2574,0.5092,0.7998,0.9286,0.6986,0.6876,0.645,0.4314,0.132,-0.2562,-0.466,-0.594,-0.6762,-0.759,-0.7992,-0.8336,-0.8814,-0.9254,-1,-1,-1,-1,-1,-1,-1,-1,-0.9656,-0.91,-0.8534,0.5366,1,0.88,0.7732,0.31,-0.7576,-0.8376,-0.7726,-0.865,-0.6926,-0.775,-0.795,-0.8026,-0.909,-0.88,-0.829,-0.7768,-0.5268,-0.27,-0.2934,-0.3734,-0.4234,-1,-1,-1,-1,-1,-1,-1,-1,-0.3428,-0.6286,1,1,1,-0.6286,0.9142,1,1,-0.4858,-0.5714,-0.6286,-0.7714,-0.6286,-0.5714,-0.7428,-0.7428,-0.9428,-0.8572,-0.7142,-0.6,-0.3428,-0.3142,-0.4286,-0.4,-1,-1,-1,-1,-1,0.3272,0.3472,0.3658,0.3854,0.4008,0.4076,0.3936,0.385,0.3054,-0.1546,0.7312,0.7298,0.7452,0.741,0.7558,0.7512,0.8032,0.8464,0.9428,1,-0.6666,-0.047,-0.3218,-0.3314,0.5774,0.986,0.7566,1,-0.814,-0.4232,-0.241,-0.1538,-0.0854,0.0664,0.0626,-0.036,0.1688,0.2714,0.613,0.575,0.408,0.4498,0.4118,0.4384,0.5522,0.5256,0.6092,0.795,0.8976,1,0.9544,0.9278,0.8482,0.7874,0.685,0.6736,0.5788,0.6166,0.3586,0.1688,-0.7584,-0.4966,-0.3926,-0.094,-0.1476,-0.0872,-0.141,-0.037,0.141,0.3558,0.708,0.6242,0.3558,0.4966,0.3994,0.3154,0.537,0.7248,0.688,0.7014,0.8692,1,0.9262,0.859,0.7852,0.5906,0.594,0.6712,0.604,0.4798,0.4296,0.1342,-0.4152,-0.0434,-0.0108,-0.0578,-0.0758,-0.0434,0.0398,0.1624,0.2528,0.4296,0.8158,0.8954,0.5992,0.6788,0.5776,0.5632,0.7654,0.8376,0.657,0.6788,0.9964,1,0.7618,0.686,0.5848,0.7112,0.6462,0.6102,0.4332,0.4874,0.4332,0.13,1,-1,-1,1,-1,-1,-0.2,0.0334,-1,0.0068,0.0872,0.1812,0.1544,0.1544,0.0336,0.1812,0.208,0.1812,0.745,1,0.9598,0.8792,0.5302,0.5302,0.5704,0.5974,0.4228,0.5302,0.7316,0.5838,0.4766,0.3826,0.3288,0.208,0.2618,0.1544,0.1812,0.3288,0.3288,-0.0738,-0.141,'20'
0.3976,0.9566,0.7686,0.8314,-0.0892,-0.4072,-0.7734,-0.6722,-0.7204,-0.8266,-0.8314,-0.9228,-0.9036,-0.841,-0.9084,-0.7156,-0.7254,-0.812,-0.6192,-0.3638,0.1084,0.518,0.4072,-0.1326,0.1518,-0.0314,0.1662,0.5904,0.8168,1,0.8746,0.7734,0.1888,0.8648,0.7456,1,0.487,0.2882,-0.5308,-0.507,-0.6978,-0.7932,-0.8568,-0.7972,-0.6342,-0.5666,-0.7416,-0.4632,-0.4076,-0.157,0.2842,0.654,0.7972,0.8132,0.841,0.7892,0.5904,0.7138,0.9522,0.9722,0.9204,0.8808,0.841,0.9086,-0.1432,0.3946,0.5028,0.7486,0.554,0.1432,-0.3216,-0.3244,-0.4892,-0.5028,-0.3622,-0.473,-0.4,-0.154,0.0162,-0.1298,-0.0378,0.3676,0.4946,1,0.9432,0.8162,0.7216,0.8432,0.6514,0.519,0.2702,0.2298,0.1594,0.2108,0.5244,0.5054,-0.2296,0.2134,0.855,1,0.6,0.1516,-0.1382,-0.3074,-0.404,-0.2402,-0.1866,-0.31,-0.2054,0.004,0.0014,0.1168,0.1276,0.2832,0.6484,0.6376,0.5516,0.5544,0.6724,0.5758,0.1758,0.0282,-0.0014,-0.0926,-0.0496,0.106,0.2054,0.345,-0.1978,0.2718,1,0.915,0.8484,0.2458,0.0426,0.0278,-0.0906,-0.3716,-0.183,0.072,-0.0314,0.098,0.1386,0.1534,0.1054,-0.024,-0.1238,0.1646,0.3604,0.5712,0.6082,0.3494,-0.0794,-0.1646,-0.2902,-0.183,-0.183,0.061,0.2014,0.4048,0.0144,0.4802,0.7762,1,0.7834,0.5234,0.314,-0.1408,0.2346,0.2816,0.0614,0.0362,-0.2636,-0.3212,-0.5162,-0.5992,-0.7978,-0.8628,-0.5812,-0.556,-0.2816,-0.0578,-0.0362,-0.2888,-0.5812,-0.6174,-0.8376,-0.686,-0.5848,-0.6064,-0.2996,-0.2346,0.19,0.3988,0.7454,1,0.5574,0.2776,0.2818,0.3862,0.2484,-0.3028,-0.691,-0.6076,-0.8456,-0.762,-0.7788,-0.8204,-0.7954,-0.762,-0.9792,-0.833,-0.6368,-0.808,-0.5156,-0.5616,-0.57,-0.62,-0.808,-0.8122,-0.7244,-0.7454,-0.7662,-0.5198,0.5428,0.9428,0.5428,0.7142,0.2,-0.1428,0.0286,-0.0286,-0.3142,-0.3142,-0.2572,-0.4286,-0.3142,-0.2572,-0.3142,-0.3714,-0.4286,-0.4858,0.0858,0.2,0.3142,0.4286,0.4286,-0.2,0.3142,0.3714,0.1428,0.6,0.6572,0.3714,1,1,0.4194,0.871,0.742,0.8064,0.0322,-0.2904,-0.0968,0.0322,-0.4838,-0.3548,-0.4194,-0.613,-0.4838,-0.3548,-0.4838,-0.4838,-0.8064,-0.4838,-0.4194,0.1612,0.0322,0.5484,0.2904,0.1612,-0.4838,-0.2904,0.3548,0.8064,0.613,1,0.871,0.8064,-0.258,0.3226,0.8064,1,0.9354,0.258,0.0646,0.0322,0,-0.3226,-0.1612,0.1936,0.2258,-0.258,-0.0968,-0.1612,-0.4516,-0.4838,-0.613,-0.0322,0.0322,0.1612,0.4838,0.2258,-0.3226,-0.1936,-0.387,-0.5806,-0.6774,-0.387,-0.1612,-0.0322,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9146,-0.8664,-0.7544,-0.655,-0.4064,-0.096,0.3468,0.8996,0.2832,-0.2426,-0.476,-0.7026,-0.7694,-0.8852,-0.9562,-0.9828,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9218,-0.8846,-0.7854,-0.6736,-0.3734,0.0944,0.6342,0.9174,0.2082,-0.2686,-0.5172,-0.7436,-0.8038,-0.8976,-0.9434,-0.9682,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9466,-0.9034,-0.954,-0.926,-0.782,-0.674,-0.748,-0.8438,-0.8856,-0.8928,-0.9238,-0.9438,-0.9582,-0.8768,-0.8434,-0.8068,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2858,0.3428,0.2572,-0.1714,0.1714,-0.3428,-0.6572,-0.6858,-0.6858,0.3714,-0.0858,-0.6286,-0.8,-0.6858,-0.7714,-0.5714,-1,-1,-1,-1,-1,-1,-1,-1,-0.6654,-0.688,-0.6916,-0.6798,-0.6408,-0.6002,-0.486,-0.3268,-0.1288,0.1692,0.721,0.6856,0.6818,0.7412,0.7486,0.8034,0.8172,0.8182,0.6404,0.171,-0.6666,0.247,-0.8934,-0.8218,-0.786,-0.7776,-0.7586,-1,0.5556,1,-0.0304,0.3738,0.192,-0.3132,-0.1112,-0.0708,0.2324,-0.091,-0.3536,0.0102,0.2122,0.1516,0.3132,0.6364,0.495,0.6364,0.4546,0.2728,0.192,0.1718,-0.6364,-0.4344,-0.3132,-0.1112,0.192,0.2122,-0.1112,0.0102,0.0102,-0.1112,0.5944,0.972,0.1748,-0.091,0.2308,-0.007,-0.035,-0.035,0.091,0.091,0.2588,0.4966,0.3986,0.6224,0.6784,0.6224,1,0.8882,0.3286,0.1748,0.2028,-0.063,-0.2168,0.1188,-0.2028,-0.1188,0.2728,0.2728,0.2868,0.2308,0.4126,0.2168,0.7164,1,0.4468,0.0354,0.1632,0.234,0.3334,0.1348,0.149,0.149,0.1914,0.3758,0.461,0.5886,0.6738,0.7446,1,1,0.2766,0.461,0.2908,0.2198,0.078,0.1914,0.2766,0.2056,0.2056,0.3758,0.305,0.1206,0.1632,0.0354,-0.9464,1,-1,-1,-1,-1,-1,-1,-1,-0.0392,0.3334,0.7254,1,0.9608,0.549,0.4706,0.5294,0.5098,0.451,0.451,0.451,0.549,0.6078,0.1568,0.3138,0.7254,0.3334,0.5294,0.4706,0.2156,0.1176,0.2942,0.0588,0.3334,0.1176,0.196,0.3334,0.3726,0.5098,0.451,0.1568,'21'
0.1224,0.6942,0.4802,0.2538,-0.312,-0.4556,-0.5932,-0.6146,-0.9236,-0.948,-0.74,-0.6056,-0.5902,-0.5658,-0.6024,-0.575,-0.4648,-0.474,-0.471,-0.263,-0.003,0.2752,0.2996,0.052,-0.101,0.0306,0.3212,0.575,0.8104,1,1,0.8318,0.1014,0.7972,0.771,0.7492,0.6772,0.2694,0.1734,-0.0556,-0.1188,-0.2758,-0.3326,-0.204,-0.2344,-0.036,-0.1232,0.0294,0.0688,0.2956,0.494,0.9412,1,0.9694,0.9258,0.8822,0.8932,0.9608,0.9672,0.8648,0.8146,0.6772,0.7404,0.9128,-0.018,0.6048,0.5828,0.8822,0.8164,0.3552,0.2694,-0.0698,-0.1796,-0.2296,-0.3134,-0.0738,-0.1636,0.038,-0.05,0.2076,0.1536,0.4312,0.7624,1,0.8742,0.7624,0.7804,0.9262,0.7046,0.1856,0.2096,0.3234,0.2754,0.2376,0.3334,0.5888,-0.1774,0.3248,0.8226,1,0.6612,0.182,-0.1152,-0.1912,-0.3778,-0.4286,-0.3364,-0.3502,-0.2166,-0.1314,0.0714,0.2442,0.4332,0.5046,0.5024,0.4792,0.5622,0.5944,0.5162,0.1982,-0.1752,-0.3434,-0.3848,-0.3502,-0.3918,-0.2972,-0.0876,0.1958,-0.1064,0.2696,1,0.9398,0.9078,0.1134,-0.0532,-0.2128,-0.5674,-0.6738,-0.5852,-0.3476,0.0142,0.039,-0.0284,-0.4078,-0.5744,-0.727,-0.507,-0.2944,-0.2376,0.0212,-0.046,-0.5744,-0.8794,-0.89,-0.8794,-0.9042,-0.851,-0.6206,-0.3794,-0.2482,0.0682,0.3012,0.6222,1,0.7556,-0.0596,-0.071,-0.0398,-0.1732,-0.3154,-0.3494,-0.554,-0.5852,-0.787,-0.6988,-0.7556,-0.787,-0.9262,-0.8722,-0.7898,-0.5994,-0.5966,-0.4858,-0.4886,-0.7614,-0.9404,-0.821,-0.7982,-0.7614,-0.7188,-0.517,-0.3522,0.1374,0.3602,0.6962,1,0.651,0.034,-0.008,0.008,0.076,-0.3474,-0.6382,-0.6608,-0.7576,-0.5994,-0.6576,-0.8222,-1,-0.874,-0.8158,-0.832,-0.7706,-0.6576,-0.7222,-0.6414,-0.622,-0.622,-0.6996,-0.832,-0.8352,-0.929,-0.7382,-0.4216,0.309,0.5636,0.3454,0.3454,-0.0546,-0.2364,-0.2728,-0.1272,-0.309,-0.091,0.091,0.1272,-0.0182,-0.2,-0.1636,-0.1272,-0.4182,-0.091,-0.0546,-0.2,0.1272,0.3454,0.2728,-0.2,0.0182,0.1636,0.3454,0.4546,0.6728,0.891,1,1,0.16,0.44,0.16,0.2,-0.16,-0.32,-0.44,-0.48,-0.44,-0.44,-0.56,-0.28,-0.24,-0.28,-0.6,-0.44,-0.24,-0.32,-0.32,-0.2,-0.2,0.32,0.24,0.04,0.16,0.36,0.48,0.8,0.96,1,0.92,0.8,-0.1384,0.4154,1,0.8462,0.6308,0.2,0.0154,0.0462,-0.4154,-0.6308,-0.7846,-0.5384,0.077,0.2616,0.477,0.1692,-0.0462,-0.2308,-0.2,-0.1076,-0.1384,0.1076,-0.1076,-0.1692,-0.6308,-0.3846,-0.4462,-0.4462,-0.2924,0.0462,0.1384,0.1384,-1,-1,-1,-0.9908,-0.9878,-0.9882,-0.9816,-0.8416,-0.838,-0.815,-0.7844,-0.6848,-0.365,-0.0498,0.0044,0.2546,0.8212,-0.056,-0.416,-0.5678,-0.6664,-0.7246,-0.8514,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9808,-0.9774,-0.9762,-0.9738,-0.8588,-0.8168,-0.7734,-0.7616,-0.5964,-0.335,0.1742,0.3764,0.4664,0.823,-0.128,-0.4636,-0.618,-0.6948,-0.7374,-0.843,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.92,-0.7534,-0.88,-0.89,-0.7234,-0.7368,-0.7368,-0.754,-0.8094,-0.794,-0.7032,-0.794,-0.8462,-0.9386,-0.9416,-0.9308,-0.914,-0.9216,-0.9134,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,-0.8572,-0.9428,1,1,0.6572,-0.9142,-0.8,-0.4572,0.3428,0.4,-0.5142,-0.4,-0.6,-0.1142,-0.3142,-0.1714,-0.9714,-0.5428,0.0858,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6728,-0.6592,-0.6466,-0.62,-0.5712,-0.4454,-0.2816,-0.0928,0.0632,0.1502,0.5678,0.591,0.5848,0.6078,0.684,0.7306,0.7702,0.7508,0.489,0.0038,-0.6666,0.5648,-0.7584,-0.7148,-0.649,-0.543,-0.5684,-0.4334,-0.0868,0.182,0.1484,1,0.776,0.3446,0.5574,0.3894,0.5574,0.5742,0.3782,0.4734,0.591,0.6806,0.4118,0.5126,0.7254,0.311,0.2324,0.3334,0.3614,0.3726,0.283,-0.154,0.283,0.1372,0.154,0.2436,0.1316,-0.0084,-0.1148,-0.6694,-0.1348,0.0422,0.0504,0.0906,-0.0382,0.0462,0.0382,0.006,0.0382,-0.0222,0.0664,0.171,0.0866,0.328,0.3924,0.5452,1,0.9276,0.344,0.3844,0.3802,0.328,0.2152,0.0946,0.183,-0.0824,0.167,0.151,-0.0342,-0.1066,-0.2516,-0.4206,0.5424,0.5552,0.0566,-0.288,-0.342,-0.2776,-0.1492,-0.221,-0.203,-0.2416,-0.0334,0.1312,0.0848,0.239,0.6092,0.784,0.8484,1,0.9126,0.7994,0.7634,0.797,0.6222,0.509,0.383,0.4164,0.221,0.275,0.1646,0.2288,0.0078,-0.234,-0.9924,1,-1,-1,-1,1,-0.8,-1,-1,0.6666,0.4888,0.4,0.5112,0.9334,1,0.3556,0.2666,-0.3112,-0.1112,0.2222,0.2222,0.1112,0.0666,0.2,0.1778,0.6444,0.4222,-0.1778,-0.0222,-0.3556,-0.2444,-0.4222,-0.2,-0.5334,-0.4444,0.6666,0.3778,0.4444,0.3334,0.8666,0.3112,'21'
-0.0082,0.6418,0.6186,0.9768,0.8308,0.3234,0.1742,-0.1276,-0.2006,-0.2404,-0.2836,-0.0448,-0.1442,0.1012,0.1244,0.3732,0.519,0.665,0.7412,0.9304,0.8906,0.8508,0.8972,0.9734,0.748,0.655,0.5754,0.5092,0.602,0.7612,0.8606,1,-0.133,0.6012,0.626,0.6288,0.6676,0.0914,0.1524,-0.1662,-0.061,-0.3988,-0.302,-0.2742,-0.1274,-0.241,0.036,0.0056,0.1606,0.0914,0.421,0.5484,0.8642,0.8642,0.9944,1,0.9196,0.9778,0.9336,0.9612,0.8808,0.7562,0.7922,0.831,-0.0128,0.8786,0.9266,0.6964,0.7604,0.1726,0.1822,-0.1598,-0.0256,-0.3514,-0.2492,-0.3194,-0.1278,-0.2492,-0.016,-0.0576,0.0416,0.0192,0.1948,0.3194,0.425,0.7188,0.8466,1,0.933,0.8242,0.8722,0.9266,0.9904,0.7508,0.7604,0.6518,0.1124,0.7828,0.7078,1,0.7752,0.221,-0.1872,-0.3108,-0.337,-0.4756,-0.5318,-0.4194,-0.442,-0.4756,-0.427,-0.3408,-0.4308,-0.4494,-0.2734,-0.0936,0.2284,0.543,0.8652,0.9812,0.9026,0.8876,0.8576,0.8988,0.9064,0.5132,0.5206,0.5806,-0.0508,0.331,0.9894,1,0.0088,-0.3976,-0.4956,-0.6462,-0.6498,-0.7898,-0.937,-0.7374,-0.7968,-0.8424,-0.6848,-0.6532,-0.6498,-0.5656,-0.5412,-0.338,-0.268,0.2364,0.4606,0.7058,0.7724,0.7092,0.6252,0.7058,0.7688,0.7162,0.5622,0.415,-0.2264,0.531,1,0.7996,-0.034,-0.3306,-0.6152,-0.7274,-0.8518,-0.8518,-0.968,-0.8116,-0.8076,-0.7154,-0.7034,-0.7836,-0.7274,-0.8316,-0.8396,-0.471,-0.2666,-0.1182,0.2986,0.6594,0.8076,0.8036,0.6634,0.8036,0.6392,0.6272,0.507,0.4468,0.0424,0.7238,1,0.6748,0.2606,-0.3986,-0.6704,-0.6882,-0.7016,-0.7728,-0.6614,-0.6926,-0.7194,-0.6482,-0.7238,-0.804,-0.5902,-0.5902,-0.3808,-0.4076,-0.1938,-0.1224,0.3542,0.6792,0.7996,0.8486,0.8084,0.9064,0.844,0.5858,0.3318,0.3408,0.0556,0.7222,0.6666,0.9444,0.4444,0.5,0.1112,0,-0.2222,-0.4444,-0.3888,-0.2778,-0.5,-0.2222,-0.1112,0.3888,0.5,0.7222,0.3888,0.5556,0.6666,0.5556,1,0.8888,0.3334,0.2778,-0.2222,-0.2778,0.1112,0.3888,0.8334,0.9444,-0.0476,0.619,0.619,1,0.8096,0.3334,0.1428,-0.0952,-0.1904,0,-0.0952,0.0476,-0.0476,0.0952,0.4286,0.4762,0.9048,0.9048,0.9524,0.6666,0.7142,0.619,0.5238,0.7142,0.5238,0.4762,0.5238,0.2858,0.6666,0.7142,0.9524,0.8572,-0.1776,0.5888,0.6262,0.5328,0.5888,0.1214,0.0468,-0.3272,-0.1402,-0.3084,-0.3458,-0.5328,-0.1962,-0.3272,0.0654,0.0094,-0.0468,-0.0094,0.3272,0.4392,0.6822,0.8692,0.701,0.944,0.7758,1,0.9252,0.944,0.944,0.7384,0.7758,0.6262,-0.7462,-0.7034,-0.7406,-0.7512,-0.7762,-0.7998,-0.8406,-0.8742,-0.917,-0.927,-0.6376,0.7048,0.4924,0.2474,0.3474,0.2324,0.2574,0.4768,0.4304,-0.0428,-0.3288,-0.4818,-0.5854,-0.6684,-0.734,-0.8714,-0.9142,-0.9228,-0.9628,-1,-1,-1,-1,-0.83,-0.7862,-0.8058,-0.8316,-0.8468,-0.8682,-0.8806,-0.889,-0.9108,-0.8034,-0.4136,0.5522,0.8594,0.3938,0.0578,-0.053,-0.0314,0.0964,0.002,-0.3368,-0.533,-0.6496,-0.7114,-0.7146,-0.7726,-0.855,-0.8554,-0.879,-0.9,-1,-1,-1,-1,-0.8968,-0.8968,-0.88,-0.9134,-0.9168,-0.9334,-0.8568,-0.79,-0.18,0.5432,0.21,-0.6646,-0.5868,-0.569,-0.7934,-0.8956,-0.7734,-0.7468,-0.809,-0.8956,-0.948,-0.904,-0.95,-0.6768,-0.7068,-0.3068,-0.1034,-0.0568,-0.06,-1,-1,-1,-1,-0.3428,-0.4858,-0.8572,-0.9142,-0.9428,-1,-0.8572,-0.9142,0.6572,1,1,1,-0.1428,-0.2286,-0.3428,-0.5428,-0.5714,-0.5714,-0.6858,-0.6,-0.5714,-0.7142,-0.4286,-0.0572,-0.6286,-0.5428,-0.5142,-0.4572,-0.6572,-1,-1,-1,-1,0.3698,0.3716,0.3752,0.3832,0.3928,0.3944,0.3928,0.3792,0.336,-0.058,0.31,0.3802,0.3936,0.4596,0.519,0.6354,0.7128,0.7674,0.8648,0.9768,-0.7066,0.0706,-0.4008,-0.2034,0.482,1,0.8814,-0.275,0.157,0.0414,-0.1322,0.1074,0.0578,0.0662,-0.033,0.1488,0.1074,0.1818,0.1488,0.2148,0.2976,0.3224,0.2148,0.5868,0.438,0.5702,0.5454,0.5538,0.4794,0.7768,0.8678,1,0.7356,0.8264,0.6364,0.7852,0.686,0.3058,0.2232,-0.2066,-0.2752,-0.352,-0.108,-0.0452,-0.0104,-0.0522,-0.108,0.1708,0.3102,0.3102,0.324,0.3032,0.3658,0.2752,0.2474,0.4494,0.4704,0.5192,0.4774,0.6098,0.7422,0.9582,1,0.6586,0.9234,0.8118,0.756,0.5052,0.6098,0.6586,0.2822,0.0872,0.1754,0.1938,0.0092,0.0154,-0.0584,-0.1754,0.1876,0.4584,0.6554,0.563,0.4276,0.5446,0.477,0.5938,0.4954,0.803,0.797,0.6862,0.6062,0.8216,0.8276,1,0.92,0.9016,0.883,0.7416,0.8216,0.8092,0.6124,0.6616,0.4154,-0.0092,-0.9526,-1,1,-1,-0.6,1,0.4,-0.3334,1,-0.5,-0.6774,-0.0968,0.1612,-0.0646,-0.1612,0.2096,-0.1612,0.0968,0.8548,0.758,0.5806,0.7742,0.629,0.4032,0.371,0.7096,0.371,0.258,0.1936,0.6936,1,0.9032,0.9678,0.3226,-0.0968,-0.2904,-0.3388,-0.1936,0.1936,0.0646,-0.5646,'22'
-0.042,0.5866,0.6706,1,0.8184,0.1798,-0.0588,-0.2806,-0.4924,-0.5058,-0.4992,-0.3882,-0.3446,-0.2974,-0.0252,-0.0252,0.032,0.126,0.5798,0.5798,0.8454,0.9092,0.926,0.99,0.8554,0.7816,0.5866,0.5564,0.2538,0.2436,0.4858,0.4084,-0.0834,0.571,0.5462,0.6636,0.5772,0.068,-0.0462,-0.3612,-0.4692,-0.4938,-0.6234,-0.6328,-0.6944,-0.5618,-0.5802,-0.3642,-0.463,-0.2778,0.0772,0.2006,0.4228,0.5896,0.8334,1,0.824,0.966,0.7778,0.8828,0.571,0.6142,0.3118,0.3148,0.1902,0.9302,0.8952,0.8988,0.8046,0.302,0.1518,-0.1938,-0.3298,-0.3578,-0.5462,-0.4102,-0.48,-0.3472,-0.4206,-0.3752,-0.4486,-0.3718,-0.061,0.0436,0.1798,0.309,0.801,0.9336,0.85,0.9476,0.9302,1,0.9406,0.9162,0.794,0.8394,0.148,0.8134,0.72,1,0.6592,0.2616,-0.359,-0.4808,-0.505,-0.5862,-0.8662,-0.9878,-0.8662,-0.7648,-0.639,-0.6106,-0.4808,-0.4198,-0.1684,0.0426,0.002,0.2008,0.5902,0.8134,0.8378,0.8134,0.7606,0.8662,0.7566,0.6106,0.4482,0.4766,0.2366,0.5718,1,0.97,0.003,-0.2396,-0.3742,-0.3444,-0.5778,-0.8982,-0.6468,-0.494,-0.524,-0.494,-0.494,-0.524,-0.47,-0.3174,-0.2814,-0.2276,-0.0808,0.1556,0.3892,0.7186,0.9072,0.9282,0.7456,0.8652,0.9132,0.9342,0.7904,0.6468,0.0602,0.6828,1,0.8192,-0.0522,-0.49,-0.4658,-0.4618,-0.7028,-0.8274,-0.6506,-0.7148,-0.8916,-0.7992,-0.763,-0.6828,-0.8072,-0.6746,-0.4258,-0.4056,-0.2932,-0.1566,0.1406,0.6266,0.747,0.7752,0.6586,0.7792,0.8674,0.8594,0.7792,0.5382,0.2112,0.8498,1,0.9624,-0.1362,-0.3708,-0.3896,-0.4132,-0.6432,-0.9248,-0.5492,-0.6478,-0.8262,-0.6808,-0.6104,-0.784,-0.9062,-0.8122,-0.676,-0.5492,-0.4084,-0.263,0.0516,0.662,0.8592,0.709,0.554,0.6104,0.6666,0.5962,0.4226,0.399,0.0732,0.6586,0.9024,1,0.756,0.122,-0.1708,-0.122,-0.317,-0.4146,-0.317,-0.3658,-0.2196,-0.122,0.0732,0.4634,0.8048,0.8048,0.5122,0.5122,0.7074,0.6586,0.756,0.8536,0.4634,0.1708,0.3658,0.2682,-0.2682,0.2682,0.317,0.3658,-0.0834,0.4584,0.875,1,0.8334,0.1666,0.0416,-0.25,-0.2916,-0.4584,-0.0416,-0.0416,0,-0.0834,-0.125,-0.0416,0.2916,0.5,0.7084,0.7916,0.7916,0.6666,0.7084,0.8334,0.8334,0.2084,-0.0416,-0.0834,-0.0834,0.0416,0.2916,0.375,0.1136,0.7954,0.75,0.8636,0.75,0.2272,0.159,-0.159,-0.2954,-0.3182,-0.591,-0.6364,-0.659,-0.409,-0.2728,-0.1364,-0.4546,-0.159,-0.0682,0.1136,0.2272,0.4546,0.841,1,0.7954,0.8636,0.9546,0.9772,0.75,0.7046,0.5,0.4318,-1,-1,-1,-1,-1,-0.8358,-0.866,-0.8856,-0.9202,-0.9302,-0.7292,0.6956,0.0154,-0.2108,-0.1884,-0.2544,-0.2376,-0.1238,-0.188,-0.365,-0.5062,-0.608,-0.6404,-0.7492,-0.8046,-0.8592,-0.9068,-0.938,-0.9458,-0.961,-1,-1,-1,-1,-1,-1,-1,-1,-0.8734,-0.8964,-0.8954,-0.9234,-0.9026,-0.6382,0.662,0.2552,-0.117,-0.2382,-0.313,-0.3122,-0.2298,-0.2972,-0.4462,-0.5878,-0.6816,-0.7028,-0.7848,-0.8244,-0.8572,-0.8602,-0.8788,-0.9026,-0.915,-1,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.98,-0.9334,-0.9434,-0.3934,-0.23,-0.7978,-0.6334,-0.7178,-0.7824,-0.829,-0.8178,-0.7,-0.7646,-0.8,-0.918,-0.938,-0.9134,-0.7534,-0.81,-0.4368,-0.2368,-0.28,0.01,0.02,-1,-1,-1,-1,-1,-1,-1,-1,-0.5428,-0.8,-0.5142,-0.2286,1,1,1,0.0286,-0.6572,-0.7142,-0.7428,-0.7428,-0.7142,-0.7714,-0.8,-0.6572,-0.9428,-0.7714,-0.6572,-0.4858,-0.5142,-0.7714,-0.7714,-0.8286,-0.7714,-1,-1,-1,0.2016,0.2028,0.216,0.2204,0.2304,0.218,0.1928,0.2034,0.1622,-0.2302,0.47,0.5318,0.587,0.6852,0.7236,0.8088,0.8672,0.9486,0.995,1,-0.7066,0.0706,-0.6448,-0.1536,0.7618,0.98,0.4738,-0.025,1,0.81,0.32,0.77,0.63,0.31,0.35,0.55,0.61,0.79,0.66,0.6,0.57,0.69,0.58,0.82,0.91,0.66,0.8,0.8,1,0.96,0.96,0.98,0.65,0.79,0.43,0.42,0.66,0.68,0.5,0.04,0.3976,0.269,-0.1406,0.269,0.1646,-0.1004,0.0682,0.0442,0.3334,0.4378,0.2128,0.5502,0.486,0.3254,0.5582,0.6706,0.5582,0.478,0.486,0.5824,0.5582,0.976,1,0.727,0.6948,0.9438,0.8072,0.6144,0.5342,0.4698,0.3254,0.1004,0.303,0.341,0.0682,0.0984,-0.0076,0.053,0.5606,0.606,0.5984,0.644,0.7424,0.7424,0.7424,0.6666,0.553,0.8106,0.6742,0.8788,0.6818,0.9696,0.8712,0.7878,1,0.8106,0.8258,0.8864,0.947,0.947,0.8484,0.7804,0.75,0.4242,-0.9584,-1,-1,1,0,0,0.2,-0.2334,1,-0.151,-0.223,-0.41,-0.1942,0.0072,0.0216,0.0216,0.0216,0.5252,0.4388,0.2806,0.151,0.6402,0.4964,0.151,0.2374,0.2518,0.0504,-0.151,0.3094,1,0.8992,0.7122,0.4244,0.0792,-0.3812,-0.3526,-0.1798,-0.151,-0.2374,-0.1942,-0.5396,'22'
-0.211,0.3242,0.432,0.7424,0.885,1,0.8284,0.653,0.432,0.494,0.4228,0.4284,0.4904,0.5214,0.7918,0.7316,0.5872,0.4776,0.5946,0.5252,0.5946,0.4722,0.62,0.5124,0.4648,0.2786,0.3334,0.3608,0.3772,0.3754,0.4228,0.6366,-0.0904,0.4798,0.4168,0.6344,0.9152,1,0.6996,0.8912,0.828,0.8846,0.6888,0.741,0.2884,0.297,0.1578,0.1208,-0.0316,-0.0686,0.0076,-0.012,0.2034,0.2122,0.4232,0.3688,0.1774,0.073,0.149,0.0904,0.073,-0.0142,0.0316,-0.1274,0.014,0.605,0.8488,1,0.818,0.9496,0.5098,0.4706,0.2662,0.1372,0.2914,0.1932,0.0672,-0.0084,-0.2352,-0.283,-0.3698,-0.409,-0.367,-0.5014,-0.2212,-0.1764,-0.0336,-0.042,0.0308,-0.0028,-0.0952,0.0364,-0.0476,-0.3698,-0.0784,0.0392,-0.1138,0.3632,0.9756,1,-0.0434,-0.103,-0.4796,-0.523,-0.496,-0.683,-0.6532,-0.4878,-0.599,-0.42,-0.412,-0.3524,-0.122,-0.2006,-0.038,0.2384,0.3388,0.4878,0.5258,0.5502,0.6612,0.5746,0.393,0.0758,-0.0326,-0.0352,-0.038,0.2276,-0.0462,0.5048,1,0.793,0.0518,-0.0658,-0.4966,-0.698,-0.7342,-0.7174,-0.684,-0.684,-0.8098,-0.9636,-0.7174,-0.8154,-0.5888,-0.4854,-0.102,0.2448,0.5552,0.709,0.7258,0.5412,0.4574,0.6,0.3706,0.2672,0.158,0.102,0.2084,0.3706,-0.0796,0.3874,0.9324,1,0.885,0.0592,-0.2894,-0.6176,-0.8138,-0.7698,-0.9594,-0.7258,-0.7496,-0.6818,-0.638,-0.313,0.2216,0.4856,0.5906,0.6346,0.6718,0.6684,0.736,0.6852,0.1236,-0.181,-0.2522,-0.3198,-0.313,-0.2928,-0.0694,0.1302,0.1222,0.4122,0.584,1,0.7062,0.4352,-0.0306,-0.4352,-0.439,-0.5344,-0.4656,-0.3702,-0.1756,-0.0916,-0.019,0.0344,-0.1298,-0.3932,-0.4122,-0.3168,-0.248,-0.1756,-0.1946,-0.397,-0.8512,-0.7824,-0.752,-0.7558,-0.7938,-0.8244,-0.752,-0.477,-0.15,0.7,0.65,1,1,0.45,0.55,-0.2,0,-0.05,-0.05,-0.25,-0.2,0.1,0.15,0.45,0.6,0.35,0.3,0.75,0.65,0.55,0.5,0.9,0.8,0.1,-0.1,0.25,0.5,0.25,-0.1,0.15,-0.234,0.3192,0.617,1,0.8724,0.8298,0.532,0.4042,0.149,0.1914,0.0212,-0.0638,0.4042,0.2766,0.4468,0.617,0.617,0.5744,0.7022,0.234,0.2766,0.6596,0.5744,0.4894,0.532,0.4894,0.3192,0.4468,0.4894,0.4468,0.7872,0.7446,0.138,0.7242,0.4828,0.5518,0.4828,1,0.7932,0.5518,0.2414,-0.0344,-0.069,-0.2414,-0.1034,-0.069,0,-0.069,-0.2758,-0.1034,-0.7586,-0.862,-0.2414,-0.2068,-0.3794,-0.138,-0.069,0,0,0.1034,0.1034,-0.3104,-0.1724,0,-1,-1,-1,-1,-1,-1,-1,-1,-0.9924,-0.987,-0.7356,0.5948,0.6428,-0.08,-0.6696,0.3864,-0.0914,-0.4914,-0.3908,-0.5106,-0.6696,-0.797,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9922,-0.9912,-0.6848,0.0932,0.6856,-0.2884,-0.8542,-0.4376,-0.6304,-0.7976,-0.7462,-0.7866,-0.8592,-0.9196,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8334,-0.82,-0.3568,-0.7344,-0.7016,-0.7816,-0.8444,-0.82,-0.8786,-0.8986,-0.8772,-0.9258,-0.9472,-0.9458,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,0.5142,1,1,1,1,-0.0572,-0.3428,-0.0858,-0.4286,-0.1428,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.9662,0.9986,1,1,1,1,1,0.9688,0.828,0.3434,-0.5978,-0.6812,-0.6914,-0.6862,-0.6476,-0.596,-0.5248,-0.513,-0.2934,-0.0288,-0.6,0.6942,-0.5888,-0.6388,-0.1908,-0.0964,0.2084,1,-0.7174,0.1304,0.3696,0.4348,0.413,0.5,0.6304,0.6956,0.587,0.674,0.6956,0.8044,0.7826,0.8914,0.9348,0.826,0.7174,0.9782,0.9782,1,0.8914,0.9348,0.7826,0.6304,0.3914,0.3044,0.2174,0.2608,0.2608,0.1304,0,-0.4566,-0.6632,0.2842,0.179,-0.0316,0.0316,-0.0316,0.0316,0.179,0.7474,0.6422,0.221,0.5158,0.7052,0.7052,0.621,0.5578,0.5368,0.8106,0.6632,0.9578,0.9578,0.8736,0.8948,1,0.7474,0.4948,0.3684,0.5368,0.3052,0.3894,0.221,0.0106,0.4694,0.5918,0.5714,0.204,0.0204,0,0.0816,0.2448,0.9184,0.9592,0.5306,0.9388,0.9184,0.5918,0.551,0.6122,0.7552,0.7142,0.6938,0.796,0.7756,0.9184,1,0.6122,0.551,0.3674,0.2244,0.6122,0.4694,0.551,0.5714,0.4286,-0.0472,-1,-1,1,-1,-1,-1,-0.8,-1,0.8154,1,0.9076,0.6308,0.9076,0.6924,0.4154,0.6308,0.477,0.3846,0.2308,0.2616,-0.2616,0.1076,0.323,0.2616,0.077,-0.1692,-0.0154,-0.0462,0.1384,-0.1384,-0.2616,-0.1076,0.0154,-0.0462,0.1384,0.077,-0.077,-0.0154,-0.2616,-0.4154,'23'
-0.1868,0.3232,0.5678,0.759,0.9504,1,0.7838,0.7432,0.3994,0.2578,0.3144,0.3764,0.4366,0.5358,0.504,0.2382,0.148,0.038,0.0044,-0.0186,0.0876,0.0612,0.1514,0.201,0.2506,0.148,0.1018,8e-04,-0.031,-0.0594,-0.1284,-0.0876,-0.0396,0.5606,0.6228,0.792,0.9206,0.9442,0.9828,1,0.775,0.745,0.5734,0.3934,-0.1018,-0.1812,-0.2948,-0.4812,-0.5348,-0.5392,-0.5242,-0.4898,-0.4898,-0.5284,-0.4876,-0.4276,-0.344,-0.3204,-0.4256,-0.4062,-0.327,-0.2562,-0.3698,-0.4512,-0.1024,0.4686,0.7712,1,0.6538,0.5702,0.4826,0.4846,0.4268,0.3612,0.1244,0.0806,-0.0966,-0.3274,-0.3074,-0.5304,-0.4826,-0.4626,-0.4428,-0.3552,-0.2518,-0.2836,-0.2338,-0.1682,-0.1542,-0.1264,-0.1762,-0.208,-0.3034,-0.2616,-0.21,-0.3732,-0.0694,0.4422,1,0.9332,-0.0026,-0.3316,-0.4216,-0.5732,-0.712,-0.7378,-0.653,-0.5886,-0.4448,-0.401,-0.4088,-0.4344,-0.3882,-0.3548,-0.1542,0.0258,0.0772,0.1696,0.3676,0.3676,0.3598,0.252,0.0952,0.2186,0.162,0.0822,0.09,0.1028,0.0178,0.5858,1,0.7562,0.2024,-0.2568,-0.3562,-0.3822,-0.7634,-0.806,-0.8604,-0.806,-0.8012,-0.7088,-0.645,-0.6782,-0.7846,-0.5574,-0.4462,-0.039,0.3704,0.6048,0.6994,0.4508,0.2804,0.432,0.536,0.6214,0.574,0.4532,0.4508,0.4414,0.0638,0.4394,0.8148,1,0.8358,0.4394,0.1004,-0.4472,-0.781,-0.9608,-0.7966,-0.6924,-0.429,-0.2646,-0.1526,-0.0612,0.0404,0.0222,0.2724,0.3976,0.3508,0.3402,0.4602,0.3324,-0.0066,-0.1422,-0.2282,-0.2986,-0.2908,-0.116,0.0326,0.442,0.1836,0.4492,0.623,1,0.7606,0.5508,0.0132,-0.3114,-0.2426,-0.236,-0.0722,-0.0754,-0.1344,-0.2754,-0.4394,-0.4688,-0.6786,-0.718,-0.6754,-0.6328,-0.4394,-0.4558,-0.3344,-0.4852,-0.5312,-0.7344,-0.859,-0.8196,-0.7672,-0.6754,-0.5672,-0.3246,-0.027,0.6756,0.5136,1,0.8918,0.4594,0.2972,-0.027,-0.027,-0.1352,-0.5676,-0.4594,0.027,-0.027,0.4054,0.1892,-0.027,0.6756,0.6756,0.2972,0.1892,0.4054,0.4594,0.6216,0.8918,0.4054,0.2972,0.2432,0.2972,0.1892,0.3514,0.2432,-0.1904,0.3334,0.7142,1,0.8096,0.762,0.3334,0.3334,-0.0476,-0.1428,-0.0952,0.0476,0.1904,-0.1904,0,0.4762,0.6666,0.5714,0.1904,0.3334,0.4286,0.3334,0.5238,0.8096,0.9048,0.381,0.4762,0.3334,0.1904,0.381,0.0952,0.2858,0.3636,1,0.7728,0.9546,0.0454,0.0454,0.2272,0.5,0.7728,0.5454,0.4546,0.5,0.4546,0.0454,0.3182,0.3636,0.4546,0.3636,-0.0454,-0.1364,-0.1818,0.1364,0.1364,0.1364,0.2728,0.2728,0,0.2272,0.091,0.2272,0.1364,0,-1,-1,-1,-1,-1,-1,-1,-0.9842,-0.9874,-0.967,-0.6984,0.7248,0.7868,0.11,-0.2022,0.6036,-0.0764,-0.6254,-0.3364,-0.4438,-0.6228,-0.7558,-0.873,-0.952,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9876,-0.9874,-0.9474,-0.2648,0.1602,0.8662,-0.0438,-0.5682,-0.1286,-0.5298,-0.7898,-0.6552,-0.7006,-0.797,-0.8726,-0.9356,-0.9708,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9186,-0.9268,-0.9234,0.26,-0.7888,-0.75,-0.8376,-0.8826,-0.8576,-0.8448,-0.66,-0.8718,-0.9272,-0.9506,-0.9554,-0.96,-0.8768,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2286,-0.7142,1,1,1,0.1428,1,1,-0.0572,1,-0.1142,-0.1714,-0.3142,-0.2572,-0.6858,-0.6858,-0.2286,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.9428,0.9812,1,1,1,1,1,0.917,0.784,0.3356,-0.4788,-0.5488,-0.5836,-0.627,-0.6644,-0.617,-0.5744,-0.5512,-0.3472,-0.0784,-0.5334,1,-0.1674,-0.5168,-0.028,0.0086,0.2144,1,-0.386,0.0878,0.3334,0.3508,0.4912,0.5438,0.5264,0.5614,0.6666,0.6316,0.6666,0.5264,0.614,0.6666,0.6316,0.6666,0.579,0.7894,0.772,0.7894,0.9298,1,0.8246,0.7018,0.6666,0.5614,0.5614,0.5264,0.4386,0.2106,0.1228,-0.1578,-0.7242,0.0172,0.0172,0.2242,0.2932,0.1552,0,0,0.5518,0.5518,0.3104,0.5,0.5862,0.1552,0.1896,0.3276,0.7068,0.7758,0.6034,0.6724,0.7586,0.9656,0.8276,0.862,1,0.7758,0.7068,0.569,0.431,0.6034,0.5518,-0.2586,0.16,0.3866,0.4,0.0666,-0.04,0.0934,0.0134,0.1334,0.4534,0.32,0.1466,0.44,0.8266,0.44,0.2,0.4266,0.7066,0.6934,0.3866,0.72,1,1,0.76,0.7466,0.7466,0.5466,0.5866,0.5734,0.68,0.5066,0.4934,0.28,0.4094,-1,-1,1,-1,-1,-1,-0.7666,-1,0.6512,0.6976,0.7442,0.6512,0.8372,0.628,0.7906,0.907,0.8604,0.3954,0.814,0.907,0.9534,0.4652,0.4652,1,0.7906,0.9768,0.6046,0.6046,0.7906,0.6046,0.6744,0.721,0.8372,0.9302,0.7906,0.5348,0.6976,0.7906,0.5582,0.0466,'23'
-0.3006,0.362,0.3866,0.5398,0.5828,0.9326,1,0.638,0.5828,0.2576,0.3068,0.1534,0.2208,0.135,0.405,0.3374,0.4478,0.4786,0.7424,0.9264,0.8036,0.638,0.6012,0.6258,0.6748,0.5582,0.4602,0.5154,0.2392,0.227,0.3374,0.4478,-0.2598,0.3492,0.3552,0.4986,0.4926,0.994,1,0.785,0.791,0.4568,0.4806,0.4686,0.5044,0.4388,0.5044,0.5224,0.582,0.7672,0.8268,0.7732,0.7314,0.6238,0.6538,0.5224,0.5104,0.4448,0.409,0.3014,0.218,0.0388,0.1642,0.2716,-0.167,0.4014,0.3866,0.5312,0.576,1,0.9552,0.965,0.9352,0.6608,0.611,0.6408,0.601,0.7058,0.6508,0.8354,0.8004,0.9402,0.8902,0.9102,0.8604,0.616,0.586,0.7856,0.7606,0.7556,0.7008,0.3666,0.4214,0.4264,0.4314,0.4614,-0.1892,0.2972,0.2678,0.4792,0.6216,0.887,0.7838,1,0.8674,0.602,0.4546,0.5676,0.5676,0.6512,0.6462,0.7002,0.7986,0.8378,0.7396,0.7396,0.602,0.5136,0.5626,0.5626,0.6364,0.5578,0.3366,0.2186,0.1942,0.1794,0.1646,0.1696,-0.2118,0.253,0.2648,0.4412,0.7882,0.8648,1,0.953,0.9236,0.8058,0.6236,0.5764,0.6352,0.6058,0.7118,0.7,0.753,0.5882,0.6648,0.6118,0.6764,0.5824,0.7648,0.7706,0.6706,0.3824,0.2412,0.2412,0.1058,0.1236,0.0942,0.1236,-0.2904,0.0538,0.2402,0.3692,0.5412,0.8352,0.9284,1,0.8494,0.577,0.3262,0.3692,0.5126,0.5698,0.706,0.706,0.6774,0.2688,0.448,0.613,0.6272,0.706,0.3476,0.4194,0.2258,0.104,-0.1398,-0.276,-0.362,-0.1684,-0.1612,-0.1612,-0.5278,-0.1204,-0.074,0.037,0.676,0.6482,0.6296,0.4166,0.213,0.1482,-0.0556,0.25,0.463,0.7686,1,0.8426,0.676,0.3888,0.3056,0.426,0.3518,0.1388,0.0278,-0.1666,-0.25,-0.4814,-0.5,-0.3612,-0.4444,-0.2962,-0.2686,0.074,-0.2592,0.4074,0.4444,0.5926,0.7038,0.8888,1,0.7408,0.4444,0.2592,0.3704,0.3334,0.4074,0.3334,0.4444,0.4444,0.4814,0.7038,0.7778,1,1,0.8518,0.8518,0.8888,0.8148,0.6296,0.5926,0.5926,0.4074,0.4074,0.6666,0.7038,-0.2542,0.356,0.3898,0.5594,0.5594,0.9662,1,0.7628,0.661,0.2542,0.356,0.017,0.1186,0.1864,0.356,0.2204,0.5594,0.661,0.8984,0.9322,0.7628,0.356,0.5594,0.4916,0.6272,0.661,0.6272,0.5594,0.2542,0.1864,0.3898,0.4238,-0.2968,0.099,0.2528,0.3406,0.7362,0.7362,0.8462,0.978,1,0.5604,0.4726,0.6044,0.6704,0.6484,0.7362,0.6924,0.5164,0.5604,0.5604,0.6044,0.6484,0.7142,0.6044,0.6044,0.4286,0.2968,-0.099,-0.2748,-0.2528,-0.2308,0.1208,0.2088,-1,-1,-1,-1,-1,-1,-1,-0.9776,-0.9832,-0.632,-0.1026,0.3688,0.8052,0.9382,0.955,0.9046,0.9904,0.9382,0.733,0.494,-0.016,-0.7322,-0.9478,-0.9688,-0.9688,-0.98,-0.988,-0.9848,-0.8894,-0.9574,-0.9406,-0.9784,-0.9792,-1,-1,-1,-1,-1,-1,-1,-0.9886,-0.9892,-0.7146,-0.3956,0.0514,0.2428,0.5494,0.7334,0.7806,0.984,0.8392,0.495,0.281,-0.2436,-0.8504,-0.9618,-0.9776,-0.978,-0.9864,-0.9898,-0.9904,-0.8386,-0.7756,-0.7728,-0.829,-0.822,-1,-1,-1,-1,-1,-1,-1,-0.9068,-0.8934,-0.55,-0.46,-0.655,-0.67,-0.66,-0.69,-0.54,-0.59,-0.57,-0.615,-0.604,-0.592,-0.448,-0.6934,-0.66,-0.7468,-0.8068,-0.9134,-0.9068,-0.38,0.81,0.9966,1,1,-1,-1,-1,-1,-1,-1,-1,-0.6286,1,1,1,0.1428,-0.2286,-0.0858,-0.5428,-0.6858,-0.6286,-0.7714,-0.5428,1,1,1,1,-0.3428,-0.9714,-0.9142,-0.8858,1,1,1,-0.5142,-0.7428,-0.8572,1,1,1,1,1,1,1,1,1,1,0.3562,0.3852,0.3852,0.3712,0.2586,0.1048,0.0498,-0.0256,-0.1796,-0.528,-0.76,-0.5648,-0.4324,-0.1468,0.2112,0.2216,0.4932,1,-0.4932,0.315,0.589,0.6028,0.3972,0.3014,0.3014,0.4384,0.685,0.959,0.959,1,0.9452,0.6986,0.2876,0.315,0.3836,0.4932,0.3836,0.1918,-0.2876,-0.0274,-0.1644,-0.3836,-0.2328,-0.178,-0.274,-0.1096,-0.0684,-0.0958,-0.1506,-0.5616,-0.3032,0.5204,0.991,1,0.5384,0.4842,0.4118,0.5204,0.7828,0.8914,1,0.8824,0.828,0.7376,0.3574,0.3936,0.5566,0.6562,0.5566,0.1856,0.2126,0.4298,0.1132,0.0498,-0.0046,0.077,0.1402,0.1764,0.2218,0.3484,0.267,-0.2218,-0.1296,0.3148,0.6296,0.6204,0.4722,0.2686,0.3612,0.3982,0.4166,0.9722,1,0.6944,0.7408,0.5556,0.1944,0.1296,0.3982,0.3334,0.4166,0.0462,0,0.176,-0.1018,-0.0926,-0.0648,0.213,0.3334,0.0926,0.2592,0.2408,0.1112,-0.0092,-0.474,-1,-1,1,-0.2,-1,-1,-0.6334,1,-0.8204,-0.6886,-0.521,-0.3772,-0.1138,-0.2456,0.0898,0.1856,0.1616,0.2574,0.1616,0.3174,0.3414,0.2216,0.0538,0.1258,0.2934,0.3174,0.2456,0.2694,0.497,0.8084,0.7724,0.3294,0.6408,0.9282,0.8324,0.6526,0.6408,1,0.8802,0.4372,'24'
-0.2748,0.3712,0.3824,0.5864,0.5638,1,0.9604,0.3484,0.3484,-0.0538,-0.1104,0.1558,0.1048,0.0708,0.0822,0.1388,0.2352,0.524,0.5128,0.6034,0.473,0.592,0.4278,0.3768,0.3882,0.4788,0.3484,0.2748,0.2804,0.2692,0.0934,0.1672,-0.2208,0.4224,0.4224,0.5912,0.5804,1,0.9892,0.733,0.7276,0.237,0.2262,0.395,0.3788,0.357,0.3788,0.3788,0.395,0.8092,0.8474,0.831,0.8692,0.564,0.624,0.4442,0.5694,0.5858,0.613,0.297,0.308,0.1608,0.1772,0.2806,-0.1386,0.4256,0.4056,0.602,0.5566,1,0.9546,0.9396,0.8942,0.5768,0.5012,0.471,0.4256,0.4912,0.471,0.6826,0.7028,0.879,0.869,0.9042,0.874,0.7732,0.6776,0.7482,0.6424,0.6222,0.4508,0.3904,0.3552,0.335,0.4308,0.4106,-0.2702,0.2148,0.1594,0.4088,0.5982,0.769,0.8614,1,0.7414,0.5796,0.4364,0.4364,0.4504,0.3996,0.4318,0.492,0.6536,0.6074,0.709,0.6998,0.5428,0.5012,0.478,0.4458,0.5334,0.492,0.2424,0.0716,0.104,0.127,0.1778,0.03,-0.2738,0.1274,0.2792,0.3766,0.588,0.6044,0.794,0.9566,1,0.664,0.3062,0.2196,0.2628,0.1978,0.187,0.4688,0.5718,0.6044,0.3496,0.4364,0.5502,0.5772,0.4364,0.4364,0.393,0.2682,0.1924,0.084,-0.2032,-0.0406,0.0406,-0.0028,-0.3594,-0.1242,0.1176,0.1504,0.3856,0.5424,0.915,1,0.9934,0.6406,0.438,0.4576,0.3594,0.6144,0.6862,0.8954,0.83,0.6536,0.464,0.451,0.5686,0.6078,0.6536,0.4968,0.1176,0.1112,-0.17,-0.2352,-0.3726,-0.2418,-0.3202,-0.3334,-0.509,-0.1624,-0.148,0.1842,0.4296,0.8122,0.9856,0.9278,0.7256,0.5524,0.4224,0.4152,0.4224,0.5812,0.9206,1,0.9062,0.6824,0.5524,0.7906,0.834,0.6318,0.4224,0.0542,-0.1552,-0.1768,-0.1986,-0.1624,-0.5306,-0.2924,-0.2924,-0.3358,-0.1482,0.4814,0.4814,0.7408,0.7778,1,1,0.5926,0.2962,0.1482,0.074,0.2962,0.2222,0.3334,0.4074,0.4444,0.4814,0.6666,0.5926,0.7778,0.7408,0.8518,0.4814,0.6666,0.4814,0.6666,0.4074,0.5556,0.4814,0.5556,0.2962,0.4074,-0.2692,0.3846,0.3846,0.577,0.577,1,1,0.5,0.3846,0,-0.1154,0.077,0.0384,-0.0384,-0.1154,-0.2308,0.3076,0.5384,0.5,0.6154,0.5,0.5,0.5384,0.3462,0.423,0.5,0.423,0.3462,0.3462,-0.077,0,0.1924,-0.325,-0.075,0.15,0.2,0.225,0.45,0.775,0.8,0.9,0.675,0.2,0.35,0.075,0.4,0.575,1,0.95,0.875,0.375,0.675,0.575,0.725,0.85,0.625,0.45,0.325,-0.2,-0.375,-0.4,-0.375,-0.425,-0.325,-1,-1,-1,-1,-1,-1,-1,-0.9814,-0.975,-0.9202,-0.465,0.5512,0.6338,0.695,0.8026,0.9378,0.9704,0.6958,0.3008,-0.0366,0.0246,-0.3278,-0.8878,-0.962,-0.9796,-0.974,-0.9834,-0.9842,-0.9834,-0.9814,-0.9778,-0.8758,-0.923,-1,-1,-1,-1,-1,-1,-1,-0.9886,-0.9862,-0.787,-0.231,-0.0154,-0.0468,-0.0138,0.4534,0.6488,0.953,0.4064,0.0464,-0.0924,0.0696,-0.3308,-0.9304,-0.9282,-0.9792,-0.9846,-0.9876,-0.9874,-0.9846,-0.9844,-0.9844,-0.7148,-0.6906,-1,-1,-1,-1,-1,-1,-1,-0.9594,-0.8868,-0.78,-0.2,-0.675,-0.73,-0.684,-0.596,-0.652,-0.66,-0.688,-0.644,-0.608,-0.58,-0.5,-0.5334,-0.4668,-0.7468,-0.8934,-0.86,-0.9668,-0.9,-0.86,-0.8,-0.58,0.5632,-1,-1,-1,-1,-1,-1,-1,-0.1428,0.6286,1,1,0.5428,-0.4,-0.4,-0.4858,-0.6858,-0.7428,-0.6858,-0.5428,-0.3428,0.6286,1,1,-0.0572,0.1428,-0.7142,-1,-0.9428,-0.9142,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.275,0.275,0.2602,0.2486,0.2472,0.2534,0.2444,0.1256,-0.0088,-0.3378,-0.7466,-0.4942,-0.2808,0.0746,-0.0572,-0.0482,-0.0266,1,-0.6032,-0.0158,0.365,0.5396,0.4126,0.3492,0.4126,0.5556,0.8254,0.9366,0.9366,0.9366,1,0.9682,0.6508,0.635,0.6666,0.6666,0.635,0.619,0.7778,0.7142,0.0794,0.0952,0.1904,0.0952,0.1746,0.1428,0.2858,0.254,0.2222,-0.254,-0.4244,-0.1798,0.4388,0.4964,0.1224,0.108,-0.0072,0.295,0.6546,0.813,0.7842,0.7842,1,0.8274,0.4532,0.3382,0.6258,0.6258,0.6258,0.3382,0.7266,0.669,0.2518,-0.1654,-0.0936,0.0072,0.223,0.036,0.1224,0.4388,0.151,-0.3956,-0.2388,0.058,0.7162,0.7806,0.4968,0.2646,0.2388,0.3936,0.458,0.8968,1,0.7806,0.8322,0.6,0.4968,0.458,0.5484,0.4968,0.3548,0.342,0.4194,0.2516,-0.0452,-0.1096,-0.2388,-0.0064,-0.0194,-0.1742,0.0064,0.2,0.1096,-0.4968,0.8266,-1,-1,1,-1,-1,-1,-0.7334,1,-0.9484,-0.7806,-0.329,-0.2646,-0.2388,0.3032,0.2646,0.187,0.4322,0.4194,0.471,0.4838,0.2774,0.3806,0.3032,0.3806,0.5354,0.2516,0.4194,0.471,0.3548,0.7548,0.7548,0.6646,0.9096,1,0.9226,0.9484,0.8968,0.8064,0.8322,0.5354,'24'
-0.1346,0.3516,0.9074,1,0.835,0.7424,0.2128,0.1144,-0.3024,-0.4558,-0.806,-0.8148,-0.89,-0.8264,-0.7684,-0.8784,-0.8148,-0.864,-0.8756,-0.809,-0.9044,-0.751,-0.5862,-0.5688,-0.7684,-0.673,-0.6354,-0.3778,-0.4038,-0.4356,-0.8234,-0.89,-0.3484,0.101,0.1836,0.4006,0.6734,0.8048,0.9208,1,0.6464,0.6616,0.1684,0.0388,-0.192,-0.308,-0.3888,-0.5286,-0.4748,-0.559,-0.4646,-0.1448,-0.1162,-0.074,-0.106,-0.3048,-0.3654,-0.3974,-0.4562,-0.3182,-0.2878,-0.2458,-0.1026,-0.0388,-0.3424,0.0374,0.1692,0.3138,0.595,0.6378,0.873,0.8538,1,0.8856,0.6584,0.382,0.2136,-0.0294,-0.228,-0.2406,-0.2978,-0.2978,-0.0898,-0.0104,0.0818,0.1104,0.0436,-0.1596,-0.3106,-0.4536,-0.5186,-0.3424,-0.228,-0.0278,-0.0072,-0.147,-0.3968,-0.095,0.15,0.181,0.4076,0.6216,0.7294,1,1,0.872,0.7624,0.5156,0.2138,0.1792,0.0182,-0.0566,-0.1152,-0.1554,-0.1188,0.0566,0.1536,0.2212,0.1828,-0.0164,-0.1828,-0.245,-0.3144,-0.309,-0.1756,0.0256,-0.011,-0.2304,-0.4072,-0.1326,0.0658,0.075,0.3102,0.4186,0.7208,1,0.9792,0.7716,0.7302,0.7486,0.594,0.4048,0.3056,0.1326,0.0104,-0.0888,-0.0196,0.1004,0.0912,0.255,0.1604,-0.0358,-0.1464,-0.2848,-0.3864,-0.4326,-0.5802,-0.384,-0.2526,-0.3126,-0.2864,-0.0506,0.1362,0.2374,0.6814,0.9786,1,0.8192,0.4916,0.0016,-0.1424,-0.1302,-0.0812,0.1424,0.412,0.5804,0.7612,0.706,0.6202,0.4702,0.6508,0.6846,0.5252,0.2344,0.0322,-0.1332,-0.32,-0.4456,-0.6294,-0.4978,-0.5528,-0.317,-0.2424,-0.016,0.2744,0.4938,0.6992,0.4726,0.207,-0.4938,-0.5328,-0.77,-0.9434,-0.8938,-0.7416,-0.653,-0.5434,-0.3274,-0.1362,0.3558,0.7522,0.8832,0.8194,0.9434,1,0.7592,0.4654,0.2424,0.0796,-0.016,-0.1894,-0.2778,-0.239,0.0548,0.65,0.9,1,0.95,0.85,0.65,0.65,0.55,-0.05,0.25,0.35,0.2,0.1,0.25,0.25,0.25,0.15,-0.05,0.2,0.15,-0.6,-0.1,-0.15,0.35,0.25,-0.15,0.1,-0.05,-0.05,-0.25,-0.15,0,0.3142,0.8286,1,1,0.9428,0.6572,0.4286,0.3714,0.0858,-0.3142,-0.4858,0.0286,0.0286,-0.0858,-0.2,-0.5428,-0.1428,-0.0858,-0.2,-0.1428,-0.2572,-0.0858,-0.0858,-0.0858,0.0858,-0.0858,-0.1428,0.0858,0.0286,-0.0858,-0.2,-0.4286,-0.4286,-0.1428,0.065,-0.013,0.3766,0.4026,0.5324,1,0.8442,0.7402,0.7142,0.8702,0.7142,0.7662,0.5064,0.3246,0.065,0.091,0.1168,0.039,0.2468,0.039,-0.1168,0.013,-0.1168,-0.1948,-0.2468,-0.3246,-0.6104,-0.3246,-0.4026,-0.7662,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7762,-0.786,-0.4048,0.6792,0.7058,0.6188,0.366,0.2224,0.0932,-0.1842,-0.3698,-0.4316,-0.5982,-0.7304,-0.8388,-0.9266,-0.9694,-0.9732,-0.9794,-0.9786,-0.981,-0.9764,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9232,-0.9272,-0.7852,0.0058,0.8688,0.6906,0.762,0.74,0.6282,-0.1312,-0.5732,-0.6578,-0.797,-0.8808,-0.9094,-0.9426,-0.9642,-0.968,-0.9734,-0.9808,-0.984,-0.9854,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9868,-0.97,-0.9324,-0.7908,-0.6858,-0.6886,-0.6658,-0.6758,-0.6972,-0.76,-0.823,-0.7246,-0.7258,-0.71,-0.35,-0.27,-0.1734,-0.2968,-0.41,-0.6,-0.74,-0.7734,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.0572,-0.9714,0.4572,1,0.1428,-0.6286,-0.6286,-0.8,-0.5428,-0.3714,-0.1428,-0.6858,-0.6,-0.6,-0.6,-0.8286,-0.8,-0.6858,-0.6572,-0.7142,-0.6286,-1,-1,-1,0.2942,0.3332,0.4466,0.516,0.6406,0.7588,0.8978,1,1,1,-0.0656,-0.0374,0.0128,0.021,0.0602,0.055,-0.0506,-0.2192,-0.4458,-0.481,-0.5866,0.6706,-0.9264,-0.925,-0.8976,-0.8254,-0.7088,-0.3166,1,0.9708,0.7664,0.489,0.1678,0.1824,0.0656,0.0948,0.1678,0.197,0.0364,0.0656,0.1386,0.0802,0.2262,-0.051,-0.2992,-0.1532,-0.1094,-0.124,-0.051,-0.1678,0.0218,-0.124,-0.124,-0.124,-0.3284,-0.27,0.0218,-0.0802,-0.3868,-0.5474,1,0.9632,0.7546,0.362,0.1412,0.092,0.2392,0.1534,0.1534,-0.1656,0.1166,0.043,0.043,-0.0062,0.092,-0.1042,0.0306,-0.0674,-0.1166,-0.043,-0.0184,-0.1902,-0.1042,0.1534,-0.3374,-0.2516,-0.1534,-0.276,-0.2024,-0.1042,-0.1534,-0.497,0.9886,1,0.7272,0.534,0.1136,0.0454,0.034,0.0568,0.0228,0.0228,0.091,0.1136,0.1932,0.1932,0.2046,-0.0682,0.1364,0.0114,0.0454,0.034,0.1022,0.0228,0.159,-0.1022,-0.091,-0.0568,-0.1022,0.0228,-0.0796,0.034,0,-0.3978,-0.999,-1,-1,1,0,-1,0.4,-0.5334,-1,0.1344,0.1044,0.0598,0.015,-0.0298,-0.0298,0.0896,0.1344,0.1642,0.8956,1,0.8806,0.8806,0.612,0.4926,0.2986,0.7462,0.6418,0.2238,0.2388,0.1492,0.4328,0.4478,-0.209,-0.3284,-0.1792,-0.1642,-0.2238,-0.0598,-0.0448,-0.0896,-0.2238,'25'
-0.147,0.3454,0.8118,0.9408,1,0.9176,0.3608,0.3016,-0.0078,-0.2886,-0.7422,-0.732,-0.6366,-0.6856,-0.853,-0.7938,-0.781,-0.6726,-0.7448,-0.7268,-0.603,-0.603,-0.397,-0.3686,-0.2448,-0.3298,-0.4202,-0.2628,-0.1882,-0.4846,-0.5128,-0.4872,-0.3644,0.0576,0.151,0.3286,0.623,0.7228,0.9532,1,0.7772,0.7554,0.2632,0.1806,0.0374,-0.109,-0.1292,-0.2742,-0.2196,-0.2632,-0.2664,0.0094,-0.0576,0.19,0.1402,0.109,-0.0934,-0.0608,-0.0686,-0.0404,-0.2788,-0.3006,-0.0062,-0.0264,-0.3892,-0.0032,0.1298,0.2594,0.5206,0.5664,0.7564,0.7754,1,0.8814,0.6488,0.4352,0.1962,0.0538,-0.0064,-0.0886,-0.1282,-0.201,-0.1756,-0.0554,0.0284,0.1392,0.1772,0.1724,-0.0554,-0.114,-0.182,-0.2026,-0.375,-0.201,-0.0728,-0.0064,-0.4262,-0.1384,0.1346,0.1476,0.3322,0.5922,0.7288,0.9816,1,0.8892,0.7842,0.6826,0.3302,0.1882,0.1292,-0.0536,-0.0682,-0.1292,-0.1034,0,0.1402,0.2564,0.3062,0.2066,-0.096,-0.1384,-0.2436,-0.238,-0.2436,-0.2122,-0.321,-0.345,-0.4334,-0.2104,0.0558,0.0172,0.251,0.4078,0.7318,0.9334,1,0.5236,0.5752,0.5536,0.3992,0.2726,0.1438,-0.0944,-0.103,-0.1782,-0.0278,-0.0172,0.1674,0.3262,0.1502,-0.1202,-0.309,-0.3562,-0.558,-0.4914,-0.47,-0.3798,-0.3906,-0.4356,-0.278,-0.0014,0.1568,0.0382,0.5204,0.7364,1,0.7576,0.3782,0.1726,-0.1198,-0.0936,0.1252,0.4176,0.5732,0.7022,0.7286,0.6126,0.4492,0.249,0.328,0.357,0.2648,0.033,-0.033,-0.1462,-0.2148,-0.4282,-0.4388,-0.307,-0.2412,-0.3018,-0.11,0.2028,0.1616,0.3884,0.8556,0.8282,0.3436,-0.0584,-0.4914,-0.6666,-0.9622,-0.8316,-0.8042,-0.536,-0.347,-0.1134,0.2406,0.7114,0.9312,1,0.9828,0.6288,0.4536,0.488,0.543,0.354,-0.079,-0.1822,-0.1924,-0.299,-0.165,-0.1752,0.421,0.8948,1,1,0.8948,0.6842,0,0.3684,0.2632,0.1052,-0.2106,0.0526,0.1578,0,-0.0526,-0.2632,0.1052,0.3158,0.2106,-0.2632,0.1052,0.1052,0.1052,0,0.1578,0.1052,-0.421,0.1052,0.3684,0.2106,0,-0.3158,0.2222,0.6666,1,0.9444,0.8888,0.3888,0.0556,-0.4444,-0.2778,-0.5,-0.2778,-0.3334,-0.1666,-0.0556,-0.3334,-0.6112,-0.8888,-0.2222,-0.1666,-0.7222,-0.5556,-0.2778,-0.2222,-0.3888,-0.0556,0,-0.3888,-0.0556,0.1666,0,0,-0.2222,-0.449,-0.1836,0.1224,0.1632,0.2858,0.5918,0.7756,0.9184,1,0.9796,0.8776,0.6326,0.3266,0.2654,0.1428,-0.0204,0,-0.0816,-0.0612,0.0816,0.204,0.2244,0.4082,0.2858,-0.102,-0.1428,-0.1836,-0.1632,-0.1224,-0.2654,-0.2244,-0.2858,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.819,-0.8098,-0.2434,0.8236,0.6228,0.3734,0.3126,0.1452,-0.0016,-0.3178,-0.492,-0.5262,-0.575,-0.733,-0.854,-0.924,-0.9612,-0.9764,-0.9726,-0.9756,-0.9764,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9352,-0.9332,-0.6702,0.4938,0.7912,0.6258,0.8858,0.8368,0.4576,-0.3116,-0.5754,-0.7106,-0.7668,-0.8734,-0.914,-0.9294,-0.9452,-0.9636,-0.9728,-0.978,-0.9844,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9868,-0.9834,-0.903,-0.7616,-0.6872,-0.6786,-0.6444,-0.6672,-0.6686,-0.7686,-0.7676,-0.8656,-0.811,-0.8456,-0.5622,-0.299,-0.069,-0.249,-0.599,-0.7456,-0.9456,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,-0.6,1,1,-0.1714,-0.9142,-0.7714,-0.6,-0.8572,-0.6572,-0.5142,-0.7142,-0.3428,-0.1714,-0.6,-0.6572,-0.8,-0.2572,-0.3428,-0.6,-0.4286,-1,-1,-1,0.3516,0.447,0.5274,0.639,0.7588,0.8696,0.979,1,1,1,-0.032,0.062,0.1094,0.2194,0.2514,0.2616,0.1676,-0.012,-0.2542,-0.42,-0.5466,0.7176,-0.9318,-0.9056,-0.8448,-0.7258,-0.5896,-1,1,0.9766,0.7544,0.579,0.4152,0.345,0.2046,-0.0058,0.0292,-0.041,0.2632,0.1112,0.2748,0.462,0.0292,0.1112,0.041,0.0644,0.0292,0.0292,0.228,0.1812,-0.0878,0.193,0.31,0.1346,0.2046,0.1462,-0.228,-0.1112,-0.0644,-0.4152,1,0.9516,0.6606,0.491,0.1878,0.0182,0.2,0.1758,0.2484,0.2,-0.1758,0.2,0.2606,0.2606,-0.006,0.1152,-0.0182,-0.091,0.0304,0.006,-0.0546,0.1272,-0.0182,0.1152,-0.006,-0.006,-0.1878,0.1272,0.0182,-0.0182,-0.2848,-0.3212,1,1,0.7114,0.4742,0.0928,0.0824,0.0206,0.165,0.0412,-0.1238,0.2268,0.0928,0.134,0.0618,0.1134,-0.1134,-0.0928,-0.031,0.0104,0.1134,0.1238,-0.103,0.1546,0.2784,0.165,-0.0516,0.1134,0.0206,-0.103,0.1134,-0.0206,-0.567,-0.9976,1,-1,-1,-1,-0.2,0.4,-1,-1,-0.4194,-0.2742,-0.2258,-0.1452,-0.1612,-0.0968,0.0484,0.1452,0.4678,0.8388,0.7258,0.5968,0.9194,0.887,0.6612,0.4354,1,0.6936,0.6774,0.4032,0.6936,0.4838,0.4032,0,-0.2904,-0.2742,-0.3548,-0.3226,-0.3226,-0.2742,-0.742,-0.8388,'25'
0.021,0.7082,0.6338,1,0.838,0.2544,0.1636,-0.0406,-0.0664,-0.0568,0.0016,0.1994,0.154,0.3064,0.4004,0.692,0.773,0.9124,0.8638,0.5884,0.637,0.5494,0.6176,0.7148,0.8088,0.7212,0.53,0.4328,0.449,0.4036,0.3938,0.5202,-0.217,0.5118,0.541,0.5276,0.5838,0.1114,0.1294,-0.1248,0.0282,-0.208,-0.0642,-0.208,-0.0348,-0.1226,0.1092,0.0686,0.1968,0.217,0.5186,0.5996,0.838,0.9866,0.8088,0.8852,0.7682,1,0.8966,0.6782,0.6242,0.496,0.5028,0.6512,-0.0658,0.6292,0.6526,0.6174,0.6384,0.1478,0.1878,0.0306,0.0938,-0.2464,-0.1478,-0.2042,-0.0752,-0.2276,-0.1126,-0.1056,0.0282,-0.0212,0.1808,0.3428,0.5704,0.7136,0.8756,1,0.953,0.9624,0.946,0.9694,0.8968,0.7018,0.669,0.7112,-0.0544,0.5272,0.5846,0.8854,0.6648,0.1318,-0.2264,-0.3152,-0.4154,-0.5644,-0.4786,-0.4928,-0.4872,-0.4126,-0.4068,-0.447,-0.424,-0.3296,0.0058,0.1432,0.384,0.6476,0.9026,1,0.917,0.9054,0.8396,0.8968,0.7164,0.4356,0.4068,0.3754,-0.1846,0.3344,1,0.9478,0.0244,-0.338,-0.5226,-0.7108,-0.8328,-0.8502,-0.9094,-0.9756,-0.8362,-0.8154,-0.7874,-0.7212,-0.6062,-0.5156,-0.2962,-0.1672,0.1568,0.4356,0.7108,0.8606,0.8398,0.7318,0.575,0.5122,0.4774,0.2544,0.129,0.1254,-0.0378,0.717,1,0.6944,0.2604,-0.0452,-0.5622,-0.649,-0.8,-0.7358,-0.9472,-0.9396,-0.9246,-0.8792,-0.8792,-0.8528,-0.8264,-0.6944,-0.4792,-0.3056,-0.1208,0.0754,0.5132,0.8264,0.7622,0.6944,0.668,0.7584,0.5584,0.3924,0.3548,0.3284,0.1524,0.6158,1,0.6556,0.0816,-0.4392,-0.4922,-0.4878,-0.479,-0.7396,-0.969,-0.8146,-0.8058,-0.638,-0.6954,-0.5674,-0.5894,-0.6158,-0.4834,-0.139,-0.042,0.3864,0.7836,0.8544,0.5894,0.6822,0.6556,0.735,0.4834,0.3024,0.192,0.298,0.2572,0.7714,0.8286,0.9428,0.4858,0.3142,-0.0286,-0.2,-0.8286,-0.2572,0.2572,0.4286,-0.1428,0.2572,0.1428,0.7142,0.6572,1,0.4286,0.4858,0.4286,0.3714,0.0858,0.7142,0.7142,0.6,0.6572,0.4286,0.4286,0.5428,0.6,0.4858,0.0526,0.6842,0.7894,1,0.7894,0.2106,-0.1052,0,-0.0526,-0.0526,0,0.1052,0.1578,0.3158,0.5264,0.579,0.579,0.421,0.2632,0.1578,0.2106,0.0526,0.4736,0.5264,0.3684,0,-0.2632,0.3684,0.3158,0.3684,0.3158,0.1578,0.1112,0.6444,1,0.8666,0.3112,0.0666,-0.2222,-0.5112,-0.3778,-0.6222,-0.8,-0.8,-0.6,-0.4444,-0.4666,-0.3112,-0.2444,-0.1334,-0.0666,-0.0444,0.1778,0.5334,0.7112,0.8222,0.8222,0.6666,0.3778,0.6444,0.5334,0.1112,0.2888,0.4,-0.913,-0.6538,-0.3852,-0.4404,-0.5408,-0.6418,-0.737,-0.7962,-0.8222,-0.8152,-0.5744,0.5668,0.6812,0.3618,0.262,0.1832,0.4366,0.7422,0.3338,-0.1984,-0.495,-0.657,-0.7084,-0.8494,-0.9428,-0.9658,-0.9746,-1,-1,-1,-1,-1,-1,-0.938,-0.7708,-0.5924,-0.607,-0.6446,-0.703,-0.7232,-0.7548,-0.7474,-0.687,-0.5544,0.202,0.9148,0.6004,0.3864,0.29,0.2776,0.282,-0.0912,-0.4646,-0.6592,-0.769,-0.7962,-0.8804,-0.9064,-0.926,-0.8028,-1,-1,-1,-1,-1,-1,-0.88,-0.9034,-0.86,-0.7034,-0.58,-0.4068,-0.02,0.0532,0.3166,0.6732,0.0432,-0.584,-0.528,-0.418,-0.684,-0.758,-0.788,-0.932,-0.902,-0.902,-0.942,-0.931,-0.7968,-0.5468,-0.2368,-0.17,-0.0034,-1,-1,-1,-1,-1,-1,0.8286,1,1,1,-0.7428,-0.7428,-0.6858,-0.9142,-0.8572,-0.7142,-0.2286,1,1,-0.4858,-0.9142,-0.7714,-0.5142,-0.7428,-0.2572,-0.4572,-0.3714,-0.9142,-0.7142,-0.4,-0.6,-0.2572,1,-1,-1,-1,-1,-1,-1,0.247,0.2614,0.2838,0.3204,0.355,0.3838,0.396,0.3976,0.3964,0.0108,-0.1418,-0.104,-0.0566,0.0446,0.1754,0.2966,0.4192,0.6082,0.8336,0.9496,-0.7066,0.1882,-0.504,-0.3488,0.0024,0.4668,0.6274,-0.35,0.3726,0.6252,0.2288,-0.22,-0.255,-0.329,0.037,0.2462,0.1372,0.0894,0.0108,0.0066,0.2114,0.1852,0.1982,0.1154,0.1808,0.1678,0.1504,0.3812,0.6252,0.586,0.6776,0.7778,0.8736,0.9694,0.7952,0.8692,0.9912,1,0.926,0.6078,-0.0288,-0.101,-0.5632,-0.7112,-0.426,-0.4802,-0.3862,-0.0506,-0.0902,-0.166,-0.0506,0.1156,0.213,0.0722,0.0938,0.13,0.2418,0.278,0.1986,0.3972,0.4512,0.473,0.5198,0.592,0.8448,0.8844,0.7472,1,0.9676,0.8086,0.8808,0.3718,0.0056,-0.047,-0.6234,-0.7364,-0.5254,-0.1526,-0.1864,0.2468,0.2542,0.1338,0.017,0.096,0.1676,0.1338,0.2166,0.2204,0.4312,0.3446,0.4012,0.386,0.4538,0.5292,0.6308,0.759,1,0.8758,0.902,0.9172,0.8154,0.936,0.9698,0.2806,-0.902,-1,1,-1,1,0.8,-0.6,0.4666,-1,-0.3272,-0.2336,0.0094,0.1028,0.028,-0.0842,0.2524,0.3832,0.6074,0.757,0.514,0.2336,0.3458,0.5514,0.3644,0.6074,0.7196,0.3084,0.271,0.6636,0.8692,1,0.7384,0.6262,0.4954,0.5328,0.5514,0.5514,0.4766,0.458,0.4206,0.3084,'26'
0.1072,0.8582,0.7854,1,0.82,0.2388,0.0276,-0.1072,-0.346,-0.301,-0.353,-0.2492,-0.2214,-0.0588,-0.1246,0.1212,0.3252,0.5328,0.6436,0.7024,0.5398,0.6816,0.481,0.5294,0.6782,0.7682,0.4878,0.4464,0.038,-0.0796,-0.0208,0.0796,0.0948,0.8278,0.7956,0.8774,0.8072,0.2642,0.162,0.0044,-0.1066,-0.5154,-0.6614,-0.4744,-0.5358,-0.4306,-0.3956,-0.0832,-0.235,-0.0306,0.235,0.5532,0.5474,0.8832,0.7928,1,0.816,0.7052,0.597,0.6262,0.4364,0.3722,0.3636,0.5708,0.1054,0.7996,0.6822,1,0.734,0.2538,-0.2504,-0.437,-0.6234,-0.703,-0.6304,-0.6374,-0.5198,-0.5234,-0.6442,-0.6304,-0.4992,-0.4646,-0.1364,0.0328,0.354,0.5578,0.8964,0.9206,0.81,0.627,0.6234,0.6788,0.5336,0.361,0.323,0.2642,-0.0116,0.429,0.9732,1,0.0384,-0.4124,-0.6494,-0.8164,-0.7328,-0.7328,-0.8398,-0.9432,-0.8798,-0.7028,-0.6894,-0.8064,-0.813,-0.656,-0.369,-0.1186,-0.0584,0.192,0.5626,0.7696,0.7864,0.6928,0.5826,0.7128,0.6494,0.459,0.2554,0.1652,0.0682,0.5202,1,0.8452,-0.0278,-0.2074,-0.4644,-0.6594,-0.8266,-0.8142,-0.901,-0.9722,-0.8174,-0.805,-0.8112,-0.6502,-0.6996,-0.7152,-0.5448,-0.4148,-0.2508,-0.0712,0.3312,0.5914,0.6718,0.6316,0.5202,0.6038,0.582,0.4768,0.3994,0.3622,0.1838,0.7162,1,0.6532,0.0018,-0.1768,-0.408,-0.6428,-0.7022,-0.7374,-0.8074,-0.6112,-0.7232,-0.9264,-0.909,-0.7162,-0.7514,-0.6778,-0.5972,-0.5692,-0.2574,-0.1348,0.1104,0.338,0.5062,0.4746,0.4256,0.5376,0.401,0.1838,0.1698,0.0894,0.319,0.681,1,0.6666,0.2762,-0.338,-0.5666,-0.4904,-1,-0.919,-0.7762,-0.8096,-0.819,-0.7286,-0.7714,-0.9096,-0.8,-0.7476,-0.6714,-0.4714,-0.2334,0.0524,0.7428,0.7762,0.7428,0.7666,0.7286,0.8904,0.6714,0.4048,0.062,0.219,0.2432,0.946,0.8378,0.6216,0.4594,0.2432,0.027,0.081,-0.5136,0.1352,0.2432,0.081,0.027,0.3514,0.027,0.1892,0.8918,0.7838,0.8918,0.8918,0.6756,0.7298,0.5676,0.5676,0.5136,0.6216,0.946,0.946,0.7838,1,0.946,0.6756,0,0.6316,0.6842,1,0.6316,0.0526,-0.2106,-0.2106,-0.3684,-0.1578,-0.3684,-0.421,0.0526,-0.1052,-0.2106,0.5264,0.6842,0.6842,0.6316,0.2106,0.2632,0.5264,0.0526,0.1052,0.7894,0.6842,0.0526,0.1578,0.0526,-0.1578,-0.1578,0.1578,0.0958,0.6986,1,0.7534,-0.1506,-0.1506,-0.452,-0.589,-0.726,-0.6986,-0.726,-0.6986,-0.8904,-0.6438,-0.726,-0.726,-0.6986,-0.589,-0.6438,-0.726,-0.2876,-0.178,0.1506,0.4246,0.6164,0.6164,0.178,0.4794,0.3972,-0.0136,0.1232,0.041,0.2048,0.1806,-0.0672,-0.376,-0.6386,-0.7364,-0.8624,-0.9496,-0.9548,-0.9758,-0.8466,0.644,0.6566,0.5168,0.564,0.7416,0.9254,0.7248,0.354,-0.0882,-0.3644,-0.4496,-0.4192,-0.5568,-0.7364,-0.835,-0.8898,-0.9444,-0.9622,-0.9664,-0.9696,-1,-1,0.1896,0.0938,-0.0214,-0.27,-0.4704,-0.4326,-0.48,-0.4792,-0.497,-0.4882,-0.27,0.6442,0.7586,0.6998,0.7126,0.7408,0.8994,0.612,0.2,-0.2152,-0.4342,-0.4544,-0.4044,-0.4986,-0.6298,-0.7288,-0.7738,-0.8206,-0.8656,-0.8954,-0.9284,-1,-1,-0.8854,-0.8588,-0.7088,-0.4688,0.1146,0.4046,0.9612,1,1,1,0.879,-0.772,-0.962,-0.948,-0.918,-0.84,-0.9074,-0.9364,-0.9582,-0.9456,-0.9492,-0.9038,-0.8634,-0.5668,-0.6468,-0.4368,-0.2034,-0.1468,-0.0334,-0.2334,-0.66,-1,-1,0.4,0.5142,-0.2,-0.6286,-0.8572,-0.9142,-0.8286,-0.8286,-0.9428,-0.7142,1,1,-0.3142,-0.6572,-0.8,-0.8572,-0.8286,-0.8858,-0.6,-0.7714,-0.8572,-0.6572,-0.5428,-0.5428,-0.5714,-0.6286,-0.7428,-0.4286,-0.4858,-0.6572,-0.4572,-1,-1,0.1188,0.1328,0.1578,0.182,0.1932,0.2018,0.2166,0.2222,0.0452,-0.324,0.2358,0.2642,0.3496,0.4034,0.485,0.5594,0.6342,0.7086,0.8538,0.8952,-0.5734,0.247,-0.3248,-0.1058,0.563,1,0.7948,-0.6166,-0.0206,0.013,-0.5178,-0.4616,-0.4242,-0.413,-0.2486,-0.028,0.0206,-0.013,0.0318,0.0654,0.1514,0.0318,0.0916,0.1738,0.129,-0.0094,0.2038,0.3644,0.4356,0.499,0.63,0.7122,0.7794,0.701,0.8018,0.944,1,0.9364,0.8168,0.2038,-0.6646,-0.7312,-0.5558,-0.2538,-0.2296,0.009,-0.1904,0.157,0.0816,0.1088,0.2266,0.1874,0.2326,0.2024,0.1994,0.157,0.2206,0.296,0.299,0.3836,0.4804,0.559,0.7462,0.7824,0.87,0.858,0.8096,1,0.9154,0.9758,0.9788,0.4894,-0.9396,-0.7068,-0.4856,-0.3678,-0.1064,-0.1436,-0.0258,0.1696,0.2558,0.2242,0.1982,0.2356,0.1954,0.4052,0.3592,0.2758,0.4252,0.434,0.4138,0.6064,0.6696,0.8104,0.681,0.7442,0.7874,0.8334,0.8074,1,0.911,0.9282,0.773,0.5862,-1,-1,1,-1,0.8,1,0.4,0.5666,-1,-0.4206,0.0068,0.062,0.0896,-0.131,0.1034,0.2276,0.5862,0.0206,0.1172,0.0206,-0.1586,0.2828,0.4206,0.3932,0.3518,0.0206,-0.0344,0.1862,0.6828,0.8068,1,0.8206,0.2,-0.1172,-0.0482,-0.062,0.0068,-0.0482,0.0482,-0.1724,-0.4896,'26'
-0.2854,0.0056,0.6612,0.5506,0.5912,0.116,-0.0792,-0.4254,-0.2376,-0.488,-0.72,-0.5506,-0.569,-0.5322,-0.4254,-0.3886,-0.4622,-0.1344,0.1712,0.278,0.7532,1,0.768,0.7238,0.9006,0.6686,0.4144,0.5212,0.2044,0.1454,0.2412,-0.0276,-0.1394,0.1798,0.794,0.6888,0.7616,0.0102,-0.1232,-0.1394,-0.3454,-0.495,-0.604,-0.7252,-0.3616,-0.5434,-0.5798,-0.2202,-0.5314,-0.0262,0.208,0.1676,0.7696,1,0.9636,0.7454,0.8182,0.9516,0.6848,0.3576,0.4262,0.0666,0.0546,0.1596,-0.0444,0.3268,0.8066,0.733,0.764,-0.091,-0.0328,-0.149,-0.439,-0.4854,-0.706,-0.5048,-0.3114,-0.6132,-0.3966,-0.3308,-0.6558,-0.087,-0.1606,-0.0136,0.4662,0.8298,1,0.733,0.7524,0.8452,0.59,0.5048,0.443,0.0638,0.0754,-0.029,-0.0906,0.2884,0.8864,0.6884,0.6084,-0.0652,-0.4358,-0.5706,-0.5452,-0.8274,-0.899,-0.8822,-0.7726,-0.781,-0.6842,-0.6758,-0.68,-0.2422,-0.3894,0.0232,0.2758,0.5622,0.9284,1,0.7306,0.8316,0.7726,0.52,0.2464,0.0906,-0.0694,-0.0864,-0.0296,0.2852,0.8704,0.7334,0.3592,-0.1592,-0.4482,-0.4778,-0.6704,-0.9408,-0.8666,-0.737,-0.6814,-0.826,-0.6814,-0.5888,-0.6074,-0.5112,-0.3334,-0.2778,0.3112,0.626,0.874,1,0.6296,0.563,0.5852,0.4518,0.1926,0.0888,-0.037,-0.1222,0.0342,0.4448,0.9088,0.8936,-0.0076,-0.0494,-0.057,-0.5628,-0.6996,-0.9164,-0.9772,-0.5248,-0.4524,-0.5818,-0.6768,-0.6122,-0.502,-0.3612,-0.3612,-0.2054,-0.1368,0.4866,0.962,1,0.6046,0.6274,0.5476,0.498,0.3954,0.0912,-0.2054,-0.308,-0.0382,0.5702,0.3788,0.5106,-0.3446,-0.4936,-0.4766,-0.6042,-0.9148,-0.8086,-0.8596,-0.3362,-0.366,-0.4766,-0.4,-0.549,-0.4298,-0.3872,-0.4426,-0.332,0.1148,0.2638,0.6808,0.8724,1,0.766,0.6554,0.583,0.2,0.1022,-0.2554,-0.268,-0.2272,-0.0454,0.591,0.5454,0.3182,0.2728,0.1364,-0.3182,-0.091,-0.4546,-0.3636,-0.1818,-0.2272,-0.091,-0.0454,-0.0454,0.0454,0,0.4546,0.6818,0.6818,1,0.9546,0.5454,0.909,0.7728,0.2272,0.5,0.2272,0.2728,0.3182,-0.1818,-0.3888,0.2222,0.6112,0.4444,0.5556,0.2222,-0.0556,-0.5556,-0.2222,-0.3888,-0.7222,-0.5,-0.6112,-0.4444,-0.3334,-0.4444,-0.3888,-0.0556,0.1112,0.0556,0.6666,0.9444,0.7778,0.8334,1,0.7222,0.3888,0.5,0.2222,0.1666,0.2778,0.0556,0.175,0.575,0.925,0.8,0.6,0.1,-0.05,-0.125,-0.125,-0.3,-0.425,-0.55,-0.45,-0.675,-0.35,-0.35,-0.35,-0.25,-0.075,0.25,0.525,0.625,0.95,1,0.875,0.725,0.5,0.5,0.5,0.325,0.2,0.15,-1,-1,-1,-1,-1,-1,-1,-0.9588,-0.965,-0.9072,-0.0124,0.9608,0.8412,0.6702,0.5464,0.466,0.431,0.3794,0.266,0.1134,-0.1422,-0.5588,-0.897,-0.9526,-0.9628,-0.9464,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9436,-0.945,-0.7596,0.0902,0.9198,0.7834,0.4744,0.2842,0.2078,0.209,0.1302,-0.0088,-0.0838,-0.3292,-0.6382,-0.861,-0.8848,-0.861,-0.8962,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9068,-0.9668,-0.7068,-0.4634,-0.73,-0.738,-0.822,-0.784,-0.78,-0.748,-0.79,-0.924,-0.894,-0.862,-0.784,-0.6434,-0.5734,-0.2768,-0.8068,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7428,0,1,1,1,-0.8286,-0.8,-1,-0.9428,-0.9714,-0.8858,-0.9428,-0.8286,-0.8286,-0.4858,-0.4572,-0.8286,-0.8286,-0.6572,-1,-1,-1,-1,-1,-1,-1,0.401,0.388,0.4032,0.3992,0.3942,0.3802,0.3674,0.3526,0.264,0.014,0.8888,0.9016,0.9322,0.9386,0.9522,0.9042,0.8594,0.842,0.8848,0.915,-0.44,0.1764,0.1552,0.9024,0.9774,0.8848,0.8236,0.8,-0.5304,0.0152,0.106,0.0454,-0.1364,0.0454,0.0758,0.1818,0.2576,0.5606,1,0.9546,1,1,0.6516,0.4848,0.5454,0.8636,0.9696,0.8636,0.7424,0.7576,0.7728,0.697,0.0606,-0.303,-0.2122,-0.2122,-0.3636,-0.606,-0.2122,-0.2576,0.008,0.376,0.44,-0.136,-0.2,-0.168,-0.008,-0.168,0.056,0.248,0.872,1,0.776,0.76,0.44,0.456,0.296,0.44,0.504,0.264,0.376,0.36,0.664,0.488,0.2,0.2,-0.152,-0.136,-0.328,-0.36,0.2,-0.008,0.3594,0.7386,0.7124,0.4118,0.1634,0.098,0.1242,0.2156,0.3072,0.6862,0.9608,1,0.9346,0.8432,0.5556,0.5032,0.5686,0.6994,0.634,0.647,0.5686,0.6732,0.647,0.5424,0.3202,0.0718,-0.4118,-0.3986,-0.2418,-0.1896,-0.098,-0.3072,1,-1,-1,1,-1,-1,-1,-0.7,-1,-0.3098,-0.3522,0.0564,0.0846,-0.0986,0.0564,-0.0846,0.0704,0.1408,0.5212,1,0.8592,0.6902,0.5492,0.3098,0.2816,0.1126,0.2394,0.2112,0.0282,0.2676,0.2958,0.3944,0.4788,0.0704,-0.0422,0.0564,0.183,0.1126,-0.1408,0.0564,-0.4648,'1'
-0.2328,0.1054,0.5928,0.5454,0.6036,0.0582,-0.2946,-0.2036,-0.6146,-0.5636,-0.5018,-0.7672,-0.4218,-0.371,-0.8218,-0.3454,-0.3272,-0.2946,0.1418,0.2146,0.571,1,0.9454,0.5528,0.7236,0.6218,0.6328,0.4582,0.3854,0.3782,-0.0146,0.331,-0.1172,0.2384,0.9206,0.774,0.795,0.0544,-0.1506,-0.2594,-0.498,-0.6652,-0.6988,-0.7238,-0.5104,-0.5816,-0.4854,-0.456,-0.251,-0.1298,-0.251,0.3306,0.5942,1,0.9164,0.8786,0.2594,0.774,0.6778,0.339,0.3808,0.2468,0.0252,0.1214,-0.189,0.1654,0.8308,0.7008,0.559,-0.0236,-0.2992,-0.3662,-0.5118,-0.8818,-0.9056,-0.807,-0.7086,-0.744,-0.6654,-0.63,-0.2992,-0.2756,-0.248,0.1496,0.2952,0.559,1,0.8504,0.4448,0.5196,0.4212,0.0944,0.1692,0.059,-0.2834,-0.2166,-0.1474,0.2184,0.8224,0.7052,0.421,0.0088,-0.2292,-0.4388,-0.4706,-0.7798,-0.8224,-0.691,-0.6944,-0.7584,-0.698,-0.7762,-0.2184,-0.2042,-0.1012,-0.055,0.0586,0.3926,1,0.8864,0.7514,0.3606,0.3818,0.3464,0.119,0.0088,-0.0516,-0.2966,-0.0288,0.3682,1,0.8844,0.2924,0.018,-0.148,-0.231,-0.444,-0.6354,-0.8592,-0.686,-0.5704,-0.6064,-0.3898,-0.5234,-0.509,-0.195,0.0108,0.0506,0.3358,0.6678,0.686,0.8122,0.9206,0.8484,0.6426,0.6462,0.491,0.1986,-0.0398,-0.0362,0.0482,0.4124,1,0.9862,-0.024,-0.1306,-0.1512,-0.3402,-0.5808,-0.5636,-0.8316,-0.646,-0.5532,-0.5258,-0.5498,-0.6392,-0.5086,-0.4364,-0.2714,-0.1718,0.2852,0.4742,0.8178,0.8454,0.8042,0.5808,0.6702,0.5396,0.189,0.0104,-0.0104,-0.1786,-0.056,0.5258,0.3664,0.3664,-0.431,-0.6724,-0.513,-0.4268,-0.6294,-0.8232,-0.8706,-0.5992,-0.6508,-0.7716,-0.7242,-0.7672,-0.5044,-0.362,-0.319,0.0172,0.263,0.5,0.9052,0.987,1,0.9094,0.6682,0.6206,0.2802,0.125,-0.2198,-0.2198,0,0.25,0.75,0.85,0.85,0.2,0,0.2,-0.4,-0.25,-0.1,-0.4,-0.3,-0.05,-0.45,-0.3,-0.1,0.3,0.15,0.45,1,1,0.95,0.9,0.75,0.85,0.7,0.65,0.7,0.5,0.55,0.55,-0.2972,0.1352,0.4594,0.4594,0.5136,0.027,-0.1352,-0.1892,-0.7298,-0.5136,-0.5136,-0.8378,-0.4054,-0.3514,-0.5136,-0.3514,-0.1892,-0.1352,0.1352,0.4054,0.6756,1,0.946,0.3514,0.6756,0.5676,0.5136,0.2972,0.4054,0.027,-0.4594,-0.1352,0.2094,0.6046,1,0.9534,0.2326,0.0698,0.0698,-0.0466,-0.279,-0.3256,-0.628,-0.3256,-0.3256,-0.2326,-0.186,-0.186,-0.0466,-0.093,0.0698,0.2094,0.5348,0.814,0.9302,0.721,0.7906,0.7442,0.907,0.8604,0.3488,0.279,0.1162,0,-1,-1,-1,-1,-1,-1,-1,-0.9656,-0.9574,-0.8966,-0.1562,0.7506,0.9108,0.9656,0.9148,0.86,0.8052,0.7626,0.7222,0.4908,0.1034,-0.5376,-0.9208,-0.9534,-0.9088,-0.9574,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9512,-0.9448,-0.7636,-0.3658,0.6196,0.4776,0.4634,0.407,0.2964,0.2824,0.201,0.148,0.0168,-0.2336,-0.6542,-0.8678,-0.9046,-0.8818,-0.91,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.86,-0.8868,-0.51,-0.4434,-0.744,-0.764,-0.732,-0.794,-0.828,-0.774,-0.708,-0.9492,-0.9438,-0.8946,-0.68,-0.4734,-0.4168,-0.53,-0.73,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,1,-0.7714,-0.8572,-0.8858,-0.9428,-0.9714,-0.9142,-1,-0.7428,-0.5428,-0.0286,-0.7714,-0.9142,-0.6858,-0.5714,-1,-1,-1,-1,-1,-1,-1,0.3906,0.3904,0.3794,0.3684,0.3666,0.3616,0.339,0.3176,0.2666,0.06,0.9504,0.9142,0.8836,0.8808,0.8798,0.873,0.9082,0.9024,0.9148,0.9126,-0.48,0.2236,-0.3192,0.4678,0.4796,0.9826,0.4082,-0.1916,-0.647,-0.1176,-0.0736,-0.103,-0.3088,-0.2648,-0.0882,0.0588,-0.1618,0.4412,0.9852,1,0.9118,0.8236,0.4706,0.4118,0.4264,0.3236,0.2206,0.3236,0.5,0.3088,0.3382,0.2942,-0.1324,-0.1912,-0.1912,-0.2352,-0.4264,-0.4706,-0.5294,-0.8236,-0.2208,-0.013,-0.013,0,-0.1168,-0.3376,-0.013,-0.026,0.013,0.3766,0.8702,0.909,1,0.7792,0.7792,0.3636,0.3636,0.6234,0.4936,0.3246,0.3246,0.4936,0.6624,0.6234,0.2988,0.065,-0.026,0,-0.2078,-0.2728,-0.4026,-0.7272,0.6606,0.806,0.7696,0.3454,0.0788,-0.0546,0.006,0.0788,0.1516,0.5758,0.903,0.7818,1,0.9394,0.794,0.7454,0.6122,0.6364,0.5152,0.6364,0.5152,0.3818,0.3454,0.4182,0.1878,0.1394,0.091,0.006,-0.2,-0.2242,-0.2242,-0.709,-0.6552,-1,-1,1,-0.8,-1,-1,-0.6,-1,-0.426,-0.1826,-0.2,0.2,0.1304,0.2522,0.1478,0.026,0.2696,0.4956,1,0.9478,0.9826,0.913,0.2348,0.3392,0.0782,0.4782,0.2348,0.4608,0.513,0.3044,0.3218,0.3914,0.3566,0.3218,0.2522,0.2522,0.1478,0.1304,0.0608,-0.2522,'1'
0.2562,0.752,1,0.9586,-0.2768,-0.591,-0.5206,-0.4586,-0.8306,-0.9132,-0.8926,-0.8884,-0.533,-0.4586,-0.3224,-0.3554,-0.343,-0.1446,0.0248,0.3884,0.8678,0.8802,0.8224,0.6364,0.5372,0.5538,0.5496,0.5496,0.5992,0.4174,0.219,0.2644,0.1756,0.5424,1,0.9132,-0.503,-0.7514,-0.712,-0.6174,-0.6766,-0.8304,-0.8738,-0.712,-0.6884,-0.6884,-0.6766,-0.5188,-0.5188,-0.6016,-0.1914,0.0296,0.2584,0.7712,0.7672,0.5858,0.4516,0.3334,0.3648,0.6686,0.7318,0.7594,0.6646,0.3886,0.2064,0.544,1,0.8922,-0.4866,-0.7846,-0.4148,-0.3752,-0.684,-0.7558,-0.8672,-0.5942,-0.5296,-0.587,-0.5404,-0.4686,-0.544,-0.5978,-0.1526,-0.149,0.0592,0.447,0.6086,0.7056,0.3932,0.2244,0.2676,0.4614,0.6266,0.6446,0.7164,0.4578,0.2372,0.6364,1,0.9408,-0.4664,-0.7194,-0.585,-0.4862,-0.8222,-0.8578,-0.8894,-0.6996,-0.5376,-0.6246,-0.5534,-0.6284,-0.585,-0.668,-0.4506,-0.3794,-0.0672,0.336,0.4624,0.6126,0.3992,0.3834,0.3084,0.5098,0.6404,0.7392,0.6364,0.6798,0.3122,0.8506,0.819,0.8552,-0.5882,-0.7918,-0.81,-0.647,-0.9366,-0.9322,-0.8642,-0.6878,-0.8372,-0.724,-0.724,-0.7014,-0.7556,-0.8144,-0.7738,-0.1494,-0.0814,-0.2126,0.8642,1,0.5882,0.3982,0.6154,0.2714,0.6652,0.9638,0.8054,0.552,0.1112,0.7284,0.4814,0.5884,-0.4362,-0.7408,-0.6338,-0.5844,-0.9342,-0.7408,-0.9012,-0.6832,-0.716,-0.8148,-0.498,-0.539,-0.6626,-0.354,-0.4692,-0.7614,0.074,0.14,0.4238,0.8148,1,0.4692,0.716,0.967,0.7284,0.6296,0.5186,0.1276,-0.014,0.6104,0.3678,0.3042,-0.4076,-0.8052,-0.6024,-0.5268,-0.678,-0.9762,-0.9364,-0.7216,-0.6382,-0.5746,-0.654,-0.6182,-0.5864,-0.6222,-0.5308,-0.4712,-0.1252,0.3956,0.7694,1,0.6938,0.5348,0.6024,0.4474,0.173,-0.1134,-0.2406,-0.2882,0.3888,1,0.9444,0.5556,-0.0556,-0.2222,-0.2778,-0.2222,-0.5,-0.3334,-0.6666,-0.2778,-0.2222,-0.4444,-0.2778,-0.2222,0.1112,0.1666,-0.0556,-0.3334,0.5556,0.5556,0.4444,0.4444,0.2778,0.1666,-0.1112,-0.2222,0,-0.1666,0.0556,0.2222,0.1282,0.6924,1,0.8974,-0.1794,-0.3334,-0.2308,-0.1282,-0.4872,-0.9488,-0.8462,-0.7436,-0.5898,-0.5384,-0.5898,-0.3334,-0.4358,-0.5898,0.077,0.3846,0.5384,0.5898,0.282,0.1282,0.3334,0.5898,0.282,0.1282,0.1794,-0.0256,-0.1282,0.2308,0.2632,0.7106,0.4736,0.579,-0.1578,-0.3422,-0.2368,-0.1578,-0.5526,-0.3684,-0.3948,-0.2632,-0.4474,-0.7894,-0.2632,-0.2106,-0.2632,-0.0526,-0.2632,-0.3684,0.1842,0.1316,0.1842,1,0.9736,0.0264,0.7632,0.8684,0.6578,0.5526,0.7632,0.3422,-1,-1,-1,-1,-1,-1,-1,-1,-0.9658,-0.9614,-0.661,0.7064,0.7156,0.5336,0.413,0.3674,0.2172,0.008,-0.1012,-0.099,-0.149,-0.4016,-0.8248,-0.9294,-0.9318,-0.9272,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9254,-0.9254,-0.2546,0.6522,0.9432,0.6558,0.4108,0.4056,0.2796,0.008,-0.1162,-0.118,-0.15,-0.3966,-0.7782,-0.8314,-0.8776,-0.8812,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.9534,-0.8,-0.84,-0.738,-0.722,-0.738,-0.731,-0.86,-0.84,-0.8438,-0.882,-0.8238,-0.8146,-0.5534,-0.5934,-0.7868,-0.62,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,0.6286,1,0.4,-0.5428,-0.7714,-1,-0.9428,-0.9428,-0.9714,-0.9142,-0.8572,-0.7714,-0.0572,-0.4858,-0.8858,-0.9428,-0.8572,-1,-1,-1,-1,-1,-1,-1,-0.6942,-0.6984,-0.7214,-0.7566,-0.7766,-0.8236,-0.8264,-0.7794,-0.7854,-0.7194,0.7546,0.7248,0.711,0.7246,0.7486,0.7384,0.7374,0.7226,0.7414,0.7584,-0.5334,0.2588,-0.0292,0.0276,0.7,0.819,0.851,-0.1584,0.1428,0.619,0.6666,0.5714,0.5238,0.4286,0.5714,0.762,0.7142,0.619,0.7142,0.8572,0.8572,0.9048,0.8572,0.9524,1,0.9048,0.8572,0.9524,1,0.9524,0.9048,0.9048,0.8096,0.7142,0.619,0.6666,0.3334,0.1904,-0.0952,-0.4286,-0.0556,0.4814,0.3334,0.1296,0.2222,0.2592,0.3518,0.7222,0.7408,0.7592,0.9074,1,0.9814,0.8334,0.5186,0.7222,0.7778,0.7962,0.7778,0.7592,0.7038,0.4814,0.7038,0.6666,0.7222,0.6666,0.6482,0.574,0.3334,0.3888,0.3888,-0.1296,0.6722,0.836,0.1804,0.082,-0.0164,-0.4426,-0.082,0.2786,0.2786,0.4098,1,1,0.705,0.246,0.1148,0.377,0.4098,0.4754,0.3442,0.541,0.2786,0.2786,0.1804,0.1804,0.0492,-0.1148,0.6394,0.1148,0.1804,-0.0164,0.2132,-0.0164,0.7924,-1,-1,1,-1,-1,-1,-0.8334,-1,0.0784,0.2156,-0.2942,-0.255,-0.0784,0.0784,0.1764,0,0.1176,0.1568,0.6862,0.8236,1,0.9804,0.4706,0.5098,0.2156,0.3726,0.3726,0.1372,0.0196,0.098,0.098,0.2942,0.255,0.2746,0,-0.0784,-0.1568,-0.0392,-0.1372,-0.5294,'2'
0.3192,0.723,1,0.9062,-0.2958,-0.5822,-0.7184,-0.6432,-0.7276,-0.878,-0.7184,-0.6384,-0.5774,-0.4788,-0.277,-0.399,-0.5446,-0.2254,0.0798,0.5164,0.554,0.7982,0.6526,0.3662,0.5164,0.662,0.6384,0.676,0.6714,0.4226,0.3756,0.399,0.3286,0.6714,1,0.8358,-0.4782,-0.773,-0.6908,-0.6618,-0.9614,-0.884,-0.628,-0.517,-0.5072,-0.6812,-0.657,-0.4976,-0.6328,-0.2174,-0.0724,0.029,0.3624,0.4782,0.6618,0.2996,0.0822,0.1788,0.2078,0.4252,0.6038,0.9662,0.884,0.6474,0.3524,0.718,1,0.8172,-0.4204,-0.8642,-0.5456,-0.4882,-0.6866,-0.7546,-0.8276,-0.483,-0.5874,-0.739,-0.598,-0.4986,-0.5196,-0.6344,-0.5456,-0.1384,0.2898,0.3942,0.6188,0.4674,0.2532,0.1122,0.3054,0.4152,0.6084,0.7754,0.739,0.6554,0.3064,0.6912,1,0.8384,-0.4632,-0.8384,-0.5202,-0.506,-0.7958,-0.905,-0.7198,-0.7292,-0.6722,-0.6104,-0.7292,-0.5106,-0.639,-0.5344,-0.3966,-0.3016,-0.0642,0.0926,0.6058,0.468,0.1592,0.0688,0.43,0.4774,0.5486,0.6152,0.6058,0.5106,0.2102,0.5934,1,0.9158,-0.6214,-0.9158,-0.5654,-0.6122,-0.7384,-0.9814,-0.7056,-0.6542,-0.6402,-0.8878,-0.6308,-0.7336,-0.6728,-0.7384,-0.3832,-0.4206,-0.4532,-0.056,0.6214,0.7898,0.3504,0.0888,0.3504,0.1636,0.3084,0.4392,0.5094,0.313,0.3262,0.7408,1,0.974,-0.4816,-0.46,-0.352,-0.3694,-0.8964,-0.7754,-0.6804,-0.4342,-0.4558,-0.4342,-0.4038,-0.499,-0.5248,-0.4038,-0.4298,-0.1188,-0.0064,0.27,0.581,0.676,0.6804,0.4902,0.784,0.81,0.365,0.352,0.3694,0.283,0.268,0.9424,0.5966,0.6426,-0.7292,-0.827,-0.9078,-0.7292,-0.8674,-0.8848,-0.51,-0.4928,-0.5734,-0.827,-0.683,-0.585,-0.66,-0.781,-0.51,-0.5504,-0.3776,0.245,0.8732,1,0.6024,0.3314,0.6254,0.7176,0.5966,-0.0318,0.0144,-0.1354,0.4736,1,0.9474,0.6842,0.0526,0,-0.3684,-0.3158,-0.2632,-0.3158,-0.1052,-0.0526,0,-0.2632,0.2106,-0.0526,-0.1052,0.3684,0.2632,0.6842,0.579,0.7894,0.5264,0.7368,0.7894,0.8948,0.6316,0.421,0.4736,0.421,0.3158,0.1578,0.3158,0.8422,1,0.8948,-0.2106,-0.1578,-0.2632,-0.2106,-0.5264,-0.7368,-0.8422,-0.3158,-0.3684,-0.421,-0.3158,-0.3684,-0.2632,-0.1052,0.3684,0.5264,0.8948,1,0.7368,0.7894,0.8422,0.8422,1,0.9474,0.6842,0.5264,0.4736,0.4736,0.477,0.7846,1,0.8462,-0.2616,-0.8462,-0.2308,-0.2616,-0.5076,-0.5076,-0.2924,-0.0154,0.0154,-0.2924,-0.3846,-0.3846,-0.1076,-0.1076,-0.3538,-0.2,0.6308,0.6308,0.5692,0.5384,0.6,0.3538,0.477,0.723,0.9076,0.7538,0.8462,0.8154,-0.954,-0.946,-0.7702,-0.5918,-0.5622,-0.5756,-0.6838,-0.8054,-0.9244,-0.954,-0.5594,0.8756,0.719,0.319,0.1892,0.2162,0.1946,0.2216,0.2568,0.1972,-0.0136,-0.2298,-0.6486,-0.8972,-0.854,-0.9298,-0.9486,-1,-1,-1,-1,-1,-1,-0.9026,-0.9048,-0.7748,-0.6082,-0.5996,-0.6126,-0.7034,-0.7944,-0.894,-0.9156,-0.1558,0.8376,0.7858,0.2662,0.1904,0.171,0.1386,0.236,0.2338,0.158,-0.052,-0.2598,-0.6298,-0.7446,-0.7338,-0.8528,-0.8852,-1,-1,-1,-1,-1,-1,-0.9334,-0.94,-0.7934,-0.8934,-0.8968,-0.9034,-0.9334,-0.8468,-0.92,-0.9468,-0.6034,-0.7868,-0.7512,-0.8512,-0.849,-0.8934,-0.8912,-0.8,-0.8712,-0.814,-0.896,-0.912,-0.6634,-0.3568,-0.62,-0.7468,-0.78,-1,-1,-1,-1,-1,-1,-0.9714,-0.8,-0.7714,-0.9428,-0.8572,-0.9428,-0.9428,-0.9428,-0.9428,1,1,0.6286,-0.8,-0.9142,-0.9714,-1,-0.9714,-1,-0.9714,-0.9428,-0.9142,-0.7142,-0.8,-0.7714,-0.5142,-0.2858,-0.2,-1,-1,-1,-1,-1,-1,-0.915,-0.9202,-0.9032,-0.9194,-0.9066,-0.8978,-0.9098,-0.8632,-0.8598,-0.7936,0.7078,0.7196,0.7364,0.7516,0.6732,0.634,0.6068,0.6398,0.6408,0.6996,-0.48,0.0824,-0.184,0.3852,0.855,0.9914,0.987,0.125,-0.1182,-0.0538,-0.0108,0.0968,0.0322,0.0752,0.785,1,1,0.9354,0.5268,0.828,0.699,0.613,0.656,0.7634,0.8494,0.6344,0.8064,0.785,0.6774,0.5484,0.8064,0.742,0.7634,0.4838,0.7634,0.5698,0.4194,0.3334,0.4408,0.1612,-0.1594,-0.0144,-0.3334,-0.4202,-0.3624,-0.1884,-0.1884,0.4202,0.7102,0.7682,1,0.855,0.6232,0.4202,0.3044,0.1594,0.3044,0.1014,0.1884,-0.0144,0.0724,0.0144,0.3914,0.1884,0.3334,0.1884,0.3624,0.1884,-0.1884,0.1014,0.1594,-0.0434,0.7808,0.863,0.2328,-0.1506,-0.0136,-0.178,0.1232,0.2876,0.1232,0.6164,1,0.8904,0.9452,0.6164,0.5616,0.4246,0.6986,0.7808,0.5068,0.3698,0.3424,0.3424,0.3972,0.2602,0.2876,0.2876,0.4246,0.3424,0.2054,-0.2876,0.2054,-0.178,0.658,-1,-1,1,-1,0.6,-0.6,-0.8,-1,-0.2598,0.1812,0.1182,0.0708,0.1338,-0.1024,0.307,0.4174,0.244,0.433,0.622,0.9842,0.7322,1,0.6378,0.307,0.4174,0.5118,0.2598,0.0866,0.5276,0.4016,0.496,0.6062,0.37,0.1654,0.2598,0.1968,-0.0394,-0.1182,-0.0708,-0.685,'2'
0.0044,0.4734,0.7654,0.761,-0.2832,-0.5796,-0.6062,-0.4514,-0.7168,-0.8098,-0.8894,-0.77,-0.5884,-0.4514,-0.5088,-0.4558,-0.2876,-0.1372,0.1946,0.584,0.7964,0.9956,1,0.9204,0.9248,0.907,0.6504,0.3318,0.177,0.1018,0.0132,0.0044,0.0388,0.318,0.728,0.6678,-0.2226,-0.5972,-0.5512,-0.4382,-0.7032,-0.7774,-0.6714,-0.5902,-0.4098,-0.364,-0.5936,-0.378,-0.3462,-0.3462,0.06,0.0812,0.2402,0.675,0.9082,1,0.7208,0.7774,0.8268,0.516,0.4452,0.3958,0.0812,0.1236,-0.026,0.3348,0.7914,0.6782,-0.4782,-0.7566,-0.5566,-0.4652,-0.887,-0.9348,-0.9304,-0.7392,-0.6478,-0.674,-0.8044,-0.6522,-0.6696,-0.574,-0.2826,-0.2914,-0.1,0.3522,0.8392,1,0.7782,0.6174,0.613,0.5522,0.3392,0.3608,0.1086,0.1782,0.2346,0.605,1,0.8962,-0.4864,-0.9358,-0.447,-0.3976,-0.768,-0.9062,-0.7482,-0.684,-0.6692,-0.5802,-0.6592,-0.7086,-0.6988,-0.5802,-0.6346,-0.4124,-0.2346,0.2544,0.6692,0.7382,0.526,0.4962,0.5654,0.7136,0.6592,0.5902,0.2592,0.037,0.3618,0.7542,1,0.9148,-0.2152,-0.4516,-0.6028,-0.636,-0.929,-0.844,-0.6312,-0.338,-0.3712,-0.6028,-0.6784,-0.6784,-0.442,-0.5556,-0.5224,-0.3806,-0.2672,0.3522,0.494,0.792,0.7258,0.7542,0.546,0.8156,0.8486,0.4184,0.1252,0.1632,0.1726,0.6416,0.6328,0.6194,-0.4778,-0.615,-0.447,-0.3274,-0.6814,-0.885,-0.8142,-0.6814,-0.8186,-0.8496,-0.615,-0.531,-0.5884,-0.6592,-0.8362,-0.6992,-0.2788,-0.1992,0.2036,0.9116,1,0.593,0.6372,0.7346,0.593,0.3054,0.1284,-0.0088,0.1482,0.7882,0.4918,0.52,-0.3458,-0.6942,-0.4118,-0.4776,-0.8636,-0.76,-0.6988,-0.567,-0.4258,-0.6376,-0.4682,-0.5012,-0.5718,-0.7976,-0.5812,-0.3176,-0.3506,0.1482,0.4306,0.7694,1,0.92,0.5952,0.487,0.2988,0.1906,0.1294,-0.12,0.3124,1,0.75,0.5624,0.1876,-0.1876,-0.3124,-0.3124,-0.125,-0.375,-0.875,-0.5,-0.375,-0.5,-0.3124,-0.125,-0.125,-0.25,0.1876,0.625,0.625,0.6876,0.6876,0.75,0.6876,0.8124,0.3124,0.125,0.0624,0.125,-0.0624,0.0624,0.0434,0.2608,0.7392,0.7392,0.174,-0.2174,-0.3914,-0.2608,-0.4348,-0.3044,-0.3044,-0.3044,-0.2608,0,-0.2174,-0.2174,0.0434,0.2174,0.3044,0.7392,1,1,0.6956,0.9566,1,0.7826,0.3044,0.3478,0.087,0,0.1304,-0.087,0.1268,0.4648,0.8874,0.7746,-0.3802,-0.4366,-0.5212,-0.3802,-0.831,-0.4366,-0.5212,-0.7746,-0.3802,-0.493,-0.324,-0.4366,-0.5212,-0.4366,-0.0986,-0.0422,0.0704,0.2958,0.8874,1,0.8874,0.7184,0.7464,0.7464,0.5774,0.5212,0.3522,0.2676,-0.9696,-0.9626,-0.9662,-0.9536,-0.9518,-0.9572,-0.9536,-0.968,-0.9554,-0.9448,-0.8484,0.64,0.6204,0.3548,0.1498,0.0106,-0.1604,-0.214,-0.246,-0.3814,-0.483,-0.4438,-0.681,-0.8894,-0.95,-0.9554,-0.9662,-1,-1,-1,-1,-1,-1,-0.5698,-0.2642,-0.0376,6e-04,-0.0936,-0.198,-0.0108,0.128,0.2692,-0.4016,-0.7862,0.646,0.7722,0.422,0.2324,-0.0642,-0.2756,-0.3228,-0.343,-0.436,-0.5532,-0.45,-0.6944,-0.804,-0.8982,-0.7594,-0.7722,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.6932,-0.2234,-0.6756,-0.6846,-0.7024,-0.7068,-0.7868,-0.8578,-0.9156,-0.9156,-0.8668,-0.8556,-0.726,-0.7368,-0.38,-0.5634,-0.48,-0.5468,-1,-1,-1,-1,-1,-1,1,-0.4286,-0.9142,-0.8286,-0.7714,-0.8572,-0.9142,-0.8858,0.6572,1,1,1,-0.8572,-0.8858,-0.8572,-0.8,-0.8572,-1,-0.9428,-0.8286,-0.3142,0.5142,0.5428,-0.6,-0.5714,-0.1142,0.1428,-1,-1,-1,-1,-1,-1,-0.5084,-0.516,-0.5342,-0.5194,-0.5226,-0.5796,-0.6404,-0.6368,-0.6346,-0.6426,0.7738,0.8192,0.843,0.8848,0.9286,1,0.9878,0.9922,0.9758,0.896,-0.5066,0.0588,-0.8306,-0.2106,0.6652,0.9732,0.8766,0.05,-0.6998,-0.6336,-0.492,-0.3428,-0.3258,-0.2256,-0.1502,-0.0576,0.103,-0.035,-0.035,-0.0538,0.0746,0.0066,0.0538,0.1822,0.1426,0.356,0.5052,0.5996,0.5278,0.6392,0.764,0.6732,0.9074,1,0.8112,0.8054,0.762,0.8244,0.7866,0.3768,-0.6948,-0.5782,-0.5232,-0.4602,-0.421,-0.4162,-0.2352,-0.1488,-0.1172,-0.1314,-0.0732,-0.0448,-0.015,0.0732,0.1282,0.2682,0.3406,0.3612,0.4744,0.5798,0.5814,0.69,0.7026,0.8506,0.9276,1,0.9182,0.8882,0.959,0.8726,0.9842,0.7262,-0.7962,-0.6592,-0.4982,-0.3556,-0.3982,-0.3686,-0.2778,-0.0962,0.1556,0.2038,0.2222,0.0556,0.2112,0.0556,0.0334,0.024,0.1074,0.3814,0.587,0.5962,0.424,0.574,0.763,0.8074,0.9038,1,0.9074,0.7518,0.7166,0.8296,0.9482,0.7722,-0.8498,-1,1,-1,-1,-1,-0.8,1,-1,-0.5322,-0.4838,-0.387,-0.0322,0.0162,-0.1774,-0.1612,-0.0806,0.4516,0.4678,0.3064,-0.0162,0.129,0.1452,0.1452,0.1452,0.129,0.2096,0.0322,0.0322,0.5162,0.7742,0.9678,1,0.9354,0.9032,0.758,0.629,0.7096,0.6774,0.4032,0.0484,'3'
-0.0718,0.5168,0.8374,0.6986,0.0718,-0.4736,-0.6412,-0.7082,-0.78,-0.976,-0.9474,-0.8708,-0.6028,-0.6364,-0.445,-0.2822,-0.1866,0.0766,0.4546,0.89,1,0.7656,0.622,0.713,0.8182,0.5838,0.22,-0.024,-0.2058,-0.1818,-0.2392,-0.2488,-0.0748,0.394,1,0.8708,-0.095,-0.491,-0.7374,-0.8262,-0.6646,-0.907,-0.9596,-0.701,-0.3656,-0.5192,-0.5152,-0.5112,-0.3738,-0.0384,0.1798,0.4788,0.7252,0.895,0.8262,0.5272,0.709,0.8384,0.6202,0.3454,0.1718,-0.0788,-0.0708,-0.0222,0.0192,0.45,1,0.873,-0.3924,-0.5308,-0.6576,-0.673,-0.5692,-0.7616,-0.8038,-0.7462,-0.5692,-0.3076,-0.2576,-0.473,-0.3462,-0.35,-0.1,0.3346,0.4884,0.6462,0.827,0.6846,0.577,0.7346,0.627,0.5924,0.327,0.1616,0.1424,0.1384,0.0064,0.3362,1,0.9014,-0.499,-0.5718,-0.5632,-0.4946,-0.696,-0.803,-0.7944,-0.743,-0.516,-0.486,-0.4946,-0.6446,-0.7816,-0.6616,-0.1092,0.1092,0.3876,0.8716,0.7858,0.6146,0.529,0.6616,0.6488,0.529,0.2462,0.212,0.1392,-0.015,0.1186,0.4916,1,0.911,-0.3644,-0.4872,-0.4406,-0.3262,-0.6992,-0.7838,-0.7542,-0.5974,-0.445,-0.4534,-0.5848,-0.5678,-0.4576,-0.3136,-0.5042,0.0254,0.3262,0.4322,0.4872,0.555,0.5974,0.7034,0.7924,0.428,0.4576,-0.0212,-0.1144,-0.0084,0.1904,0.6482,1,0.9952,-0.2868,-0.5808,-0.4844,-0.4168,-0.6868,-0.8216,-0.7108,-0.6626,-0.4168,-0.3784,-0.335,-0.3446,-0.5036,-0.3156,-0.306,-0.2048,-0.1036,0.5036,0.9904,0.788,0.682,0.7976,0.6626,0.465,0.4362,0.0362,0.0458,-0.1228,0.2402,0.804,0.8138,0.8726,-0.3726,-0.5834,-0.5784,-0.5442,-0.8138,-0.8138,-0.6372,-0.5344,-0.5196,-0.5638,-0.5686,-0.6422,-0.652,-0.5686,-0.3774,-0.3578,-0.0834,0.245,0.5294,0.7598,0.9852,1,0.652,0.4216,-0.0098,0.0834,-0.0784,-0.1324,0.4286,1,0.8286,-0.0286,-0.1428,-0.4858,-0.0286,-0.3142,-0.4858,-1,-0.4286,-0.4858,-0.3714,-0.3714,-0.0858,-0.0286,0.0858,0.0286,0.4286,0.5428,0.7714,0.4858,0.6,0.6572,0.4286,0.2572,-0.0286,-0.2,0.0858,0.1428,0.0286,0.2,-0.0858,0.4858,0.5428,0.7142,0.3142,-0.4286,-0.4286,-0.4858,-0.7714,-0.6572,-0.7142,-0.8858,-0.5428,-0.4858,-0.6,-0.1428,-0.0286,0.3714,0.7142,1,0.9428,0.8858,1,1,0.8858,0.6572,0.3142,0.0286,0.0858,0.0286,-0.0858,0.0286,0.2162,0.5136,0.919,0.8918,-0.081,-0.2432,-0.2432,-0.1352,-0.4054,-0.6216,-0.6486,-0.7568,-0.3784,-0.2162,-0.3514,-0.2432,-0.5136,-0.2162,-0.2972,-0.1622,0,0.6756,0.7838,0.5136,0.8108,1,0.6486,0.3784,0.4594,0.2702,0.1082,-0.054,-0.9448,-0.9494,-0.9684,-0.9668,-0.9652,-0.9462,-0.9606,-0.9684,-0.951,-0.9368,-0.8988,0.545,0.9242,0.7298,0.4882,0.256,0.0868,-0.0284,-0.158,-0.2922,-0.3602,-0.4296,-0.7124,-0.91,-0.9652,-0.97,-0.9606,-1,-1,-1,-1,-1,-1,-0.6886,-0.5384,-0.4136,-0.3592,-0.3458,-0.4548,-0.244,-0.2404,-0.4476,-0.587,-0.7928,0.5166,0.8764,0.622,0.3506,0.1678,0.0078,-0.0878,-0.2186,-0.3544,-0.4112,-0.4342,-0.7322,-0.8752,-0.92,-0.9248,-0.9212,-1,-1,-1,-1,-1,-1,0.9332,1,1,1,1,1,1,1,1,0.8866,-0.2068,-0.8112,-0.7712,-0.8268,-0.9024,-0.8978,-0.88,-0.869,-0.749,-0.7868,-0.9156,-0.9046,-0.8168,-0.5268,-0.7534,-0.7734,-0.8868,-1,-1,-1,-1,-1,-1,0,-0.6858,-0.8572,-0.8572,-0.8286,-0.8572,-0.8572,-0.8858,-0.4286,1,1,1,-0.8572,-0.7714,-0.9714,-0.9428,-0.8858,-0.5714,-0.4286,-0.2572,-0.8,-0.2858,-0.0858,-0.6,-0.6,-0.8858,-0.8,-1,-1,-1,-1,-1,-1,-0.3968,-0.3886,-0.3842,-0.3794,-0.3886,-0.4074,-0.4742,-0.5614,-0.6152,-0.6274,0.6716,0.6522,0.6786,0.6866,0.711,0.724,0.798,0.81,0.8206,0.7858,-0.4934,0.047,-0.8644,-0.4548,0.5082,0.908,0.9758,-0.15,-0.7004,-0.57,-0.4006,-0.2856,-0.2596,-0.1726,-0.203,-0.012,0.2312,0.303,0.3224,0.292,0.303,0.1792,0.2334,0.29,0.3224,0.5788,0.6374,0.6786,0.5048,0.6092,0.7654,1,0.9436,0.9544,0.7938,0.7112,0.8394,0.8502,0.8068,0.342,-0.665,-0.4984,-0.4396,-0.3158,-0.3476,-0.2222,-0.2366,-0.1604,-0.0334,0.0142,-0.0842,-0.0698,-0.019,0.0588,0.1302,0.1698,0.1888,0.4064,0.5206,0.5238,0.6158,0.5778,0.7254,0.8112,0.8698,0.9142,0.8858,0.908,0.8604,0.9762,1,0.835,-0.8434,-0.6908,-0.6032,-0.408,-0.4812,-0.3592,-0.3326,-0.0844,0.294,0.2696,0.1374,0.2512,0.2188,0.0784,0.0804,0.1354,0.2838,0.3896,0.9308,0.9674,0.4974,0.526,0.8168,0.6888,0.9858,0.996,0.707,0.8026,0.7416,0.9166,1,0.8372,-0.8474,-1,1,-1,-1,-1,-1,1,-1,0.3536,0.4546,0.1516,-0.1718,0.1516,0.0708,0.293,0.3738,0.1516,0.0506,0.798,0.6162,1,0.899,-0.1718,-0.1112,0.293,0.8788,0.1516,0.1718,0.6566,0.5758,0.394,0.1516,0.5152,0.5152,0.394,0.3334,0.0304,-0.0102,-0.3536,-0.5758,'3'
0.2534,0.7214,0.675,0.6324,-0.2612,-0.5164,-0.5628,-0.7176,-0.7408,-0.7794,-0.969,-0.6982,-0.6596,-0.5512,-0.3888,-0.412,-0.2766,-0.4468,0.1798,0.4662,0.7872,0.8298,0.7486,0.8452,0.8646,1,0.8724,0.5668,0.3192,0.0948,0.0174,0.0368,0.3218,0.6994,0.9076,0.8266,-0.156,-0.634,-0.7186,-0.8612,-0.7302,-0.7688,-0.8342,-0.8844,-0.8766,-0.6802,-0.3988,-0.4066,-0.3488,-0.5606,0.0982,0.1136,0.445,0.765,0.8342,1,0.7032,0.7418,0.95,0.6724,0.4836,0.2716,0.291,0.2292,0.2658,0.6512,1,0.8986,-0.29,-0.7526,-0.5334,-0.4118,-0.8174,-0.8174,-0.781,-0.7322,-0.6146,-0.5862,-0.6714,-0.5376,-0.5376,-0.5132,-0.6268,-0.3184,0.0548,0.4564,0.7364,0.8052,0.4442,0.29,0.4482,0.4442,0.4524,0.4036,-0.0224,0.002,0.1754,0.5688,1,0.8646,-0.4546,-0.8012,-0.573,-0.4842,-0.9578,-0.869,-0.8224,-0.8308,-0.7886,-0.721,-0.6998,-0.8054,-0.7844,-0.5814,-0.594,-0.4842,-0.3024,0.1586,0.8182,0.983,0.4504,0.4672,0.5392,0.556,0.463,0.3234,0.0952,-0.057,0.2784,0.692,1,0.9072,-0.114,-0.7384,-0.6752,-0.5316,-0.7722,-0.8734,-0.8102,-0.5148,-0.6244,-0.7172,-0.4936,-0.2996,-0.384,-0.443,-0.7426,-0.4262,-0.211,0.1814,0.5822,0.7932,0.4092,0.1604,0.4304,0.5444,0.3924,0.0084,-0.0168,0.0464,0.3862,1,0.9702,0.9852,-0.2476,-0.6832,-0.609,-0.5346,-0.6882,-0.609,-0.6288,-0.3762,-0.4406,-0.9306,-0.6486,-0.5,-0.4306,-0.4258,-0.5198,-0.609,-0.3564,0.1288,0.807,0.9306,0.698,0.1486,0.6584,0.8118,0.4702,-0.1882,-0.2278,-0.0544,0.0988,0.8936,0.6202,0.2912,-0.5392,-0.7772,-0.5494,-0.3874,-0.6354,-0.6304,-0.7266,-0.4178,-0.433,-0.5544,-0.6608,-0.6912,-0.6406,-0.6152,-0.6,-0.286,-0.0632,0.3316,0.6658,0.6708,0.8278,1,0.6102,0.281,0.038,-0.0126,-0.0936,-0.438,0.4286,0.8572,0.762,0.381,-0.1428,-0.0476,0.0476,-0.2858,-0.1428,-0.0476,-0.0476,-0.0476,-0.0476,-0.0476,0.0476,0,0.1428,-0.0476,0.1428,0.6666,0.6666,0.5238,0.619,0.381,0.8096,1,0.7142,0.3334,0.238,-0.0476,0.1904,0.1904,0.4762,0.762,0.619,0.6666,0.1428,-0.0476,-0.4286,-0.3334,-0.1428,-0.1428,-0.238,-0.2858,-0.4286,-0.0952,0,0.0952,0.1428,-0.0952,0.5714,0.619,0.8572,0.8572,0.4286,1,1,1,0.8572,0.4286,0.4286,0.4286,0.238,-0.0476,0.4026,0.6884,0.8442,0.7662,0.039,-0.3766,-0.4546,-0.3766,-0.2208,-0.4286,-0.3506,-0.4546,-0.5584,-0.4806,-0.3766,-0.091,-0.1948,-0.091,0.1948,0.2988,0.4286,0.7402,0.8182,0.922,0.7142,0.8702,1,0.6884,0.5324,0.5844,0.4286,0.3766,-1,-1,-1,-1,-1,-1,-1,-0.9014,-0.9624,-0.745,-0.5102,0.7218,0.8754,0.6144,0.4696,0.4406,0.3768,0.258,0.1624,-0.0144,-0.1334,-0.4202,-0.887,-0.9188,-0.9478,-0.9304,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8656,-0.9082,-0.366,0.4664,0.6094,0.7908,0.4642,0.3192,0.3148,0.255,0.1164,0.0224,-0.1484,-0.2466,-0.4558,-0.7716,-0.825,-0.8848,-0.8228,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8952,-0.9768,-0.7168,0.45,-0.768,-0.822,-0.8474,-0.86,-0.8582,-0.8656,-0.8528,-0.9164,-0.8782,-0.9182,-0.842,-0.66,-0.68,-0.8668,-0.66,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6858,0.0572,1,1,1,-0.7714,-0.7714,-0.8858,-1,-1,-0.9714,-0.9142,-0.8858,-0.8858,-0.2858,-0.6,-0.8858,-0.7428,1,-1,-1,-1,-1,-1,-1,-1,-0.883,-0.876,-0.8826,-0.8636,-0.8838,-0.8606,-0.8396,-0.8326,-0.7856,-0.6902,0.8992,0.9606,0.9562,0.969,0.9594,0.9598,0.9538,0.9288,0.8788,0.7726,-0.5066,0.2824,0.3468,-0.0992,0.507,0.8228,0.985,1,-0.3932,0.191,0.1686,-0.1012,0.1686,0.2808,0.3258,0.2584,0.3708,0.663,0.6854,0.191,0.528,0.4832,0.4832,0.4606,0.2134,0.5056,0.618,0.6854,0.7078,0.8652,0.7528,1,0.7752,0.7528,0.618,0.4606,0.3708,0.4158,0.0338,-0.4832,-0.5102,-0.347,-0.5918,-0.4966,-0.551,-0.5374,-0.5646,-0.1564,0.0476,0.5646,0.7006,0.1972,0.5238,0.3878,-0.1836,0.034,0.3742,0.9864,1,0.619,0.7552,0.9184,0.9456,0.8368,0.7278,0.687,0.5238,0.4558,0.347,0.3334,0.1972,0.0748,-0.0708,-0.0552,-0.4804,-0.3228,-0.37,-0.4016,-0.3544,-0.2284,-0.1654,0.433,0.4646,0.4016,0.8898,0.496,-0.1338,0.2126,0.3386,1,0.9686,0.2598,0.7008,0.7322,0.622,0.4646,0.5276,0.4174,0.2756,0.4804,0.2598,0.1338,0.2598,0.1024,1,-1,-1,1,-1,-1,-1,-0.7334,-1,-0.0334,0,0.0334,0.4666,0.5,0.1666,0.1,-0.1166,1,0.8666,0.4334,0.6166,0.75,0.7834,0.3166,0.45,0.4166,0.4834,0.5,0.5834,0.8166,0.85,0.7834,0.7334,0.75,0.7666,0.6666,0.7,0.5334,0.25,-0.0334,-0.2,'4'
0.1702,0.5492,0.8752,0.8322,-0.4052,-0.6164,-0.8082,-0.7986,-0.8418,-0.7554,-0.7458,-0.7266,-0.5972,-0.5684,-0.6786,-0.7746,-0.3908,-0.2422,0.0696,0.5204,0.6738,0.928,0.9424,0.8658,1,0.9952,0.7362,0.1558,0.0648,-0.1128,-0.0984,-0.175,0.0398,0.4256,0.8742,0.7316,-0.5556,-0.9078,-0.7316,-0.694,-0.8364,-0.8826,-0.782,-0.6478,-0.5598,-0.6646,-0.7148,-0.7778,-0.564,-0.2704,-0.2956,-0.1908,0.132,0.8574,1,0.5932,0.455,0.48,0.4004,0.4508,0.2662,0.065,-0.0314,-0.304,0.1032,0.4242,1,0.8286,-0.688,-0.8946,-0.6264,-0.534,-0.6528,-0.6352,-0.7758,-0.3538,-0.4638,-0.6044,-0.5208,-0.534,-0.644,-0.2616,-0.2396,-0.156,0.099,0.4198,0.499,0.3142,0.6308,0.5868,0.512,0.4682,0.3406,0.1252,0.2484,-0.0638,0.133,0.473,1,0.862,-0.532,-0.9556,-0.5862,-0.6404,-0.8818,-0.9064,-0.9014,-0.6896,-0.6206,-0.6206,-0.5912,-0.5024,-0.5812,-0.6996,-0.5518,-0.1872,-0.1626,0.266,0.9262,0.8522,0.4532,0.6404,0.5666,0.5468,0.4582,0.2464,0.2266,0.0246,0.259,0.6768,1,0.9108,-0.2534,-0.8162,-0.8272,-0.5208,-0.4874,-1,-0.7382,-0.7716,-0.6824,-0.6992,-0.7048,-0.61,-0.766,-0.7548,-0.7828,-0.5154,-0.1754,0.4596,0.5988,0.61,0.3314,0.3426,0.5934,0.6658,0.5488,0.1866,0.1532,-0.3036,0.3216,0.807,1,0.9416,-0.421,-0.5204,-0.6492,-0.5614,-0.5964,-0.959,-0.6608,-0.5964,-0.6432,-0.6492,-0.31,-0.3568,-0.3742,-0.4094,-0.4502,-0.3568,0.0818,0.2982,0.6082,0.5906,0.5146,0.5614,0.731,0.848,0.6198,0.538,0.3568,0.0936,0.3038,0.9864,1,0.9864,-0.8156,-0.8566,-0.6178,-0.6178,-0.9454,-0.8634,-0.9522,-0.5972,-0.4744,-0.5494,-0.6792,-0.7952,-0.6314,-0.5904,-0.5154,-0.5904,-0.3584,-0.2628,0.3584,0.5426,0.8294,0.6928,0.6656,0.9044,0.7952,0.5154,0.4812,0.1604,0.45,0.95,0.8,0.5,0.25,-0.35,-0.65,-0.2,-0.2,-0.4,-0.6,-0.3,-0.05,-0.1,-0.7,-0.2,0.15,0.25,0.35,0.75,0.95,1,0.65,0.65,0.95,0.55,0.45,0.4,0.35,-0.15,-0.25,0.05,-0.0244,0.3658,0.6586,0.6098,-0.317,-0.5122,-0.6586,-0.4634,-0.4634,-0.3658,-0.7074,-0.6098,-0.317,-0.4634,-0.756,-0.561,-0.561,-0.2196,0.2682,0.2682,0.7074,1,0.9512,0.4146,0.7074,0.7074,0.4146,0.1708,0.1708,-0.0244,0.0244,-0.1708,0.25,0.625,1,0.85,-0.525,-0.625,-0.05,-0.05,-0.625,-0.625,-0.5,-0.125,0.075,-0.05,-0.3,-0.15,-0.175,-0.275,-0.175,-0.025,0.05,0.525,0.8,0.6,0.525,0.725,0.65,0.5,0.425,0.25,0.55,0.525,-1,-1,-1,-1,-1,-1,-1,-0.958,-0.9674,-0.874,-0.608,0.622,0.8834,0.7082,0.6102,0.489,0.2206,0.0222,-0.1646,-0.1808,-0.2508,-0.3676,-0.4912,-0.7362,-0.9324,-0.9254,-0.951,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9262,-0.9188,-0.5716,0.1874,0.6104,0.856,0.6898,0.5438,0.409,0.1764,-0.0156,-0.1746,-0.1966,-0.254,-0.4016,-0.4756,-0.627,-0.7266,-0.784,-0.8448,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.9534,-0.84,0.1632,-0.6676,-0.7626,-0.785,-0.7826,-0.7976,-0.7076,-0.79,-0.9512,-0.9578,-0.9312,-0.9378,-0.85,-0.4468,-0.2,-0.4068,-0.5,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6,-0.0572,1,1,1,-0.8572,-0.9428,-0.9142,-0.8572,-0.8,-0.8572,-1,-1,-1,-0.9142,-0.8,-0.6572,-0.6858,-0.7142,-0.3714,-1,-1,-1,-1,-1,-1,-0.826,-0.817,-0.826,-0.7822,-0.7846,-0.7852,-0.828,-0.7834,-0.7352,-0.7202,0.7648,0.807,0.8002,0.8494,0.8414,0.8768,0.907,0.8976,0.8574,0.811,-0.48,-0.0352,-0.0692,-0.001,0.6178,0.9926,1,1,-0.4838,-0.0752,-0.1182,-0.1398,-0.1398,-0.0108,-0.0322,-0.1828,-0.2044,0.2474,0.1828,0.2258,0.5054,0.5268,0.5268,0.4194,0.4624,0.6774,0.7204,0.6774,0.8494,1,0.957,0.4838,0.742,0.7634,0.5484,0.4838,0.3334,0.3764,0.3978,0.0968,-0.6098,-0.2358,-0.5284,-0.3822,-0.5448,-0.496,-0.4308,-0.4634,-0.2196,0.3984,0.8212,0.0244,0.5934,0.0894,0.2196,0.1544,0.3984,0.6422,0.5934,0.561,0.7886,0.691,0.8374,1,0.6422,0.8536,0.756,0.5934,0.4146,0.4308,0.8048,0.5934,0.1324,0.1764,-0.2794,-0.1764,-0.3088,-0.353,-0.2058,-0.2352,0.103,0.7206,1,0.7206,0.8824,0.5294,0.103,0.1324,0.0294,0.5588,0.5882,0.6618,0.8676,0.603,0.4706,0.7206,0.7058,0.3382,0.3236,0.4558,0.1764,0.3676,0.4264,0.1764,1,-1,-1,1,-1,-1,-0.2,-0.7334,-1,-0.469,-0.062,-0.062,-0.0442,-0.115,-0.1858,-0.0088,-0.0266,0.2566,-0.062,0.3628,1,0.9292,0.9292,0.77,0.5576,0.3452,0.2744,0.3452,0.416,0.1504,0.3098,0.6638,0.416,0.3982,0.292,0.1682,0.3628,0.0088,0.1858,-0.1858,-0.3982,'4'
0.1276,0.6638,0.6256,0.5064,-0.4638,-0.5362,-0.8256,-0.9404,-0.7446,-0.7064,-0.6596,-0.6596,-0.7064,-0.7192,-0.4894,-0.5788,-0.817,-0.6852,-0.5022,-0.5276,-0.068,0.366,0.634,0.766,0.349,0.0766,-0.1022,0.0978,0.2,0.5702,0.8086,1,0.0266,0.357,0.7052,0.6306,-0.5026,-0.7798,-0.7726,-0.6802,-0.7904,-0.8686,-0.8934,-0.7264,-0.6164,-0.6056,-0.4316,-0.6128,-0.7052,-0.5382,-0.2398,-0.1722,0.0408,0.3534,0.7336,0.9786,0.7726,0.2504,0.318,0.3358,0.453,0.7584,1,0.968,0.0156,0.375,1,0.879,-0.621,-0.8828,-0.707,-0.6602,-0.9102,-0.871,-0.75,-0.7188,-0.582,-0.6796,-0.8672,-0.4726,-0.5352,-0.5624,-0.4218,-0.332,-0.2188,0.082,0.6796,0.5664,0.586,0.168,0.254,0.2734,0.418,0.871,0.9258,0.836,0.0762,0.4556,0.9092,0.835,-0.6082,-0.6124,-0.802,-0.7402,-0.897,-0.9422,-0.9298,-0.703,-0.6784,-0.5794,-0.8268,-0.8722,-0.8886,-0.831,-0.6248,-0.402,-0.1052,0.0186,0.3444,0.7278,0.6164,0.501,0.2742,0.4104,0.3774,0.567,1,0.9298,0.3162,0.7392,1,0.9526,-0.3202,-0.5652,-0.4546,-0.411,-0.7392,-0.8538,-0.743,-0.7036,-0.4822,-0.3636,-0.4704,-0.5574,-0.6008,-0.5494,-0.5336,-0.2924,-0.1226,0.0356,0.3794,0.747,0.7392,0.5652,0.336,0.3636,0.66,0.9052,0.9328,0.8656,0.2214,0.8442,0.9464,1,-0.3528,-0.7032,-0.82,-0.5962,-0.7664,-0.9222,-0.9806,-0.8102,-0.8492,-0.8248,-0.927,-0.8734,-0.781,-0.7858,-0.5086,-0.3722,-0.3284,-0.2312,0.6788,0.9806,0.8054,0.2166,-0.1582,0.4502,0.5182,0.7712,0.6788,0.5864,0.0976,0.8048,0.6008,0.8134,0.0542,-0.6572,-0.5358,-0.731,-0.7918,-0.796,-0.7874,-0.371,-0.3622,-0.6138,-0.7874,-0.7354,-0.6008,-0.3926,-0.2928,-0.206,-0.1626,0.2452,0.9306,1,0.783,0.7528,0.7614,0.666,0.4924,0.0022,0.0238,-0.0412,0.2258,0.9354,0.871,0.2904,-0.1612,-0.0968,-0.3548,-0.4838,-0.2258,-0.1612,-0.0968,-0.8064,-0.871,-0.4194,-0.1612,-0.1612,-0.2258,-0.2904,-0.0968,-0.2904,-0.0322,0.2258,0.8064,0.5484,0.8064,0.2258,0.0968,-0.0322,-0.0968,0.5484,0.871,1,0.5294,0.9216,0.7648,0.6078,0.451,0.2156,0.2942,-0.098,-0.255,-0.0196,-0.1764,0.098,0.098,-0.1372,0.098,0.098,0.0196,-0.255,-0.1372,-0.1764,0.4902,0.8432,0.6862,0.6078,0.647,0.647,0.4118,0.451,0.5686,0.6078,0.4118,1,-0.0434,0.2754,0.826,0.7102,-0.913,-0.913,-0.971,-0.855,-0.6812,-0.7392,-0.7682,-0.5652,-0.4492,-0.5072,-0.4492,-0.6812,-0.5362,-0.5652,-0.3624,-0.1594,-0.0724,0.3044,0.826,0.826,0.6812,0.3044,0.2464,0.3624,0.3624,0.884,1,0.971,-1,-1,-1,-1,-1,-0.9392,-0.9482,-0.8692,-0.8844,-0.8996,0.105,0.0046,0.7078,0.7078,0.9544,0.8112,0.6712,0.4734,0.312,0.172,0.1264,0.0046,-0.6194,-0.863,-0.9056,-0.9238,-0.8996,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,-0.9162,-0.8552,-0.8686,-0.8762,-0.2342,-0.1714,0.8476,0.8514,0.8324,0.6458,0.4934,0.2724,0.078,-0.082,-0.1086,-0.1866,-0.6496,-0.7962,-0.8114,-0.8438,-0.8228,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.953,-0.9468,-0.86,-0.9334,-0.8634,-0.83,-0.828,-0.664,-0.614,-0.79,-0.736,-0.72,-0.7528,-0.782,-0.8856,-0.891,-0.9238,-0.6134,-0.4168,-0.5234,-0.5134,-0.7468,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4858,-0.9428,-0.9428,-0.9714,0.4858,1,1,1,-0.7428,-0.6286,-0.9714,-0.8858,-0.9428,-0.8858,-0.9142,-0.8572,-0.1142,-0.5142,-0.8,-0.8572,-0.9428,-0.5142,-1,-1,-1,-1,-1,-1,-0.6908,-0.6958,-0.728,-0.747,-0.7404,-0.7542,-0.7566,-0.7752,-0.7784,-0.7296,0.511,0.504,0.5122,0.57,0.6778,0.7584,0.7814,0.8494,0.853,0.7878,-0.52,0.2352,-0.162,-0.301,-0.1828,-0.259,0.3104,-0.4584,0.591,1,0.0454,0.1364,0.0454,-0.091,-0.1818,-0.1818,0.1818,0.1818,0.1364,0.6818,0.409,0.3636,0.2272,0.6818,0.3182,0.7272,0.5454,0.7272,0.6364,0.7272,0.1364,0.1818,0.1364,0.1818,0.0454,0.0454,-0.4546,-0.5,-0.2728,-0.7272,0.6884,0.974,0.1948,-0.1428,0.039,-0.039,-0.1428,-0.065,-0.2208,0.2208,0.2728,1,0.5584,0.2988,0.5324,0.922,0.922,0.8702,0.8182,0.6104,0.7142,0.948,0.6104,0.4546,0.1168,0.2988,-0.039,-0.091,-0.065,-0.039,-0.1428,-0.8442,0.6868,0.759,0.3976,-0.1566,-0.012,-0.0602,-0.1566,0.012,0.0602,0.0844,-0.0362,0.9278,0.6626,0.3254,0.6868,0.8314,0.8554,0.7108,0.735,0.7108,1,0.9278,0.7108,0.4698,-0.0602,0.012,0.0844,0.0602,-0.012,0.0602,-0.0844,-0.4698,0.1696,-1,-1,1,-1,-1,-0.8,-0.8334,-1,-0.0894,0.1544,0.187,0.187,0.1544,0.0244,0.0732,0.4472,0.3822,0.5448,1,0.8212,1,0.9674,0.3334,0.3334,0.4634,0.8536,0.7236,0.4796,0.3008,0.3984,0.5772,0.1382,0.317,0.756,0.6098,0.2846,-0.0244,0.0732,0.1056,-0.5284,'5'
-0.0124,0.4854,0.6764,0.5518,-0.5104,-0.863,-0.7468,-0.7054,-0.6142,-0.8258,-0.9212,-0.7178,-0.639,-0.776,-0.8298,-0.6764,-0.7344,-0.6348,-0.3112,-0.361,-0.0746,0.2614,0.585,0.697,0.2822,0.1618,0.1908,0.2988,0.4108,0.5518,0.8922,1,0.122,0.4488,1,0.8582,-0.5866,-0.8504,-0.7992,-0.7756,-0.7992,-0.9448,-0.8346,-0.8228,-0.7362,-0.7598,-0.7204,-0.689,-0.7638,-0.6062,-0.3898,-0.3032,-0.3032,0.0118,0.2244,0.2362,0.307,0.1732,-0.004,0.0866,0.193,0.4606,0.6062,0.7796,0.0872,0.3978,1,0.8598,-0.5416,-0.8372,-0.7954,-0.803,-0.7878,-0.8334,-0.856,-0.6174,-0.5568,-0.6326,-0.6212,-0.606,-0.5758,-0.5416,-0.606,-0.4886,-0.3598,-0.0076,0.4432,0.3864,0.3826,-0.0266,-0.3144,-0.0682,0.0644,0.6894,0.6212,0.466,0.0698,0.4108,1,0.8566,-0.6008,-0.8914,-0.8644,-0.6706,-0.7752,-0.9768,-0.9186,-0.6976,-0.6822,-0.655,-0.6628,-0.721,-0.7054,-0.6434,-0.814,-0.4418,-0.4496,-0.1938,0.4186,0.3488,0.0582,-0.4032,-0.221,-0.0466,0.341,0.7558,0.779,0.4148,0.19,0.5738,1,0.9156,-0.3512,-0.7044,-0.831,-0.6738,-0.6622,-0.7544,-0.7696,-0.6276,-0.597,-0.8388,-0.62,-0.4856,-0.4818,-0.7966,-0.6698,-0.4664,-0.2822,-0.236,0.4318,0.643,0.4088,0.048,0.0404,0.048,0.3244,0.451,0.3858,0.3934,0.3562,0.9544,0.9406,1,-0.1872,-0.5936,-0.4384,-0.4704,-0.8402,-0.8494,-0.7716,-0.3652,-0.3106,-0.7124,-0.4384,-0.4156,-0.7488,-0.7352,-0.6758,-0.58,-0.6074,0.0046,0.484,0.5662,0.6804,0.4748,0.347,0.5252,0.6804,0.5616,0.3562,0.1964,0.1126,0.878,0.615,0.2724,-0.493,-0.784,-0.54,-0.5774,-0.6572,-0.6292,-0.7418,-0.5446,-0.723,-0.8404,-0.5118,-0.5024,-0.817,-0.6808,-0.601,-0.3944,0.0564,0.7934,1,0.8686,0.676,0.7888,0.6432,0.0938,-0.155,-0.1502,-0.3334,-0.2536,0.4194,0.742,0.4838,0.6774,-0.4194,-0.0322,0.0322,0.2258,0.1612,-0.4838,0.0322,0.1612,0.0322,-0.6774,-0.0968,0.0322,-0.0968,0.0322,-0.0322,0.0322,0.0322,0.0322,0.871,1,0.4194,0.4194,0.2904,-0.0968,0.3548,0.2258,0.2904,0.5484,0.091,0.409,0.2272,0.3636,-0.2272,-0.2728,-0.2728,-0.3636,-0.409,-0.5,-0.4546,-0.4546,-0.6364,-0.5,-0.409,-0.4546,-0.4546,-0.2728,-0.2728,-0.0454,0.1364,0.2272,0.6818,0.6364,0.3636,0.3182,0.3636,0.4546,0.591,0.6818,0.9546,1,0.3246,0.6104,1,0.8962,-0.039,-0.4806,-0.8182,-0.3506,-0.2988,-0.4806,-0.2988,-0.1688,-0.2988,-0.3766,-0.2988,-0.1688,-0.1688,-0.2208,-0.1168,0.039,0.1688,0.1428,0.5844,0.8442,0.3766,0.1168,0.2208,0.2728,0.5844,0.7402,0.6884,0.5584,-1,-1,-1,-1,-1,-1,-1,-1,-0.9376,-0.9494,-0.8422,0.491,0.762,0.9494,0.8422,0.7798,0.7024,0.509,0.3006,0.0446,0.0416,-0.259,-0.6666,-0.878,-0.9196,-0.9346,-0.9346,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9018,-0.9064,-0.195,0.5942,0.748,0.7926,0.7392,0.748,0.6366,0.447,0.271,-0.0078,-0.039,-0.2866,-0.6522,-0.7948,-0.826,-0.8238,-0.8462,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.94,-0.4534,-0.676,-0.708,-0.766,-0.786,-0.76,-0.771,-0.7346,-0.802,-0.9146,-0.96,-0.8946,-0.78,-0.62,-0.72,-0.56,-0.6734,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,-0.8,-0.8,-0.9714,-1,-0.9428,-0.8858,-0.8286,-0.9428,-0.5428,-0.4,-0.7142,-0.8286,-0.8286,-0.8286,-0.5142,-1,-1,-1,-1,-1,-1,-0.6848,-0.6968,-0.7098,-0.7328,-0.7616,-0.7394,-0.7868,-0.7718,-0.7888,-0.7306,0.8056,0.7698,0.7546,0.7026,0.7178,0.714,0.7094,0.653,0.5742,0.5706,-0.4934,0.247,0.0212,-0.398,0.6366,0.9978,0.7948,-0.0584,-0.3708,-0.1236,-0.1686,-0.4158,-0.1686,0.0112,0.0786,-0.4158,0.1012,-0.0786,0.4606,0.618,0.5056,0.5056,0.7528,0.9102,0.9326,0.9326,1,0.9102,0.9102,0.8426,0.528,0.146,0.236,0.3034,0.2808,0.3932,0.3708,0.2584,0.0112,-0.4832,-0.2422,-0.0736,-0.2842,-0.0948,-0.0526,-0.2842,-0.2,-0.3264,-0.0948,-0.179,0.221,0.7894,0.3474,0.1578,0.4106,0.8316,0.7474,0.7052,0.8316,0.7264,1,0.8526,0.7052,0.1158,0.0316,0.0526,0.2632,0.4948,0.3264,0.3894,0.0736,-0.4526,0.122,0.3658,0.0244,0.0488,0.0732,0.0732,0.2196,-0.0732,0.0732,0,0.0488,0.8292,0.6342,0.5122,0.5854,0.9024,0.878,0.8536,0.7318,0.5366,1,0.8292,0.4634,0.3658,0.0976,-0.0488,0.5366,0.5854,0.756,0.6586,0.1464,-0.4878,1,-1,-1,1,-1,-1,-0.8,-0.8,-1,-0.4286,-0.3928,-0.5,-0.2858,-0.2858,-0.125,0.0714,-0.1072,0.3036,0.4108,0.3572,0.3214,0.0714,0.2858,0.0714,0.0536,0.1608,0.4822,0.3392,0.0892,0.25,1,0.875,0.4822,0.1964,0.1428,-0.25,-0.0892,-0.3214,-0.3572,-0.3036,-0.4642,'5'
-0.1568,0.317,0.352,0.5122,0.77,0.6794,0.54,0.3938,0.1778,-0.101,-0.101,-0.094,-0.1568,-0.0522,0.2126,0.2264,0.4076,0.8886,1,0.9652,0.5818,0.6236,0.8606,0.7492,0.6656,0.2962,0.1986,0.0314,-0.2614,-0.1778,-0.1778,-0.101,-0.2798,0.0358,0.2916,0.381,0.5416,0.637,0.5358,0.4464,0.0714,-0.1726,-0.1666,0.1012,-0.006,-0.0596,0.3452,0.4048,0.4822,0.3988,0.7678,0.8096,0.6548,0.613,0.7084,1,0.8392,0.4642,0.2678,0.2858,0.2798,-0.0774,0.1548,0.1428,-0.25,0.0658,0.3816,0.3224,0.5394,1,0.7828,0.7106,0.3158,0.0592,0.0066,0.1908,0.0132,0.329,0.4934,0.6644,0.6448,0.796,0.4802,0.3684,0.4672,0.5658,0.6118,0.6118,0.5066,0.1908,0.1316,0.0922,-0.1316,-0.2368,-0.0986,-0.3486,-0.311,-0.0244,0.3292,0.1708,0.5488,0.8476,1,0.9574,0.1586,0.1342,-0.006,-0.067,0.2134,0.1036,0.244,0.439,0.5182,0.4146,0.1036,-0.1646,0.2988,0.317,0.1952,0.5548,0.4878,-0.006,-0.0792,-0.1586,-0.1342,-0.4268,-0.25,-0.2926,-0.343,-0.072,0.2334,0.1354,0.4466,0.6714,1,0.9884,0.2162,0.1296,0.0662,0.026,0.291,0.6312,0.6368,0.1354,-0.0606,-0.1816,-0.1182,-0.0778,-0.2276,-0.1008,0.1874,0.4236,0.3544,-0.4006,-0.4466,-0.4064,-0.3718,-0.5158,-0.4928,-0.4698,-0.2342,0.1582,0.3924,0.405,0.4874,0.9494,0.9684,1,0.7594,0.614,0.3102,0.3608,0.3988,0.4556,0.367,0.0254,-0.1392,-0.386,-0.1582,-0.0696,-0.2722,-0.0632,0.1582,0.405,0.2152,-0.038,-0.2342,-0.4304,-0.5822,-0.5886,-0.557,-0.5696,0.0082,0.5528,0.3008,0.317,0.4228,0.7886,1,0.8862,0.7642,0.0244,0.317,0.5122,0.6422,0.6016,0.3658,-0.1138,-0.2276,-0.1708,0.0244,-0.0326,-0.0976,0.4552,0.5528,0.9594,0.7074,0.2196,-0.252,-0.1626,-0.1056,-0.252,-0.0814,-0.309,0.1836,0.6734,0.5102,0.7142,0.8776,0.9592,0.796,0.4694,0.3878,0.1836,0.3062,-0.102,0.2244,0.3062,0.2654,0.2244,0.4694,0.8368,1,0.9592,0.5918,0.347,0.796,0.9184,0.6734,0.347,0.3062,0.2654,-0.0204,-0.1428,0.1428,0.1428,-0.2972,0.027,0.3514,0.5676,0.7838,0.7298,0.5136,0.4054,-0.081,-0.027,-0.1352,-0.1892,-0.1892,-0.027,0.3514,0.4054,0.4594,1,1,0.8378,0.6216,0.8918,0.8378,0.6216,0.7838,0.5676,0.2432,0.081,0.1352,-0.027,-0.1892,0.027,-0.194,0.1044,0.4328,0.4626,0.7014,1,0.8806,0.6716,0.3432,0.0746,0.0448,0.2836,0.194,0.2836,0.612,0.6418,0.612,0.8208,0.791,0.791,0.8208,0.7612,0.9104,0.9402,0.3134,0.2238,0.4328,0.194,-0.1044,-0.0448,0.2538,-0.0448,-1,-1,-1,-1,-1,-1,-1,-0.9656,-0.9596,-0.9596,-0.371,0.4116,0.9556,0.915,0.9374,0.8726,0.7856,0.6744,0.6016,0.3954,0.2396,-0.09,-0.6178,-0.814,-0.8706,-0.901,-0.8928,-0.9332,-0.9312,-0.9312,-0.9394,-0.9556,-0.9576,-1,-1,-1,-1,-1,-1,-1,-0.9658,-0.9648,-0.95,-0.6122,0.0646,0.7798,0.9412,0.8544,0.7498,0.7832,0.6982,0.7534,0.505,0.1664,-0.2796,-0.7384,-0.771,-0.7402,-0.7368,-0.7534,-0.7728,-0.7526,-0.778,-0.8262,-0.8544,-0.8534,-1,-1,-1,-1,-1,-1,-1,-0.953,-0.9134,-0.88,-0.6934,-0.78,-0.612,-0.5,-0.692,-0.7468,-0.7068,-0.7168,-0.6668,-0.6968,-0.7234,-0.6434,-0.7368,-0.1934,-0.0034,0.22,0.1466,0.33,0.1766,0.18,0.1,-0.08,-0.0268,-1,-1,-1,-1,-1,-1,-1,-0.3428,-0.7714,1,1,1,1,-0.4858,-0.5142,-0.5714,-0.6572,-0.7428,-0.6,-0.5714,-0.4,0.4,0.4286,0.7142,-0.3714,-0.9714,-0.9714,-0.9428,-1,-0.6858,-0.7428,-0.9714,-0.9428,0.8858,0.8858,0.9104,0.9248,0.9548,0.9644,0.9872,1,1,1,0.1544,0.1544,0.1456,0.1404,0.1686,0.1958,0.1734,0.109,-0.0702,-0.3196,-0.4934,-0.3882,-0.5506,-0.348,0.3182,0.7928,0.821,-0.1416,0.2174,0.4348,0.4782,0.3044,-0.0434,-0.087,0.087,0.3044,0.6086,0.8696,0.7392,0.7826,1,0.4348,0.1304,0.3914,0.174,0.6956,0.6956,0.7392,0.8696,0.6522,0.2174,0.5652,0.7826,0.2174,0.4782,0.2608,-0.087,-0.2174,-0.6086,-0.3044,0.6342,0.9268,1,0.6098,0.2196,-0.1708,-0.1464,0.0488,0.2926,0.878,0.6098,0.878,0.9512,0.439,0.2926,0.3902,0.4878,0.561,0.3902,0.3902,0.3902,0.4146,0.0976,0.2196,0.6098,0.4146,0.4146,-0.0488,-0.1708,-0.2196,-0.1952,-0.7074,0.6586,0.878,1,1,0.4634,0.122,0.1464,0.0976,0.2926,0.8292,0.8536,0.7804,0.9024,0.6342,0.3902,0.244,0.4146,0.4634,0.5366,0.6586,0.7074,0.4634,0.122,0.1464,0.5122,0.0732,0.0976,-0.1464,-0.3902,-0.5122,-0.6098,-0.7074,0.1532,-1,-1,1,-0.8,-1,-1,-0.8334,-1,-0.8688,-0.5082,0,0.164,0.082,0.246,0.5738,0.5246,0.623,0.5574,0.6886,0.6722,0.5246,0.5574,0.754,0.6886,0.918,0.754,0.836,0.9508,0.9672,0.836,0.836,0.705,1,0.7868,0.5902,0.7378,0.7704,0.9508,0.541,0.2132,'6'
-0.3608,0.347,0.464,0.7458,1,0.9656,0.5396,0.189,-0.2714,-0.1202,-0.2028,-0.3608,-0.2164,-0.2302,-0.2578,-0.1066,0.1478,0.835,0.9382,0.8282,0.6082,0.6632,0.7044,0.8006,0.5052,0.2234,0.0172,-0.1202,-0.2164,-0.2714,-0.5326,-0.2028,-0.078,0.3376,0.591,0.6038,0.8636,1,0.987,0.3702,0.0454,0.1038,-0.1428,-0.1624,0.1298,0.1754,0.2142,0.2858,0.4806,0.8572,0.8376,0.526,0.4546,0.448,0.7338,0.7012,0.591,0.2338,0.0584,-0.1104,-0.2858,-0.3052,-0.2338,-0.2662,-0.1304,0.2464,0.4856,0.5434,0.7174,1,0.8768,0.7608,0.087,-0.029,0.0652,-0.1376,0.2102,0.2682,0.1086,0.0942,0.5,0.8334,0.7174,0.7392,0.4856,0.5724,0.5652,0.7174,0.355,0.0072,-0.326,-0.3624,-0.4782,-0.4276,-0.5508,-0.3478,-0.282,0.0256,0.359,0.25,0.5706,1,0.8012,0.718,0.4102,0.1282,-0.1538,0.0256,0.0576,0.0576,0.2436,0.468,0.3718,0.3462,0.1794,0.1218,-0.0192,0.1666,0.2436,0.4424,0.2692,-0.0834,-0.2948,-0.3718,-0.3782,-0.3846,-0.6346,-0.4166,-0.3098,-0.0218,0.3478,0.2336,0.6142,1,0.8316,0.788,0.5,0.2228,0.1142,0.038,0.3044,0.4456,0.5816,0.663,0.5164,0.1468,0.212,0.087,0.049,0.2826,0.5544,0.5,0.212,-0.174,-0.3098,-0.2718,-0.4892,-0.3642,-0.4946,-0.424,-0.2446,0.1276,0.3724,0.383,0.4734,1,0.9946,0.6436,0.4096,0.4042,0.149,0.1542,0.5852,0.8564,0.8564,0.3138,0.0478,-0.016,-0.101,0.0426,0.1648,0.282,0.3192,0.4574,0.1968,-0.1914,-0.3564,-0.4148,-0.5372,-0.617,-0.5638,-0.3564,-0.0554,0.5572,0.2546,0.3136,0.8228,0.6532,0.6826,0.594,0.4244,-0.0258,-0.1292,0.2324,0.8598,1,0.5202,0.048,0.1586,0.2178,0.144,0.107,-0.0702,0.225,0.4908,0.6974,0.3432,-0.0922,-0.1366,-0.3284,-0.4908,-0.4686,-0.4392,-0.1292,0,0.4,0.64,0.92,1,0.84,0.68,0.4,0.24,0.04,0.04,0.12,0.16,0,-0.2,-0.16,0.4,0.84,0.92,0.88,0.56,0.72,0.92,0.84,0.68,0.56,0.36,0.44,0.2,0.24,0.2,0.36,-0.091,0.5,0.5454,0.8636,0.8636,0.909,0.6818,0.5,0.409,0.2272,0.1818,0.2272,0.1818,-0.0454,0.2272,0.3636,0.5,0.8182,1,1,0.7728,0.909,0.8636,0.8636,0.5454,0.409,0.2728,-0.1364,0,-0.409,-0.3182,-0.2272,-0.1304,0.2174,0.4782,0.5362,0.7392,1,0.913,0.3624,-0.1014,-0.1594,-0.0144,-0.3334,0.0144,0.2174,0.3624,0.3624,0.7102,0.7392,0.7972,0.5072,0.5652,0.5072,0.7972,0.7392,0.7102,0.4492,0.2464,0.0724,0.0724,0.0434,-0.0724,-0.1014,-1,-1,-1,-1,-1,-1,-1,-1,-0.8518,-0.959,-0.7194,-0.0126,0.4254,0.8632,0.8882,0.9544,0.9794,0.9134,0.8564,0.7126,0.5074,-0.0946,-0.7674,-0.8222,-0.9202,-0.9088,-0.911,-0.9294,-0.9316,-0.9316,-0.9248,-0.9384,-0.943,-1,-1,-1,-1,-1,-1,-1,-1,-0.8854,-0.955,-0.8136,-0.1794,0.068,0.428,0.5276,0.6894,0.6946,0.88,0.9486,0.8244,0.3904,-0.3048,-0.7332,-0.7878,-0.7396,-0.6958,-0.7514,-0.7396,-0.7494,-0.8008,-0.8532,-0.866,-0.8714,-1,-1,-1,-1,-1,-1,-1,-1,-0.72,-0.9868,-0.8868,-0.8068,-0.71,-0.69,-0.7368,-0.79,-0.72,-0.74,-0.7634,-0.77,-0.6968,-0.76,-0.4734,-0.4834,-0.1368,0.1866,0.3266,0.1232,0.2766,0.0866,-0.0734,-0.19,-0.1068,-1,-1,-1,-1,-1,-1,-1,-1,-0.3714,-0.6,1,1,0,-0.4286,-0.9142,-0.8572,-0.9142,-0.8858,-0.8858,-0.7142,0.1142,0.2,-0.1428,-0.2572,-0.2858,-0.6858,-0.9428,-0.9428,-0.9714,-0.6286,-0.8286,-0.9714,-0.8286,0.9412,0.9396,0.9424,0.9406,0.94,0.9668,0.9792,1,1,1,0.1488,0.0922,0.0932,0.1224,0.0442,-0.0392,-0.022,-0.0608,-0.2258,-0.5182,-1,-0.3412,-0.8404,-0.3004,-0.174,-0.0744,0.0508,-0.325,-0.3056,0.8134,0.8238,-0.0052,0.1192,-0.1192,-0.0052,0.0984,0.5958,0.7616,1,0.9482,0.544,0.285,0.171,0.0984,0.1192,0.2332,0.3472,0.4094,0.3782,0.2538,-0.026,-0.0362,0.0466,0.0466,0.0362,0.0362,-0.088,-0.171,-0.0778,-0.8032,0.116,0.029,0.826,0.9276,0.5652,0.5218,0.5508,0.4348,0.7536,0.7392,0.7536,0.8116,1,0.7392,0.5652,0.884,0.6522,0.2464,0.4202,0.5362,0.884,0.7536,0.5072,0.4058,0.855,0.855,0.5508,0.4782,0.6376,0.4202,0.1884,-0.6522,-0.0608,0.569,0.4476,0.536,0.1492,0.1712,0.4918,0.5248,0.5028,0.4476,0.4586,0.9006,0.9668,0.5028,0.5138,0.536,0.3922,0.6022,0.768,1,1,0.9448,0.7128,0.6354,0.547,0.4254,0.337,0.1934,-0.0498,-0.2376,-0.116,-0.4364,-0.9464,1,-1,-1,-1,-1,-1,-1,-1,-0.7894,-0.3334,-0.035,-0.228,0.228,-0.1228,0.421,0.4386,0.614,0.2456,0.3684,0.4036,0.4036,0.3508,0.4562,0.5438,1,0.8246,0.7544,0.6492,0.6666,0.8596,0.965,0.772,0.6492,0.4736,0.6666,0.6316,0.965,0.7894,0.0702,-0.1052,'6'
-0.1564,0.2934,0.5246,0.5032,-0.3704,-0.7474,-0.7688,-0.6488,-0.7344,-0.7174,-0.8844,-0.9144,-0.7774,-0.4562,-0.3748,-0.3618,-0.045,0.1006,0.3876,0.696,0.833,0.5932,0.773,1,0.8158,0.4604,0.1692,0.092,0.2506,0.4776,0.5118,0.576,-0.0678,0.2838,0.7712,0.7458,-0.5338,-0.6314,-0.678,-0.517,-0.7034,-0.767,-0.911,-0.9534,-0.4916,-0.2542,-0.4026,-0.428,-0.2372,-0.2712,0.3898,0.6906,0.8094,0.9322,1,0.7458,0.7204,0.7034,0.3516,0.1652,0.3602,0.2118,0.3644,0.428,-0.1226,0.2146,0.6782,0.6246,-0.613,-0.843,-0.7586,-0.636,-0.8238,-0.885,-0.9732,-0.7816,-0.6054,-0.4828,-0.5938,-0.6552,-0.6092,-0.4482,0.2298,0.3334,0.3716,0.8928,1,0.4866,0.7662,0.866,0.2874,0.3142,0.3946,-0.1724,0.3026,0.387,0.126,0.4674,0.9918,0.9512,-0.4838,-0.378,-0.4308,-0.5488,-0.504,-0.5732,-0.9674,-0.5976,-0.565,-0.4146,-0.244,-0.313,-0.4716,-0.0934,0.065,0.3618,0.7886,0.8212,1,0.87,0.756,0.9594,0.878,0.6708,0.4106,0.3456,0.191,0.309,0.0906,0.5116,0.8484,0.8442,-0.3642,-0.7222,-0.6884,-0.7136,-0.6422,-0.5958,-0.8526,-0.7052,-0.6548,-0.5874,-0.7348,-0.6674,-0.5706,-0.7052,-0.4232,0.2336,0.2632,0.5958,1,0.9452,0.7642,0.8652,0.8822,0.6252,0.4484,0.2506,0.1242,0.0694,0.2778,0.8788,0.8182,0.9344,-0.0606,-0.601,-0.7172,-0.591,-0.5656,-0.9646,-0.7122,-0.6364,-0.697,-0.7272,-0.5506,-0.702,-0.6314,-0.6616,-0.5202,-0.1818,0.3232,0.5758,0.793,0.904,0.9344,1,1,0.707,0.4848,0.2526,0.2222,-0.091,0.095,0.805,0.6,0.175,-0.47,-0.79,-0.84,-0.87,-0.885,-0.865,-0.785,-0.62,-0.845,-0.57,-0.64,-0.64,-0.605,-0.57,-0.445,-0.205,-0.005,0.505,0.97,1,0.89,0.505,0.44,0.275,0.2,-0.215,-0.21,-0.18,0.2972,1,1,0.5136,0.027,-0.081,-0.1352,-0.4054,-0.2432,-0.4054,-0.4054,-0.4054,-0.3514,-0.5676,-0.1892,-0.027,-0.027,0.4054,0.5136,0.7298,0.2972,0.2972,0.2432,0.8378,0.8378,0.5676,0.5136,0.3514,0.4594,0.8378,0.8378,0.8918,-0.1,0.45,0.65,0.6,-0.15,-0.6,-0.5,-0.45,-0.6,-0.55,-0.55,-0.5,-0.55,-0.15,-0.1,-0.5,0.05,0.25,0.3,0.6,0.95,0.9,0.7,1,0.95,0.3,-0.1,0.1,0.2,0.25,0.35,0.3,0.0338,0.3034,0.7078,0.663,-0.3708,-0.4606,-0.663,-0.6854,-0.5506,-0.663,-0.7528,-0.3034,-0.3258,-0.2134,-0.2808,-0.3932,-0.3708,-0.2584,0.2134,0.3034,0.528,0.9326,1,0.6854,0.7304,0.8202,0.4832,0.3708,0.4158,0.2134,0.3708,0.4606,-1,-1,-1,-1,-1,-0.9742,-0.9658,-0.9332,-0.964,-0.964,-0.8218,0.6384,0.9332,0.8612,0.6812,0.5442,0.419,0.1448,-0.0282,-0.191,-0.3282,-0.4378,-0.7634,-0.9468,-0.9538,-0.9468,-0.9502,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9522,-0.9582,-0.1284,0.6554,0.5846,-0.1942,0.4352,0.9392,0.6694,0.3466,0.264,0.1156,-0.1106,-0.2858,-0.4214,-0.513,-0.5836,-0.8238,-0.9292,-0.9124,-0.8964,-0.9312,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.94,-0.0034,0.69,0.6132,0.32,-0.57,-0.55,-0.63,-0.6712,-0.6334,-0.809,-0.6778,-0.7846,-0.8978,-0.8668,-0.9268,-0.7468,-0.6834,-0.5434,-0.56,-0.8368,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,-0.7428,-0.7714,-1,-0.8858,-0.9142,-0.9142,-0.8858,-0.9714,-0.9142,-0.4286,-0.3142,-0.8,-0.5714,-0.2572,-0.0286,-1,-1,-1,-1,-1,-1,-0.5286,-0.562,-0.604,-0.6056,-0.568,-0.5796,-0.5958,-0.6092,-0.6388,-0.7014,0.6098,0.6374,0.6368,0.6556,0.6252,0.6232,0.6394,0.7068,0.7798,0.8538,-0.5466,0.0118,-0.4302,-0.2102,0.3844,0.8198,0.9204,1,-0.6122,-0.57,-0.3786,-0.3504,-0.3364,-0.215,-0.1356,0.0234,0.201,0.271,0.4392,0.4158,0.6496,0.9018,1,0.9018,0.8598,0.8364,0.6822,0.6028,0.7336,0.7242,0.729,0.6916,0.4814,0.5046,0.3832,0.444,0.2524,0.0328,-0.0934,-0.3832,-0.6916,-0.6876,-0.5876,-0.4208,-0.3916,-0.2584,-0.2666,-0.225,-0.0208,0.3458,0.2834,0.6584,0.8458,0.6834,0.9042,1,0.9166,0.8416,0.7292,0.7208,0.8166,0.9208,0.85,0.8,0.8124,0.7166,0.6042,0.4958,0.4208,0.3416,0.175,-0.2208,-0.3596,-0.239,-0.2018,-0.253,-0.3318,-0.29,-0.123,0.0672,0.2064,0.5406,0.5916,0.8098,1,0.6102,0.833,0.9908,0.935,0.754,0.8516,0.6474,0.7308,0.7634,0.6658,0.782,0.5684,0.471,0.369,0.29,0.2994,0.072,-0.0534,-0.2436,0.8586,-1,-1,1,-1,-1,-0.8,-0.2,-1,-0.4666,-0.162,-0.0666,0.0476,0.0666,0.0858,0.0476,-0.1428,0.5048,0.619,0.2952,0.2952,0.6572,0.6762,0.3904,0.4476,0.4858,0.2,0.219,0.2762,0.8666,1,0.962,0.6762,0.581,0.8286,0.8858,0.9428,0.6572,0.4476,0.4286,-0.6762,'7'
0.1624,0.5536,0.7306,0.7048,-0.2656,-0.5276,-0.5756,-0.3986,-0.8044,-0.9298,-0.9114,-0.4576,-0.5536,-0.4576,-0.2842,-0.3616,-0.2988,0.1918,0.3062,0.4022,0.8892,0.8414,0.8672,1,0.9484,0.9742,0.6494,0.3874,0.2066,0.3838,0.3062,0.3986,0.0566,0.4114,1,0.9196,-0.3054,-0.7038,-0.5576,-0.4588,-0.8684,-0.989,-0.8904,-0.6308,-0.4478,-0.4186,-0.4516,-0.415,-0.4114,-0.064,0.2176,0.499,0.7514,0.7696,0.766,0.8282,0.872,0.8428,0.744,0.5174,0.3712,0.4844,0.309,0.382,0.0596,0.393,1,0.8842,-0.5158,-0.7192,-0.7368,-0.6912,-0.635,-0.821,-0.9544,-0.7614,-0.6596,-0.614,-0.4736,-0.5052,-0.4036,-0.2912,-0.207,0.3508,0.407,0.6808,0.6736,0.6176,0.5368,0.7508,0.7298,0.579,0.4982,0.365,0.2386,0.228,0.0708,0.4188,1,0.8892,-0.6634,-0.8164,-0.587,-0.5182,-0.8852,-0.9732,-0.8852,-0.805,-0.7744,-0.7552,-0.828,-0.7552,-0.8164,-0.7438,-0.1586,-0.0326,0.063,0.2428,0.476,0.4914,0.5756,0.7246,0.7362,0.7744,0.476,0.3652,0.0936,0.1282,0.1372,0.5308,1,0.9284,-0.5586,-0.6898,-0.6222,-0.515,-0.5826,-0.7176,-0.9284,-0.674,-0.5586,-0.654,-0.7972,-0.5746,-0.5388,-0.7018,-0.4552,-0.3162,0.006,0.336,0.4314,0.2524,0.7694,0.829,0.5348,0.6222,0.5826,-0.0616,0.0736,0.1134,0.1684,0.6376,0.9616,0.9446,-0.6418,-0.5736,-0.7014,-0.7314,-0.693,-0.6588,-0.7654,-0.4712,-0.4498,-0.9446,-0.9148,-0.855,-0.4542,-0.6546,-0.548,-0.0448,-0.049,-0.1172,0.4542,0.305,0.774,1,0.8848,0.1514,0.1088,-0.1898,-0.3006,-0.2324,0.1112,0.7414,0.4604,0.5148,-0.5148,-0.7234,-0.678,-0.4694,-0.6054,-0.8004,-0.8322,-0.5692,-0.492,-0.6508,-0.6282,-0.5464,-0.5464,-0.6054,-0.5102,-0.3288,0.1156,0.2472,0.5056,0.7868,0.9184,1,0.4196,0.1248,-0.102,-0.1972,-0.3016,-0.3832,0.4716,0.8114,0.6604,0.3208,0.2452,0.132,0.0566,0.132,-0.132,-0.132,-0.2452,-0.132,-0.2452,-0.1698,0.2452,0.1698,0.3584,0.585,0.7736,0.585,0.6982,0.8114,0.849,0.9246,0.7736,1,0.6982,0.585,0.5094,0.585,0.3208,0.585,0.2444,0.5556,0.6888,0.6444,0.0222,-0.2444,-0.2,0.0222,-0.4666,-0.7334,-0.5112,-0.2,-0.3778,-0.2,-0.1112,-0.1556,-0.4222,0.0666,0.2444,0.2444,0.3334,0.6,1,0.9556,0.9556,0.9112,0.7334,0.5112,0.1556,0.2888,0.2444,0.2444,0.1014,0.4202,1,0.913,-0.3624,-0.4202,-0.4782,-0.6522,-0.5072,-0.6232,-0.7972,-0.7392,-0.7102,-0.6232,-0.5072,-0.6812,-0.2464,-0.1304,0.0724,0.5072,0.5942,0.913,0.7102,0.5362,0.7102,0.6232,0.5942,0.6812,0.5362,0.4782,0.3914,0.3334,-1,-1,-1,-0.9678,-0.9626,-0.9728,-0.9694,-0.9728,-0.9626,-0.9558,-0.8488,0.511,0.9728,0.8438,0.5994,0.3804,0.1714,-0.0152,-0.1714,-0.2852,-0.382,-0.5432,-0.8608,-0.9524,-0.9168,-0.944,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.946,-0.9498,-0.656,0.081,1,1,1,-0.1814,0.4576,0.9662,0.7664,0.6234,0.366,0.1614,-0.0784,-0.2606,-0.3546,-0.4414,-0.558,-0.8368,-0.9096,-0.8932,-0.9096,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.96,-0.3068,0.6832,0.6766,0.6266,0.5932,0.29,-0.718,-0.734,-0.74,-0.842,-0.86,-0.8074,-0.7964,-0.7656,-0.822,-0.871,-0.751,-0.56,-0.64,-0.7434,-0.6568,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,0.4572,-0.5714,1,1,1,-0.9714,-0.8286,-0.8,-0.8858,-0.8858,-0.9428,-0.8572,-0.9714,-1,-0.1428,-0.5714,-0.7142,-0.9428,-0.8858,-1,-1,-1,-1,-1,-1,-1,-0.6198,-0.6302,-0.6018,-0.62,-0.6518,-0.6396,-0.6378,-0.691,-0.7206,-0.6824,0.922,0.932,0.9482,0.9466,0.958,0.9748,0.976,0.9756,0.9906,0.8818,-0.4934,0.2706,-0.2328,-0.2606,0.3822,0.7,0.8582,1,-0.6494,-0.6716,-0.5018,-0.3174,-0.3322,-0.3542,-0.2988,-0.2584,-0.118,0.0296,0.1734,0.3506,0.5756,0.7048,0.963,1,0.9152,0.749,0.7012,0.6642,0.7232,0.7602,0.7712,0.6716,0.7232,0.7232,0.5978,0.476,0.321,0.2768,0.059,-0.214,-0.7022,-0.7924,-0.6612,-0.47,-0.47,-0.5028,-0.3524,-0.2322,0.0274,0.1666,0.2186,0.5328,0.6612,0.6394,0.888,1,0.888,0.9044,0.8306,0.7186,0.7786,0.8442,0.735,0.7814,0.7596,0.5846,0.5846,0.4726,0.3962,0.3524,0.2732,-0.0192,-0.6468,-0.564,-0.5964,-0.5964,-0.4594,-0.4486,-0.3766,-0.0522,0.1892,0.4522,0.5676,0.8162,1,0.8594,0.7118,1,0.9604,0.8162,0.7154,0.7406,0.8882,0.8378,0.701,0.7586,0.6432,0.5712,0.3874,0.481,0.3226,0.254,0.146,-0.2684,-0.1614,-1,-1,1,-1,-1,-1,0.2,1,-0.14,0.04,0.32,0.36,0.24,0.26,0.38,0.48,0.6,0.6,0.66,0.28,0.84,0.46,0.36,0.32,0.68,1,0.48,0.34,0.52,0.72,0.78,0.66,0.4,0.36,0.34,0.32,0.38,0.16,0.08,-0.36,'7'
-0.9212,0.7184,1,0.4648,0.7296,0.5268,-0.3522,-0.4366,-0.6508,-0.5774,-0.6564,-0.4986,-0.5944,-0.5944,-0.6508,-0.7578,-0.5606,-0.583,-0.6338,-0.138,-0.1324,-0.2902,-0.2732,-0.2,-0.217,-0.1662,-0.2394,-0.4648,-0.3746,-0.414,-0.4536,-0.3634,-0.199,0.699,0.636,1,0.8884,0.0826,-0.131,-0.4272,-0.636,-0.903,-0.8544,-0.597,-0.7282,-0.8544,-0.6602,-0.5826,-0.597,-0.199,-0.2038,0.1602,0.2718,0.403,0.3156,0.4174,0.466,0.3156,0.1262,-0.0146,-0.0098,-0.2234,-0.1262,-0.2234,-0.0568,0.437,0.842,0.8914,0.6444,0.4074,0.1506,-0.2296,-0.3976,-0.674,-0.8074,-0.8766,-0.5456,-0.4814,-0.526,-0.4518,-0.363,-0.2,0.126,0.5852,0.8814,1,0.837,0.8914,0.753,0.6938,0.3728,0.0518,0.0172,-0.1456,-0.1704,-0.2098,0.0314,0.5352,0.9612,1,0.5206,0.2832,0.1138,-0.4818,-0.598,-0.9128,-0.8402,-0.6998,-0.5158,-0.603,-0.5642,-0.4576,-0.5448,-0.4528,0.0654,0.1622,0.4528,0.908,0.9226,0.4044,0.477,0.5786,0.4092,0.3026,-0.0364,-0.1622,-0.2106,-0.264,0.0472,0.5614,0.9292,1,0.3066,0.1368,-0.217,-0.6556,-0.7216,-0.8254,-0.8868,-0.7594,-0.7312,-0.8066,-0.6698,-0.7264,-0.6982,-0.415,-0.0944,0.0188,0.3114,0.6698,0.9104,0.5802,0.4906,0.3538,0.1886,0.1274,-0.0896,-0.0896,-0.1084,-0.2122,-0.1184,0.4298,0.9606,1,0.022,-0.2192,-0.3728,-0.5922,-0.7062,-0.7938,-0.886,-0.8334,-0.6228,-0.579,-0.715,-0.6842,-0.6886,-0.3728,-0.421,-0.0264,0.2192,0.5702,0.9298,0.9386,0.5964,0.5746,0.7368,0.478,0.2808,0.1842,-0.0264,0.0658,-0.5228,0.7398,1,0.5422,-0.1856,-0.3784,-0.576,-0.4796,-0.6386,-0.9084,-0.7734,-0.3784,-0.5326,-0.5278,-0.2868,-0.3542,-0.5422,-0.4072,-0.094,0.012,0.2144,0.5228,0.6674,0.6338,0.5614,0.571,0.735,0.4988,0.253,0.0458,0.118,0.0266,-0.5152,0.5152,1,0.8182,0.394,0.5758,-0.0304,0.2122,-0.1516,-0.0304,0.1516,0.1516,-0.0304,-0.2122,-0.8182,-0.4546,-0.2122,-0.2728,-0.091,0.091,0.0304,-0.091,-0.1516,-0.2728,-0.394,-0.0304,-0.1516,0.2122,0.1516,0.1516,0.2728,-0.091,-0.2,0.7778,1,0.7334,0.6888,0.6888,0.1112,0.1556,0.1556,0.1112,-0.0222,-0.0222,-0.0222,0.0222,0.1112,-0.3778,-0.0666,0.1112,-0.3334,0.2,0.3778,0.1556,0.2,0.2,0.1112,0.3334,0.3778,0.1112,0.2,-0.2,-0.0222,0.1112,0.2112,0.831,0.7184,0.8592,0.5212,0.4084,0.014,-0.183,-0.662,-0.7464,-0.6056,-0.2394,-0.3522,-0.2958,-0.2958,-0.2958,-0.1268,0.324,0.2676,0.4366,0.4084,0.6056,0.8592,0.8028,1,0.8874,0.324,0.4084,0.3802,0.0422,0.1268,-0.2676,-1,-1,-1,-1,-1,-1,-1,-1,-0.9712,-0.9654,-0.8426,-0.524,-0.2208,0.0614,0.5738,0.5682,0.5834,0.5528,0.6008,0.7332,0.8772,-0.3282,-0.952,-0.9616,-0.9596,-0.9636,-0.9616,-0.9558,-0.9424,-0.9596,-0.954,-0.952,-0.9328,-1,-1,-1,-1,-1,-1,-1,-1,-0.9424,-0.9438,-0.8552,-0.5864,-0.2406,0.0126,0.7202,0.5766,0.505,0.443,0.5162,0.6286,0.8074,-0.3628,-0.9226,-0.924,-0.4192,-0.9382,-0.9368,-0.9368,-0.225,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9598,-0.9868,-0.84,-0.875,-0.84,-0.79,-0.815,-0.835,-0.775,-0.7846,-0.7934,-0.7934,-0.76,-0.8178,-0.9234,-0.9268,-0.5734,-0.9068,-0.9268,-0.92,-0.3,0.5566,0.5766,0.5732,0.5366,-1,-1,-1,-1,-1,-1,-1,-1,-0.2286,-0.8858,-0.2572,0,0,0.2286,0.3428,-0.9142,-0.8572,-0.8572,-0.9714,-0.8,0.8572,1,-0.0286,-0.0286,0.2572,1,-0.6286,1,1,1,-0.2858,-0.8572,-0.8286,0.3964,0.386,0.377,0.3662,0.3522,0.3428,0.3004,0.3016,0.305,0.0912,0.0296,0.0436,0.0356,0.1108,0.2048,0.188,0.286,0.4586,0.5926,0.6902,-0.6,-0.0236,-0.8396,-0.7046,-0.6062,-0.5022,-0.3728,-1,0.1404,-0.157,0.3554,0.719,0.6198,0.6198,0.7852,0.752,0.8016,0.6528,0.9504,0.686,0.8842,0.8842,0.5702,1,0.3058,0.2892,0.2066,0.6034,0.4214,0.3388,0.8512,0.7356,0.719,0.5372,0.6198,0.7024,0.686,0.3884,-0.19,-0.4546,0.1652,0.0956,0.6,0.4782,0.513,0.5304,0.5826,0.774,0.8782,0.9304,0.6696,0.5826,0.774,0.5652,0.5478,1,0.6522,0.7566,0.5826,0.6174,0.6522,0.3566,0.426,0.7392,0.4782,0.4608,0.7392,0.687,0.3044,0.374,0.3044,-0.2696,0.024,1,0.241,0.3132,0.4096,0.3374,0.3132,0.5422,0.6506,0.6024,0.6988,0.5904,0.5542,0.0964,0.3734,0.6868,0.771,0.229,0.0722,0.4216,0.3494,0.3976,0.5784,0.4458,0.3734,0.494,0.2892,0.253,0.229,0.4096,-0.012,-0.4458,-0.9888,1,-1,-1,-1,-1,-1,-1,1,-0.7026,-0.7436,-0.5384,-0.4154,-0.3128,-0.2616,-0.2616,0.0974,0.159,0.3538,0.4872,0.8052,0.9076,0.8256,1,0.877,0.8666,0.7948,0.723,0.6,0.8154,0.723,0.877,0.8666,0.7538,0.7334,0.6616,0.5076,0.5488,0.4052,0.2102,0.0052,'8'
-0.246,0.1804,0.53,0.5902,0.3278,-0.011,-0.1038,-0.3224,-0.4536,-0.4644,-0.601,-0.4262,-0.399,-0.3606,-0.235,-0.246,-0.153,0.071,0.2076,0.4154,0.6722,0.8252,1,0.8032,0.836,0.754,0.7596,0.8196,0.459,0.3606,0.2568,0.1476,-0.2154,0.116,0.6022,0.5746,0.3702,-0.105,-0.21,-0.2486,-0.4752,-0.569,-0.8288,-0.4586,-0.547,-0.5856,-0.2762,-0.3646,-0.3702,-0.1104,0.0718,0.2154,0.5194,0.8176,1,0.9006,0.8066,0.7624,0.8176,0.7458,0.464,0.116,0.0332,0.0718,-0.2868,0.0564,0.5442,0.5174,0.2332,-0.1636,-0.3404,-0.3458,-0.673,-0.732,-0.7266,-0.4692,-0.5068,-0.673,-0.4156,-0.4692,-0.453,-0.1742,-0.0402,0.1636,0.437,0.7962,1,0.764,0.7372,0.6194,0.748,0.7158,0.362,0.2172,0.2172,0.0348,-0.2058,0.171,0.8144,0.774,0.2464,-0.0898,-0.1246,-0.2986,-0.6058,-0.6232,-0.6986,-0.5768,-0.5826,-0.4956,-0.374,-0.3682,-0.5014,-0.2,-0.1478,0.0144,0.3972,0.5826,1,0.8724,0.7102,0.6058,0.6406,0.7334,0.4376,0.2464,0.1014,-0.0086,-0.1978,0.192,1,1,-0.0316,-0.0028,0.0258,-0.3696,-0.5588,-0.4154,-0.6676,-0.6046,-0.6446,-0.4098,-0.4958,-0.4556,-0.3582,-0.3468,-0.341,-0.043,0.1346,0.3868,0.8396,0.8624,0.53,0.7134,0.53,0.4786,0.4498,0.2952,0.043,0.0602,-0.212,0.3098,0.826,0.9456,0.2934,-0.337,-0.3804,-0.5652,-0.6956,-0.5544,-0.5652,-0.5054,-0.576,-0.4566,-0.4294,-0.4836,-0.5434,-0.125,-0.087,-0.1794,0.087,0.4892,0.9348,1,0.799,0.913,0.7718,0.5978,0.375,0.2664,0.1032,0.2392,-0.6456,0.0506,0.6898,0.5632,-0.2784,-0.4556,-0.4936,-0.6392,-0.7278,-0.7278,-0.633,-0.5822,-0.5126,-0.633,-0.367,-0.443,-0.4178,-0.4684,-0.2912,-0.1962,0.1076,0.6392,0.7912,1,0.8228,0.7912,0.7278,0.5632,0.1456,0.2026,0.1012,0.057,-0.1892,0.4054,0.6216,0.7838,0.6756,0.1352,-0.027,-0.5136,-0.3514,-0.3514,-0.5136,-0.6216,-0.2972,-0.1352,-0.1352,-0.3514,-0.1352,0.1352,0.4054,0.5136,0.6216,0.8378,1,1,0.8918,0.7298,0.5136,0.7298,0.7298,0.5136,0.1892,0.1892,-0.4634,0.0244,0.317,0.2682,0.1708,-0.0244,-0.2196,-0.3658,-0.4146,-0.4634,-0.5122,-0.3658,-0.317,-0.317,-0.2196,-0.1708,-0.0244,0.1708,0.317,0.561,0.756,0.8536,0.9512,1,0.9512,0.9512,0.9512,0.8048,0.6586,0.561,0.4146,0.4146,-0.28,0.1734,0.6,0.5466,0.1734,-0.12,-0.2266,-0.28,-0.6,-0.68,-0.5734,-0.68,-0.68,-0.52,-0.3066,-0.3866,-0.44,-0.2,-0.1734,-0.0934,0.52,0.6534,1,0.7866,0.6266,0.7334,0.5734,0.4934,0.4934,0.36,0.04,0.1734,-1,-1,-1,-1,-1,-1,-1,-0.9756,-0.9668,-0.895,-0.6658,0.895,0.7796,0.7812,0.783,0.797,0.8408,0.8722,0.8356,0.5714,0.1006,-0.2616,-0.9422,-0.965,-0.9528,-0.965,-0.9772,-0.9756,-0.9738,-0.9562,-0.9616,-0.9686,-0.9562,-1,-1,-1,-1,-1,-1,-1,-0.9672,-0.9626,-0.786,-0.8012,0.6526,0.2754,0.267,0.2228,0.1946,0.1702,0.078,0.0354,-0.078,-0.2168,-0.4262,-0.9504,-0.9688,-0.958,-0.9672,-0.9596,-0.9612,-0.9696,-0.8102,-0.2304,-0.0164,0.0438,-1,-1,-1,-1,-1,-1,-1,-0.9934,-0.96,-0.74,-0.44,-0.62,-0.72,-0.75,-0.7468,-0.69,-0.7334,-0.8,-0.8172,-0.723,-0.6944,-0.723,-0.8368,-0.9068,-0.9,-0.86,-0.8934,-0.9468,-0.9734,-0.3068,0.75,0.6366,0.5266,-1,-1,-1,-1,-1,-1,-1,-0.8572,0.4858,1,1,1,-0.8286,-0.9714,-1,-1,-0.6572,-0.7714,-0.8858,-0.8858,0.3714,1,1,-0.8858,-1,-0.9142,-0.8858,-0.8572,1,1,1,-0.5142,-0.6572,0.3244,0.3244,0.3254,0.3308,0.3268,0.3228,0.3136,0.302,0.2756,0.1676,1,1,1,1,1,1,1,1,1,1,-0.5466,-0.2942,-0.8354,-0.005,0.8308,0.6138,0.2068,0.5416,-0.3416,0.1678,0.2546,0.1056,-0.118,0.0808,0.118,0.056,0.1678,0.3788,0.8758,0.9254,0.9628,0.913,0.7888,0.764,0.5404,0.8136,0.8136,1,0.9876,0.8758,0.528,0.1926,-0.2174,-0.118,-0.0062,-0.3168,-0.2174,-0.0434,-0.292,-0.4038,-0.2414,0.1586,0.062,0.1172,0.0068,0.0896,0.2138,0.0068,0.338,0.2276,0.8068,0.7794,0.862,1,0.7242,0.5448,0.338,0.3794,0.4896,0.4896,0.7242,0.5448,0.3518,0.2276,-0.1034,0.2552,0.269,-0.0482,-0.062,-0.1034,-0.062,-0.531,0.3334,0.5066,0.5066,0.12,-0.1334,-0.1466,0.0266,0.0266,0.28,0.5066,0.8666,0.9734,0.9334,1,0.76,0.32,0.5334,0.5334,0.6266,0.56,0.6134,0.7066,0.36,0.2,0.04,0.4134,0.2266,-0.1066,-0.1334,-0.1334,-0.32,-0.64,-0.4362,-1,-1,1,-1,-1,-1,-0.6,1,-0.7304,-0.573,-0.573,-0.5506,-0.427,-0.5618,-0.3932,-0.337,-0.2472,-0.0562,0.2248,0.2808,0.5168,0.7978,0.7752,0.8314,0.8652,1,0.9662,0.955,0.7416,0.6292,0.663,0.6854,0.5168,0.6404,0.618,0.4044,0.427,0.3146,0.2022,0,'8'
-0.279,0.0948,0.028,0.0894,0.287,0.6716,0.7304,1,0.8558,0.7676,0.8744,0.7624,0.6956,0.4472,0.191,0.0334,-0.052,-0.1054,0.036,0.1696,0.3458,0.5246,0.3272,0.0066,-0.0628,-0.068,-0.3058,-0.4392,-0.3938,-0.2844,-0.247,-0.239,-0.2956,0.0338,0.166,0.1336,0.1822,0.66,0.811,1,0.7678,0.73,0.8164,0.8894,0.8488,0.533,0.2604,0.1984,0.0094,0.0472,0.05,0.1714,0.4952,0.4926,0.3658,0.112,-0.058,-0.1578,-0.3766,-0.4144,-0.1336,-0.1174,-0.058,-0.077,-0.2706,0.053,0.2942,0.2324,0.203,0.7324,0.8558,1,0.8118,0.7794,0.9148,0.8412,0.697,0.797,0.3588,0.2058,0.0442,0.2882,0.1648,0.1588,0.5648,0.397,0.1352,0.1588,0.1088,-0.15,-0.4294,0.05,0.1088,-0.1148,-0.0412,0.0236,-0.236,0.0914,0.2772,0.2006,0.1446,0.6254,0.7906,0.8762,0.7818,0.593,0.646,0.764,0.9734,1,0.7728,0.5222,0.1652,0.292,0.3126,0.3098,0.2654,0.3156,0.2596,0.1504,0.115,0.0176,-0.2154,-0.3422,-0.3038,-0.2596,-0.18,-0.1446,-0.1958,0.184,0.4362,0.4036,0.3946,1,0.9198,0.8784,0.4244,0.2818,0.0802,0.2908,0.27,0.4658,0.7032,0.6796,0.8308,0.914,0.9348,0.6796,0.6676,0.6498,0.7626,0.7062,0.5044,0.2374,0.0386,-0.086,-0.1484,-0.175,-0.2018,-0.1038,-0.055,0.4458,0.6794,0.7128,0.8398,0.6428,0.7096,0.1854,-0.0016,-0.5058,-0.7596,-0.4924,-0.349,-0.1318,-0.1252,-0.369,-0.0884,0.5826,0.9332,0.9632,1,0.9166,0.7362,0.9198,0.99,0.753,0.3088,0.0852,-0.0218,0.055,0.0952,0.0652,-0.0068,0.7236,0.5086,0.645,0.2902,0.3174,0.0136,-0.116,-0.57,-0.8088,-0.7986,-0.5564,-0.4948,-0.4096,-0.5222,-0.4676,-0.2014,0.2048,0.3516,0.6894,0.925,0.7986,0.8294,0.942,0.959,1,0.6212,0.5086,0.2662,0.116,0.0648,-0.1228,0.1556,0.5556,0.4666,0.3334,0.4666,0.6,0.8222,1,0.9112,0.8222,0.8666,0.7778,0.7334,0.6,-0.1112,-0.2,-0.2444,-0.3778,0.1112,0.2,0.2444,0.2888,0.1112,0.1556,0.0222,0.0666,-0.2444,-0.3778,-0.2444,-0.0666,0.1556,0.2888,-0.35,0.05,0,0.15,0.4,0.6,0.8,1,1,0.65,0.7,0.9,0.7,0.45,0.1,0.1,-0.15,-0.05,0,0.1,0.4,0.5,0.1,0.15,-0.1,-0.25,-0.4,-0.4,-0.35,-0.25,-0.2,-0.35,-0.2328,0.0958,0.3424,0.3424,0.3972,0.863,0.7808,0.4794,0.2054,0.0684,-0.2328,-0.0136,-0.0136,0.0958,0.1232,0.2602,0.5342,1,0.9178,0.8904,0.7534,0.6712,0.3424,0.589,0.5342,0.178,-0.1232,-0.0136,-0.315,-0.041,-0.1232,-0.1232,-1,-1,-1,-1,-1,-0.96,-0.9492,-0.8852,-0.952,-0.9466,-0.8104,0.7304,0.96,0.7676,0.6956,0.5114,0.5086,0.6688,0.7596,0.5888,0.1696,-0.0974,-0.5834,-0.8986,-0.936,-0.9306,-0.9332,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9736,-0.971,-0.7558,-0.8902,-0.937,-0.8708,0.626,0.8696,0.484,0.3382,-0.0042,0.0376,0.1006,0.0132,-0.3274,-0.5496,-0.6878,-0.8208,-0.9172,-0.9338,-0.9344,-0.9474,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9134,-0.8734,-0.7668,-0.6134,-0.45,-0.4168,-0.6018,-0.6718,-0.64,-0.6484,-0.6234,-0.6818,-0.7586,-0.874,-0.8062,-0.9078,-0.8448,-0.5934,-0.42,-0.5268,-0.7268,-0.6468,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,0.0858,1,-0.6286,-0.5714,1,1,-1,-0.9714,-0.9428,-0.8858,-0.6286,-0.8286,-0.2286,-0.4858,-0.6572,-0.4858,-0.5142,-0.4572,-0.8858,-1,-0.6858,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.9776,-0.9826,-0.9822,-0.9816,-1,-1,-1,-1,-1,-0.5438,-0.5066,0.4942,-0.8708,-0.5002,0.657,0.8644,0.919,0.0666,-0.2734,-0.2734,0.2374,0.6834,0.5828,1,0.7554,0.3884,0.2806,0.223,0.5324,0.482,0.1582,0.1798,0.1798,0.2734,0.7338,0.7554,0.669,0.8202,1,0.9856,0.7122,0.2806,0.3094,0.1726,0.3454,0.1654,-0.0216,0.036,-0.3238,-0.59,-0.3032,-0.2132,0.1804,0.3442,0.4918,0.664,0.418,0.3688,0.1968,0.2378,0.3852,0.5,0.0246,0.0656,0.0984,0.0656,0.6558,0.7378,0.6312,0.6312,0.9508,1,0.9344,0.6558,0.2704,0.418,0.5984,0.5902,0.1476,0.0492,-0.082,-0.3114,-0.0944,-0.034,0.0114,0.683,1,0.7962,0.7208,0.5924,0.185,0.532,0.7056,0.8038,0.1018,0.1472,-0.0264,0.449,0.5698,0.517,0.5396,0.4944,0.8038,0.9246,0.8188,0.6076,0.6076,0.517,0.6452,0.585,-0.049,0.034,-0.3962,-0.8416,-0.4218,-1,-1,1,-1,-1,-0.6,-0.2,-1,-0.426,-0.2348,-0.0782,0.0434,-0.2,-0.3044,-0.1826,0.0608,0.1478,0.6,0.913,1,0.8608,0.9304,0.5652,0.1826,0.0782,0.2348,0.426,0.374,0.2,-0.0608,0.2696,0.287,0.4956,0.4086,-0.0782,-0.0086,-0.2696,-0.513,-0.4956,-0.6696,'9'
-0.296,0.042,0.1588,0.169,0.2528,0.6188,0.939,1,0.502,0.8144,0.9186,0.728,0.5934,0.3392,0.047,-0.0826,-0.2046,-0.1334,-0.2604,-0.113,0.1842,0.3546,0.3596,0.0012,-0.0648,-0.0648,-0.5298,-0.4816,-0.5222,-0.329,-0.2274,-0.1944,-0.3436,-0.0754,0.1776,0.0958,0.2312,0.6322,0.949,1,0.41,0.9336,0.9284,0.7318,0.6398,0.599,0.032,0.0242,-0.0728,0.0524,-0.0294,0.1878,0.2746,0.3896,0.3486,0.203,-0.1086,-0.1034,-0.341,-0.3104,-0.1494,-0.1928,-0.0652,-0.0676,-0.3288,-0.0496,0.1704,0.0442,0.2698,0.5866,1,0.9758,0.5436,0.9678,0.8738,0.9168,0.796,0.6162,0.2912,0.0148,0.1516,0.114,-0.1248,0.361,0.2162,0.2618,0.3182,0.1356,-0.1114,-0.2724,-0.5866,-0.455,-0.2672,-0.1034,-0.2214,-0.2564,-0.337,-0.0592,0.183,0.0508,0.3094,0.5708,1,0.945,0.4994,0.7112,0.5626,0.6672,0.901,0.6754,0.6562,0.5378,0.2572,0.194,0.1664,0.4112,0.2682,0.1554,0.315,0.0454,0.0344,0.0068,-0.2848,-0.282,-0.337,-0.2874,-0.271,-0.3122,-0.316,-0.0318,0.3072,0.1624,0.542,0.7856,1,0.913,0.3594,0.0058,-0.1652,0.1102,0.3536,0.0318,0.5566,0.7218,0.4376,0.7508,0.8058,0.2174,0.5624,0.5652,0.6754,0.5044,0.342,0.0608,-0.3392,-0.2144,-0.2434,-0.4724,-0.2724,-0.3566,-0.1292,0.2632,0.6682,0.6236,0.799,0.6012,0.4322,0.2728,0.0462,-0.1228,-0.5822,-0.7352,-0.276,-0.11,-0.2248,0.1004,0.0718,0.1452,0.6268,0.9394,1,0.9106,0.8756,0.9682,0.6714,0.2696,0.26,0.1292,-0.1356,-0.0334,-0.11,-0.209,-0.0664,0.5126,0.3766,0.4906,0.2594,0.1266,-0.0632,-0.2944,-0.2594,-0.6012,-0.5918,-0.6392,-0.5538,-0.4842,-0.4716,-0.4716,-0.3892,-0.1108,0.1868,0.5602,1,0.9494,0.4936,0.7564,0.807,0.7056,0.3386,0.0696,-0.1044,-0.1836,-0.4208,-0.4906,0.0698,0.5814,0.3954,0.4418,0.5348,0.628,1,0.9534,0.4884,0.3024,0.814,0.6744,0.628,0.0232,0.1628,-0.0232,-0.2094,-0.3488,-0.1162,0.0232,0.0698,-0.1162,0.0232,-0.3024,-0.0232,0.0232,-0.1628,-0.2094,-0.3024,-0.3024,-0.1162,-0.3024,-0.282,0.1282,0.1282,0.2308,0.4872,0.4872,0.8462,0.8974,1,0.8462,0.7436,0.641,0.4872,0.5384,-0.2308,0.077,0.077,-0.0256,0.0256,-0.077,0.282,0.282,0.077,0.077,0.077,-0.2308,-0.282,-0.1794,-0.282,-0.2308,-0.1282,-0.1282,-0.2658,0.0126,0.1898,0.1392,0.3418,0.5696,0.9746,0.9494,0.6456,0.9494,0.8228,1,0.6962,0.443,0.4684,-0.0126,0.2152,0.1898,-0.1898,0.367,0.4684,0.5696,0.2658,0.0886,0.0886,-0.519,-0.367,-0.3924,-0.3924,0.114,0.0126,-0.2658,-1,-1,-1,-1,-1,-1,-0.9548,-0.9548,-0.9416,-0.6574,-0.2696,0.644,0.9018,0.8486,0.7398,0.583,0.5272,0.5246,0.5086,0.4476,0.1182,-0.2564,-0.7636,-0.915,-0.9468,-0.931,-0.939,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.976,-0.975,-0.964,-0.4846,-0.7462,0.325,0.3386,0.3432,0.2502,0.1864,0.0404,-0.061,-0.3392,-0.4858,-0.6192,-0.772,-0.9168,-0.9412,-0.9492,-0.959,-0.9676,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.9268,-0.5868,-0.51,-0.8134,-0.7018,-0.6534,-0.6354,-0.6554,-0.6478,-0.6478,-0.7478,-0.72,-0.6308,-0.6494,-0.7416,-0.5,-0.43,-0.6834,-0.66,-0.8734,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,-0.5142,0.9714,0.8858,0.8858,1,-0.7428,-0.7142,-0.7142,-0.6858,-0.6858,-0.7714,-0.6858,-0.7142,-0.6572,-0.5142,-0.6858,-0.7714,-0.8858,-0.8858,-0.1714,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.7858,-0.804,-0.8162,-0.826,-0.8284,-0.8376,-0.8376,-0.8594,-0.935,-0.4696,-0.4534,0.5412,-0.7304,-0.6396,0.0028,0.6522,0.9526,-0.0334,0.1386,0.3138,-0.0218,0.6496,0.5474,0.9708,0.8394,0.4014,0.1094,0.2408,0.4598,0.5766,0.2846,0.3138,0.2116,0.2846,0.3284,0.4452,0.4744,0.3138,0.4744,1,0.6496,0.4014,0.3284,0.1386,0.27,0.2408,0.051,0.0656,0.0364,-0.197,0.56,0.8,0.36,0.74,0.84,0.54,0.58,0.44,-0.04,-0.24,0.14,0.02,0.18,-0.1,-0.24,-0.22,0.2,0.56,0.36,0.32,0.62,1,0.92,0.4,0.22,0.48,0.28,0.5,-0.38,-0.1,-0.28,-0.74,0.5454,0.6932,0.7272,1,0.8978,0.591,0.5,0,-0.1364,-0.0568,0.091,0.091,0.1364,0.0568,-0.1932,-0.091,-0.1818,0.2614,0.1136,0.3296,0.466,0.466,0.2614,-0.1364,0.0114,0.091,0.341,0.0682,-0.1478,-0.0796,-0.4204,-0.7046,0.349,-1,-1,1,-0.4,-1,-1,-0.6666,-1,-0.4364,-0.5818,-0.0728,0.2,0.0546,-0.0728,0.1818,0.3454,0.3272,0.491,1,0.8546,0.7454,0.7454,0.4728,0.2546,0.2546,0.2546,0.4,0.1272,0.1454,0.2364,0.3636,0.6546,0.2728,0.1636,0.4546,0.1636,0.0728,-0.5636,-0.3272,-0.4182,'9'
-0.2138,0.1446,0.5992,0.5144,0.4914,-0.1946,-0.0598,-0.0636,-0.7072,-0.5028,-0.5646,-0.634,-0.237,-0.2024,-0.0944,-0.0674,0.526,0.526,0.63,1,0.8728,0.711,0.9922,0.8498,0.7534,0.5028,0.1868,0.1638,0.2832,0.4412,0.3448,0.1946,-0.2102,0.0884,0.5914,0.8546,0.9136,0.1984,0.2298,0.1394,-0.7054,-0.3714,-0.3398,-0.332,-0.2692,0.1394,0.0374,0.2142,0.6542,0.6818,0.8232,0.9292,0.8036,0.7524,0.78,1,0.8232,0.1316,0.1906,-0.0844,-0.0256,0.108,-0.0138,0.1394,-0.203,0.1082,0.6092,0.7686,0.7988,0.2562,0.2676,0.1688,-0.7572,-0.4648,-0.537,-0.37,-0.203,-0.298,-0.241,-0.0664,0.2638,0.2372,0.871,1,0.704,0.7458,0.9278,0.8862,0.5408,0.2904,0.074,-0.055,-0.093,-0.1386,-0.1044,0.1574,0.0098,0.3424,0.8356,0.9374,1,0.4756,0.182,0.1194,-0.8552,-0.8318,-0.5812,-0.5382,-0.3034,-0.6008,-0.5108,-0.2642,0.1586,0.1702,0.3698,0.7496,0.7142,0.679,0.863,0.8082,0.5616,0.0216,-0.1898,-0.2172,-0.139,-0.5068,-0.5068,-0.3072,-0.008,0.324,0.86,0.964,1,0.284,0.144,0.044,-0.572,-0.816,-0.86,-0.772,-0.604,-0.84,-0.76,-0.552,-0.108,0.22,0.248,0.64,0.688,0.688,0.688,0.62,0.44,0.08,-0.468,-0.432,-0.496,-0.38,-0.5,-0.56,0.0584,0.4486,1,0.8712,0.6258,0.0584,-0.1308,-0.0624,-0.6136,-0.6902,-0.8148,-0.658,-0.5896,-0.666,-0.8592,-0.6258,-0.2112,-0.0584,0.2516,0.7948,0.823,0.6258,0.7062,0.7102,0.1992,-0.167,-0.2072,-0.3038,-0.4486,-0.4608,-0.5212,-0.5614,0.0732,0.6098,0.6926,0.6536,-0.2926,-0.3658,-0.4682,-0.561,-0.6926,-0.8682,-0.9024,-0.8976,-0.8098,-0.7122,-0.7512,-0.7512,-0.3512,-0.2,-0.0488,0.6196,1,0.8488,0.7122,0.7024,0.8,0.322,-0.039,-0.083,-0.4488,-0.4098,-0.4634,-0.639,0.2222,0.8334,0.8334,0.5556,0,-0.2778,0,-0.1112,-0.3334,-0.2222,-0.8334,-0.5,-0.2222,-0.1666,0.1666,0.2778,0,0.1112,0.6112,0.8334,0.8334,0.6112,0.6112,1,0.8334,0.4444,0.1666,0.4444,0.6112,0.5556,0.3888,0.3334,-0.2904,0.2904,0.8064,0.6774,0.3548,0.0968,-0.2904,-0.2258,-0.4194,-0.4194,-0.5484,-0.4838,-0.1612,-0.1612,-0.0968,0.0968,0.2258,0.613,0.4194,0.871,0.613,0.742,1,0.5484,0.6774,0.4838,0.0968,0.0322,0.1612,0.2904,0.2904,-0.2258,-0.0934,0.1734,0.5734,0.68,0.7066,0.28,0.2534,0.1734,-0.7866,-0.3066,-0.2266,-0.0134,0.04,-0.2,-0.3066,-0.2534,0.36,0.3866,0.8134,0.9734,0.68,0.92,1,0.6266,0.4666,0.1734,0.12,0.1734,-0.0666,0.12,-0.04,0.1466,-1,-1,-1,-1,-1,-0.972,-0.9754,-0.9508,-0.9574,-0.9672,-0.8916,0.4582,0.8654,0.8506,0.5878,0.417,0.2792,0.2316,0.1248,-0.1166,-0.248,-0.527,-0.844,-0.949,-0.9508,-0.9656,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.956,-0.9618,-0.762,-0.1036,0.5938,-0.3818,0.2718,0.8308,0.7324,0.4114,0.224,0.0894,0.0062,-0.14,-0.335,-0.4544,-0.634,-0.848,-0.9246,-0.9236,-0.9378,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.9534,-0.73,0.6666,0.72,0.2966,-0.644,-0.632,-0.552,-0.622,-0.6456,-0.6946,-0.72,-0.7982,-0.8856,-0.8892,-0.8056,-0.6,-0.76,-0.68,-0.94,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,-0.1714,1,1,1,1,1,-0.7428,-0.8858,-0.9714,-0.6,-0.8,-0.9714,-0.9714,-1,-1,-0.5714,-0.6286,-0.9142,-0.8858,-0.7714,-1,-1,-1,-1,-1,-1,-1,0.1848,0.2422,0.2626,0.3094,0.3674,0.427,0.48,0.54,0.585,0.3738,0.3584,0.3334,0.3316,0.3142,0.2676,0.2494,0.215,0.2128,0.2182,0.3102,-0.4534,0.2588,-0.4984,-0.4744,0.2108,0.5776,0.5834,1,-0.5888,-0.4084,-0.4084,-0.3464,-0.3464,-0.0816,-0.0874,-0.031,0.1098,0.2676,0.3014,0.4198,0.4478,0.724,0.814,1,0.9042,0.876,0.8254,0.7746,0.7746,0.8198,0.6282,0.6902,0.538,0.5098,0.5492,0.5212,0.4366,0.3352,0.2338,-0.2788,-0.6836,-0.7518,-0.5864,-0.494,-0.5086,-0.528,-0.3918,-0.2652,0.0316,0.2506,0.4306,0.5232,0.5474,0.669,0.7372,0.9416,0.927,1,0.9562,0.7518,0.7372,0.669,0.7616,0.8492,0.7128,0.6642,0.5328,0.5086,0.5086,0.4356,0.2506,-0.0072,-0.4224,-0.2732,-0.3354,-0.174,-0.2608,-0.2796,-0.267,0.1304,0.2608,0.59,0.5032,0.8882,0.8882,0.5776,0.826,1,0.851,0.882,0.8634,0.8136,0.5714,0.6894,0.3976,0.4472,0.4534,0.4968,0.4286,0.2174,0.0994,0.1366,0.0932,-0.0746,0.0798,-1,-1,1,-1,-1,-1,-0.3,-1,0.3272,0.3636,0.2,0.291,0.1818,-0.2546,0.0546,0.0546,0.2182,0.6728,1,0.891,0.7636,0.3636,0.3272,0.2728,0.0182,0.4,0.3818,0.2364,-0.1454,0.2728,-0.0364,-0.0182,0.0728,0.2546,0.2364,0.0546,-0.2182,-0.2728,-0.2728,-0.6364,'10'
-0.1744,0.2808,0.7468,0.7028,0.688,0.1634,-0.0386,-0.3284,-0.2036,-0.4128,-0.545,-0.3358,-0.1302,-0.0642,0.0716,0.2256,0.7542,0.9046,0.978,0.8862,0.7908,0.8496,0.9854,1,0.71,0.3468,0.2,0.277,0.266,0.4862,0.5816,0.3028,-0.3314,-0.0668,0.4622,0.6494,0.7148,0.3106,0.052,-0.0936,-0.1174,-0.3432,-0.4414,-0.358,-0.0252,-0.0876,-0.0074,0.1798,0.4622,0.8692,1,0.682,0.685,0.7176,0.6968,0.676,0.5602,0.3402,0.1204,0.15,0.2124,-0.0758,0.165,0.168,-0.2876,0.0262,0.5752,0.7974,0.8236,0.4738,0.1274,0.0196,-0.0752,-0.3006,-0.5458,-0.304,-0.134,-0.1634,0.0522,0.1046,0.1504,0.7124,0.8398,0.9118,0.8824,0.6994,0.8562,1,0.6568,0.1144,0.0654,-0.2418,-0.134,-0.0882,-0.17,0.0196,-0.2058,0.1552,0.7618,0.9892,1,0.314,0.0252,-0.0866,-0.2528,-0.4874,-0.7582,-0.426,-0.2636,-0.3862,-0.1732,-0.1228,-0.2094,0.509,0.7618,0.9206,0.87,0.8086,0.8194,0.8194,0.8194,0.7184,0.1192,0.2094,0,-0.1914,-0.0252,-0.278,-0.138,0.2528,0.8888,0.7778,0.839,0.0842,-0.2068,-0.341,-0.4444,-0.7356,-0.8238,-0.797,-0.3908,-0.59,-0.6858,-0.567,-0.0574,0.0996,0.4214,1,0.843,0.7702,0.8812,0.659,0.7164,0.6322,0.157,0.1034,-0.0652,-0.18,-0.0614,-0.1302,-0.136,0.25,0.9228,0.8346,0.4264,-0.033,-0.1434,-0.4522,-0.592,-0.739,-0.8824,-0.7648,-0.647,-0.6176,-0.4852,-0.5514,-0.6176,-0.2022,0.1618,0.4816,1,0.9816,0.8492,0.739,0.761,0.4522,0.1802,0.1102,-0.0368,-0.2868,-0.4302,-0.4264,0.0688,0.6882,0.8866,1,0.0486,-0.243,-0.1214,-0.5588,-0.753,-0.8786,-0.8218,-0.6438,-0.5628,-0.6924,-0.5102,-0.4736,-0.4656,-0.1052,0.1256,0.3118,0.7288,0.919,0.9352,0.7894,0.826,0.753,-0.0122,0.0446,-0.004,-0.1052,-0.2106,-0.328,0.2,0.8858,0.8286,0.7714,0.4858,-0.1428,-0.0858,-0.1428,-0.3142,-0.6,-0.7714,-0.2572,-0.2,-0.3142,-0.2,-0.0858,0.3142,0.5428,0.3142,0.3142,0.0858,0.0286,0.7714,1,0.6572,-0.0858,0.3142,0.1428,0.5428,0.7714,0.7714,0.4286,-0.2,0.05,0.75,0.65,0.45,0.15,-0.15,-0.6,-0.25,-0.4,-0.6,-0.35,-0.35,-0.1,0.05,0.15,0.6,0.55,1,0.85,0.45,0.8,0.65,0.75,0.9,0.45,0.3,0.45,0.35,0.5,0.5,0.2,-0.2858,0.0572,0.5714,0.7714,0.8286,0.4286,0.2286,0.0286,-0.0858,-0.2,-0.3142,-0.1714,0.0286,-0.0858,0.1428,0.2,0.3714,0.9428,1,0.8858,0.8858,0.8286,0.8858,0.6286,0.5714,0.5428,0.2286,0.1714,0.1142,0.2572,-0.0858,0.2,-1,-1,-1,-1,-1,-0.9798,-0.9784,-0.954,-0.9756,-0.9622,-0.8958,0.4456,0.881,0.8526,0.6402,0.5186,0.497,0.2374,-0.071,-0.1576,-0.29,-0.474,-0.8148,-0.9432,-0.935,-0.958,-0.9594,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9648,-0.967,-0.681,-0.1906,0.5488,-0.078,0.2244,0.8746,0.8026,0.5286,0.4242,0.2966,-0.0142,-0.2672,-0.3468,-0.485,-0.6194,-0.846,-0.9272,-0.919,-0.9444,-0.9512,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9434,-0.9234,-0.37,0.7332,0.7132,0.3266,-0.6746,-0.682,-0.6238,-0.6328,-0.6238,-0.6892,-0.762,-0.7034,-0.6884,-0.7368,-0.775,-0.5734,-0.4568,-0.5968,-0.4368,-0.9334,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,0.6858,1,1,-0.8286,-0.9714,-0.9428,-0.9428,-0.9428,-0.9714,-1,-0.9142,-0.8572,-0.6286,-0.6,-0.7142,-0.9428,-0.9714,-0.7714,-1,-1,-1,-1,-1,-1,0.1894,0.2178,0.2594,0.2968,0.3502,0.4258,0.4848,0.5548,0.5986,0.361,0.2464,0.2478,0.2408,0.2342,0.2282,0.1996,0.2068,0.2328,0.2788,0.4452,-0.44,0.353,-0.2124,-0.4774,0.328,0.301,0.4482,1,-0.5874,-0.5238,-0.4096,-0.1048,-0.1936,0.0096,0.0794,0.2064,0.1746,0.3778,0.473,0.5048,0.6888,0.9174,1,0.892,0.9492,0.8222,0.708,0.7588,0.8158,0.638,0.7016,0.6572,0.6888,0.6572,0.435,0.2762,0.2952,0.1428,0.1556,-0.2952,-0.8414,-0.8136,-0.641,-0.6596,-0.5664,-0.4918,-0.3566,-0.254,-0.091,0.1376,0.3194,0.627,0.669,0.8136,1,0.9254,0.7856,0.8276,0.9068,0.9068,0.8974,0.902,0.7948,0.8788,0.9534,0.627,0.4778,0.4266,0.352,0.1702,0.1608,-0.1096,-0.6354,-0.4936,-0.4936,-0.2658,-0.2102,-0.3874,-0.0886,-0.0076,0.4026,0.4026,0.4684,0.9392,1,0.5444,0.995,0.919,0.6506,0.7924,0.7216,0.6658,0.843,0.7266,0.5696,0.5746,0.5544,0.4988,0.4178,0.3924,0.0684,-0.0178,-0.0178,-0.4684,-0.0166,-1,-1,1,-1,-1,-1,-0.2334,-1,-0.406,-0.3862,-0.0298,0.3466,0.307,0.2476,0.406,0.4654,0.5644,1,0.6436,0.6634,0.6436,0.5248,0.3268,0.4852,0.5248,0.5248,0.4258,0.1882,0.109,0.307,0.4654,0.406,0.7426,0.802,0.2674,0.2674,0.0496,0.0298,0.01,-0.4852,'10'
-0.252,0.0814,0.4146,0.5488,0.63,0.248,0.0244,-0.1098,-0.2276,-0.4228,-0.3944,-0.3944,-0.1464,-0.1342,-0.126,0.0692,0.1422,0.5772,0.7032,0.8944,1,0.9308,0.8862,0.9228,0.7642,0.5326,0.2764,0.1748,0.0082,-0.0528,-0.0692,-0.0162,-0.2892,-0.008,0.514,0.771,0.8314,0.1366,0.2088,0.1726,-0.261,-0.2208,-0.3534,-0.4216,0.008,-0.0884,-0.1808,0.0722,0.1686,0.4258,0.763,1,0.9318,0.984,0.984,0.8554,0.8032,0.5784,0.241,0.1566,0.012,0.1204,-0.0764,0.0642,-0.3794,-0.1134,0.2376,0.5142,0.5602,-0.227,-0.0248,-0.0638,-0.7482,-0.4256,-0.5178,-0.6454,-0.5142,-0.305,-0.3014,-0.4858,-0.0212,0.0036,0.2164,0.5142,0.9362,1,0.6454,0.8404,0.805,0.3086,0.2164,0.1134,-0.032,-0.071,-0.195,-0.1914,-0.3168,-0.0664,0.3358,0.5104,0.5712,-0.1954,-0.0854,-0.1006,-0.9392,-0.5522,-0.6508,-0.723,-0.8368,-0.3282,-0.3018,-0.6432,-0.1272,-0.0398,0.131,0.3434,0.9052,1,0.6774,0.9204,0.9316,0.3966,0.2334,0.1688,-0.0094,-0.203,-0.2486,-0.1158,-0.2278,0.1266,0.578,0.4642,0.5022,-0.1984,-0.2828,-0.287,-1,-0.903,-0.8438,-0.865,-0.7848,-0.519,-0.5654,-0.633,-0.3418,-0.2152,-0.0126,0.2574,0.8016,1,0.8016,0.7806,0.6878,0.405,0.2362,0.1518,-0.1098,-0.232,-0.2406,-0.27,0.0074,0.3926,1,0.9308,0.2642,-0.037,-0.1408,-0.358,-0.921,-0.832,-0.832,-0.832,-0.6692,-0.7284,-0.8618,-0.595,-0.6346,-0.3334,-0.1556,-0.0716,0.1506,0.6098,0.837,0.7482,0.8074,0.8024,0.2692,-0.1506,-0.3482,-0.3728,-0.368,-0.4272,0.1064,0.6756,0.9256,0.9628,-0.133,-0.234,-0.1648,-0.3936,-0.7394,-0.968,-0.6648,-0.5532,-0.734,-0.883,-0.5054,-0.5426,-0.4414,-0.3618,-0.2554,-0.0692,0.1702,0.9042,1,0.9468,0.8352,0.7712,0.2978,0.0106,-0.0744,-0.0692,-0.2394,-0.5904,-0.0952,0.238,0,-0.238,-0.2858,-0.2858,-0.5714,-0.5238,-0.3334,-0.3334,-0.5238,-0.3334,-0.381,-0.238,-0.1428,0.0952,0.0952,0.5714,0.4762,0.4286,0.1904,0.4286,0.8096,1,0.6666,0.3334,0.3334,-0.1428,-0.1428,-0.1904,0,-0.0476,-0.2942,0.1764,0.4118,0.4706,0.5294,0.4118,0,0,-0.2352,-0.4706,-0.353,-0.2352,-0.1764,0,0,-0.0588,0.2352,0.7058,0.8236,0.8236,0.7648,1,0.9412,0.9412,1,0.8824,-0.1764,0.1764,0.1176,0.0588,0.1176,0.2942,0.0684,0.3424,0.8356,0.726,0.4794,-0.041,-0.0958,-0.041,-0.5342,-0.5342,-0.5342,-0.726,-0.589,-0.589,-0.5342,-0.2876,-0.3424,-0.3424,0.2328,0.1506,0.5068,0.9452,1,1,0.5342,0.5616,0.5068,0.2328,0.178,-0.0958,0.0684,-0.0136,-1,-1,-1,-0.9668,-0.9744,-0.9474,-0.8314,-0.8796,-0.869,-0.9218,-0.8826,0.3274,0.9714,0.7578,0.5876,0.4176,0.1678,0.0098,-0.1226,-0.2024,-0.3198,-0.4568,-0.6418,-0.8496,-0.9638,-0.97,-0.9668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.9652,-0.598,-0.3706,-0.5308,-0.6456,-0.6358,-0.6176,0.2022,0.895,0.6078,0.4408,0.2324,0.0018,-0.2354,-0.3518,-0.481,-0.5656,-0.651,-0.762,-0.889,-0.9464,-0.935,-0.935,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.93,-0.93,-0.68,0.5,0.5566,0.4532,0.1632,0.07,-0.4976,-0.5046,-0.5224,-0.4334,-0.42,-0.6068,-0.7446,-0.7268,-0.9156,-0.9178,-0.94,-0.96,-0.6368,-0.87,-0.72,-0.8,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6,1,1,1,-0.6858,-0.1142,-0.1428,0.3428,1,-0.4286,-0.9142,-0.8,-0.8286,-0.9428,-1,-0.4286,-0.5428,-0.9428,-0.9142,-0.4286,-0.4,-0.7714,-0.8572,-0.6572,-1,-1,-1,-1,-1,-1,0.45,0.484,0.5408,0.5772,0.6014,0.6232,0.6612,0.6674,0.6324,0.3438,0.5282,0.4796,0.4408,0.4414,0.4226,0.4064,0.4114,0.478,0.561,0.6492,-0.4666,0.0352,-0.6652,-0.4424,0.1968,0.58,0.9192,1,-0.7588,-0.3306,-0.239,-0.131,-0.1434,-0.1684,-0.156,-0.052,0.1642,0.1102,0.447,0.7714,0.8918,0.8794,0.763,0.713,0.63,0.6466,0.6716,0.8336,1,0.9252,0.684,0.5384,0.2432,0.4386,0.58,0.7214,0.6924,0.6632,0.447,0.1726,-0.638,-0.3348,-0.095,-0.0814,-0.258,-0.2082,-0.2352,-0.0408,0.0814,0.4208,0.8914,1,0.9458,0.914,0.8868,0.801,0.8054,0.9728,0.896,0.8688,0.923,0.991,0.638,0.5792,0.3892,0.3394,0.4344,0.638,0.6606,0.7648,0.4162,0.2172,-0.4846,-0.3284,-0.0708,-0.009,-0.0852,-0.187,-0.0816,-0.187,0.1578,0.5028,0.9166,1,0.9238,0.4374,0.3104,0.2486,0.1616,0.5208,0.441,0.1834,0.2668,0.4192,0.3394,0.285,0.1578,0.3358,0.2558,0.1252,0.118,0.1906,-0.1288,-0.2994,0.4174,-1,-1,1,-1,-1,-0.4,0.1,-1,-0.1206,-0.1034,-0.138,-0.0172,0.0172,-0.0344,0.0862,0.069,0.1896,0.362,0.931,0.7758,1,0.3794,0.1724,-0.0172,-0.138,0.3448,0.3966,0,0.069,0.1724,-0.0518,0.0172,-0.069,-0.138,-0.2932,-0.138,-0.2932,-0.2414,-0.6206,-0.569,'11'
-0.2682,0.1072,0.3524,0.5326,0.525,0.1686,-0.046,-0.0766,-0.3486,-0.4942,-0.59,-0.5326,-0.2528,-0.3716,-0.2912,-0.092,0.1494,0.3066,0.6284,0.954,1,0.8314,0.8238,0.8314,0.4022,0.2836,0.0038,-0.0268,-0.0882,-0.2222,-0.2184,-0.341,-0.3162,-0.0238,0.4772,0.7222,0.7952,0.2066,0.0054,-0.0092,-0.086,-0.3748,-0.437,-0.3492,-0.2212,-0.064,-0.0202,-0.042,0.2504,0.3382,0.5978,1,0.9012,0.744,0.9012,0.6966,0.5174,0.203,-0.0384,-0.0384,-0.1152,-0.1116,-0.1224,-0.2066,-0.3612,-0.0902,0.441,0.6562,0.7152,0.1112,-0.1216,-0.1632,-0.1146,-0.427,-0.4722,-0.3646,-0.4166,-0.0972,-0.0834,-0.1528,0.2014,0.2256,0.4756,1,0.8472,0.6042,0.9202,0.7778,0.552,0.1806,-0.0208,-0.1424,-0.1562,-0.0938,-0.2222,-0.1736,-0.3182,0.0454,0.6136,0.6288,0.6818,0.0568,-0.2234,-0.3446,-0.197,-0.4848,-0.6478,-0.6894,-0.5796,-0.3144,-0.3296,-0.269,-0.0872,0.0378,0.2538,0.5872,0.981,1,0.7462,0.8674,0.7992,0.2766,0.053,-0.1478,-0.0796,-0.178,-0.1666,-0.159,-0.1588,0.1932,0.9356,0.837,0.5022,0.103,-0.0816,-0.5194,-0.382,-0.631,-0.927,-0.6352,-0.6952,-0.4936,-0.2832,-0.4334,-0.369,-0.0386,-0.0944,0.6394,0.9914,1,0.6952,0.9142,0.8498,0.3948,0.382,0.2576,-0.0858,0.0128,-0.1202,-0.279,-0.02,0.416,0.928,0.944,0.156,-0.032,0.024,-0.564,-0.528,-0.484,-0.928,-0.572,-0.576,-0.5,-0.472,-0.42,-0.668,-0.224,0.044,0.328,0.82,1,0.796,0.488,0.68,0.58,0.392,0.316,-0.052,-0.3,-0.188,-0.176,0.1116,0.7476,0.602,0.733,0.0242,-0.199,-0.4854,-0.5534,-0.5048,-0.7766,-0.631,-0.4708,-0.3738,-0.335,-0.7864,-0.4758,-0.2524,-0.1504,-0.0728,0.2524,0.7572,0.9758,1,0.9612,0.966,0.869,0.369,0.3058,0.0874,0.0242,-0.136,-0.1748,0.3182,0.6364,0.5,0.409,0.1818,0.2728,0.1818,0,0.0454,-0.1818,-0.2728,-0.1364,-0.091,-0.1364,0.0454,0.1818,0.5454,0.6818,0.591,0.8636,0.909,1,0.7272,0.9546,0.8636,0.591,0.1818,0.4546,0.3636,0.0454,0.0454,-0.1364,-0.317,-0.122,0.317,0.4634,0.5122,0.2682,0.0732,-0.0244,-0.2682,-0.2682,-0.4634,-0.2196,-0.1708,-0.2196,-0.0244,0.0244,0.0732,0.4146,0.8536,0.9512,0.8536,0.8536,1,0.9024,0.4634,0.4146,0.2682,-0.0244,0.0244,0.0732,0.0244,-0.0244,-0.3888,0.0556,0.5278,0.6112,0.6388,0,-0.3334,-0.3888,-0.25,-0.5278,-0.6666,-0.5278,-0.8056,-0.2222,-0.2222,-0.2222,-0.0556,0.0278,0.3056,0.6388,1,0.9722,0.8056,0.9166,0.8612,0.4722,0.1112,0,-0.0278,-0.1666,-0.0834,-0.1666,-1,-1,-1,-0.9664,-0.959,-0.7874,-0.7612,-0.8042,-0.8396,-0.862,-0.8508,0.4794,0.8974,0.8152,0.957,0.957,0.6996,0.347,0.2126,0.084,-0.0784,-0.3992,-0.8078,-0.9496,-0.9534,-0.959,-0.9478,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9576,-0.9518,0.0144,-0.405,-0.3924,-0.678,-0.619,-0.6568,0.4214,0.8032,0.596,0.7444,0.7608,0.4504,0.0608,-0.1388,-0.2102,-0.3356,-0.5872,-0.838,-0.9286,-0.9258,-0.9316,-0.9392,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.9434,-0.31,0.3566,0.3766,0.16,0.0866,0.0366,-0.5578,-0.6668,-0.5534,-0.42,-0.5068,-0.752,-0.704,-0.732,-0.796,-0.752,-0.724,-0.5468,-0.62,-0.7468,-0.7734,-0.7134,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,-0.1714,0.1428,-0.4572,0.2286,1,-0.8286,-1,-1,-1,-0.8572,-0.9142,-0.9428,-1,-0.7714,-0.6572,-0.4,-0.6286,-0.9714,-0.9428,-0.3428,-1,-1,-1,-1,-1,-1,0.465,0.483,0.5222,0.5468,0.5692,0.6056,0.6192,0.646,0.6108,0.3168,0.4572,0.4238,0.394,0.376,0.3696,0.3578,0.3586,0.3588,0.4182,0.541,-0.4666,0.1176,-0.6712,-0.4832,0.405,0.7676,0.9604,1,-0.6944,-0.2378,-0.2226,-0.2,-0.2076,-0.1246,-0.1208,0.0452,0.215,0.366,0.4944,0.751,0.9736,1,0.6604,0.6868,0.6264,0.5284,0.7132,0.815,0.815,0.8452,0.9132,0.5698,0.5472,0.4982,0.468,0.351,0.3208,0.4226,0.3812,-0.0378,-0.379,-0.1772,0.0058,-0.162,-0.1314,-0.2266,0.0286,0.0972,0.2876,0.4972,0.7562,0.9542,1,0.7828,0.7258,0.6838,0.6038,0.6266,0.7828,0.6496,0.6,0.8096,0.8058,0.7258,0.6,0.562,0.5848,0.3066,0.2876,0.3676,0.4704,0.0934,-0.4014,-0.2114,-0.1146,-0.1076,-0.1756,-0.2402,-0.0286,-0.1112,0.3584,0.6666,1,0.8888,0.8244,0.4552,0.3728,0.1146,0.1004,0.423,0.5126,0.387,0.2688,0.423,0.4768,0.5914,0.4732,0.4732,0.4732,0.2438,-0.38,-0.2868,-0.2366,-0.3764,1,-1,-1,1,-1,-1,-1,0.2,-1,0.295,0.3526,0.0936,0.0792,0.0216,-0.2662,0.0648,-0.0216,0.2518,0.3238,0.8706,1,0.7986,0.482,0.2518,0.2086,0.108,0.482,0.4532,0.2086,0.151,0.1798,0.2086,0.0936,-0.0792,0.295,0.1798,0.0216,-0.0504,-0.2662,-0.3094,-0.482,'11'
-0.2472,0.1108,0.4392,0.38,0.8044,1,0.69,0.3432,0.3174,-0.0996,-0.1882,-0.166,0.0332,0.0702,0.2656,0.4318,0.7344,0.8488,0.9298,0.4354,0.513,0.5904,0.7416,0.941,0.8488,0.2214,0.0258,-0.107,-0.2436,-0.273,-0.369,-0.4244,-0.2616,0.0398,0.4004,0.2686,0.6846,1,0.8302,0.7954,0.5494,0.1162,-0.0156,0.0642,0.2756,0.4246,0.6984,0.8232,0.5598,0.3484,0.4072,0.1266,0.3344,0.3726,0.2132,0.6222,0.5216,-0.0954,-0.1612,-0.3344,-0.6014,-0.4662,-0.6222,-0.792,-0.2482,0.0354,0.4008,0.234,0.7518,1,0.9716,0.8794,0.7872,0.1596,0.5602,0.5744,0.6666,0.8192,0.7092,-0.0248,-0.0602,-0.1632,-0.1808,0,-0.1738,0.0568,0.188,-0.0992,0.1524,0.1738,-0.2128,-0.2446,-0.3582,-0.6348,-0.6134,-0.7518,-0.261,0.0402,0.4396,0.3134,0.7092,1,0.7374,0.6812,0.7934,0.3134,0.6882,0.7794,0.205,-0.1454,-0.0788,-0.7618,-0.443,-0.5026,-0.7898,-0.4886,-0.6148,-0.4536,-0.3134,-0.366,-0.0262,0.1734,-0.0964,-0.387,-0.464,-0.5902,-0.6288,-0.8248,-0.0954,0.2616,0.6568,0.6152,0.7954,1,0.955,0.7712,0.7228,0.7158,0.3796,0.033,-0.234,-0.2964,-0.3796,-0.3968,-0.747,-0.7262,-0.896,-0.799,-0.584,-0.5876,-0.6014,-0.5044,-0.227,-0.0052,0.0294,-0.1126,-0.4558,-0.4488,-0.532,-0.5944,-0.0666,0.4048,0.652,0.7334,0.8764,0.717,0.8862,1,0.974,0.652,0.3692,-0.3204,-0.5056,-0.535,-0.4082,-0.5708,-0.5544,-0.6422,-0.7204,-0.665,-0.743,-0.896,-0.717,-0.5968,-0.3918,-0.3138,-0.2878,-0.2878,-0.4342,-0.483,-0.5708,-0.5414,-0.0288,0.679,0.4404,0.646,0.5884,0.5432,0.8888,0.712,1,0.5884,-0.5144,-0.6296,-0.6256,-0.4814,-0.5596,-0.605,-0.609,-0.6584,-0.7654,-0.7326,-0.7078,-0.6338,-0.5968,-0.6708,-0.6996,-0.5802,-0.3456,-0.2592,-0.5432,-0.6172,-0.8024,-0.5556,0.1904,0.5238,0.619,0.6666,1,0.9524,0.8572,0.3334,0.0952,0.2858,0.1428,0.1428,0.2858,-0.0952,0.0952,0.3334,0.619,0.4286,0.6666,0.4286,0.381,0.619,0.9524,0.9048,0.8572,0.5238,0.2858,0.1428,0.1428,0.1428,-0.1428,0.1428,-0.4054,0.1352,0.3514,0.3514,0.8918,1,0.4054,0.2432,0.2972,0.027,-0.2432,-0.1352,-0.3514,0.1352,0.1892,0.2432,0.7298,0.6216,0.7838,0.7298,0.4054,0.6756,0.7298,0.6756,0.8378,0.6756,-0.027,0.1352,-0.081,-0.1352,0.027,-0.1352,-0.178,0.1232,0.4246,0.315,0.6986,1,0.8904,0.8356,0.6986,0.1506,0.2876,0.315,0.3424,0.7808,0.7808,0.8904,0.589,0.2876,0.2054,0.315,0.2054,0.2328,0.3698,0.3698,0.2328,0.1506,-0.2328,-0.452,-0.8356,-0.452,-0.726,-0.6986,-1,-1,-1,-1,-1,-0.9564,-0.8694,-0.6642,-0.5208,-0.5336,-0.245,0.6806,0.7296,0.579,0.5082,0.461,0.4918,0.392,0.3394,0.1852,-0.1288,-0.4864,-0.804,-0.5826,-0.7478,-0.8748,-0.9492,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9506,-0.8786,-0.685,-0.62,-0.5794,-0.2428,0.7286,0.766,0.7286,0.771,0.623,0.5844,0.3948,0.3278,0.2222,-0.1304,-0.5854,-0.8372,-0.692,-0.8134,-0.8736,-0.9142,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9134,-0.9,-0.7634,-0.75,-0.74,-0.7234,-0.73,-0.752,-0.686,-0.6274,-0.6528,-0.7056,-0.7492,-0.7564,-0.66,-0.7274,-0.8874,-0.8334,-0.8634,-0.8168,-0.88,-0.8068,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2858,-0.3714,-0.3714,-0.4858,0.2572,0.8286,1,-0.7714,-0.3714,-0.4572,-0.8286,-0.6858,-0.8,-0.8,-0.8286,-0.7142,-0.4,-0.7714,-0.2858,-0.7428,-0.8286,-0.2572,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.0868,0.0374,0.0098,-0.052,-0.0998,-0.1626,-0.2794,-0.4626,-0.552,-0.342,-1,0.2706,-0.2962,-0.0424,0.8826,0.9072,0.7898,-0.7916,0.3034,0.5956,0.8202,0.618,0.236,0.236,0.3034,0.5506,0.9102,1,0.9102,0.8876,0.9102,0.6404,0.4606,0.4832,0.5956,0.7528,0.8202,0.8202,0.7078,0.6404,0.7752,0.573,0.1236,-0.1012,-0.1236,-0.1686,-0.3034,-0.4158,-0.4158,-0.7978,0.4118,0.6,0.8118,0.9058,0.3176,0.0588,0.1058,0.1764,0.8588,1,0.4824,0.9294,0.9764,0.3412,0.0118,-0.0352,0.1294,0.3882,0.5764,0.5058,0.5058,0.3412,0.6942,0.7412,0.3882,-0.153,-0.0588,-0.1058,-0.3412,-0.4118,-0.3882,-0.6706,0.541,0.754,1,0.8196,0.4098,0.1804,-0.164,0.0492,0.6886,0.7378,0.7378,0.8852,0.7704,0.082,-0.0328,-0.0164,0,0.3442,0.4262,0.3114,0.082,0.459,0.5738,0.5902,0.459,-0.0984,-0.1148,-0.3114,-0.377,-0.4918,-0.6066,-0.623,0.5854,-1,-1,1,-0.2,0.4,-1,-0.7666,-1,0.4748,0.5556,0.091,0.6162,0.697,0.7576,0.6364,0.2122,0.2728,-0.0708,0.0304,0.1112,0.0506,0.2324,0.1314,0.1112,0.2526,0.3738,0.9394,0.8384,0.6364,0.6162,1,0.8182,0.4546,0.697,0.5556,0.5758,0.5354,0.5758,0.4142,-0.1516,'12'
-0.2106,0.186,0.393,0.5334,0.7614,0.6632,0.6492,0.4106,0.1578,-0.2736,-0.1754,-0.1544,-0.1578,-0.0632,0.2036,0.2176,0.4736,0.9334,1,0.572,0.5052,0.579,0.4562,0.572,0.6632,0.5824,0.2246,-0.0842,-0.0316,-0.1368,-0.0842,-0.1964,-0.1318,0.2454,0.5172,0.5456,0.7322,1,0.9026,0.8378,0.209,-0.0224,0.1238,-0.1968,0.2942,0.3834,0.4402,0.6796,0.7404,0.5902,0.4808,0.1764,0.2292,0.1602,0.3996,0.7444,0.6146,0.2698,-0.1076,-0.286,-0.355,-0.221,-0.3834,-0.3794,-0.2174,0.1124,0.4782,0.3624,0.4746,0.9638,0.9492,1,0.5144,0.2536,0.1558,0.2102,0.9782,0.8804,0.1268,0.3514,0.1776,-0.4058,-0.1522,-0.2862,-0.3442,-0.0724,-0.1776,0.1196,0.2428,-0.0362,-0.2464,-0.5508,-0.7028,-0.7138,-0.8732,-0.6884,-0.25,0.0564,0.4718,0.3274,0.7078,1,0.912,0.8522,0.8522,0.345,0.6338,0.683,0.1726,0.0212,0.007,-0.676,-0.6126,-0.655,-0.6338,-0.7816,-0.676,-0.6796,-0.4436,-0.1338,-0.169,-0.1444,-0.4084,-0.588,-0.567,-0.7394,-0.8802,-0.7536,-0.049,0.2942,0.6994,0.6666,0.8072,1,0.9314,0.7712,0.8824,0.7974,0.2942,-0.0686,-0.2746,-0.3202,-0.4576,-0.4804,-0.5066,-0.5654,-0.83,-0.804,-0.5752,-0.6078,-0.5262,-0.598,-0.2908,-0.2156,-0.1112,-0.2876,-0.3628,-0.4968,-0.647,-0.536,-0.0648,0.4732,0.7634,0.855,1,0.8512,0.9694,0.9122,0.8854,0.2824,-0.1526,-0.4656,-0.8396,-0.8778,-0.6298,-0.6488,-0.7442,-0.729,-0.7214,-0.9046,-0.6756,-0.813,-0.7176,-0.7938,-0.5458,-0.4084,-0.4886,-0.4618,-0.7252,-0.8168,-0.7748,-0.6756,0.0624,0.9202,0.6858,0.8852,0.6408,0.6858,0.9502,0.8704,1,0.4664,-0.4064,-0.1472,-0.1322,-0.1372,-0.3516,-0.4664,-0.4064,-0.4962,-0.7008,-0.601,-0.5462,-0.4614,-0.3168,-0.5012,-0.2418,-0.2418,0.0124,-0.0524,-0.3566,-0.2418,-0.3068,-0.5012,-0.0526,0.3158,0.6316,0.6842,1,1,0.7894,0.4736,0.421,0.1052,0.0526,0.2106,0.0526,0.3158,0.5264,0.5264,0.5264,0.8948,0.8948,0.8422,0.6842,0.6316,0.7894,0.579,0.7894,0.579,0.5264,0.421,0.0526,0.2106,0.3158,0.1578,-0.35,0.05,0.25,0.55,0.7,0.6,0.45,0.3,0.1,-0.35,-0.3,-0.25,-0.4,-0.05,0,0.1,0.4,0.45,1,0.85,-0.1,0.6,0.6,0.4,0.5,0.7,0.35,-0.2,-0.05,-0.15,-0.25,-0.45,-0.1764,0.1176,0.4706,0.3824,0.6176,1,0.7942,0.8824,0.353,0.1764,0.0588,-0.5294,0.5,0.4706,0.4412,0.853,0.7058,-0.2352,0,-0.0588,-0.4412,-0.5294,-0.2648,0.353,0.2942,0.2352,-0.647,-0.2942,-0.2352,-0.3236,-0.6764,-0.2352,-1,-1,-1,-1,-1,-1,-1,-0.961,-0.9698,-0.8848,-0.5142,0.8634,0.6366,0.5656,0.493,0.4256,0.3724,0.2518,0.1542,0.0018,-0.3068,-0.5992,-0.8564,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9674,-0.9714,-0.6284,-0.6124,0.4576,0.124,0.1008,0.0146,0.0928,-0.0026,-0.124,-0.2676,-0.4136,-0.5924,-0.7918,-0.9292,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8934,-0.96,-0.5568,-0.4934,-0.61,-0.646,-0.652,-0.698,-0.6856,-0.7074,-0.751,-0.751,-0.7692,-0.742,-0.8382,-0.95,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,1,-0.7714,-0.5714,-0.4572,-0.7428,-0.5714,-0.6,-0.6286,-0.8286,-1,-0.2,-0.6858,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.1856,0.1262,0.1112,0.0944,0.0506,-0.046,-0.1438,-0.2914,-0.5068,-0.3386,-0.5334,0.2588,-0.6344,0.2856,0.9206,0.2502,0.092,0.65,-0.6236,-0.247,0.3176,0.0118,-0.2352,-0.1412,0.0118,0.1058,0.6352,1,0.7058,0.9648,0.9882,0.447,0.1648,0.1648,0.3648,0.7648,0.8,0.8824,0.7648,0.5294,0.3058,0.1764,0,-0.1412,-0.3882,-0.4706,-0.5058,-0.5176,-0.2824,-0.6588,-0.1892,0.0136,0.0406,0.1216,0.1352,0.027,0.054,0.4594,0.527,0.7162,0.7568,0.6892,0.8244,0.4054,0.1892,0.0946,0.1622,0.6756,0.8648,0.8514,0.8648,1,0.7298,0.5406,0.2432,0.1622,-0.0136,0.0406,-0.3378,-0.1622,-0.3378,-0.7028,0.3718,0.4764,0.5078,0.5392,0.2042,0.0366,0.1728,0.1624,0.4136,1,0.7486,0.7486,0.7278,0.4032,0.0576,0.0994,-0.0262,0.288,0.3612,0.5392,0.5706,0.644,0.5392,0.3404,0.3194,0.089,-0.3298,-0.288,-0.2984,-0.3926,-0.3926,-0.623,0.2088,-1,-1,1,-1,-1,-1,-0.6,-1,0.573,0.6404,0.3932,0.7078,1,0.7078,0.7752,0.573,0.5056,0.4158,0.1012,0.3034,0.6854,0.618,0.573,0.7752,0.3258,0.3708,0.6854,0.5506,0.4606,0.6404,0.3034,0.4382,0.528,0.2808,0.4158,0.3932,0.528,0.5506,-0.2584,-0.663,'12'
-0.0452,0.4502,0.7324,0.7614,0.501,0.6782,0.6274,0.425,-0.038,-0.5516,-0.3598,-0.6022,-0.2368,-0.0308,-0.2622,0.0126,0.302,0.6312,0.8554,0.9638,0.7686,0.4828,0.66,0.9494,1,0.5226,0.1718,0.0706,-0.226,-0.2116,-0.2406,-0.4864,-0.1424,0.2418,0.8344,0.7948,0.265,0.8908,0.8212,0.4006,-0.01,-0.341,-0.2186,-0.49,-0.1158,0.1556,-0.043,0.3378,0.6092,0.8444,0.808,0.5662,0.3874,0.351,0.5166,0.9834,1,0.2716,-0.0894,-0.1158,-0.3476,-0.3676,-0.351,-0.5298,-0.2054,0.1634,0.808,0.7392,0.3644,1,0.883,0.5322,0.3944,0.2564,-0.2534,0.3224,0.1904,0.3884,0.844,0.6402,0.1334,0.5502,0.3524,-0.0974,-0.1094,-0.0344,-0.0314,0.4062,0.3674,0.2594,-0.3944,-0.3044,-0.3134,-0.6522,-0.3794,-0.4032,-0.0886,0.285,1,0.9292,0.2754,0.926,0.7938,0.4492,0.417,0.3012,0.1724,0.6618,0.5136,0.182,0.3526,0.2078,-0.3462,0.14,-0.0306,-0.359,-0.781,-0.9646,-0.5362,-0.0402,-0.1368,-0.0596,-0.2334,-0.3752,-0.5814,-0.678,-0.7198,-0.7392,0.3902,0.8548,1,0.9746,-0.2776,-0.383,-0.3794,-0.176,-0.1688,-0.107,0.2196,-0.0128,-0.2668,0.187,-0.0744,-0.354,-0.3358,0.2088,0.3938,0.303,0.1652,-0.5172,-0.3938,0.0164,0.2632,-0.0562,-0.6152,-0.6552,-0.942,-0.6262,-0.5608,-0.4882,0.3656,1,0.6526,0.5758,-0.3132,-0.507,-0.6728,-0.604,-0.6364,-0.608,-0.1636,-0.1718,-0.103,-0.091,0.0344,-0.2848,0.0142,0.3576,0.394,0.0384,-0.3374,-0.5354,-0.5636,-0.2888,-0.2848,-0.309,-0.7494,-0.8666,-0.709,-0.6808,-0.6484,-0.5596,0.1802,1,0.7082,0.3948,-0.249,0.2018,0.5278,0.5536,0.3048,-0.1244,0.073,0.3304,0.3992,0.3048,0.06,0.0086,0.1374,0.266,0.2618,-0.176,-0.4334,-0.4464,-0.1674,0.0172,0.2104,0.146,-0.0558,-0.236,-0.2146,-0.309,-0.3048,-0.3776,0.2142,1,0.8572,0.2858,0.6428,0.8572,0.7858,0.5,-0.4286,-0.5,-0.4286,-0.3572,-0.2142,0,-0.0714,-0.2142,-0.1428,0.4286,0.7858,0.6428,-0.1428,0.2858,0.7142,0.7142,0.7142,0.7142,0.2142,0.2142,0.2142,0.2858,0.3572,-0.0714,-0.125,0.375,0.5,0.5624,0.5,0.25,0.4376,0.375,0,-0.75,-0.375,-0.1876,-0.3124,-0.25,-0.0624,0,-0.0624,0.6876,0.8124,0.9376,1,0.75,0.875,0.875,0.4376,0.625,0.375,0,0.1876,0.125,0,0,0.0704,0.3802,1,0.9718,0.014,0.5212,0.4366,0.155,0.155,0.0986,-0.014,0.2394,0.2958,-0.0704,-0.014,0.014,-0.183,0.014,0.0704,-0.1268,-0.5492,-0.8028,-0.8028,-0.2394,-0.1268,0.183,-0.014,-0.183,-0.3522,-0.5492,-0.662,-0.8592,-1,-1,-1,-1,-1,-1,-0.968,-0.968,-0.964,-0.96,-0.656,0.492,0.856,0.9,0.942,0.88,0.95,0.392,-0.186,-0.274,-0.288,-0.46,-0.848,-0.916,-0.864,-0.84,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9512,-0.9462,-0.9328,-0.873,-0.6568,0.398,0.8058,0.829,0.9536,0.8108,0.6874,-0.017,-0.4604,-0.5042,-0.4958,-0.525,-0.7424,-0.8242,-0.8084,-0.8364,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.8534,-0.66,-0.3234,-0.43,-0.73,-0.715,-0.7084,-0.6818,-0.6818,-0.8324,-0.9154,-0.9462,-0.9494,-0.9232,-0.777,-0.61,-0.5334,-0.6068,-0.7468,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,-0.6,-0.1428,-0.2572,1,1,-0.9714,-0.8286,-0.6858,-0.8286,-0.1428,0.6858,-0.9428,-0.9142,-0.2858,-0.6,-0.6858,-0.8286,-0.9142,-0.8286,-1,-1,-1,-1,-1,-1,-1,0.7022,0.7116,0.7198,0.7326,0.7558,0.7662,0.7938,0.8446,0.892,0.3768,0.3778,0.3614,0.343,0.3218,0.2828,0.2406,0.1944,0.0604,-0.242,-0.4194,-0.52,0.5058,-0.6728,-0.2234,0.2478,0.5422,0.674,-0.5334,-0.1162,-0.2906,0,0.6046,0.4302,0.093,0.186,0.4186,0.6046,0.9768,1,0.8488,0.8604,0.6628,0.3838,0.4652,0.4302,0.9768,0.8488,0.8372,0.7674,0.7442,0.872,0.9418,0.5232,0.5348,0.3372,0.2906,-0.093,0.1396,-0.0466,-0.2442,-0.3756,-0.217,-0.238,-0.1534,-0.3862,-0.0476,0.0264,0.0158,0.0158,0.8412,1,0.9576,0.873,0.5344,0.291,0.0264,-0.0264,0.3016,0.5132,0.3016,0.3228,0.7038,0.545,0.6402,0.2804,0.5768,0.0158,-0.3122,-0.5026,-0.3544,-0.2804,-0.492,0.466,0.5242,0.068,0.1456,-0.1262,-0.0486,0.0486,-0.1166,0.1942,1,0.903,0.7378,0.7766,0.369,0.2816,0.1456,0.1166,0.2234,0.2234,0.1748,0.5436,0.5146,0.6602,0.33,0.33,0.4758,0.1068,-0.068,-0.2234,-0.3884,-0.4078,-0.5436,-0.8584,-1,-1,1,-1,-1,-1,-0.5,1,-0.458,-0.271,-0.0468,0.4018,0.271,0.3458,0.458,0.6262,0.57,0.2524,0.1028,0.1962,0.1776,0.2898,0.6262,0.1028,0.2336,0.6448,0.4954,0.271,0.4766,0.5328,1,0.701,0.6074,0.6822,0.4206,-0.215,-0.028,0.1214,0.0654,-0.7196,'13'
-0.2486,0.1078,0.6796,0.6318,0.2366,0.5718,0.518,-0.1646,0.039,-0.03,-0.3712,-0.1946,-0.2066,-0.3384,0.0988,0.015,0.0778,0.5718,0.7754,1,0.9192,0.8084,0.8622,0.8324,0.8354,0.8532,0.4402,0.1946,0.2156,0.1258,0.033,0.1318,-0.322,0.057,0.6952,0.621,0.3334,0.8348,0.7122,-0.057,0.302,0.134,-0.2336,-0.0428,-0.2166,0.0256,0.2878,0.379,0.624,0.792,1,0.9374,0.5556,0.775,0.7122,0.641,0.9344,0.8348,0.0056,0.1994,0.0598,-0.1254,0.0228,-0.1196,-0.2814,0.148,0.756,0.6422,0.4666,0.8634,0.6586,0.4276,0.626,0.265,0.1318,0.304,0.0374,0.9284,1,0.6162,0.8992,0.9024,0.2976,0.0992,0.0536,0.2878,0.5448,0.7366,0.8666,0.6066,0.2066,0.1544,-0.0862,-0.0472,-0.0634,-0.252,-0.122,0.3386,1,0.811,0.4882,0.7598,0.4488,0.2992,0.5788,0.1968,0.3582,0.4528,0.0906,0.6812,0.7322,0.0708,0.122,0.0984,-0.1772,-0.2048,-0.374,-0.5788,-0.5906,-0.1496,0.2952,0.4528,-0.13,-0.2362,-0.6182,-0.5552,-0.7244,-0.9016,0.328,0.8064,1,0.9526,-0.2332,-0.7392,-0.5612,-0.1976,0.2886,0.2292,0.1146,-0.1264,-0.2846,0.2648,0.5534,0.3834,0,0.253,0.2332,0.162,0.1068,-0.1226,-0.075,-0.083,0.174,0.336,-0.0396,-0.9526,-0.909,-0.6482,-0.2648,-0.2648,0.4362,1,0.5682,0.5022,-0.5462,-0.7444,-0.7754,-0.4978,-0.511,-0.2776,0.097,-0.1674,-0.392,0.0748,0.163,0.1674,0.0044,0.3788,0.577,0.3128,-0.0838,-0.3832,-0.5594,-0.2114,0,-0.097,-0.2776,-0.7224,-0.9428,-0.793,-0.4978,-0.489,0.3318,1,0.6726,-0.062,-0.7168,-0.5884,-0.792,-0.7566,-0.8762,-0.6682,-0.531,-0.447,-0.3186,-0.2832,-0.1992,-0.2522,-0.1416,0.146,0.1284,-0.1106,-0.3496,-0.4956,-0.646,-0.584,-0.2566,-0.146,-0.5398,-0.5708,-0.6194,-0.407,-0.4868,-0.4292,0.2,0.8,0.8,0.45,0.4,0.6,0.35,0.3,-0.05,0.05,-0.05,-0.05,0.2,0,0.15,0.1,0.2,0.5,0.7,0.75,1,0.75,0.55,0.6,0.55,0.85,0.4,0.5,0.3,0.35,0.3,0.35,-0.3334,0.0476,0.381,0.381,0.381,0.4286,0.3334,0.1428,-0.0952,0,-0.2858,-0.4286,-0.238,-0.238,-0.0952,-0.0476,0.0476,0.2858,0.619,1,1,0.762,0.7142,0.9524,0.9048,0.619,0.5714,0.4762,0.0476,0.3334,0.2858,-0.0476,0.0304,0.5758,1,0.8484,0.4242,0.5758,0.2424,-0.2122,0.2122,0.1212,0.1516,0.2122,-0.4848,0.3334,0.4242,0.0606,0.091,0.1212,0.303,0.1212,0.091,-0.091,-0.5758,-0.2424,0.1516,0.3334,-0.091,-0.1212,-0.6364,-0.4848,-0.5758,-0.606,-1,-1,-1,-1,-1,-1,-0.9718,-0.9686,-0.9608,-0.8998,-0.8888,0.5348,0.9608,0.986,0.9202,0.6742,0.5584,0.076,-0.2372,-0.2984,-0.397,-0.632,-0.856,-0.953,-0.9452,-0.939,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.971,-0.9634,-0.8056,-0.6592,-0.8918,0.2848,0.6836,0.872,0.833,0.5296,0.1864,-0.3686,-0.576,-0.6218,-0.6752,-0.801,-0.9124,-0.9574,-0.9558,-0.9534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.953,-0.86,-0.6468,-0.4934,-0.3468,-0.551,-0.6074,-0.531,-0.6038,-0.5874,-0.7674,-0.8634,-0.9068,-0.8968,-0.905,-0.9018,-0.8068,-0.7268,-0.8334,-0.8434,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3428,-0.3142,1,-0.3428,1,1,-0.6858,-0.8286,-0.6858,-0.3428,0.4286,1,-0.9142,-0.8858,-0.8286,-0.9714,-0.8572,-0.8858,-1,-0.9142,-1,-1,-1,-1,-1,-1,-1,0.708,0.711,0.7068,0.7178,0.73,0.7492,0.777,0.8302,0.8852,0.125,0.5756,0.5404,0.5292,0.5224,0.4938,0.4584,0.37,0.238,-0.0282,-0.2488,-0.5334,0.3648,-0.9008,-0.4982,0.2376,0.461,0.576,1,0.1498,0.3914,0.3816,0.6714,0.6232,0.7392,0.6522,0.7778,0.884,0.884,0.6426,0.6618,0.7004,0.7682,0.971,1,0.5846,0.3816,0.2754,0.5748,0.43,0.459,0.401,0.7004,0.5266,0.5748,0.855,0.7778,0.2658,0.1498,0.2754,-0.227,-0.2084,-0.0388,0.0742,0.272,0.1448,0.2084,0.265,0.2368,0.371,0.7314,0.993,0.8586,1,0.781,0.6466,0.6326,0.6466,0.894,0.8516,0.9858,0.9576,0.6466,0.2368,0.2368,0.1732,0.1732,0.265,0.1308,-0.1802,-0.0672,-0.272,-0.6538,-0.1638,0.0452,0.1022,0.1592,-0.0404,-0.1782,0.0784,0.0546,0.0688,0.5914,1,0.791,0.9098,0.5296,0.221,0.2256,0.4014,0.468,0.62,0.4062,0.6484,0.6818,0.373,0.3492,0.0974,0.278,0.0404,-0.0356,-0.0926,0.2826,0.2494,-0.3776,-0.9786,-1,1,-1,-1,-1,-1,0.0666,-1,-0.0256,0.1538,0.2052,0.3076,0.5384,0.5642,0.641,0.7436,0.5128,1,0.4616,0.3076,0.4616,0.2564,0.4102,0.3846,0.4872,0.5898,-0.0512,0.3076,0.3076,0.3846,0.4616,0.6154,0.4616,0.5384,0.2564,0.1794,0.2308,0.1026,-0.3076,-0.5642,'13'
-0.2542,0.1112,0.723,0.7048,0.3302,0.1386,0.0532,-0.1232,-0.376,-0.4398,-0.7078,-0.6286,-0.6286,-0.4368,-0.4764,-0.5068,-0.309,-0.032,0.3028,0.5404,1,0.9696,0.376,0.7108,0.6986,0.72,0.6652,0.5708,0.0564,0.0928,0.0684,-0.0806,-0.168,0.2054,1,0.9524,0.3548,0.4534,0.382,-0.0186,-0.3446,-0.4262,-0.6366,-0.5994,-0.5314,-0.3548,-0.3786,-0.416,-0.314,0.2598,0.4872,0.6638,0.871,0.7894,0.1206,0.3412,0.3446,0.3242,0.3208,0.2088,-0.1002,-0.2224,-0.382,-0.219,-0.1054,0.2728,1,0.9454,0.24,0.7746,0.6872,0.4436,-0.1964,-0.3236,-0.1746,-0.4,-0.2072,-0.051,0.0436,0.251,0.3928,0.88,0.9128,0.9818,0.4872,0.36,0.4218,0.5672,0.7782,0.9236,0.2546,-0.0328,-0.309,-0.4728,-0.5236,-0.571,-0.1302,0.3084,1,0.9144,0.0838,0.6934,0.5864,0.2906,-0.0802,-0.1372,-0.4438,-0.3404,-0.2442,0.0054,0.1764,0.3654,0.5436,0.811,0.754,0.2906,0.0838,-0.0374,-0.1302,0.041,0.2906,0.5472,0.2192,-0.1336,-0.3726,-0.4546,-0.508,-0.6008,0.2682,0.7778,0.9886,1,0.0076,-0.3448,-0.7318,-0.6398,-0.6016,-0.5172,-0.728,-0.7126,-0.7624,-0.3832,0.1072,0.3524,0.134,0.1034,0.1916,0.2338,0.2184,-0.1188,-0.0038,0.0996,0.3066,0.2108,-0.2568,-0.6934,-0.682,-0.636,-0.9348,-0.8966,0.3384,0.9072,0.9614,1,-0.056,-0.3384,-0.7524,-0.4546,-0.559,-0.9884,-0.7098,-0.7176,-0.648,-0.5976,0.149,0.6596,0.443,0.3308,0.5474,0.4158,-0.3308,-0.2572,-0.2302,0.0406,0.5358,0.6634,-0.0522,-0.8144,-0.7292,-0.6442,-0.6518,-0.8104,0.23,1,0.6682,0.7434,-0.093,0.0266,0.4824,0.1902,-0.031,-0.3762,-0.6416,-0.2788,-0.292,-0.177,0.031,0.2212,0.7744,0.9292,0.6328,0.4778,0.261,-0.0664,0.084,0.0222,0.1504,0.6814,0.9026,0.3982,0.239,0.1682,-0.146,-0.239,-0.3888,0.1666,0.2222,0.2222,0.1666,0.2222,-0.0556,-0.1666,-0.3334,-0.5,-0.6112,-0.7222,-0.5556,-0.5,-0.5556,-0.3888,-0.2222,-0.1112,0.3888,0.7778,1,0.9444,0.7778,0.7222,0.7778,0.8888,0.8334,0.5,0.2222,0,0.0556,0.0556,-0.3334,0,0.6666,0.6666,0.2778,0,-0.0556,-0.1666,-0.4444,-0.5556,-0.5556,-0.6112,-0.5556,-0.4444,-0.5,-0.6112,-0.3334,-0.2222,0.4444,0.5556,0.9444,0.7222,0.7222,0.7222,0.7778,1,0.6666,0.6666,0.3888,0.2222,0.2222,0.1112,-0.1076,0.4154,1,0.9076,0.0154,0.323,0.323,0.0462,-0.2308,-0.4154,-0.6308,-0.723,-0.2616,-0.0462,0.2616,0.2308,0.5076,0.077,-0.0462,-0.2924,-0.2924,-0.5692,-0.6616,-0.7538,-0.2616,0.1076,0.1076,-0.2308,-0.4462,-0.4462,-0.5076,-0.9076,-1,-1,-1,-1,-1,-1,-0.9744,-0.9702,-0.8296,-0.611,-0.4492,0.7118,0.99,0.902,0.8112,0.753,0.7132,-0.0618,-0.2164,-0.3272,-0.391,-0.5146,-0.8908,-0.956,-0.9532,-0.9574,-0.956,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9624,-0.9566,-0.857,-0.692,-0.5538,0.8214,0.8282,0.7354,0.832,0.7354,0.5876,-0.2554,-0.3838,-0.465,-0.519,-0.5442,-0.8358,-0.8744,-0.8938,-0.913,-0.9276,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.9468,-0.8568,-0.8734,-0.8834,-0.6292,-0.6856,-0.8092,-0.7484,-0.755,-0.8284,-0.9318,-0.9668,-0.96,-0.9484,-0.7918,-0.5668,-0.51,-0.3568,-0.5934,-0.7,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5714,-0.8,-0.2858,-0.0858,1,1,-0.7428,-0.8572,-0.8,-0.8572,1,1,-0.9428,-0.9714,1,-0.5714,-0.7428,-0.7428,-0.9428,-0.9714,-0.1714,-1,-1,-1,-1,-1,-1,0.4738,0.4728,0.4778,0.4844,0.4714,0.4846,0.4974,0.544,0.637,0.1926,1,1,1,1,0.9974,0.9214,0.826,0.7256,0.5008,0.2142,-0.5334,0.4,-0.5412,0.071,0.8436,0.9584,0.969,0.4916,0.291,0.1818,0.5364,0.5636,0.3636,0.6546,0.891,0.9546,0.7182,0.609,0.5818,0.609,0.8818,0.3,0.6728,0.7182,0.7,0.4728,0.5182,0.391,0.6546,0.6182,0.5454,0.5272,0.3636,0.8364,0.5272,0.6728,0.5364,0.2818,0.0818,-0.4636,-0.0622,1,0.2968,0.2748,0.3186,0.2308,0.5532,0.4798,0.4798,0.4212,0.619,0.414,0.5458,0.575,0.3626,0.4726,0.37,0.2162,0.1722,0.1428,0.2308,0.2894,0.1942,0.3334,0.3334,0.1356,0.304,0.1942,-0.0622,-0.1794,0.1356,-0.5898,0.571,1,0.611,0.222,-0.167,-0.237,-0.1172,-0.0972,-0.0524,0.0074,0.4714,0.3816,0.4614,0.4314,-0.0224,-0.0374,-0.232,-0.1022,0.0324,0.0724,0.0624,-0.0024,-0.227,-0.0724,-0.227,0.0424,0.0524,-0.172,-0.4064,-0.3466,-0.3168,-0.591,-0.9942,1,-1,-1,-1,0.8,-1,-1,-1,-0.3392,-0.426,0.2,0.3044,0.0608,0.0434,0.5304,0.5652,0.9478,0.9304,0.5478,0.426,0.4782,0.9826,1,0.6522,0.4086,0.8608,0.7392,0.4434,0.374,0.0956,0.2522,0.2,0.5826,0.5826,0.3566,-0.0086,0.026,0.2696,-0.1478,-0.2,'14'
-0.1666,0.2778,0.6736,0.6354,0.3716,0.2084,0.1216,-0.052,-0.4132,-0.4584,-0.4688,-0.5208,-0.4652,-0.302,-0.316,-0.2466,-0.0382,0.0626,0.6076,0.8854,0.8612,0.8924,0.9756,0.802,0.9028,1,0.802,0.3646,0.323,0.1528,0.191,0.2118,-0.1606,0.2554,0.9672,0.9416,0.3832,0.511,0.4672,-0.0072,-0.2116,-0.2262,-0.7008,-0.449,-0.4526,-0.5146,-0.1496,-0.1278,-0.1204,0.4818,0.5656,0.9014,0.865,0.916,0.6862,0.8576,1,0.6788,0.4416,0.416,0.0146,-0.0328,0.011,-0.0146,-0.1274,0.2846,1,0.955,0.1722,0.8352,0.7678,0.3184,-0.0038,-0.0674,-0.3558,-0.4794,-0.2772,-0.0786,-0.03,0.1948,0.3596,0.7454,0.7828,0.809,0.5018,0.5168,0.3484,0.6142,0.8278,0.8052,0.3334,0.1722,-0.0636,-0.176,-0.1198,-0.206,-0.0556,0.3608,1,0.9134,0.0186,0.5546,0.4268,0.4104,-0.2702,-0.4722,-0.332,-0.2536,-0.2702,-0.1752,0.2082,0.2082,0.5876,0.9052,0.7114,-0.1546,0.0762,-0.0762,-0.1216,0.3196,0.3896,0.435,0.1712,-0.0598,-0.1382,-0.299,-0.303,-0.402,0.4732,1,0.9766,0.9394,0.0442,-0.4638,-0.944,-0.7482,-0.7668,-0.8414,-0.599,-0.4918,-0.5432,-0.6924,0.324,0.352,0.3286,0.3566,0.4266,0.1188,-0.1794,-0.0676,-0.3286,-0.0396,-0.0256,0.2308,0.1002,-0.5198,-0.8368,-0.5384,-0.571,-0.585,0.464,1,0.765,0.7732,-0.1506,-0.4392,-0.6124,-0.369,-0.402,-0.9298,-0.8226,-0.3856,-0.3196,-0.2742,0.2784,0.5298,0.0516,0.299,0.5216,0.2248,0.0886,-0.2248,-0.1298,-0.1588,0.0598,-0.0144,-0.097,-0.5918,-0.5628,-0.7196,-0.464,-0.3526,0.262,1,0.672,0.3712,-0.2938,-0.139,-0.262,-0.2164,-0.6128,-0.7404,-0.6492,-0.6036,-0.3986,-0.1846,0.2164,0.3986,0.426,0.435,0.3258,0.025,-0.0022,-0.2164,-0.2574,-0.2256,0.1572,0.6538,0.5308,0.2164,-0.1026,-0.0706,-0.303,-0.2892,0.2858,1,0.7142,0.6428,0.6428,0.7142,0.2858,0.2142,-0.6428,-0.8572,-0.5,-0.4286,-0.5,-0.7142,-0.2142,-0.2858,-0.5,-0.5,0.2142,0.3572,0.4286,0.7858,0.6428,0.5,1,1,0.3572,-0.4286,-0.5,-0.2142,0.0714,-0.2142,-0.1364,0.091,0.5454,0.4546,0.3636,0.1364,0.091,-0.091,-0.2728,-0.4546,-0.3182,-0.409,-0.3636,-0.1364,-0.1818,-0.2728,0.0454,0.0454,0.591,0.8182,0.8182,0.7272,0.909,0.6364,0.591,1,0.7272,0.409,0.409,0.091,0.3182,0.3182,0.0358,0.6072,1,0.75,-0.25,-0.3214,-0.2142,-0.5714,-0.5714,-0.8214,-0.7858,-0.7858,-0.7858,-0.3928,0.1428,0.4286,0.3928,0.1428,0.1428,0.1072,-0.6072,-0.5,-0.4642,-0.0714,0.25,0.5358,0.2142,-0.6072,-0.4286,-0.5,-0.4642,-0.3928,-1,-1,-1,-1,-1,-1,-0.9712,-0.961,-0.8626,-0.3792,-0.296,0.5674,0.9746,0.9168,0.905,0.7422,0.5692,-0.062,-0.3266,-0.3826,-0.4402,-0.3706,-0.6828,-0.883,-0.9474,-0.9338,-0.939,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9562,-0.95,-0.8918,-0.548,-0.447,0.5836,0.8234,0.6448,0.6378,0.4562,0.199,-0.3602,-0.5408,-0.5826,-0.5694,-0.5082,-0.7132,-0.8582,-0.8948,-0.9092,-0.9174,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.88,-0.8334,-0.8668,-0.8234,-0.562,-0.6638,-0.7674,-0.7874,-0.742,-0.78,-0.8964,-0.911,-0.911,-0.8964,-0.851,-0.7668,-0.4534,-0.46,-0.5334,-0.48,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.0858,-0.8572,0.1142,1,1,1,-0.8,-0.6,-0.8,-0.7714,1,1,-0.9714,-1,1,-0.2572,-0.7142,-0.8286,-0.9142,-0.9714,-0.8,-1,-1,-1,-1,-1,-1,0.4246,0.4336,0.435,0.447,0.446,0.4618,0.4916,0.5548,0.6292,0.0876,0.8682,0.8596,0.8828,0.8946,0.8756,0.85,0.8024,0.7186,0.5154,0.152,-0.52,0.3058,-0.4622,-0.4582,0.5552,0.9154,0.953,0.125,0.0928,-0.0722,0.268,0.7526,0.7216,0.7526,1,0.567,0.7628,0.6702,0.598,0.6908,0.6598,0.5258,0.5876,0.7526,0.8556,0.2886,0.3918,0.5774,0.5258,0.6908,0.3814,0.6804,0.8144,0.2578,0.4432,0.4846,-0.0412,0.103,0.0516,-0.134,0.0858,1,0.6572,0.8742,0.6686,0.5314,0.8742,0.7028,0.7258,0.6114,0.9086,0.8514,0.7828,0.9314,0.5542,0.4058,0.36,0.4742,0.3942,0.2686,0.4972,0.1772,0.3828,0.4286,0.2572,0.4172,0.5886,0.52,0.3942,-0.0514,-0.2,-0.6228,0.6146,1,0.7728,0.4158,0.0792,-0.0344,-0.0182,-0.1522,-0.0304,0.3672,0.501,0.3144,0.5132,0.3794,0.14,0.1522,0.217,0.3996,0.4118,0.4888,0.6146,0.6876,0.3022,0.1724,0.075,-0.0872,0.002,-0.1926,-0.2658,-0.14,-0.14,-0.4078,-0.9878,1,-1,-1,-1,0.8,-0.2,-1,-1,-0.3846,-0.0962,-0.2116,0.4038,0.2116,0.1538,0.423,0.5962,0.6924,0.7116,0.6924,0.2692,0.5384,1,0.8462,0.3462,0.0576,0.5192,0.0576,0.25,0.423,0.4424,0.3846,0.2884,0.8846,0.827,0.3846,0.3654,0.2308,0.077,-0.0384,-0.7308,'14'
-0.2462,0.1044,0.5262,0.7724,0.806,0.7948,0.9068,0.8918,1,0.6828,-0.1044,-0.3544,-0.4776,-0.6306,-0.791,-0.7874,-0.765,-0.7724,-0.8134,-0.5858,-0.4738,-0.1232,-0.235,-0.3732,-0.6568,-0.9216,-0.9552,-1,-0.8022,-0.6828,-0.5186,-0.2052,-0.0062,0.2476,0.6896,0.8746,0.9562,0.6614,1,0.9874,0.6896,0.3574,0.0094,-0.3386,-0.4012,-0.533,-0.5392,-0.8088,-0.5642,-0.5642,-0.8778,-0.4858,-0.533,-0.3574,0.0816,-0.0032,-0.6678,-0.6584,-0.837,-0.862,-0.8308,-0.7148,-0.6364,-0.533,0.0204,0.2788,0.748,0.9182,0.978,0.7228,1,0.9654,0.5716,0.1622,-0.2536,-0.3292,-0.4772,-0.663,-0.6346,-0.5812,-0.6882,-0.6944,-0.874,-0.9812,-0.6566,-0.5086,-0.2536,-0.2662,-0.4488,-0.7448,-0.7196,-0.767,-0.833,-0.8394,-0.7922,-0.6598,0.0646,0.2992,0.7534,0.9008,0.9458,0.6752,1,0.9488,0.1218,-0.3204,-0.3954,-0.4016,-0.573,-0.7234,-0.6572,-0.7774,-0.7984,-0.6992,-0.8166,-0.8016,-0.7384,-0.6782,-0.4676,-0.4948,-0.5158,-0.603,-0.7414,-0.8526,-0.8046,-0.7052,-0.7474,-0.4766,0.0506,0.3466,0.8844,0.9134,1,0.7112,0.8916,0.899,-0.0938,-0.5956,-0.834,-0.7256,-0.5992,-0.6824,-0.8628,-0.8376,-0.6824,-0.7546,-0.8808,-0.9422,-0.9676,-0.7978,-0.5416,-0.4982,-0.7112,-0.7184,-0.7798,-0.8122,-0.8736,-0.8268,-0.7112,-0.639,0.1078,0.5018,0.9926,0.9666,0.8216,1,0.9592,0.5502,0.1598,-0.446,-0.6282,-0.5836,-0.5502,-0.6022,-0.6728,-0.6618,-0.5018,-0.487,-0.6914,-0.6654,-0.6692,-0.606,-0.6208,-0.5018,-0.5874,-0.6654,-0.6468,-0.8884,-0.7956,-0.7064,-0.7286,-0.6356,0.066,0.6162,0.7058,0.791,0.4158,0.8166,1,0.3476,-0.032,-0.6376,-0.7442,-0.4116,-0.4882,-0.7142,-0.71,-0.6332,-0.5566,-0.4754,-0.7398,-0.8848,-0.6716,-0.6886,-0.5352,-0.565,-0.6076,-0.4456,-0.7186,-0.565,-0.7058,-0.8806,-0.8464,-0.7014,-0.3888,0,0.3888,0.6112,0.8334,0.8888,0.8334,1,0.9444,0.7222,0.1666,-0.1112,-0.2222,-0.2778,-0.4444,-0.5,-0.3888,-0.4444,-0.5,-0.2778,-0.1112,0.1112,0.1112,-0.1666,-0.4444,-0.6666,-0.7222,-0.6666,-0.3888,-0.2778,-0.3334,0.1112,-0.2308,0.2308,0.4358,0.5898,0.6924,0.6924,0.6924,0.5384,1,0.641,0.0256,-0.2308,-0.282,-0.4358,-0.5898,-0.5898,-0.4872,-0.5898,-0.4872,-0.2308,-0.4358,0.1282,0.077,-0.1794,-0.4358,-0.4872,-0.6924,-0.641,-0.5898,-0.4872,-0.3846,-0.3334,0.0244,0.3414,0.7074,0.8536,0.9512,0.683,1,1,0.6098,0.2196,0.0488,-0.317,-0.5366,-0.6098,-0.439,-0.8292,-0.4634,-0.4878,-0.9756,-0.439,-0.439,-0.4146,0.0488,-0.0488,-0.9024,-0.756,-0.7318,-0.683,-0.756,-0.6586,-0.5854,-0.6586,-1,-1,-1,-1,-1,-1,-1,-0.9714,-0.98,-0.7866,-0.499,0.8712,0.9484,0.9656,0.8984,0.8024,0.6392,0.4144,0.1454,-0.0866,-0.2884,-0.5046,-0.7924,-0.9428,-0.957,-0.96,-0.9756,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9634,-0.9692,-0.551,-0.5624,0.8472,0.5524,0.4684,0.3758,0.3106,0.17,-0.0244,-0.2302,-0.388,-0.5086,-0.6686,-0.8622,-0.924,-0.9326,-0.9398,-0.9626,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8868,-0.9668,-0.8068,-0.6268,-0.686,-0.708,-0.708,-0.72,-0.71,-0.71,-0.822,-0.844,-0.838,-0.7728,-0.8438,-0.82,-0.73,-0.7034,-0.74,-0.8768,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,0.0286,1,0.9714,1,-0.8572,-0.9142,-1,-1,-0.9714,-0.9714,-0.9714,-0.9428,-0.9142,-0.7142,-0.6858,-0.6572,-0.9142,-0.9142,-0.3142,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.3552,-0.3384,-0.3308,-0.3384,-0.328,-0.344,-0.3242,-0.3442,-0.2894,-0.2954,-0.4666,0.2,-0.5272,0.4576,0.784,0.9598,0.7124,-0.5084,-0.2894,0.1842,0.7894,0.6184,1,0.6974,0.1578,0.1578,0.1184,0.2764,0.7764,0.7632,0.329,0.2632,0.3158,0.5264,0.8552,0.5922,0.4868,0.5264,0.5394,0.6448,0.4342,0.0658,-0.0264,-0.0658,0.0658,-0.0526,-0.1578,-0.2632,-0.3026,-0.6974,-0.4766,0.0094,0.6822,0.4392,1,0.4018,-0.0654,-0.0654,-0.1028,0.1588,0.215,0.2898,0.1588,0.0094,-0.0842,0.1962,0.4018,0.1028,-0.2524,0.1028,-0.215,0.271,0.514,-0.0468,0.1214,-0.028,-0.1402,-0.1962,-0.4766,-0.1962,-0.514,-0.6822,0.3182,0.659,0.9546,0.909,1,0.75,0.1364,0,-0.091,-0.0796,0.2386,0.2386,0.0114,-0.0228,0.0796,0.3636,0.3636,0.125,0.159,0.341,0.3522,0.4204,0.2272,0.0454,0.1704,-0.0454,-0.3068,-0.2614,-0.4204,-0.375,-0.5228,-0.716,0.2568,-1,-1,1,-0.8,-1,-1,-0.6666,-1,-0.0086,0.1112,0.2992,0.9316,0.9316,1,0.829,0.5726,0.7606,0.641,0.624,0.5384,0.6068,0.4018,0.453,0.4018,0.6582,0.2992,0.3334,0.624,0.6752,0.1112,0.5042,0.453,0.2136,0.1624,0.1794,0.1282,0.1112,0.0256,0.2136,0.0256,'15'
-0.2364,0.091,0.4764,0.7928,0.9272,0.84,0.8036,0.8654,1,0.8364,0.5454,-0.16,0,-0.0618,-0.5054,-0.4146,-0.44,-0.3272,-0.3454,-0.0182,0.109,0.24,0.16,-0.1018,-0.5164,-0.531,-0.549,-0.789,-0.429,-0.3418,-0.2836,-0.0436,-0.2784,0.024,0.4708,0.6632,0.7766,0.646,0.7114,0.7594,1,0.7148,0.0996,-0.2956,-0.244,-0.3298,-0.4742,-0.5396,-0.5396,-0.4604,-0.6048,-0.2372,-0.1546,0.1786,0.0584,-0.1752,-0.5258,-0.6736,-0.78,-0.7458,-0.8178,-0.4846,-0.3402,-0.3092,-0.094,0.218,0.7518,0.8984,1,0.7782,0.921,0.936,0.9172,0.5828,-0.3046,-0.3872,-0.3834,-0.47,-0.4474,-0.782,-0.5864,-0.5076,-0.8234,-0.47,-0.436,-0.2218,0,-0.0526,-0.564,-0.7932,-0.8646,-0.8234,-0.8722,-0.5112,-0.4436,-0.564,0.017,0.2984,0.7694,0.8984,0.9864,0.6644,0.9932,1,0.5796,0.2306,-0.3628,-0.2848,-0.4644,-0.5762,-0.5458,-0.695,-0.7288,-0.6712,-0.8644,-0.6306,-0.6,-0.3288,0.0406,-0.0542,-0.5186,-0.7288,-0.8204,-0.8272,-0.9694,-0.5728,-0.5526,-0.4882,-0.024,0.291,0.7432,0.8322,0.9418,0.5754,0.9624,1,0.3322,0.0684,-0.6268,-0.5616,-0.661,-0.7226,-0.8184,-0.8938,-0.8254,-0.7774,-0.9076,-0.9212,-0.8014,-0.6028,-0.2774,-0.2672,-0.5206,-0.6986,-0.8836,-0.8938,-0.8768,-0.6816,-0.5788,-0.5582,0.05,0.4108,0.9072,0.8428,0.9822,0.8072,0.8036,1,0.5428,0.1678,-0.4322,-0.4108,-0.4822,-0.7572,-0.6714,-0.7392,-0.8322,-0.8572,-0.9928,-0.7428,-0.6072,-0.5928,-0.3358,-0.3214,-0.4786,-0.6964,-0.8786,-0.75,-0.7286,-0.5892,-0.5786,-0.5858,0.3438,0.8832,0.9776,1,0.6808,0.8202,0.8696,0.8696,0.627,0.0786,-0.4516,-0.3304,-0.3214,-0.6,-0.5956,-0.8338,-0.7258,-0.6854,-0.645,-0.5056,-0.5416,-0.6044,-0.5192,-0.3034,-0.3214,-0.5956,-0.7168,-0.6584,-0.6224,-0.7484,-0.6584,-0.4202,-0.2666,0.4666,0.5334,0.7334,0.8666,1,0.9334,0.9334,0.8,0.8,0.6666,0.2666,0.0666,-0.2,-0.2666,-0.2666,-0.4666,-0.3334,-0.2666,-0.2,0,0.0666,0.0666,-0.2,-0.5334,-0.6,-0.6,-0.6666,-0.4,-0.2,-0.2,-0.0666,-0.2,0.05,0.45,0.75,1,0.95,0.65,0.85,1,1,0.65,-0.05,-0.1,0.05,-0.35,-0.4,-0.35,-0.1,-0.25,0.05,0.4,0.4,0.3,-0.05,-0.35,-0.35,-0.4,-0.5,-0.4,-0.05,-0.05,-0.2,-0.2266,0.1734,0.52,0.6534,0.76,0.6266,0.68,0.7066,1,0.68,-0.12,-0.36,-0.3866,-0.4666,-0.4134,-0.7066,-0.4134,-0.4134,-0.7066,-0.2534,-0.3066,-0.0666,0.0666,-0.04,-0.4666,-0.76,-0.7334,-0.6266,-0.9466,-0.4934,-0.4666,-0.4666,-1,-1,-1,-1,-1,-1,-1,-1,-0.984,-0.9772,-0.901,0.6818,0.9172,0.9238,0.7714,0.655,0.5522,0.4118,0.3182,0.1378,-0.2166,-0.476,-0.746,-0.9264,-0.9598,-0.9666,-0.9666,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.971,-0.9654,-0.8714,0.6992,0.8884,0.8644,0.5304,0.2952,0.19,0.07,-0.007,-0.1666,-0.4096,-0.6512,-0.8368,-0.9166,-0.9294,-0.9498,-0.9506,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.9034,-0.68,-0.66,-0.63,-0.628,-0.68,-0.708,-0.71,-0.698,-0.7182,-0.7946,-0.7764,-0.8528,-0.8634,-0.6434,-0.7934,-0.83,-0.7168,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,-0.2286,1,1,-1,-0.7714,-0.8,-1,-1,-1,-1,-1,-0.9142,-0.4858,-0.6,-0.5428,-0.7142,-0.8286,-0.8286,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.5078,-0.5058,-0.5166,-0.5078,-0.5108,-0.4538,-0.448,-0.4252,-0.407,-0.3228,-0.48,0.2236,-0.8354,-0.2776,0.9958,0.8094,0.7988,1,0,0.0746,0.2686,0.3284,0.2538,0.4328,0.582,0.8358,1,0.8358,0.6418,0.4776,0.4926,0.791,0.8508,0.7762,0.6418,0.194,0.3432,0.4478,0.3432,0.388,0.4478,0.6418,0.0448,0.403,0.015,0.4776,0.3284,-0.2388,-0.194,-0.5672,0.163,0.0434,-0.0108,0.5218,0.6522,0.5218,0.663,0.6304,0.7934,0.6848,0.7392,0.663,0.75,0.587,0.6196,0.4348,0.3804,0.4022,0.337,0.6414,1,0.924,0.4674,0.2174,0.5108,0.5434,0.4674,0.576,0.3586,0.0434,0.2392,-0.163,-0.2406,-0.0042,0.4684,0.4092,0.7638,0.6372,0.2152,0.1308,-0.0548,0.114,0.232,0.3248,0.2406,0.1562,0.2406,0.384,0.7806,0.73,0.4008,0.443,0.9494,1,0.3248,0.3756,0.3924,0.097,0.0718,0.0548,-0.1392,-0.2996,-0.2658,-0.5022,-0.9844,1,-1,-1,-1,-1,-0.8,-1,-1,-0.2784,0.2784,0.464,0.897,1,0.7732,0.5876,0.6702,0.7526,0.8144,0.6082,0.5464,0.732,0.5258,0.4226,0.732,0.5258,0.7938,0.6702,0.6082,0.8556,0.7114,-0.0104,-0.134,0.1958,0.5052,0.3814,0.464,0.031,-0.299,-0.2372,-0.402,'15'
0.128,0.5812,1,0.8424,-0.3892,-0.7734,-0.7684,-0.6256,-0.6996,-0.9656,-0.8472,-0.6552,-0.537,-0.5764,-0.66,-0.6206,-0.601,-0.4532,-0.2464,-0.2316,-0.1626,0.5222,0.8424,0.7636,0.5566,0.399,0.2464,0.7832,0.8572,0.5566,0.2858,0.2266,0.0584,0.5098,1,0.856,-0.358,-0.6382,-0.825,-0.8366,-0.7744,-0.9378,-0.7432,-0.7392,-0.5642,-0.4514,-0.4864,-0.5604,-0.4124,-0.463,-0.2256,-0.0078,-0.3346,0.393,0.4942,0.537,0.6964,0.681,0.2762,0.8054,0.751,0.3814,0.5098,0.428,0.0546,0.4384,1,0.8464,-0.4304,-0.6728,-0.592,-0.5838,-0.6324,-0.9152,-0.802,-0.6444,-0.5636,-0.5112,-0.6526,-0.8506,-0.6282,-0.5434,-0.4222,-0.1152,-0.2484,0.0708,0.293,0.5878,0.7172,0.6202,0.2444,0.4788,0.4626,0.4506,0.3696,0.309,0.102,0.498,1,0.8654,-0.3306,-0.8734,-0.551,-0.5552,-0.9224,-0.8448,-0.7878,-0.6122,-0.4898,-0.6326,-0.596,-0.4816,-0.649,-0.4898,-0.4122,-0.4776,-0.3306,-0.1062,0.347,0.6816,0.6326,0.3102,0.1878,0.5102,0.4734,0.5142,0.5306,0.1388,0.2186,0.5674,1,0.925,-0.3334,-0.5012,-0.5056,-0.4878,-0.6248,-0.8764,-0.925,-0.6336,-0.4482,-0.351,-0.5718,-0.7572,-0.6512,-0.4922,-0.4392,-0.5938,-0.51,-0.223,0.2538,0.4746,0.6158,0.4438,0.3818,0.6998,0.6248,0.457,0.3642,0.2318,0.4026,0.9898,0.7974,0.8582,-0.357,-0.4482,-0.4532,-0.4532,-0.4836,-0.595,-0.9088,-0.6304,-0.4886,-0.5746,-0.4076,-0.4632,-0.2456,-0.367,-0.5444,-0.276,-0.1038,0.0228,0.3518,0.6202,0.6102,0.838,1,0.9594,0.8482,0.6708,0.0936,0.0784,-0.3032,0.5128,0.2804,-0.1784,-0.694,-0.626,-0.3824,-0.2918,-0.4958,-0.813,-0.558,-0.4504,-0.2464,-0.5524,-0.439,-0.5468,-0.4674,-0.1388,-0.3428,-0.3484,-0.0198,0.456,0.83,1,0.8924,1,0.949,0.66,0.4504,-0.1558,-0.2522,-0.4618,0.4872,1,0.8462,0.077,0.0256,-0.0256,-0.5898,-0.7948,-0.077,0.1794,0.1282,0.1794,0.1794,-0.0256,-0.0256,0.1282,-0.1282,0.1282,0.0256,0.0256,0.3846,0.3846,0.5384,0.6924,0.5898,0.3846,0.7436,0.7948,0.8974,0.641,0.282,0.3334,0.2728,0.7576,1,0.9394,0.0304,-0.4546,-0.394,-0.4546,-0.394,-0.5758,-0.4546,-0.4546,-0.2728,-0.3334,-0.394,-0.6364,-0.394,-0.1516,-0.0304,-0.091,-0.091,0.4546,0.697,0.7576,0.697,0.6364,0.0304,0.697,0.8182,0.697,0.697,0.4546,0.3424,0.6712,1,0.9452,0.041,-0.3424,-0.315,-0.2054,-0.3424,-0.3972,-0.5616,-0.1232,-0.178,-0.0684,-0.2328,-0.1232,-0.4246,-0.6712,-0.2602,-0.3698,-0.3698,0.1232,0.2328,0.452,0.5068,0.5616,0.3972,0.863,0.863,0.2876,0.4246,0.3424,-1,-1,-1,-0.9448,-0.9598,-0.619,-0.6016,-0.7192,-0.7594,-0.837,-0.8196,0.4562,0.9674,0.9448,0.9398,0.8872,0.7294,0.361,0.0902,-0.188,-0.3508,-0.7168,-0.9072,-0.9398,-0.9374,-0.9448,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9172,-0.909,0.2162,0.792,0.1414,-0.0626,-0.3414,-0.695,0.3696,0.905,0.8728,0.9394,0.8364,0.6606,0.3152,0.0464,-0.1798,-0.3212,-0.6122,-0.8202,-0.8444,-0.8586,-0.8626,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.9668,-0.58,0.1032,0.1566,0.5532,0.2732,-0.54,-0.8268,-0.869,-0.8378,-0.8468,-0.8424,-0.8756,-0.7824,-0.8356,-0.9,-0.8468,-0.528,-0.7268,-0.6334,-0.7,-0.8868,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,-0.4286,-0.3714,1,1,0.5142,-0.9142,-0.9714,-0.9428,-0.9714,-0.9142,-0.9142,-0.8572,-0.8572,-0.4286,-0.4572,-0.7428,-0.9714,-0.8858,-0.8572,-1,-1,-1,-1,-1,-1,-1,-0.7418,-0.7478,-0.7412,-0.7072,-0.743,-0.7748,-0.787,-0.7638,-0.7972,-0.6518,0.7838,0.7638,0.7696,0.831,0.8654,0.8994,0.8952,0.8892,0.8424,0.766,-0.48,0.0588,-0.7818,-0.3192,0.2282,0.707,0.8788,0.3416,-0.3756,-0.3714,-0.1688,-0.1604,-0.2194,0.0168,0.1266,0.3924,0.6076,0.827,1,1,0.8608,0.7932,0.4894,0.4092,0.6498,0.5908,0.5148,0.5064,0.4514,0.768,0.5696,0.46,0.5022,0.367,0.287,0.3544,0.2194,0.0254,0.0042,-0.3164,-0.3562,-0.2274,-0.2032,-0.2032,-0.1106,-0.0866,-0.0906,0.1146,0.2716,0.3602,0.67,0.8914,0.839,0.9276,0.9276,0.823,0.6458,0.9236,0.8792,0.7908,0.8148,0.8632,0.7908,0.9518,1,0.67,0.5574,0.5654,0.3964,0.509,0.3602,0.0342,-0.0948,-0.0632,-0.0514,0.0276,-0.0988,-0.2134,-0.2174,-0.0198,0.162,0.1542,0.3914,0.5652,0.4744,0.9052,1,0.7588,0.5732,0.7312,0.9486,0.7668,0.6758,0.755,0.9882,0.838,0.6562,0.6878,0.506,0.494,0.411,0.3636,0.419,0.2332,1,-1,-1,1,-1,-1,-1,0.2334,-1,-0.3846,0,0.077,0.2116,0.2308,0.0384,0.2884,0.1538,0.077,0.4616,0.8462,0.6346,1,0.5962,0.2692,0.2692,0.2116,0.3076,0.3076,0.077,0,0.3076,0.4038,0.0192,0.173,0.0962,0.1346,-0.0384,-0.1154,-0.0962,0.1346,-0.3846,'16'
0.2352,0.8716,0.9144,0.8716,-0.4172,-0.5294,-0.4438,-0.7968,-0.8288,-0.8502,-0.8556,-0.9518,-0.7272,-0.7486,-0.5668,-0.476,-0.5402,-0.476,-0.2994,0.016,0.2728,0.615,1,0.9786,0.6204,0.508,0.754,0.8502,0.8288,0.738,0.4064,0.3582,0.0854,0.503,0.9244,0.9046,-0.487,-0.499,-0.5586,-0.7614,-0.662,-0.682,-0.8052,-0.7138,-0.7336,-0.9364,-0.678,-0.6064,-0.515,-0.5826,-0.6262,-0.2166,-0.0536,0.487,1,0.8132,0.0616,0.4792,0.2764,0.3996,0.7932,0.6898,0.34,0.344,0.2008,0.5712,1,0.9416,-0.536,-0.458,-0.5088,-0.883,-0.6296,-0.7426,-0.7388,-0.766,-0.536,-0.5166,-0.4502,-0.4776,-0.5088,-0.4192,-0.497,-0.349,0.2164,0.2398,0.4932,0.6608,0.5672,0.3178,0.7116,0.6842,0.844,0.5906,0.4464,0.1462,0.256,0.6674,1,0.9124,-0.4574,-0.6324,-0.431,-0.3436,-0.825,-0.7506,-0.768,-0.6542,-0.5842,-0.7242,-0.5974,-0.4442,-0.663,-0.5318,-0.5886,-0.3916,-0.291,0.0984,0.5448,0.6498,0.466,0.431,0.4224,0.8162,0.7812,0.3348,0.2428,-0.0634,0.261,0.907,0.5298,-0.0232,-0.8242,-0.7984,-0.6176,-0.509,-0.628,-0.752,-0.7726,-0.5556,-0.5814,-0.6434,-0.385,-0.5866,-0.5556,-0.447,-0.5762,-0.5194,-0.1834,-0.0904,0.1422,0.3592,0.3746,0.726,1,0.9896,0.9844,0.4988,0.2972,0.2764,0.145,1,0.7456,0.028,-0.4198,-0.6692,-0.6692,-0.71,-0.7404,-0.8576,-0.888,-0.603,-0.5318,-0.5878,-0.4962,-0.5522,-0.4708,-0.425,-0.486,-0.5726,-0.369,-0.0128,0.43,0.374,0.5826,0.598,0.6844,0.6184,0.201,0.1654,0.0788,-0.2672,-0.2094,0.7094,0.4594,-0.0872,-0.6802,-0.7384,-0.6628,-0.529,-0.564,-0.5814,-0.7384,-0.5232,-0.3838,-0.6046,-0.4826,-0.5466,-0.4594,-0.5406,-0.4884,-0.314,-0.128,0.4652,1,1,0.564,0.9534,0.7906,0.1104,-0.1454,-0.0872,-0.1396,-0.2326,0.6112,1,0.8334,0.1666,-0.1666,-0.1112,0.2778,0.3334,-0.0556,0.1666,0.1666,0.0556,0.1112,-0.1112,-0.2222,0.1666,0.1666,0.0556,0.1666,0.4444,0.4444,0.6666,1,0.8334,0.8334,0.6112,0.7222,0.7222,0.7778,0.7778,0.1666,0.7222,0.4634,0.8536,0.6586,0.756,0.2196,-0.0244,-0.2196,-0.4146,-0.2682,-0.2196,-0.122,-0.4634,-0.317,-0.0244,-0.1708,-0.0732,-0.0732,0.122,0.1708,0.2196,0.7074,0.756,0.6098,0.756,0.9024,0.561,1,1,0.9024,0.8536,0.8048,0.3658,0.2836,0.7014,0.4626,0.4328,-0.403,-0.4926,-0.403,-0.4328,-0.3432,-0.3432,-0.3432,-0.3134,-0.3432,-0.2538,-0.2836,-0.4626,-0.3134,-0.2238,-0.3432,-0.4926,-0.5224,-0.015,0.5224,0.6418,0.612,0.3732,0.5522,1,0.9402,0.3432,0.1044,0.3432,-1,-1,-1,-1,-0.9384,-0.9412,-0.5918,-0.6358,-0.6446,-0.677,-0.8032,0.63,0.6976,0.533,0.539,0.4978,0.2922,-0.1512,-0.3334,-0.2276,-0.1776,-0.583,-0.9384,-0.9472,-0.95,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8856,-0.8976,0.0768,1,0.7516,0.3326,-0.4884,0.62,0.9512,0.7612,0.654,0.5908,0.3106,-0.1498,-0.2668,-0.2156,-0.1572,-0.5152,-0.8294,-0.8294,-0.8612,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9134,-0.96,-0.5368,0.0666,0.2732,0.37,0.07,-0.822,-0.742,-0.742,-0.748,-0.694,-0.806,-0.856,-0.764,-0.842,-0.842,-0.6074,-0.6134,-0.7468,-0.84,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,1,1,1,-0.1714,1,1,-0.1142,-0.7714,-0.8,-0.9714,-0.9142,-0.8858,-0.6858,-0.8858,-0.7428,-0.8572,-0.5142,-0.5428,-0.8572,-0.7714,-1,-1,-1,-1,-1,-1,-1,-1,-0.7574,-0.7162,-0.7212,-0.6914,-0.6796,-0.6728,-0.6662,-0.6568,-0.6948,-0.6052,0.807,0.7952,0.8246,0.8282,0.8554,0.8608,0.8336,0.851,0.806,0.6918,-0.52,0.1882,-0.5322,-0.352,0.5762,0.9658,0.9902,1,-0.2924,-0.1792,-0.0424,-0.184,0,-0.0802,0.25,0.5614,0.7076,0.9482,1,0.9482,0.8208,0.6368,0.5896,0.4528,0.7924,0.6226,0.6556,0.6556,0.5708,0.6604,0.5802,0.5048,0.6462,0.566,0.5802,0.4292,0.335,0.2028,0.2594,-0.1132,-0.3444,-0.3486,-0.3402,-0.2066,-0.2066,-0.1858,-0.0564,0.0522,0.3278,0.5448,0.691,0.6994,0.8246,1,0.478,0.407,0.5616,0.8998,0.7662,0.549,0.6034,0.6826,0.3988,0.382,0.3696,0.311,0.3486,0.2818,0.3946,0.2108,0.1816,-0.0982,-0.3906,-0.169,-0.3408,-0.3962,-0.3074,-0.108,-0.047,-0.0914,-0.047,-0.1192,0.529,0.6952,0.7506,1,0.9446,0.446,0.4182,0.867,0.939,0.4958,0.5512,0.6398,0.4294,0.723,0.7506,0.7618,0.2964,0.2244,0.2686,0.108,0.0084,-0.4516,0.9148,-1,-1,1,-1,-1,-1,0,-1,-0.5484,-0.4624,-0.5914,0.0752,0.0538,0.2904,0.3548,-0.0322,0.0322,0.0322,0.6774,1,0.8064,0.5698,0.0968,0.0968,0.1182,0.4194,0.0538,-0.0108,-0.0322,-0.1398,0.2258,0.3764,0.2688,0.4624,0.1612,0.0108,-0.1612,-0.0322,0.0322,-0.1182,'16'
-0.2086,0.1756,0.5336,0.5008,-0.4352,-0.6684,-0.734,-0.6486,-0.7702,-0.803,-0.931,-0.642,-0.6092,-0.5304,-0.4778,-0.3662,-0.3464,0.0904,0.1888,0.6322,0.9244,1,0.6518,0.5402,0.225,-0.0444,-0.1428,-0.0804,-0.2216,-0.1954,-0.2118,-0.1626,-0.1634,0.1886,0.903,0.8816,-0.0772,-0.2854,-0.3536,-0.4974,-0.562,-0.6158,-0.9856,-0.4326,-0.4184,-0.1742,0.1202,0.07,0.2568,0.8886,0.7882,0.9748,0.9964,1,0.3644,0.1096,-0.0412,-0.2136,-0.3394,-0.3106,-0.4794,-0.4326,-0.3716,-0.2998,-0.0684,0.3134,1,0.944,0.1418,-0.1384,-0.226,-0.2854,-0.3416,-0.4676,-0.6182,-0.0894,0.2154,0.331,0.338,0.212,-0.1978,-0.233,-0.1278,-0.0122,0.0648,-0.0368,-0.0542,-0.4466,-0.6918,-0.6602,-0.8598,-0.965,-0.958,-0.7338,-0.9124,-0.7548,0.011,0.3478,1,0.9408,0.1076,-0.1202,-0.2074,-0.2262,-0.3198,-0.245,-0.1264,0.0266,0.1076,0.223,-0.3042,-0.5414,-0.7784,-0.738,-0.6692,-0.5788,-0.4352,-0.1826,-0.1046,-0.663,-0.6568,-0.7098,-0.8252,-0.7754,-0.7566,-0.844,-0.894,-0.738,0.1136,0.542,1,0.9968,-0.173,-0.1104,-0.0742,-0.1434,-0.3674,-0.2948,-0.262,-0.2948,-0.3574,-0.4398,-0.6606,-0.5156,-0.5684,-0.5816,-0.7462,-0.7332,-0.3476,-0.3278,-0.3674,-0.4168,-0.6936,-0.7398,-0.6408,-0.6902,-0.5584,-0.608,-0.7364,-0.7694,-0.0194,0.6046,0.872,1,0.0892,-0.5116,-0.341,0.0814,0.0968,-0.4342,-0.593,-0.7132,-0.7054,-0.7674,-0.783,-0.7054,-0.7596,-0.7906,-0.7906,-0.872,-0.7132,-0.7364,-0.6434,-0.721,-0.7674,-0.7674,-0.8488,-0.7596,-0.8024,-0.752,-0.841,-0.7946,0.1228,1,0.6658,0.3682,-0.6084,-0.2324,0.316,0.5352,0.671,0.3472,-0.4256,-0.3786,-0.2846,-0.483,-0.812,-0.6866,-0.295,-0.0444,-0.1906,-0.4308,-0.2794,-0.624,-0.5092,-0.4256,-0.2794,-0.3108,-0.3942,-0.483,-0.8486,-0.6032,-0.3682,-0.4464,0.2888,0.7334,0.5556,-0.0666,-0.4222,-0.0222,-0.0222,-0.1112,-0.3334,-0.2888,-0.2888,-0.0666,0.0666,-0.0666,-0.2444,0.0666,-0.0222,-0.0222,-0.0222,0.3778,0.4666,0.6888,0.7334,1,1,0.9556,0.5556,0.4666,0.4666,0.3334,0.2888,0.1556,-0.1764,0.353,0.647,0.647,-0.0588,-0.7648,-0.5882,-0.4706,-0.647,-0.647,-0.7058,-0.7058,-0.4706,-0.353,-0.4118,-0.353,-0.0588,-0.1176,0.0588,0.7058,1,0.9412,0.7648,0.7058,0.4118,-0.647,0.0588,0.1176,-0.2352,0,0.0588,-0.2942,-0.0286,0.4858,1,0.9428,0.2,-0.1428,-0.1714,-0.2,-0.1714,-0.2286,-0.7142,-0.0858,-0.0858,0.1428,0.5428,0.4572,0.5428,0.4,0.3714,0.3714,0.4286,0.3714,0.1428,-0.2286,-0.3142,-0.3428,-0.4572,-0.4858,-0.7428,-0.3714,-0.4,-0.5714,-1,-1,-1,-0.9748,-0.9674,-0.917,-0.917,-0.9112,-0.9022,-0.9052,-0.9096,0.4094,0.9452,0.9364,0.7454,0.5484,0.3132,0.014,-0.2612,-0.4004,-0.4804,-0.6966,-0.9616,-0.9616,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9602,-0.9554,0.2362,-0.2476,-0.3368,-0.224,-0.4128,-0.5844,0.26,0.9478,0.7164,0.2666,0.1432,-0.017,-0.2496,-0.4478,-0.5512,-0.6082,-0.7572,-0.9488,-0.946,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.9734,-0.08,0.91,0.7732,0.67,0.6132,0.2666,-0.5728,-0.56,-0.7564,-0.84,-0.831,-0.8364,-0.8328,-0.831,-0.8256,-0.8618,-0.8868,-0.88,-0.94,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,1,1,1,-0.7142,-0.7428,1,1,1,-0.8572,-0.5428,-0.3142,-0.6286,-0.7142,-0.7142,-0.8858,-1,-0.9428,-0.5428,-0.6,-0.2858,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4414,-0.4494,-0.4452,-0.42,-0.382,-0.3594,-0.2954,-0.2224,-0.1816,-0.1254,0.5286,0.5338,0.5164,0.487,0.4298,0.3644,0.2102,-0.1064,-0.4402,-0.4018,-0.5334,0.3294,-0.6176,-0.5408,0.0446,0.4326,0.7648,0.95,-0.7958,-0.4142,-0.3872,-0.2524,-0.2716,-0.3526,-0.341,-0.1098,-0.0404,-0.0328,0.0482,0.3834,0.5222,0.8304,0.9036,0.9306,0.7996,0.7226,0.7072,0.8304,0.9768,1,0.8882,0.7958,0.815,0.8342,0.738,0.6994,0.6724,0.7764,0.6262,0.1098,-0.7736,-0.462,-0.4806,-0.499,-0.3432,-0.4138,-0.4026,-0.18,-0.0092,0.0204,0.2802,0.3246,0.655,0.9036,1,0.8294,0.6438,0.6698,0.5918,0.8294,0.9666,0.8442,0.8886,0.7588,0.7588,0.5696,0.5176,0.6066,0.5918,0.6474,0.5548,0.269,-0.6116,-0.4488,-0.7036,-0.4238,-0.382,-0.4572,-0.2526,-0.1984,-0.0814,0.2484,0.5824,0.6242,0.9666,1,0.7912,0.5448,0.6744,0.7704,0.549,0.4488,0.7996,0.9832,0.6492,0.549,0.428,0.2734,0.6284,0.6242,0.3862,0.3278,0.2818,0.0772,1,-1,-1,1,-1,-1,-1,0.2,-1,0.0824,-0.2942,0.2706,0.6236,0.3648,0.5764,0.7412,0.553,0.647,0.9294,1,0.553,0.153,0.5058,0.6942,0.3648,0.3882,0.247,0.2942,0.4118,0.3648,0.6,0.9058,0.4352,0.6236,0.6706,0.4824,0.1764,0.553,0.4824,0.3412,-0.2706,'17'
-0.1598,0.2136,0.7378,0.684,-0.343,-0.5834,-0.6552,-0.5978,-0.8204,-0.8922,-0.9462,-0.921,-0.5476,-0.4974,-0.3932,-0.307,-0.0916,0.1706,0.5476,0.7774,1,0.8276,0.702,0.4902,0.2604,0.1814,-0.0018,-0.1346,-0.0772,-0.106,-0.0772,0.0736,-0.233,0.3572,0.985,0.8834,0.0828,-0.312,-0.5338,-0.624,-0.5338,-0.6766,-0.7594,-0.7294,-0.3196,-0.391,-0.1842,0.0864,0.3346,0.767,1,0.876,0.861,0.906,0.391,-0.0828,-0.3196,-0.5038,-0.5828,-0.47,-0.4248,-0.4248,-0.4248,-0.3948,-0.1572,0.4322,1,0.85,0.0678,-0.1178,-0.3892,-0.5108,-0.35,-0.5928,-0.7678,-0.7358,-0.475,0.1036,0.15,0.1964,0.0642,-0.1072,-0.1536,-0.0392,0.2536,0.2858,-0.1964,-0.4642,-0.6714,-0.675,-0.8608,-0.8678,-0.7678,-0.675,-0.6358,-0.6142,-0.0802,0.3904,1,0.8716,0.0624,-0.1088,-0.3476,-0.5972,-0.3976,-0.6684,-0.5686,-0.3582,-0.1122,0.1336,0.1408,-0.4866,-0.5294,-0.533,-0.7112,-0.2762,-0.3654,-0.3298,-0.2656,-0.426,-0.8432,-0.804,-0.8752,-0.9216,-0.9964,-0.9038,-0.7968,-0.8288,-0.0364,0.2888,1,0.87,0.002,-0.2504,-0.476,-0.6138,-0.4302,-0.7782,-0.1358,-0.0058,-0.304,-0.4188,-0.5756,-0.7896,-0.7056,-0.7246,-0.7934,-0.6252,-0.5756,-0.5718,-0.5832,-0.5488,-0.6674,-0.5984,-0.6444,-0.8432,-0.9274,-0.8546,-0.7514,-0.6978,-0.004,0.3886,1,0.9514,-0.1336,-0.2024,-0.2956,-0.66,-0.4696,-0.1214,-0.1012,-0.5506,-0.6396,-0.7894,-0.7936,-0.7774,-0.7288,-0.8786,-0.8422,-0.745,-0.7814,-0.6396,-0.6154,-0.8016,-0.6964,-0.6032,-0.911,-0.7652,-0.9878,-0.6558,-0.7328,-0.7652,0.2514,1,0.7486,0.877,-0.2626,-0.5586,-0.3016,-0.0614,0.296,0.4246,0.1006,-0.3966,-0.4972,-0.8324,-0.4692,-0.6424,-0.6256,-0.5084,-0.486,-0.553,-0.5028,-0.581,-0.6146,-0.7542,-0.6648,-0.4748,-0.648,-0.9498,-0.6816,-0.6424,-0.5978,-0.4692,0.2666,0.9334,0.8,0.4666,0.2666,-0.2666,-0.3334,-0.3334,-0.6,-0.7334,-0.4,-0.4,-0.4,-0.5334,-0.1334,0,0.2,0.3334,0.3334,0.8,1,1,0.8666,0.7334,0.6666,0.9334,0.7334,0.4666,0.4,0.4,0.0666,0.6,-0.0256,0.282,0.7948,0.7948,-0.2308,-0.3334,-0.4872,-0.4872,-0.4358,-0.5384,-0.7948,-0.5898,-0.5898,-0.2308,-0.3846,-0.2308,0.0256,0.2308,0.4872,0.9488,1,0.7436,1,0.7436,0.0256,0.4358,0.077,0.0256,0.282,-0.0256,-0.1282,0.1794,-0.2238,0.4926,1,0.8508,0.1044,-0.2836,-0.4626,-0.582,-0.3732,-0.582,-0.6716,-0.5522,-0.3134,-0.2836,0.0448,0.194,0.4926,0.4926,0.5522,0.3432,0.7014,0.7314,0.015,-0.2238,-0.403,-0.7612,-0.7014,-0.7314,-0.612,-0.4926,-0.6716,-0.7014,-1,-0.9758,-0.973,-0.97,-0.9814,-0.886,-0.9018,-0.9472,-0.879,-0.9002,-0.7892,0.4786,0.9544,0.9502,0.6994,0.4516,0.255,0.0754,-0.0598,-0.1824,-0.376,-0.6096,-0.8532,-0.9458,-0.9686,-0.97,-1,-1,-1,-1,-1,-1,-1,-1,-0.9572,-0.9582,-0.9562,-0.965,-0.1388,-0.2352,-0.1418,-0.0278,-0.054,-0.5042,0.3844,0.9298,0.7866,0.3766,0.0902,-0.0054,-0.1642,-0.282,-0.3862,-0.5168,-0.695,-0.8734,-0.8754,-0.9444,-0.9522,-1,-1,-1,-1,-1,-1,-1,-1,-0.919,-0.92,-0.8268,-0.98,-0.1034,0.83,0.7532,0.6332,0.6566,0.3932,-0.652,-0.748,-0.728,-0.842,-0.842,-0.84,-0.838,-0.84,-0.838,-0.8346,-0.8764,-0.7734,-0.6868,-0.8334,-0.8534,-1,-1,-1,-1,-1,-1,-1,-1,-0.5714,-0.9714,-0.9714,1,1,1,-0.4,-0.6858,1,1,1,-0.8858,-0.6286,-0.5428,-0.6286,-0.7714,-0.9714,-0.8858,-0.9714,-0.9714,-0.8286,-0.7428,-0.8572,-0.8572,-0.6572,-1,-1,-1,-1,-1,-1,-1,-0.5988,-0.5912,-0.5448,-0.5152,-0.4984,-0.4488,-0.3958,-0.3664,-0.3512,-0.3698,0.5416,0.5168,0.4586,0.4188,0.3692,0.2848,0.1162,-0.0878,-0.3814,-0.406,-0.48,0.2,-0.588,-0.318,0.3248,0.6182,0.7622,1,-0.8732,-0.39,-0.3742,-0.3228,-0.3862,-0.2514,-0.3346,-0.2198,0.01,0.109,0.2158,0.5288,0.7742,0.9128,0.909,0.691,0.703,0.794,0.7702,0.9168,1,0.901,0.901,0.8694,0.8812,0.5684,0.6634,0.7148,0.7346,0.695,0.5288,0.0138,-0.8878,-0.6442,-0.6674,-0.5822,-0.6248,-0.6016,-0.4042,-0.1258,-0.0948,0.292,0.3888,0.6132,0.911,0.9614,0.884,0.8298,0.6324,0.6828,0.6016,0.8182,1,1,0.9884,0.7022,0.911,0.7912,0.59,0.7098,0.6596,0.675,0.5474,0.149,-0.5604,-0.3782,-0.501,-0.4456,-0.4852,-0.493,-0.4376,-0.4416,0.0416,0.1762,0.596,0.5802,0.9882,1,0.5882,0.4892,0.4574,0.4416,0.5406,0.6316,0.7742,0.909,0.8614,0.7386,0.6356,0.406,0.4892,0.5486,0.4258,0.2396,0.2594,-0.0654,1,-1,-1,1,-1,-1,-1,0.2,-1,-0.38,0.08,0.08,0.3,0.98,1,0.6,0.58,0.6,0.66,0.14,0.12,0.2,0.3,0.12,0.42,0.26,0.24,0.24,0.22,0.16,0.06,0.08,0.08,0.06,-0.04,-0.02,-0.08,0.1,-0.42,-0.46,-0.76,'17'
-0.2768,0.115,0.1352,0.148,0.3754,0.7624,0.8534,1,0.7648,0.6434,0.6788,0.4134,0.282,-0.0266,-0.1276,-0.1252,-0.3958,-0.0366,-0.0164,0.1656,0.459,0.5146,-0.0164,-0.3628,-0.3324,-0.4386,-0.517,-0.4362,-0.3046,-0.3806,-0.2288,0.1302,-0.2762,0.0428,0.118,0.1362,0.2944,0.6498,0.8806,1,0.655,0.694,0.7872,0.2114,0.0558,-0.1802,-0.0558,-0.2114,-0.4034,-0.1984,-0.3282,0.0064,0.3152,0.1232,-0.2762,-0.4526,-0.4994,-0.4734,-0.7224,-0.668,-0.585,-0.4578,-0.3282,-0.009,-0.2162,0.106,0.222,0.1378,0.254,0.6866,0.9536,1,0.8084,0.8752,0.8664,0.164,-0.0044,-0.0654,-0.2772,-0.5908,-0.3818,-0.2714,-0.3034,0.167,0.2656,-0.1204,-0.5036,-0.614,-0.8664,-0.7678,-0.7822,-0.8664,-0.8694,-0.614,-0.431,-0.0654,-0.268,0.053,0.2654,0.181,0.2572,0.7496,0.9048,1,0.6054,0.7632,0.8368,0.238,0.2408,0.2626,-0.0448,-0.2844,-0.336,-0.0858,0.17,0.2136,0.2898,-0.1482,-0.464,-0.5756,-0.7606,-0.8558,-0.8748,-0.6952,-0.7388,-0.5102,-0.4258,-0.4122,-0.2482,0.092,0.3744,0.3196,0.3964,0.8984,0.871,1,0.5858,0.4706,0.5912,0.7256,0.594,0.5226,0.3636,0.3058,0.3608,0.5912,0.4074,-0.1166,-0.3278,-0.498,-0.8984,-0.797,-0.7778,-0.7448,-0.5748,-0.583,-0.4678,-0.1824,-0.3416,-0.5062,-0.1184,0.2704,0.524,0.5154,0.6478,1,0.986,0.676,0.431,0.417,0.3578,0.7014,0.7352,0.9042,0.8,0.614,0.4564,0.3296,-0.1492,-0.538,-0.6112,-0.7746,-0.907,-0.9212,-0.8732,-0.7606,-0.4254,-0.2846,-0.2986,-0.493,-0.7464,-0.9774,0.0598,0.6792,0.403,0.4514,0.6902,0.6008,0.7014,0.4814,0.4142,0.015,0.0858,0.4328,1,0.9402,0.9776,0.6344,0.5858,0.2874,0.041,-0.4216,-0.5672,-0.6492,-0.7052,-0.6456,-0.6978,-0.6792,-0.2314,-0.0224,0.0186,-0.485,-0.791,-0.7126,0.0244,0.561,0.5122,0.5122,0.6098,0.8536,1,0.8536,0.9024,0.6586,0.7074,0.7074,0.4146,0.4634,0.317,-0.2196,-0.0244,0.4146,0.4146,0.6098,0.317,0.6586,0.561,0.2682,0.2682,0.122,0.2682,0.1708,0.2682,0.2682,0.4146,0.5122,-0.3,0.05,0.15,0.15,0.6,0.75,0.9,1,0.9,0.95,0.7,0.55,0.3,0.1,-0.15,-0.05,-0.2,-0.1,0.05,0.15,0.6,0.5,-0.1,-0.1,-0.2,-0.4,-0.55,-0.35,-0.25,-0.2,-0.2,0.15,-0.2208,0.1168,0.3766,0.3246,0.3506,0.8182,0.8962,1,0.5844,0.5324,0.6364,0.6364,0.4026,0.2728,0.1948,0.039,0.039,0.3766,0.3246,0.3246,0.091,-0.1168,-0.4806,-0.922,-0.6884,-0.7402,-0.6364,-0.6624,-0.5064,-0.2468,-0.065,-0.013,-1,-1,-1,-1,-1,-1,-0.9508,-0.9578,-0.9296,-0.683,-0.8544,0.8028,0.709,0.453,0.291,0.1948,0.3098,0.4366,0.432,0.3686,0.1854,-0.3356,-0.8662,-0.9484,-0.9366,-0.9108,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9694,-0.9642,-0.9114,-0.3024,-0.8668,0.746,0.516,0.16,-0.0446,-0.2092,-0.0364,0.07,0.0044,-0.1444,-0.3664,-0.659,-0.8726,-0.927,-0.9314,-0.9352,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9598,-0.96,-0.8568,-0.5834,-0.41,-0.7262,-0.7262,-0.7294,-0.737,-0.7294,-0.74,-0.754,-0.7016,-0.6816,-0.683,-0.7372,-0.49,-0.4934,-0.6534,-0.7334,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2572,-0.9142,0.9142,1,0.8858,1,-1,-0.9714,-0.9714,-1,-0.9428,-0.8572,-0.9142,-0.8858,-0.8858,-0.6286,-0.6572,-0.8,-0.9714,-0.6,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.7608,-0.8022,-0.814,-0.8268,-0.8344,-0.9164,-0.9014,-0.9136,-0.9294,-1,-0.5066,0.6118,-0.8764,-0.4058,0.9546,0.8928,0.9442,-0.0916,-0.3806,-0.1328,0.3274,0.6106,0.7346,1,0.4514,0.2566,-0.1504,0.292,0.646,0.5398,0.2212,-0.2744,0.292,0.416,0.646,0.0266,0.0974,0.3098,0.6284,0.3628,0.1328,0.0266,-0.0974,-0.0088,0.0088,0.0974,-0.3628,-0.2212,-0.3806,-0.823,-0.1846,-0.0308,0.1384,0.5692,0.5692,0.7384,0.4308,0.4154,0.3076,0.6154,0.8462,0.5538,0.2154,0.1692,0.1076,0.6154,0.8616,0.6154,0.4616,0.6154,1,0.7538,0.3846,0.277,0,0.2616,0.5538,0.4462,-0.1076,-0.1076,-0.123,-0.4154,0.28,0.34,0.24,0.74,0.58,0.66,0.38,0.38,0.3,0.76,1,0.48,0.2,0.12,0.22,0.6,0.84,0.64,0.52,0.56,1,0.84,0.82,0.58,0.54,0.12,0.3,0.22,-0.26,0,-0.48,-0.6,0.8674,-1,-1,1,-1,-1,-1,-0.7,-1,-0.027,0.027,0.2792,0.4594,0.4234,0.2972,0.982,1,0.6756,0.4774,0.1352,-0.009,-0.1172,0.081,-0.1532,-0.4594,-0.2612,-0.2252,-0.1172,-0.2792,-0.1532,-0.2972,-0.2612,-0.009,-0.063,-0.1892,-0.1892,-0.2792,-0.5856,-0.4234,-0.2252,-0.8018,'18'
-0.7428,0.51,0.6416,0.4088,0.7366,0.7856,0.9264,1,0.6814,0.6876,0.6662,0.1578,-0.2068,-0.4272,-0.6172,-0.5834,-0.5252,-0.5284,-0.5406,-0.2956,-0.1884,-0.2128,-0.363,-0.5926,-0.6448,-0.51,-0.6876,-0.7488,-0.6172,-0.4978,-0.5314,-0.0872,-0.314,0.0156,0.201,0.2058,0.3984,0.822,0.899,1,0.8026,0.805,0.8892,0.4176,0.2516,-0.0902,-0.0854,-0.2226,-0.2178,-0.1312,-0.0108,0.0638,0.1312,0.3406,0.2972,-0.1962,-0.29,-0.266,-0.485,-0.55,-0.3718,-0.2684,-0.2876,0.0422,-0.3268,-0.0614,0.2014,0.1154,0.398,0.747,0.9606,0.9828,0.7322,1,0.9706,0.3022,0.091,0.0196,-0.0786,-0.2162,-0.1572,-0.1056,-0.0516,0.0638,0.1548,0.3734,0.1524,-0.371,-0.3956,-0.5062,-0.5282,-0.4496,-0.489,-0.2752,-0.1942,0.113,-0.3608,-0.1014,0.1934,0.099,0.5118,0.7618,1,0.9552,0.7878,0.908,0.7948,0.7122,0.3538,0.1298,0.0944,-0.3042,-0.0024,-0.007,0.0708,0.4292,0.2382,0.1864,-0.2312,-0.243,-0.3042,-0.592,-0.4976,-0.6038,-0.4292,-0.1416,-0.0166,-0.0212,-0.3366,-0.0804,0.2488,0.156,0.544,0.7878,1,0.956,0.6244,0.6512,0.717,0.783,0.6464,0.5146,0.5,0.0926,0.1586,0.3146,0.3512,-0.022,-0.2366,-0.3244,-0.822,-0.7926,-0.8708,-0.8804,-0.8292,-0.656,-0.4878,-0.3342,-0.0732,-0.144,-0.1954,0.132,0.4772,0.4822,0.6802,1,0.9238,0.8858,0.764,0.6446,0.698,0.9644,0.9188,0.863,0.901,0.8884,0.7336,0.066,-0.236,-0.604,-0.6142,-0.6396,-0.7208,-0.764,-0.698,-0.9442,-0.8654,-0.6092,-0.5026,-0.3274,-0.061,-0.0914,-0.0352,0.4546,0.4838,0.5454,0.7244,0.7654,0.8534,0.4634,0.3226,0.1672,0.3402,0.7038,1,0.8914,0.8974,0.8094,0.6422,-0.0822,-0.3402,-0.5426,-0.6804,-0.7156,-0.8124,-0.8914,-0.8944,-0.7038,-0.7244,-0.7448,-0.5924,-0.4662,-0.1936,-0.0616,-0.8182,0.2728,0.5758,0.3334,0.9394,1,0.3334,0.8788,0.697,0.697,0.8788,0.6364,0.2728,0.1516,-0.394,-0.3334,-0.3334,-0.1516,-0.3334,-0.1516,-0.091,-0.091,-0.3334,-0.394,-0.4546,-0.697,-0.9394,-0.5758,-0.4546,-0.3334,-0.394,0.0304,-0.55,0.5,0.75,0.45,0.95,0.85,0.85,0.95,0.55,1,0.95,-0.05,0,-0.05,-0.1,-0.25,-0.6,-0.6,-0.1,0.05,-0.05,0.05,-0.05,-0.15,-0.05,-0.1,0,-0.1,0,0.05,-0.1,0.2,0.1072,0.3214,0.5178,0.4642,0.6786,0.875,1,0.9642,0.7322,0.75,0.7678,0.8392,0.7678,0.75,0.75,0.4642,0.6428,0.5892,0.4108,0.25,0.125,0.0536,-0.2678,-0.3392,-0.1608,-0.375,-0.2678,0.0714,0.1428,-0.0714,0.375,0.4108,-1,-1,-1,-1,-1,-1,-1,-1,-0.9436,-0.9526,-0.8058,-0.3906,0.2054,0.7968,0.7788,0.9164,0.9572,0.86,0.666,0.3972,0.21,-0.1422,-0.6682,-0.8984,-0.9322,-0.921,-0.8962,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9662,-0.97,-0.9092,-0.7142,-0.1366,0.6984,0.6034,0.793,0.8016,0.6302,0.248,0.0084,-0.2818,-0.5634,-0.8492,-0.9024,-0.9042,-0.9362,-0.9424,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9408,-0.9282,-0.8882,-0.8108,-0.7692,-0.7168,-0.6972,-0.7544,-0.7686,-0.7802,-0.7358,-0.7216,-0.7186,-0.7472,-0.69,-0.4634,-0.5634,-0.5668,-0.72,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2858,-0.8,0.4286,0.2858,1,-0.1428,-0.8858,-0.9428,-0.9142,-0.7714,-0.7142,-0.9428,-0.8286,-0.2572,-0.4,-0.7428,-1,-1,-0.7142,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.4548,-0.439,-0.4362,-0.4918,-0.5064,-0.5462,-0.585,-0.653,-0.7492,-1,-0.4534,0.6588,-0.8906,-0.8304,-0.773,-0.7034,-0.6572,-1,-0.151,0.0754,0.0566,0.3396,0.3774,0.8114,1,0.5094,0.6038,0.415,0.7358,0.566,0.7358,0.7736,0.3774,0.6038,0.2264,0.0754,-0.0754,0.151,0.5284,0.1698,0.2264,0.585,0.4528,0.3584,0.849,0.5472,0,0.2452,-0.0754,-0.849,0.1746,0.254,0.9048,0.8096,0.5874,0.6666,0.7302,0.7302,1,0.7936,0.9842,1,0.635,0.762,0.619,0.9682,0.3174,0.3016,0.4126,0.492,0.7142,0.5396,0.3968,0.2858,0.5396,0.5238,0.6032,0.4444,0.0952,0.3334,0.3968,0.0794,0,0.6942,1,0.9764,0.647,0.8824,0.9058,0.5176,0.5882,0.3648,0.4706,0.4706,0.4118,0.5412,0.4588,0.3882,0.2,0.2352,0.2236,0.2942,0.2824,0.3648,0.0236,0.4236,0.247,0.4118,0.4588,0.553,-0.0352,0.2352,-0.1764,-0.4942,-0.9874,1,-1,-1,-1,-1,-0.8,-1,-1,-0.5248,-0.5842,0.01,0.4852,0.109,0.4456,0.7822,0.8614,1,0.6634,0.3862,-0.3268,0.1882,-0.0298,0.01,0.3862,-0.1288,-0.1882,-0.208,-0.109,0.0892,0.2674,-0.0496,0.0892,-0.1684,-0.0694,-0.2278,-0.0694,-0.604,-0.4456,-0.2476,-0.7426,'18'
0.0038,0.6062,0.444,0.6294,0.8918,1,0.7528,0.475,0.1274,-0.1352,-0.3436,-0.4054,-0.2432,-0.1274,0.1738,0.0734,0.39,0.6756,0.807,0.6526,0.6448,0.5444,0.6602,0.8302,0.9228,0.6834,0.3282,0.0348,-0.112,-0.3746,-0.475,-0.4054,-0.0862,0.3104,0.5862,0.6294,0.8448,0.9914,0.8706,0.9742,0.2242,-0.0258,0.069,-0.681,0.3362,0.4138,-0.1982,0.5086,0.638,0.9742,1,0.8362,0.388,0.3966,0.5604,0.8794,0.819,0.6034,-0.0172,-0.1466,-0.3276,-0.5862,-0.3794,-0.4482,-0.1726,0.1888,0.4458,0.4618,0.5904,0.8714,0.8554,0.9678,0.1646,0.0282,0.0442,-0.6626,0.269,0.2772,-0.245,0.486,0.7108,1,0.5342,0.3414,0.1888,0.2932,0.3414,0.486,0.4298,0.3734,0.0282,-0.3494,-0.4216,-0.3254,-0.5662,-0.3734,-0.1822,0.1546,0.464,0.3676,0.457,0.9588,0.8832,1,0.464,0.2234,0.031,-0.2578,0.292,0.3058,0.0722,0.7594,0.6426,0.6358,0.5876,0.464,-0.086,0.2372,0.1616,0.2234,0.409,0.2096,-0.1066,-0.347,-0.6152,-0.457,-0.3264,-0.6494,-0.2406,0.076,0.443,0.3608,0.462,1,0.8482,0.7342,0.519,0.3418,-0.1708,0.1836,0.0064,0.2216,0.4936,0.2784,0.1962,0.3924,0.1962,0.0632,0.1518,-0.095,0.2406,0.4368,0.2532,0.095,-0.1898,-0.443,-0.538,-0.6456,-0.7026,-0.8038,-0.1672,0.215,0.488,0.447,0.4812,1,0.9318,0.6246,0.2628,0.1536,-0.454,0.1058,0.0102,0.0308,0.6382,0.6246,0.0238,-0.14,-0.3106,-0.2082,-0.3242,-0.3174,-0.0238,0.1194,0.0308,-0.0238,-0.1262,-0.4062,-0.3856,-0.3924,-0.6792,-0.6996,-0.12,0.384,0.224,0.2,0.368,0.608,0.6,0.584,0.056,-0.28,-0.056,0.08,0.072,0.56,1,0.848,0.4,0.224,0.136,-0.192,-0.2,-0.216,0.16,0.632,0.576,0.144,-0.024,-0.304,-0.4,-0.36,-0.608,-0.408,0.1364,0.7272,0.6364,0.591,0.5,0.7728,0.6364,0.3636,0.091,0.0454,-0.091,-0.091,-0.0454,0.091,0.3636,0.2272,0.2272,0.591,0.7728,0.6364,0.8636,0.7728,0.7272,0.909,1,0.7272,0.5,0.5,0.4546,0.1364,0.0454,-0.1818,0.0666,0.4666,0.4222,0.5112,0.9556,1,0.7334,0.3334,0.4222,-0.0666,-0.1556,-0.2888,-0.1112,-0.1112,0.2444,0.2,0.4222,0.3334,0.7334,0.7778,0.6444,0.3334,0.6888,0.6444,0.6888,0.6,0.3778,0.2444,-0.3778,-0.1556,-0.0222,-0.0222,-0.0618,0.2098,0.5308,0.4568,0.5802,1,0.8518,0.753,0.5802,0.4568,-0.1112,0.2592,0.1112,0.2592,0.4814,0.358,0.3334,0.4568,0.1852,0.1604,0.2592,0.037,0.4074,0.6296,0.4814,0.358,-0.0618,-0.3086,-0.358,-0.4814,-0.5556,-0.4568,-1,-1,-1,-1,-1,-1,-1,-0.945,-0.9546,-0.8588,-0.4594,0.567,0.9594,0.8972,0.8182,0.799,0.7608,0.8254,0.7894,0.6364,0.4378,-0.1578,-0.7416,-0.8062,-0.8588,-0.902,-0.933,-0.9426,-0.9402,-0.9522,-0.9378,-0.9546,-0.9522,-1,-1,-1,-1,-1,-1,-1,-0.9352,-0.9352,-0.6434,-0.1868,0.3982,0.9394,0.8576,0.838,0.8196,0.8026,0.8872,0.8604,0.68,0.6814,-0.0768,-0.6322,-0.332,-0.1882,0.2952,0.2868,0.5772,0.47,0.773,0.401,0.47,0.5236,-1,-1,-1,-1,-1,-1,-1,-0.9068,-0.88,-0.5268,-0.5,-0.784,-0.692,-0.668,-0.644,-0.62,-0.68,-0.65,-0.6968,-0.7434,-0.6968,-0.6234,-0.2468,0.61,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-0.9428,0.6286,1,0.9428,0.3714,-0.1142,-0.6572,-0.8858,-0.9714,-0.9714,-0.8858,-0.6858,-0.7428,-0.4858,0.4,1,1,-0.1428,-0.6286,-0.7142,-0.9428,-0.9714,-1,-0.9428,-0.8858,-0.8858,0.8672,0.8672,0.8926,0.9206,0.9432,0.973,1,1,1,1,0.3384,0.3384,0.3292,0.282,0.2352,0.1406,0.1094,0.0464,-0.1076,-0.342,-0.52,-0.4118,-0.2346,-0.0274,0.594,0.907,0.9732,-0.2334,-0.4088,-0.132,0.346,0.044,-0.2328,-0.1446,-0.0062,0.0314,0.0818,0.761,0.5974,0.9874,1,0.3962,0.2076,0.3082,0.371,0.7484,0.8114,0.4968,0.585,0.5724,0.5974,0.4968,-0.0818,-0.2452,-0.107,-0.1572,-0.2956,-0.6226,-0.4466,-0.6352,-0.5,0.122,0.439,0.4878,0.0854,0.0976,0.183,0.2804,0.7804,0.9146,0.8292,1,1,0.683,0.5976,0.0366,0.378,0.4268,0.4756,0.744,0.7318,0.683,0.622,0.622,0.2074,0.3048,0.256,0.0976,-0.2318,-0.2318,-0.1098,-0.4268,0.3532,0.485,0.6048,0.3772,-0.0538,-0.1018,0.0658,0.0898,0.7366,1,0.8324,0.8682,0.7486,0.5808,0.1018,0.2694,0.2216,0.1736,0.3652,0.4252,0.473,0.3174,0.4252,0.3174,0.2336,0.1736,0.2574,-0.1138,-0.1736,-0.2694,-0.1498,-0.521,0.68,-1,-1,1,-1,-1,-1,-0.6,-1,-0.9404,-0.7142,-0.4286,-0.5238,-0.381,-0.4048,-0.0952,-0.0952,-0.3214,-0.0834,0.0358,-0.012,-0.0596,0.131,0.1428,0.0596,0.131,0.4404,0.4642,0.381,0.6428,0.4762,0.5834,0.631,0.8334,0.881,0.6428,0.9762,0.8928,1,0.8928,0.7262,'19'
-0.1852,0.2666,0.4888,0.6592,0.726,0.726,0.563,0.1556,-0.0962,-0.1704,-0.474,-0.2518,-0.2,-0.2222,-0.074,0.0222,0.3186,0.6518,1,0.9408,0.5482,0.5778,0.5852,0.6222,0.5704,0.2888,-0.0074,-0.0888,-0.1186,-0.0814,-0.3408,-0.3556,-0.0788,0.307,0.6456,0.7402,0.8976,1,0.7874,0.4488,0.0078,-0.2678,-0.3544,-0.6536,-0.0078,-0.1024,0.063,-0.0472,0.3228,0.4646,0.7322,0.8188,0.9056,0.6062,0.8268,0.9922,0.6614,0.1182,0.0394,-0.3858,-0.2756,-0.3938,-0.5748,-0.567,-0.1812,0.1666,0.4638,0.384,0.529,1,0.7754,0.5652,0.2028,-0.1666,-0.2608,-0.3116,0.0218,-0.116,-0.0144,0.3478,0.3044,0.4566,0.6594,0.3188,0.2898,0.5144,0.4202,0.4566,0.442,0.0724,-0.1666,-0.558,-0.6522,-0.5724,-0.6304,-0.5942,-0.2222,0.118,0.4306,0.3056,0.5556,1,0.7638,0.6388,0.2848,-0.007,-0.25,-0.0694,-0.0348,0.0416,0.1598,0.6042,0.3612,0.1806,0.1112,-0.0972,-0.1528,-0.0416,0.257,0.3264,0.375,0.1598,-0.0278,-0.3402,-0.3542,-0.4236,-0.4166,-0.6388,-0.196,0.1284,0.4798,0.3648,0.5608,1,0.7702,0.6082,0.277,-0.027,-0.2298,-0.0202,-0.1824,0.3784,0.527,0.554,0.331,0.3582,0.0068,-0.0406,-0.0744,0.1756,0.4932,0.5068,0.1554,-0.0338,-0.2094,-0.5608,-0.5744,-0.5946,-0.723,-0.4528,-0.112,0.306,0.5224,0.4702,0.4104,1,0.888,0.6492,0.1044,-0.3956,-0.1642,-0.3358,0.2238,0.4402,0.8358,0.7462,0.2164,0.1418,0.0448,-0.015,0.1418,0.2238,0.418,0.4626,0.4328,-0.0672,-0.4626,-0.5598,-0.5672,-0.6568,-0.8208,-0.4776,0.2252,0.8324,0.3508,0.3822,0.4346,0.246,0.843,0.7172,0.267,0.0576,-0.2774,0.246,0.644,0.9686,1,0.9268,0.644,0.6336,0.3718,-0.1414,0.246,0.309,0.466,0.7802,0.9372,0.487,-0.0786,-0.1832,-0.2042,-0.3298,-0.7906,-0.6544,0,0.7858,0.7142,0.7142,0.6428,1,0.6428,0.2142,-0.2142,-0.5,-0.7142,-0.6428,-0.5714,-0.5,-0.5714,-0.2858,0.1428,0,1,1,0.2858,0.0714,0.3572,0.4286,0.3572,0.2142,0.2142,0.1428,-0.3572,0,-0.0714,-0.2858,-0.3514,0.081,0.3514,0.4054,0.7298,0.5136,0.4594,0.027,-0.027,-0.081,-0.4594,-0.2432,-0.1352,-0.2972,-0.027,0.1352,0.2972,0.7838,1,0.7838,0.6216,0.7298,0.6216,0.4054,0.6756,0.5676,-0.027,-0.081,-0.1352,-0.3514,-0.2432,-0.1352,-0.147,0.1764,0.5294,0.3824,0.5882,1,0.7648,0.647,0.2942,-0.0882,-0.2352,-0.0588,-0.2942,0.4706,0.6176,0.5,0.2058,0.4118,0,-0.1176,0.2058,0.3236,0.7942,0.8824,0.5,-0.147,-0.1176,-0.4118,-0.3824,-0.2942,-0.5294,-0.3824,-1,-1,-1,-1,-1,-1,-1,-1,-0.9538,-0.9164,-0.3532,0.5248,0.8526,0.7426,0.6348,0.6304,0.56,0.4764,0.3994,0.2872,0.1464,-0.2124,-0.7316,-0.8086,-0.8504,-0.9186,-0.9604,-0.9516,-0.956,-0.9516,-0.945,-0.9692,-0.9472,-1,-1,-1,-1,-1,-1,-1,-1,-0.9408,-0.9088,-0.1718,0.417,0.7274,0.4834,0.5012,0.4928,0.4574,0.5616,0.4088,0.2452,0.1422,-0.3152,-0.6682,-0.5498,-0.2098,0.2418,0.8424,0.8424,0.5936,0.4976,0.788,0.1516,-0.1042,-1,-1,-1,-1,-1,-1,-1,-1,-0.8834,-0.8734,-0.7068,-0.696,-0.6,-0.72,-0.768,-0.8,-0.82,-0.8,-0.7868,-0.7634,-0.7568,-0.8334,-0.4168,0.3,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7428,1,1,0.8572,-0.3142,-0.9142,-0.9714,-0.8858,-0.9428,-0.9428,-0.8572,-0.9428,-0.5714,0.0286,1,1,1,-0.5714,-0.7714,-0.8,-0.9142,-0.9714,-0.8,-0.8858,-0.9142,0.8442,0.8442,0.8512,0.856,0.8502,0.8508,0.8746,0.9206,0.9996,0.998,0.1172,0.1172,0.1628,0.1552,0.1306,0.1382,0.1224,0.0646,-0.0552,-0.307,-0.4934,-0.3882,-0.0214,-0.1954,0.7962,0.8306,0.571,-0.3166,-0.0784,0.1764,0.2942,0.255,0.1764,0.1176,0.255,0.4118,0.7254,1,0.9804,0.9216,0.9412,0.6274,0.3922,0.3138,0.3334,0.5882,0.647,0.5882,0.6078,0.6274,0.5882,0.4902,0.196,-0.0392,-0.4314,-0.3922,-0.4118,-0.3922,-0.5294,-0.745,0.3618,0.5958,0.532,0.2128,-0.149,-0.1702,0.0212,-0.0212,0.3618,1,0.9148,0.8936,0.9362,0.149,0,0,-0.0426,0.2554,0.4468,0.2128,0.2978,0.383,0.532,0.468,0.1914,0.1276,-0.149,-0.4256,-0.468,-0.1702,-0.6382,-0.851,0.7384,0.9066,1,0.813,0.271,0.1962,0.3832,0.1962,0.3458,0.7384,0.7196,0.9066,0.8318,0.215,0.2898,0.1214,0.1588,0.3644,0.6448,0.6636,0.4206,0.6262,0.6074,0.6822,0.3458,0.1588,0.1962,0.1588,0.1028,0.0468,-0.1776,-0.4954,1,-1,-1,1,-1,-1,-0.8,-0.8,-1,-0.7708,-0.698,-0.75,-0.5104,-0.4688,-0.3646,-0.302,-0.302,-0.1458,-0.3542,-0.2604,-0.2188,-0.0312,0.0624,0.0208,0.0208,-0.0312,0.0624,0.2084,0.1354,0.5416,0.552,0.573,0.5104,0.5312,0.573,0.6146,0.823,1,0.6876,0.7396,0.573,'19'
0.245,0.675,0.895,0.8,-0.435,-0.78,-0.81,-0.835,-0.645,-0.895,-0.765,-0.575,-0.655,-0.92,-0.7,-0.66,-0.64,-0.485,-0.275,-0.03,0.375,0.7,0.94,0.955,0.65,0.585,0.82,1,0.915,0.735,0.495,0.54,-0.0204,0.2912,0.859,0.744,-0.6178,-0.8812,-0.7032,-0.6698,-0.8924,-0.8812,-0.8442,-0.8776,-0.7032,-0.6512,-0.6884,-0.6438,-0.655,-0.5474,-0.3098,-0.0872,0.0984,0.373,1,0.9666,0.232,0.499,0.473,0.6474,0.807,0.655,0.4546,0.2838,0.0118,0.336,1,0.8458,-0.7906,-0.9446,-0.7588,-0.7866,-0.755,-0.826,-0.7984,-0.6916,-0.6996,-0.7392,-0.743,-0.6206,-0.672,-0.6284,-0.5416,-0.3162,0.1422,0.3084,0.5612,0.8972,0.8222,0.4268,0.664,0.7628,0.7906,0.6758,0.3952,0.3004,0.193,0.6054,1,0.8714,-0.3792,-0.6984,-0.8404,-0.765,-0.8226,-0.898,-0.898,-0.6586,-0.5254,-0.5522,-0.8094,-0.6896,-0.7162,-0.6142,-0.4722,-0.2018,-0.184,0.0864,0.7782,0.898,0.6852,0.459,0.5034,0.6452,0.6452,0.4944,0.5034,0.255,0.3142,0.7666,1,0.9238,-0.3286,-0.7238,-0.6428,-0.5476,-0.8238,-0.7858,-0.7238,-0.4714,-0.6476,-0.5858,-0.6666,-0.638,-0.7142,-0.7904,-0.6762,-0.6096,-0.3952,-0.0334,0.2048,0.7858,0.6666,0.3476,0.3334,0.6142,0.838,0.5428,0.181,0.1572,0.2616,0.8512,0.9642,1,-0.3282,-0.5128,-0.8102,-0.7128,-0.7744,-0.7794,-0.9642,-0.6358,-0.5692,-0.518,-0.6358,-0.5128,-0.477,-0.5948,-0.5744,-0.6616,-0.2512,-0.1538,0.4052,0.8616,0.8308,0.6872,0.4206,0.6718,0.5026,0.0308,-0.0206,-0.2256,0.2292,0.9408,0.8274,0.9676,-0.213,-0.601,-0.4664,-0.353,-0.8222,-0.7358,-0.6982,-0.5418,-0.353,-0.353,-0.6766,-0.3154,-0.38,-0.5094,-0.2992,-0.1752,-0.0512,0.4986,1,0.9622,0.655,0.8436,0.8382,0.7196,0.2668,0.1752,-0.116,-0.0944,0.4074,1,0.7038,-0.1852,-0.5556,-0.1852,-0.2592,-0.2592,-0.7038,-0.7038,-0.037,0.1112,0.037,-0.1852,-0.5556,-0.6296,-0.4074,-0.1112,0.1112,-0.1112,0.037,-0.1852,-0.1852,0.7038,0.7038,0.1112,0.3334,0.7778,0.7038,-0.3334,-0.2592,0.037,0.381,0.8096,0.7142,0.8096,0.2858,-0.1904,0.0476,-0.0952,-0.1904,-0.8096,-0.2858,-0.0952,-0.1904,-0.1428,-0.0952,-0.0952,-0.0952,0.238,0.2858,0.381,0.8096,1,1,1,0.9524,0.762,0.9524,1,1,0.9048,0.7142,0.7142,0.0572,0.5142,1,0.8572,-0.7142,-0.7142,-0.5142,-0.6572,-0.6572,-0.7142,-0.7142,-0.6,-0.4858,-0.6,-0.4,-0.3142,-0.2,-0.2,-0.2286,-0.2858,0.1714,0.3714,0.7714,0.9142,0.8572,0.7142,0.7428,0.8286,0.9142,0.7142,0.4858,0.4572,-1,-0.947,-0.961,-0.9026,-0.6518,-0.8998,-0.8496,-0.791,-0.819,-0.8802,-0.8384,0.6212,0.7966,0.9248,0.883,0.6072,0.2924,0.0446,-0.0892,-0.142,-0.1086,-0.2646,-0.78,-0.9108,-0.936,-0.9304,-1,-1,-1,-1,-1,-1,-1,-1,-0.9112,-0.9226,-0.543,1,1,0.9528,0.4938,0.3712,-0.3598,-0.6714,0.407,0.9036,0.8584,0.8602,0.5052,0.1124,-0.1256,-0.2654,-0.2974,-0.2766,-0.3522,-0.7582,-0.864,-0.8772,-0.8696,-1,-1,-1,-1,-1,-1,-1,-1,-0.9188,-0.9734,-0.9568,0.8466,0.9666,0.54,0.54,0.4232,0.5332,-0.1034,-0.832,-0.732,-0.79,-0.792,-0.814,-0.894,-0.942,-0.954,-0.932,-0.924,-0.8328,-0.5668,-0.6,-0.8734,-0.6868,-1,-1,-1,-1,-1,-1,-1,-1,-0.2,-0.6286,1,1,1,0.2286,-0.5142,-0.3428,1,1,0.8286,-0.9714,-1,-0.6858,-0.9428,-0.8572,-0.8,-0.9142,-0.9714,-0.9714,-0.4,-0.4858,-0.8858,-0.9428,-0.8572,-1,-1,-1,-1,-1,-1,-1,-0.7658,-0.786,-0.7974,-0.7862,-0.8208,-0.7874,-0.7846,-0.7558,-0.7294,-0.663,0.7544,0.8156,0.8156,0.8496,0.8826,0.9112,0.8866,0.9538,0.9482,0.8322,-0.4934,0.1882,-0.7412,-0.3844,0.2144,0.8112,0.8016,-0.5,-0.8866,-0.7354,-0.622,-0.5276,-0.4804,-0.43,-0.3418,-0.2062,0.1212,0.222,0.556,0.644,0.5244,0.4646,0.2536,0.2662,0.4678,0.7858,0.7764,0.6818,0.7448,0.8142,0.8678,0.8866,0.937,0.9212,0.7858,1,0.937,0.707,0.6504,0.5276,-0.713,-0.4464,-0.3392,-0.3624,-0.2174,-0.1798,-0.058,0.171,0.142,0.3218,0.5798,0.7478,0.9392,0.974,0.687,0.5102,0.4898,0.9392,1,0.8318,0.6696,0.8,0.6812,0.687,0.7972,0.6812,0.6406,0.6434,0.5826,0.487,0.3826,0.1826,-0.6482,-0.3932,-0.3656,-0.2862,-0.2966,-0.3724,-0.238,-0.1242,-0.0724,0.1242,0.3966,0.6276,0.731,1,0.8932,0.6242,0.4966,0.8414,0.8206,0.7138,0.5966,0.6172,0.8034,0.7552,0.7518,0.6862,0.3552,0.4932,0.4104,0.2206,0.1518,-0.0138,1,-1,1,-1,-1,-1,-1,0.4666,-1,0.0416,0.1458,-0.0834,0.0208,-0.2084,0.0416,-0.0416,0.0416,-0.125,-0.0624,0.7292,0.875,1,0.5624,0.2708,0.0416,-0.1666,0.1042,-0.1458,-0.3542,-0.1666,-0.1042,0,0.1042,-0.4376,-0.0416,-0.125,-0.4376,-0.2292,-0.3958,-0.5416,-0.7292,'20'
0.1208,0.5854,0.681,0.6218,-0.2892,-0.713,-0.5854,-0.4168,-0.7494,-0.9044,-0.8588,-0.7722,-0.59,-0.5536,-0.6082,-0.5672,-0.3712,-0.1982,0.1344,0.3394,0.5946,0.9636,0.9316,0.8998,0.7312,0.7312,1,0.9226,0.877,0.836,0.5626,0.2346,0.2554,0.606,1,0.9048,-0.065,-0.6018,-0.4112,-0.3204,-0.7836,-0.9956,-0.7792,-0.5584,-0.5844,-0.6278,-0.5498,-0.8008,-0.5194,-0.3074,-0.065,0.1558,0.303,0.7532,0.8052,0.8918,0.6666,0.5108,0.6364,0.9048,0.9568,0.9826,0.5628,0.645,0.2814,0.6888,1,0.9038,-0.1212,-0.5882,-0.6934,-0.5882,-0.8444,-0.8948,-0.8902,-0.5882,-0.5836,-0.7894,-0.5744,-0.5194,-0.4646,-0.2494,-0.2768,-0.2632,-0.016,0.5926,0.8078,0.9862,0.318,0.318,0.3638,0.8306,0.8216,0.8306,0.4416,0.4142,0.2732,0.675,1,0.9368,-0.3138,-0.5846,-0.4898,-0.3544,-0.7336,-0.7608,-0.711,-0.5756,-0.6434,-0.5982,-0.6524,-0.5712,-0.3814,-0.4086,-0.4356,-0.255,-0.3498,0.5124,0.6388,0.7652,0.4312,0.4356,0.0158,0.5892,0.7066,0.5892,0.4628,0.201,0.302,0.849,1,0.9844,-0.5782,-0.8072,-0.5834,-0.4948,-0.8126,-0.927,-0.7188,-0.4428,-0.4428,-0.5156,-0.6928,-0.7968,-0.7656,-0.5052,-0.3542,-0.3542,-0.401,-0.0052,0.6718,0.6718,0.7552,0.5104,0.4584,0.8072,0.6458,0.4532,0.5,0.3438,0.337,0.973,0.8006,0.8814,-0.3478,-0.5796,-0.5742,-0.4878,-0.4824,-0.7682,-0.8544,-0.6496,-0.601,-0.5902,-0.407,-0.4232,-0.725,-0.5742,-0.8274,-0.4556,-0.31,0.5472,0.6928,1,0.8598,0.6874,0.4664,0.5202,0.8222,0.6928,0.3262,0.159,-0.0824,0.853,0.5118,0.1058,-0.7764,-0.7764,-0.4058,-0.4118,-0.3882,-0.6648,-0.5176,-0.4764,-0.447,-0.5648,-0.3236,-0.2412,-0.653,-0.4176,-0.6118,-0.6236,-0.1588,0.247,0.9236,1,0.5824,0.3942,0.6412,0.447,0.153,-0.0352,-0.0352,0.0294,0.4286,0.762,0.619,0.1428,0,-0.238,0.0952,0,-0.8096,-0.1904,-0.0952,0,0,-0.2858,0.0476,-0.0476,0.0476,0.2858,0.381,0.3334,0.5238,0.8096,1,0.8572,0.6666,0.9048,0.8572,0.762,0.9524,0.6666,0.0476,0.238,0.1516,0.5152,0.5758,0.697,-0.0304,-0.394,-0.3334,-0.2122,-0.394,-0.8182,-0.8788,-0.5758,-0.394,-0.394,-0.3334,-0.3334,-0.1516,0.091,0.2122,0.5758,0.5758,1,0.8788,0.6364,0.7576,0.697,0.697,0.8788,0.8182,0.697,0.6364,0.394,0.3824,0.7058,1,0.9412,0.0294,-0.5294,-0.4118,-0.3824,-0.8236,-0.7352,-0.7648,-0.2648,-0.2352,-0.3236,-0.3824,-0.3824,-0.2352,0.0588,-0.0882,-0.2648,0.0294,0.6764,0.5882,0.8824,0.6176,0.5294,0.647,0.853,0.9412,0.9118,0.2352,0.2352,-1,-1,-1,-0.948,-0.9558,-0.3594,-0.7656,-0.7838,-0.7838,-0.7838,-0.836,0.7318,0.9506,0.7682,0.6094,0.4454,0.2812,0.0678,-0.0546,-0.1406,-0.2604,-0.5808,-0.9348,-0.9402,-0.9348,-0.9454,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9214,-0.9308,0.9512,0.6104,0.48,0.2742,0.0558,-0.4816,0.5396,0.813,0.5554,0.3354,0.1484,-0.0322,-0.2018,-0.3072,-0.3858,-0.4454,-0.681,-0.8932,-0.8868,-0.8916,-0.9168,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9134,-0.9668,0.4332,0.95,0.6232,0.6966,0.4966,0.3132,-0.6556,-0.6712,-0.8734,-0.889,-0.912,-0.914,-0.914,-0.952,-0.884,-0.904,-0.836,-0.78,-0.8134,-0.8134,-0.8534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,1,1,1,-0.6286,-0.4858,1,1,0.7142,-0.8858,-0.8,-0.9714,-0.7714,-0.9714,-1,-0.9142,-0.9428,-0.8,-0.6572,-0.8286,-0.8572,-0.9714,0.0572,-1,-1,-1,-1,-1,-1,-1,-0.5456,-0.5506,-0.5716,-0.584,-0.5668,-0.5722,-0.6324,-0.702,-0.7048,-0.6526,0.9864,0.976,0.9812,0.9674,0.9772,0.9802,0.9698,0.9222,0.8726,0.7382,-0.5334,0.1294,-0.568,-0.4014,0.4926,0.9842,0.923,1,-0.7234,-0.668,-0.6086,-0.4822,-0.3478,-0.3478,-0.3478,-0.332,-0.0592,0.091,0.4664,0.3992,0.3914,0.3716,0.1976,0.1462,0.3202,0.4664,0.6404,0.5612,0.5376,0.6916,0.8024,0.8222,1,0.921,0.7748,0.7748,0.5968,0.6246,0.3596,0.1186,-0.637,-0.363,-0.2534,-0.2364,-0.0856,-0.0172,-0.024,-0.0514,0.2158,0.2398,0.5308,0.6986,0.7568,0.8938,0.548,0.435,0.5068,0.8322,1,0.798,0.6404,0.887,0.8732,0.9486,0.8184,0.911,0.7158,0.7706,0.7226,0.5582,0.476,0.1336,-0.3848,-0.2928,-0.2402,-0.1184,-0.2796,-0.1974,-0.1152,0.0164,0.079,0.2796,0.352,0.6514,0.7828,1,0.954,0.6316,0.454,0.7204,0.704,0.5624,0.75,0.694,0.5922,0.75,0.8848,0.5132,0.5098,0.4902,0.4704,0.3322,0.0624,-0.0756,1,-1,-1,1,-1,-1,-1,0.2334,-1,-0.1588,0.1962,0.1962,0.3458,0.4766,0.3084,0.1402,0.458,0.4206,0.4954,0.5328,0.9252,0.7758,0.701,0.57,0.5888,0.0094,0.8318,0.6822,0.57,1,0.7196,0.757,0.57,0.3644,0.6636,0.5888,0.271,0.4018,0.1214,-0.2524,-0.6074,'20'
0.3334,0.7326,0.8798,0.7868,-0.345,-0.845,-0.6086,-0.5698,-0.907,-0.9186,-0.8644,-0.593,-0.531,-0.6162,-0.5736,-0.6202,-0.4962,-0.4186,0.1938,0.531,0.6318,0.3372,0.1434,0.1976,0.0116,0.1124,0.19,0.4458,0.6086,0.7636,1,0.7016,0.1084,0.472,0.9686,0.8742,-0.0454,-0.6048,-0.5104,-0.472,-0.8076,-0.7272,-0.7238,-0.6608,-0.5944,-0.6784,-0.6888,-0.1574,-0.3322,0.007,0.5314,0.944,1,0.6398,0.7728,0.7832,0.5734,0.3356,0.3146,0.4336,0.1818,0.1748,0.2238,0.3986,-0.0382,0.3562,1,0.827,0.5292,-0.4768,-0.2274,-0.2636,-0.6418,-0.5574,-0.5614,-0.4446,-0.3522,0.1992,0.6096,0.8552,0.4286,0.4164,0.5774,0.4124,0.5976,0.7826,0.2516,-0.0382,-0.5372,-0.509,-0.7344,-0.831,-0.6982,-0.5412,-0.6498,-0.4044,0.108,0.4548,1,0.8548,0.43,-0.4266,-0.108,-0.0974,-0.2956,-0.3238,-0.1362,0.0868,0.3416,0.292,0.331,-0.2036,-0.3664,-0.508,-0.2814,-0.2992,-0.1646,0.0194,-0.0408,-0.1576,-0.5716,-0.685,-0.8336,-0.9434,-0.8762,-0.7238,-0.7238,-0.7734,0.1134,0.4844,1,0.9146,0.3136,-0.248,-0.1034,0.0016,-0.0968,0.1134,0.1232,-0.1658,-0.3498,-0.422,-0.4318,-0.6388,-0.6256,-0.642,-0.895,-0.885,-0.5402,-0.1166,-0.1856,-0.4418,-0.5468,-0.573,-0.8326,-0.8588,-0.8194,-0.7602,-0.8686,-0.6552,0.064,0.5502,1,1,0.0274,-0.287,-0.4296,-0.2432,-0.0458,0.0092,-0.4882,-0.6234,-0.766,-0.671,-0.7842,-0.8318,-0.7586,-0.7696,-0.9232,-0.6966,-0.5978,-0.8318,-0.6308,-0.5832,-0.6344,-0.7258,-0.7586,-0.7002,-0.7478,-0.9488,-0.916,-0.777,0.159,1,0.7154,0.569,-0.205,-0.385,-0.1882,0.3934,0.657,0.1842,-0.41,-0.5272,-0.2426,-0.3222,-0.4728,-0.5564,-0.6778,-0.7406,-0.8034,-0.82,-0.5188,-0.4518,-0.6528,-0.682,-0.5062,-0.4436,-0.6402,-0.6652,-0.6486,-0.7322,-0.657,-0.6486,0.5882,0.9412,1,0.8236,0.1176,-0.1764,0.1176,0.1176,-0.0588,0.1176,-0.1176,-0.0588,0.1176,0.0588,-0.1764,0.1176,0,0,0.5294,0.4706,0.7058,0.1764,0.2352,0.4118,0,0.4706,0.5882,0.7058,0.4706,0.8236,1,0.8236,0.4884,0.7674,1,0.8604,0.0698,0.1162,-0.0232,-0.2094,0.0232,-0.628,-0.2094,-0.2094,0.0232,0.1162,-0.0698,-0.0232,0.2094,0.3024,0.4884,0.5814,0.4418,0.5814,0.5348,0.2094,0.3024,0.3024,0.0232,0.3024,0.721,0.814,0.6744,0.721,0,0.4444,0.8612,0.7778,0.1112,-0.4722,-0.3888,-0.3888,-0.5834,-0.5834,-0.6666,-0.4722,-0.3612,-0.4722,-0.2778,-0.0278,-0.1112,0.25,0.5834,0.8888,0.8888,0.8334,1,0.9444,0.25,0.1112,-0.0556,0,-0.1112,-0.0278,0.0834,0.25,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,-0.9684,-0.7736,-0.3508,-0.0498,0.7656,0.7546,0.449,0.278,0.1338,0.0118,-0.11,-0.3222,-0.5614,-0.8258,-0.9462,-0.9684,-0.9684,-0.9746,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9378,-0.9366,-0.8098,-0.3876,-0.1148,0.6062,0.691,0.2802,0.0606,-0.108,-0.1862,-0.2802,-0.4364,-0.6162,-0.8348,-0.8834,-0.8754,-0.897,-0.9388,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.9134,-0.8568,-0.885,-0.8584,-0.805,-0.885,-0.8684,-0.925,-0.895,-0.8768,-0.8768,-0.8694,-0.9154,-0.8068,-0.64,-0.61,-0.6834,-0.9134,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,-0.8286,1,1,-0.5428,-0.1142,-0.4,-0.5714,-0.5428,-0.8858,-0.8,-0.9428,-0.8858,-0.7714,-0.7142,-0.5714,-0.8,-0.7428,-0.2,-1,-1,-1,-1,-1,-1,-0.7656,-0.7528,-0.7732,-0.812,-0.809,-0.818,-0.7854,-0.643,-0.4416,-0.3146,0.349,0.37,0.408,0.4722,0.525,0.5638,0.597,0.4092,-0.0448,-0.2296,-0.48,0.4588,-0.794,-0.5484,-0.4408,-0.4012,-0.2802,-0.7916,0.0152,0.1212,0.4546,0.7878,0.7424,0.9242,1,0.9546,0.8182,0.6516,0.7272,0.606,0.6818,0.6212,0.4242,0.7576,0.4696,0.3788,0.4696,0.5304,0.606,0.6364,0.7122,0.409,0.303,0.5,0.394,0.1212,0.2728,0.394,-0.0152,-0.3636,0.083,0.083,0.483,0.3756,0.3854,0.6878,0.8634,0.7268,0.5122,0.2586,0.5318,0.3658,0.6196,0.4732,0.6292,0.717,0.3464,0.2976,0.522,0.9024,0.6196,0.7464,1,0.5708,0.4048,0.5122,0.3854,0.4048,0.356,0.1122,-0.0244,-0.4048,0.3688,0.4044,0.2088,0.2622,0.04,0.1912,0.3866,0.5912,0.4312,0.4044,0.5734,0.5378,0.5734,0.2622,0.3512,0.6088,0.4222,0.5556,0.9466,1,0.9112,0.8134,0.9378,0.4222,0.3956,0.3244,0.1644,0.36,0.3866,0.3512,0.12,-0.1378,-0.9638,1,-1,-1,-1,-1,-1,-1,1,-0.3832,-0.2524,-0.2336,0.0468,0.9814,1,0.4954,0.6074,0.701,0.4206,0.2524,0.215,0.2898,-0.0468,0.0654,0.0842,0.2336,0.1402,0.028,0.2898,0.1962,-0.0468,-0.0468,-0.0468,0.1402,0.0842,-0.2336,-0.3644,-0.0842,-0.0094,-0.458,-0.813,'21'
0.1962,0.6502,1,0.9574,0.0308,-0.669,-0.773,-0.6454,-0.8062,-0.9244,-0.877,-0.6076,-0.74,-0.6738,-0.5934,-0.2766,-0.1394,0.2056,0.7872,0.8156,0.877,0.8392,0.7352,0.4042,0.007,-0.48,-0.4042,-0.6218,-0.48,-0.409,-0.3948,-0.3238,0.1146,0.4516,1,0.939,0.1936,-0.2868,-0.3262,-0.2402,-0.7204,-0.6774,-0.5986,-0.172,-0.3082,-0.1254,0.2508,0.1398,0.1972,0.233,0.0072,-0.025,0.1578,0.1506,0.104,-0.4122,-0.509,-0.4516,-0.7132,-0.9212,-0.896,-0.8422,-0.6094,-0.4802,-0.03,0.2946,1,0.9294,0.104,-0.2592,-0.3404,-0.224,-0.4004,-0.4638,-0.1888,0.0934,0.3756,0.4356,-0.1604,-0.3544,-0.3932,-0.5132,-0.3686,-0.291,-0.1922,-0.1182,-0.0512,-0.6472,-0.672,-0.7566,-0.7072,-0.8096,-0.88,-0.8202,-0.8306,-0.6402,-0.0676,0.2702,1,0.9594,-0.0844,-0.1722,-0.2636,-0.196,0.1622,0.0574,-0.196,-0.3176,-0.4222,-0.544,-0.7162,-0.7466,-0.902,-0.75,-0.804,-0.8514,-0.5338,-0.6048,-0.4392,-0.7196,-0.6926,-0.696,-0.8446,-0.875,-0.9696,-0.9494,-0.7162,-0.6622,0.0346,0.3836,1,0.9842,-0.1446,0.0692,0.0566,0.1792,0.3994,0.3522,-0.739,-0.7012,-0.6762,-0.6698,-0.629,-0.7012,-0.6666,-0.6636,-0.868,-0.7956,-0.6762,-0.6636,-0.5252,-0.5346,-0.6038,-0.6416,-0.7736,-0.6636,-0.6918,-0.6038,-0.6258,-0.6572,-0.0756,0.3814,0.9554,1,0.0034,0.103,0.2164,-0.1374,-0.3574,-0.4054,-0.7664,-0.4502,-0.4846,-0.7972,-0.732,-0.7458,-0.6152,-0.5808,-0.9244,-0.7216,-0.7216,-0.8866,-0.7698,-0.6564,-0.6358,-0.7458,-0.8282,-0.9518,-0.8282,-0.7044,-0.787,-0.6392,0.0962,1,0.774,0.6586,0.0818,-0.0384,0.8174,0.6876,-0.3028,-0.6058,-0.4808,-0.2068,-0.25,-0.6394,-0.6154,-0.4664,-0.4568,-0.6538,-0.5384,-0.6538,-0.4086,-0.3366,-0.5048,-0.6876,-0.5288,-0.649,-0.7692,-0.7356,-0.7308,-0.5576,-0.6346,-0.4326,0.4872,0.8462,0.641,0.4872,0.2308,-0.641,-0.7436,-0.1794,-0.077,-0.2308,-0.1794,0.2308,0.1794,-0.1282,-0.4358,-0.0256,0.1794,0.3846,0.5384,0.7948,1,0.8974,0.8974,0.9488,0.641,0.1794,0.0256,0.1794,0.1794,0.0256,0.0256,0.282,0.2,0.6,0.75,0.65,0.1,-0.15,-0.15,-0.05,-0.5,-0.55,-0.95,-0.55,-0.35,-0.15,-0.2,-0.1,-0.25,-0.05,0.55,0.8,1,0.7,0.5,0.5,0.3,0.15,-0.1,-0.3,-0.4,-0.45,-0.15,0.05,0.0864,0.358,1,0.9506,0.1358,-0.0618,-0.2592,-0.0864,-0.0124,-0.1112,0.0618,0.284,0.1604,-0.0124,-0.358,-0.4568,-0.5062,-0.432,-0.4074,-0.2346,-0.358,-0.3828,-0.1852,-0.5308,-0.4814,-0.358,-0.6296,-0.753,-0.5802,-0.7284,-0.6296,-0.4074,-1,-1,-1,-1,-1,-1,-0.9402,-0.8534,-0.8136,-0.7666,-0.4408,0.267,0.6162,0.7014,0.8788,0.982,0.8516,0.6272,0.4606,0.2488,-0.1494,-0.5186,-0.8444,-0.9402,-0.9584,-0.9584,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9088,-0.816,-0.7342,-0.595,-0.3972,0.2906,0.6506,0.6538,0.8316,0.98,0.8424,0.6662,0.374,0.2024,-0.184,-0.5302,-0.799,-0.8022,-0.7898,-0.8594,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8534,-0.8234,-0.4934,-0.4168,-0.76,-0.782,-0.852,-0.894,-0.898,-0.894,-0.8946,-0.8954,-0.8972,-0.8954,-0.899,-0.9626,-0.866,-0.736,-0.6594,-0.776,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6858,0,0.0858,-0.5142,0.7714,0.5714,-0.6572,-0.7428,-0.8,-0.7714,-0.6858,-0.8,-1,-0.8858,-0.9428,-0.7714,-0.6286,-0.8,-0.9428,-0.6858,-1,-1,-1,-1,-1,-1,-1,-0.804,-0.7806,-0.749,-0.7428,-0.7192,-0.6626,-0.5788,-0.488,-0.3654,-0.0608,0.247,0.2306,0.147,0.066,-0.0438,-0.1456,-0.2894,-0.4852,-0.5772,-0.4624,-0.5334,0.247,-0.3432,-0.1886,0.2272,0.4684,0.612,-0.9,0.1428,0.102,-0.4014,-0.1972,-0.2244,-0.2518,-0.1972,-0.3606,-0.102,-0.0204,-0.0748,0.0068,0.3062,0.5102,0.3878,0.4014,0.4422,0.7006,0.5782,0.9592,1,0.5238,0.5374,0.6462,0.5374,0.1428,0.238,0.3878,0.3062,0.0748,0.0068,-0.1972,0.4308,0.4616,-0.1538,0.123,-0.0616,-0.123,-0.1692,0.0154,0.0154,0.1846,0.1384,0.1076,0.5538,0.6,0.477,0.5538,0.4616,1,0.9538,0.923,0.923,0.5384,0.5692,0.723,0.6308,0.2924,0.2616,0.2154,0.3846,0.3538,0.277,-0.0462,0.9574,1,0.1064,-0.2056,-0.0638,-0.078,0.2482,-0.2908,0.078,0.1632,0.461,0.8156,0.7446,0.5886,0.546,0.234,0.6312,0.9148,0.7164,0.7446,0.5744,0.3476,0.4184,0.4042,0.305,0.2908,0.7304,0.7872,0.6596,0.6028,0.4184,0.1774,-0.4652,-1,-1,1,-0.2,0.2,-1,-0.6666,-1,-0.246,-0.6886,-0.0492,0.295,1,0.5738,0.377,0.164,0.1804,0.2132,0.3606,0.2622,0.164,0.0984,0.164,-0.0164,0.1148,-0.0328,-0.1148,-0.1476,-0.0656,-0.1968,-0.0492,0.082,-0.0984,-0.0984,0.0164,-0.1312,-0.0984,-0.1148,-0.1312,-0.4918,'21'
0.0976,0.5078,0.7032,0.711,-0.3164,-0.5586,-0.621,-0.504,-0.6758,-0.8124,-0.6016,-0.6484,-0.629,-0.3438,-0.4726,-0.4922,-0.0508,0.0938,0.2304,0.5156,0.7226,0.8398,0.871,0.8828,1,0.8126,0.504,0.3672,0.1446,0.164,0.2226,0.1172,0.1086,0.4534,0.8798,0.8294,-0.3644,-0.6706,-0.7054,-0.5504,-0.8178,-0.872,-0.7364,-0.7636,-0.5388,-0.3876,-0.4922,-0.5388,-0.3914,-0.0736,0.1628,0.2946,0.5658,0.8528,1,0.6202,0.6086,0.7132,0.8838,0.9108,0.8682,0.686,0.5698,0.3992,0.1714,0.518,1,0.9044,-0.3864,-0.6136,-0.7052,-0.6772,-0.6254,-0.8924,-0.8964,-0.3984,-0.3386,-0.6216,-0.5338,-0.6096,-0.5896,-0.3944,-0.1434,0.1554,0.3784,0.5378,0.741,0.8726,0.5658,0.4702,0.6574,0.7968,0.7968,0.9004,0.5738,0.3746,0.2068,0.5608,1,0.936,-0.4712,-0.7142,-0.6076,-0.5182,-0.7142,-0.7398,-0.8806,-0.5438,-0.5096,-0.6632,-0.6204,-0.6632,-0.5352,-0.4372,-0.4414,-0.2538,0.0832,0.0448,0.4882,0.8892,0.6332,0.4456,0.4798,0.2794,0.501,0.693,0.4626,0.1982,0.123,0.5546,1,0.9444,-0.6288,-0.768,-0.6658,-0.6334,-0.6194,-0.7262,-0.884,-0.7308,-0.8004,-0.9954,-0.6798,-0.6474,-0.6844,-0.6102,-0.6426,-0.6148,-0.0024,-0.0534,0.2714,0.2714,0.2576,0.2112,0.341,0.6056,0.7912,0.522,0.4618,0.2482,0.1536,0.6666,0.9736,1,-0.3464,-0.6272,-0.522,-0.6798,-0.6272,-0.6008,-0.8334,-0.5,-0.3378,-0.4254,-0.522,-0.7106,-0.5,-0.4956,-0.6536,-0.2018,-0.1052,0.1184,0.8948,1,0.6622,0.4298,0.7544,0.5614,0.5878,0.772,0.5132,0.0176,0.1456,0.8592,0.7912,0.9514,0.0098,-0.6408,-0.602,-0.5874,-0.699,-0.9612,-0.7864,-0.7524,-0.67,-0.7912,-0.8446,-0.7234,-0.6166,-0.5146,-0.597,-0.4224,-0.0486,0.6504,1,0.9902,0.8156,0.5436,0.7622,0.7038,0.3834,0.034,0.0776,-0.0874,0.2,0.55,0.35,0.25,0,-0.25,-0.25,-0.4,-0.55,-0.35,-0.15,-0.1,-0.25,-0.05,-0.05,-0.3,0.1,0.2,0.3,0.55,0.45,0.55,1,0.9,0.6,-0.4,0.45,0.4,-0.1,0.1,0.2,0.05,0.05,0.35,0.55,0.6,-0.1,-0.3,-0.55,-0.5,-0.65,-0.6,-0.45,-0.6,-0.4,-0.2,-0.3,-0.2,0.05,0.05,0.5,0.4,0.55,0.45,0.6,1,1,0.6,-0.35,-0.35,0.05,0.15,0.05,0,0.1594,0.5362,0.942,0.855,-0.4782,-0.5652,-0.7392,-0.7972,-0.4782,-0.5652,-0.5942,-0.3624,-0.3914,-0.5072,-0.3914,-0.6522,-0.6812,-0.1884,0.0434,0.0724,0.2754,0.826,0.855,0.6522,0.6522,0.5942,0.6232,0.971,1,0.7972,0.4782,0.5362,-0.9608,-0.9752,-0.8494,-0.3422,-0.3752,-0.4082,-0.4124,-0.4824,-0.6124,-0.7382,-0.6454,0.5752,0.9402,0.5856,0.3238,0.1752,0.0392,-0.0824,-0.1134,-0.2042,-0.235,-0.3402,-0.497,-0.8042,-0.9216,-0.9382,-0.9382,-0.9506,-0.9506,-0.9546,-1,-1,-1,-0.9422,-0.9378,-0.8598,-0.4914,-0.4972,-0.4942,-0.5188,-0.5664,-0.6618,-0.7414,-0.643,0.4898,0.9118,0.6734,0.4076,0.156,0,-0.146,-0.1778,-0.2934,-0.292,-0.4248,-0.542,-0.7774,-0.8628,-0.8786,-0.8888,-0.906,-0.9176,-0.932,-1,-1,-1,-0.9528,-0.9734,-0.88,-0.8934,-0.9,-0.89,-0.89,-0.9134,-0.9,-0.8634,-0.6368,-0.6624,-0.6334,-0.6356,-0.78,-0.768,-0.85,-0.844,-0.85,-0.84,-0.874,-0.776,-0.7734,-0.5168,-0.2668,-0.7068,-0.5868,-0.6334,-0.7734,-0.94,-1,-1,-1,-0.5142,-0.8572,-0.1142,-0.1714,-0.8286,-0.8858,-0.9714,-0.8,-0.6,-0.4858,1,1,-0.6858,-0.8286,-0.8286,-0.8572,-0.9428,-0.9428,-0.9428,-0.8572,-0.8572,-0.6286,-0.6,-0.6572,-0.7428,-0.8858,-0.9714,-0.9714,-0.9428,-0.8286,-1,-1,-1,-0.7808,-0.7624,-0.7772,-0.7468,-0.743,-0.7518,-0.7676,-0.7996,-0.777,-0.6954,0.6844,0.692,0.7336,0.7346,0.764,0.8072,0.8422,0.8468,0.8296,0.7676,-0.52,0.1412,-0.646,-0.211,0.4032,0.8368,0.9654,-0.6416,0.2422,0.579,0.2736,0.7894,0.6526,0.9052,0.9,0.6948,0.821,0.4158,0.979,0.7158,0.7578,0.6526,0.421,0.5106,0.4632,0.4526,0.4578,0.1894,0.7,0.8736,0.7422,0.5158,0.3684,0.6526,0.5578,0.3422,0,0.2316,-0.2526,-0.6474,0.942,1,0.655,0.2882,0.2448,0.0108,0.1146,0.5634,0.6308,0.4934,0.6044,0.5802,0.3028,0.0664,0.0566,0.0302,0.216,0.105,0.0592,0.0398,0.4138,0.5464,-0.0156,0.0808,0.0302,-0.0952,-0.0012,-0.064,-0.1652,-0.2908,-0.3438,-0.6308,0.954,0.9376,0.0526,0.1514,0.0066,0.0592,0.1546,0.2664,0.5132,0.6546,0.5986,0.8618,0.6546,0.5032,0.3486,0.5756,0.8684,0.7006,0.6118,0.625,0.9178,1,0.5922,0.931,0.7796,0.6974,0.5526,0.569,0.6282,0.296,0.2928,0.0198,-0.9914,1,-1,-1,-1,1,-0.4,-1,-1,-0.4846,-0.134,-0.031,-0.0722,-0.2372,-0.2164,-0.031,-0.1134,0.1134,0.2578,1,0.4432,0.6494,0.1752,0.0928,0.031,0.1134,0.0928,0.2372,0.0928,0.031,0.0928,0.3814,0.5876,0.4846,0.5876,-0.1546,-0.3608,-0.2784,-0.5052,-0.3608,-0.4846,'22'
0.2342,0.6508,1,0.9842,-0.3096,-0.512,-0.5358,-0.6588,-0.7342,-0.7104,-0.9048,-0.504,-0.504,-0.3254,-0.1826,-0.115,-0.3412,0.135,0.5596,0.9206,0.7142,0.8174,0.6508,0.623,0.7142,0.7222,0.5874,0.2936,0,0.0874,0.1548,0.1112,0.0136,0.3614,1,0.9222,-0.429,-0.5676,-0.6824,-0.6994,-0.6926,-0.7872,-0.8006,-0.7906,-0.7804,-0.6824,-0.402,-0.4696,-0.3074,-0.1014,0.125,0.2602,0.5878,0.6656,0.6722,0.5136,0.473,0.5102,0.6588,0.4932,0.3986,0.2162,0.0608,0.0642,-0.056,0.2876,1,0.906,-0.4142,-0.736,-0.6854,-0.6022,-0.765,-0.9096,-0.9566,-0.8336,-0.7722,-0.9024,-0.7288,-0.5444,-0.537,-0.3164,-0.0272,0.0524,0.284,0.6854,0.6564,0.4068,0.5082,0.4466,0.5732,0.9024,0.8192,0.4394,0.3236,0.1934,0.0642,0.4606,0.9854,0.9266,-0.5046,-0.666,-0.7322,-0.6146,-0.5926,-0.7064,-0.9854,-0.912,-0.7724,-0.7028,-0.6036,-0.6698,-0.6294,-0.4458,-0.545,-0.244,0.156,0.9302,1,0.3724,0.0972,0.1412,0.0788,0.7248,0.7432,0.8348,0.6,0.5192,0.1096,0.4542,1,0.9318,-0.2926,-0.6624,-0.702,-0.6338,-0.7522,-0.824,-0.6912,-0.7164,-0.6266,-0.623,-0.6446,-0.6552,-0.5942,-0.5476,-0.3572,-0.2926,-0.0054,0.422,0.4758,0.5764,0.3142,0.325,0.2746,0.5224,0.5548,0.5692,0.246,0.1274,0.185,0.7006,1,0.975,-0.235,-0.5426,-0.659,-0.8628,-0.946,-0.896,-0.7672,-0.58,-0.501,-0.4886,-0.7838,-0.6216,-0.5884,-0.6424,-0.605,-0.4096,-0.1186,0.21,0.6092,0.5842,0.2724,0.1268,0.3638,0.3596,0.3888,0.1976,-0.0894,-0.1518,0.3036,1,0.7036,0.7882,-0.313,-0.5342,-0.5812,-0.4494,-0.8024,-0.8918,-0.6988,-0.3976,-0.393,-0.7036,-0.6188,-0.5624,-0.4542,-0.3836,-0.407,-0.1906,0.1952,0.7224,0.8024,0.7458,0.567,0.5294,0.487,0.5106,0.1576,-0.0164,-0.0258,-0.1058,0.2682,0.561,0.6098,0.6098,0.2196,-0.4634,-0.4634,-0.6098,-0.3658,-0.1708,-0.2196,0.0244,-0.0244,-0.2682,-0.317,-0.0244,-0.0244,0.4146,0.8048,1,0.9512,0.561,0.7074,0.9024,0.8536,0.4634,0.4634,0.2682,-0.0244,0.122,0.1708,0.2682,0.2778,0.7222,0.8888,0.8334,0.0556,-0.3334,-0.4444,-0.5556,-0.6112,-0.5,-0.3888,-0.4444,-0.1666,-0.0556,0,0.0556,0.2222,0.4444,0.8888,1,0.8888,0.2778,0.0556,0.6112,0.6112,0.3888,-0.2778,-0.1112,-0.1666,0.3334,0.3888,0.2778,0.155,0.493,0.9718,0.9436,-0.3802,-0.5212,-0.5212,-0.6338,-0.5492,-0.6056,-0.9154,-0.7746,-0.2394,-0.2394,-0.3522,-0.4648,-0.5774,-0.2112,-0.324,-0.1268,0.2958,0.9718,1,0.493,0.3522,0.3802,0.0986,0.7184,0.7464,0.8592,0.5774,0.6338,-1,-1,-1,-1,-0.9516,-0.9516,-0.9214,-0.9396,-0.9456,-0.9336,-0.4724,0.565,0.9818,0.9214,0.7382,0.571,0.3576,0.1842,0.0454,-0.2346,-0.3978,-0.428,-0.728,-0.869,-0.9436,-0.9578,-0.9678,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.927,-0.9256,-0.8782,-0.8868,-0.8338,-0.808,-0.5286,0.4098,0.8912,0.8482,0.7536,0.626,0.328,0.1074,-0.0588,-0.3238,-0.4786,-0.4886,-0.722,-0.8124,-0.871,-0.8998,-0.9126,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9434,-0.91,-0.56,-0.6734,-0.4334,-0.15,-0.66,-0.6838,-0.82,-0.7674,-0.8274,-0.7928,-0.7328,-0.8474,-0.851,-0.9238,-0.9164,-0.9128,-0.64,-0.4734,-0.52,-0.7868,-0.7334,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,-0.3428,-0.1714,-0.8858,-0.6858,-0.7142,0.0286,0.0286,-0.5142,-0.9428,-0.9142,-0.8572,-0.8286,-0.9142,-0.8858,-0.8572,-0.9428,-0.5428,-0.6572,-0.4286,-0.7142,-0.8,-0.8,-1,-1,-1,-1,-1,-1,-0.8998,-0.9022,-0.8622,-0.8562,-0.8446,-0.794,-0.811,-0.7778,-0.746,-0.6956,0.5982,0.6126,0.6282,0.647,0.69,0.7308,0.7624,0.7778,0.833,0.747,-0.52,0.3058,-0.4284,-0.1962,0.1734,0.6332,0.7852,-1,-0.0074,0.0374,0.1418,0.4328,0.2388,0.2612,0.2986,0.7014,0.8656,0.806,0.6716,0.709,0.7538,0.6268,0.6716,0.8284,0.9926,0.7612,0.888,0.9926,0.8732,1,0.7314,0.7238,0.7762,0.5448,0.5672,0.3508,0.3956,0.3656,0.0896,-0.2612,-0.4296,-0.1926,0.0296,0.2666,0.1408,0.0666,0.2518,0.2666,0.726,0.8666,0.7704,0.8962,0.6518,0.4666,0.5112,0.874,1,0.6074,0.963,0.8222,0.726,0.874,0.7334,0.9852,0.8962,0.763,0.7778,0.563,0.4518,0.5926,0.163,-0.2074,0.5432,0.6056,-0.1558,-0.0312,0.038,-0.0796,0.0034,0.1972,0.6956,0.9308,0.8062,0.8616,0.7094,0.557,0.2456,0.7024,1,0.8478,0.557,0.5502,0.7508,0.6124,0.8132,0.834,0.564,0.4878,0.2318,0.481,0.3426,0.0034,-0.2318,-0.5086,-0.9512,-1,-1,1,-0.6,-1,-0.4,-0.1,-1,-0.2746,-0.1764,-0.2746,-0.0588,0.0588,0.196,-0.196,-0.196,0.4706,0.6862,0.7844,0.5686,0.8236,0.4314,0.1176,0.098,0.2352,0.5686,0.451,-0.0196,0.7648,1,0.6666,0.2352,0.6666,0.6078,0.7058,0.549,0.3334,-0.2746,-0.1176,-0.549,'22'
0.0828,0.6348,0.9958,1,0.9576,0.6178,0.605,0.2824,0.5712,0.5754,0.3334,0.397,0.4098,-0.2356,-0.4862,-0.4862,-0.792,-0.6986,-0.7538,-0.7368,-0.533,-0.499,-0.4182,-0.2952,0.0786,0.087,-0.206,-0.639,-0.4608,-0.6136,-0.7792,-0.673,-0.0336,0.3862,1,0.9486,-0.0178,-0.1446,-0.208,-0.596,-0.7782,-0.81,-0.8772,-0.105,-0.0892,-0.196,-0.3782,-0.2872,-0.4138,0.2554,0.3306,0.2118,0.0416,-0.002,0.291,0.192,0.2118,-0.2316,-0.4258,-0.798,-0.8218,-0.8496,-0.699,-0.7306,0.1072,0.4892,1,0.9108,-0.625,-0.6036,-0.7822,-0.9,-0.95,-0.9214,-0.9178,-0.5572,-0.6036,-0.8392,-0.7572,-0.6036,-0.5428,-0.125,-0.2072,0.075,0.4178,0.8178,0.8358,0.775,0.7142,0.6858,-0.0786,0.0928,0.0642,-0.1358,-0.2072,-0.2608,0.0756,0.4836,1,0.9902,-0.2632,-0.3092,-0.306,-0.5296,-0.8026,-0.7764,-0.9244,-0.556,-0.4672,-0.3948,-0.523,-0.4868,-0.352,0.4374,0.4704,0.648,0.5888,0.569,0.5756,0.546,0.4506,0.2138,0.1282,-0.2138,-0.2204,-0.273,-0.2336,-0.1776,-0.0832,0.3982,0.9434,1,-0.0654,-0.1292,-0.023,-0.3132,-0.4548,-0.6496,-0.8408,-0.2566,0.03,0.3346,0.384,0.1186,-0.0266,0.0266,-0.5044,-0.1008,0.0938,0.2602,0.3098,-0.2744,-0.6708,-0.8408,-0.83,-0.7982,-0.7346,-0.7592,-0.7664,-0.7026,0.0274,0.5904,0.8668,1,0.2594,-0.3856,-0.0854,-0.3482,-0.3038,-0.4096,-0.2628,0.0716,0.075,0.0478,-0.4608,-0.57,-0.6518,-0.6894,-0.7202,-0.9692,-0.5666,-0.4266,-0.116,-0.1262,-0.7064,-0.802,-0.7748,-0.8532,-0.8806,-0.7098,-0.8122,-0.7406,0.1334,1,0.7946,0.5646,0.1294,-0.384,-0.577,-0.4496,-0.0718,0.002,0.3512,0.2566,0.0308,-0.2526,-0.4374,-0.692,-0.7412,-0.5728,-0.655,-0.7372,-0.655,-0.8234,-0.4456,-0.2074,-0.2444,-0.4456,-0.5894,-0.696,-0.696,-0.7946,-0.7208,-0.655,0.4884,1,0.8604,0.721,0.3488,0.3954,0.4884,0.3954,0.4418,0.6744,0.628,0.4418,0.3488,-0.0698,0.0698,0.0698,-0.0698,-0.0698,-0.1628,0.0232,0.2558,0.0698,-0.4418,0.3024,0.5348,0.4884,0.3488,0.3488,0.2094,0.3954,0.3024,0.0698,-0.0344,0.5862,0.931,1,0.862,0.862,0.7242,0.7242,0.7932,0.7242,0.7932,0.1034,-0.1034,-0.3104,-0.862,-0.4482,-0.3794,-0.5172,-0.5862,-0.5862,-0.6552,-0.7242,-0.3104,-0.2414,0.0344,0.1724,-0.1724,-0.2414,-0.3104,-0.5862,-0.6552,-0.6552,0.114,0.5696,1,1,0.114,0.0886,0.1392,-0.0632,-0.2912,-0.2406,-0.7216,-0.3164,-0.2152,0.114,0.0126,0.0126,0.443,0.7468,0.7468,0.6456,0.6962,0.8734,0.6202,0.114,0.0632,-0.114,-0.0886,-0.2912,-0.1898,-0.1392,-0.367,-0.0632,-0.9274,-0.5706,0.5058,1,1,1,1,0.9522,-0.7424,-0.9446,-0.8492,0.7652,0.8416,0.8798,0.523,0.3912,0.7576,0.9294,0.687,0.3836,0.0286,-0.311,-0.6698,-0.9084,-0.939,-0.9542,-0.9752,-1,-1,-1,-1,-1,-1,-0.9234,0.441,0.4786,1,1,1,1,1,-0.7678,-0.8794,-0.6952,0.6524,0.5526,0.5746,0.301,0.1348,0.5214,0.6018,0.3696,0.1142,-0.1842,-0.4644,-0.7212,-0.777,-0.8496,-0.9234,-0.9456,-1,-1,-1,-1,-1,-1,-0.9568,-0.11,-0.7668,-0.6568,-0.6,-0.71,-0.72,-0.7434,-0.89,-0.8068,-0.6068,-0.811,-0.82,-0.8128,-0.7564,-0.762,-0.8092,-0.8146,-0.831,-0.83,-0.8218,-0.89,-0.8034,-0.4768,-0.6468,-0.8534,-0.9,-1,-1,-1,-1,-1,-1,1,1,1,1,-0.6572,-0.5428,1,1,1,0.6,0.6572,1,0,0.2286,-0.6858,-0.9142,-0.5428,-0.3428,-0.5428,-0.7142,-0.8858,-0.8286,-0.5142,-0.4572,-0.0572,-0.4,-0.0572,-1,-1,-1,-1,-1,-1,0.6024,0.59,0.587,0.5796,0.5406,0.471,0.2978,0.0166,-0.2516,-0.2116,-0.0934,-0.1404,-0.2184,-0.295,-0.4196,-0.4446,-0.3706,-0.1244,0.1598,-0.2332,-0.5734,0.3412,-0.7082,-0.3256,0.712,0.9092,0.8444,0.7166,0.6756,0.919,0.973,0.6486,0.7972,1,0.946,0.6622,0.7702,0.554,0.8784,0.6756,0.8514,0.6216,0.7568,0.7432,0.7028,0.2702,0.3648,0.554,0.446,0.3378,0.473,0.6622,0.2972,0.3784,0.3918,0.5406,0.2838,0.027,-0.1622,-0.527,-0.0924,0.277,0.6924,0.1846,0.5846,0.6154,0.6,0.7384,0.8,0.7538,0.6616,0.8616,0.8462,0.7692,0.8308,0.877,0.7692,0.8308,0.9076,0.8616,0.723,0.7384,0.8462,0.877,0.923,1,0.9076,0.677,0.6462,0.5538,0.3692,-0.2924,-0.0644,0.2748,0.4386,0.4736,0.6842,0.7076,0.6726,0.4854,0.7426,0.3802,0.4502,0.4036,0.6374,0.614,0.4152,0.3568,1,0.9532,0.6258,0.5672,0.7544,0.5672,0.4736,0.5556,0.5556,0.462,0.193,0.497,0.5322,0.0878,-0.0058,-0.462,-0.9818,-1,1,-1,-1,1,-0.6,-0.4,-1,-0.0972,0.2222,0.2638,0.5278,0.5694,1,0.9722,0.7638,0.5416,0.5278,0.5834,0.5138,0.3334,0.4028,0.4862,0.4166,0.2638,0.3612,0.4028,0.4444,0.1944,0.4722,0.4306,0.2362,0.3612,0.25,0.0694,0.0278,0.3056,0.0694,0.0416,-0.4862,'23'
-0.0492,0.3902,1,0.9204,0.8372,0.5114,0.394,0.3712,0.7954,0.5454,0.3484,-0.1364,-0.4166,-0.2992,-0.7084,-0.5946,-0.6932,-0.7538,-0.8334,-0.856,-0.7272,-0.428,-0.0152,0.0796,-0.4584,-0.659,-0.697,-0.9734,-0.7992,-0.716,-0.7272,-0.7348,-0.0372,0.3376,1,0.8934,-0.1308,-0.231,-0.4474,-0.538,-0.5476,-0.6834,-0.7802,-0.7254,-0.5088,-0.4798,-0.286,-0.3086,-0.2956,-0.2762,0.2408,0.3926,0.5444,0.7964,0.7318,0.2084,0.1438,0.1114,-0.2794,-0.2504,-0.3214,-0.37,-0.3538,-0.3376,0.0402,0.358,1,0.9078,-0.3372,-0.5482,-0.6344,-0.6316,-0.7474,-0.8514,-0.8098,-0.569,-0.4948,-0.5186,-0.5008,-0.6226,-0.5096,-0.3046,0.2808,0.4056,0.5156,0.3998,0.2304,0.3908,0.679,0.474,0.474,0.165,-0.049,-0.1264,-0.043,0.058,-0.0716,0.2656,1,0.9236,0.1606,-0.0652,-0.2274,-0.6152,-0.504,-0.6756,-0.806,-0.965,-0.3354,-0.2942,-0.1828,0.097,0.1096,0.1034,0.4658,0.5422,0.771,0.6248,0.5612,0.1764,-0.2432,-0.5072,-0.4404,-0.364,-0.4182,-0.4244,-0.3704,-0.1638,-0.0032,0.4102,1,0.9712,0.2404,0.1474,0.1186,-0.5384,-0.2148,-0.2404,-0.3718,-0.5352,0.0544,0.3076,0.2308,0.0544,-0.1282,-0.3686,-0.3782,-0.234,0.0674,0.1634,0.0706,-0.2596,-0.4166,-0.5576,-0.6892,-0.798,-0.7084,-0.6186,-0.5706,-0.7052,-0.07,0.4308,0.9284,1,0.0602,-0.1544,-0.0114,-0.4342,-0.356,-0.1512,0.291,0.3008,-0.4048,-0.5968,-0.4666,-0.8276,-0.6716,-0.6162,-0.6976,-0.6814,-0.522,-0.2944,-0.213,-0.4472,-0.535,-0.4666,-0.7952,-0.9708,-0.883,-0.6682,-0.7204,-0.6618,0.0068,0.9406,0.7758,1,0.2998,-0.1854,0.2036,0.0344,0.0664,0.611,0.4324,0.2632,0.3136,0.016,-0.199,-0.2128,-0.4188,-0.3272,-0.309,-0.3364,-0.1488,-0.428,-0.2768,-0.3958,-0.2952,-0.3272,-0.5102,-0.5424,-0.5606,-0.3272,-0.4142,-0.4692,0.6,1,0.9556,1,0.8222,0.8222,0.7778,0.7778,0.7778,0.6888,0.1112,-0.0222,-0.1556,0.1112,-0.0222,0.0222,-0.1112,-0.2888,0.0222,0.1112,0.1556,0.0666,0.2888,0.2888,0.1112,0.3778,0.2888,0.1112,0.2444,0.2888,0.1112,0.2444,0.24,0.44,0.88,0.76,0.84,0.72,0.48,0.84,1,0.8,0.32,-0.24,-0.16,-0.32,-0.4,-0.12,-0.16,-0.12,-0.16,-0.12,-0.16,-0.08,0.08,0.24,0.12,-0.12,-0.28,-0.56,-0.16,-0.24,0.12,0.04,0.1566,0.5904,1,0.9036,-0.1326,-0.2048,-0.3734,-0.4458,-0.3254,-0.494,-0.759,-0.7832,-0.3254,-0.2772,-0.1326,-0.1566,-0.1808,-0.1084,0.2772,0.6868,0.8072,0.5904,0.494,0.4458,0.7832,0.759,0.253,0.229,0.012,0.0602,-0.1084,0.0844,-0.9706,-0.6342,0.1052,0.8938,0.7424,0.8368,0.937,1,-0.0836,-0.8328,-0.7896,0.7246,0.8624,0.7522,0.4886,0.7384,0.6794,0.4986,0.357,0.2822,0.0088,-0.532,-0.943,-0.9646,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9498,-0.2002,0.1646,1,1,1,1,1,-0.1262,-0.8638,-0.8256,0.6708,0.6232,0.4938,0.1936,0.4422,0.4038,0.1726,0.0668,0.0178,-0.2518,-0.6088,-0.9008,-0.9272,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.5134,-0.29,-0.6168,-0.66,-0.7,-0.7668,-0.7568,-0.8034,-0.7668,-0.8434,-0.8164,-0.825,-0.755,-0.8718,-0.875,-0.8418,-0.895,-0.8934,-0.9034,-0.9084,-0.8568,-0.8234,-0.94,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,0.3142,-0.4858,-0.5428,-0.0858,1,1,0.4572,1,1,0.1714,-0.0572,-0.8858,-0.6858,-0.7714,-0.6858,-0.8,-0.9142,-0.8858,-0.4,-0.2286,-0.8572,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.6458,0.6286,0.6036,0.574,0.5244,0.41,0.2292,-0.0174,-0.1858,-0.0616,-0.0828,-0.0984,-0.1692,-0.2414,-0.299,-0.2378,-0.1074,0.107,0.2212,-0.1932,-0.52,0.4236,-0.8308,-0.31,0.651,0.9378,0.9604,0.1334,-0.358,0.284,0.4074,0.4074,0.3828,0.4074,0.4074,0.5556,0.605,0.5802,0.5308,0.432,0.5062,0.432,0.5062,0.7038,0.7038,0.753,0.926,1,0.926,0.9754,0.9012,0.7284,0.5308,0.605,0.6544,0.358,0.3086,0.1358,0.0618,-0.3828,-0.2904,0.2688,0.3764,0.2688,0.2474,0.3118,0.2688,0.3978,0.4194,0.1398,0.2904,0.3764,0.4408,0.2688,0.6344,0.8064,0.957,0.7634,1,0.871,0.7204,0.871,0.785,0.871,0.742,0.7634,0.8064,0.2688,0.5268,0.6344,0.5268,0.2688,0.164,0.3442,0.3606,-0.0656,-0.4754,-0.3606,-0.3114,0.4918,0.6558,0.246,0,0.082,0.0984,0.1148,-0.0656,0.1804,0.3606,0.7214,1,0.8032,0.5246,0.7704,0.5082,0.6066,0.4262,0.3442,0.2622,0.0492,0.164,0.2132,0.295,0.1148,1,1,-1,-1,-1,-1,-1,-0.7666,-1,0.1752,0.4846,0.3196,0.5876,1,0.9176,0.732,0.6702,0.5464,0.567,0.732,0.5464,0.5876,0.4226,0.4226,0.402,0.5052,0.2578,0.0104,0.464,0.3608,0.402,0.464,0.402,0.3608,0.299,0.299,0.3608,0.1134,0.299,-0.1134,-0.2578,'23'
-0.1258,0.2716,0.457,0.5894,0.841,0.8278,0.841,0.6292,0.351,0.1126,0.0332,0.1656,0.2318,0.2716,0.2318,0.4834,0.894,1,0.6954,0.6424,0.5762,0.3378,0.5762,0.8014,0.841,0.7748,0.4172,0.351,0.1258,0.1524,0.139,0.0198,-0.3334,-0.0054,0.3006,0.2786,0.5192,0.9454,0.7596,0.705,0.2568,0.071,0.0382,-0.0492,0.071,0.1584,0.3006,0.2896,0.9016,1,0.7596,0.6174,0.7268,0.5738,0.4208,0.4864,0.836,0.6066,0.0602,0.1256,-0.2022,-0.224,-0.2896,-0.2132,-0.2234,0.068,0.398,0.3496,0.5436,0.9708,0.9902,1,0.4078,0.2136,0.1942,-0.1554,0.301,0.165,0.2428,0.6214,0.9224,0.9806,0.835,0.6116,0.398,0.6116,0.5146,0.767,0.9514,0.5242,0.0874,0.2524,0.1748,-0.0874,-0.1554,0.068,-0.2404,0.0288,0.3558,0.2212,0.4616,0.8462,1,1,0.3366,0.2404,0.1154,-0.0962,0.4134,0.25,0.1346,0.548,0.8654,0.7884,0.4808,0.4326,0.3654,0.25,0.577,0.6538,0.673,0.0674,0.1154,0.0288,-0.2692,-0.0962,-0.2692,-0.2212,-0.2512,0.118,0.4256,0.3026,0.6102,0.9488,0.9898,1,0.5384,0.0666,-0.0462,-0.3744,0.282,0.1384,0.3026,0.682,0.5282,0.5384,0.2,0.4154,0.3436,0.1488,0.6206,0.518,0.3538,0.2308,-0.1488,-0.241,-0.1898,-0.2512,-0.4154,-0.5076,-0.1776,0.137,0.4924,0.3808,0.7258,1,0.7868,0.7766,0.5126,0.1676,-0.0254,0.1472,-0.3096,0.0254,0.2082,0.2792,0.5432,0.4214,0.2082,0.2792,0.0558,0.0862,0.2488,0.3096,0.2792,-0.127,-0.1168,-0.0558,-0.33,-0.198,-0.198,-0.5026,-0.1608,0.3706,0.5244,0.3146,0.3706,0.3426,0.4686,0.4266,-0.3146,-0.2728,-0.4126,-0.2868,-0.2308,-0.2028,0.2168,0.8882,1,0.6084,0.3846,0.1888,0.1188,0.1048,0.6224,0.958,0.5944,-0.1608,-0.021,-0.1048,-0.3426,-0.3986,-0.4406,-0.6224,-0.1852,0.5556,0.5556,0.7038,0.7038,1,0.926,0.4814,0.4074,0.037,0.037,0.4074,0.2592,0.3334,0.1852,0.4074,0.4814,0.7038,0.5556,0.1112,-0.1112,-0.3334,0.037,0.4074,0.7038,0.8518,0.3334,0.1112,0.1852,0.3334,0.2592,0.037,-0.1708,0.0732,0.3658,0.317,0.6586,1,1,0.6586,0.317,0.122,0.0732,-0.122,0.1708,0.1708,0.2196,0.5122,0.9024,1,0.8536,0.7074,0.756,0.6098,0.7074,0.9512,0.9512,0.3658,0.317,0.3658,-0.0244,0.0732,0.2196,0.0244,-0.2424,0.0606,0.4242,0.303,0.6666,0.9696,1,0.9696,0.5454,0.0304,-0.091,-0.2122,0.2122,0.0606,0.2424,0.6364,0.4546,0.2424,-0.1516,0.4848,0.3636,0.3636,0.7878,0.697,0.3636,0.3636,0.0304,-0.2122,-0.1818,-0.3636,-0.394,-0.6364,-1,-1,-1,-1,-1,-1,-1,-0.9782,-0.9662,-0.883,-0.762,0.4384,0.9404,0.9504,0.887,0.8592,0.7738,0.7084,0.6568,0.613,0.3552,-0.1766,-0.9068,-0.9662,-0.9444,-0.9642,-0.9642,-0.9306,-0.863,-0.9206,-0.885,-0.9444,-0.9424,-1,-1,-1,-1,-1,-1,-1,-0.968,-0.9606,-0.5726,-0.4836,0.1284,0.9168,0.9144,0.7314,0.7514,0.7514,0.4962,0.3182,0.23,-0.0218,-0.4728,-0.9396,-0.948,-0.9572,-0.9622,-0.963,-0.874,-0.6348,-0.5894,-0.424,-0.3208,-0.4022,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.92,-0.6034,-0.3268,-0.7468,-0.6868,-0.7068,-0.62,-0.675,-0.705,-0.71,-0.695,-0.69,-0.69,-0.665,-0.8368,-0.76,-0.88,-0.9068,-0.9134,-0.86,-0.2234,0.4266,1,1,1,-1,-1,-1,-1,-1,-1,-1,-0.8,1,1,0.9714,1,1,-0.1428,-1,-0.8286,-0.7428,-0.7714,-0.6858,-0.1714,1,1,1,-0.7714,-0.9714,-0.9428,-0.5714,1,1,1,0.4572,-0.5142,-0.9142,0.9176,0.9176,1,1,1,1,1,1,1,1,0.0102,0.0102,0.0262,0.0262,0.0518,0.0272,-0.017,-0.0424,-0.1112,-0.2144,-1,-0.647,-0.4584,-0.2502,0.8068,1,0.7238,0.275,-0.509,-0.3174,0.3652,0.2814,-0.0778,-0.0658,0.018,0.3174,0.8682,0.9402,0.5688,1,0.9162,0.4372,0.3414,0.3414,0.4492,0.6886,0.7724,0.7486,0.8444,0.6526,0.6526,0.3892,0.1018,0.1138,-0.0898,-0.3772,-0.8204,-0.473,-0.461,-0.9042,-0.5472,-0.107,0.434,0.4214,0.0692,0.0944,0.195,0.2076,0.8868,0.849,0.8238,1,0.9246,0.6226,0.3584,0.4466,0.5346,0.4842,0.7484,0.5974,0.761,0.5724,0.5724,0.5598,0.2578,0.3836,0.0188,-0.2704,-0.4466,-0.4716,-0.346,-0.5346,-0.0976,-0.0366,0.2318,0.317,0.2074,0.1464,0.2682,0.317,0.8658,1,0.683,0.7926,0.9146,0.6708,0.3048,0.2318,0.256,0.317,0.5244,0.256,0.4756,0.5732,0.5244,0.1952,0.5122,0.4634,0.439,-0.1586,-0.5854,-0.4024,-0.3658,-0.5732,0.1772,-1,-1,1,-1,-1,-1,-0.6,1,-0.6436,-0.5978,-0.5748,-0.3908,-0.4828,-0.4828,-0.184,-0.2068,-0.023,-0.1724,-0.1494,-0.1954,-0.184,-0.0574,0.161,0.138,0.161,0.1494,0.2758,0.4252,0.6552,0.6436,0.6436,0.5748,0.6322,0.8276,1,0.9886,0.6092,0.4712,0.5058,0.161,'24'
-0.0918,0.3368,0.2552,0.2858,0.6734,0.7142,0.7756,0.3164,-0.0102,-0.1938,-0.1938,-0.2244,-0.1428,0.102,0.0816,0.4286,0.5816,0.8062,1,0.9694,0.847,0.8062,0.7654,0.7756,0.7346,0.602,0.3164,0.2244,0.0306,-0.0102,-0.0612,-0.296,-0.1616,0.1616,0.404,0.5152,0.6464,1,0.8282,0.798,-0.0404,-0.1414,-0.091,0.0808,0.1212,0.1314,0.2828,0.3838,0.798,1,0.9898,0.8788,0.495,0.303,0.5152,0.6162,0.202,0.2222,0.2526,-0.0404,-0.2526,-0.303,-0.4748,-0.2828,-0.2142,0.153,0.3776,0.449,0.5816,0.9592,0.796,0.898,0.2346,0.0408,0.0816,0.0612,0.204,0.1938,0.347,0.449,0.5816,0.8164,1,0.9184,0.3266,0.6428,0.5306,0.1836,0.6122,0.3878,0.1734,-0.0612,-0.4082,-0.347,-0.3674,-0.4796,-0.243,0.056,0.3738,0.3084,0.514,1,0.8878,0.9252,0.3738,0.215,0.056,-0.0374,0.3364,0.3178,0.3084,0.3926,0.701,0.8692,0.5234,0.3272,0.4392,0.1776,0.5234,0.6262,0.4766,0.2616,0.1402,0.0842,-0.2242,-0.3272,-0.4018,-0.3364,-0.287,-0.0174,0.3652,0.287,0.5218,1,0.8608,0.7478,0.6174,0.4086,-0.0174,0.0956,0.0782,0.1304,0.4086,0.4348,0.5218,0.6348,0.487,0.2348,0.1218,0.1304,0.2,0.3566,0.2434,0.0348,-0.2,-0.2956,-0.487,-0.4086,-0.3304,-0.4348,-0.25,0.1324,0.4412,0.4412,0.375,1,0.9632,0.4852,0.3308,0.4192,0.0514,0.022,0.0442,0.1764,0.5588,0.5956,0.6618,0.5882,0.5148,0.2058,0.272,0.3014,0.3602,0.3602,0.3602,0.0148,-0.0956,-0.3456,-0.2058,-0.3676,-0.3602,-0.3162,-0.2406,0.476,0.3262,0.4118,0.6898,0.6578,0.8502,0.6578,0.3904,0.0482,0.0054,0.0482,0.3368,0.4224,0.6364,0.8824,1,0.8288,0.3048,0.1444,0.4332,0.476,0.3048,0.5722,0.5828,0.2834,-0.0802,-0.2942,-0.3796,-0.2514,-0.1978,-0.2942,0.0968,0.613,0.4194,0.4838,0.742,0.871,0.8064,0.3548,-0.3548,-0.2904,-0.3548,-0.6774,-0.4838,-0.2258,-0.2258,0.1612,-0.0322,0.1612,0.871,1,0.742,0.613,0.3548,0.4194,0.3548,0.613,0.2904,-0.4194,-0.5484,-0.4194,-0.2258,-0.1612,-0.2972,-0.027,0.1892,0.1352,0.5136,0.7838,0.6756,0.3514,-0.027,-0.081,-0.1352,-0.1352,-0.027,0.1352,0.1892,0.2972,0.6756,0.8918,1,0.8378,0.6216,0.8378,0.7838,0.7298,0.8918,0.4594,0.4054,0.4054,0.1892,0.2432,0.2972,0.081,-0.1818,0.1516,0.4242,0.4546,0.6364,1,0.8484,0.9696,0.3636,0.0606,0.091,0.2122,0.3334,0.3334,0.303,0.5758,0.6666,0.8484,0.9394,0.8484,0.4546,0.697,0.5454,0.4242,0.8484,0.6364,-0.0606,-0.1212,-0.4242,-0.6364,-0.4848,-0.4242,-1,-1,-1,-1,-1,-1,-1,-0.9674,-0.963,-0.8174,-0.6066,0.5674,0.8978,0.9674,0.974,0.9782,0.9804,0.963,0.8522,0.5304,0.063,-0.4804,-0.8978,-0.937,-0.9586,-0.9478,-0.9544,-0.9608,-0.9544,-0.737,-0.826,-0.913,-0.937,-1,-1,-1,-1,-1,-1,-1,-0.968,-0.9688,-0.6978,-0.6084,0.0062,0.845,0.3382,0.3374,0.4558,0.3176,0.3924,0.3114,-0.0138,-0.3268,-0.639,-0.9268,-0.9466,-0.9618,-0.961,-0.9672,-0.9672,-0.9634,-0.6214,-0.5404,-0.3778,-0.303,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.9334,-0.7268,-0.44,-0.79,-0.58,-0.645,-0.69,-0.705,-0.71,-0.69,-0.63,-0.75,-0.68,-0.53,-0.6,-0.7534,-0.8668,-0.91,-0.9034,-0.9534,-0.92,-0.68,0.22,1,1,-1,-1,-1,-1,-1,-1,-1,-0.6858,-0.1428,1,1,1,0.6858,-0.6,-0.6572,-0.4858,-0.8,-0.9142,-0.7428,-0.1714,1,1,1,-0.9714,-0.7142,-0.8572,-0.9428,-1,0.6,1,1,1,-0.8,0.911,0.911,0.9502,0.9962,1,1,1,1,1,1,0.2092,0.2092,0.22,0.2542,0.2458,0.1852,-0.0064,-0.0488,-0.1298,-0.3608,-0.5334,-0.6,-0.5512,-0.4366,0.5572,0.7932,0.3542,0.025,-0.3758,0.1064,0.7164,0.6312,0.1348,0.0638,0.2624,0.3476,0.929,1,0.6312,0.7022,0.6454,0.078,0.1632,0.2198,0.4894,0.7446,0.8014,1,0.9858,0.6312,0.149,0.1774,0.2766,0.1348,-0.0354,-0.305,-0.1632,-0.2908,-0.2908,-0.617,-0.069,0.1206,0.931,0.7932,0.3104,0.1724,0.5344,0.6552,0.9138,0.9138,0.6724,0.5344,0.431,0.2932,0.4828,0.5172,0.569,0.6034,0.6896,0.9656,1,0.6896,0.3276,0.3966,0.431,0.362,-0.0862,-0.069,-0.2932,-0.2932,-0.2758,-0.3794,0.2842,0.3578,0.4842,0.3578,0,-0.0632,0.3264,0.3368,0.5894,0.8736,0.8632,0.821,1,0.6526,0.3474,0.2736,0.3158,0.421,0.5158,0.621,0.5264,0.3684,-0.0736,0.3578,0.5684,0.579,0.2736,0.1684,-0.1474,-0.3894,-0.3052,-0.5684,-0.1588,-1,-1,1,-1,-1,-1,-0.6666,1,-0.6666,-0.7444,-0.4112,-0.5,-0.3888,-0.2778,0.1666,0.1444,0.1,0,-0.0222,0.1,0.0888,0.1222,0.3334,0.2222,0.0334,0.4334,0.4666,0.7,0.7556,0.4444,0.5666,0.7,1,0.8,0.7666,0.8112,0.8,0.8,0.7556,0.6334,'24'
0.1748,0.6662,0.9716,1,0.8552,0.4174,0.222,0.1308,-0.5182,-0.7448,-0.6158,-0.6094,-0.5716,-0.6692,-0.704,-0.748,-0.5308,-0.5182,-0.8048,-0.7544,-0.3544,-0.5748,-0.6756,-0.663,-0.5244,-0.5276,-0.6378,-0.7922,-0.8646,-0.833,-0.685,-0.5434,-0.2418,0.0598,0.3266,0.4414,0.5386,0.7032,0.985,1,0.4938,0.2918,0.2418,-0.2594,-0.611,-0.4514,-0.4114,-0.7182,-0.6608,-0.6758,-0.7008,-0.3342,-0.0872,0.0574,-0.374,-0.6634,-0.7856,-0.7482,-0.8952,-0.9502,-0.7856,-0.6684,-0.7008,-0.3168,-0.3228,-0.051,0.165,0.0388,0.3082,0.551,0.9902,0.92,0.5534,1,0.8204,0.6068,0.2088,0.0946,0.0194,-0.318,-0.2208,-0.403,-0.364,-0.0898,0.0728,0.0826,0.1166,-0.2208,-0.4564,-0.5316,-0.5412,-0.8276,-0.6894,-0.5946,-0.4442,-0.131,-0.2858,0.0062,0.2184,0.0986,0.2958,0.563,0.975,0.925,0.6604,0.9202,0.925,1,0.5506,0.4382,0.4132,-0.0962,0.0612,-0.0662,-0.2334,0.0536,0.226,0.3008,0.1436,-0.131,-0.206,-0.5056,-0.3434,-0.523,-0.5706,-0.538,-0.3158,-0.1986,-0.3072,-0.0126,0.2336,0.0762,0.2842,0.604,1,0.9544,0.604,0.7336,0.5888,0.5964,0.7868,0.8248,0.8224,0.3908,0.2944,0.1852,0.094,0.2792,0.2412,0.3478,0.4162,0.0762,-0.2436,-0.2994,-0.2664,-0.3426,-0.3426,-0.2792,-0.3578,-0.2436,-0.1432,0.2078,0.5814,0.4494,0.7388,1,0.9074,0.8512,0.3146,0.0646,-0.1208,-0.236,0.2276,0.073,0.118,0.4916,0.7134,0.7978,0.8512,0.6882,0.6292,0.4494,0.7106,0.6966,0.5814,0.3652,0.118,-0.177,-0.1938,-0.3426,-0.4888,-0.413,0.1064,0.6924,0.82,0.869,0.869,0.496,0.437,-0.0278,-0.2962,-0.653,-0.7806,-0.5286,-0.4108,-0.4042,-0.3618,-0.3912,-0.1816,0.1882,0.6268,0.9378,1,0.9934,0.7906,0.8822,0.941,0.797,0.329,0.031,-0.0474,-0.1718,-0.2112,-0.2996,0.1724,1,0.931,0.862,0.1724,-0.1034,-0.3104,-0.1034,-0.5172,-0.7242,-0.2414,0.0344,-0.0344,-0.4482,-0.1724,-0.1724,-0.2414,-0.1034,0.0344,-0.0344,-0.0344,-0.0344,-0.0344,-0.5172,-0.0344,0.0344,-0.0344,-0.2414,-0.7242,-0.3794,-0.1724,-0.1724,0.4894,0.8724,0.8724,1,0.617,0.617,0.3192,-0.0212,-0.3618,-0.1064,-0.149,0.149,0.3618,0.234,-0.1064,-0.1064,-0.3192,0.0212,0.149,0.0212,0.0638,-0.149,0.0638,0.149,0.1064,0.149,0.1064,0.149,0.1914,0.149,0.234,0.2766,-0.2876,-0.041,0.2054,0.1232,0.315,0.589,1,0.9452,-0.1506,0.3424,0.2328,0.2602,0.4246,0.4246,0.5068,0.8082,0.5342,0.2602,0.041,0.2328,0.0136,-0.041,0.041,-0.1232,0.2054,0.178,-0.041,-0.041,-0.0684,-0.178,-0.3698,-0.4794,-1,-1,-1,-1,-1,-1,-1,-0.9562,-0.9584,-0.95,-0.7814,-0.257,0.6046,0.4132,0.1758,0.0426,0.001,-0.001,0.0718,0.1508,0.1696,-0.2446,-0.6108,-0.9022,-0.9522,-0.925,-0.9396,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.935,-0.9412,-0.9324,-0.8412,-0.486,0.4096,0.731,0.8986,0.7374,0.8236,0.8336,0.8612,0.441,0.1244,-0.3484,-0.6236,-0.8274,-0.8712,-0.9,-0.9074,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.9134,-0.8,-0.8868,-0.8872,-0.8144,-0.692,-0.68,-0.692,-0.6988,-0.7414,-0.6934,-0.7094,-0.6734,-0.784,-0.5368,-0.3468,-0.38,-0.64,-0.64,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,-0.9714,-0.8,-0.4858,-0.4858,-0.0858,-0.3142,-0.8286,-1,-0.8858,-0.8286,0.1714,-0.0572,0.0572,-0.6858,-0.5428,-0.4858,-0.8,-0.8286,-0.8,-1,-1,-1,-1,-1,-1,0.0826,0.1476,0.2124,0.3098,0.4318,0.5746,0.731,0.9102,1,1,-0.249,-0.2802,-0.2804,-0.2608,-0.2816,-0.3348,-0.3614,-0.4382,-0.6196,-0.4822,-0.4666,0.8,-0.8374,-0.6448,-0.5248,-0.496,-0.4734,-1,0.0482,-0.024,0.494,0.771,0.5904,0.6626,1,0.9278,0.5784,0.735,0.4216,0.4338,0.518,0.4216,0.8072,0.6506,0.6506,0.8192,0.1566,0.1928,0.5542,0.4698,0.4096,0.3734,0.2772,0.6024,0.4578,0.4338,0.0722,0.2892,-0.1326,-0.3614,0.1956,0.3632,0.2738,0.9442,0.7654,0.6536,0.866,0.6424,0.877,0.5196,0.81,0.3966,0.6648,0.7878,0.6536,0.676,0.7542,0.4414,0.6984,0.5196,0.676,0.4414,0.5866,0.3408,0.2514,0.553,0.6984,0.7318,0.4302,0.2514,0.3408,-0.1508,0.4812,0.8396,0.7452,0.8868,0.6132,0.7264,0.7264,0.9812,0.8774,0.6038,0.7076,0.632,0.8208,0.868,0.8962,0.915,0.7548,0.7924,0.6416,0.8868,0.5094,0.566,0.3868,0.434,0.4056,0.6698,0.3584,0.8208,0.6604,0.4716,0.2076,-0.085,-0.9474,1,-1,-1,-1,-1,-0.6,-1,-1,-0.4118,-0.311,0.042,0.0924,0.0756,-0.0084,0.2942,0.21,0.5966,1,0.9328,0.395,0.7984,0.5798,0.4118,0.2268,-0.2268,0.1092,0.1092,-0.0084,0.1428,-0.1092,0.21,0.4118,-0.1092,0.2268,0.2774,0.126,0.126,0.0084,-0.1932,-0.6134,'25'
-0.1364,0.5092,0.9108,1,0.7822,0.7218,0.6588,0.1312,-0.2414,-0.7874,-0.748,-0.756,-0.6326,-0.7612,-0.714,-0.769,-0.7506,-0.7402,-0.832,-0.874,-0.748,-0.8766,-0.7086,-0.7874,-0.7532,-0.58,-0.8084,-0.8898,-0.9292,-0.7926,-0.6536,-0.6352,-0.308,0.0052,0.3376,0.386,0.552,0.878,0.8696,1,0.7456,0.6256,0.5478,0.165,-0.0872,-0.1062,-0.4006,-0.4932,-0.51,-0.3418,-0.266,-0.1062,0.1252,0.1146,0.0326,-0.3292,-0.4826,-0.573,-0.571,-0.6214,-0.5962,-0.531,-0.5142,-0.0368,-0.3158,-0.0168,0.2442,0.1894,0.2968,0.6968,0.8778,1,0.8464,0.8274,0.941,0.6568,0.5116,0.3894,0.1452,-0.021,-0.059,0.0442,0.1222,0.1936,0.459,0.4274,0.3874,-0.1052,-0.2906,-0.3706,-0.4358,-0.2948,-0.299,-0.219,-0.1684,-0.0084,-0.2742,0.0472,0.2876,0.227,0.2966,0.6764,0.8786,1,0.854,0.7888,0.8944,0.827,0.663,0.591,0.1528,-0.018,0.0158,0.0382,0.1978,0.2382,0.3304,0.373,0.409,-0.1438,-0.3416,-0.528,-0.5078,-0.672,-0.537,-0.3056,-0.1776,-0.0944,-0.2424,0.1106,0.3184,0.2692,0.285,0.6804,0.857,1,0.4906,0.2782,0.39,0.4972,0.6424,0.8078,0.4614,0.3632,0.3922,0.191,0.285,0.3632,0.3184,0.343,0.4302,-0.0346,-0.2358,-0.2178,-0.5284,-0.3252,-0.3788,-0.3832,-0.5174,-0.3364,0.0014,0.4808,0.7204,0.6834,0.709,0.8602,0.8002,0.5178,0.0614,-0.4266,-0.5464,-0.1498,-0.1012,-0.067,-0.3752,0.0042,0.5036,0.9002,1,0.9514,0.3638,0.8516,0.9258,0.9058,0.7804,0.1012,-0.261,-0.3466,-0.3952,-0.3524,-0.4322,-0.4494,0.011,0.627,0.326,0.4476,0.2182,-0.0194,-0.1878,-0.3536,-0.4034,-0.8896,-0.7458,-0.4806,-0.3564,-0.5994,-0.3646,-0.3784,-0.1574,0.257,0.5386,1,0.9172,0.6546,0.779,0.7266,0.6022,0.0856,-0.0662,-0.2846,-0.2956,-0.5082,-0.558,-0.4834,0.2106,0.8948,0.8422,1,0.8422,0.5264,0.3158,0.3158,0.0526,-0.3158,-0.2632,-0.4736,-0.2106,-0.2106,-0.1578,-0.3158,-0.4736,-0.3684,-0.1578,-0.1052,-0.1578,-0.3158,-0.3684,-0.3684,0.0526,0.1052,-0.2106,-0.2106,-0.2106,-0.2106,-0.1578,-0.1052,0.1364,0.4546,1,0.8636,0.3182,0.6364,0.2272,0.1364,-0.1818,-0.091,-0.091,-0.1364,-0.2272,0.1818,0.0454,-0.091,0,-0.091,-0.3636,-0.3182,-0.0454,-0.1364,-0.091,-0.091,-0.2272,0,-0.091,0,0.0454,-0.1818,-0.3636,-0.091,-0.3494,-0.0362,0.1566,0.1808,0.3254,0.6386,0.7832,0.9278,0.6868,0.8314,1,0.6386,0.3494,0.229,-0.012,-0.0362,-0.229,-0.012,0.1326,0.253,0.5422,0.4698,0.0362,-0.1566,-0.2772,-0.3254,-0.2772,-0.2772,-0.3012,-0.1566,-0.1566,-0.1326,-1,-1,-1,-1,-1,-1,-1,-1,-0.963,-0.9454,-0.7526,-0.0088,0.6572,0.3592,0.1392,0.038,-0.0068,-0.0088,-0.0224,-0.1256,-0.2736,-0.517,-0.8968,-0.9338,-0.9182,-0.928,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.9564,-0.8666,-0.4596,0.4204,0.64,0.7476,0.4604,0.2506,0.1912,-0.0498,-0.3066,-0.5164,-0.6898,-0.8632,-0.9164,-0.9236,-0.9368,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9664,-0.9668,-0.8768,-0.8526,-0.7838,-0.6264,-0.6626,-0.6814,-0.7164,-0.8026,-0.7088,-0.6688,-0.706,-0.7212,-0.4068,-0.6134,-0.7268,-0.7034,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2286,-0.8,-0.2,-0.2286,0.7428,0.1142,-0.7428,-1,-1,-0.8572,-0.7714,-0.7714,-0.8858,-0.6,-0.6286,-0.8286,-0.8572,-0.8,-1,-1,-1,-1,-1,-1,-1,0.5094,0.5484,0.6166,0.6894,0.7784,0.882,0.9774,1,1,0.9782,-0.2772,-0.3178,-0.3182,-0.3242,-0.338,-0.3586,-0.4108,-0.5356,-0.7436,-0.5876,-0.52,0.9764,-0.8818,-0.6426,-0.5262,-0.4906,-0.4418,-1,0.1562,0.5312,0.625,0.5938,0.3438,0.5312,0.6562,1,0.5938,0.7812,0.9062,0.7188,0.9688,0.75,0.9062,0.7188,0.7188,0.25,-0.0938,0.8124,0.5938,0.2812,0.2812,0.4376,0.6876,0.7812,0.625,0.8438,0.2188,0.0938,0.2188,-0.5,0.6136,0.909,0.5682,1,0.8864,0.8864,1,0.9546,0.8182,0.7046,0.9546,0.8636,0.9772,0.7272,0.659,0.8864,0.9772,0.409,0.7954,0.8182,0.8636,0.2728,0.0228,0.659,0.5228,0.6364,0.8182,0.1364,0.4772,0.2728,-0.159,-0.5,0.7436,1,0.624,-0.0086,-0.2136,-0.1624,0.3162,0.2136,0.1452,0.0598,0.077,-0.0086,0.2478,0.3846,-0.1282,0.0256,0.0428,-0.0428,-0.0086,-0.0428,-0.3504,0.0086,0.0256,0.1112,0.094,0.1282,-0.0428,0.094,-0.1966,-0.47,-0.3676,-0.8632,-0.9342,-1,-1,1,-1,-1,-1,-0.6334,-1,-0.2892,-0.1404,-0.1074,0.2728,0.157,0.2562,0.3554,0.0578,0.3388,0.8512,1,0.8016,0.8348,0.2892,0.124,0.1404,0.0414,0.3388,0.124,0.1404,0.0414,0.1404,0.0578,0.091,0.2892,-0.091,-0.2232,-0.1736,0.091,-0.1074,-0.19,-0.5206,'25'
0.2206,0.614,0.875,0.8602,-0.375,-0.592,-0.625,-0.5882,-0.875,-0.8566,-0.6102,-0.489,-0.4852,-0.353,-0.592,-0.3566,-0.114,0.2758,0.511,0.8382,0.9264,0.9376,0.8934,0.9816,1,0.8272,0.467,0.1838,-0.125,-0.033,-0.0552,-0.1728,0.1034,0.4392,0.9964,0.893,-0.4798,-0.8044,-0.6642,-0.6274,-0.9298,-0.8228,-0.8118,-0.9078,-0.6974,-0.7822,-0.8082,-0.4908,-0.631,-0.4132,0.1144,0.2178,0.4354,0.8488,1,0.952,0.7344,0.797,0.8598,0.797,0.6052,0.513,0.203,0.1512,0.1604,0.5,1,0.8588,-0.6946,-0.8282,-0.7252,-0.6564,-0.8816,-0.8664,-0.874,-0.6718,-0.5916,-0.7748,-0.8054,-0.6336,-0.6984,-0.4198,-0.2824,-0.4084,0.0496,0.4504,0.9274,0.729,0.3244,0.0572,0.3282,0.5496,0.5382,0.355,0.2022,0.0802,0.2256,0.5768,1,0.8404,-0.5888,-0.7684,-0.7924,-0.7366,-0.992,-0.6766,-0.6368,-0.509,-0.485,-0.481,-0.457,-0.453,-0.513,-0.501,-0.4452,-0.537,-0.2056,0.4372,0.7486,0.525,0.2496,0.4132,0.3494,0.7564,0.8364,0.4252,0.0978,0.1018,0.176,0.5652,1,0.8716,-0.706,-0.8592,-0.8096,-0.793,-0.6728,-0.7722,-0.6728,-0.499,-0.47,-0.619,-0.6522,-0.5486,-0.3416,-0.532,-0.5652,-0.615,-0.4658,-0.0766,0.6522,0.7018,0.4328,0.383,0.2092,0.4328,0.4824,0.234,-0.0974,-0.0724,0.2552,0.6738,1,0.977,-0.5048,-0.6928,-0.6046,-0.501,-0.785,-0.8502,-0.881,-0.6314,-0.4088,-0.4548,-0.6046,-0.6162,-0.524,-0.5048,-0.309,-0.1324,-0.1708,0.0596,0.478,0.7466,0.7888,0.881,0.7466,0.6776,0.1056,-0.0326,-0.0596,-0.2092,0.0096,0.5336,0.3028,0.2932,-0.7836,-0.75,-0.6826,-0.6586,-0.7404,-0.8124,-0.875,-0.625,-0.7452,-0.7068,-0.649,-0.7932,-0.6538,-0.577,-0.3846,-0.3318,0.2548,0.6538,1,0.7692,0.8124,0.9278,0.601,0.0432,-0.1298,-0.3174,-0.2644,-0.3028,0.3478,0.6956,0.6086,0.4782,0.2608,-0.2608,-0.2174,-0.3044,-0.087,-0.0434,0.1304,0.087,0,-0.087,-0.3044,-0.2608,0.2608,0.6086,0.913,1,0.8696,0.3044,0.6086,0.6956,0.174,0.2608,0.2608,0.1304,0.0434,0.1304,-0.2608,0.0434,0.3334,0.6112,0.9444,0.9444,0.1112,-0.0556,-0.1112,-0.2222,-0.7222,-0.5556,-0.6112,-0.4444,0.0556,0.1112,-0.1666,0,0.3334,0.7778,0.7222,0.8334,0.9444,1,0.9444,0.8334,1,0.5,0.3334,-0.0556,-0.0556,-0.7222,-0.5,-0.3334,0.1232,0.4246,0.863,0.7808,-0.6438,-0.4794,-0.5068,-0.5068,-0.8904,-0.6986,-0.7808,-0.7808,-0.3698,-0.3424,-0.6438,-0.3698,-0.4246,-0.315,0.0136,-0.178,0.178,0.3698,1,0.9452,0.589,0.6712,0.6438,0.6712,0.6712,0.4246,0.041,0.2054,-1,-0.955,-0.9584,-0.9774,-0.955,-0.9514,-0.9376,-0.9324,-0.9202,-0.87,-0.5442,0.5512,0.922,0.6118,0.2808,-0.0104,-0.1612,-0.2756,-0.2478,-0.2358,-0.2756,-0.6412,-0.8734,-0.9566,-0.967,-0.9688,-1,-1,-1,-1,-1,-1,-1,-1,-0.941,-0.9384,-0.9446,-0.8782,-0.7158,-0.5904,-0.2916,-0.4526,-0.348,-0.2042,0.5068,0.8892,0.5634,0.1944,-0.1512,-0.2756,-0.3972,-0.364,-0.3518,-0.374,-0.6692,-0.8524,-0.9138,-0.9286,-0.9384,-1,-1,-1,-1,-1,-1,-1,-1,-0.9198,-0.8934,-0.9268,-0.13,0.7666,1,1,1,1,0.7032,-0.604,-0.726,-0.7782,-0.751,-0.7674,-0.771,-0.7546,-0.7582,-0.7638,-0.762,-0.6856,-0.5734,-0.6534,-0.7868,-0.8734,-1,-1,-1,-1,-1,-1,-1,-1,-0.4572,-0.8858,1,1,1,-0.5714,-0.9428,-0.7428,-0.6572,1,1,-0.4858,-0.7428,-0.6286,-0.8,-0.9428,-0.9142,-0.9428,-1,-0.7428,-0.2858,-0.6572,-0.8,-0.8858,-0.8572,-1,-1,-1,-1,-1,-1,-1,-0.7834,-0.796,-0.8306,-0.835,-0.816,-0.8022,-0.8486,-0.8306,-0.8864,-0.79,0.5732,0.6224,0.6716,0.7142,0.7384,0.804,0.8554,0.877,0.7994,0.758,-0.4666,0.2824,-0.187,-0.102,0.3296,0.7712,0.9472,-0.5416,-0.7464,-0.7512,-0.8098,-0.5074,-0.5122,-0.6926,-0.439,-0.4098,-0.161,-0.322,-0.3708,-0.4244,-0.1414,-0.239,-0.156,-0.0586,-0.083,0,0.2244,0.1952,0.3074,0.5024,0.5268,0.6488,0.756,0.678,0.9122,0.6682,0.9708,1,0.9708,0.4146,-0.6726,-0.695,-0.6636,-0.444,-0.5426,-0.5336,-0.453,-0.4574,-0.0942,-0.1704,-0.2242,-0.3992,-0.0808,-0.1076,-0.0896,0.0134,0,0.2108,0.3094,0.314,0.314,0.4574,0.5336,0.74,0.731,0.8476,0.8476,0.8162,0.9866,0.9238,1,0.8116,-0.2588,-0.2192,-0.7106,-0.728,-0.7236,-0.6842,-0.6536,-0.6272,-0.0878,-0.0702,-0.1798,-0.171,-0.1404,-0.1228,-0.0614,-0.0834,0.0658,0.0308,0.6008,0.5264,0.4036,0.4342,0.4122,0.522,0.6228,0.9298,1,0.6492,0.6666,0.8508,0.8158,0.3202,-0.8008,-1,-1,1,-0.2,-1,-1,0.0666,-1,0.1428,0.162,0.181,0.2,0.1238,0.4286,0.2572,0.4096,0.3524,0.9048,1,0.6952,1,0.7714,0.581,0.4858,0.5238,0.8858,0.562,0.3142,0.4858,0.962,0.9428,0.8858,0.6,0.6952,0.6762,0.6952,0.6952,0.5048,0.238,-0.2762,'26'
0.139,0.7272,0.8396,0.7434,-0.385,-0.7058,-0.6096,-0.5668,-0.7112,-0.7166,-0.9732,-0.5668,-0.5562,-0.5828,-0.2674,-0.2032,-0.4224,0.0748,0.1764,0.6738,0.9786,1,0.8288,0.9946,0.8984,0.5614,0.2942,0.2514,0.0588,-0.1764,-0.2514,-0.4492,0.2296,0.5768,1,0.9322,-0.4052,-0.7206,-0.6846,-0.521,-0.7604,-0.8802,-0.7564,-0.7046,-0.537,-0.4212,-0.3852,-0.493,-0.5608,-0.1696,0.0618,0.3932,0.8404,0.7644,0.7366,0.8602,0.7246,0.7804,0.976,0.8722,0.1856,0.1138,0.014,0.0658,0.1762,0.5164,1,0.8852,-0.6148,-0.6762,-0.6762,-0.6516,-0.7868,-0.9344,-0.7664,-0.6804,-0.5984,-0.6598,-0.5532,-0.541,-0.541,-0.496,-0.1066,0.0164,0.164,0.4632,0.541,0.5984,0.496,0.8196,0.7786,0.5368,0.2418,0.0614,0.0696,0.246,0.1758,0.5272,1,0.8742,-0.5574,-0.9914,-0.501,-0.4404,-0.6096,-0.8786,-0.783,-0.4534,-0.4014,-0.6442,-0.6312,-0.6442,-0.6138,-0.6052,-0.384,-0.1496,0.0152,0.4144,0.4316,0.4534,0.2452,0.4578,0.5966,0.7528,0.3232,0.1626,-0.1626,-0.0672,0.2706,0.6644,1,0.9194,-0.3558,-0.6824,-0.642,-0.5526,-0.8836,-0.839,-0.915,-0.5838,-0.66,-0.557,-0.6286,-0.7002,-0.7182,-0.6466,-0.2842,-0.2752,-0.2842,0.8166,0.8612,0.311,0.4408,0.4988,0.5302,0.1856,0.1544,0.1544,-0.0156,-0.2036,0.3224,0.7648,1,0.9624,-0.2236,-0.5764,-0.6518,-0.7364,-0.8448,-0.9106,-0.7694,-0.4212,-0.4024,-0.7882,-0.5436,-0.4682,-0.5482,-0.5058,-0.4636,-0.4494,-0.2752,0.44,0.8258,0.6188,0.6848,0.6188,0.633,0.6988,-0.0636,-0.1058,-0.0118,-0.233,0.4006,1,0.9406,0.9526,-0.733,-0.8932,-0.4066,-0.3056,-0.6498,-0.7508,-0.721,-0.549,-0.5964,-0.9228,-0.4362,-0.3768,-0.5312,-0.7032,-0.5728,-0.3176,0.2404,0.6142,0.905,0.721,0.816,0.9228,0.8278,0.2226,0.0268,-0.0386,-0.5252,-0.0446,-0.2778,0.2778,-0.1666,-0.1112,0.0556,0.0556,0.1112,-0.1112,0.1112,0,-0.6666,0.1112,0.1666,0.2222,0.1666,0.1666,0.2778,0.3888,0.3888,0.5556,0.6112,0.3888,0.7778,1,0.8334,0.3334,0.4444,0.4444,0.3888,-0.1112,-0.1112,-0.2222,0.4634,0.9512,0.8536,0.6098,0.3658,-0.8048,-0.1708,-0.2682,-0.2196,-0.2196,-0.2196,-0.2682,-0.2196,-0.4146,-0.0732,0.0244,-0.2196,0.5122,0.756,0.8536,0.756,0.6586,0.9512,1,0.7074,0.2196,-0.2196,-0.0732,0.0244,-0.2196,-0.2196,-0.0732,0.3164,0.595,1,0.8988,-0.2152,-0.7722,-0.2912,-0.2406,-0.1898,-0.2658,-0.2658,0.0126,-0.0126,-0.3924,-0.3164,-0.2658,-0.2406,-0.3164,-0.1646,0.0126,0.3418,0.4684,0.1898,0.2152,0.3924,0.7722,0.8988,0.8988,0.5696,0.443,-0.1392,0.0126,-1,-0.9514,-0.949,-0.6354,-0.5796,-0.6768,-0.7862,-0.91,-0.9246,-0.9052,-0.8664,0.497,0.9392,0.667,0.4824,0.3778,0.2564,0.096,0.023,-0.0644,-0.113,-0.2686,-0.7156,-0.9222,-0.9416,-0.9514,-0.9466,-1,-1,-1,-1,-1,-1,-1,-0.9218,-0.92,-0.6282,-0.3506,-0.2776,-0.2598,-0.1762,-0.1958,0.0588,0.0142,0.388,0.8754,0.557,0.3292,0.2064,0.0818,-0.0428,-0.1138,-0.1814,-0.2224,-0.3416,-0.5444,-0.8434,-0.8666,-0.8736,-0.8914,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.94,-0.7868,-0.2834,0.49,1,1,1,1,0.9166,-0.5334,-0.6978,-0.7246,-0.689,-0.8112,-0.86,-0.79,-0.854,-0.886,-0.9,-0.876,-0.4534,-0.4468,-0.62,-0.68,-0.8,-1,-1,-1,-1,-1,-1,-1,-0.9714,0.8572,1,1,-0.7714,-0.6572,-0.7142,-0.6572,-0.5714,1,1,-0.6,-0.8,-0.9142,-0.9428,-0.8858,-0.8858,-0.8858,-0.9428,-0.9428,-0.6572,-0.4286,0,-0.6572,-0.8858,-0.3428,-1,-1,-1,-1,-1,-1,-0.4144,-0.447,-0.5106,-0.532,-0.5822,-0.6182,-0.6962,-0.7316,-0.7544,-0.744,0.5632,0.5954,0.6106,0.6288,0.7142,0.7408,0.769,0.7712,0.789,0.726,-0.4934,0.1058,-0.1246,-0.2954,0.3362,0.6868,0.9396,-0.4334,0.0018,0.0352,-0.8188,-0.7042,-0.6784,-0.6452,-0.6118,-0.5342,-0.3864,-0.438,-0.4232,-0.3494,-0.2236,-0.2126,-0.268,-0.257,-0.2828,0.0056,0.1756,0.1386,0.4566,0.427,0.2866,0.6672,0.7228,0.83,1,0.9002,0.6672,0.8336,0.8152,0.5194,-0.9014,-0.8194,-0.6814,-0.4614,-0.4582,-0.5698,-0.4712,-0.3334,-0.1134,-0.2808,-0.3202,-0.3366,-0.2874,-0.2742,-0.041,0.0574,-0.0214,0.1166,0.2776,0.2414,0.3498,0.4384,0.4154,0.6848,0.757,0.8424,0.8096,0.8128,0.8062,0.977,1,0.5468,-0.8438,-0.6688,-0.2218,-0.2156,-0.3,-0.2468,-0.2,-0.3126,0.2156,0.3656,0.1718,0.3844,0.4062,0.1094,0.0968,0.1344,0.1532,0.4032,0.7874,0.3,0.6782,0.8124,0.5624,0.7032,0.8218,0.9656,1,0.9782,0.9876,0.9782,0.8688,0.6094,-0.5232,-1,1,-1,0.8,-1,-1,0.5,-1,-0.4728,-0.0728,-0.1272,0.0364,-0.0182,0.2,0.1272,0.0364,0.309,0.4182,0.6,0.3272,1,0.8,-0.0728,0.2,0.4,0.3818,0.1454,0.491,0.8,0.891,0.5454,0.5454,0.5818,0.6546,0.3636,0.5818,0.2,0.1454,0.0182,-0.909,'26'
-0.5804,-0.252,0.0946,0.1996,0.5234,0.521,0.122,0.033,0.0444,-0.0468,-0.0148,0.0536,0.0172,0.195,0.334,0.423,0.7126,0.7332,0.959,0.8494,0.918,0.9658,1,0.9338,0.8882,0.87,0.8108,0.7788,0.601,0.5074,0.5074,0.439,-0.4776,-0.2,0.1858,0.3342,0.6542,0.5694,0.0964,0.0612,0.0518,0.0118,0.0212,0.087,0.2282,0.1976,0.3552,0.5388,0.6306,0.9436,0.9364,0.96,0.9458,0.9482,1,0.9576,0.9506,0.8142,0.753,0.6964,0.5764,0.5058,0.5012,0.4542,-0.4946,-0.2312,0.1592,0.3532,0.588,0.461,0.0706,0.0036,-0.085,-0.0562,0.0348,0.0084,0.1234,0.2408,0.2574,0.4778,0.6694,0.7508,1,0.9712,0.9162,0.9498,0.9616,0.9544,0.842,0.873,0.7772,0.715,0.5474,0.4802,0.473,0.3342,-0.4138,-0.1396,0.2818,0.3096,0.4974,0.373,0.127,-0.0152,-0.0686,-0.0432,0.0076,-0.0026,0.1498,0.2182,0.2716,0.439,0.6168,0.7258,0.995,0.9848,0.9848,0.9492,1,0.9544,0.8782,0.8808,0.7412,0.7284,0.4898,0.4544,0.5126,0.33,-0.4192,-0.0808,0.3958,0.461,0.4062,0.3204,0.039,-0.1954,-0.1928,-0.1588,-0.2292,-0.125,0.0104,0.0468,0.2214,0.2266,0.3386,0.651,0.8516,1,0.9036,0.862,0.8958,0.8594,0.9166,0.75,0.6692,0.664,0.487,0.4218,0.362,0.3334,-0.4254,0.191,0.5346,0.8362,0.6308,0.3226,0.0144,-0.2874,-0.4446,-0.6982,-0.4606,-0.3418,-0.4094,-0.3034,-0.1268,-0.069,0.2134,0.4028,0.7978,0.8426,1,0.9646,0.8074,0.801,0.663,0.602,0.5666,0.5346,0.3066,0.3516,0.5024,0.5794,-0.6486,0.2586,0.2472,0.4248,0.3706,-0.1814,-0.2742,-0.6796,-0.5482,-0.6448,-0.5792,-0.6602,-0.5676,-0.5984,-0.5714,-0.2934,-0.2972,0.0694,0.4016,0.9382,1,0.9306,0.861,0.8378,0.861,0.5792,0.4016,0.475,0.2702,0.3398,0.3398,0.5714,-0.6666,-0.3636,-0.0606,0.0304,0.303,0.303,0,-0.0304,-0.0304,-0.1212,-0.1212,-0.091,0,0.1212,0.2424,0.3334,0.6364,0.6364,0.8484,0.8182,0.8182,0.8788,1,0.8182,0.7878,0.8484,0.8182,0.697,0.606,0.5454,0.5152,0.5152,-0.7288,-0.4238,-0.0508,0.0508,0.3898,0.4238,0.017,-0.0508,-0.1186,-0.1526,-0.1526,-0.1526,-0.1186,0.017,0.2204,0.2882,0.661,0.661,0.9322,0.8644,0.9322,0.8984,1,0.9322,0.8984,0.8644,0.695,0.7628,0.5932,0.4916,0.3898,0.356,-0.4118,0.1294,0.6942,0.9058,0.5294,0.5058,-0.0824,-0.0824,-0.247,-0.4824,-0.4352,-0.3176,-0.153,-0.1294,-0.0118,0.1764,0.1764,0.6706,0.7176,1,0.8118,0.8824,0.6236,0.6236,0.8824,0.7648,0.8824,0.7882,0.4352,0.4824,0.6236,0.5294,-1,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.9626,-0.5524,0.6006,0.9706,0.9198,0.849,0.5324,0.1716,0.03,0.0608,0.1436,-0.3614,-0.7248,-0.8638,-0.9212,-0.9532,-0.9652,-0.964,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9932,-0.9914,-0.291,0.9244,0.5242,0.4568,0.3588,0.0844,-0.1954,-0.4094,-0.6348,-0.7196,-0.8488,-0.9214,-0.9622,-0.976,-0.9826,-0.9858,-0.9838,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.9534,-0.5534,-0.1534,-0.3512,-0.4868,-0.3868,-0.3424,-0.3334,-0.2824,-0.4974,-0.7946,-0.7122,-0.4242,-0.509,-0.4256,-0.479,-0.7256,-0.6922,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,1,1,1,-0.8,-0.9714,-1,-0.9428,-0.8858,-0.8572,-0.6858,-0.3714,-0.5714,-0.1714,-0.4,-0.7714,-0.7714,-0.8572,-0.8,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.8122,0.6966,0.6942,0.6822,0.673,0.6676,0.6512,0.6262,0.6244,0.6312,0.6546,-0.6,0.0706,-0.2546,1,0.9542,0.9178,0.6438,1,-0.2064,0.1112,0.2064,0.1746,-0.0476,0.0158,0.238,0.5556,0.8412,0.9682,0.9682,1,1,0.873,0.746,0.7778,0.7778,0.6826,0.5556,0.492,0.3968,0.1746,0.0158,-0.0158,-0.0476,-0.238,-0.238,-0.238,-0.1428,-0.365,-0.1746,-0.492,-0.4348,0.0724,0.3478,0.3624,0.1594,0.145,0.2174,0.4348,0.7826,0.971,0.942,1,0.942,0.884,0.7682,0.7536,0.6812,0.5508,0.4348,0.5218,0.3188,0.1884,-0.0724,-0.3044,-0.3478,-0.3334,-0.4202,-0.3914,-0.3768,-0.2608,-0.2608,-0.4928,-0.269,0.1724,0.3518,0.2,0.1586,0.062,0.1862,0.2966,0.6966,0.862,0.9448,1,0.9586,0.931,0.7932,0.6,0.531,0.2966,0.2414,0.2414,0.0482,0.0482,-0.1724,-0.4068,-0.4758,-0.462,-0.5172,-0.6276,-0.6,-0.3932,-0.4344,-0.5172,1,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.6416,-0.2452,-0.0188,0,-0.0754,-0.3584,-0.434,-0.5094,0.2264,0.585,0.566,0.6792,1,0.5094,0.151,0.1132,0.3018,0.0188,-0.2076,0.0378,-0.0378,0.0944,-0.132,-0.3396,-0.2452,0.3584,0.2264,-0.2076,-0.132,-0.151,-0.0754,-0.6226,'1'
-0.6482,-0.3148,0.0206,0.1296,0.5638,0.5762,0.0596,-0.0124,0.0124,-0.0824,-0.0288,0.0658,0.0432,0.1604,0.321,0.4238,0.7264,0.751,0.895,0.8456,0.9156,0.9238,1,0.8478,0.86,0.8724,0.8004,0.6708,0.5514,0.533,0.4382,0.4218,-0.5294,-0.1996,0.1534,0.2606,0.687,0.6932,0.145,0.0756,0.0946,-0.021,0.0336,0.1744,0.1492,0.2394,0.4244,0.5378,0.7752,0.811,0.9684,0.9244,0.9264,0.9034,1,0.8844,0.897,0.8424,0.7752,0.7142,0.5484,0.4832,0.3592,0.3488,-0.4984,-0.1748,0.2048,0.2948,0.7106,0.6978,0.1726,0.0676,0.1104,0.059,0.0718,0.1918,0.1512,0.2754,0.4576,0.4898,0.745,0.8306,1,0.8822,0.9378,0.9808,0.9614,0.9442,0.8456,0.8778,0.7814,0.7878,0.552,0.479,0.4384,0.3312,-0.4646,-0.1632,0.2508,0.316,0.6738,0.6242,0.1248,0.0416,0.0888,0.0236,-0.0394,0.1136,0.1496,0.1788,0.4016,0.4376,0.5726,0.9168,0.9506,1,0.928,0.9528,0.9168,0.9572,0.9302,0.8492,0.8402,0.6468,0.6176,0.4196,0.3454,0.3296,-0.4666,-0.1858,0.2526,0.2872,0.514,0.4018,0.1016,0.0216,-0.0368,-0.0454,-0.0064,-0.0022,0.1102,0.1944,0.2548,0.419,0.5616,0.6998,0.9784,1,0.9416,0.9072,0.9806,0.9308,0.8876,0.8358,0.7754,0.771,0.555,0.499,0.4644,0.2224,-0.4772,-0.2386,0.2296,0.2272,0.3546,0.1614,0.0296,-0.1114,-0.2318,-0.2046,-0.2068,-0.1114,-0.0478,-0.0022,0.1546,0.2432,0.409,0.6114,0.7454,1,0.9818,0.8478,0.8636,0.8728,0.8478,0.741,0.7978,0.641,0.534,0.534,0.3636,0.2864,-0.2786,0.1108,0.5142,0.4714,0.3714,0.075,0.0108,-0.4142,-0.4786,-0.5142,-0.5608,-0.3036,-0.2642,-0.2892,-0.0572,-0.0428,-0.0428,0.35,0.6786,0.975,0.9608,0.9572,0.7858,0.9178,1,0.85,0.85,0.8322,0.5108,0.875,0.8928,0.7322,-0.6666,-0.3612,0,0.1666,0.5278,0.5,0.1112,-0.0834,0.0834,-0.0278,0.0278,0.1112,0,0.2222,0.3334,0.3888,0.6666,0.7778,0.8888,0.8056,0.8888,1,1,0.8612,0.9166,0.9722,0.8612,0.75,0.5834,0.5834,0.6388,0.5,-0.6812,-0.3334,-0.0144,0.2464,0.5362,0.5362,0.1594,-0.0144,0.0144,-0.0724,0.0144,0.1014,0.0724,0.1884,0.3044,0.4202,0.7392,0.7682,0.826,0.826,0.971,0.942,1,0.884,0.855,0.855,0.855,0.6812,0.5942,0.5652,0.5072,0.4782,-0.574,-0.2222,0.1852,0.1852,0.426,0.2778,0,-0.1112,-0.2222,-0.1852,-0.074,-0.1296,-0.074,0.0926,0.0556,0.2592,0.537,0.5556,0.8888,0.8888,1,0.963,0.9074,0.9444,0.8518,0.8518,0.8518,0.6482,0.5926,0.5,0.4074,0.1482,-1,-1,-1,-1,-1,-1,-1,-1,-0.983,-0.986,-0.4512,0.5372,0.7492,0.903,0.961,0.913,0.5802,0.2094,-0.0644,-0.2394,-0.3834,-0.6392,-0.7502,-0.7582,-0.7722,-0.875,-0.957,-0.967,-0.971,-0.978,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9946,-0.9948,0.074,0.9178,0.3846,0.3744,0.3172,0.3636,0.0832,-0.0378,-0.2222,-0.3918,-0.6032,-0.9078,-0.9364,-0.9288,-0.9432,-0.9664,-0.9764,-0.9798,-0.9812,-0.987,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.96,-0.5068,-0.169,-0.3978,-0.39,-0.472,-0.54,-0.404,-0.24,-0.248,-0.174,-0.346,-0.558,-0.38,-0.3334,-0.36,-0.4134,-0.1434,-0.09,-0.27,-0.5134,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,1,1,1,-0.6572,-0.9142,-0.9428,-1,-0.9142,-1,-0.8858,-0.8858,1,1,-0.7142,-0.6858,-0.4858,-0.4572,-0.6572,-0.8,-0.6858,-0.4286,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.9628,0.668,0.665,0.6392,0.64,0.6154,0.6002,0.5792,0.5816,0.5926,0.6606,-0.64,0.153,0.5702,0.9074,0.9662,0.9324,0.455,1,-0.193,0.1578,0.1578,0.193,0.3334,0.3684,0.4036,0.5438,0.6842,0.8246,0.8948,0.9298,1,0.9298,0.8948,0.8246,0.8246,0.7192,0.5088,0.5088,0.3684,0.2632,0.1228,0.0176,-0.193,-0.1228,-0.193,-0.3684,-0.6492,-0.4036,-0.4036,-0.5438,-0.3244,0.1352,0.3378,0.2838,0.1756,0.1756,0.2838,0.473,0.7838,0.8784,0.946,1,0.9594,0.9054,0.7432,0.581,0.6486,0.3648,0.2702,0.2028,0.1622,0.1216,-0.027,-0.081,-0.2838,-0.2568,-0.473,-0.5406,-0.6622,-0.581,-0.5946,-0.6486,-0.3,0.175,0.5376,0.4,0.15,0.1626,0.2626,0.4376,0.7,0.875,0.9,1,0.9624,0.9376,0.6626,0.6626,0.55,0.3,0.25,0.2626,0.125,-0.0624,0.0376,-0.1374,-0.3124,-0.3,-0.275,-0.4126,-0.575,-0.55,-0.55,-0.6126,1,-1,-1,1,-0.8,-1,-0.2,-0.8334,-1,-0.5152,-0.1364,0.0304,0.1364,0.1516,0.1818,0.3636,0.5454,0.7878,0.606,0.2576,0.7878,0.9394,0.9848,0.697,0.8334,1,0.3334,0.2122,0.3636,0.3636,0.4394,0.4546,0.1818,0.5304,0.591,0.0758,0.1818,-0.0304,0.1516,0.1666,0.0304,'1'
-0.3912,0.0234,0.1476,0.288,0.0422,-0.171,-0.2858,-0.3162,-0.4028,-0.4216,-0.3022,-0.246,-0.1896,-0.1124,-0.0398,0.1124,0.3138,0.5036,0.8032,0.9368,1,0.9298,1,0.9882,0.9648,0.836,0.8104,0.616,0.3536,0.2412,0.3044,0.3654,-0.453,-0.1244,0.161,0.239,-0.1546,-0.2498,-0.3772,-0.5156,-0.4572,-0.466,-0.5264,-0.3664,-0.3882,-0.3168,-0.107,-0.1568,-0.0076,0.3384,0.4378,0.7968,0.7578,0.8464,0.8962,0.959,1,0.961,0.8918,0.7298,0.5092,0.3644,0.3254,0.2346,-0.4398,-0.1162,0.1466,0.2254,-0.189,-0.2296,-0.3872,-0.5106,-0.446,-0.4824,-0.4944,-0.3286,-0.4338,-0.3732,-0.1426,-0.1932,-0.0678,0.27,0.3326,0.721,0.7068,0.903,0.8624,0.9434,1,0.9656,0.8888,0.7492,0.5976,0.3934,0.367,0.3286,-0.4242,-0.0448,0.1406,0.252,-0.1058,-0.2082,-0.3304,-0.4352,-0.5332,-0.4766,-0.4438,-0.4068,-0.4656,-0.3414,-0.2562,-0.1734,0.0316,0.169,0.4744,0.7688,0.8954,0.8604,0.8888,1,0.9412,0.9826,0.8408,0.8058,0.5376,0.5332,0.3632,0.3894,-0.4042,0.0688,0.0688,0.2522,0.0084,-0.1002,-0.3848,-0.409,-0.4234,-0.5174,-0.585,-0.5488,-0.4838,-0.4306,-0.4042,-0.2328,-0.1798,0.1388,0.4042,0.5996,0.9108,1,0.8214,0.8432,0.9686,0.8818,0.7756,0.643,0.5078,0.368,0.45,0.532,-0.147,0.5914,0.4624,0.7706,0.509,0.0896,-0.2724,-0.5448,-0.5664,-0.7598,-0.767,-0.7348,-0.6702,-0.613,-0.4336,-0.5556,-0.4158,-0.0788,0.1612,0.663,0.9068,0.8388,0.699,0.7168,0.9498,1,0.6236,0.5412,0.405,0.344,0.3692,0.7026,-0.514,0.2038,0.0954,0.3496,0.0804,0.0504,-0.1888,-0.1588,-0.5962,-0.5738,-0.6672,-0.4468,-0.4842,-0.772,-0.7158,-0.544,-0.1066,0.3346,0.7758,0.7906,0.4766,0.3346,0.3046,0.8206,1,0.6336,0.129,0.0654,-0.0206,0.1214,0.1738,0.4206,-0.3334,0.0476,0.0794,0.2698,0.1112,-0.1428,-0.2698,-0.1746,-0.365,-0.2698,-0.1112,-0.0794,0.0158,-0.0476,0.1746,0.0794,0.3968,0.5874,0.8412,0.746,0.8412,0.873,1,0.6826,0.7142,0.746,0.7142,0.3334,0.238,0.5238,0.492,0.3968,-0.4138,0,0.069,0.2414,0.0344,-0.138,-0.3104,-0.3448,-0.2758,-0.3104,-0.2068,-0.3794,-0.138,-0.0344,0.069,0.1034,0.1034,0.6206,0.6552,1,0.8276,0.931,0.8966,1,0.7586,0.7932,0.6552,0.5862,0.138,0.069,0.2414,0.1034,-0.3176,0.2706,0.4824,0.6706,0.3412,0.1764,-0.3648,-0.3882,-0.5058,-0.6706,-0.6706,-0.6942,-0.8588,-0.4352,-0.3648,-0.4824,-0.4588,-0.0118,0.0118,0.2706,0.9058,0.953,0.5764,0.6706,0.953,1,0.6942,0.5294,0.3648,0.5058,0.5294,0.9294,-1,-1,-1,-1,-1,-1,-1,-1,-0.9492,-0.9492,-0.2808,0.908,0.9564,0.8306,0.6732,0.6344,0.4648,0.2154,0.1526,0.0726,-0.3414,-0.5594,-0.7918,-0.8766,-0.937,-0.9394,-0.9322,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9838,-0.983,-0.3966,0.6766,0.8576,0.9462,0.8746,0.6106,0.3694,-0.0146,-0.3816,-0.7254,-0.828,-0.869,-0.9312,-0.9504,-0.959,-0.963,-0.9678,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.9668,-0.5168,-0.068,-0.012,0.056,0.086,-0.02,-0.0382,-0.082,-0.2382,-0.6492,-0.6564,-0.54,-0.3834,-0.42,-0.5,-0.43,-0.67,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,-0.9714,-1,-0.9428,-1,-0.9428,-0.8572,-0.1428,0,-0.7714,-0.6858,-0.6858,-0.7714,-0.8286,-0.8858,-0.7142,-1,-1,-1,-1,-1,-1,0.418,0.4038,0.401,0.3978,0.3804,0.3648,0.3558,0.3424,0.3344,0.3324,0.7938,0.8306,0.8244,0.8574,0.8806,0.9268,0.9656,0.9964,1,0.961,-0.68,0.2588,-0.2624,0.4272,0.6978,0.7006,0.8742,1,-0.2,0.2,0.32,0.4,0.36,0.56,0.84,0.96,0.96,0.92,1,1,0.92,0.88,0.88,0.92,0.76,0.72,0.72,0.72,0.68,0.64,0.6,0.56,0.48,0.44,0.44,0.24,0.32,0.24,0.12,-0.28,-0.2334,0.2166,0.2166,0.3,0.25,0.3666,0.6,0.7166,0.6666,0.6334,0.7334,0.9834,0.6334,0.6834,0.9,1,0.6,0.6334,0.6834,0.7334,0.45,0.5834,0.4834,0.55,0.4166,0.25,0.25,0.2834,0.3,0.3,0.2666,0.0166,0.1596,0.3614,0.2942,-0.0084,-0.042,-0.042,0.126,0.3278,0.479,0.7648,0.8992,1,0.7478,0.7478,0.563,0.6974,0.6134,0.2606,0.1596,0.5294,0.126,0.0252,0.0252,0.1932,-0.2268,-0.2606,-0.2268,-0.3446,-0.3446,-0.1932,-0.042,-0.2774,0.4476,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.5604,-0.2088,0.4726,0.6264,0.3846,0.1868,0.2528,0.3626,1,0.912,0.2968,0.3406,0.6704,0.6044,0.8242,0.6924,0.5384,0.1208,0.2748,0.2748,0.5164,0.2308,0.4066,0.055,0.099,0.1868,0.055,0.2528,0.1868,0.1868,0.6264,0.077,'2'
-0.3892,0.1102,0.0492,0.1952,0.0278,-0.1528,-0.259,-0.1978,-0.3068,-0.3014,-0.2298,-0.3042,-0.0386,-0.1394,0.0836,0.2934,0.3892,0.66,0.7556,0.9734,1,0.923,0.9096,0.9496,0.8726,0.9096,0.7716,0.8354,0.6096,0.498,0.5564,0.5034,-0.4464,-0.0774,0.057,0.1822,-0.082,-0.2528,-0.3576,-0.4124,-0.3826,-0.4944,-0.3964,-0.3006,-0.2984,-0.2232,-0.1936,-0.0296,0.0388,0.189,0.5832,0.7654,0.9682,0.9362,0.8748,0.9682,1,0.8974,0.8474,0.8314,0.7198,0.442,0.4966,0.524,-0.4568,-0.1352,0.1166,0.1818,-0.2192,-0.2728,-0.5174,-0.5058,-0.4732,-0.5012,-0.5548,-0.4336,-0.3614,-0.3544,-0.2424,-0.1678,-0.056,0.1562,0.3614,0.6924,0.8554,0.965,0.8928,0.9418,1,0.9836,0.8788,0.8182,0.6946,0.4942,0.4476,0.4522,-0.5032,-0.2268,0.1508,0.1356,-0.3764,-0.5918,-0.668,-0.5994,-0.6806,-0.673,-0.6046,-0.5362,-0.5082,-0.4474,-0.351,-0.242,-0.199,0.0444,0.2954,0.6172,0.8326,0.9366,0.9366,0.9544,0.9898,1,0.8758,0.8226,0.7034,0.4424,0.341,0.4094,-0.4884,-0.0698,0.3662,0.25,-0.2354,-0.5698,-0.7006,-0.7268,-0.654,-0.7412,-0.7878,-0.6686,-0.5348,-0.4652,-0.4564,-0.407,-0.2848,-0.0232,0.2442,0.5204,0.811,0.9564,0.9476,0.904,0.9884,1,0.8896,0.8024,0.5726,0.4302,0.4302,0.343,-0.3464,0.0702,0.7368,0.4562,-0.3772,-0.7588,-0.6184,-0.5308,-0.8026,-0.9298,-0.693,-0.7236,-0.6096,-0.5878,-0.693,-0.636,-0.6622,-0.6184,-0.386,0.2632,0.7588,1,0.8904,0.8596,0.9386,0.8464,0.693,0.772,0.4474,0.3114,0.478,0.6666,-0.1862,0.2258,0.077,0.0422,-0.3648,-0.3052,-0.469,-0.5682,-0.608,-1,-0.5038,-0.4144,-0.3152,-0.6626,-0.5484,-0.2952,-0.2656,-0.1564,0.0372,0.613,0.9354,1,0.8064,0.732,0.9702,0.9752,0.6924,0.5632,0.2904,0.3152,0.8512,0.8214,-0.4814,0.6296,0.6296,0.1112,0.1852,0.037,-0.3334,-0.4074,-0.5556,-0.2592,-0.1852,-0.3334,0.037,0.1852,0.4814,1,0.7778,0.7778,0.8518,0.7038,0.926,0.926,0.8518,0.8518,0.8518,0.8518,0.7038,0.7778,0.7038,0.3334,0.4074,0.037,-0.0704,0.2958,0.2676,0.4084,0.2394,0.183,0.0422,0.155,-0.014,0.0422,0.0704,0.0422,0.2958,0.183,0.324,0.5492,0.6902,0.8592,0.9718,0.9436,1,0.9154,0.9436,0.8874,0.8592,0.9154,0.831,0.831,0.6902,0.7184,0.662,0.6056,-0.204,0.2654,0.5714,0.3878,-0.1224,-0.2244,-0.4694,-0.3674,-0.5102,-0.6326,-0.7552,-0.6122,-0.5306,-0.3674,-0.347,-0.3878,-0.2448,-0.1224,0.1836,0.2654,0.8164,1,0.9184,0.8776,0.8572,1,0.9184,0.6938,0.4286,0.3674,0.3878,0.4082,-1,-1,-1,-1,-1,-1,-1,-1,-0.9544,-0.957,-0.8736,0.4336,0.9696,0.8938,0.8482,0.6916,0.4892,0.431,0.2616,-0.1074,-0.6106,-0.651,-0.732,-0.8128,-0.9064,-0.914,-0.909,-0.904,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9906,-0.9896,-0.9586,-0.0186,0.581,0.8258,0.877,0.4212,0.1568,-0.2526,-0.5832,-0.862,-0.9324,-0.929,-0.9394,-0.948,-0.965,-0.9746,-0.9714,-0.9742,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.993,-0.98,-0.8868,-0.2646,-0.0134,0.0376,0.078,0.05,0.026,-0.056,-0.354,-0.784,-0.596,-0.784,-0.5534,-0.5234,-0.5368,-0.7968,-0.6968,-0.6734,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5142,-0.4286,1,1,-0.0286,-0.8858,-0.8572,-0.8572,-0.8572,-0.7142,-0.1714,-0.2572,-0.9142,-0.7428,-0.8572,-0.7142,-0.5714,-0.8286,-0.8572,-0.1714,-1,-1,-1,-1,-1,0.3436,0.356,0.369,0.3756,0.3878,0.3886,0.378,0.3656,0.259,0.0336,0.506,0.5344,0.6014,0.6522,0.7116,0.7806,0.8396,0.9458,1,0.9776,-0.5466,0.1412,-0.95,-0.8214,-0.2612,0.523,0.5544,1,0.1504,0.0266,0.2744,0.5044,0.6106,0.6814,0.7876,0.6638,0.8584,0.6638,0.5752,0.3452,0.947,0.9292,0.5222,0.416,0.3098,0.1682,0.3274,0.416,0.823,0.77,0.5044,0.4514,0.2036,0.7168,0.3274,0.4514,0.4868,0.062,0.5576,-0.3274,0.3104,-0.1172,0.6,0.4896,0.8068,0.862,0.8068,0.5448,0.6552,0.3656,0.8068,0.6828,0.7518,0.6966,0.5586,0.6414,0.5448,0.2,0.8896,0.7242,0.7104,0.5034,0.3794,0.6276,0.5586,0.6966,0.6,0.2828,0.4482,0.1172,0.2414,-0.0482,-0.1286,0.0858,0.0286,0.1858,0.0286,0.4,1,0.8428,0.7858,0.9572,0.8858,0.7,0.9572,0.6714,0.6286,0.9714,0.5286,0.2,0.6572,0.3428,-0.0142,0.3572,0.4,0.2714,0.2572,0.6858,0.6,0.6142,0.6142,0.5142,0.3428,-0.1286,-0.9966,1,-1,-1,-1,-1,-0.8,-1,-1,-0.1562,-0.1562,-0.0468,0.2188,-0.25,-0.0624,-0.0156,0,0.4376,1,0.5782,0.5938,0.9532,0.4218,0.6094,0.6876,0.5312,0.2344,0.3438,0.5938,0.625,0.4218,0.3282,0.3594,0.0156,0.3126,0.3438,0.1094,0.125,0.2656,0.3438,-0.2812,'2'
-0.4644,0.1164,0.1044,0.3222,0.2526,-0.0892,-0.1438,-0.1406,-0.2254,-0.1982,-0.286,-0.0348,-0.0984,0.1376,0.289,0.4886,0.8366,0.9184,0.888,0.9184,0.9486,1,0.9636,0.8638,0.8246,0.8336,0.7822,0.8094,0.5674,0.4312,0.3706,0.5916,-0.4994,-0.083,0.0518,0.237,0.0806,-0.136,-0.302,-0.2612,-0.266,-0.278,-0.3334,-0.3622,-0.1794,-0.1288,-0.0084,0.0974,0.2732,0.5884,0.7978,0.8868,0.8796,0.8796,1,0.9566,0.8388,0.8316,0.8244,0.6992,0.55,0.3622,0.3526,0.4706,-0.494,-0.1436,0.1558,0.27,-0.0268,-0.2068,-0.326,-0.4112,-0.3236,-0.4404,-0.3868,-0.2944,-0.3164,-0.2044,-0.1484,-0.0462,0.1824,0.2822,0.6716,0.8394,1,0.8832,0.9562,0.9732,0.9902,0.9416,0.8784,0.7348,0.6034,0.416,0.3796,0.4234,-0.48,-0.1764,0.2612,0.3204,-0.166,-0.2562,-0.498,-0.4954,-0.511,-0.5522,-0.5342,-0.4338,-0.3514,-0.3694,-0.2586,-0.112,0.0218,0.2922,0.5058,0.7966,0.928,0.9846,0.9382,0.9562,1,0.897,0.8816,0.7092,0.5752,0.4362,0.3334,0.3256,-0.4398,-0.1838,0.4036,0.3886,-0.3192,-0.5332,-0.6084,-0.5994,-0.6536,-0.6838,-0.753,-0.5332,-0.482,-0.497,-0.3102,-0.2922,-0.0302,0.0844,0.3464,0.7018,0.9278,1,0.9548,0.9548,0.997,0.8554,0.7048,0.6024,0.485,0.3192,0.2078,0.5362,-0.0738,0.3082,0.724,0.6938,-0.2212,-0.3914,-0.4594,-0.4706,-0.5842,-0.7694,-0.603,-0.4292,-0.4292,-0.501,-0.55,-0.6332,-0.4744,-0.3686,-0.07,0.327,0.7844,1,0.9206,0.9774,0.9924,0.8526,0.7732,0.4178,0.2174,0.2816,0.1872,0.4556,-0.1522,0.3402,0.0406,0.1218,-0.3808,0.071,0.005,-0.6142,-0.67,-0.6852,-0.868,-0.5228,-0.4366,-0.665,-0.7412,-0.604,-0.401,-0.2538,0.0254,0.4264,0.8224,0.731,0.7462,0.8426,1,0.2944,0.0558,-0.0356,-0.0508,0.0304,0.0964,0.3248,-0.5348,0.1628,0.2558,0.1162,0.0698,-0.2558,-0.2558,-0.3954,-0.1628,-0.2558,-0.628,-0.1628,-0.0232,0.3954,0.3024,0.0698,0.721,0.628,0.2094,0.3488,0.3954,0.2094,0.5348,0.7674,0.814,0.721,0.721,0.721,0.2094,0.5814,0.7674,1,-0.44,0.12,0,0.32,0.2,-0.12,-0.12,-0.08,-0.12,-0.32,-0.36,0.04,0,0.16,0.2,0.84,0.8,0.88,0.76,1,0.92,0.92,0.84,0.72,0.68,0.76,0.64,0.68,0.6,0.16,0.2,0.68,-0.4074,-0.0864,0.5308,0.4814,-0.432,-0.6296,-0.7284,-0.8272,-0.8024,-0.7778,-0.8766,-0.6296,-0.605,-0.926,-0.5802,-0.679,-0.432,-0.0864,-0.1604,0.0864,0.4814,0.8272,0.9012,0.9506,1,0.9754,0.605,0.5802,0.1852,0.037,0.5556,0.9754,-0.9418,-0.947,-0.9494,-0.947,-0.947,-0.9444,-0.9596,-0.9418,-0.9444,-0.9596,-0.9444,0.416,0.9646,0.7826,0.6688,0.8558,0.77,0.4842,0.325,-0.11,-0.5222,-0.6562,-0.8256,-0.8964,-0.9494,-0.952,-1,-1,-1,-1,-1,-1,-1,-0.8396,-0.6644,-0.6288,-0.5796,-0.6258,-0.7108,-0.7782,-0.8092,-0.7792,-0.7966,-0.7452,-0.2432,0.505,0.7908,0.9062,0.44,0.2558,-0.159,-0.6064,-0.843,-0.9174,-0.9348,-0.9626,-0.9754,-0.9802,-0.983,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,1,0.0532,-0.049,-0.0424,-0.1756,-0.1068,-0.1108,-0.1374,-0.333,-0.6086,-0.5574,-0.6258,-0.5686,-0.6686,-0.8486,-0.9086,-1,-1,-1,-1,-1,-1,-1,1,0.4858,-0.8,-0.7714,-0.7714,-0.8,-0.9428,-0.9142,-0.9714,-0.7714,1,1,0.6858,-0.9714,-0.9142,-0.8572,-0.8858,-0.4,0.0286,0,-0.6,-0.7428,-0.8858,-0.7428,-0.8286,-0.7142,-1,-1,-1,-1,-1,-1,-1,0.505,0.5164,0.529,0.5382,0.5522,0.5594,0.5576,0.5436,0.47,0.1736,0.3454,0.367,0.4004,0.4266,0.4648,0.528,0.6008,0.7134,0.8376,0.8518,-0.6266,0.0588,-0.7398,-0.7776,-0.368,0.05,0.333,1,-0.6292,-0.7004,-0.5014,-0.4392,-0.3516,-0.3296,-0.178,-0.0538,0.0448,0.1526,0.0302,0.0594,0.1434,0.0192,0.0758,0.18,0.41,0.158,0.3078,0.3772,0.6438,0.801,0.8776,0.958,1,0.9818,0.8028,0.9652,0.7552,0.768,0.6548,0.2932,-0.7696,-0.7902,-0.6566,-0.617,-0.645,-0.3778,-0.347,-0.2604,-0.2312,-0.2326,-0.2062,-0.1386,-0.0946,-0.0052,-0.0242,0.0976,0.1606,0.1636,0.1094,0.2106,0.2986,0.4864,0.5862,0.6846,0.7344,0.9002,0.9736,0.928,0.9604,1,0.8752,0.6478,-0.778,-0.829,-0.7172,-0.5144,-0.5176,-0.3898,-0.3194,-0.1326,-0.0638,-0.0272,-0.0352,0.1422,0.1294,0.163,0.1486,0.2572,0.3146,0.2812,0.2876,0.3994,0.5016,0.5544,0.599,0.6758,0.9266,0.9808,1,0.9042,0.9904,0.9632,0.7684,0.532,-0.8506,-1,1,-1,-1,-1,-1,1,-1,0.138,0.1552,0.3448,0.3966,0.0862,0.1206,0.2242,-0.0172,0.2758,0.569,0.569,0.8966,1,0.5862,0.5518,0.6552,0.7242,0.069,0.1552,0.3104,0.1724,0.0862,0,0.1034,0.6896,0.1034,0.2932,0.069,-0.1896,-0.2414,0.4138,-0.0172,'3'
-0.4048,0.2722,0.2482,0.3368,0.2722,-0.102,-0.1462,-0.0986,-0.221,-0.2006,-0.1904,-0.0714,-0.0238,0.0714,0.187,0.3572,0.636,0.7858,1,0.9456,0.8266,0.8606,0.9762,0.9898,0.7518,0.7552,0.6496,0.6394,0.449,0.313,0.238,0.262,-0.4102,0.0428,0.0884,0.2992,0.1282,-0.094,-0.228,-0.1852,-0.228,-0.225,-0.2792,-0.3248,-0.1766,-0.2222,-0.0684,0.0626,0.188,0.567,0.735,0.943,0.9972,0.9886,0.9914,1,0.9602,0.869,0.7778,0.7066,0.5528,0.3618,0.359,0.3048,-0.4714,-0.109,0.1254,0.2534,-0.049,-0.2126,-0.3406,-0.4088,-0.3706,-0.4878,-0.4196,-0.2942,-0.3188,-0.2316,-0.2942,-0.1144,0.0436,0.2044,0.5476,0.6376,0.921,0.8856,0.9482,0.9564,1,0.861,0.7766,0.7384,0.5804,0.3406,0.4196,0.3896,-0.5,-0.1962,0.163,0.2182,-0.1962,-0.2846,-0.5608,-0.5332,-0.536,-0.4944,-0.5498,-0.4834,-0.3978,-0.3868,-0.2708,-0.1712,-0.0856,0.152,0.4198,0.6546,0.8454,0.9338,0.9198,0.9614,1,0.964,0.8232,0.7486,0.6574,0.4198,0.2762,0.373,-0.5278,-0.2218,0.2732,0.2474,-0.2704,-0.5822,-0.671,-0.6452,-0.5794,-0.6194,-0.6022,-0.545,-0.5108,-0.4306,-0.4106,-0.3218,-0.2246,0.0902,0.2818,0.5394,0.857,0.9198,0.9456,0.8742,0.9972,1,0.8312,0.7768,0.5594,0.465,0.4592,0.5222,-0.4248,-0.0386,0.6138,0.5366,-0.1622,-0.498,-0.5482,-0.7258,-0.6178,-0.807,-0.7876,-0.6796,-0.6718,-0.6756,-0.5908,-0.583,-0.4208,-0.336,-0.0966,0.3822,0.7028,0.915,0.7182,0.6602,1,0.9074,0.4788,0.529,0.4556,0.3552,0.61,0.5714,-0.1752,0.2598,0.3108,0.3334,-0.435,-0.3672,-0.339,-0.4238,-0.4858,-0.6272,-0.661,-0.5198,-0.5536,-0.5084,-0.5084,-0.5594,-0.644,-0.4632,-0.2316,0.4406,0.7232,1,0.7684,0.6046,0.9492,0.87,0.3842,0.2768,0.017,0.2372,0.452,0.531,-0.1892,0.6756,0.7838,0.6756,0.3514,-0.081,0.081,-0.1352,-0.027,-0.1352,-0.1352,-0.4594,-0.2432,0.081,-0.2432,0.3514,0.3514,0.8918,1,0.4594,0.1892,0.6756,0.6216,0.7298,0.2972,0.7838,0.7298,0.7838,0.6216,0.4054,0.2432,0.7298,-0.3878,0.3062,0.2654,0.347,0.3062,0.0204,-0.102,0.0204,-0.102,-0.102,-0.1428,0.1428,0.0204,0.2654,0.2654,0.6326,0.7552,1,1,0.8776,0.7142,0.9592,0.9592,0.8776,0.551,0.7142,0.347,0.5102,0.3062,0.347,0.2244,0.347,-0.5348,-0.2094,0.4186,0.3488,-0.1628,-0.5348,-0.5814,-0.5348,-0.7674,-0.628,-0.6512,-0.6976,-0.4418,-0.5582,-0.4186,-0.6046,-0.279,-0.1628,0.093,0.372,0.4418,0.721,0.7906,0.8838,1,0.907,0.5582,0.7674,0.5116,0.186,0.5582,0.6046,-0.9232,-0.9424,-0.9478,-0.9478,-0.9424,-0.9452,-0.9506,-0.9368,-0.9478,-0.9424,-0.8848,0.5912,0.9342,0.7504,0.646,0.6268,0.4898,0.2784,0.3196,0.2866,-0.2072,-0.616,-0.764,-0.8574,-0.9204,-0.926,-0.9342,-1,-1,-1,-1,-1,-1,-0.7042,-0.6456,-0.434,-0.2314,-0.5286,-0.487,-0.6068,-0.5348,-0.6726,-0.4842,-0.5344,-0.2608,0.5206,0.7198,0.7554,0.8046,0.8234,0.4278,-0.1566,-0.5896,-0.797,-0.895,-0.922,-0.9484,-0.9654,-0.9688,-0.9712,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,1,-0.05,-0.0976,-0.0526,-0.1226,-0.085,0.0464,0.1244,-0.0446,-0.44,-0.569,-0.6446,-0.56,-0.45,-0.5568,-0.7268,-0.82,-1,-1,-1,-1,-1,-1,1,-0.8,-0.7142,-0.7428,-0.7428,-0.9142,-0.9714,-0.8572,-0.7142,-0.7142,1,1,1,-0.7714,-0.9142,-1,-0.8858,-0.6286,-0.5142,0.1142,-0.3142,-0.7142,-0.8286,-0.8286,-0.7428,-0.8,-0.9142,-1,-1,-1,-1,-1,-1,0.4278,0.4418,0.4582,0.465,0.4802,0.4934,0.495,0.485,0.4228,0.183,0.3564,0.3918,0.3972,0.4494,0.4784,0.533,0.6152,0.7094,0.8672,0.9222,-0.6134,-0.0118,-0.548,-0.63,-0.3194,0.0378,0.459,0.5666,-0.7114,-0.6624,-0.4882,-0.499,-0.2814,-0.3466,-0.2558,-0.1978,-0.1052,0.0454,0.0108,-0.0128,-0.02,0.0272,0.0562,0.1888,0.2868,0.1216,0.363,0.597,0.7586,0.8694,1,0.9982,0.882,0.8312,0.7894,0.8584,0.873,0.8874,0.7114,0.4138,-0.6804,-0.7068,-0.6154,-0.556,-0.4218,-0.343,-0.2738,-0.2766,-0.195,-0.1536,-0.0802,-0.065,0.0276,0.0844,0.0816,0.2518,0.2918,0.3056,0.372,0.5464,0.6266,0.758,0.7372,0.7414,0.758,0.7594,0.7788,0.7746,0.8782,0.9792,1,0.8672,-0.7748,-0.7954,-0.6688,-0.5188,-0.4246,-0.3406,-0.2494,-0.1214,0.0214,0.0332,-0.0332,0.1538,0.173,0.1096,0.1272,0.1936,0.3334,0.298,0.3568,0.4526,0.5438,0.7984,0.7542,0.6454,0.6114,0.719,0.8382,0.663,0.813,1,0.8382,0.6394,-0.8192,-1,1,-1,-1,-1,-0.8,1,-1,-0.5582,0.0466,0.1396,0.1628,0.093,0.1628,0.2094,0.0466,-0.1396,0.8372,0.7906,0.8838,0.8372,0.4652,0.4884,1,0.814,0.1396,-0.2326,-0.1628,0.0466,0.2094,-0.279,0.1162,-0.186,-0.093,0.4652,0.628,-0.3954,-0.2094,0.3954,0.186,'3'
-0.3986,0.0368,0.1336,0.2904,0.083,-0.1082,-0.2534,-0.2396,-0.2718,-0.3226,-0.2142,-0.3064,-0.1706,0.0024,0.0784,0.2328,0.2534,0.689,0.6566,0.9516,0.8548,0.8388,0.9056,1,0.7466,0.7442,0.7466,0.6958,0.3802,0.2672,0.1706,0.1036,-0.3994,-0.0122,0.1332,0.263,0.0012,-0.153,-0.2476,-0.3004,-0.3664,-0.4126,-0.3048,-0.2564,-0.2256,-0.1882,-0.1266,0.0496,0.1684,0.3378,0.6854,0.8064,0.989,0.9692,0.9208,0.9604,1,0.9164,0.9252,0.758,0.6326,0.4522,0.3774,0.3598,-0.4318,-0.118,0.228,0.2784,-0.1982,-0.3058,-0.3998,-0.4388,-0.4364,-0.5372,-0.4502,-0.3952,-0.409,-0.338,-0.1912,-0.1156,-0.0218,0.2394,0.4616,0.716,0.89,0.977,0.8946,0.9382,1,0.9932,0.9474,0.7962,0.6426,0.5326,0.3654,0.3172,-0.4944,-0.2356,0.2356,0.1986,-0.339,-0.534,-0.5956,-0.64,-0.7066,-0.709,-0.6622,-0.5586,-0.5636,-0.4994,-0.3638,-0.2306,-0.1468,0.0826,0.2922,0.64,0.8076,0.9038,0.8422,0.9136,0.958,1,1,0.7632,0.593,0.5462,0.3046,0.2676,-0.4486,-0.0552,0.4308,0.3114,-0.3084,-0.5618,-0.693,-0.8062,-0.8302,-0.7466,-0.7288,-0.7168,-0.5768,-0.5052,-0.4784,-0.395,-0.2668,-0.0612,0.0402,0.4038,0.8628,0.9226,0.8032,0.9524,0.9524,1,0.8956,0.7734,0.5648,0.4218,0.2488,0.4844,-0.3204,0.0736,0.5368,0.3376,-0.3896,-0.5324,-0.922,-0.8096,-0.6494,-0.6926,-0.8528,-0.593,-0.4848,-0.7966,-0.8052,-0.7012,-0.4458,-0.4978,-0.2814,0.1992,0.8874,0.974,0.8096,0.9654,1,0.9956,0.6796,0.5412,0.567,0.4762,0.5152,0.9394,-0.2236,0.311,-0.167,-0.0232,-0.3316,-0.1362,-0.2236,-0.7172,-0.5836,-0.6966,-0.5424,-0.527,-0.5322,-0.6812,-0.5116,-0.419,-0.3778,-0.27,0.3368,0.7584,0.9846,1,0.6246,0.9126,0.9486,0.671,0.3676,-0.1156,-0.0952,0.0642,0.0334,0.3214,-0.36,0.12,0.16,0.4,0.12,-0.08,-0.2,-0.2,-0.12,-0.32,-0.16,-0.08,0.04,0.08,0.12,0.4,0.36,0.72,0.6,0.8,0.76,0.88,1,1,0.84,0.68,0.68,0.44,0.2,-0.12,-0.48,-0.04,-0.3818,0.091,0.1636,0.3818,0.1272,-0.0182,-0.2,-0.2,-0.1636,-0.2364,-0.1636,-0.2728,-0.0546,0.091,0.1636,0.3454,0.3454,0.8182,0.7454,0.891,0.6728,0.9272,0.891,1,0.5636,0.6728,0.7818,0.709,0.3454,0.2364,0.0182,-0.1636,-0.3254,0.0844,0.4458,0.3254,-0.2048,-0.3976,-0.8796,-0.759,-0.4698,-0.5422,-0.494,-0.494,-0.3976,-0.5422,-0.6626,-0.4458,-0.1566,-0.1326,-0.1326,0.3976,0.7108,1,0.9278,0.735,0.9036,0.9278,0.9518,0.7108,0.8072,0.759,0.6868,0.976,-1,-1,-1,-1,-1,-1,-1,-0.9372,-0.9596,-0.8542,-0.3654,0.852,0.8878,0.731,0.731,0.4462,0.2422,0.1032,0.0112,-0.3902,-0.7242,-0.713,-0.8632,-0.926,-0.9642,-0.9664,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9816,-0.9826,-0.6422,-0.3358,0.106,0.7718,0.8308,0.5406,0.3008,-0.0364,-0.3736,-0.688,-0.8414,-0.9344,-0.9366,-0.9624,-0.9752,-0.9826,-0.983,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.91,0.7332,1,-0.122,-0.042,-0.032,-0.058,-0.004,0.006,-0.136,-0.562,-0.64,-0.571,-0.8346,-0.8534,-0.8468,-0.9134,-0.9534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,1,-0.5714,-0.9142,-0.9428,-0.8858,-0.8858,-0.8858,-0.7142,0.1714,-0.7714,-0.8858,-0.7714,-0.7714,-0.8,-0.8,-1,-1,-1,-1,-1,-1,-1,0.4328,0.4348,0.4502,0.4522,0.463,0.4652,0.4636,0.4302,0.305,0.0704,0.6952,0.6946,0.7176,0.7354,0.7712,0.8126,0.8666,0.9294,1,0.9276,-0.52,0.2236,-0.2252,-0.367,-0.1036,0.292,0.6262,1,-0.9184,-0.4898,-0.3878,-0.204,-0.2142,-0.1734,-0.1428,-0.0612,0.2756,0.1632,0.1224,0.3164,0.3266,0.347,0.3062,0.3674,0.4184,0.5102,0.4082,0.5102,0.6836,0.4592,0.4898,0.653,0.9082,1,0.9082,0.6836,0.7346,0.847,0.4898,0.204,-0.633,-0.5504,-0.6056,-0.4862,-0.5504,-0.4862,-0.3854,-0.578,0.0276,-0.0642,-0.2478,0.0642,0.1192,0.0366,0.1192,0.211,0.3854,0.2752,0.422,0.5046,0.7064,0.6422,0.6238,0.8348,0.7614,1,0.9174,0.6972,0.6056,0.633,0.6422,0.523,-0.187,-0.0374,-0.0748,-0.4954,-0.4112,-0.3552,-0.243,-0.0654,0.3084,0.4392,0.3832,0.4206,0.4766,0.2804,0.1402,0.1588,0.2242,0.187,0.3458,0.3364,0.5046,1,0.7664,0.5794,0.7758,0.9252,0.7384,0.5234,0.1962,0.3644,0.4766,0.0842,-0.3236,-1,-1,1,-0.6,-1,-1,-0.6,-1,0.2156,0.353,0.0784,0.3334,0.6078,0.196,0.4314,0.2942,0.7648,1,0.5686,0.6862,0.4902,0.6862,0.4902,0.549,0.647,0.196,0.2352,0.2352,0.6078,0.6078,0.4118,0.8432,0.8432,0.353,0.3922,0,-0.0784,0,0.2156,-0.3922,'4'
-0.3158,0.1648,0.1046,0.3218,0.1666,-0.0272,-0.2384,-0.155,-0.2732,-0.2422,-0.1532,-0.1686,-0.062,-0.1338,0.0562,0.0214,0.2132,0.5348,0.6764,0.872,0.967,0.8314,0.8662,1,0.9864,0.7442,0.6782,0.6396,0.5658,0.471,0.372,0.3934,-0.4124,-0.0062,-0.0854,0.062,-0.1212,-0.222,-0.3584,-0.3406,-0.3548,-0.4016,-0.434,-0.4268,-0.2794,-0.3172,-0.2362,-0.1034,-0.0854,0.1914,0.2884,0.6082,0.8042,1,0.894,0.815,0.8886,0.9354,0.8688,0.8472,0.6694,0.592,0.4052,0.4448,-0.3942,-0.0062,0.0996,0.2012,-0.1908,-0.2822,-0.4356,-0.5374,-0.5146,-0.61,-0.5976,-0.4316,-0.4626,-0.4336,-0.3796,-0.2656,-0.137,-0.0186,0.2054,0.5104,0.805,0.9688,1,0.8568,0.9834,0.9772,0.9356,0.7988,0.7344,0.6764,0.4772,0.5062,-0.3806,-0.0636,0.2388,0.2172,-0.4142,-0.623,-0.647,-0.6662,-0.731,-0.7214,-0.6854,-0.6518,-0.6278,-0.5486,-0.4214,-0.3614,-0.3254,-0.1452,0.1524,0.4286,0.7022,0.9976,1,0.8392,0.7286,0.8512,0.9328,0.784,0.6638,0.6542,0.4598,0.4334,-0.3186,0.1474,0.7148,0.5562,-0.2394,-0.3978,-0.6164,-0.6926,-0.8098,-0.8098,-0.794,-0.7876,-0.6386,-0.5658,-0.496,-0.477,-0.4264,-0.2394,0.0302,0.2774,0.6736,1,0.9302,0.8352,0.9144,0.905,0.9746,0.87,0.721,0.7052,0.6354,0.7242,-0.2992,-0.0018,0.2036,0.0974,-0.0762,-0.0762,-0.4088,-0.7238,-0.7168,-0.8902,-0.7062,-0.5292,-0.6708,-0.7238,-0.7628,-0.777,-0.7132,-0.423,-0.0584,0.5752,0.816,0.869,0.7982,0.7522,0.8868,1,0.6142,0.3558,0.2,0.3204,0.3452,0.5964,-0.3184,0.0338,-0.0974,-0.0974,-0.1648,0.0674,-0.1274,-0.4494,-0.472,-0.5768,-0.7454,-0.558,-0.3782,-0.4606,-0.573,-0.4194,-0.4644,-0.0038,0.6218,0.6966,0.5244,0.3446,0.367,0.7828,1,0.7902,0.1872,0.131,0.2284,0.2248,0.2134,0.221,-0.3334,0.2156,0.255,0.3726,0.1372,-0.0196,-0.3726,-0.255,-0.2156,-0.1764,-0.0588,-0.0588,-0.0196,-0.1372,0.2156,0.0588,0.3334,0.6862,0.8432,0.804,0.7648,0.7648,0.8432,1,1,0.7648,0.7254,0.2942,0.2156,0.1764,0.2942,0.3334,-0.1076,0.323,0.323,0.4462,0.323,0.2,-0.077,0.0462,-0.0462,0.0154,0.077,0.077,0.1692,0.1076,0.323,0.2308,0.4462,0.6924,0.877,0.7846,0.8154,0.8462,0.9692,0.9384,1,0.8154,0.8462,0.6308,0.6308,0.5384,0.5076,0.323,-0.0624,0.25,0.4792,0.5416,0.375,0.2292,-0.0416,-0.2292,-0.1876,-0.3542,-0.4584,-0.125,-0.0208,-0.1876,-0.5208,-0.5,-0.125,0.0208,0.2084,0.5416,0.7084,0.9584,0.9376,0.8958,0.8958,1,0.8542,0.5834,0.7084,0.5624,0.625,0.625,-1,-1,-1,-1,-1,-1,-1,-0.8936,-0.9514,-0.8752,-0.207,0.8774,0.882,0.5236,0.4544,0.3526,0.1214,0.0706,0.0682,-0.4266,-0.6716,-0.7064,-0.8844,-0.9284,-0.919,-0.9492,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9768,-0.9834,-0.8176,-0.19,-0.052,0.6816,0.88,0.411,-0.0782,-0.4752,-0.6872,-0.7232,-0.8378,-0.9098,-0.9246,-0.9636,-0.9708,-0.9724,-0.9782,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8448,-0.8668,-0.8234,0.75,-0.1284,0.0482,0.0766,0.0616,-0.0184,-0.1718,-0.3834,-0.585,-0.6584,-0.515,-0.5386,-0.6768,-0.5368,-0.7868,-0.6,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5142,0.2286,1,1,1,-0.6286,-0.8572,-0.8286,-0.9428,-0.7428,-0.6858,-0.8286,-0.6,-0.8572,-0.7142,-0.7714,-0.8572,-0.8572,-0.8,-1,-1,-1,-1,-1,-1,-1,0.4364,0.447,0.4488,0.4572,0.4578,0.4586,0.4398,0.4026,0.2512,0.1526,0.7618,0.7768,0.769,0.8198,0.859,0.912,0.9678,1,1,0.9666,-0.56,0.447,-0.2196,-0.4552,-0.2318,-0.0206,0.2022,1,-0.5644,-0.5248,-0.1882,-0.1684,-0.307,-0.3862,-0.307,-0.3466,-0.208,0.0892,0.0892,0.2278,0.307,0.0892,0.2872,0.406,0.3862,0.0496,0.307,0.8614,1,1,0.7228,0.505,0.3268,0.3664,0.3466,0.2674,0.1882,0.2674,0.1684,-0.1882,-0.4534,-0.3416,-0.5404,-0.5032,-0.6024,-0.3664,-0.2422,-0.354,-0.205,0.1056,-0.031,0.2546,0.2796,-0.0434,0.2546,0.3292,0.354,0.3044,0.3168,0.8634,0.851,1,0.7516,0.5404,0.4286,0.528,0.615,0.8012,0.8634,0.6894,0.7142,0.1926,0.0714,0.3,0.2858,-0.3572,-0.2142,-0.1572,-0.1,0.1,0.1286,0.4858,0.4286,0.9,0.8286,0.5142,0.3142,0.3428,0.4714,0.3286,0.5714,0.7572,0.9858,1,0.6714,0.5714,0.6,0.8714,0.8286,0.7142,0.8,0.7,0.5,0.3572,1,-1,-1,1,-1,-1,-1,-0.7334,-1,-0.6364,0.1136,-0.0454,0.3182,0.1818,0.341,0.2954,0.5228,1,0.7954,0.341,0.6818,0.8864,0.5682,0.4318,0.9318,0.591,0.4546,0.409,0.4772,0.2728,0.4546,0.5454,0.3636,0.4318,0,-0.0454,0.25,0.0682,-0.1818,0.0454,-0.0228,'4'
-0.5734,-0.2368,-0.0964,0.0154,-0.2224,-0.3016,-0.5608,-0.613,-0.622,-0.64,-0.568,-0.5194,-0.5068,-0.4276,-0.4834,-0.3304,-0.1,-0.0262,0.316,0.5032,0.8182,0.748,0.6202,0.8182,0.8884,1,0.9982,0.7912,0.7138,0.5734,0.4276,0.4492,-0.462,-0.1376,-0.02,0.0816,-0.1758,-0.2826,-0.4692,-0.5308,-0.5126,-0.5272,-0.4728,-0.4276,-0.4492,-0.4492,-0.3786,-0.2554,-0.0562,-0.0164,0.2554,0.5416,0.7554,0.6486,0.7374,0.8316,0.8514,1,0.9474,0.826,0.6938,0.5978,0.4746,0.48,-0.4342,-0.0798,0.0922,0.198,-0.1482,-0.2414,-0.4902,-0.6,-0.6104,-0.5274,-0.517,-0.5606,-0.6124,-0.5088,-0.345,-0.2954,-0.2146,-0.0052,0.1958,0.5938,0.6766,0.888,0.8756,0.8342,0.8756,1,0.8798,0.9046,0.7472,0.687,0.3804,0.428,-0.4038,-0.0434,0.237,0.3304,-0.0812,-0.128,-0.4994,-0.6418,-0.5706,-0.575,-0.604,-0.8688,-0.6418,-0.5662,-0.4572,-0.4794,-0.3236,0.0522,0.1546,0.6574,0.664,0.9578,0.851,0.7998,0.9154,0.9288,1,0.9176,0.753,0.4972,0.386,0.5818,-0.243,0.232,0.5414,0.6796,0.2348,0.0774,-0.511,-0.6188,-0.71,-0.8232,-0.8094,-0.71,-0.7376,-0.6768,-0.5994,-0.5884,-0.4806,-0.0498,0.2596,0.6022,0.815,0.9586,0.9834,0.7458,0.8454,1,0.8536,0.7872,0.6768,0.6962,0.6686,0.8066,-0.0526,0.5822,0.4386,0.6364,0.2312,-0.1738,-0.5152,-0.6108,-0.5534,-0.6364,-0.7736,-0.6396,-0.7224,-0.7862,-0.7066,-0.6714,-0.413,-0.1068,0.2918,0.5216,0.7256,0.6396,0.7512,0.8086,1,0.8532,0.8182,0.4162,0.5024,0.5216,0.5312,0.8246,-0.4918,0.1688,0.2522,0.5028,0.0344,-0.1616,0.0816,-0.049,-0.4664,-0.6696,-0.6298,-0.2304,-0.2342,-0.4918,-0.6044,-0.343,0.107,0.5898,0.6734,0.6044,0.6044,0.4556,0.5898,0.942,1,0.51,0.3902,0.2886,0.3284,0.2958,0.481,0.666,-0.6562,-0.3124,-0.1876,-0.0312,-0.1876,-0.3124,-0.5,-0.5938,-0.6876,-0.6876,-0.625,-0.4688,-0.4688,-0.5,-0.6562,-0.375,-0.0938,0,0.3124,0.2812,0.7812,0.6876,0.625,0.7812,0.9062,0.9688,1,0.8124,0.75,0.5312,0.375,0.3438,-0.6364,-0.303,-0.1818,-0.0304,-0.1818,-0.3334,-0.5758,-0.697,-0.6364,-0.6364,-0.5758,-0.5454,-0.5454,-0.4848,-0.5454,-0.3636,-0.1212,-0.0304,0.3334,0.3636,0.8788,0.8484,0.4848,0.6666,0.8182,0.9394,1,0.6364,0.606,0.5758,0.5454,0.606,-0.2106,0.3422,0.7106,0.8684,0.3422,0.1052,-0.7632,-0.8948,-0.7894,-0.8948,-0.7894,-0.6842,-0.6842,-0.6052,-0.6052,-0.421,-0.5,-0.2368,-0.0264,0.3948,0.7632,1,0.9736,0.421,0.6052,0.8684,0.7632,0.7368,0.2368,0.3158,0.7632,0.8422,-1,-1,-1,-1,-1,-1,-1,-1,-0.9404,-0.9596,-0.3092,0.2348,0.4388,0.5494,0.7344,0.9682,0.9404,0.9362,0.73,0.0798,-0.2858,-0.6834,-0.849,-0.8894,-0.9342,-0.9532,-0.9532,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.99,-0.9912,-0.0346,0.8056,0.711,0.334,0.1224,-0.1556,-0.301,-0.5292,-0.7134,-0.8478,-0.8882,-0.9432,-0.9716,-0.9742,-0.9818,-0.9842,-0.9882,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.9934,-0.29,0.2054,0.218,0.1744,0.1454,0.0272,-0.0564,-0.271,-0.6364,-0.642,-0.4128,-0.3982,-0.4334,-0.4468,-0.66,-0.6868,-0.7868,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,-1,-1,-1,-1,-0.9142,-0.7428,-0.0286,-0.8572,-0.7142,-0.4858,-0.7714,-0.7142,-0.7714,-0.8,-0.0858,-1,-1,-1,-1,-1,-1,0.3392,0.3338,0.3244,0.3252,0.317,0.3076,0.3032,0.2926,0.25,0.2074,1,1,1,1,1,1,1,1,1,1,-0.6534,0.3058,0.36,0.5588,0.7476,0.9928,0.8338,1,-0.1804,0.1148,0.1148,-0.1804,-0.1476,-0.1476,-0.082,-0.0164,0.2132,0.5082,0.705,0.9344,0.9016,1,0.9016,0.8688,0.836,0.541,0.5082,0.246,-0.0492,-0.1148,-0.3114,-0.4426,-0.4098,-0.5738,-0.3114,-0.1148,-0.2132,-0.1148,-0.1476,-0.705,-0.2536,0.0846,0.0422,-0.2112,-0.3662,-0.3522,-0.3802,-0.3098,-0.0282,0.4084,0.6478,0.7888,0.9436,1,0.9014,0.7184,0.6056,0.4084,0.3522,0.169,-0.014,-0.3098,-0.7042,-0.7184,-0.6478,-0.6902,-0.2254,-0.1126,-0.1268,0.0564,-0.0846,-0.338,-0.1698,0.1572,0.1194,-0.1572,-0.4842,-0.3082,-0.2076,-0.195,0.1194,0.4088,0.7106,0.6982,0.9372,1,0.8616,0.6604,0.5724,0.4716,0.2202,0.044,-0.0818,-0.1572,-0.5346,-0.5094,-0.4088,-0.4466,-0.2202,0.0314,-0.0062,0.0692,0.132,-0.0818,1,-1,-1,1,-0.8,-1,-1,-0.8334,1,-0.5464,0.0104,0.1134,0.3196,-0.031,0.134,0.3196,0.4846,0.9588,0.6908,0.0516,0.4432,1,0.7732,0.1958,0.3814,0.732,0.031,0.1958,0.2372,0.2372,-0.1752,0.031,0.1958,0.4226,-0.0928,0.2784,0.2372,-0.0104,0.0722,0.3814,0.0516,'5'
-0.4388,0.0158,-0.0136,-0.1058,-0.1874,-0.4366,-0.5624,-0.5078,-0.6294,-0.5142,-0.556,-0.4576,-0.4744,-0.3968,-0.2922,-0.246,-0.177,-0.0974,0.265,0.4116,0.7382,0.734,0.6084,0.5498,0.8052,0.8596,1,0.9518,0.7718,0.6524,0.512,0.4702,-0.2996,0.186,0.1694,-0.0392,-0.0992,-0.2872,-0.3534,-0.4236,-0.4918,-0.3534,-0.438,-0.2892,-0.3822,-0.2272,-0.2666,-0.0496,-0.06,0.1488,0.3554,0.56,0.7872,0.9752,0.8574,0.4834,0.6342,0.7976,0.8492,1,0.8512,0.7376,0.5702,0.4918,-0.3422,0.0858,0.0212,-0.0412,-0.1818,-0.3088,-0.5094,-0.505,-0.4938,-0.4782,-0.4492,-0.4694,-0.4136,-0.4158,-0.3244,-0.2976,-0.1974,-0.0568,0.2286,0.4114,0.699,0.7948,0.7592,0.6478,0.8104,0.8194,1,0.951,0.8796,0.7146,0.5296,0.4604,-0.4364,-0.1182,0.0046,0.059,-0.3478,-0.4296,-0.6796,-0.5864,-0.575,-0.691,-0.6318,-0.5886,-0.6022,-0.5728,-0.4614,-0.3614,-0.3136,-0.1772,0.0546,0.4546,0.6772,0.866,0.8636,0.6318,0.8,0.8864,0.9818,1,0.8636,0.7046,0.425,0.5114,-0.5366,-0.3072,0.058,0.001,-0.3072,-0.659,-0.6874,-0.6546,-0.6154,-0.6808,-0.7072,-0.67,-0.6154,-0.5978,-0.5388,-0.506,-0.4316,-0.1344,0.0164,0.3508,0.694,0.8514,0.7334,0.6088,0.7508,0.9278,0.9846,1,0.882,0.836,0.6154,0.589,-0.5684,-0.1728,0.1894,0.0512,-0.3582,-0.5796,-0.6542,-0.787,-0.8258,-0.8728,-0.9586,-0.87,-0.7786,-0.776,-0.61,-0.6792,-0.6708,-0.4218,-0.1728,0.1922,0.6128,1,0.8866,0.5214,0.6542,0.7898,0.8174,0.7344,0.7178,0.6294,0.5492,0.657,-0.0968,0.2732,0.4194,0.3506,0.0452,-0.114,-0.299,-0.5096,-0.6946,-0.7248,-0.6302,-0.5268,-0.6774,-0.557,-0.471,-0.6086,-0.5526,-0.428,0.342,0.5784,1,0.9742,0.6688,0.8322,0.9268,0.9828,0.7376,0.3936,0.4108,0.5096,0.613,0.9054,-0.5692,-0.1384,-0.2308,-0.1384,-0.2616,-0.5076,-0.6,-0.6,-0.5692,-0.5692,-0.5384,-0.5076,-0.5692,-0.5692,-0.2616,-0.323,-0.2616,-0.1076,0.0154,0.5076,0.6308,0.6308,0.6924,0.7538,0.7538,1,0.9692,1,0.9076,0.7846,0.6924,0.477,-0.5152,-0.091,-0.1212,-0.1818,-0.2424,-0.4242,-0.5152,-0.5454,-0.606,-0.5758,-0.6666,-0.6364,-0.4848,-0.4546,-0.3636,-0.3334,-0.2728,-0.091,0.1516,0.3334,0.5758,0.4242,0.6364,0.7272,0.7878,0.909,1,0.7878,0.8484,0.4848,0.5758,0.5758,-0.6074,-0.1962,0.1028,-0.028,-0.3084,-0.4766,-0.5888,-0.6636,-0.7758,-0.7384,-0.813,-0.8878,-0.6636,-0.6074,-0.6636,-0.7384,-0.6074,-0.4206,-0.028,0.271,0.6074,0.8318,0.6822,0.5328,0.6448,0.8504,1,0.9626,0.7944,0.7758,0.6636,0.5514,-1,-1,-1,-1,-1,-1,-1,-1,-0.9674,-0.9618,-0.4584,0.2938,0.7626,0.9578,0.7646,0.5062,0.3282,0.1138,0.0354,-0.0066,-0.422,-0.5962,-0.7148,-0.8508,-0.9368,-0.9004,-0.9062,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9898,-0.9892,0.1346,0.8302,0.4168,0.468,0.5972,0.2372,0.2138,0.3488,0.2652,-0.4212,-0.864,-0.9118,-0.9218,-0.9476,-0.9674,-0.9694,-0.9716,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9068,-0.9468,-0.2734,0.2866,0.108,0.028,0.198,0.126,0.134,0.144,0.122,-0.126,-0.434,-0.596,-0.36,-0.1368,-0.5468,-0.46,-0.4934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,-0.6,-0.8286,-0.8572,-0.8858,-0.9428,-1,-0.6858,0.6572,0.6,-0.7142,-0.6858,-0.4572,-0.5142,-0.8,-0.8572,-1,-1,-1,-1,-1,-1,0.1088,0.075,0.0768,0.067,0.0698,0.0722,0.0598,0.0692,0.0782,-0.008,1,1,1,1,1,1,1,1,1,1,-0.6134,0.1648,0.5586,0.9284,0.9628,0.676,0.5214,1,0.0732,0.2682,0.2682,0,0.122,0.0732,0.122,0.2196,0.3414,0.6342,0.8292,0.8292,0.9756,1,0.9268,1,0.9512,0.7318,0.7074,0.561,0.244,0.1952,0,-0.0976,-0.122,0,0.1952,0.244,0.122,0.2196,0.0976,-0.244,-0.2728,-0.091,-0.1364,-0.4696,-0.4848,-0.5152,-0.4696,-0.2424,-0.1364,0.2576,0.7576,0.6666,0.8484,0.9848,1,0.803,0.6666,0.3334,0.2424,0.0758,-0.3484,-0.3484,-0.5304,-0.6364,-0.7122,-0.5304,-0.2424,-0.1516,-0.0606,-0.0304,0.0152,-0.2728,-0.25,-0.1618,-0.147,-0.397,-0.4706,-0.5,-0.4706,-0.2352,-0.103,0.353,0.7058,0.6764,0.8382,1,0.9118,0.647,0.7206,0.4558,0.0294,-0.0148,-0.1618,-0.4412,-0.5,-0.5736,-0.8236,-0.6618,-0.3676,-0.1764,-0.1176,-0.147,-0.0148,-0.1618,1,-1,-1,1,-0.8,-1,-0.6,-0.8334,1,-0.1452,0.0968,0.2258,0.3388,0.0806,-0.0484,-0.1936,0.1452,0.5968,0.742,0.4516,0.6774,1,0.8548,0.7096,0.7904,0.7258,0.1936,0.371,0.4032,0.387,0.4032,0.3548,0.387,0.2742,-0.0484,0.387,0.242,0.5646,0.4838,0.4194,0.0806,'5'
-0.5646,-0.1836,-0.034,0.1564,0.4422,0.5238,0.5828,0.5012,0.3514,0.2472,0.3514,0.356,0.4196,0.669,0.8866,1,0.864,0.6962,0.8096,0.8412,0.9366,0.923,0.882,0.8096,0.873,0.6644,0.6462,0.4104,0.3786,0.3742,0.3242,0.2608,-0.5802,-0.2406,0.033,0.132,0.4198,0.415,0.6556,0.566,0.3396,0.2924,0.3208,0.4198,0.5094,0.6792,0.9292,1,0.6746,0.5094,0.717,0.6792,0.7924,0.8726,0.901,0.7688,0.717,0.6132,0.4764,0.2452,0.2878,0.2924,0.1556,0.2028,-0.5148,-0.222,0.071,0.1442,0.4188,0.6018,0.762,0.611,0.3868,0.3044,0.254,0.4416,0.611,0.6704,1,0.9588,0.5424,0.556,0.6338,0.7392,0.7162,0.8306,0.73,0.7666,0.6248,0.6064,0.428,0.3044,0.1212,0.3592,0.3272,0.1762,-0.5336,-0.2308,0.0866,0.1346,0.4086,0.7068,0.8462,0.6058,0.3846,0.3462,0.375,0.4424,0.6924,0.7788,1,0.851,0.6442,0.5818,0.5624,0.7116,0.774,0.8222,0.8654,0.7932,0.7116,0.5288,0.5528,0.2836,0.149,0.2836,0.351,0.3174,-0.5308,-0.2544,0.0518,0.0962,0.3234,0.758,0.832,0.4618,0.2888,0.2642,0.4222,0.4864,0.6938,0.9308,1,0.684,0.595,0.4666,0.605,0.6198,0.7234,0.753,0.8222,0.6938,0.6346,0.4962,0.3926,0.3976,0.1704,0.3136,0.4124,0.1556,-0.4432,-0.1676,0.1244,0.1514,0.3838,0.827,0.8756,0.3946,0.2864,0.281,0.454,0.4864,0.6324,0.973,1,0.6594,0.5568,0.4648,0.4378,0.519,0.6162,0.7946,0.7838,0.5082,0.481,0.5028,0.3838,0.3352,0.373,0.5082,0.4594,0.2054,-0.1748,0.249,0.3308,0.3308,0.3382,0.8514,0.8514,0.487,0.2268,0.2268,0.3086,0.4796,0.777,0.9926,0.8884,0.5018,0.2566,0.3308,0.3978,0.5242,0.8588,1,0.6952,0.4944,0.4052,0.078,0.2194,0.3754,0.5316,0.6506,0.7992,0.539,-0.5294,-0.2058,0,0.2058,0.2648,0.5882,0.647,0.4412,0.2942,0.2352,0.3236,0.3236,0.4706,0.647,0.8824,0.8824,0.7352,0.7648,0.8236,0.8824,0.9412,1,0.853,0.9412,0.8824,0.7648,0.647,0.4706,0.4706,0.3824,0.4118,0.3236,-0.695,-0.356,-0.1186,0.0508,0.356,0.3898,0.4576,0.4238,0.2204,0.1864,0.2204,0.2882,0.3898,0.5932,0.7966,1,0.8984,0.5254,0.7288,0.7628,0.8984,0.8644,0.8644,0.7966,0.8306,0.661,0.5932,0.4238,0.1864,0.2882,0.2204,0.0508,-0.4086,-0.1652,0.1478,0.1826,0.4434,0.826,0.8782,0.513,0.3566,0.3566,0.5304,0.5826,0.7218,0.9826,1,0.687,0.6174,0.4782,0.5826,0.6174,0.7044,0.826,0.8608,0.6,0.513,0.5304,0.3392,0.3218,0.3044,0.2696,0.2696,0.0782,-1,-1,-1,-1,-1,-1,-1,-1,-0.9592,-0.9626,-0.6658,0.7084,0.6836,0.6888,0.776,0.8596,0.9414,0.9876,0.984,0.7458,0.0968,-0.3884,-0.5734,-0.8044,-0.8934,-0.9146,-0.9466,-0.9448,-0.9592,-0.9502,-0.9574,-0.9556,-0.9502,-1,-1,-1,-1,-1,-1,-1,-1,-0.9914,-0.9912,-0.7116,0.8182,0.7012,0.494,0.436,0.4656,0.5756,0.576,0.4506,-0.0288,-0.562,-0.8678,-0.9044,-0.9512,-0.954,-0.952,-0.9528,-0.9426,-0.9358,-0.9448,-0.9512,-0.959,-0.9654,-1,-1,-1,-1,-1,-1,-1,-1,-0.86,-0.8934,-0.5934,-0.195,-0.195,-0.27,-0.27,-0.405,-0.5,-0.584,-0.592,-0.592,-0.596,-0.432,-0.29,-0.13,0.2332,0.2466,0.39,0.4366,0.3032,0.09,0.1966,0.3132,0.1732,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,1,1,1,0.1428,-0.8286,-0.8858,-1,-0.9142,-0.9142,-0.6572,0.6,1,0.6286,0.4858,0.6,-0.0858,-0.8858,-0.8286,-0.8572,-0.8572,-0.9428,-0.9714,-0.8,-0.7428,1,1,1,1,1,1,1,1,1,1,-0.002,-0.002,-0.0236,-0.1318,-0.1506,-0.1892,-0.235,-0.3268,-0.3792,-0.5604,-0.6266,-0.5294,-0.6894,0.352,1,0.6014,0.5342,1,-0.2654,-0.2654,0.1836,0.3062,0.3062,0.4286,0.5918,0.7552,0.8776,0.9184,0.9592,1,1,0.9184,0.796,0.7142,0.5918,0.4286,0.347,0.2654,0.102,0.0204,-0.0204,-0.0204,0.0612,-0.0612,-0.1428,-0.2244,-0.0612,-0.3062,-0.4286,-0.6734,-0.403,-0.015,0.2538,0.3582,0.3284,0.3134,0.3432,0.8208,0.8656,0.7314,0.7462,1,0.9254,0.7612,0.6716,0.7164,0.6268,0.4478,0.3134,0.3432,0.1194,0.1792,0.0448,0.0448,-0.1044,-0.2538,-0.3432,-0.5672,-0.2836,-0.209,-0.2388,-0.388,-0.184,0.184,0.584,0.648,0.504,0.504,0.616,0.936,0.888,0.888,0.968,1,0.92,0.776,0.584,0.408,0.376,0.136,0.216,0.104,-0.12,-0.024,-0.152,-0.104,-0.296,-0.456,-0.536,-0.728,-0.6,-0.312,-0.28,-0.6,1,-1,-1,1,-1,-1,-0.4,-0.8334,-1,-0.9816,-0.7982,-0.633,-0.1376,-0.0826,-0.0458,0.5046,0.4862,0.3028,0.4128,0.688,0.688,0.5412,0.4862,0.688,0.5046,0.6146,0.523,0.8348,0.633,0.688,0.7982,0.7982,0.7064,0.8532,0.8716,1,0.5046,0.1192,0.7614,0.7064,0.0458,'6'
-0.5836,-0.2328,0.0082,0.1124,0.4576,0.4684,0.5672,0.463,0.315,0.2494,0.2712,0.3534,0.4466,0.6164,0.9506,1,0.715,0.622,0.6494,0.7972,0.9178,0.9342,0.9232,0.8904,0.9124,0.8466,0.7698,0.611,0.4684,0.4958,0.315,0.2602,-0.4452,-0.1006,0.0918,0.2036,0.5392,0.566,0.642,0.5838,0.4184,0.2706,0.3468,0.4854,0.481,0.7046,0.8658,1,0.8256,0.6868,0.6824,0.6824,0.812,0.736,0.8612,0.7182,0.7628,0.6108,0.6108,0.3512,0.2528,0.2214,0.2036,0.2438,-0.5202,-0.1464,0.0858,0.197,0.5656,0.591,0.7626,0.692,0.4696,0.3434,0.409,0.596,0.596,0.8384,0.8536,1,0.798,0.7424,0.697,0.6818,0.8738,0.798,0.9192,0.7778,0.8182,0.606,0.5556,0.2728,0.202,0.303,0.202,0.096,-0.465,-0.091,0.1896,0.2884,0.6416,0.6936,0.9636,0.8494,0.5116,0.5428,0.5428,0.6676,0.8494,1,0.922,0.9688,0.7922,0.709,0.6884,0.839,0.9168,0.9532,0.9428,0.9064,0.813,0.6832,0.4858,0.3818,0.2624,0.309,0.3298,0.2988,-0.5078,-0.1676,0.1624,0.2356,0.5446,0.8116,0.9896,0.8062,0.3456,0.513,0.4764,0.602,0.9006,0.932,1,0.9268,0.5654,0.691,0.7226,0.7226,0.8324,0.9738,0.7854,0.6596,0.7802,0.7172,0.335,0.2566,0.2828,0.3246,0.2932,0.4554,-0.4858,-0.1792,0.1688,0.2312,0.5376,0.8962,1,0.709,0.4078,0.5064,0.4806,0.5428,0.8858,0.8546,0.9688,0.787,0.626,0.6364,0.5688,0.5948,0.8962,0.9116,0.8234,0.6936,0.7038,0.548,0.5428,0.2364,0.2884,0.491,0.491,0.491,-0.3842,-0.0198,0.2716,0.2914,0.4768,0.9338,1,0.5496,0.2716,0.3046,0.5496,0.5298,0.8476,0.9404,0.9802,0.5298,0.4702,0.3842,0.1854,0.437,0.6424,0.6888,0.6888,0.5894,0.4966,0.49,0.3378,0.3774,0.4172,0.543,0.7616,0.5562,-0.6,-0.2924,-0.0462,0.077,0.3538,0.3846,0.477,0.4154,0.2924,0.2308,0.2616,0.323,0.3846,0.6616,0.877,0.8462,0.6924,0.6616,0.723,0.8462,0.9692,1,0.9384,0.8462,0.9384,0.9384,0.8154,0.6616,0.477,0.5384,0.477,0.4154,-0.6,-0.2666,-0.0334,0.1334,0.4334,0.4666,0.5334,0.5,0.2666,0.2,0.2334,0.3,0.5,0.6666,0.9,1,0.8334,0.6334,0.6334,0.7334,0.8666,0.8,0.8,0.8334,0.8334,0.7334,0.7,0.4334,0.4,0.4334,0.2334,0.1334,-0.469,-0.1328,0.1858,0.2566,0.5576,0.8054,1,0.823,0.3806,0.5398,0.4336,0.6106,0.9292,0.9824,0.9646,0.9116,0.6284,0.6638,0.7346,0.77,0.7522,1,0.823,0.6814,0.8054,0.77,0.292,0.2036,0.3274,0.416,0.3628,0.4868,-1,-1,-1,-1,-1,-1,-1,-1,-0.9738,-0.965,-0.2174,0.5982,0.7712,0.8864,0.8986,0.9056,0.9092,0.9458,0.9564,0.9528,0.5494,-0.1668,-0.551,0.1162,0.0184,-0.8394,-0.9214,-0.9528,-0.9564,-0.9528,-0.9634,-0.9546,-0.951,-1,-1,-1,-1,-1,-1,-1,-1,-0.9902,-0.9888,-0.1538,0.9244,0.881,0.5298,0.5092,0.52,0.5168,0.6548,0.624,0.5928,0.1724,-0.6018,-0.8198,-0.8144,-0.8282,-0.9156,-0.9086,-0.9148,-0.9194,-0.9244,-0.9322,-0.9258,-0.9138,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.92,-0.6468,-0.15,-0.225,-0.29,-0.3,-0.355,-0.405,-0.49,-0.564,-0.584,-0.584,-0.608,-0.51,-0.6034,-0.76,-0.2668,0.1766,0.4666,0.5132,0.4632,0.4766,0.6132,0.51,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,-0.7142,-0.8858,-1,-0.9142,-0.9428,-0.8858,-0.7428,-0.4572,1,1,0.7714,1,-0.0286,-0.5142,-0.7428,-0.8858,-0.8858,-0.9142,-0.8858,-1,-0.9714,1,1,1,1,1,1,1,1,1,1,0.1822,0.13,0.0702,0.0702,-0.0148,-0.0628,-0.1512,-0.2376,-0.3592,-0.5224,-0.6666,-0.553,-0.0346,0.977,0.8746,0.889,0.5428,1,-0.3962,-0.0944,0.132,0.283,0.132,0.2076,0.5094,0.7736,0.8114,0.7736,0.9246,1,1,0.8868,0.849,0.7736,0.6982,0.434,0.3208,0.2076,0.2076,0.0944,-0.0188,-0.0944,-0.1698,-0.283,-0.2452,-0.434,-0.3208,-0.6226,-0.3208,-0.434,-0.1964,0.3392,0.625,0.6608,0.5,0.5,0.6072,0.875,0.9464,0.75,1,0.9822,0.9822,0.8214,0.6608,0.6786,0.4822,0.2678,0.1608,0.0714,0.125,0.0536,-0.1964,-0.375,-0.5536,-0.6428,-0.5536,-0.7142,-0.6608,-0.4108,-0.4286,-0.9286,-0.2536,0.155,0.5212,0.5352,0.3522,0.3802,0.5352,0.9154,0.845,0.7888,1,0.986,0.9296,0.7888,0.5634,0.5492,0.4366,0.2112,-0.0282,0.0422,0,-0.0846,-0.0846,-0.2254,-0.5212,-0.6338,-0.5634,-0.7324,-0.7606,-0.6056,-0.5634,-0.7464,1,-1,-1,1,-0.8,-1,-0.8,-0.8334,1,-0.6212,-0.591,-0.106,-0.0152,0.1364,0.1666,0.2576,0.3788,0.3334,0.394,0.5758,0.697,0.6212,0.5606,0.5454,0.7424,0.7728,0.6364,0.606,0.8636,0.7122,0.7878,0.8484,0.9394,0.894,0.8182,0.7878,0.7122,0.6516,1,0.8788,0.4242,'6'
-0.287,0.1334,0.345,0.484,0.2,-0.0144,-0.2,-0.2376,-0.2608,-0.374,-0.2464,-0.1102,-0.058,0.055,0.0492,0.3594,0.4406,0.6174,0.6086,0.684,0.7856,0.7798,0.884,0.8724,1,0.8376,0.6348,0.6174,0.6174,0.3914,0.5072,0.4812,-0.392,-0.0246,0.466,0.5648,0.1296,-0.0772,-0.2284,-0.3888,-0.4228,-0.3734,-0.4228,-0.2932,-0.2746,-0.1914,0,-0.0154,0.2438,0.5186,0.6544,0.8828,0.895,0.8704,0.9044,1,0.9938,0.9722,0.8272,0.747,0.6172,0.3982,0.392,0.2654,-0.4484,-0.1032,0.3636,0.4144,-0.1654,-0.2588,-0.3974,-0.4794,-0.488,-0.5586,-0.5078,-0.4484,-0.3098,-0.3042,-0.1428,0.0326,0.0496,0.3918,0.6152,0.7256,0.8728,0.8642,0.9066,0.9322,1,0.9208,0.8586,0.7312,0.5388,0.5248,0.4398,0.3352,-0.3536,0.0064,0.4808,0.5414,-0.086,-0.2134,-0.4364,-0.4554,-0.4936,-0.6528,-0.4682,-0.4108,-0.4458,-0.3376,-0.1848,0.0192,0.0636,0.3376,0.6402,0.7484,1,0.9554,0.9426,0.879,0.93,0.8694,0.7898,0.7452,0.5924,0.5956,0.7134,0.6306,-0.2956,0.1412,0.4878,0.5594,-0.209,-0.6234,-0.7138,-0.7854,-0.725,-0.808,-0.7702,-0.6308,-0.5932,-0.6648,-0.5894,-0.5216,-0.4086,-0.3032,-0.0208,0.258,0.661,0.6798,0.612,0.9398,1,0.6308,0.435,0.5744,0.371,0.2694,0.5594,0.5142,-0.1738,0.385,0.122,0.1408,-0.338,-0.4178,-0.4554,-0.662,-0.5868,-0.6526,-0.601,-0.4976,-0.6338,-0.8356,-0.8592,-0.7794,-0.4694,-0.183,0.291,0.5916,1,0.986,0.7184,0.878,0.8732,0.7558,0.3616,0.2112,0.1268,0.1268,0.3052,0.0234,-0.5462,0.2212,0.0084,0.182,-0.2268,-0.3278,-0.2212,-0.2942,-0.619,-0.7872,-0.6582,-0.2774,-0.4454,-0.6638,-0.6694,-0.5238,-0.255,0.1372,0.4958,0.9048,0.9104,1,0.7198,0.7422,0.804,0.8096,0.255,0.1092,0.1316,0.126,0.4286,0.4454,-0.4782,-0.0434,0.1304,0.2174,-0.087,-0.3914,-0.6522,-0.6522,-0.5218,-0.5218,-0.6522,-0.3914,-0.3044,-0.174,-0.0434,0.1304,0.3478,0.4782,0.3044,0.3044,0.7826,0.7826,0.7826,0.913,1,0.6522,0.1304,0.3478,0.3478,0.6086,0.5652,0.2174,-0.4042,0.0638,0.3192,0.4042,0.149,-0.149,-0.2766,-0.3192,-0.3618,-0.4042,-0.3192,-0.149,-0.149,-0.0638,0.1064,0.3192,0.4468,0.6596,0.617,0.532,0.6596,0.7872,0.8298,0.7872,1,0.9148,0.4468,0.4894,0.532,0.2766,0.4042,0.0212,-0.1566,0.1808,0.5662,0.6144,-0.2772,-0.4216,-0.4458,-0.4698,-0.5422,-0.6386,-0.5662,-0.3734,-0.4458,-0.3976,-0.4216,-0.2772,-0.3012,-0.1326,0.1084,0.253,0.7108,0.7832,0.735,1,0.9518,0.5662,0.4458,0.7108,0.3734,0.4698,0.012,0.5904,-1,-1,-1,-1,-1,-0.9522,-0.9682,-0.9186,-0.9646,-0.9486,-0.6442,0.3204,0.8212,0.938,0.607,0.246,0.1044,-0.0248,-0.315,-0.5894,-0.6956,-0.8088,-0.8868,-0.9416,-0.9486,-0.9592,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.9724,-0.193,0.1622,0.2966,-0.1396,0.2238,0.7232,0.9398,0.7684,0.5036,-0.0134,-0.3492,-0.6248,-0.791,-0.7916,-0.8826,-0.9146,-0.9442,-0.9524,-0.9624,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8868,-0.94,0.2366,0.8932,0.8666,0.6066,-0.2276,-0.2876,-0.37,-0.3846,-0.229,-0.289,-0.3824,-0.6378,-0.5712,-0.669,-0.6334,-0.5434,-0.6068,-0.6668,-0.8268,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,0.1428,1,1,-0.1714,-0.9142,-0.9142,-1,-0.7428,-0.1142,0.2858,-0.7428,-0.9142,-0.8858,-0.8858,-0.8286,-0.8572,-0.7714,-1,-1,-1,-1,-1,-1,-1,0.3532,0.369,0.38,0.3864,0.391,0.3926,0.3932,0.3552,0.2774,0.1014,0.7438,0.6922,0.6994,0.7008,0.759,0.789,0.8068,0.8406,0.8668,0.8172,-0.6134,0.0118,-0.1064,-0.048,0.1692,0.4578,0.6002,1,-0.9038,-0.7518,-0.6556,-0.6,-0.3772,-0.3368,-0.1544,-0.195,-0.124,0.1392,0.1898,0.3518,0.4886,0.5544,0.757,0.833,0.914,0.8784,1,0.8532,0.8836,0.7722,0.8178,0.7722,0.7114,0.8684,0.6506,0.676,0.6152,0.4278,0.2102,-0.1696,-0.683,-0.7088,-0.6188,-0.683,-0.4562,-0.5074,-0.3832,-0.2676,-0.0536,0.135,0.3704,0.6018,0.6232,0.7174,0.8972,0.9614,0.9872,0.9786,0.9828,0.94,0.9572,0.9614,1,0.9272,0.97,0.8972,0.94,0.9272,0.7558,0.6574,0.5802,0.4562,-0.4812,-0.3754,-0.4408,-0.7028,-0.6322,-0.3804,-0.4156,-0.1032,0.1032,0.2392,0.4106,0.6978,0.6776,0.733,0.7732,0.9496,1,0.743,0.859,0.8086,0.9094,0.874,0.8036,0.6776,0.7178,0.7178,0.7632,0.6776,0.5114,0.471,0.2896,0.068,0.7282,-1,-1,1,-1,-1,-1,-0.2,1,-0.0166,0.6166,0.4834,0.2666,-0.05,-0.05,0.05,0.0834,0.4834,0.8166,0.8834,0.7666,1,0.5166,0.4666,0.5666,0.5334,0.4166,0.4334,0.3166,0.3334,0.4,-0.1166,-0.0834,0.6,0.2,0.5834,0.2834,-0.0666,-0.1334,0.0334,-0.5334,'7'
-0.288,0.1402,0.2036,0.3696,0.1524,-0.0166,-0.2368,-0.2218,-0.1794,-0.2488,-0.1976,-0.2126,-0.074,0.0196,0.095,0.27,0.288,0.6138,0.5988,0.8462,0.7556,0.7828,0.816,0.9096,1,0.997,0.7918,0.7586,0.6682,0.632,0.3424,0.2972,-0.41,0.0226,0.0742,0.2466,0.056,-0.062,-0.3072,-0.298,-0.3132,-0.3524,-0.2768,-0.3072,-0.171,-0.1256,-0.0378,0.183,0.2012,0.537,0.643,0.9546,0.8518,0.758,0.8668,0.9576,0.9668,1,0.9032,0.8698,0.6732,0.5704,0.416,0.2376,-0.4548,-0.0554,0.0408,0.172,-0.0438,-0.1486,-0.2944,-0.309,-0.4024,-0.484,-0.4548,-0.2974,-0.2244,-0.2478,-0.242,0.0146,0.0846,0.3032,0.6122,0.7202,0.8862,0.9358,0.933,0.9096,1,0.9038,0.9562,0.7668,0.7056,0.6414,0.6502,0.4052,-0.4676,-0.0588,0.0118,0.1706,-0.0558,-0.153,-0.353,-0.3588,-0.3912,-0.4824,-0.4942,-0.3706,-0.2706,-0.3206,-0.3,-0.0058,-0.0264,0.247,0.55,0.7,0.9294,1,0.9058,0.9088,0.997,0.9294,0.903,0.7618,0.7676,0.5206,0.5676,0.6882,-0.4232,0.0698,0.014,0.169,0.0078,-0.0698,-0.3302,-0.2714,-0.3458,-0.3086,-0.3612,-0.3674,-0.2372,-0.2868,-0.1504,-0.0636,0.0512,0.2806,0.5008,0.7612,0.8728,1,0.9938,0.9566,0.9906,0.9938,0.9038,0.8418,0.7768,0.786,0.7148,0.693,-0.4828,0.1724,0.1552,0.1552,0.0862,-0.1448,-0.2206,-0.3896,-0.4724,-0.5172,-0.6104,-0.5034,-0.5034,-0.462,-0.4586,-0.1758,-0.1794,0.1552,0.1828,0.4966,0.7518,1,0.838,0.6758,0.7276,0.7794,0.6896,0.6552,0.538,0.7276,0.6758,0.7,-0.5208,0.5256,0.5404,0.2812,0.3056,-0.0366,0.0562,-0.4474,-0.5256,-0.7408,-0.8582,-0.604,-0.599,-0.78,-0.7946,-0.5942,-0.374,-0.11,0.1442,0.599,0.9462,0.8582,0.9218,0.863,0.9414,0.78,1,0.8288,0.4768,0.4914,0.418,0.5794,-0.451,0.0196,0.0588,0.255,0.0196,-0.3334,-0.3334,-0.3726,-0.2942,-0.451,-0.4118,-0.2942,-0.2156,-0.098,-0.1372,0.098,0.255,0.451,0.647,0.7254,0.5686,0.4902,0.6862,0.8432,1,0.7648,0.7254,0.6078,0.4902,0.4902,0.1764,0.3726,-0.4118,0.0588,0.0588,0.3334,0.1372,-0.098,-0.2942,-0.2942,-0.2942,-0.3334,-0.3334,-0.3726,-0.1764,-0.0196,0.0196,0.1372,0.098,0.5686,0.451,0.804,0.6078,0.7648,0.9216,1,0.9608,1,0.8432,0.7254,0.647,0.4902,0.255,0.3726,-0.514,0.0468,0.0094,0.1028,0.0094,-0.1588,-0.2524,-0.3644,-0.4954,-0.4206,-0.6262,-0.4018,-0.5328,-0.4018,-0.3084,-0.1588,0.028,0.1588,0.3832,0.4954,0.944,1,0.57,0.701,0.813,0.8504,0.757,0.7944,0.701,0.701,0.6262,0.6448,-1,-1,-1,-0.9446,-0.9606,-0.9514,-0.9144,-0.9538,-0.9376,-0.6878,0.1422,0.889,0.9722,0.7942,0.5514,0.4612,0.3596,0.1468,0.0498,0.0312,-0.1584,-0.341,-0.5838,-0.7896,-0.919,-0.9398,-0.9168,-0.9376,-1,-1,-1,-1,-1,-1,-1,-1,-0.982,-0.9798,-0.7432,-0.5248,-0.0502,0.4704,0.2466,-0.1932,0.2328,0.5262,0.71,0.8452,0.937,0.7838,0.6306,0.2676,-0.2104,-0.6256,-0.7902,-0.8434,-0.8908,-0.932,-0.9346,-0.9412,-0.8858,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.9734,-0.21,0.6732,0.8532,0.86,0.8166,0.32,-0.1944,-0.1316,-0.0516,-0.0144,-0.0276,-0.085,0.045,-0.2176,-0.345,-0.835,-0.885,-0.6834,-0.53,-0.2634,-0.4668,-0.2834,-0.51,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,1,-0.2858,1,1,1,0.0858,-0.9714,-0.9142,-0.9428,-0.9714,-0.8572,-0.7142,-0.0572,0,-0.5142,-0.8286,-0.5428,-0.6286,-0.8572,-0.6286,0.4,-1,-1,-1,-1,-1,0.3678,0.3804,0.3856,0.4034,0.4136,0.415,0.4306,0.4482,0.4566,0.4262,0.8576,0.8292,0.835,0.8096,0.8282,0.8212,0.8526,0.8908,0.9408,0.9646,-0.72,-0.1294,-0.2008,-0.0288,0.297,0.3972,0.5304,1,-0.6666,-0.698,-0.5902,-0.3784,-0.3854,-0.2152,-0.125,0.0138,0.0624,0.2674,0.5278,0.5348,0.8264,0.8472,0.8298,1,0.9306,0.7362,0.7256,0.8472,0.809,0.9132,0.9306,0.75,0.5104,0.5034,0.3576,0.3888,0.3612,0.2014,0.052,-0.3264,-0.8052,-0.808,-0.596,-0.6046,-0.6476,-0.5416,-0.404,-0.1432,-0.0458,0.0946,0.4012,0.5874,0.6618,0.7736,0.8796,0.9312,1,0.8366,0.8396,0.9886,0.934,0.977,0.9084,0.9484,0.765,0.7708,0.6562,0.51,0.4842,0.5272,0.4212,0.2922,-0.2034,-0.1234,-0.28,-0.6244,-0.5444,-0.4818,-0.3982,-0.0852,0.3286,0.52,0.44,0.774,0.9304,0.7322,0.9686,1,0.92,0.8608,0.8992,0.9304,0.8886,0.92,0.927,0.9722,0.7566,0.746,0.666,0.6,0.4608,0.6,0.447,0.2418,-0.3368,-1,-1,1,-0.2,-1,-0.2,0.2,-1,-0.4508,-0.0564,0.0564,0.0704,0.0564,0.0704,0.2112,0.014,0.3522,0.5634,0.6198,0.4508,0.8592,1,0.6198,0.6338,0.5492,0.338,0.4508,0.4788,0.5212,0.2676,0.0704,0.183,0.1268,0.6478,0.3944,0.2112,0.4084,0.3802,0.0986,0.0282,'7'
-0.666,-0.3024,-0.0318,0.1206,0.2642,0.2938,0.057,-0.019,-0.0952,-0.1374,-0.1036,-0.0318,0.036,0.1586,0.1798,0.3616,0.6194,0.8266,0.962,0.9238,0.962,1,0.9958,0.9408,0.9112,0.962,0.7548,0.7252,0.6364,0.5222,0.5434,0.3784,-0.49,-0.1406,0.253,0.3454,0.4738,0.4418,0.0602,-0.1044,-0.024,-0.1446,-0.1686,0,-0.024,0.0804,0.2892,0.3052,0.518,0.8634,1,0.9598,0.98,0.9398,0.8796,0.8554,0.759,0.8152,0.5944,0.518,0.494,0.4458,0.5662,0.3896,-0.4366,-0.0912,0.4088,0.4682,0.4206,0.3214,0.0714,-0.0674,-0.0834,-0.1032,-0.119,-0.0476,0.115,0.0634,0.2222,0.3374,0.369,0.6826,0.8492,1,0.9682,0.9206,0.8888,0.8174,0.75,0.615,0.5596,0.3612,0.2858,0.3294,0.4682,0.3888,-0.4396,-0.1868,0.3772,0.3736,0.099,-0.0586,-0.0622,-0.1576,-0.2088,-0.1684,-0.1576,-0.1062,-0.0476,0.0476,0.1208,0.2162,0.293,0.5714,0.6924,1,1,0.978,0.967,0.9744,0.923,0.8316,0.762,0.5494,0.4578,0.4542,0.4396,0.3334,-0.5522,-0.0896,0.3582,0.3172,-0.1978,-0.306,-0.3732,-0.3208,-0.444,-0.418,-0.3582,-0.2762,-0.265,-0.2014,-0.1082,-0.0112,0.0672,0.291,0.5746,0.7238,1,0.9514,0.9254,0.8956,0.903,0.944,0.7574,0.668,0.5672,0.4814,0.5112,0.3582,-0.666,-0.048,0.3068,0.144,-0.2776,-0.5324,-0.499,-0.5366,-0.524,-0.6034,-0.5074,-0.5074,-0.4906,-0.4656,-0.3028,-0.1608,-0.1232,0.0814,0.3402,0.6034,0.858,0.8998,0.8414,0.808,1,0.8872,0.716,0.6868,0.5616,0.5032,0.5532,0.6034,-0.7366,-0.1724,0.4482,0.3982,-0.0658,-0.6238,-0.7618,-0.6112,-0.4608,-0.4796,-0.442,-0.373,-0.348,-0.4482,-0.304,-0.2664,0.1034,0.4546,0.7492,0.8244,0.8934,0.975,0.8996,0.9562,1,0.9122,0.649,0.7868,0.699,0.768,0.8684,0.8432,-0.7648,-0.2942,-0.098,-0.1764,-0.098,0.1372,0.1764,0.0196,-0.2156,-0.0196,-0.0588,-0.2156,0.1764,0.255,0.0196,0.4902,0.6078,0.5686,0.6862,0.9216,0.9216,0.6078,0.9608,1,0.8824,0.7254,0.8432,0.7648,0.5294,0.7648,0.7648,0.5686,-0.5294,-0.2648,0.0588,0.2058,0.2942,0.3236,0.0882,0,0,-0.1176,-0.0588,0.0294,-0.0588,0.147,0.2648,0.2942,0.6764,0.8236,0.8236,0.8824,1,1,0.9706,0.9118,0.9412,0.9412,0.7942,0.6176,0.5882,0.5882,0.4412,0.3824,-0.66,-0.1,0.32,0.22,-0.28,-0.54,-0.54,-0.52,-0.44,-0.52,-0.48,-0.42,-0.46,-0.32,-0.26,-0.1,0.02,0.2,0.38,0.8,0.78,1,0.94,0.9,1,0.94,0.82,0.78,0.68,0.66,0.68,0.54,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.957,-0.9642,0.2846,0.9666,0.9784,0.9234,0.7464,0.6962,0.8398,0.8062,0.5288,0.0312,-0.524,-0.9378,-0.9258,-0.9402,-0.9522,-0.9426,-0.9354,-0.9354,-0.9522,-0.9354,-0.9474,-0.9354,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.991,-0.9914,0.6278,0.4768,-0.1262,-0.3948,-0.3734,-0.1558,-0.2206,-0.2608,-0.265,-0.6812,-0.803,-0.9852,-0.9858,-0.9842,-0.8462,-0.4274,-0.5178,-0.5578,-0.5262,-0.5188,-0.5664,-0.621,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.96,-0.3068,-0.1134,-0.23,-0.4134,-0.3768,-0.2968,-0.2734,-0.1968,-0.16,-0.4316,-0.2772,-0.6868,-0.78,-0.7534,0.6666,0.9366,0.8732,0.83,0.8032,0.7132,0.6866,0.7932,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3142,1,1,1,-0.2858,-0.7714,-0.8286,-0.6572,-0.7714,-0.8572,0.2286,1,1,1,-0.5142,1,1,1,-0.7714,-0.8572,-0.8858,-0.9428,-0.9714,-0.8858,1,1,1,1,1,1,1,0.986,0.894,0.55,0.4902,0.4968,0.5196,0.5366,0.5344,0.5482,0.5512,0.5382,0.5834,0.758,-0.56,-0.3176,-0.9912,-0.32,0.9118,0.891,0.3824,1,-0.2912,-0.1518,0.038,0.0506,0.3418,0.3038,0.3544,0.3292,0.6836,0.6582,0.519,0.7974,0.7468,0.4684,0.6582,1,0.6456,0.4304,0.1392,0.3038,0.2658,0.114,0.1898,0.1392,0.2278,0.1266,-0.0886,0.2912,-0.367,-0.0126,0.114,-0.1012,0.0442,-0.0442,0.2566,-0.2212,0.8938,0.5752,0.646,0.823,0.77,0.5576,0.5576,0.469,1,0.3628,0.3806,0.9116,0.6106,0.469,0.292,0.3628,0.5752,0.2744,0.3806,0.3628,0.239,0.2036,0.239,-0.0088,-0.0796,0.0266,-0.2212,-0.5752,0.3234,0.0978,0.7444,0.6692,0.639,0.609,0.7894,0.4436,0.564,0.564,0.8948,0.8346,0.7744,0.7444,0.6842,0.7894,0.3984,0.1278,0.564,0.7142,0.9398,0.5188,0.3384,0.3834,0.3984,0.639,0.5188,0.609,0.3384,0.3684,0.188,-0.4586,-1,1,-1,-1,-1,-1,-1,-1,1,-0.5408,-0.4592,-0.2244,-0.2142,-0.3164,-0.3164,-0.296,-0.2654,0.0816,0.2346,0.2756,0.1224,0.5204,0.704,0.6734,0.7244,0.6326,0.6632,0.9592,1,0.9694,0.9694,0.7858,0.7448,0.7448,0.9184,0.847,0.8164,0.7858,0.6938,0.5714,0.4592,'8'
-0.7042,-0.4158,-0.0112,0.0486,0.2884,0.2472,-0.0824,-0.2022,-0.1274,-0.1498,-0.1686,-0.045,-0.0636,0.0188,0.176,0.191,0.397,0.7602,0.839,0.8164,0.8052,0.9514,0.9364,1,0.9214,0.9288,0.9176,0.824,0.633,0.6104,0.6368,0.4868,-0.6432,-0.331,0.1114,0.1938,0.259,0.2522,0.0018,-0.084,-0.084,-0.1012,-0.0772,-0.0018,-0.0498,0.0738,0.235,0.2864,0.482,0.6706,0.897,0.8216,0.9348,0.9898,0.9966,1,0.9416,0.9622,0.8216,0.8936,0.6878,0.6638,0.6536,0.5918,-0.5514,-0.2568,0.2226,0.291,0.2158,0.1918,-0.0206,-0.1438,-0.1232,-0.0924,-0.1062,-0.024,-0.0136,0.089,0.2192,0.2328,0.387,0.6542,0.7774,0.9554,0.9966,0.9828,0.9316,0.9966,0.928,1,0.9178,0.8972,0.7398,0.6198,0.6644,0.637,-0.5458,-0.295,0.278,0.3288,0.0576,-0.0034,-0.1288,-0.2372,-0.2272,-0.183,-0.2238,-0.1526,-0.078,-0.0882,0.0814,0.1492,0.2102,0.5118,0.6814,0.8712,0.9458,0.9898,0.9898,0.9492,1,0.9356,0.9322,0.8372,0.7322,0.6916,0.6372,0.5796,-0.5664,-0.2448,0.3042,0.2972,-0.1924,-0.3252,-0.3076,-0.3706,-0.4546,-0.4336,-0.2972,-0.3076,-0.1958,-0.1188,-0.1434,0.021,0.1504,0.2692,0.4966,0.8006,0.9476,0.965,0.944,0.986,0.993,1,0.9686,0.9406,0.7622,0.6958,0.7062,0.6644,-0.7598,-0.287,0.0732,0.0318,-0.2758,-0.501,-0.4972,-0.4784,-0.5384,-0.5948,-0.5122,-0.4484,-0.4034,-0.3996,-0.3058,-0.1894,-0.0394,0.107,0.3208,0.6472,0.9888,0.9924,0.7936,0.9136,0.9662,1,0.9738,0.9212,0.7598,0.7036,0.591,0.6136,-0.9272,-0.3864,-0.0228,-0.0728,-0.5454,-0.6818,-0.6228,-0.5818,-0.6136,-0.609,-0.5682,-0.4728,-0.509,-0.4818,-0.4228,-0.509,-0.1682,-0.1682,0.1046,0.809,0.9636,0.9,0.6136,0.7182,0.909,0.9454,1,0.9682,0.85,0.491,0.5272,0.5,-0.6858,-0.4286,0,0.1428,0.3428,0.2858,-0.0572,-0.2,-0.0858,-0.0858,-0.1428,0,-0.1428,0.0286,0.2286,0.1428,0.4572,0.7428,0.8286,0.8286,0.7714,1,0.9714,1,0.9428,0.9714,0.9428,0.8572,0.6572,0.6286,0.6858,0.5428,-0.6812,-0.4202,-0.0144,0.1594,0.3044,0.2754,-0.0434,-0.2174,-0.1014,-0.1304,-0.2174,-0.0144,-0.0144,0.0434,0.2174,0.2174,0.3914,0.7682,0.826,0.826,0.855,0.942,0.971,1,0.942,0.942,0.913,0.826,0.6812,0.6812,0.6232,0.4202,-0.691,-0.2358,0.1708,0.1544,-0.3658,-0.4308,-0.4796,-0.4796,-0.496,-0.5448,-0.5284,-0.3984,-0.3496,-0.317,-0.2032,-0.1382,-0.0244,0.1382,0.3984,0.6098,0.935,0.8862,0.87,0.9186,1,1,0.935,0.8048,0.8212,0.691,0.561,0.626,-1,-1,-1,-1,-1,-1,-1,-1,-0.971,-0.9642,-0.23,0.3764,0.4106,0.4906,0.6048,0.8126,0.9796,0.9284,0.8484,0.4004,-0.3748,-0.7496,-0.92,-0.942,-0.9506,-0.9404,-0.9626,-0.9454,-0.9608,-0.966,-0.9558,-0.9592,-0.9574,-1,-1,-1,-1,-1,-1,-1,-1,-0.995,-0.9944,-0.3726,0.7354,0.9514,0.7492,0.5,0.5898,0.5558,0.4594,0.422,0.176,-0.1634,-0.639,-0.9598,-0.9888,-0.992,-0.992,-0.9802,-0.792,-0.629,-0.6862,-0.7034,-0.7222,-0.6746,-1,-1,-1,-1,-1,-1,-1,-1,-0.8868,-0.9668,-0.4868,0.048,-0.036,-0.072,-0.068,-0.2334,-0.11,0.0366,0.0466,0.0832,0.1366,0.12,-0.1068,-0.3868,-0.72,-0.8268,-0.8734,0.4532,0.77,0.8366,0.7266,0.7266,0.76,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,1,1,1,-0.7428,-0.9428,-0.9428,-1,-0.9142,-0.8858,-0.7714,1,1,1,1,0.0572,-0.7428,-0.8286,1,1,1,-0.8286,-0.8858,-0.9714,-1,1,1,1,1,1,1,1,1,1,0.723,0.9414,0.9414,0.9278,0.9372,0.93,0.9378,0.925,0.9306,0.9418,1,-0.6134,-0.3882,-0.3142,0.6276,0.752,0.93,0.978,1,-0.1876,0.3124,0.375,0.1562,0.2188,0.1876,0.25,0.3438,0.75,0.7188,0.9688,0.9688,1,1,0.9376,0.9376,0.9062,0.7812,0.5938,0.4688,0.375,0.1876,0.0624,0,-0.25,-0.125,-0.2188,-0.5,-0.3124,-0.2812,-0.1876,-0.4688,-0.2992,0.1824,0.489,0.2116,0.1386,0.0656,0.1824,0.3284,0.7518,0.8394,0.854,1,0.9562,0.8978,0.7372,0.708,0.6934,0.5474,0.2846,0.2554,-0.0072,-0.0218,-0.2116,-0.2846,-0.416,-0.4744,-0.8248,-0.5912,-0.4744,-0.3576,-0.3868,-0.5474,-0.5038,0.0388,0.3178,0.0078,-0.1162,-0.1008,-0.0078,0.1782,0.6124,0.814,0.9224,1,0.907,0.969,0.6434,0.628,0.659,0.2404,0.2248,0.0852,-0.1782,-0.1318,-0.4728,-0.5194,-0.6744,-0.7054,-0.7984,-0.6434,-0.69,-0.4574,-0.4418,-0.7054,0.9496,-1,-1,1,-0.8,-1,-1,-0.8334,1,-0.602,-0.631,-0.5728,-0.3204,-0.3204,-0.2912,-0.2816,-0.0486,-0.0776,0.233,0.3106,0.5436,0.5534,0.5922,0.7088,0.9224,1,0.9126,0.9514,0.9806,0.8738,0.7282,0.9514,0.9126,0.8156,0.903,0.9126,0.8834,0.7184,0.699,0.4854,0.3786,'8'
-0.5514,-0.2304,0.0368,0.0808,0.3236,0.5662,0.6642,0.8946,0.826,0.723,0.9388,0.9656,0.9388,0.8432,0.647,0.5318,0.5466,0.5858,0.6618,0.7402,1,0.9314,0.7746,0.8162,0.8186,0.701,0.6054,0.5344,0.3112,0.3432,0.5246,0.4436,-0.4086,-0.1392,0.1218,0.1456,0.326,0.687,0.7522,1,0.926,0.763,0.987,0.9652,0.9086,0.7434,0.6434,0.5956,0.4978,0.5434,0.6066,0.6826,0.8326,0.8566,0.8696,0.624,0.55,0.526,0.3696,0.3086,0.2218,0.2282,0.2956,0.2086,-0.53,-0.262,0.0012,0.0318,0.1892,0.5934,0.8002,1,0.826,0.5934,0.7204,0.92,0.9764,0.678,0.5136,0.4876,0.3796,0.3514,0.4806,0.5888,0.6546,0.7932,0.5418,0.49,0.4572,0.2972,0.1446,0.1962,0.067,0.128,0.342,0.222,-0.4614,-0.192,0.1226,0.168,0.3174,0.792,0.7786,0.9386,0.6346,0.568,0.5974,0.7706,0.784,0.9414,1,0.9894,0.6346,0.624,0.6294,0.6214,0.8346,0.8534,0.7654,0.728,0.752,0.432,0.4854,0.512,0.304,0.4106,0.56,0.4506,-0.4232,-0.1564,0.2082,0.3768,0.619,1,0.864,0.3932,0.1292,0.113,0.1564,0.238,0.2762,0.3796,0.6164,0.8014,0.8504,0.8748,0.7334,0.7442,0.8122,0.962,0.9402,0.8096,0.7714,0.717,0.4966,0.5048,0.4748,0.5102,0.317,0.3768,-0.257,0.0508,0.2962,0.2896,0.4338,0.7382,0.5646,-0.0442,-0.2274,-0.3618,-0.378,-0.2374,-0.0442,-0.1194,0.0868,0.2504,0.6334,0.856,0.9804,0.9346,0.9444,0.9148,0.8494,1,0.7284,0.6202,0.5908,0.568,0.3978,0.4534,0.4566,0.3322,-0.3694,-0.029,-0.4314,-0.4236,-0.1374,0.1682,0.0212,-0.2804,-0.5822,-0.6712,-0.6866,-0.6634,-0.7292,-0.5706,-0.381,-0.2766,0.002,0.5358,0.7872,0.9922,0.679,0.7214,0.8376,1,0.8452,0.559,0.2804,0.3192,0.1876,0.4042,0.2418,0.2728,-0.85,-0.35,-0.2,-0.15,0.4,0.55,0.65,0.75,0.75,0.6,0.85,1,1,0.9,0.75,0.65,0.5,0.65,0.7,0.85,0.9,0.9,0.85,0.8,0.8,0.85,0.8,0.75,0.7,0.75,0.8,0.85,-0.6492,-0.3684,-0.0176,0.0878,0.3334,0.579,0.8596,0.8948,0.7544,0.6492,0.8246,0.8948,0.965,0.7894,0.614,0.579,0.5088,0.579,0.7192,0.9298,1,0.9298,0.8948,1,0.965,0.8596,0.8246,0.6492,0.4736,0.614,0.6492,0.5438,-0.5058,-0.247,0.153,0.3176,0.5294,0.9058,0.7412,0.0588,-0.2236,-0.153,-0.1058,-0.1294,0.0824,0.1294,0.3882,0.647,0.6,0.8352,0.7882,0.6236,0.6942,0.9294,1,0.953,0.8118,0.7176,0.647,0.1058,0.3412,0.3882,0.2942,0.2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9592,-0.9498,0.5544,0.8084,0.8492,0.8108,0.7198,0.5688,0.727,0.394,-0.0562,-0.5712,-0.624,-0.7652,-0.8778,-0.933,-0.9426,-0.933,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9888,-0.9906,0.34,0.4422,0.4198,0.371,0.1426,-0.2066,-0.3518,-0.6268,-0.7816,-0.9268,-0.9204,-0.942,-0.9576,-0.9662,-0.9752,-0.9774,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.9468,-0.572,-0.604,-0.624,-0.632,-0.578,-0.638,-0.5582,-0.6656,-0.6616,-0.4886,-0.365,-0.289,-0.1456,-0.239,-0.3622,-0.4156,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,-0.9428,-1,-0.9142,-0.9142,-0.9428,-0.6572,-0.6286,0.3142,-0.1142,-0.8572,-0.9714,-0.8858,-0.8286,-0.8,-0.9714,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.2614,-0.2736,-0.3084,-0.363,-0.408,-0.4636,-0.53,-0.6128,-0.7412,-0.269,-0.5334,0.2352,-0.9908,-0.6734,0.608,0.6144,0.3846,1,0.0178,0.4642,0.125,0.3928,0.5892,0.3572,0.6786,0.5358,1,0.7322,0.7858,0.3036,0.6072,0.4108,0.25,0.3392,0.375,0.3214,0.1964,0.2858,0.5536,0.4286,0.5358,0.6608,0.5892,0.7858,0.8392,0.875,0.375,0.375,0.2142,-0.0358,0.0608,-0.3044,0.8086,0.6348,0.7392,0.5652,0.687,1,0.7218,0.5304,0.7392,0.687,0.374,0.3392,0.826,0.8086,0.5478,0.6174,0.3566,0.7566,0.7392,0.5652,0.7914,0.826,0.5826,0.5478,0.2522,0.3566,0.5826,0.4782,0.2522,-0.3218,0.1704,0.363,0.2444,0.3334,0.5556,0.6,0.7926,0.526,0.9408,0.5852,0.674,0.526,1,0.4962,0.3778,0.4518,0.3926,0.2888,0.4962,0.3038,0.674,0.363,0.5408,0.437,0.1112,0.4222,0.2888,0.2444,0.4666,-0.0074,0.2444,-0.2296,-0.9936,1,-1,-1,-1,-1,-0.8,-1,-1,-0.2728,-0.2448,-0.049,-0.035,-0.2028,-0.049,-0.035,-0.035,0.3426,0.6924,0.5384,1,0.916,0.5524,0.4406,0.4406,0.6644,0.3706,0.3006,0.2588,0.2728,0.1888,0.2308,0.049,0.035,0.3986,0.3846,0.2448,-0.007,0.007,-0.4686,-0.7482,'9'
-0.6082,-0.2578,0,0.1182,0.3602,0.4724,0.8188,0.746,0.809,0.8818,0.9488,0.9094,0.8838,0.5748,0.4764,0.557,0.5,0.5532,0.7086,0.7696,1,0.9154,0.9468,0.9448,0.9528,0.9548,0.8976,0.7952,0.6948,0.75,0.4704,0.4074,-0.5522,-0.2258,0.0232,0.1178,0.39,0.525,0.7896,0.7356,0.859,0.8784,0.8976,1,0.9362,0.5464,0.5348,0.583,0.4884,0.4536,0.6274,0.7432,0.836,0.9054,0.9208,0.7896,0.7124,0.7528,0.6814,0.7124,0.5058,0.4652,0.4382,0.2644,-0.4864,-0.1828,0.1002,0.1602,0.372,0.6252,0.7694,0.8912,0.9268,0.8388,0.865,1,0.88,0.8426,0.7038,0.612,0.5876,0.6438,0.6402,0.7788,0.88,0.9906,0.8032,0.7694,0.8088,0.6944,0.6964,0.522,0.4958,0.4564,0.3214,0.1696,-0.4904,-0.1918,0.0904,0.131,0.3422,0.7442,0.8254,0.7016,0.661,0.5492,0.5756,0.6,0.9086,0.9126,1,0.8782,0.8558,0.7422,0.7726,0.8172,0.935,0.8356,0.9086,0.801,0.7808,0.6304,0.5676,0.6346,0.3808,0.2974,0.3258,0.273,-0.4396,-0.1436,0.1822,0.303,0.5034,0.852,0.8564,0.4032,0.237,0.2346,0.2414,0.3736,0.4488,0.5376,0.8702,1,0.9726,0.9294,0.9226,0.8974,0.8816,0.8952,0.9248,0.9454,0.6242,0.6766,0.7176,0.3964,0.4214,0.5126,0.385,0.271,-0.4114,-0.1302,0.2708,0.6484,0.776,0.5912,0.4792,0.2006,0.0652,-0.0286,-0.099,0.0808,0.0704,0.1328,0.3124,0.5652,0.6406,0.9322,0.9454,0.9948,0.9244,0.8464,0.9062,1,0.9402,0.7526,0.6718,0.5886,0.427,0.6406,0.5834,0.4296,-0.3522,-0.0408,0.1666,0.1982,0.2988,0.2012,-0.022,-0.4372,-0.4276,-0.5598,-0.6384,-0.4842,-0.3806,-0.4276,-0.3396,-0.1132,-0.0346,0.3584,0.849,0.912,0.7138,0.6194,0.7956,1,0.8868,0.5314,0.3868,0.3208,0.173,0.3082,0.3208,0.2924,-0.6876,-0.3438,0,0.0938,0.3124,0.3438,0.6876,0.6876,0.7812,0.7812,0.8124,0.875,0.8124,0.5624,0.3124,0.4062,0.5,0.5,0.5624,0.75,0.9062,0.9062,0.9376,0.875,0.8438,1,0.9062,0.7812,0.7812,0.7812,0.5312,0.5,-0.5882,-0.2352,0.0294,0.147,0.3236,0.4412,0.7648,0.7352,0.7058,0.8236,0.9118,0.7942,0.7942,0.5588,0.4412,0.5294,0.4412,0.5294,0.6764,0.7352,1,0.9412,0.8824,0.9412,1,0.9706,0.9706,0.7942,0.647,0.7942,0.5882,0.4118,-0.5576,-0.292,0.0266,0.0266,0.2566,0.7346,0.77,0.3982,0.292,0.292,0.3806,0.3628,0.5576,0.6814,0.77,1,0.8938,0.6814,0.6992,0.646,0.7876,0.7168,0.7168,0.6814,0.5222,0.5044,0.5752,0.4868,0.1682,0.3098,0.292,0.1328,-1,-1,-1,-1,-1,-1,-1,-1,-0.9736,-0.967,-0.4036,0.5634,0.967,0.8452,0.6772,0.4416,0.4332,0.575,0.1186,0.1812,-0.0462,-0.664,-0.794,-0.822,-0.8814,-0.9358,-0.9588,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9944,-0.993,-0.2808,0.756,0.8006,0.779,0.5456,0.1584,0.0356,-0.225,-0.5838,-0.7258,-0.8086,-0.9474,-0.9656,-0.9684,-0.9764,-0.9856,-0.9852,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.9268,-0.6068,-0.3092,-0.4928,-0.4546,-0.4092,-0.4546,-0.4746,-0.5038,-0.5146,-0.6784,-0.79,-0.6534,-0.6468,-0.6568,-0.6568,-0.6534,-0.6934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,1,1,1,-0.9142,-0.8858,-0.9428,-0.8286,-0.8572,-0.7428,-0.8286,-0.6858,0.6572,0,-0.9142,-0.9142,-0.9142,-0.8572,-0.8858,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.569,0.5326,0.5058,0.468,0.419,0.3604,0.3088,0.191,-0.0938,0.0416,-0.6,0.3412,-0.0704,0.3584,0.754,0.938,0.812,1,-0.1228,0.1228,0.5088,0.9298,1,1,1,0.6842,0.6842,0.6842,1,0.965,0.9298,0.8948,0.8246,0.6492,0.5438,0.0878,0.2982,0.228,0.1228,-0.1228,-0.193,-0.3334,-0.2632,-0.193,-0.2632,-0.3684,-0.2982,-0.2632,-0.5438,-0.7192,-0.2112,0.183,0.3802,0.7464,0.7888,0.9014,0.9296,0.6056,0.5774,0.6198,0.9578,0.8874,0.9296,1,0.8028,0.7184,0.493,0.3662,0.3662,0.4084,0.2254,0.2816,0.2536,-0.0986,-0.2676,-0.4084,-0.338,-0.4366,-0.4648,-0.3802,-0.6056,-0.7746,-0.1484,0.2388,0.4322,0.729,0.8194,0.871,0.9226,0.613,0.613,0.6516,0.9096,0.9742,1,0.9612,0.8064,0.7032,0.3936,0.4322,0.4064,0.4452,0.2516,0.3162,0.3806,-0.0838,-0.1096,-0.2388,-0.2258,-0.2646,-0.3032,-0.3032,-0.4838,-0.742,0.6214,-1,-1,1,-0.8,-1,0.2,-0.8334,-1,-0.3036,-0.2142,-0.3036,0.0892,-0.1072,0.0178,0.0714,0.1786,0.6428,0.7678,0.4642,0.8036,1,0.5358,0.6428,0.7142,0.3392,-0.0358,0.1786,0.3572,0.125,0.3036,-0.1608,-0.6608,0.0714,0.5,0.0714,0,0.0892,-0.1964,-0.3392,-0.4642,'9'
-0.417,-0.0126,0.4924,0.6458,0.4532,0.1938,0.0768,0.0292,0.021,-0.0154,0.0878,0.233,0.244,0.445,0.6652,0.788,0.7684,0.7602,0.696,0.7072,0.7852,0.961,1,0.9944,0.8662,0.7712,0.682,0.6122,0.4338,0.4338,0.4422,0.3472,-0.5114,-0.1934,0.2824,0.3638,0.4962,0.4784,0.1374,0.0204,0.0942,0.056,0.0508,0.2824,0.318,0.397,0.7634,0.7582,0.944,0.855,0.8194,0.8448,0.855,1,0.9262,0.9542,0.8754,0.9084,0.7226,0.6744,0.4886,0.3384,0.3588,0.168,-0.5126,-0.2124,0.2172,0.3254,0.7094,0.659,0.0972,0.1068,0.1308,0.15,0.1116,0.222,0.3662,0.419,0.6878,0.9016,1,0.832,0.8056,0.9112,0.9184,1,0.9688,0.9376,0.9832,0.8464,0.7672,0.539,0.4862,0.4286,0.3062,0.1548,-0.5026,-0.2096,0.2096,0.404,0.6944,0.5858,0.0632,0.0682,0.0378,-0.0152,0.091,0.1186,0.3434,0.4394,0.5378,0.8006,0.803,1,0.8762,0.8612,0.9696,0.9066,0.9696,0.9292,0.9318,0.7602,0.6616,0.591,0.4066,0.3636,0.3814,0.3434,-0.3826,-0.084,0.3798,0.4054,0.6586,0.4936,0.1408,0.0868,-0.0184,-0.0612,0.1266,0.0954,0.249,0.32,0.3854,0.613,0.8264,0.9174,0.963,0.8834,0.9346,1,0.983,0.9374,0.8748,0.8378,0.542,0.5136,0.4566,0.4452,0.3968,0.4054,-0.3428,0.0072,0.3858,0.3822,0.1214,-0.0392,-0.1464,-0.2572,-0.3428,-0.2572,-0.3608,-0.3822,-0.3822,-0.1858,-0.2358,-0.1214,-0.0572,0.4642,0.7214,0.7608,0.8,0.8072,1,0.9678,0.7392,0.4858,0.3786,0.4,0.3108,0.4892,0.575,0.4464,-0.2732,0.1458,-0.0144,0.0184,-0.076,-0.2032,-0.2156,-0.4496,-0.5154,-0.4662,-0.6878,-0.54,-0.6222,-0.577,-0.4456,-0.4826,0.0432,0.4414,0.6344,0.9384,1,0.8932,0.7372,0.6714,0.614,0.5812,0.4456,0.4332,0.0924,0.4292,0.5196,0.2648,-0.2982,0.1578,0.4036,0.614,0.4386,0.1578,-0.0176,0.0176,-0.0526,-0.1228,0.0878,-0.0176,0.2982,0.2982,0.5438,0.7544,0.7894,0.3684,0.5438,0.6492,0.614,0.8948,0.9298,1,0.8596,0.6842,0.614,0.6492,0.4036,0.2632,0.3684,0.4386,-0.3226,0.0968,0.5806,0.742,0.5806,0.129,0.0968,0.0322,0.129,-0.0646,0.129,0.258,0.3226,0.4838,0.5162,0.8064,0.7096,0.613,0.6452,0.7096,0.7096,0.8388,1,0.871,0.8388,0.7742,0.7096,0.5162,0.5484,0.613,0.5806,0.613,-0.5632,-0.1724,0.1954,0.1724,0.1724,-0.1494,-0.1954,-0.2874,-0.3564,-0.3564,-0.4022,-0.1724,-0.1264,-0.3334,-0.2644,-0.2644,-0.1264,0.4712,0.5172,0.7242,0.7012,0.6092,1,0.977,0.816,0.4942,0.4022,0.4942,0.3564,0.3334,0.5402,0.4252,-1,-1,-1,-1,-1,-0.9554,-0.9826,-0.9718,-0.9718,-0.9758,-0.7562,0.662,0.3822,0.2142,0.5444,0.6484,0.3822,-0.0102,-0.2938,-0.5736,-0.7484,-0.8212,-0.8572,-0.9136,-0.963,-0.9738,-0.9786,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9852,-0.9904,-0.8878,-0.8264,-0.6138,-0.6316,-0.0666,0.7398,0.9624,0.9666,0.8804,0.4832,-0.0208,-0.4532,-0.7272,-0.8962,-0.9152,-0.9296,-0.9514,-0.963,-0.9714,-0.9818,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8534,-0.9534,-0.6134,0.4832,0.7732,0.4132,-0.465,-0.36,-0.2476,-0.3978,-0.509,-0.4112,-0.3668,-0.5618,-0.655,-0.5616,-0.635,-0.5872,-0.4072,-0.1972,-0.4306,-0.6772,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3142,0.8858,1,1,1,1,1,0,-0.8572,-0.9142,-0.8572,-0.9428,-0.7428,-0.0572,0.2572,-0.0858,-0.8286,-0.8572,-0.8,-0.7714,-0.7714,-0.8,-1,-1,-1,-1,-1,-1,0.663,0.6872,0.724,0.7404,0.7824,0.8166,0.8698,0.9232,0.9674,0.7664,0.3536,0.3528,0.359,0.3462,0.3516,0.3444,0.3298,0.2956,0.2652,0.3772,-0.6134,0.0118,-0.6544,-0.5606,-0.2038,0.3686,0.5634,1,-0.5562,-0.4498,-0.284,-0.1716,-0.1124,0.0178,0.142,0.2072,0.3668,0.361,0.503,0.7456,0.7752,0.7928,1,0.9764,0.8344,0.7042,0.6154,0.639,0.6332,0.4734,0.5266,0.5562,0.5798,0.2486,0.219,0.1716,0.0118,0,-0.1184,-0.4556,-0.765,-0.7494,-0.5404,-0.5144,-0.457,-0.504,-0.3316,-0.342,-0.1018,-0.0914,0.2794,0.2846,0.3054,0.5666,0.8016,0.9164,1,0.8642,0.8642,0.8694,0.9164,0.8642,0.9008,0.6606,0.7024,0.7284,0.6396,0.6344,0.4622,0.4516,0.175,-0.06,-0.7472,-0.478,-0.3846,-0.3956,-0.434,-0.4726,-0.3186,-0.0494,0.2032,0.2362,0.3352,0.8792,0.7692,0.945,1,0.9946,0.7692,0.6868,0.7308,0.6484,0.6648,0.588,0.5604,0.7912,0.6484,0.6758,0.6154,0.577,0.6374,0.412,0.3462,-0.088,-0.5938,-1,-1,1,-1,-1,-0.8,-0.2666,-1,-0.461,-0.234,-0.3618,-0.0212,-0.1348,-0.1348,-0.007,-0.1632,0.3758,0.688,0.4894,0.8582,1,0.4326,0.4894,0.461,0.6028,-0.234,0.1774,0.2056,0.1914,0.0212,0.0212,-0.1064,0.1774,-0.0922,-0.007,-0.0496,-0.0638,-0.6312,-0.4184,-0.6738,'10'
-0.456,-0.05,0.3776,0.5372,0.3396,0.188,-0.0852,-0.0988,-0.004,-0.1014,-0.0474,0.1692,0.253,0.3992,0.41,0.7808,0.7212,0.6454,0.567,0.6996,0.8106,0.8674,1,0.9622,0.8322,0.7618,0.7428,0.54,0.567,0.3884,0.4236,0.2124,-0.5116,-0.156,0.2814,0.399,0.514,0.537,0.2456,0.1816,0.064,0.1024,0.1688,0.2558,0.2532,0.4578,0.7084,0.844,0.9104,0.9642,0.8184,0.7928,0.936,0.8746,1,0.9284,0.9566,0.8824,0.8364,0.7852,0.6752,0.6292,0.4092,0.3044,-0.5326,-0.2136,0.1784,0.2664,0.6884,0.6758,0.211,0.0778,0.103,0.093,0.0728,0.2212,0.2764,0.3894,0.691,0.716,1,0.9396,0.8066,0.892,0.9322,0.9448,0.8944,0.9096,0.814,0.8392,0.794,0.7738,0.6482,0.593,0.5654,0.3768,-0.5304,-0.2462,0.1472,0.4086,0.7182,0.637,0.1422,0.0964,0.0838,0.071,0.0862,0.1396,0.302,0.3782,0.5204,0.7994,0.8402,1,0.9112,0.9214,0.9518,0.9442,0.9696,0.896,0.9086,0.8376,0.8046,0.7158,0.632,0.6574,0.571,0.406,-0.5222,-0.2556,0.1694,0.4916,0.6778,0.4916,0.1362,0.0416,-0.0584,-0.0084,0.0528,0.1112,0.2056,0.275,0.4528,0.5916,0.8666,0.8862,0.9556,0.925,0.9556,1,0.9056,0.9334,0.9334,0.85,0.7972,0.6972,0.6166,0.575,0.4944,0.4084,-0.4602,-0.1888,0.298,0.5428,0.6638,0.295,0.0856,0.053,-0.118,-0.1918,-0.1238,-0.0354,-0.053,0.053,0.2508,0.4012,0.5014,0.885,0.9116,1,0.944,0.8496,0.9144,0.888,0.7788,0.6372,0.6696,0.5576,0.466,0.5752,0.4956,0.3982,-0.3546,0.0018,0.2608,0.2232,0.2082,-0.0318,-0.1894,-0.4934,-0.5984,-0.666,-0.471,-0.4222,-0.3696,-0.3884,-0.272,-0.137,0.0732,0.3658,0.666,0.85,0.8762,0.8986,0.88,1,0.7748,0.441,0.302,0.2646,0.2908,0.4034,0.486,0.4484,-0.4694,0.0204,0.347,0.4694,0.2654,-0.0612,-0.2654,-0.2654,-0.2244,-0.3062,-0.3062,-0.0204,0.1428,0.2654,0.4286,0.7552,0.7142,0.4286,0.3878,0.551,0.7142,0.8776,1,1,0.6734,0.7142,0.551,0.4694,0.347,0.1428,0.347,0.2244,-0.4074,0,0.5186,0.6666,0.5186,0.074,-0.1482,-0.2592,0.037,-0.074,-0.037,0.1482,0.2592,0.4074,0.5186,0.8148,0.7778,0.6296,0.5926,0.7038,0.8148,0.926,1,0.963,0.7778,0.7778,0.7408,0.7038,0.6296,0.4444,0.4074,0.3334,-0.621,-0.221,0.179,0.4736,0.621,0.3052,0.0106,0.0106,-0.1158,-0.1578,-0.1158,-0.1578,-0.0526,0.0736,0.1578,0.4106,0.5158,0.9158,0.8316,0.9368,1,0.9578,1,0.9158,0.8736,0.621,0.6422,0.621,0.3264,0.4526,0.4948,-0.0106,-1,-1,-1,-1,-0.9798,-0.9768,-0.9808,-0.9706,-0.9758,-0.901,-0.7858,0.5554,0.5342,0.3684,0.6038,0.8484,0.8262,0.5492,0.234,-0.1926,-0.4978,-0.7392,-0.8414,-0.8716,-0.9404,-0.9666,-0.9768,-0.9778,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9904,-0.9904,-0.9034,-0.898,-0.7102,-0.493,-0.6466,-0.1862,0.51,0.7432,0.8828,0.9074,0.9398,0.6268,0.113,-0.4084,-0.7472,-0.886,-0.9412,-0.9578,-0.9746,-0.9776,-0.9836,-0.9862,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.9468,-0.3968,0.3832,0.59,0.71,0.6066,-0.365,-0.3626,-0.2576,-0.4426,-0.4626,-0.4826,-0.4312,-0.4556,-0.4356,-0.4868,-0.3668,-0.67,-0.47,-0.3868,-0.3634,-0.3634,-0.6534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,1,0.4286,1,1,0.0572,-0.8858,-1,-0.9714,-0.9714,-0.8286,-0.6572,-0.4572,0.3714,0.1428,-0.5714,-0.8286,-0.7428,-0.8,-0.8858,-0.4286,-1,-1,-1,-1,-1,0.6082,0.634,0.6622,0.714,0.7612,0.8134,0.8798,0.9564,1,0.9074,0.5082,0.5066,0.514,0.501,0.4988,0.469,0.4446,0.4172,0.3964,0.4636,-0.6134,-0.0236,-0.6668,-0.6604,-0.2946,0.2076,0.4596,1,-0.4508,-0.4242,-0.2812,-0.317,-0.1206,-0.0626,0.0758,0.192,0.2456,0.4286,0.5268,0.634,0.7946,1,0.884,0.7858,0.8348,0.6026,0.7544,0.8438,0.7768,0.7366,0.7188,0.7946,0.3036,0.183,0.2054,0.1518,0.1964,-0.0134,-0.1742,-0.317,-0.8682,-0.8372,-0.5892,-0.624,-0.4342,-0.3372,-0.2404,0.0194,0.124,0.1124,0.438,0.5852,0.6976,0.7946,0.8876,1,0.969,0.841,0.872,0.9186,0.9264,0.7674,0.752,0.6976,0.5736,0.562,0.5698,0.5038,0.4884,0.3954,0.2016,-0.128,-0.7058,-0.5706,-0.4792,-0.4832,-0.4752,-0.4552,-0.3638,-0.165,0.1252,0.1412,0.4552,0.6858,0.6978,0.7496,0.7296,0.9364,1,0.8846,0.8568,0.833,0.817,0.7416,0.833,0.6938,0.7256,0.4036,0.4394,0.4394,0.3956,0.4434,0.2764,0.0816,-0.6986,-1,-1,1,-1,-1,-0.6,0,-1,-0.3064,-0.0646,0.0322,0.0162,0.0162,-0.0646,-0.0162,0.1452,0.5,0.7742,0.5484,1,0.9838,0.371,0.2904,0.242,0.242,0.0806,0.2258,0.2258,-0.0322,0.3064,0.3226,-0.3064,0.1936,0.0968,0.0646,-0.3548,-0.3226,-0.258,-0.2096,-0.4838,'10'
-0.4046,0.091,0.2478,0.5222,0.6614,0.8288,0.5686,0.287,0.1622,0.2014,0.319,0.3012,0.4582,0.4724,0.6578,0.7612,0.943,0.9644,0.9928,0.9466,0.9928,1,0.9964,0.9394,0.7612,0.6328,0.5864,0.5436,0.4082,0.3726,0.4296,0.4938,-0.4822,-0.097,0.22,0.343,0.7476,0.7896,0.2524,0.1392,0.136,0.0614,0.1586,0.3074,0.3268,0.4368,0.5728,0.767,0.8964,1,0.8608,0.8706,0.9838,0.9158,0.89,0.7606,0.835,0.5792,0.4952,0.3754,0.3204,0.2234,0.1522,0.2944,-0.415,-0.062,0.3104,0.4084,0.8464,0.8366,0.219,0.1274,0.2352,0.17,0.1666,0.3398,0.281,0.4282,0.6014,0.6406,0.9444,0.902,0.8954,0.938,1,0.8432,0.7942,0.915,0.7844,0.513,0.5294,0.5262,0.255,0.353,0.4772,0.3398,-0.4668,-0.1664,0.2342,0.4152,0.748,0.6478,0.1664,0.1858,0.1632,0.0824,0.134,0.189,0.3022,0.2828,0.4378,0.6672,0.7286,1,0.9096,0.8676,0.9128,0.8642,0.8352,0.7674,0.7416,0.5864,0.4636,0.4088,0.3312,0.26,0.315,0.2892,-0.5116,-0.2302,0.1962,0.4744,0.6662,0.49,0.0262,0.054,-0.048,0.02,0.0602,0.1282,0.2302,0.2458,0.4004,0.5456,0.762,0.8238,1,0.8516,0.8392,0.997,0.8702,0.7928,0.796,0.7466,0.561,0.4034,0.3664,0.2364,0.3076,0.323,-0.4608,-0.2246,0.2712,0.431,0.5906,0.3178,0.005,-0.055,-0.0716,-0.0916,-0.0882,0.1214,0.1182,0.1548,0.3644,0.381,0.5674,0.9334,1,0.9634,0.9102,0.9834,0.96,0.8136,0.8536,0.5874,0.4476,0.4676,0.2812,0.3012,0.4542,0.3478,-0.4432,-0.1576,0.304,0.381,0.5018,0.0842,-0.1026,-0.1794,-0.238,-0.2014,-0.1392,-0.066,-0.1758,-0.1026,0.0402,0.2418,0.414,0.6886,0.945,1,0.8168,0.7728,0.7986,0.729,0.7142,0.6484,0.5422,0.4322,0.403,0.3406,0.3626,0.3882,-0.28,0.32,0.24,0.68,0.68,0.84,0.72,0.4,0.16,0.32,0.4,0.56,0.48,0.56,0.64,0.64,0.96,0.96,0.84,0.84,1,0.92,1,0.88,0.64,0.56,0.76,0.64,0.64,0.56,0.72,0.68,-0.3334,0.1666,0.2334,0.5,0.6334,0.7666,0.5334,0.3666,0.1666,0.2334,0.3334,0.3334,0.4666,0.4,0.7666,0.6666,0.9334,0.8666,1,0.8,0.9666,0.9334,1,0.9,0.8666,0.5,0.4666,0.6,0.5334,0.4334,0.4666,0.6,-0.4434,-0.0782,0.287,0.426,0.826,0.8434,0.2,0.113,0.2,0.113,0.2174,0.3566,0.3218,0.426,0.6522,0.774,0.9478,1,0.9478,0.8782,0.9826,0.913,1,0.774,0.7914,0.6,0.5304,0.4086,0.3566,0.3914,0.2,0.3392,-1,-1,-0.9826,-0.9756,-0.8666,-0.8806,-0.9374,-0.9328,-0.9514,-0.935,-0.3518,0.134,0.5618,0.898,0.9572,0.8992,0.782,0.6858,0.4424,0.0354,-0.2208,-0.418,-0.6614,-0.7936,-0.847,-0.9002,-0.927,-0.9572,-0.9722,-1,-1,-1,-1,-1,-1,-0.9864,-0.9874,-0.6016,-0.6516,-0.854,-0.8034,-0.7276,-0.681,-0.61,0.1266,0.9042,0.8178,0.627,0.6206,0.6074,0.68,0.313,0.1248,-0.2114,-0.5582,-0.8178,-0.8962,-0.915,-0.9274,-0.9446,-0.9578,-0.9702,-1,-1,-1,-1,-1,-1,-0.92,-0.9,-0.0668,0.4332,0.2932,0.3266,0.2232,0.1466,-0.3434,-0.4058,-0.4686,-0.483,-0.5372,-0.523,-0.4916,-0.4716,-0.5258,-0.545,-0.675,-0.735,-0.83,-0.5034,-0.5668,-0.4734,-0.4534,-0.42,-0.6468,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,0.1714,-0.5428,-0.4858,1,1,1,-0.4572,-0.6572,-0.7428,-0.9714,-1,-0.9714,-0.9714,-0.9142,-0.7714,0.4286,0.7714,-0.5428,-0.7428,-0.8572,-0.8286,-0.8286,-0.8,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.978,-0.0406,-0.0406,-0.0082,-0.0018,0.0202,0.0208,0,-0.009,0.0312,0.2286,-0.6134,-0.1764,-0.5492,-0.3586,0.1484,0.5992,0.943,-0.3834,-0.9726,-0.4236,-0.1424,-0.2042,-0.163,-0.0634,-0.0428,0.1184,0.2076,0.3688,0.6124,0.8078,1,0.9314,0.6912,0.7324,0.7668,0.729,0.6432,0.5678,0.6226,0.5026,0.4374,0.5438,0.633,0.5746,0.3894,0.3036,0.65,0.5472,0.4752,0.1114,-0.6978,-0.2796,-0.2176,-0.1102,-0.2824,-0.1074,-0.0452,0.031,0.2966,0.692,0.8362,0.8644,1,0.7656,0.7146,0.921,0.8728,0.678,0.6016,0.661,0.579,0.5536,0.5536,0.8418,0.644,0.4858,0.4406,0.4718,0.3532,0.2542,0.1836,-0.1412,-0.3882,-0.1082,0.2034,0.4574,0.293,-0.0102,0.0592,0.3766,0.746,0.9798,0.9856,1,0.9884,0.7258,0.6076,0.8096,0.7546,0.492,0.368,0.619,0.495,0.4314,0.4084,0.4604,0.5122,0.0274,-0.0938,-0.0794,-0.2728,-0.2064,-0.2208,-0.3536,-0.0802,-1,-1,1,-0.4,-1,-0.4,0.4,-1,-0.2372,-0.0338,0.0848,0.0848,-0.2542,-0.1864,-0.2204,-0.1186,0.678,0.7796,0.8306,0.9322,1,0.7458,0.2712,0.5424,0.695,0.1864,0.1526,0.339,0.1186,-0.0338,0.0508,-0.1526,-0.2034,-0.2712,0,0.1016,-0.2372,-0.1864,-0.1356,-0.3898,'11'
-0.473,0.1076,0.1274,0.541,0.493,0.6742,0.6062,0.3088,0.204,0.2266,0.1842,0.357,0.3088,0.456,0.558,0.7308,0.7848,1,0.9292,0.8924,0.898,0.9008,0.9206,0.9094,0.8046,0.7338,0.6572,0.6006,0.4476,0.4702,0.4844,0.3824,-0.5328,-0.1102,0.1338,0.3308,0.6456,0.7586,0.4672,0.1574,0.1758,0.1548,0.126,0.1574,0.3754,0.4252,0.588,0.7742,0.8662,0.9476,1,0.895,0.8792,0.9606,0.9658,0.9082,0.8556,0.8346,0.8084,0.651,0.5224,0.4882,0.3938,0.3544,-0.5136,-0.154,0.2432,0.3622,0.7918,0.8028,0.2972,0.2244,0.0594,0.0514,0.1108,0.2324,0.2244,0.3568,0.5298,0.673,0.946,1,0.9054,0.8918,0.973,0.8756,0.8378,0.8568,0.8972,0.7432,0.7108,0.6432,0.5432,0.5244,0.4838,0.4298,-0.5034,-0.194,0.251,0.3812,0.7774,0.715,0.2266,0.1126,0.1424,0.0366,0.0068,0.1452,0.213,0.232,0.4626,0.612,0.7394,0.9918,1,0.9728,0.9322,0.9376,0.848,0.8562,0.8426,0.7394,0.7178,0.6446,0.593,0.4926,0.5062,0.4708,-0.486,-0.2078,0.2556,0.4298,0.6292,0.4578,0.1994,0.087,-0.0366,-0.0534,0.0534,-0.0168,0.1012,0.1826,0.2696,0.4578,0.6798,0.795,1,0.9158,0.9776,0.9438,0.8792,0.927,0.7528,0.722,0.6826,0.5618,0.4944,0.441,0.3736,0.3596,-0.3696,-0.0094,0.4784,0.4634,0.5196,0.2946,0.1332,-0.1332,-0.242,-0.2158,-0.3208,-0.1444,-0.0956,-0.0168,0.1594,0.2232,0.317,0.5872,0.741,1,0.91,0.9288,0.9174,0.9288,0.8574,0.6848,0.606,0.546,0.5422,0.5422,0.4822,0.5722,-0.3416,0.1084,-0.047,0.047,-0.0224,-0.1206,-0.5214,-0.3496,-0.4314,-0.4846,-0.5052,-0.452,-0.501,-0.6196,-0.3702,-0.362,-0.2598,0.1534,0.6524,0.7832,1,0.9632,0.9878,0.775,0.7668,0.4028,0.3048,0.2678,-0.0512,0.182,0.2392,0.3374,-0.451,0.255,0.255,0.5686,0.5686,0.4902,0.5294,0.3726,0.3726,0.1764,0.2156,0.255,0.2942,0.2942,0.3726,0.5686,0.647,0.9216,1,0.7254,0.804,0.6862,0.8432,0.6078,0.3726,0.6862,0.7254,0.6862,0.6078,0.3334,0.6078,0.3726,-0.3684,0.228,0.193,0.614,0.579,0.6842,0.614,0.4386,0.3684,0.2982,0.2632,0.5088,0.4736,0.579,0.5088,0.7192,0.6492,0.9298,0.8596,1,0.8948,0.9298,0.7894,0.8948,0.7544,0.5438,0.4386,0.2982,0.3334,0.6492,0.579,0.6842,-0.4082,-0.1632,0.3674,0.3266,0.5306,0.347,0.1836,-0.0816,-0.1836,-0.1428,-0.2858,-0.204,-0.1632,0,0.1836,0.2448,0.4898,0.7756,0.8776,1,0.9796,0.7756,0.7756,0.7346,0.5714,0.5102,0.4694,0.449,0.4286,0.449,0.551,0.4694,-1,-1,-1,-0.9762,-0.975,-0.9404,-0.919,-0.9072,-0.9226,-0.8762,-0.3238,0.163,0.4654,0.8452,0.8846,0.912,0.7274,0.406,0.0108,-0.3548,-0.5976,-0.781,-0.8298,-0.8846,-0.8988,-0.962,-0.9702,-0.9738,-1,-1,-1,-1,-1,-1,-1,-1,-0.9894,-0.9914,-0.6238,-0.7354,-0.8402,-0.6816,-0.707,-0.734,-0.1672,0.9026,0.8768,0.5454,0.3768,0.2408,0.0756,-0.1472,-0.6318,-0.8464,-0.913,-0.9326,-0.9558,-0.9646,-0.971,-0.978,-0.9792,-1,-1,-1,-1,-1,-1,-1,-1,-0.9,-0.9868,-0.4534,0.4466,0.41,0.3166,0.2732,-0.12,-0.3826,-0.2426,-0.4426,-0.3976,-0.4226,-0.47,-0.3976,-0.4112,-0.68,-0.5778,-0.5624,-0.65,-0.4468,-0.5068,-0.36,-0.5,-0.6334,-1,-1,-1,-1,-1,-1,-1,-1,-0.6,1,1,1,-0.3142,-0.2572,1,1,1,0.1714,-0.9428,-0.8,-0.7428,-0.9428,-0.9142,-0.5428,0.2572,0.2,-0.5428,-0.8572,-0.8858,-0.8,-0.7714,-0.8286,-0.7142,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.92,0.049,0.0772,0.1036,0.1208,0.1478,0.1642,0.178,0.1984,0.2536,0.4052,-0.64,-0.0352,-0.7392,-0.5898,-0.3894,0.3108,0.805,1,-0.7852,-0.4592,-0.2334,-0.2518,-0.0852,0.0074,0.026,0.174,0.263,0.4556,0.6556,0.8444,1,0.963,0.7666,0.7444,0.7334,0.6408,0.6556,0.7518,0.6778,0.6186,0.4926,0.4962,0.5778,0.4704,0.5186,0.4482,0.6444,0.6444,0.5148,0.0444,-0.6342,-0.3872,-0.3014,-0.1994,-0.2686,-0.3904,-0.1566,0.061,0.3444,0.5222,0.8352,0.9836,1,0.9176,0.8846,0.8518,0.878,0.6376,0.6442,0.6014,0.6178,0.5618,0.4794,0.6672,0.5914,0.3146,0.341,0.3476,0.308,0.2948,0.2158,0.0676,-0.1272,0.075,0.32,0.418,0.2006,-0.0474,0.0872,0.17,0.5468,0.8254,0.9082,0.9356,1,0.752,0.752,0.7612,0.9082,0.6386,0.4946,0.5468,0.6324,0.5038,0.4304,0.5376,0.5558,0.121,-0.0138,0.0168,0.0812,0.0076,-0.2956,-0.3996,0.1054,-1,-1,1,-0.4,-1,-0.8,0.1666,1,-0.2592,-0.2444,0.1852,0.2,0.0666,0.1112,0.2592,0.274,0.3482,0.763,0.6592,0.9704,1,0.5112,0.5408,0.6444,0.7482,0.2592,0.3186,0.4518,0.3778,0.4222,0.3482,0.0518,0.4666,0.3334,0.0962,-0.0222,-0.1408,-0.2,-0.2888,-0.5408,'11'
-0.5716,-0.2738,0.0104,0.0744,0.299,0.5442,0.6976,0.5258,0.3288,0.3196,0.2738,0.3884,0.6106,0.709,1,0.906,0.6472,0.645,0.6632,0.858,0.8488,0.9634,0.8442,0.8694,0.858,0.7754,0.6426,0.4066,0.3264,0.418,0.3402,0.2852,-0.5202,-0.2464,0.0186,0.0646,0.3254,0.7152,0.8182,0.5444,0.3188,0.38,0.4194,0.4698,0.759,0.8818,1,0.8072,0.6056,0.6516,0.6582,0.748,0.862,0.862,0.84,0.724,0.724,0.5618,0.4962,0.367,0.2332,0.2312,0.321,0.2662,-0.5288,-0.2802,0.0316,0.0902,0.2684,0.843,0.8452,0.524,0.5146,0.5428,0.606,0.9508,1,0.7444,0.6554,0.6436,0.5382,0.5474,0.6342,0.8124,0.8476,0.9484,0.8968,0.8288,0.7772,0.6858,0.5428,0.3622,0.32,0.3364,0.2286,0.3342,-0.4718,-0.2282,0.1282,0.323,0.5282,1,0.9616,0.4744,0.6308,0.6974,0.8538,0.8718,0.8538,0.482,0.377,0.3846,0.2616,0.3666,0.3898,0.5846,0.7666,0.8102,0.9,0.7872,0.7206,0.577,0.477,0.3206,0.2898,0.2666,0.3384,0.3974,-0.4684,-0.2246,0.163,0.5124,0.6212,1,0.8738,0.4802,0.671,0.9178,0.9412,0.4186,0.1542,0.1218,0.0044,-0.113,-0.1396,-0.1014,-0.0456,0.0544,0.2482,0.3598,0.5272,0.536,0.4126,0.2422,0.1894,0.1396,0.0162,0.1836,0.1894,0.3098,-0.3958,-0.1388,0.2674,0.6562,0.7812,1,0.75,0.5764,0.7222,0.7882,0.6562,0.1006,-0.0556,-0.2396,-0.3264,-0.3506,-0.3612,-0.4202,-0.3542,-0.257,-0.0868,0.066,0.323,0.6388,0.691,0.3612,0.0798,-0.0416,0.0174,0.257,0.4722,0.566,-0.1832,0.2252,0.0104,0.3926,0.5498,0.7696,0.4502,0.712,1,0.8062,0.0104,-0.2356,-0.3612,-0.5864,-0.5236,-0.4084,-0.1048,-0.335,-0.7434,-0.6388,-0.6858,-0.6074,-0.2042,0.11,0.2774,0.1308,-0.377,-0.5026,-0.2042,0.0576,0.3456,0.5864,-0.367,-0.1392,0.1392,0.1898,0.367,0.5444,0.6202,0.4684,0.4684,0.3164,0.3164,0.4684,0.595,0.7468,0.9494,0.924,0.6962,0.6456,0.6962,0.924,0.924,1,0.924,0.8734,0.924,0.8988,0.6962,0.4936,0.595,0.4684,0.5444,0.519,-0.6,-0.323,0.0154,0.0462,0.2924,0.5384,0.6616,0.5384,0.323,0.323,0.2616,0.3538,0.5692,0.723,1,0.9692,0.723,0.6616,0.6924,0.8462,0.9076,0.9384,0.9076,0.7846,0.8462,0.7846,0.6616,0.477,0.4154,0.323,0.4154,0.4462,-0.579,-0.2422,0.0736,0.3474,0.5368,1,0.9578,0.3264,0.579,0.6842,0.8526,0.621,0.6422,0.3474,0.2842,0.2632,0.0736,0.221,0.2422,0.4316,0.621,0.6632,0.8948,0.7894,0.4948,0.4106,0.3264,0.2,0.179,0.2842,0.4316,0.4526,-1,-1,-1,-1,-1,-1,-1,-1,-0.973,-0.9786,-0.4076,0.2528,0.5398,0.6718,0.841,0.7898,0.9248,0.4844,0.159,-0.0866,-0.51,-0.8026,-0.8608,-0.8934,-0.9404,-0.9502,-0.9674,-0.9644,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9928,-0.9938,-0.0382,0.9202,0.6446,0.6876,0.563,0.4498,0.2026,-0.3912,-0.5906,-0.7222,-0.8782,-0.9586,-0.9688,-0.9734,-0.9812,-0.9854,-0.9892,-0.9898,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8968,-1,-0.48,-0.2178,-0.4446,-0.4468,-0.5734,-0.42,-0.5,-0.668,-0.686,-0.794,-0.754,-0.82,-0.93,-0.7934,-0.8368,-0.7368,-0.95,-0.9034,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,-0.8286,-0.4286,-0.7714,-0.7714,-0.5142,-0.3714,-0.5142,-0.7142,0.5714,-0.6,-0.7428,-0.9142,-0.9142,-0.8286,-0.8572,-0.5428,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.0626,-0.075,-0.108,-0.128,-0.1716,-0.2292,-0.344,-0.4046,-0.372,-0.0618,-0.5466,0.1058,0.169,0.9884,0.9364,0.9202,0.7226,1,-0.3898,-0.356,0.1864,0.4238,0.4238,0.0848,0.5594,0.8306,0.8306,0.5594,0.9322,1,0.9662,0.661,0.7288,0.7966,0.7288,0.2542,0.4576,0.4576,0.2882,0.0508,0.017,-0.0508,-0.4238,-0.4238,-0.2882,-0.4916,-0.4238,-0.4238,-0.695,-0.8306,-0.1862,0.0896,0.3932,0.4896,0.5034,0.3794,0.5862,0.862,0.7518,0.7794,0.931,1,0.8344,0.7242,0.6,0.6552,0.6552,0.3104,0.338,0.3932,0.269,0.0482,-0.062,-0.2,-0.338,-0.4206,-0.4068,-0.5448,-0.4344,-0.531,-0.4482,-0.8344,-0.245,0.139,0.3642,0.5496,0.4304,0.4172,0.6688,0.9072,0.735,0.8014,0.9868,1,0.9206,0.7616,0.51,0.6026,0.4834,0.3378,0.2848,0.2186,0.2848,-0.0066,-0.0332,-0.086,-0.404,-0.457,-0.4702,-0.5762,-0.457,-0.4702,-0.6556,-0.8808,1,-1,-1,1,-1,-1,-1,-0.8334,-1,0.0892,0.3268,0.9604,1,0.6238,0.7228,0.8416,0.505,0.8812,0.703,0.6436,0.3268,0.406,0.5842,0.7624,0.5644,0.5644,0.208,0.3268,0.208,0.5644,0.307,0.3862,0.5842,0.1882,0.5644,0.3466,0.4456,-0.109,0.0496,0.4456,0.307,'12'
-0.582,-0.1918,0.0362,0.1706,0.548,0.5884,0.6908,0.644,0.4542,0.3368,0.3688,0.5288,0.5628,0.8272,0.8252,0.968,0.8272,0.7612,0.742,0.8018,0.9808,1,0.9744,0.934,0.951,0.8742,0.902,0.7078,0.614,0.5928,0.5906,0.4094,-0.466,-0.077,0.1208,0.2572,0.6308,0.666,0.8418,0.7956,0.5318,0.3912,0.4484,0.6726,0.699,1,0.9362,0.8154,0.6616,0.6858,0.699,0.7318,0.8594,0.8286,0.9054,0.789,0.7648,0.5714,0.5846,0.3956,0.3538,0.3604,0.2836,0.1846,-0.3952,-0.0546,0.1966,0.2882,0.6682,0.7228,0.965,0.8384,0.6158,0.5044,0.548,0.8276,0.8842,1,0.727,0.6462,0.5414,0.4606,0.5306,0.6354,0.6944,0.882,0.8516,0.6768,0.5698,0.6288,0.5372,0.5328,0.2468,0.2358,0.3056,0.2598,-0.4486,-0.1176,0.223,0.348,0.7058,0.8308,0.9534,0.652,0.6274,0.6862,0.9412,1,0.5906,0.522,0.4264,0.3406,0.3138,0.3014,0.2966,0.4338,0.5882,0.6594,0.7942,0.7622,0.6128,0.549,0.5466,0.3824,0.3088,0.3432,0.1666,0.3014,-0.4122,-0.1096,0.3286,0.6772,0.8358,1,0.9308,0.7896,0.9338,0.8934,0.9884,0.6802,0.4496,0.242,0.2104,0.1586,0.049,0.1268,0.1326,0.242,0.3054,0.5188,0.7204,0.7204,0.6512,0.5014,0.3488,0.2998,0.2162,0.2306,0.1844,0.196,-0.4098,-0.1712,0.2464,0.912,0.931,0.9906,0.796,0.934,1,0.8084,0.5134,0.2464,0.1146,-0.1272,-0.124,-0.19,-0.124,-0.1712,-0.1742,-0.1272,-0.011,0.2182,0.4128,0.6012,0.664,0.46,0.2778,0.2622,0.0456,0.1522,0.146,0.2496,-0.4982,-0.1012,0.131,1,0.9776,0.6928,0.5394,0.7528,0.7716,0.412,-0.3072,-0.3708,-0.3558,-0.4832,-0.5394,-0.6104,-0.5918,-0.6704,-0.809,-0.618,-0.5618,-0.4644,-0.1386,0.0786,0.2808,0.206,0.075,-0.045,-0.1686,0.1236,0.4008,0.4082,-0.7014,-0.3732,-0.0746,0.0448,0.3134,0.403,0.4926,0.4328,0.2836,0.2238,0.2836,0.403,0.403,0.6716,0.9104,0.9104,0.6716,0.6418,0.6716,0.7612,0.8806,0.9702,1,0.8508,0.9104,0.9402,0.9402,0.8508,0.6716,0.612,0.582,0.582,-0.6562,-0.25,-0.0312,0.125,0.4376,0.5,0.625,0.5938,0.375,0.25,0.3438,0.4062,0.5,0.6876,0.7188,0.9376,0.8438,0.75,0.6876,0.8124,1,1,1,0.9376,0.9688,0.9688,0.9688,0.7812,0.7188,0.75,0.6562,0.2188,-0.5556,-0.1852,0.074,0.2222,0.5926,0.5556,0.8888,0.7962,0.5186,0.3888,0.426,0.7222,0.8148,1,0.7962,0.5926,0.4444,0.4444,0.5186,0.5556,0.7038,0.7778,0.8334,0.6482,0.574,0.5,0.3888,0.463,0.1296,0.0556,0.2592,0.0556,-1,-1,-1,-1,-1,-1,-1,-1,-0.9688,-0.9754,-0.453,0.5316,0.9312,0.9788,0.9426,0.8166,0.5856,0.3316,0.2678,0.181,0.0582,-0.33,-0.805,-0.8756,-0.9164,-0.9524,-0.9492,-0.964,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9936,-0.9926,-0.0624,0.826,0.217,0.272,0.2164,0.0318,-0.2028,-0.4868,-0.6398,-0.7108,-0.7892,-0.888,-0.9704,-0.9788,-0.9824,-0.988,-0.989,-0.9914,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.92,-0.4534,-0.19,-0.316,-0.506,-0.596,-0.66,-0.674,-0.686,-0.704,-0.759,-0.8408,-0.8246,-0.8142,-0.8242,-0.8542,-0.7942,-0.8476,-0.8342,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,-0.8,-0.8572,0.6,0.4286,-0.6572,-0.6858,-0.6,-0.7142,-0.6858,0.2858,0,-0.9142,-0.9428,-1,-1,-0.7714,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.2904,0.2566,0.2012,0.134,0.0586,-0.0354,-0.1546,-0.3228,-0.3626,0.0346,-0.6134,0.2118,0.3032,0.8646,0.9538,0.87,0.4096,1,-0.2858,0.1072,0.2142,0.3572,0.1786,0.1072,0.4286,0.6786,0.7858,0.7858,0.9286,1,1,0.9286,0.8572,0.75,0.5358,0.2142,0.3572,0.3928,0.4286,0.3928,0.25,0.0358,0,-0.1428,-0.3214,-0.2858,-0.0714,0,-0.2142,-0.4642,-0.3768,0.0724,0.3334,0.4638,0.3768,0.3624,0.6376,0.8116,0.7972,0.7246,0.9856,1,0.9856,0.971,0.8406,0.7246,0.5508,0.3478,0.1884,0.3044,0.3478,0.1304,0.116,-0.2754,-0.3334,-0.5508,-0.6376,-0.6956,-0.7102,-0.5798,-0.6522,-0.7536,-0.2886,0.114,0.4362,0.5302,0.3826,0.4228,0.6644,0.9464,0.8792,0.7046,0.8926,1,0.9598,0.9194,0.7718,0.5838,0.557,0.3826,0.2348,0.3154,0.2348,0.1544,0.0872,-0.0336,-0.2484,-0.4228,-0.6108,-0.5168,-0.557,-0.4228,-0.4362,-0.5302,1,-1,-1,1,-0.8,-1,-1,-0.8334,-1,0.193,0.5964,0.614,0.9824,0.6316,0.9474,1,0.6666,0.5964,0.7018,0.6666,0.579,0.7368,0.7368,0.6666,0.772,0.5264,0.3508,0.4736,0.421,0.5438,0.3334,0.4736,0.421,0.2808,0.4386,0.3334,0.3508,0.3508,0.0702,0.2456,0.0526,'12'
-0.49,-0.1668,0.0882,0.1626,0.4814,0.4432,0.49,0.3518,0.4092,0.3008,0.2498,0.3454,0.4156,0.5366,0.8448,0.9362,0.9512,0.7896,0.711,0.8088,0.881,0.949,0.9574,1,0.9426,0.8724,0.849,0.7534,0.5558,0.541,0.4772,0.3942,-0.454,-0.1256,0.0942,0.1842,0.4938,0.4854,0.4748,0.4352,0.5376,0.3682,0.3744,0.498,0.6172,0.7364,0.9812,1,0.7552,0.6862,0.5544,0.6632,0.7176,0.8494,0.82,0.9246,0.7888,0.774,0.657,0.659,0.523,0.4476,0.3766,0.454,-0.4066,-0.0464,0.1778,0.273,0.6172,0.5922,0.5084,0.5356,0.6376,0.4722,0.47,0.76,0.8936,1,0.8392,0.864,0.7304,0.6512,0.599,0.3568,0.3976,0.76,0.7214,0.957,0.8098,0.71,0.735,0.7124,0.2004,0.3816,0.5062,0.2866,-0.2376,0.2232,0.3652,0.4928,0.4174,0.4086,0.1652,0.2028,0.4058,0.6232,0.713,1,0.9566,0.6754,0.6086,0.7798,0.8754,0.913,0.8986,0.8202,0.5856,0.655,0.655,0.658,0.2464,0.2696,0.3566,0.5218,0.5508,0.5392,0.4638,0.0986,-0.0524,0.5384,0.4276,0.4892,0.2154,0.1384,-0.3476,-0.0862,0.483,0.4154,0.6216,0.677,0.8892,0.5724,0.4646,0.7262,0.7446,0.9446,0.8676,1,0.8308,0.8892,0.6892,0.6676,0.1292,-0.3724,0.0492,0.2584,0.5446,0.5416,0.5662,0.283,0.1124,0.92,0.8362,0.6266,0.402,0.0704,-0.28,-0.4058,0.219,0.2914,0.4476,0.4972,0.6876,0.642,0.6266,0.5542,0.84,0.741,1,0.84,0.5542,0.5314,0.501,0.5124,0.5658,0.0666,-0.078,0.5048,0.718,0.8172,0.718,0.3258,-0.0022,1,0.9006,-0.0112,-0.3048,-0.368,-0.6162,-0.666,-0.4808,-0.2732,-0.1468,0.079,0.386,0.2912,0.237,0.2234,0.4492,0.4402,0.517,0.4492,0.3092,-0.0248,-0.1784,0.2866,0.368,-0.0338,-0.4672,0.1694,0.359,0.1874,0.21,0.0428,-0.5758,-0.3334,-0.0304,0.091,0.2728,0.2728,0.3636,0.2728,0.1818,0.1818,0.1212,0.2122,0.303,0.4242,0.6666,0.8788,0.909,0.6364,0.6364,0.697,0.8484,0.909,1,0.9394,0.8788,0.8484,0.8182,0.6666,0.606,0.4848,0.5152,0.5152,-0.6,-0.2728,-0.0182,0.1636,0.3818,0.3454,0.4182,0.3454,0.2364,0.2,0.2,0.1636,0.2728,0.5272,0.709,0.891,1,0.8546,0.6728,0.7818,0.8546,0.9272,0.9636,1,0.9272,0.891,0.9272,0.7454,0.5636,0.5636,0.491,0.2728,-0.3484,0.0786,0.4382,0.5056,0.7078,0.663,0.3484,0.3484,0.4832,0.618,0.6404,1,0.9102,0.7528,0.7304,0.7752,0.8426,0.7978,0.8652,0.7078,0.573,0.2584,0.3484,0.4382,0.4158,0.4832,0.618,0.618,0.7078,0.573,0.3708,0.0786,-1,-1,-1,-1,-1,-1,-1,-1,-0.9818,-0.9782,-0.4344,0.1384,0.3314,0.3738,0.4564,0.7416,0.4902,0.0898,-0.0364,-0.2002,-0.358,-0.5934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9932,-0.9924,-0.1652,0.6208,0.4484,0.5214,0.349,0.1836,-0.4,-0.6938,-0.7458,-0.825,-0.8798,-0.9278,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9934,-0.96,-0.6534,-0.168,-0.342,-0.25,-0.306,-0.506,-0.558,-0.48,-0.548,-0.77,-0.9692,-0.9692,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,-0.9428,-0.8,-0.8286,0,1,-0.7714,-0.6858,0.0858,-0.1142,-0.5714,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.558,0.3554,0.3356,0.3082,0.2874,0.2428,0.1744,0.1086,0.0054,-0.2016,-0.4684,-0.68,0.2,0.0094,0.9096,0.6818,0.4276,0.5606,1,-0.0666,0.2888,0.4666,0.3778,0.3778,0.5112,0.6444,0.7778,0.9112,0.8666,0.9556,0.9556,1,1,1,0.9556,0.9112,0.7778,0.6,0.2888,0.1556,-0.0666,0.1556,0.0666,0.1112,-0.0666,0.0666,0.0666,-0.0222,-0.1556,-0.4222,-0.3334,-0.1176,0.353,0.5148,0.4706,0.4118,0.3676,0.5294,0.8088,0.9706,0.8676,1,0.9706,0.9852,0.9264,0.75,0.7352,0.603,0.4558,0.3382,0.147,0.0148,0.0442,-0.0442,-0.3088,-0.3236,-0.3236,-0.3382,-0.397,-0.4118,-0.4412,-0.5736,-0.6912,-0.3098,0.0986,0.3944,0.3802,0.2816,0.2536,0.2958,0.7042,0.8874,0.7184,0.9014,1,0.8874,0.9014,0.7042,0.5916,0.4226,0.2536,0.2112,0.2112,0.0986,0.0422,-0.1126,-0.3802,-0.4084,-0.4648,-0.5352,-0.5212,-0.5352,-0.5212,-0.6902,-0.8592,1,-1,-1,1,-0.8,-1,-1,-0.8334,-1,0.8056,1,0.4444,0.2778,0.0556,0.4722,0.8612,0.5278,0.8334,0.9166,0.75,0.4722,0.7222,0.4722,0.5,0.4166,0.5,0.3056,0,0.1388,0,0.4444,0.6112,0.6944,0.2778,0.4722,0.1112,0.1666,-0.0556,-0.1666,-0.25,-0.4444,'13'
-0.5468,-0.2314,0.0968,0.1706,0.4876,0.4572,0.4636,0.3482,0.4108,0.2618,0.2186,0.2906,0.4044,0.4748,0.7774,0.8014,0.9536,0.8542,0.8078,0.7838,0.819,1,0.9648,0.9696,0.8784,0.8992,0.9104,0.827,0.574,0.5452,0.5916,0.4524,-0.4384,-0.1152,0.1584,0.2352,0.5552,0.5232,0.5008,0.4304,0.5072,0.3968,0.3712,0.4576,0.664,0.7488,1,0.9744,0.7648,0.6448,0.6464,0.5136,0.5104,0.7616,0.704,0.8336,0.7216,0.7408,0.728,0.696,0.4592,0.4176,0.432,0.256,-0.3348,0.0478,0.3348,0.3992,0.397,0.264,0.1976,0.235,0.2744,0.5156,0.58,0.709,1,0.9896,0.6632,0.6134,0.7152,0.634,0.6134,0.4138,0.2724,0.3472,0.5676,0.5634,0.1788,0.158,0.1704,0.0644,0.081,0.21,0.106,-0.081,-0.1682,0.2688,0.5974,0.6212,-0.1258,-0.2476,-0.2292,-0.8834,-0.0438,0.147,0.6212,0.8198,1,0.6292,0.5894,0.6928,0.9418,0.9364,0.8622,0.6662,0.6688,0.6424,0.4358,0.29,0.11,-0.1762,-0.5496,-0.698,-0.2238,-0.1072,-0.1126,-0.2504,-0.1972,0.1472,0.7334,0.6666,-0.1028,-0.1972,-0.3278,-0.8612,-0.4444,0.375,0.4916,0.8166,0.6806,0.6888,0.6528,0.7444,0.8166,1,0.7806,0.7528,0.5138,0.4778,0.4972,0.1416,0.0834,-0.1944,-0.3194,-0.5722,-0.2112,-0.0084,-0.0972,-0.1638,0.1124,0.5398,1,0.8478,-0.2102,-0.4566,-0.721,-0.9094,-0.6124,0.087,0.2608,0.5652,0.9964,0.9348,0.7246,0.6486,0.8624,0.9492,0.5036,0.3696,0.3224,0.2898,0.2282,0.308,0.2282,-0.105,-0.6376,-0.5362,0.1956,0.087,-0.2644,-0.587,0.1092,0.7118,0.441,0.4586,-0.5458,-0.5372,-0.6244,-0.7118,-0.262,-0.1354,-0.2794,0.249,0.5372,0.6332,0.7248,0.6244,0.9694,1,0.8734,0.7642,0.7206,0.6158,0.4324,0.8254,0.8122,0.3842,-0.1092,0.0656,0.3668,0.5414,0.4324,-0.0524,-0.6774,-0.4516,-0.0968,0,0.2258,0.258,0.2904,0.1936,0.1936,0.0968,0.129,0.129,0.2904,0.2904,0.5484,0.7742,0.7742,0.8388,0.742,0.6774,0.8388,0.9678,1,0.871,0.8388,0.9354,0.9032,0.7742,0.5484,0.5806,0.5162,0.4516,-0.705,-0.4098,-0.082,0.082,0.3114,0.2786,0.246,0.2132,0.2132,0.1476,0.1148,0.1148,0.2786,0.4098,0.541,0.7704,0.8688,0.705,0.7378,0.6722,0.836,0.9016,1,1,0.8688,0.8032,0.9016,0.705,0.541,0.5082,0.541,0.541,-0.3846,-0.011,0.3846,0.4506,0.6044,0.4066,0.3846,0.2308,0.2308,0.4946,0.6924,0.7362,1,0.956,0.4726,0.5824,0.6264,0.7362,0.6704,0.5384,0.3186,0.3626,0.055,0.077,-0.033,0.1648,0.1648,0.011,-0.099,0.055,0.011,-0.033,-1,-1,-1,-1,-1,-1,-1,-1,-0.9736,-0.9796,-0.4562,0.3568,0.6578,0.674,0.9078,0.272,0.1812,0.1374,0.0498,-0.2164,-0.6024,-0.7646,-0.8846,-0.9166,-0.9562,-0.9562,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9938,-0.9928,-0.3336,0.6536,0.3416,0.3108,-0.0808,-0.69,-0.7504,-0.7824,-0.8136,-0.8636,-0.9336,-0.9598,-0.9752,-0.98,-0.986,-0.9886,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.9468,-0.5234,-0.117,-0.3416,-0.3786,-0.4558,-0.5944,-0.623,-0.6844,-0.6216,-0.7116,-0.753,-0.7172,-0.6468,-0.6068,-0.56,-0.75,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6286,1,1,1,-0.9142,-0.6572,1,1,-0.8858,-1,-0.9142,-0.4572,-0.8286,-0.9142,-0.9428,-0.8,-0.8858,-0.8286,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,0.8976,0.2646,0.361,0.3622,0.3488,0.331,0.286,0.243,0.1142,-0.1182,-0.4358,-0.677,-0.5734,0.6588,-0.1486,0.5788,0.9518,0.8244,0.3576,1,-0.2064,0.238,0.5556,0.5556,0.4604,0.4286,0.5556,0.746,0.8096,0.8096,0.873,0.9366,0.9682,0.9682,0.9682,1,1,0.8412,0.6508,0.6508,0.5238,0.4286,0.238,0.0476,-0.0158,-0.0158,-0.0158,-0.1112,-0.1112,-0.3968,-0.2698,-0.4286,-0.2028,0.1304,0.5652,0.5218,0.4202,0.3478,0.4492,0.7536,0.913,0.8116,0.826,1,0.9276,0.8116,0.7246,0.7246,0.6086,0.5072,0.2754,0.3334,0.0724,0.0724,-0.174,-0.2608,-0.2898,-0.3044,-0.2464,-0.2028,-0.3334,-0.3334,-0.4058,-0.6956,-0.3334,0.0454,0.2576,0.394,0.3182,0.197,0.3484,0.7424,0.9242,0.8636,0.8484,1,0.9848,0.9394,0.6364,0.6666,0.3788,0.2878,-0.1666,-0.0304,-0.1516,-0.3182,-0.4696,-0.697,-0.5606,-0.5606,-0.6364,-0.7576,-0.5758,-0.6666,-0.7122,-0.8788,0.7282,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.4748,-0.4142,-0.0102,0.0102,0.2324,0.1314,0.3738,0.8182,0.8586,0.798,0.7778,0.7778,1,0.2728,0.3536,0.495,0.2728,0.2122,0.0506,0.192,0.3536,0.4344,-0.0102,-0.0102,-0.0304,0.1314,0.091,0.091,0.0708,-0.1112,-0.0304,-0.8788,'13'
-0.5616,-0.2088,0.0396,0.1544,0.499,0.522,0.4196,0.357,0.309,0.1566,0.213,0.2652,0.261,0.4218,0.6388,0.7746,0.9498,1,0.689,0.6638,0.8644,0.858,0.975,0.883,0.9332,0.8538,0.8184,0.6514,0.547,0.522,0.3048,0.286,-0.458,-0.1288,0.1226,0.2168,0.548,0.548,0.4704,0.3722,0.4314,0.3354,0.3558,0.3804,0.3968,0.5502,0.822,0.8774,1,0.9592,0.7424,0.7812,0.8794,0.9386,0.9428,0.9612,0.8834,0.816,0.6974,0.7402,0.3702,0.3232,0.4478,0.3108,-0.4516,-0.1512,0.126,0.1954,0.5148,0.46,0.3634,0.3404,0.3676,0.311,0.2436,0.313,0.4348,0.4978,0.7942,0.876,1,0.75,0.6786,0.6806,0.6912,0.8088,0.8782,0.8824,0.7858,0.7164,0.7962,0.5358,0.2878,0.3844,0.269,0.061,-0.302,0.0574,0.4698,0.4874,0.3932,0.2282,0.2312,0.1016,0.0132,0.0722,-0.0456,0.0544,0.3696,0.888,0.9676,0.9086,0.9676,1,0.779,0.7466,0.8204,0.732,0.8674,0.5346,0.517,0.5788,0.3608,0.2696,0.025,0.022,0.0544,0.1282,-0.301,0.0702,0.5852,0.582,-0.1238,-0.0066,-0.0268,-0.1572,-0.1004,-0.107,-0.6422,-0.2642,-0.0066,0.418,0.9096,0.9332,0.8896,0.9698,1,0.8662,0.873,0.873,0.5686,0.3812,0.301,0.1806,-0.0402,-0.1772,-0.3546,-0.5986,-0.8462,-0.7792,-0.1752,0.1434,0.6248,0.5434,0.0584,0.03,-0.1222,-0.1222,-0.5186,-0.508,-0.4514,-0.3346,0.0266,0.7132,1,0.7592,0.7664,0.9824,0.7592,0.7132,0.6956,0.5008,0.4762,0.4372,0.193,-0.0124,-0.0018,-0.2496,-0.4088,-0.6424,-0.9824,-0.77,0.146,0.7024,0.5978,0.5042,-0.3112,0.0578,-0.0578,-0.4656,-0.5426,-0.5702,-0.7134,-0.3002,-0.0688,0.5538,1,0.7906,0.5042,0.664,0.6914,0.4986,-0.1074,-0.124,-0.0634,0.372,0.2892,0.0304,-0.0192,-0.1626,-0.3334,-0.2838,-0.3112,0.19,-0.6452,-0.2904,0,0.0968,0.387,0.4194,0.387,0.2904,0.258,0.0322,0.0968,0.258,0.2258,0.2904,0.5484,0.7096,0.9678,1,0.5484,0.5484,0.871,0.8388,0.9678,0.8388,0.871,0.9354,0.9032,0.6774,0.5162,0.613,0.387,0.129,-0.6066,-0.2132,0.0492,0.1476,0.4754,0.5082,0.4098,0.3114,0.2786,0.082,0.2132,0.2132,0.246,0.4098,0.541,0.7378,0.8688,0.9672,0.705,0.7378,0.9016,0.8032,1,0.8688,1,0.8688,0.8688,0.705,0.6066,0.541,0.3114,0.4426,-0.4048,-0.0952,0.3334,0.238,0.3572,0.0952,0.0952,-0.119,-0.0476,-0.0476,0.0238,0.0952,0.3096,0.8334,0.7858,0.881,1,1,0.7858,0.6428,0.5,0.5714,0.7142,0.4286,0.381,0.4762,0.5238,0.238,0,-0.0714,0.119,0.1904,-1,-1,-1,-1,-1,-1,-1,-1,-0.9738,-0.969,-0.3748,0.7234,0.9934,0.9852,0.923,0.8626,0.5302,0.3748,0.2422,0.0148,-0.3682,-0.6202,-0.7382,-0.8428,-0.9084,-0.9542,-0.9526,-0.9574,-0.9672,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9922,-0.993,0.0282,0.5928,0.5544,0.6376,0.4608,0.0872,-0.4694,-0.6842,-0.6944,-0.7822,-0.8964,-0.9378,-0.9444,-0.9624,-0.9664,-0.977,-0.981,-0.9838,-0.9862,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.98,-0.56,-0.2,-0.304,-0.312,-0.29,-0.322,-0.396,-0.504,-0.602,-0.6492,-0.8468,-0.7922,-0.809,-0.529,-0.4922,-0.489,-0.5556,-0.6656,-0.739,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,-0.9428,-0.9714,-0.9714,-0.0858,1,-0.2572,0.8286,-0.6286,-0.1142,-0.1142,-0.9142,-0.9428,-0.8572,-0.8286,-0.8572,-0.9142,0.1142,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.7346,0.3612,0.3604,0.3472,0.3384,0.3222,0.2826,0.256,0.243,0.1318,-0.2198,-0.5866,0.2118,0.281,0.9166,0.58,0.5126,0.4768,1,-0.0606,0.1212,0.394,0.4242,0.3334,0.4242,0.4546,0.6666,0.8788,0.909,0.8788,0.9696,1,0.9696,0.8484,0.8484,0.7576,0.5758,0.394,0.394,0.303,0.2122,-0.0304,-0.091,-0.2424,-0.3334,-0.5454,-0.394,-0.303,-0.1818,-0.1818,-0.6364,-0.108,0.108,0.3812,0.5108,0.3812,0.3526,0.3812,0.7266,0.9568,0.8992,0.8848,1,0.9856,0.8992,0.7266,0.7122,0.6116,0.2374,0.2086,0.3238,0.151,0.108,-0.1224,-0.1654,-0.1942,-0.4244,-0.4964,-0.5252,-0.4532,-0.5252,-0.5396,-0.8562,-0.2958,0.0986,0.3802,0.3522,0.2958,0.183,0.3522,0.6478,0.9436,0.817,0.8592,1,0.9436,0.9578,0.6902,0.5212,0.3098,0.2676,0.1268,0.1972,0.1972,-0.0704,-0.2112,-0.3098,-0.2394,-0.5916,-0.5352,-0.6056,-0.7464,-0.7464,-0.676,-0.817,1,-1,-1,1,-0.8,-1,-0.2,-0.8334,-1,0.2296,0.2296,0.0666,0.126,0.4666,0.1704,0.5704,1,0.8222,0.8222,0.1852,0.4074,0.8074,0.4518,0.274,0.526,0.4814,0.1556,0.2148,0.5556,0.4518,0.4222,0.3334,0.274,0.274,0.274,0.1704,0.2,-0.1852,0.0962,-0.0666,-0.4518,'14'
-0.529,-0.2072,0.0714,0.1758,0.471,0.4842,0.4096,0.3416,0.3914,0.2886,0.3134,0.32,0.3416,0.4926,0.7728,0.849,0.917,0.9088,0.781,0.7396,0.8308,0.9768,1,0.9304,0.8756,0.8938,0.8076,0.8092,0.549,0.4578,0.4478,0.3566,-0.4758,-0.118,0.1162,0.2344,0.6226,0.628,0.4364,0.3506,0.433,0.2754,0.3328,0.3864,0.3578,0.5652,0.8856,1,0.7746,0.814,0.6672,0.61,0.7442,0.8282,0.9212,0.855,0.864,0.848,0.7602,0.6296,0.4634,0.4078,0.1592,0.1252,-0.3384,0.031,0.3512,0.43,0.5198,0.4494,0.3234,0.1248,0.1526,0.078,0.0352,0.1718,0.4044,0.5966,1,0.9168,0.8078,0.7822,0.8336,0.62,0.556,0.7418,0.6072,0.7118,0.6372,0.618,0.5006,0.3724,0.1632,-0.033,-0.0416,-0.1548,-0.1828,0.2628,0.6258,0.6742,0.0628,-0.0086,0.0942,-0.1714,-0.2428,-0.2686,-0.4486,-0.4058,0.1314,0.8714,1,0.8542,0.8372,0.9914,0.9428,0.9372,0.8028,0.7886,0.5314,0.5114,0.4686,0.3286,0.1772,-0.1342,-0.2658,-0.4514,-0.7,-0.84,-0.211,0.1228,0.6442,0.6082,-0.0152,0.0676,0.0068,-0.1944,-0.0482,-0.0868,-0.5972,-0.4594,0.3848,0.5918,0.8538,0.818,0.8068,1,0.9834,0.8042,0.7048,0.7132,0.5504,0.4096,0.3766,0.3076,0.0152,-0.0372,-0.1642,-0.5944,-0.8566,-0.9366,-0.2866,0.0468,0.576,0.462,0.2866,0.2106,0.0468,-0.0468,-0.2018,-0.3948,-0.383,-0.0556,0.7252,0.7486,0.8422,0.8128,0.8334,1,0.7894,0.7076,0.465,0.3362,0.2954,-0.0264,0.1316,0.0964,-0.1346,-0.2134,-0.3128,-0.2222,-0.4182,-0.2252,-0.1438,0.226,0.089,0.161,0.3322,0.3768,0.2808,0.0754,-0.1472,-0.2706,-0.0994,0.0822,0.1438,0.8254,1,0.8458,0.6302,0.5958,0.363,0.1746,-0.3254,-0.4932,-0.3802,0.2636,0.5172,0.3904,-0.0172,-0.1472,0.1062,0.3836,0.3972,0.3494,-0.4102,-0.2052,0.1026,0.1538,0.4616,0.4872,0.4358,0.3334,0.3846,0.359,0.3334,0.282,0.4102,0.4358,0.718,0.7692,0.8718,0.8462,0.7948,0.7948,0.8462,1,0.9744,0.9488,0.8974,0.9488,0.8718,0.7948,0.6154,0.5384,0.6154,0.4358,-0.6876,-0.4062,-0.0312,0.0624,0.375,0.375,0.25,0.25,0.3124,0.2188,0.2188,0.1562,0.2812,0.375,0.6876,0.75,0.875,0.8438,0.7812,0.75,0.8438,1,1,0.9062,0.875,0.875,0.8124,0.8124,0.5938,0.4062,0.5,0.5624,-0.4118,-0.0392,0.3334,0.3922,0.4902,0.4118,0.2156,0.0392,0.1176,0.098,0.0392,0.2156,0.4118,0.647,1,0.8824,0.6666,0.647,0.6862,0.2156,0.1372,0.3726,0.5686,0.6078,0.6274,0.5882,0.5098,0.3726,0.098,0.0392,-0.0196,0,-1,-1,-1,-1,-1,-1,-1,-1,-0.9768,-0.9754,-0.6628,0.3636,0.7364,0.8676,0.9104,0.1772,0.1282,0.1048,0.0068,-0.1342,-0.371,-0.7204,-0.8198,-0.902,-0.9584,-0.9632,-0.9644,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9934,-0.9934,-0.509,0.7,0.2266,0.002,-0.229,-0.708,-0.7534,-0.772,-0.7892,-0.8068,-0.8548,-0.9426,-0.9464,-0.966,-0.9766,-0.9764,-0.9828,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9934,-0.94,-0.5534,-0.115,-0.32,-0.29,-0.345,-0.4618,-0.4984,-0.63,-0.6818,-0.7918,-0.8,-0.734,-0.4134,-0.41,-0.48,-0.44,-0.6534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,1,1,1,-0.8572,-0.9142,1,1,0.2858,0.1142,-1,0.3428,0.3714,-0.7428,-0.9142,-0.7142,-0.8,-0.8572,-0.6572,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.8004,0.3864,0.3738,0.3398,0.3132,0.303,0.2682,0.2312,0.1952,-0.0432,-0.3936,-0.6,0.4588,-0.482,0.6696,0.9552,0.7292,0.457,1,-0.2156,-0.0588,0.1372,0.3726,0.3334,0.4118,0.5686,0.7254,0.8432,0.9216,0.9608,1,0.9608,0.9608,0.8824,0.7254,0.647,0.5294,0.2942,0.255,0.255,0.0588,-0.098,-0.4902,-0.1372,-0.1764,0.0196,-0.3726,-0.3334,-0.1372,-0.1372,-0.2942,-0.3594,-0.0468,0.2812,0.375,0.3124,0.2968,0.3906,0.6094,0.9062,0.7968,0.8438,0.9688,1,0.8594,0.6876,0.6876,0.6406,0.4218,0.2812,0.2188,0.0624,0.0156,-0.2344,-0.3282,-0.4376,-0.3282,-0.3124,-0.4062,-0.4062,-0.6094,-0.4532,-0.4844,-0.2276,0.1724,0.4344,0.4758,0.4344,0.338,0.462,0.7104,0.862,0.862,0.9862,1,0.9448,0.9448,0.7518,0.531,0.531,0.3794,0.3518,0.1862,0.0206,0.0206,-0.2138,-0.269,-0.4482,-0.4896,-0.5172,-0.6414,-0.531,-0.6138,-0.5862,-0.8758,1,-1,-1,1,-1,-1,-0.8,-0.8334,-1,-0.3178,-0.1782,0.2558,0.3178,0.1628,0.4264,0.5504,0.8914,0.9224,0.6744,0.5504,0.4418,0.7364,0.6744,0.5038,0.969,1,0.5194,0.3178,0.4264,0.6124,0.5194,0.3024,0.2714,0.1938,0.1008,0.0388,0.1628,0.2404,-0.0698,0.0852,-0.2248,'14'
-0.5164,-0.1456,0.195,0.3406,0.9038,0.9286,0.4506,0.4066,0.599,0.901,0.9946,0.7032,0.599,0.4698,0.4204,0.5164,0.4258,0.5138,0.783,0.7884,1,0.9424,0.7362,0.8406,0.9314,0.9066,0.923,0.7418,0.7554,0.9314,0.8022,0.467,-0.5348,-0.1782,0.1866,0.298,0.9026,0.922,0.3704,0.3928,0.5572,0.9304,1,0.6016,0.4792,0.3398,0.2562,0.3844,0.3204,0.3844,0.6156,0.6714,0.9164,0.805,0.5878,0.6824,0.7186,0.6852,0.6462,0.6462,0.6128,0.7326,0.532,0.351,-0.4312,-0.1132,0.2588,0.496,0.9568,0.9326,0.4098,0.4906,0.5768,1,0.9866,0.504,0.3936,0.3774,0.3396,0.353,0.3234,0.3396,0.496,0.7654,0.814,0.7278,0.6846,0.7036,0.6604,0.7278,0.69,0.6684,0.6954,0.6442,0.6092,0.3424,-0.4926,-0.18,0.2596,0.5458,0.9144,0.8408,0.2772,0.4986,0.708,1,0.8998,0.3244,0.1534,0.1356,0.1592,0.0678,0.1238,0.23,0.2802,0.5014,0.6136,0.705,0.5014,0.466,0.5546,0.4484,0.5044,0.4572,0.413,0.534,0.3952,0.171,-0.3812,-0.049,0.479,0.6994,1,0.8496,0.416,0.6294,0.8356,0.9896,0.6714,0.3532,0.1258,0.035,0.1294,0.0944,0.0384,0.1714,0.2552,0.3462,0.6398,0.584,0.563,0.4966,0.4406,0.3566,0.3426,0.3566,0.486,0.465,0.2798,0.035,-0.2932,0.0252,0.6738,0.7864,1,0.67,0.4796,0.6738,0.9456,0.9378,0.1884,-0.0408,-0.0098,-0.1496,-0.0874,-0.0174,-0.1572,-0.1612,-0.068,0.1146,0.4292,0.569,0.4252,0.2622,0.297,0.1844,0.1534,0.301,0.367,0.336,0.266,0.1068,-0.125,0.3478,0.8478,0.7934,1,0.6414,0.4836,0.5706,0.962,0.8152,-0.0272,-0.299,-0.3478,-0.5978,-0.5652,-0.7446,-0.6358,-0.375,-0.4456,-0.3532,-0.1414,0.6142,0.6522,0.049,-0.451,-0.3152,-0.1794,-0.1414,0.3424,0.663,0.5978,-0.049,-0.4084,-0.0704,0.2394,0.3802,0.8592,0.8874,0.6056,0.3522,0.6056,0.8028,0.9154,0.7746,0.5774,0.5774,0.4648,0.5492,0.3802,0.5492,0.7746,0.8592,0.9718,0.9154,0.831,0.831,0.9436,0.9718,1,0.662,0.8592,1,0.8874,0.5774,-0.3056,0,0.3056,0.4166,0.8888,0.9166,0.6388,0.4444,0.6666,0.8612,0.9444,0.75,0.6112,0.5834,0.5278,0.5834,0.4444,0.6112,0.8056,0.8612,1,0.9444,0.8334,0.8612,0.9444,0.8888,0.9166,0.7778,0.9166,1,0.9166,0.5556,-0.191,0.0562,0.663,0.7304,1,0.663,0.4832,0.7078,0.9102,0.9326,0.3708,0.2584,0.1686,0.0338,0.0112,0.1236,-0.0786,-0.0338,0.146,0.146,0.4382,0.8202,0.663,0.3258,0.4832,0.3258,0.191,0.4382,0.4832,0.4158,0.3932,0.3258,-1,-1,-1,-1,-1,-1,-1,-1,-0.988,-0.987,-0.4558,0.5456,0.8294,0.9324,0.98,0.876,0.5946,0.1556,-0.251,-0.4638,-0.6042,-0.7958,-0.8902,-0.9028,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9934,-0.9924,-0.4258,0.9176,0.8452,0.7228,0.6228,0.3858,0.0652,-0.2326,-0.5386,-0.7178,-0.8156,-0.912,-0.954,-0.9566,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.9268,-0.7834,-0.5372,-0.7344,-0.725,-0.73,-0.7476,-0.845,-0.8226,-0.845,-0.8476,-0.8376,-0.8726,-0.8868,-0.9468,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,-0.8572,-0.8,-0.9714,-0.7142,-0.7142,-0.6286,-0.6,-0.5142,0.4,0.7428,-0.7714,-0.8,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.778,0.804,0.7704,0.7692,0.7226,0.7058,0.7186,0.7148,0.745,0.6202,-0.6266,-0.1058,-0.3714,0.7832,0.9594,0.8646,0.8506,1,0.0526,0.228,0.579,0.7192,0.8596,0.8596,0.6842,0.6492,0.7192,0.8246,0.7894,0.8596,0.965,1,1,0.8948,0.614,0.4736,0.5088,0.3684,0.4036,0.228,0.1578,-0.0176,0.0176,-0.0878,-0.0176,-0.0526,-0.1578,-0.0878,-0.1578,-0.228,0.091,0.6364,1,0.967,0.967,0.9504,0.9174,0.686,0.6034,0.7852,0.7686,0.7852,0.9008,0.8678,0.9008,0.752,0.5702,0.1736,0.3388,0.2728,0.2396,0.0414,0.0248,-0.0578,-0.2728,-0.2892,-0.5042,-0.5042,-0.3224,-0.2728,-0.438,-0.9338,-0.1348,0.39,0.8724,0.8014,0.6454,0.8724,0.6738,0.5036,0.546,0.7872,0.9574,0.8582,0.9148,1,0.9148,0.9008,0.617,0.149,0.4042,0.4326,0.1632,0.149,0.1348,-0.1064,-0.4326,-0.5178,-0.546,-0.4894,-0.5036,-0.4468,-0.5036,-0.929,1,-1,-1,1,-0.8,-1,-1,-0.8334,-1,0.7638,0.8426,0.7166,1,0.9212,0.4488,0.4016,0.1654,0.3858,0.3858,0.1338,0.496,0.4488,0.4804,0.3544,0.5118,0.244,0.6692,0.5906,0.2126,0.5748,0.5906,0.2914,0.244,0.1496,0.1496,0.0394,0.0236,0.1182,0.0708,-0.0078,-0.4646,'15'
-0.4232,-0.0522,0.29,0.4484,0.9524,0.9144,0.775,0.664,0.737,1,0.9492,0.7084,0.5436,0.4644,0.4676,0.4454,0.4706,0.534,0.6482,0.927,0.9018,0.813,0.6862,0.7972,0.8764,0.8478,0.8162,0.721,0.8098,0.8416,0.7528,0.4516,-0.4524,-0.1262,0.2492,0.5324,0.9354,0.8676,0.68,0.6676,0.6862,1,0.9046,0.6892,0.4,0.3816,0.4246,0.3416,0.443,0.557,0.5662,0.8154,0.8738,0.9476,0.8,0.7662,0.883,0.76,0.8154,0.7108,0.723,0.8984,0.7324,0.443,-0.4538,-0.1502,0.2262,0.6084,0.9272,0.83,0.6054,0.657,0.8088,1,0.83,0.6418,0.478,0.384,0.399,0.39,0.384,0.4538,0.6388,0.7178,0.9576,0.921,0.733,0.7784,0.8088,0.7482,0.6722,0.651,0.8512,0.8452,0.657,0.4264,-0.4636,-0.197,0.2516,0.7606,0.9304,0.697,0.5636,0.6304,0.9848,1,0.6394,0.4576,0.4728,0.3122,0.303,0.3636,0.3606,0.4182,0.506,0.794,0.8788,0.9182,0.797,0.8,0.8242,0.7182,0.6454,0.6182,0.7394,0.7728,0.6152,0.291,-0.5094,-0.2312,0.225,0.8812,0.9626,0.5282,0.5124,0.7376,1,0.8188,0.4438,0.2876,0.1376,0.1126,0.1156,0.175,0.1782,0.2312,0.3624,0.5688,0.7718,0.7532,0.7312,0.7594,0.725,0.6282,0.5124,0.4938,0.5626,0.6594,0.5156,0.2,-0.5008,-0.1396,0.238,0.9114,0.9244,0.3432,0.5566,0.931,1,0.5008,0.0838,-0.005,-0.3004,-0.2086,-0.1692,-0.1068,-0.1888,-0.005,0.0674,0.2972,0.5632,0.5862,0.5796,0.4976,0.4548,0.3464,0.317,0.2414,0.3694,0.5206,0.3564,0.1396,-0.483,0.0128,0.577,1,0.923,0.3888,0.5898,0.7736,0.5556,-0.077,-0.4316,-0.4872,-0.5428,-0.53,-0.6924,-0.5214,-0.6154,-0.547,-0.5342,-0.2094,0.047,0.312,0.3504,-0.0256,-0.0128,-0.1282,-0.0684,-0.077,0.265,0.3804,0.0898,-0.3376,-0.0958,0.178,0.452,0.5068,0.8356,0.8356,0.8082,0.6438,0.7808,0.9726,0.9726,0.7808,0.6164,0.6164,0.589,0.5616,0.6164,0.589,0.7534,0.9452,1,0.863,0.863,0.9452,1,1,0.9452,0.8356,0.9726,1,0.9452,0.5616,-0.322,0.017,0.322,0.4238,0.9322,0.9662,0.7628,0.5594,0.7628,0.9662,0.9662,0.661,0.5594,0.4916,0.4576,0.5254,0.5254,0.4576,0.695,0.9322,1,0.695,0.6272,0.8306,0.7966,0.8644,0.7966,0.7966,0.9662,0.8984,0.6272,0.5594,-0.5578,-0.2422,0.1158,0.8736,0.9158,0.2632,0.4526,0.9158,1,0.5578,0.1368,0.0316,-0.1158,-0.1578,-0.1158,-0.0526,-0.0736,0.0526,0.1368,0.3894,0.6422,0.7052,0.5158,0.5368,0.5368,0.3474,0.3894,0.3264,0.2842,0.6,0.4736,0.2,-1,-1,-1,-1,-1,-1,-0.9816,-0.9798,-0.9808,-0.9808,-0.357,0.4478,0.6086,0.8678,0.9458,0.74,0.6418,0.6666,0.639,0.357,-0.0454,-0.457,-0.8586,-0.8952,-0.8502,-0.8594,-0.8806,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9894,-0.9848,-0.983,-0.99,-0.3308,0.4644,0.54,0.8276,0.863,0.4696,0.1366,-0.0762,-0.0962,-0.2034,-0.5486,-0.8008,-0.9482,-0.959,-0.9474,-0.9496,-0.9594,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9134,-0.83,-0.85,-0.8068,-0.7268,-0.585,-0.745,-0.69,-0.7376,-0.7626,-0.7476,-0.775,-0.765,-0.705,-0.84,-0.89,-0.8934,-0.8734,-0.9134,-0.9068,-0.9568,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5428,-0.4,-0.5714,1,1,1,-1,-1,-1,-0.8572,-0.8858,-0.9428,-0.5714,-0.2858,-0.0286,0.6572,0.0286,-0.9142,-0.9714,-0.9142,-0.6572,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.701,0.722,0.7074,0.7006,0.7046,0.7212,0.7438,0.7472,0.7472,0.765,-0.5466,-0.0824,-0.201,0.426,0.4556,0.5046,0.4182,1,-0.0566,0.0566,0.5094,0.585,0.6226,0.8114,0.7736,0.585,0.6226,0.6982,0.8868,0.8868,0.8868,1,1,0.9622,0.849,0.7736,0.6604,0.434,0.0944,0.1698,0.1698,-0.0566,-0.2452,-0.0944,-0.1698,-0.585,-0.3584,-0.6604,-0.3962,-0.5472,0.0266,0.469,0.947,0.9646,0.8054,1,0.9292,0.5752,0.6106,0.6814,0.8584,0.823,0.8584,0.8762,0.8938,0.8408,0.6284,0.5044,0.4514,0.239,-0.115,0.115,0.1504,-0.416,-0.3982,-0.3982,-0.5222,-0.77,-0.6284,-0.6284,-0.646,-0.8762,-0.1056,0.3334,0.8048,0.8212,0.8374,0.8862,0.756,0.496,0.496,0.8374,0.9512,0.87,1,0.935,0.9674,0.935,0.496,0.317,0.4634,0.057,-0.0894,-0.0406,0.0406,-0.4796,-0.5284,-0.6098,-0.561,-0.691,-0.7074,-0.7724,-0.7886,-0.87,0.7824,-1,-1,1,-0.8,-1,-0.2,-0.8334,-1,0.3474,0.2632,0.6,1,0.3052,0.0316,0.3264,-0.0948,0.5368,0.221,-0.3052,0.3052,0.0316,0.1158,0.6,0.4106,-0.1368,-0.1368,0.0316,-0.179,-0.0316,-0.0526,-0.0106,-0.179,-0.221,-0.5158,-0.4948,-0.4106,-0.4316,-0.1578,-0.5368,-0.6842,'15'
-0.2586,0.3822,0.3642,0.377,0.3178,0.0374,-0.045,-0.2046,-0.3334,-0.2742,-0.336,-0.1608,-0.3102,-0.1172,-0.1428,0.0348,0.063,0.3564,0.5084,0.7864,0.825,0.8482,0.812,0.9408,1,0.9716,0.825,0.7864,0.529,0.475,0.4826,0.5238,-0.3054,0.1358,0.172,0.3484,0.1628,-0.0316,-0.2692,-0.2466,-0.2714,-0.3168,-0.2986,-0.3824,-0.2172,-0.0928,0,0.0204,0.1244,0.4434,0.5476,0.7352,0.9592,0.9954,0.896,0.914,1,0.9548,0.8892,0.7512,0.6448,0.457,0.414,0.482,-0.4012,-0.0282,0.303,0.4086,0.0062,-0.1656,-0.3792,-0.519,-0.4822,-0.4626,-0.4798,-0.3988,-0.5018,-0.3866,-0.0944,-0.0798,0.0258,0.2196,0.411,0.7178,0.892,0.9582,0.9068,0.9264,1,0.9706,0.9214,0.7276,0.627,0.4184,0.3154,0.3202,-0.4066,-0.0656,0.341,0.399,-0.154,-0.2626,-0.4898,-0.5732,-0.5732,-0.5126,-0.5102,-0.4646,-0.4268,-0.3612,-0.207,-0.1186,-0.1112,0.1792,0.452,0.5454,0.947,0.9166,0.9494,0.9494,1,0.9116,0.8156,0.7424,0.5304,0.4622,0.341,0.356,-0.267,0.1638,0.6442,0.6832,-0.2064,-0.4912,-0.6228,-0.6798,-0.7972,-0.854,-0.79,-0.7758,-0.7296,-0.6476,-0.6228,-0.6798,-0.4982,-0.3986,-0.1922,0.2882,0.8292,0.9502,0.8398,0.943,1,0.9252,0.5908,0.3416,0.2954,0.178,0.2954,0.5196,-0.1272,0.3814,0.072,0.178,-0.4872,-0.2584,-0.2542,-0.5508,-0.606,-0.7882,-0.6568,-0.4746,-0.589,-0.7118,-0.7204,-0.7118,-0.4026,-0.0762,0.4534,0.7204,1,0.9194,0.5932,0.8772,0.9364,0.6484,0.411,0.3432,-0.0932,-0.1526,-0.055,0.2754,-0.599,0.0582,0.1842,0.3426,-0.049,0.049,-0.1328,-0.4498,-0.4312,-0.6364,-0.5758,-0.3752,-0.3334,-0.571,-0.3846,-0.4872,-0.0536,0.6224,0.9068,0.9068,0.6084,0.3054,0.7622,1,0.8648,0.4546,0.1142,0.035,0.0304,0.3614,0.4826,0.5572,-0.1666,0.5416,0.5416,0.2916,0.2916,0,-0.0416,-0.3334,-0.3334,-0.5,-0.2084,-0.2916,-0.5416,-0.375,-0.4166,-0.3334,-0.375,-0.125,-0.0416,0.5,0.7916,0.75,0.75,0.625,1,0.9166,0.5834,0.5416,0,0.3334,0.4584,0.5834,-0.409,0.409,0.409,0.2272,0.2272,-0.091,-0.1364,-0.1818,-0.2272,-0.409,-0.3636,-0.3636,-0.3636,-0.3636,-0.2272,-0.2728,-0.2728,0.2728,0.2728,0.909,0.909,0.6818,0.5454,0.6818,1,1,0.8182,0.5454,0.3636,0.4546,0.5,0.6818,-0.3182,0.0228,0.5454,0.5228,-0.2046,-0.5228,-0.7954,-0.7046,-0.659,-0.7272,-0.659,-0.75,-0.6364,-0.659,-0.6136,-0.6136,-0.7046,-0.1818,-0.1364,0.2046,0.9318,1,0.5,0.7272,0.8636,0.659,0.591,0.341,0.2272,0.091,0.0454,0.7272,-1,-1,-1,-1,-0.9436,-0.9608,-0.8748,-0.7448,-0.7128,-0.8846,-0.632,0.7276,0.9166,0.951,0.8944,0.8282,0.5534,0.5804,0.1264,-0.4478,-0.5926,-0.7964,-0.924,-0.9558,-0.9436,-0.9436,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9746,-0.9734,-0.8326,-0.5838,-0.703,-0.7524,-0.722,-0.1686,0.7772,0.7524,0.6282,0.5914,0.2266,-0.1994,-0.6196,-0.7902,-0.8504,-0.9138,-0.9556,-0.9686,-0.9664,-0.9702,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8868,-0.9468,-0.6934,-0.1,0.1332,0.04,0.0866,-0.518,-0.076,-0.058,-0.072,-0.198,-0.11,-0.42,-0.6,-0.682,-0.6346,-0.5892,-0.6634,-0.9234,-0.74,-0.8668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6572,0.4286,1,1,-0.7142,-0.6286,0.6572,1,-0.3428,-0.8858,-0.8858,-0.9142,-0.8572,-0.1142,0.2,-0.7142,-0.8286,-0.6858,-0.6572,-0.8286,-0.9142,-0.8858,-1,-1,-1,-1,-1,-1,-1,0.2948,0.3114,0.336,0.3568,0.3706,0.3868,0.381,0.3774,0.3082,0.1666,0.9362,0.9272,0.937,0.9232,0.9376,0.917,0.9412,0.9658,0.9876,0.8568,-0.6134,0.2118,-0.7344,-0.4742,-0.3084,-0.142,0.2412,1,-0.242,-0.2224,-0.071,-0.1296,-0.1052,0.071,0.159,0.3888,0.5892,0.9266,1,0.863,0.8484,0.4816,0.6186,0.8288,0.8924,0.6772,0.4376,0.775,0.775,0.6186,0.604,0.7848,0.7212,0.423,0.3202,0.1246,0.1052,0.2762,0.071,-0.1932,-0.2388,-0.1936,-0.1846,-0.0316,-0.0586,-0.2072,-0.1216,0.1172,0.3738,0.9054,1,0.8244,0.8694,0.8154,0.7568,0.6306,1,0.6216,0.482,0.6442,0.7838,0.6306,0.482,0.6936,0.5316,0.3334,0.2792,0.0946,0.3064,0.41,0.1936,0.081,-0.4728,-0.0646,-0.075,-0.2816,-0.5504,-0.2816,-0.199,-0.1886,0.0852,0.5814,0.8088,0.8242,1,0.8036,0.447,0.5762,0.7778,0.5658,0.3074,0.3488,0.7468,0.633,0.4108,0.23,0.0852,-0.075,-0.1782,-0.168,0.1422,0.2662,0.6124,0.416,-0.4168,-1,-1,1,-1,-1,-1,-0.1,-1,-0.0758,0.091,-0.0606,0.091,0.197,0.0454,0.091,0.1666,0.4848,0.6666,0.303,0.4394,1,0.591,0.5606,0.6212,0.7122,0.1818,0.1364,0.394,0.197,0.1364,0.2728,0.197,0.0454,0.0152,0.3484,0.1818,0.091,0.1212,0.394,0.1516,'16'
-0.2356,0.3598,0.4332,0.309,0.2548,-0.0318,-0.0668,-0.2452,-0.1528,-0.2834,-0.277,-0.207,-0.1656,-0.121,-0.1402,-0.0892,0.0828,0.3026,0.43,0.8408,1,0.8854,0.7612,0.914,0.9808,0.9204,0.8504,0.8152,0.6464,0.7198,0.672,0.691,-0.461,-0.0358,-0.0482,0.152,-0.016,-0.162,-0.3522,-0.3152,-0.3868,-0.3992,-0.3598,-0.4042,-0.3202,-0.3226,-0.204,-0.0976,0.016,0.2978,0.56,0.78,0.963,0.9976,0.9036,0.9332,1,0.9678,0.9036,0.8492,0.7874,0.6366,0.5624,0.5724,-0.4522,-0.0904,0.1286,0.2306,-0.1058,-0.2434,-0.3248,-0.437,-0.4344,-0.4726,-0.437,-0.3528,-0.4268,-0.4216,-0.223,-0.1464,-0.014,0.1032,0.3936,0.7146,0.9184,0.916,0.9566,1,0.9872,0.944,0.9032,0.893,0.7758,0.7122,0.5058,0.544,-0.4674,-0.141,0.1202,0.1958,-0.248,-0.3186,-0.4726,-0.4752,-0.4464,-0.5614,-0.6528,-0.5484,-0.496,-0.4882,-0.4074,-0.308,-0.201,0.0496,0.2742,0.543,0.872,0.9712,0.8826,0.8538,1,0.8538,0.94,0.778,0.7416,0.6188,0.449,0.4256,-0.3954,-0.0088,0.1716,0.2646,-0.1948,-0.2268,-0.436,-0.5784,-0.5582,-0.5668,-0.6076,-0.5174,-0.5872,-0.561,-0.3604,-0.404,-0.3518,0.003,0.1308,0.5406,0.7442,1,0.875,0.8488,0.9622,0.9448,0.8576,0.7384,0.6628,0.503,0.497,0.5116,-0.1056,0.499,0.5776,0.7972,0.3582,-0.0642,-0.4244,-0.7432,-0.7682,-0.7888,-0.8012,-0.441,-0.5114,-0.59,-0.59,-0.6398,-0.3292,-0.2506,0.0642,0.176,0.7102,0.8674,0.9006,0.8964,1,0.9006,0.7722,0.4038,0.4078,0.4244,0.4286,0.5652,-0.2774,0.4732,0.296,0.1188,-0.2262,-0.2448,-0.2588,-0.3194,-0.5432,-0.7342,-0.7062,-0.5012,-0.5292,-0.697,-0.4778,-0.6364,-0.338,-0.049,0.091,0.3426,0.5152,0.5432,0.4546,0.5898,1,0.9068,0.3614,0.2168,0.0862,0.0536,0.1142,0.5618,-0.2766,-0.0212,-0.0212,0.1914,0.0638,-0.0638,-0.149,-0.234,-0.1064,-0.234,-0.149,0.1064,0.0212,-0.3618,-0.6596,-0.2766,-0.0638,0.3192,0.234,0.8298,0.9148,0.5744,0.617,0.7022,1,0.6596,0.7872,0.8298,0.4894,0.532,0.4894,0.8724,0.037,0.7038,0.7408,0.4074,0.4074,0.1112,0.1482,-0.2222,0.074,-0.074,-0.037,-0.2592,-0.2592,-0.1852,-0.1112,0,0.1482,0.2222,0.5556,0.5186,0.926,1,0.6666,0.4814,0.6296,0.5926,0.6666,0.7408,0.4074,0.7408,0.5556,0.8148,-0.1428,0.3334,0.5714,0.6904,0.1904,0.1904,-0.262,-0.4524,-0.762,-0.619,-0.5952,-0.5476,-0.4762,-0.381,-0.6428,-0.6428,-0.4048,-0.0238,0.238,0.5476,0.5952,1,0.9762,0.762,0.8334,0.9048,0.8334,0.8096,0.762,0.6666,0.738,0.738,-1,-1,-1,-1,-1,-0.9496,-0.955,-0.759,-0.4146,-0.3774,-0.7722,0.5762,0.8014,0.698,0.7166,0.6848,0.5072,0.3298,0.2636,0.4226,-0.2292,-0.5312,-0.8066,-0.91,-0.9338,-0.9178,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.988,-0.9874,-0.8402,-0.7722,-0.7652,-0.842,-0.6958,0.5216,0.8768,0.6068,0.4032,0.1456,-0.231,-0.5744,-0.7454,-0.8808,-0.9188,-0.9584,-0.9754,-0.9808,-0.9814,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9934,-0.94,-0.7734,-0.1968,-0.21,0.08,-0.48,-0.1224,0.0132,-0.0224,-0.0268,0.0044,-0.089,-0.1868,-0.6556,-0.8046,-0.6756,-0.58,-0.62,-0.7934,-0.6868,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,-0.6572,0.1142,1,1,-0.9714,-1,-0.9142,-1,-0.8572,-0.2286,0.4,-0.4572,-0.7142,-0.4286,-0.8572,-0.7714,-0.8858,-1,-1,-1,-1,-1,-1,-1,0.261,0.2738,0.2912,0.317,0.3402,0.369,0.3902,0.4038,0.3688,0.2126,0.8598,0.8744,0.8886,0.874,0.8976,0.916,0.9652,1,1,1,-0.64,0.047,-0.834,-0.8592,-0.7234,-0.6148,-0.3282,1,-0.0898,-0.0464,-0.0154,-0.0216,0.034,-0.0464,0.2942,0.6222,0.7462,0.7586,0.7894,0.8018,0.839,0.5852,0.517,0.7648,0.7648,0.5542,0.7462,1,0.9072,0.6718,0.61,0.8204,0.7586,0.5852,0.4118,0.3066,0.3436,0.486,0.3684,-0.127,-0.241,-0.2806,-0.34,-0.2872,-0.2542,-0.4456,-0.2476,-0.1156,0.2674,0.6964,0.8746,0.7492,0.8746,0.6238,0.4852,0.7624,0.8152,0.4918,0.538,0.901,1,0.505,0.373,0.6766,0.6832,0.3334,0.274,0.1816,0.175,0.2344,0.2542,-0.0298,-0.379,-0.1112,-0.2352,-0.2942,-0.379,-0.4052,-0.2418,-0.3138,0.17,0.621,0.7974,0.8954,0.9216,0.7386,0.4314,0.6144,1,0.5164,0.2484,0.4836,0.7124,0.5882,0.4184,0.6406,0.4444,0.17,0.1112,0.353,0.4118,0.2876,0.1634,-0.0784,-0.4142,-1,-1,1,-1,-1,-1,-0.3,-1,-0.3948,0.3422,0.421,0.5,0.3948,0.1842,0.421,0.6842,1,0.6578,0.6842,0.8948,0.921,0.9474,0.4474,0.8684,0.8158,-0.1578,-0.2106,0.5264,0.6052,0.4474,0.421,0.2106,0.079,0.1316,0.6842,0.579,0.1578,0.3684,0.1316,-0.421,'16'
-0.3906,0.1864,0.1572,0.3128,0.2286,-0.0372,-0.1702,-0.3192,-0.449,-0.3258,-0.3808,-0.2544,-0.2156,-0.0794,0.1928,0.3452,0.5332,0.6758,0.7504,0.786,0.7148,0.799,0.9352,1,0.9092,0.825,0.692,0.5592,0.4554,0.4976,0.4328,0.41,-0.353,0.1042,0.2752,0.4774,0.2908,0.07,-0.182,-0.157,-0.2286,-0.269,-0.2472,-0.3126,-0.1166,0.0856,0.1912,0.5272,0.6018,1,0.9752,0.7326,0.7512,0.944,0.776,0.7076,0.6486,0.6796,0.5054,0.5116,0.3592,0.4774,0.4526,0.353,-0.4068,0.0576,0.5288,0.695,0.4238,0.0576,-0.0814,-0.1118,-0.4306,-0.3594,-0.1898,-0.1932,-0.0984,0.295,0.3762,0.7694,0.8068,1,0.7932,0.7152,0.8034,0.8204,0.5288,0.4916,0.6204,0.4848,0.5288,0.4102,0.461,0.617,0.6102,0.1526,-0.3308,0.2394,0.7734,1,0.7514,0.3236,0.0932,0.1298,-0.2432,-0.2798,0.042,0.1298,0.3162,0.8318,0.9122,0.6966,0.7112,0.8684,0.8172,0.8318,0.6966,0.5758,0.287,0.382,0.5064,0.554,0.554,0.5028,0.5246,0.6672,0.8538,0.5868,-0.3516,0.3516,0.556,1,0.8468,0.5284,0.281,0.3124,0.0726,0.2102,0.552,0.6188,0.607,0.5992,0.2378,0.226,0.3478,0.3596,0.6346,0.56,0.7918,0.6464,0.336,0.2142,0.3084,0.2692,0.4264,0.3398,0.4184,0.6228,0.7446,0.5324,-0.479,0.3548,0.3508,1,0.9438,0.5712,0.523,0.006,-0.0542,0.2866,0.1904,0.2024,0.022,-0.0982,-0.1624,-0.014,-0.03,-0.2546,-0.3026,-0.3346,-0.1504,0.014,0.0702,-0.002,-0.006,-0.1944,-0.1584,-0.038,0.1342,0.5552,0.5872,0.3588,-0.4846,0.9176,0.9038,1,0.9382,0.464,0.4914,0.3402,0.3814,0.9312,0.9656,0.2234,0.2234,-0.4158,-0.292,-0.1134,-0.0378,0.024,0.1822,-0.3814,-0.4776,-0.0446,-0.0584,-0.4846,-0.519,-0.4296,-0.7458,-0.3402,-0.2714,0.4432,0.5258,0.2096,-0.4348,0.2608,0.2608,0.2174,0.174,-0.174,-0.2174,-0.4348,-0.3914,-0.4782,-0.4782,-0.2608,-0.2174,0,0,0.3914,0.3478,0.7392,0.6956,0.6956,0.6522,0.6956,0.6956,1,0.913,0.7826,0.6522,0.4782,0.3914,0.4348,0.3478,0.2608,-0.4182,0.1272,0.091,0.2,0.1636,-0.1272,-0.2,-0.3818,-0.4546,-0.309,-0.3818,-0.2728,-0.2728,-0.1272,0.1636,0.309,0.491,0.6,0.6,0.7454,0.6364,0.709,0.891,1,0.6728,0.7818,0.5272,0.5636,0.4182,0.3818,0.1272,0.3454,-0.4026,0.2988,0.4546,1,0.8962,0.5844,0.4546,0.013,-0.039,0.1428,0.4806,0.5844,-0.013,0.2208,-0.039,0.013,-0.091,0.039,-0.039,0.2468,0.2988,0.2988,0.065,0.091,0.013,0.091,0.1688,0.2728,0.2468,0.4806,0.4026,0.4546,-1,-1,-0.9666,-0.9602,-0.857,-0.795,-0.9254,-0.9666,-0.9602,-0.9572,-0.1596,0.0406,0.212,0.5298,0.7934,0.9826,0.7046,0.2296,0.1882,0.1502,-0.3916,-0.7268,-0.884,-0.9348,-0.9572,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9712,-0.9704,-0.3022,-0.337,-0.5714,-0.687,-0.6704,-0.7224,-0.3758,0.5352,0.8904,0.9212,0.7112,0.4414,0.0882,-0.1658,-0.209,-0.2708,-0.6626,-0.8484,-0.9246,-0.9502,-0.9626,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8868,-0.8534,-0.2268,0.3232,0.5266,0.69,0.5,0.52,-0.36,-0.2176,-0.0676,-0.2726,-0.4526,-0.74,-0.85,-0.84,-0.825,-0.795,-0.8,-0.815,-0.8134,-0.8734,-0.9468,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,1,1,1,-0.2858,-0.7428,-0.9428,0.7142,1,1,-0.8858,-0.8858,-0.8572,-0.6,-0.6,-0.7428,-0.4,-0.0572,0.0286,-0.5428,-0.6572,-0.9714,-0.4572,-1,-1,-1,-1,-1,-1,-1,-1,0.363,0.3784,0.3956,0.4064,0.4284,0.4494,0.4652,0.486,0.5168,0.6082,0.5946,0.5972,0.5886,0.5898,0.5642,0.5334,0.4918,0.402,0.1928,-0.1578,-0.72,-0.0824,-0.2806,4e-04,0.5096,0.8962,0.9566,0.0084,-0.7166,-0.1528,-0.0992,-0.1118,-0.03,0.0016,0.0834,0.1496,0.1622,0.3638,0.496,0.5968,0.7732,0.9464,1,0.789,0.8678,0.7166,0.7322,0.7732,0.7764,0.6062,0.6944,0.5308,0.3544,0.2188,0.2724,0.4236,0.2944,0.2188,0.1402,-0.0456,-0.705,-0.678,-0.539,-0.3796,-0.3594,-0.3458,-0.2406,-0.2136,-0.1016,0.0204,0.2338,0.4372,0.8746,0.9932,0.9186,0.9694,0.8746,0.722,0.8814,1,0.9694,0.861,0.8406,0.7762,0.6542,0.4372,0.4338,0.6204,0.5016,0.5186,0.4406,0.217,-0.4694,-0.1428,-0.187,-0.2074,-0.3266,-0.4252,-0.238,-0.1156,0.0748,0.4626,0.5,0.5986,1,0.9116,0.881,0.7722,0.7006,0.5136,0.636,0.738,0.7278,0.5238,0.5782,0.4694,0.364,0.0544,0.0612,0.0544,0.0374,0.1632,0.2278,0.119,0.5032,-1,-1,1,-0.6,-1,-1,0.4,-1,0.4458,0.759,0.6144,0.8072,0.8314,1,0.759,0.1566,0.4458,0.229,-0.0362,0.0362,0.1326,0.3012,0.3012,0.1084,-0.0362,0.012,0.2772,0.012,0.1084,0.6626,0.7108,0.0844,0.2048,0.012,-0.0844,-0.0602,-0.1084,-0.6144,0.0602,-0.2048,'17'
-0.5062,0.0328,0.0328,0.0986,0.0918,-0.162,-0.18,-0.2028,-0.2028,-0.2254,-0.2208,-0.1212,-0.094,0.0352,0.0622,0.3182,0.359,0.6694,0.7282,0.5652,0.6466,0.7984,0.8776,0.9026,1,0.8324,0.9116,0.769,0.7644,0.5946,0.6784,0.5946,-0.5202,-0.0622,-0.073,0.2476,0.1886,-0.06,-0.145,-0.1428,-0.2454,-0.132,-0.2476,-0.1014,-0.0906,0.0426,0.18,0.2912,0.6424,0.7448,0.7884,0.8756,0.939,1,0.7492,0.8016,0.8016,0.843,0.7732,0.8058,0.542,0.5376,0.6314,0.6336,-0.4328,0.0416,0.242,0.5354,0.423,0.1296,-0.0318,0.0098,-0.203,-0.1052,-0.0636,-0.0024,0.0366,0.0782,0.5208,0.5158,0.929,0.868,0.8974,0.8216,1,0.8876,0.4622,0.423,0.6112,0.5624,0.6772,0.5158,0.6014,0.6626,0.731,0.4622,-0.2342,0.2784,0.7142,0.9352,0.7438,0.3962,0.0428,0.0986,0.0398,0.0014,0.0752,0.2372,0.4964,0.8734,1,0.7526,0.7496,0.6966,0.7114,0.8528,0.8498,0.6024,0.3344,0.4316,0.464,0.5376,0.514,0.5522,0.4934,0.6142,0.5376,0.3696,-0.2876,0.15,0.8656,1,0.5968,0.25,-0.2718,-0.1438,0.0188,0.1626,0.4282,0.8344,0.7312,0.3718,0.2562,0.325,0.2218,0.1876,0.275,0.3406,0.5094,0.3124,0.2344,0.1906,0.1312,0.1438,0.0624,0.1124,0.0968,0.225,0.1594,0.0156,-0.273,0.1596,0.9114,1,0.3794,0.0886,-0.5638,-0.0744,0.007,0.2554,0.2482,0.3546,0.0602,-0.1382,-0.0958,-0.2056,-0.2092,-0.2836,-0.3298,-0.0496,-0.0638,-0.0284,-0.1028,-0.1738,-0.156,-0.2092,-0.1914,-0.2872,-0.1454,0.0958,0.039,-0.0602,-0.003,0.656,0.7492,0.9184,0.2128,-0.1546,-0.4694,-0.1078,0.5044,1,0.691,-0.0612,-0.1428,-0.3936,-0.242,-0.4518,-0.2244,-0.3528,-0.3412,-0.1604,-0.6326,-0.2944,-0.4052,-0.1312,-0.0846,-0.3878,-0.411,-0.4986,0.038,0.4344,0.2304,-0.1836,-0.1714,0.3714,0.3714,0.2858,0.3142,0.1142,0.0858,0.0286,0.0572,0,0.0572,-0.0286,0.1428,0.2286,0.3428,0.4,0.5428,0.5714,0.7142,0.5428,0.6572,0.5428,0.8286,0.7142,1,0.9142,0.9428,0.8572,0.8572,0.7428,0.7714,0.6572,-0.3714,0.1142,0.1428,0.1428,0.1428,-0.1142,-0.1142,-0.1142,-0.0858,-0.1428,-0.1142,-0.0286,0.0286,0.1142,0.2,0.3714,0.4858,0.6572,0.7714,0.5714,0.6,0.7142,0.8858,0.7428,1,0.8572,0.9428,0.8286,0.8286,0.6858,0.8,0.7142,-0.423,0.077,0.3654,0.673,0.5192,0.1346,0.0384,-0.0192,-0.1924,-0.1538,-0.0576,-0.0576,0.1346,0.3654,0.7116,0.6346,0.8846,0.7692,0.8076,0.827,1,0.827,-0.0192,0.4424,0.4808,0.5576,0.5576,0.5576,0.5576,0.5962,0.5192,0.423,-1,-0.9784,-0.9784,-0.9772,-0.9612,-0.9714,-0.9714,-0.9406,-0.9578,-0.9566,-0.3976,-0.158,-0.1158,0.0622,0.3382,0.587,0.7912,0.8746,0.8848,0.457,-0.3326,-0.7444,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.992,-0.9868,-0.9454,-0.7782,-0.8392,-0.8322,-0.8198,-0.7996,-0.7516,-0.7852,0.297,0.9196,0.7674,0.1888,-0.2732,-0.4914,-0.5552,-0.5342,-0.696,-0.8736,-0.9448,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.956,-0.8734,-0.9068,0.4866,0.7466,0.66,0.7232,0.7,0.57,-0.1068,-0.11,0.1022,-0.009,-0.1868,-0.5246,-0.769,-0.9178,-0.929,-0.9312,-0.9312,-0.9356,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.0858,-0.7714,1,1,-0.3428,-0.7142,-0.8572,-0.8858,1,1,1,-0.3142,-0.6,-0.5714,-0.1714,-0.3428,-0.3428,-0.4572,0.1142,0.2572,0.0572,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.4922,0.5038,0.5164,0.5402,0.5488,0.5702,0.6018,0.6436,0.6686,0.4094,0.8998,0.8724,0.8734,0.8284,0.8308,0.8292,0.7942,0.7032,0.3936,-0.1624,-0.7334,0.0352,-0.776,-0.4922,0.248,0.7994,0.9754,0.15,-0.6496,-0.5196,-0.3172,-0.2266,-0.1752,-0.1722,-0.0422,0.0936,0.1118,0.142,0.5498,0.6042,0.8126,1,0.9456,0.858,0.864,0.7522,0.9004,0.9728,0.9848,0.9456,0.9396,0.7764,0.7372,0.6616,0.7764,0.7916,0.6314,0.6706,0.5408,0.3444,-0.7518,-0.487,-0.367,-0.2496,-0.1324,-0.2714,-0.0832,-0.105,0.1814,0.2278,0.457,0.6098,0.869,0.9782,1,0.94,0.8664,0.8008,0.82,0.9864,0.899,0.809,0.7518,0.8582,0.809,0.6754,0.659,0.6644,0.7408,0.8472,0.7544,0.4952,-0.628,-0.3446,-0.4512,-0.5244,-0.4818,-0.3658,-0.1708,-0.064,0.0396,0.308,0.4176,0.7286,1,0.994,0.7988,0.8598,0.869,0.5854,0.6768,0.9268,0.7074,0.503,0.628,0.4908,0.2378,0.3598,0.4542,0.2226,0.4512,0.561,0.3262,0.125,-0.4556,-1,1,-1,-0.8,-1,-1,0.4666,-1,0.7304,0.7978,0.663,0.3258,1,1,0.3932,0.191,0.618,0.6404,0.5956,0.0562,0.2134,0.3708,0.3932,0.573,0.1236,0.2808,0.4158,0.191,0.3708,0.4606,0.191,0.4832,0.1236,0.0338,0.1236,-0.0786,-0.146,0.1686,0.0562,-0.4382,'17'
-0.5802,-0.2776,0.0712,0.0964,0.2156,0.7752,0.8326,0.8256,0.8944,1,0.773,0.7408,0.4954,0.3716,0.3738,0.438,0.4656,0.5276,0.7478,0.7912,0.8348,0.7156,0.7042,0.6078,0.4014,0.3578,0.2958,0.3142,0.344,0.2248,0.0344,0.0184,-0.4552,-0.2152,0.1346,0.13,0.287,0.8206,0.8296,0.8856,0.973,1,0.8968,0.7646,0.592,0.4506,0.3812,0.4642,0.5112,0.6076,0.7198,0.8878,0.843,0.6502,0.5448,0.5202,0.3878,0.2802,0.2914,0.3004,0.213,-0.027,-0.1234,-0.1838,-0.504,-0.2744,0.0976,0.0998,0.2652,0.775,0.7818,0.9242,0.954,0.9358,1,0.7842,0.589,0.4834,0.442,0.4328,0.5018,0.7588,0.7544,0.7176,0.5522,0.5546,0.4512,0.3296,0.364,0.2584,0.1894,0.2284,0.109,0.0288,-0.0816,-0.1412,-0.4796,-0.2304,0.1136,0.1576,0.3252,0.8324,0.806,0.85,0.839,0.8346,1,0.936,0.9536,0.7266,0.7332,0.7662,0.8788,0.784,0.7222,0.4884,0.3936,0.398,0.3694,0.3274,0.4024,0.2502,0.1864,0.2172,0.334,0.2834,-0.226,-0.398,-0.5086,-0.223,0.0866,0.2056,0.4784,0.7922,0.8572,0.5,0.4308,0.5304,0.7792,0.8074,1,0.8572,0.8398,0.8874,0.8182,0.4524,0.2532,0.2142,0.119,0.0542,0.026,-0.0238,0.1212,0.3572,0.3722,0.3226,0.342,0.2988,0.0064,-0.2316,-0.4494,-0.0322,0.242,0.3564,0.919,0.9142,0.7592,0.6448,0.5494,0.5804,0.6306,0.9762,0.9428,1,0.9642,0.9214,0.6162,0.3444,0.099,-0.0442,-0.056,-0.2324,-0.273,-0.2754,0.1704,0.4088,0.4588,0.4422,0.5876,0.5876,0.3206,-0.0084,-0.444,0.2336,0.1282,0.2532,0.3224,0.4968,0.2468,0.2632,-0.1414,-0.1776,0.2632,0.444,0.7894,0.852,1,0.8948,0.5494,-0.0592,-0.1184,-0.3026,-0.3486,-0.4638,-0.6842,-0.5362,-0.3684,0.1218,0.1382,0.3356,0.4672,0.556,0.0986,-0.2664,-0.5484,-0.258,0.129,0.1612,0.3226,0.7096,0.8064,0.8388,0.742,1,0.871,0.613,0.5806,0.387,0.4838,0.5162,0.387,0.6774,0.871,0.9354,0.9354,0.8064,0.9354,0.7742,0.742,0.5806,0.4516,0.4194,0.7096,0.6452,0.3226,0.3548,-0.5088,-0.193,0.193,0.1578,0.4036,0.8246,0.8948,0.8948,0.8948,1,0.8596,0.7544,0.614,0.3684,0.4036,0.4736,0.4386,0.4736,0.6842,0.7192,0.7544,0.6842,0.6842,0.6842,0.5438,0.5088,0.579,0.614,0.6842,0.579,0.2982,0.2982,-0.4954,-0.2252,0.063,0.1352,0.3874,0.8198,0.8558,0.4774,0.4234,0.5316,0.8198,0.8558,1,0.7658,0.7478,0.8738,0.6936,0.5496,0.3154,0.2252,0.2072,0.1532,0.1352,0.063,0.063,0.2432,0.3874,0.2432,0.2792,-0.027,-0.063,-0.2972,-1,-1,-1,-1,-1,-1,-1,-1,-0.9718,-0.9718,-0.2502,0.3068,0.488,0.4398,0.4464,0.4514,0.5462,0.9268,0.6908,0.9268,0.1604,-0.6608,-0.8338,-0.9252,-0.9534,-0.9534,-0.9584,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9908,-0.9904,0.1488,0.7308,0.6658,0.5928,0.6648,0.7474,0.6166,0.7142,0.3916,0.1098,-0.5778,-0.8914,-0.93,-0.9522,-0.956,-0.9648,-0.9654,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.9734,-0.6568,-0.57,-0.658,-0.686,-0.546,-0.536,-0.4764,-0.4764,-0.511,-0.8656,-0.8982,-0.7638,-0.65,-0.47,-0.58,-0.5668,-0.7634,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,-1,-1,-1,-0.9428,-0.9428,-0.7142,-0.7428,-0.0858,0.3714,-0.2286,-0.7428,-0.8858,-0.8572,-0.8572,-0.7714,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.2808,-0.279,-0.3192,-0.339,-0.3584,-0.3944,-0.4414,-0.486,-0.7492,-1,-0.56,0.247,0.5406,1,0.7762,0.5898,0.6026,1,-0.0358,0.25,0.5714,0.75,0.8928,0.9286,0.75,0.75,0.8214,0.7858,1,0.8572,0.8928,0.9286,0.9286,0.75,0.6786,0.1786,0.3214,0.3928,0.2858,0.3214,0.1072,-0.1072,-0.3572,-0.2142,-0.3572,-0.4642,-0.2858,-0.3214,-0.3572,-0.4642,-0.1812,0.2126,0.559,0.8898,0.9212,0.9528,0.6378,0.5434,0.7166,0.937,1,0.9528,0.874,0.8268,0.748,0.559,0.4016,0.0866,0.1812,0.1968,0.2126,0.1654,-0.0078,-0.559,-0.4488,-0.4804,-0.5906,-0.6062,-0.5434,-0.5748,-0.7008,-0.7166,-0.1792,0.2538,0.5224,0.8358,0.985,1,0.597,0.5074,0.7164,1,0.9552,0.9552,0.7762,0.6866,0.7762,0.4626,0.5074,0.1492,0.209,0.3284,0.3134,0.0598,-0.1792,-0.388,-0.4328,-0.4776,-0.5672,-0.6268,-0.597,-0.7462,-0.6268,-0.8806,1,-1,-1,1,-0.8,-1,-0.8,-0.8334,-1,-0.6066,-0.4754,0.0492,0.2296,-0.1476,0.0492,0.7868,0.6558,0.459,-0.0492,0.0492,-0.3606,0.082,0.459,1,0.541,-0.1804,-0.0328,0.3442,0.246,-0.0984,-0.1312,-0.0492,0.5246,0.541,0.082,-0.0328,-0.1312,-0.164,-0.164,-0.5738,-0.6558,'18'
-0.5594,-0.2624,0.0866,0.1288,0.3664,0.9184,1,0.693,0.849,0.9976,0.797,0.542,0.458,0.354,0.3416,0.4084,0.3712,0.4876,0.7648,0.7798,0.891,0.7896,0.745,0.7698,0.7278,0.6906,0.703,0.7476,0.4456,0.245,0.109,-0.0842,-0.4696,-0.1946,0.0948,0.1362,0.4064,0.8492,0.9392,0.7884,0.8272,1,0.8564,0.652,0.4866,0.421,0.4356,0.4452,0.4502,0.567,0.8346,0.8906,0.64,0.5986,0.584,0.5206,0.5474,0.4622,0.5182,0.6228,0.3772,0.1532,0.073,-0.073,-0.4872,-0.2282,0.1052,0.1206,0.3282,0.8974,0.9436,0.8436,0.9026,1,0.8974,0.8436,0.6512,0.477,0.4692,0.5898,0.6462,0.6744,0.8488,0.7358,0.5,0.423,0.3616,0.3666,0.3924,0.4,0.3358,0.4206,0.3846,0.123,-0.0358,-0.259,-0.5014,-0.2654,0.075,0.169,0.3726,0.8686,0.8418,0.764,0.8364,0.8284,1,0.9544,0.9142,0.6676,0.7828,0.7908,0.9142,0.7372,0.4638,0.2816,0.1904,0.193,0.1796,0.0724,0.0884,0.0294,0.126,0.201,0.0938,0.0134,-0.3672,-0.5308,-0.5552,-0.3438,0.023,0.186,0.5432,0.842,0.723,0.548,0.5164,0.6184,0.8008,1,0.9198,0.701,0.8154,0.881,0.8274,0.3074,0.164,0.0352,-0.0036,-0.1082,-0.1568,-0.1324,0.1738,0.2346,0.2832,0.22,0.2004,0.0474,-0.1082,-0.3634,-0.5416,-0.342,-0.019,0.2494,0.7244,0.8646,0.6176,0.3752,0.4062,0.468,0.7268,0.8528,1,0.8218,0.8456,0.9026,0.4964,0.2304,0.1116,0.0642,0.0048,-0.057,-0.0808,-0.171,0.3088,0.3444,0.4514,0.323,0.3752,0.437,0.1116,-0.0688,-0.5456,-0.2608,-0.056,0.3728,0.7024,0.8336,0.4912,0.136,0.1552,0.0272,0.4432,0.856,1,0.936,0.872,0.8592,0.3856,-0.0272,-0.2448,-0.4048,-0.3792,-0.488,-0.5584,-0.6096,-0.456,-0.0592,-0.008,0.04,0.1968,0.1872,0.088,-0.4368,-0.5624,-0.3124,0.0938,0.0624,0.4376,0.8124,0.875,0.75,0.9062,0.9688,0.8124,0.4062,0.4688,0.2812,0.375,0.375,0.375,0.5624,0.7812,0.9376,1,0.8124,0.8438,0.9062,0.9376,0.9376,0.75,0.7188,0.625,0.375,0.3438,0.0938,-0.6666,-0.3704,0,0.1112,0.3704,0.926,1,0.8148,0.7778,0.8888,0.6666,0.5926,0.4074,0.3334,0.2592,0.4074,0.4074,0.4814,0.7408,0.7778,0.8888,0.8518,0.7408,0.8148,0.7778,0.7408,0.8148,0.8148,0.4074,0.3334,0.2962,0,-0.6038,-0.283,0.0188,0.1132,0.2642,0.868,0.9246,0.7924,0.868,1,0.7924,0.7736,0.585,0.415,0.415,0.5472,0.585,0.6226,0.8302,0.7548,0.4906,0.3774,0.3396,0.3018,0.3584,0.3962,0.3208,0.283,0.2264,-0.0188,-0.0566,-0.3018,-1,-1,-1,-1,-1,-1,-1,-1,-0.9832,-0.9794,-0.3334,0.8194,0.871,0.746,0.7692,0.6376,0.59,0.6814,0.7254,0.7098,0.4738,-0.3036,-0.804,-0.835,-0.8916,-0.9316,-0.9472,-0.9614,-0.9664,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9938,-0.9924,-0.235,0.8082,0.7368,0.6312,0.4972,0.313,0.3808,0.3324,0.1326,0.045,-0.1924,-0.7148,-0.9384,-0.9402,-0.9558,-0.968,-0.9722,-0.9756,-0.9824,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9868,-0.96,-0.6568,-0.5534,-0.6624,-0.6512,-0.649,-0.58,-0.609,-0.4934,-0.5778,-0.6668,-0.824,-0.796,-0.7634,-0.7134,-0.5934,-0.5368,-0.59,-0.5934,-0.7534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,1,1,1,-0.6286,-0.8286,-0.6,-0.7714,-0.8858,-0.8858,-0.9428,-0.9714,0.0858,0.6,-0.4572,-0.9428,-0.7428,-0.7142,-0.8858,-1,-0.5428,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.8108,0.7386,0.7086,0.6618,0.6204,0.5492,0.4382,0.1764,-0.3506,-0.9074,-0.5334,0.0706,-0.1008,0.9592,0.8076,0.7,0.754,1,-0.1818,0.1364,0.4546,0.5454,0.5,0.6818,0.6818,0.591,0.6818,0.909,1,0.8636,0.6818,0.909,0.9546,0.909,0.8636,0.7272,0.3182,0.2728,0.2728,0,-0.091,-0.2728,-0.2272,-0.091,-0.1818,-0.2728,-0.1818,-0.6818,-0.4546,-0.409,-0.0678,0.2372,0.7288,0.8474,1,0.9662,0.7118,0.5084,0.644,0.8306,0.9662,0.9152,0.9662,0.8644,0.7796,0.5932,0.644,0.5762,0.322,0.4068,0.2542,0.2372,-0.1694,-0.339,-0.5084,-0.356,-0.4576,-0.4916,-0.5594,-0.678,-0.4746,-0.5932,-0.2794,0.1618,0.5736,0.8236,0.9118,0.9118,0.5148,0.4264,0.4852,0.7942,1,0.897,0.9264,0.8676,0.7794,0.4118,0.4118,0.2942,0.2206,0.2942,0.1912,0.2352,-0.397,-0.5294,-0.6176,-0.6176,-0.6324,-0.7206,-0.6912,-0.6324,-0.6618,-0.7206,1,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.4912,-0.1228,-0.0526,0.2456,-0.1052,0.421,0.7192,0.772,1,0.4912,0.2456,0.0878,0.193,0.772,1,0.6666,0.2632,0.1228,0.386,0.5088,0.3334,0.614,0.5964,0.1228,0.1052,0.5264,0.5438,0.3508,0.2632,-0.1052,0.0526,-0.421,'18'
-0.7822,-0.4622,-0.0978,0,0.3556,0.3644,0.3334,0.2178,0.2444,0.1822,0.2134,0.2888,0.3422,0.4978,0.8978,0.9512,0.6666,0.6312,0.7378,0.8934,0.9866,0.9112,0.9066,1,0.9466,0.7244,0.5288,0.5244,0.4312,0.4534,0.3644,0.5156,-0.6028,-0.2804,0.0046,0.0934,0.299,0.3318,0.6028,0.4954,0.2616,0.2524,0.2196,0.3972,0.5748,0.6636,0.9954,1,0.6916,0.6308,0.7384,0.8738,0.9018,0.8412,0.799,0.9158,0.7804,0.6776,0.5186,0.4906,0.3832,0.3224,0.3458,0.4814,-0.474,-0.1612,0.0854,0.1612,0.4124,0.564,0.7582,0.6208,0.3128,0.3318,0.2986,0.4502,0.654,0.7394,1,0.9764,0.6588,0.564,0.6446,0.6966,0.6966,0.7962,0.7156,0.7536,0.5356,0.3838,0.3034,0.218,0.109,0.3318,0.365,0.109,-0.5322,-0.2428,0.0734,0.118,0.3674,0.7594,0.8752,0.5858,0.2784,0.3364,0.3586,0.4164,0.7016,0.8262,1,0.844,0.6436,0.5946,0.5502,0.6704,0.715,0.7282,0.7728,0.7104,0.5992,0.3764,0.3318,0.1894,0.0958,0.2472,0.265,0.3364,-0.5,-0.2008,0.116,0.1562,0.4376,0.7902,0.884,0.5134,0.3124,0.241,0.3348,0.4242,0.6964,0.9062,1,0.6518,0.5982,0.4866,0.4776,0.5268,0.616,0.692,0.8214,0.6742,0.5938,0.3928,0.3258,0.0892,0.0492,0.1518,0.192,0.3392,-0.3554,0.023,0.3044,0.3862,0.78,0.7494,0.7954,0.5602,0.4936,0.3862,0.2942,0.4168,0.642,0.7392,1,0.913,0.4322,0.3402,0.3606,0.4066,0.5038,0.5856,0.8006,0.8618,0.6214,0.3862,0.2942,0.2634,0.243,0.3452,0.3504,0.5294,-0.1396,0.4728,0.5272,0.6976,0.8294,0.7364,0.8604,0.5968,0.4108,-0.0156,0.0232,0.5116,0.5272,0.6666,0.845,0.7054,0.248,0.2094,0.6512,0.628,0.4342,0.7132,0.9534,1,0.938,0.5736,0.2248,0.1628,0.2558,0.3024,0.2636,0.4264,-0.8064,-0.5484,-0.1612,-0.0646,0.3226,0.2904,0.3226,0.2258,0.1612,0.1612,0.2258,0.2258,0.3226,0.5484,0.9032,0.9032,0.7096,0.6774,0.742,0.9354,0.9678,1,0.9354,0.9678,0.9032,0.8388,0.6774,0.4838,0.4516,0.5806,0.5806,0.613,-0.7778,-0.5238,-0.1746,-0.0158,0.3016,0.3334,0.238,0.1746,0.2064,0.1428,0.2064,0.2064,0.3334,0.5556,0.873,0.9366,0.7142,0.5874,0.746,0.9048,0.9366,0.8096,0.9048,1,0.9682,0.6508,0.5238,0.5238,0.5238,0.4286,0.3334,0.4604,-0.5752,-0.239,0.0266,0.115,0.3628,0.5044,0.7346,0.593,0.2036,0.3098,0.292,0.3628,0.646,0.77,1,0.9646,0.7346,0.646,0.6992,0.7168,0.7876,0.77,0.5752,0.8938,0.7876,0.5752,0.3982,0.4514,0.3098,0.3982,0.4868,0.3982,-1,-1,-1,-1,-1,-1,-1,-1,-0.9624,-0.9518,-0.3034,0.479,0.703,0.6088,0.479,0.5586,0.8096,0.9916,0.7532,0.7384,0.4122,-0.1882,-0.5836,-0.8892,-0.9436,-0.9414,-0.9518,-0.9708,-0.954,-0.956,-0.9602,-0.9436,-0.9708,-1,-1,-1,-1,-1,-1,-1,-1,-0.994,-0.9926,-0.2724,0.82,0.9248,0.4852,-0.1272,-0.1474,-0.0118,0.0112,-0.2258,-0.5204,-0.7218,-0.893,-0.9084,-0.8398,-0.861,-0.849,-0.8792,-0.9056,-0.9118,-0.9126,-0.9084,-0.9216,-0.9368,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.9268,-0.6,-0.11,-0.16,-0.216,-0.34,-0.492,-0.5,-0.54,-0.512,-0.676,-0.692,-0.444,0.1732,1,1,1,1,1,1,1,0.8866,1,0.95,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,-0.1428,-0.1714,-0.0286,-0.8,-0.9714,-0.7142,-0.3428,0.2572,0.7714,1,1,1,-0.3428,-0.7714,-0.8572,-0.9428,-0.9142,-0.9428,-0.8286,-0.9714,-0.9428,1,1,1,1,1,1,1,1,1,1,0.1398,0.1398,0.1386,0.1164,0.0808,0.0368,-0.0376,-0.1886,-0.3914,-0.4556,-0.64,-0.4942,-0.0708,0.6758,0.9388,0.8998,0.6096,1,-0.15,0.1,0.3,0.4,0.5,0.55,0.7,0.8,0.85,0.9,1,0.95,1,1,0.9,0.85,0.75,0.7,0.4,0.45,0.2,0.35,0.05,-0.15,-0.15,0.05,0,-0.05,0.1,-0.55,-0.1,-0.55,-0.3194,0.1944,0.4862,0.4584,0.3334,0.4306,0.4722,0.9306,0.9166,0.8472,1,0.9306,0.9306,0.8334,0.6388,0.75,0.6666,0.2916,0.2916,0.3056,0.1528,0.0694,-0.1112,-0.1388,-0.3472,-0.4862,-0.5694,-0.4166,-0.4722,-0.75,-0.4166,-0.6944,-0.3202,0.1242,0.5032,0.4248,0.281,0.3856,0.4902,0.9478,0.8954,0.7908,1,0.9478,0.9478,0.7778,0.464,0.5816,0.634,0.2942,0.268,0.3072,0.1372,0.0718,0.1372,-0.085,-0.3464,-0.3986,-0.6732,-0.5816,-0.4248,-0.5556,-0.464,-0.7254,1,-1,-1,1,-1,-1,-0.8,-0.8334,-1,-0.8046,-0.5862,-0.5632,-0.3448,-0.2874,-0.6322,-0.4828,-0.2414,-0.2414,-0.3218,-0.092,-0.046,-0.0804,-0.1264,0.0804,0.115,0.3678,0.3564,0.2874,0.2068,0.6322,0.6322,0.5288,0.7586,0.5862,0.6782,0.6322,0.6092,0.908,1,0.8966,0.2068,'19'
-0.6138,-0.3122,-0.0212,0.0582,0.344,0.5186,0.6456,0.4868,0.3544,0.2328,0.2222,0.3492,0.4814,0.5768,0.873,0.836,0.762,0.6456,0.6932,0.8994,0.9206,1,0.8624,0.8678,0.8836,0.8466,0.6984,0.5292,0.4814,0.3492,0.3334,0.3016,-0.5288,-0.1972,0.0576,0.1298,0.452,0.5866,0.798,0.6634,0.3846,0.3124,0.2836,0.452,0.5914,0.6682,1,0.9712,0.702,0.6538,0.7452,0.8606,0.8558,0.9568,0.8462,0.7836,0.7308,0.7548,0.4326,0.375,0.2452,0.2356,0.2644,0.1924,-0.5294,-0.1862,0.049,0.1324,0.4804,0.598,0.8186,0.696,0.4068,0.3236,0.3186,0.5294,0.6764,0.7746,0.995,1,0.6814,0.6226,0.75,0.7648,0.804,0.951,0.8872,0.6666,0.647,0.7108,0.3334,0.245,0.1226,0.1274,0.1618,0.1422,-0.4804,-0.2184,0.0712,0.108,0.338,0.7564,0.8758,0.623,0.3564,0.384,0.4436,0.4942,0.7242,0.8482,1,0.8344,0.6552,0.6828,0.6092,0.7242,0.839,0.8436,0.7748,0.715,0.7104,0.508,0.4712,0.3564,0.177,0.1862,0.2828,0.2046,-0.5444,-0.2912,0.033,0.0734,0.281,0.8936,0.924,0.4784,0.3974,0.443,0.4886,0.6456,0.7368,0.9848,0.9594,0.9494,0.7164,0.676,0.8278,0.8632,0.9088,1,0.9038,0.8482,0.7518,0.6456,0.4684,0.3974,0.2912,0.2202,0.2406,0.205,-0.551,-0.3368,0.0358,0.1378,0.4438,0.8776,0.8266,0.4796,0.4642,0.4132,0.403,0.597,0.7244,0.8418,1,0.9694,0.7756,0.6326,0.7296,0.8368,0.8776,0.8826,1,0.8316,0.7346,0.7552,0.5664,0.3622,0.4694,0.2806,0.1836,0.2756,-0.5432,-0.2346,0.0556,0.1852,0.6112,0.9012,0.753,0.3888,0.2654,0.0926,0.0618,0.2654,0.568,0.6976,1,0.932,0.5556,0.4444,0.4814,0.4444,0.6728,0.7098,0.7716,0.716,0.432,0.4444,0.1914,0.3148,0.2962,0.1976,0.321,0.3396,-0.6562,-0.3438,-0.0938,0,0.2812,0.4062,0.5624,0.3438,0.3124,0.1876,0.2188,0.3124,0.4376,0.4062,0.8124,0.7188,0.75,0.625,0.625,0.8438,0.8438,1,0.7812,0.8124,0.9376,0.7812,0.6876,0.5312,0.5,0.1876,0.375,0.4062,-0.7,-0.3334,-0.0334,0.0334,0.3,0.5,0.6666,0.4334,0.3334,0.2,0.1666,0.3334,0.4666,0.4334,0.9,0.8,0.7666,0.6666,0.6334,0.8666,0.8334,1,0.8,0.8334,0.8666,0.7334,0.6666,0.4334,0.3666,0.4,0.3,0,-0.6448,-0.3272,-0.0094,0.1028,0.3084,0.8504,0.813,0.458,0.458,0.4206,0.3832,0.6262,0.701,0.8504,0.9814,0.9814,0.757,0.701,0.701,0.8878,0.944,0.9066,1,0.7758,0.757,0.757,0.57,0.3644,0.4392,0.271,-0.1214,0.0468,-1,-1,-1,-1,-1,-1,-1,-1,-0.9748,-0.9614,-0.6256,0.2292,0.3484,0.4644,0.4224,0.5164,0.817,0.943,0.9596,0.8506,0.9042,0.1922,-0.6322,-0.7414,-0.8908,-0.9346,-0.9496,-0.963,-0.968,-0.9614,-0.9714,-0.963,-0.9714,-1,-1,-1,-1,-1,-1,-1,-1,-0.9914,-0.9904,-0.4948,0.9266,0.7696,0.5932,0.5958,0.6068,0.7346,0.9626,0.9642,0.6656,0.4168,-0.4128,-0.8486,-0.8924,-0.905,-0.8024,-0.7506,-0.7362,-0.8104,-0.8308,-0.8358,-0.82,-0.8396,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.96,-0.6634,-0.235,-0.385,-0.38,-0.41,-0.515,-0.495,-0.535,-0.536,-0.512,-0.6,-0.524,-0.2268,-0.0668,0.54,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,-0.1714,-0.8858,-0.9428,-1,-0.9714,-0.9142,-0.9714,-0.6286,1,1,1,1,1,1,-0.2572,-0.7714,-0.8572,-0.9714,-0.8858,-0.8858,-0.8858,1,1,1,1,1,1,1,1,1,1,0.1734,0.1492,0.1264,0.1264,0.0532,0.003,-0.1158,-0.2326,-0.38,-0.4936,-0.6134,-0.553,-0.6134,0.8536,1,0.6926,0.5976,1,-0.0638,0.0212,0.3192,0.4894,0.4468,0.617,0.6596,0.8724,0.9148,0.9574,1,1,0.9574,0.8724,0.7446,0.5744,0.4894,0.4894,0.3192,0.3618,0.4468,0.3618,0.3618,0.3192,0.1914,0.1914,0.1064,0.2766,-0.0212,-0.2766,0.0638,-0.4042,-0.5046,-0.156,0.3212,0.3944,0.1926,0.1926,0.4678,0.9266,0.9634,0.7432,0.9082,1,0.945,0.7614,0.7432,0.7064,0.6514,0.3762,0.3394,0.3578,0.3212,0.1744,0.1192,0.0092,-0.3578,-0.266,-0.3762,-0.3762,-0.3394,-0.211,-0.2478,-0.633,-0.3024,0.1008,0.5658,0.6124,0.3954,0.4108,0.5968,0.876,0.814,0.8294,0.969,1,0.9534,0.8294,0.6434,0.5038,0.3334,0.1628,0.1008,0.0388,-0.0388,-0.1008,-0.1628,-0.4108,-0.4884,-0.5348,-0.5038,-0.814,-0.5968,-0.4884,-0.5194,-0.721,1,-1,-1,1,-1,-1,-0.4,-0.8334,-1,-0.883,-0.8012,-0.6726,-0.6608,-0.7192,-0.4152,-0.3684,-0.4036,-0.4152,-0.3802,-0.228,-0.1346,-0.0292,-0.3568,0.0058,0.1112,0.1462,0.1228,-0.0878,0.1812,0.4386,0.4736,0.3684,0.3684,0.5322,0.5556,0.462,0.6024,0.6374,1,0.8012,0.6842,'19'
-0.318,0.3954,0.3982,0.2694,0.2406,-0.0574,-0.0372,-0.2064,-0.1892,-0.3554,-0.2694,-0.2206,-0.129,-0.1032,-0.023,-0.0258,0.0974,0.3554,0.4498,0.894,1,0.8796,0.8224,0.8912,0.9598,0.894,0.765,0.5702,0.5358,0.5702,0.6104,0.5214,-0.4198,0.0406,-0.009,0.219,0.0948,-0.1038,-0.2822,-0.255,-0.3522,-0.2776,-0.3024,-0.2484,-0.1784,-0.1784,0.018,-0.0022,0.2076,0.404,0.614,0.8284,0.9888,0.9594,0.921,0.9706,1,0.982,0.9164,0.8194,0.6862,0.5892,0.4762,0.4696,-0.4684,-0.082,0.0052,0.1422,-0.0696,-0.1962,-0.3604,-0.377,-0.3936,-0.4684,-0.3956,-0.3852,-0.3084,-0.2564,-0.2482,-0.0426,-0.001,0.2378,0.4828,0.6344,0.917,1,0.865,0.865,0.9792,0.9294,0.8442,0.7384,0.6678,0.4392,0.3458,0.5618,-0.4644,-0.1156,0.1712,0.2666,-0.1244,-0.2378,-0.3912,-0.5022,-0.4512,-0.4356,-0.4556,-0.3844,-0.4778,-0.4022,-0.1978,-0.1956,-0.0644,0.1488,0.38,0.6822,0.8756,1,0.98,0.9644,0.9866,0.9688,0.9288,0.8422,0.6712,0.5444,0.42,0.4688,-0.4698,-0.167,0.2858,0.3148,-0.2736,-0.4044,-0.5424,-0.5424,-0.6054,-0.54,-0.6514,-0.6004,-0.5012,-0.4238,-0.4044,-0.2324,-0.109,0.0146,0.3002,0.5884,0.8088,1,0.9662,0.9152,0.9782,0.9782,0.891,0.7724,0.649,0.5278,0.4262,0.368,-0.302,0.0834,0.6354,0.625,-0.5382,-0.8994,-0.8472,-0.823,-0.7292,-0.868,-0.8334,-0.4966,-0.4862,-0.7812,-0.5416,-0.5486,-0.4202,-0.2292,-0.1424,0.3576,0.7118,1,0.8472,0.75,0.9376,0.8124,0.7048,0.493,0.3854,0.4376,0.3716,0.5624,-0.2242,0.2112,-0.056,0.0344,-0.306,-0.0302,-0.0518,-0.7242,-0.7242,-0.75,-0.6552,-0.5044,-0.6164,-0.5646,-0.5302,-0.612,-0.4914,-0.3706,0.1206,0.7112,0.7802,0.7112,0.763,0.7758,1,0.8406,0.4656,0.3836,0.1982,0.2068,0.306,0.638,-0.3044,0.2174,0.2174,0.087,-0.1304,-0.087,-0.3478,-0.3478,-0.5218,-0.5652,-0.2608,-0.2174,-0.2608,-0.087,-0.0434,-0.3044,-0.1304,-0.0434,0.3478,0.7826,1,0.913,0.6956,0.6522,0.6956,0.4782,0.0434,0.1304,0.3478,0.4782,0.5218,0.3914,-0.0944,0.585,0.585,0.2452,0.283,-0.0188,0.0566,0.0566,0.0566,-0.2452,-0.132,-0.434,-0.3208,-0.3962,-0.2452,-0.2452,0.0944,-0.0188,0.283,0.6226,0.8114,0.849,0.849,0.8868,0.9622,1,0.7358,0.585,0.6226,0.6982,0.6982,0.7358,-0.3124,-0.0624,0.5,0.5208,-0.25,-0.4166,-0.4166,-0.8124,-0.7708,-0.6666,-0.5834,-0.3958,-0.4792,-0.7916,-0.1458,-0.1042,-0.1458,0.0208,0.1042,0.5208,0.8334,1,0.875,0.8542,1,0.9584,0.9166,0.6666,0.5624,0.6042,0.2916,0.4584,-1,-1,-0.9558,-0.9376,-0.948,-0.922,-0.8624,-0.8936,-0.8468,-0.7688,-0.8026,0.7038,0.961,0.922,0.8156,0.8156,0.865,0.6676,0.6156,0.2416,-0.3376,-0.5766,-0.7636,-0.8754,-0.9324,-0.9428,-0.9402,-1,-1,-1,-1,-1,-1,-1,-1,-0.9766,-0.987,-0.9696,-0.9596,-0.5578,-0.2202,-0.2954,-0.5116,-0.7408,-0.6204,0.6324,0.8434,0.8228,0.8228,0.4752,0.126,-0.3278,-0.7374,-0.8818,-0.9176,-0.9378,-0.9634,-0.9754,-0.978,-0.9792,-1,-1,-1,-1,-1,-1,-1,-1,-0.9068,-0.9134,-0.7668,-0.8134,0.95,1,1,0.8432,0.4932,-0.47,-0.042,0.04,0.064,0.052,0.04,-0.049,-0.3542,-0.6602,-0.6702,-0.6162,-0.4822,-0.4122,-0.8056,-0.7122,-0.7922,-1,-1,-1,-1,-1,-1,-1,-1,-0.4,-0.3142,-0.2572,1,1,1,-0.1714,1,1,1,1,-0.8572,-0.8858,-0.9142,-0.9714,-0.8858,-0.2572,0.1428,-0.6858,-0.6572,-0.7714,-0.5428,-0.6,-0.9714,-0.9428,-1,-1,-1,-1,-1,-1,0.266,0.2822,0.2986,0.333,0.3566,0.3882,0.4104,0.4206,0.4192,0.1656,0.7608,0.7756,0.7824,0.8076,0.831,0.8462,0.878,0.9198,1,0.9838,-0.6534,0.1764,-0.7652,-0.8208,-0.6882,-0.601,-0.2772,1,-0.7608,-0.6118,-0.3206,-0.1266,-0.0988,-0.1612,-0.0606,-0.0502,-0.1058,0.13,0.1786,0.1508,0.324,0.1716,0.2062,0.286,0.272,0.3172,0.3968,0.4628,0.6222,0.7574,0.837,0.8198,0.851,0.9758,0.8474,0.7782,0.7816,1,0.896,0.4072,-0.7814,-0.4534,-0.3312,-0.2412,-0.1898,-0.1768,-0.061,-0.0096,0.0676,0.4052,0.4662,0.418,0.4372,0.418,0.3472,0.418,0.627,0.656,0.4372,0.5242,0.8586,0.9808,1,0.762,0.9678,0.9742,0.9068,0.7332,0.7942,0.8456,0.6398,0.402,-0.8446,-0.3386,-0.1036,-0.0678,-0.259,-0.1554,0.0398,0.0876,0.1634,0.498,0.6694,0.6852,0.9282,0.749,0.4542,0.6454,0.9642,0.8128,0.518,0.6654,0.9522,1,0.8646,0.6136,0.9044,0.8726,0.5618,0.3546,0.5578,0.7212,0.6374,0.4342,-0.2036,-1,-1,1,-1,-1,-1,0.0334,-1,0.035,0.1404,0.2982,0.3158,0,0.1754,0.1404,-0.0702,0.1578,1,0.7018,0.8772,0.8948,0.5264,0.5964,0.7368,0.8246,0.1228,0.2456,0.4562,0.421,0.4736,0.3684,0.4562,0.5438,0.2982,0.5088,0.3158,0.3158,0.3508,0.4036,0.3334,'20'
-0.234,0.487,0.48,0.2824,0.234,0.0052,-0.0364,-0.2098,-0.272,-0.3032,-0.3206,-0.078,-0.1092,-0.1058,-0.1092,0.1266,0.0954,0.2756,0.3276,0.8786,0.8544,0.9272,0.8926,1,0.9654,0.9826,0.8128,0.6568,0.6396,0.695,0.6708,0.5286,-0.3472,0.1378,0.091,0.2232,0.1102,-0.0964,-0.2866,-0.2396,-0.394,-0.3168,-0.3472,-0.2754,-0.2094,-0.1874,-0.0304,-0.0386,0.1294,0.303,0.5372,0.6888,0.8402,0.9256,0.8484,0.8898,0.956,1,0.9752,0.9008,0.7796,0.7742,0.6116,0.54,-0.3182,0.109,0.1484,0.294,-0.003,-0.1788,-0.2636,-0.3182,-0.3878,-0.5182,-0.4394,-0.3606,-0.3424,-0.2728,-0.209,-0.1212,-0.0576,0.1576,0.4182,0.609,0.8516,1,0.991,0.8878,0.9122,0.9272,0.9728,0.8788,0.7272,0.709,0.6788,0.5454,-0.4494,-0.1344,0.2372,0.267,-0.3034,-0.456,-0.5522,-0.612,-0.5854,-0.6716,-0.7976,-0.7248,-0.6518,-0.602,-0.3898,-0.2604,-0.2504,-0.0382,0.2106,0.476,0.6816,0.9038,1,0.9734,0.9304,0.854,0.9038,0.8906,0.6882,0.5888,0.6054,0.5092,-0.553,-0.1324,0.265,0.1722,-0.3046,-0.7516,-0.6358,-0.6622,-0.6722,-0.7782,-0.6754,-0.6688,-0.6026,-0.553,-0.51,-0.3178,-0.3576,-0.1126,0.1158,0.351,0.5562,0.8642,1,0.8974,0.9106,0.851,0.957,0.9006,0.6456,0.553,0.5198,0.437,-0.6398,0.0956,0.3846,0.1594,-0.3846,-0.621,-0.7224,-0.91,-0.711,-0.741,-0.7748,-0.696,-0.546,-0.5834,-0.6022,-0.5534,-0.3396,-0.1482,0.0094,0.332,0.5534,0.8612,1,0.9588,0.9888,0.8986,0.9812,0.8386,0.5572,0.5272,0.4784,0.3508,-0.4416,0.0502,0.2792,0.2076,-0.3842,-0.6754,-0.5274,-0.4416,-0.6802,-0.895,-0.895,-0.7804,-0.6898,-0.6324,-0.6706,-0.5132,-0.3078,-0.3986,-0.2458,0.2696,0.4464,0.8664,1,0.7756,0.8902,0.8712,0.8378,0.58,0.2172,0.4892,0.5418,0.3556,-0.25,0.5,0.55,0.15,0,-0.05,-0.4,-0.4,-0.5,-0.75,-0.25,0,0,-0.2,-0.35,-0.1,-0.15,0.1,0.35,1,1,0.75,0.35,0.75,0.35,0.45,0.45,0.4,0.25,0.65,0.75,0.65,-0.3024,0.4884,0.4418,0.0232,0.0698,-0.1628,-0.0698,-0.1628,-0.1162,-0.5814,-0.5348,-0.3954,-0.3024,-0.4418,-0.3954,-0.1628,-0.1628,-0.1162,-0.0698,0.721,0.7674,0.2558,0.3954,0.628,1,1,0.7674,0.3954,0.3488,0.628,0.5814,0.5814,-0.3442,0.0984,0.0492,0.1968,0.0656,-0.1148,-0.2786,-0.164,-0.295,-0.2786,-0.3114,-0.3114,-0.2132,-0.2622,-0.0492,-0.1804,0.0984,0.295,0.4426,0.6558,0.8032,0.8032,0.8852,0.8524,0.918,0.9672,1,0.7868,0.7214,0.7868,0.6558,0.5574,-1,-1,-1,-0.9378,-0.9622,-0.8998,-0.8972,-0.7916,-0.8646,-0.8214,-0.7186,0.7808,0.954,0.778,0.6618,0.6048,0.4452,0.2314,0.1908,0.226,0.0122,-0.6914,-0.789,-0.8214,-0.908,-0.9324,-0.9458,-0.9242,-1,-1,-1,-1,-1,-1,-1,-1,-0.9792,-0.9766,-0.656,0.1054,0.511,0.236,0.0638,-0.4476,-0.456,0.583,0.8496,0.4926,0.113,-0.0618,-0.1322,-0.2012,-0.3438,-0.6252,-0.9076,-0.9286,-0.9276,-0.9538,-0.9642,-0.9682,-0.9688,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.9,-0.4234,1,1,1,1,0.4666,-0.5226,-0.1526,0.05,-0.005,-0.0426,-0.08,-0.1326,-0.1846,-0.5024,-0.54,-0.5446,-0.6268,-0.5268,-0.5868,-0.76,-0.7934,-0.9334,-1,-1,-1,-1,-1,-1,-1,-1,-0.6286,1,1,1,0.2286,-0.4572,0.8572,1,1,1,-0.6572,-0.7714,-0.8286,-0.9428,-0.9428,-0.8858,-0.8572,0.4,0.4858,-0.8858,-0.9428,-0.9142,-0.8286,-0.9428,-0.7714,-1,-1,-1,-1,-1,0.2022,0.2278,0.2396,0.247,0.2724,0.2944,0.3318,0.3396,0.2918,0.0478,0.8926,0.9152,0.9204,0.9274,0.942,0.9638,0.9856,1,1,1,-0.5866,-0.0352,-0.5156,-0.5696,-0.4594,-0.39,0.174,1,-0.7782,-0.6496,-0.5402,-0.3312,-0.3312,-0.2348,-0.2122,-0.1832,-0.074,0.0804,0.1382,0.1832,0.2798,0.2412,0.2958,0.3184,0.4084,0.479,0.4438,0.492,0.7942,0.8102,0.9164,0.955,0.939,1,0.8842,0.7718,0.7138,0.8296,0.7718,0.4244,-0.9006,-0.5934,-0.482,-0.265,-0.1596,-0.253,-0.0692,0.006,0.0632,0.4548,0.4428,0.3102,0.485,0.4126,0.3886,0.4698,0.6234,0.515,0.3734,0.6144,0.8072,0.9126,1,0.8886,0.8886,0.9368,0.7862,0.7228,0.7952,0.774,0.762,0.479,-0.9716,-0.4234,-0.3736,-0.3452,-0.299,-0.2384,-0.2278,-0.185,0.2314,0.5338,0.6442,0.6406,0.8506,0.6442,0.4734,0.541,0.8362,0.6654,0.5018,0.5018,0.9396,1,0.8292,0.8826,0.936,0.879,0.4804,0.274,0.4128,0.5054,0.3594,0,0.3512,-1,-1,1,-1,-1,-0.8,0.1334,-1,-0.2106,-0.1052,-0.0176,-0.0176,-0.5438,-0.2456,-0.0702,-0.2106,0.0702,0.5964,0.5964,0.6666,1,0.3684,0.228,0.2106,-0.035,-0.1754,0.0702,0.1754,0,0.0176,0.2106,-0.0526,-0.1052,-0.1754,-0.1754,-0.0878,-0.1578,-0.2632,0.1228,0.0176,'20'
-0.2324,0.2254,0.1408,0.1936,-0.3098,-0.405,-0.7958,-0.9718,-0.8346,-0.9366,-0.7254,-0.7676,-0.676,-0.6408,-0.6198,-0.4824,-0.1902,0.2218,0.4542,0.6514,0.6022,0.264,0.567,0.6444,0.8204,0.9578,1,0.9684,0.683,0.4366,0.5388,0.6198,-0.3134,0.1072,0.2782,0.3786,-0.0936,-0.1642,-0.5116,-0.5876,-0.498,-0.5712,-0.62,-0.4626,-0.4002,-0.2944,-0.0664,-0.053,0.2158,0.688,0.7992,0.8074,0.7748,0.8806,0.8942,0.9972,1,0.9946,0.8508,0.745,0.6446,0.4762,0.5604,0.4464,-0.3528,0.0242,0.5312,0.6332,0.177,-0.0216,-0.3606,-0.4242,-0.3504,-0.386,-0.3732,-0.144,-0.1058,-0.0242,0.3834,0.5134,0.7274,0.9286,1,0.9796,0.9618,0.8802,0.6816,0.651,0.7478,0.7376,0.7376,0.6382,0.6764,0.5822,0.572,0.4268,-0.3024,0.0738,0.9248,1,0.4008,0.0882,-0.1346,-0.0448,-0.0536,-0.0274,0.2244,0.369,0.6672,0.806,0.9768,0.7888,0.7076,0.8148,0.8756,0.9914,0.9914,0.9044,0.699,0.5948,0.7482,0.728,0.7916,0.8002,0.754,0.7714,0.7482,0.5804,-0.2572,0.1368,0.9398,1,0.3474,0.215,0.0796,0.212,0.176,0.3504,0.6692,0.6842,0.6602,0.5368,0.3894,0.3954,0.3954,0.4646,0.5428,0.6572,0.8136,0.7414,0.4948,0.5068,0.5458,0.5458,0.5248,0.7142,0.639,0.594,0.6482,0.5038,-0.2434,0.2128,0.8898,1,0.4486,0.3416,0.0046,0.0782,0.173,0.4088,0.3108,-0.0506,-0.1486,-0.3078,-0.2128,-0.2068,-0.0322,-0.1486,-0.1792,-0.2618,-0.1884,-0.072,-0.072,-0.1976,-0.2098,-0.2924,-0.222,0.0168,0.0842,0.2588,0.2924,0.1424,0.0976,1,0.7784,0.9472,0.3562,0.0132,0.0344,0.0026,0.2664,0.0554,-0.446,0.029,0.1292,-0.277,-0.5092,-0.3298,-0.0924,0.103,-0.1556,-0.1398,-0.0976,-0.029,-0.4354,-0.3456,-0.3774,-0.7098,-0.6518,-0.6834,-0.5198,-0.3404,-0.2242,-0.3192,-0.1304,0.3914,0.1304,-0.1304,-0.7392,-0.3044,-0.3914,-0.3044,-0.2174,-0.3914,-0.3914,-0.3914,-0.3914,-0.6522,-0.4782,-0.3914,-0.3914,0.2174,0.3914,0.6522,0.6522,0.2174,0.2174,0.1304,0.5652,0.0434,0.913,1,0.4782,0.3914,0.913,0.826,-0.2444,0.1556,0.1112,0.1556,-0.2,-0.3334,-0.5112,-0.5112,-0.5556,-0.6444,-0.7778,-0.6888,-0.6444,-0.5556,-0.5556,-0.5112,-0.1556,0.3334,0.3334,0.6444,0.5112,-0.0222,0.4222,0.5112,0.7334,1,1,0.8222,0.8222,0.6888,0.3778,0.2888,-0.2,0.1112,0.9112,1,0.4,0.2888,0.1112,0.3112,0.3112,0.5556,0.4,0.5112,0.0444,0.0888,0.2444,0.1778,0.3112,0.1556,0.0888,0.2666,0.4,0.4222,0.4666,0.3556,0.2,0.3334,0.3556,0.5112,0.3778,0.2666,0.7334,0.6444,-1,-1,-1,-1,-1,-1,-1,-1,-0.9818,-0.9818,-0.83,-0.6132,-0.402,-0.165,0.219,0.6396,0.9406,0.5236,0.4046,0.124,-0.3854,-0.7622,-0.871,-0.9232,-0.9332,-0.9562,-0.9626,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9788,-0.9774,-0.8522,-0.5848,-0.2888,0.4308,0.875,0.773,0.5292,0.1704,-0.1062,-0.297,-0.6026,-0.8532,-0.9136,-0.9368,-0.946,-0.9584,-0.9676,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.96,-0.78,-0.496,-0.342,-0.146,-0.248,-0.554,-0.686,-0.716,-0.832,-0.83,-0.828,-0.8656,-0.8368,-0.7534,-0.8068,-0.68,-0.81,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6572,0.5714,1,1,-0.4286,-0.4286,-0.8,-0.5428,-0.5714,-0.6572,0.0286,0.2572,0.2286,-0.6858,-0.9714,-1,-0.9714,-0.8286,-0.9428,-1,-1,-1,-1,-1,-1,-0.5598,-0.5654,-0.543,-0.5108,-0.4576,-0.3942,-0.3048,-0.166,-0.0292,0.1702,1,1,1,0.9904,0.9816,0.9928,0.968,0.8776,0.6204,0.1466,-0.6266,0.1882,-0.819,-0.7408,-0.6368,-0.5114,-0.4564,-0.1084,0.104,0.248,0.392,0.648,0.376,0.456,1,0.472,0.712,0.888,0.856,0.616,0.536,0.84,0.632,0.44,0.52,0.536,0.856,0.92,0.632,0.248,0.296,0.552,0.2,0.504,0.44,0.072,0.488,0.232,0.248,-0.344,0.341,0.375,0.5682,0.5228,0.8296,0.6704,0.9204,0.466,0.7614,0.8522,0.5682,0.5568,1,0.7614,0.4432,0.8068,0.716,0.6818,0.6818,0.4204,0.6818,0.4204,0.591,0.5,0.5568,0.591,0.4432,0.4432,0.125,0.341,0.3636,-0.3182,0.3806,0.5752,0.4514,0.1946,0.1062,0,0.0884,0,0.2566,0.5132,0.7434,0.5044,1,0.9824,0.8672,0.947,0.9292,0.7434,0.4336,0.0708,0.0442,-0.0442,-0.1238,-0.3186,-0.2212,-0.1416,-0.3008,-0.1416,0.053,-0.0708,-0.1062,-0.469,-0.9884,1,-1,-1,-1,-1,-1,-1,-1,-0.2942,0.6236,0.647,0.9764,0.9058,0.8118,0.9294,0.7176,0.8118,1,0.247,0.247,0.5058,0.4824,0.6,0.4352,0.2706,0.2942,0.3176,0.5764,0.647,1,0.8118,0.553,0.6236,0.3412,0.3412,0.3882,0.0352,0.0588,0.0824,-0.4352,'21'
-0.139,0.3434,0.199,0.1608,-0.2644,-0.2806,-0.8774,-0.7984,-0.7138,-0.7956,-0.8692,-0.6622,-0.6702,-0.5204,-0.564,-0.4686,-0.2724,0.128,0.387,0.6622,0.6648,0.2698,0.5668,0.6758,0.7548,0.872,1,0.9318,0.782,0.6022,0.7984,0.872,-0.295,0.1578,0.0864,0.0904,-0.0804,-0.1838,-0.43,-0.3804,-0.3604,-0.3764,-0.3188,-0.3744,-0.2096,-0.2512,-0.0964,0.1042,0.1858,0.6108,0.6326,0.8848,0.849,0.7696,0.7856,0.9662,0.9146,1,0.8034,0.871,0.5472,0.5114,0.6484,0.6386,-0.368,0.0598,0.081,0.262,0.0964,-0.0096,-0.2428,-0.2196,-0.2254,-0.2602,-0.2138,-0.2544,-0.077,-0.0366,0.0598,0.4548,0.5028,0.9344,0.9018,0.9384,0.8574,1,0.8516,0.7784,0.7746,0.8478,0.7862,0.7938,0.6108,0.553,0.7572,0.6416,-0.2446,0.2238,0.4994,0.6716,0.4006,0.201,-0.1618,-0.1918,-0.116,-0.2238,-0.139,0.015,0.132,0.6028,0.5936,0.8738,0.7726,0.8048,0.7452,0.8668,0.954,1,0.6532,0.6096,0.7796,0.667,0.8118,0.6372,0.6372,0.7634,0.7612,0.4626,-0.2172,0.2686,0.8732,1,0.4224,0.1606,-0.2686,-0.2362,-0.1498,0.0742,0.1876,0.409,0.3144,0.4036,0.255,0.2038,0.131,0.174,0.2308,0.3226,0.4656,0.39,0.2712,0.2416,0.2632,0.2578,0.2982,0.382,0.2902,0.3334,0.3226,0.2416,-0.2126,0.2032,1,0.9936,0.0222,-0.2508,-0.2698,-0.127,0.4952,0.5016,-0.1048,-0.2762,-0.4096,-0.5714,-0.581,-0.438,-0.3714,-0.4032,-0.4604,-0.3874,-0.1714,-0.0604,-0.2508,-0.3746,-0.3334,-0.4158,-0.292,-0.3112,-0.2158,0.1302,0.127,-0.0444,-0.0478,0.3846,1,0.8712,-0.2142,-0.2142,-0.2058,0.2766,0.555,0.077,-0.4054,-0.4594,-0.4886,-0.5718,-0.817,-0.7006,-0.5468,-0.3472,-0.4636,-0.7506,-0.5884,-0.368,-0.5592,-0.4594,-0.4012,-0.7048,-0.6674,-0.5926,-0.3514,0.0978,0.0936,-0.0894,0.2,0.5272,0.3454,0.4182,0.091,-0.0546,-0.309,-0.3454,-0.2,-0.2364,-0.2364,-0.1272,-0.1272,-0.1636,-0.1272,-0.1272,-0.1272,0.3818,0.3454,0.7818,0.709,0.3454,0.709,0.709,0.6728,0.8182,1,0.9272,1,0.9272,0.891,0.9272,0.3334,0.619,0.3968,0.5556,0.3968,0.3968,-0.0476,-0.0476,-0.2698,-0.1746,-0.2698,-0.1746,0.1428,0.1428,-0.0158,-0.0158,-0.0476,0.492,0.4604,0.8096,0.746,0.4286,0.746,0.7778,0.873,0.7778,1,0.873,0.9682,0.873,0.8412,0.9366,-0.2196,0.317,0.878,1,0.5122,0.244,-0.1464,-0.3414,-0.122,0.0732,0.0976,0.561,0.5122,0.6098,0.2682,0.4146,0.244,0.1952,0.3658,0.5854,0.7318,0.3902,0.3414,0.439,0.2926,0.5122,0.439,0.561,0.5366,0.4878,0.4878,0.3414,-1,-1,-1,-1,-1,-1,-1,-0.9812,-0.9724,-0.9666,-0.7362,-0.3782,-0.0638,0.1174,0.216,0.4798,0.745,0.9218,0.745,0.2406,-0.1304,-0.6536,-0.8768,-0.9,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9882,-0.9854,-0.9834,-0.9094,-0.756,-0.4232,0.4448,0.9048,0.5494,-0.0098,-0.3328,-0.4848,-0.6684,-0.7928,-0.9122,-0.965,-0.9694,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.94,-0.78,-0.7434,-0.3892,-0.0782,0.0744,-0.0684,-0.1384,-0.4568,-0.765,-0.8318,-0.8334,-0.835,-0.8,-0.84,-0.8734,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6286,-0.8858,0.1428,1,1,-0.1428,-0.4,-0.8858,-0.7142,-0.4286,-0.3428,-0.5142,-0.5714,-0.8,-0.6858,-0.9714,-0.3714,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.545,-0.5322,-0.5338,-0.5316,-0.4846,-0.3854,-0.24,-0.0658,0.1242,0.1322,1,0.9888,1,1,1,1,0.9806,0.9306,0.7468,0.2918,-0.7066,0.4,-0.8854,-0.82,-0.7878,-0.7626,-0.6818,-0.0334,0.2044,0.0752,0.0646,0.5592,0.5914,0.6666,0.7204,0.6774,0.871,0.8388,0.7312,0.7526,0.8924,0.7956,0.5914,0.5698,0.785,0.4408,0.5162,0.4302,0.3764,0.4838,0.6452,0.4516,0.4302,0.5268,0.5054,0.6022,0.2258,0.301,0.3226,0.0752,-0.0744,-0.1322,-0.033,0.2232,0.3388,0.5206,0.5206,0.1488,0.4794,0.314,0.2314,0.157,0.6116,0.5454,0.6612,0.6528,1,0.471,-0.0496,0.248,0.124,0.1322,-0.033,0.124,-0.1818,-0.1158,0.0166,-0.0248,-0.1488,0.19,0.0744,-0.4958,0.034,0.2136,-0.1084,0.003,-0.0464,-0.1146,-0.096,0.1022,0.2074,0.226,0.164,0.1888,0.4428,0.5728,0.7214,0.6966,1,0.6408,0.2756,-0.0216,0.0092,-0.0092,-0.1702,-0.2136,-0.257,-0.2198,-0.195,-0.1764,-0.1208,0.387,0.2198,-0.1394,-0.995,1,-1,-1,-1,-1,-1,-1,-1,0.791,0.7314,0.2238,0.2538,1,0.403,0.4626,0.4328,0.2238,0.0746,-0.194,0.0448,0.194,0.2836,0.3134,0.2836,0.1044,-0.1642,-0.2538,-0.1642,-0.3432,-0.2238,-0.015,-0.2538,0.0448,-0.1344,-0.4926,-0.194,-0.3432,0.4626,0.5522,-0.612,'21'
-0.2036,0.361,0.3742,0.5754,0.256,-0.1554,-0.2692,-0.2822,-0.2472,-0.3086,-0.221,-0.1992,-0.0328,0.0416,0.221,0.3392,0.523,0.733,0.8468,0.9824,1,0.9738,0.9824,0.9562,0.9824,0.8074,0.733,0.628,0.5624,0.6062,0.628,0.5624,-0.279,0.1774,0.128,0.2646,0.1338,-0.0378,-0.2616,-0.2094,-0.3372,-0.282,-0.2384,-0.221,-0.1454,-0.1802,0.0406,-0.0348,0.2442,0.4186,0.6134,0.8488,0.9854,0.7936,0.8808,0.939,1,0.8634,0.8662,0.6424,0.6076,0.5524,0.4826,0.6104,-0.3466,0.1042,0.0246,0.132,-0.049,-0.1626,-0.4142,-0.3774,-0.3834,-0.405,-0.2852,-0.3712,-0.319,-0.2576,-0.1196,-0.0614,0,0.3344,0.3896,0.7884,0.8312,1,0.905,0.9448,0.9234,0.954,0.8312,0.8496,0.5706,0.5674,0.5368,0.5306,-0.3904,-0.0096,0.0286,0.1396,-0.2158,-0.3016,-0.4032,-0.5142,-0.454,-0.5334,-0.5238,-0.4858,-0.5142,-0.3714,-0.254,-0.2158,-0.073,0.1048,0.3746,0.5904,0.8572,0.9874,1,0.9428,0.9904,0.9238,0.8826,0.7524,0.6476,0.5302,0.438,0.527,-0.451,-0.1634,0.0294,0.0424,-0.4118,-0.598,-0.6732,-0.6896,-0.8072,-0.7026,-0.647,-0.6568,-0.6014,-0.5784,-0.4412,-0.3398,-0.2516,-0.0392,0.2288,0.4444,0.719,0.915,1,0.9216,0.9248,0.8856,0.8954,0.7648,0.549,0.438,0.379,0.3138,-0.4882,-0.2522,0.089,0.0128,-0.4084,-0.4556,-0.5898,-0.7714,-0.8112,-0.7278,-0.735,-0.6152,-0.6516,-0.55,-0.4736,-0.4846,-0.303,-0.205,-0.02,0.4228,0.7024,0.9202,1,0.9674,0.9818,0.9346,0.8112,0.706,0.5608,0.4664,0.412,0.4918,-0.4086,-0.1106,0.2776,0.1512,-0.3724,-0.5666,-0.6976,-0.6568,-0.7878,-0.8374,-0.8646,-0.6884,-0.6072,-0.544,-0.517,-0.5576,-0.4762,-0.4492,-0.2416,0.1152,0.6118,0.842,1,0.9232,0.9864,0.6434,0.7246,0.6976,0.4854,0.4176,0.3408,0.6388,-0.1,0.4,0.4,0.6,-0.05,-0.45,-0.2,-0.4,-0.25,-0.7,-0.6,-0.1,-0.15,0.1,0.25,0.35,0.5,0.3,0.7,0.95,1,0.95,0.7,0.85,0.6,0.65,0.6,0.5,0.4,0.6,0.8,0.45,-0.125,0.375,0.375,0.625,0.2916,-0.0416,-0.0834,-0.1666,-0.0834,-0.2084,-0.0834,0.0416,0.125,0.2084,0.0834,0.5416,0.4584,0.875,0.7084,0.875,0.8334,0.9166,1,0.9166,0.8334,0.5416,0.7916,0.5416,0.5834,0.7084,0.7084,0.4584,-0.5152,-0.2526,-0.0708,-0.0506,-0.4546,-0.7172,-0.8182,-0.8182,-0.8182,-0.7778,-0.5758,-0.6364,-0.7778,-0.5758,-0.495,-0.3132,-0.2324,-0.1516,0.1112,0.4748,0.5556,1,0.9394,0.899,0.8788,0.8586,0.9192,0.7172,0.495,0.3738,0.2526,0.293,-0.9608,-0.9738,-0.6392,-0.256,-0.2654,-0.314,-0.3214,-0.37,-0.4056,-0.4018,-0.213,0.5364,0.7814,0.5626,0.3982,0.2038,0.0486,-0.0486,-0.271,-0.387,-0.4524,-0.613,-0.7906,-0.8168,-0.7476,-0.8242,-0.9046,-0.9402,-0.9364,-0.9552,-1,-1,-1,-0.9764,-0.9792,-0.8816,-0.7664,-0.762,-0.7596,-0.7572,-0.7524,-0.7528,-0.7404,-0.696,-0.2572,0.5448,0.8806,0.763,0.7832,0.5872,0.4026,0.1706,-0.1152,-0.4966,-0.7578,-0.9022,-0.9114,-0.894,-0.921,-0.9422,-0.9586,-0.9566,-0.9596,-1,-1,-1,-0.9534,-0.94,-0.8868,-0.7268,-0.6568,-0.69,-0.6834,-0.5668,-0.56,-0.3634,-0.4368,-0.4544,-0.32,0.0114,-0.0486,-0.0916,0.0374,-0.0026,0.0124,0.0224,-0.17,-0.3926,-0.4168,-0.2668,-0.5268,-0.4668,-0.3568,-0.6,-0.5734,-0.48,-1,-1,-1,-0.7142,-0.4858,1,1,0.3142,0.6286,-0.2858,-0.7142,-0.8286,-0.8572,0.3428,1,1,-0.9142,-0.9142,-1,-0.9714,-0.8858,-0.8572,-0.8,-0.5142,0.1714,-0.4,-0.8572,-0.7142,-0.8572,-0.7428,-0.8,-1,-0.9142,-1,-1,-1,0.0642,0.1,0.1316,0.16,0.1994,0.242,0.277,0.3042,0.277,0.0676,0.484,0.507,0.5436,0.5482,0.583,0.626,0.684,0.7804,0.8758,0.9996,-0.6666,-0.1412,-0.6942,-0.6112,-0.3098,0.2384,0.5198,-0.5334,0.6146,0.6364,0.0618,-0.0546,0.091,0.0328,0.1854,0.8546,0.7818,0.6218,0.8328,1,0.5564,0.6218,0.7818,0.6218,0.5054,0.389,0.44,0.7018,0.789,0.84,0.789,0.7018,0.6436,0.6946,0.6872,0.8036,0.7382,0.709,0.571,0.2072,0.6092,0.6226,0.0198,-0.0728,0.0398,-0.0132,0.3178,0.7284,0.6158,0.6822,0.8146,0.9206,0.7086,0.6622,0.8014,0.9072,0.6822,0.8146,0.8544,0.8808,0.861,1,0.914,0.9404,0.8676,0.7948,0.9206,0.7484,0.7086,0.6358,0.4834,0.0332,0.6508,0.6958,0.4816,0.031,0.0816,0.3352,0.431,0.6788,0.707,0.7802,1,0.8704,0.8198,0.8478,0.955,0.9492,0.7578,0.4592,0.7916,0.9944,0.9662,0.8536,0.8084,0.7408,0.769,0.7634,0.7296,0.5662,0.5436,0.4704,0.5154,0.1718,-0.9258,-1,1,-1,1,1,0,-0.2666,-1,0.1148,0.1968,0.0984,0,0.082,0.3114,0.2786,-0.1148,-0.0492,0.2296,0.9672,1,0.9016,0.9508,0.6886,0.295,0.3606,0.4098,0.3934,0.5574,0.3606,0.4262,0.3114,0.1968,0.246,0.082,0.0656,0.1312,0.3114,0.2622,0.1968,0.0328,'22'
-0.0166,0.6192,0.894,1,-0.0166,-0.4206,-0.702,-0.4272,-0.4736,-0.3642,0.0596,0.0794,0.457,0.447,0.5166,0.3974,0.043,0.1292,0.2682,0.3112,0.5596,0.5066,0.3742,0.2782,0.1622,0.0696,0.1192,0.1324,0.3774,0.4106,0.2418,-0.0464,0.1112,0.6252,0.34,0.3068,-0.4958,-0.8872,-0.4228,-0.2172,-0.32,-0.35,-0.257,-0.4162,-0.0514,0.3898,0.3964,0.4694,0.2006,0.4162,0.3798,0.4196,0.7214,0.811,0.413,0.5622,0.539,0.3068,0.3698,0.4262,0.7578,1,0.7214,0.728,-0.0876,0.4562,0.4164,0.512,-0.3474,-0.5146,-0.3952,-0.5146,-0.297,-0.3316,-0.3926,-0.1034,0.0478,0.0982,0.2864,0.4774,0.5862,0.748,0.7506,0.9258,0.9336,1,0.9046,0.9284,0.8302,0.6844,0.6498,0.634,0.695,0.8754,0.7958,0.451,-0.315,0.1288,0.069,0.213,0.0546,-0.0444,-0.2814,-0.2262,-0.2232,-0.2218,-0.219,-0.264,-0.1098,-0.2014,-0.0036,-0.027,0.0938,0.4734,0.5448,0.8952,0.917,0.9476,0.92,1,0.923,0.9724,0.84,0.8618,0.6466,0.7134,0.4764,0.4952,-0.3306,0.0694,0.0854,0.208,-0.171,-0.2436,-0.3904,-0.4436,-0.5,-0.5388,-0.5048,-0.5146,-0.4452,-0.3822,-0.379,-0.229,-0.1612,0.0678,0.2952,0.542,0.8306,1,0.9596,0.887,0.9564,0.958,0.8936,0.8016,0.642,0.5112,0.4112,0.3646,-0.4178,-0.1412,0.2418,0.145,-0.3908,-0.5494,-0.6402,-0.7892,-0.8008,-0.7718,-0.8104,-0.6248,-0.6674,-0.706,-0.5764,-0.4952,-0.5706,-0.2438,0.029,0.3056,0.6054,0.9304,1,0.8936,0.882,0.8452,0.8318,0.762,0.586,0.559,0.561,0.6016,-0.3768,0.0284,0.1324,0.0854,-0.6148,-0.4372,-0.5242,-0.6784,-0.7856,-0.9396,-0.799,-0.7118,-0.6314,-0.6248,-0.7722,-0.5946,-0.608,-0.5376,-0.149,0.072,0.6884,0.9296,0.9664,0.7788,0.9966,1,0.6784,0.2764,0.119,0.3936,0.34,0.3266,-0.3104,0.3104,0.862,1,0.5862,-0.3794,-0.3794,-0.4482,-0.5862,-0.5862,-0.2414,0.0344,0.1034,0.3794,0.5172,0.3104,0.1034,0.1034,0.1724,0.1724,0.4482,0.5172,0.3794,-0.1034,-0.1034,-0.5172,-0.1724,0.1034,0.3794,0.3104,-0.1034,-0.3104,-0.36,0.36,0.84,1,0.44,-0.6,-0.76,-0.52,-0.68,-0.76,-0.36,-0.04,0.28,0.52,0.44,0.36,-0.2,-0.2,0.04,0.2,0.2,0.28,0.36,0.28,0.04,-0.12,-0.12,-0.04,0.2,0.2,-0.12,-0.28,-0.2,0.3176,0.4588,0.6,0.1058,-0.2236,-0.1058,-0.247,-0.1294,-0.3648,-0.2,0.0352,-0.0118,0.1294,0.247,0.4588,0.7412,0.8588,0.953,0.8588,1,0.8588,1,0.9294,0.9058,0.8352,0.7648,0.6236,0.647,0.8118,0.5764,0.3176,-1,-1,-1,-1,-1,-1,-1,-1,-0.959,-0.9454,-0.7836,-0.3528,-0.3742,-0.3684,-0.3548,0.5244,0.5634,0.2788,0.0916,-0.23,-0.5984,-0.7738,-0.8732,-0.9104,-0.9512,-0.9338,-0.9474,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9808,-0.9792,-0.941,-0.8312,-0.8194,-0.804,-0.784,0.0062,0.8864,0.4616,-0.1764,-0.4502,-0.8362,-0.9222,-0.9506,-0.9638,-0.971,-0.9714,-0.9772,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.94,-0.88,-0.7494,-0.7894,-0.6174,-0.5308,-0.308,0,-0.1464,-0.1076,-0.055,-0.4138,-0.6214,-0.5334,-0.6634,-0.73,-0.8,-0.8068,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3714,-1,0.9714,0.8858,0.1714,-0.8286,-0.6572,1,-0.9142,-0.7142,-0.8286,-0.5714,-0.1714,-0.8572,-0.8286,-0.8572,-0.8286,-0.8286,-0.3142,-1,-1,-1,-1,-1,-1,-0.2648,-0.3016,-0.3042,-0.311,-0.3248,-0.3566,-0.3778,-0.3616,-0.1878,-0.0736,-0.6916,-0.6404,-0.5926,-0.5176,-0.4254,-0.3844,-0.3006,-0.2122,0.0662,0.5474,-0.7334,0.8942,-0.9332,-0.8508,-0.826,-0.828,-0.8326,-0.8416,0.1312,0.2786,0.4918,0.754,1,0.8032,0.836,0.6886,0.7704,0.8032,0.8196,0.705,0.7378,0.541,0.3934,0.5574,0.6886,0.5738,0.4262,0.6066,0.754,0.705,0.4426,0.2296,0.1968,0.3278,0.4262,0.5574,0.2786,0.2786,-0.1476,-0.7704,0.4342,0.5922,0.6448,0.7236,0.671,0.7106,0.6974,0.9868,0.9078,0.6974,0.829,0.6448,0.6974,0.671,0.5658,0.6316,0.7236,0.4342,0.5526,0.6974,0.8422,0.7106,0.6842,0.6316,0.7236,0.5658,0.6316,0.6448,0.4736,0.2368,0.5394,0.1974,0.248,0.808,0.952,0.456,0.488,0.92,0.792,0.728,1,-0.008,0.536,0.12,0.808,0.424,0.184,0.504,0.344,0.264,0.008,0.312,0.2,0.536,0.216,0.232,0.12,0.008,0.376,0.424,-0.008,-0.12,-0.824,-0.792,-0.9886,1,-1,-1,-1,-1,-1,-1,-1,-0.0638,0.0212,0.0212,-0.149,0.149,0.1276,0.2128,-0.2766,-0.0426,1,0.851,0.7234,0.851,0.7872,0.3404,0.7234,0.383,-0.0638,-0.2978,0.234,0.234,0.0852,-0.149,0.234,0.1064,-0.3618,-0.0638,0,-0.0426,-0.0852,-0.0426,-0.1276,'22'
-0.4232,0.0062,0.2688,0.441,0.7568,0.8244,0.4606,0.3504,0.4712,0.4214,0.6078,0.732,0.8616,0.6984,0.7692,0.5688,0.5724,0.6184,0.6078,0.8154,0.8758,1,0.7818,0.7764,0.7764,0.787,0.7214,0.6716,0.4872,0.4214,0.4942,0.3096,-0.225,0.2588,0.6046,0.7244,0.7036,0.6698,0.5058,0.8596,0.9766,0.8544,0.8102,0.4954,0.485,0.2146,0.1886,0.3394,0.2874,0.303,0.4122,0.5942,0.9298,1,0.8154,0.6332,0.6698,0.7374,0.7816,0.753,0.727,0.7634,0.641,0.2848,-0.2898,0.1804,0.8324,0.9768,0.73,0.7182,0.5158,0.681,0.8394,0.716,0.7438,0.6228,0.5344,0.2992,0.2434,0.3202,0.1828,0.1386,0.3806,0.5484,0.688,0.9884,1,0.7438,0.6508,0.7392,0.7834,0.8672,0.851,0.7882,0.6414,0.5692,-0.2906,0.1466,0.8046,0.907,0.3558,0.2442,-0.0442,-0.1512,-0.107,-0.0466,0.0744,0.372,0.4024,0.4652,0.5976,0.572,0.686,0.7302,0.7768,0.8652,0.8488,1,0.9094,0.8232,0.6906,0.6442,0.6558,0.621,0.5838,0.528,0.3976,0.4954,-0.3696,-0.0118,0.4928,0.5072,-0.0616,-0.211,-0.417,-0.526,-0.6018,-0.7252,-0.6232,-0.4906,-0.4242,-0.3056,-0.2062,-0.083,0.147,0.4834,0.7394,0.9928,1,0.782,0.8342,0.8862,0.7488,0.583,0.647,0.5356,0.4384,0.5284,0.5616,0.481,-0.46,-0.1792,0.2736,0.3798,0.401,0.2216,-0.1132,-0.4646,-0.46,-0.6438,-0.4292,-0.4198,-0.3042,-0.151,0.1014,0.3514,0.585,0.8562,0.8868,0.9576,1,0.8726,0.868,0.6486,0.6556,0.5354,0.5896,0.5048,0.493,0.5614,0.5944,0.257,-0.2186,0.167,0.463,0.9656,1,0.5008,0.0224,-0.2908,-0.3976,-0.58,-0.2118,0.1566,0.4802,0.587,0.6006,0.5594,0.487,0.315,0.2702,0.191,0.704,0.666,0.5732,0.1222,0.1532,0.1256,0.1842,0.284,0.7074,0.8244,0.6798,0.2392,-0.3334,0.2084,0.5,0.8334,0.7084,0.5834,0.2916,0.2084,0.2084,0.25,0.5,0.4584,0.875,0.75,1,0.8334,0.6666,0.625,0.7084,0.8334,0.9166,1,1,0.8334,0.75,0.8334,0.7084,0.7084,0.625,0.5834,0.2916,0.4166,-0.4902,-0.0588,0.3726,0.5686,0.5686,0.7254,0.3726,0.2942,0.3334,0.2942,0.4118,0.5686,0.7648,0.8824,1,0.6862,0.647,0.6862,0.6862,0.8432,0.7254,1,0.7254,0.7648,0.7648,0.7648,0.7254,0.6862,0.2156,0.255,0.3726,0.1764,-0.3494,0.1808,0.6144,0.759,0.5422,0.5422,0.4216,0.8314,1,0.5662,0.2772,0.253,0.229,0.012,-0.0602,0.0602,-0.1326,-0.1566,0.2048,0.229,0.3494,0.9036,0.9036,0.4458,0.3494,0.5904,0.5904,0.5904,0.8554,0.8554,0.4458,0.3012,-1,-1,-1,-1,-1,-1,-1,-0.985,-0.981,-0.9834,-0.802,0.3712,0.944,-0.3996,-0.2386,0.237,0.0934,-0.323,-0.5456,-0.6766,-0.6008,-0.708,-0.8746,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9924,-0.992,-0.9922,-0.827,0.1768,0.5122,-0.6792,-0.6788,-0.4728,-0.6194,-0.7104,-0.771,-0.729,-0.8192,-0.897,-0.9652,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.9668,-0.8334,0.2,-0.4634,-0.6318,-0.5118,-0.694,-0.8,-0.7154,-0.6032,-0.48,-0.5308,-0.7078,-0.8448,-0.9268,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,-0.8,1,1,1,1,1,1,-0.4858,-0.1714,-0.4,-0.8572,-0.7428,-0.3714,0.2286,-0.3714,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,0.9528,0.6796,-0.2494,-0.2452,-0.21,-0.135,-0.0402,0.0632,0.0704,0.1792,0.2166,0.212,-0.64,0.5294,-0.8176,-0.5808,-0.235,0.1684,0.7734,1,-0.9102,-0.3484,-0.0786,-0.1236,0.236,0.2808,-0.0112,0.2808,0.3258,0.528,0.5056,0.6854,0.573,0.6404,0.5506,0.4832,0.7304,0.7752,0.7978,0.7978,0.955,0.7978,1,0.9326,0.8202,0.7078,0.7304,0.7078,0.573,0.5056,0.3708,0.1012,-0.4952,-0.1844,-0.0292,-0.1456,0.068,0.0486,-0.0098,0.4564,0.165,0.2816,0.2816,0.4564,0.2234,0.2038,0.3398,0.2816,0.6116,0.5146,0.631,0.7282,0.8834,1,0.9418,0.9806,0.767,0.7282,0.9418,0.8446,0.7282,0.903,0.6116,0.301,0.0114,0.4022,0.5172,0.0804,-0.0574,0.1494,0.5862,0.7242,0.3334,0.4712,0.6322,0.6782,0.3564,0.4022,0.2184,0.4252,0.4942,0.4712,0.5632,0.6322,0.954,1,0.816,0.7472,0.7012,0.4482,0.7702,0.4942,0.4942,0.6092,0.839,0.6552,-0.3726,-1,-1,1,-1,-1,-1,-0.8,-1,0.8654,0.827,0.673,0.4808,0.5384,0.6538,0.8462,0.6924,0.4038,0.6346,0.5384,0.5576,0.6538,0.4424,0.9424,1,0.3654,0.673,0.8462,0.5576,0.5962,0.9424,0.827,0.6154,0.327,0,-0.0576,0.2884,-0.173,-0.2692,-0.0962,-0.173,'23'
-0.3472,0.1848,0.7738,0.9904,0.7644,0.723,0.7134,0.6942,1,0.9236,0.7452,0.621,0.258,0.207,0.2516,0.1402,0.1146,0.2962,0.1402,0.3216,0.5924,0.7102,0.7898,0.8216,0.7356,0.6752,0.7484,0.6656,0.7994,0.707,0.707,0.621,-0.3322,0.1502,0.8562,1,0.6038,0.4346,0.179,0.1086,0.1694,0.2588,0.4154,0.5208,0.591,0.6358,0.6134,0.6582,0.6102,0.6166,0.5304,0.623,0.8306,0.8562,0.968,0.8116,0.6742,0.5878,0.639,0.6838,0.5942,0.5592,0.3898,0.3642,-0.336,0.0816,0.3748,0.4994,0.112,-0.101,-0.206,-0.3112,-0.455,-0.4688,-0.4052,-0.4218,-0.3832,-0.2614,-0.0568,0.0872,0.372,0.6294,0.8506,1,0.9918,0.8506,0.9198,0.8672,0.729,0.6348,0.6598,0.6154,0.48,0.4966,0.4938,0.5656,-0.4266,-0.1052,0.3546,0.3628,-0.2604,-0.4516,-0.5484,-0.6344,-0.6842,-0.6704,-0.6704,-0.59,-0.4682,-0.3518,-0.241,-0.061,0.1884,0.4516,0.7396,1,0.9944,0.8172,0.9308,0.9722,0.9722,0.806,0.7894,0.7452,0.4322,0.41,0.4848,0.5042,-0.5332,-0.0222,0.4602,0.3976,-0.1812,-0.262,-0.3768,-0.3664,-0.4028,-0.3508,-0.3664,-0.3116,-0.1238,-0.0326,0.1056,0.275,0.6166,0.7706,0.9296,0.9818,1,0.9688,0.867,0.7654,0.6976,0.6792,0.6272,0.5436,0.4106,0.4968,0.5046,0.3012,-0.3874,-0.0186,0.4992,0.5804,0.6006,0.3908,0.0592,-0.0592,-0.0762,-0.0356,-0.0152,0.2724,0.4416,0.6278,0.797,0.8274,0.6818,0.5906,0.6514,0.7834,1,0.9358,0.5872,0.4958,0.3808,0.4416,0.506,0.4586,0.3774,0.5634,0.594,0.3434,-0.3626,0.0754,0.5182,1,0.9952,0.567,-0.0414,-0.27,-0.2262,0.051,0.3382,0.4064,0.2992,-0.0948,-0.0268,-0.0072,0.017,-0.1678,-0.3334,-0.0802,0.1046,0.3236,0.1824,-0.1874,-0.1678,-0.3188,-0.129,-0.2312,0.2944,0.5524,0.309,-0.1582,-0.4286,0.1428,0.5238,0.8096,0.619,0.5238,0.762,0.8096,1,0.9048,0.2858,0.238,-0.3334,-0.1904,-0.2858,-0.0476,-0.0476,0.0476,-0.1428,0.238,0.4286,0.619,0.8096,0.8096,0.4286,0.4286,0.6666,0.619,0.8572,0.8096,0.762,0.7142,-0.2592,0.1852,0.7038,0.926,0.8148,0.5926,0.5926,0.7038,1,1,0.4444,0.3334,0.1852,0.074,0.2592,0.1112,0.1482,0.2222,0.1482,0.2962,0.4444,0.5926,0.6666,0.7038,0.5556,0.6296,0.6666,0.6666,0.7038,0.6666,0.6296,0.4444,-0.573,-0.0562,0.3708,0.2134,0.236,0.0562,-0.0786,-0.146,-0.146,-0.2584,-0.2584,-0.1686,0.0112,0.2808,0.7078,0.8426,0.9102,0.7752,0.7528,0.8426,0.9776,1,0.5956,0.5056,0.4382,0.4606,0.5956,0.5056,0.3034,0.528,0.3034,0.2584,-0.9844,-0.9854,-0.9364,0.087,0.9134,1,1,0.9386,-0.5102,-0.7248,-0.6602,0.6862,0.73,0.8238,0.039,-0.2486,-0.2934,-0.0756,-0.037,-0.4466,-0.4674,-0.6572,-0.8666,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9812,-0.9792,-0.2388,0.5084,1,1,1,1,-0.4752,-0.8048,-0.6838,0.6382,0.4986,0.3002,0.1938,0.1674,0.159,0.447,0.8068,-0.158,-0.5422,-0.7522,-0.9152,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9568,-0.96,0.4432,0.0066,-0.5434,-0.57,-0.7134,-0.5968,-0.7034,-0.7834,-0.6,-0.7446,-0.7846,-0.6934,-0.2956,-0.1334,-0.171,-0.379,-0.5522,-0.6462,-0.8242,-0.9042,-0.8922,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,1,-0.4858,0.3142,1,1,0.4572,1,1,-0.4286,-0.1142,-0.1714,-0.8572,-0.9428,-0.6,-0.3714,0.0286,0,0.7714,-0.0572,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,0.9964,0.9022,0.7902,0.5702,0.5324,0.8374,0.818,0.8264,0.7622,0.7,0.5794,0.4182,0.4068,0.5294,0.2368,-0.56,0.0942,-0.67,-0.158,0.6898,0.9474,0.6808,1,-0.897,-0.4432,-0.1546,0.0928,0.0928,0.0516,0.3608,0.3608,0.2784,0.4226,0.567,0.5464,0.7526,0.7526,0.7526,0.6082,0.7732,0.7732,0.7732,0.897,0.9794,1,0.7732,0.897,0.6908,0.5464,0.6908,0.6702,0.6082,0.2372,0.3196,-0.1958,-0.6702,-0.3404,-0.2022,-0.266,-0.0958,-0.0106,0.0426,0.2234,0.1382,0.032,0.1276,0.1808,0.3086,0.1914,0.1914,0.1596,0.5,0.532,0.6914,0.6064,1,0.9468,0.7022,0.6808,0.7234,0.6382,0.7766,0.734,0.7022,0.7554,0.5958,0.0852,-0.3228,-0.0552,-0.0236,-0.1338,-0.0866,0.1182,0.2598,0.1968,0.3858,0.3544,0.37,0.622,0.244,0.1338,0.3386,0.2756,0.6536,0.685,0.7166,0.9686,0.9528,0.9528,0.9056,1,0.3858,0.7322,0.5748,0.5906,0.7166,0.7638,0.6536,0.5276,0.226,1,-1,-1,-1,-1,-0.8,-0.7334,-1,0.8604,0.8838,0.9768,0.8604,0.7906,1,0.6512,0.3256,0.5582,0.5814,0.7442,0.7906,0.721,0.4884,0.4418,0.628,0.2094,0,0.6976,0.4884,0.2558,0.3488,0.6046,0.5814,0.4652,0.1628,0.4186,0.3256,-0.4186,0,0.0698,-0.186,'23'
-0.54,-0.1916,0.0174,0.129,0.4704,0.54,0.5332,0.4704,0.1986,0.2474,0.2196,0.2474,0.4356,0.5262,0.8816,0.8886,0.8188,0.763,0.7492,0.8048,0.8954,1,1,0.8886,0.8398,0.8258,0.6864,0.6028,0.4426,0.4844,0.568,0.331,-0.4504,-0.0926,0.1694,0.2524,0.5654,0.5654,0.7764,0.591,0.4122,0.3802,0.3162,0.4376,0.5974,0.655,0.968,0.9106,0.9616,0.7892,0.8402,0.9424,0.9234,1,0.8786,0.8914,0.706,0.7508,0.508,0.4186,0.2332,0.4314,0.4504,0.278,-0.4242,-0.1146,0.1394,0.195,0.4736,0.6656,0.7894,0.449,0.356,0.3994,0.3188,0.3994,0.616,0.7028,0.8948,0.969,1,0.839,0.7338,0.8142,0.87,0.8762,0.9196,0.7956,0.6284,0.486,0.5232,0.2818,0.226,0.418,0.3188,0.3188,-0.4874,-0.1898,0.0822,0.1456,0.4556,0.6962,0.7784,0.3924,0.3228,0.2848,0.3418,0.3482,0.576,0.7216,0.8164,1,0.9684,0.7342,0.6962,0.7088,0.8354,0.7532,0.8228,0.6518,0.595,0.3924,0.2026,0.2088,-0.0064,0.3482,0.4368,0.2216,-0.5612,-0.279,-0.0156,0.116,0.2978,0.7178,0.7366,0.3354,0.2352,0.254,0.3228,0.3292,0.442,0.6426,0.812,1,0.8934,0.7868,0.7618,0.8496,0.8684,0.906,0.8872,0.8496,0.768,0.6802,0.6552,0.536,0.3918,0.5486,0.5172,0.4232,-0.6242,-0.4026,-0.094,-0.0268,0.537,0.7046,0.5302,0.0268,0.0672,0.1006,0.0738,0.1208,0.2348,0.2954,0.604,0.9396,0.8994,0.7114,0.8256,0.7786,0.8792,1,0.8994,0.8256,0.7786,0.651,0.6846,0.6242,0.6578,0.6778,0.7382,0.5704,-0.884,-0.442,-0.1304,0.3188,0.4202,0.4492,0.326,0.145,-0.0508,-0.0362,0.0434,0.1884,0.1232,0.3696,0.4348,0.855,0.884,0.8696,0.9202,0.9566,0.9492,1,0.8334,0.7608,0.6522,0.6086,0.6522,0.7318,0.7174,0.8914,0.9202,0.6376,-0.5,-0.2188,0,0.0938,0.5,0.5938,0.5624,0.4062,0.25,0.25,0.2812,0.3124,0.375,0.5624,0.8438,0.8438,0.8124,0.7188,0.7812,0.8124,0.9062,0.9688,1,0.9062,0.8438,0.8438,0.7812,0.5,0.4688,0.5938,0.5312,0.125,-0.585,-0.2076,0.0188,0.1698,0.434,0.5094,0.6226,0.5094,0.1698,0.1698,0.1698,0.2452,0.3962,0.5472,0.8114,0.7736,0.6604,0.7358,0.6982,0.7358,0.7358,1,1,0.8868,0.7358,0.8114,0.7736,0.585,0.5094,0.6604,0.6226,0.3584,-0.6262,-0.4206,-0.1028,0.0654,0.4766,0.7196,0.5888,0.2898,0.215,0.2524,0.2336,0.2898,0.458,0.5888,0.6636,1,0.944,0.7944,0.8318,0.9626,0.9814,0.9814,1,1,0.8504,0.7944,0.7758,0.6262,0.701,0.7196,0.7758,0.4766,-1,-1,-1,-1,-1,-1,-1,-1,-0.9634,-0.957,-0.4682,1,0.7094,0.6964,0.5156,0.4102,0.3584,0.2788,0.3304,0.1496,-0.3542,-0.2228,-0.7502,-0.9484,-0.957,-0.9484,-0.9462,-0.8192,-0.8838,-0.9504,-0.9462,-0.9504,-0.9504,-1,-1,-1,-1,-1,-1,-1,-1,-0.9888,-0.9878,-0.2426,1,0.5358,0.3102,0.1348,0.229,0.143,0.0466,0.3762,0.2668,-0.571,-0.3646,-0.7726,-0.919,-0.9484,-0.9836,-0.9228,-0.7792,-0.8028,-0.627,-0.6744,-0.64,-0.7056,-1,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.9534,-0.6334,-0.2934,-0.3268,-0.4668,-0.42,-0.46,-0.535,-0.455,-0.315,-0.36,-0.33,-0.29,-0.1534,-0.4934,-0.7134,-0.8868,-0.8834,-0.1868,0.7266,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6858,1,1,1,0.6,-0.6572,-0.8858,-1,-0.9714,-0.6858,-0.3142,0.7142,1,1,1,1,1,1,1,1,1,0.8286,-0.5142,-0.8286,-0.8572,1,1,1,1,1,1,1,1,1,1,0.0812,0.0812,0.131,0.131,0.0528,-0.0046,-0.0996,-0.1644,-0.3424,-0.1886,-0.6,-0.6352,-0.0876,0.9274,0.7374,0.3442,0.2112,1,-0.1764,-0.1764,0.098,0.1372,0.2942,0.3726,0.5686,0.7648,0.8432,0.8824,0.9608,1,1,0.9608,0.8824,0.7648,0.7254,0.5294,0.451,0.451,0.3726,0.1372,0.1372,0.098,-0.1372,-0.0588,0.0588,-0.0196,-0.098,-0.0196,-0.0196,-0.5686,-0.5862,-0.1896,0.1896,0.2242,0.0862,0.1724,0.3448,0.7758,0.8104,0.6896,0.7932,1,0.9656,0.8794,0.6896,0.7068,0.5518,0.2758,0.3104,0.4138,0.2758,0.0862,-0.1724,-0.2758,-0.431,-0.3966,-0.3448,-0.3794,-0.4828,-0.362,-0.3276,-0.4138,-0.2558,0.0698,0.5038,0.5194,0.3334,0.2868,0.5194,0.783,0.845,0.752,0.9224,1,0.8604,0.845,0.5504,0.628,0.4884,0.3644,0.0078,0.2868,0.1318,0.0078,-0.1472,-0.3178,-0.6124,-0.5814,-0.5968,-0.7054,-0.659,-0.3954,-0.4264,-0.783,1,-1,-1,1,-1,-1,-1,-0.8334,1,-0.8934,-0.7752,-0.7988,-0.7396,-0.6568,-0.6568,-0.5622,-0.361,-0.4556,-0.4082,-0.3018,-0.2072,-0.3018,-0.1834,-0.065,-0.0532,0.0532,-0.0296,-0.1242,0.0414,0.2544,0.3254,0.4556,0.5858,0.716,0.7042,0.8816,0.8698,1,0.9764,0.9172,0.5858,'24'
-0.6774,-0.3002,-0.1414,-0.0124,0.3052,0.3548,0.4888,0.3996,0.2606,0.201,0.1564,0.345,0.3698,0.5484,0.8014,0.8362,0.8214,0.7172,0.742,0.9256,0.9354,0.9702,0.9256,0.9802,1,0.8164,0.727,0.5832,0.4888,0.4044,0.479,0.4492,-0.5838,-0.2248,-0.024,0.0862,0.4832,0.5024,0.5406,0.4736,0.2966,0.1722,0.2392,0.3302,0.335,0.6028,0.8564,1,0.823,0.7034,0.7704,0.7608,0.9044,0.8182,0.8852,0.8374,0.89,0.6794,0.6794,0.3828,0.2966,0.3684,0.2536,0.1196,-0.5406,-0.1926,-0.0024,0.1136,0.5082,0.5266,0.5638,0.485,0.3458,0.2064,0.2854,0.3874,0.3642,0.6334,0.8654,1,0.7958,0.7262,0.7262,0.689,0.8004,0.7402,0.8422,0.703,0.7448,0.5962,0.5546,0.3736,0.2344,0.2344,0.1416,0.1786,-0.5188,-0.1886,0.0518,0.132,0.533,0.5188,0.632,0.5188,0.3962,0.2878,0.3066,0.4104,0.4812,0.6038,0.9528,1,0.7784,0.7312,0.7452,0.8114,0.8774,0.8396,0.835,0.8254,0.7264,0.7076,0.5518,0.4858,0.3584,0.2924,0.1084,0.0142,-0.605,-0.2952,0.0276,0.0998,0.4734,0.5286,0.6646,0.465,0.3674,0.3036,0.2314,0.3376,0.4608,0.5498,0.9194,0.8132,0.8726,0.8132,0.8344,0.9364,0.8938,1,0.8302,0.8598,0.8896,0.8046,0.7622,0.5626,0.5202,0.5882,0.5414,0.3928,-0.7788,-0.501,-0.1626,0.0412,0.3622,0.5966,0.514,0.2494,0.2148,0.154,0.167,0.2624,0.3666,0.5618,0.7614,0.9826,0.9392,0.8222,0.8264,0.9306,1,0.9566,0.8656,0.8568,0.8828,0.8916,0.8916,0.7788,0.6702,0.7006,0.692,0.6182,-0.9642,-0.7448,-0.352,0.1378,0.5562,0.5562,0.1174,-0.1072,-0.2398,-0.2194,-0.148,-0.1276,0.0714,0.1684,0.546,0.9846,0.9846,0.8878,0.8266,1,0.9286,0.8368,0.6632,0.5102,0.7092,0.8214,0.9388,0.8724,0.7398,0.7756,0.8826,0.7448,-0.72,-0.36,-0.4,0.04,0.28,0.4,0.4,0.4,0.28,0.16,0.12,0.36,0.36,0.56,0.84,0.88,0.88,0.76,0.72,0.92,0.96,1,0.88,0.92,1,0.84,0.76,0.36,0.56,0.56,0.36,0.28,-0.6774,-0.387,-0.129,0.0322,0.2258,0.3226,0.4838,0.387,0.1936,0.129,0.1936,0.258,0.3226,0.5484,0.742,0.6452,0.8064,0.742,0.7742,0.9032,0.9354,1,0.871,0.871,0.9354,0.8388,0.6774,0.5806,0.4516,0.3548,0.258,0.387,-0.5484,-0.258,0.0646,0.1452,0.4838,0.5646,0.6612,0.4678,0.387,0.2904,0.2258,0.3226,0.4678,0.629,0.9032,0.8548,0.8548,0.8064,0.8388,0.9516,0.9354,1,0.8064,0.8226,0.9032,0.8064,0.758,0.613,0.5806,0.5646,0.5162,0.5162,-1,-1,-1,-1,-1,-1,-1,-1,-0.9692,-0.9774,-0.9402,0.2584,0.518,0.897,0.9588,0.9814,0.8784,0.6766,0.4336,0.2936,0.2378,-0.209,-0.8928,-0.9402,-0.9464,-0.9382,-0.9608,-0.9094,-0.7508,-0.9196,-0.9402,-0.9526,-0.9546,-1,-1,-1,-1,-1,-1,-1,-1,-0.9916,-0.9918,-0.953,0.6918,0.8914,0.9336,0.7772,0.6334,0.5642,0.6488,0.7476,0.8582,0.5254,-0.252,-0.8908,-0.9698,-0.9826,-0.9834,-0.9856,-0.7786,-0.8148,-0.79,-0.7492,-0.7132,-0.7512,-1,-1,-1,-1,-1,-1,-1,-1,-0.9868,-0.97,-0.85,-0.315,-0.225,-0.215,-0.236,-0.316,-0.412,-0.408,-0.352,-0.392,-0.372,-0.26,-0.17,-0.35,-0.64,-0.7334,-0.7734,-0.5368,-0.1034,0.6532,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,-0.2286,1,1,1,-0.8286,-0.9714,-0.9714,-0.9142,-0.6858,-0.6286,-0.0286,1,1,1,0.9142,-0.4572,-0.9428,1,1,1,1,0.2858,-0.1714,-0.7428,1,1,1,1,1,1,1,1,1,1,0.2868,0.2868,0.2778,0.2632,0.2422,0.179,0.1408,0.0344,-0.0954,0.0508,-0.6534,-0.5058,-0.9902,-0.0016,1,0.855,0.9124,1,0.2518,-0.2926,0.864,0.7006,0.4966,0.7142,0.5374,0.7688,0.9456,0.7278,0.8776,0.7142,0.932,1,0.5918,0.6054,0.796,0.4558,0.687,0.6462,0.4694,0.2654,0.4694,0.4966,0.7006,0.6326,0.415,0.3198,0.4286,0.3878,0.1564,-0.3062,0.2048,-0.3254,0.229,0.1928,0.518,0.6266,0.8554,0.7952,0.8916,1,0.9638,0.506,0.8674,0.506,0.6746,0.8192,0.6386,0.2048,0.3734,0.3976,0.3614,0.5662,0.6386,0.482,0.482,0.5542,0.253,0.265,0.265,-0.1326,0.012,-0.4338,0.0544,-0.1086,0.3586,0.7174,0.5,0.5,0.837,0.663,0.7826,0.7282,0.8044,0.837,1,0.3478,0.5218,0.3044,0.5652,0.4022,0.3478,0.4022,0.3478,0.4674,0.837,0.7826,0.4782,0.5326,0.4674,0.5218,0.3478,0.5218,0.9022,0.5652,-0.9956,1,-1,-1,-1,-1,-1,-1,1,-0.4634,-0.5024,-0.3366,-0.1708,-0.122,-0.2682,-0.122,0.161,0.1902,0.1024,0.239,0.161,0.1512,0.1318,0.1414,0.2682,0.3854,0.3658,0.483,0.5414,0.7464,0.7074,0.8732,0.7074,0.9902,1,0.8732,0.844,0.8732,0.9902,0.922,0.6878,'24'
-0.142,0.388,0.8306,1,0.7076,0.7076,0.3498,0.2132,-0.2432,-0.4754,-0.4454,-0.4398,-0.4782,-0.5766,-0.5956,-0.582,-0.3334,-0.336,-0.3032,-0.4098,-0.418,-0.0602,-0.0164,-0.2786,-0.246,-0.0846,0.1912,0.388,0.205,0.0164,0.194,0.0438,-0.3552,0.0466,0.408,0.5328,0.9916,1,0.9598,0.89,0.9916,0.7252,0.463,0.3128,0.2346,0.1268,0.0846,0.1522,0.1142,0.091,0.2368,0.4418,0.5624,0.8034,0.8012,0.5688,0.4652,0.6152,0.761,0.816,0.5434,0.4398,0.2832,0.1458,-0.4676,-0.1228,0.1318,0.24,0.63,0.7022,1,0.8972,0.7076,0.8718,0.9062,0.63,0.5632,0.408,0.3322,0.399,0.3376,0.314,0.4458,0.6028,0.7148,0.778,0.7924,0.6102,0.538,0.5668,0.4838,0.547,0.4278,0.4026,0.1842,0.0704,-0.4822,-0.1514,0.114,0.1926,0.5066,0.7608,0.9402,0.7644,0.7794,0.8038,0.8206,1,0.8616,0.7738,0.6018,0.544,0.4898,0.5066,0.557,0.7084,0.7832,0.9496,0.8018,0.6934,0.6448,0.5962,0.5328,0.3962,0.357,0.385,0.3364,0.1496,-0.461,-0.1536,0.1454,0.1782,0.4426,0.9118,1,0.7028,0.6454,0.6024,0.6496,0.666,0.92,0.9734,0.996,0.8464,0.7808,0.6946,0.7028,0.7418,0.92,0.961,0.9898,0.8094,0.7316,0.6086,0.545,0.5082,0.3566,0.293,0.3136,0.2684,-0.4432,-0.1592,0.2234,0.3792,0.5418,0.9496,0.8992,0.3586,0.2876,0.2668,0.1432,0.3928,0.3838,0.5486,0.819,0.8602,0.9266,0.9336,0.9244,0.8006,0.9038,0.9496,1,0.8878,0.7664,0.5854,0.528,0.5234,0.3974,0.3974,0.4502,0.4226,-0.3306,0.0068,0.2272,0.4422,0.6244,0.2816,-0.0448,-0.2408,-0.3904,-0.3878,-0.2708,-0.2136,-0.279,-0.3524,-0.2462,0.1156,0.3142,0.7034,0.8394,0.9402,0.8858,0.9674,0.9756,1,0.8096,0.502,0.4776,0.3714,0.3062,0.4586,0.5428,0.4694,-0.0304,0.5152,0.7576,1,0.4546,0.4546,0.2728,0.091,-0.5152,-0.8182,-0.5758,-0.394,-0.5152,-0.697,-0.394,-0.5758,-0.394,-0.5152,-0.1516,-0.394,-0.091,-0.0304,-0.091,-0.2122,-0.1516,-0.4546,-0.2728,-0.394,-0.0304,-0.2122,0.1516,-0.2122,0.1112,0.5112,0.8666,1,0.5556,0.5556,0.4222,0.2444,-0.2888,-0.2444,-0.2888,-0.1112,-0.3778,-0.1556,-0.2,-0.3334,-0.3778,0.0222,0.2,0.0222,-0.2444,-0.0666,-0.0666,0.0222,-0.0222,-0.2888,0.3778,0.4222,0.3334,0.2,0.3334,0.2,-0.4336,-0.0796,0.2036,0.3274,0.8054,0.8054,0.8762,0.8584,1,0.7876,0.646,0.3982,0.3098,0.2744,0.115,0.1858,0.239,0.1858,0.292,0.4868,0.593,0.7876,0.7876,0.5222,0.4514,0.6106,0.646,0.6814,0.5576,0.5398,0.2744,0.1328,-1,-1,-1,-1,-1,-1,-1,-1,-0.982,-0.9694,-0.686,-0.0284,0.5754,0.842,0.5806,0.609,0.332,0.117,0.0812,-0.0864,-0.3624,-0.688,-0.844,-0.8378,-0.8788,-0.9072,-0.9368,-0.9748,-0.9748,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9916,-0.9886,-0.9228,-0.7654,-0.429,0.2738,0.5818,0.9702,0.8356,0.422,0.2046,-0.1882,-0.6462,-0.866,-0.9384,-0.9364,-0.944,-0.9578,-0.9662,-0.9726,-0.9758,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9524,-0.9234,-0.9068,-0.8634,-0.7984,-0.66,-0.665,-0.61,-0.53,-0.5418,-0.66,-0.7534,-0.7556,-0.6938,-0.4912,-0.5878,-0.6678,-0.5212,-0.5478,-0.5712,-0.6044,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.1142,-0.2,1,0.4,1,0.5428,-0.8572,-0.9428,-0.8572,-0.9142,-0.8286,-0.7428,0.6,0.4286,-0.7428,-0.8858,-0.9714,-0.9428,-0.8,-0.8286,-0.6572,-1,-1,-1,-1,0.5118,0.527,0.5728,0.6564,0.7382,0.8156,0.9342,1,1,1,0.3556,0.3818,0.3904,0.4616,0.5082,0.5822,0.625,0.6484,0.3648,0.0702,-0.64,0.4588,-0.906,-0.8516,-0.8152,-0.7592,-0.7028,-0.775,0.9024,1,0.7074,0.756,0.5122,0.317,0.1708,0.5122,0.4146,0.4146,0.561,0.5122,0.317,0.4634,0.561,0.317,0.317,0.3658,0.4634,0.3658,0.5122,0.5122,0.5122,0.2682,0.2682,0.1708,0.3658,0.3658,0.0732,-0.0244,0.0732,-0.1708,0.8416,0.9802,1,0.8416,0.505,0.406,0.2674,0.1882,0.4852,0.3862,0.2674,0.3268,0.3862,0.3466,0.3862,0.2872,0.3466,0.2476,0.2278,0.2476,0.1882,0.1882,0.3664,-0.208,-0.1288,-0.1486,-0.5248,0.109,0.01,-0.0298,0.0298,-0.109,0.6322,1,0.954,0.6552,-0.0114,0.0574,0.1724,0.1724,0.2644,0.2414,0.1034,0.2184,0.0114,0.5172,0.5402,0.2874,-0.0344,-0.1034,-0.1724,-0.2874,-0.0574,-0.0574,-0.5862,-0.5632,-0.5862,-0.6092,-0.3564,-0.2184,-0.5862,-0.2414,-0.5172,-0.5172,-0.8546,-1,-1,1,-0.8,-1,-0.8,-0.8334,1,0.0446,0.0828,0.1592,0.2738,0.0828,-0.1592,0.0318,-0.0192,0.2866,0.5542,0.5924,1,0.9236,0.1464,0.2866,0.4012,0.4394,0.1592,0.0446,0.1464,0.223,0.1974,0.1338,0.1464,0.2356,0.1592,0.0446,0.0446,-0.3376,-0.3122,-0.3122,-0.6434,'25'
0.1516,0.7186,0.9032,0.9032,1,0.4946,0.3934,0.1384,0.0418,-0.1472,-0.4022,-0.3494,-0.4066,-0.4242,-0.4242,-0.4506,-0.1604,-0.1032,-0.178,-0.0814,-0.2572,-0.3054,-0.5428,-0.6264,-0.455,-0.3978,-0.3846,-0.3582,-0.2264,-0.6176,-0.8286,-0.8418,-0.2954,0.0966,0.7696,0.8172,1,0.886,0.9708,0.6238,0.4146,0.0622,-0.2186,-0.2106,-0.1046,-0.2424,-0.2504,-0.1178,-0.1762,-0.163,-0.086,0.0622,0.163,0.4304,0.396,0.3854,0.4544,0.5126,0.6292,0.5338,0.3986,0.1576,-0.0172,-0.2106,-0.4664,-0.1462,0.16,0.2786,0.6542,0.8558,1,0.9052,0.913,0.8972,0.7786,0.425,0.336,0.2964,0.2648,0.2154,0.2628,0.3774,0.4052,0.5454,0.8538,0.8676,0.66,0.5712,0.6562,0.5574,0.5632,0.6028,0.4546,0.3182,0.0158,-0.2608,-0.4344,-0.1364,0.1274,0.1724,0.4758,0.8402,0.9462,0.9354,0.9084,1,0.9282,0.9066,0.578,0.517,0.5098,0.4524,0.456,0.5188,0.571,0.6894,0.9336,0.8994,0.7146,0.605,0.641,0.5386,0.4812,0.4272,0.3394,0.325,0.1202,-0.1868,-0.4522,-0.2016,0.109,0.1378,0.323,0.8206,0.8226,0.973,0.7918,0.7666,0.8284,0.9788,1,0.8784,0.7686,0.7222,0.6008,0.5872,0.6624,0.8052,0.8688,0.921,0.8592,0.7686,0.6124,0.57,0.5024,0.3424,0.3366,0.3172,0.2556,0.0454,-0.5282,-0.3184,0.0446,0.167,0.5826,0.8388,0.6854,0.6718,0.4524,0.4116,0.3962,0.4234,0.6776,0.7884,0.9418,1,0.9106,0.8194,0.7962,0.8388,0.87,0.8894,0.8368,0.8098,0.6894,0.5806,0.5126,0.4214,0.297,0.3476,0.303,0.1204,-0.5532,-0.2444,0.062,0.483,0.8152,0.9322,0.5346,0.2164,0.048,-0.055,-0.1158,0.0924,0.1884,0.3216,0.5556,0.7404,0.8808,1,0.897,0.7964,0.8036,0.7334,0.8152,0.8198,0.6422,0.497,0.448,0.366,0.3006,0.3146,0.2654,0.1532,0.4376,0.8124,0.6876,0.875,1,0.8124,0.6876,0.375,0.5,0.3124,-0.5,0.0624,0.0624,0.0624,0.4376,0.4376,0.5624,0.5624,0.625,0.6876,0.6876,0.3124,0.375,-0.0624,0.0624,0.0624,-0.1876,-0.25,-0.625,-0.375,-0.3124,-0.5624,0.55,0.8,0.65,0.8,1,0.7,0.4,0.45,0.4,0.25,0.4,0.5,0.2,0.3,-0.1,0.4,0.55,0.45,0.45,0.6,-0.2,-0.1,0,0.15,0.2,0.2,0.2,0.15,0.25,0,0,0.2,-0.4226,-0.1134,0.3814,0.567,1,0.8556,0.835,0.9382,0.8556,0.2164,-0.0516,-0.031,-0.134,-0.031,-0.0104,0.0928,-0.0722,0.031,0.1958,0.3814,0.5464,0.6288,0.5876,0.567,0.6082,0.6494,0.8144,0.7114,0.4846,0.1958,0.1546,0.1134,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7888,-0.6996,-0.0458,0.625,0.5324,0.3868,0.196,0.0186,-0.1202,-0.013,0.302,-0.2784,-0.6274,-0.8036,-0.8644,-0.8442,-0.8994,-0.9492,-0.9774,-0.9808,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9376,-0.9202,-0.757,-0.1952,0.3466,0.7532,0.8802,0.6856,0.3584,0.2448,0.044,-0.5624,-0.8264,-0.9184,-0.9438,-0.929,-0.9526,-0.9696,-0.9776,-0.983,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9014,-0.945,-0.8934,-0.7984,-0.6634,-0.6884,-0.6618,-0.5694,-0.5848,-0.62,-0.7278,-0.6894,-0.59,-0.4334,-0.6,-0.4834,-0.3968,-0.4068,-0.52,-0.7,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3714,-0.8858,1,1,0.3428,-0.8,-0.8858,-0.9142,-0.9428,-0.9142,-0.2,-0.1428,0,-0.1142,-0.7428,-0.8286,-0.6572,-0.8286,-0.8,-0.8572,-1,-1,-1,0.4644,0.4606,0.458,0.4576,0.4614,0.5374,0.7012,0.89,1,1,-0.4152,-0.3852,-0.3656,-0.3246,-0.2716,-0.0992,0.163,0.3636,0.3746,-0.0608,-0.6134,0.4942,-0.9234,-0.9314,-0.9344,-0.9244,-0.9024,-1,0.7454,0.8182,0.8546,1,0.6,0.2,0.6728,0.6728,0.8182,0.6728,0.5272,0.6728,0.491,0.3454,0.2364,0.0182,0.5272,0.4182,0.1636,0.4182,0.6,0.1272,0.2728,0.3454,0.4182,0.5636,0.2,0.2728,0.091,0.0546,0.2364,-0.491,0.8648,1,0.8918,0.973,0.5406,0.3784,0.3514,0.3244,0.4594,0.4864,0.5406,0.3514,0.4054,0.1352,0.054,0.027,0.1352,0.1892,-0.1622,0.027,-0.027,0.2432,0.1082,0.2972,-0.1082,0.054,-0.2162,-0.2162,-0.081,-0.1082,-0.054,-0.4054,0.7102,0.7972,1,0.913,0.0724,0.0724,0.0434,0.0434,0.5362,0.6232,0.5942,0.1014,-0.3044,-0.0724,-0.0434,-0.1304,-0.5652,-0.2754,-0.2174,0.1014,-0.1594,-0.0144,-0.0434,-0.0144,-0.1014,-0.2464,-0.3044,-0.0724,-0.1884,-0.3624,-0.3624,-0.6812,-0.8962,1,-1,-1,-1,-1,0.2,-1,-1,0.1666,0.1388,0.4028,0.0694,0.1112,-0.1388,0.0556,0.2084,0.5278,0.9722,1,0.9306,0.7362,0.4028,0.5694,0.625,0.4584,0.3472,0.4444,0.2916,0.3056,0.4166,0.3056,0.4166,-0.0972,-0.2084,-0.2222,-0.1528,-0.1944,-0.1666,-0.25,-0.6388,'25'
-0.285,0.2206,0.2432,0.4106,0.0596,-0.1626,-0.359,-0.2786,-0.269,-0.4074,-0.2046,-0.1724,-0.0274,0.1112,0.256,0.607,0.7038,0.9388,0.8648,0.9194,0.884,1,0.8422,0.8132,0.7616,0.8518,0.678,0.6908,0.2624,0.1884,0.3076,0.3204,-0.4052,-0.0188,0.0046,0.1498,-0.0516,-0.1968,-0.3044,-0.295,-0.3044,-0.3748,-0.2834,-0.26,-0.1546,-0.0866,-0.0444,0.1592,0.1616,0.4754,0.6956,0.9086,0.8594,0.9578,0.9556,1,0.897,0.8782,0.8384,0.7612,0.3982,0.3068,0.4098,0.3068,-0.422,-0.074,0.0126,0.1354,-0.0922,-0.2424,-0.3128,-0.347,-0.3674,-0.4904,-0.372,-0.2696,-0.2354,-0.2196,-0.2446,-0.0466,0.0466,0.1832,0.5358,0.604,0.9886,0.9908,0.884,0.7998,1,0.8544,0.8566,0.5564,0.5722,0.2514,0.1808,0.3128,-0.4916,-0.121,-0.0194,0.1114,-0.1332,-0.3292,-0.3778,-0.4238,-0.5012,-0.523,-0.4188,-0.3608,-0.3244,-0.3244,-0.3536,-0.155,-0.0678,0.0436,0.414,0.4504,0.908,0.8766,0.908,0.879,1,0.816,0.8716,0.5812,0.557,0.259,0.172,0.1912,-0.4512,-0.0358,-0.0308,0.1206,-0.0924,-0.2256,-0.3538,-0.3488,-0.4538,-0.5206,-0.4462,-0.5128,-0.3846,-0.3384,-0.2924,-0.1744,-0.1846,0.0924,0.3154,0.5256,0.8948,1,0.8462,0.8794,0.9744,0.9488,0.823,0.723,0.5488,0.3846,0.2256,0.2436,-0.322,0.2348,0.157,0.2192,0.0358,-0.073,-0.3654,-0.4868,-0.552,-0.521,-0.4744,-0.4962,-0.4744,-0.5832,-0.3904,-0.4494,-0.2752,-0.0856,0.0388,0.4992,0.608,0.9876,1,0.7356,0.72,0.8506,0.8164,0.5614,0.3716,0.4402,0.2908,0.406,-0.252,0.5866,0.5078,0.4566,0.2796,-0.0158,-0.189,-0.6574,-0.7048,-0.878,-0.807,-0.559,-0.5196,-0.4724,-0.6536,-0.5276,-0.3308,-0.4292,-0.1378,0.3582,0.7678,0.6102,0.693,0.7322,1,0.9094,0.622,0.4842,0.2244,0.1378,0.1692,0.378,0,0.4348,0.3914,0.5218,0.1304,-0.2174,-0.8696,-0.174,-0.087,-0.4782,-0.087,0.0434,0.3044,0.2608,0.4782,0.826,1,0.6522,0.4782,0.7826,0.6086,0.7392,0.3044,0.4348,0.6086,0.6956,0.6522,0.6086,0.3914,0.5652,0.4348,0.2608,-0.098,0.3334,0.3334,0.5294,0.1764,-0.0196,-0.0588,-0.1372,-0.0588,-0.098,-0.0196,0.1372,0.098,0.2156,0.451,0.647,0.9216,1,0.6862,0.647,0.8432,0.8432,0.9216,0.7254,0.647,0.7254,0.5686,0.5686,0.255,0.098,0.3726,0.451,-0.4564,0.0098,-0.0486,-0.0292,-0.165,-0.1844,-0.398,-0.6116,-0.4758,-0.4564,-0.5922,-0.5728,-0.398,-0.4368,-0.2622,-0.3592,-0.3592,0.0486,0.1262,0.4564,0.5146,1,1,0.631,0.534,0.8058,0.7088,0.4564,0.3204,0.4368,0.2816,0.2234,-1,-1,-0.827,-0.3242,-0.3266,-0.3242,-0.3356,-0.3948,-0.4722,-0.4948,-0.2992,0.4858,0.959,0.802,0.6906,0.5746,0.4948,0.3378,0.1558,0.0126,-0.074,-0.2536,-0.5336,-0.6178,-0.8362,-0.909,-0.934,-0.934,-1,-1,-1,-1,-1,-1,-1,-0.97,-0.9024,-0.8852,-0.8694,-0.867,-0.8708,-0.882,-0.8896,-0.8146,-0.5192,0.5072,0.8756,0.8846,0.591,0.3508,0.0912,-0.2494,-0.6648,-0.8248,-0.8728,-0.9106,-0.914,-0.9522,-0.9676,-0.9728,-0.9772,-1,-1,-1,-1,-1,-1,-1,-0.9168,-0.8468,-0.7834,-0.4168,-0.41,-0.3134,-0.15,0.05,0.1832,-0.2578,-0.0668,0.0066,0.0576,0.051,0.0132,-0.0934,-0.1956,-0.4068,-0.7846,-0.7046,-0.78,-0.5834,-0.51,-0.46,-0.61,-0.7168,-1,-1,-1,-1,-1,-1,-1,0.0858,1,1,0.9142,-0.8858,-0.8858,-0.8572,-0.4,0.6858,1,1,-0.8286,-0.8,-1,-1,-0.9142,-0.5428,0.0286,-0.4,-0.7142,-0.8572,-0.7142,-0.7714,-0.8,-0.9142,-0.8286,-1,-1,-1,-1,-1,-0.0142,0.0736,0.1008,0.1522,0.1778,0.2174,0.2694,0.3136,0.3426,0.276,0.2704,0.3152,0.3404,0.3914,0.4454,0.509,0.6038,0.7462,0.8978,0.9924,-0.6934,0.047,-0.7986,-0.7668,-0.6642,-0.3594,0.0014,-0.125,0.2516,0.2962,-0.3898,-0.5768,-0.568,-0.461,-0.3364,0.3096,0.2472,-0.1448,-0.0824,-0.0244,-0.0734,-0.029,-0.029,-0.0556,0.1092,0.0734,-0.1626,0.1224,0.2516,0.3274,0.6036,0.5368,0.9376,1,0.9332,0.617,0.4788,0.893,0.7952,0.5502,0.2758,0.2808,-0.5666,-0.7142,-0.7734,-0.4876,-0.399,0.2118,0.0542,-0.0936,0.1478,0.1872,-0.0838,0.0788,0.1084,0.2118,0.404,0.404,0.266,0.5074,0.468,0.7044,0.7192,0.6108,0.9754,0.9408,0.9754,1,0.7636,0.995,0.9606,0.7586,0.0934,0.1244,-0.3822,-0.6978,-0.6888,-0.6444,-0.5022,0.1378,0.0712,-0.0712,0.0444,0.2844,0.0888,0.1466,0.3422,0.4578,0.4666,0.4134,0.3556,0.44,0.4444,0.8,0.7644,0.8134,0.8578,0.8044,0.9734,0.9022,0.6134,0.8888,1,0.7734,-0.9642,-1,1,-1,1,0,0.2,0.2334,-1,-0.184,0.056,0.28,0.328,0.28,0.104,0.28,0.136,0.472,0.664,0.392,0.36,0.92,1,0.632,0.872,0.936,0.296,0.264,0.136,0.568,0.488,0.376,0.344,0.728,0.568,0.36,0.328,0.376,0.376,0.184,-0.152,'26'
-0.1884,0.313,0.2696,0.4406,0.1246,0.0058,-0.2696,-0.2348,-0.171,-0.258,-0.1044,-0.1594,-0.0434,0.0754,0.2406,0.458,0.5884,0.9246,0.9392,0.9856,0.9566,1,0.9594,0.9798,0.8492,0.6812,0.6782,0.7334,0.542,0.3536,0.3942,0.3884,-0.3886,0.0542,-0.0058,0.1742,0.0242,-0.1118,-0.3102,-0.2502,-0.241,-0.2296,-0.1834,-0.2202,-0.1164,-0.1558,0.0496,-0.0126,0.1072,0.5272,0.6056,0.963,1,0.963,0.947,0.9562,0.8938,0.88,0.7694,0.7624,0.5894,0.5432,0.2642,0.3148,-0.3732,0.038,-0.0446,0.1164,-0.0772,-0.1686,-0.3058,-0.2948,-0.3428,-0.4036,-0.2818,-0.4036,-0.2666,-0.1664,-0.11,-0.0924,-0.0882,0.247,0.345,0.6236,0.8672,1,0.889,0.8868,0.95,0.95,0.876,0.8238,0.6626,0.5452,0.408,0.4972,-0.3454,0.0386,0.2062,0.3042,-0.116,-0.2062,-0.3506,-0.4742,-0.4614,-0.415,-0.433,-0.482,-0.3376,-0.2784,-0.3274,-0.25,-0.103,0.036,0.2784,0.6288,0.8042,0.9742,1,0.9846,0.9304,0.9278,0.9382,0.8762,0.6082,0.5438,0.451,0.3892,-0.4482,-0.1652,0.2634,0.21,-0.3474,-0.5378,-0.6106,-0.6582,-0.5602,-0.619,-0.6778,-0.6386,-0.5798,-0.5686,-0.4342,-0.3278,-0.3194,-0.0644,0.1736,0.4398,0.7366,1,0.9832,0.8516,0.8852,0.8516,0.8264,0.7254,0.5546,0.3614,0.2774,0.367,-0.5412,0.0504,0.2944,0.0982,-0.3422,-0.5278,-0.6632,-0.687,-0.5596,-0.6312,-0.7454,-0.6446,-0.5332,-0.504,-0.4218,-0.3342,-0.3422,-0.0716,0.114,0.443,0.7506,0.955,0.931,0.878,0.923,0.9442,1,0.9124,0.6896,0.5994,0.557,0.5172,-0.5854,-0.014,0.1986,0.0418,-0.5052,-0.5854,-0.8362,-0.777,-0.8048,-0.7492,-0.8292,-0.763,-0.7074,-0.6794,-0.683,-0.4982,-0.4808,-0.2962,-0.0836,0.2718,0.8188,1,0.8886,0.7074,0.899,0.9442,0.8606,0.7248,0.4844,0.4774,0.5506,0.669,-0.027,0.4594,0.4054,0.4594,0.027,-0.4594,-0.5676,-0.2972,-0.1892,-0.3514,-0.1352,0.081,0.081,0.027,0.3514,0.5676,0.8378,0.6756,0.8378,0.8378,0.7298,0.7838,1,0.946,0.6756,0.2432,0.3514,0.4594,0.4594,0.1892,0.2972,0.2432,-0.3024,0.2094,0.1628,0.3954,0.1162,-0.1162,-0.2558,-0.3488,-0.2558,-0.3024,-0.2094,-0.1162,-0.0698,0.1162,0.1628,0.3954,0.721,0.8604,0.7674,0.814,0.814,0.721,1,0.7674,0.628,0.3954,0.4418,0.4884,0.3488,0.3024,0.2094,0.3954,-0.3386,0.0552,-0.0236,0.1024,-0.1024,-0.1024,-0.2756,-0.2598,-0.244,-0.2756,-0.2126,-0.3228,-0.2126,-0.1338,-0.0708,-0.0078,0.0078,0.2914,0.3228,0.6378,0.811,1,0.8426,0.874,0.9212,0.9686,0.8898,0.874,0.6692,0.5906,0.4488,0.496,-0.5748,-0.5442,-0.5202,-0.5006,-0.5268,-0.5878,-0.6248,-0.6358,-0.6118,-0.555,-0.3304,0.579,0.9738,0.8844,0.7078,0.5812,0.5442,0.2758,0.1516,0.097,-0.1428,-0.4678,-0.7536,-0.7296,-0.7252,-0.7732,-0.8342,-0.9128,-0.9324,-0.9432,-0.9564,-1,-1,-0.9274,-0.9176,-0.8878,-0.8458,-0.8468,-0.8442,-0.8554,-0.8636,-0.8694,-0.8568,-0.7644,-0.3874,0.4756,0.8808,0.908,0.2916,-0.1544,-0.4316,-0.4266,-0.3976,-0.4922,-0.8502,-0.9268,-0.9284,-0.9406,-0.9368,-0.9534,-0.966,-0.9682,-0.9748,-0.9792,-1,-1,-0.9734,-0.98,-0.8368,-0.0068,0.2032,0.5332,0.4366,0.4332,0.16,0.1432,0.31,-0.266,-0.238,-0.064,-0.084,-0.116,-0.268,-0.394,-0.476,-0.265,-0.2468,-0.3888,-0.5442,-0.5276,-0.6976,-0.4208,-0.6942,-0.5642,-0.6408,-0.7042,-0.6308,-1,-1,-0.2286,1,1,0.6286,-0.7714,-0.9714,-1,-0.9428,-1,-0.5428,1,1,0.6572,-0.9142,-0.8,-0.8572,-0.8286,-0.8572,-0.9142,-1,-0.1714,0.0572,-0.6,-0.9142,-0.9714,-0.9142,-0.7428,-0.7428,-0.9428,-0.8286,-0.7428,-1,-1,0.1132,0.1462,0.1674,0.2082,0.25,0.288,0.321,0.3484,0.348,0.0844,0.354,0.3522,0.3878,0.418,0.4784,0.539,0.609,0.7128,0.8784,1,-0.6534,0.1764,-0.7462,-0.7372,-0.5414,-0.2494,0.0166,-0.1166,0.0396,0.0264,-0.6072,-0.8448,-0.5842,-0.6568,-0.528,-0.0496,0.0298,-0.307,-0.2146,-0.0694,-0.0562,-0.1882,-0.1782,0,0.2542,0.066,0.2376,0.2872,0.4588,0.7294,0.561,0.5808,0.7128,0.792,0.868,1,0.9306,0.9966,0.8812,0.5974,-0.0814,-0.109,-0.7634,-0.5976,-0.6374,-0.6252,-0.6344,0.1582,0.1828,-0.2688,-0.189,-0.2196,0.0292,-0.2044,-0.0906,0.02,0.1798,0.1552,-0.0262,0.1644,0.3118,0.49,0.5606,0.5268,0.7388,0.828,0.9416,0.9724,0.788,1,0.9386,0.45,-0.0136,0.0076,-0.4316,-0.8106,-0.7112,-0.5548,-0.4406,-0.0316,0.182,0.0106,-0.0978,0.0888,-0.0646,0.0676,0.0046,0.215,0.2782,0.2482,0.1488,0.2512,0.3774,0.561,0.4978,0.609,0.7414,0.7684,0.7834,0.7534,0.7774,0.976,1,0.633,-0.9222,-1,1,-1,1,0.6,-0.2,0.7,-1,0.0646,0.0484,0.0484,0.1774,-0.3388,-0.0968,-0.2904,-0.1936,-0.129,0.7096,0.4678,0.5322,1,0.3548,0.1452,0.3064,0.3548,-0.0968,0.0968,0.2096,0.129,-0.0806,-0.129,0.0806,-0.3388,-0.6612,-0.3548,-0.3548,-0.2096,-0.0646,0.2096,0.0484,'26'
-0.7746,-0.127,-0.083,0.4042,0.3938,0.4352,0.3316,0.083,0.0078,-0.1244,-0.2254,-0.083,-0.1788,-0.0284,-0.1166,0.0518,0.1554,0.4222,0.6476,0.785,0.8056,0.7564,0.6918,0.6606,0.7488,0.8368,1,0.956,0.8082,0.7668,0.6788,0.6192,-0.6718,-0.1286,0.0272,0.3956,0.301,0.5396,0.4074,0.1122,-0.0672,-0.098,-0.3224,-0.216,-0.2184,-0.1168,-0.0318,0.0484,0.1948,0.2586,0.5774,0.6174,0.8182,0.8348,0.7756,0.7616,0.7946,0.7662,1,0.9504,0.8866,0.8088,0.7024,0.601,-0.5902,-0.061,0.2122,0.4586,0.4464,0.5976,0.2804,0.1926,-0.0634,-0.0488,-0.144,-0.1902,-0.0586,-0.1318,0.0342,0.0268,0.1464,0.3414,0.4512,0.8196,0.878,0.8854,0.8756,0.8414,0.8244,0.9634,0.9902,1,0.917,0.8732,0.8098,0.7488,-0.6304,-0.1536,0.2134,0.3882,0.3758,0.4406,0.0212,-0.0112,-0.1012,-0.2234,-0.3858,-0.3434,-0.2684,-0.2334,-0.241,-0.0536,-0.0986,0.126,0.4956,0.618,0.9576,0.9926,0.8752,0.8152,0.8752,0.8228,1,0.8452,0.9126,0.8052,0.7828,0.7404,-0.668,-0.1756,0.325,0.502,0.3306,0.3832,0.0124,-0.0484,-0.2946,-0.4744,-0.5906,-0.4938,-0.4688,-0.3196,-0.3858,-0.2448,-0.206,-0.0428,0.2752,0.3168,0.823,0.8064,1,0.8534,0.8008,0.8616,0.928,0.776,0.7206,0.5436,0.4468,0.3942,-0.4982,0.1366,0.2878,0.476,0.5868,0.5756,-0.1992,-0.3542,-0.5314,-0.6678,-0.69,-0.3394,-0.4206,-0.4502,-0.4244,-0.3542,-0.31,-0.3616,-0.1918,0.214,0.3616,0.9742,1,0.9778,0.8598,0.9704,0.9558,0.8782,0.6236,0.4724,0.5646,0.428,-0.5174,0.418,0.2338,-0.4428,-0.2588,-0.1542,-0.3582,-0.2538,-0.393,-0.6268,-0.9204,-0.5722,-0.4228,-0.4676,-0.4478,-0.403,-0.383,-0.7712,-0.7612,-0.4328,0.005,0.5274,0.7314,0.8458,0.9004,1,0.8358,0.4676,-0.0846,-0.1094,-0.0696,-0.0746,-0.8462,-0.0256,0.1282,0.3334,0.3846,0.3334,0.1794,0.1282,-0.0256,-0.0256,-0.3846,0.0256,-0.1794,0.077,-0.0256,0.077,0.1794,0.3334,0.6924,0.5384,0.8462,0.6924,0.4872,0.3846,0.3846,0.641,0.7948,1,0.9488,0.8462,0.4358,0.5898,-0.9592,-0.0612,0.0204,0.4286,0.347,0.3062,0.3878,-0.0204,0.0204,-0.2654,0.0204,-0.0204,-0.102,-0.1428,0.1428,0.1428,0.0204,0.4286,0.7142,0.7552,0.6326,0.7142,0.8368,0.796,0.8776,1,1,0.6734,0.6734,0.9184,0.6734,0.5918,-0.6626,-0.2048,0.3254,0.494,0.253,0.3254,-0.0362,-0.0844,-0.3254,-0.5422,-0.5662,-0.6386,-0.6626,-0.3734,-0.3976,-0.3734,-0.3254,-0.1566,0.3012,0.4458,0.8796,0.8554,1,0.8554,0.759,0.8072,0.9518,0.8072,0.8072,0.518,0.4216,0.3254,-1,-1,-1,-1,-1,-1,-0.935,-0.9308,-0.9066,-0.8618,-0.3456,0.748,0.9066,0.9228,0.874,0.6992,0.5366,0.4472,0.3008,-0.1342,-0.3496,-0.626,-0.8212,-0.9146,-0.935,-0.9228,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.971,-0.9688,-0.9496,-0.8582,-0.2774,0.6482,0.6978,0.6908,0.5646,0.454,0.2106,-0.1262,-0.3914,-0.5312,-0.8234,-0.9008,-0.934,-0.9454,-0.954,-0.9602,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.9734,-0.76,-0.6534,-0.2934,-0.174,-0.302,-0.368,-0.536,-0.522,-0.4964,-0.4564,-0.6092,-0.5056,-0.691,-0.6238,-0.53,-0.6868,-0.7734,-0.72,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,-0.8,-0.0286,1,1,1,-0.8286,-0.9714,-1,-0.8286,-0.8858,-0.4572,-0.4286,0.7142,0.2,-0.8,-0.8,-0.9142,-0.9142,-0.5428,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.9252,0.9172,0.9114,0.9254,0.9182,0.9492,0.9418,0.9604,0.9774,1,0.991,-0.7066,0.2588,-0.1106,0.2524,0.549,0.9064,0.7688,0.125,0.1318,0.1512,0.0536,0.239,0.5024,0.8048,0.9804,0.922,0.6878,0.8536,0.3464,0.8732,0.9804,0.7464,0.3268,0.3952,0.2976,0.2488,0.317,0.3658,0.5414,0.5804,0.3756,1,0.317,0.4244,0.5414,0.6196,0.7952,0.444,0.161,-0.3952,0.1822,-0.1528,0.803,0.4778,0.803,0.7932,0.8818,0.872,0.872,0.8818,0.8916,0.8226,0.9704,0.6946,0.7142,0.4976,0.4286,0.537,0.3202,0.4778,0.33,0.3794,0.6946,0.7636,0.6256,0.468,0.4876,0.6354,0.5074,0.862,0.8522,0.0246,-0.3902,0.1216,0.4926,0.4626,0.0874,0.113,0.177,0.1728,0.2922,0.8294,0.8976,0.7142,0.774,0.9104,1,0.8508,0.7314,0.7356,0.7186,0.7526,0.5138,0.1642,0.015,-0.113,-0.16,-0.2154,-0.1002,-0.1812,-0.1344,-0.1044,-0.2452,-0.4626,-0.9872,1,-1,-1,-1,-0.6,-1,-1,-1,0.1466,0.28,0.2,0.36,0.2,0.3066,0.56,0.4,0.3066,0.3734,0.5866,0.9466,1,0.96,0.4266,0.4134,0.32,0.5734,0.6534,0.2534,0.12,0.2666,0.2266,0.2266,0.36,0.5734,0.5734,0.5466,0.4534,0.4934,0.4534,0.1866,'1'
-0.8284,-0.1372,-0.095,0.3774,0.4196,0.4722,0.438,0.1978,0.2164,-0.2032,-0.124,0.029,0.1636,-0.0238,0.0606,0.124,0.2348,0.314,0.525,0.7018,1,0.9024,0.7204,0.7282,0.8734,0.9182,0.897,0.8522,0.9076,0.8998,0.7546,0.5224,-0.6436,-0.0334,0.0462,0.5,0.4206,0.6462,0.5308,0.3,0.1666,0.0026,-0.1512,-0.0718,-0.2794,-0.0924,-0.223,-0.0846,-0.0026,0.177,0.4462,0.6026,0.7436,0.9154,0.7206,0.823,0.7974,0.9206,0.8846,1,0.8384,0.8512,0.6334,0.6538,-0.6208,-0.089,0.1604,0.4504,0.3994,0.5802,0.3436,0.196,-0.1604,-0.1044,-0.14,-0.1374,-0.0966,-0.1324,-0.1196,-0.1246,0.1552,0.1146,0.3282,0.7634,0.9186,0.743,0.7914,0.8652,0.9186,0.9694,0.972,1,0.9516,0.8194,0.743,0.6896,-0.6226,-0.1598,0.1648,0.3484,0.3106,0.3938,0.0692,0.0842,-0.1572,-0.2328,-0.107,-0.2478,-0.19,-0.1598,-0.0768,-0.0868,-0.0842,0.1598,0.21,0.4868,0.7534,0.8968,0.7584,0.8038,0.8138,0.8114,1,0.917,0.756,0.6704,0.7836,0.6302,-0.6728,-0.239,0.348,0.4858,0.3506,0.3584,0.0312,-0.1012,-0.213,-0.3558,-0.309,-0.3584,-0.3844,-0.2156,-0.3194,-0.2182,-0.0624,-0.0468,0.1194,0.3922,0.665,0.8962,1,0.8416,0.839,0.9454,0.9428,0.8364,0.7714,0.7506,0.7194,0.6416,-0.6728,-0.2592,0.4506,0.5246,0.3704,0.2438,-0.1882,-0.2778,-0.287,-0.605,-0.6172,-0.4876,-0.395,-0.4476,-0.216,-0.3272,-0.2994,-0.3118,-0.1204,-0.0124,0.568,0.8672,1,0.9074,0.9568,0.9414,0.8888,0.7932,0.6852,0.6266,0.463,0.4568,-0.378,0.3858,0.2796,0.1654,-0.067,-0.0826,-0.1536,-0.252,-0.3858,-0.6732,-0.6614,-0.4488,-0.4174,-0.4804,-0.2914,-0.2952,-0.2086,-0.2322,-0.3268,-0.193,0.1102,0.5748,1,0.9686,0.748,0.8464,0.9212,0.626,0.2678,-0.063,0.189,-0.0078,-0.8222,-0.4666,-0.4222,-0.2444,0.1112,0.1112,-0.4666,-0.2888,-0.5556,-0.4666,-0.4222,-0.5556,-0.5112,-0.2444,-0.3334,-0.2,-0.6888,0.0222,0.2888,0.6,0.6444,0.4666,0.4666,0.5556,0.6,0.4222,0.6888,0.9556,1,0.9112,0.4666,0.3334,-0.7308,0,0.0384,0.4616,0.4616,0.577,0.6154,0.1538,0.3076,-0.0384,-0.3076,-0.1154,0.3076,0.1924,0.1924,0.077,0.423,0.423,0.5,0.423,0.8846,0.8846,0.6538,0.7692,0.6538,0.923,0.8076,1,0.9616,0.8462,0.7692,0.3462,-0.679,-0.2592,0.3828,0.4814,0.4568,0.3828,-0.1358,-0.3334,-0.432,-0.4814,-0.5556,-0.1604,-0.284,-0.3086,-0.1112,-0.1852,-0.284,0.0124,0.0124,0.1852,0.753,0.9012,0.9012,0.926,1,0.9012,0.9754,0.8272,0.8518,0.753,0.753,0.8518,-1,-1,-1,-1,-1,-1,-1,-1,-0.919,-0.9276,-0.9062,0.565,0.8848,0.9402,0.872,0.8678,0.6632,0.6204,0.5096,0.1216,-0.1514,-0.3092,-0.4414,-0.6588,-0.8336,-0.9148,-0.9402,-0.9062,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9658,-0.9696,-0.8414,0.3526,0.6456,0.4622,0.5872,0.5934,0.4334,0.34,-0.0882,-0.4076,-0.6758,-0.7816,-0.8656,-0.8834,-0.9122,-0.9354,-0.9494,-0.9494,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9388,-0.98,-0.9334,-0.206,-0.238,-0.572,-0.422,-0.458,-0.424,-0.2474,-0.411,-0.54,-0.671,-0.782,-0.82,-0.5534,-0.4668,-0.6434,-0.8034,-0.8568,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4286,-0.7428,1,1,-0.6,-0.8286,-0.8858,-1,-0.9428,-0.9142,-0.7142,-0.6858,-0.3142,-0.0858,-0.6572,-0.8,-0.8858,-0.8572,-0.9714,-0.0572,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.9518,0.9198,0.9056,0.8998,0.947,0.9636,0.9524,0.9454,0.9806,1,1,-0.7066,0.2352,-0.9642,-0.2056,0.047,0.5926,1,1,-0.126,-0.1852,-0.0074,0.363,0.2444,0.2888,0.7778,1,0.4814,0.5556,0.3926,0.6444,0.7038,0.3038,0.1556,-0.0962,0.037,0.2888,0.2592,0.1852,0.0666,-0.037,0.0074,-0.2592,-0.0518,-0.0222,0.4074,0.0222,-0.0962,0.1556,-0.4518,-0.5704,0.1334,-0.1834,0.5,0.5666,0.5834,0.6834,0.7666,1,0.75,0.55,0.95,0.7,0.95,0.5334,0.3834,0.35,0.5834,0.5,0.5666,0.3834,0.0166,0.2,0.15,0.3834,0.6166,0.3166,0.8334,0.7666,-0.6166,0.4166,0.1334,-0.75,0.169,0.2536,0.4648,0.6902,0.3944,0.7042,0.8592,1,0.6902,0.7888,0.7606,0.7464,0.7606,0.7606,0.6338,0.3662,0.5774,0.3944,0.183,0.2958,0.1126,0.5634,0.0846,0.5916,0.169,0.4648,0.5634,0.7042,0.507,0.5212,0.5352,-0.155,-0.9968,1,-1,-1,-1,-1,0.2,-1,-1,0.0994,0.1656,0.0464,-0.1524,-0.0728,0.139,0.1656,0.1788,-0.0994,-0.0198,0.5364,0.6954,0.8808,1,0.298,0.245,0.086,0.4304,0.2716,0.1126,0.1524,0.1788,0.2716,0.3112,0.3112,0.1126,0.1524,0.0198,0.4304,0.3642,0.192,-0.086,'1'
-0.5994,0.0846,0.1122,-0.0742,-0.0536,-0.5268,-0.4716,-0.741,-0.6338,-0.8756,-0.7928,-0.855,-0.7512,-0.703,-0.582,-0.582,-0.4404,-0.2988,-0.0742,0.2332,0.468,0.7996,0.9724,0.9102,1,0.8514,0.9344,0.8308,0.8792,0.8514,0.8446,0.8238,-0.4494,0.2006,0.1918,0.2152,0.1684,-0.2856,-0.3382,-0.4582,-0.5256,-0.4788,-0.5636,-0.4642,-0.5198,-0.6106,-0.6018,-0.4788,-0.4904,-0.2328,-0.303,0.101,0.1566,0.5988,0.5842,1,0.9472,0.8594,0.7658,0.9356,0.8916,0.9854,0.9122,0.8566,-0.4808,0.1622,0.115,0.3068,0.1888,-0.3688,-0.528,-0.4868,-0.6224,-0.6076,-0.7168,-0.6254,-0.587,-0.5104,-0.6814,-0.6548,-0.3628,-0.2832,-0.0884,-0.053,0.295,0.357,0.7964,0.8348,1,0.9824,0.8526,0.829,0.9764,0.9086,0.9116,0.8554,-0.5046,0.0836,0.099,0.356,0.1362,-0.6068,-0.6904,-0.6284,-0.774,-0.7554,-0.6904,-0.7462,-0.6006,-0.6656,-0.7028,-0.4366,-0.3436,-0.353,-0.291,-0.0248,0.0744,0.4644,0.7028,0.9814,0.9226,0.9474,0.8606,0.9598,0.9876,1,0.9102,0.904,-0.5948,-0.1118,0.316,0.4814,0.0794,-0.491,-0.6758,-0.6726,-0.7148,-0.812,-0.7764,-0.6338,-0.637,-0.6208,-0.6662,-0.5236,-0.4814,-0.5332,-0.2772,-0.1572,0.0696,0.4814,0.6824,0.9708,1,0.987,0.8834,0.9092,0.9352,0.9254,0.8606,0.8282,-0.6408,-0.1918,0.4646,0.5854,0.0086,-0.4474,-0.7272,-0.6546,-0.5682,-0.8688,-0.8964,-0.665,-0.6926,-0.6408,-0.5614,-0.6096,-0.4508,-0.5544,-0.5854,-0.1918,0.0052,0.1952,0.6062,0.7754,1,0.9136,0.848,0.6822,0.7306,0.5716,0.5164,0.513,-0.211,0.6328,0.4794,0.5946,0.2494,0.1946,-0.4028,-0.5124,-0.4466,-0.7972,-0.6602,-0.5616,-0.3754,-0.2822,-0.2274,-0.3206,-0.1836,-0.1232,-0.5014,-0.315,-0.2768,0.2986,0.874,0.9672,1,0.885,0.7644,0.7096,0.3918,0.1562,0.337,0.178,-0.32,0.08,0.12,-0.24,-0.08,-0.44,-0.36,-0.56,-0.56,-0.88,-0.68,-0.72,-0.56,-0.48,-0.56,-0.4,-0.16,-0.04,0.04,0.6,0.68,0.76,0.8,0.88,1,0.84,0.64,0.44,0.52,0.52,0.68,0.72,-0.28,0,0.04,-0.08,-0.04,-0.52,-0.44,-0.6,-0.48,-0.88,-0.64,-0.76,-0.56,-0.72,-0.44,-0.64,-0.24,-0.32,0.12,0.12,0.64,0.72,0.84,0.84,0.88,1,0.68,0.76,0.44,0.68,0.4,0.72,-0.3584,0.2076,0.1698,0.2642,0.1886,-0.3962,-0.3584,-0.283,-0.415,-0.3774,-0.4528,-0.2642,-0.3208,-0.5472,-0.6792,-0.5284,-0.434,-0.2264,-0.151,0.0944,0.2642,0.4906,0.6792,0.9434,0.7924,0.8114,0.6226,0.8302,0.7924,1,0.7736,0.868,-1,-1,-1,-1,-1,-1,-1,-1,-0.9596,-0.9702,-0.5106,0.449,0.0298,-0.0426,-0.1532,-0.251,-0.2638,-0.366,-0.2744,-0.3086,-0.4808,-0.683,-0.7468,-0.8086,-0.8702,-0.934,-0.9618,-0.9596,-0.9596,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9642,-0.971,-0.614,0.7494,0.3998,0.1476,-0.0584,-0.0948,-0.1834,-0.2658,-0.35,-0.515,-0.6838,-0.8512,-0.8736,-0.8802,-0.9144,-0.9316,-0.9458,-0.945,-0.9576,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8734,-0.9934,-0.6868,-0.169,-0.1246,-0.0446,-0.1512,-0.089,-0.1268,-0.22,-0.396,-0.44,-0.648,-0.808,-0.77,-0.66,-0.5134,-0.4334,-0.62,-0.7134,-0.84,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6572,1,1,1,-0.6572,-0.8572,-0.8858,-0.9142,-0.9428,-1,-0.8858,-0.6,-0.0286,-0.5142,-0.9142,-0.8572,-0.7714,-0.8286,-0.7714,-0.9142,-0.3714,-1,-1,-1,-1,-0.3274,-0.2868,-0.2818,-0.259,-0.1984,-0.1366,-0.0716,-0.0646,-0.0262,-0.0484,1,1,1,1,1,1,1,1,1,1,-0.72,0.0942,-0.6452,0.2792,0.8452,0.919,0.7166,1,-0.1428,-0.2,-0.2572,-0.2,-0.0858,-0.1428,0.3142,0.6,0.5428,0.6,0.7714,0.6,0.8286,1,0.9428,0.7714,0.7142,0.5428,0.6572,0.5428,0.0858,0.6572,0.5428,0.5428,0.5428,0.5428,0.3142,0.2,0.3142,0.2572,0.0286,-0.8286,0.0666,0.4222,0.4,-0.0444,0.0444,0.0888,0.2,0.5334,0.6888,0.9334,0.9556,0.8222,0.9112,0.8888,1,0.9112,1,0.6,0.5556,0.5778,0.3778,0.5334,0.4888,0.4888,0.4666,0.4888,0.2444,0.2666,0.2,0.4,0.1556,-0.1778,0.1382,0.4634,0.2196,-0.0732,-0.1382,-0.1056,-0.0894,0.1544,0.317,0.7724,0.8374,0.9024,1,0.6748,0.691,0.8048,0.7074,0.626,0.4146,-0.057,-0.0894,-0.1382,0.1544,-0.1056,-0.3334,-0.3008,-0.1544,-0.0894,-0.1708,-0.1544,-0.2682,-0.3984,0.678,-1,-1,1,-1,-1,-0.6,-0.8334,-1,-0.0088,0.0974,-0.0266,0.2566,0.0796,0.1504,0.1328,0.239,0.0974,0.947,1,0.6992,0.8762,0.8762,0.5398,0.3982,0.4514,0.5398,0.2212,0.0442,-0.062,-0.0266,0.5222,0.9646,0.646,0.3628,0.5752,0.3452,0.1682,0.4514,0.2036,-0.292,'2'
-0.4414,0.2866,0.2744,0.3132,0.272,-0.2238,-0.2744,-0.3808,-0.4316,-0.434,-0.4632,-0.3398,-0.439,-0.4558,-0.4824,-0.4124,-0.4148,-0.3664,-0.3664,-0.0326,0.0762,0.5114,0.5406,0.925,0.9322,0.8404,0.8138,0.9686,1,1,0.9806,0.884,-0.4806,0.1654,0.1112,0.2946,0.1498,-0.6564,-0.5918,-0.372,-0.6072,-0.726,-0.7132,-0.5994,-0.615,-0.5736,-0.4108,-0.4342,-0.5634,-0.5866,-0.2946,-0.248,0.0802,0.2428,0.5012,0.7442,1,0.9302,0.7856,0.9018,0.9974,0.969,0.9948,0.9122,-0.5508,-0.0298,0.0522,0.2506,-0.0248,-0.526,-0.7692,-0.8014,-0.68,-0.7742,-0.7518,-0.675,-0.6254,-0.5756,-0.5286,-0.4764,-0.4516,-0.4764,-0.3896,-0.2234,0.0174,0.1786,0.5062,0.7344,0.928,0.938,0.8338,0.9602,1,1,0.9106,0.9032,-0.6592,-0.1342,0.267,0.4268,-0.0408,-0.4902,-0.804,-0.7466,-0.8552,-0.8612,-0.7918,-0.7134,-0.626,-0.5806,-0.5988,-0.623,-0.5114,-0.457,-0.4752,-0.4208,-0.2006,0.0256,0.2368,0.7556,0.828,1,0.8462,0.831,0.9186,0.8764,0.6138,0.5686,-0.636,0.2206,0.5632,0.4562,-0.1178,-0.5374,-0.713,-0.6232,-0.5846,-0.9528,-0.696,-0.5546,-0.5074,-0.3404,-0.4346,-0.5632,-0.4176,-0.4346,-0.6402,-0.5204,-0.2206,-0.122,0.1564,0.7602,1,0.9272,0.7902,0.8586,0.8244,0.1948,0.1606,0.0836,-0.6382,-0.0024,-0.374,0.0366,-0.2224,-0.6724,-0.8876,-0.6284,-0.511,-0.775,-0.6186,-0.4524,-0.2224,-0.3106,-0.5648,-0.5012,-0.3056,-0.4278,-0.7164,-0.4328,-0.0416,0.1834,0.6528,0.7408,1,0.863,0.8728,0.8436,0.5746,0.0562,-0.0024,-0.0758,-0.426,-0.7354,-0.6054,-0.26,-0.1704,-0.2332,-0.0134,0.009,-0.0808,-0.2736,-0.157,-0.0044,0.1076,0.1346,0.0672,0.1256,0.2466,-0.0044,0.296,0.4798,0.6996,0.8252,0.6772,0.583,0.7892,1,0.9956,0.704,0.686,0.4754,0.5336,0.5874,-0.8776,0.0204,0.0204,0.0204,-0.0204,-0.3878,-0.3878,-0.6326,-0.6734,-0.6326,-0.5918,-0.4286,-0.3878,-0.796,-0.6326,-0.6326,-0.6734,-0.4286,-0.3062,-0.1836,-0.0204,0.3062,0.4694,0.6326,0.8368,0.5918,0.7552,0.7552,1,0.8368,0.8368,0.7552,-0.2122,0.3334,0.3334,0.3334,0.303,-0.0304,0,-0.1212,-0.1516,-0.1516,-0.1516,-0.0606,-0.0304,-0.1818,-0.1818,-0.1516,-0.0606,0,0.0304,0.2424,0.303,0.5152,0.6364,0.7878,0.909,0.6666,0.7576,0.8788,1,0.7576,0.909,0.697,-0.628,-0.2558,0.186,0.3488,-0.0232,-0.4652,-0.6046,-0.6512,-0.5582,-0.7674,-0.7442,-0.5582,-0.4884,-0.6512,-0.4652,-0.5814,-0.2326,-0.2326,-0.3024,-0.3256,-0.279,0.3256,0.4186,0.7442,0.721,1,0.8372,0.8372,0.814,0.8372,0.8604,0.8372,-1,-1,-1,-1,-1,-0.9162,-0.9302,-0.7582,1,1,1,0.879,0.6838,0.4976,0.4838,0.2652,0.014,-0.2186,-0.3442,-0.6232,-0.8698,-0.907,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9512,-0.9568,-0.8338,1,1,1,0.4374,0.0466,0.0642,0.2048,0.289,-0.423,-0.6866,-0.7696,-0.8582,-0.9192,-0.8804,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.9534,-0.7468,-0.43,-0.29,-0.29,-0.1874,-0.1674,-0.082,-0.0164,-0.0334,-0.3334,-0.7334,-0.83,-0.8,-0.7334,-0.6568,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,-0.0858,1,1,0.7142,-0.5142,-0.7428,-0.8572,-0.9428,-1,-0.3142,-0.1142,-0.6858,-0.7142,-0.6286,-0.6286,-0.2858,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.258,0.1958,0.1692,0.1354,0.116,0.103,0.077,-2e-04,-0.0482,0.1048,1,1,1,1,1,1,1,1,1,0.9594,-0.6934,0.3882,0.9546,0.9436,0.5028,0.3212,0.1684,1,0.075,0.329,0.1206,0.0814,-0.14,-0.1206,0.1726,0.2768,0.5244,0.6742,0.8828,0.8698,1,0.8566,0.7264,0.772,0.772,0.6612,0.4136,0.2312,0.153,0.2182,0.2118,-0.0098,-0.1466,-0.2574,-0.101,-0.0684,-0.1074,-0.1662,-0.0162,-0.2768,0.1454,0.2618,0.2886,-0.0918,-0.1006,-0.1768,-0.029,-0.0918,0.0426,0.226,0.7226,0.915,1,0.8882,0.8792,0.83,0.9016,0.8882,0.5034,0.2126,0.1856,0.1498,0.1634,-0.0426,-0.3422,-0.3736,-0.557,-0.4004,-0.3602,-0.3378,-0.3692,-0.4944,0.028,0.2196,0.1822,-0.1122,-0.1822,-0.2616,-0.1822,-0.243,-0.229,-0.1308,0.2664,0.7336,0.8552,0.813,1,0.8178,0.8552,0.7056,0.4252,0.0046,-0.0654,0.1448,0.0794,-0.0046,-0.3552,-0.3272,-0.57,-0.5374,-0.3318,-0.3272,-0.4672,-0.6308,1,-1,-1,1,0,-1,-1,-0.3,-1,-0.147,0.0294,0.0882,0.353,0.4412,-0.0294,0.4706,0.5,0.4118,0.7058,0.6764,0.4706,0.6764,0.5294,0.647,0.4412,0.7942,1,0.4118,0.2352,0.5,0.2058,0.3824,0.6176,0.5294,0.4706,0.4118,0.353,0.5882,0.7352,0.147,-0.1176,'2'
-0.7744,0.1682,0.2832,0.0974,0.261,-0.1902,-0.1328,-0.3894,-0.5088,-0.6416,-0.4116,-0.5398,-0.3142,-0.323,-0.1062,0.0088,0.239,0.4912,0.6992,0.73,0.5708,0.5354,0.4956,0.6416,0.7036,0.9868,1,0.792,0.6992,0.5,0.4824,0.4424,-0.6416,0.0716,0.0716,0.2832,0.2688,-0.2796,-0.294,-0.6094,-0.6164,-0.6236,-0.6236,-0.5198,-0.4982,-0.4696,-0.4588,-0.3082,-0.2366,0.0394,0.1218,0.3584,0.4838,0.828,0.9176,0.8422,0.8136,0.9498,1,0.9714,0.6918,0.62,0.6272,0.6272,-0.5806,0.0072,-0.0394,0.2474,0.1218,-0.4802,-0.6488,-0.6416,-0.7096,-0.6738,-0.724,-0.6524,-0.5628,-0.5664,-0.4802,-0.4444,-0.4266,-0.405,-0.043,0.0108,0.276,0.5376,0.8782,0.9176,0.8638,0.8782,1,0.8854,0.7526,0.6344,0.6846,0.6524,-0.5926,-0.0666,0.0038,0.2296,0.0038,-0.5666,-0.7778,-0.7666,-0.6148,-0.6778,-0.7444,-0.526,-0.5074,-0.5814,-0.6408,-0.5778,-0.5444,-0.3592,-0.3334,0.0556,0.1592,0.474,0.8334,1,0.9038,0.9222,0.9518,0.9592,0.7926,0.7112,0.674,0.6518,-0.6616,-0.177,0.1346,0.3,-0.05,-0.573,-0.6462,-0.6462,-0.7846,-0.9154,-0.923,-0.727,-0.6884,-0.6962,-0.5462,-0.65,-0.627,-0.5192,-0.2308,-0.1962,0.15,0.4384,0.7116,0.8962,1,0.9654,0.9846,0.777,0.6308,0.5884,0.5654,0.6154,-0.6056,-0.1044,0.3968,0.573,0.058,-0.3272,-0.4246,-0.3922,-0.7402,-0.8422,-0.7076,-0.5778,-0.5638,-0.5452,-0.253,-0.369,-0.7494,-0.6752,-0.4802,-0.253,-0.072,0.3596,0.5638,1,0.9676,0.9536,0.8516,0.5684,0.3178,0.2854,0.2296,0.1694,-0.4654,0.3598,0.703,1,0.2476,-0.6106,-0.6964,-0.6568,-0.5776,-0.8416,-0.8152,-0.7426,-0.373,-0.2608,-0.0232,-0.1948,-0.4258,-0.4984,-0.5578,-0.4852,-0.3202,0.142,0.868,0.9868,0.7558,0.9934,0.8746,0.3598,0.1156,0.0034,0.043,0.0034,-0.1176,0.4706,0.7058,0.647,0.1764,-0.2352,0.1764,0.2352,-0.0588,0.0588,0.0588,0.0588,0.1764,-0.1764,-0.2942,0.2352,0.9412,1,0.2942,0.1764,0.4118,0.5882,0.647,0.5882,0.5882,0.5294,0.9412,0.8824,0.7058,0.5294,0.4118,0.647,-0.6522,0.4348,0.5218,0.3044,0.4782,0.1304,0.1304,-0.0434,-0.3044,-0.4348,-0.2174,-0.174,-0.1304,0.087,0.2174,0.4782,0.4782,0.9566,0.9566,0.6522,0.6956,0.6086,0.7392,0.6086,0.8696,1,1,0.9566,0.6086,0.6522,0.4782,0.5218,-0.6202,-0.2152,0.2658,0.4684,-0.0126,-0.367,-0.4936,-0.4178,-0.5444,-0.6456,-0.4936,-0.443,-0.5444,-0.595,-0.367,-0.4684,-0.6202,-0.4936,-0.2406,-0.1646,0.0126,0.367,0.519,1,0.9746,0.9746,0.7974,0.5696,0.2912,0.367,0.4178,0.2912,-0.9034,-0.8874,-0.9088,-0.8928,-0.8874,-0.9088,-0.8982,-0.8982,-0.866,-0.8606,-0.8928,0.4478,0.9518,0.866,0.7802,0.6086,0.5174,0.319,0.3834,0.185,0.0992,-0.201,-0.512,-0.7426,-0.866,-0.9034,-0.9196,-1,-1,-1,-1,-1,-1,-0.5608,0.1696,0.7178,1,0.7086,0.7978,0.8776,0.7032,1,1,0.7072,-0.2376,0.4384,0.8762,0.7752,0.5582,0.3972,0.348,0.002,-0.4544,-0.5862,-0.7152,-0.8138,-0.879,-0.9136,-0.9294,-0.9188,-1,-1,-1,-1,-1,-1,0.84,1,1,1,1,1,1,1,1,1,1,-0.063,-0.2144,-0.0172,0.025,-0.0426,-0.0958,-0.0684,-0.3684,-0.5984,-0.7934,-0.8958,-0.6208,-0.6542,-0.7542,-0.8142,-0.9076,-1,-1,-1,-1,-1,-1,1,1,-0.7428,-0.7428,-0.9714,-0.9142,-0.9142,-0.8286,-0.8286,-0.2572,1,1,1,-0.5428,-0.8572,-0.9428,-1,-0.6858,-0.5142,-0.4572,-0.6,-0.4858,-0.8572,-0.8572,-0.9714,-0.9142,-0.9142,-1,-1,-1,-1,-1,-1,0.644,0.6244,0.6172,0.5996,0.5868,0.5514,0.521,0.4148,0.2552,0.1086,0.6076,0.6218,0.6296,0.6704,0.7312,0.8088,0.9,0.9752,1,1,-0.72,-0.1176,0.6912,-0.3878,-0.3346,0.1058,0.4424,0.2334,-0.6944,-0.8148,-0.4862,-0.4288,-0.4002,-0.4442,-0.3944,-0.1996,-0.211,-0.1978,-0.108,-0.0774,0.0564,0.2608,-0.0162,0.0792,0.1156,0.2054,0.2626,0.4192,0.5034,0.576,0.6944,0.702,0.8396,0.9828,0.9886,0.9426,0.9198,1,0.9848,0.6658,-0.7922,-0.8748,-0.7114,-0.5828,-0.4956,-0.4386,-0.3704,-0.356,-0.2118,-0.2846,-0.2228,-0.1246,-0.1054,-0.0356,0.042,0.0992,0.1468,0.1848,0.3894,0.418,0.5274,0.513,0.7368,0.7764,0.7828,1,0.9666,0.9904,0.9176,0.9968,0.9206,0.7414,-0.7896,-0.794,-0.6406,-0.5326,-0.4506,-0.3688,-0.3572,-0.3514,-0.0344,-0.1716,-0.1964,-0.125,-0.0972,0.0826,0.0052,0.03,0.1352,0.1292,0.3966,0.6436,0.569,0.5354,0.7458,0.68,0.7356,0.9358,0.9182,0.9342,0.9738,1,0.946,0.7648,-0.3986,-1,1,-1,-1,-1,-1,1,-1,0.1926,0.2478,0.0826,-0.0642,-0.1192,0.0276,0.0092,0.4312,-0.0276,0.0092,0.4312,0.7798,0.9816,1,-0.0458,-0.0458,0.0826,-0.1744,-0.2294,-0.1192,0.1192,0.3028,0.4496,-0.156,-0.0092,0.101,-0.101,0.0826,-0.1926,-0.1744,-0.266,-0.8348,'3'
-0.8414,0.2202,0.37,0.1674,0.1938,-0.1234,-0.1234,-0.2732,-0.6256,-0.7488,-0.3832,-0.4274,-0.2114,-0.119,-0.3656,-0.1938,0.0132,0.4406,0.5154,0.7622,0.8018,0.7092,0.6784,0.511,0.608,0.7622,1,0.881,0.4978,0.4008,0.4052,0.2378,-0.6766,0.16,0.19,0.2466,0.2634,-0.1834,-0.15,-0.6434,-0.6834,-0.57,-0.4834,-0.55,-0.45,-0.4834,-0.4066,-0.49,-0.24,-0.24,-0.0066,0.1266,0.5134,0.7766,0.9466,0.9434,0.9834,0.85,0.9966,1,0.88,0.71,0.5366,0.4866,-0.6012,0.0664,0.048,0.252,0.1778,-0.4158,-0.5302,-0.5982,-0.66,-0.697,-0.7898,-0.5426,-0.6414,-0.5426,-0.6322,-0.5208,-0.4806,-0.2674,-0.286,-0.0324,0.2242,0.4436,0.6786,0.9104,0.9474,1,0.8392,0.9938,0.762,0.6754,0.5054,0.592,-0.618,-0.0926,-0.0538,0.2328,0.0656,-0.6656,-0.7104,-0.6,-0.803,-0.8448,-0.585,-0.6238,-0.4926,-0.5582,-0.4866,-0.5134,-0.4,-0.4508,-0.2896,-0.1014,0.1522,0.4358,0.7014,0.9014,0.994,1,0.9702,0.9224,0.8208,0.7074,0.6298,0.5762,-0.7344,-0.2928,0.0624,0.2192,-0.1392,-0.5264,-0.7728,-0.7408,-0.7184,-0.8176,-0.7152,-0.5872,-0.5744,-0.712,-0.6192,-0.5936,-0.6352,-0.5456,-0.28,-0.2288,0.0592,0.344,0.6224,0.9264,0.9936,1,0.9616,0.7888,0.6896,0.616,0.4816,0.5008,-0.77,-0.3182,0.3634,0.4826,-0.195,-0.4866,-0.5976,-0.6878,-0.8028,-0.9096,-0.7412,-0.5894,-0.6714,-0.7536,-0.5894,-0.6796,-0.7412,-0.7208,-0.6344,-0.6386,-0.3018,0.3264,0.3594,0.6304,0.963,1,0.5606,0.3224,0.347,0.0554,-0.0062,0.0596,-0.5462,0.3432,0.391,0.2776,0.0208,-0.2478,-0.397,-0.3014,-0.5044,-0.8448,-0.809,-0.5642,-0.4626,-0.2716,-0.2238,-0.397,-0.397,-0.6358,-0.5522,-0.3792,-0.0268,0.415,0.7314,0.8568,1,0.988,0.815,0.0268,-0.015,-0.218,-0.1642,-0.4268,-0.3658,0.1708,0.317,0.122,-0.0732,-0.0244,0.122,0.122,-0.122,-0.0732,-0.122,-0.1708,0.2196,0.2196,0.2682,0.1708,0.2682,0.5122,0.8048,0.8536,0.8536,0.7074,0.0732,0.122,0.122,0.756,1,0.9512,0.3658,-0.0244,0.4146,0.3658,-0.5556,0.5,0.6112,0.4444,0.5556,0.3334,0.0556,-0.0556,-0.6666,-0.9444,-0.4444,-0.3334,-0.2778,0.1666,0,0.3888,0.4444,0.7778,1,0.8334,0.8334,0.7222,0.5,0.5556,0.7222,0.9444,0.7778,0.8334,0.5556,0.2778,0.2778,-0.1112,-0.6818,-0.2954,0.2046,0.3182,-0.0228,-0.3864,-0.909,-0.8636,-0.6818,-0.659,-0.5682,-0.3636,-0.4318,-0.7728,-0.3182,-0.341,-0.591,-0.4546,-0.2046,-0.2728,-0.091,0.4318,0.4318,0.8636,0.8864,1,0.7728,0.7272,0.6364,0.591,0.3864,0.25,-0.8718,-0.9008,-0.9008,-0.8718,-0.895,-0.895,-0.8892,-0.8484,-0.895,-0.8834,-0.8892,0.382,0.7026,0.79,0.9476,0.7842,0.7142,0.417,0.312,0.1486,-0.1312,-0.347,-0.4868,-0.796,-0.8368,-0.8776,-0.9068,-1,-1,-1,-1,-1,-1,0.7798,1,1,1,1,1,1,1,1,1,0.8996,-0.2554,0.0792,0.3916,0.5348,0.5472,0.9008,0.5596,0.0984,-0.5154,-0.6806,-0.7838,-0.8114,-0.8678,-0.8252,-0.872,-0.9284,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,1,-0.1776,-0.21,-0.2446,-0.2512,-0.0956,-0.0046,-0.0024,-0.1912,-0.4068,-0.7046,-0.6846,-0.56,-0.4034,-0.2368,-0.6968,-0.91,-1,-1,-1,-1,-1,-1,-0.3428,-0.6858,-0.8858,-0.8286,-0.9142,-0.9714,-0.9428,-0.6572,-0.6858,-0.4,1,1,0.9714,-0.5714,-0.7142,-0.9142,-0.9428,-0.9142,-0.1428,-0.1714,-0.5142,-0.9142,-0.7142,-0.8286,-0.8572,-0.5142,-0.5714,-1,-1,-1,-1,-1,-1,0.5902,0.5846,0.5926,0.5894,0.588,0.5524,0.5102,0.4406,0.3152,0.1846,0.5394,0.5778,0.6266,0.6496,0.7356,0.7446,0.8812,0.9996,1,1,-0.7334,0.0236,0.7096,0.0846,-0.4054,-0.2416,0.0502,0.3584,-0.7366,-0.8002,-0.6894,-0.5622,-0.46,-0.4986,-0.4186,-0.3388,-0.2796,-0.3758,-0.216,-0.1702,-0.139,-0.0474,-0.0458,0.0148,0.0326,0.0414,0.136,0.1894,0.3372,0.4438,0.5962,0.7174,0.6938,0.8372,0.966,0.9882,1,0.932,0.8136,0.5532,-0.7678,-0.7932,-0.632,-0.6116,-0.4912,-0.3604,-0.3502,-0.363,-0.2424,-0.2132,-0.2412,-0.1764,-0.0812,-0.0482,0.0482,0.014,0.1104,0.1904,0.2906,0.467,0.5038,0.5622,0.646,0.6866,0.712,0.7792,0.9556,1,0.9822,0.8934,0.8884,0.7006,-0.719,-0.7396,-0.668,-0.49,-0.4198,-0.4016,-0.352,-0.3228,-0.043,-0.0418,-0.1096,-0.0842,-0.1374,0.083,0.1048,0.1132,0.2502,0.2646,0.3786,0.4742,0.616,0.599,0.6306,0.7348,0.7928,0.862,0.9466,1,0.8376,0.9964,0.874,0.7298,-0.0722,-1,1,-1,-1,-1,-1,1,-1,-0.2904,-0.0322,-0.0806,0.0646,0.1612,-0.1774,0.1936,-0.0162,0.0322,-0.0322,0.5322,0.629,1,1,0.0646,0.2742,0.4032,0.4354,0.0322,0.0806,0.0162,0.0322,0.0806,0.3226,0.2904,0.0484,0.113,0.2258,0.258,0.113,0.129,-0.3388,'3'
-0.5668,0.1716,0.1774,0.096,0.0698,-0.4622,-0.5116,-0.5582,-0.5698,-0.6308,-0.657,-0.4156,-0.4476,-0.5146,-0.497,-0.3198,-0.314,-0.1454,-0.1192,0.3662,0.4274,0.7966,0.8198,0.7732,0.7966,0.9884,1,0.9652,0.9476,0.747,0.811,0.782,-0.5662,0.0532,0.0384,0.078,0.021,-0.5836,-0.6878,-0.5092,-0.596,-0.5638,-0.6382,-0.5142,-0.5812,-0.5192,-0.6084,-0.435,-0.5416,-0.3136,-0.2738,0.0334,0.2118,0.5068,0.6282,0.9504,0.829,0.8588,0.7522,1,0.8562,0.8712,0.7372,0.839,-0.5678,0.0524,0.0094,0.1652,0.0658,-0.6348,-0.7316,-0.4792,-0.6162,-0.6912,-0.6912,-0.5464,-0.5544,-0.5168,-0.6322,-0.5222,-0.5222,-0.455,-0.1678,-0.1006,0.3208,0.4256,0.8766,0.914,0.9624,0.9516,0.914,0.9382,1,0.9464,0.8818,0.8818,-0.5756,-0.0402,-0.032,0.1844,-0.0514,-0.6366,-0.6948,-0.7142,-0.9224,-0.8614,-0.656,-0.6282,-0.559,-0.645,-0.4924,-0.5396,-0.5034,-0.5118,-0.3092,-0.1428,0.068,0.4868,0.706,0.9778,1,0.964,0.9528,0.989,0.9168,0.878,0.8418,0.8834,-0.6958,-0.1664,0.176,0.3534,-0.0492,-0.6102,-0.8384,-0.7876,-0.6988,-0.8256,-0.7782,-0.6482,-0.5722,-0.6228,-0.7084,-0.6736,-0.6704,-0.664,-0.3534,-0.3408,-0.0776,0.3788,0.5626,0.9904,1,0.9714,0.9018,0.8606,0.6482,0.6354,0.7464,0.7084,-0.6748,0.0288,0.2674,0.3786,0.0042,-0.5638,-0.5102,-0.4732,-0.6872,-0.7242,-0.7448,-0.4444,-0.3622,-0.568,-0.465,-0.5926,-0.6296,-0.4362,-0.4198,-0.3128,0.0124,0.4074,0.93,0.9754,0.9588,0.9712,1,0.7078,0.4198,0.3828,0.395,0.4486,-0.4074,0.6364,0.3266,0.3132,-0.0774,-0.0572,-0.4612,-0.3198,-0.3334,-0.542,-0.5152,-0.3064,-0.2054,-0.5488,-0.5488,-0.5152,-0.5084,-0.4276,-0.3738,-0.1784,0.2592,0.9664,0.872,0.67,0.724,0.9462,1,0.5286,-0.138,-0.091,0.3132,0.3602,-0.5102,0.2654,0.2654,0.102,0.102,-0.4286,-0.3878,-0.5918,-0.5102,-0.5918,-0.347,-0.347,-0.5102,-0.5102,-0.347,-0.5102,-0.347,0.0612,0.1428,0.5102,0.796,0.8368,0.796,0.4694,0.7552,0.796,1,0.8368,0.7552,0.4286,0.6734,0.551,-0.6,0.08,0.08,-0.04,-0.08,-0.56,-0.6,-0.56,-0.56,-0.76,-0.6,-0.4,-0.4,-0.52,-0.44,-0.48,-0.44,-0.24,-0.12,0.32,0.44,0.52,0.68,0.56,0.72,0.68,1,0.8,0.68,0.44,0.64,0.48,-0.5334,-0.0888,0.2222,0.3778,0.0222,-0.3334,-0.4888,-0.5334,-0.6,-0.9112,-0.5556,-0.4888,-0.4222,-0.4444,-0.4666,-0.5778,-0.5556,-0.6888,-0.4222,-0.2888,-0.0888,0.4222,0.5334,1,1,0.9556,0.8666,0.7778,0.6222,0.5556,0.7112,0.7334,-1,-1,-1,-1,-1,-1,-1,-0.8832,-0.9046,-0.8408,-0.0132,0.9098,0.9046,0.8356,0.671,0.5596,0.443,0.305,-0.0558,-0.268,-0.0558,-0.5226,-0.7136,-0.8992,-0.9152,-0.8886,-0.9204,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9466,-0.9516,-0.2212,0.9304,0.4448,0.882,0.9142,0.7914,0.6422,0.4086,0.0348,-0.4944,-0.5552,-0.646,-0.8274,-0.8782,-0.908,-0.8062,-0.9218,-0.9354,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8868,-0.9468,-0.6134,0.8532,-0.196,-0.048,0.076,0.044,0.098,0.002,-0.134,-0.382,-0.61,-0.74,-0.551,-0.6068,-0.38,-0.5734,-0.74,-0.9234,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5714,1,1,1,1,-0.8,-0.9714,-0.7714,-0.8,-0.9714,-0.6286,-0.1142,-0.8858,-0.3428,-0.8,-0.7714,-0.6858,-0.6,-0.6286,-0.4,-1,-1,-1,-1,-1,-1,-0.0586,-0.0678,-0.059,-0.0266,-0.0378,-0.0198,-0.0402,-0.0296,-0.0266,0.001,1,1,1,1,1,1,1,1,1,1,-0.72,0.1882,0.985,0.0522,0.3552,0.5752,0.7826,1,-0.8616,-0.5094,-0.4088,-0.2956,-0.132,-0.0314,-0.0818,-0.1572,-0.0188,0.0314,0.4466,0.3962,0.2452,0.5472,0.3836,0.2956,0.4088,0.2956,0.7736,0.8364,0.8114,0.912,1,0.849,0.7862,0.761,0.7232,0.4968,0.4088,0.4842,0.2956,0.044,-0.6586,-0.3658,-0.7682,-0.8414,-0.5854,-0.7074,-0.7318,-0.683,-0.5732,-0.3292,0.0488,-0.1952,0.2804,0.2318,-0.061,0.2074,0.4024,0.4756,0.6342,0.8902,1,0.8902,0.9634,0.8536,0.8902,0.6952,0.5366,0.4756,0.4146,0.3902,0.2926,0.1952,-0.0416,0.2362,-0.1388,-0.5138,-0.5694,-0.5278,-0.4444,-0.4306,-0.1388,0.0694,0.625,0.3888,0.5834,0.7638,0.5416,0.5,0.5416,0.3612,0.6944,0.8056,0.875,0.8472,1,0.5,0.5416,0.5278,0.625,0.625,0.375,0.4584,0.3194,0.0834,1,-1,-1,1,-0.8,-1,-1,-0.7,-1,-0.426,-0.426,-0.0186,0.0556,-0.1666,-0.1852,0.1482,0.074,0.037,0.2592,1,0.7778,0.4814,0.7038,0.463,0.3148,0.3148,-0.0186,0.4074,0.5556,0.5186,-0.3704,-0.3518,0.574,0.6296,0.426,0.3704,0.2222,0.1666,-0.1482,-0.2038,-0.2778,'4'
-0.5698,0.1582,0.1706,0.06,0.0354,-0.4686,-0.5024,-0.4254,-0.4686,-0.616,-0.6036,-0.5546,-0.5208,-0.533,-0.4532,-0.3978,-0.3242,-0.195,-0.0998,0.2136,0.3486,0.8034,0.9724,0.6774,0.6744,0.7696,0.9754,0.7788,1,0.8034,0.8434,0.6498,-0.565,0.0804,0.0804,0.0222,-0.0138,-0.4876,-0.5208,-0.4736,-0.4876,-0.5458,-0.5484,-0.4516,-0.471,-0.5568,-0.5624,-0.435,-0.4128,-0.3656,-0.3518,-0.0222,0,0.3988,0.446,0.8366,0.903,0.7092,0.7618,0.928,1,0.5928,0.6676,0.5844,-0.5174,0.1222,0.092,0.1252,0.0468,-0.7828,-0.6682,-0.5536,-0.6592,-0.6712,-0.629,-0.4752,-0.5204,-0.5354,-0.5716,-0.4932,-0.5324,-0.4358,-0.3334,-0.1704,0.0588,0.1946,0.5806,0.7164,0.7858,0.9336,0.9034,1,0.8522,0.801,0.6772,0.7678,-0.5286,0.0446,-0.0262,0.205,0.0354,-0.6918,-0.6118,-0.507,-0.701,-0.6672,-0.7596,-0.7104,-0.5964,-0.5902,-0.436,-0.5316,-0.4976,-0.4668,-0.3004,-0.1494,-0.0354,0.3898,0.507,0.812,0.8706,1,0.9538,0.9876,0.9846,0.8984,0.7996,0.7534,-0.6404,-0.1888,0.0312,0.1946,-0.15,-0.5126,-0.6582,-0.6582,-0.6642,-0.7652,-0.694,-0.6316,-0.6166,-0.5928,-0.578,-0.6226,-0.569,-0.5542,-0.4888,-0.3432,-0.0372,0.1916,0.483,0.7148,0.991,1,0.8812,0.8782,0.9702,0.792,0.7028,0.6998,-0.6562,-0.1146,0.3044,0.4624,-0.1582,-0.4032,-0.577,-0.4862,-0.755,-0.8182,-0.826,-0.672,-0.66,-0.6996,-0.5732,-0.6798,-0.6758,-0.7114,-0.7154,-0.502,-0.2766,0.0592,0.3636,0.6562,0.8854,1,0.996,0.9684,0.9328,0.6758,0.577,0.4704,-0.6542,0.291,0.389,0.781,0.3314,-0.562,-0.5274,-0.5332,-0.6254,-0.8328,-0.6484,-0.562,-0.4122,-0.464,-0.6254,-0.4064,-0.2738,-0.608,-0.804,-0.6196,-0.124,-0.0086,0.2104,0.6772,1,0.9538,0.8386,0.6658,0.4178,0.291,0.1354,-0.0028,-0.3962,0.3584,0.3584,0.2076,0.2076,-0.3584,-0.434,-0.1698,-0.283,-0.3584,-0.3208,-0.3584,-0.1698,-0.3584,-0.132,-0.3584,-0.132,0.0188,0.1698,0.5472,0.6982,0.7358,0.8868,0.6604,0.7736,0.7358,0.9622,0.9246,1,0.9246,0.8114,0.7736,-0.5834,0.125,0.125,0.0416,-0.0416,-0.375,-0.3334,-0.2916,-0.3334,-0.7084,-0.7916,-0.6666,-0.6666,-0.375,-0.3334,-0.375,-0.25,-0.1666,-0.0416,0.1666,0.3334,0.75,0.9166,0.5834,0.5834,0.7084,0.9166,0.7916,1,0.75,0.75,0.4584,-0.6818,-0.3182,0.1818,0.3182,-0.0228,-0.3636,-0.409,-0.4772,-0.5682,-0.591,-0.591,-0.6364,-0.8636,-0.5454,-0.409,-0.5,-0.409,-0.5682,-0.5454,-0.2272,-0.091,0.0454,0.5,0.6818,0.9318,0.9772,1,0.9546,0.9318,0.841,0.75,0.6818,-1,-1,-1,-1,-1,-1,-1,-0.9288,-0.9338,-0.7456,0.0432,0.771,0.9796,0.9542,0.9084,0.6438,0.6132,0.3536,0.1044,-0.0026,-0.1298,-0.4148,-0.5318,-0.5826,-0.603,-0.6896,-0.8982,-0.9338,-0.8932,-0.9236,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9536,-0.9484,0.5582,0.9872,0.593,0.8764,0.7926,0.651,0.4154,0.6858,0.5416,0.0096,-0.4668,-0.6084,-0.7772,-0.7926,-0.8416,-0.8352,-0.8866,-0.9228,-0.9304,-0.9344,-0.942,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.1,0.8732,-0.1646,-0.1424,-0.0046,0.0066,-0.0178,0.0132,0.0754,-0.0868,-0.2312,-0.538,-0.89,-0.7268,-0.6268,-0.7068,-0.7334,-0.8134,-0.9068,-0.8468,-0.9268,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,1,1,1,1,-0.6,-0.8572,-0.7428,-0.8,-0.8858,-0.9428,-0.6572,-0.8,-0.5428,-0.8286,-0.8286,-0.7428,-0.8,-0.7714,-0.8572,-0.9714,-0.9714,-0.2858,-1,-1,-1,0.0208,0.0226,0.0402,0.037,0.011,0.0064,0.0114,0.0036,-0.0372,0.0154,1,1,1,1,1,1,1,1,1,1,-0.7466,0.0706,0.8828,0.4566,0.36,0.83,0.9782,1,-0.7142,-0.4546,-0.091,-0.2078,-0.013,-0.078,0.1168,0.1818,-0.026,0.1168,0.4546,0.3896,0.1168,0.5324,0.5974,0.6234,0.5194,0.6234,0.6884,0.7272,1,0.8312,0.922,1,0.8962,0.8442,0.7922,0.6754,0.5714,0.5064,0.2988,-0.013,-0.837,-0.442,-0.6996,-0.6138,-0.6996,-0.6996,-0.5108,-0.5536,-0.5022,-0.4592,-0.0902,-0.1244,0.0988,0.1846,0.0988,0.1502,0.3134,0.3218,0.4936,0.5536,0.6224,0.7168,1,0.8884,0.8798,0.751,0.7424,0.6052,0.5364,0.7082,0.3476,0.176,-0.0526,0.1754,-0.0614,-0.4824,-0.5264,-0.5264,-0.2894,-0.2982,-0.386,0,0.3772,0.465,0.4474,0.693,0.5614,0.614,0.5264,0.5526,0.5878,0.9912,1,0.886,0.8948,0.8948,0.6404,0.7018,0.6404,0.5,0.5088,0.4736,0.1578,-0.0702,1,-1,-1,1,-0.6,-1,1,-0.6334,-1,0.2222,0.3704,0,0,-0.1112,-0.2408,-0.3518,-0.1482,-0.0926,-0.1666,0.3888,1,0.9814,0.9074,0.5,-0.037,0.426,0.574,-0.0926,-0.3888,-0.2408,-0.0926,0.074,-0.2038,0,-0.1112,-0.1852,0.1112,-0.2038,-0.2778,-0.463,-0.7778,'4'
-0.5818,0.1336,0.1536,-0.204,-0.1914,-0.6348,-0.5894,-0.602,-0.5944,-0.7356,-0.665,-0.597,-0.539,-0.5138,-0.4962,-0.607,-0.4686,-0.4056,-0.413,-0.2922,-0.1134,0.2368,0.3174,0.5466,0.6474,0.723,0.723,0.6574,0.728,0.9042,1,0.9168,-0.4452,0.1442,0.1196,0.0086,-0.0628,-0.64,-0.7214,-0.6424,-0.7214,-0.6474,-0.6868,-0.5536,-0.5832,-0.5586,-0.4748,-0.5192,-0.5192,-0.4106,-0.3686,-0.2282,0.0876,0.2182,0.4994,0.6078,0.8472,0.9062,0.63,0.6646,0.8002,0.8324,1,1,-0.4662,0.1042,0.052,0.1432,-0.0026,-0.6902,-0.6354,-0.4896,-0.6718,-0.7396,-0.711,-0.6562,-0.513,-0.4896,-0.763,-0.664,-0.4714,-0.5312,-0.3828,-0.3594,-0.0338,0.2266,0.474,0.763,0.948,0.7136,0.599,0.8124,0.888,0.9662,1,0.8828,-0.5438,-0.0208,-0.082,0.1044,-0.1794,-0.7108,-0.7024,-0.7218,-0.897,-0.9248,-0.7774,-0.605,-0.5828,-0.6272,-0.5466,-0.5994,-0.6356,-0.6134,-0.5466,-0.313,-0.0654,0.1962,0.5744,0.7274,0.8692,0.808,0.7302,0.772,0.8692,0.9694,1,0.9416,-0.606,-0.1374,0.1104,0.2598,-0.215,-0.4268,-0.6238,-0.6776,-0.8836,-0.8626,-0.8776,-0.6358,-0.588,-0.5462,-0.5492,-0.5254,-0.4896,-0.5462,-0.5672,-0.2866,-0.1732,0.3402,0.4598,0.8508,0.7462,0.8358,0.815,0.8538,1,0.8926,0.9164,0.806,-0.4802,0.1072,0.4366,0.6428,0.1112,-0.258,-0.7698,-0.8056,-0.8532,-0.8334,-0.7104,-0.4524,-0.488,-0.6904,-0.4802,-0.5556,-0.6112,-0.5198,-0.6866,-0.3928,-0.2302,0.2064,0.5834,0.9326,1,0.9166,0.8056,0.885,0.9444,0.75,0.5556,0.5516,-0.2168,0.729,0.3494,-0.0482,-0.0904,-0.1084,-0.5722,-0.4216,-0.476,-0.8132,-0.9338,-0.4278,-0.3796,-0.253,-0.024,-0.2228,-0.476,-0.482,-0.253,-0.229,0.0302,0.3976,0.8254,0.8796,1,0.7892,0.8192,0.9698,0.765,0.253,0.1868,0.4398,-0.6364,0.0546,0.091,-0.2364,-0.2,-0.6728,-0.6728,-0.6728,-0.5272,-0.7454,-0.6,-0.6728,-0.3818,-0.3818,-0.5636,-0.4546,-0.2728,-0.309,-0.491,-0.4182,0.0182,0.1636,0.2364,0.3818,0.491,0.8182,0.709,0.6728,0.6728,0.9636,1,0.891,-0.6334,0.1,0.1334,-0.2,-0.1666,-0.5334,-0.5666,-0.6334,-0.6,-0.7,-0.6,-0.6334,-0.6,-0.4334,-0.5666,-0.5,-0.2,-0.2334,-0.3334,-0.2666,0.1334,0.2,0.4,0.4334,0.5666,0.7666,0.6,0.5334,0.6334,0.9,0.8666,1,-0.4524,0,0.1428,0.3334,-0.1666,-0.4524,-0.5952,-0.619,-0.5714,-0.6904,-0.5952,-0.5,-0.5238,-0.5476,-0.262,-0.3096,-0.2858,-0.381,-0.738,-0.1904,-0.0714,0.381,0.4048,0.8334,0.762,0.9286,0.7858,0.881,1,0.9048,0.8572,0.738,-1,-1,-1,-1,-1,-1,-1,-1,-0.9138,-0.9342,-0.343,0.7906,0.8726,0.6756,0.54,0.388,0.0678,0.0144,-0.1006,-0.1048,-0.1786,-0.4662,-0.7412,-0.8604,-0.9178,-0.9342,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9646,-0.968,-0.4956,0.3008,0.513,0.056,-0.1492,-0.136,-0.2592,-0.344,-0.5834,-0.73,-0.7732,-0.8748,-0.9256,-0.9388,-0.9534,-0.9632,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.8734,-0.3368,0.212,0.002,0.072,0.068,0.118,0.22,0.204,-0.194,-0.628,-0.644,-0.6838,-0.5668,-0.6468,-0.7734,-0.8268,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,-0.8,-0.6286,-0.8858,-0.8572,-0.9428,-0.8572,-0.4858,-0.6858,-0.3714,-0.6,-0.8858,-1,-0.7714,-0.7714,-1,-1,-1,-1,-1,-1,-1,-0.2222,-0.1928,-0.1922,-0.1752,-0.1672,-0.1584,-0.176,-0.1544,-0.1892,-0.1222,1,1,1,1,1,1,1,1,1,1,-0.7066,0.1882,-0.4052,0.0178,0.1742,0.5082,0.3732,1,-0.1852,-0.037,-0.037,-0.1112,-0.037,-0.1482,-0.1112,0.037,0.037,0.1112,0.2592,0.4444,0.7038,0.7408,0.8518,0.963,1,0.926,0.7038,0.4814,0.5926,0.5556,0.5556,0.4444,0.1482,0.074,-0.1852,-0.2222,-0.037,-0.074,-0.2222,-0.4444,-0.0312,0.1718,-0.0624,-0.2032,-0.3438,-0.3438,-0.1718,-0.125,-0.125,-0.0938,0.0156,0.4844,0.75,0.75,0.8594,0.875,1,0.9688,0.6406,0.3906,0.4062,0.5156,0.5468,0.4218,0.1876,0.0938,-0.1406,-0.1876,-0.0156,-0.125,-0.3438,-0.4532,0.0448,0.2836,0.0746,-0.2686,-0.3134,-0.4626,-0.015,-0.1492,-0.1044,-0.0298,0.3284,0.5672,0.7762,0.8508,0.7762,1,0.9552,0.8358,0.4328,0.3732,0.388,0.5074,0.388,0.2836,-0.0298,-0.1044,-0.2238,-0.403,-0.0598,-0.2388,-0.2686,-0.418,4e-04,-1,-1,1,-0.8,-1,-1,-0.8334,-1,0.4106,0.5158,0.1158,0.3684,0.0948,0.0106,0.3894,0.6422,0.4106,0.5158,0.7684,0.8526,1,1,0.7474,0.4736,0.6422,0.6,0.5158,0.4106,0.2632,0.4106,0.6422,0.8316,0.579,0.4736,0.2632,0.221,0.3474,0.3264,0.179,-0.5158,'5'
-0.6306,0.087,0.137,-0.3064,-0.2634,-0.7234,-0.745,-0.7498,-0.7188,-0.8164,-0.7664,-0.5804,-0.571,-0.6114,-0.59,-0.6806,-0.7068,-0.6114,-0.5114,-0.397,-0.2324,0.1418,0.2896,0.4636,0.6878,0.6472,0.6042,0.4852,0.6924,0.7736,1,0.9618,-0.5052,0.1202,0.1042,-0.1272,-0.1752,-0.6884,-0.725,-0.528,-0.583,-0.7526,-0.7228,-0.6152,-0.6862,-0.59,-0.6632,-0.6358,-0.6954,-0.5006,-0.5418,-0.2852,-0.2486,0.1248,0.1386,0.4776,0.5098,0.771,0.661,0.6426,0.5578,0.8168,0.7778,1,-0.5106,0.0544,0.0048,0.007,-0.1182,-0.74,-0.7494,-0.539,-0.7494,-0.8748,-0.7282,-0.5886,-0.6122,-0.5958,-0.61,-0.5958,-0.5792,-0.6122,-0.3972,-0.3618,-0.0828,0.0828,0.3924,0.52,0.7494,0.6312,0.546,0.6714,0.74,0.8486,1,0.9528,-0.5756,-0.0926,-0.1586,0.0098,-0.2536,-0.5878,-0.656,-0.6926,-0.822,-0.8804,-0.7488,-0.6976,-0.656,-0.6586,-0.5854,-0.6708,-0.5926,-0.5536,-0.544,-0.3952,-0.1244,0.0804,0.4342,0.6366,0.7952,0.7536,0.5926,0.7122,0.883,0.9732,0.9926,1,-0.5912,-0.1378,0.2424,0.3692,-0.2298,-0.4834,-0.7116,-0.718,-0.794,-0.8288,-0.8606,-0.6006,-0.4866,-0.534,-0.7274,-0.8858,-0.4738,-0.4706,-0.5056,-0.3312,-0.1188,0.1854,0.5088,0.813,0.9462,0.8478,0.7844,0.87,1,0.9176,0.9302,0.8764,-0.5438,0.1064,0.4714,0.6236,-0.1406,-0.6426,-0.6008,-0.521,-0.5666,-0.8708,-0.8404,-0.6578,-0.5476,-0.5894,-0.5856,-0.6084,-0.5742,-0.4638,-0.5856,-0.5362,-0.3042,0.194,0.4334,0.6806,0.9772,1,0.9316,0.8518,0.8898,0.6464,0.3498,0.4866,-0.246,0.6952,0.401,0.3476,-0.2086,-0.7594,-0.7112,-0.6632,-0.5562,-0.6792,-0.5614,-0.3422,-0.2728,-0.5026,-0.4386,-0.4064,-0.3476,-0.091,-0.2352,-0.2674,-0.1658,-0.0428,0.599,0.738,0.5562,0.8128,1,0.7006,0.5776,0.2674,0.0802,0.2888,-0.2414,0.2758,0.3448,0.1034,0.138,0,-0.0344,-0.2068,-0.2068,-0.4138,-0.2068,-0.1034,-0.2068,-0.2414,-0.069,-0.1034,-0.2414,-0.2068,-0.1034,-0.0344,-0.1034,0.3104,0.3794,0.5172,0.931,0.9656,0.7242,0.2758,0.5172,0.8966,1,0.931,-0.88,0.08,0.16,-0.28,-0.24,-0.76,-0.72,-0.8,-0.64,-0.8,-0.64,-0.64,-0.44,-0.48,-0.6,-0.64,-0.6,-0.68,-0.56,-0.48,-0.16,0.12,0.08,0.44,0.48,0.8,0.72,0.64,0.68,0.88,0.96,1,-0.6222,-0.2888,0.0444,0.2,-0.2222,-0.5334,-0.8888,-0.7778,-0.7112,-0.7334,-0.8,-0.4666,-0.4222,-0.7556,-0.6888,-0.8,-0.4222,-0.5112,-0.5556,-0.0888,-0.0666,0.1556,0.4666,0.6888,0.6888,0.7778,0.7778,0.7112,0.9112,0.9112,1,0.7556,-1,-1,-1,-1,-1,-1,-1,-1,-0.9212,-0.9014,-0.8178,0.5172,0.9606,0.9162,0.7438,0.5518,0.2316,0.0738,-0.0296,-0.1084,-0.2216,-0.4976,-0.6306,-0.7636,-0.8572,-0.9064,-0.9014,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9584,-0.947,-0.8524,0.3736,0.689,0.4174,0.3296,0.4626,0.5572,-0.1256,-0.5662,-0.662,-0.724,-0.8332,-0.866,-0.8828,-0.9154,-0.9346,-0.938,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9798,-0.9134,-0.8034,0.2126,0.2508,0.1454,0.258,0.2218,0.218,0.0762,-0.2656,-0.611,-0.8182,-0.6764,-0.7134,-0.58,-0.5668,-0.84,-0.8734,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6,-0.5142,1,1,-0.6858,-0.8,-0.8286,-0.9428,-0.9142,-0.6286,-0.7142,-0.7714,-0.7428,-0.7714,-0.8286,-0.9142,-0.8858,-0.9142,-0.6286,-1,-1,-1,-1,-1,-1,-0.2646,-0.2636,-0.243,-0.2586,-0.2448,-0.2456,-0.2718,-0.2602,-0.2054,-0.1834,1,1,1,1,1,1,1,1,1,1,-0.7066,0.3058,-0.8998,-0.2992,0.1064,0.4998,0.894,1,-0.037,-0.2592,0.1666,0.6112,0.5926,0.1112,0.7592,0.8518,0.3518,0.7962,0.8148,0.7222,1,0.6112,0.5556,0.1482,0.2592,0.3704,0.2038,0.2408,0.1852,0.537,0.3704,0.537,0.2222,0.2408,0.037,0.3704,0.426,0.2038,0.1482,-0.5,0.1968,0.2296,0.4426,0.9508,0.5902,0.7214,0.8032,0.8524,0.836,0.918,0.8032,0.9016,0.8524,0.8196,0.9672,0.5902,0.4262,0.5738,0.164,0.4262,0.246,0.5902,0.5902,0.623,0.6558,0.6066,0.295,0.459,0.2296,0.4754,0.2132,-0.295,0.0944,-0.132,0.0692,0.8868,0.5724,0.195,0.6352,0.346,0.7232,0.673,0.6604,0.5346,0.7988,0.7988,0.8742,0.7862,0.8238,1,0.2578,0.5094,0.434,0.6604,0.7106,0.8742,0.3208,0.2452,0.3082,0.195,0.0818,0.0314,-0.0188,-0.2076,-0.9774,1,-1,-1,-1,-1,-0.8,-1,-1,-0.145,0.0076,0.2062,0.1908,0.1146,0.0076,-0.0382,0.1908,0.252,0.5114,0.481,0.2824,0.5572,0.5878,0.5268,0.4198,0.313,0.3282,0.0382,0.1604,-0.0688,0.2824,0.4046,0.7252,1,0.3282,0.4962,0.2824,0.3588,-0.0382,-0.1298,-0.3894,'5'
-0.9164,-0.2836,-0.218,0.2478,0.3134,0.7552,0.8626,0.5762,0.2776,0.1224,0.2836,0.1522,0.4568,0.3732,0.7074,0.6956,1,0.9402,0.6538,0.6538,0.5582,0.594,0.797,0.8986,0.9284,0.9344,0.8568,0.9044,0.8388,0.8626,0.7792,0.4806,-0.7466,-0.1404,-0.1404,0.2342,0.2342,0.8788,0.8842,0.5592,0.5538,0.4656,0.471,0.394,0.383,0.6198,0.6144,0.978,1,0.719,0.7246,0.5648,0.5592,0.741,0.7906,0.8788,0.9118,0.989,0.967,0.7742,0.752,0.752,0.763,0.5096,-0.734,-0.1528,-0.1872,0.2068,0.3252,0.665,0.537,0.7142,0.5666,0.463,0.2414,0.3252,0.3794,0.5222,0.7832,0.9262,0.6798,0.7192,0.532,0.6206,0.5616,0.6454,0.7438,0.8078,0.9262,1,0.7784,0.7882,0.6996,0.7094,0.4482,0.404,-0.6864,-0.1876,-0.0848,0.1928,0.4088,0.5836,0.8046,0.9074,0.527,0.4448,0.4498,0.4344,0.599,0.6298,1,0.8972,0.7634,0.6298,0.5784,0.4498,0.5526,0.7224,0.8098,0.8714,0.9074,0.9332,0.9332,0.7944,0.7378,0.6144,0.5012,0.203,-0.739,-0.2638,-0.0966,0.0914,0.2898,0.3786,0.9426,0.9478,0.2794,0.2062,0.457,0.3994,0.5562,0.9374,1,0.5874,0.5822,0.53,0.3524,0.4204,0.4516,0.5718,0.6972,0.7702,0.9216,0.8852,0.7336,0.6292,0.6606,0.5092,0.3734,0.128,-0.6972,-0.2972,0.0486,0.173,0.2972,0.627,1,0.881,0.0216,0.3568,0.4054,0.281,0.627,0.8702,0.7082,0.3784,0.3838,0.3568,0.1298,0.1838,0.2972,0.3892,0.5514,0.7568,0.7568,0.5676,0.5784,0.5352,0.346,0.3244,0.1892,-0.0864,-0.6176,0.0278,0.1952,0.4024,0.8008,0.7848,0.9044,0.5856,-0.0916,0.267,0.4184,0.49,0.7212,1,0.8248,0.769,0.0598,-0.0438,0.0358,0.0438,0.1554,0.2192,0.267,0.4662,0.7132,0.8088,0.737,0.1792,0.2032,0.1076,-0.0756,-0.0278,-0.8666,-0.2444,-0.2,0.2888,0.4666,0.7334,0.7778,0.6,0.3778,0.3334,0.3334,0.2444,0.4222,0.4222,0.7334,0.8222,0.7334,0.8222,0.6888,0.6888,0.6444,0.5556,0.6,0.8666,1,0.9556,0.9556,0.8666,0.7778,0.8222,0.8666,0.8666,-0.891,-0.2728,-0.2728,0.1636,0.2364,0.7454,0.8182,0.4546,0.2364,-0.0182,0.2364,0.0546,0.4182,0.2728,0.6364,0.6,1,0.9636,0.6,0.6364,0.5272,0.6364,0.7454,0.891,0.7818,0.9272,0.709,0.8546,0.8182,0.8182,0.7454,0.1636,-0.6596,-0.2766,-0.0212,0.1064,0.2978,0.4894,1,0.9148,0.234,0.2978,0.383,0.468,0.4468,0.8724,0.766,0.468,0.2766,0.383,0.3404,0.3618,0.3404,0.468,0.6596,0.7234,0.8724,0.766,0.7872,0.532,0.468,0.4894,0.2978,-0.0426,-1,-1,-1,-1,-1,-1,-1,-1,-0.9326,-0.9648,-0.8856,0.3402,0.8944,0.7478,0.349,0.2552,0.0352,-0.0998,-0.1554,-0.1114,-0.1906,-0.4634,-0.824,-0.9002,-0.909,-0.8652,-0.9296,-0.9296,-0.9384,-0.9238,-0.9354,-0.9442,-0.9354,-1,-1,-1,-1,-1,-1,-1,-1,-0.9716,-0.9828,-0.9606,0.311,0.9218,0.4312,0.1336,0.1578,0.0828,0.0394,-0.0522,-0.2322,-0.4936,-0.8102,-0.8824,-0.931,-0.9186,-0.8752,-0.8868,-0.9044,-0.8988,-0.8996,-0.9066,-0.916,-0.9526,-1,-1,-1,-1,-1,-1,-1,-1,-0.8758,-0.9734,-0.8868,-0.335,-0.404,-0.488,-0.5,-0.516,-0.5,-0.432,-0.488,-0.568,-0.592,-0.544,-0.39,-0.3634,0.3232,0.7466,0.45,0.6432,0.7666,0.62,0.7,0.3932,-0.18,-1,-1,-1,-1,-1,-1,-1,-1,0.2286,-0.7142,1,1,1,-0.5714,-0.8,-0.8286,-0.8858,-0.8286,-0.5714,0.2858,1,1,-0.3142,0.8,0.9714,-0.3428,-1,-0.8858,-1,-0.7714,-0.6858,-0.1142,1,1,1,1,1,1,1,1,1,1,1,0.2548,0.2602,0.2602,0.287,0.318,0.3084,0.3022,0.285,0.2866,0.0744,-0.7334,-0.4824,-0.97,-0.2968,0.6766,0.943,0.908,1,-0.3628,-0.469,0.292,0.4868,0.292,0.0442,0.3628,0.416,0.3806,0.3274,0.0974,-0.115,0.6284,0.1504,0.0974,0.2744,0.1682,-0.469,-0.0088,0.0442,0.2212,0.1682,0.4868,0.7522,0.8938,1,0.9116,0.5398,0.2744,0.3806,-0.5044,-0.593,0.12,-0.104,0.232,0.696,0.888,0.408,0.408,0.68,1,0.728,0.408,0.168,0.664,0.456,0.504,0.568,0.568,0.328,-0.12,0.392,0.6,0.424,0.232,0.328,0.328,0.248,0.6,0.28,-0.264,-0.04,-0.248,-0.6,0.0708,-0.0552,0.2284,0.4646,0.3228,0.4174,0.8268,0.8268,1,0.685,0.9528,0.811,0.7008,0.8268,0.8426,0.9056,0.1496,0.433,0.622,0.6692,0.244,0.622,0.685,0.3386,0.2914,0.4174,0.3228,0.1182,0.1182,0.1654,-0.1496,-0.2598,-0.9824,1,-1,-1,-1,-1,-1,-1,-1,-0.7762,-0.5664,-0.4126,-0.077,-0.2028,-0.2028,0.007,-0.007,-0.1048,-0.077,-0.1608,-0.077,0.1468,0.2168,0.1608,0.077,0.035,0.3986,0.2868,0.1188,0.2028,0.2448,1,0.972,0.7902,0.3846,0.3566,0.1748,0.1048,0.4266,0.1748,-0.2448,'6'
-0.9498,-0.2234,-0.1984,0.2276,0.2694,0.8706,0.9498,0.62,0.3778,0.1816,0.215,0.2442,0.2902,0.332,0.499,0.6784,0.8204,0.787,0.7704,0.5574,0.428,0.3612,0.645,0.6242,0.787,0.858,1,0.883,0.883,0.7578,0.716,0.4488,-0.7678,-0.1812,-0.1608,0.2628,0.3402,0.6456,0.503,0.7718,0.609,0.4176,0.2628,0.4256,0.2708,0.4298,0.5764,0.6864,0.8778,0.9592,0.6456,0.56,0.556,0.6252,0.6008,0.6904,0.8656,0.943,0.9064,1,0.943,0.943,0.776,0.7148,-0.6718,-0.1992,-0.1094,0.1054,0.3046,0.414,0.8008,0.8476,0.3476,0.3282,0.3632,0.254,0.3554,0.4844,0.6368,0.918,1,0.5196,0.4414,0.5468,0.4882,0.5704,0.5468,0.711,0.6524,0.7734,0.9296,0.996,0.7774,0.7618,0.621,0.543,-0.7428,-0.302,-0.098,0.0734,0.3142,0.502,1,0.9632,0.449,0.3266,0.3918,0.4,0.453,0.6816,0.7062,0.9756,0.853,0.5184,0.4244,0.4898,0.502,0.5062,0.7674,0.6654,0.7224,0.8204,0.8938,0.8408,0.804,0.7102,0.604,0.3918,-0.7046,-0.3206,-0.0168,0.0886,0.3756,0.6794,1,0.8354,0.4684,0.3798,0.3798,0.4262,0.4684,0.6372,0.8902,0.8818,0.4642,0.3122,0.3248,0.232,0.2912,0.4936,0.5148,0.5358,0.5696,0.595,0.6878,0.5864,0.5822,0.46,0.3628,0.1856,-0.6634,-0.2772,0.0346,0.109,0.4852,0.8614,1,0.5694,0.51,0.1832,0.198,0.292,0.604,0.609,0.797,0.4406,0.193,0.0644,-0.0198,0.0544,-0.0198,0.1386,0.3168,0.1436,0.1782,0.5298,0.4702,0.3168,0.1436,0.1336,0.1832,0.0594,-0.6226,0.0188,0.1774,0.3812,0.4566,0.6528,0.8188,0.6452,0.517,-0.034,0.3812,0.5774,0.9698,1,0.7434,0.0716,-0.2452,-0.6,-0.434,-0.3584,-0.185,-0.215,-0.2754,-0.185,0.3736,0.4716,0.5698,0.1094,-0.0114,-0.215,-0.1924,-0.3812,-0.7142,-0.0612,0.0204,0.347,0.4694,0.796,1,0.8368,0.347,0.2654,0.3062,0.2244,0.347,0.347,0.3878,0.6326,0.796,0.8776,0.796,0.4286,0.3878,0.347,0.4694,0.7142,0.7552,0.6326,0.9592,0.8368,0.8776,0.6734,0.6734,0.5102,-0.796,-0.2654,-0.2244,0.2244,0.2654,0.9184,1,0.4694,0.4694,0.2244,0.2654,0.347,0.3878,0.4694,0.5918,0.796,0.9184,0.7552,0.8776,0.551,0.551,0.5102,0.7142,0.5918,0.796,0.6326,0.8776,0.6326,0.6734,0.6326,0.3878,0.2244,-0.6484,-0.2748,-0.033,0.077,0.4066,0.8242,0.956,0.6264,0.5384,0.3406,0.3626,0.4286,0.5384,0.8022,1,0.8462,0.2308,0.3186,0.2748,0.1428,0.3406,0.3846,0.5164,0.4286,0.3626,0.7142,0.7362,0.4726,0.4066,0.5164,0.2748,0.1208,-1,-1,-1,-1,-1,-1,-1,-0.9234,-0.9362,-0.9488,-0.4696,0.4728,0.7796,0.3642,0.2268,0.0512,0.1022,0.2172,0.1948,-0.0862,-0.2876,-0.5686,-0.869,-0.9074,-0.8306,-0.8338,-0.8722,-0.917,-0.9234,-0.9234,-0.952,-0.952,-0.9584,-1,-1,-1,-1,-1,-1,-1,-0.9738,-0.9764,-0.977,-0.6542,0.2354,0.709,0.3978,0.4926,0.4102,0.488,0.3148,0.1294,-0.2872,-0.6716,-0.8016,-0.9416,-0.9222,-0.8744,-0.8766,-0.8744,-0.9026,-0.9196,-0.9,-0.873,-0.899,-0.9462,-1,-1,-1,-1,-1,-1,-1,-0.9312,-0.9934,-0.9034,-0.5168,-0.5368,-0.2968,-0.3968,-0.41,-0.44,-0.52,-0.6134,-0.6144,-0.6344,-0.6886,-0.5658,-0.6068,-0.4334,0.44,0.3732,-0.0834,0.8732,0.44,0.5566,0.7,0.4766,-0.1834,-1,-1,-1,-1,-1,-1,-1,-0.5428,-0.8858,1,1,1,1,-0.9428,-0.8858,-0.8858,-0.8572,-0.8572,-0.6,0.7428,1,0.1714,1,1,-0.1428,-0.8,-0.8858,-0.7714,-0.9142,-0.8572,-0.8572,0.1714,0.5714,1,1,1,1,1,1,1,1,1,1,0.349,0.349,0.4136,0.3686,0.3788,0.3766,0.3798,0.3754,0.3338,-0.0392,-0.6934,-0.2942,-0.544,-0.3472,0.2786,1,0.6202,0.6166,-0.2916,0.3334,0.5416,0.6666,0.7084,0.2084,0.4166,0.5416,0.7916,1,0.6666,0.6666,0.625,0.7916,0.9584,0.75,0.7084,0.5416,0.75,0.7916,0.5834,0.0416,0.125,-0.125,-0.1666,-0.0834,-0.125,-0.4166,-0.1666,-0.4166,-0.2084,-0.5834,-0.3708,0.0562,0.7528,0.955,0.3708,0.1236,0.1236,0.4606,0.955,1,0.4606,0.528,0.7528,0.8202,0.7078,0.4158,0.236,-0.1012,0.3258,0.4382,-0.1012,-0.2584,-0.3708,-0.4606,-0.4606,-0.3708,-0.4832,-0.618,-0.528,-0.3484,-0.3708,-0.6854,-0.2422,0.2632,0.7684,0.9578,0.6632,0.4736,0.3894,0.5368,0.579,0.621,0.1578,0.5368,0.7684,1,1,0.8948,0.6,0.6,0.6842,0.5368,0.3894,0.2422,0.1158,-0.0948,-0.3052,-0.1578,-0.2422,-0.4526,-0.4948,-0.2,-0.1368,-0.579,0.2678,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.84,-0.7066,-0.2666,-0.2666,-0.32,-0.2266,0,0.1734,0.1066,0.04,0.12,0.2134,0.04,0.3334,0.2266,-0.1866,0.0134,0.4534,0.5466,0.4534,0.32,0.2666,0.8266,1,0.52,0.6934,0.7066,0.4534,0.32,0.3466,0.3466,-0.0534,'6'
-0.5376,0.1692,0.1504,0.3008,0.2218,-0.436,-0.5188,-0.5414,-0.639,-0.688,-0.767,-0.4662,-0.5338,-0.5226,-0.579,-0.3046,-0.2894,-0.0264,0.1992,0.5038,0.6504,0.9888,0.782,0.8384,0.7406,0.9812,0.8834,0.9924,0.8384,0.9324,0.891,1,-0.5874,0.0158,-0.0194,0.3616,0.2486,-0.3756,-0.559,-0.538,-0.7178,-0.6402,-0.7108,-0.6332,-0.5556,-0.538,-0.3616,-0.284,-0.1604,-0.1322,0.1782,0.2028,0.6932,0.7848,1,0.9436,0.9118,0.8306,0.9858,0.8872,0.8766,0.7954,0.94,0.8484,-0.6014,-0.052,0.0628,0.3394,0.1598,-0.6158,-0.6158,-0.5368,-0.7774,-0.7774,-0.7486,-0.6482,-0.5044,-0.5906,-0.5728,-0.508,-0.3464,-0.289,-0.1526,0.1922,0.3106,0.799,0.8348,0.939,0.8528,1,0.9174,0.8672,0.7738,0.8026,0.7594,0.8132,-0.6934,-0.2412,0.3122,0.4766,0.114,-0.3458,-0.6224,-0.6748,-0.7234,-0.7644,-0.7122,-0.57,-0.529,-0.5402,-0.6262,-0.4842,-0.3906,-0.271,-0.0094,0.1214,0.443,0.7196,0.9552,1,1,0.9926,0.9888,0.9514,0.7944,0.7794,0.8056,0.787,-0.7242,-0.2922,0.3612,0.481,-0.0164,-0.4048,-0.6152,-0.7242,-0.6334,-0.6734,-0.7168,-0.5354,-0.4918,-0.6696,-0.5028,-0.4954,-0.5064,-0.3974,-0.2958,0.0526,0.2922,0.6624,0.8258,1,0.8656,0.8874,0.8984,0.7714,0.5898,0.5934,0.608,0.5754,-0.7254,-0.1808,0.4946,0.6994,0.2592,-0.4466,-0.5382,-0.499,-0.5816,-0.7342,-0.8126,-0.5686,-0.5686,-0.6252,-0.4074,-0.5032,-0.525,-0.4248,-0.255,-0.2374,0.1024,0.6428,0.865,0.8824,0.9478,1,0.9564,0.5992,0.4684,0.329,0.3552,0.3682,-0.4202,0.426,0.2464,0.513,0.2348,-0.6928,-0.5826,-0.4434,-0.5536,-0.8956,-0.7508,-0.455,-0.3276,-0.3856,-0.3798,-0.5304,-0.5826,-0.571,-0.8434,-0.3218,0.0724,0.6232,0.5652,0.571,0.855,1,0.6174,0.3044,-0.0492,0.055,0.1362,-0.0028,-0.6086,0.174,0.174,0.1304,0.087,-0.3914,-0.6086,-0.4782,-0.5652,-0.6522,-0.8696,-0.2608,-0.2174,-0.4348,-0.5218,-0.3044,-0.2608,0.1304,0.174,0.4782,0.5218,0.8696,0.826,0.7392,0.7392,1,0.8696,0.9566,1,0.9566,0.9566,0.826,-0.2758,0.3104,0.3104,0.3794,0.3104,-0.138,-0.2758,-0.3104,-0.3104,-0.2758,-0.4138,-0.3104,-0.2414,-0.2068,-0.2758,-0.0344,-0.1724,0.1724,0.2758,0.5862,0.7586,0.9656,0.862,0.7932,0.7242,0.931,0.7932,0.931,0.7932,0.9656,0.7932,1,-0.738,-0.1904,0.4762,0.5714,0.119,-0.381,-0.5238,-0.5714,-0.5714,-0.762,-0.9524,-0.619,-0.3096,-0.4048,-0.3334,-0.3334,-0.3572,-0.381,-0.1666,-0.0952,-0.0238,0.619,0.7142,1,0.9048,1,0.8334,0.8334,0.5,0.4524,0.619,0.5238,-1,-1,-1,-0.901,-0.6138,-0.7624,-0.8416,-0.8762,-0.901,-0.8268,0.01,0.6584,0.9406,0.8614,0.8762,0.7376,0.7624,0.807,0.4752,0.1684,0.1832,-0.2128,-0.4554,-0.6288,-0.7376,-0.807,-0.901,-0.896,-0.9208,-1,-1,-1,-1,-1,-1,-1,-0.95,-0.8854,-0.9218,-0.7868,-0.5258,-0.0606,0.24,-0.0562,0.4032,0.7186,0.856,0.891,0.5882,0.4486,0.131,-0.2716,-0.5326,-0.6154,-0.7198,-0.8004,-0.8536,-0.8808,-0.8968,-0.9194,-0.9286,-0.9422,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.8668,-0.7668,-0.24,0.5666,0.71,0.7,0.2632,-0.22,-0.0626,0.005,-0.0026,-0.19,-0.2576,-0.295,-0.3426,-0.6976,-0.735,-0.6476,-0.6768,-0.4068,-0.4734,-0.48,-0.6734,-0.7268,-0.8334,-1,-1,-1,-1,-1,-1,-1,-0.9428,-0.9142,1,1,1,1,-0.0572,1,1,-0.1714,-0.8572,-0.9714,-1,-1,-0.8572,-0.6572,-0.6858,-0.5714,-0.7714,-0.8286,-0.8572,-0.9142,-0.8858,-0.8858,-0.8572,-0.8286,-1,-1,-1,-1,0.0304,0.0372,0.0278,0.0836,0.096,0.1114,0.1416,0.1286,0.099,0.0936,1,1,1,1,1,1,1,1,1,1,-0.68,-0.0942,-0.1038,0.1366,0.3648,0.6382,0.5938,0.0416,-0.4934,-0.2846,-0.5248,-0.3524,-0.222,-0.1488,-0.0392,-0.0392,-0.0234,-0.0548,-0.0704,0.081,0.3994,0.598,0.7024,0.9738,1,0.9896,0.812,0.739,0.6814,0.6866,0.671,0.5822,0.389,0.624,0.6136,0.671,0.3786,0.2062,0.06,-0.5352,-0.813,-0.8212,-0.748,-0.7074,-0.5,-0.4756,-0.4308,-0.4268,-0.256,-0.187,0.2764,0.3862,0.6178,0.5528,0.7764,0.8862,1,0.9106,0.6952,0.6138,0.7236,0.7846,0.6952,0.6586,0.6504,0.7114,0.6952,0.6056,0.4838,0.3862,0.1382,-0.2846,-0.331,-0.1346,-0.3782,-0.52,-0.5382,-0.5236,-0.5054,-0.2182,0.1054,0.2982,0.5164,0.56,0.76,0.9854,1,0.8218,0.9928,0.6182,0.7928,0.6218,0.669,0.669,0.691,0.5128,0.5854,0.691,0.7236,0.531,0.611,0.5236,0.2728,-0.0872,-0.5348,-1,-1,1,-0.4,-0.6,0.2,0.0334,-1,0.0416,0.1458,-0.1042,-0.4792,-0.1666,-0.3334,-0.5834,-0.1458,-0.1666,0.1876,0.9376,0.8124,0.8542,1,0.3542,0.3542,0.2916,0.125,-0.1458,0.4584,0.4376,0.1876,0.0624,-0.0416,-0.25,0.5416,0.4166,-0.25,0.0416,-0.2292,-0.5624,-0.5416,'7'
-0.6358,0.1214,0.1406,-0.1854,-0.1566,-0.345,-0.3322,-0.6134,-0.6262,-0.69,-0.5846,-0.5686,-0.444,-0.4282,-0.214,-0.2364,-0.0288,-0.115,0.1758,0.4122,0.7252,0.687,0.6678,0.6006,0.7348,0.7412,1,0.9808,0.802,0.8658,0.7572,0.8466,-0.5088,0.193,0.2026,0.1738,0.1516,-0.1738,-0.1898,-0.4322,-0.4578,-0.512,-0.5152,-0.5662,-0.5184,-0.4322,-0.4386,-0.177,-0.142,0.0878,0.1292,0.5758,0.6492,0.917,1,0.7958,0.898,0.7958,0.8756,0.7384,0.7862,0.7162,0.8374,0.8054,-0.4832,0.1622,0.1182,0.3716,0.2602,-0.4392,-0.5744,-0.5338,-0.6926,-0.5946,-0.6418,-0.5034,-0.598,-0.554,-0.4662,-0.446,-0.2602,-0.1892,0.0642,0.1994,0.625,0.7872,1,0.9932,0.9764,0.9426,0.8784,0.831,0.7702,0.7668,0.8176,0.8918,-0.5018,0.1012,0.1274,0.3782,0.1386,-0.573,-0.7566,-0.7042,-0.6742,-0.8164,-0.7004,-0.6742,-0.6592,-0.618,-0.558,-0.5394,-0.4756,-0.2996,-0.2472,0.0038,0.236,0.603,0.8128,1,0.9214,0.8914,0.8764,0.94,0.9176,0.869,0.8314,0.839,-0.5762,-0.0594,0.4746,0.6568,0.161,-0.7204,-0.6568,-0.6016,-0.5806,-0.8644,-0.767,-0.5594,-0.6102,-0.4916,-0.5806,-0.6906,-0.5932,-0.5466,-0.4238,-0.1652,0.0466,0.5212,0.6992,1,0.9916,0.805,0.8772,0.9068,0.8348,0.7034,0.6992,0.6144,-0.4422,0.2052,0.7842,0.9684,0.2948,-0.7368,-0.5526,-0.6052,-0.8422,-0.9,-0.9736,-0.6316,-0.4264,-0.3578,-0.3578,-0.3948,-0.4736,-0.6474,-0.5158,-0.5052,-0.1736,0.1316,0.5526,0.7316,0.9052,1,0.7264,0.5474,0.779,0.5684,0.2,0.1894,-0.4276,0.5762,0.3978,0.762,0.2194,-0.5464,-0.4572,-0.3086,-0.2936,-0.5614,-0.8142,-0.4276,-0.2788,-0.2936,-0.2714,-0.3086,-0.1226,-0.2194,-0.2118,-0.316,-0.3754,-0.0632,0.8514,1,0.7844,0.9034,0.9108,0.7844,0.5464,0.3012,-0.0484,-0.1078,-0.7454,-0.091,-0.091,-0.5636,-0.4182,-0.5272,-0.4546,-0.5272,-0.4182,-0.5636,-0.6,-0.5636,-0.4182,-0.5272,-0.2728,-0.2728,-0.2364,-0.4546,-0.2364,0.1272,0.1272,0.3818,0.491,0.5272,0.7818,0.9272,1,0.9636,0.891,0.6728,0.1636,0.491,-0.6226,0.132,0.132,-0.2076,-0.1698,-0.4716,-0.2452,-0.3208,-0.6604,-0.6604,-0.7358,-0.8868,-0.3962,-0.2452,-0.1698,-0.132,0.0188,-0.0188,0.0188,0.1698,0.6982,0.6604,0.5472,0.585,0.6226,0.6982,0.9622,1,0.6226,0.6982,0.849,0.8868,-0.5152,0.1516,0.1516,0.192,0.1314,-0.2526,-0.293,-0.5758,-0.6364,-0.5152,-0.596,-0.6162,-0.5354,-0.596,-0.6364,-0.2728,-0.2728,0.091,0.0708,0.5152,0.495,1,1,0.8586,0.8788,0.7374,0.7576,0.7778,0.7576,0.7778,0.798,0.798,-1,-1,-1,-0.9322,-0.8552,-0.8778,-0.9096,-0.9276,-0.914,-0.8778,-0.362,0.3846,0.8416,0.9774,0.9004,0.7014,0.5022,0.2714,0.3304,0.1674,-0.2036,-0.5928,-0.7512,-0.8868,-0.896,-0.896,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.9442,-0.785,-0.725,-0.457,0.4034,1,1,0.6216,0.4892,0.639,0.5316,0.2844,-0.0124,-0.2626,-0.4384,-0.5802,-0.7538,-0.8552,-0.9038,-0.9266,-0.9234,-0.942,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9728,-0.9268,-0.8268,-0.0868,0.7266,0.91,0.9232,0.93,0.26,-0.065,-0.095,0.015,-0.0926,-0.0876,-0.195,-0.5978,-0.7712,-0.88,-0.749,-0.6468,-0.6534,-0.78,-0.9468,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.0286,0.0286,1,1,1,1,0.0858,0.2,0.5714,0.2572,0.3714,-0.4,-0.7714,-0.7714,-0.7714,-0.7428,-0.4286,-0.5428,-0.8286,-0.9714,-0.9142,-0.9428,-0.8572,-1,-1,-1,-1,-1,-1,-1,0.1852,0.2194,0.2332,0.2466,0.2592,0.2872,0.274,0.2436,0.1276,0.0078,0.9756,0.959,0.9674,0.9918,0.962,0.9812,0.996,1,1,0.9468,-0.7334,-0.0352,1,0.999,0.4468,0.544,0.3568,0.1334,-0.515,-0.6074,-0.4504,-0.2794,-0.3442,-0.1594,-0.0762,-0.0532,-0.1408,-0.0484,0.1732,0.3534,0.3534,0.4504,0.8614,0.8892,0.9446,0.9954,1,0.7322,0.7136,0.7736,0.7506,0.7414,0.686,0.8106,0.7228,0.6582,0.3856,0.2794,0.1086,-0.4272,-0.6996,-0.7714,-0.5972,-0.4778,-0.4096,-0.3856,-0.3276,-0.1366,-0.1366,0.0308,0.2798,0.3856,0.5972,0.7064,0.8122,0.8328,0.942,0.9146,0.8806,0.8054,0.8464,0.86,0.942,1,0.8908,0.9078,0.8498,0.8396,0.6484,0.5904,0.4062,-0.1366,-0.731,-0.571,-0.7528,-0.789,-0.6072,-0.6146,-0.429,-0.2764,-0.2546,0.189,0.3782,0.3746,0.629,0.869,0.8364,0.8872,1,0.8,0.8654,0.949,0.7782,0.8036,0.9128,0.9346,0.8764,0.7636,0.8582,0.8436,0.669,0.749,0.4728,0.1164,-0.0342,-1,-1,1,-0.8,-1,-1,0.1,-1,-0.4082,-0.3266,-0.0612,-0.0816,-0.0204,0.2448,0.3062,0.102,0.3266,0.1836,0.0816,0.796,0.796,1,0.2654,0.2244,0.2654,0.2858,-0.0612,-0.102,0,0.0612,0.1224,0.2654,0.551,0.102,-0.1224,0.2448,-0.204,-0.0204,-0.6326,-0.6938,'7'
-0.6828,-0.0528,0.2138,0.5954,0.5218,0.269,0.0804,-0.0206,-0.1586,-0.2414,-0.3058,-0.246,-0.269,-0.2874,-0.2,-0.154,0.0344,0.0482,0.1862,0.3656,0.7932,0.7518,0.9264,0.8666,0.839,0.761,0.9724,1,0.931,0.7518,0.7104,0.7656,-0.5992,-0.0146,0.2818,0.6618,0.549,0.3194,0.165,0.0146,-0.19,-0.3152,-0.478,-0.357,-0.1858,-0.0856,-0.2442,-0.1608,0.1064,0.165,0.2734,0.2986,0.6116,0.6158,1,0.9582,0.641,0.5992,0.8622,0.787,0.787,0.6368,0.57,0.4112,-0.5494,0.0436,0.5264,0.839,0.6644,0.2782,0.0482,0.1816,-0.2276,-0.3794,-0.3104,-0.315,-0.292,-0.2966,-0.062,-0.177,-0.2092,-0.0482,0.0574,0.3288,0.5632,0.8574,1,0.9126,0.8436,0.885,0.9264,0.862,0.8666,0.8298,0.8482,0.7242,-0.6348,-0.1168,0.5626,0.7452,0.4438,-0.0106,-0.0828,-0.1252,-0.4946,-0.5924,-0.4692,-0.5712,-0.4438,-0.4182,-0.363,-0.4352,-0.4904,-0.1252,-0.1848,0.0234,0.5498,0.6518,0.8132,0.8556,1,0.9364,0.9364,0.8514,0.9916,0.724,0.7154,0.7282,-0.6674,-0.2072,0.7904,0.9272,0.435,-0.4624,-0.1526,-0.3348,-0.303,-0.5354,-0.6128,-0.5854,-0.5946,-0.5308,-0.5398,-0.4032,-0.5536,-0.4214,-0.189,-0.1116,0.2392,0.7038,0.8452,0.9362,0.9408,1,0.9226,0.9454,0.795,0.7858,0.631,0.5672,-0.8258,-0.3404,0.4828,0.5514,-0.087,-0.562,-0.5672,-0.562,-0.5832,-0.7942,-0.6992,-0.6464,-0.504,-0.7044,-0.5462,-0.6412,-0.62,-0.4882,-0.6254,-0.2454,0.0448,0.2876,0.7308,0.9366,0.7626,0.7044,1,0.9366,0.6094,0.3614,0.4512,0.3984,-0.7798,-0.2952,0.859,1,0.0396,-0.7092,-0.2422,-0.2246,-0.26,-0.4274,-0.3568,0.0308,0.1102,0.0838,-0.3392,-0.0926,-0.0396,-0.5948,-0.4714,-0.5594,0.0748,0.4978,0.9118,0.7444,0.5594,0.6388,0.7974,0.9648,0.7974,0.5066,0.4626,0.4362,-0.6756,0.027,0.4054,0.4054,0.4594,0.4594,0.1352,-0.1352,-0.081,-0.081,-0.2972,-0.4594,-0.3514,-0.4054,-0.5676,-0.4594,-0.4054,0.027,-0.027,0.027,0.2432,0.5676,0.7298,0.7298,0.7298,0.8378,1,0.8378,0.8918,0.6756,0.4594,0.5136,-0.6862,-0.1764,0.1372,0.4902,0.3726,0.255,0.0588,-0.0588,-0.1764,-0.2942,-0.3726,-0.3726,-0.2156,-0.1372,-0.2156,-0.255,0.0196,0.1372,0.098,0.2156,0.7254,0.647,0.8824,0.5686,0.4902,0.7648,0.8432,1,0.8824,0.647,0.647,0.8824,-0.7176,-0.3882,0.553,0.6,-0.0352,-0.4352,-0.3648,-0.6236,-0.647,-0.5058,-0.5294,-0.3412,-0.5294,-0.7176,-0.6,-0.5058,-0.4588,-0.3648,-0.5764,-0.2706,0.2942,0.2706,0.553,1,0.953,0.7412,0.953,0.9764,0.553,0.4824,0.553,0.4352,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,-0.9314,-0.9,0.4314,0.7828,0.8314,0.9114,0.8772,0.7228,0.8,0.5228,-0.1,-0.54,-0.8,-0.88,-0.92,-0.9172,-0.9342,-0.94,-0.9086,-0.9342,-0.9114,-0.8714,-0.8714,-0.8628,-1,-1,-1,-1,-1,-1,-1,-1,-0.9658,-0.9566,-0.9384,0.4772,0.383,0.193,0.1954,0.1388,0.0572,-0.043,-0.2472,-0.5006,-0.7774,-0.91,-0.9442,-0.9574,-0.8266,-0.5424,0.1388,1,0.8692,0.2496,0.0088,-0.5122,-0.819,-1,-1,-1,-1,-1,-1,-1,-1,-0.9198,-0.8734,-0.83,-0.4368,-0.42,-0.55,-0.6286,-0.623,-0.5686,-0.6686,-0.6916,-0.463,-0.5486,-0.7316,-0.86,-0.8934,-0.7668,0.6132,0.7132,0.66,0.5532,0.4766,0.4232,0.3666,0.22,-1,-1,-1,-1,-1,-1,-1,-1,-0.2286,-0.6286,1,1,0.3714,-0.8286,-0.8572,-0.8858,-0.8572,-0.7714,-0.6,0,0.1428,0.9428,-0.5428,-0.2286,1,1,1,0.8,-0.6286,-0.1428,0.6,1,1,0.8188,0.838,0.8448,0.8562,0.8674,0.8634,0.8698,0.8726,0.8298,0.5946,1,1,1,1,1,1,1,1,1,0.9704,-0.7066,-0.247,-0.95,-0.5432,1,0.6274,0.3056,1,0.0392,0.2942,0.4314,0.6666,0.5098,0.6666,0.902,0.8628,0.8432,0.9216,0.8236,0.647,0.9412,0.353,0.196,0.3922,0.196,0.6666,0.353,0.2746,0.4902,0.451,0.804,0.3922,0.8236,0.2156,0.1764,0.3138,0.5098,0.647,0.353,-0.1372,0.1572,0.3962,0.4214,0.5094,0.5598,0.6856,1,0.6352,0.761,0.3836,0.849,0.4592,0.8114,0.6604,0.371,0.434,0.3836,0.2452,0.5346,0.4716,0.3584,0.585,0.3208,0.4466,0.1572,0.4716,0.5094,0.0188,0.044,-0.0314,-0.1572,-0.3584,0.018,0.0538,-0.006,0.1258,0.1138,0.533,0.6526,0.4252,0.461,0.2336,0.7844,0.3294,0.5688,0.6526,1,0.9282,0.7964,0.7844,0.4012,0.4372,0.485,0.6048,0.473,0.2216,-0.018,0.3054,0.1856,0.0778,0.1258,-0.0898,0.2216,-0.3414,-0.9766,1,-1,-1,-1,-1,-1,-1,1,-0.5946,-0.473,-0.6756,-0.3918,-0.3918,-0.0676,-0.027,-0.2162,-0.2568,-0.2432,0.2028,0.1352,0.554,0.6082,0.7162,0.6352,0.7162,1,0.7838,0.554,0.6892,0.8108,0.6756,0.6216,0.6486,0.473,0.8378,0.8108,0.581,0.1756,0.2568,-0.0136,'8'
-0.8202,-0.1906,0.0278,0.6146,0.6102,0.1134,0.0836,0.0878,0.0878,-0.1862,-0.182,-0.0792,-0.0492,-0.1092,-0.0878,0.092,0.1478,0.1306,0.1948,0.4732,0.5802,0.9528,1,0.683,0.713,0.8844,0.9058,0.6916,0.6702,0.773,0.803,0.6316,-0.7044,-0.087,0.1914,0.6478,0.5914,0.2174,0.1348,0.113,0.0044,-0.2044,-0.3218,-0.1304,-0.2696,-0.1044,-0.2218,-0.1304,-0.1,0.1044,-0.0608,0.1914,0.687,0.974,0.8478,0.7174,0.813,1,0.8348,0.9,0.8434,0.9174,0.687,0.7348,-0.693,-0.1354,0.297,0.6686,0.5676,0.1474,0.002,0.0666,-0.1272,-0.2404,-0.2808,-0.1354,-0.293,-0.1556,-0.196,-0.107,-0.0262,0.0304,0.1838,0.2162,0.693,0.7172,0.996,0.9838,0.9434,0.899,1,0.9314,0.9758,0.8748,0.8424,0.7132,-0.7048,-0.2038,0.2816,0.569,0.433,-0.3204,-0.2738,-0.1496,-0.468,-0.398,-0.4486,-0.3902,-0.4252,-0.4058,-0.2038,-0.2234,-0.1456,-0.1922,0.099,0.064,0.3748,0.732,0.965,0.8058,0.8252,0.8874,1,0.8252,0.9106,0.7398,0.7786,0.6622,-0.6992,-0.1738,0.2584,0.5212,0.3516,-0.6694,-0.445,-0.3262,-0.695,-0.644,-0.5636,-0.5636,-0.483,-0.5594,-0.4704,-0.4872,-0.2882,-0.267,-0.0974,0.0382,0.1314,0.678,0.7754,1,0.9704,0.8856,0.8432,0.9492,0.9492,0.7162,0.5806,0.7204,-0.7408,-0.2666,0.247,0.423,0.0268,-0.7212,-0.5892,-0.5452,-0.7018,-0.7556,-0.599,-0.648,-0.5942,-0.6136,-0.5892,-0.687,-0.6088,-0.56,-0.511,-0.3448,0.1296,0.2812,0.5794,0.8876,0.9854,1,1,0.8484,0.731,0.6724,0.7408,0.599,-1,-0.4566,0.014,0.1484,-0.1652,-0.6022,-0.8432,-0.7816,-0.7086,-0.8096,-0.8544,-0.591,-0.591,-0.619,-0.535,-0.647,-0.7536,-0.675,-0.4734,-0.4286,-0.0868,0.182,0.675,0.8824,0.86,0.9384,0.9832,1,0.888,0.7536,0.5238,0.563,-0.9216,-0.1764,-0.0196,0.647,0.6862,0.2156,-0.0588,0.0588,0.098,-0.255,-0.1764,-0.0588,-0.0196,-0.0588,0.0588,0.1372,0.255,0.255,0.3334,0.6862,0.9608,0.9216,0.9608,0.8824,0.9608,0.9216,1,0.9216,0.6862,0.804,0.8824,0.8432,-0.8888,-0.1482,0.037,0.6296,0.5926,0.1852,0.1482,0.1482,0.1112,-0.1112,-0.1482,0,-0.074,0,-0.074,0.1852,0.1852,0.1482,0.1482,0.5556,0.4074,0.926,1,0.7408,0.5926,0.8518,0.8518,0.5556,0.6666,0.7778,0.7038,0.4444,-0.7022,-0.2554,0.2128,0.383,0.2128,-0.766,-0.532,-0.468,-0.617,-0.617,-0.5958,-0.532,-0.5958,-0.5958,-0.468,-0.468,-0.383,-0.1064,-0.1064,-0.0852,0.2128,0.468,0.6596,0.9148,0.9148,1,0.7234,0.7234,0.8298,0.7872,0.617,0.532,-1,-1,-1,-1,-1,-1,-1,-1,-0.9532,-0.9506,-0.394,0.9246,0.9168,0.8752,0.8882,0.9844,0.948,0.7374,0.1652,-0.277,-0.3316,-0.6958,-0.9116,-0.9142,-0.9246,-0.9324,-0.948,-0.9584,-0.948,-0.9298,-0.935,-0.9246,-0.9298,-1,-1,-1,-1,-1,-1,-1,-1,-0.9618,-0.949,-0.1932,0.8222,0.8978,0.868,0.828,0.7796,0.8996,0.566,0.1242,-0.3744,-0.4818,-0.3548,-0.8646,-0.9114,-0.9422,-0.954,-0.96,-0.548,0.4528,1,0.669,0.4076,-0.2102,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.9134,-0.3534,-0.2968,-0.39,-0.4934,-0.4268,-0.2834,-0.2834,-0.3268,-0.1968,-0.2234,-0.2116,-0.1316,-0.56,-0.6068,-0.8334,-0.9334,-0.9268,0.0966,0.78,0.8,0.78,0.69,0.5666,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,-0.7714,-0.9142,-0.9142,-0.7142,-0.7428,-0.6,-0.1428,-0.4,-0.7428,1,1,0.0572,-0.0286,-0.2858,1,1,1,-0.0858,-0.7142,-0.4858,0.0572,1,1,1,1,1,1,1,1,0.9556,0.615,1,1,1,1,1,1,1,1,1,1,-0.76,-0.3176,-0.2144,0.8544,0.8212,0.8162,0.9226,1,-0.4118,0.0588,0.098,-0.1372,-0.1372,-0.2942,-0.1764,0.0196,0.098,0.4118,0.9216,0.9216,0.9216,0.9608,1,1,0.9216,0.7648,0.5686,0.6862,0.6862,0.6078,0.6078,0.451,0.2156,0.098,-0.0588,-0.1372,-0.0588,-0.098,-0.1764,-0.5294,-0.2136,0.282,0.3504,0.0598,-0.0086,-0.077,0.0428,0.077,0.077,0.3676,0.829,1,0.7948,0.8804,0.983,0.812,0.8462,0.829,0.453,0.6068,0.4872,0.4872,0.4188,0.3504,0.077,-0.0428,-0.2136,-0.2308,-0.1452,0.0086,0.0256,-0.2992,-0.2358,0.2196,0.5448,0.0406,0.0244,-0.0244,0.0406,0.1544,0.2358,0.3822,0.9024,1,0.7886,0.9024,0.8374,0.8048,0.8048,0.5122,0.3334,0.3822,0.4308,0.3008,0.3496,0.0406,-0.1056,-0.1544,-0.6586,-0.5284,-0.5934,-0.4308,-0.3658,-0.7886,1,-1,-1,1,-1,-1,-1,-0.8334,1,-0.8742,-0.5772,-0.5542,-0.6228,-0.3714,-0.5086,-0.5314,-0.2114,-0.0742,0.3142,0.2572,0.5314,0.7372,0.6228,0.8514,0.9542,0.92,1,0.6458,0.7714,0.76,0.76,0.8286,0.84,0.9086,0.8286,0.8628,0.6686,0.8058,0.6342,0.8058,0.4628,'8'
-0.766,-0.1822,-0.2136,0.1122,0.1026,0.421,0.7274,0.901,0.778,0.8022,0.737,0.7852,0.9566,0.9686,0.6792,0.667,0.5126,0.4114,0.4066,0.3318,0.4548,0.491,0.6622,0.7274,0.8238,0.9518,1,0.7852,0.7804,0.6598,0.6526,0.2882,-0.632,-0.1326,-0.1764,0.093,0.1938,0.3494,0.7634,0.8532,0.8248,0.8554,0.7634,0.7394,1,0.93,0.5816,0.4414,0.3582,0.2004,0.3472,0.2574,0.3188,0.4742,0.4918,0.7284,0.6934,0.9036,0.8226,0.702,0.5618,0.586,0.4984,0.5926,-0.6338,-0.1372,-0.1212,0.0892,0.2586,0.3752,0.8924,0.9406,0.826,0.7894,0.7574,0.6544,0.9222,0.7528,0.8444,0.5652,0.46,0.3684,0.3844,0.3456,0.2884,0.4416,0.547,0.7346,0.8696,1,0.7002,0.6796,0.6498,0.6408,0.7002,0.6362,-0.662,-0.176,-0.0282,0.155,0.4578,0.507,1,0.939,0.6738,0.5234,0.432,0.4906,0.547,0.6572,0.6924,0.8356,0.7136,0.5798,0.3944,0.4648,0.493,0.486,0.777,0.7324,0.9202,0.8146,0.8522,0.6902,0.669,0.662,0.6104,0.7066,-0.5718,0.0594,0.1844,0.4094,0.8718,0.9376,0.8968,0.8156,0.2906,0.0874,-0.2688,0.0062,0.0718,0.1156,0.2124,0.65,0.75,1,0.6876,0.6282,0.5094,0.5188,0.7624,0.75,1,0.8062,0.8406,0.4594,0.4344,0.2844,0.1562,0.1718,-0.5798,0.1328,0.1698,0.4588,0.6874,0.832,0.311,0.3142,-0.2806,-0.3984,-0.5496,-0.3614,-0.2974,-0.5126,-0.4152,-0.0488,-0.032,0.479,0.7042,0.8656,0.61,0.5596,0.6336,0.711,1,0.9866,0.8016,0.3546,0.1564,0.163,0.21,0.2436,-0.7172,0.4392,0.33,0.0024,-0.1066,0.0522,-0.211,-0.459,-0.459,-0.459,-0.593,-0.2754,-0.2208,-0.3598,-0.345,-0.4194,-0.0968,0.1514,-0.0968,0.5584,0.7172,0.6178,0.8312,0.8312,1,0.9058,0.4838,0.1066,0.0472,-0.1612,-0.067,-0.0174,-0.9556,-0.2,-0.2444,0.0666,0.0666,0.5556,0.6444,0.8222,0.9112,0.6444,0.7334,0.6,0.8222,0.6888,0.7778,0.7778,0.5556,0.5556,0.5112,0.5112,0.5556,0.6444,0.7334,0.8222,0.8222,1,0.9556,0.9112,0.8666,0.6444,0.6,0.1556,-0.7916,-0.0834,-0.0416,0.2084,0.25,0.625,0.7084,0.9166,0.8334,0.5416,0.7916,0.875,0.9166,0.7084,0.9584,0.75,0.625,0.25,0.5,0.25,0.4584,0.5,0.75,0.6666,0.6666,0.8334,1,0.7916,0.7084,0.5416,0.4166,0,-0.6104,-0.065,0.091,0.2728,0.6884,0.7142,0.948,0.8182,0.3506,0.1688,0.013,0.2208,0.1948,0.091,0.5324,0.7142,0.922,1,0.5844,0.4546,0.4806,0.6104,0.7142,0.8702,0.8702,0.974,0.922,0.6884,0.5584,0.5064,0.5324,0.5844,-1,-1,-1,-1,-1,-1,-0.9058,-0.8848,-0.9058,-0.89,-0.8376,0.377,0.7854,0.9424,0.979,0.8586,0.8376,0.4974,0.3194,0.1518,-0.178,-0.576,-0.8796,-0.9162,-0.8796,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9762,-0.9634,-0.972,-0.9296,-0.9528,0.4906,0.7836,0.9134,0.697,0.4422,0.08,-0.4144,-0.6814,-0.7372,-0.8522,-0.9226,-0.9656,-0.9738,-0.9704,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.953,-0.9134,-0.8534,-0.7734,-0.7,-0.4656,-0.4764,-0.5284,-0.5934,-0.555,-0.635,-0.6018,-0.6568,-0.73,-0.6968,-0.5868,-0.6868,-0.9734,-0.9468,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4286,-0.9428,-0.7428,-0.7714,1,1,-0.9428,-1,-1,-0.9428,-0.6286,-0.0286,-0.4,-0.7714,-0.4572,-0.7428,-0.8,-0.8286,-0.3428,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.1524,-0.1346,-0.132,-0.117,-0.1194,-0.1458,-0.1506,-0.1606,-0.1482,0.16,-0.6934,0.4118,-0.954,-0.315,0.3172,0.6848,0.8,1,0.2228,0.2954,0.4716,0.3886,0.658,0.7098,0.917,0.8964,0.969,0.4404,0.9068,0.8964,0.8446,0.7824,0.4404,0.4922,0.7306,0.6788,0.627,0.7616,0.741,0.741,0.6062,0.6994,0.5648,0.6892,0.917,0.627,0.544,0.6892,0.3782,-0.3056,0.0462,-0.1794,0.3026,0.518,0.8462,0.6102,0.7538,0.8052,0.8154,0.5282,0.4256,0.3128,0.9282,0.8666,0.6206,0.5384,0.5488,1,0.682,0.9898,0.7846,0.9898,0.5692,0.723,0.6102,0.8154,0.6308,0.7436,0.9488,0.959,0.4358,-0.3128,-0.2906,-0.5042,0.359,0.359,0.4786,0.0684,0.7264,0.906,0.5898,0.2736,0.5556,0.5898,0.8206,1,0.8804,0.9572,0.812,0.1282,0.2394,0.1794,0.282,0.265,0.1452,0.2992,0.0598,0.2478,0.3334,0.1794,0.453,0.376,0.1282,-0.4786,-0.9954,1,-1,-1,-1,-1,-1,-1,-1,-0.2292,0.0208,0.1458,-0.0416,-0.1876,-0.1666,-0.0834,0.2084,0.2292,0.3542,0.8958,0.9792,1,0.5624,0.4792,0.3542,0.5416,0.3542,0.1042,0.3124,0.0624,0.1876,0.3334,-0.1458,0.2708,0.25,0.625,0.5208,0.1042,0.3958,0.4166,0.1666,'9'
-0.7424,-0.0572,-0.0706,0.1466,0.1266,0.5498,0.6282,0.935,0.8612,0.7894,0.738,1,0.9014,0.8522,0.5946,0.355,0.225,0.2654,0.2386,0.2586,0.1422,0.2408,0.4334,0.467,0.5768,0.7156,0.897,0.9014,0.7022,0.6752,0.5722,0.561,-0.6022,-0.0514,-0.1038,0.165,0.283,0.495,0.8536,1,0.7378,0.8274,0.952,0.9978,0.7684,0.7726,0.5256,0.4798,0.3442,0.2438,0.3334,0.1956,0.2416,0.2568,0.4316,0.4688,0.5934,0.871,0.9476,0.6678,0.6744,0.6044,0.5912,0.5454,-0.5854,-0.065,-0.0894,0.1268,0.259,0.3672,0.9604,1,0.795,0.7508,0.936,0.8236,0.9978,0.8126,0.6208,0.3252,0.3848,0.345,0.3252,0.3384,0.2524,0.4266,0.3936,0.5634,0.8942,0.9846,0.7288,0.656,0.6912,0.6208,0.5898,0.5148,-0.6394,-0.1956,-0.023,0.1454,0.305,0.4688,1,0.9562,0.589,0.4732,0.4754,0.5694,0.6568,0.858,0.882,0.7202,0.6524,0.447,0.3464,0.4644,0.4164,0.447,0.6918,0.6524,0.8908,0.7398,0.8536,0.6918,0.7552,0.6502,0.6416,0.6066,-0.6754,-0.2458,0.0358,0.16,0.6276,0.5918,0.5466,0.401,0.1742,0.0884,0.0668,0.0526,0.0884,0.2292,0.3556,0.358,0.7304,0.8712,0.79,0.4798,0.5704,0.6754,0.6134,0.8282,1,0.9952,0.7828,0.6992,0.685,0.642,0.6158,0.6754,-0.6382,-0.158,0.1732,0.4072,0.8936,0.7508,0.0548,-0.0092,-0.006,-0.3344,-0.4924,-0.4104,-0.304,-0.2918,-0.2462,-0.2492,-0.1186,0.1306,0.3648,0.5046,0.7964,0.7994,0.6322,0.617,0.7356,1,0.927,0.6444,0.4042,0.465,0.4408,0.3738,-0.242,0.8538,0.6758,0.3972,0.2192,0.2832,-0.0684,-0.0594,-0.7032,-0.8812,-0.6302,-0.3744,-0.5206,-0.3516,-0.1004,-0.2694,-0.2832,-0.2694,-0.1964,0.032,0.685,0.936,1,0.8538,0.9132,0.9954,0.9864,0.6074,0.3608,-0.105,0.073,0.1736,-0.7778,0.0222,0.1112,0.2,0.3778,0.6,1,1,0.8666,0.7778,0.8666,0.9112,0.9112,0.9112,0.5556,0.4222,0.2444,0.3334,-0.1112,0.2,0.0222,0.2,-0.1112,0.5556,0.4222,0.6888,0.3778,0.9556,0.7778,0.6,0.5112,0.7334,-0.8462,-0.1538,-0.1538,0.1154,0.1154,0.4616,0.5384,0.7692,0.8076,0.5,0.6924,0.9616,1,0.6538,0.577,0.3076,0.1924,0.1154,0.3462,0.2308,0.077,0.2308,0.5384,0.4616,0.6154,0.577,0.8462,0.8076,0.6538,0.7308,0.577,0.1538,-0.5774,-0.183,0.1268,0.4366,1,0.831,0.2676,0.1268,0.0986,-0.0704,-0.2112,-0.4084,-0.1268,-0.2112,0.0422,0.2676,0.324,0.4084,0.662,0.8028,0.831,0.8028,0.8028,0.6056,0.8874,0.7746,0.6902,1,0.8028,0.4648,0.8592,0.7184,-1,-1,-1,-1,-1,-1,-1,-0.914,-0.914,-0.8998,-0.37,0.4702,0.661,0.8616,0.79,0.8234,0.8998,0.6658,0.5848,0.2792,-0.0788,-0.2362,-0.6372,-0.8378,-0.9188,-0.9284,-0.914,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9634,-0.9758,-0.946,-0.2214,0.4858,0.384,0.6032,0.5134,0.5024,0.3552,0.0118,-0.3982,-0.697,-0.8082,-0.8742,-0.9282,-0.9428,-0.9528,-0.9596,-0.967,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.75,-0.9134,-0.68,-0.2934,-0.47,-0.4968,-0.5418,-0.515,-0.5884,-0.4834,-0.3968,-0.485,-0.5118,-0.6786,-0.72,-0.5068,-0.4134,-0.2734,-0.6534,-0.8,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.0286,-0.7714,1,1,1,-0.9428,-0.9714,-0.9428,-0.9714,-0.6,-0.5428,-0.5142,-0.3428,-0.2286,-0.5428,-0.6572,-0.8,-0.8572,-0.7428,-0.3714,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.3238,-0.3146,-0.2944,-0.2764,-0.2652,-0.2292,-0.2082,-0.1658,-0.198,0.2076,-0.7066,0.4588,-0.0862,-0.1968,0.2976,1,0.6006,0.7334,-0.3514,-0.1352,0.045,0.5316,0.6396,0.6036,0.91,0.6936,0.3514,0.3154,0.2972,0.4954,0.8378,0.946,1,0.91,0.6036,0.2612,0.3334,0.081,-0.1352,-0.1532,-0.4054,-0.3694,-0.4774,-0.3694,-0.1892,-0.1712,-0.063,-0.1712,-0.1892,-0.5856,-0.4736,-0.1158,0.0316,0.7474,0.7684,0.6422,0.9368,0.4736,0.1368,0.1368,0.0316,0.1158,0.8526,1,0.7264,0.7684,0.6,0.3052,0.4106,-0.0948,-0.3894,-0.3474,-0.4736,-0.5578,-0.5578,-0.5578,-0.221,-0.0526,0.0316,-0.0106,-0.3052,-0.9368,0.0244,0.2196,0.5448,0.8536,1,0.9512,0.9674,0.87,0.3658,0.3658,0.3984,0.5122,0.756,0.8536,0.8048,0.5934,0.691,0.5448,0.6098,0.2846,0.2358,0.1544,0.1056,-0.2032,-0.2032,-0.1382,-0.1056,0.1544,0.3334,0.2846,-0.0894,-0.5934,0.7572,-1,-1,1,-1,-1,-1,-0.8,-1,-0.4822,-0.4822,-0.3928,0.0536,-0.0178,-0.0536,-0.0178,0.25,0.0358,0.1072,0.5178,0.6072,0.5178,0.5,0.1072,0.375,0.5178,0.4108,-0.0178,0.0714,-0.3036,-0.3214,0.0178,-0.0178,0.4464,0.8214,1,0.5714,0.4286,0.5714,-0.0892,-0.5178,'9'
-0.581,0.1396,0.1492,0.6254,0.638,-0.073,-0.0984,-0.054,-0.0572,-0.2858,-0.2794,-0.1428,-0.1016,0.0318,0.0826,0.1904,0.2476,0.6508,0.7302,0.9016,1,0.7112,0.8126,0.8032,0.9334,0.7238,0.7746,0.6,0.7588,0.6412,0.8572,0.7048,-0.5828,-0.073,0.1506,0.4634,0.3442,0.4366,0.237,0.1058,-0.07,-0.064,-0.1952,-0.1564,-0.0224,-0.0104,0.1416,0.2488,0.371,0.6184,0.7288,0.8898,0.8956,0.8152,0.7824,0.8838,0.9076,1,0.8808,0.86,0.7854,0.7914,0.848,0.848,-0.6152,-0.1662,0.0642,0.239,0.5568,0.6384,0.2216,0.0758,0.1138,0.0438,-0.0962,-0.102,0.038,0.0932,0.1574,0.2944,0.2886,0.5918,0.726,0.9912,0.8484,0.8164,0.8426,0.9068,0.9884,0.9854,1,0.9126,0.8746,0.7172,0.793,0.7026,-0.692,-0.2616,0.1032,0.2706,0.6264,0.689,0.2048,0.0554,0.13,0.0344,-0.145,-0.124,-0.0284,-0.0314,-0.0074,0.2048,0.154,0.417,0.8536,0.988,0.7908,0.8416,0.9074,0.8834,0.991,0.8954,1,0.8296,0.8506,0.7908,0.8236,0.8266,-0.6928,-0.2852,0.1568,0.301,0.652,0.6834,0.0282,-0.0658,-0.0126,-0.1912,-0.1786,-0.094,-0.0878,-0.0722,-0.141,0.047,0.279,0.373,0.7774,0.7774,0.859,0.7774,0.8808,0.8464,0.9278,1,0.9874,0.7712,0.7336,0.7398,0.7022,0.7586,-0.695,-0.2678,0.2542,0.3628,0.8204,0.7662,-0.1016,-0.1492,-0.0542,-0.244,-0.305,-0.261,-0.2746,-0.1932,-0.0576,-0.1016,0.1186,0.3796,0.461,0.9118,0.8712,0.8306,0.7966,0.8746,1,0.956,0.895,0.6916,0.6576,0.6882,0.6406,0.6644,-0.664,0.0698,0.6486,0.8966,0.783,0.8346,0.0852,-0.0904,-0.3282,-0.5504,-0.5866,-0.4728,-0.4006,-0.3074,-0.3334,-0.3592,-0.2662,-0.1938,0.1834,0.385,0.628,0.7674,0.7726,0.69,0.8656,1,0.571,0.1938,0.4264,0.3024,0.3488,0.3644,-0.5834,0.125,0.125,0.3334,0.375,-0.2084,-0.25,-0.2084,-0.125,-0.3334,-0.4166,-0.2916,-0.2916,-0.2084,-0.25,-0.125,0.0416,0.5416,0.625,0.875,0.9584,0.7084,0.7084,0.5416,0.7916,0.75,0.25,0.2084,0.6666,0.5416,1,0.9584,-0.6,0.16,0.2,0.6,0.6,-0.12,-0.16,-0.16,-0.16,-0.24,-0.24,-0.12,-0.08,0,0.12,0.12,0.24,0.6,0.64,0.88,1,0.68,0.84,0.84,1,0.84,0.84,0.68,0.76,0.68,0.84,0.68,-0.6924,-0.2748,0.1648,0.2748,0.7582,0.7362,-0.055,-0.1648,-0.055,-0.2308,-0.2528,-0.2308,-0.1868,-0.1428,0.033,0.033,0.2088,0.3406,0.4286,0.912,0.912,0.7362,0.8022,0.8902,1,0.956,0.912,0.8022,0.7582,0.6924,0.6704,0.7802,-1,-1,-0.6838,-0.7302,-0.861,-0.8798,-0.943,-0.9642,-0.9558,-0.7808,-0.2076,0.471,0.8926,0.2392,0.1064,0.2688,0.3278,0.058,0.0812,-0.1086,-0.4078,-0.5616,-0.6122,-0.6606,-0.7324,-0.8482,-0.9072,-0.943,-0.9558,-0.962,-1,-1,-1,-1,-1,-0.9042,-0.9184,-0.9532,-0.956,-0.827,-0.5572,-0.0064,-0.1572,-0.3814,0.051,0.3264,0.8584,0.9648,0.9538,0.7526,0.4768,0.1688,-0.2156,-0.6216,-0.8094,-0.7406,-0.8242,-0.898,-0.9372,-0.9532,-0.9228,-0.9604,-0.9604,-1,-1,-1,-1,-1,-0.9652,-0.9468,-0.8968,-0.93,-0.28,0.76,0.7832,0.6966,-0.2068,-0.455,-0.585,-0.4176,-0.34,-0.3726,-0.425,-0.469,-0.4934,-0.6178,-0.7912,-0.8956,-0.81,-0.77,-0.7734,-0.81,-0.7634,-0.52,-0.8268,-0.6668,-1,-1,-1,-1,-1,-0.1714,-0.9142,-0.9428,1,1,1,1,1,1,1,-0.5714,-0.6572,-0.9428,-0.7428,-1,-0.9142,-0.7428,-0.2286,0.2858,-0.2572,-0.8858,-0.3714,-0.5714,-0.8858,-0.7428,-0.7428,-0.8858,-0.6,-1,-1,-1,0.4962,0.5256,0.5526,0.6034,0.657,0.7118,0.796,0.8904,1,1,0.7588,0.753,0.7748,0.74,0.756,0.7632,0.7636,0.8094,0.8472,0.8706,-0.7066,-0.0236,-0.3952,-0.1232,0.0224,0.1688,0.246,1,-0.5496,-0.661,-0.54,-0.443,-0.2446,-0.201,-0.08,-0.075,-0.0702,0.1284,0.2736,0.1284,0.414,0.5448,0.845,0.8498,0.9516,1,0.9806,0.8256,0.8112,0.7772,0.8208,0.8208,0.7434,0.9758,0.7628,0.7772,0.695,0.569,0.3076,-0.0314,-0.8424,-0.8754,-0.707,-0.5348,-0.4578,-0.4542,-0.3772,-0.3406,-0.0622,0.2234,0.2858,0.4322,0.5898,0.8352,0.762,0.9084,0.9854,1,0.7472,0.8132,0.8352,0.8278,0.8682,0.8792,0.8462,0.9158,0.8608,0.7912,0.7472,0.6704,0.5642,-0.1466,-0.0744,0.1388,0.0422,-0.332,-0.4084,-0.4768,-0.32,-0.1428,0.0704,0.4286,0.5856,0.6218,0.7384,0.8954,0.839,1,0.7546,0.7142,0.6498,0.4326,0.4164,0.2958,0.4044,0.4688,0.493,0.3924,0.344,0.348,0.2838,0.0824,0.1348,-0.2234,-0.6882,-1,-1,1,-0.2,0,0,0,-1,-0.301,-0.1844,-0.0098,-0.0098,-0.2234,-0.2234,-0.1068,-0.1844,0.1262,0.2622,0.8058,0.9224,1,0.7282,0.3204,0.4174,0.631,0.3592,-0.165,0.4368,0.3786,0.2234,0.4174,0.3592,0.165,0.3592,0.4174,0.3398,0.0098,0.3398,0.0098,-0.398,'10'
-0.6326,0.0016,0.077,0.6264,0.595,0.0078,-0.08,-0.1398,-0.2842,-0.2998,-0.3972,-0.2654,-0.2558,-0.1428,-0.1334,0.1114,0.2276,0.526,0.642,0.8776,0.8398,0.7864,0.8304,0.8776,0.9592,0.9718,1,0.8274,0.912,0.8712,0.9686,0.8902,-0.6382,-0.1718,0.0852,0.2856,0.3394,0.453,0.1062,0.0792,-0.0792,-0.127,-0.1062,-0.2138,-0.1002,-0.0852,0.0284,0.1002,0.142,0.5576,0.5576,0.7848,0.71,0.7638,0.6174,0.74,0.9074,1,0.8416,0.8476,0.8924,0.8386,0.713,0.5994,-0.6822,-0.2102,-0.0338,0.159,0.5024,0.6052,0.1814,-0.0112,-0.0498,-0.1204,-0.1044,-0.2584,-0.1524,-0.008,0.0722,0.1332,0.1332,0.5152,0.512,0.8556,0.7368,0.8652,0.724,0.7978,0.9004,0.907,1,0.9422,0.9036,0.772,0.7046,0.528,-0.7558,-0.3202,0.076,0.2376,0.5578,0.6204,0.0594,0.0298,-0.0462,-0.1584,-0.2442,-0.2838,-0.1948,-0.1386,-0.1354,0.0298,-0.0628,0.165,0.604,0.736,0.7986,0.8382,0.792,0.7492,0.8548,0.825,1,0.7128,0.7492,0.5974,0.5776,0.571,-0.781,-0.3102,0.2262,0.3832,0.6824,0.697,0.0256,-0.0912,-0.0438,-0.3212,-0.4198,-0.2738,-0.3322,-0.2408,-0.3248,-0.1058,0.0694,0.1094,0.5,0.6204,0.9744,0.792,0.8066,0.8322,0.8394,1,0.9198,0.7554,0.624,0.624,0.4782,0.4416,-0.7094,-0.2104,0.4404,0.5922,0.744,0.7266,0.063,-0.102,-0.1974,-0.5402,-0.5054,-0.3796,-0.4794,-0.6226,-0.2364,-0.1714,-0.2972,-0.0498,0.206,0.6616,0.796,0.8568,0.8048,0.8308,0.8568,1,0.7658,0.8004,0.5488,0.3796,0.3536,0.2842,-0.7734,-0.2808,0.5812,0.6798,0.463,0.34,-0.128,-0.3202,-0.3646,-0.6848,-0.7636,-0.734,-0.5222,-0.4334,-0.5862,-0.5566,-0.4778,-0.4434,-0.1922,0.0986,0.5024,0.872,0.8866,0.6848,0.798,1,0.7488,0.4926,0.133,-0.0296,-0.0098,0.064,-0.4828,0.1724,0.1724,0.4828,0.4828,0,-0.069,-0.138,-0.1034,-0.4138,-0.3794,-0.069,-0.069,-0.0344,0.0344,0.138,0.2758,0.5172,0.6206,0.7932,0.8966,0.6896,0.8276,0.7932,0.931,0.8276,0.931,0.7932,0.8966,0.7932,1,0.931,-0.6326,0.0204,0.0204,0.5918,0.551,-0.102,-0.1836,-0.347,-0.5102,-0.3878,-0.4286,-0.1836,-0.1836,-0.1428,-0.1428,0.1836,0.2244,0.551,0.551,0.9592,0.9592,0.7552,0.8368,0.9592,1,0.9592,1,0.8776,0.9592,0.8776,1,0.8368,-0.7284,-0.2098,0.3086,0.4568,0.7778,0.753,-0.0124,-0.2346,-0.0124,-0.4814,-0.4814,-0.1852,-0.358,-0.284,-0.1112,-0.1112,-0.037,0.0864,0.2592,0.926,1,0.753,0.7038,0.8024,0.8766,0.9012,0.8518,0.7778,0.7284,0.5062,0.432,0.4568,-1,-1,-1,-1,-0.713,-0.818,-0.94,-0.955,-0.9528,-0.7858,-0.2592,0.471,0.5524,-0.1734,-0.2506,-0.2634,-0.2292,-0.2956,-0.289,-0.4282,-0.5182,-0.6232,-0.681,-0.7558,-0.8522,-0.9464,-0.9486,-0.9614,-0.9444,-1,-1,-1,-1,-1,-1,-1,-1,-0.8978,-0.9328,-0.746,-0.5586,0.0294,-0.092,-0.1638,0.4778,0.757,0.3602,0.189,0.0676,-0.0656,-0.2362,-0.2814,-0.5134,-0.6944,-0.7744,-0.8352,-0.8908,-0.9238,-0.9516,-0.9496,-0.8908,-0.9592,-1,-1,-1,-1,-1,-1,-1,-1,-0.95,-0.9434,-0.1968,0.65,0.63,0.5932,-0.0668,-0.3526,-0.475,-0.3276,-0.2926,-0.375,-0.39,-0.4676,-0.51,-0.6134,-0.7424,-0.709,-0.71,-0.67,-0.4934,-0.62,-0.6534,-0.58,-0.7534,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,-0.6858,-0.9428,-1,-0.8858,-0.8858,-0.9428,-0.8858,-0.5142,-0.6858,-0.6286,-0.6286,-0.7142,-0.8,-0.7714,-0.6286,-0.7142,-0.0286,-1,-1,-1,-1,0.5522,0.586,0.6256,0.6888,0.7418,0.8042,0.8706,0.9636,1,1,0.8812,0.883,0.8778,0.8696,0.9038,0.9074,0.9266,0.9312,0.9446,0.9378,-0.7066,-0.047,-0.178,0.1238,0.392,0.7332,0.9522,1,-0.6476,-0.4524,-0.4334,-0.3428,-0.4142,-0.2572,-0.0952,-0.0858,-0.0572,0.1904,0.3096,0.3238,0.3,0.5952,0.8476,0.9858,1,0.9476,0.8524,0.6714,0.7048,0.6,0.4286,0.6286,0.638,0.5572,0.6096,0.6428,0.519,0.5428,0.3572,-0.1476,-0.8586,-0.779,-0.7246,-0.6014,-0.6666,-0.5182,-0.4094,-0.337,-0.1558,0.0254,0.1014,0.4312,0.6414,0.7536,0.7246,1,0.9058,0.7572,0.7392,0.8188,0.6086,0.5434,0.7682,0.6956,0.6884,0.6666,0.6522,0.6522,0.6812,0.5616,0.308,-0.116,-0.1884,0.0174,0.0292,-0.433,-0.3942,-0.5068,-0.3514,-0.2466,-0.0136,0.3942,0.5456,0.6388,0.8174,1,0.7514,0.8252,0.767,0.468,0.2582,0.3514,0.3204,0.3708,0.3592,0.3166,0.134,0.4796,0.433,0.2,0.169,0.068,0.0602,-0.3048,-0.3358,-1,-1,1,-0.2,0.4,-0.6,0,-1,-0.2264,-0.132,-0.0754,-0.0754,-0.151,-0.434,-0.0378,-0.2642,-0.2452,-0.151,0.132,0.5094,1,0.9434,-0.0754,-0.1886,-0.0754,-0.0378,-0.0378,-0.283,-0.585,-0.2452,-0.4528,-0.4906,-0.434,-0.3962,-0.3774,-0.3208,-0.7358,-0.3396,-0.2452,-0.3774,'10'
-0.6992,0.083,0.1404,0.467,0.576,0.3582,0.4126,0.232,0.2406,0.0488,-0.0488,0.0974,0.1462,0.086,0.1518,0.1776,0.3696,0.3524,0.5988,0.7966,0.9198,0.871,0.9112,0.9256,0.9942,1,0.9914,0.9656,0.8854,0.917,0.7822,0.8052,-0.6776,-0.1036,-0.0276,0.4234,0.3682,0.5884,0.5256,0.3212,0.2398,-0.114,-0.1586,0.1796,0.0774,-0.059,0.017,0.2818,0.2032,0.4076,0.6828,1,0.9108,0.7378,0.7904,0.9922,0.9344,0.924,0.903,0.8978,0.8532,0.7982,0.7824,0.7824,-0.6352,-0.1452,0.0918,0.3476,0.5126,0.6672,0.4088,0.2224,-0.0866,-0.0706,0.0786,0.0492,0.028,-0.012,0.217,0.177,0.2596,0.5286,0.7204,0.8562,0.9334,0.8216,0.8722,0.9308,0.9122,1,0.9946,0.9254,0.8136,0.755,0.763,0.6644,-0.6804,-0.3324,0.0824,0.1932,0.5798,0.585,-0.0052,-0.103,-0.0798,-0.103,-0.0774,-0.0336,-0.0722,-0.0078,0.0928,0.1676,0.2758,0.415,0.7062,0.884,0.8738,0.8016,0.8428,0.8608,0.9458,1,0.9922,0.8712,0.8298,0.8222,0.8274,0.8118,-0.6914,-0.3102,0.2134,0.286,0.643,0.5582,-0.0892,-0.2466,-0.2344,-0.2618,-0.3252,-0.2012,-0.177,-0.171,0.0226,-0.0288,0.0742,0.3888,0.5552,0.9092,0.8396,0.9486,0.894,0.876,1,0.9032,0.9788,0.6854,0.7276,0.7186,0.643,0.7004,-0.5634,-0.123,0.3968,0.488,0.246,-0.0318,-0.127,-0.5198,-0.4842,-0.496,-0.5556,-0.5516,-0.512,-0.512,-0.4126,-0.381,-0.1428,-0.1706,0.0476,0.4206,0.8056,0.881,0.873,0.8888,1,0.9722,0.7738,0.4802,0.3968,0.4126,0.385,0.4524,-0.3808,0.2284,-0.1066,-0.5026,-0.2792,-0.3452,-0.4568,-0.5686,-0.599,-0.6548,-0.7208,-0.7006,-0.6092,-0.5634,-0.6752,-0.6498,-0.4772,-0.4468,-0.6244,-0.1574,0.198,0.7006,0.8832,0.9036,1,0.9544,0.4518,-0.3096,-0.2994,-0.203,-0.1218,-0.0812,-0.7714,0.3142,0.4858,0.2572,0.6572,0.4858,0.1428,0.1428,-0.0858,-0.5428,-0.2572,-0.3142,-0.3714,-0.5428,-0.2572,-0.2,-0.2572,-0.3714,-0.0286,0.4858,0.4858,0.7142,0.8858,0.7714,0.8858,0.6572,0.8858,1,0.2572,0.7714,0.6,0.4858,-0.8604,-0.0698,0.0232,0.3024,0.5814,0.3488,0.3024,0.1162,-0.0232,-0.0232,-0.2558,-0.0698,-0.0698,0.0698,-0.1162,0.3024,0.3488,0.4884,0.628,0.8604,0.907,0.6744,1,0.9534,0.907,0.907,0.8604,0.8604,0.721,0.8604,0.6744,0.628,-0.7884,-0.4616,0.0384,0.25,0.6346,0.577,-0.1154,-0.1924,-0.1154,-0.2308,-0.3076,-0.173,-0.173,-0.077,-0.0576,0.0384,0.1924,0.4808,0.577,0.8846,0.8462,0.7692,0.8076,0.8654,0.8846,0.827,1,0.8654,0.8076,0.8076,0.7692,0.7308,-1,-1,-1,-1,-0.959,-0.9538,-0.9564,-0.905,-0.8434,-0.8716,-0.5584,0.5224,0.602,0.5354,0.6766,0.5816,0.905,0.4018,-0.2528,-0.3992,-0.6072,-0.7432,-0.8202,-0.8922,-0.9332,-0.946,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9852,-0.9848,-0.814,-0.7424,-0.6286,-0.8274,-0.751,-0.025,0.7554,0.5916,0.4912,0.6458,0.9448,-0.072,-0.5828,-0.7258,-0.9114,-0.9322,-0.9474,-0.967,-0.9714,-0.9734,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.9734,-0.6568,0.31,0.7066,0.49,0.2632,-0.3556,-0.2,-0.32,-0.3156,-0.209,-0.2156,-0.349,-0.4624,-0.549,-0.642,-0.576,-0.4934,-0.4334,-0.7468,-0.62,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,0.6858,1,1,0.7714,-0.1142,1,1,-0.0286,-0.7714,-0.9428,-0.9714,0.1142,1,-0.5142,1,1,-0.8572,-0.9428,-0.9142,-0.7428,-0.7428,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.9062,0.9134,0.9286,0.9216,0.9322,0.9196,0.887,0.871,0.896,0.938,0.908,-0.6666,0.0706,-0.742,-0.6902,-0.187,0.2996,0.8754,1,-0.5744,-0.461,-0.1536,-0.149,-0.0732,-0.1394,0.0732,0.1158,0.1868,0.3664,0.461,0.6926,0.8486,0.8298,0.896,1,0.9244,0.5602,0.584,0.5366,0.5602,0.4894,0.6312,0.6076,0.461,0.39,0.4326,0.4374,0.2388,0.0828,0.1726,-0.1158,-0.9162,-0.5308,-0.3854,-0.1732,-0.1676,-0.2234,-0.2234,-0.095,0.028,-0.0558,0.5922,0.715,0.715,0.9832,1,0.9664,0.8548,0.7654,0.7822,0.6816,0.5922,0.7094,0.9498,0.9386,0.9554,0.9442,0.7932,0.6872,0.6536,0.514,0.6984,0.257,-0.6196,-0.3522,-0.2596,-0.2648,-0.27,-0.5218,-0.455,-0.2854,-0.1466,0.27,0.5322,0.7686,0.8868,0.9228,1,0.9332,0.6504,0.8098,0.4294,0.3162,-0.0796,0.054,0.5886,0.7532,0.8766,0.6606,0.491,0.4448,0.4808,0.4036,0.5578,0.1774,-0.396,-1,-1,1,-0.6,-1,-1,-0.0666,-1,-0.0328,0.164,-0.1148,0.2132,0.1968,-0.1476,0,0.3114,0.0984,0.377,0.5574,0.5738,1,0.8524,0.4426,0.082,0.4426,0.6394,0.082,0.0492,0.1312,0.459,0.3934,0.4918,0.3606,0.0492,0.3934,0.4262,0.3934,0.5082,0.3934,-0.705,'11'
-0.821,-0.034,0.0092,0.3672,0.4444,0.4044,0.5246,0.176,0.108,-0.1882,-0.1204,-0.1512,0.0062,0.0062,0.1112,0.0864,0.179,0.3024,0.6018,0.7284,0.9444,1,0.9476,0.9104,0.9846,0.9814,0.9568,0.8396,0.7562,0.7592,0.6574,0.6482,-0.6584,-0.0854,-0.0358,0.394,0.3498,0.6776,0.584,0.2122,0.0854,0.0414,-0.0798,-0.0028,-0.0964,0.0882,0.0386,0.0798,0.2286,0.438,0.6666,0.821,0.9008,0.956,0.9696,0.9862,0.9504,0.967,1,0.9146,0.865,0.7576,0.7162,0.6528,-0.616,-0.1138,0.1276,0.3196,0.6516,0.7586,0.3444,-0.0014,0.144,0.0836,-0.1632,-0.1412,0.0178,-0.1138,0.0096,0.1138,0.155,0.4294,0.5528,0.808,0.9012,1,0.871,0.8792,0.9562,0.9862,0.9616,0.8766,0.8382,0.7504,0.69,0.6324,-0.6504,-0.2196,0.186,0.3342,0.6028,0.6308,0.0798,0.0126,-0.0098,-0.1916,-0.2112,-0.1412,-0.1384,-0.13,-0.214,-0.0798,0.0434,0.144,0.516,0.5804,0.9608,0.8938,0.8434,0.7482,0.8434,1,1,0.8714,0.765,0.7342,0.6084,0.6672,-0.6046,-0.025,0.5778,0.7774,0.8272,0.8542,0.3628,0.2322,0.0134,-0.3166,-0.4242,-0.1132,-0.1632,-0.2552,-0.4548,-0.24,-0.0442,0.0172,0.0556,0.5662,1,0.8734,0.739,0.5124,0.4664,0.6968,0.716,0.7044,0.3742,0.3742,0.4088,0.4126,-0.5248,0.1718,0.6564,0.887,0.6,0.6188,0.1342,-0.0918,-0.5012,-0.7224,-0.8542,-0.8164,-0.5858,-0.4918,-0.5058,-0.4636,-0.3836,-0.3552,-0.2706,0.0964,0.3364,0.9482,0.9718,0.6894,0.727,1,0.8448,0.6848,0.3036,0.1012,0.0824,0.0964,-0.4084,0.6112,0.4592,-0.617,-0.5774,-0.4816,-0.583,-0.538,-0.4874,-0.8422,-0.6958,-0.7464,-0.5606,-0.4366,-0.4422,-0.5324,-0.4536,-0.538,-0.4986,-0.155,0.2226,0.7408,0.8874,0.8648,0.786,0.9944,1,0.4816,-0.1042,-0.0592,-0.1774,-0.324,-0.591,0.3636,0.4546,0.409,0.5454,0.409,0.5454,0.5,-0.091,-0.3636,-0.409,0,-0.091,0,-0.3182,-0.2272,0.091,0.091,0.4546,0.6364,0.6818,0.9546,1,0.9546,0.909,0.5454,0.7272,0.6364,0.7272,0.2728,0.2272,0.3636,-0.796,-0.0204,0.0204,0.3878,0.5102,0.3062,0.4286,0.1836,0.1836,0.0612,-0.0612,-0.0612,-0.0204,0.102,0.2244,0.3062,0.1836,0.3878,0.3062,0.7142,0.551,0.9592,1,0.796,0.9184,0.8776,1,0.6326,0.8368,0.6326,0.6734,0.5918,-0.6578,-0.1052,0.4474,0.6578,0.8158,0.8158,0.3158,0.1316,-0.0526,-0.3158,-0.2368,-0.1316,-0.2894,-0.3422,-0.1316,0.0264,-0.1842,0,0.4474,0.6842,0.8948,0.9736,1,0.7632,0.7368,0.7368,0.6842,0.8158,0.6578,0.3422,0.3948,0.4474,-1,-1,-1,-1,-0.917,-0.9358,-0.8114,-0.834,-0.8416,-0.8754,-0.6452,0.3962,0.449,0.732,0.9736,0.8226,0.7246,0.5094,0.0528,-0.0604,-0.332,-0.5056,-0.6944,-0.8944,-0.9246,-0.9396,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9722,-0.9762,-0.6694,-0.593,-0.678,-0.729,-0.7568,0.0584,0.9074,0.6914,0.4232,0.2346,0.1002,-0.2466,-0.6988,-0.7516,-0.8304,-0.8922,-0.9248,-0.9508,-0.9588,-0.9612,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.9334,0.2666,0.6866,0.56,0.2466,0.0866,-0.4268,-0.3156,-0.4534,-0.4378,-0.3424,-0.2756,-0.5046,-0.9226,-0.8862,-0.8422,-0.8202,-0.7256,-0.5922,-0.8656,-0.7422,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,1,1,1,-0.1714,-0.1428,1,1,-0.3142,-0.8858,-0.9142,-0.9714,-0.8286,0.8286,0.7428,-0.6,-0.5428,-0.6,-0.9142,-0.8286,-0.9428,-0.9428,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.9484,0.8158,0.8436,0.8744,0.889,0.9248,0.9026,0.92,0.9358,0.979,0.8936,-0.6934,0.0942,-0.7528,-0.656,-0.2136,0.513,0.8414,1,-0.7524,-0.5,-0.1408,-0.0826,-0.0534,0.0098,-0.0632,0.0146,0.1942,0.1504,0.4418,0.665,0.7766,0.9418,0.9466,1,0.9368,0.8544,0.864,0.9758,0.9174,0.7912,0.7962,0.7476,0.7912,0.9368,0.7428,0.6116,0.4902,0.5146,0.2136,-0.1748,-0.8654,-0.6148,-0.2204,-0.2112,-0.2158,-0.3596,-0.2762,-0.1694,-0.1136,0.007,0.4664,0.7588,0.8052,0.8284,1,0.7726,0.754,0.768,0.7726,0.8608,0.652,0.5082,0.689,0.6102,0.7772,0.8422,0.7958,0.717,0.3226,0.341,0.3458,0.225,-0.6594,-0.524,-0.1398,0.3188,0.1222,-0.2532,-0.1048,-0.1528,0.1222,0.4454,0.8296,0.9912,1,0.9344,0.8472,0.751,0.559,0.7248,0.6158,0.6114,0.4192,-0.035,0.297,0.4804,0.6332,0.6594,0.524,0.4018,0.3276,0.3538,0.476,0.1966,-0.245,-1,-1,1,-1,-1,-0.8,0.0334,-1,-0.101,-0.0092,-0.1376,0.0458,-0.1926,-0.1744,-0.101,-0.266,-0.156,-0.1192,-0.0092,0.7982,0.9266,1,0.156,-0.266,-0.2478,0.0826,-0.0642,-0.266,-0.1926,0.0642,0.0642,-0.156,-0.1192,-0.156,-0.0276,-0.0826,0.1926,0.1744,-0.3028,-0.8348,'11'
-0.8156,-0.183,-0.1744,0.3646,0.3702,0.7362,0.7276,0.373,0.3702,0.1064,0.1148,0.3164,0.3504,0.3248,0.3986,0.8724,0.932,0.6426,0.5432,0.4554,0.5206,0.427,0.5348,0.6312,0.807,0.793,0.9008,0.912,1,0.9688,0.7986,0.756,-0.6708,-0.1112,-0.1112,0.2866,0.4678,0.8052,0.701,0.5556,0.4074,0.4046,0.2126,0.3196,0.4046,0.5692,0.7174,0.8216,0.487,0.3992,0.262,0.3552,0.3168,0.3992,0.5582,0.6132,0.6928,0.764,0.9836,1,0.8162,0.7942,0.6872,0.6544,-0.6214,-0.082,0.0254,0.3026,0.5678,0.7436,0.7496,0.857,0.4694,0.5142,0.5916,0.5798,0.836,0.7406,0.3294,0.1952,0.1178,-0.0522,0.0432,0.1326,0.2488,0.243,0.3084,0.4158,0.4308,0.7318,0.7108,1,0.9254,0.8122,0.705,0.7078,-0.5968,-0.07,0.1252,0.33,0.7528,0.844,0.9642,0.961,0.7496,0.73,1,0.8048,0.4178,0.1544,0.2,-0.07,-0.083,-0.213,-0.2944,-0.0472,-0.135,-0.0048,0.1186,0.2098,0.3984,0.4374,0.7658,0.844,0.974,0.8276,0.7918,0.6878,-0.6834,-0.2084,0.2374,0.4054,0.8804,0.8902,0.9548,0.8384,0.7802,0.9386,1,0.3602,-0.2568,-0.1082,-0.3022,-0.37,-0.4282,-0.4282,-0.5316,-0.4862,-0.2828,-0.357,-0.1988,0.008,-0.0048,0.2408,0.4508,0.6704,0.6996,0.7124,0.6058,0.5444,-0.681,-0.1864,0.337,0.4624,1,0.9498,0.8782,0.8674,0.982,0.6022,0.4768,-0.1756,-0.448,-0.387,-0.423,-0.491,-0.595,-0.6488,-0.6702,-0.6738,-0.6488,-0.5448,-0.6094,-0.5126,-0.2078,-0.1362,0.1684,0.3584,0.6488,0.5232,0.5018,0.2544,-0.7122,-0.0116,0.2576,0.536,1,0.9954,0.7354,0.87,0.9628,0.6194,-0.188,-0.5034,-0.5824,-0.4618,-0.406,-0.457,-0.601,-0.8052,-0.6844,-0.7216,-0.6844,-0.6566,-0.87,-0.4942,-0.5128,-0.369,-0.471,-0.4432,0.0766,0.1416,-0.5082,-0.4154,-0.796,-0.2244,-0.0204,0.4286,0.3878,0.796,0.7142,0.4286,0.4286,0.102,0.1428,0.2244,0.2244,0.3062,0.347,0.7552,0.796,0.6326,0.7142,0.6326,0.6326,0.4286,0.551,0.5918,0.7552,0.6326,0.8776,0.8776,1,0.9592,0.8776,0.8368,-0.7408,-0.2592,-0.2222,0.2962,0.3334,0.4814,0.5556,0.2962,0.2962,0,-0.037,0.1852,0.2962,0.2222,0.3704,0.7408,0.926,0.7778,0.4444,0.3704,0.5186,0.4444,0.7038,0.6666,0.926,0.8888,0.963,0.963,1,1,0.8148,0.8518,-0.6666,-0.1334,0.0444,0.2888,0.6666,0.7556,0.8888,0.8888,0.6666,0.7778,0.9778,0.8,0.2444,0.2,0.2444,-0.0666,-0.0666,-0.3112,-0.3112,-0.1334,-0.1334,0.0444,0,0.0666,0.3778,0.3778,0.7334,0.7778,1,0.8666,0.7112,0.5556,-1,-1,-1,-1,-1,-1,-1,-1,-0.9444,-0.963,-0.791,0.0502,0.7936,0.6746,0.3888,0.2302,0.156,0.2566,0.1456,-0.0344,-0.074,-0.4868,-0.8334,-0.9126,-0.9338,-0.9392,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9774,-0.98,-0.8708,0.2444,0.7454,0.5416,0.281,0.052,-0.0382,-0.1346,-0.3246,-0.5108,-0.5858,-0.8066,-0.9368,-0.9452,-0.9628,-0.9706,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.973,-0.96,-0.8,-0.1268,-0.3824,-0.3356,-0.5024,-0.509,-0.5556,-0.7268,-0.809,-0.7624,-0.794,-0.852,-0.8334,-0.7934,-0.86,-0.96,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7142,-0.0286,1,1,-0.6858,-0.7142,-0.6286,-0.8286,-0.6,-0.7428,-0.8,-0.7428,-0.5428,-0.2,-0.4858,-0.4858,-0.6286,-0.9142,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.378,0.3722,0.3396,0.363,0.3512,0.3514,0.3638,0.301,0.2334,0.199,-0.7066,0.0706,-0.9402,-0.338,0.2474,0.4756,0.5626,1,0.1588,0.2858,0.254,0.3016,0.6032,0.873,0.9682,1,1,0.8572,0.762,0.8572,0.9206,0.6984,0.492,0.508,0.492,0.508,0.381,0.5396,0.5396,0.365,0.238,0.3968,0.5874,0.365,0.4126,0.2698,-0.0158,0.127,-0.4444,-0.381,0.2714,0.2714,0.3572,0.4714,0.6286,0.6858,0.8572,0.8428,1,0.3858,0.7858,0.8286,0.9428,0.7714,0.5142,0.9286,0.5286,0.4572,0.7572,0.4572,0.5858,0.5428,0.6428,0.6142,0.5142,0.4714,0.6572,0.4,0.2858,0.4,0.5572,0.3714,-0.0366,0.122,0.744,0.622,0.4634,0.6342,0.5976,0.561,0.756,0.8536,0.5732,0.6952,0.8902,0.9268,1,0.878,0.8902,0.9878,0.6586,0.3902,0.3902,0.4268,0.317,0.6098,0.4512,0.1464,0.183,-0.0732,-0.2926,-0.122,-0.1098,-0.561,-0.9882,1,-1,-1,-1,-1,-1,-1,-1,-0.0088,0.2566,0.7876,0.7346,1,0.416,0.77,0.8408,0.7168,0.7168,0.6638,0.5576,0.292,0.5044,0.4868,0.593,0.7522,0.7346,0.6992,0.7346,0.8054,0.593,0.5752,0.5222,0.2036,0.5398,0.9116,0.8584,0.5398,0.6638,0.6638,-0.239,'12'
-0.7686,-0.1084,-0.089,0.3642,0.3642,0.8002,0.8172,0.2838,0.296,0.1352,0.1596,0.145,0.2034,0.3422,0.408,0.7126,0.8172,0.7904,0.6468,0.5128,0.4958,0.5884,0.6004,0.7516,0.8246,1,0.9416,0.9196,0.888,0.7784,0.7442,0.6176,-0.5994,-0.0014,-0.0274,0.3654,0.6698,0.9896,0.8492,0.6462,0.4486,0.4876,0.2094,0.3186,0.4772,0.5916,0.9454,1,0.6566,0.6802,0.5188,0.5578,0.5474,0.524,0.7036,0.6488,0.8986,0.8414,0.8518,0.766,0.7894,0.6488,0.6254,0.5266,-0.5892,-0.0688,-0.0128,0.2474,0.5842,0.7372,0.6352,0.7322,0.4642,0.4948,0.426,0.3928,0.6556,0.5612,0.5434,0.403,0.2552,0.0562,0.125,0.0994,0.1734,0.3036,0.3342,0.4286,0.403,0.676,0.6582,1,0.8954,0.6938,0.5052,0.597,-0.6006,-0.0594,0.1144,0.3256,0.8206,0.9218,0.838,0.8494,0.8494,0.7598,0.9682,0.7656,0.4414,0.1982,0.2156,-0.152,-0.1462,-0.1982,-0.2358,-0.1404,-0.1288,0.0332,0.068,0.1578,0.4096,0.4558,0.696,0.8582,1,0.8582,0.6874,0.5804,-0.6754,-0.2086,0.289,0.4466,0.9938,1,0.8454,0.7588,0.9506,0.8826,0.9412,0.255,0.017,-0.1252,-0.3138,-0.4652,-0.425,-0.456,-0.5054,-0.5642,-0.4126,-0.3416,-0.252,-0.1128,-0.1222,0.119,0.32,0.5486,0.8486,0.8454,0.5982,0.5332,-0.736,-0.3102,0.2772,0.406,1,0.9042,0.6336,0.9208,0.9604,0.5578,0.4158,-0.1518,-0.4192,-0.4852,-0.6402,-0.5446,-0.6468,-0.6006,-0.6006,-0.7162,-0.7954,-0.6766,-0.6172,-0.6072,-0.2706,-0.373,-0.274,0.1914,0.3366,0.5478,0.4224,0.3268,-0.4612,0.2456,0.4224,0.7112,0.9656,1,0.569,0.7672,0.7758,0.3492,-0.0388,-0.0818,-0.1078,-0.2802,-0.2716,-0.4784,-0.2844,-0.4052,-0.7026,-0.5258,-0.5216,-0.7156,-0.5906,-0.2284,-0.2586,-0.3232,-0.3836,-0.5388,-0.2456,0.1034,0.2414,-0.013,-0.8214,-0.2858,-0.25,0.2142,0.2858,0.3928,0.5,0.2142,0.2142,0.0358,-0.0714,0.0358,0.25,0.1072,0.3572,0.5,0.9286,0.8928,0.4286,0.4286,0.5,0.5358,0.5714,0.6428,0.8572,1,0.8214,0.8928,0.7858,0.75,0.7142,0.5714,-0.9286,-0.1786,-0.1072,0.3214,0.3214,0.5714,0.6428,0.25,0.3572,-0.0358,0.1428,0.1428,0.3928,0.1786,0.5,0.6072,1,0.9286,0.6072,0.5714,0.5,0.4642,0.7142,0.7142,0.8928,0.9286,0.8928,1,0.7858,0.8214,0.6786,0.6072,-0.5662,-0.012,0.1566,0.3734,0.8314,1,0.8314,0.9036,0.759,0.735,0.8796,0.735,0.7832,0.5662,0.253,-0.0362,0.0844,-0.012,0.0362,0.0362,-0.012,0.3012,0.1808,0.4216,0.518,0.759,0.8796,1,0.9278,1,0.8072,0.7832,-1,-1,-1,-1,-1,-1,-1,-0.9552,-0.9458,-0.9552,-0.3632,0.2264,0.9104,0.6934,0.2878,0.2548,0.1438,0.1674,0.1416,-0.033,-0.3514,-0.6698,-0.8232,-0.8114,-0.868,-0.9292,-0.9552,-0.941,-0.9504,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9754,-0.971,-0.9706,-0.1922,0.5978,0.8916,0.5172,0.262,0.1456,-0.0684,-0.048,-0.2186,-0.4502,-0.6626,-0.8788,-0.9426,-0.9378,-0.9458,-0.9624,-0.9688,-0.971,-0.97,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8934,-0.8968,-0.8768,-0.3934,-0.286,-0.542,-0.652,-0.618,-0.552,-0.582,-0.594,-0.738,-0.7382,-0.7838,-0.7838,-0.8,-0.84,-0.7868,-0.7568,-0.81,-0.8534,-0.9468,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,-0.7714,1,1,1,-0.8,-0.7714,-0.6858,-0.6572,-0.6286,-0.7142,-0.6858,-0.6572,-0.1714,-0.4572,-0.7428,-0.9142,-0.9428,-0.8286,-1,-1,-0.1142,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.568,0.5526,0.5292,0.5182,0.4948,0.4536,0.3488,0.2512,0.1926,0.0662,-0.72,0.2118,0.07,0.6208,0.706,0.5044,0.595,1,-0.3192,0.0212,0.3618,0.3192,0.2766,0.1914,0.2766,0.234,0.4468,0.617,0.4468,0.7022,0.7872,0.5744,1,0.6596,0.5744,0.617,0.5744,0.4042,0.4042,-0.0212,-0.0638,-0.1064,-0.1064,-0.1064,-0.3192,-0.234,-0.4042,-0.4468,-0.3618,-0.7446,-0.2268,0.1596,0.5798,0.6302,0.3614,0.1764,0.2774,0.5126,0.7816,0.832,0.5126,0.6806,0.9328,1,0.9832,0.8824,0.6134,0.4622,0.4286,0.2774,0.126,-0.0924,-0.2436,-0.21,-0.4118,-0.5798,-0.5966,-0.395,-0.7142,-0.4454,-0.6302,-0.731,-0.2878,0.091,0.394,0.591,0.3182,0.106,0.3484,0.4546,0.8334,0.7728,0.5606,0.697,0.9394,1,0.894,0.7424,0.591,0.3334,0.4546,0.3636,0.0606,-0.3636,-0.3636,-0.3334,-0.3484,-0.4394,-0.4546,-0.5758,-0.606,-0.5152,-0.6516,-0.7576,1,-1,-1,1,-0.8,-1,-0.6,-0.8334,-1,0.054,0.2972,0.4594,1,0.7028,0.7028,0.4324,0.5676,0.4594,0.4324,0.5136,0.2972,0.5406,0.2432,-0.027,0.7028,0.8108,0.5946,0.3514,0.2162,0.1892,0.1082,0,0.2972,-0.3244,0.4594,0.5676,0.5676,0.8378,0.3514,0.1892,-0.1352,'12'
-0.6712,0.1618,0.2184,0.2696,0.2722,0.6792,0.7062,0.4448,0.3962,0.2346,0.2238,0.0646,0.0754,0.38,0.4852,0.8168,0.849,0.6362,0.4556,0.3962,0.3154,0.531,0.5094,0.558,0.5336,0.5498,0.5634,0.8922,1,0.8734,0.779,0.69,-0.5164,0.1698,0.1184,0.3772,0.3968,0.746,0.5874,0.7948,0.5898,0.4676,0.2234,0.2894,0.5556,0.7094,0.8778,1,0.6068,0.58,0.3724,0.4506,0.2748,0.3186,0.5482,0.5678,0.707,0.7436,0.9488,0.9292,0.9242,0.8754,0.7924,0.768,-0.4604,0.103,0.0202,0.2356,0.536,0.6662,0.8012,0.8556,0.5172,0.4934,0.4792,0.5408,0.8154,0.6284,0.6804,0.3776,0.4154,0.2544,0.2662,0.3088,0.2592,0.039,0.1906,0.3538,0.5124,0.671,0.8344,0.981,1,0.9668,0.8486,0.8202,-0.3242,0.2942,0.2398,0.3906,0.8884,0.8914,0.807,0.7406,0.81,0.6802,0.813,0.6652,0.6802,0.3514,0.2278,0.0438,-0.0106,0.1102,0.1886,0.1886,-0.0226,-0.1794,-0.258,-0.0226,0.1402,0.5174,0.623,0.9758,0.9306,0.7648,0.9004,1,0.1106,1,0.787,0.6576,0.0772,-0.3068,-0.1148,0.215,0.7788,0.5074,0.4154,-0.0272,0.0564,-0.0396,-0.119,-0.1274,-0.24,-0.2526,0.023,0.1774,0.119,0.1398,-0.2066,-0.236,-0.1732,0.0146,0.1774,-0.2066,-0.3486,-0.3402,0.0814,0.474,0.0926,1,0.7102,0.506,-0.1258,-0.3206,-0.5012,0.2922,0.6058,0.0594,0.0784,-0.0308,-0.1354,-0.0974,-0.2874,-0.3206,-0.2826,-0.354,-0.259,-0.0072,0.0594,-0.1116,-0.1734,-0.3586,-0.1448,0.0024,-0.0308,-0.0688,-0.544,-0.6058,0.0688,0.5676,-0.1076,1,0.637,-0.1446,-0.5016,-0.5016,-0.1816,-0.0154,-0.397,-0.36,-0.077,0.1754,-0.1016,-0.2676,-0.4154,-0.2308,-0.0954,-0.3476,-0.4462,-0.163,-0.157,-0.5324,-0.7046,-0.1016,-0.1324,-0.2308,-0.3724,-0.397,-0.9138,-0.5446,-0.2676,-0.077,-0.8518,0.2592,0.7038,0.4814,0.6296,0.8518,0.7778,0.2592,-0.3334,-0.2592,0.037,-0.1112,-0.1112,0.2592,0.4074,0.5556,0.7778,0.6296,-0.1852,0.037,0.4074,0.1112,0.037,0.3334,0.1112,0.1852,0.2592,-0.4074,1,0.7778,0.1852,0.1112,-0.6364,0.2272,0.3636,0.409,0.591,0.5454,0.8636,0.7272,0.4546,0.3182,0.1818,0.1818,0.2728,0.409,0.091,0.6818,0.7272,0.6818,0.591,0.2728,0.3182,0.409,0.591,0.3636,0.409,0.1364,0.8182,0.7728,0.909,1,0.4546,0.7272,-0.1818,0.394,0.2424,0.394,0.909,0.9394,0.5758,0.6364,0.8182,0.909,0.9394,0.5152,0.4848,0.2728,0.0606,0.0304,0.091,0.091,0.2424,0.1212,0.1818,-0.091,-0.1516,-0.1212,-0.0304,0.0304,0.2122,0.2424,0.5454,0.4242,0.8788,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9254,-0.941,-0.9018,0.5796,0.5638,0.5678,0.6896,0.611,0.615,0.2142,0.0256,-0.1278,-0.281,-0.6542,-0.9214,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9624,-0.968,-0.9484,0.1732,0.1364,0.332,0.684,0.4776,-0.171,-0.6816,-0.7482,-0.781,-0.831,-0.91,-0.9602,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.919,-0.96,-0.8234,-0.5,-0.2268,-0.3518,-0.425,-0.3768,-0.6184,-0.8234,-0.9034,-0.8534,-0.885,-0.825,-0.8668,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6286,-0.8286,1,1,-0.8858,-0.8858,-0.8858,-0.4,0.7142,0.5428,-0.8286,-0.7428,-0.5142,-0.9142,-0.8572,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.6348,0.0024,-0.012,-0.0326,-0.0478,-0.0514,-0.044,-0.0386,-0.0602,-0.1544,-0.2042,-0.6934,0.4352,-0.9468,-0.7356,-0.2866,0.6066,0.6894,1,0.0164,0.1968,0.082,0.623,0.6066,0.5902,0.9672,0.836,0.9672,0.705,0.754,0.8524,1,0.8852,0.541,0.2786,0.377,0.295,0.5082,0.246,0.4262,0.3934,0.1968,0.5738,0.4918,0.377,0.5902,0.3114,0.4426,0.7214,0.5082,-0.3278,0.1932,0.0756,0.1428,0.7816,0.6638,0.4118,0.7984,0.731,0.7816,0.8656,0.916,0.563,0.6302,0.7142,0.0588,0.7816,0.731,0.2436,0.1932,0.042,0.4286,0.5294,0.6302,0.6638,0.6134,0.5126,0.5966,0.3446,-0.1092,0.3614,0.1428,-0.0252,0.1224,0.108,0.41,0.6402,0.8418,0.5828,0.7698,0.7554,0.9136,0.5252,0.6116,0.5972,0.7554,0.9136,1,0.8706,0.8706,0.7122,0.7842,0.5972,0.5684,0.5252,0.6834,0.8274,0.4964,0.2518,0.5108,0.41,0.0072,0.2518,-0.554,-0.6834,-1,1,-1,-1,-1,-1,-1,-1,-1,0.1364,0.25,0.409,0.6818,0.5228,0.7272,1,0.7954,0.2728,0.2954,0.3182,0.341,0.7046,0.409,0.5,0.2728,0.5454,0.5,0.3864,0.341,0.8182,0.4318,0.4546,0.659,0.5,0.75,0.659,0.3182,0.159,0.0228,0.4318,-0.0228,'13'
-0.6504,0.0256,0.049,0.2282,0.2282,0.5906,0.6312,0.3134,0.258,0.1088,0.0448,0.066,0.0342,0.1514,0.177,0.5054,0.5032,0.902,0.8848,0.5928,0.5522,0.5566,0.5202,0.6226,0.6076,0.8422,0.855,1,0.9552,0.855,0.7804,0.6588,-0.4688,0.1822,0.1328,0.3632,0.5136,0.7744,0.57,0.685,0.3842,0.476,0.1586,0.2362,0.3796,0.5136,1,0.993,0.9388,0.8896,0.631,0.5346,0.396,0.4078,0.5136,0.544,0.7038,0.7768,0.8354,0.9506,0.9858,0.9648,0.8426,0.8448,-0.4468,0.1088,0.0092,0.2176,0.5394,0.6296,0.8264,0.8334,0.676,0.5788,0.5348,0.6412,0.7732,0.7662,0.831,0.4282,0.3912,0.2824,0.1828,0.2476,0.0186,-0.0324,0.1736,0.2384,0.5254,0.5462,0.7986,0.8796,1,0.8264,0.824,0.757,-0.4788,0.09,0.1746,0.3624,0.8016,0.8306,0.8174,0.7276,0.7354,0.754,0.881,0.828,0.8386,0.3836,0.2724,0.053,-0.0662,0.0502,0.1456,0.1588,-0.447,-0.5424,-0.455,-0.2142,-0.082,0.3598,0.455,1,0.8916,0.7276,0.6296,0.7752,-0.0786,1,0.876,0.4256,0.2976,-0.062,-0.0578,-0.1694,0.252,0.3472,0.0662,-0.1322,-0.095,-0.2934,-0.1404,-0.2852,-0.5702,-0.3842,-0.405,-0.4834,-0.6198,-0.6116,-0.6116,-0.6158,-0.595,-0.6446,-0.6074,-0.3678,-0.5414,-0.5868,-0.3678,0.128,-0.0174,1,0.8,0.3566,-0.113,-0.4434,-0.4826,-0.4826,0.2434,0.1044,-0.4218,-0.3782,-0.2782,-0.2652,-0.213,-0.5696,-0.4826,-0.3914,-0.3218,-0.1392,-0.4522,-0.5304,-0.5782,-0.4608,-0.5652,-0.4522,-0.326,-0.574,-0.5652,-0.7652,-0.274,0.4,-0.2858,1,0.7372,-0.0742,-0.4572,-0.4686,-0.4914,-0.4686,-0.4458,-0.4228,-0.5542,-0.4228,-0.24,-0.3772,-0.2172,-0.3828,-0.9258,-0.8114,-0.68,-0.6686,-0.4972,-0.5028,-0.7086,-0.2972,-0.12,-0.3828,-0.6172,-0.68,-0.56,-0.6,-0.3028,-0.1772,-0.6,-0.15,-0.1,-0.45,0.15,0.3,0.05,0.1,0.15,-0.3,-0.65,-0.6,-0.45,-0.55,-0.15,-0.05,-0.15,0.6,0.7,0.65,0.5,0.45,0.3,0,0.1,0.4,0.75,0.95,1,0.95,0.8,0.6,-0.6296,-0.037,0,0.1852,0.1852,0.5186,0.5186,0.2592,0.2592,0,-0.037,0.1482,0.1482,0.1482,0.1482,0.4074,0.4444,0.7778,0.7778,0.5186,0.5556,0.4814,0.5186,0.5556,0.5926,0.8518,0.8518,0.963,1,0.8518,0.8148,0.4814,-0.2,0.3066,0.2534,0.3866,0.84,0.8134,0.3334,0.36,0.6534,0.9466,1,0.4934,0.52,0.1466,0.0134,-0.04,-0.28,-0.0934,0.0934,-0.12,-0.2,-0.4934,-0.5734,-0.6534,-0.3066,-0.3334,-0.0134,-0.0134,-0.1466,-0.3334,-0.3866,-0.12,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9474,-0.9062,0.6286,0.8386,0.5572,0.4446,0.3884,0.2682,-0.0168,0.0656,-0.137,-0.3958,-0.6286,-0.8912,-0.9136,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9708,-0.9612,0.5424,0.5614,0.3868,0.3616,0.363,-0.1656,-0.6492,-0.7424,-0.7858,-0.849,-0.9004,-0.9526,-0.9542,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.95,-0.4018,-0.36,-0.3324,-0.437,-0.3816,-0.46,-0.7894,-0.8924,-0.8924,-0.894,-0.857,-0.8334,-0.9268,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,-0.9142,-0.8572,-0.8286,-0.8286,0.4858,0.7142,-0.9142,-1,-0.9142,-0.8858,-0.8858,-0.9714,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.6768,0.6002,0.5904,0.5706,0.5516,0.5266,0.4586,0.3292,0.1554,-0.0728,-0.2736,-0.6934,0.5412,-0.9668,-0.702,0.593,0.8562,0.846,1,0.0526,0.2632,0.6422,0.8106,0.3264,0.7264,0.8106,0.7474,0.6422,0.4948,0.6632,0.4316,1,0.5368,0.3264,0.5368,0.2422,-0.0316,0.7264,0.3264,0.4736,0.3264,0.5158,0.179,0.1158,0.0316,0.1578,0.2632,0.221,0.2422,0.2632,-0.7894,0.1224,-0.1366,-0.0216,0.41,0.2518,0.2518,1,0.554,0.367,0.1654,0.6402,0.6834,0.669,0.5396,0.4964,0.5972,0.5252,0.108,0.3094,0.1366,0.1798,0.3956,-0.1224,-0.0936,0.2374,0.4532,0.295,0.554,0.4244,0.0216,0.1798,-0.669,-0.0076,0.1146,0.2978,0.2824,0.313,0.374,0.6642,0.3894,0.6794,0.4962,0.4504,0.5726,1,0.1908,0.3894,0.4046,0.481,0.5726,-0.481,-0.0076,0.1756,0.4504,0.1756,0.2214,0.1146,0.2366,0.4962,0.2672,-0.0076,-0.1604,-0.0534,-0.6794,-0.9952,1,-1,-1,-1,-1,-1,-1,-1,0.1936,0.3226,0.4838,0.4516,0.4194,0.129,0.9032,0.4194,0.1612,0.9354,1,0.6452,0.387,0.4838,0.0968,0.5162,0.7096,0.2258,0.2904,0.613,0.6452,0.4838,0.5484,0.5484,0.1936,0.5162,0.5162,0.387,0.387,-0.1612,-0.129,-0.4838,'13'
-0.6542,0.0636,0.08,0.3364,0.3294,0.7342,0.7576,0.327,0.353,-0.0376,0.0094,0.0564,0.1248,0.0352,0.1364,0.3788,0.5012,0.7482,0.9012,0.7576,0.7482,0.5624,0.6048,0.6588,0.7694,0.8658,0.9552,0.9812,1,0.7506,0.7812,0.6542,-0.4512,0.1904,0.1528,0.3534,0.421,0.8046,0.6868,0.4862,0.3358,0.2006,0.0026,0.0802,0.02,0.2056,0.366,0.5388,0.767,0.9374,0.777,0.8572,0.589,0.6166,0.5314,0.6216,0.7118,0.7994,0.817,0.9198,0.97,1,0.807,0.7744,-0.4016,0.1346,0.0536,0.2182,0.5018,0.6352,0.404,0.466,0.2348,0.2182,0.0178,-0.0512,-0.0202,0.1394,0.3374,0.6162,0.7282,0.8332,0.8928,0.602,0.54,0.3064,0.3182,0.4136,0.435,0.6258,0.7116,0.9548,1,0.9142,0.8188,0.6948,-0.288,0.2388,0.0478,0.1606,0.6904,0.673,0.2098,0.2156,0.4154,0.0448,-0.3112,-0.233,-0.343,-0.0506,0.1866,0.3546,0.8582,0.8524,0.5542,0.424,0.3516,0.0362,0.068,0.204,0.207,0.3054,0.5196,0.6498,1,0.9972,0.7308,0.5312,0.082,1,0.901,0.421,0.2496,0.0514,-0.3104,-0.1658,-0.1238,-0.219,-0.5886,-0.3676,-0.5696,-0.562,-0.3562,-0.3258,0.2952,0.379,-0.078,-0.1238,0.1238,0.0514,-0.3296,-0.3676,-0.2076,-0.1466,-0.1466,0.1772,0.3486,0.2038,-0.3752,-0.5848,0.1068,1,0.7434,0.1592,0.1638,0.221,-0.4632,-0.2304,0.0926,-0.2114,-0.753,-0.4632,-0.4252,-0.2874,-0.221,-0.0926,0.4632,0.3586,-0.0594,0.259,0.354,0.2636,-0.0736,-0.1782,-0.2162,-0.1544,-0.1448,-0.1164,0.0878,-0.202,-0.7102,-0.7244,-0.067,1,0.7084,-0.621,-0.4986,-0.4578,-0.4052,-0.2594,-0.2012,-0.621,-0.6734,-0.3994,-0.382,-0.4928,-0.2886,0.0146,0.3062,0.1312,-0.1486,-0.277,0.0788,-0.1486,-0.2362,-0.207,-0.2128,-0.3062,-0.3294,-0.5276,-0.4986,-0.3586,-0.4694,-0.4402,-0.9216,-0.0588,-0.0196,0.3334,0.3726,0.5686,0.647,0.255,0.3726,-0.1764,-0.098,-0.0196,0.1372,-0.1372,0.255,0.0588,0.4902,0.451,0.8824,0.8432,0.6862,0.6078,0.5294,0.5686,0.804,0.8432,0.8432,1,0.7648,0.8824,0.4902,0.451,-0.7192,-0.1228,-0.1228,0.1578,0.228,0.4036,0.4386,0.1228,0.228,-0.0526,-0.228,-0.0878,0.1228,-0.0176,0.1578,0.0526,0.4036,0.4036,0.8596,0.7894,0.5088,0.5438,0.5088,0.579,0.6492,0.7544,0.8948,1,0.7544,0.579,0.5088,0.6492,-0.1076,0.3846,-0.1076,0.2616,0.5692,0.3846,-0.0462,0.3846,0.4462,-0.323,-0.477,-0.6616,-0.877,-0.3846,-0.2616,0.4154,0.6308,0.4154,0.4462,0.5384,0.4462,-0.2308,0.1076,0.077,0.1076,-0.5076,0.1692,0.3846,1,0.9384,0.323,0.0462,-1,-1,-1,-1,-1,-1,-1,-1,-0.9394,-0.933,-0.496,0.5694,0.933,0.7704,0.6842,0.4226,0.2728,0.1962,0.4098,-0.0398,-0.3652,-0.5726,-0.9298,-0.9554,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9686,-0.963,-0.532,0.8322,0.4604,0.4764,0.5222,0.085,-0.3022,-0.6748,-0.663,-0.7534,-0.8412,-0.8858,-0.954,-0.9638,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.9468,-0.61,-0.2528,-0.502,-0.3964,-0.282,-0.3728,-0.5092,-0.8746,-0.92,-0.9168,-0.9318,-0.8318,-0.8368,-0.9468,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6286,1,1,1,-0.8,-0.8858,-0.8858,-0.8858,1,1,-0.7428,-0.6858,-0.6,-0.5714,-0.6,-0.8572,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.5882,0.7082,0.716,0.6724,0.6574,0.6292,0.6174,0.5666,0.5056,0.3794,0.1012,-0.6934,0.3412,-0.369,0.2466,0.945,0.9728,0.8364,1,-0.3024,-0.1162,0.1162,0.1162,0.3488,0.0698,0.1162,0.1628,0.5814,0.6744,0.721,0.7674,0.8604,0.9534,1,0.907,0.7674,0.628,0.628,0.5348,0.3488,0.2558,0.3488,0.2558,0.0698,0.1162,-0.0232,-0.2094,-0.1162,-0.3954,-0.2094,-0.2558,-0.2572,-0.0096,0.3334,0.3714,0.238,-0.0286,0.0666,0.1238,0.3904,0.8096,0.7524,0.638,0.619,0.9048,1,0.7714,0.7142,0.562,0.562,0.562,0.238,0.2572,0.238,-0.0286,0.0286,-0.238,-0.3524,-0.5428,-0.3524,-0.3142,-0.4858,-0.8286,-0.0862,0.2758,0.4656,0.6896,0.4482,0.0862,0.2068,0.2414,0.4656,0.8794,0.6206,0.3966,0.4828,0.7932,1,0.8448,0.5862,0.4828,0.4482,0.3794,-0.1034,0,-0.069,-0.1034,0.0862,0.0172,-0.5344,-0.5,-0.3276,-0.2758,-0.431,-0.6724,0.9666,-1,-1,1,-1,-1,-1,-0.8334,-1,0.0892,0.1288,0.406,0.2476,0.1288,0.1288,0.4258,0.3268,1,0.8614,0.9208,0.5446,0.6238,0.604,0.6436,0.3664,0.3664,0.406,0.7822,0.5842,0.4258,0.3466,0.3466,0.6436,0.4456,0.7228,0.3664,0.6436,0.9406,0.8218,0.3466,0.0694,'14'
-0.6518,0.0296,0.037,0.284,0.284,0.6888,0.7062,0.1704,0.1926,-0.0346,0,-0.1654,-0.1186,0.0494,0.1136,0.3062,0.3654,0.7308,0.8074,0.5802,0.516,0.353,0.447,0.484,0.6024,0.6124,0.8148,0.847,1,0.884,0.8198,0.679,-0.471,0.2052,0.182,0.4168,0.4296,0.858,0.7522,0.347,0.218,0.1794,0.0296,0.027,-0.0348,0.2594,0.2954,0.538,0.7522,0.9716,0.7962,0.7368,0.5046,0.5588,0.4246,0.6154,0.6284,0.7988,0.8554,1,0.8916,0.9896,0.7496,0.5664,-0.4554,0.1404,0.0818,0.3554,0.5092,0.7118,0.497,0.431,0.0892,0.1184,-0.0476,0.0012,-0.0526,0.0036,0.4506,0.5042,0.8998,0.8364,0.8168,0.6874,0.431,0.3186,0.4212,0.3944,0.5286,0.6336,0.7606,0.9024,1,0.8364,0.6678,0.58,-0.4104,0.1262,0.073,0.2564,0.498,0.5618,0.2856,0.267,0.2192,0.0942,-0.1368,-0.2112,-0.1022,0.004,0.0624,0.4874,0.6334,0.9708,0.8672,0.5884,0.312,0.2164,0.2564,0.2722,0.4662,0.482,0.6734,0.8804,1,0.9176,0.729,0.559,-0.029,0.648,0.439,0.4274,0.501,0.47,-0.2882,0.1682,0.3618,-0.3424,-0.617,-0.1142,-0.2844,-0.528,-0.0754,0.2264,1,0.8568,0.8956,0.7794,0.884,0.47,0.3308,0.2612,0.292,0.443,0.6402,0.6208,0.6442,0.47,0.1258,-0.118,0.0412,0.8092,0.4382,0.2578,0.4176,0.1752,-0.5258,0.2268,0.1908,-0.6082,-0.7784,-0.5722,-0.469,-0.4124,-0.3042,-0.0154,0.4432,1,0.799,0.8814,0.5412,0.4794,-0.0412,0.0568,0.1908,0.3712,0.3762,0.536,-0.0774,-0.5722,-0.6238,-0.3866,0.202,1,0.6788,-0.2992,-0.3138,-0.27,-0.4744,-0.3918,-0.3042,-0.7128,-0.7032,-0.4306,-0.3042,-0.1532,-0.4404,0.0852,0.1436,-0.1094,0.1046,0.2652,0.2116,0.017,-0.2896,-0.0462,-0.056,-0.09,-0.4404,-0.3188,-0.4306,-0.7032,-0.5232,-0.3772,-0.6956,-0.1304,-0.1304,0.2174,0.3914,0.4782,0.5218,0.3044,0.1304,0,0.087,-0.0434,0.0434,-0.0434,0.1304,0.2174,0.087,0.2608,0.1304,0.3478,0.3044,0.3044,0.3914,0.1304,0.4348,0.5652,0.8696,0.9566,1,0.9566,0.913,0.8696,-0.7358,0.0188,0.0188,0.2452,0.283,0.585,0.6226,0.2076,0.283,-0.132,0.0188,-0.132,0.0566,-0.0944,0.2452,0.132,0.3584,0.6982,1,0.9246,0.3962,0.1698,0.5094,0.5094,0.6226,0.5094,0.9622,0.9246,0.9246,0.9622,0.8114,0.9246,0,0.6176,0.5294,0.5294,0.5882,0.5882,-0.0588,0.1764,0.353,-0.3824,-0.2352,0.1176,-0.147,-0.2058,0.1176,0.3236,1,0.8824,0.9706,0.7648,0.7352,0.5,0.6176,0.3824,0.2942,0.647,0.5882,0.647,0.5588,0.647,0.2942,0.353,-1,-1,-1,-1,-1,-1,-1,-1,-0.9302,-0.9302,-0.8824,0.636,0.9558,0.875,0.8162,0.6324,0.3162,0.1214,-0.1214,-0.3786,-0.364,-0.3308,-0.761,-0.8602,-0.9228,-0.9412,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9588,-0.9558,-0.9332,0.7514,0.6914,0.604,0.6256,0.4486,0.083,-0.433,-0.652,-0.776,-0.7906,-0.7906,-0.89,-0.9254,-0.946,-0.9598,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.953,-0.9134,-0.88,-0.3074,-0.4182,-0.4528,-0.3764,-0.3492,-0.422,-0.6164,-0.8982,-0.8368,-0.935,-0.9284,-0.74,-0.7068,-0.84,-0.9134,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2858,-0.9142,1,1,-0.8572,-0.8572,-0.9428,-0.8858,0.2,1,-0.3714,-0.8572,-0.7142,-0.7428,-0.4,-0.8572,-0.7714,-0.8858,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.6344,0.5854,0.5794,0.544,0.5444,0.5216,0.5236,0.4946,0.4316,0.3814,0.2052,-0.72,0.3412,-0.9498,-0.1096,0.943,0.8684,0.7778,1,0.0526,0.218,0.233,0.4286,0.5488,0.4736,0.8196,0.5038,0.6842,0.594,0.639,0.564,1,0.8796,0.9098,0.5338,0.564,0.4736,0.218,0.4586,0.624,0.6542,0.7894,0.9248,0.564,0.624,0.5038,0.1428,0.3082,0.4136,0.0828,-0.3082,0.1818,0.078,0.5844,0.4936,0.7272,0.1298,0.7662,0.8182,0.4156,0.6624,0.7012,0.8182,1,0.5064,0.5974,0.4156,0.5584,0.5584,0.2728,0.3636,0.6884,0.6624,0.5064,0.6494,0.7012,0.4546,0.2338,0.4546,0.4546,0.3896,0.2598,-0.013,0.2582,0.298,0.404,0.563,0.4834,0.5496,0.6026,0.9206,1,0.841,0.7748,0.4834,0.6026,0.788,0.9602,0.5364,0.8676,0.9736,0.6424,0.6822,0.3908,0.8278,0.6822,0.6822,0.8278,0.563,0.2186,0.3908,0.6292,0.563,0.3774,0.1788,-0.9784,1,-1,-1,-1,-1,-0.8,-1,-1,0.3524,0.4286,0.2,0.1428,-0.1048,0.2572,0.3904,0.3142,0.2952,0.6762,0.4476,-0.0096,0.3904,0.4286,0.4286,0.4666,0.4096,0.5428,0.6572,1,0.9428,0.238,-0.1238,0.0666,0.3142,0.2,0.2952,0.5238,0.4476,0.2,-0.219,-0.238,'14'
-0.7326,0.0014,0.01,0.5248,0.5392,0.9658,1,0.5846,0.5762,0.9288,0.9174,0.5392,0.3058,0.1978,0.1578,0.081,0.027,0.0128,0.0014,0.138,0.1124,0.3428,0.468,0.7838,0.8122,0.9374,0.781,0.7952,0.724,0.4964,0.2176,0.1948,-0.5126,0.103,0.1894,0.585,0.6686,1,0.8662,0.5682,0.688,0.8914,0.6768,0.3816,0.1588,0.2284,0.0112,0.0668,-0.1226,-0.0362,-0.0418,0.0306,0.1142,0.181,0.4122,0.5098,0.8412,0.8718,0.6714,0.5572,0.4512,0.4066,-0.0168,0.0334,-0.4206,0.1206,0.3736,0.6058,0.8794,1,0.547,0.5676,0.9824,0.95,0.297,0.1794,0.1088,-0.053,0.0442,-0.147,-0.0852,-0.0882,-0.1058,-0.003,-0.0648,0.15,0.3352,0.547,0.8148,0.9206,0.7118,0.5912,0.5382,0.3764,-0.1676,-0.0706,-0.4756,-0.0162,0.4668,0.617,0.9058,0.9116,0.567,0.8056,1,0.7584,0.1958,-0.0516,-0.084,-0.2076,-0.352,-0.3344,-0.2842,-0.24,-0.296,-0.2606,-0.131,-0.0516,0.0958,0.349,0.4934,0.7526,0.6936,0.4816,0.4138,0.1458,-0.2812,-0.2372,-0.4704,-0.0478,0.505,0.5804,0.7656,0.6788,0.5224,0.9798,1,0.207,-0.1896,-0.2908,-0.6122,-0.5918,-0.5426,-0.5572,-0.4616,-0.6064,-0.6006,-0.479,-0.4066,-0.2908,-0.1144,0.0072,0.2648,0.4704,0.4442,0.2938,0.2736,0.1172,-0.3286,-0.2764,-0.3362,0.2198,0.9094,0.9828,1,0.8318,1,0.9956,0.9354,-0.0862,-0.4656,-0.6466,-0.5216,-0.388,-0.6336,-0.6854,-0.7026,-0.556,-0.6594,-0.5086,-0.4008,-0.5344,-0.3232,-0.0172,0.125,0.5646,0.3232,0.2242,0.2586,0.138,-0.6294,-0.5388,0.0712,1,0.5526,0.1322,0.722,0.6678,0.7492,0.6474,0.5594,-0.0712,-0.4508,-0.1594,-0.2068,-0.3492,-0.1662,-0.3152,-0.5322,-0.2882,-0.3762,-0.1254,0.017,-0.2814,-0.261,-0.1254,-0.0644,-0.3628,-0.5728,-0.5932,-0.5662,-0.5728,-0.7084,-0.817,-0.7916,0,0,0.5416,0.75,1,0.9584,0.7916,0.7084,0.9166,0.9166,0.875,0.625,0.4166,0.2084,0.3334,0.2084,0.0834,0.0416,0.2916,0.0834,0.2916,0.6666,0.875,0.9166,0.9584,0.5834,0.875,0.7916,0.6666,0.25,0.3334,-0.68,-0.08,0,0.44,0.48,0.88,0.96,0.6,0.72,0.84,1,0.76,0.44,0.24,0.2,0.04,-0.04,-0.08,0.2,0.16,0.12,0.16,0.72,0.76,0.88,0.92,0.68,0.88,0.6,0.56,0.32,0.32,-0.3138,0.0392,0.5098,0.5686,0.8236,0.7648,0.5294,0.9412,1,0.3922,0,-0.1176,-0.4118,-0.6078,-0.2942,-0.353,-0.2942,-0.4314,-0.3138,-0.2352,-0.2352,-0.1568,0.1176,0.196,0.5882,0.5686,0.4706,0.451,0.5294,0.1176,-0.1176,-0.098,-1,-1,-1,-1,-1,-1,-0.9536,-0.969,-0.9138,-0.834,-0.4048,0.5508,0.7654,0.7588,0.9492,0.6748,0.77,0.4624,0.0354,-0.2898,-0.542,-0.73,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9796,-0.9784,-0.9374,-0.8724,-0.4216,0.5392,0.358,0.2398,0.2346,0.0492,0.0218,-0.1294,-0.4122,-0.6864,-0.8398,-0.9164,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.946,-0.9134,-0.8068,-0.54,-0.6034,-0.4756,-0.5024,-0.542,-0.656,-0.6894,-0.8382,-0.8042,-0.8182,-0.8882,-0.9502,-0.9482,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.1142,-0.7714,0.1428,0.5714,1,1,-0.8286,-0.9714,-0.7428,-0.8286,-0.9142,-0.4858,-0.5714,-0.2858,-0.1428,-0.8,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.669,0.707,0.722,0.7156,0.7428,0.7556,0.7768,0.804,0.9034,0.6642,-0.68,0.153,-0.183,-0.0644,0.2892,1,0.742,0.3584,-0.2,0.4286,0.7714,0.7714,0.8858,0.8858,0.7714,0.6572,0.1428,0.1428,0.2572,0.4858,0.7714,1,1,0.5428,0.3142,0.7142,0.0858,0.1428,0.2,0.0286,0.0858,0.1428,-0.0858,-0.1428,0.5428,0.6572,0.3142,0.0858,-0.0858,-0.3714,-0.4546,0.1636,0.909,0.9636,0.6546,0.9272,0.709,0.3454,0.2728,0.2182,0.3454,0.7818,1,0.909,0.9636,0.4728,0.4728,0.5454,0.2728,-0.1636,-0.0546,-0.2,-0.2182,-0.291,-0.2728,-0.3272,-0.0182,-0.0728,-0.0364,-0.0728,-0.2546,-0.309,-0.0612,0.3266,0.7756,1,0.7552,0.9592,0.7552,0.1836,0.3674,0.2654,0.2244,0.653,0.898,0.7552,0.7756,0.5306,0.449,0.551,0.449,-0.0204,0.1836,0,-0.2448,-0.2244,-0.1224,-0.1224,-0.0816,0.1224,-0.102,-0.0408,-0.2654,-0.3878,0.4542,-1,-1,1,-1,-1,-1,-0.8334,-1,0.6868,0.8554,0.5422,0.759,0.3734,0.494,0.4216,0.4698,0.2048,0.8072,1,0.6386,0.7832,0.6868,0.2772,0.1566,0.3012,0.1808,0.3734,0.7832,0.8796,0.5662,0.7108,0.8554,0.2772,0.4458,0.6626,0.735,0.518,0.3012,0.3734,0.0844,'15'
-0.7074,-0.0138,0.0038,0.4174,0.4124,0.9848,1,0.5108,0.5308,0.715,0.763,0.4528,0.5334,0.2182,0.2258,0.024,0.0718,0.0064,0.0542,0.039,0.0946,0.2862,0.3694,0.4704,0.5964,0.9192,0.9672,0.6848,0.6696,0.5082,0.4854,0.2106,-0.5494,0.0582,0.0684,0.5012,0.6482,1,0.8784,0.5468,0.5164,0.7924,0.633,0.4582,0.2708,0.1696,-0.0354,0.0456,-0.157,-0.0152,-0.1696,-0.0278,-0.0076,0.124,0.2684,0.3746,0.6254,0.7164,0.7012,0.7088,0.519,0.5594,0.1594,0.0886,-0.5146,0.032,0.2286,0.5274,0.8238,1,0.7496,0.4406,0.885,0.9464,0.4126,0.2158,0.0652,0.0294,-0.0396,-0.1136,-0.0524,-0.175,-0.1214,-0.1444,-0.009,0.06,0.1622,0.2924,0.3538,0.765,0.7752,0.4738,0.4252,0.3462,0.1878,0.1238,-0.5544,-0.0782,0.2574,0.4366,0.744,0.8104,0.4776,0.6236,1,0.8924,0.1524,-0.032,-0.0218,-0.324,-0.2906,-0.4186,-0.4392,-0.3522,-0.3828,-0.306,-0.26,-0.1344,0.0372,0.1446,0.388,0.557,0.6184,0.4878,0.4418,0.3162,-0.0628,0.0012,-0.5642,-0.123,0.3854,0.5112,0.7932,0.7766,0.4582,0.8798,1,0.5894,0.0698,-0.162,-0.271,-0.4218,-0.4916,-0.4608,-0.4972,-0.581,-0.5642,-0.5056,-0.3744,-0.2878,-0.2206,0.0392,0.3436,0.4888,0.5922,0.5922,0.5474,0.4442,-0.1146,0.0978,-0.5272,0.0368,0.7268,0.9054,1,0.9754,0.6322,0.6182,0.8038,0.3064,-0.205,-0.6148,-0.6218,-0.6778,-0.5202,-0.5096,-0.5376,-0.6112,-0.6462,-0.6742,-0.6602,-0.6462,-0.6498,-0.282,0.0894,0.296,0.5062,0.5446,0.3906,0.2784,-0.373,-0.3486,-0.2932,0.684,0.7356,1,0.8908,0.885,0.6954,0.5862,0.3794,-0.1092,-0.5574,-0.385,-0.5748,-0.3966,0.1092,-0.2242,-0.4022,-0.5748,-0.4138,-0.4828,-0.4712,-0.592,-0.684,-0.3908,-0.2528,-0.3506,-0.3736,-0.3794,-0.2816,-0.546,-0.6782,-0.7356,-0.8076,-0.1154,-0.0384,0.3846,0.4616,0.8076,0.923,0.577,0.6154,0.5,0.7692,0.6538,0.577,0.423,0.1154,0.1154,0.1154,0.1154,0,0.1154,0.1924,0.3076,0.5,0.6538,0.7692,1,0.8462,0.6924,0.6538,0.7308,0.6538,0.1924,-0.88,-0.12,-0.08,0.28,0.32,0.96,1,0.36,0.24,0.64,0.72,0.44,0.56,0.16,0.24,-0.12,0.08,-0.24,0.04,-0.2,0.16,0.04,0.44,0.32,0.8,0.8,0.8,0.76,0.72,0.72,0.4,0.36,-0.55,-0.1,0.4,0.5,0.8,0.75,0.425,0.9,1,0.4,-0.025,-0.35,-0.5,-0.625,-0.5,-0.6,-0.7,-0.9,-0.8,-0.85,-0.6,-0.525,-0.325,-0.15,0.3,0.375,0.6,0.5,0.575,0.35,-0.4,0,-1,-1,-1,-1,-1,-1,-1,-1,-0.9658,-0.968,-0.4504,0.4944,0.6308,0.8134,0.972,0.8416,0.3802,0.322,0.001,-0.2458,-0.4684,-0.659,-0.8214,-0.9238,-0.9498,-0.9638,-0.9518,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9712,-0.9692,-0.29,0.725,0.5994,0.5642,0.6662,0.652,0.4546,0.3048,-0.122,-0.4938,-0.7148,-0.8462,-0.9264,-0.9532,-0.9616,-0.9692,-0.9686,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.96,-0.6634,-0.574,-0.554,-0.646,-0.694,-0.654,-0.61,-0.54,-0.6438,-0.8,-0.8256,-0.8382,-0.7734,-0.8334,-0.7934,-0.9,-0.92,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,1,1,1,-0.7142,-0.8572,-0.8,-0.8286,-0.8858,-0.9428,-0.3428,-0.5714,-0.2858,-0.6572,-0.6858,-0.6858,-0.8858,-1,-0.6,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.5932,0.5996,0.5876,0.6082,0.6072,0.594,0.6128,0.6658,0.775,0.608,-0.7066,0.2236,-0.067,0.2766,0.547,0.9904,0.9014,1,0.017,0.356,0.5594,0.695,0.7628,0.8984,0.7288,0.7628,0.3898,0.4238,0.4916,0.7628,0.8984,1,0.9662,0.7288,0.5932,0.7966,0.7966,0.7966,0.4238,0.3898,0.4916,0.2204,0.1526,0.1186,0.0848,0.4916,0.5254,0.1186,0.1186,-0.2204,0.062,0.4336,0.77,0.9292,0.8584,1,0.9824,0.6992,0.4868,0.3806,0.4336,0.6638,0.8408,0.947,0.7876,0.7168,0.6106,0.7346,0.8054,0.5576,0.2744,0.3274,0.3098,0.3098,-0.1328,-0.0442,-0.1682,0.3982,0.3098,0.1858,0.2036,-0.4336,-0.32,0.18,0.6,0.96,0.72,0.8,0.7,0.3,0.28,0.12,0.38,0.7,1,1,0.7,0.76,0.4,0.36,0.58,0.34,-0.02,-0.22,-0.14,-0.34,-0.6,-0.62,-0.24,-0.1,-0.16,0,-0.32,-0.72,0.4264,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.253,-0.1326,0.229,0.0362,0.5422,0.759,0.2772,0.3494,0.8554,0.8796,1,0.253,0.6144,0.3976,0.3734,0.3734,0.3976,0.5904,0.4698,0.5422,0.494,0.3494,-0.0362,0.4216,0.1326,0.4458,0.3976,0.3254,0.1084,0.4216,0.0362,-0.0602,'15'
-0.6692,0.2868,0.3676,-0.0624,0.0148,-0.3346,-0.2868,-0.4338,-0.7058,-0.8272,-0.478,-0.5,-0.4632,-0.4412,-0.4558,-0.4154,-0.3566,-0.2058,-0.3014,-0.0294,-0.022,0.4596,0.5,0.8602,0.9852,0.772,0.8052,0.7242,1,0.978,0.8014,0.7536,-0.6324,0.1512,0.1718,0.079,0.0824,-0.4054,-0.3848,-0.7388,-0.6872,-0.756,-0.708,-0.5292,-0.4468,-0.6358,-0.5774,-0.543,-0.3986,-0.354,-0.2164,-0.0824,0.0996,0.3918,0.653,0.725,0.921,0.7836,0.8144,0.8316,1,0.9348,0.9518,0.8488,-0.481,0.1924,0.1616,0.3058,0.2268,-0.402,-0.5154,-0.4776,-0.5774,-0.7286,-0.7698,-0.543,-0.646,-0.6116,-0.5258,-0.409,-0.4398,-0.3196,-0.1478,-0.0516,0.1546,0.2818,0.6358,0.7492,0.9312,1,0.9554,0.9896,0.9038,0.9312,0.9176,0.8762,-0.4874,0.1084,0.0362,0.3322,0.13,-0.3754,-0.704,-0.639,-0.6498,-0.6678,-0.7546,-0.7292,-0.6138,-0.5848,-0.5198,-0.5884,-0.527,-0.3718,-0.296,-0.101,0.0902,0.4802,0.675,0.9386,1,0.9386,0.8664,0.9386,0.9602,0.9458,0.852,0.7328,-0.5834,-0.1346,0.2604,0.386,-0.131,-0.4184,-0.6482,-0.72,-0.7308,-0.8384,-0.7882,-0.7486,-0.5906,-0.544,-0.641,-0.5548,-0.4362,-0.429,-0.2244,-0.1454,0.106,0.4614,0.72,0.9676,1,0.8708,0.878,0.9102,0.8922,0.8816,0.799,0.763,-0.6458,-0.2288,0.3284,0.4244,-0.2324,-0.4834,-0.8008,-0.6716,-0.7158,-0.8414,-0.679,-0.535,-0.4612,-0.4686,-0.487,-0.5794,-0.5978,-0.524,-0.3764,-0.2288,-0.0036,0.3506,0.6162,0.9852,1,0.8524,0.7712,0.7896,0.631,0.5608,0.465,0.4354,-0.409,0.4716,0.5512,0.3352,-0.0284,-0.3068,-0.2556,-0.1364,-0.534,-0.7046,-0.8296,-0.517,-0.2556,-0.25,-0.341,-0.4148,-0.409,-0.466,-0.517,-0.3012,0.0114,0.4204,0.8636,1,0.909,0.875,0.9262,0.7216,0.1762,0.1932,0.0852,0.1364,-0.2916,0.25,0.3334,-0.25,-0.25,-0.5416,-0.0416,-0.0834,-0.4166,-0.3334,-0.125,-0.0834,-0.2916,-0.2916,-0.125,-0.2916,-0.0416,-0.125,-0.2084,-0.2916,-0.4584,0.2084,0.25,0.5834,0.9166,1,0.9166,0.7084,0.7084,0.8334,0.7084,0.125,-0.8858,0.4858,0.6572,0.1428,0.2,0.0286,-0.3714,-0.3714,-0.7142,-0.8286,-0.7714,-0.7714,-0.6,-0.7714,-0.4858,-0.6572,-0.6572,-0.4286,-0.0858,0.0286,-0.1428,0.3714,0.3714,0.8286,0.8858,0.6,0.8286,0.7142,1,0.7714,0.6,0.7714,-0.3452,-0.0088,0.3628,0.416,-0.115,-0.239,-0.9116,-0.4336,-0.469,-0.292,-0.2566,-0.2212,-0.115,-0.1682,-0.0442,-0.3806,-0.4336,-0.115,-0.0088,0.115,0.3098,0.4514,0.6992,0.9292,1,0.8584,0.7876,0.8408,0.7346,0.7168,0.646,0.5752,-1,-1,-1,-1,-0.9144,-0.9144,-0.6722,1,1,0.316,-0.6532,0.791,0.924,0.8764,0.8908,0.7102,0.6294,0.449,0.4632,-0.0498,-0.1924,-0.24,-0.563,-0.7388,-0.8338,-0.886,-0.9288,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9578,-0.9578,-0.8226,0.9598,1,-0.2904,-0.5544,-0.1826,0.923,0.4794,0.1542,0.2514,0.1414,0,0.0116,-0.3612,-0.6748,-0.756,-0.8448,-0.8786,-0.904,-0.9272,-0.9304,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.9,-0.9234,-0.7334,-0.85,0.0066,-0.1268,-0.4926,-0.1576,-0.2276,-0.1676,-0.1176,-0.13,-0.2178,-0.2646,-0.3868,-0.7312,-0.8956,-0.79,-0.6968,-0.4334,-0.7268,-0.78,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4286,-0.4286,1,1,0.2858,0.2286,0.7714,1,0.6858,-0.7714,-0.9142,-0.9428,-0.9714,-1,-0.8858,0,0.3142,-0.5714,-0.9142,-0.8858,-0.9142,-0.8858,-0.8286,-1,-1,-1,-1,-1,-1,0.152,0.1906,0.2228,0.227,0.2328,0.1796,0.156,0.1448,0.1322,0.0454,1,1,1,1,1,1,1,1,1,1,-0.7334,-0.0236,-0.5734,-0.604,-0.3484,0.2344,0.9102,1,0.5318,0.2062,0.145,0.023,-0.0992,0.145,0.3282,0.6132,0.6844,0.7862,0.8932,1,0.715,0.827,0.6284,0.4554,0.6692,0.7506,0.6132,0.6438,0.5726,0.369,0.4606,0.4096,0.5928,0.4046,0.4096,0.4148,0.4962,0.6082,0.4402,0.1094,0.335,-0.1688,-0.2666,-0.066,-0.0318,-0.2176,0.0268,0.071,0.066,0.2958,0.5404,1,0.8778,0.868,0.8924,0.643,0.8924,0.912,0.6674,0.9316,0.9902,0.7848,0.5062,0.4866,0.5746,0.3986,0.4278,0.4328,0.4524,0.6136,0.5502,0.1002,-0.1452,-0.4618,-0.3456,-0.3456,-0.3774,-0.3562,-0.2718,-0.2612,-0.124,-0.0976,0.2928,0.7256,0.9156,0.7784,1,0.8734,0.7784,0.7572,0.8206,0.752,0.7942,0.8416,0.6358,0.6992,0.789,0.7256,0.4564,0.43,0.62,0.5514,0.3932,0.1082,1,-1,-1,1,-1,-1,-1,-0.1334,-1,-0.451,-0.4314,-0.0392,-0.1176,-0.1568,-0.1176,-0.098,-0.098,0.098,-0.255,0.8824,1,1,0.8824,0.2942,0.2942,0.6862,0.5686,-0.1176,-0.2942,0,0.098,0.098,0.0784,0.255,0.2942,0.255,0.255,0.0196,0.255,0.353,-0.4902,'16'
-0.7714,0.3276,0.4436,0.0102,0.1366,-0.1912,-0.1808,-0.3618,-0.4778,-0.5802,-0.4778,-0.396,-0.4744,-0.413,-0.471,-0.2832,-0.4232,-0.2424,-0.2798,-0.0376,-0.0068,0.3242,0.4334,0.7064,0.9726,0.8396,0.7202,0.604,0.9352,0.9454,0.9658,1,-0.657,0.1684,0.2018,0.0774,0.1016,-0.3172,-0.2776,-0.7056,-0.6662,-0.7238,-0.6236,-0.6784,-0.5812,-0.5508,-0.3778,-0.475,-0.4658,-0.472,-0.3202,-0.1562,0.132,0.223,0.4082,0.657,0.8816,0.827,0.7086,0.7116,0.8786,0.9484,1,0.912,-0.5438,0.1348,0.1022,0.2474,0.1704,-0.4222,-0.526,-0.4104,-0.5348,-0.6918,-0.7718,-0.6652,-0.7066,-0.5348,-0.6504,-0.603,-0.5586,-0.3748,-0.3392,-0.194,0.1438,0.2948,0.526,0.686,0.7956,0.8726,0.7186,0.7838,0.9112,1,0.9496,0.9644,-0.6214,-0.0772,-0.1024,0.1698,-0.007,-0.5624,-0.7812,-0.6858,-0.7448,-0.7336,-0.7868,-0.6746,-0.495,-0.5904,-0.4698,-0.5036,-0.3688,-0.3942,-0.3324,-0.0688,0.0716,0.3856,0.568,0.8598,0.899,0.8346,0.7336,0.913,0.9776,1,0.9326,0.8934,-0.5882,0.0296,-0.061,0.2006,-0.0542,-0.4486,-0.7732,-0.829,-0.7452,-0.7696,-0.7102,-0.6126,-0.5742,-0.5636,-0.473,-0.6266,-0.63,-0.424,-0.4206,-0.2042,0.082,0.4032,0.7766,0.9546,0.8568,0.9092,0.9232,0.8988,1,0.9232,0.7556,0.602,-0.504,0.1992,0.4024,0.7114,0.3578,-0.309,-0.7358,-0.7074,-0.6788,-0.8252,-0.752,-0.504,-0.5244,-0.5894,-0.6464,-0.687,-0.6056,-0.4838,-0.435,-0.3578,-0.1544,0.061,0.5,0.9472,1,0.744,0.6992,0.6056,0.256,0.439,0.252,0.2114,-0.3014,0.7184,0.5154,0.0704,-0.2958,-0.6732,-0.5042,-0.4422,-0.3464,-0.7126,-0.786,-0.5492,-0.6788,-0.4198,-0.4198,-0.4874,-0.4648,-0.5944,-0.7916,-0.4254,-0.2226,0.2676,0.5718,0.983,1,0.7972,0.9436,0.4592,0.4084,-0.2226,-0.2564,-0.1436,-0.8422,0.579,0.7368,0.3684,0.2106,0.0526,0,0.2106,0.1578,-0.3684,-0.1578,0,-0.1052,-0.5264,-0.1052,-0.0526,-0.3158,-0.0526,-0.0526,-0.2106,0,0.1052,0.421,0.7368,0.8948,0.8422,0.8948,0.5264,0.579,1,0.6316,0.9474,-0.6444,0.5112,0.6,0.1112,0.3778,0.1556,0.0666,0.0666,-0.2,-0.2888,-0.4666,-0.1112,-0.1112,0.0222,-0.2888,-0.2444,-0.0666,-0.0222,0.0222,0.0666,0.1112,0.3778,0.5556,0.6888,0.8666,1,0.9112,0.6444,0.7334,0.8666,0.8222,0.9112,-0.5208,-0.0834,-0.1666,0.0624,-0.1458,-0.4166,-0.6042,-0.6458,-0.6876,-0.8124,-0.9166,-0.6042,-0.5208,-0.4584,-0.4584,-0.5416,-0.625,-0.2708,-0.3334,-0.1876,0.125,0.375,0.6458,0.8124,0.8958,0.9376,0.7916,0.7708,1,0.9166,0.8542,0.75,-1,-1,-1,-1,-0.8942,-0.9058,0.3588,1,0.6236,-0.653,-0.7176,0.6294,0.6352,0.8236,0.9412,0.7706,0.6882,0.2942,0.0118,0.4294,0.0824,-0.2648,-0.6294,-0.8,-0.8824,-0.9058,-0.9,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.952,-0.953,-0.4038,0.2484,-0.1846,-0.557,-0.6622,-0.4776,-0.0402,-0.0346,-0.0616,0.3008,0.8412,0.2842,-0.5806,-0.5626,-0.7114,-0.7998,-0.8724,-0.8904,-0.9116,-0.934,-0.9396,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.94,-0.64,-0.7534,0.18,0.35,0.4,-0.4556,-0.2734,-0.2224,-0.238,-0.036,0.052,-0.028,-0.306,-0.708,-0.79,-0.756,-0.4334,-0.5668,-0.6734,-0.8434,-0.91,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,0.1428,-0.3714,1,1,-0.2572,-0.9142,-0.9142,-0.8286,-0.5142,-0.0286,-0.3142,-0.7142,-0.6858,-0.7142,-0.8858,-0.9714,-0.9428,-0.8572,-0.2286,-1,-1,-1,-1,-1,-1,0.4494,0.4534,0.413,0.4206,0.4244,0.3758,0.3398,0.293,0.2214,0.0306,0.9688,0.983,1,1,1,1,1,1,1,1,-0.7466,0.1412,-0.6924,-0.6756,-0.5234,-0.377,-0.2282,1,0.2212,-0.21,-0.2774,-0.1932,-0.1988,0.21,0.2942,0.395,0.507,0.6638,1,0.8656,0.6862,0.804,0.804,0.6022,0.5126,0.6358,0.7142,0.703,0.591,0.6022,0.6638,0.5966,0.4902,0.4118,0.4006,0.2942,0.3838,0.3558,0.2492,0.0532,-0.1962,-0.3476,-0.3192,-0.5414,-0.4278,-0.2434,-0.1584,-0.2672,-0.0354,-0.0686,0.305,0.546,0.5744,0.6028,0.967,0.967,0.773,0.636,0.6974,1,0.9906,0.5602,0.8346,0.8582,0.6926,0.5602,0.5792,0.3854,0.3758,0.6644,0.39,0.0544,-0.5136,-0.2658,-0.2252,-0.491,-0.3918,-0.2658,-0.2928,-0.3874,-0.3828,-0.1532,-0.018,0.3154,0.6666,0.491,0.572,1,0.7342,0.6126,0.6172,0.8964,0.7882,0.7838,0.6892,0.7342,0.59,0.6892,0.3514,0.3964,0.3828,0.6352,0.5136,0.1712,1,-1,-1,1,-1,-1,-1,-0.0334,-1,-0.173,0.077,0.1154,-0.077,0.0962,-0.077,0.077,-0.0576,0.1538,0.1154,0.5962,1,0.9808,0.827,0.4038,0.5384,0.7884,0.8846,0,-0.0192,-0.3076,0.327,0.327,0.5576,0.5962,-0.077,0.3654,0.3654,0.4424,-0.0962,-0.1346,-0.2884,'16'
-0.514,0.3486,0.4154,-0.0704,-0.0634,-0.3134,-0.2888,-0.6866,-0.6902,-0.7712,-0.6268,-0.574,-0.6022,-0.4684,-0.3134,-0.3486,-0.2888,-0.257,-0.088,0.1374,0.4472,0.6126,0.8978,0.9508,0.9472,0.9226,0.8028,0.9754,1,0.9824,0.9612,0.9508,-0.4378,0.2246,0.2084,0.2246,0.1632,-0.286,-0.357,-0.6996,-0.7674,-0.5316,-0.6284,-0.5218,-0.6188,-0.5122,-0.3894,-0.1568,-0.2794,-0.1308,0.008,0.3442,0.5864,0.8642,0.7416,0.9064,0.8772,1,0.8094,0.6026,0.6058,0.664,0.5768,0.6316,-0.3344,0.2914,0.2318,0.6192,0.4602,-0.2582,-0.5066,-0.596,-0.404,-0.308,-0.6822,-0.6258,-0.265,-0.2814,-0.1158,-0.1456,0.1324,0.2616,0.5332,0.7616,0.9636,0.8708,1,0.861,0.8146,0.596,0.6126,0.351,0.3676,0.4636,0.4834,0.5662,-0.2928,0.272,0.643,0.8614,0.5806,-0.1786,-0.1958,-0.2236,-0.175,-0.2652,-0.2928,-0.1266,-0.0364,0.1542,0.3068,0.4974,0.4454,0.7192,0.636,0.5356,0.5078,0.6188,0.9202,1,0.7642,0.532,0.3692,0.331,0.376,0.3934,0.5772,0.6292,-0.3804,0.0554,0.935,1,0.3844,0.2276,0.3078,-0.0554,-0.1204,0.044,0.0364,0.3002,0.587,0.5144,0.6482,0.3614,0.2734,0.0784,0.1472,0.1892,0.3078,0.629,0.7896,0.8776,0.6368,0.4838,0.3194,0.239,0.3804,0.545,0.5602,0.4684,-0.4502,0.0432,0.935,1,0.3982,0.238,0.3204,0.039,0.0174,0.2424,0.4416,0.368,0.2598,-0.2252,-0.2728,-0.3506,-0.4156,-0.4632,-0.4502,-0.4502,-0.42,-0.2164,0.2294,0.329,0.0822,-0.1342,-0.3636,-0.29,-0.2252,-0.078,0.0692,0.0174,-0.4478,0.3408,0.7014,1,0.5268,-0.2564,-0.3746,-0.386,-0.1268,-0.0084,-0.2338,-0.3972,-0.4536,-0.5268,-0.6732,-0.6676,-0.6508,-0.369,-0.6394,-0.476,-0.4592,-0.5774,-0.6112,-0.4028,-0.3802,-0.4536,-0.6,-0.893,-0.955,-0.4028,-0.3296,-0.6,-0.3182,0.591,0.6818,0.3636,0.0454,-0.0454,-0.409,-0.4546,-0.2272,-0.409,-0.1818,-0.1818,-0.7728,-0.2272,0,-0.091,-0.2728,-0.091,-0.3636,-0.091,0.2272,0.5,0.6364,0.7272,0.7728,0.7728,0.8182,0.8636,0.909,1,1,0.909,-0.56,0.2,0.24,-0.2,-0.16,-0.52,-0.36,-0.64,-0.6,-0.72,-0.6,-0.72,-0.44,-0.56,-0.44,-0.4,-0.28,-0.2,-0.28,0,0.16,0.56,0.48,0.88,0.8,0.48,0.72,0.88,1,0.76,0.88,0.76,-0.4202,0.1304,0.942,1,0.4492,0.3624,0.3914,0.1014,0.0434,0.2174,0.5072,0.5362,0.6522,0.2464,0.0434,-0.0144,-0.1304,-0.0724,-0.0724,-0.0724,-0.0434,0.0434,0.7682,0.855,0.2754,0.1884,0.1014,-0.0144,-0.0724,0.1884,0.1014,0.1014,-1,-0.9542,-0.961,-0.952,-0.9268,-0.9428,-0.913,-0.9244,-0.9336,-0.92,-0.8878,0.0686,0.048,0.0458,0.1488,0.4622,0.6614,0.881,0.2724,0.0114,-0.3272,-0.5148,-0.7552,-0.8466,-0.8994,-0.9382,-0.961,-0.9428,-1,-1,-1,-1,-1,-1,-0.9588,-0.9548,-0.8582,-0.3728,-0.2432,-0.183,0.004,-0.016,-0.206,-0.5216,0.3166,0.781,0.3216,0.0774,0.0492,0.0984,0.1418,-0.2,-0.41,-0.6322,-0.7356,-0.8654,-0.8944,-0.8934,-0.9306,-0.9478,-0.9428,-1,-1,-1,-1,-1,-1,-0.9762,-0.9734,-0.88,0.9032,1,1,0.9466,0.9866,0.94,0.8266,-0.385,-0.395,-0.215,-0.2468,-0.6156,-0.7112,-0.8268,-0.8312,-0.869,-0.869,-0.9,-0.87,-0.7634,-0.65,-0.72,-0.8334,-0.8734,-1,-1,-1,-1,-1,-1,-0.3142,-0.4572,1,1,1,-0.3142,-0.8572,-0.8286,-0.2,1,1,-0.5714,-0.6572,-0.5714,-0.6858,-0.7714,-0.6572,-0.2,0.8286,-0.1428,-0.7428,-0.8,-0.6286,-0.7428,-0.8858,-0.9428,-0.5714,-1,-1,-1,-1,-1,0.0066,0.0256,0.0476,0.043,0.0518,0.0436,0.0494,0.048,0.0548,0.2596,0.955,0.9892,1,1,1,1,1,1,0.8704,0.3394,-0.72,0.0118,-0.5598,-0.4512,0.3096,0.791,0.9788,-0.0834,-0.7268,-0.5356,-0.5084,-0.393,-0.4142,-0.3324,-0.2898,-0.2048,-0.2474,-0.2292,-0.1198,0.1168,0.1654,0.2746,0.5842,0.6418,0.7116,0.5872,0.654,0.739,0.742,0.8604,0.9878,0.821,0.8664,1,0.9788,0.8028,0.6268,0.6268,0.563,0.135,-0.7968,-0.561,-0.5284,-0.3902,-0.4146,-0.2738,-0.3468,-0.1356,-0.0542,-0.046,0.1246,0.271,0.2628,0.5366,0.672,0.878,0.9106,0.851,0.7182,0.7344,1,0.9784,0.8536,0.6314,0.897,0.9838,0.851,0.8238,0.8374,0.87,0.8158,0.3902,-0.7874,-0.467,-0.491,-0.521,-0.461,-0.473,-0.2186,-0.1946,-0.1228,-0.0928,0.1078,0.3682,0.467,0.503,0.8324,0.8682,0.8592,0.7096,0.8862,0.8772,0.958,1,0.6498,0.9012,0.964,0.8384,0.6348,0.6498,0.8892,0.6498,0.6228,0.2246,0.1418,-1,1,-1,-1,-1,-0.6,0.5,-1,-0.1224,0.102,0.1224,0.0204,0.3674,0.7346,0.1224,0.0612,0.2654,0.4286,0.6734,0.5918,0.551,0.3674,0.3674,0.4082,0.5714,0.3266,0.449,0.4286,0.4898,0.5102,1,0.653,0.3878,0.551,0.204,0.1428,-0.4694,-0.3062,-0.1428,-0.796,'17'
-0.7238,0.1472,0.217,-0.0046,0.0288,-0.3506,-0.3444,-0.557,-0.5174,-0.6388,-0.5204,-0.5934,-0.4628,-0.5326,-0.3292,-0.3232,-0.223,-0.2292,0.044,0.1866,0.478,0.6722,0.8816,0.9666,0.8846,0.9028,0.9242,1,1,0.9272,0.8604,0.8392,-0.5064,0.217,0.2142,0.2964,0.2766,-0.1632,-0.1914,-0.5744,-0.6568,-0.5036,-0.529,-0.3758,-0.3758,-0.4128,-0.4354,-0.1404,-0.1404,0.1376,0.1944,0.532,0.6114,1,1,0.9404,0.8696,0.773,0.7504,0.5972,0.4724,0.5036,0.478,0.4724,-0.3506,0.4318,0.3912,0.9336,0.786,-0.1734,-0.358,-0.2546,-0.524,-0.358,-0.369,-0.2398,-0.1292,-0.0074,0.2584,0.3174,0.8266,0.8118,0.7416,0.7122,0.7232,0.7012,1,0.963,0.8598,0.7306,0.5166,0.3986,0.513,0.3986,0.4022,0.3838,-0.3948,0.225,0.7454,1,0.6642,-0.0258,-0.1624,-0.1808,-0.1402,-0.203,-0.2288,-0.1292,0.0184,0.5794,0.6126,0.513,0.5166,0.1772,0.107,0.203,0.203,0.5056,0.7196,0.8376,0.6826,0.3506,0.1512,0.1218,0.1772,0.1882,0.2362,0.011,-0.4754,0.004,0.9344,1,0.4222,0.246,0.2336,-0.0492,-0.1188,-0.2378,-0.1598,0.1106,0.3934,0.1598,0.205,-0.1066,-0.3524,-0.3196,-0.291,-0.1762,0.0286,0.2214,0.541,0.664,0.4796,0.1476,0.0738,-0.0204,0.0778,0.1148,0.127,-0.2172,-0.4164,0.2012,0.9036,0.9716,1,0.7054,0.405,0.3598,0.1954,0.0482,0.5524,0.3314,-0.1444,-0.3712,-0.6148,-0.507,-0.422,-0.4844,-0.5468,-0.5298,-0.524,-0.3882,-0.0652,0.1048,-0.0198,-0.0594,-0.3994,-0.5298,-0.3428,-0.2578,-0.5014,-0.5468,-0.1428,1,0.729,0.5164,0.5898,0.4432,0.0696,-0.0476,-0.1428,0.282,-0.0696,-0.2674,-0.2968,-0.4946,-0.1356,-0.2234,-0.2748,-0.392,-0.414,-0.238,-0.077,-0.1356,-0.4578,-0.0476,-0.0402,-0.2674,-0.5384,-0.8534,-0.7728,-0.8974,-0.7876,-0.8242,-0.647,0.2156,0.3726,0.2156,-0.1764,-0.2156,-0.2156,-0.2156,-0.4118,-0.4118,-0.6078,-0.4902,-0.451,-0.5686,-0.3334,-0.255,-0.098,-0.1372,0.0588,0.0196,0.3726,0.6078,0.804,0.8432,0.7648,0.6862,0.7254,0.9216,1,0.9608,0.9216,0.8432,-0.9246,-0.0566,0.0188,-0.2452,-0.132,-0.585,-0.434,-0.4716,-0.585,-0.6226,-0.6226,-0.585,-0.585,-0.4716,-0.5472,-0.434,-0.5472,-0.3584,-0.3962,0.2452,0.2452,0.6604,0.7736,0.6604,0.7736,0.4716,0.849,0.7358,1,0.9622,0.7736,0.8114,-0.3948,0.3158,0.2368,0.7106,0.579,-0.2368,-0.3422,-0.3684,-0.5,-0.579,-0.3158,-0.2368,-0.2106,-0.079,0,0.0264,0.5264,0.6052,0.6842,0.7368,0.6052,0.6316,0.9736,1,0.6842,0.7368,0.3684,0.3684,0.6052,0.5,0.421,0.2894,-1,-1,-0.936,-0.9326,-0.946,-0.919,-0.9258,-0.909,-0.9056,-0.9124,-0.7268,0.2984,0.2478,0.5144,0.6392,0.8146,0.9392,0.7504,0.113,-0.258,-0.3896,-0.494,-0.6964,-0.8078,-0.9022,-0.9292,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.966,-0.9414,-0.4126,-0.6526,-0.4258,-0.2544,-0.4366,-0.668,0.6928,0.4188,-0.1038,-0.3516,-0.3818,-0.3778,-0.4852,-0.6588,-0.7676,-0.8054,-0.8564,-0.912,-0.9282,-0.953,-0.9598,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9528,-0.9734,-0.9368,0.5032,1,1,0.9232,0.85,0.5632,-0.1646,0.0066,-0.1446,-0.4756,-0.609,-0.7468,-0.818,-0.832,-0.832,-0.804,-0.854,-0.8534,-0.7068,-0.7734,-0.8334,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3428,-0.9428,1,1,0.4286,0.1714,-0.8572,0.5714,1,1,-0.2858,-0.4,-0.4572,-0.5428,-0.6858,-0.7714,-0.6,-0.5714,-0.7714,-0.8572,-0.8,-0.8,-0.9714,-0.9428,-1,-1,-1,-1,-1,-1,-1,0.3336,0.3418,0.328,0.3364,0.3274,0.3284,0.3252,0.2976,0.2862,0.4194,1,1,1,1,1,1,1,1,0.7108,0.2682,-0.7066,0.1058,-0.6882,-0.1124,0.756,0.9506,0.6572,0.175,-0.6314,-0.6738,-0.405,-0.355,-0.355,-0.2476,-0.1824,-0.071,-0.117,-0.1554,-0.0288,0.0634,0.2936,0.3166,0.3244,0.7466,0.927,0.8926,0.7582,0.812,0.8618,0.9924,0.8464,0.9462,0.8272,0.9348,1,0.9118,0.5816,0.6968,0.7082,0.3742,-0.7774,-0.6446,-0.4684,-0.3422,-0.3356,-0.3522,-0.309,-0.216,-0.093,-0.073,0.0632,0.1496,0.3688,0.4286,0.5416,0.8438,0.8904,0.877,0.5382,0.8538,1,0.9302,0.8904,0.618,0.7974,0.887,0.8338,0.628,0.6112,0.824,0.7242,0.309,-0.7204,-0.4696,-0.3406,-0.4194,-0.5412,-0.2974,-0.294,-0.19,-0.1112,0.0144,0.233,0.337,0.5448,0.4946,0.9534,0.9284,0.8458,0.81,0.7096,0.8854,0.9642,0.8746,0.6416,0.8782,1,0.7922,0.6738,0.405,0.577,0.6666,0.5878,0.1254,0.2088,-1,-1,1,-1,-1,-0.4,0.2334,-1,0.2406,0.2912,-0.2152,0.2912,0.3164,0.2912,0.2406,0.2658,0.5696,0.6708,1,0.7216,0.5444,0.1392,0.4684,0.6708,0.7216,0.2658,0.2658,0.3924,0.3164,0.2912,0.114,0.3164,0.9494,0.7468,0.4684,0.519,0.0126,0.114,0.114,-0.3164,'17'
-0.7424,-0.1566,-0.1464,0.2172,0.399,0.803,0.8006,1,0.8964,0.9268,0.8712,0.9268,0.7324,0.409,0.245,0.2272,0.1894,0.1994,0.2474,0.2626,0.3232,0.4016,0.591,0.6742,0.9824,0.995,0.9924,0.8838,0.9192,0.8358,0.5884,0.4748,-0.6292,-0.1148,-0.0694,0.2178,0.5264,0.6914,0.8972,1,0.6986,0.7608,0.8852,0.8876,0.256,0.189,0.2966,0.201,0.1842,0.091,0.1436,0.0718,0.1842,0.3924,0.4904,0.732,0.7488,0.579,0.5144,0.5264,0.4832,0.3708,0.299,0.2416,-0.6174,-0.1732,0.0274,0.1868,0.5284,0.5808,1,0.9498,0.836,0.7654,0.9202,0.6924,0.6082,0.3804,0.3486,0.319,0.2324,0.328,0.2666,0.3668,0.6902,0.6606,0.6082,0.5148,0.4192,0.401,0.467,0.2278,0.1708,0.0114,0.082,0.2004,-0.5746,-0.1516,0.1662,0.2836,0.6968,0.6968,1,0.8362,0.6356,0.775,0.7898,0.9608,0.8704,0.6382,0.56,0.6112,0.7628,0.6724,0.714,0.44,0.374,0.1418,0.088,0.0416,-0.0318,0.1198,0.1442,0.154,-0.0268,-0.198,-0.0832,0.0268,-0.6346,-0.2538,0.1218,0.1878,0.6066,0.6776,0.83,0.5152,0.5102,0.5254,0.6928,0.7944,1,0.972,0.8248,0.9162,0.972,0.3654,0.2512,0.0964,-0.0964,-0.0914,-0.2006,-0.2436,-0.1598,-0.1422,-0.1472,-0.1218,-0.236,-0.2792,-0.0812,-0.028,-0.6356,-0.2304,0.207,0.2828,0.7084,0.5568,0.4432,0.3294,0.2944,0.0758,0.376,0.4314,0.93,0.8454,1,0.8862,0.8572,0.003,-0.2682,-0.417,-0.484,-0.5772,-0.5744,-0.4986,-0.4724,-0.4724,-0.6268,-0.5744,-0.6268,-0.6356,-0.554,-0.4198,-0.5066,0.2202,0.0792,0.2908,0.6344,0.5682,-0.1234,-0.141,-0.1894,-0.4934,-0.2864,0.1982,0.7444,1,0.9472,0.7754,0.4714,-0.1058,-0.4406,-0.5286,-0.7004,-0.7798,-0.6168,-0.5198,-0.3612,-0.3744,-0.6564,-0.859,-0.8018,-0.9736,-0.6212,-0.7136,-0.8222,-0.4222,-0.3778,-0.0666,0.2444,0.6,0.7334,0.7778,0.6,0.7334,0.8666,0.8666,0.6,0.2888,0.1112,0.1556,0.1112,0.1556,0.1112,0.2444,0.2444,0.4222,0.4666,0.5556,0.7334,1,1,0.8222,0.7334,0.6444,0.4222,0.2888,-0.8966,-0.2068,-0.2068,0.138,0.1724,0.6206,0.5862,0.7586,0.7932,0.7586,0.7242,0.6552,0.7586,0.3448,0.3448,0.2758,0.3104,0.2414,0.2758,0.2758,0.3794,0.4482,0.5862,0.6206,0.7242,0.8966,1,0.8276,0.931,0.7932,0.5172,0.3448,-0.7012,-0.3794,0.0344,0.1954,0.4712,0.4022,0.5402,0.3334,0.2874,0.3104,0.4942,0.5402,1,0.862,0.885,0.954,0.908,-0.0114,-0.0574,-0.0804,-0.2874,-0.3794,-0.2874,-0.3794,-0.3564,-0.3104,-0.4252,-0.3564,-0.3794,-0.4252,-0.4252,-0.1954,-1,-1,-1,-1,-1,-1,-1,-1,-0.9346,-0.938,-0.9104,0.494,0.766,0.7762,0.7246,0.9724,0.7832,0.4458,0.0568,-0.05,-0.2668,-0.58,-0.8416,-0.914,-0.9312,-0.9278,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9828,-0.98,-0.9522,0.851,0.4972,0.4646,0.6028,0.3268,0.1362,-0.1098,-0.3096,-0.569,-0.7876,-0.9062,-0.9578,-0.9642,-0.9638,-0.9666,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9534,-0.92,-0.9368,-0.4164,-0.5856,-0.582,-0.6074,-0.611,-0.6582,-0.6474,-0.5638,-0.6234,-0.65,-0.7568,-0.7868,-0.6668,-0.6534,-0.7934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4286,-0.9142,1,1,-0.6286,-0.4286,-0.7142,-0.7428,-0.7428,-0.7714,-0.6286,-0.5428,-0.7428,-0.5142,-0.8,-0.7142,-0.9142,-0.0572,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.6018,0.6148,0.616,0.604,0.5984,0.5766,0.571,0.5136,0.0268,-0.8174,-0.6666,0.3412,-0.9814,0.1338,1,0.9642,0.7536,1,0.0642,-0.1192,0.4678,0.5412,0.5046,0.7248,0.6146,0.4678,0.7982,0.7982,0.8348,0.7064,1,0.3028,0.4312,0.1744,0.3578,0.578,0.3212,0.3762,0.523,0.6514,0.1926,0.0458,0.3944,0.523,-0.101,0.0826,0.2478,0.3212,0.1926,-0.0826,0.0588,-0.0326,0.5294,0.5164,0.7386,0.4772,0.804,0.3856,1,0.6078,0.634,0.3726,0.7254,0.3072,0.3986,0.5686,0.464,0.3202,0.268,0.3072,0.1504,0.5816,0.281,0.5686,0.3334,0.438,0.2026,0.1634,0.1896,0.2026,0.2942,-0.4902,0.0578,-0.124,0.405,0.5372,0.5042,0.3554,0.7852,0.6694,0.8512,0.967,1,0.5042,0.9338,0.8016,0.8678,0.372,0.1404,-0.091,0.2396,0.405,0.4546,0.471,0.3884,0.2892,0.3884,0.1074,0.19,0.2232,0.0414,-0.0414,-0.0578,-0.405,-0.9936,1,-1,-1,-1,-1,-1,-1,-1,-0.1648,-0.1208,0.3186,0.3406,0.3186,0.5824,0.8682,1,0.912,0.4066,0.8022,0.6044,0.4066,0.1428,0.6264,0.7582,0.7802,0.4726,0.3406,1,0.934,0.6044,0.8462,0.3846,0.3626,0.8022,0.8682,0.3406,0.2528,0.3846,0.2968,-0.077,'18'
-0.8168,-0.1606,-0.1368,0.2224,0.2746,0.8692,0.855,0.9406,0.874,0.9714,1,0.7408,0.748,0.403,0.4436,0.1462,0.1724,0.1248,0.1866,0.1558,0.2984,0.3104,0.3722,0.6504,0.7908,0.7336,0.8146,0.6814,0.8168,0.7432,0.8764,0.6742,-0.6552,-0.0322,-0.063,0.2936,0.491,0.8502,0.717,1,0.8336,0.9786,0.7908,0.7384,0.5362,0.2414,0.006,0.1462,-0.063,0.0702,0.0892,0.2058,0.0772,0.1748,0.434,0.5124,0.5934,0.698,0.465,0.3556,0.5506,0.553,0.2722,0.2628,-0.6462,-0.1108,-0.0236,0.2594,0.5944,0.7476,0.9128,1,0.8326,0.8538,0.8986,0.8656,0.2216,0.1368,0.2288,0.0778,0.1416,0.1202,0.224,0.2264,0.2854,0.7618,0.7548,0.3916,0.3584,0.4622,0.375,0.5188,0.3584,0.1108,-0.0944,-0.1534,-0.672,-0.1908,0.0158,0.2078,0.5966,0.672,1,0.9902,0.7594,0.7108,0.9562,0.825,0.7594,0.4702,0.5164,0.48,0.4386,0.6476,0.497,0.475,0.237,0.198,0.1178,0.1154,0.1202,0.096,0.2078,0.1592,0.2564,0.0352,-0.1422,0.023,-0.7184,-0.3246,0.0796,0.1812,0.5906,0.6036,0.8384,0.588,0.4994,0.6792,0.7836,0.9844,0.8044,0.7236,0.8252,0.8618,1,0.687,0.4106,-0.0144,-0.0926,-0.0352,-0.0978,-0.1448,-0.0822,-0.0378,-0.0248,0.0248,-0.0534,-0.2672,-0.0978,-0.0692,-0.778,-0.4136,-0.0028,0.085,0.4576,0.4356,0.5342,0.3042,0.2356,0.1616,0.526,0.6876,1,0.8356,0.8384,0.8712,0.7672,0.0658,-0.148,-0.137,-0.4876,-0.3616,-0.2904,-0.2328,-0.2082,-0.3342,-0.3506,-0.3042,-0.3972,-0.3946,-0.4082,-0.3672,-0.4312,0.365,0.18,0.1754,0.5924,0.7536,0.3886,0.1848,-0.0568,-0.0616,0.0854,0.7346,0.929,1,1,0.5972,0.3982,-0.4644,-0.2702,-0.1896,-0.3554,-0.7346,-0.9052,-0.4928,-0.3744,-0.346,-0.6256,-0.7536,-0.6966,-0.5972,-0.6492,-0.7726,-0.8182,-0.3182,-0.2272,0,0.3636,0.6818,0.9546,0.9546,0.6364,0.8182,1,0.9546,0.7728,0.2728,0.1818,0.1818,0.2728,0,0.1364,0.0454,0.2728,0.3636,0.2728,0.591,0.7272,0.7272,0.7272,0.6818,0.7728,0.7728,0.909,0.909,-0.8846,-0.1538,-0.1924,0.2308,0.2692,0.8462,0.8076,0.8076,0.8846,0.8846,0.923,0.6924,0.7692,0.3462,0.4616,0.1538,0.3076,0.077,0.3076,0.077,0.423,0.3462,0.6538,0.5,0.8846,0.923,0.923,0.8462,1,0.923,0.9616,0.9616,-0.7442,-0.3256,-0.0232,0.1396,0.4186,0.4884,0.628,0.3954,0.3488,0.2558,0.6046,0.6046,0.9302,0.8604,0.8604,1,0.9534,0.279,0,-0.093,-0.2326,-0.2094,-0.093,-0.186,-0.2326,-0.2558,-0.2558,-0.2558,-0.5116,-0.3256,-0.1628,-0.3256,-1,-1,-1,-1,-1,-1,-1,-0.9382,-0.9346,-0.9346,-0.9128,0.7314,0.8076,0.7242,0.775,0.637,0.3938,0.2776,-0.0382,-0.2814,-0.3502,-0.608,-0.7786,-0.8584,-0.9274,-0.9382,-0.931,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9774,-0.978,-0.9656,-0.9072,0.7714,0.5002,0.2702,0.3172,0.3486,0.1682,0.0534,-0.2886,-0.5182,-0.6992,-0.9046,-0.9478,-0.957,-0.9652,-0.9702,-0.9718,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9,-0.9068,-0.84,-0.8134,-0.5546,-0.4874,-0.5346,-0.5656,-0.6256,-0.6382,-0.5634,-0.5168,-0.5134,-0.65,-0.795,-0.7468,-0.76,-0.92,-0.8534,-0.92,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5428,-0.8,-0.8572,1,1,-0.6286,-0.4572,-0.7142,-0.7142,-0.6286,-0.7428,-0.7142,1,1,-0.5428,-0.8858,-0.8286,-0.8286,-0.9142,-0.6,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.2186,0.2046,0.2174,0.1746,0.1784,0.1886,0.1908,0.2418,0.0554,-0.7606,-0.7066,0.3648,-0.9098,-0.0338,0.7216,1,0.8892,1,0.0054,-0.0382,0.1804,0.246,0.4208,0.3114,0.6394,0.3006,0.5846,0.6284,0.2786,0.53,0.8798,0.705,0.5082,0.5738,0.377,0.4536,0.4208,0.5082,0.2896,0.8798,1,0.4972,0.541,0.0928,0.388,0.246,0.2896,0.224,0.082,-0.5956,0.1694,-0.1694,0.4426,0.694,0.4644,0.7158,1,0.5738,1,0.9344,0.6502,0.5738,0.847,0.6284,0.5738,0.836,0.7924,0.6174,0.5956,0.4972,0.4316,0.4644,0.8142,0.6174,0.377,0.5082,0.5628,0.4098,0.3662,0.399,-0.0602,-0.1476,-0.1028,-0.1122,-0.0842,0.6262,0.4018,0.4954,0.6356,0.6542,0.6168,0.4206,0.514,0.6262,1,0.8692,0.7102,0.729,0.43,0.5514,0.6448,0.57,0.1214,0.2242,0.5514,0.6168,0.1588,0.3926,0.243,0.243,0.1962,-0.1028,-0.1028,-0.785,-0.9958,1,-1,-1,-1,-1,-1,-1,-1,0.2728,0.3636,0.1136,0.3182,0.2954,0.4318,0.591,1,0.7272,0.2272,0.1136,0.2728,0.2728,-0.0454,0,-0.1364,0.0682,0.1136,-0.1136,-0.2728,0.1136,0.0228,0.2272,-0.1136,0,-0.1818,-0.159,-0.2954,-0.1136,-0.1818,-0.6136,-0.6136,'18'
-0.9,-0.2588,-0.0648,0.1352,0.2118,0.9294,0.953,0.6648,0.2706,0.2058,0.1236,0.2942,0.2942,0.3058,0.5294,0.8294,0.8824,0.7294,0.5942,0.5942,0.4764,0.4352,0.6176,0.7176,0.7942,0.853,0.8764,0.8412,1,0.8236,0.8588,0.553,-0.7632,-0.1106,-0.1264,0.2842,0.3684,0.779,0.679,0.7736,0.6684,0.5526,0.4316,0.3632,0.2948,0.5474,0.5684,0.779,0.6894,0.879,0.6948,0.5736,0.6052,0.7632,0.7422,0.9052,0.8316,1,0.8264,0.9316,0.821,0.7578,0.6158,0.6736,-0.692,-0.108,-0.0988,0.2874,0.4896,0.7702,0.646,0.8482,0.6506,0.5356,0.2598,0.3288,0.4114,0.485,0.8344,0.8896,0.9678,0.9908,0.6828,0.6736,0.692,0.646,0.8988,0.8344,0.954,0.8574,1,0.8942,1,0.8574,0.784,0.5954,-0.6462,-0.0944,-0.0614,0.2642,0.4952,0.6982,0.8302,0.9812,0.6368,0.5472,0.3444,0.401,0.382,0.3774,0.8632,0.8254,0.9576,0.8632,0.6746,0.533,0.599,0.6934,0.8726,0.8208,0.9528,0.8444,0.9292,0.9716,1,0.8774,0.8726,0.6368,-0.6292,-0.1268,-0.0188,0.2348,0.5118,0.6478,0.9248,1,0.4976,0.4694,0.4694,0.4178,0.554,0.6056,0.8686,0.7512,0.8592,0.6056,0.568,0.4788,0.5118,0.662,0.601,0.8122,0.7136,0.892,0.7982,0.8076,0.7042,0.7324,0.5822,0.5868,-0.7064,-0.2438,-0.015,0.1492,0.5124,0.5422,1,0.9304,0.2886,0.2488,0.393,0.2936,0.3384,0.6268,0.7064,0.8258,0.6916,0.4478,0.3034,0.2886,0.2338,0.3532,0.4976,0.5024,0.6666,0.6468,0.6716,0.6468,0.6318,0.5224,0.408,0.2886,-0.6542,-0.0076,0.173,0.3308,0.9624,0.9022,0.8572,0.6466,0.233,0.0452,0.0526,-0.0602,0.2932,0.4962,0.9172,1,0.8948,0.391,0.3458,0.233,-0.1052,-0.0076,0.188,0.2106,0.4736,0.5714,0.5112,0.6692,0.639,0.2632,0.1428,0.0978,-0.8,-0.05,0.25,0.2,0.2,0.95,0.9,0.5,0.35,0.35,0.2,0.25,0.35,0.35,0.55,0.75,0.95,0.85,0.45,0.55,0.35,0.05,0.5,0.25,0.4,0.7,0.65,0.5,1,0.9,0.55,0.25,-0.6924,0,0.1154,0.3076,0.4616,0.8846,1,0.6154,0.3076,0.2692,0.3846,0.4616,0.423,0.5,0.6538,0.8076,0.7692,0.6924,0.6924,0.6924,0.6538,0.6924,0.7308,0.8846,0.8462,0.8462,0.8462,0.8846,0.8462,0.8076,0.8076,0.6154,-0.621,-0.1368,-0.0106,0.2422,0.4948,0.6632,0.8736,1,0.5158,0.5158,0.4106,0.4316,0.4526,0.4316,0.8736,0.7474,0.8526,0.6842,0.5578,0.3684,0.5158,0.6842,0.7684,0.8316,0.8526,0.9578,0.9158,0.9368,0.8316,0.8316,0.6422,0.6632,-1,-1,-1,-1,-1,-1,-0.9422,-0.938,-0.9132,-0.872,-0.6612,0.3016,0.9338,0.9876,0.9298,0.9132,0.7562,0.7644,0.5166,0.31,0.186,-0.248,-0.6984,-0.8554,-0.8884,-0.8966,-0.9174,-0.909,-0.9132,-0.8926,-0.9256,-0.9132,-0.909,-1,-1,-1,-1,-1,-1,-0.9676,-0.9724,-0.9488,-0.9514,-0.7988,-0.0016,0.8312,0.8346,0.8218,0.925,0.668,0.587,0.3898,0.3304,-0.1954,-0.7394,-0.8428,-0.6672,0.4046,0.346,0.4276,0.8016,0.5504,0.589,0.5532,0.3702,-0.298,-1,-1,-1,-1,-1,-1,-0.88,-0.98,-0.82,-0.82,-0.5568,-0.496,-0.304,-0.464,-0.592,-0.556,-0.5734,-0.5534,-0.5334,-0.56,-0.6068,-0.6568,-0.4234,0.55,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-0.7428,-0.6,-0.7714,0.6572,1,1,1,-0.7142,-0.9428,-1,-1,-0.6858,-0.7714,0.1428,1,1,1,1,1,-0.7142,-0.8286,-0.8572,-0.9714,-0.9142,-0.8572,-0.4858,-0.4,1,1,1,1,1,1,1,1,1,1,0.2978,0.2978,0.3346,0.3268,0.2818,0.313,0.3438,0.3338,0.3246,0.1114,-0.76,-0.4,-0.7954,-0.4648,0.2468,0.869,0.8204,0.5584,0,-0.4546,0.495,0.8888,0.606,0.3838,0.707,1,0.6262,0.6162,0.697,0.4748,0.596,0.3636,0.1718,0.2222,0.4444,0.293,0.3334,0.0708,0.4242,0.0404,0.1718,0.505,0.2626,0.2626,0.1818,0.2222,0.1818,-0.3132,-0.1818,-0.6566,0.1016,-0.1526,0.4152,1,0.2542,0.6272,0.7542,0.6526,1,0.8306,0.6186,0.6694,0.8644,0.856,0.5,0.5,0.7542,0.6694,0.4492,0.517,0.5254,0.805,0.2542,0.6356,0.6864,0.7966,0.7204,0.7628,0.8644,0.9068,0.5,0.2288,-0.126,0.4678,0.7254,0.6582,0.6694,0.4734,0.563,0.647,1,0.8152,0.563,0.535,0.6246,0.9496,0.7648,0.6862,0.5966,0.4902,0.4118,0.4118,0.3334,0.0756,0.1148,0.126,0.1596,0.0868,0.0252,-0.0476,0.0196,0.154,-0.0532,-0.367,-0.9932,1,-1,-1,-1,-1,-1,-1,-1,-0.7412,-0.8208,-0.6418,-0.6318,-0.5422,-0.6616,-0.582,-0.4328,-0.214,-0.2836,-0.2338,-0.214,-0.184,0.005,-0.184,0.0348,-0.0746,0.2238,0.2636,0.1044,0.2238,0.3134,0.592,0.6418,0.6518,0.7612,0.7612,1,0.9602,0.9702,0.8906,0.3334,'19'
-1,-0.3892,-0.3678,0.058,0.1354,0.6086,0.7076,0.428,0.2602,0.1312,0.187,0.0666,0.2646,0.2044,0.4366,0.4538,0.686,0.7462,0.557,0.6646,0.4666,0.6044,0.5054,0.7936,0.7462,1,0.9914,0.9096,0.8924,0.7076,0.7678,0.587,-0.9246,-0.2536,-0.2244,0.1824,0.195,0.8156,0.8784,0.5388,0.5598,0.2452,0.3502,0.3502,0.4926,0.3878,0.5556,0.6478,0.849,0.7946,0.8156,0.6982,0.6184,0.61,0.7568,0.8448,0.8952,1,0.979,0.9538,0.958,0.828,0.7988,0.5514,-0.7654,-0.0358,-0.0562,0.398,0.4388,0.9286,0.847,0.9592,0.8368,0.6276,0.5102,0.648,0.4846,0.6786,0.5408,0.8368,0.7142,0.9592,0.8112,0.7806,0.5714,0.5664,0.602,0.8826,0.7704,0.9744,0.8928,1,0.8572,0.8316,0.7602,0.5714,-0.6864,-0.1312,-0.018,0.2802,0.5578,0.7532,0.8714,1,0.5784,0.4858,0.4344,0.4138,0.5578,0.5218,0.6452,0.7172,0.9434,0.9228,0.3934,0.3368,0.4808,0.4138,0.4602,0.5732,0.6504,0.6916,0.815,0.743,0.7276,0.7532,0.7224,0.4962,-0.7432,-0.3038,0.0024,0.1654,0.4024,0.5704,1,0.9012,0.2692,0.1408,0.2198,0.2098,0.2,0.432,0.3086,0.4024,0.753,0.7976,0.3136,0.116,0.3876,0.2888,-0.0222,0.4518,0.5012,0.2938,0.5358,0.768,0.753,0.4518,0.5358,0.5654,-0.7428,-0.244,0.1916,0.3334,0.5906,0.8268,1,0.8162,0.3386,0.1076,-0.0552,-0.0078,0.0814,0.1654,0.1602,0.6168,0.8216,0.5224,0.0604,-0.0184,-0.0236,-0.0604,0.1496,0.2074,0.0918,0.3176,0.5118,0.4068,0.58,0.454,0.3648,0.1128,-0.6666,0.3984,0.2926,0.4796,0.7154,1,0.7642,0.5772,0.122,-0.4146,-0.3414,-0.3902,-0.1708,0.2682,0.2114,0.7724,0.6586,0.2276,0.0894,-0.2114,-0.1544,-0.252,-0.2846,-0.2114,-0.1952,0.122,0.057,0.317,0.6422,0.4472,0.1138,0.0406,-0.75,-0.45,-0.4,0.1,0.4,0.65,0.7,0.5,0.25,0.25,0.15,0.05,0.15,-0.05,0.35,0.55,0.6,0.65,0.75,0.5,0.6,0.6,0.75,0.75,0.75,0.85,1,1,0.55,0.6,0.55,0.75,-0.9666,-0.3334,-0.3,0.0666,0.1,0.6,0.7,0.4666,0.3,0.1,0.1666,0.0666,0.2334,0.1666,0.4334,0.4,0.6666,0.7,0.5,0.6,0.4,0.5666,0.4334,0.7,0.7,1,0.9334,0.8334,0.8334,0.7334,0.7666,0.4,-0.8096,-0.4286,0.119,0.238,0.4524,0.8572,1,0.6666,0.238,0.2142,0.0714,0.0238,0.3334,0.2858,0.381,0.7858,0.9286,0.5952,0.1666,0.2142,0,-0.119,0.381,0.3334,0.0714,0.5952,0.7142,0.5,0.738,0.738,0.5714,0.1666,-1,-1,-1,-1,-1,-1,-1,-1,-0.932,-0.9388,-0.9456,0.3786,0.7758,0.9626,0.528,0.3074,0.1478,-0.1002,-0.1036,-0.0798,-0.2462,-0.545,-0.7658,-0.837,-0.932,-0.9354,-0.922,-0.9252,-0.9186,-0.9388,-0.9152,-0.9084,-0.932,-1,-1,-1,-1,-1,-1,-1,-1,-0.9828,-0.9844,-0.958,0.1656,0.8894,0.711,-0.1468,-0.331,-0.3746,-0.4178,-0.4998,-0.6288,-0.8398,-0.9132,-0.944,-0.9512,-0.6852,-0.5108,-0.4154,-0.2364,-0.0374,0.381,0.077,0.0214,-0.3734,-1,-1,-1,-1,-1,-1,-1,-1,-0.9296,-0.98,-0.8968,-0.3,-0.3234,-0.5168,-0.53,-0.5634,-0.54,-0.55,-0.5868,-0.6,-0.7168,-0.75,-0.6634,-0.5034,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6286,-0.8,1,1,1,-0.3142,-0.3714,-0.7428,-0.8572,-0.8,-0.2858,1,1,-0.6,-0.3142,1,1,1,-0.9142,-0.9142,-0.8572,-0.7714,-0.7714,-0.7428,-0.2,1,1,1,1,1,1,1,1,1,1,0.7626,0.7376,0.6904,0.6402,0.623,0.6294,0.5892,0.5044,0.3532,-2e-04,-0.7466,-0.353,-0.984,-0.4354,0.4354,0.8486,0.93,1,-0.0098,-0.1262,0.2816,0.864,0.8058,0.398,0.903,0.7476,0.9612,0.7088,0.3398,0.6894,1,0.9612,0.2622,0.5728,0.5728,0.2622,0.2234,0.4952,0.1456,0.2816,0.2038,0.5146,0.0874,0.2234,0.8058,0.6894,0.2234,0.2816,-0.2038,-0.8446,0.2448,0.1188,0.3986,0.902,0.6504,0.5944,0.6924,0.8602,0.7202,0.8742,0.7902,0.5524,1,0.972,0.3706,0.5244,0.3566,0.6504,0.7762,0.4826,0.5244,0.3566,0.6644,0.5384,0.3846,0.4266,0.3426,0.2168,0.2728,0.3006,0.2588,-0.3426,-0.125,-0.2678,0.1964,0.3214,0.4642,0.4108,0.7322,1,0.2858,0.5536,0.6964,0.5892,0.9822,0.7322,0.5892,0.3214,0.6608,0.3572,0.5,0.1428,0.1428,0.3928,0.3036,0.2322,0.4464,0.4642,0.3214,0.1608,0.3928,-0.1072,0.1072,-0.5,-0.9976,1,-1,-1,-1,-1,-1,-1,-1,-0.9252,-0.8396,-0.7968,-0.6364,-0.7754,-0.722,-0.722,-0.4974,-0.4118,-0.4118,-0.476,-0.2728,-0.2406,-0.262,0.123,0.1336,-0.0054,-0.091,-0.016,-0.0054,0.3476,0.401,0.4438,0.4438,0.5508,0.786,0.9358,1,0.8182,0.5294,0.647,0.5294,'19'
-0.908,0.164,0.268,-0.22,-0.084,-0.276,-0.444,-0.524,-0.712,-0.7,-0.64,-0.512,-0.424,-0.276,-0.588,-0.404,-0.416,-0.264,-0.208,-0.076,0.156,0.244,0.724,0.668,0.988,1,0.792,0.876,0.856,0.904,0.752,0.656,-0.7836,0.0824,0.1444,-0.1066,-0.0068,-0.4262,-0.5602,-0.6908,-0.457,-0.5636,-0.7182,-0.7114,-0.4536,-0.4226,-0.5018,-0.4192,-0.4948,-0.3436,-0.3952,-0.0996,-0.055,0.4846,0.4468,0.8762,0.9382,0.7664,0.897,0.7732,1,0.8798,0.8556,0.7698,-0.6054,0.1972,0.2212,0.012,0.0222,-0.4168,-0.3722,-0.578,-0.5608,-0.7256,-0.602,-0.554,-0.4716,-0.578,-0.4922,-0.6124,-0.5162,-0.4512,-0.2006,-0.1802,0.1114,0.259,0.5952,0.6706,0.9862,1,0.8662,0.8388,0.9452,1,0.8662,0.7942,-0.5352,0.1162,0.0634,0.2288,0.1056,-0.4084,-0.5634,-0.5846,-0.7324,-0.8838,-0.845,-0.669,-0.6408,-0.574,-0.507,-0.5352,-0.676,-0.4824,-0.2324,-0.2288,0.067,0.3592,0.5458,0.7324,0.9648,1,0.9472,0.9226,0.993,0.993,0.8768,0.7816,-0.602,-0.1198,0.032,0.2108,-0.1062,-0.5244,-0.7134,-0.7166,-0.72,-0.919,-0.7842,-0.5076,-0.4738,-0.6324,-0.6256,-0.6458,-0.6188,-0.494,-0.3794,-0.1974,0.0388,0.285,0.548,0.7672,0.9866,0.9898,0.855,0.8786,1,0.9258,0.8314,0.7404,-0.7552,-0.1718,0.4164,0.4776,-0.1012,-0.6188,-0.8164,-0.887,-0.68,-0.8118,-0.7506,-0.713,-0.647,-0.4964,-0.4258,-0.5388,-0.5764,-0.4024,-0.44,-0.5106,-0.1812,0.1342,0.5152,0.8494,1,0.9058,0.92,0.8306,0.8494,0.76,0.647,0.5764,-0.6456,0.038,0.5506,0.6582,-0.2216,-0.7406,-0.6836,-0.6076,-0.6076,-0.8608,-0.6646,-0.3482,-0.4368,-0.6392,-0.5822,-0.4178,-0.3924,-0.5316,-0.5444,-0.3798,-0.2722,0.0822,0.3292,0.7974,1,0.7848,0.7594,0.6076,0.2216,0.0632,0.0822,-0.2658,-0.5556,0.2222,0.3888,0.2222,-0.4444,-0.4444,-0.7222,-0.8334,-0.6112,-0.5556,-0.4444,-0.3888,0.1112,0.1666,-0.2222,-0.7778,-0.4444,-0.2222,-0.3334,-0.4444,-0.0556,0.0556,0.7222,0.8888,0.8888,1,0.6112,0.5556,1,0.8888,0.5556,0.2778,-0.7826,0.3478,0.4782,0.087,0.1304,-0.0434,-0.174,-0.3044,-0.6522,-0.5652,-0.2174,-0.2174,-0.4782,-0.3478,-0.6086,-0.0434,-0.0434,-0.3478,0,-0.0434,0.3914,0.3478,0.7826,0.7392,0.7826,0.913,0.5652,1,1,0.7392,0.7392,0.3478,-0.6942,-0.2,0.247,0.3882,-0.0588,-0.4118,-0.4118,-0.5764,-0.6236,-0.7176,-0.7176,-0.4588,-0.5058,-0.6236,-0.5764,-0.4588,-0.5764,-0.6236,-0.4824,-0.3412,-0.0824,0.3412,0.553,0.6706,0.9294,0.9764,0.8352,0.9058,1,0.8352,0.7882,0.647,-1,-1,-1,-0.9084,-0.8868,-0.8274,-0.7682,-0.8006,-0.8222,-0.8652,-0.8382,0.7574,0.6334,0.7304,0.779,0.7466,0.6118,0.5472,0.3692,0.1052,0.0026,-0.2992,-0.6604,-0.8598,-0.903,-0.8976,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9546,-0.9512,-0.1186,1,1,1,0.5396,-0.328,0.0116,0.8418,0.4744,0.25,0.1594,0.1988,0.3162,0.2744,-0.472,-0.6046,-0.7826,-0.879,-0.9094,-0.9314,-0.9186,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-1,-0.2534,1,1,0.8532,0.6966,0.5132,-0.2476,0.065,0.06,-0.085,-0.165,-0.0676,-0.085,-0.24,-0.655,-0.74,-0.8624,-0.6968,-0.6634,-0.8934,-0.8534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5714,1,1,1,0.0572,-0.1142,1,1,1,0,-0.8,-0.8286,-1,-1,-1,0.2858,0.2286,-0.3142,-0.6572,-0.9142,-0.8286,-0.9142,-0.9142,-1,-1,-1,-1,-1,-1,-1,0.0914,0.1378,0.2018,0.2252,0.2144,0.1588,0.1588,0.1556,0.1462,0.0128,1,1,1,1,1,1,1,1,1,1,-0.7734,-0.0706,-0.4372,-0.521,-0.222,0.593,0.8046,1,-0.9366,-0.8416,-0.5436,-0.5752,-0.4644,-0.4484,-0.3788,-0.3026,-0.2964,-0.1062,0.2202,0.2202,0.16,0.271,0.2424,0.3724,0.4866,0.5372,0.6608,0.8288,0.8288,0.8922,0.8954,1,0.943,0.981,0.9144,0.908,0.9018,0.8226,0.7116,0.2584,-0.8626,-0.7906,-0.64,-0.5418,-0.473,-0.4566,-0.1914,-0.09,-0.0606,0.2734,0.4894,0.8528,0.4468,0.6988,0.5712,0.5582,0.4566,0.6824,0.7414,0.7742,0.9346,1,0.8396,0.9084,0.8592,0.8364,0.7742,0.7512,0.6792,0.7022,0.532,0.3944,-0.644,-0.421,-0.351,-0.3112,-0.2746,-0.1382,-0.1414,-0.0848,0.1214,0.248,0.4242,0.9368,1,0.7738,0.9866,0.7038,0.614,0.6174,0.6606,0.8302,0.9534,0.8668,0.7504,0.797,0.7338,0.797,0.6506,0.6306,0.4376,0.584,0.4676,0.2212,1,-1,-1,1,-1,-1,-1,0.1334,-1,0,0.0378,-0.0188,-0.1698,-0.2076,0.0188,0.132,-0.0944,0.0754,0.0378,0.283,0.8114,1,0.868,0.3208,-0.0188,0.1886,0.2452,0.0754,-0.1886,-0.0944,0.0754,0.0566,0.2642,-0.151,-0.1698,0.0754,-0.3018,-0.3774,-0.1132,-0.283,-0.7358,'20'
-0.801,0.08,0.1644,-0.074,0.0316,-0.3182,-0.2912,-0.442,-0.5414,-0.638,-0.442,-0.4782,-0.4118,-0.4058,-0.3514,-0.282,-0.3574,-0.2428,-0.0678,0.2096,0.3274,0.6924,0.7286,0.9004,0.9096,0.825,0.8794,0.9426,1,0.8462,0.7768,0.7074,-0.6568,0.085,0.0968,0.0646,0.0762,-0.2992,-0.2698,-0.5278,-0.4868,-0.613,-0.5338,-0.437,-0.349,-0.4926,-0.4018,-0.6276,-0.4018,-0.2728,-0.0938,0.0294,0.2668,0.5074,0.8182,0.9062,1,0.9442,0.9912,0.9882,0.9618,0.9208,0.909,0.8388,-0.555,0.0542,0.0248,0.1918,0.1068,-0.3998,-0.508,-0.511,-0.6398,-0.6662,-0.713,-0.5842,-0.5666,-0.4642,-0.6164,-0.5286,-0.4172,-0.268,-0.2504,-0.142,0.2358,0.3968,0.5462,0.7276,0.9532,1,0.8418,0.7804,0.8712,0.9092,0.795,0.675,-0.5686,-0.057,0.0662,0.2666,0.017,-0.513,-0.6548,-0.6518,-0.849,-0.7842,-0.6148,-0.6148,-0.587,-0.6118,-0.661,-0.5624,-0.5286,-0.5224,-0.285,-0.0848,0.1372,0.4022,0.6456,0.812,0.997,0.9506,0.9014,0.9506,1,0.9352,0.7966,0.7966,-0.724,-0.3418,0.2264,0.3162,-0.2166,-0.4896,-0.7978,-0.6566,-0.6822,-0.7624,-0.7656,-0.6468,-0.5666,-0.5794,-0.5858,-0.6436,-0.5442,-0.5184,-0.4158,-0.207,0.1108,0.3386,0.6662,0.8716,1,0.8908,0.907,0.955,0.8812,0.7978,0.7336,0.7464,-0.7242,-0.2166,0.4968,0.6412,-0.1116,-0.5274,-0.5886,-0.501,-0.7944,-0.9562,-0.6148,-0.4792,-0.4836,-0.6062,-0.6018,-0.6236,-0.4574,-0.5974,-0.5842,-0.4266,-0.0722,0.2428,0.6324,0.8862,1,0.8688,0.895,0.93,0.8818,0.558,0.4354,0.4618,-0.4392,0.2398,-0.0654,0.2088,-0.2398,-0.7258,-0.7072,-0.6262,-0.5888,-0.8006,-0.5452,-0.4766,-0.4766,-0.6262,-0.5202,-0.4454,-0.3708,-0.57,-0.7196,-0.5514,-0.0966,-0.1028,0.0654,0.5328,0.8006,1,0.8318,0.6138,0.458,0.1714,-0.1028,-0.1776,-0.3192,0.617,0.7446,0.3192,0.4042,0.1914,0.0212,0.0638,-0.0212,-0.1914,-0.1914,0.1064,0.149,-0.0212,0.1064,-0.149,-0.0212,-0.234,-0.1064,0.149,0.3618,0.6596,0.7872,0.7022,0.3618,0.7446,0.7446,0.7022,1,0.8724,0.7022,0.5744,-0.8432,0.0588,0.1372,-0.098,0.0588,-0.1764,-0.255,-0.451,-0.647,-0.5294,-0.4118,-0.2942,-0.5294,-0.1764,-0.255,-0.1372,-0.1372,0.098,0.1372,0.3334,0.451,0.647,0.9608,0.9608,0.8432,0.8824,0.8432,1,0.9216,0.8824,0.7648,0.6862,-0.8372,-0.3954,0.186,0.2558,-0.3488,-0.7906,-0.721,-0.628,-0.9534,-0.628,-0.6512,-0.721,-0.6046,-0.6512,-0.372,-0.4652,-0.5116,-0.5116,-0.5348,-0.372,0.0698,0.2326,0.6046,0.8838,1,0.8372,0.814,0.8372,0.721,0.6744,0.6512,0.628,-1,-1,-1,-0.9292,-0.904,-0.9344,-0.8434,-0.8132,-0.7878,-0.7778,-0.596,0.6616,0.5656,0.7272,0.9394,0.798,0.6414,0.6364,0.2324,-0.0404,-0.0354,-0.5606,-0.7878,-0.8484,-0.8586,-0.8888,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.9662,-0.8986,-0.0504,1,1,0.0672,-0.4784,0.016,0.798,0.2894,-0.0114,-0.0608,-0.1562,-0.0874,-0.4232,-0.7434,-0.824,-0.915,-0.9434,-0.9532,-0.9428,-0.9176,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.8868,-0.6734,0.4932,1,1,0.8932,0.4832,-0.2526,0.1666,0.0266,-0.0156,0.0554,0.06,-0.0556,-0.2556,-0.6224,-0.9356,-0.6978,-0.7468,-0.6434,-0.5934,-0.6034,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,-0.5714,1,1,1,-0.0572,1,1,1,-0.1714,-0.8572,-0.8858,-0.9714,-1,-0.8286,-0.3142,-0.3142,-0.0572,-0.8286,-0.9142,-0.8572,-0.8858,-0.6,-1,-1,-1,-1,-1,-1,-1,0.475,0.4856,0.5026,0.501,0.4962,0.4534,0.436,0.3834,0.2834,0.1124,0.9992,1,1,1,1,1,1,1,1,1,-0.72,0.0352,-0.4894,-0.6746,-0.0666,0.5498,0.9228,1,-0.7652,-0.762,-0.4644,-0.3554,-0.276,-0.3224,-0.276,-0.1404,-0.048,0.0546,0.2528,0.2232,0.2166,0.2628,0.4546,0.5504,0.5636,0.5636,0.719,1,0.9306,0.8546,0.848,0.8414,0.7488,0.7256,0.8876,0.7752,0.8082,0.7818,0.7388,0.5174,-0.8284,-0.6708,-0.5166,-0.5272,-0.4676,-0.401,-0.4326,-0.2784,-0.1698,0.1628,0.4956,0.6042,0.338,0.5622,0.6182,0.5762,0.6322,0.8844,0.9124,1,0.9194,0.944,0.8388,0.9824,0.9544,0.8144,0.7724,0.7408,0.7268,0.6602,0.7022,0.4782,-0.9396,-0.5498,-0.4942,-0.4942,-0.6242,-0.4292,-0.3642,-0.3226,0.0394,0.007,0.601,0.9722,0.3828,0.8654,1,0.457,0.3782,0.6566,0.7308,0.9676,0.8748,0.689,0.7354,0.7912,0.7308,0.5592,0.4292,0.406,0.4014,0.3458,0.3178,0.1416,0.6122,-1,-1,1,-1,-1,-1,0,-1,-0.4066,-0.2308,0.033,0.1648,0.055,0.2088,0.2528,0.077,-0.1208,0.2748,0.3846,0.8242,0.6704,1,0.8242,0.2088,0.2088,0.055,-0.033,0.2088,0.1208,0.099,0.1648,0.2308,0.5384,0.3846,0.6484,0.5824,0.5164,0.4506,0.4946,0.2748,'20'
-0.4978,0.3672,0.3294,-0.341,-0.495,-0.7098,-0.8056,-0.7126,-0.7764,-0.8956,-0.8172,-0.6314,-0.6372,-0.6952,-0.5704,-0.6924,-0.6226,-0.6226,-0.4776,-0.3352,0.0828,0.2888,0.6052,0.5326,0.1902,0.2626,0.3672,0.46,0.5646,0.881,0.968,1,-0.3542,0.3422,0.3132,0.1518,0.0602,-0.4386,-0.5494,-0.5398,-0.6192,-0.7784,-0.7734,-0.6314,-0.6216,-0.5012,-0.5036,-0.3446,-0.4386,-0.2482,0.0168,0.2144,0.6096,0.7952,0.7904,0.7904,0.6554,0.7856,0.8892,0.9542,0.9904,1,0.9542,0.9614,-0.4468,0.2046,0.1962,0.3466,0.311,-0.215,-0.261,-0.5366,-0.597,-0.3946,-0.4592,-0.474,-0.522,-0.1858,-0.24,0.0188,-0.025,0.4322,0.3696,0.7892,0.716,0.8226,0.7766,1,0.9458,0.6472,0.6012,0.4802,0.4488,0.6388,0.5992,0.714,-0.2772,0.4248,0.4638,0.917,0.785,-0.1192,-0.3006,-0.202,-0.2876,-0.1218,-0.1398,-0.0208,0.1398,0.3238,0.7384,0.7694,0.6736,0.6296,0.474,0.4974,0.6166,0.645,0.9404,1,0.816,0.5778,0.3446,0.3756,0.531,0.5596,0.627,0.5156,-0.3292,0.196,0.8216,1,0.6056,0.0704,-0.0026,-0.098,0.0678,0.0754,0.304,0.6734,0.6232,0.2714,0.1934,-0.0126,-0.1634,-0.0778,-0.0528,0.0302,0.1532,0.3542,0.6834,0.799,0.588,0.2814,0.201,0.186,0.2562,0.3492,0.3418,-0.0704,-0.4486,0.0372,0.9254,1,0.2966,0.1356,0.1386,0.076,0.3026,0.5618,0.246,-0.0254,-0.3204,-0.374,-0.3294,-0.4516,-0.4576,-0.4308,-0.526,-0.4516,-0.3442,-0.1834,-0.0312,0.4366,0.4278,-0.0342,-0.1506,-0.0938,0.064,-0.0432,-0.0014,-0.3682,-0.0642,1,0.5902,0.4434,-0.0398,-0.1376,-0.0152,0.1254,0.4434,0.1988,-0.3944,-0.0458,-0.0398,-0.266,-0.4006,-0.4802,-0.4434,-0.37,-0.3516,-0.5108,-0.1744,-0.3334,-0.4618,-0.2844,-0.3088,-0.1926,-0.7126,-0.847,-0.9572,-0.7798,-0.8594,-0.6024,-0.375,0.75,0.8124,0,-0.6876,-0.3124,0.0624,0.0624,-0.375,-0.75,-0.4376,-0.3124,-0.3124,-0.3124,-0.25,-0.3124,-0.375,-0.375,-0.625,-0.5624,-0.25,0.125,0.375,0.3124,0.0624,-0.0624,0.25,0.3124,0.3124,0.4376,0.75,1,-0.4838,0.742,0.6774,0.0322,-0.2258,-0.8064,-0.3548,-0.2904,-0.613,-0.4838,-0.2904,-0.3548,-0.4194,-0.2904,0.0968,0.0322,-0.2904,-0.0968,-0.4838,-0.1612,0.1612,0.4838,0.5484,0.742,0.4194,0.3548,0.0968,0.4838,0.4194,1,0.8064,0.9354,-0.229,0.3254,0.8314,0.976,0.6868,0.1326,0.1084,0.0844,0.2048,0.1566,0.2772,0.6868,0.735,0.494,0.4458,0.1084,0.0602,0.1566,0.1084,0.253,0.494,0.5662,1,0.9518,0.7108,0.494,0.4216,0.3494,0.3734,0.7108,0.6386,-0.0362,-1,-1,-1,-1,-1,-1,-1,-1,-0.9514,-0.9676,-0.8612,-0.4606,-0.2662,0.0578,0.2222,0.5046,0.787,0.9468,0.743,0.1736,-0.456,-0.7686,-0.919,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9184,-0.9528,-0.9058,-0.5196,-0.1552,0.4712,0.9414,0.6092,0.284,0.3426,0.1298,-0.2632,-0.6518,-0.8518,-0.9288,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.904,-0.9934,-0.94,-0.5834,-0.2618,-0.3568,-0.2034,-0.28,-0.5918,-0.8268,-0.8878,-0.8986,-0.914,-0.9724,-0.9168,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-0.9142,0.5142,1,-0.4858,-0.4286,-0.6858,-0.6286,-0.6286,-0.6,-0.6572,-0.2286,-0.1428,-0.7714,-0.8572,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5356,-0.5204,-0.5144,-0.5206,-0.5,-0.4622,-0.4012,-0.2586,-0.098,0.1292,0.688,0.7306,0.773,0.802,0.809,0.8762,0.944,0.9506,0.7786,0.3516,-0.7734,0.4824,-0.9104,-0.7114,-0.6252,-0.554,-0.346,0.3,-0.0866,-0.1182,0.0552,0.559,0.1812,0.307,0.6378,0.0236,0.8426,0.622,0.4174,0.5906,0.7952,0.874,0.8898,1,0.685,0.559,0.7322,0.9056,0.7322,0.7008,0.8582,0.7166,0.37,0.37,0.6692,0.5748,0.3544,0.4174,0.496,0.0866,-0.0332,-0.351,-0.139,0.3908,0.404,0.4702,0.3908,0.404,0.5232,0.3908,0.788,0.788,0.9206,0.788,0.086,0.4834,0.3774,0.894,1,0.4702,0.5496,0.4966,0.51,0.3246,0.3642,0.457,0.192,0.192,-0.0198,0.192,0.1126,-0.2052,-0.136,0.3846,0.0532,0.0296,0.006,0.1242,0.6686,0.29,-0.077,0.1834,0.1716,0.4912,0.5976,0.2782,0.2782,0.5148,0.7042,1,0.8698,0.5266,0.0296,0.3254,0.1716,-0.0414,-0.065,0.1124,0.4202,0.3964,-0.0888,-0.1242,0.29,-0.29,-0.984,-1,1,-1,-1,-1,-1,-0.3334,-1,0.8096,0.873,0.5874,0.8412,1,0.8412,0.5874,0.5874,0.8412,0.873,0.8412,0.365,0.746,0.3334,0.5238,0.5874,0.5556,0.3334,0.4604,0.238,0.2064,0.4286,0.746,0.9682,0.5556,0.6826,0.2698,0.0476,0.2698,-0.0476,0.0794,-0.3016,'21'
-0.4478,0.1934,0.1068,-0.3028,-0.4962,-0.7634,-0.776,-0.7074,-0.7226,-0.9644,-0.8474,-0.7124,-0.6184,-0.6386,-0.6488,-0.6768,-0.7074,-0.6922,-0.5826,-0.4198,-0.2698,0.2442,0.313,0.3842,0.3664,0.2824,0.252,0.453,0.486,0.7558,0.8906,1,-0.4094,0.3036,0.2848,0.1718,0.1036,-0.56,-0.6282,-0.5694,-0.6424,-0.68,-0.7318,-0.6352,-0.6048,-0.4212,-0.4848,-0.3342,-0.4094,-0.1012,-0.1176,0.247,0.5906,0.8682,0.8518,0.8824,0.6848,0.8942,0.8212,0.8494,0.8118,0.8894,0.847,1,-0.4558,0.203,0.1966,0.3816,0.3432,-0.2434,-0.2902,-0.6896,-0.711,-0.3284,-0.3816,-0.4622,-0.49,-0.1094,-0.1562,0.05,0.001,0.3964,0.339,0.779,0.713,0.7556,0.711,1,0.949,0.5812,0.5452,0.5282,0.5026,0.5366,0.5176,0.779,-0.2886,0.4228,0.5512,0.97,0.8084,-0.2366,-0.472,-0.5486,-0.0834,0.015,-0.3324,-0.2394,0.223,0.305,0.5212,0.472,0.8058,0.71,0.3434,0.3598,0.4146,0.658,0.9398,1,0.8276,0.6224,0.42,0.3626,0.4664,0.4856,0.6662,0.6362,-0.3818,0.0962,0.8682,1,0.4314,-0.0384,-0.173,-0.349,-0.173,-0.0714,-0.0138,0.2142,0.1676,0.2528,0.0274,-0.1428,-0.2472,-0.3544,-0.2912,-0.3352,-0.2226,0.0082,0.184,0.423,0.5358,0.2912,-0.033,0.022,0.1126,0.0852,0.0494,-0.1484,-0.4262,0.086,0.9588,1,0.2336,0.158,0.2474,-0.0412,0.1238,0.2612,0.1066,0.0138,-0.4742,-0.5532,-0.6186,-0.5568,-0.5602,-0.6908,-0.8248,-0.7492,-0.5774,-0.7114,-0.354,-0.1684,-0.1374,-0.1512,-0.5498,-0.6152,-0.4604,-0.3712,-0.4502,-0.6702,-0.0586,1,0.7554,0.7554,0.2554,0.1224,-0.1064,-0.0798,0.2022,0.1542,-0.5426,-0.6968,-0.0744,-0.0054,-0.3192,-0.4628,-0.3936,-0.5,-0.5266,-0.5744,-0.0744,-0.133,-0.4414,-0.2872,-0.3936,-0.0852,-0.1542,-0.6596,-0.5212,-0.734,-0.9308,-0.718,-0.2076,0.3584,0.283,-0.0188,-0.2076,-0.283,-0.434,-0.2076,-0.2076,-0.5094,-0.585,-0.283,-0.1698,-0.132,-0.283,-0.0944,-0.1698,-0.132,-0.132,-0.0566,0.0566,0.283,0.283,0.6226,0.585,0.3584,0.2076,0.5094,0.3962,0.6982,0.849,1,-0.2654,0.2654,0.1836,-0.102,-0.3878,-0.5102,-0.347,-0.347,-0.6326,-0.551,-0.4694,-0.347,-0.4286,-0.4694,-0.5102,-0.6734,-0.2654,-0.1836,-0.2244,-0.2654,-0.1428,0.1428,0.1836,0.5918,0.5102,0.4286,0.3062,0.3878,0.4694,0.6734,0.8368,1,-0.4134,0.04,0.84,1,0.52,-0.0134,-0.2,-0.2534,-0.2,-0.1734,-0.2,0.3866,0.2534,0.3866,0.1466,0.04,-0.6266,-0.6266,-0.2534,-0.36,-0.4134,0.36,0.4134,0.6,0.5466,0.4134,-0.0134,-0.1734,0.3334,0.2266,0.0134,-0.12,-1,-1,-1,-1,-1,-1,-0.9434,-0.9434,-0.8574,-0.572,-0.572,-0.4212,-0.0444,0.2194,0.4348,0.6394,0.7874,0.8492,0.6932,0.1036,-0.3782,-0.6044,-0.8008,-0.8734,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9486,-0.937,-0.902,-0.7504,-0.6094,-0.446,-0.0018,0.6536,0.8286,0.3936,0.0986,0.0892,-0.116,-0.4344,-0.656,-0.7912,-0.888,-0.909,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8892,-0.8734,-0.9168,-0.7634,-0.2434,-0.17,-0.1234,-0.2484,-0.1818,-0.2968,-0.5368,-0.812,-0.8926,-0.8926,-0.887,-0.9008,-0.8642,-0.9008,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2858,-0.9428,0.1142,1,0.5142,-0.7428,-0.5428,-0.5714,-0.7428,-0.5142,-0.5142,-0.4,-0.4,-0.7714,-0.8286,-0.7714,-0.9428,-0.8286,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5854,-0.5756,-0.5436,-0.5368,-0.524,-0.5172,-0.4406,-0.302,-0.165,0.0408,0.8512,0.867,0.9092,0.978,0.9946,1,1,1,0.823,0.3376,-0.76,0.4588,-0.5906,-0.5358,-0.5126,-0.488,-0.3376,-0.8,0.1604,0.358,-0.1358,-0.2592,-0.1358,-0.432,-0.2098,-0.284,-0.1358,-0.2098,-0.2592,0.4074,0.1604,0.284,0.432,0.753,1,0.926,0.8766,-0.0618,-0.2098,0.0124,-0.0124,-0.1852,-0.5062,-0.3828,-0.432,-0.4074,-0.2592,-0.0864,-0.1112,-0.5802,0.2026,0.3292,-0.038,-0.114,-0.2026,-0.1772,-0.1518,-0.076,-0.1266,-0.1518,0.1518,0.3798,0.4556,0.3292,0.6076,0.8354,1,0.886,0.6202,-0.0126,-0.076,0,0.1772,-0.0886,-0.1518,-0.1392,-0.038,-0.0254,-0.2784,-0.2658,0.1266,0,0.0204,0.1836,-0.2244,-0.415,-0.483,-0.5102,-0.4558,-0.3062,-0.238,-0.3742,-0.1428,0.2244,0.415,0.2518,0.5374,0.8504,1,0.932,0.5238,-0.0612,-0.2108,-0.034,0.102,-0.2518,-0.483,-0.279,-0.2654,-0.4286,-0.5374,-0.279,-0.279,-0.3742,-0.7948,-1,-1,1,-0.2,-0.2,-1,-0.7334,-1,-0.1666,0.1112,0.0278,0.4444,0.3612,0.0834,0.3334,0.2778,0.5,0.6666,0.5834,0.0834,0.4722,0.4722,-0.0556,0.0556,0.1112,0.0278,-0.0278,0.0556,0.0556,0.2222,1,0.9722,0.7778,0.6112,0.6944,0.4722,-0.0278,-0.1112,-0.0834,-0.5,'21'
-0.3438,0.3294,0.2864,0.4504,0.3208,-0.2346,-0.3468,-0.4418,-0.505,-0.4936,-0.6978,-0.4676,-0.508,-0.2634,-0.2172,-0.0676,0.0244,0.2576,0.5568,0.7094,0.8072,0.9914,0.9194,1,0.8474,0.8936,0.6806,0.6346,0.4676,0.4906,0.5684,0.6978,-0.4124,0.2474,0.1838,0.4182,0.285,-0.343,-0.5108,-0.6498,-0.6584,-0.6034,-0.589,-0.5254,-0.4356,-0.3632,-0.2358,-0.1664,-0.152,-0.1606,0.1316,0.1288,0.56,0.699,1,0.9652,0.9942,0.809,0.8726,0.9566,0.9594,0.8958,0.9218,0.8494,-0.4376,0.1548,0.0684,0.2828,0.0596,-0.491,-0.6756,-0.628,-0.7024,-0.747,-0.7708,-0.6816,-0.5178,-0.637,-0.5,-0.5506,-0.4642,-0.2886,-0.253,-0.0328,0.131,0.5744,0.5744,0.9196,0.8066,0.741,0.6696,0.7768,0.9554,0.988,1,0.9554,-0.4948,0.0368,0.163,0.3538,0.0514,-0.5242,-0.7416,-0.765,-0.627,-0.671,-0.6036,-0.6328,-0.4802,-0.4626,-0.4832,-0.4744,-0.445,-0.348,-0.2746,-0.0748,0.2746,0.439,0.8238,0.8356,1,0.903,0.8942,0.8738,0.9824,0.865,0.9002,0.7328,-0.554,-0.1108,0.4334,0.5568,0.0434,-0.5232,-0.6326,-0.6382,-0.6718,-0.7336,-0.655,-0.6718,-0.6466,-0.6522,-0.4894,-0.526,-0.4446,-0.439,-0.3408,0.0098,0.237,0.554,0.8204,0.9748,1,0.9944,0.9916,0.8794,0.8822,0.8092,0.7868,0.7308,-0.6788,-0.2262,0.4404,0.5302,-0.2158,-0.6684,-0.7548,-0.4784,-0.5614,-0.9966,-0.7686,-0.5958,-0.5302,-0.5198,-0.5578,-0.8204,-0.6132,-0.658,-0.6614,-0.5198,-0.0362,0.4196,0.703,0.9412,1,0.8514,0.7478,0.6892,0.4474,0.361,0.3852,0.354,-0.517,0.1902,-0.078,-0.4976,-0.4732,-0.5024,-0.439,-0.3952,-0.6292,-0.9268,-0.5952,-0.2732,-0.3414,-0.3268,-0.3464,-0.5074,-0.3658,-0.6342,-0.4488,-0.439,-0.356,-0.0244,0.5024,0.8732,1,0.9122,0.6,0.3074,0.1268,-0.2976,-0.2634,-0.2682,0,0.3704,0.3704,0.4074,0.1482,0.1852,-0.1112,-0.1852,0.037,0.037,-0.3334,-0.1852,-0.1852,0,0,-0.1852,0.2962,0.5926,0.7408,0.8148,0.7408,0.6296,1,1,0.5556,0.4074,0.4444,0.5186,0.5926,0.5186,0.3704,0.8148,-0.4358,0.2308,0.1794,0.3334,0.1794,-0.641,-0.4872,-0.4872,-0.7948,-0.6924,-0.6924,-0.8462,-0.641,-0.4358,-0.1282,-0.0256,0.1282,0.3334,0.7948,0.7948,0.7948,0.7948,0.7948,0.5898,1,0.8974,0.5898,0.3846,0.4358,0.4358,0.1794,0.641,-0.5454,-0.2046,0.4546,0.4772,-0.2954,-0.6818,-0.5,-0.2954,-0.3864,-0.5454,-0.5228,-0.5,-0.591,-0.7046,-0.75,-0.75,-0.5,-0.7046,-0.2046,-0.0454,0.0682,0.5228,0.6818,1,0.9772,0.9772,0.841,0.8864,0.75,0.6364,0.7272,0.5228,-0.7264,-0.6632,-0.5614,-0.5754,-0.7052,-0.6842,-0.6596,-0.628,-0.6456,-0.614,-0.4912,0.6982,0.9088,0.572,0.2036,0.0596,0.0666,0.3368,0.2666,-0.1544,-0.4456,-0.765,-0.8948,-0.9088,-0.9228,-0.9368,-0.9404,-1,-1,-1,-1,-1,-1,-0.8596,-0.8524,-0.7912,-0.796,-0.8272,-0.7744,-0.6914,-0.6782,-0.7034,-0.6806,-0.6566,0.2412,0.9208,0.5006,0.0492,0.0504,0.1656,0.1908,0.0252,-0.4154,-0.7034,-0.8656,-0.91,-0.8596,-0.898,-0.9352,-0.946,-1,-1,-1,-1,-1,-1,-0.7634,-0.8768,-0.8134,-0.82,-0.6634,-0.29,0.0932,-0.1368,-0.0634,0.0066,-0.2434,-0.326,-0.098,-0.168,-0.336,-0.332,-0.234,-0.2328,-0.271,-0.4546,-0.6656,-0.622,-0.5668,-0.6668,-0.7,-0.8268,-0.9334,-1,-1,-1,-1,-1,-1,-0.6572,-0.8,-0.4572,-0.3714,0.3142,0.3714,-0.5142,-0.9714,-0.9428,-0.8572,0.4572,1,-0.6858,-0.6858,-0.6858,-0.9142,-0.9714,-1,-0.8572,0.0286,-0.3142,-0.7142,-0.9714,-0.8572,-0.9142,-0.9142,-0.3142,-1,-1,-1,-1,-1,-1,0.068,0.089,0.0928,0.0988,0.0794,0.0808,0.0662,-0.0074,-0.0854,-0.0314,0.7628,0.8038,0.845,0.8822,0.901,0.9378,0.9888,1,1,1,-0.6934,0.2352,-0.6614,-0.4334,-0.0072,0.449,0.9004,-0.725,0.1506,0.2164,-0.3316,-0.2328,-0.359,-0.1288,0.2328,0.1616,0.441,0.622,0.5288,0.748,0.6712,0.6768,0.6494,0.6384,0.6986,0.441,0.5616,0.737,0.589,0.6986,0.852,0.6986,0.6274,0.6548,1,0.8302,0.759,0.7918,0.4904,0.211,0.0722,0.1626,-0.4638,-0.5662,-0.1746,-0.1266,-0.0964,0.1446,0.4278,0.5302,0.3314,0.6446,0.6326,0.524,0.3554,0.512,0.6566,0.3132,0.506,0.6506,0.5422,0.6024,0.976,0.8494,0.729,0.8314,1,0.982,0.9156,0.7168,0.5422,0.3374,0.2818,0.3716,0.0374,-0.0922,-0.0474,-0.232,0.0774,0.3266,0.7306,0.6858,0.631,1,0.9052,0.7206,0.561,0.7756,0.8054,0.5462,0.596,0.6608,0.8504,0.6858,0.9102,0.9352,0.6708,0.7158,0.8504,0.8004,0.5562,0.5262,0.5462,0.4564,-0.9016,-1,-1,1,1,1,-1,-0.0334,-1,-0.4374,-0.3542,-0.3124,0.2084,-0.0416,-0.1876,-0.0416,-0.1458,0.1876,0.25,0.3958,0.75,0.9376,1,0.2084,0.0624,-0.0834,0.0624,0.0208,-0.2084,-0.2292,0.0208,0.3124,0.4376,-0.3124,-0.375,0.2084,0.0208,0.0834,0.0834,-0.1876,-0.375,'22'
-0.2988,0.6038,0.2208,-0.6624,-0.3182,-0.409,-0.4026,-0.1754,-0.1754,-0.5194,-0.3116,-0.026,-0.0974,-0.1234,-0.2338,0.6948,0.7078,0.6818,0.3442,0.5454,0.5584,0.8506,1,0.974,1,0.8572,0.7078,0.565,0.6494,0.461,0.2208,0.961,-0.3174,0.493,0.3454,0.2176,-0.1218,-0.533,-0.6526,-0.525,-0.6088,-0.5568,-0.525,-0.4292,-0.3732,-0.3612,-0.0618,0.0898,0.5528,0.545,0.7166,0.8562,0.8284,0.6806,0.7884,1,0.9242,0.6288,0.4012,0.4372,0.453,0.481,0.2654,0.489,-0.4386,0.2592,0.2414,0.3806,0.3274,-0.1606,-0.2288,-0.517,-0.5726,-0.4564,-0.5372,-0.517,-0.5298,-0.3452,-0.4108,-0.0796,-0.1378,0.1682,0.1024,0.5854,0.5298,1,0.9596,0.9798,0.9242,0.9974,0.952,0.641,0.593,0.598,0.5424,0.593,-0.4508,0.262,0.2112,0.4704,0.3578,-0.276,-0.4282,-0.4056,-0.524,-0.6366,-0.6648,-0.6056,-0.555,-0.4508,-0.5774,-0.4254,-0.3492,-0.2084,-0.045,0.076,0.417,0.586,0.9154,1,0.9352,0.8732,0.9042,0.9606,0.924,0.8254,0.6508,0.6676,-0.4842,0.121,0.1902,0.4352,0.1902,-0.461,-0.6398,-0.6312,-0.7378,-0.827,-0.6024,-0.6686,-0.6368,-0.608,-0.461,-0.5734,-0.4438,-0.3688,-0.2998,-0.0922,0.1614,0.49,0.6744,0.974,1,0.9654,0.8588,0.951,0.9828,0.8674,0.6888,0.6628,-0.6426,-0.17,0.2854,0.441,0.0028,-0.4524,-0.608,-0.7234,-0.778,-0.876,-0.7666,-0.7378,-0.7926,-0.6024,-0.634,-0.5878,-0.5678,-0.5562,-0.2796,-0.1614,0.0548,0.4064,0.5994,1,0.9538,0.9222,0.8444,0.876,0.7002,0.7002,0.585,0.5822,-0.8142,-0.028,0.3952,0.2526,-0.2526,-0.339,-0.6198,-0.7366,-0.8704,-0.8748,-0.6112,-0.5724,-0.6242,-0.5594,-0.7408,-0.715,-0.6502,-0.5594,-0.5464,-0.5248,-0.352,0.1188,0.486,1,0.9956,0.7926,0.7754,0.6328,0.3694,0.2656,0.1274,0.244,-0.0322,0.4838,0.2258,-0.2904,-0.0322,-0.4194,-0.0968,0.1612,0.2258,-0.0968,-0.1612,-0.0322,-0.0322,0.0322,0.0322,0.3548,0.0322,0.4194,0.0322,0.6774,0.613,0.5484,0.3548,1,0.9354,0.4194,0.4838,0.4194,0.9354,1,0.4838,0.8064,-0.0834,0.4166,0.1666,-0.25,0,0.25,0,0,-0.5834,-1,-0.0834,0.25,0.0834,0.0834,-0.1666,0.6666,0.9166,0.1666,-0.25,0.4166,0.0834,0.3334,0.5834,0.4166,0.75,0.5834,0.5834,-0.1666,0.1666,0.25,0.8334,1,-0.36,0.4134,0.36,0.3866,0.2266,-0.52,-0.5466,-0.4934,-0.8666,-0.68,-0.52,-0.4666,-0.44,-0.4666,-0.0666,-0.0934,0.3066,0.36,0.8666,0.8134,1,0.7066,0.76,0.9734,0.9734,0.3066,0.2534,0.2266,0.28,0.3866,0.44,0.6266,-1,-1,-1,-1,-0.9158,-0.8202,-0.4494,-0.5564,-0.629,-0.6328,-0.694,-0.6712,-0.5488,-0.1282,0.912,0.7896,0.5296,0.346,0.2544,0.2238,-0.2772,-0.5106,-0.6826,-0.8356,-0.9158,-0.9274,-0.9236,-0.9196,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9386,-0.8906,-0.7152,-0.7646,-0.7556,-0.7212,-0.7302,-0.7332,-0.6806,-0.4002,0.7736,0.8216,0.3808,0.2578,0.2038,0.2278,-0.4062,-0.6656,-0.823,-0.853,-0.8966,-0.9086,-0.8966,-0.892,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.9134,-0.8434,-0.8168,-0.6468,-0.4768,-0.2768,-0.378,-0.342,-0.422,-0.1692,-0.2182,-0.3092,-0.3164,-0.3528,-0.5292,-0.5,-0.8164,-0.94,-0.6568,-0.7434,-0.7734,-0.8234,-0.7168,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,-0.0286,0.1428,-0.4858,-0.4,-0.6286,-0.9428,-0.7428,-0.7428,1,1,-0.8286,-0.7714,-0.8858,-0.9714,-0.7714,-0.2572,-0.3142,-0.7142,-0.6286,-0.7714,-0.7428,-0.9428,-0.2,-1,-1,-1,-1,-1,0.0212,0.0914,0.1142,0.0902,0.025,0.0114,-0.1032,-0.0388,0.0378,0.042,0.1276,0.1436,0.1478,0.2076,0.2512,0.2894,0.2996,0.447,0.6702,0.899,-0.7866,0.2706,-0.7152,-0.7436,-0.7586,-0.7256,-0.6732,-1,0.748,0.9084,0.1984,0.084,0.0458,0.1526,0.1526,0.4274,0.5496,0.458,0.374,0.7176,0.6412,0.626,0.481,0.6184,0.7176,0.6106,0.2978,0.8474,0.8016,0.6184,0.8702,0.8626,1,0.7404,0.6184,0.6718,0.542,0.5268,0.3358,-0.0688,0.442,0.5218,-0.0218,-0.2174,-0.0724,0.0434,0.1956,0.4492,0.587,0.4202,0.4638,0.8188,0.6086,0.6956,0.5798,0.6014,0.7102,0.5652,0.5724,0.5798,0.5724,0.7972,0.8914,1,0.7682,0.558,0.9058,0.8334,0.7464,0.587,0.5508,0.355,0.4046,0.4648,-0.1104,-0.0836,0.01,0.1372,0.0636,0.6722,0.6856,0.4314,0.4984,0.826,0.9198,0.7658,0.7056,0.7056,0.893,0.6856,0.4248,0.7526,0.9464,0.8996,0.8662,0.9064,0.9666,0.8596,1,0.9598,0.8194,0.9732,0.7258,0.5452,-0.856,-1,-1,1,1,-0.6,-0.6,-0.1,-1,-0.125,-0.0834,-0.5834,0.125,0.1042,-0.1876,-0.2084,0.2292,0.1666,0.1876,-0.0624,0.4792,1,0.6458,0.2084,0.2916,0.3334,0.375,0.4792,0.2916,0.5208,0.6666,0.4792,0.5,0.5416,0.1666,0.1042,0.1666,-0.0208,0.0624,-0.0416,-0.6876,'22'
-0.5128,-0.0402,0.3558,0.52,0.1916,-0.2938,-0.365,-0.407,-0.52,-0.5456,-0.6442,-0.4178,-0.343,-0.2044,-0.1442,-0.1824,-0.146,0.042,0.1478,0.2172,0.3886,0.5784,0.7044,0.7446,0.8266,1,0.9616,0.699,0.6114,0.6642,0.646,0.719,-0.6274,-0.2278,0.2784,0.3924,-0.0868,-0.3526,-0.5896,-0.6166,-0.5858,-0.6402,-0.6962,-0.6528,-0.5932,-0.5136,-0.4032,-0.4394,-0.3146,-0.199,-0.056,0.3598,0.472,0.7522,0.8824,0.9856,1,0.9784,0.859,0.7342,0.6564,0.6746,0.6908,0.7884,-0.561,-0.1196,0.7166,0.7932,0.3588,0.2102,0.0384,-0.1778,-0.2126,-0.3264,-0.2822,-0.2218,-0.0988,0.0964,0.2682,0.4332,0.3868,0.4356,0.3218,0.4076,0.3566,0.4912,0.719,0.9768,1,0.5238,0.352,0.3472,0.4006,0.338,0.468,0.489,-0.2606,0.6338,0.7888,1,0.5176,0.4788,-0.1232,-0.2394,-0.2536,-0.426,-0.25,-0.0458,0.3134,0.2712,0.088,-0.1022,-0.5036,-0.4402,-0.4226,-0.4366,-0.3698,-0.514,-0.183,0.1126,0.331,0.1514,-0.2712,-0.4472,-0.3556,-0.1936,-0.1408,-0.1866,-0.3696,0.9516,0.5878,-0.503,-0.4728,-0.309,0.297,0.3818,-0.0546,-0.2182,0.3152,0.909,0.7152,0.5636,0.5576,0.3152,0.109,0.2788,0.4364,0.8484,1,0.7394,-0.091,-0.103,0.1516,0.3334,-0.0788,-0.1152,-0.406,-0.0364,0.503,0.7454,0.1252,-0.5116,-0.7622,-0.8768,-0.724,-0.6518,-0.2272,-0.0828,-0.1762,-0.0998,-0.0318,0.7282,0.9066,1,0.622,0.1338,0.0106,0.0404,0.482,0.707,0.2356,-0.1126,-0.1678,-0.0148,-0.104,-0.121,-0.0658,-0.0064,-0.0022,0.4182,0.7792,0.7708,0.6038,0.2588,-0.8274,-0.7252,-0.8658,-0.8914,-0.2076,-0.016,0.2204,-0.163,-0.329,0.163,0.8786,1,0.8722,0.1374,0.0544,0.3738,0.4952,0.623,0.5528,0.444,0.016,0.2972,0.54,0.802,0.5846,0.2012,0.214,0.4058,0.591,0.4952,-0.409,0.091,0.6818,0.8636,0.5454,0.3182,0.1364,0.0454,0,-0.2728,-0.091,0.2272,0.2272,0.7728,0.8636,0.2272,0.091,0.3182,0.0454,0.0454,0.2272,0.0454,0.409,0.4546,0.591,1,1,0.8636,0.6818,0.7272,0.6364,0.7272,-0.4694,-0.0612,0.5102,0.6734,0.3878,-0.0204,-0.0612,-0.102,-0.1836,-0.3878,-0.3062,-0.1836,-0.1428,0.1428,0.1428,0.551,0.551,0.3878,0.102,0.2244,0.2654,0.1836,0.4694,0.347,0.5918,0.9592,1,0.4694,0.4286,0.6734,0.6326,0.796,-0.4736,0.1228,0.9298,1,0.7544,0.579,0.228,-0.228,-0.2982,-0.4386,-0.0878,0.0526,0.193,0.6492,0.7894,0.0878,-0.0176,0.0176,-0.2632,-0.193,-0.193,0.0526,0.2982,0.7894,0.7894,0.2982,0.193,0.1228,0.1228,0.193,0.2982,-0.0878,0.553,0.0686,-0.5484,-0.6554,-0.3924,1,1,1,1,0.8742,0.823,0.5296,-0.2456,-0.0384,0.0384,-0.3202,-0.4318,-0.5786,-0.8672,-0.7182,-0.7112,-0.8068,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,0.1244,-0.605,-0.695,-0.4224,0.9114,1,1,0.903,0.875,0.83,0.8664,0.8426,0.7288,0.3774,-0.3254,-0.5362,-0.6782,-0.851,-0.761,-0.7738,-0.851,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7168,-0.7634,-0.7634,-0.7734,-0.7768,-0.8068,-0.7468,-0.7968,-0.83,-0.82,-0.8334,-0.516,-0.1948,-0.3134,-0.6188,-0.8254,-0.8268,-0.8668,-0.6514,-0.7264,-0.84,-0.8926,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,-0.4572,1,1,-0.2572,-0.8,-0.5142,-0.0286,0.1142,0.5142,-0.5428,-0.7142,-0.3142,-0.2572,-0.4572,-0.7714,-0.7428,-0.8,-0.9142,-0.5714,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.2924,0.2896,0.2734,0.2488,0.225,0.1978,0.177,0.236,0.3568,0.2708,0.7566,0.805,0.8724,0.949,1,1,1,1,0.6664,0.0556,-0.7066,0.8706,0.7962,0.896,0.9972,0.9226,0.8722,-0.9666,-0.6806,-0.4622,-0.1932,-0.0252,0.0756,0.0756,0.126,0.0756,-0.126,-0.0252,0.1428,0.3278,0.4286,0.6302,0.6806,0.731,0.7984,0.7648,1,0.9832,0.6974,0.7648,0.5798,0.647,0.4958,0.5294,0.4622,0.3782,0.2606,0.1092,-0.0924,-0.3446,-0.3272,-0.091,-0.091,-0.091,-0.1272,-0.109,0.0364,0.0364,-0.0182,0,0.1636,0.2364,0.2546,0.6,0.5636,0.6546,0.509,0.6728,0.691,1,1,0.7818,0.8,0.7818,0.5636,0.5818,0.6546,0.4728,0.509,0.4728,0.4364,-0.2182,0.0104,0.3196,0.5464,-0.0104,-0.1752,-0.2784,0.0104,0.2164,0.5876,0.567,0.5876,0.6288,0.9588,1,0.8144,0.897,0.9588,0.9382,0.6494,0.5258,0.4432,0.4226,0.0722,-0.0928,0.1958,0.1752,0.1752,0.0928,0.0104,0.0722,-0.031,-0.2372,1,-1,-1,-1,-0.8,-1,-1,-0.8,-1,0.3794,0.4482,0.6552,0.5862,0.6552,0.4482,0.7932,0.9656,0.7242,0.9656,1,0.8276,0.931,0.7932,0.5518,0.8276,0.862,0.6552,0.6552,0.6206,0.6896,0.4828,0.4828,0.6552,0.5172,0.8276,1,0.862,0.4482,0.2414,-0.069,-0.3448,'23'
-0.4712,0.169,0.682,1,0.7654,0.658,0.7734,0.845,0.8808,0.8846,0.1412,0.0854,-0.2326,-0.344,-0.3122,-0.4792,-0.6104,-0.4592,-0.3916,-0.4552,-0.4434,-0.2764,-0.3082,-0.0656,0.2088,0.491,0.678,0.8688,0.5626,0.2564,0.344,0.3678,-0.453,0.1796,0.7796,1,0.6776,0.5346,0.4244,0.4122,0.5266,0.4448,0.5102,0.3346,0.2612,-0.1062,-0.1836,-0.3142,-0.3266,-0.3306,-0.4286,-0.2164,-0.3428,-0.1632,0.0122,0.0694,0.4164,0.396,0.8368,0.6816,0.8164,0.5714,0.4082,0.0858,-0.3718,0.236,0.219,0.5178,0.314,-0.4296,-0.3344,-0.314,-0.477,-0.4194,-0.314,-0.2666,-0.1444,-0.1816,0.1308,0.1478,0.1376,0.0832,0.1646,0.1986,0.3378,0.3786,0.4568,0.6096,0.6944,1,0.9186,0.4804,0.4634,0.45,0.5042,0.5552,-0.5746,-0.0954,-0.0184,0.1458,-0.2396,-0.6282,-0.7252,-0.6582,-0.819,-0.8056,-0.8056,-0.5612,-0.5376,-0.5242,-0.6684,-0.6448,-0.5076,-0.4572,-0.32,-0.2094,0.1624,0.5076,0.7688,0.9498,1,0.9464,0.9062,0.8458,0.732,0.6282,0.655,0.6984,-0.6452,-0.229,0.0516,0.1354,-0.3032,-0.358,-0.7968,-0.6742,-0.7226,-0.8354,-0.8968,-0.7678,-0.6032,-0.5612,-0.5968,-0.5646,-0.4354,-0.429,-0.358,-0.1452,0.1646,0.3936,0.8194,0.8936,0.8452,0.8096,0.929,0.9322,1,0.8354,0.758,0.8226,-0.673,-0.2626,0.367,0.4922,-0.04,-0.287,-0.6418,-0.6,-0.6418,-0.774,-0.7008,-0.5652,-0.586,-0.4504,-0.3008,-0.3218,-0.2766,-0.1374,0.047,0.447,0.6208,0.7844,0.8644,0.9234,0.934,1,0.8956,0.6974,0.6208,0.5234,0.5548,0.6278,-0.6346,-0.116,0.5952,0.7054,0.4656,-0.0374,-0.167,-0.3752,-0.4106,-0.4892,-0.45,-0.328,-0.3516,-0.1434,0.061,0.1002,0.5718,0.6268,0.6896,0.6464,0.4932,0.5796,0.6936,0.996,1,0.7446,0.6268,0.3124,0.3596,0.336,0.4696,0.4578,-0.5882,0.0588,0.353,0.7648,0.7058,0.5294,0.5882,0.647,0.7058,0.7058,-0.0588,-0.1176,-0.5882,-0.5294,-0.2942,-0.4706,-0.4706,-0.5882,-0.5294,-0.353,-0.2942,-0.2352,-0.353,-0.2352,0.1764,0.647,0.7648,1,0.8824,0.2352,0.1176,0.1764,-0.8422,0.1052,0.6316,1,0.8422,0.4736,0.7368,0.8422,0.6842,0.7368,0,0.0526,-0.1578,-0.3158,-0.1578,-0.3158,-0.579,-0.5264,-0.4736,-0.8422,-0.6316,-0.1578,-0.1578,0,0.0526,0.421,0.6316,0.7894,0.579,-0.0526,0.2632,0.3158,-0.3334,0.2666,0.4,0.6444,0.4888,-0.2222,-0.3556,-0.3334,-0.0888,0,-0.1112,-0.0666,0.0222,0.2,0.6444,0.7556,0.3778,0.1112,0.0888,0.0222,0.1556,0.0666,0.4,0.3556,0.6,0.8444,1,0.7112,0.6,0.5112,0.6222,0.3778,-0.8132,-0.9188,-0.299,1,0.4208,0.8214,0.7834,0.0014,-0.732,-0.7862,-0.6454,0.586,0.8674,0.7618,0.5182,-0.1746,-0.3776,-0.4262,-0.3722,-0.1908,0.1692,0.0446,-0.0554,-0.0636,-0.253,-0.2612,-0.4696,-0.5778,-0.6508,-0.824,-0.9026,-1,-1,-0.8578,-0.926,0.492,1,1,1,1,0.3606,-0.7626,-0.8066,-0.4226,0.4996,0.929,0.5842,0.3378,0.0808,0.3092,0.6886,0.6356,0.2804,0.6176,0.4164,-0.0356,-0.149,-0.4286,-0.477,-0.6236,-0.7128,-0.7688,-0.864,-0.8956,-1,-1,-0.8534,-0.9568,-0.23,-0.5534,-0.5268,-0.6334,-0.6068,-0.6368,-0.7834,-0.88,-0.72,-0.785,-0.81,-0.79,-0.6934,-0.209,-0.0534,0.0954,-0.1134,-0.3178,-0.6356,-0.6868,-0.7868,-0.87,-0.91,-0.9,-0.8134,-0.91,-0.9368,-0.8668,-0.82,-1,-1,-0.8,1,1,1,-0.0858,-0.6858,1,1,1,0.6572,1,1,-0.6572,-0.2572,0.4,0.2858,-0.3714,-0.9714,-0.7714,-0.8,-0.4858,-0.4858,-0.3142,-0.2858,-0.2286,-0.8286,-0.9142,-0.7428,-0.8858,-0.9428,-0.7142,-1,-1,1,1,1,1,1,1,1,0.8718,0.5284,0.3888,0.6312,0.674,0.6656,0.6584,0.6652,0.6578,0.6382,0.549,0.7016,0.8704,-0.68,0.0118,-0.3394,-0.1942,0.48,0.8972,0.8746,0.5334,-0.7,-0.42,-0.22,-0.14,-0.16,0.16,0.14,0.26,0.52,0.6,0.56,0.58,0.36,0.46,0.66,0.78,0.8,0.92,0.9,1,0.96,0.78,0.38,0.58,0.54,0.46,0.48,0.48,0.4,0.3,-0.12,-0.54,-0.3862,-0.0892,-0.0298,-0.0694,-0.0298,0.0892,0.0892,-0.0892,0.307,0.406,-0.0496,0.2674,0.406,0.6634,0.4258,0.3664,0.5644,0.6238,0.604,0.9604,1,0.6436,0.5842,0.6832,0.6634,0.6436,0.4852,0.6436,0.6832,0.3466,0.406,0.109,0.0602,0.518,0.5662,0.012,-0.1084,-0.1326,0.012,0.253,0.8314,0.7108,0.3976,0.5662,0.8796,1,0.8554,0.6868,0.8796,0.759,0.3494,0.3976,0.3976,0.3494,0.0362,-0.1084,-0.1326,0.1808,0.0362,0.0362,0.0602,-0.229,0.2048,0.0362,1,1,-1,-1,-1,-0.2,1,-0.8,-1,0.1194,0.5374,0.8656,0.3432,0.015,-0.1792,0.1492,0.612,0.9254,0.5374,0.4626,0.9104,1,0.7014,0.5374,0.5374,0.7014,0.388,-0.1044,-0.1194,-0.1344,0,0.0598,-0.2836,-0.0896,-0.2686,-0.4626,-0.2538,-0.5672,-0.4776,-0.3732,-0.6866,'23'
-0.914,-0.1986,-0.1456,0.2716,0.3112,0.8146,0.9338,0.6092,0.6158,0.2716,0.3842,0.265,0.543,0.437,0.7616,0.7218,1,0.9404,0.6226,0.6424,0.4834,0.5166,0.7218,0.8212,0.7086,0.7814,0.6358,0.8278,0.755,0.7218,0.543,0.5298,-0.852,-0.1768,-0.1512,0.2282,0.2218,0.7492,0.7684,0.7234,0.7556,0.3698,0.402,0.4598,0.5176,0.5498,0.627,0.8906,1,0.6914,0.5176,0.344,0.389,0.5692,0.717,0.537,0.5628,0.5242,0.73,0.5948,0.3118,0.0932,0.3376,0.2218,-0.7468,-0.1646,-0.1518,0.2468,0.2278,0.6076,0.576,0.7722,0.7532,0.3354,0.3482,0.519,0.519,0.4494,0.4746,0.9746,1,0.405,0.2152,0.4684,0.519,0.4746,0.538,0.7152,0.7912,0.5064,0.6012,0.4114,0.5316,0.3354,0.4304,0.1962,-0.8248,-0.1842,-0.1238,0.3596,0.293,0.722,0.6374,0.9516,0.8248,0.577,0.438,0.5528,0.4744,0.6858,0.722,1,0.9456,0.7824,0.5106,0.559,0.4744,0.6012,0.6676,0.7886,0.6374,0.4864,0.4804,0.4744,0.3052,0.136,0.281,0.299,-0.8322,-0.3226,0.0194,0.2904,0.6064,0.7678,0.7162,0.813,0.5548,0.5742,0.2968,0.2904,0.6322,0.5678,0.8388,0.7806,1,0.8388,0.7548,0.4968,0.413,0.7484,0.787,0.8516,0.613,0.542,0.5226,0.587,0.5678,0.5742,0.4904,0.187,-0.9606,-0.5198,-0.0264,0.125,0.6316,0.6184,0.6514,0.4672,0.3092,0.1842,0.046,0.0526,0.1644,0.329,0.4474,0.6908,0.9276,0.9672,0.7302,0.4802,0.6842,0.796,1,0.9014,0.7236,0.7566,0.5658,0.4736,0.75,0.7894,0.6052,0.4342,-0.8638,-0.7778,-0.3764,-0.0466,0.1542,0.1612,0.0466,0.104,-0.1254,-0.3548,-0.2904,-0.2974,-0.1972,-0.1254,0.1684,0.2904,0.4266,0.8996,1,0.9498,0.7204,0.5914,0.7634,0.7922,0.5628,0.405,0.534,0.5268,0.319,0.5198,0.4768,0.3334,-0.8546,-0.091,-0.0546,0.3454,0.3454,0.8182,0.9636,0.7818,0.6,0.2364,0.4546,0.309,0.6364,0.4546,0.8546,0.7818,1,1,0.7818,0.7818,0.6364,0.6728,0.7818,0.891,0.8182,0.8546,0.7454,0.9636,0.891,0.891,0.8182,0.6,-0.7648,-0.2156,-0.1764,0.2156,0.255,0.8432,0.9216,0.5686,0.647,0.2156,0.4118,0.255,0.4902,0.3726,0.647,0.8432,1,0.804,0.4902,0.451,0.4902,0.6078,0.7254,0.804,1,0.9216,0.5686,0.5686,0.8824,0.804,0.6078,0.7254,-0.8372,-0.4884,-0.0232,0.1628,0.5814,0.6744,0.5814,0.6512,0.4186,0.3488,0.1628,0.3488,0.5116,0.628,0.6744,0.8838,0.9302,0.6744,0.6512,0.5348,0.6046,0.721,0.9768,1,0.721,0.5348,0.4652,0.6046,0.7674,0.6046,0.4418,0.1628,-1,-1,-1,-1,-1,-1,-1,-1,-0.9186,-0.9322,-0.3322,0.895,0.7762,0.6508,0.5254,0.4916,0.3864,0.3526,0.244,-0.044,0.156,-0.6814,-0.9254,-0.905,-0.922,-0.9322,-0.9356,-0.9356,-0.922,-0.8746,-0.8882,-0.9084,-0.9356,-1,-1,-1,-1,-1,-1,-1,-1,-0.9606,-0.9706,-0.4398,0.92,0.7386,0.4888,0.424,0.5032,0.2896,0.1416,-0.1402,-0.1344,-0.1442,-0.6212,-0.9398,-0.9542,-0.9534,-0.9614,-0.9672,-0.9712,-0.7968,-0.2948,0.1986,0.135,0.1108,-1,-1,-1,-1,-1,-1,-1,-1,-0.8734,-0.9468,-0.77,-0.485,-0.485,-0.54,-0.445,-0.38,-0.475,-0.495,-0.5,-0.42,-0.396,-0.132,-0.5134,-0.7468,-0.7568,-0.8768,-0.8868,-0.9268,-0.6334,0.7366,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,1,1,1,-0.7428,-0.7428,-0.9714,-0.6286,-0.6572,-0.7428,-0.5428,-0.4858,1,1,1,-0.0858,-0.8572,-0.9428,-1,1,1,1,0.8858,-0.7428,-0.7428,1,1,1,1,1,1,1,1,1,1,-0.086,-0.0808,-0.0808,-0.0226,-0.0172,-0.1242,-0.12,-0.1594,-0.2636,-0.1504,-0.8134,-0.5764,-0.2504,0.5826,0.9398,0.7064,0.4862,1,-0.149,0.149,0.5744,0.7872,0.7446,0.6596,0.7446,0.8724,1,0.9574,0.8724,0.8724,0.9574,1,0.8724,0.7446,0.617,0.5744,0.4468,0.2766,0.234,0.0638,-0.149,0.0212,-0.3192,-0.1914,-0.0212,-0.234,-0.1064,0.1064,-0.2766,-0.4468,-0.4888,0.1112,0.6444,0.9334,0.7112,0.4666,0.4666,0.7334,0.9112,0.8222,0.5556,0.7112,1,0.9778,0.8222,0.6444,0.5112,0.3778,0.0666,0.2222,-0.0222,-0.4,-0.0888,-0.2444,-0.4666,-0.6222,-0.6666,-0.4,-0.2,0.1778,0.0222,-0.2444,-0.1282,0.2478,0.6068,1,0.5726,0.4188,0.5898,0.7948,0.8974,0.6752,0.5726,0.7778,0.812,0.829,0.7778,0.641,0.5726,0.3504,0.2992,0.1624,-0.077,-0.3334,0.0086,0.0256,0.0086,-0.3162,-0.453,-0.3676,-0.0256,0.1282,0.0598,-0.1624,0.8636,-1,-1,1,-1,-1,-1,-0.8334,1,-0.8106,-0.6842,-0.6106,-0.7474,-0.621,-0.4632,-0.3684,-0.1158,-0.021,-0.0526,-0.0526,0.0736,-0.0316,-0.1684,-0.1474,-0.0948,-0.0526,-0.0948,0.2106,0.2422,0.2316,0.3264,0.2526,0.6316,0.6526,0.7052,0.7158,1,0.6948,0.7578,0.7052,0.2526,'24'
-0.8936,-0.2234,-0.2022,0.2394,0.2554,0.8936,0.9362,0.484,0.383,0.1436,0.234,0.3086,0.4414,0.3352,0.484,0.7022,0.9308,0.8086,0.7978,0.6702,0.766,0.7074,0.6808,0.6118,1,0.9788,0.8564,0.8564,0.851,0.8936,0.7446,0.8032,-0.8108,-0.173,-0.173,0.2378,0.254,0.8432,0.827,0.5244,0.5136,0.3892,0.3892,0.319,0.3244,0.4702,0.4756,0.6864,0.6864,0.8972,0.9298,0.4756,0.5082,0.6702,0.719,0.7676,0.8108,0.9244,1,0.7298,0.8,0.6486,0.7514,0.4756,-0.6896,-0.0926,-0.0986,0.3314,0.4328,0.8866,0.809,0.7074,0.618,0.5402,0.4388,0.385,0.2896,0.4866,0.4268,0.7792,0.6478,1,0.8686,0.5582,0.415,0.6776,0.6298,0.9224,0.7672,0.982,0.815,0.815,0.6716,0.8388,0.6358,0.6598,-0.7612,-0.218,-0.0986,0.2418,0.5164,0.7612,0.612,0.7492,0.4806,0.4208,0.3552,0.4388,0.3254,0.3492,0.7194,0.7074,0.994,1,0.7492,0.6716,0.5642,0.5044,0.6776,0.7552,0.791,0.791,0.6598,0.606,0.4806,0.4806,0.4806,0.397,-0.7906,-0.3244,0.0946,0.2568,0.6148,0.6486,0.9594,0.8784,0.5,0.277,0.2028,0.4392,0.4256,0.3108,0.5136,0.6622,0.919,0.9392,0.8852,0.8514,0.804,0.7568,0.8378,1,0.9932,0.8446,0.7568,0.8446,0.9324,0.777,0.6622,0.5406,-0.942,-0.5612,-0.0452,0.0064,0.471,0.8388,0.9226,0.3742,0.0646,-0.1226,-0.1032,-0.1548,-0.1162,0.071,-0.0452,0.2064,0.4646,0.5484,0.7226,0.6258,0.5612,0.7936,0.929,1,0.871,0.6452,0.4774,0.5354,0.5678,0.5226,0.342,0.387,-0.8292,-0.6098,-0.1788,0.2114,0.5448,0.691,0.496,0.2926,-0.2602,-0.3252,-0.3984,-0.2358,-0.1952,-0.2114,0.0814,0.244,0.3008,0.8292,1,0.8374,0.691,0.7968,0.935,0.5772,0.5448,0.3984,0.0732,0.065,0.252,0.1708,0.1056,0.309,-0.8462,-0.2308,-0.1924,0.2692,0.423,0.8846,0.923,0.5,0.3462,0.1924,0.1924,0.3462,0.4616,0.2308,0.5384,0.7692,0.9616,0.8076,0.7692,0.7692,0.7692,0.7308,0.8076,0.7692,1,0.923,0.923,0.9616,0.8846,0.8462,0.7692,0.8846,-0.8572,-0.1786,-0.1428,0.25,0.3214,0.8928,0.9642,0.5358,0.3572,0.2142,0.3214,0.3214,0.4642,0.2858,0.5,0.75,0.9642,0.8214,0.7142,0.5714,0.8572,0.75,0.6428,0.5714,1,1,0.8572,0.7858,0.8214,0.8928,0.7858,0.8214,-0.7732,-0.3402,0.031,0.1752,0.4432,0.5052,0.7938,0.7114,0.4846,0.2372,0.2164,0.464,0.4432,0.2372,0.4432,0.6908,0.8556,0.9588,0.732,0.6288,0.7732,0.6702,0.732,0.8556,1,0.7114,0.5464,0.8144,0.7938,0.6288,0.5258,0.567,-1,-1,-1,-1,-1,-1,-1,-1,-0.9566,-0.9618,-0.4012,0.7096,0.9592,0.8216,0.5618,0.33,0.116,-0.1108,-0.3248,-0.3146,-0.5898,-0.763,-0.944,-0.9542,-0.9566,-0.9516,-0.9592,-0.9566,-0.9542,-0.9644,-0.893,-0.944,-0.9516,-1,-1,-1,-1,-1,-1,-1,-1,-0.9832,-0.9774,-0.2366,0.893,0.9938,0.742,0.4312,0.0904,0.0254,-0.1838,-0.3704,-0.4454,-0.6158,-0.88,-0.9618,-0.9702,-0.9706,-0.9754,-0.9758,-0.9786,-0.977,-0.9434,-0.6188,0.1214,0.1618,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.88,-0.6334,-0.4,-0.435,-0.57,-0.575,-0.568,-0.596,-0.372,-0.368,-0.52,-0.396,-0.596,-0.6868,-0.76,-0.8468,-0.9334,-0.9468,-0.94,-0.93,-0.9,0.3332,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,-0.4572,-0.6858,-0.6572,-0.7428,-0.8,-0.3428,-0.2286,-0.0286,1,1,0.5714,-1,-0.9142,-0.9428,-1,-0.9714,-0.8572,1,1,1,-0.2,1,1,1,1,1,1,1,1,1,1,0.3726,0.3726,0.3698,0.4244,0.464,0.4606,0.4736,0.4494,0.3826,0.3274,-0.7866,-0.5176,-0.1496,0.9868,0.8652,0.9932,0.795,1,-0.32,0.16,0.2,0.12,0.04,0.16,0.36,0.36,0.68,0.84,0.88,1,1,1,0.88,0.64,0.56,0.52,0.68,0.72,0.68,0.52,0.28,0.12,0.16,-0.2,-0.08,-0.04,-0.16,-0.08,-0.04,-0.32,-0.4716,0.1886,0.415,0.415,0.283,0.2452,0.3774,0.3584,0.717,0.9056,0.7736,0.849,0.9246,1,0.849,0.6982,0.5472,0.5094,0.5284,0.6416,0.434,0.1886,0.0944,-0.0566,-0.1886,-0.3774,-0.3774,-0.6416,-0.151,-0.0188,-0.1886,-0.5094,-0.1798,0.2374,0.6546,0.7986,0.4964,0.367,0.482,0.5684,0.8274,0.8706,0.7554,0.7842,0.9712,1,0.928,0.9424,0.741,0.6258,0.5972,0.5684,0.3238,0.2374,-0.0072,-0.0504,-0.0936,-0.223,-0.295,-0.3238,-0.2086,0.108,0.0072,-0.3812,1,-1,-1,1,-1,-1,-1,-0.8334,1,-0.6446,-0.665,-0.604,-0.4518,-0.594,-0.533,-0.2488,-0.1574,-0.137,-0.2488,-0.005,-0.0762,0.005,-0.0558,-0.0558,0.1776,0.198,0.1168,0.198,0.472,0.4314,0.5736,0.6244,0.6244,0.9188,0.9594,0.9898,0.9492,0.7158,0.8984,1,0.6346,'24'
-0.5434,0.0982,0.3236,0.7746,0.7196,1,0.8208,0.7688,0.5232,0.555,0.2312,-0.0028,-0.3612,-0.3208,-0.3468,-0.3584,-0.3872,-0.4018,-0.182,-0.2602,-0.0492,0.0144,0.2456,0.4914,0.7284,0.5578,0.5,0.4942,0.633,0.3324,0.2312,-0.0174,-0.6488,-0.1206,-0.0228,0.2426,0.601,0.7658,0.8876,1,0.8064,0.847,0.9188,0.9164,0.5532,0.4122,0.2784,0.147,0.1924,0.0538,0.1948,0.2592,0.3406,0.5628,0.6034,0.6726,0.7754,0.7922,0.7372,0.5628,0.5102,0.5676,0.6082,0.7038,-0.6166,-0.1698,-0.0158,0.1526,0.4262,0.4798,1,0.961,0.9194,0.79,0.7704,0.8778,0.9804,0.7534,0.58,0.4286,0.3432,0.2552,0.2918,0.3968,0.414,0.4408,0.6312,0.6386,0.912,0.7924,0.7216,0.575,0.6484,0.5776,0.558,0.624,-0.6742,-0.2398,0.0228,0.1642,0.4368,0.6112,1,0.8788,0.5202,0.4798,0.5378,0.4824,0.4622,0.7222,0.6692,0.6894,0.4596,0.4924,0.452,0.3788,0.4242,0.654,0.755,0.8208,0.8132,0.9672,0.8662,0.6086,0.548,0.6136,0.558,0.5278,-0.6716,-0.2266,0.156,0.2808,0.6906,0.6744,0.3568,0.2212,0.1154,0.0664,0.0882,-0.0448,-0.1316,0.0584,0.3134,0.4056,0.677,0.6336,0.764,0.601,0.6798,0.8128,0.8208,0.8834,0.8154,1,0.7096,0.677,0.6636,0.6038,0.5794,0.479,-0.6918,-0.2582,0.2754,0.3866,0.6234,0.555,-0.0842,-0.2554,-0.2582,-0.4664,-0.4694,-0.3324,-0.4322,-0.3808,-0.147,-0.1812,-0.1356,0.2668,0.418,0.592,0.7204,0.923,0.8174,0.7718,0.9772,1,0.7262,0.5892,0.5092,0.4008,0.4066,0.4864,-0.4604,0.4094,0.2744,0.1628,0.1024,0.1582,-0.1396,-0.2418,-0.5488,-0.8,-0.614,-0.4418,-0.493,-0.4558,-0.5348,-0.5396,-0.3162,-0.3534,-0.3628,-0.228,0.0372,0.5674,0.8232,0.9628,1,1,0.8186,0.3488,-0.0512,-0.0652,-0.0232,-0.2046,-0.28,0.4,0.56,1,0.96,0.76,0.6,0.44,0.28,0.04,-0.12,-0.36,-0.44,-0.44,-0.52,-0.72,-0.36,-0.28,-0.36,-0.32,-0.08,-0.04,-0.08,0.2,0.6,0.56,0.16,0.04,0.48,0.4,0.04,-0.08,-0.4348,0.2174,0.4348,1,0.913,0.826,0.6086,0.7826,0.6086,0.1304,-0.2608,-0.174,-0.3914,-0.4782,-0.4782,-0.3914,-0.087,-0.1304,-0.4348,-0.4348,-0.174,-0.174,0.087,0.3914,0.6956,0.5652,0.4782,0.3914,0.5218,0.3044,0.3044,-0.1304,-0.6808,-0.2766,0.0426,0.1702,0.4894,0.7022,0.9788,0.8298,0.1276,0.3618,0.383,0.2554,0.3192,0.5532,0.7234,0.851,0.6596,0.6596,0.5532,0.468,0.532,0.7022,0.7446,0.8298,0.8298,1,0.851,0.6808,0.5744,0.5958,0.532,0.4894,-1,-1,-1,-1,-1,-1,-1,-0.8078,-0.7886,-0.7566,-0.1846,0.6756,0.8548,0.2018,-0.0224,-0.0246,-0.0416,-0.2572,-0.078,-0.2316,-0.5902,-0.7204,-0.8164,-0.936,-0.9638,-0.9658,-0.9424,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9522,-0.9478,-0.9202,-0.7358,-0.2842,0.6366,0.7164,0.482,0.25,-0.0322,-0.3058,-0.4776,-0.5446,-0.7892,-0.9106,-0.9456,-0.9644,-0.965,-0.9746,-0.9728,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9852,-0.9934,-0.9868,-0.9368,-0.85,-0.758,-0.736,-0.682,-0.7346,-0.6746,-0.5746,-0.5146,-0.4782,-0.651,-0.7182,-0.68,-0.46,-0.6134,-0.6668,-0.83,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2,-0.9428,0.8,1,1,1,-0.4286,-0.6572,-0.6858,-0.4858,-0.4,-0.6572,-0.4858,0.8572,-0.4858,-0.7428,-0.8,-0.8572,-0.7714,-0.2,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.9148,0.9144,0.9494,0.9302,0.888,0.8426,0.7534,0.5804,0.3474,0.547,-0.68,0.2706,-0.7396,-0.5438,-0.3224,-0.1752,-0.1226,-0.4916,0.579,1,1,0.8422,0.6842,0.3684,0.4736,0.0526,0,0.2106,0.421,0.1052,0.2106,0,0.1052,0.1578,0.0526,0.1578,0.0526,0,0.1052,0.0526,0.2632,0.1578,0.1052,-0.1578,-0.1052,0.1578,0.2632,0.2632,0.2632,0.1052,0.5,0.9318,1,0.9546,0.4318,0.0682,0.0228,0.0682,0.1136,0.3182,0.1364,0.1136,0.4318,0.2272,0.1364,0.0454,0.0682,-0.0682,-0.1136,-0.1364,0.2046,0.25,0.2272,0.1818,0.0228,-0.2272,0.1136,0.2272,0.1136,-0.0682,-0.1136,-0.341,0.353,0.902,1,0.902,0.3726,0.0392,-0.1568,-0.1372,-0.2156,-0.1176,-0.098,-0.0392,0.3334,0.2746,0.255,0.098,0.0588,0.1372,-0.1764,-0.196,-0.0784,-0.0392,-0.0196,-0.1176,-0.2942,-0.2156,0.0588,0.2942,0.1568,-0.2352,-0.4314,-0.5686,-0.6458,-1,-1,1,-0.6,0.6,-0.6,-0.8334,1,-0.4314,-0.2942,-0.2156,-0.0392,0,0.0784,0.1176,0.098,-0.0196,0.0784,0.6666,0.6078,1,0.804,0.0392,-0.1568,0.2352,0.2942,0.2352,-0.1176,-0.196,-0.196,0,0.0196,-0.2352,0.8432,0.8824,0.2746,-0.1764,0.3922,0.2352,-0.353,'25'
-0.6184,0.0976,0.423,0.9082,0.8136,1,0.7752,0.7366,0.6036,0.5118,0.0592,-0.0888,-0.3728,-0.3136,-0.3846,-0.5148,-0.3492,-0.4202,-0.3462,-0.3136,-0.2456,-0.0562,0.1006,0.5148,0.7072,0.6508,0.5266,0.5118,0.6036,0.5502,0.3344,0.1094,-0.648,-0.1224,-0.0202,0.2318,0.5958,0.7526,0.9168,1,0.8002,0.8146,0.931,0.8954,0.491,0.3722,0.296,0.1178,0.2176,0.132,0.2104,0.3318,0.346,0.6338,0.598,0.8858,0.7812,0.8146,0.66,0.6148,0.4816,0.5838,0.7074,0.748,-0.649,-0.161,-0.0818,0.1034,0.44,0.5312,0.9952,0.9928,0.911,0.827,0.7764,0.8414,1,0.815,0.7668,0.5144,0.4928,0.423,0.3198,0.411,0.5024,0.6346,0.7644,0.8052,0.9038,0.8774,0.673,0.5866,0.6634,0.56,0.6562,0.6514,-0.6998,-0.2896,0.027,0.1746,0.374,0.5638,1,0.9038,0.4444,0.3974,0.4842,0.4208,0.4138,0.7514,0.6366,0.6038,0.4444,0.517,0.3482,0.313,0.4842,0.5052,0.6882,0.8336,0.8922,0.728,0.6694,0.6342,0.4866,0.5826,0.5756,0.6154,-0.672,-0.2114,0.2006,0.336,0.7236,0.6938,0.6124,0.401,0.2548,0.1056,0.0976,-0.065,-0.1166,0.038,0.3794,0.4254,0.645,0.6476,0.7778,0.5636,0.645,0.7804,0.7074,0.897,0.8726,1,0.6476,0.6288,0.6558,0.4986,0.5204,0.4662,-0.6138,-0.1188,0.5544,0.67,0.7096,0.594,0.142,-0.109,-0.142,-0.3762,-0.472,-0.3928,-0.5776,-0.528,-0.1156,-0.2278,-0.0858,0.3928,0.4192,0.6732,0.7624,0.8976,0.8448,0.8514,1,0.9076,0.9208,0.759,0.7326,0.5214,0.5412,0.6832,-0.494,0.3198,0.2754,0.3684,-0.0486,-0.3238,-0.4454,-0.3766,-0.409,-0.7612,-0.668,-0.4412,-0.3886,-0.3158,-0.243,-0.4778,-0.5344,-0.506,-0.4252,-0.1094,0.2308,0.6964,0.8542,0.7206,0.7288,0.9352,1,0.3886,0.2308,0.247,0.0688,0.0162,-0.1708,0.4146,0.6098,1,0.9024,0.8536,0.7074,0.2196,-0.0732,-0.0244,-0.0244,0.0244,-0.2196,-0.4634,-0.2682,-0.2196,-0.0244,-0.122,-0.122,-0.1708,-0.317,-0.317,-0.3658,0.2196,0.561,0.5122,0.317,0.3658,0.4634,0.2682,0.122,-0.0732,-0.6924,0.1282,0.4872,1,0.9488,0.5384,0.4358,0.282,0.077,-0.282,-0.4872,-0.641,-0.7436,-0.5384,-0.282,-0.282,-0.5384,-0.7948,-0.4872,-0.5898,-0.7948,-0.9488,-0.282,0.0256,0.641,0.5898,0.2308,0.1794,0.4358,0.3334,-0.0256,-0.077,-0.6624,-0.2468,0.2468,0.3766,0.8702,0.7662,0.4546,0.2988,-0.1168,-0.4806,-0.5324,-0.3506,-0.5324,-0.5844,-0.1428,-0.1428,0.013,0.5844,0.6364,0.7402,0.7142,0.6884,0.5844,0.7142,0.948,1,0.6104,0.5584,0.6624,0.4546,0.3506,0.6364,-1,-1,-1,-1,-1,-1,-1,-0.9306,-0.741,-0.6368,-0.4232,0.6316,0.7596,0.1616,0.0146,-0.004,0.1188,-0.0922,-0.0066,-0.2096,-0.45,-0.6022,-0.8744,-0.9412,-0.9386,-0.952,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9686,-0.9258,-0.8914,-0.814,-0.3328,0.5652,0.8242,0.7512,0.4764,0.3424,-0.0416,-0.4124,-0.5864,-0.7996,-0.8648,-0.936,-0.9522,-0.9432,-0.9596,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9692,-0.96,-0.9468,-0.8834,-0.811,-0.7274,-0.6982,-0.6746,-0.64,-0.65,-0.62,-0.715,-0.8212,-0.8422,-0.7722,-0.6522,-0.549,-0.6822,-0.9122,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2858,-0.7714,-0.8572,0.1142,1,1,-0.6858,-0.9428,-0.8858,-0.8,-0.6286,-0.6572,-0.5142,-0.4572,-0.7714,-0.6572,-0.8858,-0.8286,-0.6,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.7386,0.7668,0.7742,0.8278,0.8344,0.8258,0.752,0.5744,0.298,0.4644,-0.68,0.3764,-0.799,-0.6998,-0.5164,-0.2234,-0.0338,-0.6666,0.14,0.12,0.14,0.35,0.59,0.59,0.62,1,0.62,0.51,0.7,0.54,0.6,0.51,0.26,0.41,0.55,0.55,0.29,0.26,0.52,0.49,0.43,0.2,0.35,0.42,0.22,0.24,0.11,0.3,0.2,-0.56,0.6108,1,0.8642,0.3936,0.2218,0.258,0.2398,0.4028,0.3122,0.267,0.3484,0.0498,0.3394,0.1584,0.0588,-0.0136,0.0408,0.0678,0.1132,0.1312,0.2308,0.1946,-0.2488,0.0136,-0.1584,-0.1856,-0.2036,-0.0588,-0.1674,-0.2126,-0.276,-0.5294,0.4598,0.8842,1,0.8842,0.1126,0.074,-0.0868,0.1126,0.0996,0.0804,0.074,-0.0096,0.164,-0.0868,0.0804,-0.029,-0.1062,-0.1898,-0.2154,-0.2476,-0.3054,-0.0804,-0.0868,-0.2154,-0.164,-0.2604,-0.1704,-0.2154,-0.3248,-0.3504,-0.5628,-0.7878,-0.965,1,-1,-1,-1,1,-1,-1,-1,-0.1852,0.0518,0.1112,0.1112,0.0666,0.0074,0.0962,0.1704,0.3482,-0.0518,0.5852,1,0.7482,0.5852,0.437,0.363,0.3038,0.2592,0.2148,0.0518,0.0518,0.2592,0.1556,0.274,0.0518,-0.0814,0.3482,0.274,0.3926,0.4518,0.2444,-0.274,'25'
-0.3544,0.358,0.3136,0.4212,0.2876,-0.3766,-0.5102,-0.514,-0.603,-0.5548,-0.5436,-0.5064,-0.4322,-0.2208,-0.1058,0.0724,0.1576,0.4546,0.7662,0.8552,0.6252,0.5548,0.5362,0.6734,0.8552,1,0.8218,0.6846,0.5214,0.514,0.4322,0.4398,-0.4446,0.1934,0.1604,0.448,0.3586,-0.2232,-0.3388,-0.5702,-0.6528,-0.5108,-0.6628,-0.6562,-0.5206,-0.3256,-0.2892,-0.1042,-0.1504,0.0182,0.2662,0.4348,0.7356,0.9108,0.8842,1,0.871,1,0.9174,0.9834,0.6728,0.7124,0.6232,0.7058,-0.4494,0.121,0.058,0.3002,0.1442,-0.3366,-0.5788,-0.6716,-0.7512,-0.6616,-0.5986,-0.5556,-0.5258,-0.5722,-0.529,-0.4462,-0.1442,-0.257,-0.0846,0.1244,0.3234,0.6948,0.8442,0.9636,1,0.9038,0.9502,0.9072,0.8508,0.728,0.6948,0.6782,-0.4734,0.0676,0.0786,0.276,-0.0566,-0.4442,-0.7074,-0.7368,-0.7074,-0.8026,-0.6746,-0.6198,-0.5064,-0.66,-0.3602,-0.4918,-0.4626,-0.2834,-0.3418,-0.192,0.2688,0.4516,0.8098,0.9562,1,0.9268,0.9598,0.9634,0.894,0.8136,0.744,0.638,-0.622,-0.167,0.244,0.3834,-0.0678,-0.3944,-0.6366,-0.6184,-0.7212,-0.7394,-0.7248,-0.6514,-0.5854,-0.4716,-0.4862,-0.512,-0.4496,-0.4716,-0.3834,-0.101,0.0018,0.5046,0.6184,1,0.9082,0.989,0.978,0.9854,0.89,0.7872,0.7468,0.6036,-0.7102,-0.2244,0.3592,0.4938,-0.0734,-0.404,-0.6938,-0.6734,-0.7142,-0.8448,-0.804,-0.7592,-0.596,-0.5266,-0.6122,-0.7142,-0.5142,-0.5878,-0.4816,-0.351,-0.1714,0.3674,0.6572,0.8858,0.9796,1,0.9428,0.8654,0.7142,0.502,0.5306,0.449,-0.7354,-0.1858,0.3944,0.542,-0.1756,-0.5216,-0.71,-0.6234,-0.766,-0.8728,-0.832,-0.7354,-0.6642,-0.598,-0.5318,-0.6336,-0.7252,-0.5064,-0.5928,-0.771,-0.4606,-0.0128,0.5674,0.9288,0.8066,1,0.7862,0.6132,0.3792,0.14,0.1806,0.0636,-0.3334,0.3846,0.3334,0.282,0.0256,-0.8462,-0.282,-0.4358,-0.3334,-0.282,-0.3846,-0.5898,-0.4872,-0.1282,0.0256,0.1794,0.3846,0.8974,1,0.5898,0.3846,0.4358,0.4358,0.5898,0.8974,1,0.7948,0.5898,0.5384,0.5384,-0.1282,-0.4872,-0.3024,0.4418,0.3954,0.3954,0.3024,-0.2094,-0.3954,-0.3024,-0.3024,-0.814,-0.1628,-0.1628,-0.3024,-0.0698,0.0698,0.2094,0.3954,0.4884,1,1,0.5348,0.4418,0.628,0.4884,0.6744,0.721,0.8604,0.721,0.6744,0.4884,0.5814,0.4418,-0.3398,0.1456,0.0098,0.2816,0.0874,-0.3786,-0.5534,-0.631,-0.6116,-0.6504,-0.4952,-0.5534,-0.3592,-0.398,-0.5146,-0.398,-0.3592,-0.1068,-0.1262,0.0874,0.068,0.5534,0.6894,1,0.8446,0.631,0.864,0.9418,0.631,0.67,0.7088,0.6894,-0.5978,-0.1274,-0.0412,-0.3358,-0.5224,-0.6446,-0.7092,-0.6876,-0.7056,-0.544,-0.3106,0.429,0.9748,0.7882,0.526,0.3752,0.0448,-0.0126,-0.0306,-0.106,-0.2926,-0.4112,-0.429,-0.7164,-0.8026,-0.8994,-0.9174,-0.9354,-0.9462,-1,-1,-1,-1,-0.8308,-0.6186,-0.5396,-0.4556,-0.2976,-0.1828,-0.3098,-0.1024,0.1902,0.1382,0.3408,0.3284,0.6766,0.9408,0.8136,0.637,0.2074,0.0544,0.0198,-0.2444,-0.5186,-0.6716,-0.7494,-0.8396,-0.8876,-0.884,-0.9074,-0.6112,-0.9272,-1,-1,-1,-1,-0.78,-0.8234,-0.7034,-0.15,0.99,1,1,1,1,1,1,0.0274,-0.26,-0.2026,-0.2226,-0.2476,-0.3326,-0.3526,-0.335,-0.4734,-0.589,-0.7224,-0.9468,-0.6668,-0.72,-0.47,-0.5968,-0.5534,-0.78,-1,-1,-1,-1,-0.5714,0.7714,1,1,-0.8,-0.8572,-0.9142,-0.7428,-0.6286,-0.7428,0.5714,1,1,-0.6286,-0.8,-0.7142,-0.8,-1,-0.9714,-0.6572,-0.7714,-0.0858,-0.5142,-0.7714,-0.8858,-0.9142,-0.4858,-0.3142,0.1142,-1,-1,-1,-1,-0.0026,0.02,0.0176,0.0266,0.0372,0.0616,0.0806,0.0738,0.0036,0.0182,0.698,0.685,0.7088,0.7522,0.7634,0.8192,0.8518,0.9054,0.9636,1,-0.7066,-0.047,0.268,0.5716,0.2544,0.2396,0.5888,-0.2084,-0.1108,0.0136,-0.2564,-0.6146,-0.7026,-0.5448,-0.4932,-0.4356,-0.299,-0.566,-0.4568,-0.4688,-0.1928,-0.129,-0.4082,-0.2262,-0.214,-0.2686,-0.1866,0.1108,0.22,-0.0076,0.123,0.39,0.5538,0.7116,0.7846,0.909,1,0.997,0.7086,0.4082,-0.4358,-0.3846,-0.8488,-0.8026,-0.8308,-0.8,-0.682,-0.5256,-0.4358,-0.577,-0.6512,-0.5488,-0.3692,-0.2898,-0.4488,-0.2052,-0.1334,-0.2256,-0.0692,0.1488,0.1512,0.1256,0.2948,0.4564,0.6154,0.6744,0.7538,0.6564,0.8692,1,0.659,0.3488,-0.3256,-0.2412,-0.6674,-0.7518,-0.7588,-0.6088,-0.5316,-0.5128,-0.1242,-0.164,-0.2974,-0.2154,-0.0984,-0.0796,-0.0984,-0.0516,0.11,0.0844,0.1242,0.199,0.4918,0.4872,0.6182,0.6932,0.7518,0.7962,0.8032,0.8992,0.8922,1,0.8104,0.6042,-0.684,-1,1,-1,1,0,-0.2,0.7334,-1,-0.4696,-0.5454,-0.2272,-0.3484,-0.4546,-0.2122,0.0304,-0.3484,-0.0606,0.2576,0.697,0.5152,0.4242,0.6364,0.5152,0.7576,1,0.7878,0.3334,0.6364,0.3484,-0.0152,0.5152,0.3182,0.1818,0.5454,0.5454,0.0758,0.0606,0.1212,0.3334,-0.0304,'26'
-0.4306,0.2898,0.2522,0.3928,0.2762,-0.3104,-0.4134,-0.506,-0.5506,-0.5266,-0.5574,-0.5404,-0.4374,-0.3104,-0.41,-0.0052,-0.0498,0.379,0.434,0.8078,0.7428,0.5128,0.4854,0.6054,0.674,1,0.9006,0.5232,0.4854,0.4752,0.4272,0.3516,-0.4662,0.212,0.1836,0.416,0.3406,-0.3062,-0.4004,-0.5604,-0.642,-0.504,-0.573,-0.4694,-0.5416,-0.4098,-0.4098,-0.215,-0.2842,-0.0518,0.0518,0.3532,0.46,0.7864,0.8838,1,0.8178,0.9812,0.9278,0.8964,0.6672,0.6012,0.5542,0.595,-0.4936,0.0994,0.032,0.3526,0.1892,-0.4488,-0.6858,-0.5674,-0.7244,-0.6634,-0.75,-0.657,-0.4326,-0.452,-0.484,-0.4584,-0.2692,-0.3686,-0.1794,0.0064,0.2084,0.609,0.8398,0.9936,1,0.9744,0.984,0.9006,0.7084,0.6026,0.5706,0.5608,-0.584,-0.0916,0.178,0.351,-0.005,-0.5274,-0.6206,-0.5774,-0.807,-0.767,-0.7538,-0.7204,-0.6206,-0.6272,-0.5308,-0.4044,-0.4776,-0.5042,-0.228,-0.1448,0.0948,0.4542,0.7072,0.9302,1,0.9302,0.9334,0.7904,0.644,0.5242,0.4876,0.4976,-0.648,-0.1986,0.4286,0.554,0.0244,-0.5854,-0.662,-0.6586,-0.7386,-0.77,-0.7874,-0.7108,-0.5262,-0.4738,-0.5436,-0.5714,-0.4494,-0.5644,-0.5088,-0.021,0.0174,0.4738,0.8398,1,0.8398,0.8502,0.8154,0.683,0.5332,0.3798,0.4146,0.46,-0.732,-0.043,0.3444,0.6556,0.421,-0.3828,-0.6268,-0.5934,-0.7178,-0.8326,-0.6364,-0.6556,-0.5694,-0.3972,-0.3732,-0.5694,-0.5216,-0.445,-0.3828,-0.311,0.4162,0.8086,1,0.976,0.9712,0.9426,0.823,0.3636,0.2632,0.1196,0.1436,0.1292,-0.2678,0.6428,0.4762,0.3274,0.2084,-0.2916,-0.4762,-0.4702,-0.2322,-0.5536,-0.7024,-0.3512,-0.369,-0.1904,-0.0834,-0.0834,-0.4226,-0.5536,-0.488,-0.1846,0.4286,1,0.881,0.994,0.8512,0.5416,0.3096,0,-0.0536,-0.0714,-0.0416,-0.3452,-0.2972,0.5136,0.3514,0.4054,0.2432,-0.3514,-0.4054,-0.1892,-0.3514,-0.1892,-0.2432,-0.081,-0.027,-0.4054,-0.027,-0.1352,-0.081,0.8918,0.8918,0.1352,0.4594,0.3514,0.2432,0.6756,0.7838,1,0.8918,0.4594,0.4594,0.2972,0.1352,0.4594,-0.25,0.4166,0.3334,0.4584,0.3334,-0.125,-0.1666,-0.25,-0.2084,-0.1666,-0.2084,-0.7084,-0.125,0,0,0.1666,0.3334,0.4584,0.875,1,0.5834,0.4584,0.5,0.5416,0.75,0.8334,0.625,0.6666,0.5,0.4584,0.4584,0.4166,-0.5264,-0.1842,0.6316,0.7894,0.2106,-0.6578,-0.7632,-0.5526,-0.7368,-0.9736,-0.6316,-0.3684,-0.5264,-0.3158,-0.5264,-0.3948,-0.1842,-0.3684,-0.4474,0.1052,0.1316,0.5,0.8422,1,0.9474,0.921,0.8158,0.6052,0.6052,0.3684,0.3422,0.579,-0.4398,-0.3492,-0.503,-0.6134,-0.637,-0.6924,-0.641,-0.72,-0.6884,-0.6766,-0.4674,0.5266,0.9526,0.787,0.5148,0.3926,0.1676,0.3728,0.2742,-0.1518,-0.2466,-0.5188,-0.791,-0.8896,-0.929,-0.9092,-1,-1,-1,-1,-1,-1,-1,-0.7242,-0.6752,-0.6646,-0.5812,-0.389,-0.082,0.073,-0.0238,-0.0268,0.2652,0.772,0.3428,0.8062,0.8704,0.693,0.4844,0.2846,0.0194,-0.1132,-0.3964,-0.5336,-0.7482,-0.8688,-0.9016,-0.8302,-0.9254,-1,-1,-1,-1,-1,-1,-1,-0.8568,-0.8668,-0.5268,0.08,0.8232,1,1,1,1,1,1,-0.1576,-0.2956,-0.2646,-0.08,-0.0624,-0.0978,-0.3912,-0.5534,-0.6312,-0.6578,-0.72,-0.6834,-0.59,-0.6168,-0.8468,-1,-1,-1,-1,-1,-1,-1,-0.4858,1,1,-0.4858,-0.6,-0.9142,-0.9428,-0.9714,-0.9142,-0.6286,0.5714,1,1,-0.8,-0.8,-0.9428,-0.9428,-0.8858,-0.5142,-0.6,0.0286,-0.7714,-0.6572,-0.5428,-0.6572,-0.6858,-1,-1,-1,-1,-1,-1,-1,0.0328,0.0646,0.091,0.1232,0.1336,0.1324,0.1384,0.1068,0.0482,0.0158,0.6032,0.6328,0.6908,0.737,0.7602,0.8296,0.9192,1,1,0.9988,-0.6934,0.0352,1,0.842,0.1014,0.3354,0.6796,0.0666,-0.2284,-0.1276,-0.5244,-0.7322,-0.6818,-0.6692,-0.5212,-0.4426,-0.37,-0.578,-0.6158,-0.493,-0.3322,-0.3732,-0.4488,-0.5338,-0.2252,-0.2062,-0.2032,-0.0582,0.0708,0.0614,0.307,0.5086,0.5622,0.685,0.9182,0.937,0.9118,1,0.7512,0.3292,-0.4126,-0.368,-0.829,-0.829,-0.7126,-0.6432,-0.5762,-0.5118,-0.4598,-0.5564,-0.5242,-0.5366,-0.3928,-0.4474,-0.3706,-0.264,-0.1946,-0.1896,-0.1028,0.0408,0.2936,0.3334,0.4548,0.5118,0.6356,0.767,0.9034,0.9454,0.8538,1,0.7646,0.4622,-0.4288,-0.354,-0.795,-0.709,-0.6846,-0.5634,-0.5942,-0.506,-0.334,-0.2944,-0.387,-0.44,-0.182,-0.1224,-0.3428,-0.1664,-0.0916,-0.0298,-0.0518,0.1048,0.301,0.3318,0.387,0.5104,0.592,0.7884,0.8126,0.8876,0.8766,1,0.7178,0.3186,-0.9106,-1,1,-1,1,0.6,-1,0.8334,-1,-0.253,-0.0844,0.1808,0.2048,-0.1326,0.1084,0.4458,0.1566,0.3012,0.1808,0.6144,0.7108,0.8072,1,0.253,0.229,0.5422,0.3494,0.4698,0.8796,0.759,0.6144,0.6386,0.5662,0.494,0.3976,0.4698,0.1084,0.229,0.253,0.3254,-0.3976,'26'
-0.4828,-0.046,0.2988,0.4598,0.885,0.8544,0.3832,0.1112,0.1264,0.1226,0.0574,0.0076,0.069,0.138,0.2452,0.4062,0.5978,0.7164,0.9042,0.885,0.8276,0.7892,0.9426,1,0.9042,0.9196,0.9348,0.7242,0.682,0.7394,0.7892,0.9348,-0.477,-0.163,0.197,0.483,0.7846,0.6338,0.4524,0.1784,0.0984,0.1784,0.0954,0.08,0.1046,0.1846,0.2524,0.3784,0.6308,0.797,0.9908,1,0.88,0.8462,0.8892,0.9262,0.9538,0.8554,0.8062,0.757,0.7076,0.6646,0.68,0.6924,-0.4452,-0.1796,0.197,0.489,0.7314,0.5796,0.3694,0.162,0.0802,0.162,0.1094,0.0774,0.1182,0.1154,0.1358,0.3198,0.5562,0.6408,0.9532,0.9036,0.9036,0.8802,0.8774,0.9532,0.9474,1,0.8306,0.746,0.7868,0.6818,0.6642,0.708,-0.5318,-0.2504,0.1644,0.4548,0.6266,0.3926,0.0874,-0.0312,-0.0312,-0.0014,-0.0074,-0.0608,-0.0014,0.0638,0.114,0.194,0.3986,0.5052,0.6712,1,0.9614,0.6474,0.8222,0.8162,0.8488,0.837,0.8518,0.6178,0.597,0.6414,0.5912,0.5734,-0.5696,-0.3172,0.191,0.5178,0.6214,0.1844,-0.1326,-0.097,-0.081,-0.123,-0.068,-0.246,-0.1036,-0.081,0.0388,0.1618,0.191,0.3884,0.7282,0.9386,0.9968,0.8382,0.8026,0.8932,0.9644,1,0.8478,0.6408,0.6958,0.5276,0.589,0.6408,-0.5824,-0.2808,0.1192,0.6492,0.6948,0.0492,0.1474,0.1122,-0.0702,-0.3264,-0.3544,-0.4,-0.3122,-0.3122,-0.2386,-0.0666,0.0736,0.179,0.5578,0.779,1,0.9684,0.828,0.8562,0.9192,0.9438,0.6982,0.5264,0.5474,0.4,0.379,0.4316,-0.5154,-0.2164,0.1702,1,1,-0.1752,-0.098,-0.2062,-0.232,0.1186,0.0412,-0.2526,-0.6082,-0.7216,-0.4484,-0.603,-0.5258,-0.6752,-0.1082,0.3762,0.8042,0.6392,0.3144,0.4226,0.603,0.5824,0.3506,-0.103,-0.2526,-0.1444,-0.2526,-0.1186,-0.6862,-0.2156,0.0196,0.4118,0.804,0.7648,0.2156,0.0196,0.098,-0.0588,0.0588,0.1372,0.098,0.2156,0.1372,0.3334,0.451,0.804,0.9216,0.8432,0.647,0.6862,0.804,0.7648,0.804,0.804,0.8432,0.6862,0.7254,0.7254,0.804,1,-0.4348,-0.0434,0.3478,0.3914,0.3044,0.5218,0.5218,0.2608,0.1304,0.174,0.087,0.087,0.2174,0.3044,0.1304,0.3914,0.7826,0.8696,0.7392,0.826,0.7826,1,0.9566,0.9566,0.913,0.913,0.913,0.6086,0.6956,0.7392,0.6086,0.9566,-0.6404,-0.236,0.1236,0.4832,0.528,0.0562,-0.0338,-0.1236,-0.0786,-0.2808,-0.3034,-0.191,-0.1686,-0.146,-0.146,0.0338,0.146,0.236,0.4606,0.9776,0.9326,0.8426,0.8202,0.8876,0.8876,1,0.7304,0.6404,0.663,0.5506,0.5056,0.5506,-1,-1,-1,-1,-1,-1,-1,-0.9716,-0.9676,-0.9452,-0.144,0.4158,0.9026,0.8864,0.8438,0.925,0.6654,0.2596,0.071,-0.1076,-0.1522,-0.493,-0.858,-0.935,-0.9432,-0.9594,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9824,-0.9806,-0.9514,-0.0638,0.222,0.3358,0.8382,0.6202,0.6184,0.4242,0.1178,-0.094,-0.347,-0.5398,-0.823,-0.9484,-0.9658,-0.9722,-0.9734,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9868,-0.9668,-0.7868,-0.2534,-0.0476,-0.5076,-0.33,-0.3526,-0.44,-0.4076,-0.3626,-0.3676,-0.3326,-0.529,-0.7178,-0.6934,-0.7,-0.88,-0.78,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7142,-0.4,1,1,1,-0.5428,-0.6286,-0.8286,-1,-0.9428,-0.8286,-0.8,-0.1714,0.7428,0.6572,-0.4286,-0.6572,-0.9142,-0.8858,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.995,0.6322,0.6378,0.624,0.6038,0.5824,0.5884,0.6442,0.683,0.7502,0.7884,-0.5466,-0.0588,0.2616,0.635,0.0782,0.0908,0.232,1,0.193,0.3684,0.7544,0.579,0.5438,0.3684,0.4736,0.5088,0.7894,1,0.8246,0.8948,0.8596,0.8948,0.8596,0.9298,0.8596,0.8596,0.6842,0.7544,0.5088,0.3334,0.3334,0.1578,0.2982,0.5088,0.4736,0.5438,0.6492,0.7192,0.614,0.4036,-0.377,0.0984,0.4754,0.2296,0,-0.0164,0.082,0.1312,0.4098,0.6394,0.6394,0.6066,0.6558,0.5902,0.5902,0.836,1,0.9836,0.6722,0.377,0.3606,0.1968,-0.0984,-0.3934,-0.1476,-0.0164,0.0984,0.0984,0.1476,0.2296,0.1804,-0.1148,-0.4016,0.0394,0.496,0.2756,-0.0866,-0.0552,0.0236,0.0866,0.3228,0.6378,0.4646,0.5748,0.5748,0.559,0.5118,0.7322,1,0.9686,0.7008,0.2126,0.244,0.0552,-0.1338,-0.4488,-0.0552,0.0552,0.0708,0.0552,0.1338,0.2284,0.1968,-0.3858,1,-1,-1,1,-0.8,-1,-1,-0.8334,-1,0.2696,0.287,0.2348,0.3218,0.3914,0.5478,0.7218,0.6696,0.4782,0.6174,0.5826,0.8956,1,0.7392,0.4608,0.3914,0.6522,0.8086,0.6522,0.7392,0.2696,0.6174,0.3914,0.3218,0.113,0.3914,0.374,0.5652,0.2522,0.2,0.513,0.3914,'1'
-0.6902,-0.239,0.0472,0.2684,0.5162,0.6342,0.3452,0.351,0.1092,0.1062,0.1828,0.1386,0.2154,0.1474,0.3334,0.3924,0.528,0.7346,0.8526,1,1,0.8526,0.8908,0.9912,0.9764,0.8672,0.8112,0.7728,0.6844,0.6784,0.708,0.7846,-0.6384,-0.2546,0.0208,0.171,0.5272,0.6106,0.26,0.2574,0.1322,0.0682,0.1322,0.0376,0.1544,0.2044,0.2434,0.3936,0.4048,0.6496,0.772,1,0.911,0.8414,0.8414,0.886,0.8832,0.8692,0.6912,0.6606,0.6356,0.6022,0.644,0.6216,-0.6328,-0.3124,0.1458,0.2708,0.7864,0.7812,0.3438,0.2448,0.3282,0.1718,0.164,0.2032,0.2006,0.2708,0.3124,0.4036,0.5834,0.6432,0.8178,0.9792,1,0.9218,0.8776,0.8932,0.9688,0.8958,0.8386,0.7578,0.7266,0.6902,0.6796,0.7318,-0.6906,-0.4006,0.1216,0.4752,0.7818,0.6768,0.3508,0.337,0.2872,0.2016,0.0662,0.0774,0.2652,0.1712,0.2154,0.3592,0.4558,0.605,0.8288,0.964,1,0.9392,0.873,0.9226,0.9696,0.9696,0.8618,0.71,0.6686,0.6546,0.7182,0.6824,-0.6944,-0.3972,0.0472,0.4638,0.5612,0.2362,0.1306,0.1694,0.0916,0.0112,-0.0888,0.0612,0.0556,0.0778,0.15,0.2778,0.3666,0.4972,0.7194,1,0.9944,0.8084,0.7972,0.8556,0.9362,0.8834,0.7778,0.6666,0.6112,0.5888,0.6388,0.6166,-0.5988,-0.3408,0.021,0.5456,0.5344,-0.0154,0.2006,0.0856,0.049,-0.122,-0.08,-0.0996,-0.0238,-0.0182,0.181,0.209,0.338,0.352,0.7616,0.9186,1,0.9046,0.8878,0.9298,0.9804,0.9158,0.7812,0.7252,0.6186,0.627,0.6466,0.6466,-0.6322,-0.2608,0.1482,0.6736,0.6698,-0.0282,0.0994,0.2496,0.3208,-0.197,-0.2682,-0.4672,-0.5872,-0.4334,-0.2496,-0.1858,-0.0882,0.122,0.5948,0.9212,1,0.91,0.8312,0.7862,0.8612,0.7786,0.516,0.3696,0.3134,0.2458,0.272,0.272,-0.862,-0.3104,0,0.2414,0.5862,0.6206,0.3794,0.3448,0.1034,0.0344,0.069,0.0344,0.2068,0.138,0.2414,0.3794,0.4138,0.6896,0.931,1,0.8276,0.7242,0.7932,0.8966,0.7932,0.7586,0.7242,0.6896,0.5862,0.5172,0.6896,0.6206,-0.7628,-0.2204,0.017,0.2882,0.5254,0.6272,0.322,0.356,0.017,0.0508,0.1864,0.1864,0.2204,0.1186,0.3898,0.2204,0.4916,0.695,0.8306,0.9662,1,0.8306,0.8984,0.9662,0.9322,0.7966,0.7628,0.7288,0.6272,0.695,0.6272,0.7628,-0.5084,-0.2542,0.1186,0.5762,0.5594,0.1186,0.2542,0.2034,0.1186,-0.017,0.0848,0.0678,0.1186,0.0338,0.2372,0.2712,0.4406,0.5084,0.8474,0.9492,1,0.9492,0.8984,0.983,1,1,0.8306,0.7288,0.695,0.661,0.7458,0.7118,-1,-1,-1,-1,-1,-1,-1,-1,-0.9762,-0.9798,-0.6558,-0.1542,0.0126,0.1972,0.6902,0.9392,0.5986,0.2818,0.0852,-0.1186,-0.2984,-0.5104,-0.757,-0.8844,-0.9262,-0.9548,-0.9642,-0.9702,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9884,-0.9896,-0.5138,0.4068,0.9008,0.809,0.8206,0.907,0.7354,0.6086,0.491,0.225,-0.3088,-0.7362,-0.8458,-0.9304,-0.9436,-0.9678,-0.975,-0.9782,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.9268,-0.3234,0.1224,0,-0.0876,-0.1826,-0.375,-0.26,-0.175,-0.1726,-0.4026,-0.5226,-0.7046,-0.57,-0.37,-0.24,-0.72,-0.81,-0.8368,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,1,1,1,-0.7714,-0.8858,-1,-1,-1,-1,-1,-0.3428,1,1,0.4858,0,-0.2286,-0.0858,-0.7428,-0.4,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.7028,0.721,0.706,0.718,0.724,0.7228,0.75,0.7548,0.7816,0.8172,-0.6,-0.0706,-0.3724,-0.0634,0.1742,0.9202,0.9584,1,-0.8,-0.35,0.1,-0.05,-0.05,0.2,0.25,0.45,0.75,1,1,0.85,0.95,0.75,0.6,0.65,0.55,0.35,0.9,0.85,0.7,0.75,0.6,0.15,0.3,0.2,0.45,0.65,0.55,0.4,0.3,-0.3,-0.509,0.0546,0.3818,0.2364,0.1454,0.091,0.109,0.3636,0.4728,0.8,0.891,0.691,0.8182,0.5636,0.509,0.5818,0.509,0.5272,0.9454,1,0.7636,0.509,0.2182,-0.1454,0.0364,0,0.2546,0.491,0.2728,0.3636,0.2364,-0.0182,-0.4482,0.1552,0.5172,0.4482,0.1034,0.0172,0.069,0.2758,0.5862,0.9656,0.862,0.8104,0.7758,0.6552,0.5172,0.638,0.6034,0.6034,1,0.8104,0.8276,0.362,0.3276,0,0.0172,-0.138,0.2068,0.5,0.2932,0.2586,0.3794,0,0.3082,-1,-1,1,-0.8,-1,-0.8,-0.8334,-1,-0.6378,0.0078,0.1338,-0.0708,-0.1968,-0.0078,0.1968,0.0708,0.0708,0.1654,0.5118,0.5906,0.5748,0.1968,0.1812,0.496,0.559,0.5748,0.6536,0.8426,1,0.6378,0.1812,0.1338,-0.0078,-0.1968,-0.1654,-0.0236,-0.1182,-0.496,-0.3544,-0.5434,'1'
-0.6924,0.0104,-0.0312,0.3722,0.239,-0.7422,-0.8254,-0.6508,-0.6632,-0.472,-0.709,-0.6134,-0.4262,-0.2848,-0.3222,-0.2598,0.1976,0.289,0.7672,0.8004,0.7464,0.7006,0.7422,0.6964,1,0.9294,0.9126,0.7506,0.7298,0.6258,0.8254,0.8462,-0.6512,-0.0804,-0.0358,0.3538,0.2478,-0.6512,-0.771,-0.5076,-0.5726,-0.4052,-0.5146,-0.3914,-0.3642,-0.265,-0.1898,-0.1146,-0.0324,0.029,0.3982,0.4154,0.8154,0.8222,0.4462,0.412,0.6376,0.6992,1,0.9076,0.812,0.6924,0.829,0.788,-0.6452,-0.1322,0.0516,0.3354,0.2032,-0.613,-0.5904,-0.4678,-0.4162,-0.342,-0.458,-0.4388,-0.2678,-0.2806,-0.113,-0.1612,-0.0484,-0.0516,0.2484,0.5064,0.7096,0.6774,0.7096,0.5096,0.6096,0.7838,0.8452,0.9806,1,0.8064,0.7806,0.8904,-0.623,-0.1704,0.1114,0.2918,0.0524,-0.4164,-0.3968,-0.3968,-0.4886,-0.564,-0.5082,-0.4918,-0.3672,-0.2852,-0.2426,-0.2032,-0.2066,-0.0328,0.154,0.3868,0.6622,0.8296,0.7968,0.577,0.541,0.6394,0.8,1,0.9672,0.8558,0.8394,0.8558,-0.6426,-0.3016,0.2852,0.3574,-0.0688,-0.2196,-0.4558,-0.6066,-0.5442,-0.6098,-0.6262,-0.5606,-0.5246,-0.4754,-0.4394,-0.377,-0.246,-0.1804,0.046,0.2852,0.5148,0.8754,0.8492,0.564,0.446,0.5476,0.7672,0.9508,1,0.9312,0.9214,0.9344,-0.5274,-0.0926,0.4632,0.3498,-0.2552,-0.724,-0.535,-0.5728,-0.8942,-0.7354,-0.671,-0.5426,-0.6408,-0.7958,-0.6598,-0.55,-0.4404,-0.4858,-0.138,0.1304,0.4178,0.792,0.8676,0.569,0.38,0.5388,0.6786,0.8866,1,0.932,0.9206,0.8564,-0.3416,0.1172,0.7158,0.626,-0.3266,-0.8902,-0.9352,-0.8704,-0.616,-0.7456,-0.596,-0.4364,-0.6908,-0.8054,-0.601,-0.4114,-0.3916,-0.4614,-0.4064,-0.227,0.0374,0.7706,1,0.6708,0.177,0.2868,0.4912,0.8154,0.8604,0.626,0.5562,0.561,-0.5676,-0.081,-0.1352,0.1892,0.027,-0.8378,-0.7298,-0.8378,-0.6216,-0.5136,-0.6216,-0.5676,-0.3514,-0.2432,-0.3514,-0.4054,0.2432,0.4054,0.8378,0.946,0.5136,0.3514,0.946,0.8918,0.946,0.8918,0.4054,0.2972,0.5136,0.4594,0.6216,1,-0.6316,-0.0526,-0.0526,0.3684,0.2106,-0.9474,-0.579,-0.5264,-0.6316,-0.5264,-0.6316,-0.7368,-0.5264,-0.4736,-0.421,-0.2106,0.3158,0.3684,1,0.9474,0.6842,0.6842,0.6316,0.7368,1,0.7894,1,0.8422,0.579,0.6842,0.7894,0.8422,-0.5624,-0.125,0.3334,0.3124,-0.0834,-0.3124,-0.4792,-0.3958,-0.4792,-0.5624,-0.4376,-0.4376,-0.5,-0.4376,-0.6042,-0.375,-0.2708,-0.2084,-0.0208,0.1458,0.5208,0.6458,0.7708,0.5416,0.375,0.5416,0.6666,0.7916,1,0.9166,0.875,0.8124,-1,-1,-1,-1,-1,-1,-1,-1,-0.4892,-0.5892,-0.3178,0.625,0.8642,0.5892,0.5608,0.5286,0.3464,0.3036,0.3786,0.3036,-0.0286,-0.2358,-0.7142,-0.8642,-0.8964,-0.9036,-0.9072,-0.925,-0.9,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9026,-0.921,-0.6902,-0.0174,0.4294,0.4364,0.5042,0.8496,0.5498,0.408,0.0924,-0.3898,-0.6088,-0.8206,-0.856,-0.8524,-0.8654,-0.9516,-0.954,-0.9604,-0.9646,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.9934,-0.5134,0.04,0.34,0.3924,0.435,0.5674,0.46,0.4124,0.26,-0.05,-0.0926,-0.6476,0.0366,0.34,0.0732,-0.6,-0.54,-0.7668,-0.7534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,1,1,1,-0.0858,-0.6858,-0.7142,-0.8572,-1,-0.9428,-0.0858,-0.1142,1,1,0.2286,-0.0572,1,0.8286,-0.8572,-0.7428,-0.7714,-1,-1,-1,-1,-0.1608,-0.1534,-0.1484,-0.1072,-0.1166,-0.105,-0.0588,0.0482,0.1084,0.0316,0.8318,0.8682,0.863,0.9004,0.9094,0.9376,0.9474,0.9566,0.9924,0.9826,-0.6934,-0.0942,-0.699,-0.2122,0.0126,0.1572,0.2888,1,0.132,0.132,0.1698,-0.132,0.283,0.6226,0.849,0.8114,0.585,0.4716,0.6982,0.585,0.4716,0.7358,1,1,1,0.8114,0.585,0.8114,0.849,0.849,0.849,0.7736,0.3208,0.7358,0.8114,0.7736,0.434,0.3962,0.434,0.2452,-0.0538,0.2044,-0.1182,-0.1398,-0.0752,0.1182,0.5914,0.699,0.699,0.7204,0.742,0.3978,0.6344,0.3978,1,0.871,0.7634,0.4408,0.3978,0.5914,0.656,0.5268,0.6344,0.5484,0.4408,0.4624,0.656,0.5914,0.5268,0.4838,0.3764,0.1828,0.0212,0.1702,0,-0.5958,-0.234,-0.3618,0.0852,0.1064,0.5106,0.8086,0.7234,0.8724,0.7446,0.4894,0.7234,0.9788,1,0.8298,0.4042,0.2766,0.3618,0.4256,0.4894,0.5106,0.4468,0.1276,0.2128,0.2128,0.4256,0.2978,0.1914,-0.234,-0.084,-1,-1,1,-1,0.8,-1,-0.8334,-1,-0.4156,-0.078,-0.013,0.065,0.2208,0.2078,0.1038,0.1818,0.1298,0.4676,0.5194,0.4286,0.8312,0.7272,0.7402,0.7922,0.961,0.961,1,0.6494,0.7402,0.8312,0.7142,0.6624,0.7012,0.4676,0.4026,0.3766,0.2468,0.3506,0.2728,-0.5064,'2'
-0.491,0.13,0.083,0.379,0.2166,-0.7076,-0.5812,-0.4694,-0.5416,-0.462,-0.426,-0.3394,-0.4188,-0.4188,-0.1588,-0.0974,0.296,0.4296,0.7364,0.6102,0.592,0.4838,0.6534,0.6896,0.8232,0.917,1,0.6968,0.7256,0.6354,0.6788,0.8484,-0.5708,-0.0016,-0.0472,0.2814,0.135,-0.844,-0.7008,-0.5544,-0.6228,-0.5318,-0.4796,-0.4178,-0.4308,-0.4178,-0.2618,-0.2878,-0.0212,-0.0342,0.3334,0.3854,0.6846,0.5382,0.3334,0.356,0.5122,0.678,0.7788,0.9186,1,0.7918,0.8082,0.8374,-0.6036,-0.093,-0.1172,0.1442,-0.018,-0.5496,-0.5166,-0.4384,-0.5766,-0.5226,-0.5046,-0.5106,-0.4204,-0.4954,-0.3364,-0.3514,-0.1712,-0.009,0.1412,0.5586,0.6576,0.3694,0.4084,0.3844,0.3754,0.5856,0.6306,1,0.922,0.8918,0.7568,0.904,-0.6476,-0.238,0.0476,0.2032,-0.1238,-0.4318,-0.3334,-0.3936,-0.5588,-0.654,-0.581,-0.6666,-0.5968,-0.438,-0.4286,-0.2604,-0.2286,-0.1112,0.2444,0.4666,0.654,0.7142,0.5334,0.3936,0.4476,0.562,0.7968,0.9492,1,0.9174,0.9302,0.9746,-0.6758,-0.3034,0.3896,0.4034,-0.1758,-0.4482,-0.4862,-0.5758,-0.7932,-0.7206,-0.7242,-0.6482,-0.569,-0.5656,-0.562,-0.3896,-0.3482,-0.3068,0.0242,0.3724,0.6552,0.7104,0.5586,0.4448,0.4896,0.6172,0.838,0.9896,1,0.8758,0.8518,0.9344,-0.639,0.064,0.4774,0.312,-0.1354,-0.2556,0.0188,-0.0452,-0.0902,-0.7744,-0.8534,-0.7782,-0.7782,-0.7218,-0.7142,-0.6766,-0.5526,-0.1918,-0.064,0.2858,0.6316,0.8722,0.7932,0.436,0.4736,0.6542,0.8722,1,0.9662,0.7256,0.767,0.703,-0.427,0.2232,0.8678,0.9008,0.091,-0.3774,0.0192,0.2672,0.3664,0.3002,-0.1626,-0.741,-0.6364,-0.5206,-0.438,-0.8622,-0.3994,-0.1956,-0.1956,-0.0964,0.2672,1,1,0.697,0.675,0.449,0.5922,0.5482,0.19,0.2838,0.3278,0.179,-0.65,0.1,0.1,0.2,0.1,-0.55,-0.55,-0.45,-0.65,-0.55,-0.5,-0.3,-0.3,-0.5,0.05,0.45,0.5,0.8,0.9,0.8,0.7,0.9,1,0.95,0.8,0.65,0.4,0.35,0.35,-0.4,0.45,0.55,-0.4782,0.174,0.2174,0.4348,0.2608,-0.4782,-0.5652,-0.4348,-0.5218,-0.3044,-0.174,-0.174,-0.1304,-0.2174,-0.0434,-0.1304,0.3044,0.6522,0.8696,0.7392,0.5652,0.5218,0.6522,0.6956,0.826,1,1,0.6956,0.7392,0.6522,0.6086,0.826,-0.5328,-0.0468,-0.0654,0.215,0.0654,-0.5888,-0.6262,-0.4954,-0.6074,-0.4954,-0.4766,-0.4206,-0.3832,-0.3832,-0.215,-0.2336,-0.028,0.0468,0.2524,0.5328,0.7196,0.5514,0.2524,0.3644,0.4018,0.57,0.57,0.9814,1,0.7944,0.7384,0.7944,-1,-1,-1,-1,-1,-1,-1,-1,-0.8862,-0.8906,-0.3896,0.3896,0.6356,0.6218,0.5216,0.4488,0.2528,0.3668,0.8406,0.5308,0.3622,-0.1162,-0.7312,-0.8542,-0.8816,-0.8862,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9708,-0.9674,-0.6012,-0.3474,-0.0534,0.1124,0.371,0.8516,0.588,0.3932,0.0084,-0.2024,-0.5644,-0.8196,-0.9188,-0.9342,-0.9494,-0.959,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9234,-0.89,-0.64,-0.12,0.2424,0.2024,0.265,0.455,0.5524,0.4866,0.1288,-0.1624,-0.6,-0.789,-0.57,-0.5568,-0.7868,-0.9068,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6,1,1,1,-0.2858,-0.8286,-0.7428,-0.9428,-1,-0.8858,-0.8286,-0.4572,1,0.5142,-0.6858,-0.7428,-0.6,-0.6858,-1,-1,-1,-1,-1,-1,-1,-0.1004,-0.0718,-0.0662,-0.071,-0.1346,-0.15,-0.1208,-0.069,0.034,0.2558,0.7386,0.7786,0.7886,0.832,0.851,0.8662,0.8918,0.9148,0.9308,0.945,-0.6934,-0.0236,-0.3974,-0.5138,-0.421,-0.1498,-0.059,1,0.0244,0.1708,0.2196,0.2196,0.3658,0.6586,0.8048,0.9512,1,0.8048,0.756,0.9024,0.9024,0.9024,0.8048,0.6586,0.5122,0.8536,0.9512,0.9024,0.8536,0.8048,0.7074,0.6098,0.4634,0.4146,0.4634,0.3658,0.3658,0.317,0.1708,-0.4146,-0.0458,0.2294,0.156,-0.101,0.0092,0.3028,0.6514,0.8348,1,0.945,0.8166,0.8532,0.8716,0.6146,0.9816,1,0.7432,0.7798,0.9816,0.9816,0.8348,0.633,0.688,0.6514,0.5412,0.4496,0.5046,0.5412,0.578,0.3212,0.1926,-0.4496,0.2258,0.4194,0.1828,-0.0752,-0.2044,-0.0538,0.0968,0.5054,0.7634,0.8064,0.9354,0.957,1,0.5484,0.914,0.9354,0.871,0.871,0.742,0.7634,0.7204,0.957,0.8494,0.656,0.3118,0.5054,0.3548,0.3118,0.3334,0.4624,0.3548,0.0968,0.1456,-1,-1,1,-1,-1,-1,-0.8334,-1,-0.1892,0.2612,0.2072,0.4954,0.6396,0.5136,0.5676,0.3874,0.2792,0.3514,0.6756,0.7838,1,0.7478,0.3334,0.4954,0.4234,0.6216,0.6756,0.4234,0.5856,0.3334,0.3154,0.4054,0.2612,0.2432,0.6756,0.4414,0.081,-0.063,0.063,-0.4234,'2'
-0.5222,0.2716,0.3294,0.341,0.3064,0.029,0.129,-0.0058,-0.1522,-0.318,-0.0096,-0.0712,0.1714,0.156,0.4182,0.5028,0.7688,0.8998,0.8074,0.6494,0.5452,0.9152,0.815,1,0.9654,0.603,0.657,0.3834,0.449,0.6108,0.7032,0.7764,-0.672,-0.0088,-0.0018,0.3862,0.3686,-0.0688,-0.0828,-0.4426,-0.4392,-0.2734,-0.2768,-0.1992,-0.164,-0.0336,0.0618,0.164,0.3756,0.5308,0.9154,0.9082,0.6966,0.5696,0.739,0.7778,1,0.9964,0.7602,0.6826,0.6402,0.665,0.8342,0.9506,-0.6476,-0.088,-0.1054,0.3264,0.2608,-0.4716,-0.5786,-0.4956,-0.6338,-0.4058,-0.513,-0.247,-0.3816,-0.164,-0.2436,-0.0328,-0.0536,0.1606,0.658,0.8376,0.665,0.6234,0.5026,0.6442,0.8652,1,0.8514,0.8272,0.6304,0.7272,0.741,0.8308,-0.621,-0.1508,0.207,0.3964,0.1334,-0.3824,-0.379,-0.365,-0.5438,-0.5508,-0.5298,-0.4842,-0.4526,-0.414,-0.2422,-0.207,-0.1264,-0.0246,0.3228,0.5684,0.8948,0.8666,0.5964,0.565,0.586,0.835,1,0.9334,0.7578,0.7018,0.7474,0.8878,-0.6008,0.026,0.7006,0.6526,-0.1338,-0.4332,-0.509,-0.533,-0.6886,-0.7366,-0.5728,-0.505,-0.6606,-0.5688,-0.4492,-0.3692,-0.3294,-0.2296,0.1616,0.469,0.7684,0.96,0.8404,0.6288,0.5848,0.8204,1,0.976,0.8802,0.7286,0.7804,0.8484,-0.6808,0.0466,0.592,0.459,-0.3216,-0.6808,-0.388,-0.4944,-0.765,-0.8138,-0.6408,-0.734,-0.8138,-0.6808,-0.5876,-0.7384,-0.6008,-0.53,-0.2772,-0.0156,0.5034,1,0.9424,0.4146,0.317,0.5832,0.6762,0.6586,0.4634,0.3748,0.3436,0.4368,-0.5438,-0.0456,0.579,0.3964,-0.0596,-0.5438,-0.0808,-0.1158,-0.228,-0.7544,-0.614,-0.635,-0.621,-0.8666,-0.8456,-0.7614,-0.4316,-0.3474,-0.3614,-0.0526,0.0246,0.593,1,0.7824,0.3754,0.6982,0.7684,0.3824,0.3614,0.2982,0.3754,0.2702,-0.7334,0.1556,0.3334,0.2888,-0.3778,-0.2,-0.3334,-0.0666,-0.1556,-0.4666,-0.1112,-0.3334,0.1112,-0.1112,0.1556,0.5112,0.5556,0.4666,0.4222,0.2,0.5112,0.7334,1,0.9556,0.5556,0.3778,0.2888,0.0666,-0.0666,0.0222,0.0222,0.3778,-0.6586,0.2196,0.2682,0.122,0.2196,-0.2196,0.0244,-0.1708,-0.4634,-0.6586,-0.2682,-0.4146,-0.0732,-0.0244,0.3658,0.4634,0.6586,0.9024,0.561,0.6098,0.3658,0.9024,0.8536,1,0.9024,0.5122,0.561,0.3658,0.561,0.5122,0.756,0.561,-0.38,0.26,0.64,0.52,-0.06,-0.38,-0.16,-0.28,-0.26,-0.76,-0.36,-0.4,-0.46,-0.36,-0.32,-0.46,-0.34,-0.2,-0.04,0.34,0.58,1,0.92,0.48,0.64,0.76,0.86,0.9,0.76,0.56,0.64,0.76,-0.9496,-0.926,-0.9428,-0.9428,-0.9362,-0.9226,-0.9092,-0.9194,-0.8958,-0.842,-0.8858,0.4016,0.5596,0.5092,0.6034,0.331,0.3984,0.7848,0.9058,0.1126,-0.3042,-0.5596,-0.7512,-0.869,-0.9092,-0.9194,-0.916,-1,-1,-1,-1,-1,-1,-0.9696,-0.902,-0.806,-0.7394,-0.6602,-0.6534,-0.5994,-0.5062,-0.4146,-0.4514,-0.4658,-0.5354,0.2124,0.6738,0.948,0.4434,0.0208,-0.2376,-0.3654,-0.6334,-0.8684,-0.8896,-0.9464,-0.9628,-0.9708,-0.9736,-0.9768,-1,-1,-1,-1,-1,-1,-0.8134,0.61,1,1,1,1,1,1,1,1,1,0.1314,0.4428,0.697,0.7056,0.6484,0.5256,0.157,-0.065,-0.2476,-0.6776,-0.685,-0.62,-0.5134,-0.62,-0.7734,-0.8268,-1,-1,-1,-1,-1,-1,1,1,1,-0.7428,-0.7714,-0.9142,-0.8572,-0.8,-0.6,-0.6,0.3142,1,0.8286,-0.6,-0.8,-0.1714,0.0858,-0.4572,-0.5714,1,1,-0.6286,-0.6572,-0.7142,-0.6286,-0.5714,-0.7714,-1,-1,-1,-1,-1,-1,0.7696,0.7704,0.7714,0.77,0.7674,0.759,0.735,0.624,0.5122,0.3634,0.2482,0.27,0.2866,0.313,0.341,0.41,0.5026,0.6248,0.7592,0.837,-0.68,-0.1648,-0.4498,-0.587,-0.5302,-0.3482,0.2112,-0.6834,-0.6524,-0.7668,-0.6188,-0.3722,-0.3004,-0.2512,-0.1838,-0.0022,0.1748,-0.0336,-0.0896,0.0538,-0.0112,-0.0292,0.0538,0.287,0.4192,0.6122,0.5538,0.592,0.7422,0.991,0.9642,0.8588,0.843,0.8924,1,0.9216,0.9238,0.9238,0.8206,0.4642,-0.737,-0.7508,-0.493,-0.4112,-0.291,-0.2282,-0.2526,-0.0418,0.0506,-0.0366,-0.0366,-0.0174,-0.0696,-0.0314,0.061,0.1236,0.2614,0.4076,0.3588,0.4094,0.6114,0.7038,0.7648,0.7108,0.7578,0.8102,0.953,1,0.8798,0.8746,0.8344,0.5906,-0.7958,-0.5816,-0.4728,-0.3942,-0.2888,-0.1414,-0.1582,0.1482,0.2334,0.026,0.1866,0.2652,0.1146,0.1414,0.0678,0.2652,0.3824,0.5348,0.441,0.5164,0.5564,0.7874,0.7842,0.7206,0.6602,0.7338,0.8142,0.8896,0.7924,1,0.9632,0.7372,-0.8208,-1,1,-1,-1,-1,-0.6,1,-1,-0.1958,-0.0104,0.031,0.3608,0.299,0.0722,0.1958,0.2578,0.1546,0.0722,0.5258,0.4432,0.402,0.4226,0.1546,0.1134,0.6288,0.732,0.835,0.732,0.9794,1,0.2164,0.0104,0.134,-0.0722,0.0722,-0.0928,-0.3402,-0.0928,-0.1134,-0.299,'3'
-0.6228,0.1124,0.12,0.3752,0.322,-0.2266,-0.2228,-0.4704,-0.4858,-0.2266,-0.1924,-0.0972,-0.0972,0.12,0.158,0.4438,0.6152,0.901,1,0.6686,0.5886,0.798,0.8934,0.878,0.9276,0.6496,0.581,0.4362,0.5848,0.5696,0.8552,0.8172,-0.6864,-0.0496,-0.056,0.264,0.2352,-0.2288,-0.2704,-0.5456,-0.5552,-0.3664,-0.3824,-0.28,-0.2992,-0.1904,-0.1968,0.1776,0.1776,0.6032,0.6256,0.8048,0.8304,0.5968,0.6288,0.9136,0.9712,0.7408,0.7984,0.6352,0.696,0.824,0.888,1,-0.6384,-0.048,-0.0714,0.2868,0.2172,-0.549,-0.6054,-0.4926,-0.6286,-0.4096,-0.5224,-0.3532,-0.413,-0.1908,-0.2238,-0.0382,0.0514,0.2404,0.6218,0.8308,0.7744,0.7346,0.5888,0.7412,0.8474,1,0.8906,0.8208,0.6782,0.7578,0.8342,0.9602,-0.6858,-0.2642,0.2358,0.3678,-0.0178,-0.4286,-0.3678,-0.4036,-0.5786,-0.55,-0.5286,-0.5286,-0.425,-0.4322,-0.3,-0.2322,-0.0322,0.0536,0.375,0.7036,0.95,0.8786,0.6108,0.7178,0.8072,1,0.9858,0.85,0.7036,0.7,0.8358,0.9714,-0.6202,0.1488,0.7666,0.6704,-0.0892,-0.5286,-0.6018,-0.5836,-0.6796,-0.7438,-0.7986,-0.6796,-0.666,-0.6202,-0.4508,-0.4554,-0.3226,-0.039,0.2036,0.6248,0.849,0.9406,0.7528,0.7482,0.7894,0.9314,1,0.9406,0.7848,0.4874,0.7758,0.913,-0.5526,0.4342,1,0.6842,-0.2106,-0.5,-0.0526,-0.0526,-0.5592,-0.7172,-0.5986,-0.671,-0.579,-0.5856,-0.829,-0.6644,-0.5132,-0.5132,-0.3882,0.3356,0.5264,0.6316,0.6118,0.5922,0.5394,0.7236,0.7828,0.6052,0.3356,0.0856,0.3158,0.25,-0.5446,0.0584,0.7416,0.6924,0.0708,-0.4154,0.0154,0.0338,0.2738,0.0462,-0.4584,-0.76,-0.7292,-0.7046,-0.6924,-0.4216,-0.28,-0.3416,-0.2676,-0.1816,0.4216,0.9692,1,0.4584,0.397,0.5754,0.3846,0.12,0.12,0.0154,0.1384,0.2616,-0.926,0.6296,0.8518,0.7038,0.037,-0.037,-0.1112,-0.037,0.1112,-0.6296,-0.7038,-0.1112,-0.2592,0.037,-0.037,0.5556,0.5556,0.7778,0.6296,0.7038,0.7038,0.926,1,0.6296,0.1112,0.4074,0.3334,0.3334,0.4074,0.4074,0.5556,0.6296,-0.6666,0.0834,0.2084,0.375,0.375,-0.1666,-0.3334,-0.5,-0.4584,-0.125,-0.0416,-0.125,0,0.0834,0.2916,0.2916,0.75,0.8334,0.9166,0.625,0.7084,0.4584,1,0.9584,0.7916,0.6666,0.5834,0.5,0.625,0.5834,0.8334,0.8334,-0.5428,0.2858,0.7142,0.4858,-0.3142,-0.6286,-0.4,-0.4858,-0.7142,-0.6858,-0.4572,-0.3714,-0.4286,-0.5428,-0.7142,-0.4286,-0.2,-0.0858,-0.0286,0.6286,0.8858,0.9142,0.6858,0.7428,0.7428,0.9142,1,0.8286,0.8,0.2572,0.7142,0.7714,-0.9144,-0.9022,-0.9226,-0.9104,-0.9104,-0.894,-0.9064,-0.9308,-0.9186,-0.9308,-0.8982,0.5112,0.5194,0.5152,0.5152,0.3768,0.3442,0.8738,0.6416,0.0386,-0.0632,-0.3686,-0.7638,-0.8818,-0.8778,-0.9104,-1,-1,-1,-1,-1,-1,-1,-0.7702,-0.6772,-0.6254,-0.5024,-0.5058,-0.4936,-0.6452,-0.778,-0.8044,-0.6034,-0.6484,-0.3604,0.4116,0.4336,0.828,0.5642,0.3328,-0.173,-0.578,-0.8182,-0.7934,-0.875,-0.9388,-0.9482,-0.9608,-0.9708,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.76,-0.1,0.3142,0.22,0.225,0.405,0.5624,0.1624,-0.4476,-0.795,-0.7926,-0.665,-0.53,-0.5868,-0.6468,-0.88,-1,-1,-1,-1,-1,-1,-1,-0.1142,-0.4858,-0.6572,-0.8,-0.8858,-0.6572,-0.3428,-0.6,-0.4,-0.4,1,1,1,-0.7142,-0.6286,-0.8286,-0.4572,0.1142,1,0.6286,-0.6,0.2,-0.7142,-0.8286,-0.6858,-0.7428,-1,-1,-1,-1,-1,-1,-1,0.218,0.2466,0.2778,0.31,0.3248,0.345,0.3734,0.3744,0.3354,0.2876,0.3496,0.3584,0.3826,0.4418,0.4604,0.5224,0.5922,0.6676,0.7924,0.7876,-0.6666,-0.1176,-0.6662,-0.7538,-0.394,0.065,0.4022,0.125,-0.6342,-0.6528,-0.4168,-0.248,-0.2702,-0.2498,-0.2368,-0.1104,-0.0288,-0.09,-0.0158,0.0566,-0.0064,-0.038,0.0344,0.1142,0.3018,0.5878,0.571,0.6694,0.7976,0.8682,0.8738,0.9034,1,0.9572,0.857,0.7772,0.8552,0.7158,0.6898,0.4504,-0.8386,-0.8136,-0.601,-0.5046,-0.3742,-0.3106,-0.2344,-0.0606,0.177,0.0388,0.0932,0.0668,0.0528,0.0854,0.1086,0.1894,0.3664,0.5388,0.486,0.5326,0.5684,0.7204,0.8106,0.7686,0.795,0.6692,0.8556,0.8976,0.9348,0.795,1,0.7344,-0.7,-0.78,-0.6616,-0.4234,-0.435,-0.3216,-0.27,-0.1416,0.1516,0.0234,-0.03,0.18,0.1866,0.1334,0.2616,0.3234,0.5066,0.7334,0.5316,0.6466,0.8966,1,0.905,0.9234,0.835,0.7766,0.7334,0.7466,0.735,0.6784,0.7666,0.6266,-0.9592,-1,1,-1,-1,-1,-1,1,-1,-0.1818,0.2182,0.291,0.2364,0.2182,0.4182,0.4182,0.3636,0.2546,0.2182,0.8546,0.8182,0.4364,0.5272,0.4182,0.4,0.4,0.6546,0.5636,1,0.9636,0.9818,0.6182,0.4546,0.2364,0.5818,0.3636,0.3818,0.091,-0.0728,0.0728,-0.2728,'3'
-0.376,0.2008,0.2606,0.47,0.2308,-0.5982,-0.4188,-0.376,-0.4444,-0.5982,-0.3932,-0.4958,-0.4316,-0.5214,-0.4316,-0.188,-0.1112,0.3804,0.4402,0.5556,0.4872,0.282,0.4018,0.5642,0.8718,1,0.7094,0.5982,0.4914,0.4616,0.6666,0.594,-0.4614,-0.047,0.4312,0.5706,0.2204,-0.322,-0.066,-0.1488,-0.3522,-0.3596,-0.273,-0.3182,-0.307,-0.2354,-0.2052,-0.0546,0.0772,0.16,0.6234,0.7402,0.8342,0.6572,0.5066,0.612,0.7062,1,0.9736,0.8418,0.6498,0.6572,0.759,0.8116,-0.4734,-0.0822,0.4186,0.5174,0.0712,-0.192,-0.181,-0.3418,-0.4698,-0.4296,-0.4332,-0.404,-0.4552,-0.3418,-0.3016,-0.287,-0.0202,0.0018,0.1518,0.7038,0.7148,0.7074,0.6234,0.5246,0.7148,0.7624,1,0.9378,0.7624,0.6928,0.777,0.9122,-0.537,-0.1984,0.502,0.5526,-0.0234,-0.179,-0.4202,-0.5564,-0.572,-0.5954,-0.5252,-0.5292,-0.533,-0.5642,-0.3852,-0.3152,-0.284,-0.1012,0.214,0.4902,0.7548,0.8288,0.6498,0.5486,0.5876,0.8366,0.9534,1,0.9456,0.821,0.8716,0.8754,-0.5166,-0.0074,0.6162,0.5794,-0.1218,-0.465,-0.6974,-0.6606,-0.62,-0.6938,-0.7896,-0.6458,-0.7232,-0.6568,-0.4428,-0.406,-0.3542,-0.214,0.0848,0.3506,0.6346,0.8376,0.738,0.4576,0.4612,0.6938,0.8044,1,0.9226,0.7454,0.7602,0.8302,-0.5578,0.136,0.639,0.5212,-0.359,-0.8378,-0.5212,-0.5578,-0.8336,-0.781,-0.716,-0.6754,-0.6064,-0.6268,-0.5984,-0.5132,-0.3956,-0.1926,-0.071,0.1724,0.7566,0.8094,0.8378,0.5456,0.5212,0.6796,0.9432,0.996,1,0.8702,0.8904,0.9188,-0.4624,0.1446,0.8786,0.7456,-0.6936,-0.867,-0.6012,-0.6358,-0.8612,-0.6936,-0.6706,-0.7688,-0.5318,-0.763,-0.5896,-0.4624,-0.4104,-0.2832,-0.2138,-0.0346,0.5028,0.815,1,0.6416,0.5434,0.7284,0.7976,0.8208,0.9076,0.6128,0.607,0.555,-0.3,0.3,0.1,0.35,0.05,-0.55,-0.65,-0.45,-0.35,-0.3,-0.5,-0.6,-0.55,-0.55,-0.4,-0.15,-0.15,0.65,0.65,0.45,0.4,0.4,0.65,0.85,0.6,1,0.65,0.55,0.65,0.65,0.65,0.55,-0.1482,0.3334,0.2222,0.5186,0.3334,-0.4814,-0.2222,-0.1852,-0.3704,-0.5556,-0.1112,-0.074,-0.2592,-0.1482,-0.1112,-0.2592,0.037,0.4444,0.5186,0.2222,0.2592,0.3704,0.2592,0.6666,0.7408,1,0.7778,0.6666,0.5926,0.6296,0.7778,0.7408,-0.3774,0,0.434,0.5284,0.0566,-0.0944,-0.0754,-0.2452,-0.2264,-0.283,-0.2642,-0.3018,-0.3584,-0.2076,-0.2452,-0.2452,0.0566,0.1132,0.2452,0.7358,0.7548,0.7924,0.6792,0.5284,0.7736,0.8302,1,0.9622,0.7548,0.7736,0.849,0.9434,-1,-1,-1,-1,-1,-1,-0.9578,-0.9296,-0.955,-0.707,-0.3296,0.2788,0.7184,0.9014,0.8902,0.9268,0.786,0.7464,0.8816,0.4536,0.0028,-0.3352,-0.7464,-0.907,-0.9014,-0.938,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9762,-0.9698,-0.9078,-0.5516,-0.4494,-0.322,0.0738,0.6898,0.6114,0.9338,0.8164,0.4386,0.2242,0.0046,-0.3358,-0.723,-0.8488,-0.8316,-0.9014,-0.9424,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.7668,0.67,0.3132,-0.1172,-0.1516,0.0028,0.1684,0.2456,0.1884,-0.143,-0.3544,-0.3976,-0.5276,-0.9,-0.11,0.18,-0.3668,-0.84,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2858,-0.2572,1,1,0.1714,0.5142,0.3142,-0.4858,-0.3428,-0.2572,-1,-1,-1,-0.7714,1,1,0.4858,0,1,0.4286,-1,-1,-1,-1,-1,-1,-1,-0.1008,-0.1008,-0.0332,0.0036,0.0594,0.1432,0.2252,0.2922,0.3046,0.0566,0.8704,0.8704,0.876,0.8944,0.9156,0.929,0.9708,0.9928,1,1,-0.6,-0.1764,-0.4452,-0.4084,-0.3594,-0.1896,0.0226,1,-0.7554,-0.2978,-0.1276,-0.234,-0.1276,-0.0958,-0.0744,0.0638,0.0958,0.1808,0.032,0.3618,0.3298,0.4468,0.5532,0.6382,0.766,0.9148,0.766,0.532,0.4148,0.5106,0.649,0.6382,0.6276,0.7766,0.8936,0.9042,1,0.7978,0.4468,0.149,-0.4036,-0.2568,-0.4404,-0.5872,-0.734,-0.5138,-0.5412,-0.6238,-0.3028,-0.367,-0.2294,0.1652,0.3486,0.0918,0.1468,0.4862,0.688,0.688,0.6238,0.523,0.7798,0.6238,0.6056,0.5412,0.6422,0.688,0.899,0.9266,1,0.5504,0.4312,0.2752,0.0784,0.1982,0.06,-0.4746,-0.5208,-0.3364,-0.3272,-0.4286,0.318,0.5116,0.106,0.659,1,0.6314,0.364,0.742,0.8156,0.9354,0.7328,0.8434,0.6682,0.8802,0.8618,0.7972,0.7328,0.8064,0.7972,0.8526,0.7512,0.576,0.5208,0.2626,-0.6228,-1,-1,1,0,-1,-1,-0.5,-1,-0.5,-0.2206,-0.5736,-0.4412,-0.1764,-0.1176,-0.2352,-0.103,-0.1176,-0.1618,0.3676,0.2794,0.7794,0.8236,0.853,0.8382,0.8382,0.8382,0.6618,0.5,1,0.7942,0.5882,0.5,0.4264,0.4412,0.2206,0.1176,0.4118,0.397,0.3382,0.2352,'4'
-0.5128,0.0892,0.1496,0.5414,0.4204,-0.4204,-0.535,-0.3152,-0.4522,-0.2612,-0.344,-0.1784,-0.191,-0.0636,-0.0636,0.035,0.2898,0.3726,0.7898,0.8376,0.6816,0.7038,0.6402,0.6114,1,0.965,0.8504,0.7866,0.7102,0.6146,0.8408,0.7324,-0.6038,0.0016,0.1046,0.533,0.4364,-0.3624,-0.4654,-0.475,-0.343,-0.1336,-0.3334,-0.2302,-0.2432,-0.0982,-0.05,0.079,0.1658,0.2658,0.6714,0.7552,0.9098,0.9838,0.678,0.7134,0.9678,0.9904,0.9936,1,0.8228,0.7972,0.9516,0.9162,-0.6672,-0.1532,0.0656,0.3868,0.2672,-0.4948,-0.6468,-0.597,-0.3168,-0.1884,-0.346,-0.2614,-0.2846,-0.235,-0.0424,-0.0278,0.1182,0.1212,0.4218,0.5766,0.9824,0.9182,0.638,0.5592,0.7986,0.8102,1,0.8716,0.8132,0.6934,0.8248,0.854,-0.6464,-0.191,0.2898,0.4746,0.2292,-0.3026,-0.4904,-0.4682,-0.3694,-0.3886,-0.2708,-0.4332,-0.344,-0.2038,-0.121,-0.0542,-0.07,0.0096,0.3026,0.6496,0.8152,0.9554,0.9268,0.7708,0.8184,0.9778,1,0.9682,0.8758,0.809,0.7898,0.9012,-0.6474,-0.1828,0.608,0.6474,-0.051,-0.2454,-0.5584,-0.5454,-0.5024,-0.4332,-0.608,-0.5256,-0.4892,-0.3938,-0.3114,-0.3344,-0.2388,-0.084,0.1532,0.4266,0.7726,1,0.9044,0.608,0.7232,0.8814,0.977,0.8714,0.8056,0.6408,0.7166,0.7958,-0.6632,0.1156,0.5204,0.3742,-0.4524,-0.5544,-0.3334,-0.4286,-0.7858,-0.6972,-0.619,-0.6224,-0.6156,-0.483,-0.4116,-0.3334,-0.3164,-0.1462,0.0544,0.347,0.7244,0.983,0.9592,0.7756,0.7756,0.8368,1,0.949,0.864,0.721,0.7448,0.8368,-0.477,0.1842,0.7574,0.6318,-0.385,-0.5816,-0.3096,-0.5146,-0.6528,-0.6402,-0.6652,-0.6988,-0.6276,-0.636,-0.544,-0.3556,-0.2008,-0.1842,-0.0418,0.2426,0.657,1,0.9748,0.8536,0.954,0.8912,0.8786,0.5816,0.5062,0.3766,0.4854,0.5356,-0.48,0.12,0.24,0.48,0.4,-0.32,-0.52,-0.28,-0.28,-0.16,-0.24,-0.12,-0.04,0.08,0.04,0.16,0.44,0.48,0.92,0.92,0.64,0.6,0.68,0.68,1,0.92,0.84,0.76,0.72,0.6,0.8,0.72,-0.4716,0.0944,0.2452,0.5094,0.3962,-0.3962,-0.3584,-0.2452,-0.3584,-0.1698,-0.2452,-0.0944,-0.1698,-0.0566,-0.0566,0.0188,0.3208,0.3962,0.8114,0.849,0.6604,0.6226,0.6604,0.585,1,0.9622,0.8868,0.6604,0.6982,0.5094,0.7736,0.7358,-0.6744,0.093,0.5814,0.4652,-0.2558,-0.7674,-0.372,-0.3954,-0.814,-0.7442,-0.7674,-0.7442,-0.7442,-0.4418,-0.3256,-0.2558,-0.4652,-0.0466,0.0466,0.2094,0.814,0.9768,1,0.721,0.721,0.814,0.9302,0.9302,0.9302,0.6976,0.721,0.8372,-1,-1,-1,-1,-1,-1,-0.8642,-0.937,-0.8958,-0.6946,-0.246,0.2048,0.3648,0.2558,0.1564,0.1466,0.2122,0.4084,0.874,0.4012,-0.0934,-0.2896,-0.663,-0.869,-0.9272,-0.9176,-0.9248,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9594,-0.9754,-0.6914,-0.4284,-0.5098,-0.2152,0.1264,0.445,0.7938,0.854,0.7256,0.3844,0.2048,-0.018,-0.274,-0.7506,-0.8856,-0.9126,-0.9434,-0.9478,-0.9498,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9134,-0.9534,-0.27,1,0.33,-0.1626,0.0974,0.36,0.51,0.65,0.6974,0.4644,0.0622,-0.0446,-0.0068,-0.6268,-0.2334,0.0566,-0.2068,-0.39,-0.2934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6858,1,1,1,1,0.6572,-0.7428,-0.9142,-0.8572,-0.8572,-0.8858,-0.8572,-0.9714,-0.8,1,1,-0.4858,-0.4858,-0.2572,-0.6,-0.8858,-1,-1,-1,-1,-1,-1,0.2206,0.2364,0.228,0.2436,0.233,0.2402,0.258,0.2508,0.2458,0.1866,0.8034,0.8378,0.8676,0.8756,0.8908,0.91,0.9092,0.9362,0.9828,1,-0.7334,-0.0236,-0.5204,-0.3748,-0.2514,-0.1154,-0.0096,1,-0.9064,-0.5404,-0.3618,-0.2,-0.149,-0.1574,-0.217,-0.2,-0.0468,0.166,0.1064,0.4298,0.651,0.3702,0.0724,0.4298,0.4128,0.6,0.6426,0.634,0.7022,0.932,0.9914,0.9148,0.8724,0.8554,0.8894,1,0.8212,0.7958,0.668,0.3446,-0.4958,-0.3194,-0.4706,-0.5882,-0.6638,-0.6554,-0.5798,-0.4286,-0.3614,0.1176,-0.0924,0.1932,0.5462,0.1344,-0.0924,0.4454,0.689,0.7226,0.731,0.5294,0.7732,0.8656,0.9412,1,1,0.5546,0.5546,0.6218,0.6722,0.5294,0.5546,0.5294,-0.0678,0.2908,0.3386,-0.498,-0.506,-0.4342,-0.2192,-0.1634,0.275,0.6892,0.522,0.5776,1,0.7768,0.4662,0.5776,0.769,0.9204,0.8008,0.5458,0.6016,0.8406,0.7052,0.729,0.8088,0.737,0.5618,0.6254,0.4662,0.3944,0.6096,0.275,0.44,-1,-1,1,-0.2,-1,-0.8,-0.4666,-1,-0.3984,-0.0978,-0.2782,-0.1428,-0.1428,-0.233,-0.203,-0.188,0.173,0.5188,0.9098,0.7444,0.7142,0.7744,0.4736,0.4736,0.7444,1,0.8796,0.8196,0.7142,0.4888,0.5338,0.3984,0.4586,0.4136,0.1278,-0.0828,0.1128,0.0376,-0.1428,-0.233,'4'
-0.581,-0.041,-0.077,0.2406,0.1162,-0.4042,-0.3224,-0.2536,-0.5122,-0.581,-0.5516,-0.5058,-0.5482,-0.5582,-0.3486,-0.3682,-0.2308,-0.126,0.1914,0.4566,0.6334,0.6858,0.6104,0.4042,0.4828,0.5876,0.7152,0.8658,0.9476,0.8364,0.892,1,-0.4992,-0.0172,0.0266,0.2676,0.108,-0.5336,-0.4084,-0.327,-0.5086,-0.4774,-0.4554,-0.4774,-0.3522,-0.4242,-0.3146,-0.2864,-0.1456,-0.0172,0.0798,0.4774,0.5242,0.7966,0.806,0.4586,0.4054,0.64,0.734,0.9468,0.8842,0.9594,0.9406,1,-0.5166,-0.1066,0.1764,0.3196,0.0302,-0.3926,-0.2242,-0.2718,-0.4786,-0.5802,-0.4562,-0.488,-0.4372,-0.4182,-0.4722,-0.2496,-0.221,-0.132,0.1828,0.38,0.682,0.7202,0.7266,0.4436,0.4722,0.6058,0.7678,0.9778,1,0.981,0.9618,0.9682,-0.5244,-0.1876,0.3442,0.415,-0.0546,-0.2054,-0.3116,-0.4624,-0.6868,-0.554,-0.554,-0.5066,-0.4948,-0.4948,-0.4062,-0.3826,-0.167,-0.1344,0.0576,0.4092,0.6012,0.8434,0.7872,0.4268,0.4358,0.5244,0.7312,0.8582,1,0.9172,0.9202,0.9676,-0.5572,0.0964,0.5678,0.45,-0.2464,-0.7,-0.675,-0.7286,-0.7178,-0.7142,-0.8108,-0.6858,-0.6892,-0.625,-0.5928,-0.4892,-0.3822,-0.2608,-0.0928,0.1178,0.5892,0.85,0.8572,0.4,0.3786,0.425,0.5964,0.8536,1,0.9536,0.9036,0.95,-0.556,0.14,0.46,0.208,-0.508,-0.58,-0.74,-0.928,-0.748,-0.716,-0.58,-0.684,-0.596,-0.62,-0.556,-0.596,-0.392,-0.42,-0.172,0.116,0.476,1,0.916,0.428,0.364,0.392,0.528,0.86,0.98,0.988,0.904,0.94,-0.5122,-0.1598,0.2574,0.225,-0.0786,-0.664,-0.42,-0.4092,-0.4634,-0.4038,-0.6694,-0.6532,-0.729,-0.6802,-0.5448,-0.561,-0.7506,-0.6802,-0.393,-0.3062,-0.046,0.832,1,0.6314,0.328,0.393,0.458,0.6586,0.7616,0.4688,0.5122,0.4308,-0.5294,0.0196,0.2156,0.3334,0.098,-0.1372,-0.0588,-0.1764,-0.4118,-0.5294,-0.3726,-0.451,-0.4902,-0.4118,-0.2942,-0.098,-0.1372,0.098,0.255,0.7648,0.9216,0.9216,0.647,0.4902,0.4902,0.6078,0.8432,0.8824,0.9608,0.8824,1,0.9216,-0.3928,0.1428,0.1072,0.3928,0.3214,-0.0358,-0.1072,-0.0714,-0.1786,-0.4286,-0.4286,-0.3214,-0.2858,-0.2858,-0.1428,-0.1072,0,0.0714,0.4286,0.5,0.8928,0.8928,0.5714,0.5,0.6428,0.5,0.8928,0.7858,1,0.7858,0.9642,0.9286,-0.5578,-0.179,0.4736,0.4948,-0.0106,-0.2842,-0.5368,-0.621,-0.8316,-0.7684,-0.7894,-0.5578,-0.5158,-0.7474,-0.4948,-0.4736,-0.2422,-0.1578,-0.0526,0.3474,0.6632,0.8736,0.6842,0.5158,0.4736,0.5368,0.621,0.8316,1,1,0.8736,0.979,-1,-1,-1,-1,-1,-1,-1,-1,-0.9474,-0.9606,-0.6584,-0.0566,0.2484,0.4218,0.406,0.5532,0.7976,0.8554,0.1484,-0.251,-0.4454,-0.4902,-0.7346,-0.7818,-0.858,-0.8792,-0.9396,-0.9396,-0.9396,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9856,-0.986,-0.777,0.1294,0.8456,0.7524,0.851,0.6178,0.595,-0.1472,-0.3284,-0.6122,-0.7568,-0.883,-0.9402,-0.9458,-0.956,-0.9592,-0.9618,-0.9636,-0.9658,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.9534,-0.43,0.36,0.595,0.4824,0.4224,0.29,0.2624,-0.075,-0.105,-0.15,-0.475,-0.8426,-0.9234,-0.82,-0.8468,-0.6934,-0.8068,-0.7134,-0.64,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,1,1,1,-0.4572,-1,-0.9714,-1,-0.3428,-0.3142,-0.7142,-0.0572,0.5714,0.5714,-0.7142,-0.5714,-0.7714,-0.7428,-0.8858,-0.9428,-0.8572,-1,-1,-1,-1,0.5254,0.5254,0.4864,0.4786,0.4528,0.4226,0.3582,0.3468,0.4116,0.1446,1,1,1,1,1,1,1,1,1,1,-0.6134,-0.0824,-0.8544,-0.1248,-0.113,0.4772,0.9706,1,-0.402,0.299,0.299,0.0928,0.1752,-0.2578,-0.3608,-0.1134,0.0516,0.3814,0.7526,0.567,0.567,0.835,0.7732,0.732,0.8762,1,0.8762,0.6288,0.1134,-0.1546,-0.134,-0.0104,0.4226,0.6288,0.6702,0.6288,0.3196,0.2578,0.2578,-0.567,-0.1428,0.4026,0.3766,0.2468,0.091,0.039,-0.091,-0.065,0.4286,0.4286,1,0.8182,0.4806,0.948,0.948,1,0.8962,0.948,0.922,0.8182,0.5324,0.3246,0.2728,0.6624,0.922,0.922,0.974,0.7142,0.5584,0.4286,0.2208,0.013,-0.1328,0.062,0.0796,-0.1504,-0.416,-0.3452,-0.3806,-0.2212,-0.2036,0.2744,0.593,0.4336,0.3452,0.593,0.6814,0.6638,0.8408,1,0.9116,0.6992,0.2744,-0.0796,-0.115,0.1504,0.239,0.292,0.469,0.0088,-0.0442,-0.1858,-0.2212,-0.3628,0.5238,-1,-1,1,-1,-1,0.2,-0.8,-1,-0.4226,-0.3402,-0.1752,0.0516,0.299,0.3196,0.4432,0.8556,0.897,0.732,0.732,0.6702,0.0516,-0.0104,-0.299,0.2578,0.5258,0.6082,0.5876,0.7114,0.567,1,0.7114,0.6082,0.3196,-0.0928,0.4846,0.2164,0.0516,0.0722,-0.0516,-0.5052,'5'
-0.6816,-0.1492,-0.124,0.1888,0.062,-0.3352,-0.2732,-0.1408,-0.4226,-0.555,-0.6478,-0.569,-0.5126,-0.476,-0.4478,-0.4508,-0.2478,-0.1042,0.3098,0.5154,0.8226,0.7212,0.2226,0.1944,0.3916,0.4732,0.6112,0.8986,1,0.7774,0.8508,0.8508,-0.5914,-0.0646,-0.113,0.2312,0.1182,-0.3064,-0.2016,-0.0376,-0.2284,-0.449,-0.6236,-0.594,-0.4408,-0.3736,-0.3038,-0.2768,-0.129,-0.0968,0.3092,0.3924,0.8764,0.844,0.344,0.2554,0.5188,0.4892,0.7662,0.7984,1,0.8818,0.9006,0.8602,-0.5952,-0.1532,0.1026,0.2756,0.0758,-0.3236,0.052,0.0732,-0.1904,-0.281,-0.51,-0.566,-0.4354,-0.5392,-0.478,-0.3716,-0.2756,-0.1078,0.2224,0.4354,0.6884,0.7416,0.5286,0.4062,0.502,0.6166,0.7256,0.9654,1,0.819,0.8082,0.8696,-0.6362,-0.2948,0.3936,0.4724,-0.0466,-0.1904,-0.275,0.1198,0.1452,-0.2722,-0.3936,-0.5176,-0.6982,-0.5966,-0.3654,-0.3992,-0.3992,-0.151,0.1198,0.4442,0.6502,0.7292,0.6022,0.4414,0.4668,0.543,0.7404,0.9662,1,0.8166,0.7828,0.8534,-0.5856,-0.0986,0.4956,0.487,-0.2202,-0.5362,0.0086,0.2,0.0028,-0.1652,-0.6464,-0.7624,-0.6724,-0.742,-0.7072,-0.5218,-0.4376,-0.2522,0.055,0.3536,0.6144,0.7188,0.6638,0.4202,0.429,0.516,0.6638,0.9218,1,0.8522,0.8058,0.7826,-0.6186,-0.0046,0.4728,0.3922,-0.352,-0.4884,0.141,0.1628,-0.228,-0.4046,-0.6806,-0.7148,-0.5844,-0.5968,-0.8016,-0.5968,-0.3644,-0.2,-0.0108,0.352,0.6558,0.8542,0.7458,0.476,0.4976,0.5658,0.7272,0.9504,1,0.8822,0.845,0.8698,-0.501,0.0594,0.726,0.685,-0.1042,-0.366,0.0634,0.1698,0.1248,-0.4846,-0.7382,-0.6892,-0.6482,-0.82,-0.6688,-0.7586,-0.6156,-0.4888,-0.0838,0.2638,0.5214,0.8078,0.6564,0.407,0.456,0.4642,0.6114,0.8528,1,0.7218,0.6932,0.6196,-0.628,-0.1162,-0.2558,0.3024,0.1162,-0.2094,-0.3954,-0.3024,-0.8604,-0.628,-0.9534,-0.814,-0.5814,-0.5348,-0.6744,-0.5814,-0.2558,-0.1162,0.2558,0.3954,0.721,0.5348,0.3024,0.2094,0.3488,0.5348,0.628,0.9534,1,0.8604,0.907,0.7674,-0.3928,0.0358,0.0714,0.3572,0.2858,-0.1072,-0.1072,0.0358,-0.25,-0.4286,-0.2858,-0.25,-0.2858,-0.2858,-0.3214,-0.25,-0.2142,0.0714,0.4642,0.6072,0.8572,0.75,0.4286,0.3928,0.4642,0.5714,0.6786,0.9286,1,0.8572,0.8928,0.8572,-0.6036,-0.1532,-0.1172,0.1892,0.063,-0.3694,-0.1352,-0.009,-0.2432,-0.3514,-0.6396,-0.6216,-0.3694,-0.3694,-0.3154,-0.3154,-0.2432,-0.1172,0.2252,0.4234,0.7658,0.6756,0.4594,0.4054,0.4954,0.5676,0.6936,0.928,1,0.7478,0.7838,0.8558,-1,-1,-1,-1,-1,-1,-1,-0.9576,-0.9364,-0.9442,-0.5014,-0.2202,-0.0584,0.016,0.183,0.3846,0.7268,0.7798,0.9098,0.4774,0.1246,-0.1644,-0.7002,-0.8542,-0.9178,-0.9178,-0.9178,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9818,-0.9764,-0.976,-0.763,0.0724,0.7648,0.6554,0.6776,0.725,0.4972,0.2976,0.167,0.1218,-0.085,-0.7154,-0.9006,-0.9318,-0.9468,-0.9448,-0.9496,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.8934,-0.9,-0.35,0.56,0.6132,0.4888,0.4866,0.411,0.291,0.1488,-0.1712,-0.3246,-0.4312,-0.8,-0.6134,-0.3868,-0.3,-0.3,-0.2734,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6,-0.9714,1,1,1,0.0572,-1,-0.8572,-1,-1,-0.9428,-1,-1,1,1,-0.6,-0.7714,-0.7428,-0.8286,-0.7428,-1,-1,-1,-1,-1,-1,0.7158,0.7118,0.6976,0.6962,0.6884,0.6874,0.6786,0.692,0.731,0.6564,0.9032,0.897,0.8978,0.9178,0.9236,0.9116,0.9302,0.9488,0.9628,0.9688,-0.6534,0.0352,-0.7414,-0.489,-0.1848,0.7048,1,1,-0.1666,0.2084,0.25,0.2084,0.1666,-0.2916,-0.125,-0.2916,0.0834,0.3334,0.4584,0.5,0.25,0.7916,0.9166,0.875,0.625,1,1,1,0.8334,0.2916,0.0416,0.125,0.25,0.375,0.375,0.2084,-0.125,0.1666,-0.3334,-0.375,0.1538,0.4616,0.3462,0.327,0.077,-0.0962,-0.0384,-0.077,-0.0384,0.2692,0.577,0.4038,0.3462,0.8076,0.7308,0.6538,0.8846,1,0.9808,0.923,0.8462,0.2884,0.2116,0.2692,0.2308,0.6538,0.5576,0.3462,-0.0384,-0.0384,-0.0384,-0.2884,0.0684,0.4794,0.452,0.2876,0.2328,-0.1506,-0.0548,-0.137,0.041,0.4246,0.5206,0.5068,0.4794,0.5068,0.726,0.6712,0.7534,1,1,0.7672,0.6028,0.2054,0.137,0.2054,0.178,0.4658,0.3288,0.2876,0,0.0136,0.041,-0.0274,-0.4204,-1,-1,1,-0.8,-1,-0.8,-0.8334,-1,-0.208,0.1544,-0.0202,0.114,0.0336,0.2348,0.1276,0.1678,0.1946,0.6644,0.7182,0.4228,0.6242,0.5974,0.4362,0.2886,0.6644,0.7718,0.8524,0.7986,1,0.7718,0.49,0.463,0.463,0.3288,0.5974,0.4228,0.0604,-0.114,0.047,-0.0336,'5'
-0.7264,-0.4188,-0.0542,0.077,0.5384,0.5784,0.2478,0.1396,0.1168,0.0998,0.1054,0.1966,0.1624,0.2706,0.5726,0.6468,1,0.9146,0.8918,0.7094,0.755,0.9658,0.9772,0.9772,0.8348,0.8006,0.641,0.641,0.7778,0.8062,0.9202,0.8974,-0.6928,-0.3208,-0.0512,0.062,0.5688,0.5688,0.3962,0.3208,0.213,0.1266,0.1106,0.0782,0.132,0.256,0.4124,0.5688,0.8652,1,0.6874,0.6118,0.5364,0.6388,0.7736,0.6766,0.6334,0.5472,0.461,0.4716,0.504,0.461,0.558,0.4716,-0.6276,-0.2766,0.0638,0.1436,0.5,0.484,0.5904,0.4042,0.3458,0.2554,0.1914,0.2926,0.234,0.3138,0.6914,0.7606,0.9628,0.867,0.8458,0.7394,0.7022,0.8192,0.9468,1,0.6224,0.6118,0.6648,0.5426,0.6224,0.7128,0.6968,0.782,-0.6566,-0.3536,0.0102,0.0656,0.3484,0.5758,0.7272,0.495,0.1868,0.3384,0.207,0.303,0.3636,0.4748,0.692,0.909,0.9748,0.7626,0.697,0.707,0.798,0.8232,1,0.9242,0.7272,0.6314,0.6516,0.6768,0.6516,0.7526,0.9494,0.9696,-0.7254,-0.4796,-0.1228,-0.1084,0.0796,0.7446,0.8168,0.5036,0.3784,0.4844,0.4168,0.3928,0.4796,0.7108,0.7398,1,0.8698,0.6964,0.653,0.6868,0.7832,0.9422,0.9374,0.7254,0.5904,0.6144,0.624,0.5856,0.6626,0.8072,0.8266,0.9036,-0.7438,-0.4824,-0.0604,-0.0552,0.1408,0.6432,0.6582,0.618,0.4372,0.392,0.5026,0.5226,0.6984,0.8492,0.9698,1,0.6784,0.613,0.6382,0.7688,0.8994,0.9498,0.8944,0.6884,0.5578,0.593,0.593,0.618,0.7186,0.814,0.9146,0.9296,-0.6364,-0.405,0.0414,-0.0028,0.3334,0.675,0.8842,0.9228,0.5812,0.482,0.5372,0.686,0.8954,1,0.9504,0.7576,0.664,0.5042,0.46,0.664,0.7742,0.697,0.5868,0.4656,0.2232,0.3608,0.3112,0.2342,0.3058,0.3388,0.449,0.4932,-0.7446,-0.532,-0.1914,0.1914,0.4042,0.4468,0.3192,0.1064,0.1064,-0.0212,0.0212,0.149,0.149,0.234,0.532,0.7872,1,1,0.9574,0.7872,0.7022,0.9148,1,1,0.8298,0.7022,0.7022,0.617,0.6596,0.8298,0.8298,0.8298,-0.7778,-0.4074,-0.1112,0.1852,0.5926,0.5556,0.2222,0.1482,0.037,0.037,0.074,0.1482,0.2222,0.3334,0.5556,0.7408,0.8888,0.8148,0.926,0.8148,0.7778,0.926,0.8888,0.963,0.8888,0.8148,0.7038,0.7408,0.8148,0.8888,0.963,1,-0.5752,-0.2566,0.0796,0.1858,0.469,0.4336,0.593,0.4514,0.3452,0.292,0.2566,0.3098,0.239,0.3806,0.6992,0.7876,0.9292,0.823,0.8408,0.77,0.7522,0.8584,0.9292,1,0.6992,0.646,0.7168,0.646,0.646,0.7876,0.823,0.8762,-1,-1,-1,-1,-1,-1,-1,-1,-0.9532,-0.9322,-0.897,0.0246,0.4854,0.3942,0.2842,0.3474,0.49,0.752,0.9486,0.5252,-0.034,-0.2422,-0.6702,-0.8784,-0.876,-0.897,-0.8058,-0.8714,-0.9462,-0.9416,-0.9392,-0.9088,-0.8878,-1,-1,-1,-1,-1,-1,-1,-1,-0.9904,-0.989,-0.9756,-0.3394,0.1278,-0.2616,-0.2646,0.0324,0.3816,0.7324,0.961,0.75,0.0758,-0.5674,-0.7864,-0.9502,-0.9402,-0.9596,-0.9562,-0.9574,-0.9578,-0.936,-0.908,-0.9442,-0.9712,-1,-1,-1,-1,-1,-1,-1,-1,-0.9628,-0.9734,-0.8334,-0.265,-0.11,-0.265,-0.385,-0.11,-0.068,-0.32,-0.304,-0.2,-0.412,-0.484,-0.32,-0.0468,0.4466,0.3132,-0.24,0.65,1,0.5332,0.71,0.3,-0.1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2858,-0.2,1,1,1,-0.4572,-0.4,-0.0858,-0.3714,-0.5714,-0.6572,0.8858,1,1,1,1,-0.5714,-0.7142,-0.8858,-0.7428,-0.7142,0.3428,-0.4,1,1,1,1,1,1,1,1,1,1,1,1,0.3186,0.3186,0.3324,0.3368,0.3486,0.3168,0.2616,0.1922,0.183,-0.211,-0.6134,-0.5294,-0.977,-0.6566,-0.0746,0.1326,-0.2606,1,0.1406,0.2032,0.1876,0.8594,0.5312,0.0938,0.6406,0.5,1,0.5468,0.4688,0.3906,1,0.6718,0.6562,0.3906,0.5626,0.5468,0.25,0.5782,0.6094,0.1094,0.5626,0.4376,0.6406,0.2812,0.3282,0.4532,0.5156,0.0782,0.1094,-0.4218,0.0928,0.3814,0.2578,0.6082,0.7938,0.5052,0.6494,0.9588,0.6082,0.3196,0.5464,0.1752,0.299,0.5464,0.6702,0.0928,0.464,0.4226,0.464,0.5464,0.6702,0.3402,0.2784,0.5052,0.5258,0.3196,0.3196,0.5052,0.031,0.3402,0.1546,-0.6494,0.1286,0.5142,0.5142,0.5428,0.6714,0.4286,0.4858,0.7,0.9714,1,0.8142,0.8,0.8428,0.8714,0.8428,0.9286,0.7286,0.1858,0.9428,0.7428,0.9858,0.7428,0.6286,0.6142,0.6572,0.5714,0.9142,0.7428,0.5714,0.5858,0.6572,-0.1572,-0.995,1,-1,-1,-1,-1,-1,-1,-1,-0.612,-0.806,-0.7164,-0.209,-0.1792,-0.0746,-0.0746,-0.0896,0.0448,0.1642,-0.015,0.1044,0.3284,0.3134,0.2538,0.597,0.612,0.7014,0.4926,0.5224,0.5224,0.5374,0.8208,0.5224,0.403,0.7462,0.791,0.8358,0.7762,1,0.9552,0.4626,'6'
-0.7926,-0.4096,-0.1224,0.0532,0.4148,0.5054,0.351,0.2606,0.1756,0.149,0.2234,0.218,0.2446,0.3298,0.3936,0.7394,0.8724,1,0.867,0.7446,0.8032,0.8352,0.9734,0.851,0.6808,0.5372,0.5958,0.5,0.5266,0.468,0.4414,0.5852,-0.7298,-0.3886,-0.0854,0.0332,0.4028,0.4312,0.4454,0.3886,0.256,0.1658,0.2654,0.2086,0.218,0.3602,0.455,0.6304,0.9242,1,0.6824,0.5782,0.8056,0.7346,0.8246,0.6778,0.6588,0.455,0.4408,0.4598,0.3744,0.346,0.3412,0.4312,-0.7268,-0.4,-0.083,0.0196,0.3804,0.3658,0.561,0.4634,0.2098,0.283,0.3122,0.2682,0.2976,0.4536,0.6098,0.678,1,0.9658,0.561,0.6342,0.7414,0.7658,0.7902,0.6342,0.5708,0.4146,0.3024,0.3708,0.2586,0.2536,0.361,0.2732,-0.735,-0.415,-0.075,0,0.385,0.45,0.675,0.535,0.245,0.41,0.375,0.37,0.445,0.53,0.77,0.77,1,0.86,0.615,0.755,0.755,0.86,0.765,0.645,0.495,0.475,0.34,0.25,0.305,0.285,0.32,0.245,-0.7314,-0.449,-0.0092,0.0232,0.2686,0.7824,0.9074,0.6204,0.412,0.5788,0.537,0.5694,0.6898,0.8472,0.9584,1,0.9814,0.8056,0.7084,0.7824,0.963,0.8982,0.8102,0.6342,0.6204,0.4954,0.4166,0.4166,0.3936,0.3426,0.3982,0.3288,-0.69,-0.448,-0.0072,-0.0122,0.1816,0.7384,0.7482,0.7046,0.5594,0.5884,0.598,0.7142,0.845,0.9758,0.937,1,0.8498,0.787,0.7482,0.8692,0.9612,0.9806,0.8498,0.6658,0.5786,0.4576,0.4286,0.414,0.3656,0.385,0.3656,0.356,-0.699,-0.4678,-0.0914,-0.0806,0.215,0.5376,0.8818,0.9032,0.5592,0.699,0.6398,0.7204,1,0.9462,0.9892,0.742,0.656,0.6344,0.4516,0.7312,0.8226,0.8764,0.5752,0.3764,0.2956,0.2044,0.1022,-0.0268,0.0646,0.0914,0.1452,0.1076,-0.695,-0.2204,-0.1864,0.1864,0.1526,0.5254,0.4916,0.2882,0.2542,0.2542,0.1864,0.322,0.356,0.2882,0.356,0.7628,0.7966,0.9322,0.8984,0.7628,0.7628,0.9322,1,0.695,0.5594,0.5594,0.5932,0.2882,0.4576,0.356,0.4576,0.5254,-0.8546,-0.5636,-0.1636,-0.0182,0.4546,0.491,0.2728,0.2,0.1272,-0.0546,0.1636,0.091,0.1636,0.309,0.2364,0.6,0.8546,1,0.6728,0.6728,0.8182,0.7454,0.891,0.7454,0.6728,0.3454,0.5272,0.5272,0.5272,0.4546,0.309,0.5272,-0.731,-0.4118,-0.0924,0.0252,0.3782,0.395,0.4622,0.4118,0.2606,0.21,0.2436,0.21,0.2268,0.3782,0.5294,0.647,0.9328,1,0.6302,0.6134,0.7984,0.7142,0.832,0.6638,0.647,0.4454,0.4118,0.4118,0.311,0.3278,0.3614,0.395,-1,-1,-1,-1,-1,-1,-1,-1,-0.9356,-0.9524,-0.7984,0.3726,0.7984,0.5014,0.4874,0.5938,0.633,0.8964,0.8992,0.4874,-0.042,-0.224,-0.6526,-0.7956,-0.8992,-0.7592,-0.4314,-0.804,-0.8208,-0.8712,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9862,-0.9878,-0.7296,0.2096,0.7884,0.5258,0.3192,0.4216,0.5582,0.7198,0.9398,0.6642,0.3,-0.2498,-0.79,-0.9118,-0.9462,-0.9362,-0.9112,-0.9562,-0.9598,-0.9614,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.9734,-0.3768,-0.105,-0.145,-0.115,-0.184,-0.18,-0.192,-0.372,-0.444,-0.312,-0.324,-0.444,-0.3434,-0.05,0.15,0.3732,-0.7434,-0.7134,-0.5568,-0.8868,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9714,1,1,1,1,-0.1714,-0.2858,-0.8572,-0.9142,-0.8286,-0.8572,-0.5142,1,1,1,0.1142,-0.1714,-0.7142,-0.8,-0.9142,-1,-0.8286,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.1202,0.1202,0.1394,0.1614,0.144,0.1458,0.1008,0.011,-0.1632,-0.5944,-0.6666,-0.5058,-0.805,-0.2808,0.6816,0.7646,0.5358,1,-0.7472,-0.5172,0.0344,0.0804,-0.1724,-0.2184,-0.0804,0.4942,0.908,0.931,0.885,0.954,0.816,0.5862,0.5402,0.5632,0.5862,0.862,1,0.977,0.977,0.931,0.6092,0.2644,-0.0804,0.2184,0.4252,0.5172,0.3564,0.3794,0.4022,0.0574,-0.5162,-0.258,0.4194,0.3548,-0.4194,-0.613,-0.1612,0.0322,1,0.4838,0.8064,0.9032,0.1612,0.2258,0.129,0.2904,0.3548,0.4838,0.8388,0.8388,0.9354,0.7742,0.742,0.4194,-0.0646,0.2904,0.613,0.7742,0.3226,0.5162,0.9678,0.7742,-0.4418,-0.1628,0.1396,0.2558,0.0466,0.0232,0.2094,0.4652,0.8838,0.814,0.8838,0.9302,0.6512,0.5348,0.3256,0.3024,0.5116,0.4884,0.9534,1,0.5348,0.814,0.721,0.4652,-0.1396,0.372,0.279,0.5116,0.093,0.4652,0.5348,0.1162,0.8014,-1,-1,1,-1,-1,-0.4,-0.8,-1,-0.2616,-0.2462,-0.1846,-0.123,0.0924,-0.1538,-0.1076,0.3076,0.3692,0.3538,0.4,0.2154,0.2,-0.0308,0.2154,0.8,0.6616,0.7384,0.7538,0.7076,0.5692,0.4154,0.8924,0.8924,0.6616,0.8,0.3076,0.6154,0.7692,1,0.8616,0.2154,'6'
-0.4768,0.1784,0.3644,0.7066,0.5256,-0.2762,-0.247,-0.1246,-0.2078,-0.1198,-0.2714,-0.242,-0.022,-0.0856,0.0856,-0.0074,0.3202,0.5208,0.8092,0.7164,0.7996,0.604,0.6822,0.912,0.9658,0.9414,0.9414,0.9706,0.8974,0.912,0.9316,1,-0.5298,-0.0432,0.3238,0.5134,0.2866,-0.4886,-0.1588,-0.1546,-0.1752,-0.2742,-0.3526,-0.3608,-0.2082,-0.3856,-0.3114,-0.0598,-0.064,0.1628,0.5918,0.897,0.7444,0.6702,0.6742,0.732,1,0.9836,0.901,0.802,0.8268,0.6824,0.769,0.7938,-0.7066,-0.2892,0.2396,0.4008,0.0744,-0.7396,-0.2066,-0.2562,-0.3224,-0.438,-0.3264,-0.3348,-0.3058,-0.3058,-0.3636,-0.2232,-0.2024,-0.0372,0.467,0.5786,0.8636,0.8596,0.686,0.6322,0.8058,0.9214,1,0.81,0.7934,0.81,0.7852,0.9174,-0.7436,-0.3334,0.4498,0.5524,-0.0256,-0.4312,-0.2122,-0.3706,-0.5152,-0.4918,-0.4406,-0.5198,-0.3846,-0.3286,-0.4032,-0.3752,-0.1888,-0.1656,0.1794,0.5244,0.7342,0.8554,0.7856,0.6784,0.7948,0.916,0.9906,1,0.8648,0.8414,0.9068,0.986,-0.6464,-0.0326,0.4918,0.443,-0.3822,-0.4918,-0.5162,-0.5284,-0.7074,-0.6586,-0.504,-0.496,-0.4634,-0.4716,-0.3944,-0.2846,-0.244,-0.0934,0.1178,0.378,0.7682,0.8578,0.752,0.5082,0.63,0.7886,0.8944,0.9552,0.935,0.9106,0.9268,1,-0.6884,-0.0098,0.2662,0.1006,-0.649,-0.6646,-0.5582,-0.649,-0.6528,-0.6134,-0.5464,-0.5502,-0.5818,-0.5266,-0.3964,-0.3648,-0.3412,-0.1874,0.0178,0.3058,0.6884,0.8422,0.7634,0.5502,0.5148,0.6924,0.8146,0.9172,0.9408,0.8698,0.8856,1,-0.5456,0.201,0.53,0.2898,-0.1592,-0.389,-0.4152,-0.5926,-0.6136,-0.6032,-0.5248,-0.53,-0.4204,-0.4934,-0.3524,-0.3368,-0.4516,-0.3108,-0.2062,0.0704,0.4934,1,0.9268,0.4152,0.3942,0.3942,0.765,0.8382,0.9112,0.6084,0.4934,0.671,-0.4584,0.1666,0.2916,0.5416,0.4166,-0.25,-0.25,-0.25,-0.3334,-0.25,-0.2084,-0.1666,0,-0.125,0,-0.125,0.125,0.5416,0.6666,0.5834,0.625,0.3334,0.5834,0.8334,0.8334,0.5,0.25,0.7084,0.625,0.875,0.8334,1,-0.628,0.1162,0.3954,0.628,0.4418,-0.2094,-0.2094,-0.1162,-0.1162,-0.0232,-0.3024,-0.2558,-0.0232,-0.1628,-0.1162,0.1628,0.3488,0.1628,0.814,0.907,0.814,0.5814,0.628,0.814,0.7674,0.9534,0.907,0.9534,0.4884,0.6744,0.9534,1,-0.7234,-0.1064,0.468,0.4256,-0.4042,-0.4894,-0.5744,-0.5958,-0.6808,-0.6596,-0.532,-0.5744,-0.5958,-0.5532,-0.4894,-0.3404,-0.2978,-0.234,0.234,0.3192,0.8298,0.7872,0.8086,0.468,0.7234,0.766,0.8936,0.9574,1,0.8936,0.8936,0.9362,-1,-1,-1,-0.9152,-0.927,-0.9182,-0.8596,-0.8568,-0.8684,-0.5234,-0.1608,0.4182,0.7544,0.6578,0.2252,0.1754,0.1492,0.459,0.8274,0.3304,0.1286,-0.2544,-0.6726,-0.8246,-0.8684,-0.8948,-0.924,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9664,-0.9606,-0.2408,0.4774,1,1,1,0.2208,-0.1172,0.2072,0.2388,0.3674,0.2924,-0.0514,-0.0042,0.702,0.96,0.461,-0.6212,-0.8156,-0.8878,-0.93,-0.9414,-0.9536,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9268,-0.9,0.1,0.8166,0.7266,0.8732,0.7732,0.2766,-0.24,-0.3368,-0.3068,-0.1168,-0.15,-0.2834,-0.5136,-0.3408,-0.0894,-0.2008,-0.6922,-0.3322,-0.3122,-0.5456,-0.8656,-0.9322,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,0.0572,-0.6286,1,1,0.6858,-0.3714,-0.6572,-0.8858,-0.8572,-0.9142,-0.5142,-0.3428,-0.9428,1,1,-0.3142,0.1714,0.1428,-0.5142,-0.6572,-1,-1,-1,-1,-1,-1,0.357,0.357,0.3772,0.3868,0.3996,0.4176,0.425,0.4352,0.4848,0.2792,0.6314,0.6314,0.6424,0.6658,0.7008,0.7762,0.7966,0.871,0.9662,1,-0.64,-0.2942,0.055,-0.2116,-0.1286,0.0944,0.2602,1,-0.744,-0.6524,-0.586,-0.3902,-0.3144,-0.2828,-0.2228,-0.169,0.0268,0.0364,0.2354,0.3808,0.6492,1,0.9874,0.8958,0.8168,0.6146,0.5514,0.504,0.5198,0.6018,0.6176,0.6272,0.6492,0.7378,0.7978,0.7852,0.5198,0.425,0.3018,-0.068,-0.9794,-0.8528,-0.8026,-0.623,-0.5082,-0.461,-0.3196,-0.2578,-0.0368,0.0574,0.3078,0.5612,0.782,0.8232,0.9912,0.9764,0.788,0.8322,0.8204,0.7614,0.729,0.7526,0.782,0.8114,0.9352,0.997,1,0.8998,0.626,0.6348,0.5906,0.1192,-0.2576,-0.1026,-0.1786,-0.5418,-0.466,-0.4344,-0.3364,-0.128,0.308,0.3364,0.545,0.7188,0.959,0.8768,0.9748,1,0.9432,0.8736,0.7598,0.662,0.801,0.7062,0.7124,0.7124,0.7378,0.763,0.7756,0.6998,0.6334,0.526,0.4914,0.2006,0.481,-1,-1,1,0.2,-1,-0.6,0.2334,-1,-0.0152,0.091,0.0758,0.2878,0.3334,0.3484,0.0454,0.2272,0.0758,0.2272,0.8484,0.8636,0.7272,0.8484,1,1,0.9394,0.9848,0.5304,0.7576,0.7122,0.5152,0.6818,0.5454,0.3334,0.5152,0.3788,0.1666,0.1212,-0.0304,0.2576,0.0304,'7'
-0.5438,0.16,0.177,0.3518,0.3476,-0.1216,-0.113,-0.356,-0.3304,-0.3262,-0.241,-0.2366,-0.1428,-0.1386,-0.0022,0.1172,0.258,0.5736,0.7612,0.6076,0.629,0.5522,0.7014,0.7996,1,0.902,0.8764,0.8038,0.8208,0.7826,0.8508,0.8678,-0.6118,0.0942,0.1254,0.2274,0.2862,-0.0746,0.0236,-0.3176,-0.3294,-0.4942,-0.2824,-0.4196,-0.1686,-0.255,-0.0314,-0.0706,0.2118,0.2156,0.651,0.7176,0.5726,0.6862,0.6,0.7608,0.7294,1,0.8824,0.7804,0.7176,0.7844,0.7726,0.8628,-0.5318,0.1582,0.1828,0.3758,0.4046,0.0102,0.0718,-0.3676,-0.2896,-0.3634,-0.2444,-0.3142,-0.1498,-0.2032,-0.0102,-0.0514,0.228,0.2566,0.5976,0.5934,0.963,0.9426,0.7084,0.7044,0.9466,0.9548,0.8974,0.926,0.7864,0.8644,0.8974,1,-0.5684,0,0.03,0.3888,0.2864,-0.3034,-0.3462,-0.4658,-0.4786,-0.4102,-0.4274,-0.3034,-0.2778,-0.188,-0.2052,0,-0.0042,0.2052,0.3162,0.8162,0.906,0.8462,0.718,0.7564,0.7864,0.9872,1,0.859,0.8334,0.7948,0.859,0.906,-0.5764,-0.1572,0.4852,0.5854,0.1162,-0.221,-0.4168,-0.4852,-0.3622,-0.3896,-0.5126,-0.4078,-0.2848,-0.2028,-0.2164,-0.2164,0.016,0.0798,0.394,0.6264,1,0.9636,0.7176,0.7084,0.8178,0.959,0.9954,0.9498,0.9088,0.8724,0.8952,0.9726,-0.6502,0.078,0.5224,0.3996,-0.2294,-0.565,-0.3334,-0.4184,-0.6974,-0.6454,-0.565,-0.5934,-0.5982,-0.4516,-0.2956,-0.3948,-0.2624,-0.1252,0.1206,0.4468,0.9622,1,0.8676,0.6454,0.7494,0.9386,0.896,0.8346,0.7684,0.721,0.7164,0.8346,-0.5342,0.2982,0.677,0.5156,-0.0932,-0.5156,-0.354,-0.5528,-0.7516,-0.6086,-0.59,-0.7702,-0.5714,-0.323,-0.3044,-0.4224,-0.4348,-0.4472,-0.205,0.0186,0.3726,0.708,0.8572,0.6708,0.4534,0.9006,1,0.733,0.4596,0.4348,0.472,0.4782,-0.4616,0.1538,0.1538,0.3462,0.3076,-0.2308,-0.1538,-0.2692,-0.3462,-0.2308,-0.2308,-0.1924,-0.2308,-0.2308,-0.1154,0.0384,0.077,0.6924,0.7692,0.5384,0.6154,0.6154,0.6154,0.923,1,0.8462,0.9616,0.7308,0.8846,0.7308,0.8076,0.577,-0.5926,0.1112,0.1482,0.3334,0.3334,-0.1482,-0.1852,-0.3704,-0.3334,-0.4074,-0.3334,-0.2962,-0.1482,-0.1852,-0.037,0.1852,0.2592,0.5926,0.7408,0.5926,0.6666,0.5186,0.7778,0.8518,1,0.8888,0.8888,0.8518,0.8148,0.7778,0.8888,0.8888,-0.3448,0.1724,0.5862,0.5518,-0.1724,-0.3104,-0.1552,-0.1552,-0.6206,-0.4828,-0.3966,-0.3104,-0.3276,-0.1552,-0.1034,0.0518,-0.0518,0.2068,0.2932,0.5518,0.9138,1,0.6896,0.5344,0.7068,0.931,0.8448,0.8448,0.8104,0.7932,0.7414,0.8276,-1,-1,-1,-0.8046,-0.9202,-0.9064,-0.9588,-0.934,-0.9312,-0.6012,0.1636,0.5488,0.6808,0.7414,0.7084,0.5736,0.5874,0.6286,0.9478,0.6286,-0.1692,-0.2188,-0.6232,-0.813,-0.8844,-0.9038,-0.9312,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9642,-0.9802,-0.7662,-0.8134,-0.2638,0.4064,1,0.543,0.0196,0.5016,0.5128,0.7404,0.8936,0.772,0.5842,0.0368,-0.1618,-0.7172,-0.8392,-0.8492,-0.9036,-0.863,-0.8888,-0.9344,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8768,-0.92,-0.4868,0.4166,0.66,0.7566,0.76,0.4466,-0.216,0.05,0.25,0.4532,0.54,0.3032,0.2,0.03,-0.3268,-0.6268,-0.88,-0.54,0.0466,0.37,0.2332,-0.31,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,1,1,0.3142,1,1,0.2,0.4286,-0.2572,-0.4858,-0.8286,-0.5714,-0.2858,1,1,-0.1142,0.0286,0.1142,-0.2858,1,1,-1,-1,-1,-1,-1,-1,0.43,0.4436,0.4508,0.4664,0.4836,0.534,0.5788,0.6172,0.5916,0.3784,0.8708,0.8926,0.8984,0.9008,0.9186,0.94,0.9234,0.9202,0.9674,0.9854,-0.7866,-0.353,0.329,-0.1678,0.134,0.4402,0.5628,0.6916,-0.716,-0.716,-0.544,-0.644,-0.464,-0.316,-0.188,-0.024,0.124,0.256,0.448,0.732,0.992,1,0.884,0.832,0.848,0.744,0.652,0.6,0.64,0.508,0.536,0.648,0.592,0.636,0.536,0.404,0.388,0.284,0.212,-0.344,-0.7876,-0.8156,-0.7718,-0.5624,-0.5344,-0.425,-0.2876,-0.0968,0.275,0.2156,0.4688,0.8094,0.7562,0.7906,0.9812,0.9406,1,0.9968,0.7374,0.8156,0.7344,0.8188,0.9782,0.9438,0.8438,0.7812,0.8312,0.8532,0.7156,0.5968,0.525,0.1968,-0.2716,-0.132,-0.2048,-0.6206,-0.4356,-0.4204,-0.2474,0.0592,0.299,0.3414,0.4356,0.6388,0.9242,0.7542,0.9484,1,0.9878,0.9424,0.8968,0.9394,0.8786,0.8694,0.7906,0.833,0.912,0.7602,0.7632,0.742,0.7026,0.5934,0.651,0.4506,-0.3472,-1,-1,1,0,-0.8,-1,0.1334,-1,-0.5556,-0.2942,-0.1112,0.0588,0.0458,-0.0066,-0.1242,0.0588,0.1764,0.1896,0.1504,0.3202,0.5686,0.7778,0.7254,0.5948,0.634,0.7908,0.6602,0.7386,1,0.7778,0.6862,0.5556,0.5948,0.085,0.255,0.085,0.1242,0.1242,0.3334,-0.0326,'7'
-0.587,-0.0968,0.1484,0.4538,0.3248,0.3118,0.1268,0.2774,-0.0322,0.028,-0.0108,0.0108,0.0838,0.071,0.1742,0.157,0.3548,0.5312,0.7032,0.8924,1,0.772,0.742,0.8924,0.901,0.957,0.944,0.8194,0.772,0.7892,0.6904,0.7806,-0.5976,-0.1554,0.259,0.4462,0.271,0.1514,0.1076,0.1474,-0.0678,-0.0916,0.0478,-0.0318,-0.004,0.02,0.1514,0.1236,0.1832,0.4382,0.4662,0.9682,0.9522,0.765,0.7212,0.9244,0.8566,1,0.8646,0.9402,0.8764,0.8924,0.9244,0.8804,-0.6024,-0.2046,0.2858,0.417,0.1584,0.0502,0.1312,0.0966,-0.0694,-0.1196,0.0154,-0.2008,-0.1622,0.0386,0.0154,0.0926,0.1352,0.305,0.5752,0.6834,0.973,0.9922,0.7414,0.7452,0.9266,0.8688,1,0.8572,0.8918,0.8996,0.8416,0.9652,-0.6306,-0.3072,0.4032,0.4956,0.1262,0.112,0.1688,0.023,-0.2504,-0.0338,-0.0622,-0.1794,-0.0622,0.0374,0.0408,0.0516,0.2326,0.254,0.4706,0.7726,0.9396,0.9502,0.8224,0.9432,0.9468,1,0.9786,0.929,0.8828,0.8934,0.9468,0.9432,-0.6442,-0.2538,0.316,0.323,-0.0604,-0.0708,-0.057,-0.323,-0.3678,-0.3334,-0.2712,-0.2678,-0.209,-0.1088,-0.057,-0.0086,0.0916,0.1848,0.3748,0.665,0.9274,0.917,0.8204,0.8618,0.931,1,0.9206,0.7754,0.7754,0.7892,0.817,0.886,-0.8786,-0.3232,0.1454,0.1062,-0.193,-0.462,-0.462,-0.5228,-0.423,-0.5402,-0.6226,-0.5358,-0.488,-0.397,-0.358,-0.3102,-0.115,-0.076,0.436,0.8524,1,0.9046,0.5878,0.7136,0.922,0.9132,0.77,0.501,0.4274,0.436,0.5488,0.6052,-0.7012,-0.4712,0.5402,0.6092,-0.0882,-0.3486,-0.7394,-0.6016,-0.4252,-0.5326,-0.5096,-0.5326,-0.5708,-0.5786,-0.3946,-0.2874,-0.2338,-0.3946,-0.1112,0.7164,1,0.977,0.364,0.5862,0.7854,0.8774,0.839,0.6934,0.3486,0.0652,0.2874,0.1112,-0.5,-0.0358,0,0.3928,0.2858,0.3572,0.2858,0.25,0.0714,0.0714,0.0714,0.1428,0.1786,0.25,0.3572,0.3928,0.5714,0.6428,0.9286,1,1,0.8928,0.75,0.75,0.8572,0.8572,0.8214,0.75,0.6072,0.4642,0.5358,0.4642,-0.6786,-0.1072,0.1428,0.3572,0.1786,0.25,0.1428,0.25,-0.0358,0.0358,-0.0714,0,0.0358,0.0358,0.1428,0.0358,0.2858,0.5358,0.6786,0.9286,1,0.75,0.7858,0.9286,0.9286,1,1,0.8214,0.7858,0.8214,0.75,0.8214,-0.7064,-0.1744,0.1744,0.101,-0.0642,-0.5596,-0.4128,-0.5046,-0.4496,-0.5046,-0.4678,-0.3762,-0.2478,-0.2844,-0.1926,-0.156,0.0458,0.0458,0.1744,0.6514,0.89,0.945,0.7248,0.7798,0.8532,1,0.8532,0.6698,0.578,0.6698,0.633,0.7432,-1,-1,-1,-1,-1,-1,-1,-0.9498,-0.9602,-0.9016,-0.4436,0.228,0.6004,0.7656,0.7112,0.7698,0.979,0.818,0.3828,-0.295,-0.7594,-0.8368,-0.9352,-0.9394,-0.9288,-0.9122,-0.9352,-0.9142,-0.8138,-0.8808,-0.9164,-0.8996,-0.8808,-1,-1,-1,-1,-1,-1,-1,-0.9896,-0.9886,-0.9068,-0.7124,-0.0552,0.1768,0.7104,0.6136,0.8594,0.711,0.871,0.7954,-0.1222,-0.8598,-0.9578,-0.9828,-0.9856,-0.9322,-0.8294,-0.6898,-0.407,-0.0658,-0.0842,-0.2586,-0.3602,-0.6668,-1,-1,-1,-1,-1,-1,-1,-0.9,-0.9068,-0.0968,-0.11,-0.1168,-0.1968,-0.0268,0.0266,0.1,-0.1,0.11,0.0566,0.1132,-0.2934,-0.4286,-0.7934,-0.77,-0.31,0.5666,0.5332,0.7166,0.89,0.67,0.6366,0.7232,0.4566,-1,-1,-1,-1,-1,-1,-1,-0.8286,1,1,1,1,-0.3714,-0.7142,-0.8,-0.8,-0.9714,-0.7428,0.6,1,1,1,-0.4,0.2572,1,1,1,1,0,-0.7714,-0.6572,0.1428,0.5142,1,1,1,1,1,1,1,1,1,0.7918,0.885,0.8914,0.8582,0.8958,0.8798,0.9224,0.928,0.9756,0.9804,0.9568,-0.6666,-0.3294,-0.6278,-0.4784,0.0228,0.1522,0.1462,1,-0.5776,-0.292,0.0062,-0.1428,-0.0684,-0.205,-0.1428,0.056,0.2796,0.6398,1,0.9254,0.8882,0.8882,0.7888,0.4906,0.5528,0.6522,0.826,0.9378,0.7764,0.5404,0.4286,0.764,0.7888,0.7142,0.4534,0.59,0.6024,0.59,0.3292,-0.0186,-0.4892,-0.2392,-0.0218,-0.087,-0.3478,-0.4348,-0.174,0.0434,0.3914,1,0.9782,0.8804,0.8804,0.8152,0.4892,0.4348,0.4456,0.6304,0.5978,0.7174,0.6304,0.3914,0.424,0.3914,0.4348,0.5434,0.674,0.25,0.4674,0.576,0.174,-0.1304,-0.25,0.1666,0.4688,0.3542,0.2812,-0.177,-0.0208,0,0.4584,1,0.8958,0.7708,0.7084,0.75,0.6876,0.3542,0.4896,0.552,0.6666,0.8124,0.7188,0.4166,0.2604,0.1876,0.573,0.5938,0.4584,0.3334,0.4688,0.5416,0.25,-0.073,-0.5396,-1,-1,1,-1,-1,-0.8,-0.6,-1,-0.8792,-0.5714,-0.3186,-0.2418,-0.2418,-0.2858,-0.2858,-0.1868,-0.022,0.088,0.3186,0.5494,0.5714,0.7032,0.7692,0.978,0.945,0.7692,0.7472,0.6704,0.7142,0.7912,0.8242,0.7252,0.8682,0.8792,1,1,0.7142,0.7032,0.5274,0.3516,'8'
-0.684,-0.2736,0.1982,0.3396,0.3396,0.349,0.2312,0.1746,-0.1038,-0.1084,0.0048,0.0284,0.0424,0.1132,0.1038,0.2972,0.4434,0.5754,0.9386,0.9434,0.934,0.8916,0.8868,0.8916,1,0.8868,0.8774,0.7594,0.75,0.7736,0.75,0.8584,-0.6464,-0.2548,0.141,0.2842,0.0948,0.1116,0.1916,0.1748,-0.04,-0.12,0.0568,-0.0652,0.0316,0.0736,0.099,0.2506,0.2548,0.5032,0.8358,0.9706,0.8106,0.8694,0.861,0.8442,1,0.9242,0.899,0.7684,0.8694,0.8232,0.8568,0.9368,-0.666,-0.3056,0.2068,0.3358,0.0588,0.0778,0.1688,0.1196,-0.0474,-0.0816,0.0132,-0.0398,-0.0208,0.0474,0.0208,0.2372,0.3624,0.4724,0.7572,0.795,1,0.962,0.833,0.8634,0.9772,0.9544,0.981,0.8444,0.7988,0.8254,0.7836,0.9166,-0.6786,-0.3492,0.2976,0.385,0.1428,0.123,0.127,-0.0158,-0.1032,-0.127,-0.127,-0.0436,-0.123,-0.008,0.1706,0.1904,0.2778,0.381,0.6112,0.8928,0.9564,0.8968,0.8612,0.8928,0.9286,1,0.9366,0.8334,0.7896,0.7778,0.8532,0.8968,-0.687,-0.2318,0.3496,0.3496,0.1016,-0.0488,0.004,-0.248,-0.3658,-0.3008,-0.2032,-0.2074,-0.1464,-0.1178,-0.0082,0.0854,0.126,0.2114,0.4716,0.7926,1,0.9634,0.8252,0.8984,0.9268,0.9716,0.8496,0.748,0.7154,0.683,0.756,0.8658,-0.8768,-0.2606,0.1896,0.2132,-0.0236,-0.5734,-0.3886,-0.5024,-0.545,-0.5118,-0.4124,-0.4644,-0.4882,-0.4834,-0.3602,-0.2464,-0.1374,-0.0948,0.2796,0.6824,1,0.929,0.6778,0.7582,0.9194,0.9194,0.6492,0.4786,0.455,0.3602,0.4928,0.4786,-0.875,-0.625,0.1172,0.2344,-0.375,-0.5546,-0.5,-0.4688,-0.5078,-0.6016,-0.4922,-0.7266,-0.5156,-0.4532,-0.2656,-0.2266,-0.1484,-0.3282,0.1484,0.9218,0.9922,0.7266,0.3906,0.914,1,0.9296,0.5468,0.2266,0.3672,0,-0.0078,0.1954,-0.6296,-0.2222,0.2222,0.2962,0.5556,0.4814,0.2222,0.1482,-0.1112,-0.037,0,0.074,0.1112,0.1482,0.2962,0.4074,0.4814,0.7038,0.963,0.963,1,0.8888,0.963,1,0.963,0.963,0.926,0.7778,0.7408,0.7778,0.7778,0.7778,-0.76,-0.4,0.12,0.24,0.32,0.32,0.12,0.08,-0.24,-0.16,-0.08,-0.04,0.04,0.12,0.2,0.28,0.48,0.64,0.88,0.76,1,0.92,0.84,0.96,0.92,0.96,0.88,0.72,0.72,0.76,0.84,0.76,-0.7822,-0.1288,0.2872,0.1882,0.109,-0.5248,-0.3862,-0.4258,-0.3268,-0.4654,-0.3466,-0.3268,-0.3466,-0.4258,-0.208,-0.109,0.01,0.0298,0.4258,0.6238,0.9802,0.9208,0.7228,0.8218,0.9604,1,0.7426,0.6634,0.5842,0.5644,0.5842,0.6436,-1,-1,-1,-1,-1,-1,-1,-1,-0.9394,-0.9588,-0.3618,0.4498,0.4526,0.5956,0.6506,0.8432,0.9862,0.901,0.7084,0.1334,-0.425,-0.8156,-0.868,-0.8762,-0.9148,-0.934,-0.9202,-0.868,-0.8928,-0.9092,-0.9174,-0.9174,-0.9368,-1,-1,-1,-1,-1,-1,-1,-1,-0.989,-0.992,-0.7546,0.0588,0.5458,0.7364,0.7488,0.7644,0.9512,0.625,0.3278,-0.3268,-0.7826,-0.9582,-0.9752,-0.9828,-0.9814,-0.9018,-0.7114,-0.2604,-0.2972,-0.4206,-0.4982,-0.6068,-0.711,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.9934,-0.57,-0.164,0.056,-0.008,-0.008,0.032,-0.0634,-0.0768,-0.0234,-0.0134,-0.17,-0.3334,-0.7868,-0.8034,-0.7768,-0.3168,0.61,0.67,0.7066,0.6632,0.7132,0.72,0.6866,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,0.4572,-0.8572,-0.9428,-1,-1,-0.6572,0.4286,1,1,1,0.1142,-0.7714,1,1,1,1,-0.8,-0.8572,-0.8858,-0.8858,-0.8,1,1,1,1,1,1,1,1,1,0.9106,0.7744,0.7744,0.7884,0.8266,0.83,0.8456,0.872,0.9296,0.9508,0.9282,-0.6134,-0.4,-0.6756,-0.1938,0.1186,0.5296,0.5538,1,-0.4884,-0.0698,0.2558,0.1628,0.2094,0.2558,0.0698,0.3954,0.628,0.8604,0.9534,0.9534,1,0.907,0.8604,0.814,0.7674,0.628,0.5814,0.4884,0.5348,0.721,0.814,0.814,0.7674,0.628,0.5348,0.4884,0.3024,-0.0698,-0.1162,-0.6744,-0.2182,0.1818,0.291,0.1818,-0.0728,-0.0728,0.0546,0.2728,0.4546,0.8,1,0.8182,0.9272,0.891,0.709,0.709,0.709,0.6364,0.509,0.4,0.4364,0.5454,0.6546,0.8182,0.6,0.5454,0.5636,0.491,0.1818,0.0182,-0.2364,-0.6182,-0.0276,0.5596,0.688,0.3578,0.101,0.1376,0.1926,0.3762,0.6146,0.9816,0.9816,0.89,1,0.8716,0.7982,0.89,0.9816,0.9082,0.9634,0.945,0.4862,0.5964,0.7432,0.8166,0.7982,0.7798,0.688,0.523,0.0642,-0.0276,-0.3762,-0.7982,0.1852,-1,-1,1,-1,-1,-1,-0.8334,1,-0.6488,-0.6488,-0.4048,-0.2682,-0.2,-0.1512,-0.1804,-0.0342,0.1414,0.0926,0.5122,0.6098,0.561,0.8536,1,0.7658,0.844,0.8244,0.7658,0.7074,0.6292,0.5414,0.5122,0.5708,0.717,0.7074,0.844,0.7952,0.717,0.717,0.5708,0.2292,'8'
-0.5908,-0.2226,0.0168,0.13,0.2612,0.5238,0.8688,0.861,0.8996,0.946,1,0.8738,0.812,0.4544,0.4028,0.48,0.3926,0.3564,0.4338,0.5728,0.686,0.4362,0.3308,0.2226,0.1454,0.1248,0.0888,0.1428,0.2098,0.197,0.3952,0.475,-0.5484,-0.2122,0.1068,0.1902,0.3056,0.6024,0.8036,0.9166,0.9926,1,0.9706,0.8944,0.757,0.4626,0.438,0.4306,0.3522,0.3202,0.4086,0.6344,0.6392,0.5412,0.4528,0.3398,0.2148,0.2172,0.2564,0.1608,0.232,0.3374,0.3668,0.5264,-0.5738,-0.2688,0.0954,0.1574,0.1946,0.6604,0.7918,0.9282,0.943,0.9776,0.9008,1,0.762,0.5886,0.5242,0.3978,0.3358,0.44,0.4076,0.4894,0.4994,0.5638,0.2986,0.2466,0.1376,0.0732,0.1302,0.1426,0.1548,0.2516,0.3086,0.3706,-0.5614,-0.2916,0.0218,0.0326,0.06,0.6676,0.7438,0.9836,0.9156,0.981,0.9374,0.9128,1,0.8092,0.684,0.7138,0.6594,0.6622,0.6948,0.8092,0.8556,0.6376,0.485,0.4496,0.308,0.2644,0.2888,0.2998,0.3188,0.357,0.3814,0.4196,-0.5294,-0.3026,-0.0028,-0.0308,0.126,0.521,0.902,1,0.7198,0.6526,0.6246,0.6526,0.6834,0.8404,0.944,0.888,0.916,0.86,0.7956,0.8824,0.8796,0.818,0.6554,0.465,0.381,0.3278,0.3082,0.2802,0.2886,0.2914,0.339,0.3894,-0.5552,-0.3196,0.0104,0.1104,0.4316,0.7054,0.6466,0.6848,0.3756,0.2312,0.2048,0.1606,0.2784,0.3932,0.5228,0.6672,0.888,1,0.8144,0.7526,0.8322,0.6494,0.455,0.517,0.4374,0.243,0.2018,0.1428,0.1428,0.1134,0.2136,0.3756,-0.459,-0.185,0.2242,0.6156,0.6762,0.4448,0.452,0.4378,0.516,0.2028,-0.0818,-0.42,-0.096,-0.1886,-0.1104,0.1104,0.3488,0.5124,0.637,0.9004,1,0.6584,0.783,0.847,0.8968,0.6832,0.4448,0.3202,0.2882,0.2278,0.2526,0.4306,-0.6734,-0.1836,-0.102,-0.0204,0.102,0.347,0.9184,1,0.8368,0.7552,0.9184,0.7552,0.7142,0.3062,0.0612,0.1836,0.2654,0.347,0.2244,0.6734,0.7142,0.4694,-0.1428,-0.102,-0.1836,-0.102,-0.1836,-0.102,0.0612,0.2244,0.1836,0.1428,-0.6428,-0.2858,0,0.1072,0.25,0.4286,0.9286,0.8928,0.8928,0.8928,1,0.8928,0.8572,0.5,0.25,0.5,0.3928,0.4642,0.3572,0.3928,0.6072,0.4286,0.25,0.1072,0.1428,0.0714,-0.0358,0.0358,0.1786,0.2142,0.3214,0.2858,-0.625,-0.3542,-0.0834,-0.0416,0.2916,0.625,0.7916,0.8124,0.375,0.3334,0.3334,0.2292,0.375,0.5834,0.7292,0.875,0.875,1,0.7708,0.7084,0.8124,0.75,0.6042,0.4584,0.3334,0.2084,0.125,0.0834,0.0834,0.0624,0.1876,0.3124,-1,-1,-1,-1,-1,-1,-1,-0.95,-0.9368,-0.9564,-0.4908,0.6452,0.8824,0.9456,0.7694,0.5538,0.1752,-0.0946,-0.1012,0.0468,-0.11,-0.2688,-0.5778,-0.7432,-0.9108,-0.9456,-0.9542,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9902,-0.9896,-0.989,-0.4556,0.3294,0.6116,0.851,0.6862,0.7616,0.4216,0.1994,-0.1288,-0.3986,-0.689,-0.837,-0.9276,-0.9274,-0.964,-0.9694,-0.9744,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9282,-0.9068,-0.86,-0.5268,-0.509,-0.5312,-0.5734,-0.5134,-0.4824,-0.509,-0.6282,-0.619,-0.6322,-0.6322,-0.7256,-0.839,-0.439,-0.129,-0.2556,-0.5256,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4572,-1,1,1,1,-0.6858,-0.9714,-0.8572,-0.7428,-0.9142,-0.9142,-0.6572,-0.5428,-0.0572,1,0.1714,-0.8286,-0.4858,0.0286,0.0858,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.934,-0.5866,0.047,-0.3448,-0.1148,0.4582,0.3728,0.6744,1,-0.2132,0.246,0.2786,0.9344,1,0.9344,0.8032,0.541,0.4754,0.5738,0.5738,0.4754,0.246,0.1476,0.2786,0.246,0.4426,0.4098,0.4754,0.4098,0.4098,0.4754,0.4754,0.4754,0.4426,0.5738,0.6066,0.541,0.4098,0.2786,0.1476,-0.1476,-0.138,0.1034,0.3794,0.9656,1,1,0.8276,0.5344,0.3794,0.5344,0.6896,0.4828,0.1206,0.1206,0.2932,0.3448,0.7242,0.8104,0.638,0.3448,0.1724,0.4138,0.1206,0.3794,0.2068,0.4482,0.5,0.4656,0.4656,0.2932,0.0862,-0.1206,-0.1404,-0.0414,0.3224,0.9008,0.9834,1,0.719,0.6364,0.6034,0.6528,0.7356,0.2562,0.2232,0.2396,0.3884,0.4214,0.5206,0.6034,0.2562,0.1404,0.3884,0.6198,0.5702,0.6034,0.4546,0.2892,0.5042,0.5538,0.5538,0.438,0.2232,-0.19,0.1448,-1,-1,1,-1,-1,-0.4,-0.8334,-1,-0.5898,-0.3162,-0.077,0.1112,0.1624,0.1112,-0.1624,-0.1452,-0.077,0.5726,0.8804,0.983,1,0.453,0.265,0.2136,0.3846,0.829,0.6752,0.5556,0.5726,0.3676,0.3162,0.3162,0.3676,0.5898,0.641,0.282,0.3334,-0.0086,0.1452,-0.0086,'9'
-0.7764,-0.4054,-0.1462,-0.006,0.1178,0.415,0.9024,0.8668,0.786,0.8644,1,0.8264,0.8906,0.5458,0.5316,0.5338,0.4388,0.591,0.6576,0.7456,0.579,0.5838,0.377,0.3104,0.2914,0.1438,0.2486,0.208,0.2294,0.1938,0.1486,0.0702,-0.7464,-0.385,-0.0892,0.0352,0.1596,0.4508,0.8286,0.763,0.7464,0.9178,1,0.939,0.9414,0.6596,0.5704,0.514,0.547,0.6104,0.5916,0.5798,0.6878,0.5798,0.3592,0.2418,0.2934,0.1738,0.1292,0.183,0.0962,0.0798,-0.0306,0.0728,-0.7222,-0.4058,-0.07,0.0096,0.1714,0.4904,0.6642,0.7368,0.7996,0.9638,0.9202,1,0.8212,0.7706,0.64,0.5894,0.57,0.5434,0.587,0.756,0.7126,0.5096,0.3358,0.2996,0.215,0.1714,0.0966,0.0434,0.0772,-0.0628,-0.1184,0.0556,-0.7274,-0.4522,-0.0878,-0.0522,0.093,0.623,0.7172,0.9082,0.8624,0.8624,0.8242,0.8496,1,0.8956,0.7478,0.6662,0.6178,0.6178,0.656,0.6866,0.7146,0.5974,0.3708,0.2332,0.195,0.0394,-0.037,0.009,-0.1464,-0.279,-0.3172,-0.1516,-0.655,-0.3596,0.0584,0.041,0.1112,0.7486,0.7544,0.9328,0.728,0.734,0.5936,0.7192,0.7982,0.9532,0.924,1,0.9122,0.7514,0.7076,0.8684,0.7632,0.6316,0.424,0.2954,0.1812,0.0644,-0.0146,-0.041,-0.1374,-0.2398,-0.2924,-0.383,-0.643,-0.365,0.1628,0.2006,0.5072,0.8958,0.7346,0.7472,0.4976,0.3334,0.2922,0.2322,0.4028,0.4724,0.7156,0.9178,0.9748,1,0.8072,0.7694,0.7472,0.7662,0.744,0.4882,0.2734,0.2322,0.0394,0.1816,0.1342,-0.0838,0.1154,0.0426,-0.5586,-0.1356,0.5586,0.761,1,0.5218,0.2644,0.531,0.1678,0.0436,-0.3886,-0.5402,-0.1954,-0.2552,-0.1632,0.2276,0.3012,0.338,0.9448,0.9494,0.577,0.7748,0.8436,0.7012,0.5034,0.2782,-0.016,-0.0528,-0.131,0.0206,0.0022,-0.0436,-0.8572,-0.4642,-0.1428,0,0,0.4642,0.8928,0.8572,0.7142,0.8928,1,0.8214,0.8572,0.6428,0.5714,0.4642,0.5358,0.5714,0.6786,0.75,0.5714,0.5714,0.3928,0.3572,0.2858,0.25,0.2858,0.2858,0.25,0.25,0.2142,0.1786,-0.7858,-0.4286,-0.1786,0,0.0358,0.4642,0.9286,0.8928,0.7858,0.8928,1,0.8572,0.8572,0.6428,0.5358,0.5358,0.5358,0.6072,0.75,0.8214,0.6428,0.5714,0.4286,0.3572,0.3572,0.3214,0.2858,0.25,0.2858,0.25,0.25,0.1428,-0.6,-0.3684,0.0736,0.0106,0.3052,0.7052,0.579,0.6842,0.4526,0.3052,0.2422,0.3474,0.3894,0.4106,0.8106,0.9158,1,0.6842,0.6632,0.7052,0.7264,0.621,0.6,0.2842,0.1368,0.1578,-0.0106,0.0316,0.0106,-0.3474,-0.0526,-0.0106,-1,-1,-1,-1,-1,-1,-1,-1,-0.9174,-0.9484,-0.1532,0.8932,0.9552,0.8968,0.7246,0.5766,0.408,0.3254,0.074,0.1084,-0.2324,-0.3528,-0.5904,-0.797,-0.9104,-0.907,-0.9346,-0.9346,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9854,-0.9874,-0.134,0.9182,0.6532,0.67,0.7188,0.5804,0.549,0.121,-0.3222,-0.5378,-0.8226,-0.8972,-0.8906,-0.9656,-0.971,-0.9694,-0.981,-0.9818,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.92,-0.94,-0.5334,-0.4846,-0.4778,-0.469,-0.464,-0.484,-0.528,-0.588,-0.508,-0.6448,-0.6568,-0.8228,-0.7008,-0.5908,-0.4942,-0.6742,-0.7108,-0.8708,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,-0.0858,-0.8572,-0.9142,-0.9142,-0.8572,-0.9142,-0.6286,-0.3428,-0.1142,-0.2572,-0.6572,-0.4,-0.7142,-0.8858,-0.8,-0.1428,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6134,0.1412,0.059,0.834,0.9344,0.9894,0.6556,1,-0.1482,0.2222,0.2592,0.6296,0.5926,0.8888,0.8888,0.3334,0.6666,0.8148,0.7408,0.5556,0.1482,0.1112,0.037,0.1112,0.074,0.3704,0.7778,0.8888,0.963,1,0.8888,0.7778,0.7778,0.5926,0.6296,0.2592,-0.037,-0.1112,-0.1852,-0.6296,-0.4344,-0.0304,0.3334,0.6768,0.8586,1,0.9192,0.5354,0.5354,0.8182,0.798,0.394,0.2122,0.2122,0.1718,0.2122,0.4546,0.5758,0.7778,0.7576,0.6566,0.6768,0.4748,0.495,0.2324,0.4142,0.2526,0.192,-0.2122,-0.3132,-0.4142,-0.697,-0.3016,0.1588,0.2858,0.9206,0.8096,1,0.8254,0.6826,0.6032,0.762,0.8254,0.4762,0.381,0.3174,0.3492,0.365,0.6508,0.8412,0.8096,0.7936,0.746,0.7302,0.746,0.762,0.6032,0.5238,0.5874,0.4762,0.3174,0.0794,-0.0318,-0.4126,1,-1,-1,1,-0.8,-1,-0.8,-0.8334,-1,-0.5102,-0.4898,-0.2448,0.102,0.1224,0.5714,0.204,0.204,0.0816,0.4898,0.6326,1,0.9796,0.3878,-0.0612,0.3266,0.6326,0.6326,0.7142,0.2654,0.551,0.4082,0.7142,0.0204,0.347,0.204,0.2858,-0.0816,-0.2244,0.0204,-0.2448,-0.7346,'9'
-0.6,-0.12,0.476,0.752,0.604,-0.08,0.124,0.188,-0.104,-0.092,0.148,0.076,0.164,0.26,0.448,0.648,0.764,0.772,0.812,0.544,0.484,0.672,0.78,1,0.872,0.904,0.712,0.764,0.804,0.84,0.82,0.788,-0.6874,-0.2354,0.2242,0.435,0.292,0.3146,0.2052,0.2242,0.1338,0.0998,0.1112,0.1186,0.2882,0.258,0.3974,0.7024,0.7966,0.9736,1,0.7928,0.7402,0.7854,0.7364,0.921,0.8418,0.789,0.6534,0.6498,0.6272,0.6836,0.7364,0.7476,-0.7362,-0.3972,0.0298,0.1334,0.5354,0.5572,0.2464,0.1554,0.1868,0.058,0.1114,0.2464,0.2088,0.2716,0.3814,0.4976,0.7864,0.8744,1,0.978,0.8336,0.8398,0.9216,0.9026,0.934,0.821,0.7834,0.686,0.6514,0.6546,0.6766,0.7174,-0.6414,-0.3508,0.0664,0.3106,0.663,0.5888,0.388,0.2272,0.221,0.1252,0.085,0.1622,0.1932,0.187,0.3324,0.4374,0.558,0.7806,0.9258,0.9722,0.9134,0.8608,0.929,1,0.963,0.898,0.8084,0.7712,0.8052,0.663,0.626,0.6908,-0.6478,-0.4152,0.0306,0.3182,0.4572,0.3214,0.2828,0.105,-0.05,-0.0598,0.0306,0.0242,0.034,0.0792,0.2634,0.3086,0.4798,0.6802,0.8546,0.9904,0.945,0.7802,0.9192,0.903,1,0.8288,0.8288,0.7448,0.7092,0.7124,0.7092,0.6736,-0.703,-0.4542,-0.1502,0.354,0.3816,0.1676,0.0398,-0.019,-0.1572,-0.0984,-0.095,-0.1158,-0.026,0.019,0.1572,0.2194,0.3334,0.4542,0.8652,0.9792,0.962,0.7892,0.8756,0.924,1,0.9274,0.8688,0.7168,0.7132,0.696,0.7306,0.7686,-0.6694,-0.343,-0.046,0.5482,0.5482,-0.0878,-0.0586,-0.1632,-0.2344,-0.2008,-0.2804,-0.2594,-0.1506,-0.1632,-0.0168,0.046,0.1004,0.2134,0.7072,0.9666,1,0.6862,0.7196,0.7782,0.7908,0.8578,0.7322,0.4394,0.41,0.297,0.41,0.364,-0.6888,-0.1112,0.3778,0.6888,0.5112,-0.6888,-0.2888,-0.1556,-0.5556,-0.3778,0.0666,0.0222,-0.0666,0.2444,0.4222,0.5112,0.6,0.6888,0.6888,0.2,0.3778,0.5112,0.6888,0.9112,0.9556,1,0.6888,0.6444,0.9556,0.9112,0.8666,0.6888,-0.6326,-0.1836,0.4286,0.7142,0.551,-0.102,0.102,0.1428,-0.0612,-0.102,0.0612,-0.0204,0.0612,0.2654,0.347,0.6326,0.6734,0.796,0.7552,0.5102,0.4694,0.5918,0.796,0.9592,0.9184,1,0.7552,0.7142,0.8776,0.6734,0.8368,0.6326,-0.7118,-0.2792,0.081,0.2432,0.3874,0.4054,0.2612,0.2072,0.1892,0.081,0.1532,0.2432,0.2972,0.2972,0.3874,0.6396,0.8558,1,0.946,0.946,0.8558,0.8558,0.964,0.8918,0.8918,0.7478,0.8018,0.6756,0.6936,0.7298,0.6756,0.7478,-1,-1,-1,-1,-0.9682,-0.9714,-0.9598,-0.9614,-0.9598,-0.9614,-0.5772,0.5402,0.8238,0.1476,0.1208,0.8306,0.76,0.2332,0.0504,-0.0974,-0.297,-0.2332,-0.6712,-0.7618,-0.859,-0.9396,-0.943,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9898,-0.9886,-0.9472,-0.7812,-0.4744,-0.2388,-0.334,-0.3944,-0.19,0.1576,0.6336,0.8978,0.7566,0.5304,0.4292,0.318,0.046,-0.6084,-0.9072,-0.9278,-0.9416,-0.9668,-0.9744,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9798,-0.9334,-0.8268,0.4166,0.93,0.8166,0.5766,-0.5168,-0.4368,-0.2372,-0.12,-0.143,-0.2316,-0.2196,-0.2372,-0.1544,-0.1286,-0.6914,-0.9096,-0.6628,-0.4162,-0.6362,-0.8328,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4286,0,1,1,1,-0.0858,1,1,0.5142,-0.3428,-0.2572,-0.7428,-1,-1,-1,-0.6858,1,1,1,-0.8,0,-0.0286,-0.3142,-1,-1,-1,-1,-1,-1,0.7176,0.7618,0.7906,0.814,0.8492,0.9076,0.9666,1,1,1,0.505,0.5142,0.4826,0.4702,0.4476,0.434,0.4252,0.4578,0.5294,0.6742,-0.6134,-0.2352,-0.3064,-0.5684,-0.3178,-0.197,-0.2204,1,-0.6456,-0.605,-0.4886,-0.4076,-0.276,-0.2254,-0.2102,-0.1594,0.0734,0.0532,0.2254,0.2912,0.438,0.6,0.9088,1,0.919,0.914,0.924,0.6506,0.676,0.6962,0.6556,0.5746,0.605,0.6658,0.686,0.6456,0.5594,0.3772,0.357,0.1392,-0.7896,-0.8572,-0.7262,-0.6112,-0.5278,-0.4444,-0.3214,-0.1508,0.008,0.1072,0.2858,0.5,0.6032,0.754,0.9642,1,0.9326,0.8334,0.7858,0.6866,0.7818,0.8374,0.9802,0.9088,0.9088,0.8374,0.9286,0.7896,0.8612,0.7658,0.6826,0.5318,-0.6748,-0.2572,-0.3054,-0.5384,-0.5032,-0.455,-0.4462,-0.0022,0.2264,0.1208,0.2616,0.6572,0.6924,0.7318,0.877,0.8946,1,0.7846,0.7362,0.7538,0.7714,0.6924,0.6836,0.7274,0.622,0.6704,0.6836,0.7626,0.789,0.7054,0.7142,0.3538,-0.4576,-1,-1,1,-0.8,-1,-0.6,-0.1334,-1,-0.1166,0.1,0.3834,0.0166,0.4166,0.35,-0.0334,-0.05,0.0334,0.3166,0.7834,0.8334,0.8834,0.45,0.45,0.4334,0.5166,0.6166,0.5334,1,0.2834,0.4834,0.1,-0.0166,0.0166,0.0666,-0.1666,-0.2834,-0.3166,-0.1334,-0.2334,-0.6334,'10'
-0.7442,-0.3016,0.3508,0.505,0.3114,0.2328,0.2262,0.118,-0.164,-0.0852,-0.0492,-0.0296,0.0328,0.3214,0.4886,0.7508,0.8622,0.8918,0.5902,0.623,0.6558,0.7672,1,0.8688,0.941,0.6558,0.6492,0.6426,0.6132,0.6328,0.5476,0.6164,-0.7292,-0.3646,0.0832,0.2038,0.547,0.5738,0.244,0.1474,0.0616,0.0564,0.1152,0.1502,0.1152,0.3404,0.488,0.6058,0.9624,1,0.6328,0.5738,0.6596,0.748,0.8392,0.6836,0.6782,0.563,0.4584,0.378,0.2922,0.3538,0.2922,0.2628,-0.7524,-0.4196,0.121,0.2148,0.6728,0.6358,0.4766,0.303,0.3086,0.2432,0.2092,0.2262,0.2888,0.3684,0.6074,0.67,0.9488,0.9688,1,0.8406,0.8322,0.8976,0.8862,0.9288,0.7298,0.6672,0.5136,0.3998,0.414,0.3086,0.3116,0.2632,-0.7706,-0.498,0.05,0.174,0.4764,0.4412,0.5168,0.2658,0.1902,0.0904,0.1632,0.1524,0.228,0.2928,0.3738,0.641,0.8866,1,0.992,0.9514,0.865,0.9542,0.9812,0.946,0.8192,0.7112,0.5466,0.498,0.4682,0.3954,0.4304,0.3792,-0.737,-0.4568,0.1456,0.2334,0.4342,0.256,0.2872,-0.0496,-0.007,0.0466,-0.0524,-0.0806,0.0326,0.14,0.256,0.3804,0.7766,0.8076,1,0.833,0.768,0.833,0.8982,0.9688,0.734,0.6182,0.505,0.3776,0.3154,0.2248,0.2758,0.2532,-0.5876,-0.193,0.623,0.6364,0.663,0.3482,0.1308,-0.2994,-0.122,-0.091,-0.3216,-0.3614,-0.3968,-0.122,0.0244,0.2196,0.49,0.5654,0.9556,0.7916,0.7294,0.8182,0.9424,1,0.9114,0.7738,0.3748,0.082,0.082,0.0864,0.1442,0.1796,-0.4984,0.073,0.0476,0.3714,0.8286,0.3778,-0.2634,-0.073,-0.0794,-0.1174,-0.3016,-0.4984,-0.5238,-0.854,-0.4286,-0.5682,-0.327,-0.054,0.0794,0.854,1,0.5238,0.873,0.9302,0.7142,0.492,-0.1302,-0.2444,-0.2508,-0.2572,-0.1366,-0.0032,-0.7298,-0.027,0.027,0.2972,0.5136,-0.081,-0.2432,-0.3514,-0.7298,-0.2432,-0.2432,-0.1352,-0.081,0.2972,0.4594,0.8918,1,0.7298,0.4594,0.4054,0.3514,0.1892,0.4594,0.6216,0.5676,0.5676,0.6216,0.5676,0.4594,0.5136,0.7298,0.7298,-0.6364,-0.1818,0.591,0.7272,0.2272,0.2728,0.3636,0.2272,-0.2728,0.0454,0.091,0.0454,0.2272,0.5,0.6364,0.8636,0.909,0.8636,0.7272,0.591,0.6364,0.8182,0.9546,0.8636,1,0.8636,0.6818,0.7272,0.6818,0.591,0.591,0.591,-0.6986,-0.4246,0.4246,0.452,0.6438,0.2602,-0.0136,-0.3424,-0.0136,0.0684,-0.1232,-0.0958,-0.0136,0.0958,0.2876,0.3698,0.6438,0.8356,0.9452,0.9726,0.9178,0.7808,0.9726,0.9452,1,0.6986,0.4246,0.2328,0.2328,0.2054,0.315,0.4246,-1,-1,-1,-1,-1,-0.9596,-0.9256,-0.91,-0.9132,-0.9348,-0.6528,0.3302,0.2714,0.7582,0.972,0.6186,0.1318,0.2218,0.1008,-0.3148,-0.5318,-0.7488,-0.8356,-0.9008,-0.9286,-0.941,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9792,-0.9724,-0.771,-0.4316,0.076,-0.3648,-0.2738,0.2796,0.5196,0.6876,0.8924,0.9322,0.6846,-0.0558,-0.6576,-0.851,-0.9068,-0.9396,-0.9442,-0.966,-0.969,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.9134,-0.5168,0.6132,0.9066,0.4032,-0.4534,-0.2312,-0.3,-0.3468,-0.4224,-0.269,-0.2846,-0.3356,-0.57,-0.636,-0.544,-0.6334,-0.6434,-0.8168,-0.94,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,1,1,1,1,1,1,0.0858,-0.9714,-0.7428,-0.7714,-0.9714,-0.6,-0.2,1,0.3714,-0.6286,-0.4286,-0.5142,-0.8,-1,-1,-1,-1,-1,-1,-1,-1,0.9746,1,1,1,1,1,1,1,1,1,0.3548,0.3526,0.3346,0.3298,0.3158,0.2756,0.2024,0.1406,0.1586,0.2684,-0.5866,0.0824,-0.3716,-0.5914,-0.3418,-0.091,0.1242,1,-0.6978,-0.4244,-0.3526,-0.2086,-0.1152,-0.108,-0.0288,0.0576,0.2446,0.1726,0.223,0.5252,0.7266,0.849,0.928,1,0.9856,0.8418,0.7194,0.6978,0.5684,0.518,0.6402,0.554,0.4604,0.6044,0.4964,0.5468,0.3382,0.2518,0.0864,-0.2158,-0.7304,-0.674,-0.7,-0.626,-0.5434,-0.5566,-0.3566,-0.2782,-0.0652,-0.074,0.2696,0.4478,0.526,0.6218,0.9044,0.9392,1,0.7956,0.9566,0.887,0.7348,0.7696,0.8392,0.8478,0.7608,0.713,0.7914,0.874,0.6348,0.5652,0.4956,-0.0652,-0.8876,-0.4556,-0.3786,-0.645,-0.5622,-0.6628,-0.29,-0.1776,0.1242,0.1538,0.503,0.9704,0.9822,0.6924,0.994,0.9408,0.935,1,0.7338,0.639,0.8402,0.7574,0.7692,0.9112,0.6332,0.6628,0.8284,0.8758,0.6094,0.5208,0.4082,0.219,-0.4982,-1,-1,1,-1,-1,-1,-0.2334,-1,-0.1684,-0.0694,0.0496,0.2278,0.3862,0.5644,0.8416,0.4654,1,0.7228,0.3268,0.802,0.4258,0.3862,0.1288,0.2872,0.0298,0.0694,0.406,-0.0298,0.1486,0.307,0.1684,0.4852,0.4852,0.0496,0.0892,-0.2476,-0.0892,-0.109,-0.0892,-0.5248,'10'
-0.5286,0.1066,0.1352,0.5696,0.541,0.623,0.541,0.3894,0.3238,0.2418,0.1762,0.3402,0.2664,0.4468,0.582,0.7254,0.877,1,0.914,0.9344,0.8442,0.9918,0.8934,0.9468,0.754,0.746,0.5656,0.6148,0.5574,0.5984,0.5246,0.586,-0.6732,-0.198,0.0364,0.2838,0.4786,0.6304,0.406,0.2376,0.2476,0.2872,0.2542,0.2476,0.4092,0.3532,0.5214,0.6766,0.901,0.957,1,0.8646,0.8514,0.8812,0.8646,0.8382,0.6798,0.5874,0.6006,0.561,0.561,0.561,0.5446,0.6798,-0.6252,-0.2692,0.0614,0.1622,0.6284,0.6284,0.4174,0.3008,0.2724,0.222,0.2314,0.222,0.2346,0.3008,0.4236,0.5402,0.77,0.9308,0.9654,0.9212,0.8646,0.9086,0.978,1,0.7922,0.7354,0.7134,0.6284,0.6788,0.6756,0.6724,0.6536,-0.5962,-0.3634,0.056,0.2608,0.4782,0.413,0.4286,0.1274,0.087,0.1304,0.09,0.0746,0.146,0.233,0.292,0.4192,0.6242,0.7858,0.9286,1,0.8448,0.885,0.9504,0.9566,0.885,0.7454,0.674,0.6398,0.6242,0.6336,0.6894,0.7422,-0.6202,-0.405,0.0222,0.2784,0.3798,0.2594,0.1518,0.0158,-0.057,-0.0222,0.0094,-0.0032,0.0664,0.1202,0.2278,0.2944,0.4526,0.6424,0.8164,1,0.883,0.769,0.9082,0.8892,0.9018,0.7816,0.6646,0.5918,0.6298,0.6266,0.6614,0.7406,-0.6694,-0.4266,-0.177,0.3018,0.2512,0.0826,0.0826,-0.0726,-0.1534,-0.0388,-0.1332,-0.049,-0.0692,0.0522,0.177,0.2918,0.4098,0.5244,0.882,1,1,0.8448,0.973,1,0.9932,0.8888,0.7606,0.7066,0.7302,0.7066,0.7976,0.8414,-0.6314,-0.3212,0.0948,0.438,0.3358,-0.0218,0.0948,-0.2408,-0.2262,-0.2116,-0.2008,-0.2554,-0.1496,-0.1278,-0.0072,0.0948,0.2846,0.365,0.803,0.9636,1,0.927,0.8906,0.949,0.916,0.8358,0.7116,0.511,0.4636,0.4598,0.5036,0.6058,-0.5136,0.4594,0.5136,0.7298,0.7838,0.7298,0.7298,0.4594,0.2972,0.2432,0.2972,0.2972,0.4594,0.5136,0.7298,0.8378,1,0.946,0.7298,0.7298,0.6216,0.946,1,0.6756,0.7838,0.5676,0.7298,0.6216,0.6756,0.6756,0.7298,0.7838,-0.4616,0.1154,0.1924,0.6154,0.577,0.6154,0.4616,0.5384,0.423,0.3076,0.1154,0.3076,0.2308,0.5,0.423,0.6538,0.8846,1,0.8846,0.9616,0.923,1,0.8846,1,0.6924,0.7692,0.5,0.6154,0.5,0.6154,0.4616,0.5384,-0.5538,-0.1404,0.0744,0.2562,0.6034,0.6528,0.3884,0.3388,0.3224,0.2728,0.2892,0.2892,0.3554,0.372,0.4214,0.6528,0.752,0.9504,0.8512,0.9174,0.8678,0.9174,1,1,0.7686,0.7024,0.7356,0.6528,0.6694,0.6694,0.7024,0.5538,-1,-1,-1,-0.965,-0.9558,-0.9354,-0.8948,-0.9022,-0.9298,-0.9004,-0.6716,0.0922,0.2362,0.548,0.738,0.8838,0.4096,0.225,0.013,-0.2564,-0.19,-0.3082,-0.6218,-0.8764,-0.9298,-0.9538,-0.9558,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9878,-0.9854,-0.913,-0.6538,-0.737,-0.7808,-0.8352,-0.8326,-0.2864,0.6448,0.6172,0.8852,0.8818,0.8338,0.3898,0.7212,0.5356,0.2608,-0.4914,-0.8556,-0.9402,-0.9226,-0.96,-0.9512,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.9068,-0.64,0.4266,0.5332,0.63,0.4366,0.2866,-0.39,-0.2258,-0.2258,-0.2258,-0.263,-0.0686,-0.2758,-0.3186,-0.2386,-0.2616,-0.5158,-0.6834,-0.2468,-0.0934,-0.2668,-0.4834,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,0.8858,1,1,-0.6286,-0.5714,-0.1428,1,1,1,-0.7714,-0.5428,-0.8858,-0.8858,-0.8572,-0.8858,-0.9714,0.6286,1,1,0.0572,-0.5428,-0.4286,-0.3142,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.222,0.2066,0.2046,0.19,0.1702,0.1458,0.136,0.1994,0.3118,0.5344,-0.6,-0.2236,-0.821,-0.6564,-0.2368,0.2334,0.7402,1,-0.8216,-0.4482,-0.2946,-0.3734,-0.2822,-0.2074,-0.0622,-0.0124,0.0248,0.249,0.527,0.7926,0.8382,0.8258,0.946,0.9876,0.9544,0.9668,0.8714,0.7136,1,0.9128,0.697,0.5062,0.336,0.2324,0.2282,0.3278,0.581,0.307,0.3776,0.0664,-0.9378,-0.6978,-0.4534,-0.5984,-0.5072,-0.4576,-0.4162,-0.1056,-0.0974,0.205,0.3084,0.4368,0.7432,0.8096,0.7102,0.8882,0.7516,0.6936,1,0.8924,0.561,0.6936,0.6604,0.5694,0.4078,0.2008,0.5486,0.677,0.4492,0.3126,0.234,0.0104,-0.3194,-0.1568,0.0776,-0.085,-0.0132,-0.24,-0.1116,0.2362,0.3648,0.656,0.7088,0.6484,0.535,0.501,0.4934,0.6598,0.9924,1,0.8374,0.7354,0.3914,0.293,0.2666,0.1266,0.1228,0.3914,0.4178,0.5538,0.5426,0.5916,0.3648,-0.0776,-0.4822,-1,-1,1,-0.8,-1,-0.8,0.1,-1,-0.3334,-0.0934,0.1734,-0.0534,0.3066,0.28,0.1066,-0.2266,0.1734,0.3734,0.6666,0.64,0.6266,0.6666,0.6266,0.6934,1,0.84,0.64,0.5066,0.8,0.6134,0.3066,0.32,0.16,0.2266,0.24,0.1734,0.0934,0.0934,0.04,-0.48,'11'
-0.6736,-0.1574,0.15,0.4914,0.4004,0.5598,0.4042,0.2562,0.1424,0.2866,0.1386,0.2486,0.3282,0.4004,0.5636,0.7382,0.9278,1,0.9354,0.7912,0.7798,0.8216,0.761,0.761,0.666,0.5978,0.499,0.3966,0.279,0.1954,0.7268,0.909,-0.7492,-0.4064,0.0354,0.166,0.6042,0.6432,0.159,0.106,0.2332,0.1096,0.1978,0.1978,0.2368,0.3816,0.3992,0.6254,0.8692,1,0.9222,0.901,0.8586,0.8446,0.8764,0.7916,0.728,0.6148,0.583,0.477,0.4382,0.3392,0.728,0.8728,-0.854,-0.5582,0.026,0.2452,0.7182,0.694,0.1026,0.127,0.1966,0.1756,0.1304,0.12,0.2174,0.294,0.4226,0.5026,0.7634,0.8886,1,0.9514,0.833,0.8886,0.8818,0.8608,0.746,0.7044,0.5756,0.5408,0.4782,0.4086,0.4052,0.7634,-0.7434,-0.4904,0.0474,0.3744,0.543,0.3356,0.29,0.174,0.1178,0.167,0.065,0.1248,0.1986,0.2408,0.3216,0.4166,0.6942,0.8312,0.9578,1,0.87,0.8664,0.9192,0.9402,0.8348,0.7188,0.6274,0.5712,0.5676,0.4762,0.4622,0.4482,-0.7438,-0.4422,0.0036,0.3474,0.4492,0.1508,-0.0526,0.0422,0,-0.0842,-0.0842,0.0562,0.014,0.0912,0.2246,0.3122,0.3824,0.565,0.9298,1,0.7544,0.7334,0.8036,0.8948,0.8036,0.7088,0.5614,0.5052,0.5578,0.4456,0.379,0.428,-0.736,-0.396,0.128,0.504,0.592,0.184,-0.232,-0.172,-0.128,-0.188,-0.128,0.004,-0.064,-0.012,0.176,0.276,0.328,0.428,0.948,1,0.904,0.808,0.852,1,0.872,0.856,0.644,0.564,0.58,0.392,0.404,0.436,-0.597,-0.209,0.3384,0.5472,0.7114,0.2338,-0.2438,-0.398,-0.3284,-0.4876,-0.4528,-0.2488,-0.3782,-0.388,-0.0996,-0.0796,-0.0696,0.1344,0.5224,0.7164,1,0.8358,0.6368,0.8558,0.7762,0.617,0.199,0.1294,0.1792,-0.1244,-0.0846,-0.015,-0.5088,0.0526,0.1228,0.579,0.5088,0.5088,0.4036,0.2982,0.0526,0.4036,0.2632,0.2632,0.193,0.5438,0.4036,0.6842,0.7544,1,0.8948,0.8246,0.6842,0.8246,0.7192,0.8246,0.579,0.6842,0.3334,0.4036,-0.0176,0.1228,0.6842,0.7544,-0.6842,-0.193,0.0878,0.4386,0.3334,0.4386,0.2982,0.193,-0.0526,0.1578,0.0878,0.228,0.193,0.3684,0.5438,0.6492,0.8596,1,0.614,0.7544,0.6492,0.7544,0.6842,0.7544,0.5438,0.579,0.3684,0.3684,0.193,0.2632,0.6842,0.614,-0.7196,-0.3644,0.0468,0.514,0.5888,0.1776,-0.1214,-0.0842,-0.028,-0.1214,-0.1028,0.0468,0.0094,0.0468,0.2336,0.3084,0.3458,0.5888,0.9626,1,0.8318,0.813,0.8504,0.9814,0.8318,0.8504,0.6636,0.6448,0.6448,0.4954,0.4954,0.4954,-1,-1,-1,-1,-0.9624,-0.9764,-0.942,-0.9466,-0.9326,-0.8934,-0.396,-0.0384,0.0024,0.28,0.7036,0.956,0.4854,0.0792,0.1232,8e-04,-0.3648,-0.6204,-0.7662,-0.8368,-0.9278,-0.953,-0.9576,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9882,-0.9908,-0.8912,-0.754,-0.7296,-0.8178,-0.727,-0.0902,0.191,0.5864,0.7338,0.9298,0.766,0.3556,0.2332,-0.2602,-0.6512,-0.872,-0.9268,-0.9402,-0.9528,-0.9646,-0.9712,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9134,-0.9068,-0.2534,0.7632,0.6832,0.58,-0.1,-0.21,0.0166,-0.0034,-0.09,-0.3234,-0.11,-0.2372,-0.3744,-0.483,-0.6744,-0.8486,-0.7234,-0.5268,-0.14,-0.41,-0.53,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,-0.5142,0.8,1,1,-0.1428,-0.8,-0.9142,-0.9428,-0.8572,-0.8572,-0.2286,0.5428,1,1,-0.4858,-0.7142,-0.6,-0.2858,-0.3142,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.096,-0.096,-0.0916,-0.0774,-0.064,-0.0214,0.0288,0.0846,0.1868,0.4388,-0.5334,-0.2824,-0.7528,-0.374,-0.0044,0.1076,0.1866,1,-0.865,-0.555,-0.495,-0.51,-0.4,-0.305,-0.19,-0.22,-0.075,0.025,0.295,0.43,0.85,0.785,0.695,0.745,0.72,0.77,0.905,1,0.79,0.725,0.65,0.605,0.495,0.525,0.3,0.085,0.035,0.17,0.23,-0.06,-0.9096,-0.742,-0.6154,-0.552,-0.4932,-0.4752,-0.3756,-0.1584,0.104,0.258,0.3394,0.647,0.8326,0.8598,0.6742,0.7286,0.9774,1,0.8778,0.8642,0.9322,0.914,0.6516,0.5384,0.5476,0.5204,0.6652,0.7648,0.4978,0.5384,0.2398,0.0542,-0.3396,-0.0878,0.1544,-0.1306,0.0356,-0.1116,-0.0166,0.0262,0.2826,0.544,0.582,0.6674,0.544,0.2114,0.297,0.5486,0.8764,1,0.7862,0.506,0.3634,0.0784,-0.0926,0.1686,0.449,0.6532,0.5392,0.601,0.4252,0.6248,0.335,0.1734,-0.7338,-1,-1,1,-0.4,-1,-0.4,-0.0334,-1,-0.4226,0.014,0.2254,0.1268,0.3098,0.1972,0.3098,0.1408,0.0704,0.4366,0.662,0.8028,0.6902,0.2394,0.2536,0.4788,0.507,0.7042,0.7042,1,0.831,0.817,0.4226,0.324,0.2254,-0.0282,-0.014,-0.1126,-0.2112,-0.155,-0.0704,-0.4788,'11'
-0.6534,-0.2146,-0.0232,0.1782,0.5412,0.5512,0.4324,0.165,0.0166,0.066,0.0958,0.1354,0.1486,0.2014,0.495,0.6964,0.9108,0.9702,0.8712,0.7062,0.6832,0.7788,1,0.967,0.8746,0.6996,0.538,0.5512,0.6172,0.5808,0.5116,0.5214,-0.4852,-0.125,0.1636,0.247,0.5922,0.5358,0.6756,0.4554,0.2976,0.241,0.1726,0.128,0.1994,0.2976,0.5892,0.8274,0.997,0.9494,0.759,0.7024,0.7084,0.7916,0.9614,1,0.8512,0.7292,0.631,0.622,0.5864,0.5566,0.5624,0.4316,-0.5358,-0.1884,0.162,0.2146,0.4482,0.857,1,0.7314,0.53,0.6262,0.5446,0.5592,0.6614,0.8774,0.9592,0.8336,0.819,0.7664,0.6934,0.676,0.7518,0.8774,0.9446,0.8598,0.7372,0.6176,0.5124,0.4978,0.565,0.5386,0.5416,0.4744,-0.5634,-0.2852,0.045,0.056,0.1678,0.8472,0.869,0.8226,0.719,0.7818,0.8144,0.9318,1,0.6534,0.5252,0.4898,0.4788,0.457,0.4406,0.5688,0.5908,0.708,0.6672,0.678,0.498,0.416,0.4324,0.4488,0.4298,0.4434,0.5416,0.5334,-0.587,-0.3598,0.0294,0.0118,0.3658,0.7522,0.829,0.9144,0.9234,0.947,1,0.6076,0.4838,0.2626,0.2272,0.0648,0.0796,0.0648,0.1032,0.18,0.289,0.3068,0.4926,0.6312,0.6224,0.4514,0.3716,0.3216,0.3806,0.407,0.4042,0.2508,-0.6592,-0.4172,-0.1402,0.121,0.5478,0.7198,0.6528,0.9458,1,0.7802,0.5636,0.258,-0.1146,-0.1242,-0.2198,-0.344,-0.3376,-0.4012,-0.4172,-0.3822,-0.3822,-0.156,0.0574,0.2738,0.4808,0.4204,0.3854,0.2676,0.3026,0.293,0.2388,-0.0606,-0.4624,-0.129,-0.0322,0.613,0.5592,0.6666,0.914,0.9516,1,0.6076,0.3172,-0.2096,-0.215,-0.4838,-0.371,-0.6344,-0.7474,-0.6076,-0.6936,-0.6182,-0.613,-0.5322,-0.4624,-0.4194,-0.1828,-0.2956,-0.3764,-0.5268,-0.4946,-0.5216,-0.3764,-0.215,-0.5136,0.081,-0.081,0.1352,0.081,0.1352,0.1892,0.1892,-0.7838,0.027,0.1352,0.1892,-0.2432,0.1352,0.2432,0.4054,0.7838,0.6756,0.7838,0.2972,0.4594,0.4054,1,0.8378,0.7298,0.6756,0.2972,0.2972,0.6216,0.3514,0.3514,0.3514,-0.6666,-0.1852,0,0.3704,0.6296,0.5926,0.3704,0.2592,0.2222,0.2222,0.2592,0.2592,0.2962,0.4074,0.5556,0.7778,0.8518,0.963,1,0.7778,0.7778,0.8148,1,1,0.8148,0.7778,0.7038,0.6666,0.6296,0.6296,0.6296,0.6296,-0.6078,-0.255,0,0.0392,0.0392,0.804,0.8432,0.8236,0.6862,0.745,0.804,0.9412,1,0.6274,0.6078,0.5098,0.451,0.451,0.4118,0.549,0.647,0.7058,0.6274,0.6862,0.4118,0.3726,0.4118,0.4118,0.4314,0.4902,0.647,0.647,-1,-1,-1,-1,-1,-1,-1,-1,-0.955,-0.94,-0.9376,0.3274,0.7124,0.6576,0.7776,0.9474,0.715,0.2324,0.1526,-0.005,-0.315,-0.6924,-0.805,-0.8426,-0.9324,-0.945,-0.945,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.987,-0.983,-0.9586,0.0784,0.2474,0.2888,0.3318,0.8532,0.7208,0.3264,0.0472,-0.2902,-0.6274,-0.9054,-0.9448,-0.9612,-0.968,-0.9714,-0.9728,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9798,-0.94,-0.86,-0.355,-0.29,-0.2876,-0.3912,-0.6378,-0.6468,-0.5668,-0.5912,-0.6446,-0.6846,-0.6424,-0.6068,-0.6434,-0.5934,-0.66,-0.8068,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.1714,-0.5714,1,1,-0.7142,-0.9428,-0.5714,-0.6858,-0.2286,-0.5142,-0.5142,0.3142,0.7142,0,-0.9142,-0.8858,-0.7714,-0.7714,-0.5142,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.3448,0.3194,0.324,0.2906,0.3174,0.317,0.2946,0.1732,-0.2004,-0.0442,-0.56,0.0118,-0.962,-0.5546,0.1644,0.3004,0.2598,1,0.2242,-0.1896,0.3448,0.4828,0.138,0.6552,0.569,0.362,0.6206,0.6552,0.7242,0.362,0.8966,0.4828,0.638,0.4138,0.4828,0.1896,0.6724,0.1552,0.4482,0.3104,0.862,0.6896,0.7586,0.569,0.5172,0.4138,0.862,0.7586,0.3276,-0.2242,0,0.2156,0.6274,0.451,0.5686,0.745,0.9412,0.5294,0.8628,0.4902,0.7058,0.3334,0.9412,0.2942,0.353,0.9804,0.902,0.451,0.5686,0.4118,0.8236,0.4902,0.9216,0.7844,0.1568,0.5882,0.8432,0.3922,0.6078,0.2942,-0.3334,-0.451,0.0304,-0.1272,0.2364,0.1272,0.394,0.7818,0.4182,0.4546,0.9516,0.891,0.7454,0.8666,1,0.5878,0.7696,0.697,0.709,0.5758,0.6484,0.8182,0.8666,0.4304,0.4304,0.4304,0.2484,0.4546,0.4424,0.5394,0.3454,0.5272,0.6728,-0.2484,-0.992,1,-1,-1,-1,-1,-0.8,-1,1,0.2884,0.2692,0.2692,0.5962,0.8846,0.4038,0.3462,0.3654,-0.0192,-0.0192,0.1346,-0.1154,0.1346,0.1924,0.0962,0.0576,0.173,0.6154,0.75,0.6346,0.9616,0.7308,0.2116,0.0576,0.0384,0.4424,0.75,1,0.6154,0.7884,0.5576,-0.2308,'12'
-0.7242,-0.3068,0.0112,0.2074,0.5628,0.672,0.3938,0.3788,0.2024,0.1826,0.2224,0.1752,0.3466,0.2994,0.4782,0.7342,0.841,0.9304,0.9056,0.8336,0.8112,0.8956,0.9006,1,0.9156,0.7018,0.5876,0.6696,0.6024,0.687,0.774,0.8212,-0.6702,-0.2748,-0.055,0.097,0.4012,0.4924,0.5532,0.565,0.3264,0.2818,0.352,0.2398,0.3872,0.5368,0.6094,0.8878,0.8924,0.8246,0.7754,0.7942,0.745,0.8666,0.9228,1,0.7216,0.6818,0.6328,0.593,0.6188,0.5906,0.703,0.7052,-0.7336,-0.397,-0.0436,0.063,0.2736,0.5108,0.8716,0.8038,0.2688,0.5108,0.5594,0.644,0.6344,0.8426,0.8984,1,0.7288,0.598,0.7022,0.649,0.7384,0.8886,0.971,0.736,0.6562,0.586,0.523,0.5812,0.5642,0.6246,0.7578,0.7216,-0.6714,-0.383,0.0342,0.0796,0.1834,0.7396,0.8482,0.8028,0.7926,0.7244,0.8888,0.9266,1,0.9292,0.7092,0.5372,0.459,0.5146,0.474,0.5904,0.7218,0.8256,0.818,0.7346,0.6006,0.5524,0.5474,0.5904,0.6284,0.7218,0.7902,0.7902,-0.6714,-0.4242,0.0056,-0.0224,0.2922,0.6686,0.9158,0.9382,0.632,1,0.986,0.8006,0.6488,0.413,0.3146,0.2388,0.25,0.1966,0.1966,0.3146,0.455,0.5758,0.7304,0.7696,0.6798,0.5674,0.4972,0.5758,0.5842,0.6882,0.8202,0.7808,-0.6768,-0.4592,-0.0442,0.1666,0.6054,0.762,0.7176,0.9422,1,0.9694,0.7518,0.3844,0.17,0.1224,0.0374,0.068,-0.017,-0.1768,-0.0238,0.0374,0.0068,0.0306,0.4184,0.5952,0.6224,0.517,0.4218,0.4864,0.3674,0.4524,0.6088,0.6904,-0.7518,-0.3772,0.2102,0.4582,0.6708,0.7924,0.7266,0.9544,1,0.6202,0.4228,0.2254,-0.3468,-0.3418,-0.4582,-0.4836,-0.3924,-0.4582,-0.6354,-0.6354,-0.5292,-0.362,-0.0228,0.2,0.195,-0.0734,-0.205,-0.286,-0.433,-0.3468,0.0178,0.1746,-0.7894,-0.4036,0.0176,0.193,0.6492,0.7192,0.4386,0.3684,0.193,0.0526,0.228,0.2632,0.2982,0.2982,0.3684,0.6842,0.8948,0.965,0.7544,0.8246,0.6842,0.7192,1,0.9298,0.6842,0.579,0.6492,0.579,0.579,0.6842,0.5438,0.8948,-0.7,-0.2666,0,0.2666,0.5334,0.6666,0.4,0.4,0.2334,0.2666,0.2,0.1334,0.4,0.2666,0.4666,0.7,0.9,0.8666,0.9334,0.8,0.8334,0.9,0.9334,1,0.9,0.7334,0.6,0.6334,0.5334,0.7,0.7334,0.8334,-0.7526,-0.464,-0.1546,-0.031,0.299,0.4846,0.7732,0.6702,0.8144,1,0.7732,0.4226,0.3814,0.2164,0.031,-0.0928,0.0722,-0.134,0.0104,0.0928,0.1958,0.1958,0.567,0.7526,0.6288,0.4846,0.464,0.5052,0.4846,0.5258,0.6908,0.6494,-1,-1,-1,-1,-1,-1,-1,-1,-0.9672,-0.9596,-0.3724,0.5592,0.9056,0.4128,0.3552,0.7074,0.4244,0.1608,-0.0606,-0.334,-0.5458,-0.7324,-0.848,-0.8768,-0.9018,-0.9384,-0.9558,-0.9538,-0.9596,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9922,-0.9924,-0.6032,-0.0144,0.5324,0.4592,0.5652,0.8806,0.5246,0.056,-0.321,-0.6148,-0.8304,-0.9318,-0.9672,-0.975,-0.9674,-0.9654,-0.9788,-0.9796,-0.9842,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9,-0.98,-0.5334,-0.1626,-0.1824,-0.1356,-0.3424,-0.4646,-0.44,-0.4646,-0.56,-0.689,-0.8334,-0.8712,-0.9434,-0.91,-0.7068,-0.58,-0.7068,-0.62,-0.7934,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7428,1,1,1,-0.7142,-0.7428,-0.5714,-0.2,-0.0572,-0.4858,0.0858,0.9714,0.9428,-0.2858,-0.7142,-0.6,-0.6572,-0.8286,-0.8572,-0.9142,-0.4572,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.2978,0.313,0.295,0.2998,0.2936,0.2728,0.2378,0.1504,-0.2,-0.0436,-0.6134,0.0352,-0.4754,-0.2706,-0.0302,0.1606,0.4046,1,-0.3954,0.1162,0.3488,0.3488,-0.1162,-0.0232,0.0232,0.3954,0.721,0.8604,0.907,1,1,0.721,0.628,0.6744,0.6744,0.628,0.628,0.5814,0.2094,-0.2558,-0.1162,-0.0232,0.3488,0.4884,0.4884,0.4884,0.4884,0.4418,0.3488,-0.0698,-0.5294,0.0392,0.451,0.4118,0.255,0.2352,0.2746,0.647,0.8628,0.9216,0.804,1,0.8824,0.6078,0.549,0.6862,0.8432,0.8824,0.804,0.5294,0.2156,0.0588,-0.0392,-0.255,0.2746,0.2352,0.196,0.255,0.2942,0.2352,0.098,0.0588,-0.5222,0.1682,0.593,0.5044,0.1682,0.115,0.2212,0.5398,0.9292,0.8584,0.7168,0.9116,0.7876,0.5752,0.6106,0.7522,1,0.8938,0.8762,0.6814,0.0442,-0.1328,-0.2566,-0.2566,0.2566,0.3098,0.3452,0.3982,0.4336,0.3452,0.416,0.1858,-0.0418,-1,-1,1,-0.8,-1,-0.8,-0.8334,-1,-0.405,-0.2562,0.0414,0.5702,0.8016,0.9504,0.8182,0.5702,0.2232,0.1404,0.091,0.2728,0.2066,-0.0414,-0.2066,-0.124,0.3884,0.5538,1,0.9834,0.5206,0.0248,-0.157,-0.157,-0.2066,-0.0082,0.438,0.3388,-0.0414,0.2232,0.124,-0.3224,'12'
-0.555,-0.0942,0.0392,0.322,0.3586,0.5078,0.3456,0.2382,0.1362,0.2356,0.2774,0.2828,0.0314,0.0158,0.1702,0.322,0.6048,0.7434,0.9188,0.7958,0.7774,0.7644,0.8586,0.924,1,0.788,0.809,0.7146,0.7146,0.7042,0.7146,0.8874,-0.5454,-0.1038,0.0286,0.2468,0.509,0.6546,0.4416,0.3766,0.3194,0.3506,0.439,0.4286,0.1532,0.0936,0.3012,0.5506,0.691,0.7298,0.8234,0.6598,0.7246,0.7688,0.7844,1,0.9766,0.7428,0.6676,0.6936,0.5766,0.6416,0.6468,0.7506,-0.4634,-0.0624,0.073,0.2164,0.49,0.5512,0.7742,0.761,0.4874,0.4184,0.5884,0.397,0.4608,0.6202,0.676,1,0.9124,0.729,0.5776,0.583,0.6734,0.7212,0.9868,0.9654,0.8486,0.7184,0.6998,0.6574,0.6786,0.7078,0.7742,0.915,-0.5166,-0.1592,0.2042,0.2972,0.5436,0.7868,1,0.8198,0.3544,0.7148,0.6726,0.7568,0.916,0.988,0.946,0.901,0.7868,0.7028,0.6276,0.4444,0.4504,0.6906,0.937,0.967,0.8288,0.6726,0.6666,0.6516,0.6636,0.7178,0.8768,0.934,-0.4746,-0.1122,0.2934,0.2534,0.238,0.5576,0.5822,0.2196,0.487,0.573,0.6866,0.9016,1,0.8526,0.6652,0.6344,0.5638,0.5668,0.4686,0.2904,0.1274,0.2166,0.5054,0.5024,0.2136,-0.0168,-0.0292,0.109,0.2996,0.3886,0.404,0.3824,-0.281,0.0806,0.6856,0.6542,-0.391,-0.0452,0.1434,-0.0924,0.1474,0.5128,0.6502,0.6936,0.8036,1,0.7054,0.6268,0.4382,0.662,0.6464,0.336,0.0766,0.1278,0.2966,0.3046,0.1788,-0.505,-0.5482,-0.2378,-0.0844,-0.0844,-0.1316,-0.3478,-0.2012,0.2068,0.4582,0.3352,-0.4022,-0.514,-0.2402,-0.324,-0.486,0.1788,0.2068,0.296,0.6592,0.8716,1,0.8212,0.676,0.6872,0.6704,0.2234,0.257,0.1508,0.2458,0.2794,-0.1956,-0.6034,-0.3854,-0.257,-0.2794,-0.3072,-0.3798,-0.6312,-0.6154,-0.077,0.077,0.4616,0.423,0.4616,0.423,0.2308,0.1924,0.423,0.423,0.2308,0.0384,0.077,0.077,0.3076,0.577,0.6538,0.7692,0.7692,0.8846,0.6538,0.8076,0.923,1,0.8076,0.6538,0.6538,0.6924,0.577,0.6924,0.7692,-0.7242,-0.1724,-0.069,0.2068,0.2758,0.4138,0.2414,0.138,0.138,0.1724,0.2068,0.2414,-0.0344,-0.069,0.138,0.3104,0.5172,0.7932,0.9656,0.8966,0.6896,0.7586,0.8276,0.8966,1,0.7932,0.7586,0.7242,0.7242,0.7586,0.7932,0.9656,-0.5778,-0.2,0.1778,0.2666,0.4444,0.6666,0.7112,0.2222,0.4444,0.5112,0.6666,0.9112,1,0.7112,0.5112,0.6222,0.6222,0.5112,0.4666,0.1778,0.0888,0.0222,0.4666,0.3556,-0.0888,-0.0666,0.0222,0.2,0.4222,0.4222,0.5556,0.3778,-1,-1,-1,-1,-1,-1,-1,-0.966,-0.9722,-0.952,-0.7816,0.0426,0.3494,0.8636,0.6732,0.1572,0.1836,0.0828,-0.182,-0.32,-0.5074,-0.7444,-0.7614,-0.8574,-0.8962,-0.9536,-0.966,-0.9736,-0.9628,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9896,-0.9884,-0.9594,-0.8544,0.6916,0.7776,0.8238,0.888,0.6914,0.4576,0.0198,-0.6028,-0.8044,-0.877,-0.9012,-0.9402,-0.9572,-0.968,-0.9778,-0.9828,-0.9872,-0.9862,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9282,-0.9068,-0.86,-0.1668,-0.1426,-0.265,-0.365,-0.1626,-0.3476,-0.4824,-0.5134,-0.5246,-0.66,-0.7446,-0.6868,-0.85,-0.7068,-0.7,-0.5668,-0.8134,-0.9068,-0.82,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.5428,-0.6286,1,1,1,-0.8286,-0.6572,-0.3428,-0.3714,-0.3142,1,1,-0.5428,-0.6,-0.4572,-0.6858,-0.8572,-0.9142,-0.9428,-0.8858,-0.9714,-0.2,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.73,0.7418,0.7168,0.68,0.6556,0.63,0.6396,0.5686,0.3018,-0.4156,-0.64,-0.0118,-0.89,-0.0772,0.8996,0.7844,0.7974,1,-0.6586,-0.0976,0.0976,0.0244,0.0488,0.0732,-0.1708,-0.0244,0.4634,0.878,0.8536,0.9512,1,0.7804,0.756,0.7318,0.5366,0.8536,0.756,0.6098,0.756,0.317,-0.2682,-0.5122,-0.3414,-0.3658,-0.317,-0.317,-0.2196,-0.2682,-0.3658,-0.7074,-0.6068,-0.2136,-0.1112,0.0428,-0.0086,0.1794,-0.1624,-0.1794,0.3676,0.7606,0.7264,0.9658,0.829,0.6068,0.3334,0.4358,0.5042,0.5384,0.8462,0.7606,1,0.4018,-0.2478,-0.3846,-0.1624,-0.0256,-0.077,-0.1282,0.0256,0.5556,0.5214,0.0598,-0.1112,0.1764,0.2942,0.4248,0.3202,0.451,0.0326,0.1896,0.4902,0.9216,1,0.83,0.9216,0.7778,0.6078,0.7386,0.7254,0.5424,0.7516,0.7516,0.6732,0.1372,-0.255,-0.3334,-0.3334,-0.3464,-0.268,-0.281,-0.2942,0.0458,0.1896,-0.1896,-0.063,-1,-1,1,-1,-1,-0.6,-0.7334,-1,-0.2758,-0.1724,0.0344,0.0172,-0.0172,0.0862,0.5862,1,0.6896,0.2932,0.1724,-0.2068,0.1206,0.2242,-0.0172,0.1896,0.2586,0.1724,0.0344,0.2068,0.0518,0.2932,0.431,0.2414,0.1896,-0.1034,-0.0518,0.0518,0,0.069,0.3276,-0.1206,'13'
-0.581,-0.1098,0.192,0.409,0.6384,0.7656,0.4764,0.4438,0.4014,0.404,0.5686,0.5138,0.1022,-0.0124,0.1522,0.4438,0.5536,0.793,0.8454,0.8678,0.8654,0.8404,0.7806,1,0.8704,0.8578,0.6584,0.7282,0.581,0.6534,0.7356,0.7456,-0.564,-0.106,0.1306,0.3326,0.739,0.862,0.6724,0.7192,0.6108,0.601,0.6306,0.5492,0.3966,0.4262,0.564,0.8646,0.9408,0.9384,0.9434,0.7586,0.734,0.84,0.8104,1,0.8768,0.739,0.5592,0.6232,0.5198,0.5394,0.665,0.6848,-0.634,-0.263,0.1078,0.2242,0.52,0.5442,0.8934,0.7988,0.6,0.5466,0.6048,0.6316,0.6048,0.714,0.8958,1,0.7648,0.7988,0.5588,0.5006,0.5346,0.6484,0.7478,0.7212,0.7042,0.5054,0.4496,0.44,0.3964,0.3672,0.5224,0.5394,-0.6198,-0.2986,0.1808,0.2236,0.5528,0.8662,0.9732,0.6172,0.561,0.6278,0.7188,0.7912,1,0.8956,0.9358,0.7966,0.7216,0.7402,0.5824,0.4538,0.4646,0.601,0.7242,0.6948,0.5154,0.352,0.2772,0.3548,0.3816,0.4726,0.5154,0.4404,-0.443,0.0962,0.6918,0.6562,-0.1882,-0.0252,0.1734,0.0162,0.1614,0.677,0.7986,1,0.9822,0.8608,0.8638,0.7986,0.6386,0.754,0.754,0.6712,0.5586,0.76,0.674,0.4162,-0.0488,-0.2504,0.1052,0.4726,0.443,0.4252,0.3362,0.1734,-0.4024,0.195,0.884,0.8102,-0.2408,-0.2654,-0.1424,-0.1776,-0.304,0.5676,0.6802,0.6942,0.9438,1,0.8242,0.631,0.652,0.6064,0.666,0.5114,0.3602,0.4376,0.5396,0.413,-0.2022,-0.5184,-0.4762,-0.195,0.0932,-0.0088,-0.1318,-0.4938,-0.1728,0.3874,1,0.9948,0.5498,0.157,-0.4032,-0.555,-0.5498,0.1728,0.4136,0.2514,0.445,0.9634,0.801,0.2932,0.5446,0.3664,0.3926,-0.021,-0.089,-0.2566,-0.246,-0.2408,-0.4346,-0.5392,-0.6074,-0.2984,-0.424,-0.3194,-0.2408,-0.288,-0.6604,-0.0566,0.2076,0.4716,0.585,0.6604,0.3208,0.4716,0.3962,0.434,0.585,0.5472,0.0944,-0.0188,-0.0188,0.3584,0.5472,0.7358,0.7736,0.8868,0.8868,0.849,0.849,1,0.9246,0.9246,0.7736,0.7736,0.585,0.6982,0.6604,0.7736,-0.4916,-0.017,0.2542,0.4576,0.5932,0.695,0.3898,0.4916,0.4238,0.4238,0.5932,0.5254,0.1186,-0.0508,0.1186,0.3898,0.4916,0.695,0.7628,0.9322,0.9322,0.7966,0.7288,1,0.8984,0.8644,0.661,0.7628,0.5594,0.661,0.7288,0.7288,-0.5534,-0.2816,0.1456,0.3204,0.4564,0.7282,0.767,0.4368,0.4758,0.5728,0.67,0.8834,1,0.7088,0.631,0.6116,0.7088,0.7282,0.5146,0.4952,0.4758,0.4758,0.4174,0.4368,0.165,0.1262,0.1844,0.3592,0.4368,0.5534,0.3786,0.1262,-1,-1,-1,-1,-1,-1,-0.96,-0.9686,-0.9628,-0.9142,-0.1942,0.1372,0.7386,0.78,0.0842,0.0986,0.0372,-0.0972,-0.0372,-0.2642,-0.44,-0.65,-0.8342,-0.9058,-0.9514,-0.9586,-0.9686,-0.9772,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.988,-0.988,-0.9796,-0.9352,-0.2756,-0.065,0.4692,0.7934,0.4178,0.317,0.0998,-0.5356,-0.677,-0.7836,-0.8664,-0.9134,-0.954,-0.9534,-0.9536,-0.972,-0.9842,-0.9888,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8376,-0.9434,-0.8934,-0.17,-0.1868,-0.189,-0.3912,-0.436,-0.356,-0.444,-0.508,-0.516,-0.692,-0.724,-0.76,-0.74,-0.7068,-0.4934,-0.1968,-0.2768,-0.78,-0.9534,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3142,-0.9142,1,1,1,1,-0.7714,-0.6,-0.5714,-0.6858,0.9714,1,-0.6858,-0.4286,-0.3714,-0.5142,-0.6572,-0.5714,-0.6572,0,-0.1428,-0.0572,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.9654,0.7272,0.702,0.7026,0.6654,0.6254,0.5934,0.4828,0.2684,-0.1946,-0.6842,-0.6,0.153,-0.1462,-0.1726,-0.0856,-0.0166,0.0816,1,-0.2706,-0.0824,0.2352,-0.1412,-0.1648,0.1412,-0.047,-0.2588,0.1882,0.7058,0.7058,0.4,0.553,0.4118,0.3764,0.353,0.3648,0.3294,0.9764,1,0.8118,0.6942,0.0118,-0.047,0.2236,0.6706,0.6588,0.447,0.2706,0,-0.1294,-0.3294,-0.2912,0.0254,0.3418,0.1646,0.0126,0.2152,0.1392,0.1012,0.3798,0.6202,0.7974,0.7088,0.9874,0.9368,0.6836,0.2912,0.4936,0.3038,0.8988,1,0.9746,0.6962,0.633,0.2658,0.6202,0.595,0.7468,0.8354,0.2532,0.2912,0.076,-0.3038,0.0246,0.5432,0.6296,0.6172,0.5124,0.5864,0.5062,0.2408,0.6914,0.9568,0.8888,0.9012,1,0.9074,0.7654,0.7408,0.7902,0.7284,0.9814,0.9506,0.784,0.4814,0.1666,0.1482,0.4074,0.4754,0.463,0.4444,0.1728,0.074,-0.0618,-0.2284,0.575,-1,-1,1,-1,-1,-0.4,-0.5666,-1,-0.1654,0.2284,0.0552,0.37,0.2284,0.4804,0.6536,0.7322,0.9056,0.8898,0.244,0.37,0.6692,0.5118,0.4804,0.7322,0.8898,0.9212,0.9528,0.7008,0.5118,1,0.811,0.9528,0.9528,0.622,0.496,0.4174,0.2756,0.2756,0.1654,0.0078,'13'
-0.5724,-0.173,0.1984,0.3418,0.5078,0.5022,0.2602,0.2236,0.0998,0.2434,0.3784,0.1448,-0.1674,-0.0802,-0.114,0.1082,0.4374,0.5386,0.9774,1,0.851,0.758,0.7974,0.8538,0.9212,0.9494,0.9662,0.7694,0.7412,0.685,0.6596,0.7468,-0.6172,-0.2342,0.1432,0.2744,0.6252,0.676,0.3548,0.3146,0.2424,0.3146,0.4378,0.186,-0.0468,0.079,0.0468,0.2904,0.6224,0.751,0.7884,0.842,0.7162,0.7028,0.81,0.8634,1,0.7992,0.8448,0.7054,0.7082,0.601,0.5314,0.684,-0.5702,-0.1698,0.1034,0.2466,0.5306,0.5862,0.6896,0.6738,0.4802,0.4588,0.6074,0.4324,0.358,0.3952,0.4748,0.8038,0.7958,0.947,0.7958,0.732,0.6896,0.732,0.9762,0.9496,1,0.8912,0.7904,0.7056,0.7666,0.7188,0.7242,0.8116,-0.6736,-0.2996,0.0098,0.1392,0.4008,0.412,0.7244,0.6344,0.4458,0.4908,0.5528,0.6962,0.6822,0.7496,0.879,1,0.7158,0.6822,0.5978,0.5386,0.6174,0.8172,0.9296,0.9382,0.9746,0.775,0.6934,0.7412,0.5864,0.6456,0.5584,0.5556,-0.5624,-0.196,0.2046,0.2586,0.5312,0.463,0.5796,0.3238,0.3012,0.4688,0.4972,0.6762,0.7812,0.8864,1,0.9518,0.696,0.7302,0.7358,0.463,0.412,0.5398,0.7556,0.9546,0.9886,0.8438,0.7102,0.6876,0.659,0.6108,0.5142,0.463,-0.488,0.0784,0.68,0.6448,-0.12,-0.1904,-0.1168,-0.1776,0.056,0.104,0.1616,0.4144,0.8176,0.9424,1,0.8368,0.824,0.8464,0.824,0.7056,0.4688,0.4816,0.6128,0.7536,0.9744,0.92,0.6192,0.4784,0.44,0.488,0.5296,0.4272,-0.5896,0.0242,0.5056,0.412,-0.147,-0.454,-0.2536,-0.2634,-0.1502,0.0306,0.1148,0.2084,0.5316,0.9256,1,0.7512,0.735,0.7382,0.803,0.5056,0.4248,0.3442,0.4572,0.6284,0.6996,0.7706,0.5702,0.3796,0.3086,0.286,0.2472,0.1374,-0.647,-0.1372,0.1372,0.2156,0.451,0.3726,0.1764,0.1764,-0.1764,-0.0588,0.2942,0.255,-0.4118,-0.451,-0.1764,0.0588,0.3726,0.451,0.8824,1,1,0.7254,0.6862,0.804,0.7254,0.7648,0.804,0.5294,0.647,0.5686,0.647,0.6862,-0.5862,-0.2758,0.138,0.2414,0.4482,0.4482,0.2414,0.1034,0.1034,0.2068,0.3104,-0.1034,-0.1034,-0.1724,-0.1034,0,0.3448,0.4138,0.8966,0.8966,0.8276,0.6896,0.7932,0.862,0.8276,1,0.862,0.7586,0.6206,0.6896,0.7586,0.6552,-0.6222,-0.1556,0.2444,0.1556,0.3112,0.2444,0.3334,-0.0222,0.1556,0.2666,0.4,0.5112,0.6888,1,0.9334,0.7778,0.6888,0.6444,0.6888,0.4222,0.3334,0.3334,0.6,0.6,0.6444,0.6222,0.5778,0.4222,0.4,0.4222,0.2888,0.3334,-1,-1,-1,-1,-1,-1,-1,-0.9612,-0.9612,-0.8498,-0.0666,0.1882,0.4852,0.951,0.7704,0.2506,0.097,0.0194,0.1864,0.2692,0.0126,-0.254,-0.4988,-0.6016,-0.6996,-0.806,-0.9308,-0.9594,-0.9628,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9892,-0.9894,-0.8768,0.1736,0.2642,0.6428,0.7648,0.8538,0.6184,0.546,0.286,-0.1464,-0.5588,-0.5996,-0.7124,-0.8406,-0.902,-0.9412,-0.9086,-0.9706,-0.9718,-0.9764,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.9668,-0.7168,0.1,-0.0576,-0.045,-0.1376,-0.03,-0.1626,-0.1956,-0.269,-0.3578,-0.5512,-0.7228,-0.7496,-0.7296,-0.9528,-0.8628,-0.7796,-0.7028,-0.3328,-0.6728,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6572,1,1,1,0.6,-1,-0.6,-0.6,-0.2,-0.2572,-0.4572,1,-0.1142,-0.7714,0.1714,0.3428,0.4,0.2,-0.0572,-0.8,-0.6858,-0.6572,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.8032,0.8212,0.7974,0.806,0.8038,0.8006,0.792,0.747,0.5528,0.0238,-0.68,-0.0118,0.4438,0.0034,0.3852,0.3792,0.5938,1,-0.3714,0.2428,0.6,0.2714,0.1286,0.2572,0.0572,0.0572,0.2286,0.9572,1,0.8428,0.9858,0.9142,0.6286,0.5428,0.6572,0.8286,0.6428,0.7572,0.6714,0.5428,0.5286,0.5572,0.2428,0.6,0.4714,0.2858,0.0858,-0.0142,-0.2428,-0.2428,-0.2896,0.2022,0.3334,0.1912,0.2022,0.2132,0.0928,-0.0602,0.2786,0.7596,0.7378,0.694,0.7924,0.694,0.5846,0.6394,0.8252,1,0.8142,0.6174,0.4754,0.1912,0.0928,0.071,0.0054,0.1912,0.1912,0.1584,-0.071,-0.0602,-0.1366,-0.235,-0.3586,0.249,0.2658,0.1392,0.0126,0.249,-0.114,-0.0632,0.2406,0.9662,1,0.7468,0.8396,0.7468,0.6034,0.5864,0.865,1,0.8734,0.7552,0.5444,0.2996,0.114,0.2152,0.1984,0.443,0.384,0.3586,0.1054,0.114,0.038,-0.114,1,-1,-1,1,-0.6,-1,0,-0.6666,1,-0.5666,-0.4166,-0.2834,0.0334,0.1334,-0.0834,0.25,0.3334,0.4166,0.2334,0.15,0.2166,0.3666,0.0834,-0.0166,-0.0666,0.1334,0.4834,1,0.8166,0.5166,0.6834,0.35,0.1666,0.1,0.0834,0.3666,0.1166,-0.0834,0.5834,0.45,-0.1666,'14'
-0.618,-0.1554,0.222,0.4108,0.4638,0.542,0.3762,0.4062,0.2544,0.2774,0.489,0.3832,-0.1738,-0.1186,-0.061,0.1324,0.3142,0.5398,0.8388,1,0.9056,0.779,0.7928,0.7814,0.9746,0.9126,0.8296,0.657,0.664,0.595,0.6478,0.6432,-0.6328,-0.1492,0.1778,0.3792,0.7796,0.9052,0.6658,0.692,0.564,0.5142,0.7228,0.609,0.1824,0.289,0.4004,0.7086,0.7346,0.9432,0.891,0.9242,0.8104,0.9076,0.846,1,0.8484,0.9146,0.5592,0.5498,0.5474,0.4454,0.4644,0.4502,-0.7136,-0.3032,0.0146,0.1702,0.504,0.5604,0.8264,0.797,0.6258,0.513,0.6528,0.5062,0.5784,0.7272,0.7002,1,0.8828,0.6956,0.5016,0.6032,0.6482,0.6934,0.9008,0.849,0.5738,0.5084,0.443,0.319,0.3642,0.3304,0.3462,0.4206,-0.6616,-0.3464,0.1346,0.199,0.5444,0.6156,0.7676,0.5536,0.5512,0.5028,0.6478,0.7422,0.7192,0.8872,1,0.8988,0.6986,0.6524,0.535,0.4132,0.2866,0.6018,0.7238,0.7514,0.6432,0.512,0.4224,0.3786,0.3532,0.3394,0.466,0.4752,-0.58,0.0146,0.5614,0.5112,0.1784,0.0014,0.1414,0.1308,0.0542,0.3422,0.4796,0.6116,0.8018,1,0.9524,0.8388,0.897,0.8916,0.8468,0.58,0.5456,0.5932,0.8282,0.7886,0.6776,0.3818,0.2998,0.2418,0.1836,0.1862,0.181,-0.0224,-0.5102,0.109,0.684,0.545,0.1122,-0.267,-0.0394,-0.0426,0.1342,0.3364,0.4692,0.523,0.583,0.9462,0.962,1,0.82,0.8704,0.88,0.5924,0.2512,0.387,0.5608,0.564,0.4312,0.1596,-0.207,-0.2764,-0.387,-0.346,-0.3586,-0.5356,-0.2982,0.3596,0.9912,1,0.1184,-0.1404,-0.285,0.0088,0.0614,-0.3158,-0.079,0.1448,-0.0482,0.079,0.3992,0.386,0.3246,0.421,0.3422,-0.0044,-0.1052,-0.2192,0.329,0.5,0.0482,-0.193,-0.3026,-0.7018,-0.8334,-0.7018,-0.6798,-0.7236,-0.6326,-0.0204,0.3062,0.551,0.347,0.4694,0.3062,0.4694,0.1428,0.2244,0.2654,0.347,0.0204,-0.0204,0.0612,0.1428,0.3878,0.5102,0.5918,0.8368,0.6734,0.7552,0.7552,0.8368,0.9592,1,0.8776,0.8368,0.7552,0.6326,0.7552,0.6734,-0.7022,-0.0638,0.1914,0.532,0.4894,0.4894,0.3192,0.4894,0.2766,0.3618,0.532,0.4894,0.0212,-0.0212,0.1064,0.1064,0.4468,0.4894,1,0.8298,0.9574,0.7872,0.8724,0.7022,0.9148,0.7872,0.9148,0.6596,0.7872,0.7022,0.7872,0.7872,-0.6,-0.2222,0.2666,0.4888,0.4444,-0.0222,0.0222,0.2666,0.1112,0.3334,0.5112,0.8666,0.9334,1,0.9112,0.8444,0.8444,0.9112,0.8666,0.5556,0.4666,0.6,0.6,0.6888,0.6,0.5112,0.2888,0.2666,0.2444,0.1334,-0.0444,-0.0222,-1,-1,-1,-1,-1,-1,-0.9436,-0.9518,-0.9624,-0.5376,-0.1548,0.3158,0.4058,0.887,0.203,0.1946,0.1338,0.1088,-0.0104,-0.3766,-0.3452,-0.5356,-0.8158,-0.8786,-0.956,-0.956,-0.956,-0.9686,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9792,-0.981,-0.9576,-0.5962,-0.4108,0.6812,0.3136,0.5416,0.6104,0.7858,0.6272,-0.045,-0.4934,-0.68,-0.7962,-0.8782,-0.934,-0.9456,-0.9598,-0.9602,-0.9736,-0.9776,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9468,-0.94,-0.8934,-0.3068,-0.4568,-0.2382,-0.2782,-0.52,-0.4056,-0.4782,-0.4346,-0.5056,-0.6946,-0.7256,-0.9038,-0.89,-0.94,-0.72,-0.5534,-0.5934,-0.8134,-0.94,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4572,-0.7142,1,1,1,0.9142,-0.4286,-0.3714,-0.7714,-0.8,-0.7142,1,-0.3714,-0.3714,-0.3428,-0.2286,-0.6858,-0.8286,-0.8286,-0.6572,-0.6858,-0.1142,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0.796,0.804,0.7988,0.7906,0.792,0.7236,0.6212,0.4054,-0.0372,-0.459,-0.6534,0.3176,-0.4536,-0.1098,0.642,0.9802,0.8298,1,-0.3072,0.4902,0.621,0.451,0.4902,0.4902,0.3856,0.1634,0.5816,0.9738,0.987,0.8432,1,0.9608,0.7908,0.7254,0.8432,0.987,1,0.817,0.817,0.7908,0.2942,0.1242,-0.1764,0.0326,0.2026,0.0458,-0.0066,-0.1896,0.0588,-0.1764,-0.2994,0.465,0.5032,0.414,0.3248,0.5668,0.2484,-0.1338,0.3758,0.809,0.9746,0.6434,0.9746,1,0.4778,0.414,0.605,0.6688,0.6688,0.6942,0.5414,0.5796,0.0446,-0.2994,-0.414,-0.0956,-0.0828,-0.0828,-0.2994,-0.465,-0.0446,-0.3504,-0.09,0.7038,0.7672,0.5978,0.5238,0.5978,0.4074,0.0582,0.3862,0.9366,1,0.7248,0.873,0.9576,0.5556,0.4604,0.6508,0.5556,0.5556,0.6402,0.545,0.545,0.1006,0.0158,-0.0582,-0.0158,0.1322,0.1534,-0.2486,-0.2486,-0.037,-0.1534,0.1144,-1,-1,1,-0.8,-1,-0.6,-0.6666,-1,-0.6236,-0.2942,0.2,0.553,0.7882,0.2706,0.3882,0.153,0.9764,0.553,0.3176,0.5294,0.4118,0.0118,0.0118,0.0824,0.6706,0.553,1,0.953,0.5294,0.1058,0.2942,0.3648,0.1058,0.0118,0.0352,-0.0118,-0.1294,-0.2236,0.0588,-0.247,'14'
-0.6314,-0.1716,0.0802,0.343,0.6424,0.781,0.8066,0.8066,0.7044,0.73,1,0.989,0.6678,0.4928,0.4416,0.4198,0.4598,0.562,0.7044,0.8504,0.8212,0.3796,0.27,0.2554,0.1788,0.3138,0.3614,0.4526,0.551,0.5218,0.4088,0.6496,-0.6568,-0.2254,0.049,0.2288,0.585,0.6634,0.745,0.768,0.7516,0.7352,1,0.8856,0.2092,0.2026,0.2942,0.2418,0.2582,0.4052,0.4836,0.8006,0.7222,0.245,0.1504,0.2516,0.2058,0.2386,0.3104,0.2974,0.5228,0.4478,0.4084,0.67,-0.6476,-0.2724,0.1158,0.243,0.6248,0.6574,0.7488,0.6998,0.8172,0.8826,1,0.6966,0.1908,0.1908,0.1386,0.2366,0.1518,0.2756,0.6508,0.7064,0.5074,0.38,0.2724,0.181,0.1712,0.2104,0.2822,0.4518,0.4324,0.23,0.403,0.6444,-0.6084,-0.2528,0.2202,0.354,0.7748,0.7162,0.7358,0.6934,0.7162,1,0.8956,0.3148,0.0864,0.1092,0.168,0.0376,0.0766,0.204,0.429,0.5628,0.5856,0.3214,0.1942,0.106,0.0604,0.1616,0.2562,0.2594,0.1092,0.1322,0.3572,0.6314,-0.5484,-0.2616,0.2402,0.5448,0.6954,0.6594,0.6022,0.6882,1,0.957,0.3942,0.0968,0.061,-0.0574,0.0322,-0.0286,-0.0538,0.0574,0.2474,0.4802,0.5268,0.3334,0.1828,0.043,0.0286,0.1218,0.147,0.1112,-0.043,-0.0216,0.3334,0.5842,-0.535,-0.2264,0.3416,0.7736,0.856,0.5844,0.7942,0.8106,1,0.753,0.288,0.0412,-0.177,-0.2058,-0.1028,-0.1852,-0.2222,-0.144,-0.0164,0.3252,0.391,0.2222,-0.0082,-0.0288,-0.1358,-0.0494,0.0618,0.177,-0.107,0.0124,0.2182,0.5226,-0.5034,-0.1034,0.4344,0.8528,0.9402,0.4896,0.9954,1,0.4298,0.1448,0.0712,-0.3702,-0.4298,-0.4298,-0.3242,-0.5218,-0.223,-0.1724,-0.5126,-0.1356,-0.0574,-0.0988,-0.3932,-0.5954,-0.5402,-0.4712,-0.4022,-0.2828,-0.4022,-0.3886,-0.4298,-0.361,-0.3818,-0.2,0.091,0.5272,0.6364,0.7818,0.8546,0.8546,0.6728,0.709,0.891,0.891,0.6364,0.6364,0.6728,0.5272,0.4182,0.491,0.9636,1,0.8546,0.4182,0.309,0.2364,0.0182,0.3454,0.1636,0.2364,0.6,0.4546,0.4546,0.6728,-0.6078,-0.0588,0.1764,0.3726,0.7254,1,1,0.804,0.7254,0.804,0.7648,0.9216,0.9216,0.451,0.3334,0.6078,0.5294,0.4902,0.6862,1,0.8432,0.451,0.2156,0.3334,0.3726,0.4118,0.5294,0.4902,0.6862,0.451,0.5294,0.804,-0.4792,-0.1042,0.2708,0.5208,0.6458,0.4792,0.6042,0.6666,1,0.9166,0.4584,0.1458,0.0624,-0.0624,0.0834,-0.0624,-0.0416,0.0416,0.2916,0.3958,0.4166,0.3124,0.2708,0,0.1042,0.1458,0.125,0.0208,-0.0834,0.0208,0.3334,0.4376,-1,-1,-1,-1,-1,-1,-0.9682,-0.9742,-0.9326,-0.1032,-0.1032,0.4366,0.8234,0.5834,0.4802,0.8512,0.9146,0.498,0.2362,0.0814,0.0376,-0.2916,-0.5654,-0.8552,-0.9146,-0.9186,-0.877,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9838,-0.9838,-0.946,0.0656,0.0412,0.507,0.9126,0.8622,0.9142,0.7236,0.5606,0.1032,-0.2262,-0.3878,-0.5598,-0.6908,-0.8512,-0.9202,-0.9516,-0.9532,-0.954,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.98,-0.7268,-0.3834,-0.31,-0.44,-0.42,-0.4916,-0.4516,-0.46,-0.543,-0.6172,-0.6476,-0.6376,-0.7776,-0.74,-0.7934,-0.64,-0.6768,-0.74,-0.58,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7428,-0.3714,1,1,0.8858,-0.3428,-0.7714,-0.9428,-0.7714,-0.6286,-0.8,-0.7714,-0.3714,-0.6286,0.4286,0.5142,-0.4858,-0.4572,-0.7428,-0.8286,-0.9142,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.802,-0.8066,-0.8178,-0.7924,-0.739,-0.691,-0.6218,-0.5244,-0.362,-0.1752,-0.6266,-0.1648,-0.0234,0.0922,0.5176,0.84,0.8452,1,-0.4,0.1684,0.6736,0.779,0.6526,1,0.9684,0.5264,0.579,0.9158,0.7474,0.2736,0.2422,0.5052,0.5684,0.3894,0.8842,1,0.7684,0.3578,-0.0106,0,0.0106,0.221,0.1368,0.6316,0.6736,0.4632,0.5158,0.6526,0.4422,0.2,-0.3756,0.1946,0.5204,0.6832,0.5476,0.8372,0.6832,0.4842,0.5114,0.7466,0.5294,0.2308,0.258,0.4932,0.466,0.3756,0.81,1,0.6742,0.0678,0.0588,0.0408,-0.0678,-0.0046,0.1132,0.3666,0.3666,0.285,0.1674,0.2218,0.276,-0.1132,-0.2954,0.1814,0.5234,0.6166,0.6684,0.9586,1,0.7202,0.6062,0.8446,0.741,0.2642,0.0466,0.3056,0.544,0.3782,0.772,0.8964,0.6788,0.2538,-0.0466,0.316,0.2954,0.202,0.4196,0.741,0.8238,0.772,0.3472,0.5336,0.4716,0.2436,1,-1,-1,1,0.2,-1,-0.8,-0.6,-1,-0.2116,0.1346,0.1154,0.6346,0.8654,1,0.7884,0.6538,0.8846,0.9038,0.6154,0.5962,0.327,0.2692,0.4038,0.5,0.4808,0.3462,0.2692,0.423,0.5384,0.4808,0.173,0.173,0.2116,0.4808,0.5,0.173,0.2116,0.2884,0.6346,0.3076,'15'
-0.71,-0.2638,0.14,0.2964,0.7426,0.798,0.7654,0.6124,0.6938,0.9478,1,0.8274,0.8014,0.583,0.4136,0.5766,0.7068,0.7622,0.7558,0.7296,0.4202,0.2768,0.316,0.3128,0.2996,0.4332,0.4984,0.6808,0.6286,0.7036,0.6416,0.6222,-0.682,-0.3068,0.2114,0.3196,0.8188,0.7774,0.771,0.612,0.6916,1,0.9746,0.806,0.6534,0.5262,0.4818,0.469,0.609,0.609,0.7392,0.4532,0.434,0.2878,0.1892,0.2114,0.2432,0.2718,0.4404,0.5454,0.7202,0.6152,0.663,0.593,-0.662,-0.3018,0.2702,0.3522,0.7884,0.7346,0.722,0.6398,0.6936,1,0.9178,0.6462,0.4124,0.4124,0.4408,0.3522,0.4186,0.624,0.6682,0.545,0.4628,0.2828,0.1058,0.1438,0.1974,0.147,0.308,0.6904,0.7314,0.5988,0.5198,0.6114,-0.6688,-0.3496,0.2392,0.3588,0.7332,0.73,0.816,0.73,0.822,1,0.7454,0.7024,0.3528,0.224,0.3496,0.2792,0.3312,0.4662,0.6166,0.6596,0.3312,0.1472,0.135,0.0858,0.0706,0.089,0.2362,0.451,0.6656,0.6196,0.546,0.454,-0.6176,-0.316,0.3064,0.4294,0.6176,0.637,0.6142,0.6952,0.987,1,0.517,0.3258,0.1928,0.0988,0.0956,0.1994,0.2512,0.2868,0.3874,0.4132,0.3322,0.0534,0.0016,-0.0826,-0.0826,-0.0502,0.0438,0.2934,0.4586,0.4782,0.3842,0.261,-0.6852,-0.2438,0.3974,0.7274,0.8502,0.355,0.927,1,0.8618,0.6776,0.213,-0.048,-0.1938,-0.1862,-0.0134,0.0212,0.0288,0.2092,0.236,0.1862,-0.1594,-0.2592,-0.332,-0.4548,-0.4626,-0.4358,-0.2976,-0.025,-0.0404,0.1554,0.2208,0.1402,-0.5592,0.0028,0.7356,0.7576,0.9614,0.3002,0.438,0.6418,1,0.8954,0.0304,-0.2838,-0.4104,-0.3554,-0.0964,-0.2452,-0.1074,0.0524,0.0414,-0.135,-0.1736,-0.3554,-0.7852,-0.675,-0.6694,-0.686,-0.7742,-0.8402,-0.8126,-0.4436,-0.2012,-0.2948,-0.5094,0.0944,-0.0188,0.434,0.6226,0.8868,0.8114,0.585,0.585,1,0.9622,1,0.9246,0.6982,0.5472,0.7358,0.6982,0.849,0.7736,0.7736,0.6226,0.5094,0.3962,0.5094,0.3208,0.585,0.4716,0.7358,0.6604,0.7358,0.6982,0.5472,-0.6924,-0.2308,0.1924,0.3462,0.8076,0.8462,0.8076,0.7308,0.7308,0.923,1,0.8462,0.8076,0.6538,0.577,0.6538,0.7308,0.8462,0.7692,0.7692,0.423,0.4616,0.3846,0.3076,0.4616,0.4616,0.6154,0.7692,0.7692,0.7692,0.7692,0.7308,-0.6444,-0.4,0.2444,0.4222,0.5778,0.6888,0.7112,0.6444,0.9556,1,0.5334,0.3778,0.1778,0.0666,0.1334,0.2222,0.3112,0.3112,0.3778,0.3556,0.3334,0.1556,0,-0.0222,-0.0666,0.0222,0.0666,0.2666,0.4888,0.5556,0.4,0.2888,-1,-1,-1,-1,-1,-1,-1,-1,-0.943,-0.9508,-0.8862,0.4438,0.7646,0.9224,0.9716,0.806,0.467,0.2756,0.1228,0.097,-0.198,-0.5654,-0.7646,-0.8628,-0.9198,-0.9404,-0.9482,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9708,-0.9702,-0.8718,0.6704,0.809,0.921,0.9508,0.6976,0.4994,0.2784,-0.0524,-0.3744,-0.5836,-0.8232,-0.9048,-0.9314,-0.9378,-0.9534,-0.9604,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.85,-0.92,-0.6468,-0.45,-0.5626,-0.6326,-0.6,-0.6024,-0.589,-0.6578,-0.7852,-0.8234,-0.8456,-0.9434,-0.8156,-0.829,-0.7256,-0.8156,-0.8756,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9142,1,1,1,-1,-1,-1,-0.9714,-0.8858,-0.4,-0.4,-0.4286,0,-0.2286,-0.6858,-0.6,-0.8,-0.8572,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-1,-0.9932,-1,-0.9908,-1,-1,-1,-1,-1,-0.9002,-0.6,0,-0.8822,0.0078,0.7598,0.798,0.7726,1,0.3198,0.4422,0.4014,0.9048,0.8096,0.3878,0.4966,0.7552,0.5782,0.483,0.5646,0.5918,0.8096,0.7414,0.6326,0.687,0.5102,0.7006,0.7552,0.4966,0.8232,0.8912,0.864,0.6462,0.4694,0.4694,0.4286,0.6462,0.5918,0.6598,0.3198,-0.0748,0.0924,-0.1428,0.0084,0.4454,0.731,0.4118,0.7478,0.5798,0.7984,0.916,0.4958,0.7984,0.6302,0.8152,0.3614,0.8152,0.8488,0.7984,0.1764,0.5294,0.7816,0.2942,0.4622,0.5966,0.2436,0.2942,0.7648,0.6134,0.4958,0.4454,-0.042,-0.2606,-0.377,-0.1912,0.3224,0.388,0.246,0.7924,0.6394,0.3334,0.388,0.5956,0.2568,0.1366,0.1038,0.2022,0.1366,0.2132,-0.0054,0.552,1,0.8142,0.836,0.836,0.1256,0.1366,0.3334,0.6722,0.6174,0.705,0.683,0.6612,0.858,0.2022,-0.991,1,-1,-1,-1,-1,-1,-1,-1,-0.3592,-0.0098,0.1262,-0.068,0.1068,0.1262,0.4174,0.301,0.9612,1,0.398,0.4564,0.3398,0.0098,0.1068,0.1068,-0.0486,0.0098,0.0486,0.3592,0.534,0.6504,0.4174,0.4952,0.3786,0.4952,0.301,0.2038,0.0292,-0.1068,-0.3592,-0.5728,'15'
-0.7014,0.1194,0.204,-0.0646,0.0598,-0.418,-0.2288,-0.4428,-0.582,-0.7712,-0.4976,-0.587,-0.4976,-0.418,-0.1742,-0.2786,0.0846,0.1492,0.4328,0.607,0.4776,0.5224,0.3732,0.5522,0.612,0.9652,1,0.6468,0.6468,0.408,0.4676,0.4976,-0.6592,0.0262,0.0524,0.2434,0.2772,-0.1048,-0.0374,-0.4194,-0.3896,-0.4868,-0.3446,-0.3632,-0.146,-0.266,0.0038,-0.0374,0.2472,0.3146,0.663,0.779,0.7902,0.7828,0.528,0.618,0.6816,0.9026,0.925,0.8838,0.8314,0.8164,0.9064,1,-0.6196,-0.047,-0.0696,0.3296,0.2542,-0.3898,-0.5442,-0.533,-0.5442,-0.3032,-0.4048,-0.243,-0.3182,-0.1262,-0.1148,0.0358,0.0584,0.258,0.4652,0.7966,0.8758,0.8644,0.6384,0.6422,0.7212,0.8644,0.8984,0.9096,0.8418,0.8268,0.8644,1,-0.6508,-0.2058,0.2142,0.3888,0.1186,-0.3306,-0.4304,-0.4386,-0.447,-0.5426,-0.4636,-0.4346,-0.393,-0.2598,-0.1684,-0.0894,-0.0104,0.077,0.3638,0.7006,0.9418,0.9252,0.7172,0.6508,0.659,0.8878,0.9334,1,0.8878,0.8462,0.867,0.9626,-0.588,-0.2314,0.5416,0.574,-0.0232,-0.1806,-0.5324,-0.7778,-0.5926,-0.5834,-0.5972,-0.588,-0.5694,-0.3842,-0.3612,-0.2454,-0.1342,-0.1204,0.0648,0.574,0.6342,1,0.8982,0.6806,0.551,0.7732,0.9398,0.926,0.9676,0.7686,0.7916,0.8982,-0.6238,0.098,0.5464,0.3762,-0.2526,-0.5052,-0.5258,-0.665,-0.7268,-0.969,-0.835,-0.5928,-0.6546,-0.6392,-0.4176,-0.433,-0.4896,-0.3298,0.0774,0.2526,0.7628,1,0.897,0.603,0.531,0.6598,0.9484,0.9536,0.9072,0.7268,0.7938,0.7732,-0.5348,0.0392,0.5046,0.3232,-0.3052,-0.577,-0.4138,-0.6012,-0.6194,-0.8368,-0.8852,-0.6132,-0.5468,-0.5348,-0.4924,-0.583,-0.5046,-0.3534,-0.3354,0.1842,0.6374,1,0.9456,0.4924,0.5226,0.8126,0.9336,0.8188,0.4804,0.571,0.4984,0.6132,-0.1636,0.0182,0.0546,-0.2,-0.2728,-0.4182,-0.1272,-0.091,-0.2364,-0.2728,-0.2364,-0.3818,-0.3454,-0.5636,-0.309,-0.4182,0.1636,0.2,0.0546,0.0546,0.1636,0.3454,0.2728,0.3818,0.8546,1,0.9272,0.7454,0.5636,0.4546,0.3818,0.6,-0.3158,0.579,0.6316,0.2632,0.3158,-0.1052,0,-0.2106,-0.1578,-0.6842,-0.3684,-0.2632,-0.3158,-0.2106,0.1052,0.1052,0.0526,0.3684,0.5264,0.8422,0.7368,0.5264,0.1578,0.3158,0.6316,1,0.8948,0.579,0.421,0.6842,0.6316,0.421,-0.6484,-0.3846,0.4946,0.5824,0.055,-0.055,-0.1868,-0.2528,-0.6044,-0.4726,-0.4066,-0.5164,-0.5604,-0.1428,-0.2088,-0.1208,-0.099,-0.077,0.2528,0.6484,0.8022,1,0.8902,0.6924,0.7802,0.8682,1,0.8022,1,0.7802,0.8462,0.956,-1,-1,-1,-1,-1,-0.9054,-0.9432,-0.7652,1,1,0.1288,0.3182,0.716,0.5796,0.5038,0.6174,0.7614,0.8258,0.928,0.7538,0.0454,-0.0946,-0.6098,-0.7084,-0.8978,-0.8636,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9786,-0.9826,-0.903,-0.2336,0.3082,-0.069,-0.5994,0.3444,0.915,0.8162,0.583,0.4906,0.3156,-0.1824,-0.3814,-0.4906,-0.7792,-0.8446,-0.8952,-0.9264,-0.9356,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.9868,-0.6034,0.1132,-0.27,0.3732,0.1666,0.0432,0.6366,0.5366,0.63,0.57,0.4132,0.017,-0.1286,-0.0686,-0.5086,0.0932,-0.06,0.0832,-0.3368,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7428,0.7142,1,1,0.3428,0.5142,1,1,0.7428,-0.9714,-0.9714,-0.7714,-0.1428,0.1714,-0.6858,0.3142,0.6,-0.2572,-0.2286,-0.2,0.0286,-1,-1,-1,-1,-1,-1,-1,0.1802,0.1802,0.2428,0.352,0.3972,0.4686,0.5048,0.5142,0.4516,0.2548,0.7136,0.7136,0.727,0.757,0.7598,0.7602,0.7894,0.8174,0.8816,0.993,-0.68,-0.2942,-0.032,-0.4842,-0.6268,-0.3274,0.4646,1,-0.3098,-0.2816,-0.155,-0.2254,-0.2464,-0.1126,0.2536,0.317,0.5846,0.6056,0.824,0.9296,0.7112,0.5704,0.6902,1,0.9788,0.9366,0.8732,0.9226,0.662,0.8662,0.8098,0.7394,0.6338,0.5352,0.7958,0.7254,0.493,0.662,0.2464,-0.2746,0.137,-0.2944,-0.417,-0.6034,-0.481,-0.481,-0.3002,-0.2536,0.1486,0.2128,0.2886,0.6734,0.86,0.7434,0.3062,0.5802,0.8076,0.7376,0.9826,1,0.8134,0.5568,0.6152,0.5686,0.5568,0.417,0.4344,0.376,0.277,0.3528,0.3702,0.1896,-0.2972,-0.5136,-0.4894,-0.6936,-0.5796,-0.6936,-0.5256,-0.3694,0.009,0.045,0.2192,0.5436,1,0.8378,0.3694,0.3694,0.904,0.94,0.5796,0.8738,0.946,0.7118,0.6936,0.7358,0.6396,0.5376,0.3634,0.3154,0.2732,0.3514,0.2372,0.1292,-0.1048,-1,-1,1,-1,-1,-1,-0.3,-1,-0.078,-0.0638,-0.0354,-0.0638,-0.0212,-0.0354,0.0638,0.1774,0.0638,0.1348,0.5178,0.6028,0.6028,1,0.844,0.773,0.6738,0.7446,0.5178,0.4468,0.9008,1,0.8582,0.8724,0.8014,0.6028,0.39,0.5036,0.1206,0.4468,0.3334,-0.0922,'16'
-0.5422,0.2164,0.2454,0.3278,0.3814,-0.1588,-0.0722,-0.3938,-0.2742,-0.2454,-0.1382,-0.303,-0.0804,-0.1876,0.134,0.0268,0.4474,0.369,0.765,0.7774,0.699,0.6618,0.6742,0.732,0.8762,1,0.831,0.8186,0.5546,0.6866,0.5382,0.7196,-0.7148,-0.1116,-0.124,0.3058,0.2396,-0.6074,-0.5868,-0.4462,-0.5,-0.3306,-0.4504,-0.4132,-0.3512,-0.186,-0.252,-0.0786,0.0662,0.2438,0.5124,0.7108,0.8348,0.6694,0.5414,0.5992,0.7604,0.8802,0.9834,0.8348,0.814,0.7604,0.8966,1,-0.654,-0.1948,0.1584,0.3334,0.0928,-0.3334,-0.3188,-0.3152,-0.3406,-0.4316,-0.479,-0.5446,-0.3296,-0.297,-0.224,-0.2314,-0.0274,0.0928,0.3952,0.7414,0.8652,0.756,0.5154,0.6248,0.6466,0.9016,0.9234,0.909,0.785,0.7378,0.8252,1,-0.6228,-0.2288,0.5212,0.5466,-0.1016,-0.3136,-0.5806,-0.6694,-0.7754,-0.6992,-0.7034,-0.6694,-0.589,-0.5762,-0.445,-0.4492,-0.2204,-0.089,0.1822,0.6314,0.839,0.7796,0.5212,0.5254,0.6526,0.8178,0.928,1,0.8602,0.7754,0.8474,0.9704,-0.5508,0.1534,0.5118,0.2916,-0.1966,-0.5248,-0.3304,-0.4298,-0.8574,-0.8532,-0.5766,-0.5292,-0.5896,-0.6588,-0.4514,-0.3606,-0.2398,-0.2182,0.1706,0.5206,0.8488,0.9396,0.6026,0.5508,0.6242,0.8358,1,0.9654,0.9092,0.7236,0.8142,0.879,-0.9226,-0.08,0.1912,0.1332,-0.2204,-0.5642,-0.414,-0.3898,-0.3414,-0.7434,-0.816,-0.8354,-0.8062,-0.6804,-0.5738,-0.5836,-0.4624,-0.4576,-0.0412,0.3076,0.7142,1,0.8596,0.5108,0.5594,0.7918,0.8886,0.7772,0.7384,0.5254,0.5158,0.603,-0.6816,-0.051,0.4894,0.5076,0.2552,-0.1352,-0.093,0.2252,0.4354,0.3094,-0.2612,-0.6396,-0.7718,-0.7538,-0.6156,-0.7778,-0.6456,-0.5676,-0.081,0.087,0.6576,0.964,1,0.7178,0.6396,0.904,0.8618,0.5676,0.4774,0.1292,0.1412,0.2252,-0.6586,0.317,0.3658,0.2196,0.317,-0.2196,-0.0732,-0.4146,-0.317,-0.3658,-0.317,-0.317,-0.122,-0.1708,0.0732,-0.0732,0.317,0.4146,0.756,0.8536,0.756,0.4146,0.7074,0.8536,0.7074,1,0.9512,0.6098,0.561,0.6098,0.5122,0.317,-0.7446,0.149,0.1914,0.2766,0.3192,-0.1914,-0.1064,-0.4042,-0.4468,-0.1914,-0.0638,-0.3618,-0.1064,-0.3192,0.149,0.0638,0.4468,0.4468,0.7872,0.7872,0.532,0.6596,0.4894,0.617,0.8298,1,0.7022,0.7446,0.617,0.617,0.532,0.7022,-0.735,-0.012,0.2772,0.1566,-0.229,-0.3254,-0.4458,-0.4698,-0.494,-0.735,-0.6626,-0.6868,-0.518,-0.4458,-0.518,-0.3976,-0.3494,-0.3494,0.0602,0.3734,0.735,1,0.8314,0.518,0.5662,0.7108,0.9518,0.8554,0.8072,0.6626,0.6626,0.759,-1,-1,-1,-0.955,-0.931,-0.8412,-0.3368,-0.3126,-0.6822,-0.7444,-0.4992,0.3092,0.2642,0.2954,0.3092,0.4094,0.7686,0.8584,0.0052,-0.3056,-0.1848,-0.24,-0.6994,-0.848,-0.8792,-0.8826,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.979,-0.9752,-0.8056,-0.2268,0.2282,0.0654,-0.0486,-0.5166,-0.28,0.4986,0.7512,0.9084,0.5148,0.1612,-0.1148,-0.165,-0.3234,-0.6398,-0.7486,-0.8564,-0.901,-0.9264,-0.9456,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.98,-0.7434,0.3132,0.6166,0.8,0.5066,0.5732,-0.2534,0.3932,0.42,0.497,0.2942,-0.1316,-0.4716,-0.28,-0.3144,-0.6372,-0.7144,-0.2268,-0.2968,-0.6434,-0.8,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8,0.7428,1,1,0.0286,-0.6858,-0.0858,1,1,0.6858,-0.3142,-0.9428,-0.5428,-0.3714,-0.7714,-0.7714,0.4572,-0.2858,0,-0.2858,-0.2572,-0.1428,-0.6,-1,-1,-1,-1,-1,-1,-1,0.4774,0.5022,0.498,0.4838,0.4844,0.4598,0.3842,0.3938,0.419,0.3692,0.7674,0.787,0.788,0.792,0.8322,0.8542,0.8548,0.8876,0.9496,0.9932,-0.5334,-0.2352,-0.5884,-0.4788,-0.2566,0.0968,0.615,1,-0.386,-0.5138,-0.3732,-0.4244,-0.2196,-0.0278,0.0192,0.2452,0.6588,0.582,0.6332,0.693,0.7142,0.4712,0.6546,1,0.9958,0.9958,0.8678,0.9574,0.6886,0.8166,0.7826,0.7612,0.8464,0.7782,0.8124,0.6248,0.548,0.4926,0.3646,0.096,-0.5782,-0.5814,-0.5496,-0.4984,-0.4154,-0.377,-0.2716,-0.1246,-0.0064,0.2748,0.3418,0.492,0.8052,0.6294,0.3354,0.46,0.7924,0.821,0.7188,0.952,1,0.6582,0.6294,0.5304,0.607,0.5878,0.46,0.4984,0.1502,0.1948,0.147,-0.067,-0.5028,-0.274,-0.3068,-0.372,-0.4228,-0.4084,-0.354,-0.0164,0.1434,0.383,0.2886,0.579,0.8512,0.8656,0.441,0.55,0.873,0.9238,0.7206,0.96,1,0.7168,0.8584,0.8222,0.481,0.6734,0.677,0.5826,0.2668,0.1252,0.187,-0.205,-0.1754,-1,-1,1,-1,-1,-0.8,0.1,-1,-0.1876,0.2344,0.0468,-0.0156,0.1094,0.1718,0.1094,-0.0156,0.1562,0.25,0.6876,0.75,0.6562,0.6094,0.5156,0.5938,0.9376,0.9688,0.8438,0.9062,1,0.5938,0.6094,0.4376,0.4062,0.0468,0.25,0.25,-0.1718,-0.0624,-0.1718,-0.3594,'16'
-0.566,0.0888,0.136,0.2466,0.3058,0.002,0.1164,-0.1204,-0.2032,-0.357,-0.0808,-0.1716,0.0256,-0.006,0.2662,0.286,0.5542,0.6528,0.6292,0.649,0.499,0.5976,0.6174,0.7672,0.6804,0.5464,0.5266,0.566,0.6766,0.791,0.925,1,-0.6808,-0.095,-0.0868,0.2848,0.305,-0.1314,-0.0868,-0.4182,-0.398,-0.2768,-0.208,-0.1636,-0.0828,-0.0424,0.0748,0.2162,0.3858,0.4868,0.6768,0.5556,0.5314,0.5272,0.5516,0.4666,0.3132,0.3132,0.3212,0.4142,0.491,0.7212,0.806,1,-0.5992,-0.1548,0.2678,0.5592,0.4718,-0.2714,-0.224,-0.1584,-0.2642,-0.1584,-0.1366,-0.0928,-0.0784,0.1074,0.1912,0.399,0.654,0.705,0.5846,0.5956,0.6248,0.6174,0.3188,0.1804,0.0638,0.0966,0.2058,0.2314,0.3516,0.5738,0.7888,1,-0.6856,-0.3492,0.3602,0.4516,0.0968,0.031,0.1298,0.0128,-0.075,-0.1188,-0.0896,0.0494,0.1372,0.3712,0.6526,0.6636,0.3564,0.298,0.3564,0.5904,0.5796,0.499,0.2688,0.1846,0.0604,0.0712,0.17,0.2248,0.3162,0.5246,0.766,1,-0.5902,-0.1954,0.3358,0.3244,0.2486,0.055,0.055,-0.1234,-0.1082,-0.0854,0.074,0.2524,0.3358,0.4724,0.3814,0.2372,0.093,0.1424,0.2866,0.4498,0.5788,0.5408,0.1612,0.112,0.017,0.0132,0.0892,0.131,0.2486,0.4536,0.7686,1,-0.63,-0.1008,0.3114,0.3676,0.3958,-0.1288,-0.1334,-0.096,-0.007,0.021,0.452,0.4474,0.1522,0.021,-0.0258,-0.068,-0.1054,-0.1476,-0.0352,0.274,0.4192,0.5176,0.185,0.0352,-0.1476,-0.1896,-0.0866,-0.0164,0.096,0.4192,0.7846,1,-0.461,0.1234,0.5974,0.7468,0.6754,-0.1688,0.1428,0.2142,0.3896,0.513,0.513,0.2662,-0.078,-0.052,0.1688,-0.1558,-0.448,-0.2728,-0.3312,0.1168,0.3052,0.4416,0.1038,-0.1818,-0.2662,-0.4676,-0.3896,-0.3312,-0.1818,0.1298,0.7598,1,-0.7666,0,0.0666,0.0334,0.1334,-0.1334,0.0334,-0.1,-0.3,-0.4,-0.2,-0.1666,-0.1666,-0.0666,0.1334,0.2666,0.4334,0.7334,0.6666,0.5,0.4666,0.5334,0.5666,0.6334,0.7666,0.5,0.6,0.5,0.7334,0.7,0.9334,1,-0.4706,0.1176,0.147,0.2942,0.353,0.0588,0.147,-0.1176,-0.1764,-0.2942,-0.0882,-0.2058,0.0294,-0.0588,0.2942,0.2352,0.5588,0.5882,0.6176,0.6764,0.5,0.6176,0.6176,0.7942,0.6176,0.5588,0.5294,0.647,0.647,0.8824,0.9412,1,-0.6364,-0.1516,0.2526,0.2122,0.2728,-0.091,-0.2122,-0.1718,-0.0708,-0.091,0.3334,0.4142,0.2122,0.1314,0.1314,-0.1314,-0.1112,-0.1112,-0.0506,0.2324,0.1314,0.3132,0.192,0.0304,-0.2122,-0.1516,-0.0506,-0.0304,0.091,0.4344,0.798,1,-1,-1,-0.98,-0.977,-0.9738,-0.957,-0.9644,-0.9706,-0.9496,-0.9298,-0.4472,-0.3466,-0.267,-0.0572,0.3298,0.9696,0.6068,0.2072,-0.1894,-0.396,-0.6014,-0.6916,-0.7524,-0.9046,-0.937,-0.956,-0.9674,-0.9696,-1,-1,-1,-1,-1,-1,-1,-0.9868,-0.986,-0.8548,-0.6686,-0.4918,-0.3566,0.059,0.135,-0.3806,0.1566,0.4678,0.7616,0.645,0.7214,0.9502,0.5542,-0.147,-0.5002,-0.752,-0.8688,-0.898,-0.9568,-0.9616,-0.962,-0.97,-0.9746,-1,-1,-1,-1,-1,-1,-1,-0.9524,-0.9468,-0.7734,0.5,0.7966,0.8066,0.7166,0.71,0.12,0.248,0.336,0.328,0.116,-0.132,0.14,-0.01,0.1166,-0.2768,-0.68,-0.9568,-0.96,-0.8434,-0.57,-0.55,-0.54,-0.6634,-1,-1,-1,-1,-1,-1,-1,-0.0572,0.4286,1,1,0.9142,-0.0286,-0.3428,1,1,1,-0.2286,-0.5142,-0.5428,-0.5428,-0.6572,-0.1714,0.4,1,1,0.7428,0.1714,-0.3428,-0.6,-0.9142,-0.8858,-0.4286,-1,-1,-1,-1,-1,0.8508,0.8508,0.848,0.8452,0.845,0.8464,0.8188,0.7452,0.7886,0.7948,0.4696,0.4696,0.4696,0.4592,0.4768,0.4634,0.4238,0.3056,0.04,-0.3246,-0.64,-0.4,-0.4,0.02,0.2298,0.2984,0.7352,0.25,-0.7064,-0.5166,-0.4044,-0.3784,-0.272,-0.3094,-0.1684,-0.1454,-0.0072,0.0014,0.269,0.4504,0.6316,0.649,0.6432,0.8216,0.8792,0.8302,1,0.9366,0.6834,0.6144,0.5194,0.5136,0.6116,0.5424,0.508,0.5568,0.3928,0.272,0.3266,0.013,-0.9822,-0.8728,-0.7604,-0.642,-0.5356,-0.2634,-0.3166,-0.0088,0.281,0.281,0.4202,0.568,0.8196,0.9468,0.7544,0.8462,1,0.9498,0.8106,0.923,0.8344,0.8906,0.8698,0.855,0.8372,0.7692,0.7544,0.6776,0.6952,0.6686,0.565,0.2544,-0.536,-0.248,-0.296,-0.3344,-0.3792,-0.248,-0.2096,0.1424,0.5008,0.584,0.3824,0.5904,0.9264,0.888,0.7248,1,0.9936,0.9072,0.7568,0.7312,0.6032,0.616,0.5776,0.6512,0.6544,0.7152,0.6992,0.7728,0.5776,0.7248,0.7088,0.1968,-0.2196,-1,-1,1,-1,-1,-1,0.3,1,-0.0666,0.1556,0.2666,-0.1334,0.1556,0,0.3334,0.1334,0.7778,1,0.3334,0.1556,0.5334,0.2,-0.0444,0.3334,0.1778,0.1112,0.4888,1,0.9556,0.5556,0.4444,0.0888,-0.0444,0.2888,0.6666,0.4444,0.0666,-0.2222,0.0666,-0.6444,'17'
-0.6756,-0.0946,-0.0946,0.3964,0.3784,-0.2072,-0.2298,-0.3244,-0.3558,-0.1802,-0.2028,-0.1126,-0.1486,0.081,0.045,0.473,0.491,0.9954,1,0.7792,0.8018,0.7928,0.7972,0.446,0.446,0.3964,0.4144,0.509,0.5406,0.7658,0.8154,0.9234,-0.7046,-0.1864,0.2252,0.5932,0.4964,-0.4964,-0.4334,-0.3026,-0.2688,-0.172,-0.1768,-0.109,0.0606,0.1864,0.3656,0.632,0.9806,0.971,0.787,0.879,0.8062,0.7724,0.5012,0.3268,0.2688,0.2688,0.3026,0.3802,0.5206,0.598,0.9032,1,-0.6778,-0.3606,0.476,0.5674,0.2308,0.0962,0.1634,-0.0144,-0.1586,0.0192,-0.0048,0.0528,0.3028,0.5432,0.8076,0.7788,0.6154,0.5432,0.6106,0.8124,0.7932,0.6442,0.2404,0.202,0.173,0.1442,0.1586,0.3174,0.3798,0.5144,0.8366,1,-0.545,0,0.6946,0.6766,0.4312,0.3174,0.3532,-0.0598,0.0838,0.2934,0.539,0.7066,0.7366,0.8502,0.7126,0.461,0.4012,0.485,0.5688,0.8444,1,0.8562,0.3234,0.1856,0.1438,0.1856,0.1318,0.3652,0.455,0.7664,0.9042,0.8742,-0.5088,0.2702,0.9018,0.7754,0.6982,-0.0316,0.2492,0.2422,0.4036,1,0.8386,0.8878,0.3264,0.228,0.3754,0.0526,0.1298,0.172,0.228,0.621,0.8456,0.7614,0.0666,-0.0386,-0.0526,-0.1158,-0.179,0.1228,0.3544,0.4176,0.3334,0.2842,-0.405,0.1322,0.8264,0.7686,0.7356,0.2728,0.3224,0.967,0.9504,1,0.6034,0.0826,-0.0082,0.1404,0.0248,-0.033,-0.1736,0.1488,-0.0166,0.1488,0.3472,0.1652,-0.091,-0.438,-0.4214,-0.405,-0.3636,-0.3306,-0.19,-0.3388,-0.4132,-0.1652,-0.3056,0.0926,0.5278,0.8518,1,0.213,0.7408,0.8518,0.6944,0.0926,-0.1944,-0.2314,-0.3518,-0.2778,-0.1112,-0.2962,-0.5462,-0.3982,-0.6204,-0.5,-0.5,-0.537,-0.926,-0.6482,-0.5,-0.5278,-0.537,-0.4722,-0.7686,-0.5648,-0.5462,-0.574,-0.6728,-0.091,-0.091,0.309,0.309,-0.2364,-0.1636,-0.3818,-0.3454,-0.2728,-0.2728,-0.1636,-0.1636,0.0546,0.091,0.4182,0.5272,0.9272,1,0.5636,0.709,0.7454,0.8546,0.5636,0.491,0.3454,0.4546,0.4182,0.5636,0.709,0.9272,0.7818,-0.6552,-0.1034,0.0344,0.3794,0.3794,-0.138,-0.2414,-0.3104,-0.3448,-0.1724,-0.2068,-0.138,-0.1724,0.069,0.069,0.4482,0.5862,1,1,0.7586,0.7932,0.7586,0.7586,0.4482,0.4138,0.4138,0.3794,0.5172,0.5172,0.7932,0.7932,0.931,-0.5522,0.1044,0.6716,0.582,0.4926,-0.1344,0.194,0.2238,0.791,1,0.612,0.3134,-0.0746,-0.403,-0.3432,-0.1642,-0.403,-0.194,0.1044,0.2538,0.4626,0.403,-0.194,-0.3432,-0.2836,-0.194,-0.1044,-0.2538,0.194,0.1344,-0.0448,-0.1344,-0.9544,-0.8594,-0.94,-0.9462,-0.8966,-0.876,-0.9276,-0.7002,-0.2016,-0.1314,-0.0466,0.061,0.3216,0.7932,0.94,0.5118,0.1416,0.0982,-0.3196,-0.5532,-0.5864,-0.6752,-0.8284,-0.8842,-0.9296,-0.9442,-0.9648,-1,-1,-1,-1,-1,-1,-0.9766,-0.1004,-0.6078,-0.4384,-0.19,0.135,0.0552,-0.3936,-0.154,0.793,0.9526,0.854,0.7406,0.5106,0.3426,0.246,-0.1092,-0.4892,-0.7146,-0.799,-0.8346,-0.8804,-0.944,-0.9548,-0.9604,-0.9694,-0.9766,-1,-1,-1,-1,-1,-1,-0.9534,0.0732,0.7432,0.8032,0.6366,0.5966,0.64,0.3432,-0.0768,0.5366,0.33,0.092,0.052,-0.196,-0.332,-0.184,-0.452,-0.684,-0.79,-0.7034,-0.8,-0.8068,-0.8234,-0.6634,-0.76,-0.7068,-0.8268,-1,-1,-1,-1,-1,-1,1,1,1,-0.1428,-0.2286,-0.7428,0.2858,1,1,0.7142,-0.6286,-0.8572,-0.8,-0.4572,-0.4,-0.1428,0.7714,0.7142,1,1,-0.1142,-0.6572,-0.6286,-0.7142,-0.9428,-0.9428,-0.9428,-1,-1,-1,-1,-1,-1,0.6458,0.6428,0.6302,0.6224,0.6154,0.5708,0.5374,0.616,0.7388,0.8096,0.265,0.255,0.2232,0.1992,0.1866,0.1284,0.032,-0.1144,-0.4546,-0.5552,-0.48,-0.4236,0.9278,0.795,0.9288,0.91,0.452,-0.6084,-0.746,-0.5588,-0.5254,-0.4588,-0.3444,-0.2154,-0.1904,0.0032,0.0594,0.1654,0.307,0.5464,0.873,0.8022,0.8168,0.767,0.9792,1,0.9292,0.8648,0.8606,0.7316,0.64,0.6732,0.6004,0.6816,0.6796,0.6088,0.536,0.5254,0.334,0.0842,-0.9104,-0.5576,-0.5886,-0.5108,-0.579,-0.349,-0.23,0.0818,0.1208,0.2962,0.4424,0.6472,0.963,0.922,0.848,0.8654,1,0.9416,0.805,0.7954,0.8674,0.8422,0.7076,0.8266,0.7466,0.6978,0.7582,0.7992,0.6354,0.5204,0.427,0.1988,-0.2176,0.022,0.2074,-0.1434,-0.3896,-0.2782,-0.15,0.027,0.4198,0.7184,0.43,0.6576,0.565,0.516,0.6054,0.8196,1,0.9544,0.624,0.1788,0.0084,0.0134,0.0456,0.1248,0.194,0.2884,0.2884,0.2682,0.1906,0.2328,0.2108,-0.0236,1,-1,1,-1,1,-1,-1,1,-1,0.0114,0.5862,0.816,0.3794,0.5862,0.862,1,0.7932,0.7012,0.6322,0.5402,0.4942,0.6552,0.4482,0.5632,0.3104,0.5862,0.2874,0.5402,0.6782,0.6092,0.5172,0.2874,0.5402,0.5402,0.3794,0.7242,0.5402,0.4942,0.4022,0.4022,-0.2874,'17'
-0.7192,-0.2514,-0.1228,0.1346,0.3304,0.462,0.9444,1,0.7924,0.7836,0.8012,0.7456,0.304,0.2222,0.234,0.2192,0.2982,0.4562,0.5116,0.266,0.266,0.035,-0.0292,-0.0204,-0.0526,0.0818,0.1374,0.272,0.1784,0.1754,0.1784,0.1784,-0.6406,-0.2406,-0.0622,0.0864,0.354,0.4108,1,0.9972,0.781,0.7622,0.9648,0.8108,0.3486,0.281,0.3136,0.319,0.2892,0.5136,0.373,0.4838,0.281,0.1676,0.1324,0.1486,0.2568,0.2352,0.4216,0.3216,0.2864,0.0892,0.1378,0.1514,-0.7142,-0.3818,-0.0546,0.0494,0.3038,0.5844,0.8754,0.7818,0.709,0.9714,1,0.5818,0.4234,0.3974,0.2858,0.361,0.4884,0.478,0.5766,0.4728,0.2364,0.0728,0.1064,0.1428,0.0884,0.1688,0.2754,0.3818,0.465,0.4468,0.4728,0.426,-0.6796,-0.3876,-0.0156,0.0466,0.2274,0.6718,0.8166,0.7416,0.77,1,0.9354,0.783,0.5374,0.522,0.4626,0.4678,0.5684,0.721,0.7054,0.3644,0.217,0.1448,0.0878,0.0852,0.1112,0.106,0.2042,0.367,0.4858,0.646,0.6564,0.646,-0.6284,-0.3962,-0.0168,-0.0142,0.169,0.7368,0.742,0.8012,0.76,0.8142,0.9896,0.982,0.933,0.6904,0.7212,0.809,1,0.9096,0.5226,0.3548,0.2722,0.1664,0.1304,0.1122,0.138,0.1638,0.2412,0.3626,0.5432,0.711,0.7652,0.6646,-0.7434,-0.4922,-0.1198,-0.0184,0.3906,0.6418,0.529,0.5458,0.45,0.5458,0.622,0.8026,1,0.9464,0.8758,1,0.8816,0.5882,0.23,0.072,0.0692,-0.0634,-0.1198,-0.1312,-0.103,-0.1566,-0.0156,0.1706,0.34,0.6756,0.6362,0.5176,-0.703,-0.429,-0.1914,0.0462,0.3498,0.6006,0.4456,0.4126,0.198,0.3136,0.4224,0.637,1,0.934,0.8712,0.7722,0.5182,0.3696,-0.0628,-0.297,-0.3498,-0.5478,-0.5314,-0.5676,-0.5644,-0.5116,-0.3268,-0.1782,0.099,0.0496,-0.1156,-0.1222,-0.796,-0.102,-0.0204,0.2654,0.3878,0.7552,1,0.9592,0.9184,0.9184,0.8776,0.8368,0.2654,0.4286,0.1428,0.4694,0.3062,0.5102,0.4694,0.347,0.3062,0.0204,0.0204,-0.1428,0.0612,0.0612,0.1428,0.3062,0.347,0.1428,0.2654,0.1836,-0.8148,-0.3334,-0.2222,0.074,0.1482,0.3334,0.8888,1,0.6296,0.7408,0.6666,0.6666,0.2962,0.2222,0.2962,0.1112,0.2962,0.3704,0.5556,0.2962,0.1852,-0.074,0.037,0,0.037,0.1112,0.037,0.3334,0.2592,0.1852,0.074,0.1482,-0.563,-0.3614,-0.0084,-0.0084,0.2606,0.7478,0.7648,0.7478,0.7648,0.7816,0.9328,0.8992,0.916,0.6974,0.6806,0.7984,1,0.916,0.4454,0.395,0.3614,0.1764,0.1932,0.1764,0.1932,0.21,0.2436,0.3614,0.5966,0.5966,0.7648,0.6638,-1,-1,-1,-1,-1,-1,-1,-1,-0.9598,-0.9514,-0.8772,0.1534,0.5154,0.71,0.8688,0.9492,0.7588,0.4752,0.0518,-0.0688,-0.1068,-0.5534,-0.837,-0.8772,-0.9302,-0.9492,-0.9302,-0.9556,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.989,-0.9886,-0.9066,-0.1228,0.1924,0.459,0.6744,0.8568,0.8818,0.7898,0.457,0.011,-0.4042,-0.7408,-0.9414,-0.9356,-0.9662,-0.9706,-0.9772,-0.9834,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9134,-0.92,-0.66,-0.6,-0.62,-0.555,-0.565,-0.5326,-0.4646,-0.4756,-0.4468,-0.5334,-0.62,-0.6424,-0.7068,-0.6168,-0.65,-0.63,-0.8268,-0.9768,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8286,0.6,1,1,0,-0.7428,-0.7714,-0.7428,-0.9142,-0.4858,-0.4286,-0.3428,1,1,0,-0.7428,-0.6572,-0.7428,-0.8286,-0.6572,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-0.8916,-0.8668,-0.8556,-0.91,-0.862,-0.8196,-0.7328,-0.7496,-0.9616,-1,-0.6266,-0.0118,-0.873,-0.6068,-0.072,0.0504,0.0606,1,0.2934,0.1258,0.1976,0.5688,0.5928,0.7366,0.952,0.7006,0.7126,0.8444,1,0.4492,0.7486,0.4492,0.509,0.6766,0.6886,0.4132,0.7006,0.6288,0.461,0.6288,0.4252,0.6288,0.6408,0.3532,0.6646,0.509,0.3174,0.2814,0.1498,-0.1976,0.2374,0.3526,-0.036,0.7698,0.7986,0.8848,0.5972,0.554,0.928,0.9568,0.5684,0.7554,0.6834,0.7842,0.554,0.6116,0.3382,0.5684,0.4964,0.7554,0.8562,0.7986,0.7266,0.4388,0.223,0.4532,0.3812,0.5252,0.2806,0.1654,-0.0072,-0.482,-0.4056,-0.1888,0.1084,0.7832,0.9678,1,0.3574,0.1004,0.3254,0.478,0.1566,0.0522,0.0282,0.02,0.3654,0.2128,0.1164,-0.0522,-0.245,-0.1808,-0.237,-0.1808,-0.1004,0.1566,0.1726,0.0764,0.1566,0.253,0.1326,0.0522,-0.229,-0.478,-0.9972,1,-1,-1,-1,-1,-0.8,-1,-1,-0.1406,-0.125,-0.0624,0.1876,0.2188,0.2812,0.6094,1,0.75,-0.1406,-0.2968,-0.1406,-0.2656,-0.0156,0.0468,-0.1876,-0.3124,-0.25,-0.2812,-0.2188,-0.3282,-0.3594,-0.2968,-0.1562,-0.3124,-0.1562,-0.1562,-0.1562,0.2188,0.2344,0.3124,-0.0938,'18'
-0.7308,-0.3458,-0.1184,0.0092,0.3388,0.5894,0.9466,0.9328,0.8724,0.9722,1,0.6612,0.4548,0.4618,0.3736,0.3666,0.4896,0.5498,0.5778,0.5592,0.2412,0.1184,-0.0092,-0.1694,-0.0952,-0.1322,-0.1648,0.0788,0.058,0.1902,0.4246,0.536,-0.686,-0.3374,-0.0942,0.0112,0.3942,0.5624,0.8744,0.769,0.8986,0.9636,1,0.5684,0.5036,0.469,0.309,0.2968,0.5096,0.4954,0.5562,0.4488,0.1692,-0.0152,0.0192,-0.161,-0.2178,-0.3314,-0.3718,-0.2948,-0.2016,-0.1044,0.234,0.1306,-0.6964,-0.3728,-0.0332,0.0492,0.3146,0.594,0.799,0.8654,0.9336,1,0.9518,0.7006,0.5396,0.4614,0.397,0.3568,0.4754,0.5618,0.6362,0.3468,0.1678,0.013,-0.0292,-0.0212,-0.0372,-0.1498,-0.2804,-0.3006,-0.3026,-0.0694,0.2,0.196,-0.7048,-0.4178,-0.0874,-0.0458,0.1726,0.6964,0.792,0.9584,0.921,0.9502,0.9564,1,0.4906,0.37,0.4532,0.4698,0.5654,0.7422,0.5634,0.314,0.1122,0.025,-0.0332,-0.0686,-0.077,-0.133,-0.156,-0.077,-0.1456,-0.079,0.1206,0.0748,-0.6312,-0.3348,0.0012,0.0058,0.1528,0.7992,0.8086,0.895,0.7852,0.8344,1,0.9276,0.8974,0.7012,0.6686,0.7946,0.9206,0.8624,0.2718,-0.0036,-0.0176,-0.1856,-0.2976,-0.2602,-0.3302,-0.4492,-0.419,-0.2602,-0.2532,-0.2556,-0.0362,-0.0642,-0.5978,-0.2968,0.1168,0.1224,0.2968,0.7834,0.744,0.6428,0.5358,0.5218,0.6286,0.9916,1,0.9212,0.851,0.82,0.3474,0.1364,-0.1898,-0.5444,-0.6258,-0.758,-0.7806,-0.7468,-0.7272,-0.8566,-0.7272,-0.6794,-0.55,-0.505,-0.3952,-0.5302,-0.5372,-0.0784,0.2432,0.2274,0.2588,0.5726,0.5922,0.404,0.149,0.0746,0.0942,0.6314,0.8,1,0.9058,0.596,0.1804,-0.2746,-0.6314,-0.7372,-0.6588,-0.8,-0.7922,-0.8432,-0.7058,-0.5686,-0.6942,-0.5922,-0.6628,-0.7254,-0.9648,-0.9098,-0.7948,-0.3334,-0.1794,0.0256,0.3334,0.5898,0.8462,0.8974,0.8974,1,1,0.8462,0.4872,0.4872,0.641,0.5898,0.4872,0.4872,0.1282,0.3334,0.1282,0.077,-0.1282,-0.3334,-0.1794,-0.1282,-0.077,0.077,0.077,0.282,0.3846,0.3846,-0.6666,-0.3334,-0.074,0.074,0.3334,0.4444,1,0.963,0.8888,0.963,1,0.5556,0.5556,0.4814,0.2592,0.4444,0.5926,0.6666,0.7408,0.6666,0.3334,0.1482,0.037,0,0.037,0.074,-0.037,0.2222,0.2592,0.4444,0.6666,0.7038,-0.5714,-0.2448,0.0204,0.0612,0.2244,0.796,0.7552,0.898,0.796,0.8164,0.8368,0.9184,1,0.7346,0.7142,0.796,0.9388,0.8572,0.1836,0.0816,0.0408,-0.1224,-0.2244,-0.2244,-0.3266,-0.4082,-0.3878,-0.3062,-0.204,-0.2244,0.0204,-0.0204,-1,-1,-1,-1,-1,-1,-1,-1,-0.9434,-0.9462,-0.9348,0.5638,0.9434,0.8386,0.7678,0.6006,0.5326,0.3938,0.1104,-0.2238,-0.49,-0.6176,-0.7252,-0.9066,-0.9236,-0.9434,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9858,-0.9854,-0.9436,0.5498,0.7318,0.8252,0.8322,0.7696,0.8406,0.7878,0.1006,-0.432,-0.7874,-0.8924,-0.9108,-0.951,-0.9626,-0.9726,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9124,-0.9668,-0.8468,-0.511,-0.591,-0.562,-0.571,-0.502,-0.54,-0.4528,-0.5544,-0.7022,-0.784,-0.7606,-0.669,-0.6222,-0.719,-0.7656,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.1142,-0.4572,1,1,-0.7428,-0.8,-0.8572,-0.9428,-1,-0.7714,-0.3714,-0.3714,-0.3714,-0.4572,-0.6858,-0.7428,-0.8858,-0.9428,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.6,0.353,-0.9302,-0.516,0.5604,0.9002,0.7714,1,0.027,0.2972,0.027,0.4054,0.6756,0.8198,0.1712,0.4774,0.7838,0.5856,0.6936,0.5676,0.964,0.6216,0.4594,0.6756,0.964,0.4414,0.4954,0.6756,0.91,0.946,0.5676,0.4594,0.1352,0.4054,0.4414,0.2792,0.1172,0.4234,0.2252,-0.5496,0.3334,0.0814,0.526,0.4666,0.1704,0.6444,0.3778,0.9556,0.8518,0.7778,0.5852,0.7778,1,0.5112,0.5852,0.3482,0.5704,0.4814,0.363,0.0814,0.437,0.4518,0.8074,0.3186,0.4666,0.6592,0.3926,0.5852,0.3482,0.363,0.4962,-0.3482,0.091,0.1718,0.0708,0.5454,0.8282,1,0.6262,0.5454,0.8282,0.9696,0.9292,0.3838,0.6262,0.3838,0.596,0.6262,0.7474,0.6364,0.3536,0.303,0.2728,0.4848,0.4344,0.5454,0.6868,0.6868,0.8484,0.6666,0.5354,0.5252,0.1818,-0.2526,-0.9978,1,-1,-1,-1,-1,-1,-1,-1,-0.0434,0,-0.2608,0.087,0.4782,0.3044,0.6956,1,0.9566,0.5218,0.0652,-0.2174,0.174,0.3914,0.1086,-0.2608,-0.2608,-0.2608,-0.0434,0.1522,-0.087,-0.0652,-0.0218,0.0652,-0.174,0.1304,0.4782,0.3914,-0.2174,-0.326,-0.174,-0.4348,'18'
-0.734,-0.2562,-0.0444,0.2956,0.33,0.5616,0.4286,0.1774,0.1084,0.2118,0.0738,0.1922,0.2956,0.3596,0.5172,0.601,0.9458,0.9852,0.7932,0.7488,0.739,0.7586,0.9656,1,0.7784,0.739,0.6896,0.67,0.6798,0.6996,0.867,0.8916,-0.6484,-0.1826,0.0456,0.2786,0.516,0.758,0.5616,0.4064,0.3562,0.3882,0.379,0.3744,0.4658,0.4978,0.6712,0.8356,1,0.968,0.9224,0.7534,0.79,0.927,0.9132,0.9726,0.8448,0.7854,0.6666,0.6164,0.6712,0.7306,0.7808,0.7762,-0.6546,-0.2622,-0.015,0.1216,0.4456,0.4968,0.5992,0.5736,0.4626,0.3518,0.3518,0.3988,0.4626,0.5352,0.5692,0.8764,0.8422,0.9702,0.7782,0.71,0.8082,0.8336,1,0.9488,0.7612,0.6504,0.6844,0.6076,0.6844,0.7356,0.727,0.8422,-0.697,-0.3636,0.0304,0.1212,0.3896,0.4372,0.7402,0.6406,0.4156,0.29,0.3074,0.4848,0.42,0.593,0.8832,0.9524,0.9784,0.9524,0.723,0.658,0.7748,0.9654,1,0.8138,0.7272,0.671,0.567,0.6406,0.7142,0.697,0.8572,0.7792,-0.675,-0.4042,-0.0124,0.0458,0.3084,0.6708,0.8166,0.6166,0.3084,0.3292,0.4416,0.5376,0.5458,0.7792,1,0.8834,0.8208,0.7208,0.6584,0.725,0.8334,0.9042,0.9208,0.8666,0.6626,0.65,0.6834,0.675,0.6416,0.75,0.7792,0.8124,-0.715,-0.4522,-0.0602,-0.02,0.1848,0.7952,0.8574,0.6258,0.4388,0.4832,0.568,0.6302,0.7416,0.9644,1,0.8842,0.7016,0.657,0.666,0.7462,0.8708,0.9466,0.9822,0.8084,0.6972,0.6302,0.6036,0.6302,0.6926,0.6792,0.7328,0.6036,-0.66,-0.4434,-0.0936,-0.1084,0.1922,0.5714,0.66,0.7192,0.5518,0.404,0.3744,0.527,0.6552,0.8424,1,0.8128,0.527,0.4138,0.4334,0.4334,0.2858,0.6158,0.6502,0.4286,0.0738,0.0344,0.0492,0.0198,-0.0542,-0.1134,-0.2316,-0.3054,-0.7818,-0.4546,-0.1272,0.2,0.0546,0.4182,0.2728,0.091,-0.0546,0.0182,-0.0546,0.091,0.2,0.309,0.4546,0.5272,0.9272,1,0.6364,0.7454,0.6728,0.6728,0.9636,0.9636,0.709,0.6364,0.6728,0.6,0.6728,0.5272,0.8182,0.7454,-0.6722,-0.3442,-0.0492,0.2132,0.1804,0.4754,0.377,0.082,0.1148,0.1804,0.1476,0.1804,0.246,0.2786,0.4754,0.541,0.8688,0.9344,0.6394,0.6722,0.6066,0.705,0.9672,1,0.6722,0.705,0.6066,0.6066,0.705,0.705,0.8688,0.836,-0.7666,-0.4334,-0.0666,0,0.15,0.7,0.8166,0.5,0.2666,0.35,0.5166,0.5334,0.6,0.9,1,0.7,0.7,0.55,0.7,0.7334,0.7834,0.8334,0.9334,0.6666,0.6166,0.6166,0.5834,0.6334,0.6334,0.65,0.7834,0.5834,-1,-1,-1,-1,-1,-1,-1,-1,-0.9738,-0.9702,-0.5486,0.1436,0.4982,0.9254,0.6008,0.1474,0.2034,0.3582,0.5616,0.5504,-0.082,-0.2706,-0.6698,-0.862,-0.9048,-0.9124,-0.9384,-0.9458,-0.9478,-0.9608,-0.9552,-0.959,-0.9608,-1,-1,-1,-1,-1,-1,-1,-1,-0.9916,-0.9908,-0.519,0.3584,0.116,0.3986,0.593,0.5384,0.5942,0.7152,0.9722,0.8564,-0.0528,-0.4368,-0.817,-0.8838,-0.8998,-0.813,-0.8284,-0.8358,-0.832,-0.8228,-0.8382,-0.8354,-0.8568,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.3368,-0.056,-0.14,-0.34,-0.344,-0.296,-0.292,-0.352,-0.392,-0.368,-0.336,-0.432,-0.13,0.31,0.7666,1,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,-0.6858,-0.7142,-0.9142,-0.9142,-0.9142,-0.8572,-0.8286,1,1,1,0.8,0.1142,0.6286,0.4286,-0.7142,-0.8,-0.9142,-0.8858,-0.9714,-0.9142,-0.8858,1,1,1,1,1,1,1,1,1,1,0.3652,0.3414,0.3414,0.3442,0.243,0.2172,0.2088,0.2096,0.1598,-0.233,-0.6934,-0.4706,-0.5566,0.2224,0.4376,0.16,0.064,1,-0.75,-0.5228,0.1364,0.0228,-0.3636,-0.2954,0.2046,0.5228,0.8636,1,0.909,0.6364,0.591,0.5228,0.6364,0.7728,0.7728,0.659,0.7046,0.7046,0.3636,-0.3182,-0.2728,-0.1818,0.091,0.2954,0.4318,0.3182,0.091,-0.159,-0.3864,-0.6136,-0.4792,-0.125,0.4584,0.25,-0.0624,-0.0416,-0.0208,0.3542,0.7708,1,0.5208,0.7292,0.7916,0.4792,0.3958,0.4376,0.3958,0.25,0.7916,0.8124,0.1876,0.125,-0.2084,-0.1042,0.0624,0.2916,0.5416,0.4166,0.1042,0.1876,0.2916,0.1666,-0.407,0.2326,0.3256,0.372,0.279,0.1046,0.3372,0.4768,0.8604,0.9768,0.779,0.9418,1,0.7094,0.7558,0.8604,1,0.9186,0.7326,0.5814,0.3604,-0.0232,0.093,0.0698,-0.0582,0.1628,0.2558,0.1628,0.3024,0.1628,0.221,0.0348,0.918,-1,-1,1,-1,-1,-0.6,-0.7666,-1,-0.738,-0.75,-0.619,-0.5238,-0.3572,-0.3928,-0.2262,-0.1666,-0.131,-0.3096,-0.0358,-0.0476,-0.1072,-0.2142,-0.2976,0.0358,0.0358,0.3572,0.1904,0.238,0.2142,0.4286,0.4166,0.4048,0.5358,0.5,0.6548,0.8928,1,0.6428,0.8928,0.619,'19'
-0.6618,-0.2522,0.0682,0.2938,0.6676,0.5252,0.2344,0.0802,0.1216,0.0682,0.0624,0.0564,0.1632,0.2344,0.2462,0.537,0.8754,1,0.8694,0.81,0.8338,0.7982,0.9406,0.9288,0.8872,0.632,0.5074,0.4006,0.3354,0.3354,0.4658,0.448,-0.6328,-0.305,0.1242,0.3334,0.757,0.6836,0.4576,0.2372,0.2316,0.209,0.1074,0.1694,0.2656,0.2994,0.4464,0.6724,0.7458,1,0.8814,0.7402,0.7006,0.7062,0.7684,0.7458,0.695,0.4858,0.3276,0.2598,0.1808,0.079,0.0622,0.0848,-0.5978,-0.2934,0.038,0.201,0.4946,0.4836,0.5816,0.25,0.2174,0.2608,0.2066,0.2392,0.299,0.3804,0.4946,0.6576,0.8206,1,0.826,0.6304,0.6142,0.6304,0.75,0.6522,0.6576,0.2934,0.1684,0.0706,-0.087,-0.1086,-0.163,-0.163,-0.592,-0.2862,0.0482,0.1218,0.5128,0.6488,0.762,0.3882,0.3542,0.3882,0.3484,0.3938,0.4334,0.558,0.6884,0.8356,0.8356,1,0.8244,0.6884,0.7338,0.694,0.864,0.6488,0.5468,0.2804,0.1784,0.0368,-0.1388,-0.1104,-0.0934,-0.2182,-0.6458,-0.3788,-0.0246,-0.0354,0.1062,0.7058,0.7384,0.395,0.3842,0.4114,0.395,0.3298,0.3678,0.5858,0.7602,0.8256,1,0.891,0.5968,0.6566,0.6186,0.6948,0.6622,0.624,0.3896,0.1662,0.1172,0.0626,-0.0354,-0.0626,0.019,-0.0572,-0.6534,-0.4148,-0.0398,-0.0852,0.1704,0.5796,0.6136,0.7046,0.5512,0.4488,0.5056,0.5852,0.7102,0.7728,1,0.858,0.8012,0.6818,0.608,0.6876,0.8352,0.7216,0.7102,0.5398,0.3694,0.284,0.1704,0.1136,0.1306,0.0796,0.1194,0.1306,-0.7142,-0.5168,-0.122,-0.122,0.1428,0.4754,0.7246,0.7662,0.6052,0.5324,0.5428,0.6572,0.8026,0.8494,1,0.709,0.5064,0.6312,0.5012,0.626,0.7142,0.735,0.6364,0.4286,0.1532,-0.0078,-0.039,-0.0806,-0.1324,-0.1116,-0.122,-0.1636,-0.3962,0.0188,0.283,0.5472,0.6982,0.6982,0.4716,0.3584,0.3584,0.3208,0.3208,0.3208,0.3584,0.4716,0.2452,0.4716,0.8868,1,0.9246,0.7736,0.849,0.7358,1,0.849,0.8114,0.6604,0.7358,0.5094,0.3208,0.5472,0.5472,0.6226,-0.7692,-0.4616,-0.077,0.3076,0.6154,0.577,0.1538,-0.0384,0.0384,0.0384,0.077,0.077,0.077,0.1924,0.423,0.577,0.8846,1,0.8846,0.7692,0.7692,0.8462,0.8462,0.923,0.8846,0.6538,0.5,0.423,0.3846,0.423,0.5,0.5,-0.6226,-0.3774,-0.0188,-0.0188,0.2264,0.6792,0.7358,0.3208,0.3208,0.3962,0.3774,0.283,0.3396,0.5094,0.6416,0.7924,1,1,0.6604,0.6038,0.6604,0.6982,0.5284,0.6604,0.415,0.2642,0.151,0.0188,-0.0378,-0.0944,0,0.0566,-1,-1,-1,-1,-1,-1,-1,-1,-0.9658,-0.9476,-0.7316,0.0922,0.818,0.9454,0.4722,0.1536,0.0808,-0.0012,0.1172,-0.1262,-0.3812,-0.4516,-0.5336,-0.7064,-0.8816,-0.8998,-0.918,-0.9386,-0.9432,-0.9432,-0.9522,-0.9454,-0.9522,-1,-1,-1,-1,-1,-1,-1,-1,-0.9764,-0.972,-0.7796,0.5976,0.9126,0.8768,0.7032,0.5922,0.447,0.628,0.9072,0.7906,0.5538,0.3706,-0.3852,-0.4974,-0.835,-0.6722,-0.6564,-0.5848,-0.671,-0.5034,-0.5958,-0.6832,-0.7348,-1,-1,-1,-1,-1,-1,-1,-1,-0.97,-0.9234,-0.7068,-0.485,-0.435,-0.58,-0.56,-0.42,-0.38,-0.28,-0.484,-0.472,-0.444,-0.54,-0.6,-0.2568,0.3066,0.8,1,1,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.7714,1,1,1,0.7714,-0.6,-0.8,-0.8858,-0.9142,-0.4858,-0.5142,-0.7142,-0.5428,1,0.8858,0.5714,1,1,-0.3714,-0.6572,-0.8572,-0.8858,-0.8858,-0.8858,-0.9714,1,1,1,1,1,1,1,1,1,1,0.3026,0.3026,0.3012,0.269,0.2502,0.1728,0.1202,0.0292,-0.1564,-0.5976,-0.5866,-0.5294,-0.6862,-0.0852,0.9594,0.8896,0.8926,1,-0.091,0.2728,0.4546,0.1272,0.4182,0.3818,0.2728,0.6364,0.9636,1,0.9636,1,1,0.8182,0.6364,0.709,0.7454,0.7818,0.7818,0.8182,0.8546,0.8182,0.5636,0.4546,0.6,0.6364,0.6,0.6,0.5272,0.4546,0.2364,-0.2728,-0.6216,0.1892,0.3784,0.2432,0.1892,0.054,0.027,0.4324,0.7838,1,0.7568,1,0.8918,0.3514,0.3514,0.1082,0.4054,0.3784,0.5136,0.4594,0.8108,0.5676,0.054,0.3244,0.2432,0.6486,0.4594,0.5406,0.3784,0.2972,0.1082,-0.081,0.15,0.5,0.9,0.675,0.325,0.2,0.35,0.575,0.7,0.95,0.8,0.85,1,0.825,0.625,0.5,0.75,0.875,0.675,0.55,0.625,0.475,0.25,0.125,0.4,0.625,0.625,0.4,0.675,0.45,0.325,-0.2,1,-1,-1,1,-1,-1,-0.2,-0.8334,1,-0.9172,-0.787,-0.574,-0.5384,-0.361,-0.4438,-0.136,-0.2662,-0.2426,-0.2426,-0.0888,-0.1124,-0.1006,-0.1834,-0.1006,-0.1242,-0.0888,0.0532,0.2426,0.3136,0.2782,0.3136,0.716,0.645,0.4556,0.6094,0.5622,0.7752,0.6686,0.9408,1,0.787,'19'
-0.5958,0.3352,0.3936,0.4468,0.4894,-0.0638,0.0904,-0.266,-0.367,-0.4148,-0.2978,-0.3352,-0.1382,-0.2394,-0.0212,0.0054,0.3244,0.5054,0.8192,0.8192,0.617,0.468,0.4574,0.5372,0.899,0.9894,1,0.734,0.7074,0.7446,0.851,0.899,-0.7288,-0.085,-0.0988,0.3196,0.2644,-0.2184,-0.269,-0.4758,-0.5356,-0.3426,-0.4114,-0.2782,-0.3564,-0.1356,-0.2092,0.0804,0.0206,0.4114,0.5816,0.9816,0.9494,0.4804,0.416,0.6598,0.6828,1,0.9586,0.8988,0.8022,0.839,0.8528,0.9816,-0.6524,-0.121,-0.0196,0.3124,0.1836,-0.6368,-0.6406,-0.5352,-0.4922,-0.379,-0.3946,-0.3164,-0.2422,-0.1954,-0.0468,-0.0468,0.1406,0.1602,0.5976,0.629,0.8008,0.7032,0.539,0.5156,0.7032,0.789,0.9688,0.9258,0.8828,0.7852,0.8516,1,-0.7222,-0.3306,0.2336,0.3684,-0.0148,-0.3052,-0.3474,-0.4442,-0.5916,-0.6084,-0.5284,-0.621,-0.4948,-0.3264,-0.2632,-0.3052,-0.2422,-0.0568,0.3222,0.6126,0.7306,0.739,0.499,0.4778,0.5874,0.7852,0.9578,1,0.8148,0.8316,0.8864,0.9664,-0.6986,-0.105,0.5388,0.4978,-0.2968,-0.6302,-0.831,-0.8584,-0.758,-0.6028,-0.5434,-0.6804,-0.5982,-0.557,-0.5114,-0.4064,-0.2786,-0.2328,0.1644,0.4704,0.8036,0.7716,0.5844,0.4156,0.4658,0.726,0.895,0.968,0.9224,0.8402,0.9086,1,-0.7962,0.0426,0.3792,0.1706,-0.4598,-0.6824,-0.5166,-0.7014,-0.7252,-0.6966,-0.692,-0.7346,-0.583,-0.5782,-0.5402,-0.4502,-0.3696,-0.2418,-0.0284,0.3744,0.6872,0.8484,0.6398,0.417,0.4598,0.6588,0.7914,0.9858,1,0.929,0.853,0.9526,-0.8222,-0.0112,0.3778,0.15,-0.5222,-0.6278,-0.4834,-0.6112,-0.7112,-0.7612,-0.6222,-0.6056,-0.7166,-0.6112,-0.5444,-0.8056,-0.4556,-0.4388,-0.1556,0.1722,0.6556,0.7056,0.6444,0.3222,0.3444,0.4778,0.7222,1,0.9778,0.8388,0.8056,0.8222,-0.56,0.48,0.6,0.4,0.36,0.16,0.12,0.04,-0.24,-0.28,-0.28,-0.16,-0.36,-0.28,-0.28,0.08,0.24,0.56,0.68,0.68,0.52,0.44,0.32,0.64,0.72,1,0.96,0.68,0.72,0.6,0.64,0.68,-0.641,0.282,0.3846,0.5384,0.5898,0.0256,0.1282,-0.1794,-0.4358,-0.6924,-0.5898,-0.3334,-0.0256,-0.1282,0.1282,0.1282,0.4872,0.5384,0.7948,0.9488,0.4872,0.3334,0.3334,0.5384,0.5384,0.7948,0.8974,0.3334,0.5384,0.7948,0.8974,1,-0.67,-0.165,-0.1456,0.2622,0.1456,-0.631,-0.6504,-0.534,-0.5146,-0.4174,-0.4758,-0.3204,-0.2234,-0.1262,-0.0874,-0.0098,0.165,0.2234,0.6894,0.7282,0.67,0.6504,0.5534,0.5146,0.7864,0.6894,1,0.903,0.864,0.6504,0.8834,0.9224,-1,-1,-1,-0.928,-0.916,-0.772,-0.732,-0.816,-0.852,-0.812,-0.536,0.716,0.416,0.412,0.348,0.344,0.46,0.836,0.98,0.292,-0.024,-0.304,-0.596,-0.82,-0.868,-0.868,-0.876,-0.924,-0.908,-1,-1,-1,-1,-1,-1,-1,-0.9596,-0.9678,0.0302,1,0.677,0.9322,0.395,-0.163,-0.3484,0.297,0.785,0.7022,0.7352,0.4278,0.3402,0.002,-0.1204,-0.3524,-0.5934,-0.8726,-0.859,-0.8768,-0.9288,-0.9438,-0.965,-0.9712,-1,-1,-1,-1,-1,-1,-1,-0.9734,-0.8934,-0.0034,1,1,0.9966,0.8932,0.6766,-0.2568,-0.0268,0.2066,0.5066,0.55,0.5066,0.2832,0.02,0.1666,0.017,-0.203,-0.26,0.16,0.1266,-0.3,-0.6134,-0.8268,-0.9,-1,-1,-1,-1,-1,-1,-1,0.7428,1,1,1,-0.8572,-0.8,0.3428,1,1,0.4,-0.6286,-0.5428,-0.8,-0.8286,-0.8,-0.8286,-0.8286,-0.5714,1,0.7142,-0.4,-0.2,0.0858,-0.2858,-0.5714,-0.7428,-1,-1,-1,-1,0.5782,0.5816,0.6022,0.6084,0.6048,0.6102,0.5788,0.4964,0.4326,0.2174,0.6898,0.6958,0.7206,0.7536,0.763,0.8054,0.8224,0.8468,0.911,0.9836,-0.6,-0.3176,-0.1998,-0.4374,-0.3264,-0.0766,0.4244,1,-0.9074,-0.5768,-0.448,-0.4248,-0.3586,-0.3058,-0.2826,-0.3852,0.0248,0.0976,0.1206,0.3388,0.4942,0.3554,0.309,0.6034,0.6166,0.772,0.6892,0.848,0.871,0.9372,1,0.8942,0.729,0.8148,0.9338,0.7818,0.8976,0.7256,0.686,0.4546,-0.8874,-0.6878,-0.5864,-0.4768,-0.429,-0.3642,-0.367,-0.2996,-0.052,0.0296,0.187,0.4318,0.623,0.6456,0.3108,0.5106,0.7806,0.834,0.7946,0.803,0.8482,0.9972,1,0.8482,0.8424,0.5836,0.7412,0.6258,0.7074,0.7102,0.6286,0.3728,-0.983,-0.5986,-0.5272,-0.687,-0.6972,-0.3878,-0.4184,-0.3232,0.119,0.1734,0.2278,0.466,0.8504,0.7688,0.517,0.4898,0.6836,0.7552,0.5918,0.6938,0.7756,1,0.847,0.4762,0.4456,0.5952,0.6904,0.6054,0.636,0.3062,0.4728,0.3164,1,-1,-1,1,-0.6,-1,-0.6,0.1666,-1,-0.1704,-0.0222,-0.3038,-0.2444,-0.3334,-0.126,-0.1408,-0.0074,-0.0962,-0.0518,0.3186,0.4074,0.4222,1,1,0.7926,0.9112,0.7778,0.7926,0.763,0.6,0.8518,0.6148,0.126,0.3038,0.3482,0.3778,0.1852,0.0814,0.1112,0.2148,-0.0666,'20'
-0.5532,0.4364,0.5156,0.2192,0.3612,-0.0146,0.1524,-0.1274,-0.2694,-0.3988,-0.2192,-0.2234,-0.1984,-0.1482,-0.0104,0.0688,0.2734,0.4238,0.787,0.858,0.8162,0.5866,0.6368,0.8914,1,0.904,0.9624,0.8122,0.7244,0.7036,0.8204,0.8748,-0.641,-0.029,-0.0428,0.3778,0.3334,-0.176,-0.2274,-0.4666,-0.4872,-0.2924,-0.347,-0.265,-0.306,-0.1452,-0.159,0.0052,0.1282,0.306,0.617,0.8324,0.7402,0.7642,0.6034,0.7606,0.7812,1,0.8564,0.8462,0.6616,0.747,0.8052,0.9146,-0.6226,-0.115,0.0806,0.3928,0.2762,-0.3174,-0.4958,-0.4306,-0.3104,-0.2144,-0.307,-0.2418,-0.2316,-0.2144,-0.0292,-0.0428,0.156,0.1732,0.4992,0.7016,0.9862,0.9246,0.7392,0.6672,0.777,0.8902,1,0.9108,0.873,0.7942,0.8456,0.8696,-0.5778,-0.1628,0.3094,0.4634,0.1378,-0.2094,-0.356,-0.406,-0.3452,-0.3596,-0.3416,-0.4634,-0.3488,-0.2094,-0.1128,-0.1128,-0.0912,0.077,0.313,0.653,0.839,0.8962,0.796,0.7138,0.7924,0.9606,0.9856,1,0.8856,0.864,0.9034,0.8998,-0.5952,-0.0158,0.635,0.615,-0.0278,-0.381,-0.6072,-0.7302,-0.4326,-0.5158,-0.5714,-0.5436,-0.4166,-0.4008,-0.496,-0.2818,-0.1508,-0.0476,0.1508,0.504,0.873,1,0.7896,0.5198,0.6826,0.865,0.9802,0.992,0.8214,0.8492,0.8572,0.8056,-0.6814,0.1236,0.4298,0.2118,-0.065,-0.564,-0.455,-0.6562,-0.5556,-0.6856,-0.673,-0.543,-0.4842,-0.5932,-0.585,-0.3124,-0.1446,-0.1614,0.065,0.4046,0.7904,1,0.9204,0.7232,0.74,0.8198,0.8406,0.9288,0.912,0.8364,0.7694,0.7862,-0.6988,-0.0922,0.245,0.1236,-0.236,-0.4472,-0.3842,-0.672,-0.6898,-0.7708,-0.6808,-0.6134,-0.6674,-0.6898,-0.645,-0.537,-0.4202,-0.3528,-0.2808,0.0696,0.2404,0.8292,1,0.591,0.3932,0.7438,0.7438,0.7124,0.4158,0.2808,0.2584,0.2674,-0.5264,0.6316,0.7368,0.421,0.3684,0.1052,0.0526,-0.3684,-0.0526,-0.2632,-0.2632,-0.2106,-0.2632,-0.1052,0.2106,0.2632,0.4736,0.7894,0.9474,0.7894,0.579,0.579,0.6842,0.8422,1,1,0.9474,0.579,0.1578,0.8422,0.8422,0.8422,-0.3684,0.6842,0.7894,0.1578,0.421,0.1578,0.3158,0.0526,-0.3684,-0.2106,0,-0.0526,-0.0526,-0.1578,-0.2106,-0.1052,0,0.3684,0.8948,0.8948,0.6842,0.579,0.8422,1,0.9474,0.7894,0.9474,0.8422,0.7894,0.8422,0.9474,1,-0.6702,-0.4226,0.5052,0.5464,0.031,-0.0928,-0.3608,-0.6494,-0.4846,-0.3608,-0.6288,-0.6288,-0.4226,-0.2784,-0.2372,-0.299,-0.1752,-0.1134,0.3196,0.4432,0.7938,0.8556,0.6494,0.6082,0.6908,0.8556,1,1,0.7526,0.8556,0.897,0.897,-1,-1,-0.9492,-0.9468,-0.9178,-0.8622,-0.8984,-0.8814,-0.8356,-0.85,-0.7074,0.376,0.335,0.2744,0.272,0.335,0.4608,0.7848,0.9372,0.2842,-0.0858,-0.231,-0.8138,-0.879,-0.884,-0.9154,-0.9298,-1,-1,-1,-1,-1,-1,-1,-1,-0.9798,-0.9822,-0.8126,-0.1878,0.3688,0.8154,0.7046,0.2204,-0.1868,-0.399,0.509,0.563,0.8022,0.8428,0.83,0.36,-0.0746,-0.186,-0.345,-0.6596,-0.8424,-0.7912,-0.7494,-0.8382,-0.8492,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.9534,-0.62,1,1,1,1,0.89,0.7432,-0.38,0.017,0.0742,0.2228,0.3656,0.3942,-0.323,-0.7172,-0.4944,-0.6258,-0.5486,0.06,0.1532,-0.13,-0.12,-0.0134,-1,-1,-1,-1,-1,-1,-1,-1,-0.2572,1,1,1,0.0572,-0.4,-0.5714,-0.3142,1,1,0.8858,-0.7714,-0.9428,-0.9714,-0.6858,-0.4572,-0.6286,-0.5428,0.2286,0.1714,-0.0572,-0.5428,-0.3142,-0.5142,-0.4572,-1,-1,-1,-1,-1,-1,0.5012,0.5324,0.5572,0.5928,0.606,0.621,0.5898,0.5338,0.487,0.3156,0.8362,0.817,0.8076,0.8244,0.8166,0.8496,0.8994,0.9042,0.97,1,-0.6934,-0.2118,-0.2162,-0.5314,-0.458,-0.0596,0.5602,0.025,-0.8444,-0.5474,-0.519,-0.4626,-0.3042,-0.2842,-0.3466,-0.256,-0.0466,0.007,0.0184,0.3522,0.4398,0.2108,0.3182,0.4258,0.6408,0.6832,0.6294,0.768,0.7992,0.9378,1,0.9688,0.7172,0.8416,0.7878,0.8868,0.8896,0.7822,0.7312,0.4992,-0.8656,-0.5318,-0.4322,-0.4646,-0.3798,-0.33,-0.3026,-0.2154,0.1158,0.2278,0.2304,0.3848,0.5642,0.3998,0.2826,0.5766,0.7858,0.7708,0.7684,0.8356,0.8506,1,0.9228,0.9328,0.8978,0.883,0.8082,0.878,0.8008,0.8306,0.7334,0.6014,-0.9064,-0.5318,-0.5076,-0.429,-0.3202,-0.4924,-0.4712,-0.2054,0.2356,0.3958,0.4018,0.6888,0.9034,0.6858,0.2688,0.713,0.846,0.867,0.728,0.7916,0.8338,0.849,1,0.9184,0.9274,0.9004,0.6978,0.6254,0.5318,0.4984,0.725,0.58,0.3166,-1,-1,1,-0.8,-1,-0.4,0.3,-1,-0.625,-0.25,-0.3876,-0.3,-0.2376,-0.2876,-0.1626,-0.15,0.175,0.35,0.625,0.6874,0.5,0.5624,0.6874,0.6874,0.8124,1,0.6374,0.6,0.4624,0.85,0.8,0.625,0.525,0.4874,0.4624,0.375,0.275,0.325,0.1874,-0.1126,'20'
-0.323,0.1846,0.2538,0.5384,0.4,-0.6538,-0.323,-0.2038,-0.3424,-0.2654,-0.2076,-0.2038,-0.2884,-0.2962,0.0962,-0.0038,0.2076,0.6884,0.8346,0.5846,0.7038,0.9076,0.9692,0.4924,0.3924,0.3038,0.327,0.3654,0.3154,0.6192,0.6924,1,-0.279,0.2884,0.679,0.9582,0.7396,-0.3674,-0.1116,-0.079,-0.1116,-0.1488,-0.1348,-0.2186,-0.1488,-0.0512,0.2094,0.679,0.7674,0.7582,0.7116,0.6466,0.6232,1,0.8884,0.1906,0.1348,0.1674,0.1302,0.1814,0.3348,0.4372,0.7628,0.9814,-0.3988,0.0104,0.8038,0.9082,0.4238,0.0688,0.2694,0.0272,-0.1524,0.0438,-0.0354,0.0396,0.215,0.5114,0.7746,0.645,0.499,0.3778,0.3194,0.4656,0.6744,0.6826,0.5616,0.3736,0.2944,0.0898,0.1858,0.2026,0.3362,0.5408,0.7788,1,-0.4012,0.0094,0.6798,0.6724,0.1262,0.1676,0.1564,-0.4388,0.096,0.0998,0.0546,0.292,0.3146,0.5104,0.3822,0.145,0.0998,0.0546,0.066,0.3296,0.5556,0.6648,0.4538,0.2392,0.1262,0.0056,0.081,0.1036,0.2468,0.5142,0.7778,1,-0.439,0.1788,0.6544,0.565,0.1382,-0.0162,-0.187,-0.0692,0.183,0.3944,0.4674,0.5854,0.244,-0.0406,-0.1178,-0.1504,-0.1342,-0.0814,-0.1748,0.0894,0.378,0.5284,0.4308,0.1422,-0.0366,-0.065,0.0406,0.1544,0.317,0.496,0.9024,1,-0.536,0.2,0.6266,0.3974,0.0666,-0.3014,0.008,0.2906,0.5946,0.7386,0.168,-0.3066,-0.4186,-0.3066,-0.1626,-0.3066,-0.3226,-0.4454,-0.5254,-0.296,-0.008,0.2266,0.1734,-0.0346,-0.1734,-0.376,-0.2,-0.2,-0.056,0.3174,0.7014,1,-0.174,0.4696,1,0.9566,0.6782,0.2,0.2782,0.4174,0.826,0.4696,0.0434,-0.0522,-0.4086,-0.4434,-0.2782,-0.2434,-0.2782,-0.2608,-0.2086,-0.4348,-0.574,-0.5652,-0.4956,-0.6348,-0.3566,-0.4086,-0.7218,-0.7914,-0.9392,-0.713,-0.6434,-0.087,-0.25,0.25,0.3214,0.5358,0.3928,-0.3214,-0.25,-0.1428,-0.2142,-0.1428,-0.1786,-0.1786,-0.1428,-0.2142,0.1428,0,0.2142,0.5358,0.6786,0.75,0.7858,0.9642,1,0.4286,0.5358,0.4642,0.5,0.4642,0.4642,0.6786,0.6786,0.8214,-0.4182,0.0546,0.0546,0.3818,0.2728,-0.8546,-0.4182,-0.2728,-0.5272,-0.3454,-0.3454,-0.2728,-0.4546,-0.4182,-0.0182,-0.0546,0.1636,0.5636,0.7454,0.6364,0.6364,0.7454,0.8546,0.6,0.2728,0.1636,0.2728,0.2,0.2364,0.5636,0.7454,1,-0.5802,0.0864,0.4568,0.284,0.0124,-0.3086,-0.0864,-0.0124,0.4074,0.5802,0.284,-0.0124,-0.2098,-0.4074,-0.3334,-0.3334,-0.2592,-0.4568,-0.5802,-0.1358,0.1112,0.4074,0.3828,-0.0124,-0.2098,-0.2592,-0.2346,-0.0864,-0.0124,0.4568,0.6296,1,-1,-1,-1,-0.9786,-0.9808,-0.8122,-0.7352,-0.6324,-0.492,-0.405,-0.2648,-0.018,0.2058,0.4366,0.8066,0.9152,0.3372,0.1018,-0.31,-0.5712,-0.5838,-0.7976,-0.9276,-0.965,-0.9728,-0.9706,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.973,-0.9724,-0.7634,-0.5208,0.2782,0.8304,0.3104,0.1814,0.6502,0.518,0.4786,0.7088,0.9612,0.3892,-0.0152,-0.2354,-0.5464,-0.6344,-0.8474,-0.9184,-0.9586,-0.9626,-0.9592,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.8934,-0.6368,0.03,0.22,0.2666,0.14,-0.09,-0.1,-0.3834,-0.71,-0.7316,-0.683,-0.663,-0.7258,-0.6058,-0.72,-0.8086,-0.8086,-0.8068,-0.8334,-0.7668,-0.8268,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3714,1,1,1,1,-0.0572,-0.4,-0.2,-0.6572,-0.6,-0.6286,-0.3714,-0.5714,-0.1428,-0.4286,-0.2,1,1,0.6858,-0.6572,-0.8858,-0.9714,-0.3142,-1,-1,-1,-1,-1,-1,-1,0.111,0.098,0.1178,0.1192,0.1206,0.1312,0.1532,0.2452,0.3964,0.4122,0.508,0.5002,0.475,0.4352,0.3242,0.2962,0.2042,0.0028,-0.1864,-0.2,-0.5866,-0.247,0.242,0.4142,0.7496,0.5884,0.5562,0.5416,0.0998,0.1804,-0.0542,-0.296,-0.4992,-0.4922,-0.4256,-0.31,-0.0964,0.31,0.4852,0.345,0.4922,0.6568,0.7444,1,0.9054,0.8424,0.436,-0.219,-0.317,-0.2924,-0.3556,-0.303,-0.1978,-0.0542,0.31,0.0788,-0.1664,0.0158,0.2714,0.0472,-0.1226,-0.0362,-0.1054,-0.468,-0.7374,-0.6856,-0.6718,-0.4508,-0.2056,0.2194,0.6476,0.4266,0.5752,0.5752,0.6994,0.9724,1,0.8514,0.6856,-0.0398,-0.4508,-0.5648,-0.3022,-0.1398,-0.1606,0.026,0.4196,0.3782,0.171,0.278,0.4094,0.2158,0.0516,0.2584,0.301,-0.3708,-0.3404,-0.3314,-0.2948,-0.225,-0.0396,0.3404,0.6352,0.5684,0.4408,0.2584,0.5228,0.8724,1,0.8358,0.693,0.2128,-0.4772,-0.5228,-0.1428,-0.1186,-0.07,0.1064,0.4802,0.5654,0.3466,0.3618,0.4194,0.234,-0.566,-1,-1,1,1,-1,-1,0.1334,-1,0.0754,0.5094,0.2264,0.3584,0.8302,0.7924,0.7736,0.6604,0.9246,0.6416,0.8302,0.849,0.585,0.6982,1,0.8868,0.6226,0.7924,0.717,0.7736,0.8302,0.7358,0.6038,0.6226,0.6982,0.5094,0.5284,0.5284,0.6038,0.566,0.4528,-0.151,'21'
-0.6254,-0.2236,-0.3052,-0.2114,-0.6072,-0.6526,-0.4472,-0.4894,-0.8006,-0.7764,-0.7854,-0.6224,-0.6676,-0.6646,-0.5952,-0.5106,-0.299,-0.136,0.13,0.287,0.3716,0.1178,0.157,0.3052,0.3806,0.562,0.5982,0.6948,0.7704,0.7886,1,0.8852,-0.6408,-0.1864,-0.1782,0.0096,-0.1864,-0.7742,-0.5892,-0.5728,-0.5836,-0.6408,-0.6354,-0.5728,-0.415,-0.4312,-0.336,-0.17,-0.121,0.2354,0.3904,0.7306,0.6544,0.4448,0.5646,0.679,0.6164,0.551,0.5482,0.5564,0.6898,0.7414,1,0.9836,-0.6324,-0.1744,0.1398,0.3368,0.1558,-0.6592,-0.4194,-0.3874,-0.4168,-0.4514,-0.3716,-0.4434,-0.249,-0.1398,-0.02,0.1344,0.1824,0.6006,0.5818,0.8668,0.787,0.8428,0.6778,0.6272,0.3982,0.4488,0.4568,0.478,0.6698,0.6672,1,0.968,-0.73,-0.3626,0.3698,0.511,0.2408,-0.4842,-0.107,-0.1728,-0.309,-0.416,-0.3966,-0.2262,-0.219,-0.0414,0.0998,0.3284,0.669,0.7446,0.5134,0.6326,0.781,0.7494,0.4648,0.3042,0.2068,0.1898,0.2384,0.3138,0.4136,0.6326,0.725,1,-0.6446,-0.1432,0.549,0.5756,-0.0026,0.0266,0.0796,-0.183,-0.2626,-0.1618,0.0584,0.1778,0.2572,0.5596,0.5172,0.305,0.252,0.2122,0.2732,0.512,0.6976,0.7056,0.2892,0.114,0.0902,0.0424,0.114,0.2096,0.329,0.5624,0.8436,1,-0.6348,0.1066,0.66,0.5732,0.179,-0.2442,-0.0162,-0.0416,0.208,0.4864,0.2984,0.3708,0.056,-0.1428,-0.1284,-0.2188,-0.2332,-0.2008,-0.2478,-0.0126,0.378,0.4612,0.056,-0.103,-0.15,-0.3744,-0.2948,-0.0742,0.0452,0.3164,0.7974,1,-0.503,0.1758,1,0.9454,0.594,0.0182,0.2666,0.7152,0.7696,0.7878,0.3394,0.0606,-0.1636,-0.3394,-0.3394,-0.2122,-0.091,-0.091,0.0424,-0.097,-0.1516,-0.206,-0.291,-0.5818,-0.5152,-0.3576,-0.594,-0.6788,-0.7576,-0.3758,-0.2788,-0.4424,-0.2142,0.1786,0.1072,-0.0358,-0.1786,-0.4286,-0.1428,-0.1786,-0.1786,-0.1786,-0.1786,-0.1428,-0.2142,-0.2858,-0.4642,-0.2142,-0.0358,0.1428,0.25,0.4286,0.4642,0.2858,0.3214,0.3928,0.4286,0.6428,0.5358,0.8572,0.7858,0.8928,0.8928,1,-0.1864,0.1864,0.0508,0.1186,-0.1864,-0.1526,-0.322,-0.0848,-0.1526,-0.322,-0.1526,-0.0848,-0.2542,-0.2882,-0.1864,-0.1186,0.017,0.1186,0.3898,0.4576,0.5594,0.4238,0.356,0.4576,0.5594,0.695,0.7966,0.7966,0.9322,0.7966,1,0.8984,-0.6,0.0444,0.6222,0.5556,0.0666,-0.2222,-0.1112,-0.0888,-0.1334,0.2222,0.5334,0.6666,0.3778,0.2,0.2666,-0.0888,-0.0666,-0.0444,-0.1334,0.1778,0.4666,0.3334,0.2,0.0666,0.0444,0,-0.0222,0.0888,0.2666,0.4222,0.7334,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9438,-0.8162,-0.7392,-0.651,-0.4672,-0.2026,0.2102,0.6398,0.8874,0.3864,-0.0864,-0.5722,-0.6566,-0.8668,-0.9136,-0.953,-0.955,-0.953,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9726,-0.887,-0.504,0.0042,0.4298,0.8018,0.825,0.6534,0.6244,0.0942,-0.4572,-0.7654,-0.8286,-0.938,-0.9484,-0.9604,-0.9648,-0.9708,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.98,-0.65,-0.1156,0.1888,0.191,0.2044,-0.0224,-0.2956,-0.3446,-0.4334,-0.722,-0.726,-0.804,-0.75,-0.74,-0.7668,-0.9,-0.86,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0.6286,1,1,-0.1142,-0.5714,-0.8286,-0.8858,-0.8572,-0.5714,0.0286,0.8,0.4858,0,-0.7142,-0.8,-0.8572,-0.8572,-0.6572,-1,-1,-1,-1,-1,-1,0.2662,0.2804,0.265,0.2856,0.2948,0.2648,0.172,0.1728,0.2668,0.4874,1,1,1,1,1,1,0.9914,0.919,0.7232,0.101,-0.72,0.0824,-0.8888,-0.7294,-0.5592,-0.4522,-0.1654,-0.1084,0.1646,-0.038,0.6708,0.7468,0.6202,0.443,0.6202,0.4178,1,0.595,0.7216,0.6962,0.9746,0.6708,0.7722,0.4684,0.443,0.5696,0.8988,0.8734,0.595,0.8988,0.8988,0.519,0.7974,0.8734,0.6456,0.7468,0.5696,0.4936,0.2658,-0.6202,0.159,0.6818,0.091,0.25,-0.0682,0.25,0.1818,0.2954,0.1818,-0.1818,-0.0454,0.091,0.9546,0.5682,0.591,1,0.8182,0.3864,0.3182,0.409,0.2046,0.1818,0.3864,0.1818,-0.091,-0.341,-0.0454,0.2046,-0.0454,0.3182,0.2272,-0.591,-0.0132,0.2106,0,-0.1974,-0.171,-0.3422,-0.0658,-0.171,0.0922,0.4342,0.3422,0.1052,0.2106,0.6842,0.7894,1,0.9606,0.7236,0.7106,0.1448,-0.1448,-0.1184,-0.1842,-0.171,-0.0922,-0.0132,-0.0394,-0.4606,-0.1184,-0.0264,0.0264,-0.4868,-0.865,1,-1,-1,-1,-1,-1,-1,-1,-0.0824,0.553,0.4118,0.4824,0.647,0.9294,1,0.7412,0.553,0.9058,0.7648,0.4118,0.6942,0.553,0.4824,0.3648,0.3176,0.1764,0.4824,0.6,0.6942,0.7176,0.5294,0.5764,0.3412,0.247,0.647,0.5764,0.1764,-0.0118,0.153,-0.0824,'21'
-0.493,0.0832,0.1926,0.3956,0.1886,-0.5538,-0.359,-0.286,-0.4158,-0.4036,-0.432,-0.4646,-0.14,-0.2292,0.1034,0.2048,0.4362,0.5984,0.7972,0.6796,0.7404,0.7404,0.789,0.923,0.9594,0.7484,0.7038,0.6228,0.6592,0.785,0.8824,1,-0.3772,0.0972,0.1862,0.4564,0.3114,-0.5618,-0.3806,-0.2818,-0.3838,-0.3048,-0.252,-0.2192,-0.2322,-0.229,-0.028,-0.0742,0.1004,0.2126,0.463,0.5058,0.71,0.5354,0.6276,0.7034,0.7924,0.9506,1,0.7332,0.743,0.7726,0.7496,0.9078,-0.5182,0,0.1132,0.3868,0.2372,-0.7592,-0.584,-0.4672,-0.3978,-0.3504,-0.427,-0.4198,-0.2774,-0.3284,-0.2116,-0.2884,-0.0292,0.062,0.292,0.6606,0.803,0.6678,0.5548,0.6314,0.6642,0.9818,1,0.9854,0.9014,0.8906,0.876,0.9744,-0.5822,-0.161,0.1884,0.3288,0.065,-0.5068,-0.4212,-0.459,-0.3904,-0.5206,-0.4828,-0.4966,-0.4144,-0.3528,-0.3528,-0.185,-0.209,-0.0514,0.3014,0.459,0.7534,0.7602,0.5308,0.452,0.6164,0.7774,0.9144,0.959,0.959,0.8596,0.8768,1,-0.6674,-0.2476,0.4732,0.505,-0.0812,-0.3268,-0.5524,-0.608,-0.7782,-0.6,-0.5842,-0.6316,-0.5564,-0.505,-0.4496,-0.4178,-0.3386,-0.109,0.1326,0.406,0.699,0.8298,0.7268,0.5366,0.493,0.695,0.901,1,0.9762,0.8258,0.893,0.9842,-0.7074,0.0792,0.554,0.4004,-0.4676,-0.53,-0.0696,-0.1798,-0.506,-0.7554,-0.6978,-0.7794,-0.7458,-0.7362,-0.6354,-0.645,-0.53,-0.343,-0.0552,0.2278,0.6834,0.9952,0.8178,0.4436,0.458,0.5396,0.837,1,0.9808,0.7938,0.8514,0.8896,-0.5624,0.1736,1,0.7778,-0.4166,-0.5694,-0.2292,-0.3194,-0.4166,-0.7014,-0.6736,-0.5902,-0.5348,-0.6666,-0.4306,-0.493,-0.4862,-0.8334,-0.3402,-0.243,0.3612,0.9098,0.8542,0.5902,0.3194,0.2362,0.8194,0.9098,0.9098,0.4444,0.4028,0.4166,-0.1936,0.258,0.3226,0.3226,0.0968,0.0322,-0.0968,0,-0.0968,-0.1936,-0.1612,-0.0322,0.3226,0.3548,0.4516,0.613,0.6452,0.5484,0.6774,0.7742,0.7742,0.6452,0.5484,0.6774,0.742,0.7096,0.5806,0.613,0.6452,0.7096,1,1,-0.5814,-0.0232,0.2558,0.3954,0.1628,-0.6744,-0.3024,-0.3024,-0.5814,-0.5348,-0.628,-0.3954,-0.2558,-0.2094,-0.2094,0.2558,0.3024,0.8604,0.8604,0.7674,0.721,0.8604,0.7674,1,0.907,0.5814,0.5814,0.5814,0.628,0.721,0.8604,0.814,-0.4894,0.1276,0.617,0.5744,-0.2978,-0.6382,-0.0638,-0.0638,-0.532,-0.532,-0.5532,-0.766,-0.851,-0.8724,-0.7022,-0.3404,-0.1276,0.0212,0.1064,0.468,0.766,0.9574,0.6596,0.4894,0.532,0.766,0.9574,1,1,0.9148,0.9148,0.9574,-1,-1,-1,-1,-1,-1,-1,-0.7186,-0.6678,-0.617,-0.539,0.4474,0.9186,0.956,0.9016,0.8136,0.5492,0.6204,0.6916,0.3084,-0.3016,-0.3728,-0.7084,-0.8576,-0.8916,-0.9424,-0.9322,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9446,-0.9366,-0.9102,-0.7604,-0.2754,0.1438,0.271,0.4756,0.8602,0.728,0.287,-0.1008,-0.3068,-0.8374,-0.8698,-0.9282,-0.9462,-0.9606,-0.973,-0.975,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9352,-0.95,-0.85,-0.3768,0.017,0.0484,-0.0544,0.0342,0.2514,0.4628,0.3856,0.1542,-0.0344,-0.5172,-0.6726,-0.4934,-0.34,-0.46,-0.8034,-0.8834,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.2,0.0286,1,1,1,0.1714,-0.9142,-0.8286,-0.8286,-0.8572,-0.3714,-0.4858,1,1,-0.5428,-0.3714,-0.5428,-0.1714,-0.4,-0.7142,-1,-1,-1,-1,-1,-1,0.2826,0.2892,0.245,0.1666,0.1114,0.1248,0.1454,0.118,0.0996,0.1646,0.4382,0.4996,0.5184,0.5982,0.6324,0.704,0.7814,0.8616,0.9584,0.938,-0.6934,-0.2,-0.76,-0.5684,-0.258,0.024,0.1432,0.0666,0.9294,1,0.4236,0.153,0.4236,0.247,-0.0824,0.447,0.4,0.5412,0.4942,0.2352,0.7058,0.3176,0.1412,0.6236,0.4706,0.3176,0.4118,0.4,0.5412,0.2118,0.1882,0.3764,0.3648,0.4236,0.5294,0.647,0.353,-0.0824,0.1294,-0.353,0.7932,0.862,0.3448,0.0258,0.1982,0.0344,0.0862,0.138,0.2328,0.4482,0.319,0.4742,0.319,0.2156,0.4138,0.6034,0.5258,0.4742,0.3362,0.4482,0.4656,0.7414,0.7844,0.7932,0.638,0.612,0.9828,0.9742,1,0.6552,0.5776,0.1466,0.3192,0.38,-0.0212,-0.2522,-0.0882,-0.1672,-0.003,0.149,0.38,0.2826,0.4894,0.4832,0.4104,0.386,0.5684,0.7872,0.7812,0.69,0.6232,0.6048,0.6232,0.7082,0.6534,0.6414,0.8662,0.9028,1,1,0.775,0.7508,0.5076,0.3252,-0.968,1,-1,-1,-1,1,-1,-1,-1,0.0266,0.1328,0.2036,-0.1328,0.0266,0.0088,0.0442,-0.0974,0.1858,-0.0442,0.292,0.7876,0.5044,0.6638,1,0.6106,0.7522,0.77,0.5398,0.7522,0.7168,1,0.8054,0.6106,0.3982,0.469,0.5222,0.4336,0.292,0.4514,0.3274,0.2036,'22'
-0.487,0.0646,0.0388,0.3388,0.1968,-0.4936,-0.4646,-0.3064,-0.429,-0.2548,-0.3064,-0.1968,-0.2032,-0.0742,-0.1,0.1032,0.3322,0.4678,0.6838,0.742,0.6162,0.487,0.7162,0.758,0.6678,0.6904,0.5096,0.6484,0.6452,0.771,0.9258,1,-0.6314,-0.0304,-0.045,0.3266,0.2598,-0.434,-0.5298,-0.5066,-0.6372,-0.3468,-0.4542,-0.2714,-0.3818,-0.1756,-0.2918,-0.077,-0.1552,0.1234,0.4426,0.7388,0.6168,0.3092,0.3526,0.582,0.6866,0.9478,0.8316,0.7822,0.6284,0.7852,0.8142,1,-0.6198,-0.0856,-0.0334,0.3382,0.2452,-0.672,-0.6284,-0.4194,-0.5008,-0.341,-0.3614,-0.225,-0.2598,-0.1408,-0.1756,-0.0828,0.1118,0.1872,0.4978,0.55,0.7532,0.7968,0.4892,0.5036,0.7794,0.7678,0.9826,0.9622,0.8606,0.8084,1,0.9884,-0.6334,-0.1484,0.109,0.3304,0.1394,-0.4878,-0.3484,-0.294,-0.397,-0.397,-0.3758,-0.4424,-0.2484,-0.3304,-0.1728,-0.1878,-0.097,0.109,0.2878,0.609,0.703,0.7484,0.694,0.5848,0.594,0.791,0.8576,0.9788,0.906,0.8152,0.8636,1,-0.6488,-0.2874,0.4354,0.5216,0.0154,-0.1154,-0.3356,-0.4664,-0.58,-0.5352,-0.5284,-0.5732,-0.4664,-0.3632,-0.2736,-0.2772,-0.2772,-0.1016,0.1772,0.3976,0.666,0.7832,0.7762,0.5938,0.5766,0.5698,0.8142,1,0.9862,0.7314,0.7556,0.8968,-0.5594,0.1564,0.6384,0.5066,-0.0922,-0.5706,-0.3898,-0.4538,-0.6234,-0.661,-0.6008,-0.5594,-0.6836,-0.6234,-0.3898,-0.4388,-0.3296,-0.2768,-0.0358,0.2956,0.6008,0.8494,0.8192,0.5104,0.533,0.5518,0.6836,0.9284,1,0.7816,0.8644,0.872,-0.6104,0.0498,0.582,0.3872,-0.4726,-0.5676,-0.4536,-0.62,-0.772,-0.8194,-0.8242,-0.6294,-0.5582,-0.5962,-0.525,-0.4726,-0.4964,-0.392,-0.3112,-0.0452,0.3872,0.7624,0.8622,0.6248,0.582,0.5344,0.753,1,0.8764,0.829,0.7388,0.8148,-0.5686,-0.0588,-0.098,0.0588,-0.1372,-0.5686,-0.3334,-0.3334,-0.2156,-0.2942,-0.2942,-0.3726,-0.1372,0.0196,-0.0588,0.2942,0.5686,0.7254,0.5294,0.5294,0.6862,0.6078,0.5686,0.5686,0.6078,0.3726,0.2156,0.5294,0.6078,0.804,1,0.9608,-0.8076,-0.1538,0,0.1924,0.0384,-0.6154,-0.4616,-0.3846,-0.6154,-0.423,-0.4616,-0.3462,-0.3462,-0.3076,-0.1924,0,0.2308,0.3846,0.6538,0.577,0.3846,0.423,0.6924,0.6538,0.5,0.3076,0.3462,0.5,0.577,0.6538,0.7692,1,-0.6924,-0.4286,0.3406,0.4726,0.099,-0.099,-0.4066,-0.4726,-0.4066,-0.4946,-0.5384,-0.5164,-0.2968,-0.2308,-0.1648,-0.1428,-0.2528,0.099,0.1648,0.5164,0.4726,0.8022,0.7582,0.6264,0.6264,0.6704,0.912,0.8462,0.934,0.8242,0.8462,1,-1,-1,-1,-1,-1,-1,-1,-0.8918,-0.69,-0.6468,-0.564,0.5316,0.899,0.737,0.6072,0.4702,0.4882,0.427,0.6756,0.8414,0.1964,-0.1604,-0.4954,-0.7514,-0.8738,-0.9244,-0.899,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.977,-0.9416,-0.9336,-0.7706,-0.1762,0.202,0.5202,0.493,0.7788,0.405,0.079,-0.3758,-0.4948,-0.6372,-0.751,-0.8838,-0.901,-0.89,-0.9484,-0.9556,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9668,-0.82,-0.77,-0.2434,0.1974,0.12,0.2674,0.315,0.385,0.4124,0.37,-0.235,-0.5976,-0.6512,-0.8156,-0.8168,-0.2068,-0.2468,-0.6668,-0.89,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.3714,0.0286,1,1,1,-0.3714,-0.7714,-0.7714,-0.9714,-0.8858,-0.7142,-0.7142,-0.7428,-0.3428,-0.2858,0.0572,-0.6,-0.0858,0,-0.5142,-1,-1,-1,-1,-1,-1,0.1646,0.1964,0.2122,0.229,0.2298,0.2332,0.2296,0.203,0.232,0.215,0.6842,0.6976,0.731,0.738,0.7918,0.8484,0.8934,0.9504,0.9822,0.9862,-0.7334,-0.0588,-0.7596,-0.4256,-0.0734,-0.1574,0.1986,0.525,0.677,0.7764,0.3416,0.031,0.3044,0.2796,0.2796,0.4782,0.4906,0.4658,0.4906,0.441,0.4906,0.5528,0.6274,0.8882,0.7888,0.6894,0.59,0.6522,0.6024,0.59,0.5528,0.4782,0.5032,0.6522,1,0.8634,0.4286,0.4658,0.441,-0.3664,0.451,0.5098,0.1274,-0.196,-0.2254,0.0196,0.098,0.4608,0.2352,0.4902,0.3334,0.0686,0.1862,0.245,0.6078,0.5588,0.5196,0.6764,0.5882,0.5392,0.4706,0.4118,0.3628,0.353,0.5686,0.7352,0.8432,1,1,0.7648,0.5588,0.049,-0.0232,0.0698,-0.1814,-0.414,-0.3116,-0.1628,0.1256,0.1162,0.507,0.4884,0.5534,0.4604,0.4604,0.3954,0.6372,1,0.8512,0.8512,0.7396,0.6838,0.721,0.693,0.7674,0.6186,0.7674,0.9348,0.7116,0.5348,0.8884,0.8512,0.6,0.386,-0.9312,-1,-1,1,0,-1,-0.6,-0.4,-1,-0.536,-0.344,-0.232,0.088,0.072,-0.024,0.072,0.008,0.12,-0.056,0.408,0.536,0.648,0.84,0.696,0.616,1,0.856,0.84,0.584,0.728,0.552,0.776,0.456,0.584,0.664,0.632,0.664,0.232,0.312,0.136,-0.12,'22'
-0.8656,-0.2184,0.6722,0.8908,0.5126,0.5126,0.5294,0.4454,0.6638,0.916,1,0.3278,0.084,-0.1092,-0.2606,-0.168,-0.126,-0.126,-0.2184,-0.0756,0.1932,0.7648,0.8824,0.3446,0.1344,0.1932,0.0672,0.1092,0.4958,0.5378,1,0.8656,-0.9724,-0.6314,0.576,0.7696,0.3732,0.318,0.3364,0.106,0.0322,0.9262,1,0.4654,-0.0414,-0.0046,-0.1336,-0.0414,-0.1612,-0.2626,-0.3272,-0.2258,-0.023,0.7788,0.788,0.2074,-0.023,0.1152,-0.1152,-0.0692,0.3548,0.4194,0.8342,0.6498,-0.8628,-0.3726,0.8726,1,0.4706,0.3824,0.2648,-0.1078,-0.3726,0.3138,0.3334,0.7648,0.7746,0.7352,0.4608,0.3432,0.1568,-0.049,-0.0196,0.2156,0.4608,0.7156,0.6176,0.6764,0.3334,0.1568,0.2352,0.1372,0.147,0.5294,0.5294,0.5882,-0.59,-0.142,0.6214,0.6782,-0.0284,-0.1294,0.06,-0.2618,-0.2556,-0.205,-0.224,-0.1104,0.1294,0.2618,0.6026,0.5016,0.59,0.4638,0.4448,0.3438,0.4574,0.6404,1,0.9116,0.4448,0.224,0.1988,0.243,0.1672,0.2492,0.4764,0.5078,-0.532,-0.17,0.4818,0.5544,-0.0362,-0.326,-0.2646,-0.4596,-0.3928,-0.4428,-0.326,-0.5376,-0.3314,-0.337,-0.1364,-0.131,0.1866,0.4262,0.7326,0.7494,0.61,0.6324,0.7604,1,0.922,0.7158,0.4874,0.3594,0.4374,0.4428,0.5598,0.7326,-0.6334,-0.28,0.5066,0.4934,-0.4066,-0.5534,-0.7,-0.78,-0.7466,-0.62,-0.46,-0.5666,-0.58,-0.5334,-0.42,-0.5266,-0.1266,0.0066,0.4134,0.8266,0.74,0.28,0.6066,0.5134,0.76,1,0.7734,0.52,0.5934,0.5066,0.48,0.7734,-0.5744,0.0088,0.5394,0.4578,-0.4228,-0.656,-0.691,-0.6618,-0.5686,-0.586,-0.5394,-0.4228,-0.2478,-0.2594,-0.2594,-0.347,-0.067,0.172,0.5394,0.7842,0.7726,0.6034,0.6094,0.7668,0.8484,0.8426,0.7726,0.7026,0.656,0.7202,0.9126,1,-0.6876,-0.25,0.6876,0.9376,0.3124,0.5,0.5,0.625,0.875,0.9376,0.9376,0.1876,0.0624,-0.125,-0.125,-0.375,0,-0.0624,-0.5624,0,0.125,0.75,0.75,0.1876,0.1876,0.1876,0.1876,0,0.375,0.6876,1,0.625,-0.8286,-0.3142,0.6,0.8286,0.5428,0.5428,0.4858,0.2572,0.4858,0.8858,1,0.2,0.0858,-0.1428,-0.3714,-0.1428,-0.2,-0.1428,-0.1428,-0.3142,0.0858,0.7142,0.8858,0.3714,0.0858,0.2572,0.0286,0.0858,0.4858,0.5428,0.9428,0.8286,-0.451,0,0.5882,0.647,0.0588,-0.3138,-0.0784,-0.196,-0.1764,-0.1568,-0.2156,-0.255,0,0.0588,0.3726,0.4118,0.6274,0.6274,0.6862,0.4902,0.451,0.7058,0.9804,1,0.5098,0.4118,0.2156,0.2942,0.3334,0.4118,0.4118,0.5686,-0.9538,-0.9564,-0.741,0.9666,0.7128,1,0.7846,1,0.3462,-0.6052,-0.5154,0.4026,0.6076,0.8538,0.8076,0.7358,0.6616,0.1718,-0.1206,-0.0898,0.1076,0.059,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9512,-0.9558,-0.3318,1,1,1,1,1,1,-0.6916,-0.5366,0.3806,0.724,0.7508,0.4948,0.4634,0.404,0.1396,0.0478,-0.269,-0.1036,0.6042,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9334,-0.9268,-0.2968,-0.26,-0.0734,-0.19,-0.0268,-0.1568,-0.43,-0.7734,-0.6534,-0.78,-0.765,-0.74,-0.884,-0.936,-0.744,-0.452,-0.248,-0.532,-0.74,-0.492,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9428,1,1,1,1,-0.5142,-0.5142,1,1,1,1,1,0.4286,-0.2,-0.0286,-0.0572,0.5142,0.6572,-0.2858,-0.8,-0.5714,-0.3714,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,1,1,0.5402,0.2782,0.2782,0.3014,0.3626,0.3528,0.3224,0.2394,0.1056,-0.084,0.3744,-0.6266,-0.5058,-0.5948,0.1246,0.6124,0.7334,0.7404,1,-0.6632,-0.2,-0.2842,0.0316,0.0948,0.0316,0.0526,0.3684,0.5578,0.4316,0.2422,0.7894,0.8316,0.621,0.5368,0.6842,0.7052,0.6422,0.621,0.579,1,1,0.8106,0.6632,0.7474,0.6842,0.3052,0.2842,0.5578,0.4948,0.3052,-0.221,-0.3268,0.01,-0.1684,-0.1882,-0.406,-0.2476,-0.1684,0.4654,0.604,0.1684,-0.01,0.703,0.802,0.2476,0.208,0.604,0.8812,0.9406,0.7426,1,0.9604,0.7228,0.7822,0.8416,0.802,0.6634,0.604,0.5644,0.7228,0.307,0.1882,-0.1486,-0.093,0.3954,0.2558,-0.1396,-0.3954,-0.0698,0.1162,0.628,0.8372,0.4186,0.372,0.5116,0.7906,0.3024,0.4884,0.7442,0.721,1,0.7906,0.907,0.7906,0.5582,0.3954,0.3024,0.4884,0.5116,0.5814,0.372,0.4652,0.3024,0.0698,-0.3024,1,1,-1,-1,-1,-1,-1,-0.8,-1,-0.3704,0.4074,-0.0556,-0.4074,-0.3704,-0.426,-0.2222,-0.1482,0.074,0.7592,0.7408,0.7408,0.7592,0.6666,0.6666,0.8888,1,0.7962,0.5926,0.3148,-0.5,-0.574,-0.463,-0.1666,-0.0926,0.4444,0.5,0.2592,0.3888,0.3518,0.3888,0.074,'23'
-0.566,-0.1252,0.5192,0.6328,0.5692,0.4658,0.4558,0.2922,0.6828,1,0.8732,0.1352,0.0918,-0.0016,-0.0518,-0.162,-0.055,-0.1486,-0.1752,0.0016,0.4124,0.4458,0.0718,-0.055,-0.0284,-0.2654,-0.0752,0.1152,0.0184,0.0852,0.2822,0.3156,-0.5084,-0.0084,0.9746,1,0.8094,0.6652,0.7754,0.0508,0.6398,0.839,0.7542,0.7966,0.3644,0.2246,0.1314,0.0424,0.1102,0.2076,0.0424,0.1694,0.3772,0.3856,0.3856,-0.017,-0.178,-0.3008,-0.2162,-0.195,-0.1314,-0.0678,-0.0974,0.1314,-0.3098,0.1924,1,0.9812,0.0846,-0.3052,-0.1972,-0.014,-0.2864,-0.3474,-0.46,-0.4084,-0.493,-0.2112,-0.1032,-0.0234,0.2724,0.3052,0.263,0.5868,0.568,0.4508,0.5352,0.6056,0.2724,-0.0752,-0.2488,-0.3052,-0.2488,-0.0892,0.1174,0.2582,-0.3974,0.1294,1,0.9108,-0.0492,-0.1786,0.3214,0.4152,-0.2724,-0.6696,-0.6206,-0.5446,-0.4242,-0.6026,-0.5982,-0.3884,-0.1384,0.1696,0.5312,0.8794,0.9196,0.6206,0.5446,0.6652,0.7544,0.5492,0.2812,0.3438,0.4108,0.6116,0.8438,0.75,-0.6414,-0.2482,0.2518,0.262,0.3104,-0.131,0.0414,-0.0794,-0.2724,-0.4172,-0.4482,-0.3104,-0.2172,-0.0758,0.3518,0.4828,0.6138,0.7,0.9172,1,0.9794,0.7482,0.7138,0.3896,0.269,0.2138,0.162,0.3518,0.338,0.6068,0.7794,0.7896,-0.5656,-0.0724,0.4796,0.9592,1,0.0678,0.353,0.466,0.5928,-0.0542,0.457,0.3936,0.3574,0.638,0.6426,0.6652,0.3212,0.3348,0.2444,0.371,0.6924,0.4842,-0.2172,-0.1764,-0.3032,-0.4344,-0.4072,-0.2444,-0.2036,0,0.3574,0.457,-0.3716,0.2028,0.7094,0.8108,1,0.1892,0.331,0.2972,0.3716,0.5472,0.6148,0.277,-0.1486,-0.3514,-0.6082,-0.3986,-0.3244,-0.277,-0.2298,-0.4528,-0.1148,-0.3176,-0.2972,-0.5406,-0.6486,-0.4054,-0.473,-0.723,-0.7298,-0.6756,-0.4528,-0.4594,-0.2572,0.3142,0.4858,0.7714,0.6,0.5428,0.3142,1,0.8858,0.8286,0.4858,0.8286,0.7714,0.7142,0.7714,0.3142,0.8858,0.8286,0.6,0.5428,0.5428,0.6,0.6,0.3714,-0.0286,0.3714,0.5428,0.3142,0.3142,0.0858,0.5428,0.6,-0.9412,-0.2352,0.4706,0.647,0.4118,0.2942,0.4706,0.353,0.2942,1,0.8824,0,0.1176,0.0588,-0.2942,-0.353,-0.2352,-0.7058,-0.7648,0.0588,0.353,0.4706,-0.0588,-0.2942,-0.5882,-0.353,-0.2352,-0.0588,-0.1176,0.0588,0.1176,0.353,-0.55,-0.325,0.275,0.575,0.625,0.075,0.125,0.05,-0.025,-0.225,-0.125,0.1,0.25,0.45,1,0.975,0.675,0.45,0.525,0.625,0.875,0.725,0.25,0.125,-0.025,-0.075,-0.025,0.25,0.15,0.45,0.6,0.6,-0.9278,-0.8976,-0.3852,0.89,1,1,1,1,0.9166,-0.4232,-0.408,0.4724,0.795,0.2752,0.298,0.0854,0.1348,0.1612,-0.1044,-0.0322,-0.3282,-0.5674,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9434,-0.7512,0.6014,1,1,1,1,1,1,-0.607,-0.5902,0.3018,0.7102,-0.0714,-0.3484,-0.4614,-0.4332,-0.019,0.0388,-0.3004,-0.5548,-0.7626,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.86,0.4466,-0.3468,-0.1368,-0.1734,-0.1868,-0.35,-0.59,-0.7368,-0.7534,-0.5646,-0.5778,-0.8046,-0.829,-0.818,-0.8722,-0.6902,-0.5662,-0.8442,-0.9342,-0.9202,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.4858,1,1,1,0.8,-0.3142,-0.6286,1,1,1,1,1,0,0.0858,0.0858,-0.2858,-0.4286,-0.0572,0.3714,0.4286,0.1714,-0.4286,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1,0.9154,0.7004,0.7592,-0.3458,-0.3082,-0.2598,-0.233,-0.2588,-0.3266,-0.4684,-0.4886,-0.2168,-0.2924,-0.52,0.1176,-0.6538,-0.2268,0.0714,0.6904,0.9576,1,-0.8306,-0.4406,-0.2204,-0.1526,0.1016,0.1016,0.017,0.2712,0.4238,0.2204,0.2034,0.4406,0.4576,0.3728,0.4406,0.5084,0.5084,0.7118,1,1,0.678,0.5932,0.7796,0.7118,0.5254,0.4746,0.4406,0.0508,0.0508,0.356,0.2712,-0.2372,-0.772,-0.4736,-0.3508,-0.386,-0.386,-0.4562,-0.3684,-0.1052,0.2808,0.0702,0.1228,0.4036,0.4562,0.1578,0.4386,0.4386,0.7018,0.8948,0.8422,1,0.9122,0.7894,0.8948,0.8596,0.5964,0.421,0.5614,0.5088,0.3684,0.2456,0.2808,-0.0702,0.0124,0.5,0.5624,0.075,0.075,0.1624,0.2374,0.625,0.7874,0.3874,0.5126,0.625,0.725,0.5126,0.4376,0.7624,0.8,0.975,1,0.6874,0.7874,0.5624,0.6374,0.5126,0.2374,0.275,0.425,0.45,0.3124,0.25,0.275,0.2,1,1,-1,-1,-1,-1,-1,-0.7666,-1,0.532,0.5744,0.1914,0.3192,0.5744,1,0.9148,0.4894,0.4894,0.5744,0.4894,0.7022,0.6596,0.532,0.4894,0.4468,0.1914,0.0638,0.2766,0.3618,-0.0638,0.1064,0.5744,0.3192,0.5744,0.7446,0.9574,0.9148,0.4042,0.4894,-0.0638,-0.4894,'23'
-0.8274,-0.3036,0.0734,0.3738,0.6932,0.8084,0.5336,0.3226,0.1054,0.1054,0.131,0.1438,0.2204,0.214,0.5144,0.655,0.9298,1,0.8914,0.8084,0.6614,0.623,0.8274,0.7956,0.8338,0.738,0.5974,0.4824,0.5336,0.5592,0.6422,1,-0.7264,-0.1684,-0.0474,0.2368,0.3474,0.5316,0.4106,0.1632,0.021,0.0422,0.1632,0.0578,0.2,0.2264,0.521,0.679,1,0.9684,0.7684,0.7578,0.6948,0.7264,0.8,0.9894,0.9316,0.6842,0.6578,0.6264,0.6474,0.7052,0.7316,0.9264,-0.5188,-0.0978,0.0376,0.203,0.4938,0.564,0.5138,0.5138,0.2782,0.173,0.3132,0.183,0.238,0.3734,0.4536,0.7744,0.8746,1,0.8396,0.7694,0.6992,0.7444,0.9198,0.9398,0.6692,0.639,0.569,0.4838,0.574,0.584,0.6792,0.8746,-0.515,-0.1,-0.005,0.145,0.395,0.455,0.61,0.595,0.42,0.32,0.385,0.34,0.41,0.47,0.56,0.885,0.855,1,0.845,0.88,0.765,0.805,0.995,0.965,0.775,0.68,0.695,0.645,0.71,0.695,0.695,0.855,-0.756,-0.3984,-0.1056,0.0136,0.2574,0.3496,0.6964,0.6044,0.2086,0.3388,0.3712,0.3334,0.3224,0.4796,0.6856,0.8212,0.9296,1,0.729,0.729,0.767,0.8212,0.9242,0.8158,0.7018,0.599,0.5826,0.5934,0.6206,0.6532,0.6532,0.7128,-0.669,-0.409,-0.0308,0.0024,0.2056,0.7068,0.8062,0.5272,0.1678,0.3334,0.3712,0.4184,0.4516,0.6264,0.7966,1,1,0.7636,0.6974,0.7446,0.8346,0.8204,0.8582,0.74,0.6312,0.5934,0.584,0.6122,0.6644,0.688,0.74,0.7494,-0.802,-0.594,-0.1522,-0.071,0.2436,0.5838,0.6396,0.269,0.1522,0.1776,0.1218,0.3046,0.4162,0.5126,0.8426,0.929,1,0.6954,0.6802,0.8172,0.8832,0.7564,0.5838,0.538,0.467,0.335,0.3046,0.33,0.4772,0.5126,0.6244,0.8274,-0.7916,-0.1666,0.125,0.4584,0.625,0.75,0.5416,0.375,0.0834,0.2084,0.125,0.2084,0.25,0.2916,0.5,0.375,0.8334,0.9166,0.8334,0.7084,0.5834,0.5,0.6666,0.5,0.7916,0.6666,0.625,0.5416,0.625,0.5834,0.5416,1,-0.9608,-0.255,0.0196,0.3334,0.7648,0.8432,0.5294,0.2942,0.1764,0.1764,0.1764,0.1372,0.3334,0.1372,0.5294,0.7254,0.9608,0.9608,1,0.6078,0.7648,0.6862,0.7648,1,0.9216,0.647,0.5294,0.5686,0.4118,0.5294,0.7254,0.9216,-0.6752,-0.1624,-0.077,0.2308,0.3504,0.5214,0.453,0.1794,0.0256,0.1112,0.1452,0.2136,0.1794,0.2308,0.5042,0.641,0.8974,0.8462,0.7778,0.7094,0.7436,0.7264,0.7778,0.983,1,0.641,0.6752,0.6752,0.6924,0.7436,0.7094,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.946,-0.9012,0.1034,0.5416,0.3528,0.9618,0.6742,0.3192,0.355,0.3258,0.618,0.6382,-0.1326,-0.8292,-0.8786,-0.9258,-0.9258,-0.9528,-0.7574,-0.8292,-0.8944,-0.9168,-0.9348,-0.9304,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9898,-0.9792,-0.422,-0.1124,0.5528,0.5064,0.2652,0.2978,0.2646,0.4718,0.7258,0.9066,-0.107,-0.8648,-0.9568,-0.972,-0.9816,-0.9854,-0.8312,-0.634,-0.1822,-0.2704,-0.2906,-0.4362,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.94,-0.92,-0.275,-0.135,0.2,0.03,-0.12,-0.14,-0.156,-0.228,-0.348,-0.356,-0.268,-0.3634,-0.5068,-0.61,-0.7568,-0.7534,-0.08,1,1,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8572,1,1,1,0.6286,-0.6858,-0.7142,-0.6858,-0.6858,-0.8,-0.7428,1,1,1,1,-0.4286,-0.7714,1,1,1,0.6286,-0.8286,-0.8286,-0.9142,1,1,1,1,1,1,1,1,1,1,0.2358,0.1918,0.194,0.1896,0.1818,0.1816,0.1936,0.226,0.1984,-0.0328,-0.6934,-0.5412,-0.9906,-0.6704,-0.2676,-0.0814,0.495,1,-0.1316,0.3684,0.1316,0.2894,0.8158,0.3422,1,0.4736,0.4474,0.0264,0.421,0.6578,0.5264,0.2106,0.2632,0.7368,0.8684,-0.421,0.2106,0.7106,0.5526,0.2106,0.6578,0.4736,0.421,0.421,0.3684,0.7106,0.5526,0.3684,-0.1316,-0.2368,0.124,0.1404,0.5372,0.7852,0.9174,0.3058,0.7024,0.5042,0.686,0.6198,0.6198,0.7852,0.6034,0.5206,0.6034,0.5042,0.7024,0.7852,0.686,0.9008,0.7686,0.8512,0.5042,0.7852,0.9338,0.4546,0.9834,0.7686,0.438,0.3058,0.0744,-0.3058,0.1636,0.109,0.291,0.5454,0.7272,0.6182,0.7636,0.291,0.491,0.5636,0.4546,0.491,0.9454,0.4364,0.6,1,0.4,0.6728,0.5818,0.509,0.3454,0.8364,0.709,0.509,0.7272,0.6,0.5454,0.7272,0.3454,0.2364,-0.1272,-0.7272,-0.9982,1,-1,-1,-1,-1,-1,-1,1,-0.6576,-0.5946,-0.3694,-0.2612,-0.063,-0.018,0.09,0.2882,0.081,-0.081,0.1982,0.1802,0.1622,-0.045,0.2162,0.2792,0.2972,0.3244,0.2702,0.5496,0.4324,0.6756,0.7208,0.7748,0.8018,0.8288,0.955,1,0.964,0.8648,0.8648,0.7028,'24'
-0.8944,-0.4956,-0.0264,0.1086,0.613,0.6774,0.3958,0.2082,0.1202,0.085,0.1144,0.2492,0.22,0.3196,0.4486,0.6188,0.9354,1,0.8124,0.6422,0.7008,0.7126,0.8182,0.7244,0.736,0.5014,0.4428,0.4428,0.3958,0.4428,0.6364,0.5954,-0.7268,-0.3402,-0.0464,0.1238,0.5774,0.6288,0.4484,0.4124,0.2114,0.1238,0.268,0.1958,0.2628,0.3712,0.397,0.701,0.8454,1,0.8454,0.6804,0.701,0.7474,0.8144,0.7784,0.665,0.5568,0.5104,0.4484,0.5104,0.5516,0.567,0.7114,-0.7156,-0.388,-0.1036,-0.0072,0.3302,0.335,0.412,0.3254,0.1084,0.1808,0.229,0.1808,0.1374,0.335,0.518,0.624,0.9856,1,0.5904,0.6096,0.7494,0.735,0.7928,0.653,0.6192,0.4844,0.4072,0.4844,0.4698,0.4796,0.624,0.653,-0.728,-0.4272,-0.0502,0.0072,0.3366,0.4368,0.5656,0.37,0.1074,0.265,0.16,0.241,0.3318,0.389,0.642,0.8806,1,0.8186,0.599,0.7422,0.7518,0.8138,0.7422,0.7136,0.6182,0.5132,0.4988,0.5132,0.4892,0.5418,0.6086,0.642,-0.715,-0.4612,-0.0052,0.0156,0.259,0.8394,0.8964,0.4716,0.1554,0.2332,0.43,0.3782,0.4404,0.5648,0.7928,0.969,1,0.9844,0.7876,0.8082,0.917,0.9378,0.9016,0.6736,0.6528,0.5648,0.5284,0.57,0.5544,0.5596,0.6788,0.7616,-0.771,-0.4962,-0.1858,0.028,0.196,0.4962,0.6132,0.4962,0.3994,0.2876,0.1094,0.3282,0.4452,0.5878,0.776,1,0.9134,0.766,0.6082,0.6132,0.8016,0.776,0.6896,0.43,0.3486,0.3842,0.3334,0.2672,0.3078,0.4198,0.4962,0.5166,-0.9224,-0.6122,-0.3296,-0.2466,0.1746,0.6122,0.662,0.3352,0.2132,0.252,0.0804,0.1246,0.2908,0.5678,0.9668,1,0.795,0.7506,0.6566,0.7506,0.7674,0.6842,0.4516,0.3074,0.1966,0.036,-0.036,0.0526,0.0804,0.18,0.2466,0.3408,-0.8824,-0.451,0.098,0.255,0.6078,0.7254,0.6078,0.255,0.1764,0.1764,0.1764,0.3334,0.3334,0.3334,0.6078,0.7254,0.8432,1,1,0.7648,0.804,0.804,0.804,0.7254,0.804,0.6078,0.3726,0.5294,0.4118,0.4118,0.647,0.647,-0.92,-0.56,-0.12,0.16,0.64,0.64,0.32,0.2,0.12,0.08,0.08,0.16,0.16,0.24,0.44,0.64,1,1,0.76,0.68,0.64,0.72,0.76,0.68,0.68,0.52,0.4,0.44,0.44,0.4,0.6,0.72,-0.7478,-0.5294,-0.0924,-0.042,0.0756,0.647,0.647,0.395,0.3614,0.2436,0.2942,0.3446,0.4286,0.4958,0.731,0.9664,1,0.5966,0.563,0.5798,0.7816,0.6638,0.6638,0.4622,0.3782,0.4118,0.2942,0.2942,0.2942,0.3782,0.4454,0.4622,-1,-1,-1,-1,-1,-1,-1,-1,-0.951,-0.9408,-0.8324,0.3144,0.5644,0.5128,0.3686,0.2758,0.4304,0.6006,0.9484,0.4846,-0.1572,-0.5258,-0.8092,-0.902,-0.9124,-0.9408,-0.9356,-0.9562,-0.9202,-0.835,-0.9176,-0.9124,-0.9176,-1,-1,-1,-1,-1,-1,-1,-1,-0.9882,-0.987,-0.8982,-0.1746,0.033,0.201,0.505,0.8718,0.9436,0.8848,0.926,0.4498,-0.1398,-0.5086,-0.8652,-0.9692,-0.9738,-0.9824,-0.9852,-0.987,-0.9296,-0.7482,-0.672,-0.5476,-0.4644,-1,-1,-1,-1,-1,-1,-1,-1,-0.96,-0.9,-0.5534,-0.38,-0.36,-0.17,-0.105,-0.095,-0.14,-0.204,-0.356,-0.292,-0.312,-0.24,-0.42,-0.4734,-0.6668,-0.8434,-0.9234,-0.9534,-0.8468,0.1766,1,1,1,-1,-1,-1,-1,-1,-1,-1,-1,-0.8858,1,1,1,1,-0.6,-0.6,-0.6286,-1,-0.9142,-0.6286,0.8286,1,1,1,1,-0.6286,-1,-1,-0.2858,1,1,1,-0.2572,-0.6286,1,1,1,1,1,1,1,1,1,1,-0.0018,-0.0018,0.0218,0.0032,0.0212,0.0084,0.0262,0.0486,0.007,-0.3222,-0.7066,-0.5294,-0.8902,-0.462,-0.0326,0.0392,0.1912,1,0.192,0.1126,0.3378,0.4834,0.7748,0.245,0.6556,0.3246,0.51,0.4834,0.3378,0.5894,1,0.7086,0.4834,0.3378,0.4438,0.245,0.6822,0.457,0.4702,0.6424,0.6026,0.5762,0.3642,0.4834,0.3774,0.51,0.2318,0.3378,0.139,-0.457,-0.038,0.2406,0.0506,0.0886,0.3164,0.076,0.3292,0.5696,0.4556,0.405,0.3798,0.1772,1,0.4304,0.1518,0.2784,0.2784,0.2784,0.4178,0.1772,0.3292,0.6456,0.557,0.2406,0.0886,0.0254,0.519,0.0632,-0.2278,0.1392,0.1392,-0.519,-0.21,-0.05,0.31,0.26,0.06,0.16,0.18,0.5,0.88,0.79,0.83,0.78,0.97,0.56,0.59,0.59,0.89,1,0.83,0.94,0.78,0.67,0.58,0.2,0.71,0.69,0.71,0.57,0.54,0.36,0.45,0.28,-0.9946,1,-1,-1,-1,-1,-1,-1,1,-0.6586,-0.5512,-0.3074,-0.2878,-0.1708,-0.0634,0.044,0.122,0.2196,0.0536,-0.0536,-0.0634,-0.1122,0.0048,0.0926,0.2878,0.3074,0.4342,0.4926,0.239,0.2292,0.483,0.8244,0.8342,0.7854,0.6682,1,0.9708,0.6,0.8926,0.7366,0.4342,'24'
-0.4354,0.0662,0.8392,0.9716,0.59,0.571,0.7318,0.9086,1,0.4384,0.243,-0.06,-0.1578,-0.1198,-0.06,-0.0316,0.1862,0.407,0.4638,0.0852,-0.06,-0.4574,-0.4952,-0.4984,-0.4416,-0.4354,-0.3154,-0.3186,-0.4732,-0.5488,-0.1452,-0.0536,-0.6458,-0.2872,0.0902,0.1908,0.436,0.5472,0.784,0.7358,0.8344,1,0.9896,0.4696,0.3502,0.436,0.2558,0.2474,0.4842,0.5242,0.6562,0.4696,0.4402,0.2034,0.1112,0.1824,0.107,0.1384,0.1844,0.1112,0.0314,0.2558,0.3144,0.6038,-0.6746,-0.353,0.004,0.0784,0.1666,0.4746,0.64