Processing in Detail - CCP4 Workshop Edition¶
Introduction¶
DIALS processing may be performed by either running the individual tools (spot
finding, indexing, refinement, integration, exporting to MTZ) or you can run
xia2 pipeline=dials
, which makes informed choices for you at each stage. In
this tutorial we will run through each of the steps in turn, checking the output
as we go. We will also enforce the correct lattice symmetry.
Tutorial data¶
The following example uses a Beta-Lactamase dataset collected using beamline I04
at Diamond Light Source, and reprocessed especially for these tutorials. The data
is available for download from , but is also available for the workshop
in the beamline data directory of /dls/i03/data/2017/mx19576-1/tutorial_data/summed/
.
We’ll only be using the first run of data in this tutorial.
Import¶
The first stage of step-by-step DIALS processing is to import the data - all that happens here is that the image headers are read, and a file describing their contents (datablock.json) is written.
dials.import /dls/i03/data/2017/mx19576-1/tutorial_data/summed/C2sum_1*.cbf.gz
The output just describes what the software understands of the images it was passed, in this case one sweep of data containing 720 images:
DIALS 1.dev.1890-gcc25deea
The following parameters have been modified:
input {
datablock = <image files>
}
--------------------------------------------------------------------------------
format: <class 'dxtbx.format.FormatCBFMiniPilatusDLS6MSN100.FormatCBFMiniPilatusDLS6MSN100'>
num images: 720
num sweeps: 1
num stills: 0
--------------------------------------------------------------------------------
Writing datablocks to datablock.json
Now is a good point to take a first look at the data using the dials.image_viewer, both to check that the data is sensible and to anticipate any problems in processing:
dials.image_viewer datablock.json
You will be presented with the main image viewer screen:
Play with the brightness slider (①) a little until you can clearly see the spots on the first image (something in the range 10-20 should make the spots obvious). You can also change the colour scheme, toggle various information markers like beam center, and try different configurations for the spot finding (②).
Find Spots¶
The first “real” task in any processing using DIALS is the spot finding.
Since this is looking for spots on every image in the dataset, this process
can take some time, so we request multiple processors (nproc=4
) to
speed this up:
dials.find_spots datablock.json nproc=4
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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 | DIALS 1.dev.1890-gcc25deea
The following parameters have been modified:
spotfinder {
mp {
nproc = 4
}
}
input {
datablock = datablock.json
}
Setting spotfinder.filter.min_spot_size=3
Configuring spot finder from input parameters
--------------------------------------------------------------------------------
Finding strong spots in imageset 0
--------------------------------------------------------------------------------
Finding spots in image 1 to 720...
Setting chunksize=20
Extracting strong pixels from images
Using multiprocessing with 4 parallel job(s)
Found 1183 strong pixels on image 1
Found 987 strong pixels on image 2
Found 938 strong pixels on image 3
Found 934 strong pixels on image 4
Found 1082 strong pixels on image 5
Found 1019 strong pixels on image 6
Found 1046 strong pixels on image 7
Found 1048 strong pixels on image 8
Found 1022 strong pixels on image 9
Found 1032 strong pixels on image 10
Found 920 strong pixels on image 11
Found 961 strong pixels on image 12
Found 978 strong pixels on image 13
Found 1007 strong pixels on image 14
Found 1013 strong pixels on image 15
Found 1015 strong pixels on image 16
Found 940 strong pixels on image 17
Found 944 strong pixels on image 18
Found 950 strong pixels on image 19
Found 956 strong pixels on image 20
Found 1030 strong pixels on image 21
Found 1002 strong pixels on image 22
Found 908 strong pixels on image 23
Found 941 strong pixels on image 24
Found 970 strong pixels on image 25
Found 993 strong pixels on image 26
Found 949 strong pixels on image 27
Found 955 strong pixels on image 28
Found 905 strong pixels on image 29
Found 946 strong pixels on image 30
Found 1010 strong pixels on image 31
Found 1033 strong pixels on image 32
Found 957 strong pixels on image 33
Found 933 strong pixels on image 34
Found 953 strong pixels on image 35
Found 884 strong pixels on image 36
Found 854 strong pixels on image 37
Found 879 strong pixels on image 38
Found 915 strong pixels on image 39
Found 958 strong pixels on image 40
Found 1001 strong pixels on image 41
Found 945 strong pixels on image 42
Found 939 strong pixels on image 43
Found 908 strong pixels on image 44
Found 941 strong pixels on image 45
Found 820 strong pixels on image 46
Found 876 strong pixels on image 47
Found 972 strong pixels on image 48
Found 940 strong pixels on image 49
Found 971 strong pixels on image 50
Found 885 strong pixels on image 51
Found 930 strong pixels on image 52
Found 941 strong pixels on image 53
Found 1004 strong pixels on image 54
Found 922 strong pixels on image 55
Found 863 strong pixels on image 56
Found 821 strong pixels on image 57
Found 913 strong pixels on image 58
Found 839 strong pixels on image 59
Found 873 strong pixels on image 60
Found 903 strong pixels on image 61
Found 874 strong pixels on image 62
Found 896 strong pixels on image 63
Found 844 strong pixels on image 64
Found 926 strong pixels on image 65
Found 978 strong pixels on image 66
Found 888 strong pixels on image 67
Found 930 strong pixels on image 68
Found 916 strong pixels on image 69
Found 889 strong pixels on image 70
Found 966 strong pixels on image 71
Found 834 strong pixels on image 72
Found 954 strong pixels on image 73
Found 901 strong pixels on image 74
Found 847 strong pixels on image 75
Found 930 strong pixels on image 76
Found 960 strong pixels on image 77
Found 902 strong pixels on image 78
Found 882 strong pixels on image 79
Found 910 strong pixels on image 80
Found 867 strong pixels on image 81
Found 828 strong pixels on image 82
Found 902 strong pixels on image 83
Found 850 strong pixels on image 84
Found 871 strong pixels on image 85
Found 957 strong pixels on image 86
Found 822 strong pixels on image 87
Found 1055 strong pixels on image 88
Found 929 strong pixels on image 89
Found 880 strong pixels on image 90
Found 944 strong pixels on image 91
Found 991 strong pixels on image 92
Found 917 strong pixels on image 93
Found 912 strong pixels on image 94
Found 853 strong pixels on image 95
Found 892 strong pixels on image 96
Found 921 strong pixels on image 97
Found 1018 strong pixels on image 98
Found 839 strong pixels on image 99
Found 842 strong pixels on image 100
Found 889 strong pixels on image 101
Found 1016 strong pixels on image 102
Found 950 strong pixels on image 103
Found 939 strong pixels on image 104
Found 922 strong pixels on image 105
Found 937 strong pixels on image 106
Found 902 strong pixels on image 107
Found 927 strong pixels on image 108
Found 1025 strong pixels on image 109
Found 898 strong pixels on image 110
Found 852 strong pixels on image 111
Found 842 strong pixels on image 112
Found 1079 strong pixels on image 113
Found 987 strong pixels on image 114
Found 912 strong pixels on image 115
Found 849 strong pixels on image 116
Found 910 strong pixels on image 117
Found 998 strong pixels on image 118
Found 905 strong pixels on image 119
Found 918 strong pixels on image 120
Found 928 strong pixels on image 121
Found 971 strong pixels on image 122
Found 901 strong pixels on image 123
Found 882 strong pixels on image 124
Found 915 strong pixels on image 125
Found 1021 strong pixels on image 126
Found 976 strong pixels on image 127
Found 838 strong pixels on image 128
Found 849 strong pixels on image 129
Found 937 strong pixels on image 130
Found 930 strong pixels on image 131
Found 887 strong pixels on image 132
Found 935 strong pixels on image 133
Found 872 strong pixels on image 134
Found 944 strong pixels on image 135
Found 906 strong pixels on image 136
Found 976 strong pixels on image 137
Found 1005 strong pixels on image 138
Found 910 strong pixels on image 139
Found 830 strong pixels on image 140
Found 942 strong pixels on image 141
Found 937 strong pixels on image 142
Found 948 strong pixels on image 143
Found 945 strong pixels on image 144
Found 974 strong pixels on image 145
Found 888 strong pixels on image 146
Found 981 strong pixels on image 147
Found 985 strong pixels on image 148
Found 961 strong pixels on image 149
Found 1009 strong pixels on image 150
Found 947 strong pixels on image 151
Found 932 strong pixels on image 152
Found 951 strong pixels on image 153
Found 943 strong pixels on image 154
Found 1036 strong pixels on image 155
Found 1036 strong pixels on image 156
Found 976 strong pixels on image 157
Found 1037 strong pixels on image 158
Found 917 strong pixels on image 159
Found 890 strong pixels on image 160
Found 856 strong pixels on image 161
Found 944 strong pixels on image 162
Found 956 strong pixels on image 163
Found 990 strong pixels on image 164
Found 941 strong pixels on image 165
Found 987 strong pixels on image 166
Found 919 strong pixels on image 167
Found 969 strong pixels on image 168
Found 984 strong pixels on image 169
Found 906 strong pixels on image 170
Found 1033 strong pixels on image 171
Found 1064 strong pixels on image 172
Found 940 strong pixels on image 173
Found 896 strong pixels on image 174
Found 952 strong pixels on image 175
Found 936 strong pixels on image 176
Found 938 strong pixels on image 177
Found 1058 strong pixels on image 178
Found 915 strong pixels on image 179
Found 993 strong pixels on image 180
Found 962 strong pixels on image 181
Found 979 strong pixels on image 182
Found 900 strong pixels on image 183
Found 971 strong pixels on image 184
Found 944 strong pixels on image 185
Found 872 strong pixels on image 186
Found 972 strong pixels on image 187
Found 903 strong pixels on image 188
Found 1040 strong pixels on image 189
Found 1035 strong pixels on image 190
Found 1021 strong pixels on image 191
Found 936 strong pixels on image 192
Found 978 strong pixels on image 193
Found 931 strong pixels on image 194
Found 1092 strong pixels on image 195
Found 1003 strong pixels on image 196
Found 976 strong pixels on image 197
Found 852 strong pixels on image 198
Found 953 strong pixels on image 199
Found 1011 strong pixels on image 200
Found 963 strong pixels on image 201
Found 985 strong pixels on image 202
Found 963 strong pixels on image 203
Found 851 strong pixels on image 204
Found 823 strong pixels on image 205
Found 964 strong pixels on image 206
Found 847 strong pixels on image 207
Found 917 strong pixels on image 208
Found 1070 strong pixels on image 209
Found 1028 strong pixels on image 210
Found 878 strong pixels on image 211
Found 929 strong pixels on image 212
Found 932 strong pixels on image 213
Found 820 strong pixels on image 214
Found 959 strong pixels on image 215
Found 940 strong pixels on image 216
Found 939 strong pixels on image 217
Found 927 strong pixels on image 218
Found 1032 strong pixels on image 219
Found 933 strong pixels on image 220
Found 1054 strong pixels on image 221
Found 965 strong pixels on image 222
Found 1011 strong pixels on image 223
Found 949 strong pixels on image 224
Found 995 strong pixels on image 225
Found 902 strong pixels on image 226
Found 957 strong pixels on image 227
Found 1070 strong pixels on image 228
Found 925 strong pixels on image 229
Found 988 strong pixels on image 230
Found 928 strong pixels on image 231
Found 891 strong pixels on image 232
Found 956 strong pixels on image 233
Found 892 strong pixels on image 234
Found 903 strong pixels on image 235
Found 899 strong pixels on image 236
Found 1013 strong pixels on image 237
Found 928 strong pixels on image 238
Found 972 strong pixels on image 239
Found 980 strong pixels on image 240
Found 997 strong pixels on image 241
Found 935 strong pixels on image 242
Found 1009 strong pixels on image 243
Found 995 strong pixels on image 244
Found 910 strong pixels on image 245
Found 997 strong pixels on image 246
Found 892 strong pixels on image 247
Found 1011 strong pixels on image 248
Found 1062 strong pixels on image 249
Found 960 strong pixels on image 250
Found 952 strong pixels on image 251
Found 897 strong pixels on image 252
Found 947 strong pixels on image 253
Found 1025 strong pixels on image 254
Found 890 strong pixels on image 255
Found 1006 strong pixels on image 256
Found 1017 strong pixels on image 257
Found 953 strong pixels on image 258
Found 1063 strong pixels on image 259
Found 1040 strong pixels on image 260
Found 1015 strong pixels on image 261
Found 862 strong pixels on image 262
Found 949 strong pixels on image 263
Found 963 strong pixels on image 264
Found 860 strong pixels on image 265
Found 1016 strong pixels on image 266
Found 1111 strong pixels on image 267
Found 1123 strong pixels on image 268
Found 981 strong pixels on image 269
Found 1083 strong pixels on image 270
Found 991 strong pixels on image 271
Found 959 strong pixels on image 272
Found 974 strong pixels on image 273
Found 1109 strong pixels on image 274
Found 1081 strong pixels on image 275
Found 940 strong pixels on image 276
Found 953 strong pixels on image 277
Found 923 strong pixels on image 278
Found 993 strong pixels on image 279
Found 1070 strong pixels on image 280
Found 996 strong pixels on image 281
Found 958 strong pixels on image 282
Found 950 strong pixels on image 283
Found 1003 strong pixels on image 284
Found 1057 strong pixels on image 285
Found 973 strong pixels on image 286
Found 990 strong pixels on image 287
Found 922 strong pixels on image 288
Found 1018 strong pixels on image 289
Found 1058 strong pixels on image 290
Found 1039 strong pixels on image 291
Found 999 strong pixels on image 292
Found 1060 strong pixels on image 293
Found 1069 strong pixels on image 294
Found 905 strong pixels on image 295
Found 942 strong pixels on image 296
Found 994 strong pixels on image 297
Found 942 strong pixels on image 298
Found 1065 strong pixels on image 299
Found 1057 strong pixels on image 300
Found 1103 strong pixels on image 301
Found 956 strong pixels on image 302
Found 960 strong pixels on image 303
Found 923 strong pixels on image 304
Found 954 strong pixels on image 305
Found 909 strong pixels on image 306
Found 1002 strong pixels on image 307
Found 1060 strong pixels on image 308
Found 973 strong pixels on image 309
Found 945 strong pixels on image 310
Found 972 strong pixels on image 311
Found 1010 strong pixels on image 312
Found 1017 strong pixels on image 313
Found 995 strong pixels on image 314
Found 918 strong pixels on image 315
Found 918 strong pixels on image 316
Found 934 strong pixels on image 317
Found 979 strong pixels on image 318
Found 1116 strong pixels on image 319
Found 917 strong pixels on image 320
Found 944 strong pixels on image 321
Found 943 strong pixels on image 322
Found 931 strong pixels on image 323
Found 1022 strong pixels on image 324
Found 1124 strong pixels on image 325
Found 1042 strong pixels on image 326
Found 960 strong pixels on image 327
Found 1018 strong pixels on image 328
Found 914 strong pixels on image 329
Found 1067 strong pixels on image 330
Found 1005 strong pixels on image 331
Found 894 strong pixels on image 332
Found 919 strong pixels on image 333
Found 1031 strong pixels on image 334
Found 806 strong pixels on image 335
Found 891 strong pixels on image 336
Found 1005 strong pixels on image 337
Found 932 strong pixels on image 338
Found 953 strong pixels on image 339
Found 942 strong pixels on image 340
Found 1016 strong pixels on image 341
Found 900 strong pixels on image 342
Found 988 strong pixels on image 343
Found 931 strong pixels on image 344
Found 924 strong pixels on image 345
Found 835 strong pixels on image 346
Found 920 strong pixels on image 347
Found 960 strong pixels on image 348
Found 959 strong pixels on image 349
Found 896 strong pixels on image 350
Found 1028 strong pixels on image 351
Found 925 strong pixels on image 352
Found 896 strong pixels on image 353
Found 961 strong pixels on image 354
Found 954 strong pixels on image 355
Found 948 strong pixels on image 356
Found 1029 strong pixels on image 357
Found 915 strong pixels on image 358
Found 842 strong pixels on image 359
Found 966 strong pixels on image 360
Found 1051 strong pixels on image 361
Found 1015 strong pixels on image 362
Found 888 strong pixels on image 363
Found 918 strong pixels on image 364
Found 983 strong pixels on image 365
Found 928 strong pixels on image 366
Found 948 strong pixels on image 367
Found 1096 strong pixels on image 368
Found 942 strong pixels on image 369
Found 895 strong pixels on image 370
Found 842 strong pixels on image 371
Found 947 strong pixels on image 372
Found 997 strong pixels on image 373
Found 912 strong pixels on image 374
Found 954 strong pixels on image 375
Found 869 strong pixels on image 376
Found 886 strong pixels on image 377
Found 912 strong pixels on image 378
Found 847 strong pixels on image 379
Found 912 strong pixels on image 380
Found 914 strong pixels on image 381
Found 945 strong pixels on image 382
Found 816 strong pixels on image 383
Found 891 strong pixels on image 384
Found 837 strong pixels on image 385
Found 904 strong pixels on image 386
Found 969 strong pixels on image 387
Found 882 strong pixels on image 388
Found 971 strong pixels on image 389
Found 962 strong pixels on image 390
Found 921 strong pixels on image 391
Found 902 strong pixels on image 392
Found 903 strong pixels on image 393
Found 893 strong pixels on image 394
Found 847 strong pixels on image 395
Found 822 strong pixels on image 396
Found 925 strong pixels on image 397
Found 847 strong pixels on image 398
Found 935 strong pixels on image 399
Found 941 strong pixels on image 400
Found 852 strong pixels on image 401
Found 850 strong pixels on image 402
Found 880 strong pixels on image 403
Found 981 strong pixels on image 404
Found 885 strong pixels on image 405
Found 841 strong pixels on image 406
Found 904 strong pixels on image 407
Found 921 strong pixels on image 408
Found 860 strong pixels on image 409
Found 933 strong pixels on image 410
Found 841 strong pixels on image 411
Found 905 strong pixels on image 412
Found 928 strong pixels on image 413
Found 925 strong pixels on image 414
Found 940 strong pixels on image 415
Found 842 strong pixels on image 416
Found 799 strong pixels on image 417
Found 931 strong pixels on image 418
Found 847 strong pixels on image 419
Found 859 strong pixels on image 420
Found 792 strong pixels on image 421
Found 892 strong pixels on image 422
Found 844 strong pixels on image 423
Found 855 strong pixels on image 424
Found 840 strong pixels on image 425
Found 979 strong pixels on image 426
Found 855 strong pixels on image 427
Found 822 strong pixels on image 428
Found 818 strong pixels on image 429
Found 901 strong pixels on image 430
Found 978 strong pixels on image 431
Found 762 strong pixels on image 432
Found 865 strong pixels on image 433
Found 870 strong pixels on image 434
Found 786 strong pixels on image 435
Found 915 strong pixels on image 436
Found 910 strong pixels on image 437
Found 802 strong pixels on image 438
Found 893 strong pixels on image 439
Found 906 strong pixels on image 440
Found 857 strong pixels on image 441
Found 750 strong pixels on image 442
Found 874 strong pixels on image 443
Found 866 strong pixels on image 444
Found 885 strong pixels on image 445
Found 916 strong pixels on image 446
Found 801 strong pixels on image 447
Found 987 strong pixels on image 448
Found 849 strong pixels on image 449
Found 848 strong pixels on image 450
Found 893 strong pixels on image 451
Found 906 strong pixels on image 452
Found 814 strong pixels on image 453
Found 889 strong pixels on image 454
Found 869 strong pixels on image 455
Found 824 strong pixels on image 456
Found 840 strong pixels on image 457
Found 912 strong pixels on image 458
Found 819 strong pixels on image 459
Found 781 strong pixels on image 460
Found 858 strong pixels on image 461
Found 935 strong pixels on image 462
Found 949 strong pixels on image 463
Found 852 strong pixels on image 464
Found 931 strong pixels on image 465
Found 902 strong pixels on image 466
Found 857 strong pixels on image 467
Found 839 strong pixels on image 468
Found 992 strong pixels on image 469
Found 867 strong pixels on image 470
Found 809 strong pixels on image 471
Found 827 strong pixels on image 472
Found 999 strong pixels on image 473
Found 927 strong pixels on image 474
Found 831 strong pixels on image 475
Found 833 strong pixels on image 476
Found 885 strong pixels on image 477
Found 932 strong pixels on image 478
Found 893 strong pixels on image 479
Found 838 strong pixels on image 480
Found 837 strong pixels on image 481
Found 883 strong pixels on image 482
Found 819 strong pixels on image 483
Found 820 strong pixels on image 484
Found 869 strong pixels on image 485
Found 951 strong pixels on image 486
Found 894 strong pixels on image 487
Found 730 strong pixels on image 488
Found 758 strong pixels on image 489
Found 916 strong pixels on image 490
Found 871 strong pixels on image 491
Found 846 strong pixels on image 492
Found 878 strong pixels on image 493
Found 876 strong pixels on image 494
Found 935 strong pixels on image 495
Found 823 strong pixels on image 496
Found 870 strong pixels on image 497
Found 911 strong pixels on image 498
Found 756 strong pixels on image 499
Found 802 strong pixels on image 500
Found 895 strong pixels on image 501
Found 858 strong pixels on image 502
Found 861 strong pixels on image 503
Found 866 strong pixels on image 504
Found 949 strong pixels on image 505
Found 814 strong pixels on image 506
Found 905 strong pixels on image 507
Found 891 strong pixels on image 508
Found 857 strong pixels on image 509
Found 954 strong pixels on image 510
Found 884 strong pixels on image 511
Found 869 strong pixels on image 512
Found 898 strong pixels on image 513
Found 875 strong pixels on image 514
Found 939 strong pixels on image 515
Found 902 strong pixels on image 516
Found 905 strong pixels on image 517
Found 948 strong pixels on image 518
Found 847 strong pixels on image 519
Found 893 strong pixels on image 520
Found 823 strong pixels on image 521
Found 858 strong pixels on image 522
Found 881 strong pixels on image 523
Found 847 strong pixels on image 524
Found 837 strong pixels on image 525
Found 919 strong pixels on image 526
Found 818 strong pixels on image 527
Found 915 strong pixels on image 528
Found 910 strong pixels on image 529
Found 804 strong pixels on image 530
Found 968 strong pixels on image 531
Found 974 strong pixels on image 532
Found 823 strong pixels on image 533
Found 849 strong pixels on image 534
Found 883 strong pixels on image 535
Found 856 strong pixels on image 536
Found 831 strong pixels on image 537
Found 976 strong pixels on image 538
Found 903 strong pixels on image 539
Found 874 strong pixels on image 540
Found 934 strong pixels on image 541
Found 851 strong pixels on image 542
Found 828 strong pixels on image 543
Found 925 strong pixels on image 544
Found 894 strong pixels on image 545
Found 838 strong pixels on image 546
Found 841 strong pixels on image 547
Found 794 strong pixels on image 548
Found 967 strong pixels on image 549
Found 973 strong pixels on image 550
Found 936 strong pixels on image 551
Found 881 strong pixels on image 552
Found 918 strong pixels on image 553
Found 832 strong pixels on image 554
Found 1010 strong pixels on image 555
Found 951 strong pixels on image 556
Found 959 strong pixels on image 557
Found 845 strong pixels on image 558
Found 872 strong pixels on image 559
Found 954 strong pixels on image 560
Found 916 strong pixels on image 561
Found 969 strong pixels on image 562
Found 845 strong pixels on image 563
Found 825 strong pixels on image 564
Found 861 strong pixels on image 565
Found 922 strong pixels on image 566
Found 803 strong pixels on image 567
Found 868 strong pixels on image 568
Found 1007 strong pixels on image 569
Found 994 strong pixels on image 570
Found 892 strong pixels on image 571
Found 892 strong pixels on image 572
Found 867 strong pixels on image 573
Found 877 strong pixels on image 574
Found 1016 strong pixels on image 575
Found 929 strong pixels on image 576
Found 954 strong pixels on image 577
Found 849 strong pixels on image 578
Found 977 strong pixels on image 579
Found 842 strong pixels on image 580
Found 1059 strong pixels on image 581
Found 964 strong pixels on image 582
Found 983 strong pixels on image 583
Found 957 strong pixels on image 584
Found 900 strong pixels on image 585
Found 919 strong pixels on image 586
Found 982 strong pixels on image 587
Found 1029 strong pixels on image 588
Found 939 strong pixels on image 589
Found 963 strong pixels on image 590
Found 948 strong pixels on image 591
Found 861 strong pixels on image 592
Found 983 strong pixels on image 593
Found 856 strong pixels on image 594
Found 883 strong pixels on image 595
Found 889 strong pixels on image 596
Found 1043 strong pixels on image 597
Found 937 strong pixels on image 598
Found 1017 strong pixels on image 599
Found 991 strong pixels on image 600
Found 1067 strong pixels on image 601
Found 988 strong pixels on image 602
Found 1080 strong pixels on image 603
Found 990 strong pixels on image 604
Found 920 strong pixels on image 605
Found 989 strong pixels on image 606
Found 981 strong pixels on image 607
Found 1024 strong pixels on image 608
Found 1031 strong pixels on image 609
Found 963 strong pixels on image 610
Found 926 strong pixels on image 611
Found 937 strong pixels on image 612
Found 957 strong pixels on image 613
Found 1014 strong pixels on image 614
Found 961 strong pixels on image 615
Found 1011 strong pixels on image 616
Found 1027 strong pixels on image 617
Found 944 strong pixels on image 618
Found 1047 strong pixels on image 619
Found 1010 strong pixels on image 620
Found 1008 strong pixels on image 621
Found 911 strong pixels on image 622
Found 973 strong pixels on image 623
Found 993 strong pixels on image 624
Found 848 strong pixels on image 625
Found 1039 strong pixels on image 626
Found 1111 strong pixels on image 627
Found 1139 strong pixels on image 628
Found 1037 strong pixels on image 629
Found 1080 strong pixels on image 630
Found 1005 strong pixels on image 631
Found 1007 strong pixels on image 632
Found 1017 strong pixels on image 633
Found 1131 strong pixels on image 634
Found 1117 strong pixels on image 635
Found 1044 strong pixels on image 636
Found 984 strong pixels on image 637
Found 981 strong pixels on image 638
Found 1084 strong pixels on image 639
Found 1140 strong pixels on image 640
Found 1125 strong pixels on image 641
Found 955 strong pixels on image 642
Found 949 strong pixels on image 643
Found 1027 strong pixels on image 644
Found 1034 strong pixels on image 645
Found 1041 strong pixels on image 646
Found 1019 strong pixels on image 647
Found 957 strong pixels on image 648
Found 998 strong pixels on image 649
Found 1030 strong pixels on image 650
Found 1151 strong pixels on image 651
Found 1004 strong pixels on image 652
Found 1056 strong pixels on image 653
Found 1100 strong pixels on image 654
Found 935 strong pixels on image 655
Found 970 strong pixels on image 656
Found 1039 strong pixels on image 657
Found 1022 strong pixels on image 658
Found 1075 strong pixels on image 659
Found 1027 strong pixels on image 660
Found 1182 strong pixels on image 661
Found 1039 strong pixels on image 662
Found 974 strong pixels on image 663
Found 999 strong pixels on image 664
Found 1010 strong pixels on image 665
Found 1044 strong pixels on image 666
Found 1118 strong pixels on image 667
Found 1047 strong pixels on image 668
Found 985 strong pixels on image 669
Found 997 strong pixels on image 670
Found 1001 strong pixels on image 671
Found 1022 strong pixels on image 672
Found 1066 strong pixels on image 673
Found 1025 strong pixels on image 674
Found 975 strong pixels on image 675
Found 942 strong pixels on image 676
Found 1014 strong pixels on image 677
Found 1048 strong pixels on image 678
Found 1126 strong pixels on image 679
Found 979 strong pixels on image 680
Found 1031 strong pixels on image 681
Found 893 strong pixels on image 682
Found 987 strong pixels on image 683
Found 1059 strong pixels on image 684
Found 1071 strong pixels on image 685
Found 1067 strong pixels on image 686
Found 969 strong pixels on image 687
Found 1029 strong pixels on image 688
Found 1000 strong pixels on image 689
Found 1092 strong pixels on image 690
Found 1006 strong pixels on image 691
Found 952 strong pixels on image 692
Found 1028 strong pixels on image 693
Found 1073 strong pixels on image 694
Found 911 strong pixels on image 695
Found 982 strong pixels on image 696
Found 1002 strong pixels on image 697
Found 916 strong pixels on image 698
Found 1023 strong pixels on image 699
Found 1008 strong pixels on image 700
Found 1102 strong pixels on image 701
Found 970 strong pixels on image 702
Found 1008 strong pixels on image 703
Found 984 strong pixels on image 704
Found 949 strong pixels on image 705
Found 907 strong pixels on image 706
Found 980 strong pixels on image 707
Found 1031 strong pixels on image 708
Found 1010 strong pixels on image 709
Found 947 strong pixels on image 710
Found 1029 strong pixels on image 711
Found 983 strong pixels on image 712
Found 1051 strong pixels on image 713
Found 992 strong pixels on image 714
Found 1042 strong pixels on image 715
Found 970 strong pixels on image 716
Found 1087 strong pixels on image 717
Found 999 strong pixels on image 718
Found 829 strong pixels on image 719
Found 944 strong pixels on image 720
Extracted 178377 spots
Removed 74450 spots with size < 3 pixels
Removed 13 spots with size > 100 pixels
Calculated 103914 spot centroids
Calculated 103914 spot intensities
Filtered 103780 of 103914 spots by peak-centroid distance
Histogram of per-image spot count for imageset 0:
103780 spots found on 720 images (max 1982 / bin)
* *
************** * *************** **** * ********
************************************************************
************************************************************
************************************************************
************************************************************
************************************************************
************************************************************
************************************************************
************************************************************
1 image 720
--------------------------------------------------------------------------------
Saved 103780 reflections to strong.pickle
Time Taken: 58.705857
|
Once this has completed, a new reflection file
‘strong.pickle
‘ is written, containing a record of every spot found.
The default parameters for spot finding usually do a good job for Pilatus images, such as these. However they may not be optimal for data from other detector types, such as CCDs or image plates. Issues with incorrectly set gain might, for example, lead to background noise being extracted as spots. You can use the image mode buttons (③) to preview how the parameters affect the spot finding algorithm. The final image, ‘threshold’ is the one on which spots are found, so ensuring this produces peaks at real diffraction spot positions will give the best chance of success.
The dials.image_viewer tool is not as fast as viewers such as ADXV, however it does integrate well with DIALS data files. Having found strong spots open the image viewer again, but giving it the newly found reflection list:
dials.image_viewer datablock.json strong.pickle
Adjust the brightness so that you can see the spots, then zoom in so that you can see the clustered individual pixels of a single spot. Pixels determined to be part of a spot’s peak are marked with green dots. The blue outline shows the three-dimensional shoebox - the extents over detector x, y and image number z of a all peak pixels in a single spot. The single highest value pixel for any spot is marked with a pink circle, and the centre of mass is marked with a red cross.
The spot centre-of-mass is usually close to the peak pixel, but slightly offset as the algorithm allows calculation of the spot centre at a better precision than the pixel size and image angular ‘width’.
Another very powerful tool for investigating problems with strong spot positions is dials.reciprocal_lattice_viewer. This displays the strong spots in 3D, after mapping them from their detector positions to reciprocal space. In a favourable case you should be able to see the crystal’s reciprocal lattice by eye in the strong spot positions. Some practice may be needed in rotating the lattice to an orientation that shows off the periodicity in reciprocal lattice positions:
dials.reciprocal_lattice_viewer datablock.json strong.pickle
Although the reciprocal spacing is visible, in this data, there are clearly some systematic distortions. These will be solved in the indexing.
Indexing¶
The next step will be indexing of the strong spots by
dials.index, which by default uses a
3D FFT algorithm (although the 1D FFT algorithm can be selected, using the
parameter indexing.method=fft1d
). We pass in all the strong
spots found in the dataset:
dials.index datablock.json strong.pickle
If known, the space group and unit cell can be provided at this stage
using the space_group
and unit_cell
parameters, and will
be used to constrain the lattice during refinement, but otherwise
indexing and refinement will be carried out in the primitive lattice
using space group P1.
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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 | DIALS 1.dev.1890-gcc25deea
The following parameters have been modified:
input {
datablock = datablock.json
reflections = strong.pickle
}
Found max_cell: 94.4 Angstrom
Setting d_min: 1.84
FFT gridding: (256,256,256)
Number of centroids used: 88400
Candidate solutions:
-------------------------------------------------------------------------------------------------------------------------------------------
unit_cell | volume | volume score | #indexed | % indexed | % indexed score | rmsd_xy | rmsd_xy score | overall score
-------------------------------------------------------------------------------------------------------------------------------------------
40.68 40.69 69.64 91.9 91.9 98.0 | 114018 | 0.01 | 90618 | 98 | 0.00 | 0.07 | 0.06 | 0.07
40.69 40.73 69.60 91.9 91.9 98.1 | 114061 | 0.01 | 90145 | 97 | 0.01 | 0.07 | 0.06 | 0.08
40.74 40.75 69.63 92.0 92.1 98.0 | 114330 | 0.01 | 90446 | 98 | 0.01 | 0.08 | 0.07 | 0.09
40.68 40.75 69.64 91.8 91.9 98.2 | 114117 | 0.01 | 90614 | 98 | 0.00 | 0.08 | 0.08 | 0.09
40.57 40.75 69.64 91.8 91.9 98.4 | 113751 | 0.01 | 90409 | 98 | 0.01 | 0.08 | 0.08 | 0.09
40.57 40.70 69.62 91.9 91.9 98.4 | 113560 | 0.00 | 90157 | 97 | 0.01 | 0.08 | 0.08 | 0.10
40.65 40.75 69.64 91.8 91.8 98.3 | 113988 | 0.01 | 90528 | 98 | 0.01 | 0.08 | 0.09 | 0.10
40.69 40.71 69.64 91.9 91.9 98.2 | 114033 | 0.01 | 90681 | 98 | 0.00 | 0.08 | 0.09 | 0.10
40.68 40.69 69.64 92.0 91.9 98.0 | 114009 | 0.01 | 89728 | 97 | 0.02 | 0.08 | 0.08 | 0.11
40.57 40.74 69.55 92.0 91.7 98.1 | 113670 | 0.01 | 88643 | 96 | 0.04 | 0.08 | 0.07 | 0.11
40.69 40.73 69.64 92.0 91.9 98.1 | 114134 | 0.01 | 90714 | 98 | 0.00 | 0.08 | 0.09 | 0.11
40.69 40.73 69.57 92.0 91.9 98.1 | 114020 | 0.01 | 89999 | 97 | 0.01 | 0.08 | 0.08 | 0.11
40.56 40.57 69.71 92.0 91.9 98.7 | 113256 | 0.00 | 84300 | 91 | 0.11 | 0.07 | 0.00 | 0.11
40.61 40.69 69.62 91.9 91.9 98.1 | 113746 | 0.01 | 89773 | 97 | 0.02 | 0.08 | 0.09 | 0.11
40.69 40.73 69.67 92.0 92.0 98.1 | 114167 | 0.01 | 90547 | 98 | 0.01 | 0.08 | 0.09 | 0.11
40.69 40.79 69.59 91.9 91.9 98.2 | 114186 | 0.01 | 90182 | 97 | 0.01 | 0.08 | 0.09 | 0.12
40.71 40.74 69.57 92.0 91.9 98.2 | 114033 | 0.01 | 90079 | 97 | 0.01 | 0.08 | 0.09 | 0.12
40.75 40.75 69.64 92.0 91.8 98.3 | 114256 | 0.01 | 90737 | 98 | 0.00 | 0.08 | 0.10 | 0.12
40.68 40.84 69.64 91.9 91.9 98.1 | 114397 | 0.01 | 90789 | 98 | 0.00 | 0.08 | 0.10 | 0.12
40.71 40.75 69.64 92.1 92.0 98.1 | 114234 | 0.01 | 90844 | 98 | 0.00 | 0.08 | 0.11 | 0.12
40.66 40.75 69.64 91.8 91.9 98.2 | 114042 | 0.01 | 90648 | 98 | 0.00 | 0.08 | 0.11 | 0.12
40.68 40.69 69.60 91.9 92.0 98.2 | 113894 | 0.01 | 90207 | 97 | 0.01 | 0.08 | 0.10 | 0.12
40.57 40.71 69.54 92.0 91.9 98.3 | 113479 | 0.00 | 89316 | 96 | 0.03 | 0.08 | 0.09 | 0.12
40.70 40.75 69.64 92.0 92.1 98.2 | 114173 | 0.01 | 90905 | 98 | 0.00 | 0.08 | 0.11 | 0.13
40.68 40.84 69.57 91.9 91.9 98.1 | 114289 | 0.01 | 89964 | 97 | 0.02 | 0.08 | 0.10 | 0.13
40.69 40.74 69.62 91.9 91.9 98.2 | 114088 | 0.01 | 90464 | 98 | 0.01 | 0.08 | 0.11 | 0.13
40.69 40.90 69.62 91.8 91.9 98.1 | 114571 | 0.02 | 89434 | 96 | 0.02 | 0.08 | 0.09 | 0.13
40.70 40.73 69.57 92.0 91.9 98.3 | 113970 | 0.01 | 90050 | 97 | 0.01 | 0.08 | 0.11 | 0.13
40.69 40.76 69.64 91.9 91.9 98.1 | 114224 | 0.01 | 90658 | 98 | 0.00 | 0.08 | 0.12 | 0.13
40.69 40.79 69.40 91.7 91.9 98.2 | 113881 | 0.01 | 86881 | 94 | 0.07 | 0.07 | 0.06 | 0.13
40.67 40.72 69.54 92.0 91.8 98.2 | 113834 | 0.01 | 89564 | 97 | 0.02 | 0.08 | 0.11 | 0.13
40.67 40.74 69.59 91.9 92.0 98.2 | 113986 | 0.01 | 90223 | 97 | 0.01 | 0.08 | 0.11 | 0.14
40.69 40.73 69.62 91.8 91.9 98.1 | 114101 | 0.01 | 89922 | 97 | 0.02 | 0.08 | 0.11 | 0.14
40.69 40.79 69.64 91.8 91.9 98.2 | 114270 | 0.01 | 90664 | 98 | 0.00 | 0.08 | 0.12 | 0.14
40.62 40.75 69.64 91.8 91.8 98.2 | 113943 | 0.01 | 90457 | 98 | 0.01 | 0.08 | 0.12 | 0.14
40.69 40.79 69.62 91.7 91.9 98.2 | 114237 | 0.01 | 89792 | 97 | 0.02 | 0.08 | 0.11 | 0.14
40.69 40.79 69.64 91.7 91.9 98.2 | 114278 | 0.01 | 89997 | 97 | 0.01 | 0.08 | 0.11 | 0.14
40.69 40.79 69.53 91.9 91.9 98.2 | 114080 | 0.01 | 89386 | 96 | 0.02 | 0.08 | 0.11 | 0.14
40.68 40.69 69.62 91.9 91.8 98.0 | 113985 | 0.01 | 89754 | 97 | 0.02 | 0.08 | 0.12 | 0.15
40.69 40.75 69.64 92.0 91.9 98.2 | 114158 | 0.01 | 90723 | 98 | 0.00 | 0.08 | 0.13 | 0.15
40.69 40.79 69.64 91.8 91.9 98.2 | 114273 | 0.01 | 90558 | 98 | 0.01 | 0.08 | 0.13 | 0.15
40.57 40.69 69.62 91.9 91.8 98.2 | 113621 | 0.00 | 89565 | 97 | 0.02 | 0.08 | 0.13 | 0.16
40.68 40.84 69.59 92.0 92.0 98.1 | 114313 | 0.01 | 90218 | 97 | 0.01 | 0.08 | 0.14 | 0.16
40.51 40.75 69.64 91.8 91.6 98.3 | 113617 | 0.00 | 88783 | 96 | 0.03 | 0.08 | 0.12 | 0.16
40.69 40.79 69.48 91.9 91.8 98.2 | 114012 | 0.01 | 88758 | 96 | 0.03 | 0.08 | 0.12 | 0.17
40.71 40.75 69.48 92.1 92.0 98.1 | 113985 | 0.01 | 88709 | 96 | 0.04 | 0.08 | 0.12 | 0.17
40.69 40.79 69.62 91.6 91.9 98.2 | 114245 | 0.01 | 89011 | 96 | 0.03 | 0.08 | 0.14 | 0.19
40.71 40.75 69.60 92.1 92.1 98.1 | 114158 | 0.01 | 90162 | 97 | 0.01 | 0.08 | 0.16 | 0.19
40.69 40.79 69.47 91.7 91.9 98.2 | 113987 | 0.01 | 87921 | 95 | 0.05 | 0.08 | 0.14 | 0.19
40.69 40.79 69.77 91.6 91.9 98.2 | 114489 | 0.02 | 89721 | 97 | 0.02 | 0.08 | 0.19 | 0.23
-------------------------------------------------------------------------------------------------------------------------------------------
Using d_min_step 0.1
################################################################################
Starting refinement (macro-cycle 1)
################################################################################
Detecting centroid outliers using the Tukey algorithm
5624 reflections have been flagged as outliers
Refinement steps:
-------------------------------------------------
| Step | Nref | RMSD_X | RMSD_Y | RMSD_Phi |
| | | (mm) | (mm) | (deg) |
-------------------------------------------------
| 0 | 36000 | 0.54219 | 0.51246 | 0.1574 |
| 1 | 36000 | 0.22912 | 0.26037 | 0.13876 |
| 2 | 36000 | 0.10706 | 0.13611 | 0.12523 |
| 3 | 36000 | 0.057653 | 0.062184 | 0.10585 |
| 4 | 36000 | 0.051918 | 0.053799 | 0.10378 |
| 5 | 36000 | 0.051683 | 0.053837 | 0.10385 |
| 6 | 36000 | 0.051676 | 0.053843 | 0.10385 |
| 7 | 36000 | 0.051676 | 0.053843 | 0.10385 |
-------------------------------------------------
RMSD no longer decreasing
RMSDs by experiment:
----------------------------------------------
| Exp | Nref | RMSD_X | RMSD_Y | RMSD_Z |
| id | | (px) | (px) | (images) |
----------------------------------------------
| 0 | 36000 | 0.30044 | 0.31304 | 0.2077 |
----------------------------------------------
Refined crystal models:
model 1 (90380 reflections):
Crystal:
Unit cell: (40.5624(7), 40.5687(7), 69.3155(13), 92.0163(4), 91.9750(4), 98.0763(4))
Space group: P 1
U matrix: {{ 0.8429, 0.5343, 0.0639},
{-0.1842, 0.1749, 0.9672},
{ 0.5056, -0.8270, 0.2458}}
B matrix: {{ 0.0247, 0.0000, 0.0000},
{ 0.0035, 0.0249, 0.0000},
{ 0.0010, 0.0010, 0.0144}}
A = UB: {{ 0.0227, 0.0134, 0.0009},
{-0.0030, 0.0053, 0.0140},
{ 0.0098, -0.0203, 0.0036}}
------------------------------------
| Imageset | #indexed | #unindexed |
------------------------------------
| 0 | 90380 | 2126 |
------------------------------------
Increasing resolution to 1.71 Angstrom
################################################################################
Starting refinement (macro-cycle 2)
################################################################################
Detecting centroid outliers using the Tukey algorithm
4663 reflections have been flagged as outliers
Refinement steps:
-------------------------------------------------
| Step | Nref | RMSD_X | RMSD_Y | RMSD_Phi |
| | | (mm) | (mm) | (deg) |
-------------------------------------------------
| 0 | 36000 | 0.049749 | 0.047436 | 0.10284 |
| 1 | 36000 | 0.049532 | 0.047363 | 0.10289 |
| 2 | 36000 | 0.049486 | 0.047371 | 0.10294 |
| 3 | 36000 | 0.049479 | 0.047372 | 0.10294 |
| 4 | 36000 | 0.049478 | 0.047373 | 0.10294 |
-------------------------------------------------
RMSD no longer decreasing
RMSDs by experiment:
----------------------------------------------
| Exp | Nref | RMSD_X | RMSD_Y | RMSD_Z |
| id | | (px) | (px) | (images) |
----------------------------------------------
| 0 | 36000 | 0.28766 | 0.27542 | 0.20589 |
----------------------------------------------
Refined crystal models:
model 1 (97638 reflections):
Crystal:
Unit cell: (40.5569(6), 40.5629(6), 69.3028(10), 92.0189(4), 91.9748(4), 98.0750(4))
Space group: P 1
U matrix: {{ 0.8429, 0.5342, 0.0638},
{-0.1841, 0.1749, 0.9672},
{ 0.5056, -0.8270, 0.2458}}
B matrix: {{ 0.0247, 0.0000, 0.0000},
{ 0.0035, 0.0249, 0.0000},
{ 0.0010, 0.0010, 0.0144}}
A = UB: {{ 0.0227, 0.0134, 0.0009},
{-0.0030, 0.0053, 0.0140},
{ 0.0098, -0.0203, 0.0036}}
------------------------------------
| Imageset | #indexed | #unindexed |
------------------------------------
| 0 | 97638 | 1380 |
------------------------------------
Increasing resolution to 1.57 Angstrom
################################################################################
Starting refinement (macro-cycle 3)
################################################################################
Detecting centroid outliers using the Tukey algorithm
5330 reflections have been flagged as outliers
Refinement steps:
-------------------------------------------------
| Step | Nref | RMSD_X | RMSD_Y | RMSD_Phi |
| | | (mm) | (mm) | (deg) |
-------------------------------------------------
| 0 | 36000 | 0.049741 | 0.04829 | 0.10388 |
| 1 | 36000 | 0.049702 | 0.048225 | 0.10391 |
| 2 | 36000 | 0.0497 | 0.048195 | 0.10395 |
| 3 | 36000 | 0.049705 | 0.04818 | 0.10396 |
| 4 | 36000 | 0.049708 | 0.048176 | 0.10397 |
-------------------------------------------------
RMSD no longer decreasing
RMSDs by experiment:
---------------------------------------------
| Exp | Nref | RMSD_X | RMSD_Y | RMSD_Z |
| id | | (px) | (px) | (images) |
---------------------------------------------
| 0 | 36000 | 0.289 | 0.28009 | 0.20794 |
---------------------------------------------
Refined crystal models:
model 1 (100913 reflections):
Crystal:
Unit cell: (40.5556(5), 40.5609(5), 69.2994(9), 92.0202(3), 91.9742(4), 98.0741(4))
Space group: P 1
U matrix: {{ 0.8429, 0.5342, 0.0638},
{-0.1841, 0.1749, 0.9672},
{ 0.5056, -0.8270, 0.2458}}
B matrix: {{ 0.0247, 0.0000, 0.0000},
{ 0.0035, 0.0249, 0.0000},
{ 0.0010, 0.0010, 0.0145}}
A = UB: {{ 0.0227, 0.0134, 0.0009},
{-0.0030, 0.0053, 0.0140},
{ 0.0098, -0.0203, 0.0036}}
------------------------------------
| Imageset | #indexed | #unindexed |
------------------------------------
| 0 | 100913 | 1581 |
------------------------------------
Increasing resolution to 1.44 Angstrom
################################################################################
Starting refinement (macro-cycle 4)
################################################################################
Detecting centroid outliers using the Tukey algorithm
5506 reflections have been flagged as outliers
Refinement steps:
-------------------------------------------------
| Step | Nref | RMSD_X | RMSD_Y | RMSD_Phi |
| | | (mm) | (mm) | (deg) |
-------------------------------------------------
| 0 | 36000 | 0.049838 | 0.048635 | 0.10467 |
| 1 | 36000 | 0.049858 | 0.048584 | 0.10469 |
| 2 | 36000 | 0.049871 | 0.048548 | 0.10472 |
| 3 | 36000 | 0.049881 | 0.048529 | 0.10473 |
| 4 | 36000 | 0.049884 | 0.048524 | 0.10474 |
| 5 | 36000 | 0.049885 | 0.048524 | 0.10474 |
-------------------------------------------------
RMSD no longer decreasing
RMSDs by experiment:
----------------------------------------------
| Exp | Nref | RMSD_X | RMSD_Y | RMSD_Z |
| id | | (px) | (px) | (images) |
----------------------------------------------
| 0 | 36000 | 0.29003 | 0.28211 | 0.20948 |
----------------------------------------------
Refined crystal models:
model 1 (101999 reflections):
Crystal:
Unit cell: (40.5547(5), 40.5604(5), 69.2970(8), 92.0204(3), 91.9737(4), 98.0741(4))
Space group: P 1
U matrix: {{ 0.8429, 0.5342, 0.0638},
{-0.1841, 0.1749, 0.9672},
{ 0.5056, -0.8270, 0.2458}}
B matrix: {{ 0.0247, 0.0000, 0.0000},
{ 0.0035, 0.0249, 0.0000},
{ 0.0010, 0.0010, 0.0145}}
A = UB: {{ 0.0227, 0.0134, 0.0009},
{-0.0030, 0.0053, 0.0140},
{ 0.0098, -0.0203, 0.0036}}
------------------------------------
| Imageset | #indexed | #unindexed |
------------------------------------
| 0 | 101999 | 1629 |
------------------------------------
Increasing resolution to 1.30 Angstrom
################################################################################
Starting refinement (macro-cycle 5)
################################################################################
Detecting centroid outliers using the Tukey algorithm
5510 reflections have been flagged as outliers
Refinement steps:
-------------------------------------------------
| Step | Nref | RMSD_X | RMSD_Y | RMSD_Phi |
| | | (mm) | (mm) | (deg) |
-------------------------------------------------
| 0 | 36000 | 0.049931 | 0.048837 | 0.10428 |
| 1 | 36000 | 0.049912 | 0.048839 | 0.10427 |
| 2 | 36000 | 0.0499 | 0.048851 | 0.10426 |
| 3 | 36000 | 0.049893 | 0.048858 | 0.10425 |
| 4 | 36000 | 0.049892 | 0.04886 | 0.10425 |
-------------------------------------------------
RMSD no longer decreasing
RMSDs by experiment:
----------------------------------------------
| Exp | Nref | RMSD_X | RMSD_Y | RMSD_Z |
| id | | (px) | (px) | (images) |
----------------------------------------------
| 0 | 36000 | 0.29007 | 0.28407 | 0.2085 |
----------------------------------------------
Refined crystal models:
model 1 (102151 reflections):
Crystal:
Unit cell: (40.5552(5), 40.5616(5), 69.2982(8), 92.0200(3), 91.9742(3), 98.0746(4))
Space group: P 1
U matrix: {{ 0.8429, 0.5342, 0.0638},
{-0.1841, 0.1749, 0.9672},
{ 0.5056, -0.8270, 0.2458}}
B matrix: {{ 0.0247, 0.0000, 0.0000},
{ 0.0035, 0.0249, 0.0000},
{ 0.0010, 0.0010, 0.0145}}
A = UB: {{ 0.0227, 0.0134, 0.0009},
{-0.0030, 0.0053, 0.0140},
{ 0.0098, -0.0203, 0.0036}}
------------------------------------
| Imageset | #indexed | #unindexed |
------------------------------------
| 0 | 102151 | 1629 |
------------------------------------
Saving refined experiments to experiments.json
Saving refined reflections to indexed.pickle
|
If successful, dials.index
writes two output data files - an
experiments.json containing the tuned
experimental model and determined parameters, and a indexed.pickle
reflection file, including index data from the best fit.
It is worth reading through this output to understand what the indexing
program has done. Note that this log is automatically captured in the file
dials.index.log
, along with a somewhat more detailed log written
into dials.index.debug.log
- but this second log is probably only
helpful if something has gone wrong and you are trying to track down why.
Inspecting the beginning of the log shows that the indexing step is done at a resolution lower than the full dataset; 1.84 Å:
9 10 11 | Found max_cell: 94.4 Angstrom
Setting d_min: 1.84
FFT gridding: (256,256,256)
|
The resolution limit of data that can be used in indexing is determined by the size of the 3D FFT grid, and the likely maximum cell dimension. Here we used the default 256³ grid points. These are used to make an initial estimate for the unit cell parameters.
What then follows are ‘macro-cycles’ of refinement where the experimental model is first tuned to get the best possible fit from the data, and then the resolution limit is reduced to cover more data than the previous cycle. 16 parameters of the diffraction geometry are tuned - 6 for the detector, one for beam angle, 3 crystal orientation angles and the 6 triclinic cell parameters. At each stage only 36000 reflections are used in the refinement job. In order to save time, a subset of the input reflections are used - by default using 100 reflections for every degree of the 360° scan.
We see that the first macrocycle of refinement makes a big improvement in the positional RMSDs:
78 79 80 81 82 83 84 85 86 87 88 89 90 | -------------------------------------------------
| Step | Nref | RMSD_X | RMSD_Y | RMSD_Phi |
| | | (mm) | (mm) | (deg) |
-------------------------------------------------
| 0 | 36000 | 0.54219 | 0.51246 | 0.1574 |
| 1 | 36000 | 0.22912 | 0.26037 | 0.13876 |
| 2 | 36000 | 0.10706 | 0.13611 | 0.12523 |
| 3 | 36000 | 0.057653 | 0.062184 | 0.10585 |
| 4 | 36000 | 0.051918 | 0.053799 | 0.10378 |
| 5 | 36000 | 0.051683 | 0.053837 | 0.10385 |
| 6 | 36000 | 0.051676 | 0.053843 | 0.10385 |
| 7 | 36000 | 0.051676 | 0.053843 | 0.10385 |
-------------------------------------------------
|
Second and subsequent macrocycles are refined using the same number of reflections, but after extending to higher resolution. The RMSDs at the start of each cycle start off worse than at the end of the previous cycle, because the best fit model for lower resolution data is being applied to higher resolution reflections. As long as each macrocyle shows a reduction in RMSDs then refinement is doing its job of extending the applicability of the model out to a new resolution limit, until eventually the highest resolution strong spots have been included. The final macrocycle includes data out to 1.30 Å and produces a final model with RMSDs of 0.050 mm in X, 0.049 mm in Y and 0.104° in φ, corresponding to 0.29 pixels in X, 0.28 pixels in Y and 0.21 image widths in φ.
Despite the high quality of this data, we notice from the log that at each macrocycle there were some outliers identified and removed from refinement as resolution increases. Large outliers can dominate refinement using a least squares target, so it is important to be able to remove these. More about this is discussed below in Refinement. It’s also worth checking the total number of reflections that were unable to be assigned an index:
317 318 319 320 321 | ------------------------------------
| Imageset | #indexed | #unindexed |
------------------------------------
| 0 | 102151 | 1629 |
------------------------------------
|
because this can be an indication of poor data quality or a sign that more
care needs to be taken in selecting the strategy used by dials.index
.
After indexing it can be useful to inspect the reciprocal lattice again:
dials.reciprocal_lattice_viewer experiments.json indexed.pickle
Now indexed/unindexed spots are differentiated by colour, and it is possible to see which spots were marked by dials.refine as outliers. If you have a dataset with multiple lattices present, it may be possible to spot them in the unindexed reflections.
In this case, we can see that the refinement has clearly resolved whatever systematic error was causing distortions in the reciprocal space view, and the determined reciprocal unit cell fits the data well:
Bravais Lattice Refinement¶
Since we didn’t know the Bravais lattice before indexing, we can now use dials.refine_bravais_settings to determine likely candidates. This takes the results of the P1 autoindexing and runs refinement with all of the possible Bravais settings applied, allowing you to choose your preferred solution:
dials.refine_bravais_settings experiments.json indexed.pickle
giving a table containing scoring data and unit cell for each Bravais setting:
Chiral space groups corresponding to each Bravais lattice:
aP: P1
mP: P2 P21
mC: C2
oC: C2221 C222
----------------------------------------------------------------------------------------------------------------
Solution Metric fit rmsd min/max cc #spots lattice unit_cell volume cb_op
----------------------------------------------------------------------------------------------------------------
5 3.0473 2.329 0.619/0.965 36000 oC 52.65 60.72 68.50 90.00 90.00 90.00 218984 a+b,-a+b,c
4 3.0472 2.334 0.621/0.621 36000 mC 60.71 52.65 68.50 90.00 89.94 90.00 218948 a-b,a+b,c
3 3.0473 2.330 0.619/0.619 35999 mP 40.28 68.64 40.26 90.00 98.15 90.00 110183 -a,-c,-b
* 2 0.0314 0.072 0.965/0.965 36000 mC 53.18 61.25 69.29 90.00 93.05 90.00 225374 a+b,-a+b,c
* 1 0.0000 0.070 -/- 36000 aP 40.55 40.56 69.30 92.02 91.97 98.07 112699 a,b,c
----------------------------------------------------------------------------------------------------------------
* = recommended solution
Saving summary as bravais_summary.json
Saving solution 5 as bravais_setting_5.json
Saving solution 4 as bravais_setting_4.json
Saving solution 3 as bravais_setting_3.json
Saving solution 2 as bravais_setting_2.json
Saving solution 1 as bravais_setting_1.json
The scores include the metric fit (in degrees), RMSDs (in mm), and the best and worse correlation coefficients for data related by symmetry elements implied by the lowest symmetry space group from the Bravais setting. This uses the raw spot intensity measurement from the spot- finding procedure (uncorrected and unscaled) but provides a very useful check to see if the data does appear to adhere to the proposed symmetry operators.
A separate bravais_setting_N.json
experiments file is written for
each plausible lattice type, corresponding to the solution index. In this
example we choose to continue processing with
bravais_setting_2.json
, which is the highest symmetry suggested
result - the options 3, 4, 5 have higher symmetries, but at the cost of
a steep jump in RMSd’s and worsening of fit.
In cases where the change of basis operator to the chosen setting is the
identity operator (a,b,c
) we can proceed directly to further
refinement. However, we notice that the change of basis operator for our
chosen solution is a+b,-a+b,c
, so it is necessary to reindex the
indexed.pickle file output by using
dials.reindex:
dials.reindex indexed.pickle change_of_basis_op=a+b,-a+b,c
This outputs the file reindexed_reflections.pickle
which we now
use as input to downstream programs, in place of the original
indexed.pickle
.
Refinement¶
The model is already refined during indexing, but we can also add explicit
refinement steps using dials.refine
in here, to use all reflections in refinement rather than a subset and to
fit a scan-varying model of the crystal. There are many options to
refinement - to show all the options up to and including expert_level=1
use this command:
dials.refine -c -e 1
and descriptions of each of the options can be included by adding -a1
to
the command. All of the main DIALS tools have equivalent command-line options
to list available options.
To refine a static model including the monoclinic constraints
from dials.refine_bravais_settings
run:
dials.refine bravais_setting_2.json reindexed_reflections.pickle
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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 | DIALS 1.dev.1890-gcc25deea
The following parameters have been modified:
input {
experiments = bravais_setting_2.json
reflections = reindexed_reflections.pickle
}
Configuring refiner
Summary statistics for 101763 observations matched to predictions:
-------------------------------------------------------------------------
| | Min | Q1 | Med | Q3 | Max |
-------------------------------------------------------------------------
| Xc - Xo (mm) | -1.796 | -0.0361 | -0.0004064 | 0.03399 | 0.5506 |
| Yc - Yo (mm) | -1.34 | -0.03556 | -0.0006755 | 0.03391 | 2.266 |
| Phic - Phio (deg) | -1.997 | -0.08249 | 0.000779 | 0.08395 | 1.765 |
| X weights | 177.5 | 386.8 | 399.7 | 404.5 | 405.6 |
| Y weights | 162.2 | 371 | 392.4 | 402.3 | 405.6 |
| Phi weights | 37.47 | 47.92 | 48 | 48 | 48 |
-------------------------------------------------------------------------
Detecting centroid outliers using the MCD algorithm
10940 reflections have been flagged as outliers
Summary statistics for 90823 observations matched to predictions:
-------------------------------------------------------------------------
| | Min | Q1 | Med | Q3 | Max |
-------------------------------------------------------------------------
| Xc - Xo (mm) | -0.1664 | -0.0348 | -0.001556 | 0.02984 | 0.1777 |
| Yc - Yo (mm) | -0.1937 | -0.03265 | -0.001305 | 0.02931 | 0.2273 |
| Phic - Phio (deg) | -0.3584 | -0.07913 | 0.000961 | 0.08123 | 0.327 |
| X weights | 179.9 | 389.9 | 400.5 | 404.6 | 405.6 |
| Y weights | 190.1 | 376.2 | 394.6 | 402.8 | 405.6 |
| Phi weights | 38.01 | 47.9 | 48 | 48 | 48 |
-------------------------------------------------------------------------
Performing refinement of a single Experiment...
Refinement steps:
-------------------------------------------------
| Step | Nref | RMSD_X | RMSD_Y | RMSD_Phi |
| | | (mm) | (mm) | (deg) |
-------------------------------------------------
| 0 | 90823 | 0.046701 | 0.047875 | 0.10247 |
| 1 | 90823 | 0.046631 | 0.047789 | 0.10251 |
| 2 | 90823 | 0.046615 | 0.047757 | 0.10257 |
| 3 | 90823 | 0.04662 | 0.047741 | 0.10258 |
| 4 | 90823 | 0.046624 | 0.047736 | 0.10259 |
-------------------------------------------------
RMSD no longer decreasing
RMSDs by experiment:
----------------------------------------------
| Exp | Nref | RMSD_X | RMSD_Y | RMSD_Z |
| id | | (px) | (px) | (images) |
----------------------------------------------
| 0 | 90823 | 0.27107 | 0.27754 | 0.20517 |
----------------------------------------------
Final refined crystal model:
Crystal:
Unit cell: (53.1729(3), 61.2449(5), 69.2913(5), 90.0, 93.04662(17), 90.0)
Space group: C 1 2 1
U matrix: {{ 0.9560, -0.2863, 0.0639},
{ 0.0114, 0.2540, 0.9671},
{-0.2931, -0.9239, 0.2461}}
B matrix: {{ 0.0188, 0.0000, 0.0000},
{ 0.0000, 0.0163, 0.0000},
{ 0.0010, 0.0000, 0.0145}}
A = UB: {{ 0.0180, -0.0047, 0.0009},
{ 0.0012, 0.0041, 0.0140},
{-0.0053, -0.0151, 0.0036}}
Saving refined experiments to refined_experiments.json
Updating predictions for indexed reflections
Saving reflections with updated predictions to refined.pickle
Total time taken: 12.91s
|
This uses all reflections in refinement rather than a subset and provided a
small reduction in RMSDs, writing the results out to refined_experiments.json
and refined.pickle
.
However, the refined model is still static over the whole dataset. We may want to do an additional refinement job to fit a more sophisticated model for the crystal, allowing small misset rotations to occur over the course of the scan. There are usually even small changes to the cell dimensions (typically resulting in a net increase in cell volume) caused by exposure to radiation during data collection. To account for both of these effects we can extend our parameterisation to obtain a smoothed scan-varying model for both the crystal orientation and unit cell. This means running a further refinement job starting from the output of the previous job:
dials.refine refined_experiments.json refined.pickle scan_varying=true
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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 | DIALS 1.dev.1890-gcc25deea
The following parameters have been modified:
refinement {
parameterisation {
scan_varying = True
}
}
input {
experiments = refined_experiments.json
reflections = refined.pickle
}
Configuring refiner
Summary statistics for 101758 observations matched to predictions:
-------------------------------------------------------------------------
| | Min | Q1 | Med | Q3 | Max |
-------------------------------------------------------------------------
| Xc - Xo (mm) | -1.806 | -0.03455 | 0.0007619 | 0.03523 | 0.5614 |
| Yc - Yo (mm) | -1.327 | -0.0347 | 0.0003404 | 0.03471 | 2.323 |
| Phic - Phio (deg) | -1.979 | -0.08353 | -0.0001917 | 0.08316 | 1.738 |
| X weights | 177.5 | 386.8 | 399.7 | 404.5 | 405.6 |
| Y weights | 162.2 | 371 | 392.4 | 402.3 | 405.6 |
| Phi weights | 37.47 | 47.92 | 48 | 48 | 48 |
-------------------------------------------------------------------------
Detecting centroid outliers using the MCD algorithm
11127 reflections have been flagged as outliers
Summary statistics for 90631 observations matched to predictions:
--------------------------------------------------------------------------
| | Min | Q1 | Med | Q3 | Max |
--------------------------------------------------------------------------
| Xc - Xo (mm) | -0.1713 | -0.03327 | -0.00052 | 0.03065 | 0.1754 |
| Yc - Yo (mm) | -0.196 | -0.03151 | -0.0001304 | 0.03034 | 0.2316 |
| Phic - Phio (deg) | -0.3626 | -0.08031 | -0.0002709 | 0.08024 | 0.3203 |
| X weights | 179.9 | 389.9 | 400.5 | 404.6 | 405.6 |
| Y weights | 190.1 | 376.3 | 394.6 | 402.8 | 405.6 |
| Phi weights | 38.01 | 47.9 | 48 | 48 | 48 |
--------------------------------------------------------------------------
Performing refinement of a single Experiment...
Refinement steps:
-------------------------------------------------
| Step | Nref | RMSD_X | RMSD_Y | RMSD_Phi |
| | | (mm) | (mm) | (deg) |
-------------------------------------------------
| 0 | 90631 | 0.046367 | 0.047677 | 0.10256 |
| 1 | 90631 | 0.043558 | 0.040853 | 0.10123 |
| 2 | 90631 | 0.041581 | 0.039963 | 0.10065 |
| 3 | 90631 | 0.041011 | 0.039795 | 0.10033 |
| 4 | 90631 | 0.040882 | 0.039801 | 0.10012 |
| 5 | 90631 | 0.040855 | 0.039803 | 0.10002 |
| 6 | 90631 | 0.04085 | 0.039803 | 0.1 |
| 7 | 90631 | 0.040849 | 0.039804 | 0.099999 |
-------------------------------------------------
RMSD no longer decreasing
RMSDs by experiment:
----------------------------------------------
| Exp | Nref | RMSD_X | RMSD_Y | RMSD_Z |
| id | | (px) | (px) | (images) |
----------------------------------------------
| 0 | 90631 | 0.23749 | 0.23142 | 0.2 |
----------------------------------------------
Final refined crystal model:
Crystal:
Unit cell: (53.1729(3), 61.2449(5), 69.2913(5), 90.0, 93.04662(17), 90.0)
Space group: C 1 2 1
U matrix: {{ 0.9560, -0.2863, 0.0639},
{ 0.0114, 0.2540, 0.9671},
{-0.2931, -0.9239, 0.2461}}
B matrix: {{ 0.0188, 0.0000, 0.0000},
{ 0.0000, 0.0163, 0.0000},
{ 0.0010, 0.0000, 0.0145}}
A = UB: {{ 0.0180, -0.0047, 0.0009},
{ 0.0012, 0.0041, 0.0140},
{-0.0053, -0.0151, 0.0036}}
A sampled at 721 scan points
Saving refined experiments to refined_experiments.json
Updating predictions for indexed reflections
Saving reflections with updated predictions to refined.pickle
Total time taken: 47.11s
|
which writes over the refined_experiments.json
and
refined.pickle
from the previous refinement step. By default the
scan-varying refinement looks for smooth changes over an interval of 36°
intervals, to avoid fitting unphysical models to noise, though this
parameter can be tuned. We can use the HTML report, described shortly, to
view the results of fitting to smoothly varying crystal cell parameters:
In this tutorial, we see no overall increase in all three cell parameters. If significant cell volume increases had been observed that might be indicative of radiation damage. However we can’t yet conclude that there is no radiation damage from the lack of considerable change observed.
Integration¶
After the refinement is done the next step is integration, which is performed by the program dials.integrate. Mostly, the default parameters are fine for Pilatus data, which will perform XDS-like 3D profile fitting while using a generalized linear model in order to fit a Poisson-distributed background model. We will also increase the number of processors used to speed the job up.
dials.integrate refined_experiments.json refined.pickle nproc=4
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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 8077 8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275 8276 8277 8278 8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 8361 8362 8363 8364 8365 8366 8367 8368 8369 8370 8371 8372 8373 8374 8375 8376 8377 8378 8379 8380 8381 8382 8383 8384 8385 8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 8411 8412 8413 8414 8415 8416 8417 8418 8419 8420 8421 8422 8423 8424 8425 8426 8427 8428 8429 8430 8431 8432 8433 8434 8435 8436 8437 8438 8439 8440 8441 8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 8456 8457 8458 8459 8460 8461 8462 8463 8464 8465 8466 8467 8468 8469 8470 8471 8472 8473 8474 8475 8476 8477 8478 8479 8480 8481 8482 8483 8484 8485 8486 8487 8488 8489 8490 8491 8492 8493 8494 8495 8496 8497 8498 8499 8500 8501 8502 8503 8504 8505 8506 8507 8508 8509 8510 8511 8512 8513 8514 8515 8516 8517 8518 8519 8520 8521 8522 8523 8524 8525 8526 8527 8528 8529 8530 8531 8532 8533 8534 8535 8536 8537 8538 8539 8540 8541 8542 8543 8544 8545 8546 8547 8548 8549 8550 8551 8552 8553 8554 8555 8556 8557 8558 8559 8560 8561 8562 8563 8564 8565 8566 8567 8568 8569 8570 8571 8572 8573 8574 8575 8576 8577 8578 8579 8580 8581 8582 8583 8584 8585 8586 8587 8588 8589 8590 8591 8592 8593 8594 8595 8596 8597 8598 8599 8600 8601 8602 8603 8604 8605 8606 8607 8608 8609 8610 8611 8612 8613 8614 8615 8616 8617 8618 8619 8620 8621 8622 8623 8624 8625 8626 8627 8628 8629 8630 8631 8632 8633 8634 8635 8636 8637 8638 8639 8640 8641 8642 8643 8644 8645 8646 8647 8648 8649 8650 8651 8652 8653 8654 8655 8656 8657 8658 8659 8660 8661 8662 8663 8664 8665 8666 8667 8668 8669 8670 8671 8672 8673 8674 8675 8676 8677 8678 8679 8680 8681 8682 8683 8684 8685 8686 8687 8688 8689 8690 8691 8692 8693 8694 8695 8696 8697 8698 8699 8700 8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 8732 8733 8734 8735 8736 8737 8738 8739 8740 8741 8742 8743 8744 8745 8746 8747 8748 8749 8750 8751 8752 8753 8754 8755 8756 8757 8758 8759 8760 8761 8762 8763 8764 8765 8766 8767 8768 8769 8770 8771 8772 8773 8774 8775 8776 8777 8778 8779 8780 8781 8782 8783 8784 8785 8786 8787 8788 8789 8790 8791 8792 8793 8794 8795 8796 8797 8798 8799 8800 8801 8802 8803 8804 8805 8806 8807 8808 8809 8810 8811 8812 8813 8814 8815 8816 8817 8818 8819 8820 8821 8822 8823 8824 8825 8826 8827 8828 8829 8830 8831 8832 8833 8834 8835 8836 8837 8838 8839 8840 8841 8842 8843 8844 8845 8846 8847 8848 8849 8850 8851 8852 8853 8854 8855 8856 8857 8858 8859 8860 8861 8862 8863 8864 8865 8866 8867 8868 8869 8870 8871 8872 8873 8874 8875 8876 8877 8878 8879 8880 8881 8882 8883 8884 8885 8886 8887 8888 8889 8890 8891 8892 8893 8894 8895 8896 8897 8898 8899 8900 8901 8902 8903 8904 8905 8906 8907 8908 8909 8910 8911 8912 8913 8914 8915 8916 8917 8918 8919 8920 8921 8922 8923 8924 8925 8926 8927 8928 8929 8930 8931 8932 8933 8934 8935 8936 8937 8938 8939 8940 8941 8942 8943 8944 8945 8946 8947 8948 8949 8950 8951 8952 8953 8954 8955 8956 8957 8958 8959 8960 8961 8962 8963 8964 8965 8966 8967 8968 8969 8970 8971 8972 8973 8974 8975 8976 8977 8978 8979 8980 8981 8982 8983 8984 8985 8986 8987 8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 9015 9016 9017 9018 9019 9020 9021 9022 9023 9024 9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 9052 9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 9100 9101 9102 9103 9104 9105 9106 9107 9108 9109 9110 9111 9112 9113 9114 9115 9116 9117 9118 9119 9120 9121 9122 9123 9124 9125 9126 9127 9128 9129 9130 9131 9132 9133 9134 9135 9136 9137 9138 9139 9140 9141 9142 9143 9144 9145 9146 9147 9148 9149 9150 9151 9152 9153 9154 9155 9156 9157 9158 9159 9160 9161 9162 9163 9164 9165 9166 9167 9168 9169 9170 9171 9172 9173 9174 9175 9176 9177 9178 9179 9180 9181 9182 9183 9184 9185 9186 9187 9188 9189 9190 9191 9192 9193 9194 9195 9196 9197 9198 9199 9200 9201 9202 9203 9204 9205 9206 9207 9208 9209 9210 9211 9212 9213 9214 9215 9216 9217 9218 9219 9220 9221 9222 9223 9224 9225 9226 9227 9228 9229 9230 9231 9232 9233 9234 9235 9236 9237 9238 9239 9240 9241 9242 9243 9244 9245 9246 9247 9248 9249 9250 9251 9252 9253 9254 9255 9256 9257 9258 9259 9260 9261 9262 9263 9264 9265 9266 9267 9268 9269 9270 9271 9272 9273 9274 9275 9276 9277 9278 9279 9280 9281 9282 9283 9284 9285 9286 9287 9288 9289 9290 9291 9292 9293 9294 9295 9296 9297 9298 9299 9300 9301 9302 9303 9304 9305 9306 9307 9308 9309 9310 9311 9312 9313 9314 9315 9316 9317 9318 9319 9320 9321 9322 9323 9324 9325 9326 9327 9328 9329 9330 9331 9332 9333 9334 9335 9336 9337 9338 9339 9340 9341 9342 9343 9344 9345 9346 9347 9348 9349 9350 9351 9352 9353 9354 9355 9356 9357 9358 9359 9360 9361 9362 9363 9364 9365 9366 9367 9368 9369 9370 9371 9372 9373 9374 9375 9376 9377 9378 9379 9380 9381 9382 9383 9384 9385 9386 9387 9388 9389 9390 9391 9392 9393 9394 9395 9396 9397 9398 9399 9400 9401 9402 9403 9404 9405 9406 9407 9408 9409 9410 9411 9412 9413 9414 9415 9416 9417 9418 9419 9420 9421 9422 9423 9424 9425 9426 9427 9428 9429 9430 9431 9432 9433 9434 9435 9436 9437 9438 9439 9440 9441 9442 9443 9444 9445 9446 9447 9448 9449 9450 9451 9452 9453 9454 9455 9456 9457 9458 9459 9460 9461 9462 9463 9464 9465 9466 9467 9468 9469 9470 9471 9472 9473 9474 9475 9476 9477 9478 9479 9480 9481 9482 9483 9484 9485 9486 9487 9488 9489 9490 9491 9492 9493 9494 9495 9496 9497 9498 9499 9500 9501 9502 9503 9504 9505 9506 9507 9508 9509 9510 9511 9512 9513 9514 9515 9516 9517 9518 9519 9520 9521 9522 9523 9524 9525 9526 9527 9528 9529 9530 9531 9532 9533 9534 9535 9536 9537 9538 9539 9540 9541 9542 9543 9544 9545 9546 9547 9548 9549 9550 9551 9552 9553 9554 9555 9556 9557 9558 9559 9560 9561 9562 9563 9564 9565 9566 9567 9568 9569 9570 9571 9572 9573 9574 9575 9576 9577 9578 9579 9580 9581 9582 9583 9584 9585 9586 9587 9588 9589 9590 9591 9592 9593 9594 9595 9596 9597 9598 9599 9600 9601 9602 9603 9604 9605 9606 9607 9608 9609 9610 9611 9612 9613 9614 9615 9616 9617 9618 9619 9620 9621 9622 9623 9624 9625 9626 9627 9628 9629 9630 9631 9632 9633 9634 9635 9636 9637 9638 9639 9640 9641 9642 9643 9644 9645 9646 9647 9648 9649 9650 9651 9652 9653 9654 9655 9656 9657 9658 9659 9660 9661 9662 9663 9664 9665 9666 9667 9668 9669 9670 9671 9672 9673 9674 9675 9676 9677 9678 9679 9680 9681 9682 9683 9684 9685 9686 9687 9688 9689 9690 9691 9692 9693 9694 9695 9696 9697 9698 9699 9700 9701 9702 9703 9704 9705 9706 9707 9708 9709 9710 9711 9712 9713 9714 9715 9716 9717 9718 9719 9720 9721 9722 9723 9724 9725 9726 9727 9728 9729 9730 9731 9732 9733 9734 9735 9736 9737 9738 9739 9740 9741 9742 9743 9744 9745 9746 9747 9748 9749 9750 9751 9752 9753 9754 9755 9756 9757 9758 9759 9760 9761 9762 9763 9764 9765 9766 9767 9768 9769 9770 9771 9772 9773 9774 9775 9776 9777 9778 9779 9780 9781 9782 9783 9784 9785 9786 9787 9788 9789 9790 9791 9792 9793 9794 9795 9796 9797 9798 9799 9800 9801 9802 9803 9804 9805 9806 9807 9808 9809 9810 9811 9812 9813 9814 9815 9816 9817 9818 9819 9820 9821 9822 9823 9824 9825 9826 9827 9828 9829 9830 9831 9832 9833 9834 9835 9836 9837 9838 9839 9840 9841 9842 9843 9844 9845 9846 9847 9848 9849 9850 9851 9852 9853 9854 9855 9856 9857 9858 9859 9860 9861 9862 9863 9864 9865 9866 9867 9868 9869 9870 9871 9872 9873 9874 9875 9876 9877 9878 9879 9880 9881 9882 9883 9884 9885 9886 9887 9888 9889 9890 9891 9892 9893 9894 9895 9896 9897 9898 9899 9900 9901 9902 9903 9904 9905 9906 9907 9908 9909 9910 9911 9912 9913 9914 9915 9916 9917 9918 9919 9920 9921 9922 9923 9924 9925 9926 9927 9928 9929 9930 9931 9932 9933 9934 9935 9936 9937 9938 9939 9940 9941 9942 9943 9944 9945 9946 9947 9948 9949 9950 9951 9952 9953 9954 9955 9956 9957 9958 9959 9960 9961 9962 9963 9964 9965 9966 9967 9968 9969 9970 9971 9972 9973 9974 9975 9976 9977 9978 9979 9980 9981 9982 9983 9984 9985 9986 9987 9988 9989 9990 9991 9992 9993 9994 9995 9996 9997 9998 9999 10000 10001 10002 10003 10004 10005 10006 10007 10008 10009 10010 10011 10012 10013 10014 10015 10016 10017 10018 10019 10020 10021 10022 10023 10024 10025 10026 10027 10028 10029 10030 10031 10032 10033 10034 10035 10036 10037 10038 10039 10040 10041 10042 10043 10044 10045 10046 10047 10048 10049 10050 10051 10052 10053 10054 10055 10056 10057 10058 10059 10060 10061 10062 10063 10064 10065 10066 10067 10068 10069 10070 10071 10072 10073 10074 10075 10076 10077 10078 10079 10080 10081 10082 10083 10084 10085 10086 10087 10088 10089 10090 10091 10092 10093 10094 10095 10096 10097 10098 10099 10100 10101 10102 10103 10104 10105 10106 10107 10108 10109 10110 10111 10112 10113 10114 10115 10116 10117 10118 10119 10120 10121 10122 10123 10124 10125 10126 10127 10128 10129 10130 10131 10132 10133 10134 10135 10136 10137 10138 10139 10140 10141 10142 10143 10144 10145 10146 10147 10148 10149 10150 10151 10152 10153 10154 10155 10156 10157 10158 10159 10160 10161 10162 10163 10164 10165 10166 10167 10168 10169 10170 10171 10172 10173 10174 10175 10176 10177 10178 10179 10180 10181 10182 10183 10184 10185 10186 10187 10188 10189 10190 10191 10192 10193 10194 10195 10196 10197 10198 10199 10200 10201 10202 10203 10204 10205 10206 10207 10208 10209 10210 10211 10212 10213 10214 10215 10216 10217 10218 10219 10220 10221 10222 10223 10224 10225 10226 10227 10228 10229 10230 10231 10232 10233 10234 10235 10236 10237 10238 10239 10240 10241 10242 10243 10244 10245 10246 10247 10248 10249 10250 10251 10252 10253 10254 10255 10256 10257 10258 10259 10260 10261 10262 10263 10264 10265 10266 10267 10268 10269 10270 10271 10272 10273 10274 10275 10276 10277 10278 10279 10280 10281 10282 10283 10284 10285 10286 10287 10288 10289 10290 10291 10292 10293 10294 10295 10296 10297 10298 10299 10300 10301 10302 10303 10304 10305 10306 10307 10308 10309 10310 10311 10312 10313 10314 10315 10316 10317 10318 10319 10320 10321 10322 10323 10324 10325 10326 10327 10328 10329 10330 10331 10332 10333 10334 10335 10336 10337 10338 10339 10340 10341 10342 10343 10344 10345 10346 10347 10348 10349 10350 10351 10352 10353 10354 10355 10356 10357 10358 10359 10360 10361 10362 10363 10364 10365 10366 10367 10368 10369 10370 10371 10372 10373 10374 10375 10376 10377 10378 10379 10380 10381 10382 10383 10384 10385 10386 10387 10388 10389 10390 10391 10392 10393 10394 10395 10396 10397 10398 10399 10400 10401 10402 10403 10404 10405 10406 10407 10408 10409 10410 10411 10412 10413 10414 10415 10416 10417 10418 10419 10420 10421 10422 10423 10424 10425 10426 10427 10428 10429 10430 10431 10432 10433 10434 10435 10436 10437 10438 10439 10440 10441 10442 10443 10444 10445 10446 10447 10448 10449 10450 10451 10452 10453 10454 10455 10456 10457 10458 10459 10460 10461 10462 10463 10464 10465 10466 10467 10468 10469 10470 10471 10472 10473 10474 10475 10476 10477 10478 10479 10480 10481 10482 10483 10484 10485 10486 10487 10488 10489 10490 10491 10492 10493 10494 10495 10496 10497 10498 10499 10500 10501 10502 10503 10504 10505 10506 10507 10508 10509 10510 10511 10512 10513 10514 10515 10516 10517 10518 10519 10520 10521 10522 10523 10524 10525 10526 10527 10528 10529 10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 10548 10549 10550 10551 10552 10553 10554 10555 10556 10557 10558 10559 10560 10561 10562 10563 10564 10565 10566 10567 10568 10569 10570 10571 10572 10573 10574 10575 10576 10577 10578 10579 10580 10581 10582 10583 10584 10585 10586 10587 10588 10589 10590 10591 10592 10593 10594 10595 10596 10597 10598 10599 10600 10601 10602 10603 10604 10605 10606 10607 10608 10609 10610 10611 10612 10613 10614 10615 10616 10617 10618 10619 10620 10621 10622 10623 10624 10625 10626 10627 10628 10629 10630 10631 10632 10633 10634 10635 10636 10637 10638 10639 10640 10641 10642 10643 10644 10645 10646 10647 10648 10649 10650 10651 10652 10653 10654 10655 10656 10657 10658 10659 10660 10661 10662 10663 10664 10665 10666 10667 10668 10669 10670 10671 10672 10673 10674 10675 10676 10677 10678 10679 10680 10681 10682 10683 10684 10685 10686 10687 10688 10689 10690 10691 10692 10693 10694 10695 10696 10697 10698 10699 10700 10701 10702 10703 10704 10705 10706 10707 10708 10709 10710 10711 10712 10713 10714 10715 10716 10717 10718 10719 10720 10721 10722 10723 10724 10725 10726 10727 10728 10729 10730 10731 10732 10733 10734 10735 10736 10737 10738 10739 10740 10741 10742 10743 10744 10745 10746 10747 10748 10749 10750 10751 10752 10753 10754 10755 10756 10757 10758 10759 10760 10761 10762 10763 10764 10765 10766 10767 10768 10769 10770 10771 10772 10773 10774 10775 10776 10777 10778 10779 10780 10781 10782 10783 10784 10785 10786 10787 10788 10789 10790 10791 10792 10793 10794 10795 10796 10797 10798 10799 10800 10801 10802 10803 10804 10805 10806 10807 10808 10809 10810 10811 10812 10813 10814 10815 10816 10817 10818 10819 10820 10821 10822 10823 10824 10825 10826 10827 10828 10829 10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 10879 10880 10881 10882 10883 10884 10885 10886 10887 10888 10889 10890 10891 10892 10893 10894 10895 10896 10897 10898 10899 10900 10901 10902 10903 10904 10905 10906 10907 10908 10909 10910 10911 10912 10913 10914 10915 10916 10917 10918 10919 10920 10921 10922 10923 10924 10925 10926 10927 10928 10929 10930 10931 10932 10933 10934 10935 10936 10937 10938 10939 10940 10941 10942 10943 10944 10945 10946 10947 10948 10949 10950 10951 10952 10953 10954 10955 10956 10957 10958 10959 10960 10961 10962 10963 10964 10965 10966 10967 10968 10969 10970 10971 10972 10973 10974 10975 10976 10977 10978 10979 10980 10981 10982 10983 10984 10985 10986 10987 10988 10989 10990 10991 10992 10993 10994 10995 10996 10997 10998 10999 11000 11001 11002 11003 11004 11005 11006 11007 11008 11009 11010 11011 11012 11013 11014 11015 11016 11017 11018 11019 11020 11021 11022 11023 11024 11025 11026 11027 11028 11029 11030 11031 11032 11033 11034 11035 11036 11037 11038 11039 11040 11041 11042 11043 11044 11045 11046 11047 11048 11049 11050 11051 11052 11053 11054 11055 11056 11057 11058 11059 11060 11061 11062 11063 11064 11065 11066 11067 11068 11069 11070 11071 11072 11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 11083 11084 11085 11086 11087 11088 11089 11090 11091 11092 11093 11094 11095 11096 11097 11098 11099 11100 11101 11102 11103 11104 11105 11106 11107 11108 11109 11110 11111 11112 11113 11114 11115 11116 11117 11118 11119 11120 11121 11122 11123 11124 11125 11126 11127 11128 11129 11130 11131 11132 11133 11134 11135 11136 11137 11138 11139 11140 11141 11142 11143 11144 11145 11146 11147 11148 11149 11150 11151 11152 11153 11154 11155 11156 11157 11158 11159 11160 11161 11162 11163 11164 11165 11166 11167 11168 11169 11170 11171 11172 11173 11174 11175 11176 11177 11178 11179 11180 11181 11182 11183 11184 11185 11186 11187 11188 11189 11190 11191 11192 11193 11194 11195 11196 11197 11198 11199 11200 11201 11202 11203 11204 11205 11206 11207 11208 11209 11210 11211 11212 11213 11214 11215 11216 11217 11218 11219 11220 11221 11222 11223 11224 11225 11226 11227 11228 11229 11230 11231 11232 11233 11234 11235 11236 11237 11238 11239 11240 11241 11242 11243 11244 11245 11246 11247 11248 11249 11250 11251 11252 11253 11254 11255 11256 11257 11258 11259 11260 11261 11262 11263 11264 11265 11266 11267 11268 11269 11270 11271 11272 11273 11274 11275 11276 11277 11278 11279 11280 11281 11282 11283 11284 11285 11286 11287 11288 11289 11290 11291 11292 11293 11294 11295 11296 11297 11298 11299 11300 11301 11302 11303 11304 11305 11306 11307 11308 11309 11310 11311 11312 11313 11314 11315 11316 11317 11318 11319 11320 11321 11322 11323 11324 11325 11326 11327 11328 11329 11330 11331 11332 11333 11334 11335 11336 11337 11338 11339 11340 11341 11342 11343 11344 11345 11346 11347 11348 11349 11350 11351 11352 11353 11354 11355 11356 11357 11358 11359 11360 11361 11362 11363 11364 11365 11366 11367 11368 11369 11370 11371 11372 11373 11374 11375 11376 11377 11378 11379 11380 11381 11382 11383 11384 11385 11386 11387 11388 11389 11390 11391 11392 11393 11394 11395 11396 11397 11398 11399 11400 11401 11402 11403 11404 11405 11406 11407 11408 11409 11410 11411 11412 11413 11414 11415 11416 11417 11418 11419 11420 11421 11422 11423 11424 11425 11426 11427 11428 11429 11430 11431 11432 11433 11434 11435 11436 11437 11438 11439 11440 11441 11442 11443 11444 11445 11446 11447 11448 11449 11450 11451 11452 11453 11454 11455 11456 11457 11458 11459 11460 11461 11462 11463 11464 11465 11466 11467 11468 11469 11470 11471 11472 11473 11474 11475 11476 11477 11478 11479 11480 11481 11482 11483 11484 11485 11486 11487 11488 11489 11490 11491 11492 11493 11494 11495 11496 11497 11498 11499 11500 11501 11502 11503 11504 11505 11506 11507 11508 11509 11510 11511 11512 11513 11514 11515 11516 11517 11518 11519 11520 11521 11522 11523 11524 11525 11526 11527 11528 11529 11530 11531 11532 11533 11534 11535 11536 11537 11538 11539 11540 11541 11542 11543 11544 11545 11546 11547 11548 11549 11550 11551 11552 11553 11554 11555 11556 11557 11558 11559 11560 11561 11562 11563 11564 11565 11566 11567 11568 11569 11570 11571 11572 11573 11574 11575 11576 11577 11578 11579 11580 11581 11582 11583 11584 11585 11586 11587 11588 11589 11590 11591 11592 11593 11594 11595 11596 11597 11598 11599 11600 11601 11602 11603 11604 11605 11606 11607 11608 11609 11610 11611 11612 11613 11614 11615 11616 11617 11618 11619 11620 11621 11622 11623 11624 11625 11626 11627 11628 11629 11630 11631 11632 11633 11634 11635 11636 11637 11638 11639 11640 11641 11642 11643 11644 11645 11646 11647 11648 11649 11650 11651 11652 11653 11654 11655 11656 11657 11658 11659 11660 11661 11662 11663 11664 11665 11666 11667 11668 11669 11670 11671 11672 11673 11674 11675 11676 11677 11678 11679 11680 11681 11682 11683 11684 11685 11686 11687 11688 11689 11690 11691 11692 11693 11694 11695 11696 11697 11698 11699 11700 11701 11702 11703 11704 11705 11706 11707 11708 11709 11710 11711 11712 11713 11714 11715 11716 11717 11718 11719 11720 11721 11722 11723 11724 11725 11726 11727 11728 11729 11730 11731 11732 11733 11734 11735 11736 11737 11738 11739 11740 11741 11742 11743 11744 11745 11746 11747 11748 11749 11750 11751 11752 11753 11754 11755 11756 11757 11758 11759 11760 11761 11762 11763 11764 11765 11766 11767 11768 11769 11770 11771 11772 11773 11774 11775 11776 11777 11778 11779 11780 11781 11782 11783 11784 11785 11786 11787 11788 11789 11790 11791 11792 | DIALS 1.dev.1890-gcc25deea
The following parameters have been modified:
integration {
mp {
nproc = 4
}
}
input {
experiments = refined_experiments.json
reflections = refined.pickle
}
================================================================================
Initialising
Processing reference reflections
read 103780 strong spots
removing 1629 unindexed reflections
removing 10940 reflections marked as centroid outliers
using 91211 indexed reflections
found 12569 junk reflections
time taken: 0.025677
masked neighbouring pixels in 20 shoeboxes
================================================================================
Predicting reflections
Prediction type: scan varying prediction
Predicted 368602 reflections
Matching reference spots with predicted reflections
91211 observed reflections input
368602 reflections predicted
91176 reflections matched
91175 reflections accepted
********************************************************************************
Warning: 36 reference spots were not matched to predictions
********************************************************************************
Calculating E.S.D Beam Divergence.
Calculating E.S.D Reflecting Range.
sigma b: 0.035747 degrees
sigma m: 0.052842 degrees
================================================================================
Processing reflections
Processing the following experiments:
Experiments: 1
Beams: 1
Detectors: 1
Goniometers: 1
Scans: 1
Crystals: 1
Imagesets: 1
================================================================================
Modelling reflection profiles
Split 669 reflections overlapping job boundaries
Processing reflections in the following blocks of images:
block_size: 12 frames
---------------------------------------------------------------------------
# | Group | Frame From | Frame To | Angle From | Angle To | # Reflections
---------------------------------------------------------------------------
0 | 0 | 0 | 12 | 0.0 | 6.0 | 1290
1 | 0 | 6 | 18 | 3.0 | 9.0 | 790
2 | 0 | 12 | 24 | 6.0 | 12.0 | 806
3 | 0 | 18 | 30 | 9.0 | 15.0 | 820
4 | 0 | 24 | 36 | 12.0 | 18.0 | 836
5 | 0 | 30 | 42 | 15.0 | 21.0 | 785
6 | 0 | 36 | 48 | 18.0 | 24.0 | 801
7 | 0 | 42 | 54 | 21.0 | 27.0 | 776
8 | 0 | 48 | 60 | 24.0 | 30.0 | 813
9 | 0 | 54 | 66 | 27.0 | 33.0 | 758
10 | 0 | 60 | 72 | 30.0 | 36.0 | 818
11 | 0 | 66 | 78 | 33.0 | 39.0 | 835
12 | 0 | 72 | 84 | 36.0 | 42.0 | 807
13 | 0 | 78 | 90 | 39.0 | 45.0 | 789
14 | 0 | 84 | 96 | 42.0 | 48.0 | 864
15 | 0 | 90 | 102 | 45.0 | 51.0 | 835
16 | 0 | 96 | 108 | 48.0 | 54.0 | 873
17 | 0 | 102 | 114 | 51.0 | 57.0 | 827
18 | 0 | 108 | 120 | 54.0 | 60.0 | 806
19 | 0 | 114 | 126 | 57.0 | 63.0 | 830
20 | 0 | 120 | 132 | 60.0 | 66.0 | 846
21 | 0 | 126 | 138 | 63.0 | 69.0 | 803
22 | 0 | 132 | 144 | 66.0 | 72.0 | 811
23 | 0 | 138 | 150 | 69.0 | 75.0 | 796
24 | 0 | 144 | 156 | 72.0 | 78.0 | 793
25 | 0 | 150 | 162 | 75.0 | 81.0 | 816
26 | 0 | 156 | 168 | 78.0 | 84.0 | 782
27 | 0 | 162 | 174 | 81.0 | 87.0 | 783
28 | 0 | 168 | 180 | 84.0 | 90.0 | 779
29 | 0 | 174 | 186 | 87.0 | 93.0 | 759
30 | 0 | 180 | 192 | 90.0 | 96.0 | 721
31 | 0 | 186 | 198 | 93.0 | 99.0 | 754
32 | 0 | 192 | 204 | 96.0 | 102.0 | 715
33 | 0 | 198 | 210 | 99.0 | 105.0 | 693
34 | 0 | 204 | 216 | 102.0 | 108.0 | 710
35 | 0 | 210 | 222 | 105.0 | 111.0 | 704
36 | 0 | 216 | 228 | 108.0 | 114.0 | 707
37 | 0 | 222 | 234 | 111.0 | 117.0 | 724
38 | 0 | 228 | 240 | 114.0 | 120.0 | 695
39 | 0 | 234 | 246 | 117.0 | 123.0 | 727
40 | 0 | 240 | 252 | 120.0 | 126.0 | 747
41 | 0 | 246 | 258 | 123.0 | 129.0 | 690
42 | 0 | 252 | 264 | 126.0 | 132.0 | 746
43 | 0 | 258 | 270 | 129.0 | 135.0 | 743
44 | 0 | 264 | 276 | 132.0 | 138.0 | 745
45 | 0 | 270 | 282 | 135.0 | 141.0 | 770
46 | 0 | 276 | 288 | 138.0 | 144.0 | 723
47 | 0 | 282 | 294 | 141.0 | 147.0 | 736
48 | 0 | 288 | 300 | 144.0 | 150.0 | 739
49 | 0 | 294 | 306 | 147.0 | 153.0 | 752
50 | 0 | 300 | 312 | 150.0 | 156.0 | 753
51 | 0 | 306 | 318 | 153.0 | 159.0 | 730
52 | 0 | 312 | 324 | 156.0 | 162.0 | 739
53 | 0 | 318 | 330 | 159.0 | 165.0 | 809
54 | 0 | 324 | 336 | 162.0 | 168.0 | 762
55 | 0 | 330 | 342 | 165.0 | 171.0 | 767
56 | 0 | 336 | 348 | 168.0 | 174.0 | 777
57 | 0 | 342 | 354 | 171.0 | 177.0 | 782
58 | 0 | 348 | 360 | 174.0 | 180.0 | 763
59 | 0 | 354 | 366 | 177.0 | 183.0 | 812
60 | 0 | 360 | 372 | 180.0 | 186.0 | 811
61 | 0 | 366 | 378 | 183.0 | 189.0 | 760
62 | 0 | 372 | 384 | 186.0 | 192.0 | 748
63 | 0 | 378 | 390 | 189.0 | 195.0 | 770
64 | 0 | 384 | 396 | 192.0 | 198.0 | 794
65 | 0 | 390 | 402 | 195.0 | 201.0 | 760
66 | 0 | 396 | 408 | 198.0 | 204.0 | 786
67 | 0 | 402 | 414 | 201.0 | 207.0 | 775
68 | 0 | 408 | 420 | 204.0 | 210.0 | 776
69 | 0 | 414 | 426 | 207.0 | 213.0 | 716
70 | 0 | 420 | 432 | 210.0 | 216.0 | 752
71 | 0 | 426 | 438 | 213.0 | 219.0 | 753
72 | 0 | 432 | 444 | 216.0 | 222.0 | 737
73 | 0 | 438 | 450 | 219.0 | 225.0 | 746
74 | 0 | 444 | 456 | 222.0 | 228.0 | 753
75 | 0 | 450 | 462 | 225.0 | 231.0 | 740
76 | 0 | 456 | 468 | 228.0 | 234.0 | 772
77 | 0 | 462 | 474 | 231.0 | 237.0 | 758
78 | 0 | 468 | 480 | 234.0 | 240.0 | 775
79 | 0 | 474 | 486 | 237.0 | 243.0 | 739
80 | 0 | 480 | 492 | 240.0 | 246.0 | 728
81 | 0 | 486 | 498 | 243.0 | 249.0 | 734
82 | 0 | 492 | 504 | 246.0 | 252.0 | 701
83 | 0 | 498 | 510 | 249.0 | 255.0 | 751
84 | 0 | 504 | 516 | 252.0 | 258.0 | 710
85 | 0 | 510 | 522 | 255.0 | 261.0 | 726
86 | 0 | 516 | 528 | 258.0 | 264.0 | 719
87 | 0 | 522 | 534 | 261.0 | 267.0 | 731
88 | 0 | 528 | 540 | 264.0 | 270.0 | 693
89 | 0 | 534 | 546 | 267.0 | 273.0 | 695
90 | 0 | 540 | 552 | 270.0 | 276.0 | 662
91 | 0 | 546 | 558 | 273.0 | 279.0 | 693
92 | 0 | 552 | 564 | 276.0 | 282.0 | 723
93 | 0 | 558 | 570 | 279.0 | 285.0 | 665
94 | 0 | 564 | 576 | 282.0 | 288.0 | 682
95 | 0 | 570 | 582 | 285.0 | 291.0 | 722
96 | 0 | 576 | 588 | 288.0 | 294.0 | 714
97 | 0 | 582 | 594 | 291.0 | 297.0 | 714
98 | 0 | 588 | 600 | 294.0 | 300.0 | 663
99 | 0 | 594 | 606 | 297.0 | 303.0 | 732
100 | 0 | 600 | 612 | 300.0 | 306.0 | 749
101 | 0 | 606 | 618 | 303.0 | 309.0 | 719
102 | 0 | 612 | 624 | 306.0 | 312.0 | 717
103 | 0 | 618 | 630 | 309.0 | 315.0 | 699
104 | 0 | 624 | 636 | 312.0 | 318.0 | 775
105 | 0 | 630 | 642 | 315.0 | 321.0 | 723
106 | 0 | 636 | 648 | 318.0 | 324.0 | 743
107 | 0 | 642 | 654 | 321.0 | 327.0 | 740
108 | 0 | 648 | 660 | 324.0 | 330.0 | 726
109 | 0 | 654 | 666 | 327.0 | 333.0 | 771
110 | 0 | 660 | 672 | 330.0 | 336.0 | 778
111 | 0 | 666 | 678 | 333.0 | 339.0 | 765
112 | 0 | 672 | 684 | 336.0 | 342.0 | 790
113 | 0 | 678 | 690 | 339.0 | 345.0 | 836
114 | 0 | 684 | 696 | 342.0 | 348.0 | 779
115 | 0 | 690 | 702 | 345.0 | 351.0 | 772
116 | 0 | 696 | 708 | 348.0 | 354.0 | 798
117 | 0 | 702 | 714 | 351.0 | 357.0 | 825
118 | 0 | 708 | 720 | 354.0 | 360.0 | 1262
---------------------------------------------------------------------------
Using multiprocessing with 4 parallel job(s)
Beginning modelling job 0
Frames: 0 -> 12
Number of reflections
Partial: 89
Full: 1201
In ice ring: 0
Total: 1290
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
0 [258]: *************************************************************
1 [289]: *********************************************************************
2 [254]: ************************************************************
3 [251]: ***********************************************************
4 [256]: *************************************************************
5 [262]: **************************************************************
6 [248]: ***********************************************************
7 [266]: ***************************************************************
8 [255]: ************************************************************
9 [115]: ***************************
10 [8 ]: *
11 [2 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00135736 GB
Modelled 46 / 99 reflection profiles on image 0
Modelled 141 / 160 reflection profiles on image 1
Modelled 125 / 130 reflection profiles on image 2
Modelled 120 / 123 reflection profiles on image 3
Modelled 129 / 132 reflection profiles on image 4
Modelled 129 / 134 reflection profiles on image 5
Modelled 124 / 125 reflection profiles on image 6
Modelled 125 / 132 reflection profiles on image 7
Modelled 132 / 140 reflection profiles on image 8
Modelled 104 / 107 reflection profiles on image 9
Modelled 6 / 6 reflection profiles on image 10
Modelled 2 / 2 reflection profiles on image 11
Beginning modelling job 1
Frames: 6 -> 18
Number of reflections
Partial: 2
Full: 788
In ice ring: 0
Total: 790
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
6 [3 ]:
7 [4 ]: *
8 [17 ]: ****
9 [143]: **************************************
10 [236]: ***************************************************************
11 [251]: *******************************************************************
12 [246]: ******************************************************************
13 [247]: ******************************************************************
14 [255]: *********************************************************************
15 [125]: *********************************
16 [8 ]: **
17 [1 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00118226 GB
Modelled 21 / 23 reflection profiles on image 9
Modelled 120 / 121 reflection profiles on image 10
Modelled 128 / 130 reflection profiles on image 11
Modelled 130 / 134 reflection profiles on image 12
Modelled 123 / 127 reflection profiles on image 13
Modelled 129 / 130 reflection profiles on image 14
Modelled 111 / 117 reflection profiles on image 15
Modelled 7 / 7 reflection profiles on image 16
Modelled 1 / 1 reflection profiles on image 17
Beginning modelling job 2
Frames: 12 -> 24
Number of reflections
Partial: 6
Full: 800
In ice ring: 0
Total: 806
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
12 [1 ]:
13 [4 ]: *
14 [24 ]: ******
15 [158]: ***************************************
16 [266]: ******************************************************************
17 [275]: *********************************************************************
18 [265]: ******************************************************************
19 [260]: *****************************************************************
20 [259]: ****************************************************************
21 [118]: *****************************
22 [12 ]: ***
23 [5 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00137528 GB
Modelled 18 / 18 reflection profiles on image 15
Modelled 132 / 133 reflection profiles on image 16
Modelled 127 / 135 reflection profiles on image 17
Modelled 129 / 137 reflection profiles on image 18
Modelled 121 / 124 reflection profiles on image 19
Modelled 136 / 141 reflection profiles on image 20
Modelled 101 / 106 reflection profiles on image 21
Modelled 7 / 7 reflection profiles on image 22
Modelled 2 / 5 reflection profiles on image 23
Beginning modelling job 3
Frames: 18 -> 30
Number of reflections
Partial: 7
Full: 813
In ice ring: 0
Total: 820
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
19 [1 ]:
20 [17 ]: ****
21 [156]: *************************************
22 [236]: ********************************************************
23 [262]: **************************************************************
24 [276]: *****************************************************************
25 [289]: *********************************************************************
26 [275]: *****************************************************************
27 [126]: ******************************
28 [13 ]: ***
29 [4 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00149051 GB
Modelled 36 / 36 reflection profiles on image 21
Modelled 114 / 118 reflection profiles on image 22
Modelled 115 / 123 reflection profiles on image 23
Modelled 127 / 134 reflection profiles on image 24
Modelled 127 / 134 reflection profiles on image 25
Modelled 147 / 149 reflection profiles on image 26
Modelled 111 / 113 reflection profiles on image 27
Modelled 9 / 9 reflection profiles on image 28
Modelled 2 / 4 reflection profiles on image 29
Beginning modelling job 4
Frames: 24 -> 36
Number of reflections
Partial: 2
Full: 834
In ice ring: 0
Total: 836
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
24 [1 ]:
25 [3 ]:
26 [19 ]: ****
27 [160]: ***************************************
28 [262]: *****************************************************************
29 [252]: **************************************************************
30 [278]: *********************************************************************
31 [276]: ********************************************************************
32 [266]: ******************************************************************
33 [119]: *****************************
34 [12 ]: **
35 [1 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00129185 GB
Modelled 27 / 27 reflection profiles on image 27
Modelled 140 / 145 reflection profiles on image 28
Modelled 125 / 130 reflection profiles on image 29
Modelled 137 / 140 reflection profiles on image 30
Modelled 125 / 128 reflection profiles on image 31
Modelled 138 / 147 reflection profiles on image 32
Modelled 106 / 107 reflection profiles on image 33
Modelled 10 / 11 reflection profiles on image 34
Modelled 1 / 1 reflection profiles on image 35
Beginning modelling job 5
Frames: 30 -> 42
Number of reflections
Partial: 0
Full: 785
In ice ring: 0
Total: 785
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
31 [4 ]: *
32 [15 ]: ***
33 [144]: *************************************
34 [242]: ***************************************************************
35 [237]: **************************************************************
36 [263]: *********************************************************************
37 [236]: *************************************************************
38 [252]: ******************************************************************
39 [133]: **********************************
40 [8 ]: **
41 [4 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00127841 GB
Modelled 31 / 32 reflection profiles on image 33
Modelled 129 / 136 reflection profiles on image 34
Modelled 100 / 108 reflection profiles on image 35
Modelled 131 / 132 reflection profiles on image 36
Modelled 117 / 125 reflection profiles on image 37
Modelled 112 / 119 reflection profiles on image 38
Modelled 117 / 125 reflection profiles on image 39
Modelled 4 / 4 reflection profiles on image 40
Modelled 3 / 4 reflection profiles on image 41
Beginning modelling job 6
Frames: 36 -> 48
Number of reflections
Partial: 2
Full: 799
In ice ring: 0
Total: 801
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
37 [3 ]:
38 [19 ]: ****
39 [158]: ***************************************
40 [268]: *******************************************************************
41 [276]: *********************************************************************
42 [258]: ****************************************************************
43 [254]: ***************************************************************
44 [235]: **********************************************************
45 [101]: *************************
46 [7 ]: *
47 [2 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00128914 GB
Modelled 29 / 29 reflection profiles on image 39
Modelled 122 / 125 reflection profiles on image 40
Modelled 139 / 145 reflection profiles on image 41
Modelled 131 / 136 reflection profiles on image 42
Modelled 126 / 131 reflection profiles on image 43
Modelled 130 / 134 reflection profiles on image 44
Modelled 89 / 94 reflection profiles on image 45
Modelled 5 / 5 reflection profiles on image 46
Modelled 1 / 2 reflection profiles on image 47
Beginning modelling job 7
Frames: 42 -> 54
Number of reflections
Partial: 5
Full: 771
In ice ring: 0
Total: 776
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
43 [1 ]:
44 [24 ]: *****
45 [143]: **********************************
46 [255]: *************************************************************
47 [262]: ***************************************************************
48 [286]: *********************************************************************
49 [275]: ******************************************************************
50 [221]: *****************************************************
51 [101]: ************************
52 [13 ]: ***
53 [6 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00138394 GB
Modelled 17 / 17 reflection profiles on image 45
Modelled 127 / 130 reflection profiles on image 46
Modelled 129 / 134 reflection profiles on image 47
Modelled 124 / 128 reflection profiles on image 48
Modelled 144 / 146 reflection profiles on image 49
Modelled 118 / 120 reflection profiles on image 50
Modelled 85 / 88 reflection profiles on image 51
Modelled 5 / 7 reflection profiles on image 52
Modelled 4 / 6 reflection profiles on image 53
Beginning modelling job 8
Frames: 48 -> 60
Number of reflections
Partial: 2
Full: 811
In ice ring: 0
Total: 813
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
48 [1 ]:
49 [3 ]:
50 [15 ]: ***
51 [144]: **********************************
52 [276]: ******************************************************************
53 [285]: *********************************************************************
54 [271]: *****************************************************************
55 [251]: ************************************************************
56 [235]: ********************************************************
57 [110]: **************************
58 [5 ]: *
59 [1 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00133248 GB
Modelled 22 / 22 reflection profiles on image 51
Modelled 128 / 133 reflection profiles on image 52
Modelled 140 / 144 reflection profiles on image 53
Modelled 145 / 149 reflection profiles on image 54
Modelled 123 / 130 reflection profiles on image 55
Modelled 119 / 125 reflection profiles on image 56
Modelled 101 / 105 reflection profiles on image 57
Modelled 4 / 4 reflection profiles on image 58
Modelled 1 / 1 reflection profiles on image 59
Beginning modelling job 9
Frames: 54 -> 66
Number of reflections
Partial: 0
Full: 758
In ice ring: 0
Total: 758
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
55 [1 ]:
56 [17 ]: ****
57 [157]: *******************************************
58 [242]: *******************************************************************
59 [242]: *******************************************************************
60 [240]: ******************************************************************
61 [249]: *********************************************************************
62 [233]: ****************************************************************
63 [104]: ****************************
64 [9 ]: **
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00114386 GB
Modelled 25 / 25 reflection profiles on image 57
Modelled 125 / 131 reflection profiles on image 58
Modelled 117 / 121 reflection profiles on image 59
Modelled 113 / 115 reflection profiles on image 60
Modelled 131 / 133 reflection profiles on image 61
Modelled 122 / 129 reflection profiles on image 62
Modelled 90 / 95 reflection profiles on image 63
Modelled 9 / 9 reflection profiles on image 64
Beginning modelling job 10
Frames: 60 -> 72
Number of reflections
Partial: 0
Full: 818
In ice ring: 0
Total: 818
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
61 [5 ]: *
62 [18 ]: ****
63 [148]: ************************************
64 [270]: ******************************************************************
65 [281]: *********************************************************************
66 [267]: *****************************************************************
67 [280]: ********************************************************************
68 [252]: *************************************************************
69 [108]: **************************
70 [5 ]: *
71 [1 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00136195 GB
Modelled 25 / 27 reflection profiles on image 63
Modelled 117 / 121 reflection profiles on image 64
Modelled 140 / 145 reflection profiles on image 65
Modelled 120 / 124 reflection profiles on image 66
Modelled 144 / 149 reflection profiles on image 67
Modelled 141 / 144 reflection profiles on image 68
Modelled 96 / 103 reflection profiles on image 69
Modelled 4 / 4 reflection profiles on image 70
Modelled 1 / 1 reflection profiles on image 71
Beginning modelling job 11
Frames: 66 -> 78
Number of reflections
Partial: 0
Full: 835
In ice ring: 0
Total: 835
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
67 [1 ]:
68 [17 ]: ****
69 [181]: ********************************************
70 [283]: *********************************************************************
71 [245]: ***********************************************************
72 [276]: *******************************************************************
73 [264]: ****************************************************************
74 [252]: *************************************************************
75 [120]: *****************************
76 [7 ]: *
77 [1 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00133235 GB
Modelled 23 / 25 reflection profiles on image 69
Modelled 151 / 159 reflection profiles on image 70
Modelled 127 / 128 reflection profiles on image 71
Modelled 124 / 128 reflection profiles on image 72
Modelled 140 / 143 reflection profiles on image 73
Modelled 121 / 132 reflection profiles on image 74
Modelled 111 / 113 reflection profiles on image 75
Modelled 5 / 6 reflection profiles on image 76
Modelled 1 / 1 reflection profiles on image 77
Beginning modelling job 12
Frames: 72 -> 84
Number of reflections
Partial: 0
Full: 807
In ice ring: 0
Total: 807
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
73 [5 ]: *
74 [28 ]: *******
75 [163]: *****************************************
76 [273]: *********************************************************************
77 [256]: ****************************************************************
78 [246]: **************************************************************
79 [267]: *******************************************************************
80 [248]: **************************************************************
81 [117]: *****************************
82 [3 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00134086 GB
Modelled 21 / 21 reflection profiles on image 75
Modelled 135 / 138 reflection profiles on image 76
Modelled 133 / 137 reflection profiles on image 77
Modelled 116 / 121 reflection profiles on image 78
Modelled 136 / 142 reflection profiles on image 79
Modelled 122 / 131 reflection profiles on image 80
Modelled 111 / 114 reflection profiles on image 81
Modelled 3 / 3 reflection profiles on image 82
Beginning modelling job 13
Frames: 78 -> 90
Number of reflections
Partial: 2
Full: 787
In ice ring: 0
Total: 789
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
79 [4 ]:
80 [21 ]: *****
81 [130]: ********************************
82 [259]: ****************************************************************
83 [258]: ****************************************************************
84 [277]: *********************************************************************
85 [273]: ********************************************************************
86 [242]: ************************************************************
87 [120]: *****************************
88 [10 ]: **
89 [2 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00136246 GB
Modelled 15 / 15 reflection profiles on image 81
Modelled 125 / 130 reflection profiles on image 82
Modelled 124 / 125 reflection profiles on image 83
Modelled 128 / 129 reflection profiles on image 84
Modelled 141 / 148 reflection profiles on image 85
Modelled 117 / 122 reflection profiles on image 86
Modelled 106 / 110 reflection profiles on image 87
Modelled 7 / 8 reflection profiles on image 88
Modelled 0 / 2 reflection profiles on image 89
Beginning modelling job 14
Frames: 84 -> 96
Number of reflections
Partial: 3
Full: 861
In ice ring: 0
Total: 864
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
85 [3 ]:
86 [30 ]: ******
87 [165]: ************************************
88 [288]: ***************************************************************
89 [264]: **********************************************************
90 [295]: ****************************************************************
91 [314]: *********************************************************************
92 [252]: *******************************************************
93 [119]: **************************
94 [10 ]: **
95 [3 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00148672 GB
Modelled 26 / 26 reflection profiles on image 87
Modelled 147 / 148 reflection profiles on image 88
Modelled 122 / 128 reflection profiles on image 89
Modelled 130 / 137 reflection profiles on image 90
Modelled 165 / 173 reflection profiles on image 91
Modelled 128 / 133 reflection profiles on image 92
Modelled 104 / 109 reflection profiles on image 93
Modelled 7 / 7 reflection profiles on image 94
Modelled 2 / 3 reflection profiles on image 95
Beginning modelling job 15
Frames: 90 -> 102
Number of reflections
Partial: 1
Full: 834
In ice ring: 0
Total: 835
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
90 [1 ]:
91 [3 ]:
92 [21 ]: ****
93 [159]: ***********************************
94 [262]: **********************************************************
95 [273]: *************************************************************
96 [303]: ********************************************************************
97 [289]: ****************************************************************
98 [234]: ****************************************************
99 [98 ]: *********************
100 [3 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0014006 GB
Modelled 25 / 25 reflection profiles on image 93
Modelled 122 / 126 reflection profiles on image 94
Modelled 124 / 133 reflection profiles on image 95
Modelled 142 / 145 reflection profiles on image 96
Modelled 161 / 172 reflection profiles on image 97
Modelled 131 / 136 reflection profiles on image 98
Modelled 90 / 95 reflection profiles on image 99
Modelled 3 / 3 reflection profiles on image 100
Beginning modelling job 16
Frames: 96 -> 108
Number of reflections
Partial: 0
Full: 873
In ice ring: 0
Total: 873
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
96 [1 ]:
97 [4 ]:
98 [16 ]: ***
99 [135]: *****************************
100 [255]: *******************************************************
101 [301]: *****************************************************************
102 [312]: ********************************************************************
103 [294]: ****************************************************************
104 [276]: ************************************************************
105 [128]: ***************************
106 [3 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0014895 GB
Modelled 22 / 23 reflection profiles on image 99
Modelled 122 / 124 reflection profiles on image 100
Modelled 135 / 140 reflection profiles on image 101
Modelled 155 / 158 reflection profiles on image 102
Modelled 145 / 152 reflection profiles on image 103
Modelled 139 / 148 reflection profiles on image 104
Modelled 122 / 125 reflection profiles on image 105
Modelled 3 / 3 reflection profiles on image 106
Beginning modelling job 17
Frames: 102 -> 114
Number of reflections
Partial: 1
Full: 826
In ice ring: 0
Total: 827
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
103 [2 ]:
104 [22 ]: *****
105 [161]: *************************************
106 [258]: ************************************************************
107 [274]: ****************************************************************
108 [290]: ********************************************************************
109 [287]: *******************************************************************
110 [243]: ********************************************************
111 [94 ]: **********************
112 [5 ]: *
113 [2 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0013298 GB
Modelled 31 / 32 reflection profiles on image 105
Modelled 122 / 125 reflection profiles on image 106
Modelled 134 / 144 reflection profiles on image 107
Modelled 131 / 136 reflection profiles on image 108
Modelled 139 / 147 reflection profiles on image 109
Modelled 143 / 149 reflection profiles on image 110
Modelled 87 / 89 reflection profiles on image 111
Modelled 3 / 3 reflection profiles on image 112
Modelled 1 / 2 reflection profiles on image 113
Beginning modelling job 18
Frames: 108 -> 120
Number of reflections
Partial: 3
Full: 803
In ice ring: 0
Total: 806
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
109 [2 ]:
110 [18 ]: ****
111 [165]: ***************************************
112 [287]: ********************************************************************
113 [248]: **********************************************************
114 [248]: **********************************************************
115 [249]: **********************************************************
116 [247]: **********************************************************
117 [118]: ***************************
118 [7 ]: *
119 [4 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00126511 GB
Modelled 19 / 20 reflection profiles on image 111
Modelled 154 / 161 reflection profiles on image 112
Modelled 126 / 131 reflection profiles on image 113
Modelled 123 / 126 reflection profiles on image 114
Modelled 114 / 121 reflection profiles on image 115
Modelled 128 / 129 reflection profiles on image 116
Modelled 107 / 111 reflection profiles on image 117
Modelled 3 / 3 reflection profiles on image 118
Modelled 2 / 4 reflection profiles on image 119
Beginning modelling job 19
Frames: 114 -> 126
Number of reflections
Partial: 8
Full: 822
In ice ring: 0
Total: 830
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
115 [4 ]:
116 [16 ]: ***
117 [162]: *************************************
118 [266]: **************************************************************
119 [264]: *************************************************************
120 [284]: ******************************************************************
121 [290]: ********************************************************************
122 [250]: **********************************************************
123 [103]: ************************
124 [4 ]:
125 [3 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00136232 GB
Modelled 28 / 28 reflection profiles on image 117
Modelled 139 / 143 reflection profiles on image 118
Modelled 118 / 126 reflection profiles on image 119
Modelled 125 / 132 reflection profiles on image 120
Modelled 142 / 151 reflection profiles on image 121
Modelled 146 / 147 reflection profiles on image 122
Modelled 98 / 99 reflection profiles on image 123
Modelled 1 / 1 reflection profiles on image 124
Modelled 1 / 3 reflection profiles on image 125
Beginning modelling job 20
Frames: 120 -> 132
Number of reflections
Partial: 5
Full: 841
In ice ring: 0
Total: 846
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
121 [2 ]:
122 [27 ]: ******
123 [150]: **********************************
124 [287]: ******************************************************************
125 [293]: ********************************************************************
126 [292]: *******************************************************************
127 [276]: ****************************************************************
128 [250]: **********************************************************
129 [121]: ****************************
130 [8 ]: *
131 [3 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00148388 GB
Modelled 24 / 24 reflection profiles on image 123
Modelled 119 / 126 reflection profiles on image 124
Modelled 137 / 144 reflection profiles on image 125
Modelled 150 / 159 reflection profiles on image 126
Modelled 138 / 143 reflection profiles on image 127
Modelled 126 / 129 reflection profiles on image 128
Modelled 109 / 113 reflection profiles on image 129
Modelled 5 / 5 reflection profiles on image 130
Modelled 1 / 3 reflection profiles on image 131
Beginning modelling job 21
Frames: 126 -> 138
Number of reflections
Partial: 3
Full: 800
In ice ring: 0
Total: 803
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
127 [2 ]:
128 [17 ]: ****
129 [170]: ******************************************
130 [257]: ****************************************************************
131 [248]: **************************************************************
132 [268]: *******************************************************************
133 [270]: ********************************************************************
134 [252]: ***************************************************************
135 [130]: ********************************
136 [9 ]: **
137 [2 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00132701 GB
Modelled 31 / 32 reflection profiles on image 129
Modelled 128 / 135 reflection profiles on image 130
Modelled 122 / 127 reflection profiles on image 131
Modelled 111 / 115 reflection profiles on image 132
Modelled 138 / 142 reflection profiles on image 133
Modelled 121 / 122 reflection profiles on image 134
Modelled 118 / 121 reflection profiles on image 135
Modelled 6 / 7 reflection profiles on image 136
Modelled 1 / 2 reflection profiles on image 137
Beginning modelling job 22
Frames: 132 -> 144
Number of reflections
Partial: 3
Full: 808
In ice ring: 0
Total: 811
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
133 [2 ]:
134 [15 ]: ***
135 [148]: **********************************
136 [277]: ****************************************************************
137 [291]: ********************************************************************
138 [272]: ***************************************************************
139 [255]: ***********************************************************
140 [231]: *****************************************************
141 [105]: ************************
142 [5 ]: *
143 [1 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00138403 GB
Modelled 25 / 26 reflection profiles on image 135
Modelled 117 / 123 reflection profiles on image 136
Modelled 145 / 151 reflection profiles on image 137
Modelled 135 / 141 reflection profiles on image 138
Modelled 134 / 139 reflection profiles on image 139
Modelled 119 / 126 reflection profiles on image 140
Modelled 98 / 100 reflection profiles on image 141
Modelled 3 / 4 reflection profiles on image 142
Modelled 1 / 1 reflection profiles on image 143
Beginning modelling job 23
Frames: 138 -> 150
Number of reflections
Partial: 3
Full: 793
In ice ring: 0
Total: 796
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
138 [1 ]:
139 [2 ]:
140 [15 ]: ***
141 [146]: *************************************
142 [245]: ***************************************************************
143 [259]: ******************************************************************
144 [263]: ********************************************************************
145 [249]: ****************************************************************
146 [263]: ********************************************************************
147 [126]: ********************************
148 [7 ]: *
149 [2 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00122564 GB
Modelled 33 / 33 reflection profiles on image 141
Modelled 113 / 119 reflection profiles on image 142
Modelled 120 / 122 reflection profiles on image 143
Modelled 137 / 145 reflection profiles on image 144
Modelled 109 / 114 reflection profiles on image 145
Modelled 131 / 137 reflection profiles on image 146
Modelled 114 / 119 reflection profiles on image 147
Modelled 5 / 5 reflection profiles on image 148
Modelled 1 / 2 reflection profiles on image 149
Beginning modelling job 24
Frames: 144 -> 156
Number of reflections
Partial: 3
Full: 790
In ice ring: 0
Total: 793
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
144 [2 ]:
145 [5 ]: *
146 [21 ]: *****
147 [153]: **************************************
148 [268]: ********************************************************************
149 [262]: ******************************************************************
150 [268]: ********************************************************************
151 [257]: *****************************************************************
152 [238]: ************************************************************
153 [108]: ***************************
154 [8 ]: **
155 [2 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00126175 GB
Modelled 29 / 30 reflection profiles on image 147
Modelled 121 / 125 reflection profiles on image 148
Modelled 123 / 134 reflection profiles on image 149
Modelled 134 / 137 reflection profiles on image 150
Modelled 126 / 129 reflection profiles on image 151
Modelled 126 / 130 reflection profiles on image 152
Modelled 96 / 100 reflection profiles on image 153
Modelled 6 / 6 reflection profiles on image 154
Modelled 1 / 2 reflection profiles on image 155
Beginning modelling job 25
Frames: 150 -> 162
Number of reflections
Partial: 1
Full: 815
In ice ring: 0
Total: 816
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
151 [6 ]: *
152 [25 ]: *****
153 [152]: **********************************
154 [278]: **************************************************************
155 [301]: ********************************************************************
156 [277]: **************************************************************
157 [279]: ***************************************************************
158 [236]: *****************************************************
159 [111]: *************************
160 [8 ]: *
161 [1 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00149078 GB
Modelled 24 / 25 reflection profiles on image 153
Modelled 113 / 120 reflection profiles on image 154
Modelled 149 / 155 reflection profiles on image 155
Modelled 137 / 138 reflection profiles on image 156
Modelled 136 / 142 reflection profiles on image 157
Modelled 121 / 125 reflection profiles on image 158
Modelled 98 / 103 reflection profiles on image 159
Modelled 7 / 7 reflection profiles on image 160
Modelled 0 / 1 reflection profiles on image 161
Beginning modelling job 26
Frames: 156 -> 168
Number of reflections
Partial: 2
Full: 780
In ice ring: 0
Total: 782
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
157 [1 ]:
158 [16 ]: ***
159 [137]: *********************************
160 [247]: ************************************************************
161 [244]: ***********************************************************
162 [279]: ********************************************************************
163 [264]: ****************************************************************
164 [248]: ************************************************************
165 [117]: ****************************
166 [3 ]:
167 [1 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00132269 GB
Modelled 21 / 21 reflection profiles on image 159
Modelled 127 / 130 reflection profiles on image 160
Modelled 106 / 111 reflection profiles on image 161
Modelled 134 / 142 reflection profiles on image 162
Modelled 124 / 130 reflection profiles on image 163
Modelled 126 / 131 reflection profiles on image 164
Modelled 109 / 114 reflection profiles on image 165
Modelled 2 / 2 reflection profiles on image 166
Modelled 0 / 1 reflection profiles on image 167
Beginning modelling job 27
Frames: 162 -> 174
Number of reflections
Partial: 5
Full: 778
In ice ring: 0
Total: 783
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
163 [4 ]:
164 [24 ]: *****
165 [150]: *************************************
166 [262]: *****************************************************************
167 [273]: ********************************************************************
168 [246]: *************************************************************
169 [231]: *********************************************************
170 [253]: ***************************************************************
171 [129]: ********************************
172 [12 ]: **
173 [4 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00128423 GB
Modelled 26 / 27 reflection profiles on image 165
Modelled 119 / 124 reflection profiles on image 166
Modelled 139 / 146 reflection profiles on image 167
Modelled 115 / 123 reflection profiles on image 168
Modelled 106 / 110 reflection profiles on image 169
Modelled 113 / 124 reflection profiles on image 170
Modelled 114 / 117 reflection profiles on image 171
Modelled 8 / 8 reflection profiles on image 172
Modelled 3 / 4 reflection profiles on image 173
Beginning modelling job 28
Frames: 168 -> 180
Number of reflections
Partial: 2
Full: 777
In ice ring: 0
Total: 779
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
168 [2 ]:
169 [6 ]: *
170 [31 ]: *******
171 [167]: *****************************************
172 [263]: *****************************************************************
173 [256]: ***************************************************************
174 [275]: ********************************************************************
175 [258]: ***************************************************************
176 [221]: ******************************************************
177 [108]: **************************
178 [10 ]: **
179 [1 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00130289 GB
Modelled 21 / 25 reflection profiles on image 171
Modelled 130 / 132 reflection profiles on image 172
Modelled 122 / 130 reflection profiles on image 173
Modelled 124 / 129 reflection profiles on image 174
Modelled 135 / 142 reflection profiles on image 175
Modelled 108 / 113 reflection profiles on image 176
Modelled 95 / 98 reflection profiles on image 177
Modelled 9 / 9 reflection profiles on image 178
Modelled 1 / 1 reflection profiles on image 179
Beginning modelling job 29
Frames: 174 -> 186
Number of reflections
Partial: 2
Full: 757
In ice ring: 0
Total: 759
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
175 [3 ]:
176 [32 ]: ********
177 [152]: ***************************************
178 [265]: ********************************************************************
179 [250]: ****************************************************************
180 [253]: ****************************************************************
181 [256]: *****************************************************************
182 [228]: **********************************************************
183 [108]: ***************************
184 [9 ]: **
185 [4 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0012525 GB
Modelled 19 / 20 reflection profiles on image 177
Modelled 130 / 131 reflection profiles on image 178
Modelled 129 / 139 reflection profiles on image 179
Modelled 105 / 111 reflection profiles on image 180
Modelled 120 / 130 reflection profiles on image 181
Modelled 116 / 120 reflection profiles on image 182
Modelled 95 / 99 reflection profiles on image 183
Modelled 5 / 5 reflection profiles on image 184
Modelled 2 / 4 reflection profiles on image 185
Beginning modelling job 30
Frames: 180 -> 192
Number of reflections
Partial: 7
Full: 714
In ice ring: 0
Total: 721
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
181 [4 ]: *
182 [20 ]: *****
183 [138]: ************************************
184 [243]: ****************************************************************
185 [255]: ********************************************************************
186 [241]: ****************************************************************
187 [252]: *******************************************************************
188 [225]: ************************************************************
189 [98 ]: **************************
190 [9 ]: **
191 [4 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00121547 GB
Modelled 17 / 20 reflection profiles on image 183
Modelled 107 / 111 reflection profiles on image 184
Modelled 115 / 129 reflection profiles on image 185
Modelled 108 / 115 reflection profiles on image 186
Modelled 115 / 121 reflection profiles on image 187
Modelled 120 / 127 reflection profiles on image 188
Modelled 84 / 89 reflection profiles on image 189
Modelled 5 / 5 reflection profiles on image 190
Modelled 1 / 4 reflection profiles on image 191
Beginning modelling job 31
Frames: 186 -> 198
Number of reflections
Partial: 3
Full: 751
In ice ring: 0
Total: 754
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
186 [3 ]:
187 [4 ]:
188 [25 ]: ******
189 [157]: **************************************
190 [238]: **********************************************************
191 [240]: ***********************************************************
192 [276]: ********************************************************************
193 [264]: *****************************************************************
194 [254]: **************************************************************
195 [104]: *************************
196 [4 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00134334 GB
Modelled 27 / 27 reflection profiles on image 189
Modelled 112 / 119 reflection profiles on image 190
Modelled 93 / 97 reflection profiles on image 191
Modelled 126 / 132 reflection profiles on image 192
Modelled 120 / 125 reflection profiles on image 193
Modelled 144 / 150 reflection profiles on image 194
Modelled 93 / 100 reflection profiles on image 195
Modelled 3 / 4 reflection profiles on image 196
Beginning modelling job 32
Frames: 192 -> 204
Number of reflections
Partial: 2
Full: 713
In ice ring: 0
Total: 715
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
192 [1 ]:
193 [3 ]:
194 [23 ]: *****
195 [145]: ************************************
196 [244]: *************************************************************
197 [233]: **********************************************************
198 [245]: *************************************************************
199 [269]: ********************************************************************
200 [218]: *******************************************************
201 [92 ]: ***********************
202 [9 ]: **
203 [2 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0013554 GB
Modelled 19 / 19 reflection profiles on image 195
Modelled 126 / 129 reflection profiles on image 196
Modelled 111 / 114 reflection profiles on image 197
Modelled 96 / 99 reflection profiles on image 198
Modelled 128 / 136 reflection profiles on image 199
Modelled 119 / 126 reflection profiles on image 200
Modelled 80 / 83 reflection profiles on image 201
Modelled 7 / 7 reflection profiles on image 202
Modelled 1 / 2 reflection profiles on image 203
Beginning modelling job 33
Frames: 198 -> 210
Number of reflections
Partial: 3
Full: 690
In ice ring: 0
Total: 693
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
198 [3 ]:
199 [9 ]: **
200 [29 ]: *******
201 [157]: ******************************************
202 [249]: *******************************************************************
203 [220]: ***********************************************************
204 [230]: **************************************************************
205 [252]: ********************************************************************
206 [213]: *********************************************************
207 [93 ]: *************************
208 [5 ]: *
209 [2 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00124421 GB
Modelled 16 / 17 reflection profiles on image 201
Modelled 123 / 129 reflection profiles on image 202
Modelled 104 / 109 reflection profiles on image 203
Modelled 93 / 96 reflection profiles on image 204
Modelled 126 / 129 reflection profiles on image 205
Modelled 116 / 120 reflection profiles on image 206
Modelled 87 / 88 reflection profiles on image 207
Modelled 2 / 3 reflection profiles on image 208
Modelled 1 / 2 reflection profiles on image 209
Beginning modelling job 34
Frames: 204 -> 216
Number of reflections
Partial: 3
Full: 707
In ice ring: 0
Total: 710
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
204 [1 ]:
205 [1 ]:
206 [22 ]: *****
207 [153]: *************************************
208 [277]: ********************************************************************
209 [261]: ****************************************************************
210 [238]: **********************************************************
211 [231]: ********************************************************
212 [201]: *************************************************
213 [79 ]: *******************
214 [10 ]: **
215 [3 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00130315 GB
Modelled 23 / 23 reflection profiles on image 207
Modelled 124 / 126 reflection profiles on image 208
Modelled 124 / 131 reflection profiles on image 209
Modelled 115 / 121 reflection profiles on image 210
Modelled 103 / 108 reflection profiles on image 211
Modelled 114 / 122 reflection profiles on image 212
Modelled 66 / 69 reflection profiles on image 213
Modelled 7 / 7 reflection profiles on image 214
Modelled 2 / 3 reflection profiles on image 215
Beginning modelling job 35
Frames: 210 -> 222
Number of reflections
Partial: 7
Full: 697
In ice ring: 0
Total: 704
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
211 [2 ]:
212 [19 ]: *****
213 [142]: **************************************
214 [244]: ******************************************************************
215 [227]: **************************************************************
216 [233]: ***************************************************************
217 [243]: ******************************************************************
218 [248]: ********************************************************************
219 [122]: *********************************
220 [15 ]: ****
221 [7 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00126821 GB
Modelled 15 / 16 reflection profiles on image 213
Modelled 110 / 113 reflection profiles on image 214
Modelled 109 / 120 reflection profiles on image 215
Modelled 97 / 100 reflection profiles on image 216
Modelled 101 / 107 reflection profiles on image 217
Modelled 120 / 126 reflection profiles on image 218
Modelled 105 / 107 reflection profiles on image 219
Modelled 8 / 8 reflection profiles on image 220
Modelled 4 / 7 reflection profiles on image 221
Beginning modelling job 36
Frames: 216 -> 228
Number of reflections
Partial: 7
Full: 700
In ice ring: 0
Total: 707
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
217 [7 ]: *
218 [31 ]: ********
219 [143]: ************************************
220 [263]: ********************************************************************
221 [249]: ****************************************************************
222 [237]: *************************************************************
223 [232]: ***********************************************************
224 [217]: ********************************************************
225 [99 ]: *************************
226 [7 ]: *
227 [5 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00126271 GB
Modelled 13 / 13 reflection profiles on image 219
Modelled 121 / 128 reflection profiles on image 220
Modelled 110 / 121 reflection profiles on image 221
Modelled 114 / 123 reflection profiles on image 222
Modelled 101 / 105 reflection profiles on image 223
Modelled 113 / 118 reflection profiles on image 224
Modelled 87 / 92 reflection profiles on image 225
Modelled 2 / 2 reflection profiles on image 226
Modelled 3 / 5 reflection profiles on image 227
Beginning modelling job 37
Frames: 222 -> 234
Number of reflections
Partial: 2
Full: 722
In ice ring: 0
Total: 724
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
222 [2 ]:
223 [2 ]:
224 [21 ]: *****
225 [154]: ***************************************
226 [267]: ********************************************************************
227 [264]: *******************************************************************
228 [243]: *************************************************************
229 [235]: ***********************************************************
230 [214]: ******************************************************
231 [93 ]: ***********************
232 [6 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00134908 GB
Modelled 21 / 24 reflection profiles on image 225
Modelled 113 / 120 reflection profiles on image 226
Modelled 122 / 130 reflection profiles on image 227
Modelled 115 / 120 reflection profiles on image 228
Modelled 115 / 116 reflection profiles on image 229
Modelled 120 / 121 reflection profiles on image 230
Modelled 83 / 87 reflection profiles on image 231
Modelled 5 / 6 reflection profiles on image 232
Beginning modelling job 38
Frames: 228 -> 240
Number of reflections
Partial: 4
Full: 691
In ice ring: 0
Total: 695
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
229 [6 ]: *
230 [32 ]: *********
231 [136]: ***************************************
232 [235]: *******************************************************************
233 [230]: *****************************************************************
234 [235]: *******************************************************************
235 [237]: ********************************************************************
236 [220]: ***************************************************************
237 [111]: *******************************
238 [8 ]: **
239 [4 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00114956 GB
Modelled 21 / 21 reflection profiles on image 231
Modelled 106 / 113 reflection profiles on image 232
Modelled 96 / 108 reflection profiles on image 233
Modelled 104 / 111 reflection profiles on image 234
Modelled 113 / 122 reflection profiles on image 235
Modelled 103 / 109 reflection profiles on image 236
Modelled 102 / 103 reflection profiles on image 237
Modelled 4 / 4 reflection profiles on image 238
Modelled 2 / 4 reflection profiles on image 239
Beginning modelling job 39
Frames: 234 -> 246
Number of reflections
Partial: 10
Full: 717
In ice ring: 0
Total: 727
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
234 [1 ]:
235 [3 ]:
236 [26 ]: ******
237 [139]: *************************************
238 [247]: *****************************************************************
239 [247]: *****************************************************************
240 [255]: ********************************************************************
241 [243]: ****************************************************************
242 [226]: ************************************************************
243 [111]: *****************************
244 [11 ]: **
245 [6 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00124768 GB
Modelled 17 / 18 reflection profiles on image 237
Modelled 108 / 111 reflection profiles on image 238
Modelled 114 / 124 reflection profiles on image 239
Modelled 129 / 134 reflection profiles on image 240
Modelled 113 / 114 reflection profiles on image 241
Modelled 107 / 115 reflection profiles on image 242
Modelled 95 / 100 reflection profiles on image 243
Modelled 5 / 5 reflection profiles on image 244
Modelled 2 / 6 reflection profiles on image 245
Beginning modelling job 40
Frames: 240 -> 252
Number of reflections
Partial: 8
Full: 739
In ice ring: 0
Total: 747
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
240 [1 ]:
241 [5 ]: *
242 [21 ]: *****
243 [129]: *********************************
244 [222]: **********************************************************
245 [243]: ***************************************************************
246 [247]: ****************************************************************
247 [257]: *******************************************************************
248 [260]: ********************************************************************
249 [118]: ******************************
250 [13 ]: ***
251 [3 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00126557 GB
Modelled 25 / 25 reflection profiles on image 243
Modelled 98 / 99 reflection profiles on image 244
Modelled 111 / 118 reflection profiles on image 245
Modelled 107 / 117 reflection profiles on image 246
Modelled 125 / 128 reflection profiles on image 247
Modelled 133 / 142 reflection profiles on image 248
Modelled 100 / 105 reflection profiles on image 249
Modelled 9 / 10 reflection profiles on image 250
Modelled 1 / 3 reflection profiles on image 251
Beginning modelling job 41
Frames: 246 -> 258
Number of reflections
Partial: 6
Full: 684
In ice ring: 0
Total: 690
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
247 [1 ]:
248 [17 ]: ****
249 [126]: ************************************
250 [234]: *******************************************************************
251 [232]: ******************************************************************
252 [236]: ********************************************************************
253 [231]: ******************************************************************
254 [206]: ***********************************************************
255 [102]: *****************************
256 [8 ]: **
257 [4 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00116546 GB
Modelled 17 / 17 reflection profiles on image 249
Modelled 110 / 112 reflection profiles on image 250
Modelled 118 / 121 reflection profiles on image 251
Modelled 100 / 104 reflection profiles on image 252
Modelled 125 / 130 reflection profiles on image 253
Modelled 98 / 104 reflection profiles on image 254
Modelled 91 / 94 reflection profiles on image 255
Modelled 4 / 4 reflection profiles on image 256
Modelled 2 / 4 reflection profiles on image 257
Beginning modelling job 42
Frames: 252 -> 264
Number of reflections
Partial: 6
Full: 740
In ice ring: 0
Total: 746
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
253 [4 ]: *
254 [27 ]: ******
255 [162]: ****************************************
256 [271]: ********************************************************************
257 [257]: ****************************************************************
258 [251]: **************************************************************
259 [244]: *************************************************************
260 [209]: ****************************************************
261 [99 ]: ************************
262 [7 ]: *
263 [2 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00133884 GB
Modelled 21 / 21 reflection profiles on image 255
Modelled 119 / 123 reflection profiles on image 256
Modelled 126 / 133 reflection profiles on image 257
Modelled 114 / 118 reflection profiles on image 258
Modelled 137 / 142 reflection profiles on image 259
Modelled 104 / 110 reflection profiles on image 260
Modelled 89 / 92 reflection profiles on image 261
Modelled 5 / 5 reflection profiles on image 262
Modelled 0 / 2 reflection profiles on image 263
Beginning modelling job 43
Frames: 258 -> 270
Number of reflections
Partial: 6
Full: 737
In ice ring: 0
Total: 743
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
259 [4 ]: *
260 [15 ]: ***
261 [127]: ********************************
262 [232]: ***********************************************************
263 [239]: *************************************************************
264 [226]: *********************************************************
265 [256]: *****************************************************************
266 [266]: ********************************************************************
267 [128]: ********************************
268 [11 ]: **
269 [3 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00124657 GB
Modelled 23 / 25 reflection profiles on image 261
Modelled 108 / 109 reflection profiles on image 262
Modelled 110 / 121 reflection profiles on image 263
Modelled 97 / 107 reflection profiles on image 264
Modelled 108 / 115 reflection profiles on image 265
Modelled 134 / 138 reflection profiles on image 266
Modelled 109 / 117 reflection profiles on image 267
Modelled 8 / 8 reflection profiles on image 268
Modelled 1 / 3 reflection profiles on image 269
Beginning modelling job 44
Frames: 264 -> 276
Number of reflections
Partial: 6
Full: 739
In ice ring: 0
Total: 745
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
264 [1 ]:
265 [6 ]: *
266 [32 ]: ********
267 [150]: **************************************
268 [236]: ************************************************************
269 [264]: ********************************************************************
270 [264]: ********************************************************************
271 [253]: *****************************************************************
272 [207]: *****************************************************
273 [104]: **************************
274 [10 ]: **
275 [4 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0013247 GB
Modelled 25 / 26 reflection profiles on image 267
Modelled 110 / 112 reflection profiles on image 268
Modelled 129 / 133 reflection profiles on image 269
Modelled 123 / 127 reflection profiles on image 270
Modelled 137 / 140 reflection profiles on image 271
Modelled 96 / 103 reflection profiles on image 272
Modelled 87 / 94 reflection profiles on image 273
Modelled 5 / 6 reflection profiles on image 274
Modelled 3 / 4 reflection profiles on image 275
Beginning modelling job 45
Frames: 270 -> 282
Number of reflections
Partial: 2
Full: 768
In ice ring: 0
Total: 770
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
271 [1 ]:
272 [22 ]: *****
273 [157]: ******************************************
274 [249]: *******************************************************************
275 [252]: ********************************************************************
276 [241]: *****************************************************************
277 [242]: *****************************************************************
278 [250]: *******************************************************************
279 [121]: ********************************
280 [10 ]: **
281 [2 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00124549 GB
Modelled 36 / 38 reflection profiles on image 273
Modelled 126 / 130 reflection profiles on image 274
Modelled 123 / 127 reflection profiles on image 275
Modelled 111 / 115 reflection profiles on image 276
Modelled 107 / 110 reflection profiles on image 277
Modelled 122 / 129 reflection profiles on image 278
Modelled 109 / 111 reflection profiles on image 279
Modelled 8 / 8 reflection profiles on image 280
Modelled 2 / 2 reflection profiles on image 281
Beginning modelling job 46
Frames: 276 -> 288
Number of reflections
Partial: 4
Full: 719
In ice ring: 0
Total: 723
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
276 [1 ]:
277 [3 ]:
278 [22 ]: ******
279 [150]: ****************************************
280 [230]: **************************************************************
281 [219]: ***********************************************************
282 [236]: ****************************************************************
283 [249]: ********************************************************************
284 [249]: ********************************************************************
285 [119]: ********************************
286 [9 ]: **
287 [2 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00124046 GB
Modelled 29 / 29 reflection profiles on image 279
Modelled 118 / 123 reflection profiles on image 280
Modelled 98 / 105 reflection profiles on image 281
Modelled 105 / 109 reflection profiles on image 282
Modelled 107 / 108 reflection profiles on image 283
Modelled 128 / 130 reflection profiles on image 284
Modelled 104 / 110 reflection profiles on image 285
Modelled 6 / 7 reflection profiles on image 286
Modelled 0 / 2 reflection profiles on image 287
Beginning modelling job 47
Frames: 282 -> 294
Number of reflections
Partial: 2
Full: 734
In ice ring: 0
Total: 736
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
284 [14 ]: ***
285 [122]: *******************************
286 [213]: ******************************************************
287 [207]: ****************************************************
288 [232]: ***********************************************************
289 [266]: ********************************************************************
290 [253]: ****************************************************************
291 [119]: ******************************
292 [8 ]: **
293 [1 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00125904 GB
Modelled 23 / 23 reflection profiles on image 285
Modelled 110 / 116 reflection profiles on image 286
Modelled 101 / 106 reflection profiles on image 287
Modelled 100 / 104 reflection profiles on image 288
Modelled 131 / 134 reflection profiles on image 289
Modelled 130 / 134 reflection profiles on image 290
Modelled 104 / 111 reflection profiles on image 291
Modelled 6 / 7 reflection profiles on image 292
Modelled 0 / 1 reflection profiles on image 293
Beginning modelling job 48
Frames: 288 -> 300
Number of reflections
Partial: 0
Full: 739
In ice ring: 0
Total: 739
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
289 [3 ]:
290 [24 ]: ******
291 [140]: ************************************
292 [251]: ****************************************************************
293 [263]: ********************************************************************
294 [238]: *************************************************************
295 [239]: *************************************************************
296 [227]: **********************************************************
297 [99 ]: *************************
298 [4 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00128512 GB
Modelled 16 / 17 reflection profiles on image 291
Modelled 110 / 115 reflection profiles on image 292
Modelled 126 / 132 reflection profiles on image 293
Modelled 123 / 128 reflection profiles on image 294
Modelled 117 / 120 reflection profiles on image 295
Modelled 122 / 128 reflection profiles on image 296
Modelled 91 / 95 reflection profiles on image 297
Modelled 4 / 4 reflection profiles on image 298
Beginning modelling job 49
Frames: 294 -> 306
Number of reflections
Partial: 2
Full: 750
In ice ring: 0
Total: 752
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
295 [3 ]:
296 [18 ]: ****
297 [152]: **************************************
298 [247]: **************************************************************
299 [267]: ********************************************************************
300 [263]: ******************************************************************
301 [247]: **************************************************************
302 [227]: *********************************************************
303 [100]: *************************
304 [8 ]: **
305 [1 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00131426 GB
Modelled 26 / 27 reflection profiles on image 297
Modelled 118 / 124 reflection profiles on image 298
Modelled 110 / 117 reflection profiles on image 299
Modelled 137 / 139 reflection profiles on image 300
Modelled 115 / 118 reflection profiles on image 301
Modelled 122 / 127 reflection profiles on image 302
Modelled 91 / 92 reflection profiles on image 303
Modelled 7 / 7 reflection profiles on image 304
Modelled 0 / 1 reflection profiles on image 305
Beginning modelling job 50
Frames: 300 -> 312
Number of reflections
Partial: 3
Full: 750
In ice ring: 0
Total: 753
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
301 [4 ]:
302 [16 ]: ***
303 [143]: ***********************************
304 [240]: ***********************************************************
305 [241]: ***********************************************************
306 [258]: ***************************************************************
307 [276]: ********************************************************************
308 [237]: **********************************************************
309 [96 ]: ***********************
310 [4 ]:
311 [2 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00127458 GB
Modelled 20 / 23 reflection profiles on image 303
Modelled 109 / 112 reflection profiles on image 304
Modelled 121 / 125 reflection profiles on image 305
Modelled 116 / 122 reflection profiles on image 306
Modelled 130 / 134 reflection profiles on image 307
Modelled 135 / 141 reflection profiles on image 308
Modelled 91 / 92 reflection profiles on image 309
Modelled 1 / 2 reflection profiles on image 310
Modelled 1 / 2 reflection profiles on image 311
Beginning modelling job 51
Frames: 306 -> 318
Number of reflections
Partial: 3
Full: 727
In ice ring: 0
Total: 730
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
307 [1 ]:
308 [19 ]: ****
309 [135]: **********************************
310 [238]: ************************************************************
311 [267]: ********************************************************************
312 [264]: *******************************************************************
313 [246]: **************************************************************
314 [212]: *****************************************************
315 [94 ]: ***********************
316 [10 ]: **
317 [2 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0012889 GB
Modelled 20 / 20 reflection profiles on image 309
Modelled 117 / 118 reflection profiles on image 310
Modelled 121 / 127 reflection profiles on image 311
Modelled 130 / 132 reflection profiles on image 312
Modelled 114 / 121 reflection profiles on image 313
Modelled 113 / 118 reflection profiles on image 314
Modelled 78 / 84 reflection profiles on image 315
Modelled 8 / 8 reflection profiles on image 316
Modelled 1 / 2 reflection profiles on image 317
Beginning modelling job 52
Frames: 312 -> 324
Number of reflections
Partial: 1
Full: 738
In ice ring: 0
Total: 739
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
313 [4 ]: *
314 [33 ]: ********
315 [131]: **********************************
316 [249]: ******************************************************************
317 [248]: ******************************************************************
318 [255]: ********************************************************************
319 [239]: ***************************************************************
320 [217]: *********************************************************
321 [104]: ***************************
322 [6 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00117091 GB
Modelled 14 / 14 reflection profiles on image 315
Modelled 121 / 122 reflection profiles on image 316
Modelled 120 / 125 reflection profiles on image 317
Modelled 127 / 135 reflection profiles on image 318
Modelled 121 / 126 reflection profiles on image 319
Modelled 111 / 113 reflection profiles on image 320
Modelled 96 / 98 reflection profiles on image 321
Modelled 6 / 6 reflection profiles on image 322
Beginning modelling job 53
Frames: 318 -> 330
Number of reflections
Partial: 2
Full: 807
In ice ring: 0
Total: 809
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
318 [1 ]:
319 [4 ]:
320 [14 ]: ***
321 [135]: *******************************
322 [257]: ***********************************************************
323 [276]: ***************************************************************
324 [295]: ********************************************************************
325 [278]: ****************************************************************
326 [251]: *********************************************************
327 [121]: ***************************
328 [10 ]: **
329 [4 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00142732 GB
Modelled 17 / 18 reflection profiles on image 321
Modelled 112 / 124 reflection profiles on image 322
Modelled 113 / 123 reflection profiles on image 323
Modelled 151 / 154 reflection profiles on image 324
Modelled 133 / 139 reflection profiles on image 325
Modelled 122 / 130 reflection profiles on image 326
Modelled 107 / 111 reflection profiles on image 327
Modelled 6 / 6 reflection profiles on image 328
Modelled 2 / 4 reflection profiles on image 329
Beginning modelling job 54
Frames: 324 -> 336
Number of reflections
Partial: 1
Full: 761
In ice ring: 0
Total: 762
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
324 [2 ]:
325 [5 ]: *
326 [23 ]: *****
327 [152]: ***************************************
328 [249]: ***************************************************************
329 [265]: ********************************************************************
330 [247]: ***************************************************************
331 [240]: *************************************************************
332 [229]: **********************************************************
333 [118]: ******************************
334 [7 ]: *
335 [2 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00129104 GB
Modelled 28 / 28 reflection profiles on image 327
Modelled 105 / 112 reflection profiles on image 328
Modelled 131 / 134 reflection profiles on image 329
Modelled 119 / 129 reflection profiles on image 330
Modelled 122 / 130 reflection profiles on image 331
Modelled 106 / 111 reflection profiles on image 332
Modelled 108 / 111 reflection profiles on image 333
Modelled 5 / 5 reflection profiles on image 334
Modelled 2 / 2 reflection profiles on image 335
Beginning modelling job 55
Frames: 330 -> 342
Number of reflections
Partial: 4
Full: 763
In ice ring: 0
Total: 767
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
330 [1 ]:
331 [2 ]:
332 [19 ]: ****
333 [150]: ***************************************
334 [216]: ********************************************************
335 [243]: ***************************************************************
336 [260]: ********************************************************************
337 [254]: ******************************************************************
338 [251]: *****************************************************************
339 [127]: *********************************
340 [8 ]: **
341 [2 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0012191 GB
Modelled 32 / 34 reflection profiles on image 333
Modelled 104 / 108 reflection profiles on image 334
Modelled 102 / 110 reflection profiles on image 335
Modelled 130 / 135 reflection profiles on image 336
Modelled 124 / 129 reflection profiles on image 337
Modelled 122 / 124 reflection profiles on image 338
Modelled 114 / 119 reflection profiles on image 339
Modelled 6 / 6 reflection profiles on image 340
Modelled 0 / 2 reflection profiles on image 341
Beginning modelling job 56
Frames: 336 -> 348
Number of reflections
Partial: 4
Full: 773
In ice ring: 0
Total: 777
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
336 [1 ]:
337 [2 ]:
338 [18 ]: ****
339 [160]: ****************************************
340 [258]: *****************************************************************
341 [267]: ********************************************************************
342 [254]: ****************************************************************
343 [236]: ************************************************************
344 [224]: *********************************************************
345 [97 ]: ************************
346 [6 ]: *
347 [4 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00131825 GB
Modelled 32 / 33 reflection profiles on image 339
Modelled 116 / 124 reflection profiles on image 340
Modelled 129 / 138 reflection profiles on image 341
Modelled 127 / 133 reflection profiles on image 342
Modelled 119 / 125 reflection profiles on image 343
Modelled 117 / 127 reflection profiles on image 344
Modelled 87 / 91 reflection profiles on image 345
Modelled 2 / 2 reflection profiles on image 346
Modelled 3 / 4 reflection profiles on image 347
Beginning modelling job 57
Frames: 342 -> 354
Number of reflections
Partial: 3
Full: 779
In ice ring: 0
Total: 782
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
343 [2 ]:
344 [16 ]: ****
345 [124]: ********************************
346 [261]: *******************************************************************
347 [261]: *******************************************************************
348 [262]: ********************************************************************
349 [253]: *****************************************************************
350 [240]: **************************************************************
351 [115]: *****************************
352 [9 ]: **
353 [1 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0012367 GB
Modelled 13 / 14 reflection profiles on image 345
Modelled 121 / 123 reflection profiles on image 346
Modelled 137 / 142 reflection profiles on image 347
Modelled 127 / 131 reflection profiles on image 348
Modelled 130 / 132 reflection profiles on image 349
Modelled 124 / 125 reflection profiles on image 350
Modelled 101 / 106 reflection profiles on image 351
Modelled 6 / 8 reflection profiles on image 352
Modelled 0 / 1 reflection profiles on image 353
Beginning modelling job 58
Frames: 348 -> 360
Number of reflections
Partial: 1
Full: 762
In ice ring: 0
Total: 763
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
348 [1 ]:
349 [4 ]: *
350 [16 ]: ****
351 [134]: ***********************************
352 [236]: **************************************************************
353 [252]: ******************************************************************
354 [253]: ******************************************************************
355 [257]: ********************************************************************
356 [247]: *****************************************************************
357 [107]: ****************************
358 [5 ]: *
359 [1 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00126546 GB
Modelled 18 / 19 reflection profiles on image 351
Modelled 114 / 117 reflection profiles on image 352
Modelled 116 / 117 reflection profiles on image 353
Modelled 126 / 132 reflection profiles on image 354
Modelled 125 / 131 reflection profiles on image 355
Modelled 138 / 140 reflection profiles on image 356
Modelled 98 / 102 reflection profiles on image 357
Modelled 4 / 4 reflection profiles on image 358
Modelled 1 / 1 reflection profiles on image 359
Beginning modelling job 59
Frames: 354 -> 366
Number of reflections
Partial: 2
Full: 810
In ice ring: 0
Total: 812
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
354 [1 ]:
355 [3 ]:
356 [18 ]: ****
357 [153]: **********************************
358 [244]: ******************************************************
359 [277]: **************************************************************
360 [302]: ********************************************************************
361 [261]: **********************************************************
362 [244]: ******************************************************
363 [112]: *************************
364 [12 ]: **
365 [2 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00142999 GB
Modelled 35 / 37 reflection profiles on image 357
Modelled 108 / 109 reflection profiles on image 358
Modelled 133 / 137 reflection profiles on image 359
Modelled 146 / 155 reflection profiles on image 360
Modelled 122 / 130 reflection profiles on image 361
Modelled 128 / 132 reflection profiles on image 362
Modelled 97 / 100 reflection profiles on image 363
Modelled 9 / 10 reflection profiles on image 364
Modelled 1 / 2 reflection profiles on image 365
Beginning modelling job 60
Frames: 360 -> 372
Number of reflections
Partial: 7
Full: 804
In ice ring: 0
Total: 811
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
361 [2 ]:
362 [20 ]: ****
363 [142]: *******************************
364 [250]: ********************************************************
365 [255]: *********************************************************
366 [269]: ************************************************************
367 [303]: ********************************************************************
368 [250]: ********************************************************
369 [117]: **************************
370 [9 ]: **
371 [4 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00143117 GB
Modelled 22 / 23 reflection profiles on image 363
Modelled 129 / 130 reflection profiles on image 364
Modelled 128 / 134 reflection profiles on image 365
Modelled 113 / 118 reflection profiles on image 366
Modelled 154 / 156 reflection profiles on image 367
Modelled 133 / 133 reflection profiles on image 368
Modelled 102 / 108 reflection profiles on image 369
Modelled 5 / 5 reflection profiles on image 370
Modelled 1 / 4 reflection profiles on image 371
Beginning modelling job 61
Frames: 366 -> 378
Number of reflections
Partial: 5
Full: 755
In ice ring: 0
Total: 760
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
367 [4 ]: *
368 [18 ]: ****
369 [138]: ***********************************
370 [227]: *********************************************************
371 [240]: ************************************************************
372 [268]: ********************************************************************
373 [256]: ****************************************************************
374 [239]: ************************************************************
375 [114]: ****************************
376 [7 ]: *
377 [2 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00123952 GB
Modelled 24 / 24 reflection profiles on image 369
Modelled 123 / 127 reflection profiles on image 370
Modelled 97 / 102 reflection profiles on image 371
Modelled 140 / 143 reflection profiles on image 372
Modelled 121 / 125 reflection profiles on image 373
Modelled 122 / 125 reflection profiles on image 374
Modelled 104 / 107 reflection profiles on image 375
Modelled 5 / 5 reflection profiles on image 376
Modelled 0 / 2 reflection profiles on image 377
Beginning modelling job 62
Frames: 372 -> 384
Number of reflections
Partial: 1
Full: 747
In ice ring: 0
Total: 748
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
372 [1 ]:
373 [3 ]:
374 [23 ]: ******
375 [137]: ************************************
376 [240]: ***************************************************************
377 [250]: ******************************************************************
378 [244]: ****************************************************************
379 [256]: ********************************************************************
380 [234]: **************************************************************
381 [100]: **************************
382 [7 ]: *
383 [2 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0012244 GB
Modelled 18 / 19 reflection profiles on image 375
Modelled 107 / 113 reflection profiles on image 376
Modelled 127 / 130 reflection profiles on image 377
Modelled 115 / 120 reflection profiles on image 378
Modelled 128 / 132 reflection profiles on image 379
Modelled 129 / 134 reflection profiles on image 380
Modelled 93 / 93 reflection profiles on image 381
Modelled 5 / 5 reflection profiles on image 382
Modelled 2 / 2 reflection profiles on image 383
Beginning modelling job 63
Frames: 378 -> 390
Number of reflections
Partial: 4
Full: 766
In ice ring: 0
Total: 770
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
378 [2 ]:
379 [5 ]: *
380 [28 ]: *******
381 [165]: *******************************************
382 [238]: **************************************************************
383 [241]: ***************************************************************
384 [260]: ********************************************************************
385 [256]: ******************************************************************
386 [239]: **************************************************************
387 [109]: ****************************
388 [10 ]: **
389 [5 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0012973 GB
Modelled 34 / 35 reflection profiles on image 381
Modelled 119 / 122 reflection profiles on image 382
Modelled 107 / 111 reflection profiles on image 383
Modelled 132 / 134 reflection profiles on image 384
Modelled 127 / 129 reflection profiles on image 385
Modelled 127 / 130 reflection profiles on image 386
Modelled 98 / 99 reflection profiles on image 387
Modelled 4 / 5 reflection profiles on image 388
Modelled 3 / 5 reflection profiles on image 389
Beginning modelling job 64
Frames: 384 -> 396
Number of reflections
Partial: 2
Full: 792
In ice ring: 0
Total: 794
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
384 [1 ]:
385 [3 ]:
386 [16 ]: ****
387 [146]: **************************************
388 [256]: *******************************************************************
389 [243]: ****************************************************************
390 [258]: ********************************************************************
391 [253]: ******************************************************************
392 [248]: *****************************************************************
393 [111]: *****************************
394 [3 ]:
395 [1 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0011558 GB
Modelled 21 / 21 reflection profiles on image 387
Modelled 138 / 143 reflection profiles on image 388
Modelled 120 / 123 reflection profiles on image 389
Modelled 130 / 133 reflection profiles on image 390
Modelled 117 / 126 reflection profiles on image 391
Modelled 134 / 137 reflection profiles on image 392
Modelled 105 / 108 reflection profiles on image 393
Modelled 2 / 2 reflection profiles on image 394
Modelled 1 / 1 reflection profiles on image 395
Beginning modelling job 65
Frames: 390 -> 402
Number of reflections
Partial: 0
Full: 760
In ice ring: 0
Total: 760
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
391 [3 ]:
392 [17 ]: ****
393 [138]: ************************************
394 [233]: *************************************************************
395 [237]: **************************************************************
396 [257]: ********************************************************************
397 [236]: **************************************************************
398 [245]: ****************************************************************
399 [126]: *********************************
400 [6 ]: *
401 [1 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0012098 GB
Modelled 24 / 25 reflection profiles on image 393
Modelled 121 / 126 reflection profiles on image 394
Modelled 101 / 106 reflection profiles on image 395
Modelled 127 / 133 reflection profiles on image 396
Modelled 124 / 125 reflection profiles on image 397
Modelled 109 / 119 reflection profiles on image 398
Modelled 114 / 120 reflection profiles on image 399
Modelled 5 / 5 reflection profiles on image 400
Modelled 1 / 1 reflection profiles on image 401
Beginning modelling job 66
Frames: 396 -> 408
Number of reflections
Partial: 0
Full: 786
In ice ring: 0
Total: 786
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
397 [2 ]:
398 [17 ]: ****
399 [136]: ********************************
400 [251]: ************************************************************
401 [250]: ************************************************************
402 [274]: ******************************************************************
403 [281]: ********************************************************************
404 [242]: **********************************************************
405 [100]: ************************
406 [6 ]: *
407 [2 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00130648 GB
Modelled 19 / 19 reflection profiles on image 399
Modelled 130 / 132 reflection profiles on image 400
Modelled 115 / 122 reflection profiles on image 401
Modelled 121 / 124 reflection profiles on image 402
Modelled 140 / 147 reflection profiles on image 403
Modelled 141 / 142 reflection profiles on image 404
Modelled 88 / 94 reflection profiles on image 405
Modelled 4 / 4 reflection profiles on image 406
Modelled 2 / 2 reflection profiles on image 407
Beginning modelling job 67
Frames: 402 -> 414
Number of reflections
Partial: 4
Full: 771
In ice ring: 0
Total: 775
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
403 [4 ]: *
404 [21 ]: *****
405 [158]: *****************************************
406 [258]: ********************************************************************
407 [247]: *****************************************************************
408 [255]: *******************************************************************
409 [253]: ******************************************************************
410 [239]: **************************************************************
411 [112]: *****************************
412 [5 ]: *
413 [2 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00121298 GB
Modelled 24 / 25 reflection profiles on image 405
Modelled 137 / 142 reflection profiles on image 406
Modelled 117 / 124 reflection profiles on image 407
Modelled 119 / 124 reflection profiles on image 408
Modelled 116 / 121 reflection profiles on image 409
Modelled 121 / 127 reflection profiles on image 410
Modelled 105 / 107 reflection profiles on image 411
Modelled 3 / 3 reflection profiles on image 412
Modelled 1 / 2 reflection profiles on image 413
Beginning modelling job 68
Frames: 408 -> 420
Number of reflections
Partial: 2
Full: 774
In ice ring: 0
Total: 776
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
408 [1 ]:
409 [1 ]:
410 [19 ]: ****
411 [164]: ******************************************
412 [255]: *****************************************************************
413 [263]: ********************************************************************
414 [255]: *****************************************************************
415 [235]: ************************************************************
416 [232]: ***********************************************************
417 [108]: ***************************
418 [4 ]: *
419 [1 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00123353 GB
Modelled 23 / 25 reflection profiles on image 411
Modelled 131 / 132 reflection profiles on image 412
Modelled 124 / 127 reflection profiles on image 413
Modelled 138 / 144 reflection profiles on image 414
Modelled 109 / 116 reflection profiles on image 415
Modelled 120 / 124 reflection profiles on image 416
Modelled 103 / 104 reflection profiles on image 417
Modelled 3 / 3 reflection profiles on image 418
Modelled 1 / 1 reflection profiles on image 419
Beginning modelling job 69
Frames: 414 -> 426
Number of reflections
Partial: 2
Full: 714
In ice ring: 0
Total: 716
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
415 [1 ]:
416 [19 ]: *****
417 [147]: ***************************************
418 [255]: ********************************************************************
419 [241]: ****************************************************************
420 [207]: *******************************************************
421 [223]: ***********************************************************
422 [220]: **********************************************************
423 [98 ]: **************************
424 [7 ]: *
425 [2 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00113905 GB
Modelled 20 / 22 reflection profiles on image 417
Modelled 118 / 124 reflection profiles on image 418
Modelled 138 / 142 reflection profiles on image 419
Modelled 105 / 107 reflection profiles on image 420
Modelled 97 / 101 reflection profiles on image 421
Modelled 118 / 122 reflection profiles on image 422
Modelled 88 / 91 reflection profiles on image 423
Modelled 4 / 5 reflection profiles on image 424
Modelled 1 / 2 reflection profiles on image 425
Beginning modelling job 70
Frames: 420 -> 432
Number of reflections
Partial: 1
Full: 751
In ice ring: 0
Total: 752
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
420 [2 ]:
421 [7 ]: *
422 [28 ]: ******
423 [134]: *********************************
424 [259]: ***************************************************************
425 [276]: ********************************************************************
426 [252]: **************************************************************
427 [240]: ***********************************************************
428 [223]: ******************************************************
429 [101]: ************************
430 [6 ]: *
431 [2 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00129266 GB
Modelled 19 / 19 reflection profiles on image 423
Modelled 110 / 112 reflection profiles on image 424
Modelled 133 / 137 reflection profiles on image 425
Modelled 134 / 137 reflection profiles on image 426
Modelled 120 / 124 reflection profiles on image 427
Modelled 114 / 122 reflection profiles on image 428
Modelled 90 / 95 reflection profiles on image 429
Modelled 4 / 4 reflection profiles on image 430
Modelled 2 / 2 reflection profiles on image 431
Beginning modelling job 71
Frames: 426 -> 438
Number of reflections
Partial: 0
Full: 753
In ice ring: 0
Total: 753
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
427 [2 ]:
428 [18 ]: ****
429 [161]: ******************************************
430 [256]: ********************************************************************
431 [223]: ***********************************************************
432 [245]: *****************************************************************
433 [244]: ****************************************************************
434 [238]: ***************************************************************
435 [117]: *******************************
436 [9 ]: **
437 [1 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0011828 GB
Modelled 18 / 18 reflection profiles on image 429
Modelled 130 / 136 reflection profiles on image 430
Modelled 117 / 119 reflection profiles on image 431
Modelled 110 / 111 reflection profiles on image 432
Modelled 126 / 131 reflection profiles on image 433
Modelled 117 / 121 reflection profiles on image 434
Modelled 107 / 108 reflection profiles on image 435
Modelled 8 / 8 reflection profiles on image 436
Modelled 1 / 1 reflection profiles on image 437
Beginning modelling job 72
Frames: 432 -> 444
Number of reflections
Partial: 6
Full: 731
In ice ring: 0
Total: 737
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
432 [1 ]:
433 [1 ]:
434 [20 ]: *****
435 [145]: **************************************
436 [254]: ********************************************************************
437 [253]: *******************************************************************
438 [231]: *************************************************************
439 [229]: *************************************************************
440 [219]: **********************************************************
441 [103]: ***************************
442 [11 ]: **
443 [7 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00117955 GB
Modelled 21 / 21 reflection profiles on image 435
Modelled 126 / 127 reflection profiles on image 436
Modelled 126 / 137 reflection profiles on image 437
Modelled 116 / 119 reflection profiles on image 438
Modelled 106 / 114 reflection profiles on image 439
Modelled 108 / 116 reflection profiles on image 440
Modelled 91 / 92 reflection profiles on image 441
Modelled 4 / 4 reflection profiles on image 442
Modelled 5 / 7 reflection profiles on image 443
Beginning modelling job 73
Frames: 438 -> 450
Number of reflections
Partial: 3
Full: 743
In ice ring: 0
Total: 746
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
438 [1 ]:
439 [2 ]:
440 [12 ]: **
441 [113]: ***************************
442 [241]: ***********************************************************
443 [255]: **************************************************************
444 [276]: ********************************************************************
445 [251]: *************************************************************
446 [222]: ******************************************************
447 [120]: *****************************
448 [6 ]: *
449 [1 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00131896 GB
Modelled 15 / 15 reflection profiles on image 441
Modelled 106 / 108 reflection profiles on image 442
Modelled 115 / 118 reflection profiles on image 443
Modelled 135 / 141 reflection profiles on image 444
Modelled 137 / 142 reflection profiles on image 445
Modelled 97 / 102 reflection profiles on image 446
Modelled 112 / 114 reflection profiles on image 447
Modelled 4 / 5 reflection profiles on image 448
Modelled 1 / 1 reflection profiles on image 449
Beginning modelling job 74
Frames: 444 -> 456
Number of reflections
Partial: 2
Full: 751
In ice ring: 0
Total: 753
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
445 [4 ]: *
446 [24 ]: ******
447 [149]: ***************************************
448 [247]: *****************************************************************
449 [248]: ******************************************************************
450 [253]: *******************************************************************
451 [255]: ********************************************************************
452 [229]: *************************************************************
453 [102]: ***************************
454 [8 ]: **
455 [2 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00121471 GB
Modelled 28 / 29 reflection profiles on image 447
Modelled 116 / 118 reflection profiles on image 448
Modelled 116 / 121 reflection profiles on image 449
Modelled 125 / 131 reflection profiles on image 450
Modelled 119 / 125 reflection profiles on image 451
Modelled 124 / 127 reflection profiles on image 452
Modelled 89 / 94 reflection profiles on image 453
Modelled 6 / 6 reflection profiles on image 454
Modelled 1 / 2 reflection profiles on image 455
Beginning modelling job 75
Frames: 450 -> 462
Number of reflections
Partial: 3
Full: 737
In ice ring: 0
Total: 740
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
450 [1 ]:
451 [2 ]:
452 [22 ]: *****
453 [148]: **************************************
454 [237]: *************************************************************
455 [240]: **************************************************************
456 [262]: ********************************************************************
457 [250]: ****************************************************************
458 [217]: ********************************************************
459 [107]: ***************************
460 [8 ]: **
461 [3 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00125189 GB
Modelled 26 / 28 reflection profiles on image 453
Modelled 122 / 122 reflection profiles on image 454
Modelled 103 / 107 reflection profiles on image 455
Modelled 126 / 130 reflection profiles on image 456
Modelled 133 / 136 reflection profiles on image 457
Modelled 105 / 110 reflection profiles on image 458
Modelled 95 / 99 reflection profiles on image 459
Modelled 5 / 5 reflection profiles on image 460
Modelled 2 / 3 reflection profiles on image 461
Beginning modelling job 76
Frames: 456 -> 468
Number of reflections
Partial: 3
Full: 769
In ice ring: 0
Total: 772
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
456 [1 ]:
457 [3 ]:
458 [8 ]: *
459 [125]: ******************************
460 [228]: *******************************************************
461 [277]: ********************************************************************
462 [277]: ********************************************************************
463 [238]: **********************************************************
464 [233]: *********************************************************
465 [118]: ****************************
466 [6 ]: *
467 [1 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00128908 GB
Modelled 20 / 22 reflection profiles on image 459
Modelled 94 / 99 reflection profiles on image 460
Modelled 134 / 141 reflection profiles on image 461
Modelled 137 / 144 reflection profiles on image 462
Modelled 123 / 133 reflection profiles on image 463
Modelled 112 / 115 reflection profiles on image 464
Modelled 106 / 112 reflection profiles on image 465
Modelled 5 / 5 reflection profiles on image 466
Modelled 0 / 1 reflection profiles on image 467
Beginning modelling job 77
Frames: 462 -> 474
Number of reflections
Partial: 7
Full: 751
In ice ring: 0
Total: 758
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
463 [2 ]:
464 [17 ]: ****
465 [137]: ***********************************
466 [241]: **************************************************************
467 [264]: ********************************************************************
468 [262]: *******************************************************************
469 [249]: ****************************************************************
470 [204]: ****************************************************
471 [85 ]: *********************
472 [5 ]: *
473 [4 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00119054 GB
Modelled 29 / 30 reflection profiles on image 465
Modelled 113 / 114 reflection profiles on image 466
Modelled 138 / 143 reflection profiles on image 467
Modelled 127 / 133 reflection profiles on image 468
Modelled 129 / 134 reflection profiles on image 469
Modelled 117 / 119 reflection profiles on image 470
Modelled 77 / 80 reflection profiles on image 471
Modelled 1 / 1 reflection profiles on image 472
Modelled 1 / 4 reflection profiles on image 473
Beginning modelling job 78
Frames: 468 -> 480
Number of reflections
Partial: 7
Full: 768
In ice ring: 0
Total: 775
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
468 [1 ]:
469 [3 ]:
470 [14 ]: ***
471 [150]: **************************************
472 [266]: ********************************************************************
473 [252]: ****************************************************************
474 [241]: *************************************************************
475 [260]: ******************************************************************
476 [235]: ************************************************************
477 [103]: **************************
478 [9 ]: **
479 [5 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00127444 GB
Modelled 22 / 22 reflection profiles on image 471
Modelled 130 / 139 reflection profiles on image 472
Modelled 130 / 136 reflection profiles on image 473
Modelled 110 / 111 reflection profiles on image 474
Modelled 128 / 132 reflection profiles on image 475
Modelled 125 / 132 reflection profiles on image 476
Modelled 91 / 94 reflection profiles on image 477
Modelled 4 / 4 reflection profiles on image 478
Modelled 3 / 5 reflection profiles on image 479
Beginning modelling job 79
Frames: 474 -> 486
Number of reflections
Partial: 4
Full: 735
In ice ring: 0
Total: 739
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
474 [1 ]:
475 [3 ]:
476 [20 ]: *****
477 [171]: ********************************************
478 [259]: ********************************************************************
479 [226]: ***********************************************************
480 [222]: **********************************************************
481 [238]: **************************************************************
482 [212]: *******************************************************
483 [102]: **************************
484 [6 ]: *
485 [2 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00119821 GB
Modelled 27 / 28 reflection profiles on image 477
Modelled 140 / 148 reflection profiles on image 478
Modelled 109 / 116 reflection profiles on image 479
Modelled 101 / 105 reflection profiles on image 480
Modelled 120 / 130 reflection profiles on image 481
Modelled 108 / 110 reflection profiles on image 482
Modelled 88 / 96 reflection profiles on image 483
Modelled 4 / 4 reflection profiles on image 484
Modelled 1 / 2 reflection profiles on image 485
Beginning modelling job 80
Frames: 480 -> 492
Number of reflections
Partial: 3
Full: 725
In ice ring: 0
Total: 728
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
480 [2 ]:
481 [6 ]: *
482 [22 ]: *****
483 [143]: ************************************
484 [242]: *************************************************************
485 [267]: ********************************************************************
486 [245]: **************************************************************
487 [231]: **********************************************************
488 [212]: *****************************************************
489 [104]: **************************
490 [4 ]: *
491 [1 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0012743 GB
Modelled 22 / 24 reflection profiles on image 483
Modelled 109 / 112 reflection profiles on image 484
Modelled 118 / 122 reflection profiles on image 485
Modelled 128 / 135 reflection profiles on image 486
Modelled 114 / 123 reflection profiles on image 487
Modelled 107 / 108 reflection profiles on image 488
Modelled 94 / 100 reflection profiles on image 489
Modelled 3 / 3 reflection profiles on image 490
Modelled 1 / 1 reflection profiles on image 491
Beginning modelling job 81
Frames: 486 -> 498
Number of reflections
Partial: 1
Full: 733
In ice ring: 0
Total: 734
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
486 [1 ]:
487 [3 ]:
488 [18 ]: ****
489 [155]: ******************************************
490 [246]: *******************************************************************
491 [220]: ************************************************************
492 [237]: *****************************************************************
493 [247]: ********************************************************************
494 [241]: ******************************************************************
495 [115]: *******************************
496 [12 ]: ***
497 [3 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00122416 GB
Modelled 22 / 23 reflection profiles on image 489
Modelled 131 / 134 reflection profiles on image 490
Modelled 105 / 109 reflection profiles on image 491
Modelled 103 / 111 reflection profiles on image 492
Modelled 114 / 116 reflection profiles on image 493
Modelled 121 / 126 reflection profiles on image 494
Modelled 100 / 103 reflection profiles on image 495
Modelled 9 / 9 reflection profiles on image 496
Modelled 3 / 3 reflection profiles on image 497
Beginning modelling job 82
Frames: 492 -> 504
Number of reflections
Partial: 2
Full: 699
In ice ring: 0
Total: 701
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
493 [2 ]:
494 [14 ]: ***
495 [140]: *************************************
496 [254]: ********************************************************************
497 [246]: *****************************************************************
498 [218]: **********************************************************
499 [221]: ***********************************************************
500 [196]: ****************************************************
501 [81 ]: *********************
502 [4 ]: *
503 [2 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00114616 GB
Modelled 24 / 24 reflection profiles on image 495
Modelled 112 / 115 reflection profiles on image 496
Modelled 140 / 146 reflection profiles on image 497
Modelled 105 / 107 reflection profiles on image 498
Modelled 107 / 113 reflection profiles on image 499
Modelled 113 / 115 reflection profiles on image 500
Modelled 75 / 77 reflection profiles on image 501
Modelled 2 / 2 reflection profiles on image 502
Modelled 1 / 2 reflection profiles on image 503
Beginning modelling job 83
Frames: 498 -> 510
Number of reflections
Partial: 5
Full: 746
In ice ring: 0
Total: 751
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
499 [4 ]: *
500 [19 ]: *****
501 [153]: *****************************************
502 [247]: ******************************************************************
503 [251]: ********************************************************************
504 [238]: ****************************************************************
505 [231]: **************************************************************
506 [224]: ************************************************************
507 [97 ]: **************************
508 [6 ]: *
509 [4 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00114184 GB
Modelled 29 / 29 reflection profiles on image 501
Modelled 127 / 133 reflection profiles on image 502
Modelled 122 / 129 reflection profiles on image 503
Modelled 126 / 128 reflection profiles on image 504
Modelled 103 / 108 reflection profiles on image 505
Modelled 124 / 127 reflection profiles on image 506
Modelled 87 / 91 reflection profiles on image 507
Modelled 1 / 2 reflection profiles on image 508
Modelled 2 / 4 reflection profiles on image 509
Beginning modelling job 84
Frames: 504 -> 516
Number of reflections
Partial: 2
Full: 708
In ice ring: 0
Total: 710
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
504 [1 ]:
505 [5 ]: *
506 [20 ]: *****
507 [135]: ***********************************
508 [243]: ***************************************************************
509 [257]: *******************************************************************
510 [259]: ********************************************************************
511 [223]: **********************************************************
512 [198]: ***************************************************
513 [98 ]: *************************
514 [4 ]: *
515 [2 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00122528 GB
Modelled 19 / 20 reflection profiles on image 507
Modelled 113 / 117 reflection profiles on image 508
Modelled 106 / 110 reflection profiles on image 509
Modelled 135 / 143 reflection profiles on image 510
Modelled 118 / 122 reflection profiles on image 511
Modelled 97 / 100 reflection profiles on image 512
Modelled 92 / 94 reflection profiles on image 513
Modelled 2 / 2 reflection profiles on image 514
Modelled 2 / 2 reflection profiles on image 515
Beginning modelling job 85
Frames: 510 -> 522
Number of reflections
Partial: 2
Full: 724
In ice ring: 0
Total: 726
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
510 [1 ]:
511 [6 ]: *
512 [26 ]: ******
513 [142]: *************************************
514 [254]: *******************************************************************
515 [256]: ********************************************************************
516 [235]: **************************************************************
517 [236]: **************************************************************
518 [215]: *********************************************************
519 [99 ]: **************************
520 [7 ]: *
521 [3 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00118622 GB
Modelled 17 / 19 reflection profiles on image 513
Modelled 107 / 114 reflection profiles on image 514
Modelled 135 / 142 reflection profiles on image 515
Modelled 117 / 121 reflection profiles on image 516
Modelled 110 / 115 reflection profiles on image 517
Modelled 114 / 116 reflection profiles on image 518
Modelled 91 / 92 reflection profiles on image 519
Modelled 3 / 4 reflection profiles on image 520
Modelled 2 / 3 reflection profiles on image 521
Beginning modelling job 86
Frames: 516 -> 528
Number of reflections
Partial: 1
Full: 718
In ice ring: 0
Total: 719
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
516 [1 ]:
517 [2 ]:
518 [15 ]: ****
519 [139]: *************************************
520 [222]: ***********************************************************
521 [227]: *************************************************************
522 [253]: ********************************************************************
523 [248]: ******************************************************************
524 [224]: ************************************************************
525 [97 ]: **************************
526 [8 ]: **
527 [2 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00117814 GB
Modelled 18 / 18 reflection profiles on image 519
Modelled 126 / 127 reflection profiles on image 520
Modelled 99 / 100 reflection profiles on image 521
Modelled 117 / 121 reflection profiles on image 522
Modelled 121 / 129 reflection profiles on image 523
Modelled 123 / 127 reflection profiles on image 524
Modelled 88 / 89 reflection profiles on image 525
Modelled 5 / 6 reflection profiles on image 526
Modelled 2 / 2 reflection profiles on image 527
Beginning modelling job 87
Frames: 522 -> 534
Number of reflections
Partial: 2
Full: 729
In ice ring: 0
Total: 731
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
522 [1 ]:
523 [3 ]:
524 [23 ]: ******
525 [129]: ***********************************
526 [232]: ***************************************************************
527 [245]: ******************************************************************
528 [241]: *****************************************************************
529 [233]: ***************************************************************
530 [249]: ********************************************************************
531 [125]: **********************************
532 [10 ]: **
533 [3 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00118338 GB
Modelled 21 / 22 reflection profiles on image 525
Modelled 106 / 109 reflection profiles on image 526
Modelled 114 / 121 reflection profiles on image 527
Modelled 117 / 121 reflection profiles on image 528
Modelled 103 / 109 reflection profiles on image 529
Modelled 118 / 124 reflection profiles on image 530
Modelled 110 / 115 reflection profiles on image 531
Modelled 7 / 7 reflection profiles on image 532
Modelled 2 / 3 reflection profiles on image 533
Beginning modelling job 88
Frames: 528 -> 540
Number of reflections
Partial: 5
Full: 688
In ice ring: 0
Total: 693
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
528 [1 ]:
529 [5 ]: *
530 [25 ]: *******
531 [145]: *****************************************
532 [218]: ***************************************************************
533 [212]: *************************************************************
534 [232]: *******************************************************************
535 [235]: ********************************************************************
536 [202]: **********************************************************
537 [93 ]: **************************
538 [8 ]: **
539 [3 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0011067 GB
Modelled 25 / 28 reflection profiles on image 531
Modelled 118 / 119 reflection profiles on image 532
Modelled 106 / 112 reflection profiles on image 533
Modelled 101 / 105 reflection profiles on image 534
Modelled 120 / 127 reflection profiles on image 535
Modelled 106 / 109 reflection profiles on image 536
Modelled 84 / 85 reflection profiles on image 537
Modelled 4 / 5 reflection profiles on image 538
Modelled 1 / 3 reflection profiles on image 539
Beginning modelling job 89
Frames: 534 -> 546
Number of reflections
Partial: 8
Full: 687
In ice ring: 0
Total: 695
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
535 [5 ]: *
536 [26 ]: *******
537 [138]: *************************************
538 [240]: ******************************************************************
539 [247]: ********************************************************************
540 [235]: ****************************************************************
541 [222]: *************************************************************
542 [210]: *********************************************************
543 [104]: ****************************
544 [6 ]: *
545 [4 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00117583 GB
Modelled 17 / 18 reflection profiles on image 537
Modelled 111 / 114 reflection profiles on image 538
Modelled 122 / 130 reflection profiles on image 539
Modelled 111 / 114 reflection profiles on image 540
Modelled 103 / 109 reflection profiles on image 541
Modelled 103 / 106 reflection profiles on image 542
Modelled 97 / 98 reflection profiles on image 543
Modelled 2 / 2 reflection profiles on image 544
Modelled 1 / 4 reflection profiles on image 545
Beginning modelling job 90
Frames: 540 -> 552
Number of reflections
Partial: 6
Full: 656
In ice ring: 0
Total: 662
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
541 [4 ]: *
542 [20 ]: *****
543 [127]: *************************************
544 [204]: ************************************************************
545 [220]: *****************************************************************
546 [230]: ********************************************************************
547 [220]: *****************************************************************
548 [216]: ***************************************************************
549 [107]: *******************************
550 [8 ]: **
551 [3 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00107204 GB
Modelled 20 / 22 reflection profiles on image 543
Modelled 89 / 94 reflection profiles on image 544
Modelled 98 / 105 reflection profiles on image 545
Modelled 112 / 117 reflection profiles on image 546
Modelled 100 / 108 reflection profiles on image 547
Modelled 105 / 109 reflection profiles on image 548
Modelled 97 / 99 reflection profiles on image 549
Modelled 5 / 5 reflection profiles on image 550
Modelled 1 / 3 reflection profiles on image 551
Beginning modelling job 91
Frames: 546 -> 558
Number of reflections
Partial: 2
Full: 691
In ice ring: 0
Total: 693
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
547 [6 ]: *
548 [26 ]: *******
549 [128]: **********************************
550 [234]: ***************************************************************
551 [238]: ****************************************************************
552 [251]: ********************************************************************
553 [247]: ******************************************************************
554 [230]: **************************************************************
555 [99 ]: **************************
556 [9 ]: **
557 [3 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00128137 GB
Modelled 14 / 16 reflection profiles on image 549
Modelled 110 / 114 reflection profiles on image 550
Modelled 93 / 97 reflection profiles on image 551
Modelled 113 / 116 reflection profiles on image 552
Modelled 115 / 120 reflection profiles on image 553
Modelled 124 / 131 reflection profiles on image 554
Modelled 85 / 90 reflection profiles on image 555
Modelled 5 / 6 reflection profiles on image 556
Modelled 2 / 3 reflection profiles on image 557
Beginning modelling job 92
Frames: 552 -> 564
Number of reflections
Partial: 3
Full: 720
In ice ring: 0
Total: 723
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
552 [1 ]:
553 [4 ]: *
554 [22 ]: *****
555 [156]: *****************************************
556 [256]: ********************************************************************
557 [233]: *************************************************************
558 [247]: *****************************************************************
559 [251]: ******************************************************************
560 [221]: **********************************************************
561 [98 ]: **************************
562 [10 ]: **
563 [3 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00126703 GB
Modelled 25 / 25 reflection profiles on image 555
Modelled 122 / 131 reflection profiles on image 556
Modelled 103 / 112 reflection profiles on image 557
Modelled 107 / 115 reflection profiles on image 558
Modelled 117 / 119 reflection profiles on image 559
Modelled 119 / 123 reflection profiles on image 560
Modelled 87 / 88 reflection profiles on image 561
Modelled 7 / 7 reflection profiles on image 562
Modelled 2 / 3 reflection profiles on image 563
Beginning modelling job 93
Frames: 558 -> 570
Number of reflections
Partial: 4
Full: 661
In ice ring: 0
Total: 665
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
558 [1 ]:
559 [3 ]:
560 [22 ]: ******
561 [148]: *******************************************
562 [229]: ********************************************************************
563 [207]: *************************************************************
564 [229]: ********************************************************************
565 [228]: *******************************************************************
566 [198]: **********************************************************
567 [83 ]: ************************
568 [7 ]: **
569 [2 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00111118 GB
Modelled 24 / 24 reflection profiles on image 561
Modelled 118 / 126 reflection profiles on image 562
Modelled 94 / 100 reflection profiles on image 563
Modelled 98 / 104 reflection profiles on image 564
Modelled 106 / 113 reflection profiles on image 565
Modelled 111 / 115 reflection profiles on image 566
Modelled 73 / 76 reflection profiles on image 567
Modelled 5 / 5 reflection profiles on image 568
Modelled 1 / 2 reflection profiles on image 569
Beginning modelling job 94
Frames: 564 -> 576
Number of reflections
Partial: 4
Full: 678
In ice ring: 0
Total: 682
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
566 [18 ]: *****
567 [135]: **************************************
568 [231]: *****************************************************************
569 [234]: ******************************************************************
570 [241]: ********************************************************************
571 [240]: *******************************************************************
572 [215]: ************************************************************
573 [87 ]: ************************
574 [7 ]: *
575 [2 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00118972 GB
Modelled 19 / 20 reflection profiles on image 567
Modelled 105 / 109 reflection profiles on image 568
Modelled 100 / 105 reflection profiles on image 569
Modelled 119 / 127 reflection profiles on image 570
Modelled 100 / 106 reflection profiles on image 571
Modelled 122 / 128 reflection profiles on image 572
Modelled 73 / 80 reflection profiles on image 573
Modelled 5 / 5 reflection profiles on image 574
Modelled 0 / 2 reflection profiles on image 575
Beginning modelling job 95
Frames: 570 -> 582
Number of reflections
Partial: 4
Full: 718
In ice ring: 0
Total: 722
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
570 [4 ]: *
571 [6 ]: *
572 [19 ]: *****
573 [139]: *************************************
574 [240]: ****************************************************************
575 [244]: *****************************************************************
576 [241]: *****************************************************************
577 [252]: ********************************************************************
578 [249]: *******************************************************************
579 [123]: *********************************
580 [8 ]: **
581 [2 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00132584 GB
Modelled 17 / 17 reflection profiles on image 573
Modelled 101 / 103 reflection profiles on image 574
Modelled 123 / 128 reflection profiles on image 575
Modelled 106 / 112 reflection profiles on image 576
Modelled 108 / 113 reflection profiles on image 577
Modelled 118 / 126 reflection profiles on image 578
Modelled 113 / 115 reflection profiles on image 579
Modelled 6 / 6 reflection profiles on image 580
Modelled 1 / 2 reflection profiles on image 581
Beginning modelling job 96
Frames: 576 -> 588
Number of reflections
Partial: 5
Full: 709
In ice ring: 0
Total: 714
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
576 [2 ]:
577 [2 ]:
578 [17 ]: ****
579 [121]: *******************************
580 [248]: ****************************************************************
581 [261]: ********************************************************************
582 [240]: **************************************************************
583 [236]: *************************************************************
584 [218]: ********************************************************
585 [90 ]: ***********************
586 [8 ]: **
587 [2 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00123954 GB
Modelled 12 / 13 reflection profiles on image 579
Modelled 111 / 117 reflection profiles on image 580
Modelled 121 / 128 reflection profiles on image 581
Modelled 122 / 132 reflection profiles on image 582
Modelled 100 / 106 reflection profiles on image 583
Modelled 122 / 128 reflection profiles on image 584
Modelled 80 / 82 reflection profiles on image 585
Modelled 5 / 6 reflection profiles on image 586
Modelled 0 / 2 reflection profiles on image 587
Beginning modelling job 97
Frames: 582 -> 594
Number of reflections
Partial: 2
Full: 712
In ice ring: 0
Total: 714
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
582 [1 ]:
583 [2 ]:
584 [14 ]: ***
585 [133]: ***********************************
586 [236]: **************************************************************
587 [241]: ***************************************************************
588 [233]: *************************************************************
589 [257]: ********************************************************************
590 [237]: **************************************************************
591 [97 ]: *************************
592 [6 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00121584 GB
Modelled 16 / 17 reflection profiles on image 585
Modelled 107 / 113 reflection profiles on image 586
Modelled 111 / 120 reflection profiles on image 587
Modelled 101 / 111 reflection profiles on image 588
Modelled 112 / 116 reflection profiles on image 589
Modelled 137 / 140 reflection profiles on image 590
Modelled 86 / 91 reflection profiles on image 591
Modelled 6 / 6 reflection profiles on image 592
Beginning modelling job 98
Frames: 588 -> 600
Number of reflections
Partial: 0
Full: 663
In ice ring: 0
Total: 663
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
588 [2 ]:
589 [4 ]: *
590 [24 ]: *******
591 [126]: **************************************
592 [208]: ***************************************************************
593 [206]: **************************************************************
594 [216]: *****************************************************************
595 [224]: ********************************************************************
596 [214]: ****************************************************************
597 [112]: **********************************
598 [4 ]: *
599 [1 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00101434 GB
Modelled 20 / 21 reflection profiles on image 591
Modelled 99 / 104 reflection profiles on image 592
Modelled 100 / 104 reflection profiles on image 593
Modelled 95 / 101 reflection profiles on image 594
Modelled 115 / 119 reflection profiles on image 595
Modelled 99 / 102 reflection profiles on image 596
Modelled 103 / 108 reflection profiles on image 597
Modelled 3 / 3 reflection profiles on image 598
Modelled 0 / 1 reflection profiles on image 599
Beginning modelling job 99
Frames: 594 -> 606
Number of reflections
Partial: 4
Full: 728
In ice ring: 0
Total: 732
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
594 [1 ]:
595 [5 ]: *
596 [20 ]: *****
597 [130]: ********************************
598 [220]: *******************************************************
599 [233]: **********************************************************
600 [257]: ****************************************************************
601 [271]: ********************************************************************
602 [246]: *************************************************************
603 [121]: ******************************
604 [15 ]: ***
605 [3 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00135476 GB
Modelled 17 / 18 reflection profiles on image 597
Modelled 98 / 101 reflection profiles on image 598
Modelled 97 / 107 reflection profiles on image 599
Modelled 122 / 127 reflection profiles on image 600
Modelled 126 / 133 reflection profiles on image 601
Modelled 124 / 125 reflection profiles on image 602
Modelled 96 / 106 reflection profiles on image 603
Modelled 12 / 12 reflection profiles on image 604
Modelled 2 / 3 reflection profiles on image 605
Beginning modelling job 100
Frames: 600 -> 612
Number of reflections
Partial: 4
Full: 745
In ice ring: 0
Total: 749
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
601 [2 ]:
602 [29 ]: *******
603 [143]: *************************************
604 [224]: **********************************************************
605 [240]: **************************************************************
606 [242]: ***************************************************************
607 [260]: *******************************************************************
608 [261]: ********************************************************************
609 [108]: ****************************
610 [3 ]:
611 [1 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00122624 GB
Modelled 24 / 25 reflection profiles on image 603
Modelled 100 / 105 reflection profiles on image 604
Modelled 112 / 118 reflection profiles on image 605
Modelled 107 / 112 reflection profiles on image 606
Modelled 123 / 128 reflection profiles on image 607
Modelled 143 / 153 reflection profiles on image 608
Modelled 100 / 105 reflection profiles on image 609
Modelled 2 / 2 reflection profiles on image 610
Modelled 0 / 1 reflection profiles on image 611
Beginning modelling job 101
Frames: 606 -> 618
Number of reflections
Partial: 1
Full: 718
In ice ring: 0
Total: 719
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
607 [2 ]:
608 [26 ]: *******
609 [139]: **************************************
610 [241]: ******************************************************************
611 [238]: ******************************************************************
612 [242]: *******************************************************************
613 [245]: ********************************************************************
614 [225]: **************************************************************
615 [103]: ****************************
616 [10 ]: **
617 [1 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00119629 GB
Modelled 14 / 14 reflection profiles on image 609
Modelled 115 / 121 reflection profiles on image 610
Modelled 115 / 120 reflection profiles on image 611
Modelled 109 / 112 reflection profiles on image 612
Modelled 123 / 127 reflection profiles on image 613
Modelled 119 / 122 reflection profiles on image 614
Modelled 89 / 93 reflection profiles on image 615
Modelled 7 / 9 reflection profiles on image 616
Modelled 1 / 1 reflection profiles on image 617
Beginning modelling job 102
Frames: 612 -> 624
Number of reflections
Partial: 4
Full: 713
In ice ring: 0
Total: 717
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
613 [3 ]:
614 [26 ]: ******
615 [139]: ************************************
616 [239]: **************************************************************
617 [242]: **************************************************************
618 [262]: ********************************************************************
619 [248]: ****************************************************************
620 [211]: ******************************************************
621 [95 ]: ************************
622 [6 ]: *
623 [4 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0012609 GB
Modelled 18 / 20 reflection profiles on image 615
Modelled 109 / 114 reflection profiles on image 616
Modelled 107 / 115 reflection profiles on image 617
Modelled 116 / 120 reflection profiles on image 618
Modelled 133 / 137 reflection profiles on image 619
Modelled 112 / 116 reflection profiles on image 620
Modelled 87 / 89 reflection profiles on image 621
Modelled 2 / 2 reflection profiles on image 622
Modelled 2 / 4 reflection profiles on image 623
Beginning modelling job 103
Frames: 618 -> 630
Number of reflections
Partial: 4
Full: 695
In ice ring: 0
Total: 699
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
618 [3 ]:
619 [8 ]: **
620 [22 ]: ******
621 [140]: **************************************
622 [237]: ****************************************************************
623 [214]: **********************************************************
624 [210]: *********************************************************
625 [245]: ******************************************************************
626 [249]: ********************************************************************
627 [109]: *****************************
628 [6 ]: *
629 [1 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00120863 GB
Modelled 22 / 24 reflection profiles on image 621
Modelled 113 / 116 reflection profiles on image 622
Modelled 104 / 109 reflection profiles on image 623
Modelled 83 / 91 reflection profiles on image 624
Modelled 106 / 110 reflection profiles on image 625
Modelled 132 / 140 reflection profiles on image 626
Modelled 98 / 103 reflection profiles on image 627
Modelled 4 / 5 reflection profiles on image 628
Modelled 0 / 1 reflection profiles on image 629
Beginning modelling job 104
Frames: 624 -> 636
Number of reflections
Partial: 5
Full: 770
In ice ring: 0
Total: 775
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
625 [5 ]: *
626 [26 ]: ******
627 [153]: **************************************
628 [267]: ********************************************************************
629 [266]: *******************************************************************
630 [261]: ******************************************************************
631 [256]: *****************************************************************
632 [228]: **********************************************************
633 [102]: *************************
634 [11 ]: **
635 [4 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00131316 GB
Modelled 26 / 28 reflection profiles on image 627
Modelled 122 / 124 reflection profiles on image 628
Modelled 134 / 140 reflection profiles on image 629
Modelled 114 / 119 reflection profiles on image 630
Modelled 130 / 136 reflection profiles on image 631
Modelled 119 / 126 reflection profiles on image 632
Modelled 87 / 91 reflection profiles on image 633
Modelled 6 / 7 reflection profiles on image 634
Modelled 2 / 4 reflection profiles on image 635
Beginning modelling job 105
Frames: 630 -> 642
Number of reflections
Partial: 2
Full: 721
In ice ring: 0
Total: 723
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
631 [3 ]:
632 [19 ]: *****
633 [149]: ******************************************
634 [240]: *******************************************************************
635 [235]: ******************************************************************
636 [236]: ******************************************************************
637 [241]: ********************************************************************
638 [221]: **************************************************************
639 [105]: *****************************
640 [3 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00118975 GB
Modelled 26 / 27 reflection profiles on image 633
Modelled 119 / 124 reflection profiles on image 634
Modelled 115 / 121 reflection profiles on image 635
Modelled 108 / 114 reflection profiles on image 636
Modelled 112 / 116 reflection profiles on image 637
Modelled 112 / 116 reflection profiles on image 638
Modelled 97 / 102 reflection profiles on image 639
Modelled 3 / 3 reflection profiles on image 640
Beginning modelling job 106
Frames: 636 -> 648
Number of reflections
Partial: 0
Full: 743
In ice ring: 0
Total: 743
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
636 [1 ]:
637 [5 ]: *
638 [27 ]: *******
639 [154]: ****************************************
640 [234]: *************************************************************
641 [238]: **************************************************************
642 [260]: ********************************************************************
643 [247]: ****************************************************************
644 [236]: *************************************************************
645 [99 ]: *************************
646 [4 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00129584 GB
Modelled 30 / 30 reflection profiles on image 639
Modelled 119 / 126 reflection profiles on image 640
Modelled 99 / 103 reflection profiles on image 641
Modelled 123 / 129 reflection profiles on image 642
Modelled 117 / 119 reflection profiles on image 643
Modelled 130 / 137 reflection profiles on image 644
Modelled 92 / 95 reflection profiles on image 645
Modelled 4 / 4 reflection profiles on image 646
Beginning modelling job 107
Frames: 642 -> 654
Number of reflections
Partial: 2
Full: 738
In ice ring: 0
Total: 740
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
642 [1 ]:
643 [3 ]:
644 [31 ]: *******
645 [133]: **********************************
646 [233]: ***********************************************************
647 [223]: *********************************************************
648 [231]: ***********************************************************
649 [265]: ********************************************************************
650 [258]: ******************************************************************
651 [118]: ******************************
652 [9 ]: **
653 [1 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00127 GB
Modelled 18 / 19 reflection profiles on image 645
Modelled 112 / 113 reflection profiles on image 646
Modelled 110 / 116 reflection profiles on image 647
Modelled 112 / 114 reflection profiles on image 648
Modelled 117 / 120 reflection profiles on image 649
Modelled 136 / 140 reflection profiles on image 650
Modelled 103 / 109 reflection profiles on image 651
Modelled 8 / 8 reflection profiles on image 652
Modelled 0 / 1 reflection profiles on image 653
Beginning modelling job 108
Frames: 648 -> 660
Number of reflections
Partial: 3
Full: 723
In ice ring: 0
Total: 726
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
648 [2 ]:
649 [3 ]:
650 [20 ]: *****
651 [138]: ***********************************
652 [253]: *****************************************************************
653 [264]: ********************************************************************
654 [217]: *******************************************************
655 [225]: *********************************************************
656 [230]: ***********************************************************
657 [108]: ***************************
658 [7 ]: *
659 [1 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00124895 GB
Modelled 15 / 15 reflection profiles on image 651
Modelled 112 / 115 reflection profiles on image 652
Modelled 128 / 140 reflection profiles on image 653
Modelled 113 / 116 reflection profiles on image 654
Modelled 107 / 110 reflection profiles on image 655
Modelled 119 / 122 reflection profiles on image 656
Modelled 98 / 101 reflection profiles on image 657
Modelled 6 / 6 reflection profiles on image 658
Modelled 1 / 1 reflection profiles on image 659
Beginning modelling job 109
Frames: 654 -> 666
Number of reflections
Partial: 3
Full: 768
In ice ring: 0
Total: 771
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
654 [1 ]:
655 [2 ]:
656 [13 ]: ***
657 [147]: ************************************
658 [245]: ************************************************************
659 [272]: ******************************************************************
660 [277]: ********************************************************************
661 [249]: *************************************************************
662 [231]: ********************************************************
663 [100]: ************************
664 [8 ]: *
665 [2 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00138254 GB
Modelled 34 / 36 reflection profiles on image 657
Modelled 107 / 111 reflection profiles on image 658
Modelled 116 / 126 reflection profiles on image 659
Modelled 139 / 146 reflection profiles on image 660
Modelled 117 / 121 reflection profiles on image 661
Modelled 125 / 131 reflection profiles on image 662
Modelled 85 / 92 reflection profiles on image 663
Modelled 6 / 6 reflection profiles on image 664
Modelled 1 / 2 reflection profiles on image 665
Beginning modelling job 110
Frames: 660 -> 672
Number of reflections
Partial: 3
Full: 775
In ice ring: 0
Total: 778
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
660 [2 ]:
661 [6 ]: *
662 [28 ]: ******
663 [156]: *************************************
664 [258]: **************************************************************
665 [249]: ************************************************************
666 [282]: ********************************************************************
667 [266]: ****************************************************************
668 [239]: *********************************************************
669 [105]: *************************
670 [6 ]: *
671 [2 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00140861 GB
Modelled 19 / 20 reflection profiles on image 663
Modelled 134 / 139 reflection profiles on image 664
Modelled 105 / 113 reflection profiles on image 665
Modelled 133 / 141 reflection profiles on image 666
Modelled 123 / 126 reflection profiles on image 667
Modelled 131 / 134 reflection profiles on image 668
Modelled 94 / 99 reflection profiles on image 669
Modelled 4 / 4 reflection profiles on image 670
Modelled 1 / 2 reflection profiles on image 671
Beginning modelling job 111
Frames: 666 -> 678
Number of reflections
Partial: 5
Full: 760
In ice ring: 0
Total: 765
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
667 [6 ]: *
668 [25 ]: ******
669 [144]: ***********************************
670 [236]: **********************************************************
671 [260]: ****************************************************************
672 [273]: ********************************************************************
673 [263]: *****************************************************************
674 [235]: **********************************************************
675 [104]: *************************
676 [10 ]: **
677 [4 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00130907 GB
Modelled 22 / 26 reflection profiles on image 669
Modelled 118 / 121 reflection profiles on image 670
Modelled 112 / 116 reflection profiles on image 671
Modelled 140 / 142 reflection profiles on image 672
Modelled 118 / 125 reflection profiles on image 673
Modelled 122 / 131 reflection profiles on image 674
Modelled 90 / 94 reflection profiles on image 675
Modelled 6 / 6 reflection profiles on image 676
Modelled 2 / 4 reflection profiles on image 677
Beginning modelling job 112
Frames: 672 -> 684
Number of reflections
Partial: 2
Full: 788
In ice ring: 0
Total: 790
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
672 [1 ]:
673 [5 ]: *
674 [21 ]: *****
675 [146]: ************************************
676 [255]: ***************************************************************
677 [274]: ********************************************************************
678 [267]: ******************************************************************
679 [252]: **************************************************************
680 [237]: **********************************************************
681 [111]: ***************************
682 [4 ]:
683 [1 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00134081 GB
Modelled 20 / 23 reflection profiles on image 675
Modelled 117 / 122 reflection profiles on image 676
Modelled 127 / 133 reflection profiles on image 677
Modelled 135 / 145 reflection profiles on image 678
Modelled 123 / 130 reflection profiles on image 679
Modelled 121 / 126 reflection profiles on image 680
Modelled 102 / 107 reflection profiles on image 681
Modelled 3 / 3 reflection profiles on image 682
Modelled 1 / 1 reflection profiles on image 683
Beginning modelling job 113
Frames: 678 -> 690
Number of reflections
Partial: 0
Full: 836
In ice ring: 0
Total: 836
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
678 [1 ]:
679 [2 ]:
680 [15 ]: ***
681 [133]: *****************************
682 [266]: **********************************************************
683 [298]: *****************************************************************
684 [311]: ********************************************************************
685 [286]: **************************************************************
686 [247]: ******************************************************
687 [127]: ***************************
688 [8 ]: *
689 [3 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00147373 GB
Modelled 11 / 11 reflection profiles on image 681
Modelled 106 / 117 reflection profiles on image 682
Modelled 143 / 147 reflection profiles on image 683
Modelled 152 / 156 reflection profiles on image 684
Modelled 149 / 158 reflection profiles on image 685
Modelled 117 / 120 reflection profiles on image 686
Modelled 116 / 119 reflection profiles on image 687
Modelled 5 / 5 reflection profiles on image 688
Modelled 3 / 3 reflection profiles on image 689
Beginning modelling job 114
Frames: 684 -> 696
Number of reflections
Partial: 0
Full: 779
In ice ring: 0
Total: 779
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
685 [6 ]: *
686 [25 ]: ******
687 [150]: *************************************
688 [255]: ***************************************************************
689 [275]: ********************************************************************
690 [253]: **************************************************************
691 [252]: **************************************************************
692 [237]: **********************************************************
693 [115]: ****************************
694 [3 ]:
695 [1 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00133298 GB
Modelled 23 / 23 reflection profiles on image 687
Modelled 109 / 112 reflection profiles on image 688
Modelled 138 / 145 reflection profiles on image 689
Modelled 130 / 135 reflection profiles on image 690
Modelled 120 / 127 reflection profiles on image 691
Modelled 119 / 122 reflection profiles on image 692
Modelled 106 / 112 reflection profiles on image 693
Modelled 2 / 2 reflection profiles on image 694
Modelled 1 / 1 reflection profiles on image 695
Beginning modelling job 115
Frames: 690 -> 702
Number of reflections
Partial: 0
Full: 772
In ice ring: 0
Total: 772
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
690 [1 ]:
691 [3 ]:
692 [20 ]: *****
693 [156]: *****************************************
694 [242]: ****************************************************************
695 [245]: ****************************************************************
696 [251]: ******************************************************************
697 [252]: ******************************************************************
698 [257]: ********************************************************************
699 [121]: ********************************
700 [7 ]: *
701 [2 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00123602 GB
Modelled 29 / 29 reflection profiles on image 693
Modelled 113 / 116 reflection profiles on image 694
Modelled 111 / 116 reflection profiles on image 695
Modelled 126 / 132 reflection profiles on image 696
Modelled 119 / 122 reflection profiles on image 697
Modelled 131 / 136 reflection profiles on image 698
Modelled 107 / 114 reflection profiles on image 699
Modelled 5 / 5 reflection profiles on image 700
Modelled 1 / 2 reflection profiles on image 701
Beginning modelling job 116
Frames: 696 -> 708
Number of reflections
Partial: 4
Full: 794
In ice ring: 0
Total: 798
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
696 [2 ]:
697 [5 ]: *
698 [20 ]: ****
699 [150]: ************************************
700 [274]: *******************************************************************
701 [263]: ****************************************************************
702 [263]: ****************************************************************
703 [278]: ********************************************************************
704 [227]: *******************************************************
705 [88 ]: *********************
706 [6 ]: *
707 [3 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0013284 GB
Modelled 26 / 27 reflection profiles on image 699
Modelled 126 / 140 reflection profiles on image 700
Modelled 125 / 133 reflection profiles on image 701
Modelled 123 / 125 reflection profiles on image 702
Modelled 142 / 146 reflection profiles on image 703
Modelled 128 / 139 reflection profiles on image 704
Modelled 80 / 82 reflection profiles on image 705
Modelled 3 / 3 reflection profiles on image 706
Modelled 2 / 3 reflection profiles on image 707
Beginning modelling job 117
Frames: 702 -> 714
Number of reflections
Partial: 4
Full: 821
In ice ring: 0
Total: 825
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
703 [2 ]:
704 [16 ]: ***
705 [131]: ******************************
706 [245]: *********************************************************
707 [292]: ********************************************************************
708 [284]: ******************************************************************
709 [273]: ***************************************************************
710 [274]: ***************************************************************
711 [137]: *******************************
712 [6 ]: *
713 [2 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00143119 GB
Modelled 22 / 25 reflection profiles on image 705
Modelled 92 / 94 reflection profiles on image 706
Modelled 152 / 155 reflection profiles on image 707
Modelled 136 / 142 reflection profiles on image 708
Modelled 126 / 135 reflection profiles on image 709
Modelled 133 / 137 reflection profiles on image 710
Modelled 125 / 131 reflection profiles on image 711
Modelled 2 / 4 reflection profiles on image 712
Modelled 1 / 2 reflection profiles on image 713
Beginning modelling job 118
Frames: 708 -> 720
Number of reflections
Partial: 67
Full: 1195
In ice ring: 0
Total: 1262
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
709 [2 ]:
710 [16 ]: ***
711 [172]: **************************************
712 [294]: *****************************************************************
713 [301]: ******************************************************************
714 [307]: ********************************************************************
715 [299]: ******************************************************************
716 [293]: ****************************************************************
717 [284]: **************************************************************
718 [251]: *******************************************************
719 [217]: ************************************************
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00155706 GB
Modelled 25 / 26 reflection profiles on image 711
Modelled 137 / 143 reflection profiles on image 712
Modelled 143 / 145 reflection profiles on image 713
Modelled 144 / 153 reflection profiles on image 714
Modelled 158 / 162 reflection profiles on image 715
Modelled 136 / 141 reflection profiles on image 716
Modelled 155 / 158 reflection profiles on image 717
Modelled 113 / 117 reflection profiles on image 718
Modelled 153 / 217 reflection profiles on image 719
Summary of profile model
-------------------------------------------------------------------
ID | Profile | Created | X (px) | Y (px) | Z (im) | # reflections
-------------------------------------------------------------------
0 | 0 | True | 410.50 | 421.17 | 5.00 | 1506
0 | 1 | True | 1231.50 | 421.17 | 5.00 | 1801
0 | 2 | True | 2052.50 | 421.17 | 5.00 | 1595
0 | 3 | True | 410.50 | 1263.50 | 5.00 | 2069
0 | 4 | True | 1231.50 | 1263.50 | 5.00 | 2550
0 | 5 | True | 2052.50 | 1263.50 | 5.00 | 2302
0 | 6 | True | 410.50 | 2105.83 | 5.00 | 1514
0 | 7 | True | 1231.50 | 2105.83 | 5.00 | 1937
0 | 8 | True | 2052.50 | 2105.83 | 5.00 | 1726
0 | 9 | True | 410.50 | 421.17 | 15.00 | 2282
0 | 10 | True | 1231.50 | 421.17 | 15.00 | 2739
0 | 11 | True | 2052.50 | 421.17 | 15.00 | 2416
0 | 12 | True | 410.50 | 1263.50 | 15.00 | 3139
0 | 13 | True | 1231.50 | 1263.50 | 15.00 | 3866
0 | 14 | True | 2052.50 | 1263.50 | 15.00 | 3470
0 | 15 | True | 410.50 | 2105.83 | 15.00 | 2295
0 | 16 | True | 1231.50 | 2105.83 | 15.00 | 2933
0 | 17 | True | 2052.50 | 2105.83 | 15.00 | 2598
0 | 18 | True | 410.50 | 421.17 | 25.00 | 2343
0 | 19 | True | 1231.50 | 421.17 | 25.00 | 2812
0 | 20 | True | 2052.50 | 421.17 | 25.00 | 2449
0 | 21 | True | 410.50 | 1263.50 | 25.00 | 3185
0 | 22 | True | 1231.50 | 1263.50 | 25.00 | 3903
0 | 23 | True | 2052.50 | 1263.50 | 25.00 | 3464
0 | 24 | True | 410.50 | 2105.83 | 25.00 | 2285
0 | 25 | True | 1231.50 | 2105.83 | 25.00 | 2905
0 | 26 | True | 2052.50 | 2105.83 | 25.00 | 2545
0 | 27 | True | 410.50 | 421.17 | 35.00 | 2350
0 | 28 | True | 1231.50 | 421.17 | 35.00 | 2837
0 | 29 | True | 2052.50 | 421.17 | 35.00 | 2467
0 | 30 | True | 410.50 | 1263.50 | 35.00 | 3187
0 | 31 | True | 1231.50 | 1263.50 | 35.00 | 3897
0 | 32 | True | 2052.50 | 1263.50 | 35.00 | 3456
0 | 33 | True | 410.50 | 2105.83 | 35.00 | 2221
0 | 34 | True | 1231.50 | 2105.83 | 35.00 | 2822
0 | 35 | True | 2052.50 | 2105.83 | 35.00 | 2470
0 | 36 | True | 410.50 | 421.17 | 45.00 | 2370
0 | 37 | True | 1231.50 | 421.17 | 45.00 | 2848
0 | 38 | True | 2052.50 | 421.17 | 45.00 | 2461
0 | 39 | True | 410.50 | 1263.50 | 45.00 | 3153
0 | 40 | True | 1231.50 | 1263.50 | 45.00 | 3831
0 | 41 | True | 2052.50 | 1263.50 | 45.00 | 3392
0 | 42 | True | 410.50 | 2105.83 | 45.00 | 2125
0 | 43 | True | 1231.50 | 2105.83 | 45.00 | 2688
0 | 44 | True | 2052.50 | 2105.83 | 45.00 | 2363
0 | 45 | True | 410.50 | 421.17 | 55.00 | 2399
0 | 46 | True | 1231.50 | 421.17 | 55.00 | 2883
0 | 47 | True | 2052.50 | 421.17 | 55.00 | 2478
0 | 48 | True | 410.50 | 1263.50 | 55.00 | 3150
0 | 49 | True | 1231.50 | 1263.50 | 55.00 | 3818
0 | 50 | True | 2052.50 | 1263.50 | 55.00 | 3371
0 | 51 | True | 410.50 | 2105.83 | 55.00 | 2074
0 | 52 | True | 1231.50 | 2105.83 | 55.00 | 2617
0 | 53 | True | 2052.50 | 2105.83 | 55.00 | 2304
0 | 54 | True | 410.50 | 421.17 | 65.00 | 2449
0 | 55 | True | 1231.50 | 421.17 | 65.00 | 2955
0 | 56 | True | 2052.50 | 421.17 | 65.00 | 2514
0 | 57 | True | 410.50 | 1263.50 | 65.00 | 3177
0 | 58 | True | 1231.50 | 1263.50 | 65.00 | 3850
0 | 59 | True | 2052.50 | 1263.50 | 65.00 | 3375
0 | 60 | True | 410.50 | 2105.83 | 65.00 | 2059
0 | 61 | True | 1231.50 | 2105.83 | 65.00 | 2583
0 | 62 | True | 2052.50 | 2105.83 | 65.00 | 2273
0 | 63 | True | 410.50 | 421.17 | 75.00 | 2556
0 | 64 | True | 1231.50 | 421.17 | 75.00 | 3095
0 | 65 | True | 2052.50 | 421.17 | 75.00 | 2626
0 | 66 | True | 410.50 | 1263.50 | 75.00 | 3222
0 | 67 | True | 1231.50 | 1263.50 | 75.00 | 3904
0 | 68 | True | 2052.50 | 1263.50 | 75.00 | 3408
0 | 69 | True | 410.50 | 2105.83 | 75.00 | 2046
0 | 70 | True | 1231.50 | 2105.83 | 75.00 | 2557
0 | 71 | True | 2052.50 | 2105.83 | 75.00 | 2244
0 | 72 | True | 410.50 | 421.17 | 85.00 | 2641
0 | 73 | True | 1231.50 | 421.17 | 85.00 | 3210
0 | 74 | True | 2052.50 | 421.17 | 85.00 | 2721
0 | 75 | True | 410.50 | 1263.50 | 85.00 | 3278
0 | 76 | True | 1231.50 | 1263.50 | 85.00 | 3962
0 | 77 | True | 2052.50 | 1263.50 | 85.00 | 3451
0 | 78 | True | 410.50 | 2105.83 | 85.00 | 2041
0 | 79 | True | 1231.50 | 2105.83 | 85.00 | 2534
0 | 80 | True | 2052.50 | 2105.83 | 85.00 | 2237
0 | 81 | True | 410.50 | 421.17 | 95.00 | 2788
0 | 82 | True | 1231.50 | 421.17 | 95.00 | 3368
0 | 83 | True | 2052.50 | 421.17 | 95.00 | 2851
0 | 84 | True | 410.50 | 1263.50 | 95.00 | 3376
0 | 85 | True | 1231.50 | 1263.50 | 95.00 | 4045
0 | 86 | True | 2052.50 | 1263.50 | 95.00 | 3510
0 | 87 | True | 410.50 | 2105.83 | 95.00 | 2056
0 | 88 | True | 1231.50 | 2105.83 | 95.00 | 2522
0 | 89 | True | 2052.50 | 2105.83 | 95.00 | 2230
0 | 90 | True | 410.50 | 421.17 | 105.00 | 2797
0 | 91 | True | 1231.50 | 421.17 | 105.00 | 3371
0 | 92 | True | 2052.50 | 421.17 | 105.00 | 2864
0 | 93 | True | 410.50 | 1263.50 | 105.00 | 3367
0 | 94 | True | 1231.50 | 1263.50 | 105.00 | 4020
0 | 95 | True | 2052.50 | 1263.50 | 105.00 | 3494
0 | 96 | True | 410.50 | 2105.83 | 105.00 | 2012
0 | 97 | True | 1231.50 | 2105.83 | 105.00 | 2455
0 | 98 | True | 2052.50 | 2105.83 | 105.00 | 2181
0 | 99 | True | 410.50 | 421.17 | 115.00 | 2889
0 | 100 | True | 1231.50 | 421.17 | 115.00 | 3453
0 | 101 | True | 2052.50 | 421.17 | 115.00 | 2941
0 | 102 | True | 410.50 | 1263.50 | 115.00 | 3386
0 | 103 | True | 1231.50 | 1263.50 | 115.00 | 4023
0 | 104 | True | 2052.50 | 1263.50 | 115.00 | 3495
0 | 105 | True | 410.50 | 2105.83 | 115.00 | 1989
0 | 106 | True | 1231.50 | 2105.83 | 115.00 | 2419
0 | 107 | True | 2052.50 | 2105.83 | 115.00 | 2145
0 | 108 | True | 410.50 | 421.17 | 125.00 | 2881
0 | 109 | True | 1231.50 | 421.17 | 125.00 | 3417
0 | 110 | True | 2052.50 | 421.17 | 125.00 | 2904
0 | 111 | True | 410.50 | 1263.50 | 125.00 | 3316
0 | 112 | True | 1231.50 | 1263.50 | 125.00 | 3919
0 | 113 | True | 2052.50 | 1263.50 | 125.00 | 3390
0 | 114 | True | 410.50 | 2105.83 | 125.00 | 1948
0 | 115 | True | 1231.50 | 2105.83 | 125.00 | 2363
0 | 116 | True | 2052.50 | 2105.83 | 125.00 | 2092
0 | 117 | True | 410.50 | 421.17 | 135.00 | 2935
0 | 118 | True | 1231.50 | 421.17 | 135.00 | 3460
0 | 119 | True | 2052.50 | 421.17 | 135.00 | 2929
0 | 120 | True | 410.50 | 1263.50 | 135.00 | 3339
0 | 121 | True | 1231.50 | 1263.50 | 135.00 | 3925
0 | 122 | True | 2052.50 | 1263.50 | 135.00 | 3377
0 | 123 | True | 410.50 | 2105.83 | 135.00 | 1978
0 | 124 | True | 1231.50 | 2105.83 | 135.00 | 2385
0 | 125 | True | 2052.50 | 2105.83 | 135.00 | 2099
0 | 126 | True | 410.50 | 421.17 | 145.00 | 2890
0 | 127 | True | 1231.50 | 421.17 | 145.00 | 3400
0 | 128 | True | 2052.50 | 421.17 | 145.00 | 2879
0 | 129 | True | 410.50 | 1263.50 | 145.00 | 3293
0 | 130 | True | 1231.50 | 1263.50 | 145.00 | 3858
0 | 131 | True | 2052.50 | 1263.50 | 145.00 | 3318
0 | 132 | True | 410.50 | 2105.83 | 145.00 | 2004
0 | 133 | True | 1231.50 | 2105.83 | 145.00 | 2400
0 | 134 | True | 2052.50 | 2105.83 | 145.00 | 2106
0 | 135 | True | 410.50 | 421.17 | 155.00 | 2829
0 | 136 | True | 1231.50 | 421.17 | 155.00 | 3334
0 | 137 | True | 2052.50 | 421.17 | 155.00 | 2824
0 | 138 | True | 410.50 | 1263.50 | 155.00 | 3231
0 | 139 | True | 1231.50 | 1263.50 | 155.00 | 3793
0 | 140 | True | 2052.50 | 1263.50 | 155.00 | 3267
0 | 141 | True | 410.50 | 2105.83 | 155.00 | 1985
0 | 142 | True | 1231.50 | 2105.83 | 155.00 | 2389
0 | 143 | True | 2052.50 | 2105.83 | 155.00 | 2094
0 | 144 | True | 410.50 | 421.17 | 165.00 | 2807
0 | 145 | True | 1231.50 | 421.17 | 165.00 | 3310
0 | 146 | True | 2052.50 | 421.17 | 165.00 | 2786
0 | 147 | True | 410.50 | 1263.50 | 165.00 | 3208
0 | 148 | True | 1231.50 | 1263.50 | 165.00 | 3762
0 | 149 | True | 2052.50 | 1263.50 | 165.00 | 3224
0 | 150 | True | 410.50 | 2105.83 | 165.00 | 2019
0 | 151 | True | 1231.50 | 2105.83 | 165.00 | 2433
0 | 152 | True | 2052.50 | 2105.83 | 165.00 | 2116
0 | 153 | True | 410.50 | 421.17 | 175.00 | 2713
0 | 154 | True | 1231.50 | 421.17 | 175.00 | 3206
0 | 155 | True | 2052.50 | 421.17 | 175.00 | 2684
0 | 156 | True | 410.50 | 1263.50 | 175.00 | 3099
0 | 157 | True | 1231.50 | 1263.50 | 175.00 | 3641
0 | 158 | True | 2052.50 | 1263.50 | 175.00 | 3109
0 | 159 | True | 410.50 | 2105.83 | 175.00 | 2013
0 | 160 | True | 1231.50 | 2105.83 | 175.00 | 2430
0 | 161 | True | 2052.50 | 2105.83 | 175.00 | 2106
0 | 162 | True | 410.50 | 421.17 | 185.00 | 2677
0 | 163 | True | 1231.50 | 421.17 | 185.00 | 3163
0 | 164 | True | 2052.50 | 421.17 | 185.00 | 2659
0 | 165 | True | 410.50 | 1263.50 | 185.00 | 3057
0 | 166 | True | 1231.50 | 1263.50 | 185.00 | 3586
0 | 167 | True | 2052.50 | 1263.50 | 185.00 | 3071
0 | 168 | True | 410.50 | 2105.83 | 185.00 | 2062
0 | 169 | True | 1231.50 | 2105.83 | 185.00 | 2477
0 | 170 | True | 2052.50 | 2105.83 | 185.00 | 2143
0 | 171 | True | 410.50 | 421.17 | 195.00 | 2585
0 | 172 | True | 1231.50 | 421.17 | 195.00 | 3055
0 | 173 | True | 2052.50 | 421.17 | 195.00 | 2580
0 | 174 | True | 410.50 | 1263.50 | 195.00 | 2966
0 | 175 | True | 1231.50 | 1263.50 | 195.00 | 3482
0 | 176 | True | 2052.50 | 1263.50 | 195.00 | 2991
0 | 177 | True | 410.50 | 2105.83 | 195.00 | 2061
0 | 178 | True | 1231.50 | 2105.83 | 195.00 | 2473
0 | 179 | True | 2052.50 | 2105.83 | 195.00 | 2137
0 | 180 | True | 410.50 | 421.17 | 205.00 | 2496
0 | 181 | True | 1231.50 | 421.17 | 205.00 | 2964
0 | 182 | True | 2052.50 | 421.17 | 205.00 | 2499
0 | 183 | True | 410.50 | 1263.50 | 205.00 | 2878
0 | 184 | True | 1231.50 | 1263.50 | 205.00 | 3402
0 | 185 | True | 2052.50 | 1263.50 | 205.00 | 2913
0 | 186 | True | 410.50 | 2105.83 | 205.00 | 2047
0 | 187 | True | 1231.50 | 2105.83 | 205.00 | 2485
0 | 188 | True | 2052.50 | 2105.83 | 205.00 | 2130
0 | 189 | True | 410.50 | 421.17 | 215.00 | 2452
0 | 190 | True | 1231.50 | 421.17 | 215.00 | 2894
0 | 191 | True | 2052.50 | 421.17 | 215.00 | 2415
0 | 192 | True | 410.50 | 1263.50 | 215.00 | 2871
0 | 193 | True | 1231.50 | 1263.50 | 215.00 | 3373
0 | 194 | True | 2052.50 | 1263.50 | 215.00 | 2859
0 | 195 | True | 410.50 | 2105.83 | 215.00 | 2080
0 | 196 | True | 1231.50 | 2105.83 | 215.00 | 2500
0 | 197 | True | 2052.50 | 2105.83 | 215.00 | 2112
0 | 198 | True | 410.50 | 421.17 | 225.00 | 2350
0 | 199 | True | 1231.50 | 421.17 | 225.00 | 2789
0 | 200 | True | 2052.50 | 421.17 | 225.00 | 2324
0 | 201 | True | 410.50 | 1263.50 | 225.00 | 2813
0 | 202 | True | 1231.50 | 1263.50 | 225.00 | 3322
0 | 203 | True | 2052.50 | 1263.50 | 225.00 | 2813
0 | 204 | True | 410.50 | 2105.83 | 225.00 | 2082
0 | 205 | True | 1231.50 | 2105.83 | 225.00 | 2509
0 | 206 | True | 2052.50 | 2105.83 | 225.00 | 2119
0 | 207 | True | 410.50 | 421.17 | 235.00 | 2386
0 | 208 | True | 1231.50 | 421.17 | 235.00 | 2811
0 | 209 | True | 2052.50 | 421.17 | 235.00 | 2349
0 | 210 | True | 410.50 | 1263.50 | 235.00 | 2896
0 | 211 | True | 1231.50 | 1263.50 | 235.00 | 3409
0 | 212 | True | 2052.50 | 1263.50 | 235.00 | 2895
0 | 213 | True | 410.50 | 2105.83 | 235.00 | 2135
0 | 214 | True | 1231.50 | 2105.83 | 235.00 | 2557
0 | 215 | True | 2052.50 | 2105.83 | 235.00 | 2159
0 | 216 | True | 410.50 | 421.17 | 245.00 | 2321
0 | 217 | True | 1231.50 | 421.17 | 245.00 | 2766
0 | 218 | True | 2052.50 | 421.17 | 245.00 | 2333
0 | 219 | True | 410.50 | 1263.50 | 245.00 | 2880
0 | 220 | True | 1231.50 | 1263.50 | 245.00 | 3423
0 | 221 | True | 2052.50 | 1263.50 | 245.00 | 2926
0 | 222 | True | 410.50 | 2105.83 | 245.00 | 2153
0 | 223 | True | 1231.50 | 2105.83 | 245.00 | 2607
0 | 224 | True | 2052.50 | 2105.83 | 245.00 | 2213
0 | 225 | True | 410.50 | 421.17 | 255.00 | 2358
0 | 226 | True | 1231.50 | 421.17 | 255.00 | 2814
0 | 227 | True | 2052.50 | 421.17 | 255.00 | 2393
0 | 228 | True | 410.50 | 1263.50 | 255.00 | 2946
0 | 229 | True | 1231.50 | 1263.50 | 255.00 | 3507
0 | 230 | True | 2052.50 | 1263.50 | 255.00 | 3015
0 | 231 | True | 410.50 | 2105.83 | 255.00 | 2187
0 | 232 | True | 1231.50 | 2105.83 | 255.00 | 2657
0 | 233 | True | 2052.50 | 2105.83 | 255.00 | 2266
0 | 234 | True | 410.50 | 421.17 | 265.00 | 2359
0 | 235 | True | 1231.50 | 421.17 | 265.00 | 2815
0 | 236 | True | 2052.50 | 421.17 | 265.00 | 2389
0 | 237 | True | 410.50 | 1263.50 | 265.00 | 2995
0 | 238 | True | 1231.50 | 1263.50 | 265.00 | 3553
0 | 239 | True | 2052.50 | 1263.50 | 265.00 | 3038
0 | 240 | True | 410.50 | 2105.83 | 265.00 | 2249
0 | 241 | True | 1231.50 | 2105.83 | 265.00 | 2725
0 | 242 | True | 2052.50 | 2105.83 | 265.00 | 2304
0 | 243 | True | 410.50 | 421.17 | 275.00 | 2336
0 | 244 | True | 1231.50 | 421.17 | 275.00 | 2762
0 | 245 | True | 2052.50 | 421.17 | 275.00 | 2356
0 | 246 | True | 410.50 | 1263.50 | 275.00 | 3003
0 | 247 | True | 1231.50 | 1263.50 | 275.00 | 3529
0 | 248 | True | 2052.50 | 1263.50 | 275.00 | 3022
0 | 249 | True | 410.50 | 2105.83 | 275.00 | 2259
0 | 250 | True | 1231.50 | 2105.83 | 275.00 | 2716
0 | 251 | True | 2052.50 | 2105.83 | 275.00 | 2285
0 | 252 | True | 410.50 | 421.17 | 285.00 | 2299
0 | 253 | True | 1231.50 | 421.17 | 285.00 | 2706
0 | 254 | True | 2052.50 | 421.17 | 285.00 | 2308
0 | 255 | True | 410.50 | 1263.50 | 285.00 | 3046
0 | 256 | True | 1231.50 | 1263.50 | 285.00 | 3550
0 | 257 | True | 2052.50 | 1263.50 | 285.00 | 3027
0 | 258 | True | 410.50 | 2105.83 | 285.00 | 2346
0 | 259 | True | 1231.50 | 2105.83 | 285.00 | 2795
0 | 260 | True | 2052.50 | 2105.83 | 285.00 | 2331
0 | 261 | True | 410.50 | 421.17 | 295.00 | 2245
0 | 262 | True | 1231.50 | 421.17 | 295.00 | 2651
0 | 263 | True | 2052.50 | 421.17 | 295.00 | 2276
0 | 264 | True | 410.50 | 1263.50 | 295.00 | 3040
0 | 265 | True | 1231.50 | 1263.50 | 295.00 | 3548
0 | 266 | True | 2052.50 | 1263.50 | 295.00 | 3028
0 | 267 | True | 410.50 | 2105.83 | 295.00 | 2375
0 | 268 | True | 1231.50 | 2105.83 | 295.00 | 2830
0 | 269 | True | 2052.50 | 2105.83 | 295.00 | 2363
0 | 270 | True | 410.50 | 421.17 | 305.00 | 2241
0 | 271 | True | 1231.50 | 421.17 | 305.00 | 2663
0 | 272 | True | 2052.50 | 421.17 | 305.00 | 2290
0 | 273 | True | 410.50 | 1263.50 | 305.00 | 3066
0 | 274 | True | 1231.50 | 1263.50 | 305.00 | 3597
0 | 275 | True | 2052.50 | 1263.50 | 305.00 | 3075
0 | 276 | True | 410.50 | 2105.83 | 305.00 | 2426
0 | 277 | True | 1231.50 | 2105.83 | 305.00 | 2900
0 | 278 | True | 2052.50 | 2105.83 | 305.00 | 2440
0 | 279 | True | 410.50 | 421.17 | 315.00 | 2239
0 | 280 | True | 1231.50 | 421.17 | 315.00 | 2665
0 | 281 | True | 2052.50 | 421.17 | 315.00 | 2286
0 | 282 | True | 410.50 | 1263.50 | 315.00 | 3091
0 | 283 | True | 1231.50 | 1263.50 | 315.00 | 3637
0 | 284 | True | 2052.50 | 1263.50 | 315.00 | 3103
0 | 285 | True | 410.50 | 2105.83 | 315.00 | 2460
0 | 286 | True | 1231.50 | 2105.83 | 315.00 | 2944
0 | 287 | True | 2052.50 | 2105.83 | 315.00 | 2473
0 | 288 | True | 410.50 | 421.17 | 325.00 | 2190
0 | 289 | True | 1231.50 | 421.17 | 325.00 | 2619
0 | 290 | True | 2052.50 | 421.17 | 325.00 | 2263
0 | 291 | True | 410.50 | 1263.50 | 325.00 | 3090
0 | 292 | True | 1231.50 | 1263.50 | 325.00 | 3645
0 | 293 | True | 2052.50 | 1263.50 | 325.00 | 3121
0 | 294 | True | 410.50 | 2105.83 | 325.00 | 2468
0 | 295 | True | 1231.50 | 2105.83 | 325.00 | 2954
0 | 296 | True | 2052.50 | 2105.83 | 325.00 | 2485
0 | 297 | True | 410.50 | 421.17 | 335.00 | 2171
0 | 298 | True | 1231.50 | 421.17 | 335.00 | 2593
0 | 299 | True | 2052.50 | 421.17 | 335.00 | 2243
0 | 300 | True | 410.50 | 1263.50 | 335.00 | 3133
0 | 301 | True | 1231.50 | 1263.50 | 335.00 | 3689
0 | 302 | True | 2052.50 | 1263.50 | 335.00 | 3147
0 | 303 | True | 410.50 | 2105.83 | 335.00 | 2494
0 | 304 | True | 1231.50 | 2105.83 | 335.00 | 2976
0 | 305 | True | 2052.50 | 2105.83 | 335.00 | 2485
0 | 306 | True | 410.50 | 421.17 | 345.00 | 2158
0 | 307 | True | 1231.50 | 421.17 | 345.00 | 2585
0 | 308 | True | 2052.50 | 421.17 | 345.00 | 2247
0 | 309 | True | 410.50 | 1263.50 | 345.00 | 3147
0 | 310 | True | 1231.50 | 1263.50 | 345.00 | 3701
0 | 311 | True | 2052.50 | 1263.50 | 345.00 | 3176
0 | 312 | True | 410.50 | 2105.83 | 345.00 | 2489
0 | 313 | True | 1231.50 | 2105.83 | 345.00 | 2958
0 | 314 | True | 2052.50 | 2105.83 | 345.00 | 2482
0 | 315 | True | 410.50 | 421.17 | 355.00 | 2242
0 | 316 | True | 1231.50 | 421.17 | 355.00 | 2677
0 | 317 | True | 2052.50 | 421.17 | 355.00 | 2334
0 | 318 | True | 410.50 | 1263.50 | 355.00 | 3237
0 | 319 | True | 1231.50 | 1263.50 | 355.00 | 3794
0 | 320 | True | 2052.50 | 1263.50 | 355.00 | 3279
0 | 321 | True | 410.50 | 2105.83 | 355.00 | 2509
0 | 322 | True | 1231.50 | 2105.83 | 355.00 | 2981
0 | 323 | True | 2052.50 | 2105.83 | 355.00 | 2515
0 | 324 | True | 410.50 | 421.17 | 365.00 | 2271
0 | 325 | True | 1231.50 | 421.17 | 365.00 | 2721
0 | 326 | True | 2052.50 | 421.17 | 365.00 | 2366
0 | 327 | True | 410.50 | 1263.50 | 365.00 | 3214
0 | 328 | True | 1231.50 | 1263.50 | 365.00 | 3780
0 | 329 | True | 2052.50 | 1263.50 | 365.00 | 3280
0 | 330 | True | 410.50 | 2105.83 | 365.00 | 2448
0 | 331 | True | 1231.50 | 2105.83 | 365.00 | 2920
0 | 332 | True | 2052.50 | 2105.83 | 365.00 | 2465
0 | 333 | True | 410.50 | 421.17 | 375.00 | 2285
0 | 334 | True | 1231.50 | 421.17 | 375.00 | 2748
0 | 335 | True | 2052.50 | 421.17 | 375.00 | 2402
0 | 336 | True | 410.50 | 1263.50 | 375.00 | 3204
0 | 337 | True | 1231.50 | 1263.50 | 375.00 | 3786
0 | 338 | True | 2052.50 | 1263.50 | 375.00 | 3295
0 | 339 | True | 410.50 | 2105.83 | 375.00 | 2397
0 | 340 | True | 1231.50 | 2105.83 | 375.00 | 2877
0 | 341 | True | 2052.50 | 2105.83 | 375.00 | 2430
0 | 342 | True | 410.50 | 421.17 | 385.00 | 2246
0 | 343 | True | 1231.50 | 421.17 | 385.00 | 2710
0 | 344 | True | 2052.50 | 421.17 | 385.00 | 2371
0 | 345 | True | 410.50 | 1263.50 | 385.00 | 3145
0 | 346 | True | 1231.50 | 1263.50 | 385.00 | 3711
0 | 347 | True | 2052.50 | 1263.50 | 385.00 | 3239
0 | 348 | True | 410.50 | 2105.83 | 385.00 | 2331
0 | 349 | True | 1231.50 | 2105.83 | 385.00 | 2782
0 | 350 | True | 2052.50 | 2105.83 | 385.00 | 2358
0 | 351 | True | 410.50 | 421.17 | 395.00 | 2258
0 | 352 | True | 1231.50 | 421.17 | 395.00 | 2758
0 | 353 | True | 2052.50 | 421.17 | 395.00 | 2420
0 | 354 | True | 410.50 | 1263.50 | 395.00 | 3167
0 | 355 | True | 1231.50 | 1263.50 | 395.00 | 3756
0 | 356 | True | 2052.50 | 1263.50 | 395.00 | 3285
0 | 357 | True | 410.50 | 2105.83 | 395.00 | 2316
0 | 358 | True | 1231.50 | 2105.83 | 395.00 | 2766
0 | 359 | True | 2052.50 | 2105.83 | 395.00 | 2348
0 | 360 | True | 410.50 | 421.17 | 405.00 | 2288
0 | 361 | True | 1231.50 | 421.17 | 405.00 | 2799
0 | 362 | True | 2052.50 | 421.17 | 405.00 | 2456
0 | 363 | True | 410.50 | 1263.50 | 405.00 | 3146
0 | 364 | True | 1231.50 | 1263.50 | 405.00 | 3731
0 | 365 | True | 2052.50 | 1263.50 | 405.00 | 3276
0 | 366 | True | 410.50 | 2105.83 | 405.00 | 2241
0 | 367 | True | 1231.50 | 2105.83 | 405.00 | 2670
0 | 368 | True | 2052.50 | 2105.83 | 405.00 | 2275
0 | 369 | True | 410.50 | 421.17 | 415.00 | 2288
0 | 370 | True | 1231.50 | 421.17 | 415.00 | 2827
0 | 371 | True | 2052.50 | 421.17 | 415.00 | 2491
0 | 372 | True | 410.50 | 1263.50 | 415.00 | 3054
0 | 373 | True | 1231.50 | 1263.50 | 415.00 | 3665
0 | 374 | True | 2052.50 | 1263.50 | 415.00 | 3238
0 | 375 | True | 410.50 | 2105.83 | 415.00 | 2122
0 | 376 | True | 1231.50 | 2105.83 | 415.00 | 2551
0 | 377 | True | 2052.50 | 2105.83 | 415.00 | 2196
0 | 378 | True | 410.50 | 421.17 | 425.00 | 2322
0 | 379 | True | 1231.50 | 421.17 | 425.00 | 2865
0 | 380 | True | 2052.50 | 421.17 | 425.00 | 2533
0 | 381 | True | 410.50 | 1263.50 | 425.00 | 3002
0 | 382 | True | 1231.50 | 1263.50 | 425.00 | 3612
0 | 383 | True | 2052.50 | 1263.50 | 425.00 | 3209
0 | 384 | True | 410.50 | 2105.83 | 425.00 | 2027
0 | 385 | True | 1231.50 | 2105.83 | 425.00 | 2432
0 | 386 | True | 2052.50 | 2105.83 | 425.00 | 2117
0 | 387 | True | 410.50 | 421.17 | 435.00 | 2338
0 | 388 | True | 1231.50 | 421.17 | 435.00 | 2914
0 | 389 | True | 2052.50 | 421.17 | 435.00 | 2584
0 | 390 | True | 410.50 | 1263.50 | 435.00 | 2942
0 | 391 | True | 1231.50 | 1263.50 | 435.00 | 3572
0 | 392 | True | 2052.50 | 1263.50 | 435.00 | 3181
0 | 393 | True | 410.50 | 2105.83 | 435.00 | 1954
0 | 394 | True | 1231.50 | 2105.83 | 435.00 | 2342
0 | 395 | True | 2052.50 | 2105.83 | 435.00 | 2040
0 | 396 | True | 410.50 | 421.17 | 445.00 | 2367
0 | 397 | True | 1231.50 | 421.17 | 445.00 | 2971
0 | 398 | True | 2052.50 | 421.17 | 445.00 | 2621
0 | 399 | True | 410.50 | 1263.50 | 445.00 | 2936
0 | 400 | True | 1231.50 | 1263.50 | 445.00 | 3580
0 | 401 | True | 2052.50 | 1263.50 | 445.00 | 3181
0 | 402 | True | 410.50 | 2105.83 | 445.00 | 1924
0 | 403 | True | 1231.50 | 2105.83 | 445.00 | 2297
0 | 404 | True | 2052.50 | 2105.83 | 445.00 | 1993
0 | 405 | True | 410.50 | 421.17 | 455.00 | 2448
0 | 406 | True | 1231.50 | 421.17 | 455.00 | 3071
0 | 407 | True | 2052.50 | 421.17 | 455.00 | 2718
0 | 408 | True | 410.50 | 1263.50 | 455.00 | 2987
0 | 409 | True | 1231.50 | 1263.50 | 455.00 | 3640
0 | 410 | True | 2052.50 | 1263.50 | 455.00 | 3248
0 | 411 | True | 410.50 | 2105.83 | 455.00 | 1937
0 | 412 | True | 1231.50 | 2105.83 | 455.00 | 2293
0 | 413 | True | 2052.50 | 2105.83 | 455.00 | 2003
0 | 414 | True | 410.50 | 421.17 | 465.00 | 2496
0 | 415 | True | 1231.50 | 421.17 | 465.00 | 3116
0 | 416 | True | 2052.50 | 421.17 | 465.00 | 2744
0 | 417 | True | 410.50 | 1263.50 | 465.00 | 3003
0 | 418 | True | 1231.50 | 1263.50 | 465.00 | 3653
0 | 419 | True | 2052.50 | 1263.50 | 465.00 | 3245
0 | 420 | True | 410.50 | 2105.83 | 465.00 | 1900
0 | 421 | True | 1231.50 | 2105.83 | 465.00 | 2243
0 | 422 | True | 2052.50 | 2105.83 | 465.00 | 1959
0 | 423 | True | 410.50 | 421.17 | 475.00 | 2526
0 | 424 | True | 1231.50 | 421.17 | 475.00 | 3141
0 | 425 | True | 2052.50 | 421.17 | 475.00 | 2766
0 | 426 | True | 410.50 | 1263.50 | 475.00 | 2978
0 | 427 | True | 1231.50 | 1263.50 | 475.00 | 3620
0 | 428 | True | 2052.50 | 1263.50 | 475.00 | 3212
0 | 429 | True | 410.50 | 2105.83 | 475.00 | 1866
0 | 430 | True | 1231.50 | 2105.83 | 475.00 | 2193
0 | 431 | True | 2052.50 | 2105.83 | 475.00 | 1912
0 | 432 | True | 410.50 | 421.17 | 485.00 | 2461
0 | 433 | True | 1231.50 | 421.17 | 485.00 | 3083
0 | 434 | True | 2052.50 | 421.17 | 485.00 | 2714
0 | 435 | True | 410.50 | 1263.50 | 485.00 | 2868
0 | 436 | True | 1231.50 | 1263.50 | 485.00 | 3515
0 | 437 | True | 2052.50 | 1263.50 | 485.00 | 3112
0 | 438 | True | 410.50 | 2105.83 | 485.00 | 1810
0 | 439 | True | 1231.50 | 2105.83 | 485.00 | 2142
0 | 440 | True | 2052.50 | 2105.83 | 485.00 | 1862
0 | 441 | True | 410.50 | 421.17 | 495.00 | 2473
0 | 442 | True | 1231.50 | 421.17 | 495.00 | 3095
0 | 443 | True | 2052.50 | 421.17 | 495.00 | 2737
0 | 444 | True | 410.50 | 1263.50 | 495.00 | 2845
0 | 445 | True | 1231.50 | 1263.50 | 495.00 | 3491
0 | 446 | True | 2052.50 | 1263.50 | 495.00 | 3108
0 | 447 | True | 410.50 | 2105.83 | 495.00 | 1803
0 | 448 | True | 1231.50 | 2105.83 | 495.00 | 2144
0 | 449 | True | 2052.50 | 2105.83 | 495.00 | 1877
0 | 450 | True | 410.50 | 421.17 | 505.00 | 2502
0 | 451 | True | 1231.50 | 421.17 | 505.00 | 3096
0 | 452 | True | 2052.50 | 421.17 | 505.00 | 2752
0 | 453 | True | 410.50 | 1263.50 | 505.00 | 2870
0 | 454 | True | 1231.50 | 1263.50 | 505.00 | 3488
0 | 455 | True | 2052.50 | 1263.50 | 505.00 | 3121
0 | 456 | True | 410.50 | 2105.83 | 505.00 | 1842
0 | 457 | True | 1231.50 | 2105.83 | 505.00 | 2181
0 | 458 | True | 2052.50 | 2105.83 | 505.00 | 1916
0 | 459 | True | 410.50 | 421.17 | 515.00 | 2514
0 | 460 | True | 1231.50 | 421.17 | 515.00 | 3078
0 | 461 | True | 2052.50 | 421.17 | 515.00 | 2728
0 | 462 | True | 410.50 | 1263.50 | 515.00 | 2876
0 | 463 | True | 1231.50 | 1263.50 | 515.00 | 3466
0 | 464 | True | 2052.50 | 1263.50 | 515.00 | 3096
0 | 465 | True | 410.50 | 2105.83 | 515.00 | 1870
0 | 466 | True | 1231.50 | 2105.83 | 515.00 | 2220
0 | 467 | True | 2052.50 | 2105.83 | 515.00 | 1938
0 | 468 | True | 410.50 | 421.17 | 525.00 | 2482
0 | 469 | True | 1231.50 | 421.17 | 525.00 | 3034
0 | 470 | True | 2052.50 | 421.17 | 525.00 | 2695
0 | 471 | True | 410.50 | 1263.50 | 525.00 | 2856
0 | 472 | True | 1231.50 | 1263.50 | 525.00 | 3430
0 | 473 | True | 2052.50 | 1263.50 | 525.00 | 3069
0 | 474 | True | 410.50 | 2105.83 | 525.00 | 1917
0 | 475 | True | 1231.50 | 2105.83 | 525.00 | 2270
0 | 476 | True | 2052.50 | 2105.83 | 525.00 | 1978
0 | 477 | True | 410.50 | 421.17 | 535.00 | 2390
0 | 478 | True | 1231.50 | 421.17 | 535.00 | 2962
0 | 479 | True | 2052.50 | 421.17 | 535.00 | 2636
0 | 480 | True | 410.50 | 1263.50 | 535.00 | 2760
0 | 481 | True | 1231.50 | 1263.50 | 535.00 | 3351
0 | 482 | True | 2052.50 | 1263.50 | 535.00 | 3003
0 | 483 | True | 410.50 | 2105.83 | 535.00 | 1894
0 | 484 | True | 1231.50 | 2105.83 | 535.00 | 2270
0 | 485 | True | 2052.50 | 2105.83 | 535.00 | 1985
0 | 486 | True | 410.50 | 421.17 | 545.00 | 2361
0 | 487 | True | 1231.50 | 421.17 | 545.00 | 2950
0 | 488 | True | 2052.50 | 421.17 | 545.00 | 2640
0 | 489 | True | 410.50 | 1263.50 | 545.00 | 2721
0 | 490 | True | 1231.50 | 1263.50 | 545.00 | 3333
0 | 491 | True | 2052.50 | 1263.50 | 545.00 | 3002
0 | 492 | True | 410.50 | 2105.83 | 545.00 | 1882
0 | 493 | True | 1231.50 | 2105.83 | 545.00 | 2269
0 | 494 | True | 2052.50 | 2105.83 | 545.00 | 2000
0 | 495 | True | 410.50 | 421.17 | 555.00 | 2278
0 | 496 | True | 1231.50 | 421.17 | 555.00 | 2864
0 | 497 | True | 2052.50 | 421.17 | 555.00 | 2562
0 | 498 | True | 410.50 | 1263.50 | 555.00 | 2643
0 | 499 | True | 1231.50 | 1263.50 | 555.00 | 3260
0 | 500 | True | 2052.50 | 1263.50 | 555.00 | 2936
0 | 501 | True | 410.50 | 2105.83 | 555.00 | 1873
0 | 502 | True | 1231.50 | 2105.83 | 555.00 | 2287
0 | 503 | True | 2052.50 | 2105.83 | 555.00 | 2022
0 | 504 | True | 410.50 | 421.17 | 565.00 | 2297
0 | 505 | True | 1231.50 | 421.17 | 565.00 | 2884
0 | 506 | True | 2052.50 | 421.17 | 565.00 | 2558
0 | 507 | True | 410.50 | 1263.50 | 565.00 | 2668
0 | 508 | True | 1231.50 | 1263.50 | 565.00 | 3295
0 | 509 | True | 2052.50 | 1263.50 | 565.00 | 2939
0 | 510 | True | 410.50 | 2105.83 | 565.00 | 1921
0 | 511 | True | 1231.50 | 2105.83 | 565.00 | 2361
0 | 512 | True | 2052.50 | 2105.83 | 565.00 | 2064
0 | 513 | True | 410.50 | 421.17 | 575.00 | 2258
0 | 514 | True | 1231.50 | 421.17 | 575.00 | 2846
0 | 515 | True | 2052.50 | 421.17 | 575.00 | 2518
0 | 516 | True | 410.50 | 1263.50 | 575.00 | 2678
0 | 517 | True | 1231.50 | 1263.50 | 575.00 | 3318
0 | 518 | True | 2052.50 | 1263.50 | 575.00 | 2955
0 | 519 | True | 410.50 | 2105.83 | 575.00 | 1964
0 | 520 | True | 1231.50 | 2105.83 | 575.00 | 2440
0 | 521 | True | 2052.50 | 2105.83 | 575.00 | 2139
0 | 522 | True | 410.50 | 421.17 | 585.00 | 2225
0 | 523 | True | 1231.50 | 421.17 | 585.00 | 2803
0 | 524 | True | 2052.50 | 421.17 | 585.00 | 2468
0 | 525 | True | 410.50 | 1263.50 | 585.00 | 2664
0 | 526 | True | 1231.50 | 1263.50 | 585.00 | 3304
0 | 527 | True | 2052.50 | 1263.50 | 585.00 | 2935
0 | 528 | True | 410.50 | 2105.83 | 585.00 | 1951
0 | 529 | True | 1231.50 | 2105.83 | 585.00 | 2432
0 | 530 | True | 2052.50 | 2105.83 | 585.00 | 2126
0 | 531 | True | 410.50 | 421.17 | 595.00 | 2240
0 | 532 | True | 1231.50 | 421.17 | 595.00 | 2840
0 | 533 | True | 2052.50 | 421.17 | 595.00 | 2519
0 | 534 | True | 410.50 | 1263.50 | 595.00 | 2732
0 | 535 | True | 1231.50 | 1263.50 | 595.00 | 3405
0 | 536 | True | 2052.50 | 1263.50 | 595.00 | 3045
0 | 537 | True | 410.50 | 2105.83 | 595.00 | 1994
0 | 538 | True | 1231.50 | 2105.83 | 595.00 | 2499
0 | 539 | True | 2052.50 | 2105.83 | 595.00 | 2201
0 | 540 | True | 410.50 | 421.17 | 605.00 | 2250
0 | 541 | True | 1231.50 | 421.17 | 605.00 | 2835
0 | 542 | True | 2052.50 | 421.17 | 605.00 | 2513
0 | 543 | True | 410.50 | 1263.50 | 605.00 | 2767
0 | 544 | True | 1231.50 | 1263.50 | 605.00 | 3428
0 | 545 | True | 2052.50 | 1263.50 | 605.00 | 3062
0 | 546 | True | 410.50 | 2105.83 | 605.00 | 2032
0 | 547 | True | 1231.50 | 2105.83 | 605.00 | 2527
0 | 548 | True | 2052.50 | 2105.83 | 605.00 | 2211
0 | 549 | True | 410.50 | 421.17 | 615.00 | 2305
0 | 550 | True | 1231.50 | 421.17 | 615.00 | 2885
0 | 551 | True | 2052.50 | 421.17 | 615.00 | 2548
0 | 552 | True | 410.50 | 1263.50 | 615.00 | 2841
0 | 553 | True | 1231.50 | 1263.50 | 615.00 | 3509
0 | 554 | True | 2052.50 | 1263.50 | 615.00 | 3122
0 | 555 | True | 410.50 | 2105.83 | 615.00 | 2105
0 | 556 | True | 1231.50 | 2105.83 | 615.00 | 2610
0 | 557 | True | 2052.50 | 2105.83 | 615.00 | 2276
0 | 558 | True | 410.50 | 421.17 | 625.00 | 2275
0 | 559 | True | 1231.50 | 421.17 | 625.00 | 2832
0 | 560 | True | 2052.50 | 421.17 | 625.00 | 2497
0 | 561 | True | 410.50 | 1263.50 | 625.00 | 2837
0 | 562 | True | 1231.50 | 1263.50 | 625.00 | 3503
0 | 563 | True | 2052.50 | 1263.50 | 625.00 | 3113
0 | 564 | True | 410.50 | 2105.83 | 625.00 | 2134
0 | 565 | True | 1231.50 | 2105.83 | 625.00 | 2663
0 | 566 | True | 2052.50 | 2105.83 | 625.00 | 2319
0 | 567 | True | 410.50 | 421.17 | 635.00 | 2246
0 | 568 | True | 1231.50 | 421.17 | 635.00 | 2795
0 | 569 | True | 2052.50 | 421.17 | 635.00 | 2480
0 | 570 | True | 410.50 | 1263.50 | 635.00 | 2807
0 | 571 | True | 1231.50 | 1263.50 | 635.00 | 3483
0 | 572 | True | 2052.50 | 1263.50 | 635.00 | 3116
0 | 573 | True | 410.50 | 2105.83 | 635.00 | 2134
0 | 574 | True | 1231.50 | 2105.83 | 635.00 | 2696
0 | 575 | True | 2052.50 | 2105.83 | 635.00 | 2366
0 | 576 | True | 410.50 | 421.17 | 645.00 | 2213
0 | 577 | True | 1231.50 | 421.17 | 645.00 | 2762
0 | 578 | True | 2052.50 | 421.17 | 645.00 | 2459
0 | 579 | True | 410.50 | 1263.50 | 645.00 | 2838
0 | 580 | True | 1231.50 | 1263.50 | 645.00 | 3532
0 | 581 | True | 2052.50 | 1263.50 | 645.00 | 3171
0 | 582 | True | 410.50 | 2105.83 | 645.00 | 2201
0 | 583 | True | 1231.50 | 2105.83 | 645.00 | 2797
0 | 584 | True | 2052.50 | 2105.83 | 645.00 | 2464
0 | 585 | True | 410.50 | 421.17 | 655.00 | 2197
0 | 586 | True | 1231.50 | 421.17 | 655.00 | 2735
0 | 587 | True | 2052.50 | 421.17 | 655.00 | 2433
0 | 588 | True | 410.50 | 1263.50 | 655.00 | 2880
0 | 589 | True | 1231.50 | 1263.50 | 655.00 | 3580
0 | 590 | True | 2052.50 | 1263.50 | 655.00 | 3219
0 | 591 | True | 410.50 | 2105.83 | 655.00 | 2251
0 | 592 | True | 1231.50 | 2105.83 | 655.00 | 2857
0 | 593 | True | 2052.50 | 2105.83 | 655.00 | 2522
0 | 594 | True | 410.50 | 421.17 | 665.00 | 2203
0 | 595 | True | 1231.50 | 421.17 | 665.00 | 2734
0 | 596 | True | 2052.50 | 421.17 | 665.00 | 2423
0 | 597 | True | 410.50 | 1263.50 | 665.00 | 2955
0 | 598 | True | 1231.50 | 1263.50 | 665.00 | 3672
0 | 599 | True | 2052.50 | 1263.50 | 665.00 | 3288
0 | 600 | True | 410.50 | 2105.83 | 665.00 | 2344
0 | 601 | True | 1231.50 | 2105.83 | 665.00 | 2959
0 | 602 | True | 2052.50 | 2105.83 | 665.00 | 2603
0 | 603 | True | 410.50 | 421.17 | 675.00 | 2240
0 | 604 | True | 1231.50 | 421.17 | 675.00 | 2775
0 | 605 | True | 2052.50 | 421.17 | 675.00 | 2469
0 | 606 | True | 410.50 | 1263.50 | 675.00 | 3039
0 | 607 | True | 1231.50 | 1263.50 | 675.00 | 3784
0 | 608 | True | 2052.50 | 1263.50 | 675.00 | 3395
0 | 609 | True | 410.50 | 2105.83 | 675.00 | 2403
0 | 610 | True | 1231.50 | 2105.83 | 675.00 | 3044
0 | 611 | True | 2052.50 | 2105.83 | 675.00 | 2685
0 | 612 | True | 410.50 | 421.17 | 685.00 | 2219
0 | 613 | True | 1231.50 | 421.17 | 685.00 | 2727
0 | 614 | True | 2052.50 | 421.17 | 685.00 | 2431
0 | 615 | True | 410.50 | 1263.50 | 685.00 | 3037
0 | 616 | True | 1231.50 | 1263.50 | 685.00 | 3772
0 | 617 | True | 2052.50 | 1263.50 | 685.00 | 3389
0 | 618 | True | 410.50 | 2105.83 | 685.00 | 2407
0 | 619 | True | 1231.50 | 2105.83 | 685.00 | 3042
0 | 620 | True | 2052.50 | 2105.83 | 685.00 | 2696
0 | 621 | True | 410.50 | 421.17 | 695.00 | 2207
0 | 622 | True | 1231.50 | 421.17 | 695.00 | 2704
0 | 623 | True | 2052.50 | 421.17 | 695.00 | 2395
0 | 624 | True | 410.50 | 1263.50 | 695.00 | 3056
0 | 625 | True | 1231.50 | 1263.50 | 695.00 | 3803
0 | 626 | True | 2052.50 | 1263.50 | 695.00 | 3409
0 | 627 | True | 410.50 | 2105.83 | 695.00 | 2395
0 | 628 | True | 1231.50 | 2105.83 | 695.00 | 3052
0 | 629 | True | 2052.50 | 2105.83 | 695.00 | 2708
0 | 630 | True | 410.50 | 421.17 | 705.00 | 2234
0 | 631 | True | 1231.50 | 421.17 | 705.00 | 2701
0 | 632 | True | 2052.50 | 421.17 | 705.00 | 2384
0 | 633 | True | 410.50 | 1263.50 | 705.00 | 3140
0 | 634 | True | 1231.50 | 1263.50 | 705.00 | 3857
0 | 635 | True | 2052.50 | 1263.50 | 705.00 | 3450
0 | 636 | True | 410.50 | 2105.83 | 705.00 | 2452
0 | 637 | True | 1231.50 | 2105.83 | 705.00 | 3085
0 | 638 | True | 2052.50 | 2105.83 | 705.00 | 2733
0 | 639 | True | 410.50 | 421.17 | 715.00 | 1525
0 | 640 | True | 1231.50 | 421.17 | 715.00 | 1834
0 | 641 | True | 2052.50 | 421.17 | 715.00 | 1612
0 | 642 | True | 410.50 | 1263.50 | 715.00 | 2152
0 | 643 | True | 1231.50 | 1263.50 | 715.00 | 2632
0 | 644 | True | 2052.50 | 1263.50 | 715.00 | 2347
0 | 645 | True | 410.50 | 2105.83 | 715.00 | 1674
0 | 646 | True | 1231.50 | 2105.83 | 715.00 | 2100
0 | 647 | True | 2052.50 | 2105.83 | 715.00 | 1853
-------------------------------------------------------------------
Timing information for reference profile formation
----------------------------------
Read time | 240.73 seconds
Extract time | 0.53 seconds
Pre-process time | 0.11 seconds
Process time | 46.95 seconds
Post-process time | 0.00 seconds
Total time | 289.99 seconds
User time | 0.00 seconds
----------------------------------
================================================================================
Integrating reflections
Split 3537 reflections overlapping job boundaries
Processing reflections in the following blocks of images:
block_size: 10 frames
---------------------------------------------------------------------------
# | Group | Frame From | Frame To | Angle From | Angle To | # Reflections
---------------------------------------------------------------------------
0 | 0 | 0 | 10 | 0.0 | 5.0 | 4883
1 | 0 | 5 | 15 | 2.5 | 7.5 | 2505
2 | 0 | 10 | 20 | 5.0 | 10.0 | 2538
3 | 0 | 15 | 25 | 7.5 | 12.5 | 2575
4 | 0 | 20 | 30 | 10.0 | 15.0 | 2560
5 | 0 | 25 | 35 | 12.5 | 17.5 | 2560
6 | 0 | 30 | 40 | 15.0 | 20.0 | 2561
7 | 0 | 35 | 45 | 17.5 | 22.5 | 2538
8 | 0 | 40 | 50 | 20.0 | 25.0 | 2525
9 | 0 | 45 | 55 | 22.5 | 27.5 | 2561
10 | 0 | 50 | 60 | 25.0 | 30.0 | 2556
11 | 0 | 55 | 65 | 27.5 | 32.5 | 2523
12 | 0 | 60 | 70 | 30.0 | 35.0 | 2562
13 | 0 | 65 | 75 | 32.5 | 37.5 | 2544
14 | 0 | 70 | 80 | 35.0 | 40.0 | 2597
15 | 0 | 75 | 85 | 37.5 | 42.5 | 2535
16 | 0 | 80 | 90 | 40.0 | 45.0 | 2526
17 | 0 | 85 | 95 | 42.5 | 47.5 | 2616
18 | 0 | 90 | 100 | 45.0 | 50.0 | 2539
19 | 0 | 95 | 105 | 47.5 | 52.5 | 2536
20 | 0 | 100 | 110 | 50.0 | 55.0 | 2571
21 | 0 | 105 | 115 | 52.5 | 57.5 | 2534
22 | 0 | 110 | 120 | 55.0 | 60.0 | 2585
23 | 0 | 115 | 125 | 57.5 | 62.5 | 2547
24 | 0 | 120 | 130 | 60.0 | 65.0 | 2542
25 | 0 | 125 | 135 | 62.5 | 67.5 | 2574
26 | 0 | 130 | 140 | 65.0 | 70.0 | 2556
27 | 0 | 135 | 145 | 67.5 | 72.5 | 2551
28 | 0 | 140 | 150 | 70.0 | 75.0 | 2568
29 | 0 | 145 | 155 | 72.5 | 77.5 | 2531
30 | 0 | 150 | 160 | 75.0 | 80.0 | 2564
31 | 0 | 155 | 165 | 77.5 | 82.5 | 2538
32 | 0 | 160 | 170 | 80.0 | 85.0 | 2565
33 | 0 | 165 | 175 | 82.5 | 87.5 | 2549
34 | 0 | 170 | 180 | 85.0 | 90.0 | 2562
35 | 0 | 175 | 185 | 87.5 | 92.5 | 2547
36 | 0 | 180 | 190 | 90.0 | 95.0 | 2547
37 | 0 | 185 | 195 | 92.5 | 97.5 | 2555
38 | 0 | 190 | 200 | 95.0 | 100.0 | 2564
39 | 0 | 195 | 205 | 97.5 | 102.5 | 2546
40 | 0 | 200 | 210 | 100.0 | 105.0 | 2527
41 | 0 | 205 | 215 | 102.5 | 107.5 | 2583
42 | 0 | 210 | 220 | 105.0 | 110.0 | 2542
43 | 0 | 215 | 225 | 107.5 | 112.5 | 2569
44 | 0 | 220 | 230 | 110.0 | 115.0 | 2543
45 | 0 | 225 | 235 | 112.5 | 117.5 | 2566
46 | 0 | 230 | 240 | 115.0 | 120.0 | 2544
47 | 0 | 235 | 245 | 117.5 | 122.5 | 2574
48 | 0 | 240 | 250 | 120.0 | 125.0 | 2555
49 | 0 | 245 | 255 | 122.5 | 127.5 | 2564
50 | 0 | 250 | 260 | 125.0 | 130.0 | 2552
51 | 0 | 255 | 265 | 127.5 | 132.5 | 2551
52 | 0 | 260 | 270 | 130.0 | 135.0 | 2598
53 | 0 | 265 | 275 | 132.5 | 137.5 | 2520
54 | 0 | 270 | 280 | 135.0 | 140.0 | 2558
55 | 0 | 275 | 285 | 137.5 | 142.5 | 2544
56 | 0 | 280 | 290 | 140.0 | 145.0 | 2575
57 | 0 | 285 | 295 | 142.5 | 147.5 | 2548
58 | 0 | 290 | 300 | 145.0 | 150.0 | 2560
59 | 0 | 295 | 305 | 147.5 | 152.5 | 2566
60 | 0 | 300 | 310 | 150.0 | 155.0 | 2521
61 | 0 | 305 | 315 | 152.5 | 157.5 | 2582
62 | 0 | 310 | 320 | 155.0 | 160.0 | 2519
63 | 0 | 315 | 325 | 157.5 | 162.5 | 2609
64 | 0 | 320 | 330 | 160.0 | 165.0 | 2529
65 | 0 | 325 | 335 | 162.5 | 167.5 | 2543
66 | 0 | 330 | 340 | 165.0 | 170.0 | 2580
67 | 0 | 335 | 345 | 167.5 | 172.5 | 2554
68 | 0 | 340 | 350 | 170.0 | 175.0 | 2569
69 | 0 | 345 | 355 | 172.5 | 177.5 | 2539
70 | 0 | 350 | 360 | 175.0 | 180.0 | 2603
71 | 0 | 355 | 365 | 177.5 | 182.5 | 2490
72 | 0 | 360 | 370 | 180.0 | 185.0 | 2631
73 | 0 | 365 | 375 | 182.5 | 187.5 | 2502
74 | 0 | 370 | 380 | 185.0 | 190.0 | 2551
75 | 0 | 375 | 385 | 187.5 | 192.5 | 2608
76 | 0 | 380 | 390 | 190.0 | 195.0 | 2518
77 | 0 | 385 | 395 | 192.5 | 197.5 | 2572
78 | 0 | 390 | 400 | 195.0 | 200.0 | 2564
79 | 0 | 395 | 405 | 197.5 | 202.5 | 2539
80 | 0 | 400 | 410 | 200.0 | 205.0 | 2553
81 | 0 | 405 | 415 | 202.5 | 207.5 | 2572
82 | 0 | 410 | 420 | 205.0 | 210.0 | 2542
83 | 0 | 415 | 425 | 207.5 | 212.5 | 2561
84 | 0 | 420 | 430 | 210.0 | 215.0 | 2537
85 | 0 | 425 | 435 | 212.5 | 217.5 | 2541
86 | 0 | 430 | 440 | 215.0 | 220.0 | 2585
87 | 0 | 435 | 445 | 217.5 | 222.5 | 2551
88 | 0 | 440 | 450 | 220.0 | 225.0 | 2532
89 | 0 | 445 | 455 | 222.5 | 227.5 | 2595
90 | 0 | 450 | 460 | 225.0 | 230.0 | 2537
91 | 0 | 455 | 465 | 227.5 | 232.5 | 2522
92 | 0 | 460 | 470 | 230.0 | 235.0 | 2587
93 | 0 | 465 | 475 | 232.5 | 237.5 | 2547
94 | 0 | 470 | 480 | 235.0 | 240.0 | 2573
95 | 0 | 475 | 485 | 237.5 | 242.5 | 2556
96 | 0 | 480 | 490 | 240.0 | 245.0 | 2529
97 | 0 | 485 | 495 | 242.5 | 247.5 | 2580
98 | 0 | 490 | 500 | 245.0 | 250.0 | 2563
99 | 0 | 495 | 505 | 247.5 | 252.5 | 2544
100 | 0 | 500 | 510 | 250.0 | 255.0 | 2569
101 | 0 | 505 | 515 | 252.5 | 257.5 | 2544
102 | 0 | 510 | 520 | 255.0 | 260.0 | 2563
103 | 0 | 515 | 525 | 257.5 | 262.5 | 2559
104 | 0 | 520 | 530 | 260.0 | 265.0 | 2555
105 | 0 | 525 | 535 | 262.5 | 267.5 | 2554
106 | 0 | 530 | 540 | 265.0 | 270.0 | 2575
107 | 0 | 535 | 545 | 267.5 | 272.5 | 2557
108 | 0 | 540 | 550 | 270.0 | 275.0 | 2548
109 | 0 | 545 | 555 | 272.5 | 277.5 | 2558
110 | 0 | 550 | 560 | 275.0 | 280.0 | 2564
111 | 0 | 555 | 565 | 277.5 | 282.5 | 2548
112 | 0 | 560 | 570 | 280.0 | 285.0 | 2531
113 | 0 | 565 | 575 | 282.5 | 287.5 | 2579
114 | 0 | 570 | 580 | 285.0 | 290.0 | 2550
115 | 0 | 575 | 585 | 287.5 | 292.5 | 2555
116 | 0 | 580 | 590 | 290.0 | 295.0 | 2548
117 | 0 | 585 | 595 | 292.5 | 297.5 | 2543
118 | 0 | 590 | 600 | 295.0 | 300.0 | 2562
119 | 0 | 595 | 605 | 297.5 | 302.5 | 2572
120 | 0 | 600 | 610 | 300.0 | 305.0 | 2533
121 | 0 | 605 | 615 | 302.5 | 307.5 | 2569
122 | 0 | 610 | 620 | 305.0 | 310.0 | 2547
123 | 0 | 615 | 625 | 307.5 | 312.5 | 2531
124 | 0 | 620 | 630 | 310.0 | 315.0 | 2588
125 | 0 | 625 | 635 | 312.5 | 317.5 | 2514
126 | 0 | 630 | 640 | 315.0 | 320.0 | 2554
127 | 0 | 635 | 645 | 317.5 | 322.5 | 2562
128 | 0 | 640 | 650 | 320.0 | 325.0 | 2547
129 | 0 | 645 | 655 | 322.5 | 327.5 | 2524
130 | 0 | 650 | 660 | 325.0 | 330.0 | 2566
131 | 0 | 655 | 665 | 327.5 | 332.5 | 2555
132 | 0 | 660 | 670 | 330.0 | 335.0 | 2521
133 | 0 | 665 | 675 | 332.5 | 337.5 | 2597
134 | 0 | 670 | 680 | 335.0 | 340.0 | 2521
135 | 0 | 675 | 685 | 337.5 | 342.5 | 2584
136 | 0 | 680 | 690 | 340.0 | 345.0 | 2506
137 | 0 | 685 | 695 | 342.5 | 347.5 | 2556
138 | 0 | 690 | 700 | 345.0 | 350.0 | 2581
139 | 0 | 695 | 705 | 347.5 | 352.5 | 2569
140 | 0 | 700 | 710 | 350.0 | 355.0 | 2539
141 | 0 | 705 | 715 | 352.5 | 357.5 | 2535
142 | 0 | 710 | 720 | 355.0 | 360.0 | 4745
---------------------------------------------------------------------------
Using multiprocessing with 4 parallel job(s)
Beginning integration job 0
Frames: 0 -> 10
Number of reflections
Partial: 1168
Full: 3715
In ice ring: 0
Integrate: 4883
Total: 4883
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
0 [1713]: *********************************************************************
1 [974 ]: ***************************************
2 [966 ]: **************************************
3 [991 ]: ***************************************
4 [999 ]: ****************************************
5 [1029]: *****************************************
6 [1021]: *****************************************
7 [602 ]: ************************
8 [68 ]: **
9 [11 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00829838 GB
Integrated 1064 (sum) + 263 (prf) / 1223 reflections on image 0
Integrated 442 (sum) + 424 (prf) / 514 reflections on image 1
Integrated 422 (sum) + 419 (prf) / 490 reflections on image 2
Integrated 435 (sum) + 432 (prf) / 497 reflections on image 3
Integrated 438 (sum) + 433 (prf) / 512 reflections on image 4
Integrated 452 (sum) + 450 (prf) / 515 reflections on image 5
Integrated 466 (sum) + 463 (prf) / 530 reflections on image 6
Integrated 450 (sum) + 449 (prf) / 534 reflections on image 7
Integrated 48 (sum) + 47 (prf) / 57 reflections on image 8
Integrated 9 (sum) + 9 (prf) / 11 reflections on image 9
Beginning integration job 1
Frames: 5 -> 15
Number of reflections
Partial: 12
Full: 2493
In ice ring: 0
Integrate: 2505
Total: 2505
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
5 [4 ]:
6 [22 ]: *
7 [439]: *******************************
8 [930]: ******************************************************************
9 [939]: ******************************************************************
10 [924]: *****************************************************************
11 [968]: *********************************************************************
12 [547]: **************************************
13 [47 ]: ***
14 [5 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00733484 GB
Integrated 405 (sum) + 401 (prf) / 470 reflections on image 8
Integrated 428 (sum) + 421 (prf) / 492 reflections on image 9
Integrated 401 (sum) + 397 (prf) / 471 reflections on image 10
Integrated 462 (sum) + 459 (prf) / 525 reflections on image 11
Integrated 428 (sum) + 425 (prf) / 500 reflections on image 12
Integrated 36 (sum) + 36 (prf) / 42 reflections on image 13
Integrated 3 (sum) + 3 (prf) / 5 reflections on image 14
Beginning integration job 2
Frames: 10 -> 20
Number of reflections
Partial: 15
Full: 2523
In ice ring: 0
Integrate: 2538
Total: 2538
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
11 [17 ]: *
12 [400]: ***************************
13 [926]: ****************************************************************
14 [993]: *********************************************************************
15 [966]: *******************************************************************
16 [977]: *******************************************************************
17 [562]: ***************************************
18 [67 ]: ****
19 [9 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0076855 GB
Integrated 386 (sum) + 384 (prf) / 452 reflections on image 13
Integrated 460 (sum) + 453 (prf) / 529 reflections on image 14
Integrated 415 (sum) + 412 (prf) / 486 reflections on image 15
Integrated 448 (sum) + 443 (prf) / 509 reflections on image 16
Integrated 432 (sum) + 428 (prf) / 495 reflections on image 17
Integrated 50 (sum) + 50 (prf) / 58 reflections on image 18
Integrated 7 (sum) + 7 (prf) / 9 reflections on image 19
Beginning integration job 3
Frames: 15 -> 25
Number of reflections
Partial: 13
Full: 2562
In ice ring: 0
Integrate: 2575
Total: 2575
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
15 [2 ]:
16 [13 ]:
17 [449]: *******************************
18 [967]: ********************************************************************
19 [975]: *********************************************************************
20 [967]: ********************************************************************
21 [974]: ********************************************************************
22 [574]: ****************************************
23 [64 ]: ****
24 [10 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00773882 GB
Integrated 396 (sum) + 391 (prf) / 473 reflections on image 18
Integrated 455 (sum) + 454 (prf) / 531 reflections on image 19
Integrated 425 (sum) + 422 (prf) / 493 reflections on image 20
Integrated 437 (sum) + 434 (prf) / 504 reflections on image 21
Integrated 444 (sum) + 442 (prf) / 510 reflections on image 22
Integrated 47 (sum) + 46 (prf) / 54 reflections on image 23
Integrated 8 (sum) + 8 (prf) / 10 reflections on image 24
Beginning integration job 4
Frames: 20 -> 30
Number of reflections
Partial: 18
Full: 2542
In ice ring: 0
Integrate: 2560
Total: 2560
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
20 [8 ]:
21 [22 ]: *
22 [415 ]: ***************************
23 [967 ]: ****************************************************************
24 [1004]: ******************************************************************
25 [997 ]: ******************************************************************
26 [1020]: ********************************************************************
27 [585 ]: ***************************************
28 [78 ]: *****
29 [13 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00824034 GB
Integrated 382 (sum) + 380 (prf) / 447 reflections on image 23
Integrated 436 (sum) + 425 (prf) / 508 reflections on image 24
Integrated 438 (sum) + 434 (prf) / 496 reflections on image 25
Integrated 461 (sum) + 460 (prf) / 524 reflections on image 26
Integrated 449 (sum) + 447 (prf) / 507 reflections on image 27
Integrated 57 (sum) + 56 (prf) / 65 reflections on image 28
Integrated 11 (sum) + 11 (prf) / 13 reflections on image 29
Beginning integration job 5
Frames: 25 -> 35
Number of reflections
Partial: 15
Full: 2545
In ice ring: 0
Integrate: 2560
Total: 2560
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
25 [4 ]:
26 [12 ]:
27 [435 ]: *****************************
28 [925 ]: **************************************************************
29 [966 ]: *****************************************************************
30 [1002]: ********************************************************************
31 [980 ]: ******************************************************************
32 [566 ]: **************************************
33 [62 ]: ****
34 [18 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00772248 GB
Integrated 411 (sum) + 409 (prf) / 476 reflections on image 28
Integrated 429 (sum) + 427 (prf) / 494 reflections on image 29
Integrated 450 (sum) + 442 (prf) / 521 reflections on image 30
Integrated 424 (sum) + 422 (prf) / 503 reflections on image 31
Integrated 440 (sum) + 438 (prf) / 504 reflections on image 32
Integrated 34 (sum) + 34 (prf) / 44 reflections on image 33
Integrated 17 (sum) + 17 (prf) / 18 reflections on image 34
Beginning integration job 6
Frames: 30 -> 40
Number of reflections
Partial: 12
Full: 2549
In ice ring: 0
Integrate: 2561
Total: 2561
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
30 [1 ]:
31 [16 ]: *
32 [436]: ******************************
33 [930]: *****************************************************************
34 [975]: ********************************************************************
35 [967]: *******************************************************************
36 [986]: *********************************************************************
37 [558]: ***************************************
38 [61 ]: ****
39 [11 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00760661 GB
Integrated 409 (sum) + 406 (prf) / 470 reflections on image 33
Integrated 450 (sum) + 441 (prf) / 519 reflections on image 34
Integrated 419 (sum) + 416 (prf) / 477 reflections on image 35
Integrated 458 (sum) + 456 (prf) / 537 reflections on image 36
Integrated 416 (sum) + 414 (prf) / 497 reflections on image 37
Integrated 45 (sum) + 45 (prf) / 50 reflections on image 38
Integrated 6 (sum) + 6 (prf) / 11 reflections on image 39
Beginning integration job 7
Frames: 35 -> 45
Number of reflections
Partial: 13
Full: 2525
In ice ring: 0
Integrate: 2538
Total: 2538
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
35 [3 ]:
36 [16 ]: *
37 [363 ]: ************************
38 [890 ]: ************************************************************
39 [1008]: ********************************************************************
40 [975 ]: *****************************************************************
41 [988 ]: ******************************************************************
42 [599 ]: ****************************************
43 [55 ]: ***
44 [11 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0076978 GB
Integrated 354 (sum) + 350 (prf) / 410 reflections on image 38
Integrated 454 (sum) + 447 (prf) / 531 reflections on image 39
Integrated 437 (sum) + 436 (prf) / 496 reflections on image 40
Integrated 429 (sum) + 426 (prf) / 502 reflections on image 41
Integrated 476 (sum) + 476 (prf) / 544 reflections on image 42
Integrated 37 (sum) + 37 (prf) / 44 reflections on image 43
Integrated 11 (sum) + 11 (prf) / 11 reflections on image 44
Beginning integration job 8
Frames: 40 -> 50
Number of reflections
Partial: 11
Full: 2514
In ice ring: 0
Integrate: 2525
Total: 2525
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
40 [2 ]:
41 [12 ]:
42 [390]: ***************************
43 [906]: ***************************************************************
44 [975]: *******************************************************************
45 [970]: *******************************************************************
46 [990]: *********************************************************************
47 [568]: ***************************************
48 [54 ]: ***
49 [10 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00777122 GB
Integrated 382 (sum) + 382 (prf) / 439 reflections on image 43
Integrated 440 (sum) + 435 (prf) / 512 reflections on image 44
Integrated 409 (sum) + 405 (prf) / 481 reflections on image 45
Integrated 469 (sum) + 465 (prf) / 525 reflections on image 46
Integrated 440 (sum) + 436 (prf) / 514 reflections on image 47
Integrated 36 (sum) + 36 (prf) / 44 reflections on image 48
Integrated 8 (sum) + 8 (prf) / 10 reflections on image 49
Beginning integration job 9
Frames: 45 -> 55
Number of reflections
Partial: 18
Full: 2543
In ice ring: 0
Integrate: 2561
Total: 2561
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
45 [4 ]:
46 [17 ]: *
47 [423 ]: ****************************
48 [950 ]: ****************************************************************
49 [981 ]: ******************************************************************
50 [1006]: ********************************************************************
51 [965 ]: *****************************************************************
52 [587 ]: ***************************************
53 [61 ]: ****
54 [13 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00781508 GB
Integrated 407 (sum) + 403 (prf) / 466 reflections on image 48
Integrated 428 (sum) + 423 (prf) / 492 reflections on image 49
Integrated 450 (sum) + 448 (prf) / 528 reflections on image 50
Integrated 427 (sum) + 423 (prf) / 488 reflections on image 51
Integrated 449 (sum) + 446 (prf) / 526 reflections on image 52
Integrated 43 (sum) + 42 (prf) / 48 reflections on image 53
Integrated 11 (sum) + 11 (prf) / 13 reflections on image 54
Beginning integration job 10
Frames: 50 -> 60
Number of reflections
Partial: 10
Full: 2546
In ice ring: 0
Integrate: 2556
Total: 2556
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
50 [4 ]:
51 [15 ]: *
52 [421]: *****************************
53 [929]: ****************************************************************
54 [998]: *********************************************************************
55 [985]: ********************************************************************
56 [981]: *******************************************************************
57 [560]: **************************************
58 [56 ]: ***
59 [4 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00783416 GB
Integrated 380 (sum) + 378 (prf) / 447 reflections on image 53
Integrated 462 (sum) + 457 (prf) / 524 reflections on image 54
Integrated 433 (sum) + 428 (prf) / 502 reflections on image 55
Integrated 442 (sum) + 434 (prf) / 523 reflections on image 56
Integrated 444 (sum) + 440 (prf) / 504 reflections on image 57
Integrated 47 (sum) + 47 (prf) / 52 reflections on image 58
Integrated 4 (sum) + 4 (prf) / 4 reflections on image 59
Beginning integration job 11
Frames: 55 -> 65
Number of reflections
Partial: 7
Full: 2516
In ice ring: 0
Integrate: 2523
Total: 2523
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
55 [1 ]:
56 [15 ]: *
57 [428]: ******************************
58 [932]: ******************************************************************
59 [972]: *********************************************************************
60 [961]: ********************************************************************
61 [958]: ********************************************************************
62 [532]: *************************************
63 [52 ]: ***
64 [9 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00754303 GB
Integrated 408 (sum) + 406 (prf) / 462 reflections on image 58
Integrated 442 (sum) + 435 (prf) / 519 reflections on image 59
Integrated 404 (sum) + 399 (prf) / 477 reflections on image 60
Integrated 473 (sum) + 468 (prf) / 533 reflections on image 61
Integrated 418 (sum) + 412 (prf) / 480 reflections on image 62
Integrated 34 (sum) + 34 (prf) / 43 reflections on image 63
Integrated 8 (sum) + 8 (prf) / 9 reflections on image 64
Beginning integration job 12
Frames: 60 -> 70
Number of reflections
Partial: 15
Full: 2547
In ice ring: 0
Integrate: 2562
Total: 2562
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
60 [2 ]:
61 [22 ]: *
62 [435]: ******************************
63 [937]: *****************************************************************
64 [974]: ********************************************************************
65 [986]: *********************************************************************
66 [961]: *******************************************************************
67 [570]: ***************************************
68 [59 ]: ****
69 [14 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00767654 GB
Integrated 400 (sum) + 397 (prf) / 480 reflections on image 63
Integrated 436 (sum) + 430 (prf) / 498 reflections on image 64
Integrated 447 (sum) + 442 (prf) / 513 reflections on image 65
Integrated 431 (sum) + 426 (prf) / 501 reflections on image 66
Integrated 449 (sum) + 448 (prf) / 511 reflections on image 67
Integrated 41 (sum) + 41 (prf) / 45 reflections on image 68
Integrated 11 (sum) + 11 (prf) / 14 reflections on image 69
Beginning integration job 13
Frames: 65 -> 75
Number of reflections
Partial: 10
Full: 2534
In ice ring: 0
Integrate: 2544
Total: 2544
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
65 [5 ]:
66 [16 ]: *
67 [410 ]: ***************************
68 [910 ]: *************************************************************
69 [986 ]: ******************************************************************
70 [1007]: ********************************************************************
71 [958 ]: ****************************************************************
72 [560 ]: *************************************
73 [69 ]: ****
74 [13 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0078758 GB
Integrated 393 (sum) + 390 (prf) / 463 reflections on image 68
Integrated 428 (sum) + 424 (prf) / 499 reflections on image 69
Integrated 442 (sum) + 436 (prf) / 512 reflections on image 70
Integrated 455 (sum) + 453 (prf) / 510 reflections on image 71
Integrated 429 (sum) + 425 (prf) / 491 reflections on image 72
Integrated 46 (sum) + 46 (prf) / 56 reflections on image 73
Integrated 12 (sum) + 12 (prf) / 13 reflections on image 74
Beginning integration job 14
Frames: 70 -> 80
Number of reflections
Partial: 19
Full: 2578
In ice ring: 0
Integrate: 2597
Total: 2597
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
70 [8 ]:
71 [32 ]: **
72 [452 ]: ******************************
73 [957 ]: ****************************************************************
74 [1007]: *******************************************************************
75 [1015]: ********************************************************************
76 [1002]: *******************************************************************
77 [569 ]: **************************************
78 [62 ]: ****
79 [14 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00808016 GB
Integrated 393 (sum) + 391 (prf) / 463 reflections on image 73
Integrated 453 (sum) + 449 (prf) / 516 reflections on image 74
Integrated 434 (sum) + 431 (prf) / 496 reflections on image 75
Integrated 470 (sum) + 464 (prf) / 553 reflections on image 76
Integrated 423 (sum) + 420 (prf) / 507 reflections on image 77
Integrated 40 (sum) + 39 (prf) / 48 reflections on image 78
Integrated 11 (sum) + 11 (prf) / 14 reflections on image 79
Beginning integration job 15
Frames: 75 -> 85
Number of reflections
Partial: 22
Full: 2513
In ice ring: 0
Integrate: 2535
Total: 2535
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
75 [3 ]:
76 [17 ]: *
77 [401]: ****************************
78 [902]: ***************************************************************
79 [967]: *******************************************************************
80 [984]: *********************************************************************
81 [960]: *******************************************************************
82 [554]: **************************************
83 [54 ]: ***
84 [11 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00765233 GB
Integrated 392 (sum) + 387 (prf) / 449 reflections on image 78
Integrated 441 (sum) + 435 (prf) / 508 reflections on image 79
Integrated 421 (sum) + 414 (prf) / 504 reflections on image 80
Integrated 453 (sum) + 448 (prf) / 520 reflections on image 81
Integrated 430 (sum) + 428 (prf) / 500 reflections on image 82
Integrated 34 (sum) + 32 (prf) / 43 reflections on image 83
Integrated 10 (sum) + 10 (prf) / 11 reflections on image 84
Beginning integration job 16
Frames: 80 -> 90
Number of reflections
Partial: 16
Full: 2510
In ice ring: 0
Integrate: 2526
Total: 2526
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
80 [5 ]:
81 [10 ]:
82 [413]: ****************************
83 [914]: ***************************************************************
84 [951]: ******************************************************************
85 [987]: *********************************************************************
86 [945]: ******************************************************************
87 [593]: *****************************************
88 [72 ]: *****
89 [13 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0077909 GB
Integrated 412 (sum) + 407 (prf) / 467 reflections on image 83
Integrated 413 (sum) + 408 (prf) / 477 reflections on image 84
Integrated 441 (sum) + 435 (prf) / 508 reflections on image 85
Integrated 402 (sum) + 398 (prf) / 481 reflections on image 86
Integrated 452 (sum) + 448 (prf) / 521 reflections on image 87
Integrated 55 (sum) + 55 (prf) / 59 reflections on image 88
Integrated 9 (sum) + 9 (prf) / 13 reflections on image 89
Beginning integration job 17
Frames: 85 -> 95
Number of reflections
Partial: 20
Full: 2596
In ice ring: 0
Integrate: 2616
Total: 2616
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
85 [2 ]:
86 [20 ]: *
87 [415 ]: **************************
88 [957 ]: *************************************************************
89 [1023]: *****************************************************************
90 [1064]: ********************************************************************
91 [998 ]: ***************************************************************
92 [576 ]: ************************************
93 [65 ]: ****
94 [16 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00853156 GB
Integrated 408 (sum) + 402 (prf) / 472 reflections on image 88
Integrated 410 (sum) + 406 (prf) / 485 reflections on image 89
Integrated 460 (sum) + 453 (prf) / 543 reflections on image 90
Integrated 476 (sum) + 474 (prf) / 540 reflections on image 91
Integrated 448 (sum) + 441 (prf) / 511 reflections on image 92
Integrated 46 (sum) + 46 (prf) / 49 reflections on image 93
Integrated 15 (sum) + 15 (prf) / 16 reflections on image 94
Beginning integration job 18
Frames: 90 -> 100
Number of reflections
Partial: 18
Full: 2521
In ice ring: 0
Integrate: 2539
Total: 2539
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
90 [6 ]:
91 [24 ]: *
92 [419]: *****************************
93 [920]: ***************************************************************
94 [992]: *********************************************************************
95 [971]: *******************************************************************
96 [948]: *****************************************************************
97 [594]: *****************************************
98 [49 ]: ***
99 [18 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00782627 GB
Integrated 386 (sum) + 383 (prf) / 442 reflections on image 93
Integrated 428 (sum) + 426 (prf) / 501 reflections on image 94
Integrated 450 (sum) + 442 (prf) / 533 reflections on image 95
Integrated 414 (sum) + 412 (prf) / 469 reflections on image 96
Integrated 474 (sum) + 472 (prf) / 545 reflections on image 97
Integrated 28 (sum) + 28 (prf) / 31 reflections on image 98
Integrated 16 (sum) + 16 (prf) / 18 reflections on image 99
Beginning integration job 19
Frames: 95 -> 105
Number of reflections
Partial: 24
Full: 2512
In ice ring: 0
Integrate: 2536
Total: 2536
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
95 [3 ]:
96 [14 ]:
97 [408 ]: **************************
98 [874 ]: ********************************************************
99 [894 ]: *********************************************************
100 [979 ]: ***************************************************************
101 [1035]: *******************************************************************
102 [609 ]: ***************************************
103 [92 ]: *****
104 [15 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00801938 GB
Integrated 403 (sum) + 402 (prf) / 464 reflections on image 98
Integrated 392 (sum) + 386 (prf) / 465 reflections on image 99
Integrated 421 (sum) + 415 (prf) / 480 reflections on image 100
Integrated 449 (sum) + 448 (prf) / 518 reflections on image 101
Integrated 443 (sum) + 442 (prf) / 517 reflections on image 102
Integrated 68 (sum) + 67 (prf) / 77 reflections on image 103
Integrated 14 (sum) + 14 (prf) / 15 reflections on image 104
Beginning integration job 20
Frames: 100 -> 110
Number of reflections
Partial: 24
Full: 2547
In ice ring: 0
Integrate: 2571
Total: 2571
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
100 [1 ]:
101 [9 ]:
102 [430]: *****************************
103 [949]: ****************************************************************
104 [995]: ********************************************************************
105 [995]: ********************************************************************
106 [945]: ****************************************************************
107 [552]: *************************************
108 [57 ]: ***
109 [15 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.007618 GB
Integrated 414 (sum) + 407 (prf) / 470 reflections on image 103
Integrated 448 (sum) + 441 (prf) / 512 reflections on image 104
Integrated 466 (sum) + 462 (prf) / 533 reflections on image 105
Integrated 442 (sum) + 436 (prf) / 504 reflections on image 106
Integrated 421 (sum) + 418 (prf) / 495 reflections on image 107
Integrated 36 (sum) + 36 (prf) / 42 reflections on image 108
Integrated 12 (sum) + 11 (prf) / 15 reflections on image 109
Beginning integration job 21
Frames: 105 -> 115
Number of reflections
Partial: 20
Full: 2514
In ice ring: 0
Integrate: 2534
Total: 2534
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
105 [1 ]:
106 [22 ]: *
107 [415]: ****************************
108 [947]: ******************************************************************
109 [959]: ******************************************************************
110 [909]: ***************************************************************
111 [974]: ********************************************************************
112 [643]: ********************************************
113 [66 ]: ****
114 [16 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00788732 GB
Integrated 390 (sum) + 386 (prf) / 447 reflections on image 108
Integrated 448 (sum) + 439 (prf) / 530 reflections on image 109
Integrated 412 (sum) + 410 (prf) / 471 reflections on image 110
Integrated 377 (sum) + 374 (prf) / 443 reflections on image 111
Integrated 495 (sum) + 493 (prf) / 577 reflections on image 112
Integrated 44 (sum) + 42 (prf) / 50 reflections on image 113
Integrated 13 (sum) + 13 (prf) / 16 reflections on image 114
Beginning integration job 22
Frames: 110 -> 120
Number of reflections
Partial: 19
Full: 2566
In ice ring: 0
Integrate: 2585
Total: 2585
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
110 [4 ]:
111 [22 ]: *
112 [456 ]: *****************************
113 [943 ]: **************************************************************
114 [996 ]: *****************************************************************
115 [1019]: *******************************************************************
116 [979 ]: ****************************************************************
117 [577 ]: *************************************
118 [74 ]: ****
119 [18 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00792176 GB
Integrated 411 (sum) + 407 (prf) / 467 reflections on image 113
Integrated 430 (sum) + 428 (prf) / 501 reflections on image 114
Integrated 443 (sum) + 440 (prf) / 531 reflections on image 115
Integrated 433 (sum) + 427 (prf) / 509 reflections on image 116
Integrated 430 (sum) + 428 (prf) / 503 reflections on image 117
Integrated 48 (sum) + 48 (prf) / 56 reflections on image 118
Integrated 15 (sum) + 15 (prf) / 18 reflections on image 119
Beginning integration job 23
Frames: 115 -> 125
Number of reflections
Partial: 23
Full: 2524
In ice ring: 0
Integrate: 2547
Total: 2547
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
115 [7 ]:
116 [13 ]:
117 [413 ]: ***************************
118 [909 ]: ************************************************************
119 [927 ]: *************************************************************
120 [974 ]: ****************************************************************
121 [1012]: *******************************************************************
122 [609 ]: ****************************************
123 [64 ]: ****
124 [13 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00784717 GB
Integrated 421 (sum) + 417 (prf) / 478 reflections on image 118
Integrated 407 (sum) + 400 (prf) / 469 reflections on image 119
Integrated 412 (sum) + 409 (prf) / 479 reflections on image 120
Integrated 438 (sum) + 434 (prf) / 512 reflections on image 121
Integrated 471 (sum) + 469 (prf) / 545 reflections on image 122
Integrated 46 (sum) + 46 (prf) / 51 reflections on image 123
Integrated 11 (sum) + 11 (prf) / 13 reflections on image 124
Beginning integration job 24
Frames: 120 -> 130
Number of reflections
Partial: 25
Full: 2517
In ice ring: 0
Integrate: 2542
Total: 2542
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
120 [1 ]:
121 [16 ]: *
122 [439 ]: *****************************
123 [939 ]: **************************************************************
124 [987 ]: ******************************************************************
125 [1000]: *******************************************************************
126 [938 ]: **************************************************************
127 [545 ]: ************************************
128 [61 ]: ****
129 [10 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00774631 GB
Integrated 406 (sum) + 402 (prf) / 463 reflections on image 123
Integrated 437 (sum) + 433 (prf) / 503 reflections on image 124
Integrated 456 (sum) + 451 (prf) / 525 reflections on image 125
Integrated 444 (sum) + 438 (prf) / 506 reflections on image 126
Integrated 417 (sum) + 414 (prf) / 484 reflections on image 127
Integrated 39 (sum) + 38 (prf) / 51 reflections on image 128
Integrated 10 (sum) + 10 (prf) / 10 reflections on image 129
Beginning integration job 25
Frames: 125 -> 135
Number of reflections
Partial: 27
Full: 2547
In ice ring: 0
Integrate: 2574
Total: 2574
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
125 [2 ]:
126 [17 ]: *
127 [408 ]: ***************************
128 [921 ]: *************************************************************
129 [993 ]: ******************************************************************
130 [1007]: *******************************************************************
131 [981 ]: *****************************************************************
132 [569 ]: *************************************
133 [65 ]: ****
134 [24 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00791398 GB
Integrated 386 (sum) + 384 (prf) / 447 reflections on image 128
Integrated 442 (sum) + 432 (prf) / 524 reflections on image 129
Integrated 441 (sum) + 433 (prf) / 516 reflections on image 130
Integrated 453 (sum) + 447 (prf) / 518 reflections on image 131
Integrated 435 (sum) + 432 (prf) / 504 reflections on image 132
Integrated 40 (sum) + 39 (prf) / 41 reflections on image 133
Integrated 18 (sum) + 18 (prf) / 24 reflections on image 134
Beginning integration job 26
Frames: 130 -> 140
Number of reflections
Partial: 16
Full: 2540
In ice ring: 0
Integrate: 2556
Total: 2556
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
130 [4 ]:
131 [14 ]:
132 [420]: *****************************
133 [944]: *****************************************************************
134 [961]: ******************************************************************
135 [974]: *******************************************************************
136 [982]: ********************************************************************
137 [576]: ***************************************
138 [63 ]: ****
139 [13 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00763343 GB
Integrated 402 (sum) + 400 (prf) / 471 reflections on image 133
Integrated 430 (sum) + 424 (prf) / 500 reflections on image 134
Integrated 433 (sum) + 425 (prf) / 501 reflections on image 135
Integrated 440 (sum) + 434 (prf) / 508 reflections on image 136
Integrated 451 (sum) + 448 (prf) / 513 reflections on image 137
Integrated 45 (sum) + 44 (prf) / 50 reflections on image 138
Integrated 13 (sum) + 13 (prf) / 13 reflections on image 139
Beginning integration job 27
Frames: 135 -> 145
Number of reflections
Partial: 11
Full: 2540
In ice ring: 0
Integrate: 2551
Total: 2551
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
135 [3 ]:
136 [21 ]: *
137 [417 ]: ***************************
138 [942 ]: **************************************************************
139 [1008]: *******************************************************************
140 [949 ]: ***************************************************************
141 [949 ]: ***************************************************************
142 [548 ]: ************************************
143 [56 ]: ***
144 [9 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00804516 GB
Integrated 376 (sum) + 372 (prf) / 439 reflections on image 138
Integrated 477 (sum) + 473 (prf) / 551 reflections on image 139
Integrated 430 (sum) + 420 (prf) / 501 reflections on image 140
Integrated 454 (sum) + 449 (prf) / 512 reflections on image 141
Integrated 416 (sum) + 413 (prf) / 492 reflections on image 142
Integrated 41 (sum) + 41 (prf) / 47 reflections on image 143
Integrated 8 (sum) + 8 (prf) / 9 reflections on image 144
Beginning integration job 28
Frames: 140 -> 150
Number of reflections
Partial: 16
Full: 2552
In ice ring: 0
Integrate: 2568
Total: 2568
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
140 [1 ]:
141 [15 ]:
142 [398 ]: **************************
143 [905 ]: ***********************************************************
144 [1014]: *******************************************************************
145 [987 ]: *****************************************************************
146 [990 ]: *****************************************************************
147 [584 ]: **************************************
148 [65 ]: ****
149 [14 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00819973 GB
Integrated 383 (sum) + 381 (prf) / 441 reflections on image 143
Integrated 428 (sum) + 423 (prf) / 520 reflections on image 144
Integrated 444 (sum) + 439 (prf) / 508 reflections on image 145
Integrated 449 (sum) + 446 (prf) / 515 reflections on image 146
Integrated 442 (sum) + 440 (prf) / 519 reflections on image 147
Integrated 38 (sum) + 37 (prf) / 51 reflections on image 148
Integrated 13 (sum) + 13 (prf) / 14 reflections on image 149
Beginning integration job 29
Frames: 145 -> 155
Number of reflections
Partial: 13
Full: 2518
In ice ring: 0
Integrate: 2531
Total: 2531
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
145 [4 ]:
146 [22 ]: *
147 [426 ]: ****************************
148 [920 ]: *************************************************************
149 [970 ]: ****************************************************************
150 [1003]: *******************************************************************
151 [966 ]: ****************************************************************
152 [564 ]: *************************************
153 [51 ]: ***
154 [9 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00780463 GB
Integrated 397 (sum) + 390 (prf) / 449 reflections on image 148
Integrated 422 (sum) + 416 (prf) / 489 reflections on image 149
Integrated 466 (sum) + 461 (prf) / 530 reflections on image 150
Integrated 436 (sum) + 431 (prf) / 499 reflections on image 151
Integrated 443 (sum) + 441 (prf) / 513 reflections on image 152
Integrated 40 (sum) + 40 (prf) / 42 reflections on image 153
Integrated 8 (sum) + 8 (prf) / 9 reflections on image 154
Beginning integration job 30
Frames: 150 -> 160
Number of reflections
Partial: 23
Full: 2541
In ice ring: 0
Integrate: 2564
Total: 2564
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
150 [2 ]:
151 [22 ]: *
152 [430]: *****************************
153 [937]: ****************************************************************
154 [992]: ********************************************************************
155 [982]: *******************************************************************
156 [978]: *******************************************************************
157 [572]: ***************************************
158 [69 ]: ****
159 [21 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0077871 GB
Integrated 395 (sum) + 394 (prf) / 457 reflections on image 153
Integrated 447 (sum) + 439 (prf) / 522 reflections on image 154
Integrated 442 (sum) + 437 (prf) / 499 reflections on image 155
Integrated 429 (sum) + 426 (prf) / 514 reflections on image 156
Integrated 431 (sum) + 429 (prf) / 503 reflections on image 157
Integrated 43 (sum) + 43 (prf) / 48 reflections on image 158
Integrated 20 (sum) + 20 (prf) / 21 reflections on image 159
Beginning integration job 31
Frames: 155 -> 165
Number of reflections
Partial: 24
Full: 2514
In ice ring: 0
Integrate: 2538
Total: 2538
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
155 [2 ]:
156 [9 ]:
157 [426]: *****************************
158 [936]: ****************************************************************
159 [991]: ********************************************************************
160 [988]: *******************************************************************
161 [936]: ****************************************************************
162 [553]: *************************************
163 [58 ]: ***
164 [15 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00776179 GB
Integrated 406 (sum) + 401 (prf) / 462 reflections on image 158
Integrated 422 (sum) + 418 (prf) / 502 reflections on image 159
Integrated 467 (sum) + 457 (prf) / 541 reflections on image 160
Integrated 400 (sum) + 395 (prf) / 480 reflections on image 161
Integrated 431 (sum) + 431 (prf) / 495 reflections on image 162
Integrated 38 (sum) + 38 (prf) / 43 reflections on image 163
Integrated 11 (sum) + 11 (prf) / 15 reflections on image 164
Beginning integration job 32
Frames: 160 -> 170
Number of reflections
Partial: 15
Full: 2550
In ice ring: 0
Integrate: 2565
Total: 2565
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
160 [4 ]:
161 [18 ]: *
162 [434 ]: ****************************
163 [943 ]: **************************************************************
164 [1008]: *******************************************************************
165 [991 ]: *****************************************************************
166 [962 ]: ***************************************************************
167 [558 ]: *************************************
168 [53 ]: ***
169 [13 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00783534 GB
Integrated 400 (sum) + 395 (prf) / 466 reflections on image 163
Integrated 457 (sum) + 449 (prf) / 516 reflections on image 164
Integrated 459 (sum) + 451 (prf) / 524 reflections on image 165
Integrated 432 (sum) + 427 (prf) / 501 reflections on image 166
Integrated 451 (sum) + 449 (prf) / 505 reflections on image 167
Integrated 33 (sum) + 33 (prf) / 40 reflections on image 168
Integrated 8 (sum) + 8 (prf) / 13 reflections on image 169
Beginning integration job 33
Frames: 165 -> 175
Number of reflections
Partial: 16
Full: 2533
In ice ring: 0
Integrate: 2549
Total: 2549
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
165 [3 ]:
166 [24 ]: *
167 [434 ]: ****************************
168 [938 ]: **************************************************************
169 [964 ]: ****************************************************************
170 [1007]: *******************************************************************
171 [990 ]: *****************************************************************
172 [551 ]: ************************************
173 [71 ]: ****
174 [16 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00801745 GB
Integrated 400 (sum) + 396 (prf) / 471 reflections on image 168
Integrated 433 (sum) + 428 (prf) / 494 reflections on image 169
Integrated 428 (sum) + 426 (prf) / 503 reflections on image 170
Integrated 457 (sum) + 451 (prf) / 530 reflections on image 171
Integrated 423 (sum) + 423 (prf) / 480 reflections on image 172
Integrated 47 (sum) + 46 (prf) / 55 reflections on image 173
Integrated 16 (sum) + 16 (prf) / 16 reflections on image 174
Beginning integration job 34
Frames: 170 -> 180
Number of reflections
Partial: 12
Full: 2550
In ice ring: 0
Integrate: 2562
Total: 2562
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
170 [4 ]:
171 [18 ]: *
172 [430]: *****************************
173 [936]: ****************************************************************
174 [983]: ********************************************************************
175 [970]: *******************************************************************
176 [959]: ******************************************************************
177 [576]: ***************************************
178 [70 ]: ****
179 [12 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00764634 GB
Integrated 407 (sum) + 404 (prf) / 478 reflections on image 173
Integrated 418 (sum) + 415 (prf) / 488 reflections on image 174
Integrated 459 (sum) + 453 (prf) / 534 reflections on image 175
Integrated 427 (sum) + 425 (prf) / 486 reflections on image 176
Integrated 434 (sum) + 431 (prf) / 506 reflections on image 177
Integrated 52 (sum) + 52 (prf) / 58 reflections on image 178
Integrated 9 (sum) + 9 (prf) / 12 reflections on image 179
Beginning integration job 35
Frames: 175 -> 185
Number of reflections
Partial: 15
Full: 2532
In ice ring: 0
Integrate: 2547
Total: 2547
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
176 [12 ]:
177 [403]: ***************************
178 [929]: ***************************************************************
179 [971]: ******************************************************************
180 [960]: *****************************************************************
181 [993]: ********************************************************************
182 [587]: ****************************************
183 [69 ]: ****
184 [15 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00781078 GB
Integrated 384 (sum) + 379 (prf) / 445 reflections on image 178
Integrated 463 (sum) + 461 (prf) / 536 reflections on image 179
Integrated 407 (sum) + 407 (prf) / 475 reflections on image 180
Integrated 429 (sum) + 427 (prf) / 504 reflections on image 181
Integrated 451 (sum) + 448 (prf) / 518 reflections on image 182
Integrated 46 (sum) + 45 (prf) / 54 reflections on image 183
Integrated 11 (sum) + 11 (prf) / 15 reflections on image 184
Beginning integration job 36
Frames: 180 -> 190
Number of reflections
Partial: 20
Full: 2527
In ice ring: 0
Integrate: 2547
Total: 2547
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
180 [4 ]:
181 [15 ]: *
182 [419]: ****************************
183 [930]: ***************************************************************
184 [993]: ********************************************************************
185 [986]: *******************************************************************
186 [981]: *******************************************************************
187 [578]: ***************************************
188 [56 ]: ***
189 [14 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00768712 GB
Integrated 395 (sum) + 389 (prf) / 453 reflections on image 183
Integrated 440 (sum) + 436 (prf) / 512 reflections on image 184
Integrated 426 (sum) + 422 (prf) / 504 reflections on image 185
Integrated 427 (sum) + 425 (prf) / 500 reflections on image 186
Integrated 453 (sum) + 450 (prf) / 522 reflections on image 187
Integrated 36 (sum) + 36 (prf) / 42 reflections on image 188
Integrated 11 (sum) + 11 (prf) / 14 reflections on image 189
Beginning integration job 37
Frames: 185 -> 195
Number of reflections
Partial: 16
Full: 2539
In ice ring: 0
Integrate: 2555
Total: 2555
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
185 [2 ]:
186 [15 ]: *
187 [425 ]: ****************************
188 [930 ]: **************************************************************
189 [994 ]: ******************************************************************
190 [979 ]: *****************************************************************
191 [1003]: *******************************************************************
192 [589 ]: ***************************************
193 [69 ]: ****
194 [20 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00787681 GB
Integrated 390 (sum) + 388 (prf) / 452 reflections on image 188
Integrated 451 (sum) + 444 (prf) / 522 reflections on image 189
Integrated 428 (sum) + 424 (prf) / 496 reflections on image 190
Integrated 425 (sum) + 421 (prf) / 496 reflections on image 191
Integrated 447 (sum) + 446 (prf) / 520 reflections on image 192
Integrated 45 (sum) + 45 (prf) / 49 reflections on image 193
Integrated 18 (sum) + 18 (prf) / 20 reflections on image 194
Beginning integration job 38
Frames: 190 -> 200
Number of reflections
Partial: 15
Full: 2549
In ice ring: 0
Integrate: 2564
Total: 2564
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
190 [3 ]:
191 [17 ]: *
192 [429]: *****************************
193 [926]: ***************************************************************
194 [990]: ********************************************************************
195 [969]: ******************************************************************
196 [983]: *******************************************************************
197 [563]: **************************************
198 [46 ]: ***
199 [9 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00766249 GB
Integrated 381 (sum) + 377 (prf) / 445 reflections on image 193
Integrated 468 (sum) + 462 (prf) / 540 reflections on image 194
Integrated 428 (sum) + 420 (prf) / 488 reflections on image 195
Integrated 464 (sum) + 462 (prf) / 528 reflections on image 196
Integrated 444 (sum) + 438 (prf) / 517 reflections on image 197
Integrated 28 (sum) + 28 (prf) / 37 reflections on image 198
Integrated 7 (sum) + 7 (prf) / 9 reflections on image 199
Beginning integration job 39
Frames: 195 -> 205
Number of reflections
Partial: 20
Full: 2526
In ice ring: 0
Integrate: 2546
Total: 2546
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
195 [7 ]:
196 [16 ]: *
197 [423 ]: ***************************
198 [931 ]: *************************************************************
199 [1013]: *******************************************************************
200 [982 ]: ****************************************************************
201 [969 ]: ****************************************************************
202 [577 ]: **************************************
203 [69 ]: ****
204 [17 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00795397 GB
Integrated 370 (sum) + 367 (prf) / 431 reflections on image 198
Integrated 461 (sum) + 455 (prf) / 522 reflections on image 199
Integrated 446 (sum) + 439 (prf) / 521 reflections on image 200
Integrated 433 (sum) + 433 (prf) / 495 reflections on image 201
Integrated 434 (sum) + 429 (prf) / 508 reflections on image 202
Integrated 43 (sum) + 43 (prf) / 52 reflections on image 203
Integrated 13 (sum) + 13 (prf) / 17 reflections on image 204
Beginning integration job 40
Frames: 200 -> 210
Number of reflections
Partial: 14
Full: 2513
In ice ring: 0
Integrate: 2527
Total: 2527
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
200 [5 ]:
201 [16 ]: *
202 [430 ]: ****************************
203 [923 ]: *************************************************************
204 [980 ]: ****************************************************************
205 [1011]: *******************************************************************
206 [959 ]: ***************************************************************
207 [540 ]: ***********************************
208 [58 ]: ***
209 [9 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00793562 GB
Integrated 400 (sum) + 393 (prf) / 457 reflections on image 203
Integrated 418 (sum) + 415 (prf) / 489 reflections on image 204
Integrated 455 (sum) + 452 (prf) / 525 reflections on image 205
Integrated 458 (sum) + 451 (prf) / 516 reflections on image 206
Integrated 409 (sum) + 407 (prf) / 482 reflections on image 207
Integrated 44 (sum) + 44 (prf) / 49 reflections on image 208
Integrated 7 (sum) + 7 (prf) / 9 reflections on image 209
Beginning integration job 41
Frames: 205 -> 215
Number of reflections
Partial: 10
Full: 2573
In ice ring: 0
Integrate: 2583
Total: 2583
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
205 [1 ]:
206 [14 ]:
207 [432]: *****************************
208 [965]: ******************************************************************
209 [994]: ********************************************************************
210 [969]: ******************************************************************
211 [976]: ******************************************************************
212 [576]: ***************************************
213 [51 ]: ***
214 [8 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00763982 GB
Integrated 411 (sum) + 410 (prf) / 475 reflections on image 208
Integrated 447 (sum) + 442 (prf) / 521 reflections on image 209
Integrated 437 (sum) + 431 (prf) / 506 reflections on image 210
Integrated 435 (sum) + 433 (prf) / 505 reflections on image 211
Integrated 462 (sum) + 459 (prf) / 525 reflections on image 212
Integrated 35 (sum) + 35 (prf) / 43 reflections on image 213
Integrated 8 (sum) + 8 (prf) / 8 reflections on image 214
Beginning integration job 42
Frames: 210 -> 220
Number of reflections
Partial: 22
Full: 2520
In ice ring: 0
Integrate: 2542
Total: 2542
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
210 [2 ]:
211 [14 ]:
212 [421]: ****************************
213 [928]: ***************************************************************
214 [990]: ********************************************************************
215 [981]: *******************************************************************
216 [972]: ******************************************************************
217 [594]: ****************************************
218 [80 ]: *****
219 [20 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00790588 GB
Integrated 380 (sum) + 375 (prf) / 448 reflections on image 213
Integrated 432 (sum) + 427 (prf) / 499 reflections on image 214
Integrated 460 (sum) + 450 (prf) / 529 reflections on image 215
Integrated 415 (sum) + 411 (prf) / 472 reflections on image 216
Integrated 441 (sum) + 435 (prf) / 514 reflections on image 217
Integrated 51 (sum) + 51 (prf) / 60 reflections on image 218
Integrated 19 (sum) + 19 (prf) / 20 reflections on image 219
Beginning integration job 43
Frames: 215 -> 225
Number of reflections
Partial: 16
Full: 2553
In ice ring: 0
Integrate: 2569
Total: 2569
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
215 [3 ]:
216 [14 ]:
217 [423 ]: ****************************
218 [945 ]: ***************************************************************
219 [959 ]: ****************************************************************
220 [1001]: *******************************************************************
221 [984 ]: *****************************************************************
222 [591 ]: ***************************************
223 [60 ]: ****
224 [11 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00773788 GB
Integrated 407 (sum) + 406 (prf) / 461 reflections on image 218
Integrated 442 (sum) + 437 (prf) / 502 reflections on image 219
Integrated 452 (sum) + 444 (prf) / 515 reflections on image 220
Integrated 419 (sum) + 413 (prf) / 500 reflections on image 221
Integrated 460 (sum) + 459 (prf) / 531 reflections on image 222
Integrated 41 (sum) + 41 (prf) / 49 reflections on image 223
Integrated 9 (sum) + 9 (prf) / 11 reflections on image 224
Beginning integration job 44
Frames: 220 -> 230
Number of reflections
Partial: 16
Full: 2527
In ice ring: 0
Integrate: 2543
Total: 2543
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
220 [4 ]:
221 [16 ]: *
222 [397]: ***************************
223 [927]: ***************************************************************
224 [977]: *******************************************************************
225 [981]: *******************************************************************
226 [985]: ********************************************************************
227 [581]: ****************************************
228 [68 ]: ****
229 [13 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00777503 GB
Integrated 385 (sum) + 382 (prf) / 442 reflections on image 223
Integrated 461 (sum) + 455 (prf) / 526 reflections on image 224
Integrated 418 (sum) + 414 (prf) / 489 reflections on image 225
Integrated 435 (sum) + 431 (prf) / 505 reflections on image 226
Integrated 442 (sum) + 441 (prf) / 513 reflections on image 227
Integrated 47 (sum) + 47 (prf) / 55 reflections on image 228
Integrated 10 (sum) + 10 (prf) / 13 reflections on image 229
Beginning integration job 45
Frames: 225 -> 235
Number of reflections
Partial: 20
Full: 2546
In ice ring: 0
Integrate: 2566
Total: 2566
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
225 [3 ]:
226 [16 ]: *
227 [418]: ****************************
228 [927]: ***************************************************************
229 [994]: *******************************************************************
230 [999]: ********************************************************************
231 [967]: *****************************************************************
232 [583]: ***************************************
233 [54 ]: ***
234 [12 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00783433 GB
Integrated 409 (sum) + 405 (prf) / 458 reflections on image 228
Integrated 455 (sum) + 446 (prf) / 502 reflections on image 229
Integrated 449 (sum) + 441 (prf) / 527 reflections on image 230
Integrated 431 (sum) + 427 (prf) / 496 reflections on image 231
Integrated 439 (sum) + 435 (prf) / 529 reflections on image 232
Integrated 37 (sum) + 37 (prf) / 42 reflections on image 233
Integrated 12 (sum) + 12 (prf) / 12 reflections on image 234
Beginning integration job 46
Frames: 230 -> 240
Number of reflections
Partial: 25
Full: 2519
In ice ring: 0
Integrate: 2544
Total: 2544
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
230 [4 ]:
231 [20 ]: *
232 [415]: ****************************
233 [920]: **************************************************************
234 [992]: *******************************************************************
235 [997]: ********************************************************************
236 [972]: ******************************************************************
237 [586]: ***************************************
238 [61 ]: ****
239 [15 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00778482 GB
Integrated 383 (sum) + 380 (prf) / 447 reflections on image 233
Integrated 426 (sum) + 419 (prf) / 497 reflections on image 234
Integrated 448 (sum) + 442 (prf) / 525 reflections on image 235
Integrated 437 (sum) + 435 (prf) / 489 reflections on image 236
Integrated 462 (sum) + 459 (prf) / 525 reflections on image 237
Integrated 44 (sum) + 43 (prf) / 46 reflections on image 238
Integrated 12 (sum) + 11 (prf) / 15 reflections on image 239
Beginning integration job 47
Frames: 235 -> 245
Number of reflections
Partial: 26
Full: 2548
In ice ring: 0
Integrate: 2574
Total: 2574
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
235 [4 ]:
236 [22 ]: *
237 [410]: ****************************
238 [961]: *****************************************************************
239 [988]: *******************************************************************
240 [991]: ********************************************************************
241 [975]: ******************************************************************
242 [576]: ***************************************
243 [60 ]: ****
244 [16 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00787786 GB
Integrated 374 (sum) + 372 (prf) / 441 reflections on image 238
Integrated 461 (sum) + 457 (prf) / 532 reflections on image 239
Integrated 443 (sum) + 437 (prf) / 516 reflections on image 240
Integrated 451 (sum) + 446 (prf) / 509 reflections on image 241
Integrated 442 (sum) + 438 (prf) / 516 reflections on image 242
Integrated 37 (sum) + 37 (prf) / 44 reflections on image 243
Integrated 11 (sum) + 11 (prf) / 16 reflections on image 244
Beginning integration job 48
Frames: 240 -> 250
Number of reflections
Partial: 22
Full: 2533
In ice ring: 0
Integrate: 2555
Total: 2555
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
240 [4 ]:
241 [23 ]: *
242 [415]: ****************************
243 [931]: ***************************************************************
244 [985]: *******************************************************************
245 [990]: ********************************************************************
246 [987]: *******************************************************************
247 [578]: ***************************************
248 [62 ]: ****
249 [12 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00784308 GB
Integrated 388 (sum) + 386 (prf) / 451 reflections on image 243
Integrated 443 (sum) + 441 (prf) / 516 reflections on image 244
Integrated 431 (sum) + 428 (prf) / 503 reflections on image 245
Integrated 417 (sum) + 414 (prf) / 507 reflections on image 246
Integrated 452 (sum) + 448 (prf) / 516 reflections on image 247
Integrated 39 (sum) + 39 (prf) / 50 reflections on image 248
Integrated 8 (sum) + 8 (prf) / 12 reflections on image 249
Beginning integration job 49
Frames: 245 -> 255
Number of reflections
Partial: 19
Full: 2545
In ice ring: 0
Integrate: 2564
Total: 2564
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
245 [2 ]:
246 [14 ]:
247 [412]: ****************************
248 [945]: *****************************************************************
249 [942]: *****************************************************************
250 [985]: ********************************************************************
251 [982]: *******************************************************************
252 [568]: ***************************************
253 [62 ]: ****
254 [16 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00772394 GB
Integrated 418 (sum) + 414 (prf) / 486 reflections on image 248
Integrated 424 (sum) + 419 (prf) / 483 reflections on image 249
Integrated 452 (sum) + 448 (prf) / 522 reflections on image 250
Integrated 433 (sum) + 426 (prf) / 505 reflections on image 251
Integrated 440 (sum) + 438 (prf) / 506 reflections on image 252
Integrated 36 (sum) + 36 (prf) / 46 reflections on image 253
Integrated 12 (sum) + 12 (prf) / 16 reflections on image 254
Beginning integration job 50
Frames: 250 -> 260
Number of reflections
Partial: 14
Full: 2538
In ice ring: 0
Integrate: 2552
Total: 2552
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
250 [6 ]:
251 [15 ]:
252 [428 ]: ****************************
253 [900 ]: ***********************************************************
254 [936 ]: *************************************************************
255 [1017]: *******************************************************************
256 [1003]: ******************************************************************
257 [589 ]: **************************************
258 [62 ]: ****
259 [17 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0079356 GB
Integrated 396 (sum) + 394 (prf) / 458 reflections on image 253
Integrated 421 (sum) + 416 (prf) / 489 reflections on image 254
Integrated 427 (sum) + 423 (prf) / 494 reflections on image 255
Integrated 434 (sum) + 430 (prf) / 522 reflections on image 256
Integrated 458 (sum) + 456 (prf) / 527 reflections on image 257
Integrated 39 (sum) + 39 (prf) / 45 reflections on image 258
Integrated 16 (sum) + 16 (prf) / 17 reflections on image 259
Beginning integration job 51
Frames: 255 -> 265
Number of reflections
Partial: 24
Full: 2527
In ice ring: 0
Integrate: 2551
Total: 2551
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
255 [3 ]:
256 [23 ]: *
257 [400 ]: **************************
258 [951 ]: **************************************************************
259 [1019]: *******************************************************************
260 [960 ]: ***************************************************************
261 [959 ]: ***************************************************************
262 [554 ]: ************************************
263 [66 ]: ****
264 [19 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0079912 GB
Integrated 373 (sum) + 370 (prf) / 430 reflections on image 258
Integrated 485 (sum) + 476 (prf) / 558 reflections on image 259
Integrated 426 (sum) + 423 (prf) / 495 reflections on image 260
Integrated 440 (sum) + 436 (prf) / 514 reflections on image 261
Integrated 415 (sum) + 409 (prf) / 488 reflections on image 262
Integrated 34 (sum) + 34 (prf) / 47 reflections on image 263
Integrated 15 (sum) + 15 (prf) / 19 reflections on image 264
Beginning integration job 52
Frames: 260 -> 270
Number of reflections
Partial: 24
Full: 2574
In ice ring: 0
Integrate: 2598
Total: 2598
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
260 [6 ]:
261 [18 ]: *
262 [425 ]: ****************************
263 [925 ]: *************************************************************
264 [982 ]: ****************************************************************
265 [1009]: ******************************************************************
266 [1014]: *******************************************************************
267 [614 ]: ****************************************
268 [83 ]: *****
269 [21 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00774676 GB
Integrated 388 (sum) + 384 (prf) / 451 reflections on image 263
Integrated 434 (sum) + 429 (prf) / 499 reflections on image 264
Integrated 461 (sum) + 454 (prf) / 523 reflections on image 265
Integrated 446 (sum) + 446 (prf) / 511 reflections on image 266
Integrated 454 (sum) + 450 (prf) / 531 reflections on image 267
Integrated 56 (sum) + 56 (prf) / 62 reflections on image 268
Integrated 18 (sum) + 18 (prf) / 21 reflections on image 269
Beginning integration job 53
Frames: 265 -> 275
Number of reflections
Partial: 21
Full: 2499
In ice ring: 0
Integrate: 2520
Total: 2520
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
265 [2 ]:
266 [20 ]: *
267 [413 ]: ***************************
268 [899 ]: ***********************************************************
269 [987 ]: ****************************************************************
270 [1018]: *******************************************************************
271 [980 ]: ****************************************************************
272 [512 ]: *********************************
273 [62 ]: ****
274 [12 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00806846 GB
Integrated 389 (sum) + 389 (prf) / 452 reflections on image 268
Integrated 425 (sum) + 419 (prf) / 491 reflections on image 269
Integrated 437 (sum) + 433 (prf) / 511 reflections on image 270
Integrated 481 (sum) + 474 (prf) / 554 reflections on image 271
Integrated 394 (sum) + 389 (prf) / 450 reflections on image 272
Integrated 41 (sum) + 41 (prf) / 50 reflections on image 273
Integrated 10 (sum) + 10 (prf) / 12 reflections on image 274
Beginning integration job 54
Frames: 270 -> 280
Number of reflections
Partial: 10
Full: 2548
In ice ring: 0
Integrate: 2558
Total: 2558
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
270 [2 ]:
271 [12 ]:
272 [417]: ****************************
273 [947]: *****************************************************************
274 [950]: *****************************************************************
275 [970]: *******************************************************************
276 [979]: ********************************************************************
277 [560]: **************************************
278 [60 ]: ****
279 [5 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00775282 GB
Integrated 422 (sum) + 418 (prf) / 484 reflections on image 273
Integrated 448 (sum) + 442 (prf) / 520 reflections on image 274
Integrated 418 (sum) + 416 (prf) / 485 reflections on image 275
Integrated 438 (sum) + 435 (prf) / 509 reflections on image 276
Integrated 417 (sum) + 414 (prf) / 500 reflections on image 277
Integrated 46 (sum) + 46 (prf) / 55 reflections on image 278
Integrated 4 (sum) + 3 (prf) / 5 reflections on image 279
Beginning integration job 55
Frames: 275 -> 285
Number of reflections
Partial: 11
Full: 2533
In ice ring: 0
Integrate: 2544
Total: 2544
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
275 [2 ]:
276 [18 ]: *
277 [414]: ****************************
278 [956]: ******************************************************************
279 [980]: ********************************************************************
280 [950]: *****************************************************************
281 [973]: *******************************************************************
282 [553]: **************************************
283 [62 ]: ****
284 [11 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00766241 GB
Integrated 398 (sum) + 394 (prf) / 455 reflections on image 278
Integrated 479 (sum) + 471 (prf) / 550 reflections on image 279
Integrated 410 (sum) + 409 (prf) / 463 reflections on image 280
Integrated 458 (sum) + 451 (prf) / 523 reflections on image 281
Integrated 416 (sum) + 413 (prf) / 491 reflections on image 282
Integrated 45 (sum) + 45 (prf) / 51 reflections on image 283
Integrated 11 (sum) + 11 (prf) / 11 reflections on image 284
Beginning integration job 56
Frames: 280 -> 290
Number of reflections
Partial: 31
Full: 2544
In ice ring: 0
Integrate: 2575
Total: 2575
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
280 [1 ]:
281 [32 ]: **
282 [428]: *****************************
283 [959]: *****************************************************************
284 [994]: ********************************************************************
285 [988]: *******************************************************************
286 [967]: ******************************************************************
287 [575]: ***************************************
288 [65 ]: ****
289 [18 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00783568 GB
Integrated 397 (sum) + 394 (prf) / 460 reflections on image 283
Integrated 469 (sum) + 462 (prf) / 530 reflections on image 284
Integrated 442 (sum) + 434 (prf) / 507 reflections on image 285
Integrated 426 (sum) + 420 (prf) / 503 reflections on image 286
Integrated 447 (sum) + 442 (prf) / 510 reflections on image 287
Integrated 39 (sum) + 39 (prf) / 47 reflections on image 288
Integrated 14 (sum) + 14 (prf) / 18 reflections on image 289
Beginning integration job 57
Frames: 285 -> 295
Number of reflections
Partial: 24
Full: 2524
In ice ring: 0
Integrate: 2548
Total: 2548
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
285 [2 ]:
286 [17 ]: *
287 [406 ]: ***************************
288 [922 ]: *************************************************************
289 [991 ]: ******************************************************************
290 [1005]: *******************************************************************
291 [973 ]: ****************************************************************
292 [553 ]: ************************************
293 [69 ]: ****
294 [12 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0079085 GB
Integrated 389 (sum) + 386 (prf) / 452 reflections on image 288
Integrated 454 (sum) + 448 (prf) / 518 reflections on image 289
Integrated 447 (sum) + 439 (prf) / 514 reflections on image 290
Integrated 446 (sum) + 442 (prf) / 511 reflections on image 291
Integrated 413 (sum) + 412 (prf) / 484 reflections on image 292
Integrated 51 (sum) + 50 (prf) / 57 reflections on image 293
Integrated 10 (sum) + 10 (prf) / 12 reflections on image 294
Beginning integration job 58
Frames: 290 -> 300
Number of reflections
Partial: 10
Full: 2550
In ice ring: 0
Integrate: 2560
Total: 2560
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
290 [2 ]:
291 [18 ]: *
292 [438]: ******************************
293 [946]: *****************************************************************
294 [961]: ******************************************************************
295 [957]: ******************************************************************
296 [978]: ********************************************************************
297 [566]: ***************************************
298 [50 ]: ***
299 [6 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00778039 GB
Integrated 406 (sum) + 401 (prf) / 466 reflections on image 293
Integrated 442 (sum) + 440 (prf) / 535 reflections on image 294
Integrated 405 (sum) + 403 (prf) / 465 reflections on image 295
Integrated 456 (sum) + 451 (prf) / 528 reflections on image 296
Integrated 437 (sum) + 436 (prf) / 516 reflections on image 297
Integrated 38 (sum) + 36 (prf) / 44 reflections on image 298
Integrated 4 (sum) + 4 (prf) / 6 reflections on image 299
Beginning integration job 59
Frames: 295 -> 305
Number of reflections
Partial: 17
Full: 2549
In ice ring: 0
Integrate: 2566
Total: 2566
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
295 [5 ]:
296 [26 ]: *
297 [437 ]: *****************************
298 [934 ]: **************************************************************
299 [995 ]: ******************************************************************
300 [1002]: *******************************************************************
301 [987 ]: *****************************************************************
302 [573 ]: **************************************
303 [61 ]: ****
304 [12 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00787354 GB
Integrated 391 (sum) + 389 (prf) / 465 reflections on image 298
Integrated 421 (sum) + 412 (prf) / 502 reflections on image 299
Integrated 454 (sum) + 452 (prf) / 509 reflections on image 300
Integrated 447 (sum) + 445 (prf) / 517 reflections on image 301
Integrated 438 (sum) + 435 (prf) / 512 reflections on image 302
Integrated 46 (sum) + 46 (prf) / 49 reflections on image 303
Integrated 11 (sum) + 11 (prf) / 12 reflections on image 304
Beginning integration job 60
Frames: 300 -> 310
Number of reflections
Partial: 13
Full: 2508
In ice ring: 0
Integrate: 2521
Total: 2521
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
300 [5 ]:
301 [23 ]: *
302 [414 ]: ***************************
303 [938 ]: **************************************************************
304 [1002]: *******************************************************************
305 [972 ]: ****************************************************************
306 [956 ]: ***************************************************************
307 [551 ]: ************************************
308 [62 ]: ****
309 [7 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00769103 GB
Integrated 372 (sum) + 368 (prf) / 442 reflections on image 303
Integrated 448 (sum) + 442 (prf) / 519 reflections on image 304
Integrated 439 (sum) + 430 (prf) / 514 reflections on image 305
Integrated 433 (sum) + 429 (prf) / 495 reflections on image 306
Integrated 425 (sum) + 422 (prf) / 489 reflections on image 307
Integrated 47 (sum) + 47 (prf) / 55 reflections on image 308
Integrated 6 (sum) + 6 (prf) / 7 reflections on image 309
Beginning integration job 61
Frames: 305 -> 315
Number of reflections
Partial: 3
Full: 2579
In ice ring: 0
Integrate: 2582
Total: 2582
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
305 [4 ]:
306 [21 ]: *
307 [459]: *******************************
308 [985]: ********************************************************************
309 [977]: *******************************************************************
310 [935]: ****************************************************************
311 [976]: *******************************************************************
312 [587]: ****************************************
313 [56 ]: ***
314 [2 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00788664 GB
Integrated 425 (sum) + 421 (prf) / 495 reflections on image 308
Integrated 456 (sum) + 452 (prf) / 529 reflections on image 309
Integrated 414 (sum) + 411 (prf) / 480 reflections on image 310
Integrated 431 (sum) + 428 (prf) / 491 reflections on image 311
Integrated 466 (sum) + 457 (prf) / 531 reflections on image 312
Integrated 49 (sum) + 49 (prf) / 54 reflections on image 313
Integrated 1 (sum) + 1 (prf) / 2 reflections on image 314
Beginning integration job 62
Frames: 310 -> 320
Number of reflections
Partial: 18
Full: 2501
In ice ring: 0
Integrate: 2519
Total: 2519
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
310 [5 ]:
311 [16 ]: *
312 [430 ]: ****************************
313 [921 ]: ************************************************************
314 [1000]: *****************************************************************
315 [1020]: *******************************************************************
316 [968 ]: ***************************************************************
317 [500 ]: ********************************
318 [53 ]: ***
319 [17 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00843223 GB
Integrated 393 (sum) + 389 (prf) / 465 reflections on image 313
Integrated 428 (sum) + 422 (prf) / 495 reflections on image 314
Integrated 434 (sum) + 432 (prf) / 507 reflections on image 315
Integrated 486 (sum) + 483 (prf) / 552 reflections on image 316
Integrated 390 (sum) + 385 (prf) / 447 reflections on image 317
Integrated 30 (sum) + 29 (prf) / 36 reflections on image 318
Integrated 15 (sum) + 15 (prf) / 17 reflections on image 319
Beginning integration job 63
Frames: 315 -> 325
Number of reflections
Partial: 19
Full: 2590
In ice ring: 0
Integrate: 2609
Total: 2609
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
315 [2 ]:
316 [17 ]: *
317 [440]: ******************************
318 [960]: *****************************************************************
319 [972]: ******************************************************************
320 [993]: ********************************************************************
321 [987]: *******************************************************************
322 [601]: *****************************************
323 [54 ]: ***
324 [13 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00801271 GB
Integrated 417 (sum) + 415 (prf) / 492 reflections on image 318
Integrated 456 (sum) + 451 (prf) / 514 reflections on image 319
Integrated 427 (sum) + 424 (prf) / 483 reflections on image 320
Integrated 445 (sum) + 443 (prf) / 519 reflections on image 321
Integrated 465 (sum) + 459 (prf) / 547 reflections on image 322
Integrated 32 (sum) + 32 (prf) / 41 reflections on image 323
Integrated 10 (sum) + 10 (prf) / 13 reflections on image 324
Beginning integration job 64
Frames: 320 -> 330
Number of reflections
Partial: 21
Full: 2508
In ice ring: 0
Integrate: 2529
Total: 2529
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
320 [3 ]:
321 [11 ]:
322 [411]: ****************************
323 [898]: *************************************************************
324 [992]: *******************************************************************
325 [991]: *******************************************************************
326 [994]: ********************************************************************
327 [582]: ***************************************
328 [76 ]: *****
329 [14 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0078232 GB
Integrated 364 (sum) + 362 (prf) / 424 reflections on image 323
Integrated 450 (sum) + 444 (prf) / 520 reflections on image 324
Integrated 432 (sum) + 429 (prf) / 494 reflections on image 325
Integrated 435 (sum) + 429 (prf) / 509 reflections on image 326
Integrated 433 (sum) + 429 (prf) / 506 reflections on image 327
Integrated 54 (sum) + 54 (prf) / 62 reflections on image 328
Integrated 12 (sum) + 12 (prf) / 14 reflections on image 329
Beginning integration job 65
Frames: 325 -> 335
Number of reflections
Partial: 20
Full: 2523
In ice ring: 0
Integrate: 2543
Total: 2543
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
325 [3 ]:
326 [10 ]:
327 [429 ]: ****************************
328 [985 ]: *****************************************************************
329 [1007]: *******************************************************************
330 [939 ]: **************************************************************
331 [937 ]: **************************************************************
332 [544 ]: ************************************
333 [62 ]: ****
334 [11 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0078829 GB
Integrated 404 (sum) + 402 (prf) / 470 reflections on image 328
Integrated 484 (sum) + 480 (prf) / 550 reflections on image 329
Integrated 416 (sum) + 411 (prf) / 487 reflections on image 330
Integrated 424 (sum) + 421 (prf) / 492 reflections on image 331
Integrated 418 (sum) + 415 (prf) / 482 reflections on image 332
Integrated 47 (sum) + 46 (prf) / 51 reflections on image 333
Integrated 10 (sum) + 10 (prf) / 11 reflections on image 334
Beginning integration job 66
Frames: 330 -> 340
Number of reflections
Partial: 17
Full: 2563
In ice ring: 0
Integrate: 2580
Total: 2580
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
330 [5 ]:
331 [17 ]: *
332 [432 ]: ****************************
333 [956 ]: ***************************************************************
334 [950 ]: ***************************************************************
335 [1009]: *******************************************************************
336 [1003]: ******************************************************************
337 [555 ]: ************************************
338 [60 ]: ***
339 [12 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00801079 GB
Integrated 429 (sum) + 427 (prf) / 493 reflections on image 333
Integrated 417 (sum) + 410 (prf) / 486 reflections on image 334
Integrated 426 (sum) + 419 (prf) / 501 reflections on image 335
Integrated 459 (sum) + 454 (prf) / 545 reflections on image 336
Integrated 428 (sum) + 427 (prf) / 495 reflections on image 337
Integrated 43 (sum) + 43 (prf) / 48 reflections on image 338
Integrated 11 (sum) + 11 (prf) / 12 reflections on image 339
Beginning integration job 67
Frames: 335 -> 345
Number of reflections
Partial: 17
Full: 2537
In ice ring: 0
Integrate: 2554
Total: 2554
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
335 [4 ]:
336 [23 ]: *
337 [416]: ****************************
338 [936]: ****************************************************************
339 [972]: *******************************************************************
340 [974]: *******************************************************************
341 [980]: ********************************************************************
342 [591]: *****************************************
343 [72 ]: ****
344 [14 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00778416 GB
Integrated 384 (sum) + 379 (prf) / 460 reflections on image 338
Integrated 446 (sum) + 437 (prf) / 513 reflections on image 339
Integrated 422 (sum) + 414 (prf) / 492 reflections on image 340
Integrated 444 (sum) + 443 (prf) / 498 reflections on image 341
Integrated 457 (sum) + 453 (prf) / 519 reflections on image 342
Integrated 53 (sum) + 52 (prf) / 58 reflections on image 343
Integrated 12 (sum) + 12 (prf) / 14 reflections on image 344
Beginning integration job 68
Frames: 340 -> 350
Number of reflections
Partial: 21
Full: 2548
In ice ring: 0
Integrate: 2569
Total: 2569
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
340 [5 ]:
341 [20 ]: *
342 [412]: ****************************
343 [938]: ***************************************************************
344 [978]: ******************************************************************
345 [998]: ********************************************************************
346 [991]: *******************************************************************
347 [570]: **************************************
348 [63 ]: ****
349 [20 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00809052 GB
Integrated 380 (sum) + 377 (prf) / 459 reflections on image 343
Integrated 438 (sum) + 435 (prf) / 508 reflections on image 344
Integrated 425 (sum) + 418 (prf) / 494 reflections on image 345
Integrated 455 (sum) + 450 (prf) / 538 reflections on image 346
Integrated 436 (sum) + 433 (prf) / 507 reflections on image 347
Integrated 35 (sum) + 35 (prf) / 43 reflections on image 348
Integrated 17 (sum) + 17 (prf) / 20 reflections on image 349
Beginning integration job 69
Frames: 345 -> 355
Number of reflections
Partial: 23
Full: 2516
In ice ring: 0
Integrate: 2539
Total: 2539
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
345 [2 ]:
346 [17 ]: *
347 [403]: ***************************
348 [928]: ***************************************************************
349 [998]: ********************************************************************
350 [985]: *******************************************************************
351 [970]: ******************************************************************
352 [567]: **************************************
353 [52 ]: ***
354 [13 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00800388 GB
Integrated 385 (sum) + 383 (prf) / 439 reflections on image 348
Integrated 434 (sum) + 428 (prf) / 514 reflections on image 349
Integrated 457 (sum) + 449 (prf) / 517 reflections on image 350
Integrated 427 (sum) + 422 (prf) / 502 reflections on image 351
Integrated 441 (sum) + 435 (prf) / 515 reflections on image 352
Integrated 33 (sum) + 32 (prf) / 39 reflections on image 353
Integrated 11 (sum) + 11 (prf) / 13 reflections on image 354
Beginning integration job 70
Frames: 350 -> 360
Number of reflections
Partial: 14
Full: 2589
In ice ring: 0
Integrate: 2603
Total: 2603
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
350 [3 ]:
351 [19 ]: *
352 [427 ]: ****************************
353 [939 ]: *************************************************************
354 [985 ]: ****************************************************************
355 [1004]: *****************************************************************
356 [1021]: *******************************************************************
357 [597 ]: ***************************************
358 [57 ]: ***
359 [9 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0080149 GB
Integrated 400 (sum) + 394 (prf) / 455 reflections on image 353
Integrated 441 (sum) + 435 (prf) / 508 reflections on image 354
Integrated 452 (sum) + 447 (prf) / 512 reflections on image 355
Integrated 444 (sum) + 444 (prf) / 531 reflections on image 356
Integrated 474 (sum) + 468 (prf) / 540 reflections on image 357
Integrated 42 (sum) + 41 (prf) / 48 reflections on image 358
Integrated 8 (sum) + 8 (prf) / 9 reflections on image 359
Beginning integration job 71
Frames: 355 -> 365
Number of reflections
Partial: 12
Full: 2478
In ice ring: 0
Integrate: 2490
Total: 2490
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
355 [5 ]:
356 [19 ]: *
357 [415 ]: ***************************
358 [879 ]: **********************************************************
359 [929 ]: **************************************************************
360 [1002]: *******************************************************************
361 [945 ]: ***************************************************************
362 [560 ]: *************************************
363 [61 ]: ****
364 [15 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00758297 GB
Integrated 390 (sum) + 387 (prf) / 448 reflections on image 358
Integrated 397 (sum) + 393 (prf) / 459 reflections on image 359
Integrated 459 (sum) + 452 (prf) / 529 reflections on image 360
Integrated 415 (sum) + 411 (prf) / 494 reflections on image 361
Integrated 440 (sum) + 438 (prf) / 499 reflections on image 362
Integrated 37 (sum) + 37 (prf) / 46 reflections on image 363
Integrated 15 (sum) + 15 (prf) / 15 reflections on image 364
Beginning integration job 72
Frames: 360 -> 370
Number of reflections
Partial: 16
Full: 2615
In ice ring: 0
Integrate: 2631
Total: 2631
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
360 [2 ]:
361 [14 ]:
362 [413 ]: **************************
363 [925 ]: ************************************************************
364 [991 ]: ****************************************************************
365 [1029]: ******************************************************************
366 [1031]: *******************************************************************
367 [636 ]: *****************************************
368 [76 ]: ****
369 [13 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00824786 GB
Integrated 387 (sum) + 382 (prf) / 445 reflections on image 363
Integrated 454 (sum) + 448 (prf) / 513 reflections on image 364
Integrated 452 (sum) + 444 (prf) / 525 reflections on image 365
Integrated 430 (sum) + 427 (prf) / 512 reflections on image 366
Integrated 492 (sum) + 491 (prf) / 560 reflections on image 367
Integrated 56 (sum) + 55 (prf) / 63 reflections on image 368
Integrated 12 (sum) + 12 (prf) / 13 reflections on image 369
Beginning integration job 73
Frames: 365 -> 375
Number of reflections
Partial: 15
Full: 2487
In ice ring: 0
Integrate: 2502
Total: 2502
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
365 [5 ]:
366 [18 ]: *
367 [432]: ******************************
368 [910]: ***************************************************************
369 [905]: ***************************************************************
370 [908]: ***************************************************************
371 [972]: ********************************************************************
372 [574]: ****************************************
373 [59 ]: ****
374 [14 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00728005 GB
Integrated 407 (sum) + 405 (prf) / 471 reflections on image 368
Integrated 416 (sum) + 409 (prf) / 484 reflections on image 369
Integrated 404 (sum) + 401 (prf) / 465 reflections on image 370
Integrated 446 (sum) + 442 (prf) / 508 reflections on image 371
Integrated 441 (sum) + 436 (prf) / 515 reflections on image 372
Integrated 42 (sum) + 41 (prf) / 45 reflections on image 373
Integrated 12 (sum) + 12 (prf) / 14 reflections on image 374
Beginning integration job 74
Frames: 370 -> 380
Number of reflections
Partial: 28
Full: 2523
In ice ring: 0
Integrate: 2551
Total: 2551
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
370 [3 ]:
371 [15 ]:
372 [384 ]: *************************
373 [915 ]: ************************************************************
374 [1012]: *******************************************************************
375 [998 ]: ******************************************************************
376 [995 ]: *****************************************************************
377 [587 ]: **************************************
378 [73 ]: ****
379 [25 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00799432 GB
Integrated 360 (sum) + 357 (prf) / 415 reflections on image 373
Integrated 463 (sum) + 459 (prf) / 530 reflections on image 374
Integrated 451 (sum) + 446 (prf) / 515 reflections on image 375
Integrated 426 (sum) + 420 (prf) / 504 reflections on image 376
Integrated 444 (sum) + 440 (prf) / 514 reflections on image 377
Integrated 43 (sum) + 43 (prf) / 48 reflections on image 378
Integrated 21 (sum) + 21 (prf) / 25 reflections on image 379
Beginning integration job 75
Frames: 375 -> 385
Number of reflections
Partial: 20
Full: 2588
In ice ring: 0
Integrate: 2608
Total: 2608
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
375 [3 ]:
376 [15 ]:
377 [431 ]: ****************************
378 [972 ]: ****************************************************************
379 [1009]: *******************************************************************
380 [968 ]: ****************************************************************
381 [1005]: ******************************************************************
382 [602 ]: ***************************************
383 [77 ]: *****
384 [20 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00795858 GB
Integrated 396 (sum) + 395 (prf) / 460 reflections on image 378
Integrated 472 (sum) + 468 (prf) / 562 reflections on image 379
Integrated 426 (sum) + 420 (prf) / 493 reflections on image 380
Integrated 419 (sum) + 416 (prf) / 491 reflections on image 381
Integrated 451 (sum) + 448 (prf) / 525 reflections on image 382
Integrated 48 (sum) + 48 (prf) / 57 reflections on image 383
Integrated 16 (sum) + 16 (prf) / 20 reflections on image 384
Beginning integration job 76
Frames: 380 -> 390
Number of reflections
Partial: 22
Full: 2496
In ice ring: 0
Integrate: 2518
Total: 2518
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
380 [5 ]:
381 [23 ]: *
382 [406]: ****************************
383 [922]: ****************************************************************
384 [977]: ********************************************************************
385 [971]: *******************************************************************
386 [976]: *******************************************************************
387 [563]: ***************************************
388 [56 ]: ***
389 [16 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.007675 GB
Integrated 376 (sum) + 371 (prf) / 439 reflections on image 383
Integrated 435 (sum) + 429 (prf) / 505 reflections on image 384
Integrated 445 (sum) + 442 (prf) / 506 reflections on image 385
Integrated 442 (sum) + 439 (prf) / 505 reflections on image 386
Integrated 444 (sum) + 441 (prf) / 507 reflections on image 387
Integrated 34 (sum) + 34 (prf) / 40 reflections on image 388
Integrated 15 (sum) + 15 (prf) / 16 reflections on image 389
Beginning integration job 77
Frames: 385 -> 395
Number of reflections
Partial: 14
Full: 2558
In ice ring: 0
Integrate: 2572
Total: 2572
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
385 [6 ]:
386 [22 ]: *
387 [432 ]: ****************************
388 [941 ]: **************************************************************
389 [974 ]: ****************************************************************
390 [1003]: ******************************************************************
391 [1006]: *******************************************************************
392 [558 ]: *************************************
393 [65 ]: ****
394 [13 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0078926 GB
Integrated 412 (sum) + 407 (prf) / 472 reflections on image 388
Integrated 439 (sum) + 431 (prf) / 503 reflections on image 389
Integrated 428 (sum) + 426 (prf) / 504 reflections on image 390
Integrated 464 (sum) + 457 (prf) / 535 reflections on image 391
Integrated 430 (sum) + 425 (prf) / 493 reflections on image 392
Integrated 48 (sum) + 48 (prf) / 52 reflections on image 393
Integrated 12 (sum) + 12 (prf) / 13 reflections on image 394
Beginning integration job 78
Frames: 390 -> 400
Number of reflections
Partial: 11
Full: 2553
In ice ring: 0
Integrate: 2564
Total: 2564
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
390 [3 ]:
391 [14 ]:
392 [430]: *****************************
393 [940]: ****************************************************************
394 [987]: ********************************************************************
395 [980]: *******************************************************************
396 [980]: *******************************************************************
397 [567]: ***************************************
398 [53 ]: ***
399 [9 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00780534 GB
Integrated 403 (sum) + 401 (prf) / 467 reflections on image 393
Integrated 446 (sum) + 443 (prf) / 519 reflections on image 394
Integrated 423 (sum) + 417 (prf) / 491 reflections on image 395
Integrated 455 (sum) + 450 (prf) / 520 reflections on image 396
Integrated 444 (sum) + 442 (prf) / 514 reflections on image 397
Integrated 36 (sum) + 35 (prf) / 44 reflections on image 398
Integrated 9 (sum) + 9 (prf) / 9 reflections on image 399
Beginning integration job 79
Frames: 395 -> 405
Number of reflections
Partial: 11
Full: 2528
In ice ring: 0
Integrate: 2539
Total: 2539
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
395 [4 ]:
396 [17 ]: *
397 [402]: ***************************
398 [931]: ****************************************************************
399 [987]: ********************************************************************
400 [986]: *******************************************************************
401 [976]: *******************************************************************
402 [571]: ***************************************
403 [52 ]: ***
404 [10 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0078558 GB
Integrated 367 (sum) + 367 (prf) / 440 reflections on image 398
Integrated 435 (sum) + 432 (prf) / 506 reflections on image 399
Integrated 440 (sum) + 436 (prf) / 511 reflections on image 400
Integrated 435 (sum) + 431 (prf) / 511 reflections on image 401
Integrated 452 (sum) + 449 (prf) / 519 reflections on image 402
Integrated 36 (sum) + 34 (prf) / 42 reflections on image 403
Integrated 9 (sum) + 9 (prf) / 10 reflections on image 404
Beginning integration job 80
Frames: 400 -> 410
Number of reflections
Partial: 22
Full: 2531
In ice ring: 0
Integrate: 2553
Total: 2553
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
400 [3 ]:
401 [12 ]:
402 [414]: ****************************
403 [923]: ****************************************************************
404 [969]: *******************************************************************
405 [977]: *******************************************************************
406 [980]: ********************************************************************
407 [564]: ***************************************
408 [66 ]: ****
409 [15 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00767225 GB
Integrated 404 (sum) + 403 (prf) / 455 reflections on image 403
Integrated 456 (sum) + 450 (prf) / 526 reflections on image 404
Integrated 415 (sum) + 411 (prf) / 487 reflections on image 405
Integrated 454 (sum) + 452 (prf) / 521 reflections on image 406
Integrated 430 (sum) + 421 (prf) / 498 reflections on image 407
Integrated 42 (sum) + 42 (prf) / 51 reflections on image 408
Integrated 13 (sum) + 13 (prf) / 15 reflections on image 409
Beginning integration job 81
Frames: 405 -> 415
Number of reflections
Partial: 16
Full: 2556
In ice ring: 0
Integrate: 2572
Total: 2572
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
405 [1 ]:
406 [14 ]:
407 [413 ]: ***************************
408 [950 ]: ***************************************************************
409 [974 ]: ****************************************************************
410 [1008]: *******************************************************************
411 [985 ]: *****************************************************************
412 [577 ]: **************************************
413 [68 ]: ****
414 [15 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00784735 GB
Integrated 395 (sum) + 394 (prf) / 462 reflections on image 408
Integrated 432 (sum) + 427 (prf) / 503 reflections on image 409
Integrated 441 (sum) + 433 (prf) / 513 reflections on image 410
Integrated 448 (sum) + 448 (prf) / 517 reflections on image 411
Integrated 436 (sum) + 434 (prf) / 509 reflections on image 412
Integrated 47 (sum) + 47 (prf) / 53 reflections on image 413
Integrated 13 (sum) + 13 (prf) / 15 reflections on image 414
Beginning integration job 82
Frames: 410 -> 420
Number of reflections
Partial: 8
Full: 2534
In ice ring: 0
Integrate: 2542
Total: 2542
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
410 [4 ]:
411 [20 ]: *
412 [424]: ****************************
413 [932]: ***************************************************************
414 [989]: *******************************************************************
415 [972]: ******************************************************************
416 [997]: ********************************************************************
417 [548]: *************************************
418 [59 ]: ****
419 [5 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00783514 GB
Integrated 399 (sum) + 396 (prf) / 455 reflections on image 413
Integrated 460 (sum) + 457 (prf) / 521 reflections on image 414
Integrated 410 (sum) + 408 (prf) / 483 reflections on image 415
Integrated 459 (sum) + 449 (prf) / 535 reflections on image 416
Integrated 431 (sum) + 427 (prf) / 489 reflections on image 417
Integrated 44 (sum) + 43 (prf) / 54 reflections on image 418
Integrated 5 (sum) + 5 (prf) / 5 reflections on image 419
Beginning integration job 83
Frames: 415 -> 425
Number of reflections
Partial: 4
Full: 2557
In ice ring: 0
Integrate: 2561
Total: 2561
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
415 [2 ]:
416 [23 ]: *
417 [431]: *****************************
418 [960]: ******************************************************************
419 [985]: ********************************************************************
420 [984]: *******************************************************************
421 [952]: *****************************************************************
422 [563]: **************************************
423 [57 ]: ***
424 [8 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00784218 GB
Integrated 405 (sum) + 403 (prf) / 464 reflections on image 418
Integrated 448 (sum) + 443 (prf) / 518 reflections on image 419
Integrated 449 (sum) + 444 (prf) / 511 reflections on image 420
Integrated 428 (sum) + 426 (prf) / 505 reflections on image 421
Integrated 432 (sum) + 428 (prf) / 506 reflections on image 422
Integrated 39 (sum) + 39 (prf) / 49 reflections on image 423
Integrated 7 (sum) + 7 (prf) / 8 reflections on image 424
Beginning integration job 84
Frames: 420 -> 430
Number of reflections
Partial: 9
Full: 2528
In ice ring: 0
Integrate: 2537
Total: 2537
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
420 [3 ]:
421 [21 ]: *
422 [427]: *****************************
423 [926]: ***************************************************************
424 [964]: *****************************************************************
425 [998]: ********************************************************************
426 [969]: ******************************************************************
427 [558]: **************************************
428 [46 ]: ***
429 [11 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0077675 GB
Integrated 401 (sum) + 399 (prf) / 469 reflections on image 423
Integrated 429 (sum) + 426 (prf) / 486 reflections on image 424
Integrated 443 (sum) + 438 (prf) / 509 reflections on image 425
Integrated 452 (sum) + 448 (prf) / 515 reflections on image 426
Integrated 438 (sum) + 432 (prf) / 512 reflections on image 427
Integrated 28 (sum) + 28 (prf) / 35 reflections on image 428
Integrated 10 (sum) + 10 (prf) / 11 reflections on image 429
Beginning integration job 85
Frames: 425 -> 435
Number of reflections
Partial: 13
Full: 2528
In ice ring: 0
Integrate: 2541
Total: 2541
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
425 [1 ]:
426 [16 ]: *
427 [432]: *****************************
428 [921]: ***************************************************************
429 [962]: *****************************************************************
430 [994]: ********************************************************************
431 [964]: *****************************************************************
432 [554]: *************************************
433 [65 ]: ****
434 [15 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00778926 GB
Integrated 408 (sum) + 404 (prf) / 480 reflections on image 428
Integrated 420 (sum) + 415 (prf) / 485 reflections on image 429
Integrated 440 (sum) + 432 (prf) / 503 reflections on image 430
Integrated 454 (sum) + 449 (prf) / 519 reflections on image 431
Integrated 422 (sum) + 419 (prf) / 489 reflections on image 432
Integrated 43 (sum) + 43 (prf) / 50 reflections on image 433
Integrated 10 (sum) + 10 (prf) / 15 reflections on image 434
Beginning integration job 86
Frames: 430 -> 440
Number of reflections
Partial: 14
Full: 2571
In ice ring: 0
Integrate: 2585
Total: 2585
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
430 [7 ]:
431 [28 ]: *
432 [457 ]: ******************************
433 [954 ]: ***************************************************************
434 [999 ]: ******************************************************************
435 [1013]: *******************************************************************
436 [977 ]: ****************************************************************
437 [579 ]: **************************************
438 [58 ]: ***
439 [12 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00811919 GB
Integrated 400 (sum) + 399 (prf) / 465 reflections on image 433
Integrated 438 (sum) + 432 (prf) / 510 reflections on image 434
Integrated 454 (sum) + 452 (prf) / 506 reflections on image 435
Integrated 447 (sum) + 447 (prf) / 525 reflections on image 436
Integrated 434 (sum) + 430 (prf) / 521 reflections on image 437
Integrated 41 (sum) + 41 (prf) / 46 reflections on image 438
Integrated 10 (sum) + 10 (prf) / 12 reflections on image 439
Beginning integration job 87
Frames: 435 -> 445
Number of reflections
Partial: 12
Full: 2539
In ice ring: 0
Integrate: 2551
Total: 2551
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
435 [7 ]:
436 [17 ]: *
437 [414]: ****************************
438 [928]: ***************************************************************
439 [999]: ********************************************************************
440 [997]: *******************************************************************
441 [950]: ****************************************************************
442 [571]: **************************************
443 [50 ]: ***
444 [11 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00796242 GB
Integrated 385 (sum) + 380 (prf) / 440 reflections on image 438
Integrated 447 (sum) + 442 (prf) / 515 reflections on image 439
Integrated 444 (sum) + 437 (prf) / 521 reflections on image 440
Integrated 439 (sum) + 433 (prf) / 504 reflections on image 441
Integrated 447 (sum) + 441 (prf) / 521 reflections on image 442
Integrated 34 (sum) + 34 (prf) / 39 reflections on image 443
Integrated 10 (sum) + 10 (prf) / 11 reflections on image 444
Beginning integration job 88
Frames: 440 -> 450
Number of reflections
Partial: 6
Full: 2526
In ice ring: 0
Integrate: 2532
Total: 2532
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
440 [4 ]:
441 [20 ]: *
442 [413]: ****************************
443 [916]: ***************************************************************
444 [987]: ********************************************************************
445 [982]: *******************************************************************
446 [944]: *****************************************************************
447 [596]: *****************************************
448 [67 ]: ****
449 [13 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0078482 GB
Integrated 384 (sum) + 384 (prf) / 444 reflections on image 443
Integrated 417 (sum) + 414 (prf) / 495 reflections on image 444
Integrated 449 (sum) + 442 (prf) / 524 reflections on image 445
Integrated 403 (sum) + 400 (prf) / 473 reflections on image 446
Integrated 464 (sum) + 460 (prf) / 529 reflections on image 447
Integrated 43 (sum) + 43 (prf) / 54 reflections on image 448
Integrated 12 (sum) + 12 (prf) / 13 reflections on image 449
Beginning integration job 89
Frames: 445 -> 455
Number of reflections
Partial: 17
Full: 2578
In ice ring: 0
Integrate: 2595
Total: 2595
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
445 [6 ]:
446 [21 ]: *
447 [401 ]: *************************
448 [920 ]: **********************************************************
449 [1024]: *****************************************************************
450 [1051]: *******************************************************************
451 [991 ]: ***************************************************************
452 [588 ]: *************************************
453 [64 ]: ****
454 [14 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00843474 GB
Integrated 398 (sum) + 393 (prf) / 457 reflections on image 448
Integrated 413 (sum) + 404 (prf) / 480 reflections on image 449
Integrated 470 (sum) + 467 (prf) / 554 reflections on image 450
Integrated 450 (sum) + 448 (prf) / 516 reflections on image 451
Integrated 459 (sum) + 452 (prf) / 524 reflections on image 452
Integrated 45 (sum) + 44 (prf) / 50 reflections on image 453
Integrated 14 (sum) + 14 (prf) / 14 reflections on image 454
Beginning integration job 90
Frames: 450 -> 460
Number of reflections
Partial: 14
Full: 2523
In ice ring: 0
Integrate: 2537
Total: 2537
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
450 [6 ]:
451 [22 ]: *
452 [421]: *****************************
453 [920]: ****************************************************************
454 [975]: ********************************************************************
455 [969]: *******************************************************************
456 [957]: ******************************************************************
457 [587]: ****************************************
458 [43 ]: **
459 [10 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0076919 GB
Integrated 392 (sum) + 388 (prf) / 452 reflections on image 453
Integrated 431 (sum) + 426 (prf) / 497 reflections on image 454
Integrated 440 (sum) + 432 (prf) / 511 reflections on image 455
Integrated 425 (sum) + 421 (prf) / 490 reflections on image 456
Integrated 476 (sum) + 474 (prf) / 544 reflections on image 457
Integrated 27 (sum) + 27 (prf) / 33 reflections on image 458
Integrated 9 (sum) + 9 (prf) / 10 reflections on image 459
Beginning integration job 91
Frames: 455 -> 465
Number of reflections
Partial: 13
Full: 2509
In ice ring: 0
Integrate: 2522
Total: 2522
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
456 [16 ]: *
457 [411 ]: **************************
458 [878 ]: *********************************************************
459 [915 ]: ***********************************************************
460 [983 ]: ***************************************************************
461 [1031]: *******************************************************************
462 [608 ]: ***************************************
463 [68 ]: ****
464 [12 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00801526 GB
Integrated 385 (sum) + 384 (prf) / 451 reflections on image 458
Integrated 407 (sum) + 403 (prf) / 472 reflections on image 459
Integrated 419 (sum) + 415 (prf) / 474 reflections on image 460
Integrated 426 (sum) + 420 (prf) / 517 reflections on image 461
Integrated 472 (sum) + 470 (prf) / 540 reflections on image 462
Integrated 44 (sum) + 44 (prf) / 56 reflections on image 463
Integrated 10 (sum) + 10 (prf) / 12 reflections on image 464
Beginning integration job 92
Frames: 460 -> 470
Number of reflections
Partial: 9
Full: 2578
In ice ring: 0
Integrate: 2587
Total: 2587
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
460 [7 ]:
461 [18 ]: *
462 [473 ]: ******************************
463 [983 ]: ****************************************************************
464 [1025]: *******************************************************************
465 [999 ]: *****************************************************************
466 [944 ]: *************************************************************
467 [553 ]: ************************************
468 [48 ]: ***
469 [10 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00823364 GB
Integrated 427 (sum) + 423 (prf) / 483 reflections on image 463
Integrated 452 (sum) + 445 (prf) / 522 reflections on image 464
Integrated 464 (sum) + 457 (prf) / 532 reflections on image 465
Integrated 436 (sum) + 435 (prf) / 497 reflections on image 466
Integrated 430 (sum) + 427 (prf) / 505 reflections on image 467
Integrated 34 (sum) + 34 (prf) / 38 reflections on image 468
Integrated 7 (sum) + 7 (prf) / 10 reflections on image 469
Beginning integration job 93
Frames: 465 -> 475
Number of reflections
Partial: 23
Full: 2524
In ice ring: 0
Integrate: 2547
Total: 2547
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
465 [2 ]:
466 [20 ]: *
467 [411]: ****************************
468 [948]: *****************************************************************
469 [955]: ******************************************************************
470 [882]: *************************************************************
471 [983]: ********************************************************************
472 [664]: *********************************************
473 [78 ]: *****
474 [15 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00788392 GB
Integrated 386 (sum) + 385 (prf) / 446 reflections on image 468
Integrated 469 (sum) + 463 (prf) / 544 reflections on image 469
Integrated 400 (sum) + 398 (prf) / 454 reflections on image 470
Integrated 368 (sum) + 368 (prf) / 439 reflections on image 471
Integrated 503 (sum) + 500 (prf) / 586 reflections on image 472
Integrated 53 (sum) + 52 (prf) / 63 reflections on image 473
Integrated 13 (sum) + 13 (prf) / 15 reflections on image 474
Beginning integration job 94
Frames: 470 -> 480
Number of reflections
Partial: 19
Full: 2554
In ice ring: 0
Integrate: 2573
Total: 2573
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
470 [1 ]:
471 [14 ]:
472 [450 ]: *****************************
473 [951 ]: **************************************************************
474 [998 ]: *****************************************************************
475 [1017]: *******************************************************************
476 [931 ]: *************************************************************
477 [579 ]: **************************************
478 [62 ]: ****
479 [15 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00801617 GB
Integrated 416 (sum) + 413 (prf) / 476 reflections on image 473
Integrated 434 (sum) + 432 (prf) / 489 reflections on image 474
Integrated 465 (sum) + 460 (prf) / 554 reflections on image 475
Integrated 407 (sum) + 404 (prf) / 475 reflections on image 476
Integrated 441 (sum) + 435 (prf) / 517 reflections on image 477
Integrated 41 (sum) + 41 (prf) / 47 reflections on image 478
Integrated 13 (sum) + 13 (prf) / 15 reflections on image 479
Beginning integration job 95
Frames: 475 -> 485
Number of reflections
Partial: 18
Full: 2538
In ice ring: 0
Integrate: 2556
Total: 2556
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
475 [4 ]:
476 [18 ]: *
477 [429 ]: ***************************
478 [909 ]: **********************************************************
479 [919 ]: ***********************************************************
480 [965 ]: **************************************************************
481 [1036]: *******************************************************************
482 [606 ]: ***************************************
483 [67 ]: ****
484 [14 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00802762 GB
Integrated 424 (sum) + 420 (prf) / 478 reflections on image 478
Integrated 416 (sum) + 409 (prf) / 471 reflections on image 479
Integrated 401 (sum) + 399 (prf) / 463 reflections on image 480
Integrated 462 (sum) + 459 (prf) / 538 reflections on image 481
Integrated 465 (sum) + 464 (prf) / 539 reflections on image 482
Integrated 48 (sum) + 48 (prf) / 53 reflections on image 483
Integrated 12 (sum) + 12 (prf) / 14 reflections on image 484
Beginning integration job 96
Frames: 480 -> 490
Number of reflections
Partial: 15
Full: 2514
In ice ring: 0
Integrate: 2529
Total: 2529
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
480 [4 ]:
481 [21 ]: *
482 [440]: ******************************
483 [940]: ****************************************************************
484 [969]: ******************************************************************
485 [994]: ********************************************************************
486 [935]: ***************************************************************
487 [542]: *************************************
488 [56 ]: ***
489 [15 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0075875 GB
Integrated 394 (sum) + 391 (prf) / 466 reflections on image 483
Integrated 445 (sum) + 438 (prf) / 515 reflections on image 484
Integrated 433 (sum) + 431 (prf) / 496 reflections on image 485
Integrated 447 (sum) + 445 (prf) / 510 reflections on image 486
Integrated 417 (sum) + 414 (prf) / 486 reflections on image 487
Integrated 36 (sum) + 36 (prf) / 41 reflections on image 488
Integrated 13 (sum) + 13 (prf) / 15 reflections on image 489
Beginning integration job 97
Frames: 485 -> 495
Number of reflections
Partial: 23
Full: 2557
In ice ring: 0
Integrate: 2580
Total: 2580
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
485 [2 ]:
486 [9 ]:
487 [397 ]: **************************
488 [938 ]: **************************************************************
489 [1013]: *******************************************************************
490 [1011]: ******************************************************************
491 [983 ]: *****************************************************************
492 [564 ]: *************************************
493 [61 ]: ****
494 [13 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00793778 GB
Integrated 374 (sum) + 372 (prf) / 437 reflections on image 488
Integrated 460 (sum) + 456 (prf) / 535 reflections on image 489
Integrated 445 (sum) + 442 (prf) / 516 reflections on image 490
Integrated 460 (sum) + 454 (prf) / 528 reflections on image 491
Integrated 435 (sum) + 430 (prf) / 503 reflections on image 492
Integrated 40 (sum) + 40 (prf) / 48 reflections on image 493
Integrated 10 (sum) + 10 (prf) / 13 reflections on image 494
Beginning integration job 98
Frames: 490 -> 500
Number of reflections
Partial: 23
Full: 2540
In ice ring: 0
Integrate: 2563
Total: 2563
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
490 [1 ]:
491 [18 ]: *
492 [429 ]: ****************************
493 [933 ]: **************************************************************
494 [964 ]: ****************************************************************
495 [976 ]: *****************************************************************
496 [1001]: *******************************************************************
497 [600 ]: ****************************************
498 [65 ]: ****
499 [16 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00790602 GB
Integrated 401 (sum) + 397 (prf) / 460 reflections on image 493
Integrated 439 (sum) + 431 (prf) / 510 reflections on image 494
Integrated 422 (sum) + 417 (prf) / 489 reflections on image 495
Integrated 445 (sum) + 441 (prf) / 504 reflections on image 496
Integrated 469 (sum) + 465 (prf) / 535 reflections on image 497
Integrated 40 (sum) + 40 (prf) / 49 reflections on image 498
Integrated 14 (sum) + 14 (prf) / 16 reflections on image 499
Beginning integration job 99
Frames: 495 -> 505
Number of reflections
Partial: 22
Full: 2522
In ice ring: 0
Integrate: 2544
Total: 2544
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
495 [4 ]:
496 [16 ]: *
497 [416]: ****************************
498 [935]: ****************************************************************
499 [987]: ********************************************************************
500 [969]: ******************************************************************
501 [960]: ******************************************************************
502 [555]: **************************************
503 [49 ]: ***
504 [14 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00774163 GB
Integrated 385 (sum) + 382 (prf) / 451 reflections on image 498
Integrated 445 (sum) + 438 (prf) / 526 reflections on image 499
Integrated 436 (sum) + 430 (prf) / 504 reflections on image 500
Integrated 449 (sum) + 442 (prf) / 508 reflections on image 501
Integrated 434 (sum) + 430 (prf) / 506 reflections on image 502
Integrated 32 (sum) + 31 (prf) / 35 reflections on image 503
Integrated 12 (sum) + 12 (prf) / 14 reflections on image 504
Beginning integration job 100
Frames: 500 -> 510
Number of reflections
Partial: 20
Full: 2549
In ice ring: 0
Integrate: 2569
Total: 2569
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
500 [2 ]:
501 [14 ]:
502 [401 ]: **************************
503 [920 ]: *************************************************************
504 [1003]: *******************************************************************
505 [998 ]: ******************************************************************
506 [980 ]: *****************************************************************
507 [578 ]: **************************************
508 [63 ]: ****
509 [17 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00814302 GB
Integrated 399 (sum) + 398 (prf) / 456 reflections on image 503
Integrated 456 (sum) + 453 (prf) / 514 reflections on image 504
Integrated 444 (sum) + 439 (prf) / 506 reflections on image 505
Integrated 447 (sum) + 443 (prf) / 515 reflections on image 506
Integrated 441 (sum) + 437 (prf) / 515 reflections on image 507
Integrated 36 (sum) + 36 (prf) / 46 reflections on image 508
Integrated 17 (sum) + 17 (prf) / 17 reflections on image 509
Beginning integration job 101
Frames: 505 -> 515
Number of reflections
Partial: 13
Full: 2531
In ice ring: 0
Integrate: 2544
Total: 2544
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
505 [6 ]:
506 [16 ]: *
507 [435 ]: ****************************
508 [932 ]: *************************************************************
509 [972 ]: ***************************************************************
510 [1018]: *******************************************************************
511 [980 ]: ****************************************************************
512 [555 ]: ************************************
513 [64 ]: ****
514 [11 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00804476 GB
Integrated 404 (sum) + 400 (prf) / 467 reflections on image 508
Integrated 410 (sum) + 403 (prf) / 482 reflections on image 509
Integrated 459 (sum) + 453 (prf) / 520 reflections on image 510
Integrated 458 (sum) + 455 (prf) / 520 reflections on image 511
Integrated 432 (sum) + 430 (prf) / 491 reflections on image 512
Integrated 44 (sum) + 43 (prf) / 53 reflections on image 513
Integrated 11 (sum) + 11 (prf) / 11 reflections on image 514
Beginning integration job 102
Frames: 510 -> 520
Number of reflections
Partial: 18
Full: 2545
In ice ring: 0
Integrate: 2563
Total: 2563
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
510 [3 ]:
511 [21 ]: *
512 [417 ]: ***************************
513 [954 ]: **************************************************************
514 [1015]: *******************************************************************
515 [988 ]: *****************************************************************
516 [966 ]: ***************************************************************
517 [572 ]: *************************************
518 [55 ]: ***
519 [13 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00799987 GB
Integrated 395 (sum) + 394 (prf) / 458 reflections on image 513
Integrated 453 (sum) + 449 (prf) / 523 reflections on image 514
Integrated 449 (sum) + 443 (prf) / 502 reflections on image 515
Integrated 428 (sum) + 424 (prf) / 508 reflections on image 516
Integrated 440 (sum) + 437 (prf) / 517 reflections on image 517
Integrated 37 (sum) + 36 (prf) / 42 reflections on image 518
Integrated 11 (sum) + 11 (prf) / 13 reflections on image 519
Beginning integration job 103
Frames: 515 -> 525
Number of reflections
Partial: 16
Full: 2543
In ice ring: 0
Integrate: 2559
Total: 2559
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
515 [3 ]:
516 [19 ]: *
517 [439]: ******************************
518 [943]: ****************************************************************
519 [988]: ********************************************************************
520 [986]: *******************************************************************
521 [940]: ****************************************************************
522 [563]: **************************************
523 [66 ]: ****
524 [12 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00764544 GB
Integrated 413 (sum) + 410 (prf) / 469 reflections on image 518
Integrated 431 (sum) + 424 (prf) / 500 reflections on image 519
Integrated 461 (sum) + 455 (prf) / 540 reflections on image 520
Integrated 406 (sum) + 400 (prf) / 487 reflections on image 521
Integrated 430 (sum) + 426 (prf) / 497 reflections on image 522
Integrated 45 (sum) + 45 (prf) / 54 reflections on image 523
Integrated 9 (sum) + 9 (prf) / 12 reflections on image 524
Beginning integration job 104
Frames: 520 -> 530
Number of reflections
Partial: 14
Full: 2541
In ice ring: 0
Integrate: 2555
Total: 2555
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
520 [2 ]:
521 [15 ]:
522 [422 ]: ***************************
523 [935 ]: **************************************************************
524 [1010]: *******************************************************************
525 [973 ]: ****************************************************************
526 [974 ]: ****************************************************************
527 [566 ]: *************************************
528 [64 ]: ****
529 [9 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00782446 GB
Integrated 397 (sum) + 395 (prf) / 453 reflections on image 523
Integrated 468 (sum) + 464 (prf) / 527 reflections on image 524
Integrated 445 (sum) + 436 (prf) / 510 reflections on image 525
Integrated 434 (sum) + 432 (prf) / 499 reflections on image 526
Integrated 431 (sum) + 426 (prf) / 502 reflections on image 527
Integrated 41 (sum) + 41 (prf) / 55 reflections on image 528
Integrated 9 (sum) + 9 (prf) / 9 reflections on image 529
Beginning integration job 105
Frames: 525 -> 535
Number of reflections
Partial: 24
Full: 2530
In ice ring: 0
Integrate: 2554
Total: 2554
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
525 [3 ]:
526 [15 ]:
527 [441 ]: ****************************
528 [945 ]: **************************************************************
529 [967 ]: ***************************************************************
530 [1020]: *******************************************************************
531 [1003]: *****************************************************************
532 [556 ]: ************************************
533 [63 ]: ****
534 [15 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00807998 GB
Integrated 409 (sum) + 407 (prf) / 468 reflections on image 528
Integrated 432 (sum) + 429 (prf) / 495 reflections on image 529
Integrated 429 (sum) + 419 (prf) / 494 reflections on image 530
Integrated 474 (sum) + 473 (prf) / 541 reflections on image 531
Integrated 434 (sum) + 433 (prf) / 493 reflections on image 532
Integrated 42 (sum) + 42 (prf) / 48 reflections on image 533
Integrated 11 (sum) + 11 (prf) / 15 reflections on image 534
Beginning integration job 106
Frames: 530 -> 540
Number of reflections
Partial: 19
Full: 2556
In ice ring: 0
Integrate: 2575
Total: 2575
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
530 [2 ]:
531 [22 ]: *
532 [438]: ******************************
533 [933]: ****************************************************************
534 [979]: *******************************************************************
535 [988]: ********************************************************************
536 [956]: *****************************************************************
537 [587]: ****************************************
538 [66 ]: ****
539 [13 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00768151 GB
Integrated 414 (sum) + 408 (prf) / 477 reflections on image 533
Integrated 412 (sum) + 409 (prf) / 489 reflections on image 534
Integrated 469 (sum) + 463 (prf) / 542 reflections on image 535
Integrated 418 (sum) + 413 (prf) / 480 reflections on image 536
Integrated 442 (sum) + 441 (prf) / 521 reflections on image 537
Integrated 44 (sum) + 44 (prf) / 53 reflections on image 538
Integrated 8 (sum) + 8 (prf) / 13 reflections on image 539
Beginning integration job 107
Frames: 535 -> 545
Number of reflections
Partial: 27
Full: 2530
In ice ring: 0
Integrate: 2557
Total: 2557
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
535 [4 ]:
536 [21 ]: *
537 [408]: ***************************
538 [929]: ***************************************************************
539 [998]: ********************************************************************
540 [968]: *****************************************************************
541 [975]: ******************************************************************
542 [583]: ***************************************
543 [73 ]: ****
544 [14 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00768944 GB
Integrated 381 (sum) + 375 (prf) / 442 reflections on image 538
Integrated 454 (sum) + 446 (prf) / 536 reflections on image 539
Integrated 437 (sum) + 432 (prf) / 502 reflections on image 540
Integrated 426 (sum) + 424 (prf) / 494 reflections on image 541
Integrated 433 (sum) + 430 (prf) / 510 reflections on image 542
Integrated 50 (sum) + 50 (prf) / 59 reflections on image 543
Integrated 11 (sum) + 11 (prf) / 14 reflections on image 544
Beginning integration job 108
Frames: 540 -> 550
Number of reflections
Partial: 17
Full: 2531
In ice ring: 0
Integrate: 2548
Total: 2548
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
540 [2 ]:
541 [12 ]:
542 [427]: *****************************
543 [935]: ****************************************************************
544 [978]: *******************************************************************
545 [987]: ********************************************************************
546 [972]: ******************************************************************
547 [559]: **************************************
548 [61 ]: ****
549 [6 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00761096 GB
Integrated 394 (sum) + 390 (prf) / 460 reflections on image 543
Integrated 433 (sum) + 430 (prf) / 503 reflections on image 544
Integrated 437 (sum) + 433 (prf) / 513 reflections on image 545
Integrated 449 (sum) + 447 (prf) / 513 reflections on image 546
Integrated 425 (sum) + 422 (prf) / 498 reflections on image 547
Integrated 48 (sum) + 48 (prf) / 55 reflections on image 548
Integrated 4 (sum) + 4 (prf) / 6 reflections on image 549
Beginning integration job 109
Frames: 545 -> 555
Number of reflections
Partial: 15
Full: 2543
In ice ring: 0
Integrate: 2558
Total: 2558
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
545 [7 ]:
546 [15 ]: *
547 [434]: *****************************
548 [938]: ****************************************************************
549 [994]: ********************************************************************
550 [983]: *******************************************************************
551 [992]: *******************************************************************
552 [590]: ****************************************
553 [82 ]: *****
554 [17 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00788872 GB
Integrated 390 (sum) + 385 (prf) / 450 reflections on image 548
Integrated 449 (sum) + 444 (prf) / 509 reflections on image 549
Integrated 444 (sum) + 443 (prf) / 515 reflections on image 550
Integrated 423 (sum) + 421 (prf) / 494 reflections on image 551
Integrated 435 (sum) + 430 (prf) / 508 reflections on image 552
Integrated 53 (sum) + 51 (prf) / 65 reflections on image 553
Integrated 14 (sum) + 14 (prf) / 17 reflections on image 554
Beginning integration job 110
Frames: 550 -> 560
Number of reflections
Partial: 15
Full: 2549
In ice ring: 0
Integrate: 2564
Total: 2564
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
550 [6 ]:
551 [19 ]: *
552 [418]: ****************************
553 [924]: ***************************************************************
554 [987]: ********************************************************************
555 [977]: *******************************************************************
556 [981]: *******************************************************************
557 [574]: ***************************************
558 [57 ]: ***
559 [9 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00761184 GB
Integrated 384 (sum) + 382 (prf) / 442 reflections on image 553
Integrated 473 (sum) + 471 (prf) / 539 reflections on image 554
Integrated 425 (sum) + 418 (prf) / 498 reflections on image 555
Integrated 443 (sum) + 441 (prf) / 511 reflections on image 556
Integrated 444 (sum) + 438 (prf) / 517 reflections on image 557
Integrated 39 (sum) + 39 (prf) / 48 reflections on image 558
Integrated 8 (sum) + 8 (prf) / 9 reflections on image 559
Beginning integration job 111
Frames: 555 -> 565
Number of reflections
Partial: 19
Full: 2529
In ice ring: 0
Integrate: 2548
Total: 2548
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
555 [4 ]:
556 [20 ]: *
557 [428 ]: ****************************
558 [930 ]: **************************************************************
559 [1001]: *******************************************************************
560 [986 ]: *****************************************************************
561 [983 ]: *****************************************************************
562 [587 ]: ***************************************
563 [57 ]: ***
564 [15 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00780848 GB
Integrated 366 (sum) + 363 (prf) / 439 reflections on image 558
Integrated 443 (sum) + 442 (prf) / 512 reflections on image 559
Integrated 445 (sum) + 442 (prf) / 504 reflections on image 560
Integrated 447 (sum) + 444 (prf) / 506 reflections on image 561
Integrated 453 (sum) + 448 (prf) / 530 reflections on image 562
Integrated 35 (sum) + 34 (prf) / 42 reflections on image 563
Integrated 11 (sum) + 11 (prf) / 15 reflections on image 564
Beginning integration job 112
Frames: 560 -> 570
Number of reflections
Partial: 16
Full: 2515
In ice ring: 0
Integrate: 2531
Total: 2531
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
560 [3 ]:
561 [17 ]: *
562 [420]: ****************************
563 [921]: ***************************************************************
564 [974]: *******************************************************************
565 [986]: ********************************************************************
566 [961]: ******************************************************************
567 [547]: *************************************
568 [55 ]: ***
569 [8 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00768292 GB
Integrated 398 (sum) + 392 (prf) / 459 reflections on image 563
Integrated 430 (sum) + 426 (prf) / 500 reflections on image 564
Integrated 445 (sum) + 439 (prf) / 510 reflections on image 565
Integrated 453 (sum) + 449 (prf) / 515 reflections on image 566
Integrated 416 (sum) + 412 (prf) / 492 reflections on image 567
Integrated 40 (sum) + 40 (prf) / 47 reflections on image 568
Integrated 8 (sum) + 8 (prf) / 8 reflections on image 569
Beginning integration job 113
Frames: 565 -> 575
Number of reflections
Partial: 16
Full: 2563
In ice ring: 0
Integrate: 2579
Total: 2579
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
565 [1 ]:
566 [9 ]:
567 [416]: ****************************
568 [953]: ****************************************************************
569 [998]: ********************************************************************
570 [997]: *******************************************************************
571 [975]: ******************************************************************
572 [582]: ***************************************
573 [54 ]: ***
574 [9 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00791444 GB
Integrated 402 (sum) + 401 (prf) / 463 reflections on image 568
Integrated 430 (sum) + 419 (prf) / 510 reflections on image 569
Integrated 460 (sum) + 454 (prf) / 530 reflections on image 570
Integrated 423 (sum) + 417 (prf) / 494 reflections on image 571
Integrated 454 (sum) + 450 (prf) / 528 reflections on image 572
Integrated 39 (sum) + 39 (prf) / 45 reflections on image 573
Integrated 8 (sum) + 8 (prf) / 9 reflections on image 574
Beginning integration job 114
Frames: 570 -> 580
Number of reflections
Partial: 18
Full: 2532
In ice ring: 0
Integrate: 2550
Total: 2550
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
570 [5 ]:
571 [14 ]:
572 [413]: ****************************
573 [916]: ***************************************************************
574 [976]: *******************************************************************
575 [978]: ********************************************************************
576 [963]: ******************************************************************
577 [592]: *****************************************
578 [79 ]: *****
579 [17 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00762148 GB
Integrated 389 (sum) + 385 (prf) / 461 reflections on image 573
Integrated 404 (sum) + 395 (prf) / 484 reflections on image 574
Integrated 479 (sum) + 472 (prf) / 536 reflections on image 575
Integrated 417 (sum) + 413 (prf) / 477 reflections on image 576
Integrated 436 (sum) + 435 (prf) / 513 reflections on image 577
Integrated 54 (sum) + 54 (prf) / 62 reflections on image 578
Integrated 16 (sum) + 16 (prf) / 17 reflections on image 579
Beginning integration job 115
Frames: 575 -> 585
Number of reflections
Partial: 12
Full: 2543
In ice ring: 0
Integrate: 2555
Total: 2555
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
575 [3 ]:
576 [15 ]: *
577 [401]: ***************************
578 [934]: ****************************************************************
579 [956]: ******************************************************************
580 [983]: ********************************************************************
581 [964]: ******************************************************************
582 [600]: *****************************************
583 [61 ]: ****
584 [8 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00753481 GB
Integrated 385 (sum) + 383 (prf) / 448 reflections on image 578
Integrated 443 (sum) + 440 (prf) / 509 reflections on image 579
Integrated 453 (sum) + 444 (prf) / 515 reflections on image 580
Integrated 412 (sum) + 408 (prf) / 483 reflections on image 581
Integrated 466 (sum) + 459 (prf) / 539 reflections on image 582
Integrated 44 (sum) + 44 (prf) / 53 reflections on image 583
Integrated 7 (sum) + 7 (prf) / 8 reflections on image 584
Beginning integration job 116
Frames: 580 -> 590
Number of reflections
Partial: 12
Full: 2536
In ice ring: 0
Integrate: 2548
Total: 2548
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
580 [3 ]:
581 [22 ]: *
582 [404]: ***************************
583 [919]: ***************************************************************
584 [984]: *******************************************************************
585 [978]: *******************************************************************
586 [986]: ********************************************************************
587 [584]: ****************************************
588 [65 ]: ****
589 [12 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0076643 GB
Integrated 364 (sum) + 363 (prf) / 436 reflections on image 583
Integrated 465 (sum) + 458 (prf) / 527 reflections on image 584
Integrated 424 (sum) + 421 (prf) / 491 reflections on image 585
Integrated 447 (sum) + 443 (prf) / 510 reflections on image 586
Integrated 446 (sum) + 443 (prf) / 519 reflections on image 587
Integrated 48 (sum) + 48 (prf) / 53 reflections on image 588
Integrated 8 (sum) + 8 (prf) / 12 reflections on image 589
Beginning integration job 117
Frames: 585 -> 595
Number of reflections
Partial: 16
Full: 2527
In ice ring: 0
Integrate: 2543
Total: 2543
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
585 [1 ]:
586 [14 ]:
587 [414 ]: ***************************
588 [915 ]: ************************************************************
589 [1006]: *******************************************************************
590 [998 ]: ******************************************************************
591 [952 ]: ***************************************************************
592 [575 ]: **************************************
593 [48 ]: ***
594 [13 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00785316 GB
Integrated 386 (sum) + 383 (prf) / 443 reflections on image 588
Integrated 440 (sum) + 432 (prf) / 504 reflections on image 589
Integrated 479 (sum) + 476 (prf) / 541 reflections on image 590
Integrated 405 (sum) + 403 (prf) / 480 reflections on image 591
Integrated 455 (sum) + 451 (prf) / 527 reflections on image 592
Integrated 33 (sum) + 33 (prf) / 35 reflections on image 593
Integrated 11 (sum) + 11 (prf) / 13 reflections on image 594
Beginning integration job 118
Frames: 590 -> 600
Number of reflections
Partial: 29
Full: 2533
In ice ring: 0
Integrate: 2562
Total: 2562
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
590 [4 ]:
591 [15 ]: *
592 [416]: ****************************
593 [939]: ****************************************************************
594 [978]: *******************************************************************
595 [985]: ********************************************************************
596 [977]: *******************************************************************
597 [580]: ****************************************
598 [53 ]: ***
599 [19 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00774551 GB
Integrated 405 (sum) + 400 (prf) / 470 reflections on image 593
Integrated 428 (sum) + 423 (prf) / 499 reflections on image 594
Integrated 443 (sum) + 438 (prf) / 517 reflections on image 595
Integrated 432 (sum) + 428 (prf) / 496 reflections on image 596
Integrated 456 (sum) + 455 (prf) / 527 reflections on image 597
Integrated 29 (sum) + 29 (prf) / 34 reflections on image 598
Integrated 16 (sum) + 16 (prf) / 19 reflections on image 599
Beginning integration job 119
Frames: 595 -> 605
Number of reflections
Partial: 19
Full: 2553
In ice ring: 0
Integrate: 2572
Total: 2572
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
595 [5 ]:
596 [20 ]: *
597 [425]: *****************************
598 [946]: ****************************************************************
599 [972]: ******************************************************************
600 [992]: ********************************************************************
601 [971]: ******************************************************************
602 [582]: ***************************************
603 [65 ]: ****
604 [18 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00775444 GB
Integrated 387 (sum) + 380 (prf) / 450 reflections on image 598
Integrated 450 (sum) + 444 (prf) / 511 reflections on image 599
Integrated 460 (sum) + 454 (prf) / 530 reflections on image 600
Integrated 442 (sum) + 440 (prf) / 499 reflections on image 601
Integrated 456 (sum) + 455 (prf) / 517 reflections on image 602
Integrated 39 (sum) + 39 (prf) / 47 reflections on image 603
Integrated 12 (sum) + 12 (prf) / 18 reflections on image 604
Beginning integration job 120
Frames: 600 -> 610
Number of reflections
Partial: 16
Full: 2517
In ice ring: 0
Integrate: 2533
Total: 2533
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
600 [2 ]:
601 [15 ]: *
602 [398]: ***************************
603 [915]: **************************************************************
604 [996]: ********************************************************************
605 [981]: ******************************************************************
606 [961]: *****************************************************************
607 [555]: *************************************
608 [67 ]: ****
609 [11 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00770519 GB
Integrated 382 (sum) + 380 (prf) / 444 reflections on image 603
Integrated 436 (sum) + 432 (prf) / 525 reflections on image 604
Integrated 445 (sum) + 437 (prf) / 515 reflections on image 605
Integrated 427 (sum) + 420 (prf) / 494 reflections on image 606
Integrated 418 (sum) + 416 (prf) / 488 reflections on image 607
Integrated 47 (sum) + 47 (prf) / 56 reflections on image 608
Integrated 8 (sum) + 8 (prf) / 11 reflections on image 609
Beginning integration job 121
Frames: 605 -> 615
Number of reflections
Partial: 15
Full: 2554
In ice ring: 0
Integrate: 2569
Total: 2569
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
605 [1 ]:
606 [16 ]: *
607 [424]: *****************************
608 [974]: *******************************************************************
609 [961]: ******************************************************************
610 [985]: ********************************************************************
611 [981]: *******************************************************************
612 [571]: ***************************************
613 [59 ]: ****
614 [15 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00776069 GB
Integrated 419 (sum) + 416 (prf) / 486 reflections on image 608
Integrated 429 (sum) + 423 (prf) / 494 reflections on image 609
Integrated 442 (sum) + 439 (prf) / 510 reflections on image 610
Integrated 441 (sum) + 435 (prf) / 508 reflections on image 611
Integrated 443 (sum) + 442 (prf) / 512 reflections on image 612
Integrated 38 (sum) + 38 (prf) / 44 reflections on image 613
Integrated 13 (sum) + 13 (prf) / 15 reflections on image 614
Beginning integration job 122
Frames: 610 -> 620
Number of reflections
Partial: 15
Full: 2532
In ice ring: 0
Integrate: 2547
Total: 2547
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
610 [2 ]:
611 [11 ]:
612 [420]: ****************************
613 [898]: *************************************************************
614 [963]: *****************************************************************
615 [997]: ********************************************************************
616 [993]: *******************************************************************
617 [581]: ***************************************
618 [60 ]: ****
619 [9 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00788368 GB
Integrated 402 (sum) + 402 (prf) / 458 reflections on image 613
Integrated 434 (sum) + 429 (prf) / 492 reflections on image 614
Integrated 433 (sum) + 428 (prf) / 498 reflections on image 615
Integrated 442 (sum) + 439 (prf) / 518 reflections on image 616
Integrated 439 (sum) + 435 (prf) / 521 reflections on image 617
Integrated 40 (sum) + 39 (prf) / 51 reflections on image 618
Integrated 9 (sum) + 8 (prf) / 9 reflections on image 619
Beginning integration job 123
Frames: 615 -> 625
Number of reflections
Partial: 15
Full: 2516
In ice ring: 0
Integrate: 2531
Total: 2531
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
615 [2 ]:
616 [22 ]: *
617 [409]: ***************************
618 [956]: *****************************************************************
619 [999]: ********************************************************************
620 [955]: *****************************************************************
621 [952]: ****************************************************************
622 [551]: *************************************
623 [63 ]: ****
624 [14 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00778156 GB
Integrated 392 (sum) + 392 (prf) / 447 reflections on image 618
Integrated 462 (sum) + 453 (prf) / 537 reflections on image 619
Integrated 424 (sum) + 419 (prf) / 489 reflections on image 620
Integrated 438 (sum) + 435 (prf) / 507 reflections on image 621
Integrated 427 (sum) + 425 (prf) / 488 reflections on image 622
Integrated 39 (sum) + 39 (prf) / 49 reflections on image 623
Integrated 9 (sum) + 9 (prf) / 14 reflections on image 624
Beginning integration job 124
Frames: 620 -> 630
Number of reflections
Partial: 7
Full: 2581
In ice ring: 0
Integrate: 2588
Total: 2588
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
620 [8 ]:
621 [24 ]: *
622 [448 ]: *****************************
623 [936 ]: **************************************************************
624 [976 ]: ****************************************************************
625 [1002]: ******************************************************************
626 [1007]: *******************************************************************
627 [612 ]: ****************************************
628 [52 ]: ***
629 [13 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00781452 GB
Integrated 399 (sum) + 397 (prf) / 462 reflections on image 623
Integrated 419 (sum) + 417 (prf) / 496 reflections on image 624
Integrated 444 (sum) + 440 (prf) / 512 reflections on image 625
Integrated 431 (sum) + 427 (prf) / 506 reflections on image 626
Integrated 484 (sum) + 478 (prf) / 560 reflections on image 627
Integrated 29 (sum) + 29 (prf) / 39 reflections on image 628
Integrated 10 (sum) + 10 (prf) / 13 reflections on image 629
Beginning integration job 125
Frames: 625 -> 635
Number of reflections
Partial: 10
Full: 2504
In ice ring: 0
Integrate: 2514
Total: 2514
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
625 [2 ]:
626 [21 ]: *
627 [424 ]: ***************************
628 [908 ]: ***********************************************************
629 [983 ]: ****************************************************************
630 [1017]: *******************************************************************
631 [960 ]: ***************************************************************
632 [527 ]: **********************************
633 [46 ]: ***
634 [11 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00803484 GB
Integrated 391 (sum) + 391 (prf) / 451 reflections on image 628
Integrated 428 (sum) + 419 (prf) / 484 reflections on image 629
Integrated 439 (sum) + 437 (prf) / 518 reflections on image 630
Integrated 460 (sum) + 459 (prf) / 534 reflections on image 631
Integrated 417 (sum) + 413 (prf) / 481 reflections on image 632
Integrated 30 (sum) + 30 (prf) / 35 reflections on image 633
Integrated 9 (sum) + 9 (prf) / 11 reflections on image 634
Beginning integration job 126
Frames: 630 -> 640
Number of reflections
Partial: 13
Full: 2541
In ice ring: 0
Integrate: 2554
Total: 2554
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
630 [1 ]:
631 [14 ]:
632 [426]: *****************************
633 [946]: *****************************************************************
634 [957]: ******************************************************************
635 [969]: *******************************************************************
636 [979]: ********************************************************************
637 [554]: **************************************
638 [60 ]: ****
639 [13 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00774712 GB
Integrated 420 (sum) + 417 (prf) / 474 reflections on image 633
Integrated 458 (sum) + 454 (prf) / 531 reflections on image 634
Integrated 409 (sum) + 400 (prf) / 478 reflections on image 635
Integrated 443 (sum) + 441 (prf) / 517 reflections on image 636
Integrated 432 (sum) + 427 (prf) / 494 reflections on image 637
Integrated 41 (sum) + 40 (prf) / 47 reflections on image 638
Integrated 12 (sum) + 12 (prf) / 13 reflections on image 639
Beginning integration job 127
Frames: 635 -> 645
Number of reflections
Partial: 20
Full: 2542
In ice ring: 0
Integrate: 2562
Total: 2562
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
635 [2 ]:
636 [14 ]:
637 [418]: ****************************
638 [955]: *****************************************************************
639 [981]: *******************************************************************
640 [967]: ******************************************************************
641 [984]: ********************************************************************
642 [581]: ****************************************
643 [62 ]: ****
644 [15 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00778522 GB
Integrated 383 (sum) + 374 (prf) / 450 reflections on image 638
Integrated 477 (sum) + 470 (prf) / 546 reflections on image 639
Integrated 416 (sum) + 413 (prf) / 476 reflections on image 640
Integrated 448 (sum) + 448 (prf) / 509 reflections on image 641
Integrated 432 (sum) + 427 (prf) / 519 reflections on image 642
Integrated 44 (sum) + 42 (prf) / 47 reflections on image 643
Integrated 12 (sum) + 12 (prf) / 15 reflections on image 644
Beginning integration job 128
Frames: 640 -> 650
Number of reflections
Partial: 18
Full: 2529
In ice ring: 0
Integrate: 2547
Total: 2547
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
640 [2 ]:
641 [18 ]: *
642 [415 ]: ***************************
643 [924 ]: *************************************************************
644 [1004]: *******************************************************************
645 [977 ]: *****************************************************************
646 [962 ]: ****************************************************************
647 [564 ]: *************************************
648 [59 ]: ***
649 [11 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00775021 GB
Integrated 380 (sum) + 377 (prf) / 442 reflections on image 643
Integrated 467 (sum) + 461 (prf) / 532 reflections on image 644
Integrated 429 (sum) + 422 (prf) / 504 reflections on image 645
Integrated 421 (sum) + 417 (prf) / 505 reflections on image 646
Integrated 452 (sum) + 451 (prf) / 505 reflections on image 647
Integrated 43 (sum) + 43 (prf) / 48 reflections on image 648
Integrated 8 (sum) + 8 (prf) / 11 reflections on image 649
Beginning integration job 129
Frames: 645 -> 655
Number of reflections
Partial: 11
Full: 2513
In ice ring: 0
Integrate: 2524
Total: 2524
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
645 [1 ]:
646 [10 ]:
647 [400 ]: **************************
648 [903 ]: ************************************************************
649 [986 ]: *****************************************************************
650 [1007]: *******************************************************************
651 [945 ]: **************************************************************
652 [553 ]: ************************************
653 [54 ]: ***
654 [8 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00778931 GB
Integrated 396 (sum) + 393 (prf) / 458 reflections on image 648
Integrated 420 (sum) + 417 (prf) / 486 reflections on image 649
Integrated 466 (sum) + 462 (prf) / 538 reflections on image 650
Integrated 431 (sum) + 424 (prf) / 489 reflections on image 651
Integrated 430 (sum) + 427 (prf) / 499 reflections on image 652
Integrated 39 (sum) + 39 (prf) / 46 reflections on image 653
Integrated 7 (sum) + 7 (prf) / 8 reflections on image 654
Beginning integration job 130
Frames: 650 -> 660
Number of reflections
Partial: 11
Full: 2555
In ice ring: 0
Integrate: 2566
Total: 2566
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
650 [4 ]:
651 [17 ]: *
652 [433]: ******************************
653 [952]: ******************************************************************
654 [971]: ********************************************************************
655 [958]: *******************************************************************
656 [963]: *******************************************************************
657 [579]: ****************************************
658 [53 ]: ***
659 [9 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00766625 GB
Integrated 398 (sum) + 393 (prf) / 467 reflections on image 653
Integrated 464 (sum) + 460 (prf) / 526 reflections on image 654
Integrated 417 (sum) + 416 (prf) / 491 reflections on image 655
Integrated 433 (sum) + 427 (prf) / 503 reflections on image 656
Integrated 457 (sum) + 453 (prf) / 526 reflections on image 657
Integrated 38 (sum) + 37 (prf) / 44 reflections on image 658
Integrated 7 (sum) + 7 (prf) / 9 reflections on image 659
Beginning integration job 131
Frames: 655 -> 665
Number of reflections
Partial: 12
Full: 2543
In ice ring: 0
Integrate: 2555
Total: 2555
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
655 [7 ]:
656 [19 ]: *
657 [420 ]: ***************************
658 [939 ]: **************************************************************
659 [985 ]: *****************************************************************
660 [1013]: *******************************************************************
661 [974 ]: ****************************************************************
662 [570 ]: *************************************
663 [57 ]: ***
664 [14 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0080246 GB
Integrated 386 (sum) + 382 (prf) / 453 reflections on image 658
Integrated 417 (sum) + 412 (prf) / 497 reflections on image 659
Integrated 471 (sum) + 469 (prf) / 521 reflections on image 660
Integrated 453 (sum) + 450 (prf) / 514 reflections on image 661
Integrated 448 (sum) + 444 (prf) / 513 reflections on image 662
Integrated 40 (sum) + 40 (prf) / 43 reflections on image 663
Integrated 12 (sum) + 12 (prf) / 14 reflections on image 664
Beginning integration job 132
Frames: 660 -> 670
Number of reflections
Partial: 15
Full: 2506
In ice ring: 0
Integrate: 2521
Total: 2521
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
660 [4 ]:
661 [19 ]: *
662 [416 ]: ***************************
663 [931 ]: *************************************************************
664 [1011]: *******************************************************************
665 [977 ]: ****************************************************************
666 [966 ]: ****************************************************************
667 [541 ]: ***********************************
668 [61 ]: ****
669 [14 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00789172 GB
Integrated 373 (sum) + 368 (prf) / 435 reflections on image 663
Integrated 469 (sum) + 467 (prf) / 538 reflections on image 664
Integrated 431 (sum) + 426 (prf) / 496 reflections on image 665
Integrated 445 (sum) + 443 (prf) / 511 reflections on image 666
Integrated 423 (sum) + 414 (prf) / 480 reflections on image 667
Integrated 38 (sum) + 38 (prf) / 47 reflections on image 668
Integrated 11 (sum) + 11 (prf) / 14 reflections on image 669
Beginning integration job 133
Frames: 665 -> 675
Number of reflections
Partial: 20
Full: 2577
In ice ring: 0
Integrate: 2597
Total: 2597
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
665 [1 ]:
666 [13 ]:
667 [457]: *******************************
668 [973]: ******************************************************************
669 [961]: ******************************************************************
670 [932]: ****************************************************************
671 [989]: ********************************************************************
672 [614]: ******************************************
673 [78 ]: *****
674 [16 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00765839 GB
Integrated 430 (sum) + 427 (prf) / 504 reflections on image 668
Integrated 446 (sum) + 440 (prf) / 517 reflections on image 669
Integrated 422 (sum) + 419 (prf) / 482 reflections on image 670
Integrated 426 (sum) + 421 (prf) / 480 reflections on image 671
Integrated 475 (sum) + 472 (prf) / 536 reflections on image 672
Integrated 52 (sum) + 50 (prf) / 62 reflections on image 673
Integrated 14 (sum) + 14 (prf) / 16 reflections on image 674
Beginning integration job 134
Frames: 670 -> 680
Number of reflections
Partial: 15
Full: 2506
In ice ring: 0
Integrate: 2521
Total: 2521
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
670 [1 ]:
671 [18 ]: *
672 [422 ]: ***************************
673 [909 ]: ************************************************************
674 [974 ]: ****************************************************************
675 [1010]: *******************************************************************
676 [970 ]: ****************************************************************
677 [518 ]: **********************************
678 [61 ]: ****
679 [8 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00809767 GB
Integrated 393 (sum) + 390 (prf) / 455 reflections on image 673
Integrated 421 (sum) + 413 (prf) / 495 reflections on image 674
Integrated 445 (sum) + 441 (prf) / 509 reflections on image 675
Integrated 469 (sum) + 467 (prf) / 544 reflections on image 676
Integrated 396 (sum) + 392 (prf) / 457 reflections on image 677
Integrated 44 (sum) + 44 (prf) / 53 reflections on image 678
Integrated 5 (sum) + 5 (prf) / 8 reflections on image 679
Beginning integration job 135
Frames: 675 -> 685
Number of reflections
Partial: 11
Full: 2573
In ice ring: 0
Integrate: 2584
Total: 2584
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
675 [2 ]:
676 [13 ]:
677 [416]: ****************************
678 [933]: ***************************************************************
679 [972]: ******************************************************************
680 [998]: ********************************************************************
681 [976]: ******************************************************************
682 [596]: ****************************************
683 [59 ]: ****
684 [9 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0078642 GB
Integrated 403 (sum) + 400 (prf) / 471 reflections on image 678
Integrated 436 (sum) + 434 (prf) / 503 reflections on image 679
Integrated 435 (sum) + 428 (prf) / 508 reflections on image 680
Integrated 427 (sum) + 424 (prf) / 506 reflections on image 681
Integrated 444 (sum) + 442 (prf) / 537 reflections on image 682
Integrated 47 (sum) + 46 (prf) / 50 reflections on image 683
Integrated 7 (sum) + 7 (prf) / 9 reflections on image 684
Beginning integration job 136
Frames: 680 -> 690
Number of reflections
Partial: 5
Full: 2501
In ice ring: 0
Integrate: 2506
Total: 2506
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
680 [3 ]:
681 [23 ]: *
682 [409 ]: ***************************
683 [877 ]: **********************************************************
684 [1005]: *******************************************************************
685 [981 ]: *****************************************************************
686 [948 ]: ***************************************************************
687 [567 ]: *************************************
688 [54 ]: ***
689 [10 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0075548 GB
Integrated 366 (sum) + 361 (prf) / 423 reflections on image 683
Integrated 439 (sum) + 438 (prf) / 510 reflections on image 684
Integrated 447 (sum) + 445 (prf) / 518 reflections on image 685
Integrated 421 (sum) + 415 (prf) / 488 reflections on image 686
Integrated 434 (sum) + 431 (prf) / 513 reflections on image 687
Integrated 36 (sum) + 36 (prf) / 44 reflections on image 688
Integrated 9 (sum) + 9 (prf) / 10 reflections on image 689
Beginning integration job 137
Frames: 685 -> 695
Number of reflections
Partial: 11
Full: 2545
In ice ring: 0
Integrate: 2556
Total: 2556
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
685 [9 ]:
686 [31 ]: **
687 [450 ]: *****************************
688 [987 ]: ****************************************************************
689 [1018]: *******************************************************************
690 [935 ]: *************************************************************
691 [927 ]: *************************************************************
692 [545 ]: ***********************************
693 [54 ]: ***
694 [7 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00804822 GB
Integrated 400 (sum) + 396 (prf) / 471 reflections on image 688
Integrated 497 (sum) + 489 (prf) / 567 reflections on image 689
Integrated 438 (sum) + 432 (prf) / 487 reflections on image 690
Integrated 408 (sum) + 406 (prf) / 486 reflections on image 691
Integrated 433 (sum) + 428 (prf) / 491 reflections on image 692
Integrated 41 (sum) + 41 (prf) / 47 reflections on image 693
Integrated 6 (sum) + 6 (prf) / 7 reflections on image 694
Beginning integration job 138
Frames: 690 -> 700
Number of reflections
Partial: 17
Full: 2564
In ice ring: 0
Integrate: 2581
Total: 2581
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
690 [2 ]:
691 [17 ]: *
692 [426 ]: ****************************
693 [943 ]: **************************************************************
694 [1008]: ******************************************************************
695 [1017]: *******************************************************************
696 [1004]: ******************************************************************
697 [558 ]: ************************************
698 [67 ]: ****
699 [15 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00829066 GB
Integrated 395 (sum) + 392 (prf) / 453 reflections on image 693
Integrated 442 (sum) + 437 (prf) / 520 reflections on image 694
Integrated 447 (sum) + 439 (prf) / 514 reflections on image 695
Integrated 447 (sum) + 444 (prf) / 536 reflections on image 696
Integrated 423 (sum) + 417 (prf) / 491 reflections on image 697
Integrated 43 (sum) + 43 (prf) / 52 reflections on image 698
Integrated 12 (sum) + 11 (prf) / 15 reflections on image 699
Beginning integration job 139
Frames: 695 -> 705
Number of reflections
Partial: 21
Full: 2548
In ice ring: 0
Integrate: 2569
Total: 2569
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
695 [3 ]:
696 [11 ]:
697 [404]: ***************************
698 [919]: **************************************************************
699 [948]: ****************************************************************
700 [987]: *******************************************************************
701 [995]: ********************************************************************
702 [611]: *****************************************
703 [67 ]: ****
704 [17 ]: *
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0081469 GB
Integrated 409 (sum) + 405 (prf) / 466 reflections on image 698
Integrated 424 (sum) + 423 (prf) / 498 reflections on image 699
Integrated 433 (sum) + 428 (prf) / 503 reflections on image 700
Integrated 439 (sum) + 432 (prf) / 491 reflections on image 701
Integrated 475 (sum) + 467 (prf) / 544 reflections on image 702
Integrated 47 (sum) + 47 (prf) / 50 reflections on image 703
Integrated 14 (sum) + 14 (prf) / 17 reflections on image 704
Beginning integration job 140
Frames: 700 -> 710
Number of reflections
Partial: 15
Full: 2524
In ice ring: 0
Integrate: 2539
Total: 2539
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
700 [3 ]:
701 [20 ]: *
702 [395]: **************************
703 [908]: *************************************************************
704 [966]: *****************************************************************
705 [998]: ********************************************************************
706 [983]: ******************************************************************
707 [593]: ****************************************
708 [74 ]: *****
709 [14 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00803549 GB
Integrated 387 (sum) + 383 (prf) / 445 reflections on image 703
Integrated 438 (sum) + 434 (prf) / 502 reflections on image 704
Integrated 429 (sum) + 419 (prf) / 499 reflections on image 705
Integrated 417 (sum) + 410 (prf) / 500 reflections on image 706
Integrated 460 (sum) + 459 (prf) / 519 reflections on image 707
Integrated 52 (sum) + 52 (prf) / 60 reflections on image 708
Integrated 13 (sum) + 13 (prf) / 14 reflections on image 709
Beginning integration job 141
Frames: 705 -> 715
Number of reflections
Partial: 9
Full: 2526
In ice ring: 0
Integrate: 2535
Total: 2535
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
705 [4 ]:
706 [20 ]: *
707 [432]: ******************************
708 [943]: ******************************************************************
709 [966]: *******************************************************************
710 [969]: ********************************************************************
711 [939]: *****************************************************************
712 [554]: **************************************
713 [56 ]: ***
714 [13 ]:
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.0077689 GB
Integrated 398 (sum) + 394 (prf) / 467 reflections on image 708
Integrated 436 (sum) + 427 (prf) / 503 reflections on image 709
Integrated 448 (sum) + 445 (prf) / 520 reflections on image 710
Integrated 422 (sum) + 417 (prf) / 491 reflections on image 711
Integrated 421 (sum) + 417 (prf) / 498 reflections on image 712
Integrated 41 (sum) + 41 (prf) / 43 reflections on image 713
Integrated 11 (sum) + 11 (prf) / 13 reflections on image 714
Beginning integration job 142
Frames: 710 -> 720
Number of reflections
Partial: 1230
Full: 3515
In ice ring: 0
Integrate: 4745
Total: 4745
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
711 [18 ]:
712 [420 ]: ****************
713 [929 ]: ************************************
714 [993 ]: ***************************************
715 [1012]: ***************************************
716 [1067]: ******************************************
717 [1033]: ****************************************
718 [888 ]: **********************************
719 [1701]: *******************************************************************
Memory usage:
Total system memory: 135.395 GB
Limit shoebox memory: 101.546 GB
Required shoebox memory: 0.00853145 GB
Integrated 384 (sum) + 380 (prf) / 443 reflections on image 713
Integrated 449 (sum) + 447 (prf) / 515 reflections on image 714
Integrated 456 (sum) + 451 (prf) / 511 reflections on image 715
Integrated 444 (sum) + 440 (prf) / 516 reflections on image 716
Integrated 501 (sum) + 499 (prf) / 594 reflections on image 717
Integrated 409 (sum) + 407 (prf) / 465 reflections on image 718
Integrated 1472 (sum) + 583 (prf) / 1701 reflections on image 719
Summary vs image number
---------------------------------------------------------------------------------------------------------
ID | Image | # full | # part | # over | # ice | # sum | # prf | Ibg | I/sigI | I/sigI | CC prf | RMSD XY
| | | | | | | | | (sum) | (prf) | |
---------------------------------------------------------------------------------------------------------
0 | 0 | 321 | 1157 | 0 | 0 | 1280 | 464 | 0.77 | 3.91 | 10.93 | 0.72 | 0.63
0 | 1 | 477 | 12 | 0 | 0 | 423 | 417 | 0.73 | 7.28 | 7.46 | 0.70 | 0.43
0 | 2 | 496 | 2 | 0 | 0 | 433 | 429 | 0.72 | 6.61 | 6.82 | 0.69 | 0.46
0 | 3 | 504 | 1 | 0 | 0 | 430 | 428 | 0.72 | 7.47 | 7.63 | 0.69 | 0.44
0 | 4 | 530 | 5 | 0 | 0 | 461 | 458 | 0.78 | 8.67 | 8.82 | 0.70 | 0.45
0 | 5 | 508 | 6 | 0 | 0 | 447 | 442 | 0.67 | 6.77 | 6.93 | 0.70 | 0.43
0 | 6 | 534 | 2 | 0 | 0 | 464 | 464 | 0.79 | 9.06 | 9.16 | 0.69 | 0.45
0 | 7 | 551 | 4 | 0 | 0 | 469 | 464 | 0.74 | 7.84 | 8.08 | 0.69 | 0.44
0 | 8 | 500 | 8 | 0 | 0 | 433 | 429 | 0.67 | 7.74 | 8.03 | 0.67 | 0.45
0 | 9 | 474 | 3 | 0 | 0 | 410 | 405 | 0.72 | 8.87 | 9.11 | 0.69 | 0.44
0 | 10 | 471 | 7 | 0 | 0 | 408 | 405 | 0.74 | 7.53 | 7.71 | 0.69 | 0.44
0 | 11 | 517 | 3 | 0 | 0 | 447 | 445 | 0.75 | 8.06 | 8.23 | 0.70 | 0.45
0 | 12 | 508 | 10 | 0 | 0 | 434 | 429 | 0.75 | 7.48 | 7.72 | 0.69 | 0.47
0 | 13 | 502 | 9 | 0 | 0 | 442 | 439 | 0.77 | 9.08 | 9.25 | 0.70 | 0.45
0 | 14 | 499 | 4 | 0 | 0 | 433 | 430 | 0.70 | 7.09 | 7.25 | 0.68 | 0.48
0 | 15 | 518 | 3 | 0 | 0 | 451 | 448 | 0.70 | 7.00 | 7.22 | 0.69 | 0.47
0 | 16 | 522 | 9 | 0 | 0 | 452 | 447 | 0.66 | 6.70 | 6.94 | 0.69 | 0.46
0 | 17 | 510 | 10 | 0 | 0 | 448 | 440 | 0.74 | 6.99 | 7.21 | 0.70 | 0.43
0 | 18 | 487 | 9 | 0 | 0 | 413 | 409 | 0.72 | 6.81 | 7.08 | 0.68 | 0.44
0 | 19 | 531 | 0 | 0 | 0 | 461 | 460 | 0.72 | 7.74 | 7.90 | 0.68 | 0.44
0 | 20 | 511 | 3 | 0 | 0 | 440 | 436 | 0.75 | 8.62 | 9.12 | 0.69 | 0.47
0 | 21 | 513 | 3 | 0 | 0 | 448 | 445 | 0.77 | 7.66 | 8.06 | 0.69 | 0.44
0 | 22 | 485 | 8 | 0 | 0 | 431 | 427 | 0.65 | 7.29 | 7.47 | 0.69 | 0.47
0 | 23 | 497 | 3 | 0 | 0 | 419 | 416 | 0.70 | 7.55 | 7.74 | 0.69 | 0.44
0 | 24 | 510 | 0 | 0 | 0 | 447 | 441 | 0.64 | 6.73 | 6.95 | 0.67 | 0.46
0 | 25 | 536 | 4 | 0 | 0 | 472 | 470 | 0.69 | 7.96 | 8.13 | 0.68 | 0.44
0 | 26 | 497 | 0 | 0 | 0 | 436 | 435 | 0.76 | 8.40 | 8.58 | 0.70 | 0.44
0 | 27 | 500 | 12 | 0 | 0 | 443 | 440 | 0.69 | 7.50 | 7.66 | 0.68 | 0.45
0 | 28 | 524 | 6 | 0 | 0 | 463 | 458 | 0.77 | 9.24 | 9.62 | 0.68 | 0.46
0 | 29 | 494 | 3 | 0 | 0 | 433 | 427 | 0.74 | 7.52 | 7.85 | 0.69 | 0.45
0 | 30 | 521 | 13 | 0 | 0 | 448 | 445 | 0.70 | 7.60 | 7.74 | 0.69 | 0.43
0 | 31 | 539 | 0 | 0 | 0 | 452 | 450 | 0.76 | 8.13 | 8.26 | 0.69 | 0.44
0 | 32 | 477 | 9 | 0 | 0 | 424 | 419 | 0.67 | 6.97 | 7.39 | 0.68 | 0.44
0 | 33 | 516 | 3 | 0 | 0 | 456 | 450 | 0.67 | 6.85 | 7.10 | 0.69 | 0.45
0 | 34 | 513 | 0 | 0 | 0 | 448 | 444 | 0.65 | 6.28 | 6.45 | 0.69 | 0.47
0 | 35 | 479 | 0 | 0 | 0 | 414 | 412 | 0.66 | 7.43 | 7.59 | 0.68 | 0.46
0 | 36 | 503 | 6 | 0 | 0 | 432 | 429 | 0.67 | 6.41 | 6.56 | 0.68 | 0.44
0 | 37 | 513 | 6 | 0 | 0 | 435 | 431 | 0.66 | 6.78 | 7.17 | 0.69 | 0.46
0 | 38 | 490 | 0 | 0 | 0 | 413 | 409 | 0.66 | 7.27 | 7.44 | 0.68 | 0.45
0 | 39 | 531 | 4 | 0 | 0 | 467 | 464 | 0.76 | 8.00 | 8.21 | 0.70 | 0.45
0 | 40 | 491 | 4 | 0 | 0 | 430 | 429 | 0.76 | 8.59 | 8.77 | 0.70 | 0.44
0 | 41 | 522 | 6 | 0 | 0 | 448 | 446 | 0.75 | 7.24 | 7.41 | 0.69 | 0.43
0 | 42 | 492 | 6 | 0 | 0 | 441 | 440 | 0.67 | 7.45 | 7.69 | 0.69 | 0.45
0 | 43 | 498 | 3 | 0 | 0 | 426 | 425 | 0.69 | 7.49 | 7.63 | 0.69 | 0.45
0 | 44 | 530 | 27 | 0 | 0 | 456 | 449 | 0.67 | 7.08 | 7.25 | 0.69 | 0.47
0 | 45 | 475 | 3 | 0 | 0 | 418 | 415 | 0.69 | 8.06 | 8.23 | 0.68 | 0.46
0 | 46 | 528 | 0 | 0 | 0 | 463 | 458 | 0.72 | 7.37 | 7.58 | 0.68 | 0.46
0 | 47 | 487 | 3 | 0 | 0 | 428 | 425 | 0.73 | 7.95 | 8.16 | 0.70 | 0.44
0 | 48 | 521 | 0 | 0 | 0 | 453 | 449 | 0.64 | 7.05 | 7.20 | 0.67 | 0.49
0 | 49 | 510 | 3 | 0 | 0 | 444 | 443 | 0.72 | 7.94 | 8.10 | 0.70 | 0.44
0 | 50 | 521 | 7 | 0 | 0 | 446 | 441 | 0.65 | 6.75 | 6.90 | 0.66 | 0.48
0 | 51 | 493 | 15 | 0 | 0 | 432 | 430 | 0.69 | 7.98 | 8.56 | 0.70 | 0.43
0 | 52 | 527 | 3 | 0 | 0 | 462 | 456 | 0.69 | 7.66 | 7.86 | 0.68 | 0.47
0 | 53 | 494 | 0 | 0 | 0 | 420 | 417 | 0.72 | 8.02 | 8.24 | 0.71 | 0.41
0 | 54 | 528 | 17 | 0 | 0 | 469 | 461 | 0.64 | 6.90 | 7.23 | 0.67 | 0.47
0 | 55 | 489 | 0 | 0 | 0 | 417 | 415 | 0.72 | 7.13 | 7.32 | 0.69 | 0.44
0 | 56 | 525 | 0 | 0 | 0 | 451 | 442 | 0.66 | 6.32 | 6.57 | 0.67 | 0.46
0 | 57 | 490 | 3 | 0 | 0 | 442 | 439 | 0.71 | 7.79 | 8.00 | 0.70 | 0.44
0 | 58 | 522 | 0 | 0 | 0 | 457 | 455 | 0.63 | 6.87 | 7.00 | 0.68 | 0.47
0 | 59 | 485 | 0 | 0 | 0 | 406 | 400 | 0.74 | 8.14 | 8.37 | 0.69 | 0.44
0 | 60 | 534 | 4 | 0 | 0 | 469 | 463 | 0.69 | 6.86 | 7.10 | 0.69 | 0.43
0 | 61 | 471 | 0 | 0 | 0 | 410 | 405 | 0.65 | 6.66 | 6.83 | 0.69 | 0.43
0 | 62 | 527 | 6 | 0 | 0 | 463 | 456 | 0.73 | 7.39 | 7.98 | 0.69 | 0.43
0 | 63 | 501 | 3 | 0 | 0 | 422 | 419 | 0.70 | 7.94 | 8.12 | 0.69 | 0.45
0 | 64 | 507 | 0 | 0 | 0 | 441 | 435 | 0.68 | 7.09 | 7.31 | 0.68 | 0.46
0 | 65 | 524 | 0 | 0 | 0 | 452 | 449 | 0.71 | 7.79 | 8.00 | 0.71 | 0.43
0 | 66 | 488 | 0 | 0 | 0 | 425 | 421 | 0.71 | 7.73 | 7.93 | 0.68 | 0.47
0 | 67 | 516 | 19 | 0 | 0 | 457 | 454 | 0.70 | 7.87 | 8.41 | 0.69 | 0.41
0 | 68 | 523 | 5 | 0 | 0 | 447 | 443 | 0.68 | 6.85 | 7.06 | 0.69 | 0.47
0 | 69 | 471 | 3 | 0 | 0 | 411 | 410 | 0.69 | 7.25 | 7.37 | 0.69 | 0.43
0 | 70 | 527 | 4 | 0 | 0 | 459 | 451 | 0.72 | 8.51 | 8.77 | 0.69 | 0.43
0 | 71 | 497 | 15 | 0 | 0 | 445 | 441 | 0.61 | 6.67 | 6.81 | 0.68 | 0.44
0 | 72 | 531 | 8 | 0 | 0 | 462 | 458 | 0.71 | 7.13 | 7.62 | 0.69 | 0.45
0 | 73 | 521 | 0 | 0 | 0 | 445 | 442 | 0.67 | 6.68 | 6.89 | 0.68 | 0.45
0 | 74 | 479 | 0 | 0 | 0 | 423 | 420 | 0.65 | 6.39 | 6.57 | 0.68 | 0.44
0 | 75 | 551 | 0 | 0 | 0 | 471 | 469 | 0.65 | 7.17 | 7.35 | 0.69 | 0.43
0 | 76 | 487 | 6 | 0 | 0 | 419 | 416 | 0.70 | 7.38 | 7.59 | 0.70 | 0.43
0 | 77 | 502 | 12 | 0 | 0 | 436 | 428 | 0.66 | 6.83 | 7.09 | 0.67 | 0.44
0 | 78 | 511 | 3 | 0 | 0 | 445 | 440 | 0.69 | 7.30 | 7.63 | 0.69 | 0.44
0 | 79 | 508 | 0 | 0 | 0 | 435 | 431 | 0.69 | 7.67 | 7.87 | 0.69 | 0.43
0 | 80 | 521 | 4 | 0 | 0 | 443 | 437 | 0.74 | 7.89 | 8.14 | 0.68 | 0.47
0 | 81 | 483 | 3 | 0 | 0 | 421 | 415 | 0.72 | 7.18 | 7.40 | 0.70 | 0.43
0 | 82 | 528 | 14 | 0 | 0 | 463 | 457 | 0.72 | 6.88 | 7.14 | 0.69 | 0.43
0 | 83 | 489 | 12 | 0 | 0 | 435 | 430 | 0.69 | 7.22 | 7.82 | 0.69 | 0.47
0 | 84 | 491 | 8 | 0 | 0 | 428 | 421 | 0.65 | 6.95 | 7.21 | 0.70 | 0.41
0 | 85 | 500 | 0 | 0 | 0 | 428 | 425 | 0.66 | 7.20 | 7.36 | 0.70 | 0.46
0 | 86 | 474 | 11 | 0 | 0 | 393 | 390 | 0.63 | 6.70 | 6.84 | 0.70 | 0.42
0 | 87 | 549 | 12 | 0 | 0 | 498 | 491 | 0.75 | 8.15 | 8.47 | 0.70 | 0.44
0 | 88 | 510 | 0 | 0 | 0 | 434 | 427 | 0.70 | 6.99 | 7.22 | 0.71 | 0.43
0 | 89 | 513 | 4 | 0 | 0 | 437 | 436 | 0.73 | 7.98 | 8.10 | 0.70 | 0.43
0 | 90 | 529 | 0 | 0 | 0 | 461 | 457 | 0.66 | 6.57 | 6.77 | 0.68 | 0.44
0 | 91 | 503 | 6 | 0 | 0 | 446 | 441 | 0.72 | 7.66 | 8.07 | 0.70 | 0.41
0 | 92 | 522 | 9 | 0 | 0 | 466 | 458 | 0.63 | 6.27 | 6.64 | 0.69 | 0.46
0 | 93 | 489 | 6 | 0 | 0 | 432 | 429 | 0.63 | 5.96 | 6.18 | 0.69 | 0.42
0 | 94 | 517 | 0 | 0 | 0 | 443 | 438 | 0.69 | 6.81 | 7.00 | 0.69 | 0.44
0 | 95 | 524 | 7 | 0 | 0 | 446 | 444 | 0.73 | 8.20 | 8.44 | 0.69 | 0.43
0 | 96 | 473 | 6 | 0 | 0 | 422 | 417 | 0.70 | 7.05 | 7.33 | 0.70 | 0.44
0 | 97 | 536 | 16 | 0 | 0 | 481 | 479 | 0.73 | 7.29 | 7.48 | 0.69 | 0.44
0 | 98 | 470 | 0 | 0 | 0 | 393 | 391 | 0.72 | 7.31 | 7.45 | 0.69 | 0.44
0 | 99 | 453 | 8 | 0 | 0 | 389 | 387 | 0.66 | 7.27 | 7.42 | 0.70 | 0.45
0 | 100 | 510 | 4 | 0 | 0 | 452 | 449 | 0.66 | 6.97 | 7.16 | 0.69 | 0.43
0 | 101 | 540 | 6 | 0 | 0 | 470 | 469 | 0.70 | 6.41 | 6.61 | 0.69 | 0.45
0 | 102 | 532 | 15 | 0 | 0 | 476 | 466 | 0.71 | 8.05 | 9.56 | 0.69 | 0.44
0 | 103 | 521 | 3 | 0 | 0 | 459 | 452 | 0.68 | 6.96 | 7.18 | 0.70 | 0.43
0 | 104 | 509 | 8 | 0 | 0 | 448 | 446 | 0.70 | 6.58 | 6.75 | 0.70 | 0.40
0 | 105 | 507 | 4 | 0 | 0 | 454 | 448 | 0.68 | 7.94 | 8.29 | 0.69 | 0.44
0 | 106 | 508 | 8 | 0 | 0 | 436 | 430 | 0.64 | 6.59 | 6.87 | 0.68 | 0.46
0 | 107 | 476 | 9 | 0 | 0 | 408 | 407 | 0.74 | 8.13 | 8.98 | 0.71 | 0.40
0 | 108 | 539 | 9 | 0 | 0 | 474 | 462 | 0.76 | 7.16 | 7.51 | 0.71 | 0.44
0 | 109 | 498 | 4 | 0 | 0 | 431 | 428 | 0.74 | 7.94 | 8.13 | 0.70 | 0.41
0 | 110 | 463 | 4 | 0 | 0 | 398 | 398 | 0.71 | 7.09 | 7.27 | 0.69 | 0.44
0 | 111 | 499 | 36 | 0 | 0 | 429 | 425 | 0.66 | 6.46 | 6.67 | 0.67 | 0.46
0 | 112 | 554 | 0 | 0 | 0 | 479 | 475 | 0.72 | 7.55 | 7.76 | 0.71 | 0.41
0 | 113 | 501 | 4 | 0 | 0 | 442 | 440 | 0.68 | 6.76 | 6.90 | 0.70 | 0.43
0 | 114 | 522 | 12 | 0 | 0 | 454 | 446 | 0.72 | 7.40 | 8.32 | 0.69 | 0.43
0 | 115 | 514 | 33 | 0 | 0 | 430 | 426 | 0.69 | 6.73 | 7.10 | 0.69 | 0.45
0 | 116 | 500 | 6 | 0 | 0 | 432 | 428 | 0.71 | 7.05 | 7.93 | 0.70 | 0.41
0 | 117 | 501 | 3 | 0 | 0 | 442 | 440 | 0.74 | 7.83 | 7.98 | 0.70 | 0.41
0 | 118 | 518 | 3 | 0 | 0 | 449 | 444 | 0.79 | 7.77 | 8.00 | 0.70 | 0.44
0 | 119 | 476 | 0 | 0 | 0 | 413 | 410 | 0.71 | 6.68 | 6.83 | 0.70 | 0.42
0 | 120 | 485 | 7 | 0 | 0 | 426 | 424 | 0.71 | 6.60 | 7.00 | 0.69 | 0.45
0 | 121 | 558 | 0 | 0 | 0 | 476 | 473 | 0.76 | 6.90 | 7.13 | 0.70 | 0.41
0 | 122 | 490 | 14 | 0 | 0 | 433 | 429 | 0.68 | 6.42 | 8.76 | 0.69 | 0.43
0 | 123 | 530 | 14 | 0 | 0 | 464 | 459 | 0.70 | 6.72 | 7.06 | 0.68 | 0.45
0 | 124 | 508 | 8 | 0 | 0 | 450 | 444 | 0.75 | 7.26 | 7.46 | 0.70 | 0.42
0 | 125 | 506 | 19 | 0 | 0 | 442 | 437 | 0.78 | 8.12 | 8.41 | 0.72 | 0.40
0 | 126 | 515 | 12 | 0 | 0 | 461 | 452 | 0.68 | 6.02 | 6.39 | 0.69 | 0.42
0 | 127 | 462 | 6 | 0 | 0 | 405 | 401 | 0.72 | 6.99 | 7.20 | 0.70 | 0.43
0 | 128 | 504 | 3 | 0 | 0 | 430 | 426 | 0.71 | 7.01 | 7.33 | 0.69 | 0.44
0 | 129 | 499 | 8 | 0 | 0 | 424 | 417 | 0.72 | 6.18 | 6.45 | 0.70 | 0.42
0 | 130 | 530 | 0 | 0 | 0 | 456 | 454 | 0.75 | 7.26 | 7.42 | 0.70 | 0.42
0 | 131 | 527 | 15 | 0 | 0 | 465 | 458 | 0.70 | 6.89 | 7.18 | 0.68 | 0.46
0 | 132 | 502 | 24 | 0 | 0 | 443 | 436 | 0.82 | 8.47 | 8.92 | 0.71 | 0.42
0 | 133 | 500 | 6 | 0 | 0 | 438 | 435 | 0.70 | 6.62 | 6.76 | 0.69 | 0.45
0 | 134 | 509 | 8 | 0 | 0 | 437 | 431 | 0.74 | 7.45 | 7.70 | 0.70 | 0.45
0 | 135 | 485 | 0 | 0 | 0 | 417 | 409 | 0.75 | 7.29 | 7.58 | 0.69 | 0.44
0 | 136 | 529 | 0 | 0 | 0 | 464 | 461 | 0.73 | 6.12 | 6.26 | 0.69 | 0.44
0 | 137 | 497 | 3 | 0 | 0 | 432 | 428 | 0.75 | 7.65 | 7.87 | 0.70 | 0.42
0 | 138 | 510 | 6 | 0 | 0 | 457 | 451 | 0.71 | 6.21 | 6.49 | 0.69 | 0.43
0 | 139 | 531 | 0 | 0 | 0 | 450 | 441 | 0.72 | 6.73 | 6.99 | 0.69 | 0.45
0 | 140 | 506 | 4 | 0 | 0 | 447 | 444 | 0.79 | 7.55 | 7.74 | 0.71 | 0.43
0 | 141 | 500 | 10 | 0 | 0 | 442 | 435 | 0.74 | 6.70 | 6.94 | 0.70 | 0.44
0 | 142 | 482 | 6 | 0 | 0 | 406 | 404 | 0.76 | 6.92 | 7.09 | 0.69 | 0.43
0 | 143 | 488 | 0 | 0 | 0 | 423 | 420 | 0.79 | 7.18 | 7.42 | 0.71 | 0.41
0 | 144 | 548 | 0 | 0 | 0 | 457 | 454 | 0.74 | 6.98 | 7.16 | 0.69 | 0.46
0 | 145 | 506 | 6 | 0 | 0 | 451 | 446 | 0.79 | 8.83 | 9.98 | 0.69 | 0.44
0 | 146 | 506 | 0 | 0 | 0 | 437 | 434 | 0.77 | 7.18 | 7.35 | 0.71 | 0.40
0 | 147 | 529 | 19 | 0 | 0 | 461 | 455 | 0.83 | 8.87 | 46.78 | 0.70 | 0.43
0 | 148 | 502 | 54 | 0 | 0 | 442 | 432 | 0.80 | 7.73 | 8.35 | 0.71 | 0.43
0 | 149 | 492 | 9 | 0 | 0 | 425 | 422 | 0.80 | 7.00 | 7.15 | 0.70 | 0.42
0 | 150 | 494 | 50 | 0 | 0 | 432 | 429 | 0.74 | 6.57 | 6.73 | 0.69 | 0.44
0 | 151 | 514 | 3 | 0 | 0 | 463 | 459 | 0.72 | 6.08 | 6.26 | 0.69 | 0.44
0 | 152 | 516 | 8 | 0 | 0 | 440 | 439 | 0.81 | 7.29 | 7.47 | 0.69 | 0.44
0 | 153 | 536 | 6 | 0 | 0 | 455 | 452 | 0.78 | 6.83 | 6.99 | 0.70 | 0.42
0 | 154 | 487 | 21 | 0 | 0 | 428 | 426 | 0.80 | 7.71 | 7.91 | 0.71 | 0.40
0 | 155 | 486 | 8 | 0 | 0 | 431 | 424 | 0.79 | 7.18 | 7.42 | 0.70 | 0.45
0 | 156 | 511 | 12 | 0 | 0 | 430 | 426 | 0.82 | 7.45 | 7.79 | 0.71 | 0.41
0 | 157 | 510 | 12 | 0 | 0 | 460 | 449 | 0.84 | 7.97 | 8.31 | 0.71 | 0.44
0 | 158 | 524 | 3 | 0 | 0 | 457 | 453 | 0.79 | 7.14 | 7.35 | 0.70 | 0.43
0 | 159 | 510 | 3 | 0 | 0 | 433 | 428 | 0.81 | 7.37 | 7.57 | 0.69 | 0.43
0 | 160 | 507 | 0 | 0 | 0 | 433 | 429 | 0.80 | 6.57 | 6.78 | 0.70 | 0.42
0 | 161 | 497 | 7 | 0 | 0 | 431 | 427 | 0.80 | 7.07 | 7.28 | 0.71 | 0.43
0 | 162 | 484 | 9 | 0 | 0 | 425 | 420 | 0.80 | 7.03 | 7.30 | 0.70 | 0.42
0 | 163 | 528 | 0 | 0 | 0 | 456 | 451 | 0.83 | 6.46 | 6.64 | 0.70 | 0.45
0 | 164 | 523 | 3 | 0 | 0 | 462 | 455 | 0.82 | 6.98 | 7.22 | 0.71 | 0.42
0 | 165 | 520 | 4 | 0 | 0 | 449 | 445 | 0.85 | 7.58 | 7.76 | 0.71 | 0.44
0 | 166 | 479 | 34 | 0 | 0 | 438 | 434 | 0.76 | 6.41 | 6.72 | 0.70 | 0.41
0 | 167 | 494 | 3 | 0 | 0 | 421 | 419 | 0.89 | 7.09 | 7.22 | 0.71 | 0.42
0 | 168 | 515 | 3 | 0 | 0 | 447 | 442 | 0.84 | 7.43 | 7.79 | 0.71 | 0.43
0 | 169 | 509 | 7 | 0 | 0 | 445 | 441 | 0.76 | 6.77 | 6.94 | 0.68 | 0.44
0 | 170 | 526 | 0 | 0 | 0 | 454 | 449 | 0.87 | 6.83 | 7.07 | 0.71 | 0.43
0 | 171 | 499 | 0 | 0 | 0 | 434 | 432 | 0.89 | 7.96 | 8.09 | 0.72 | 0.39
0 | 172 | 517 | 12 | 0 | 0 | 458 | 454 | 0.84 | 6.57 | 7.28 | 0.70 | 0.43
0 | 173 | 483 | 3 | 0 | 0 | 417 | 413 | 0.90 | 7.71 | 8.01 | 0.72 | 0.41
0 | 174 | 506 | 8 | 0 | 0 | 434 | 431 | 0.82 | 6.86 | 7.00 | 0.70 | 0.43
0 | 175 | 516 | 5 | 0 | 0 | 448 | 444 | 0.92 | 8.14 | 8.35 | 0.71 | 0.40
0 | 176 | 500 | 9 | 0 | 0 | 435 | 432 | 0.80 | 6.38 | 7.05 | 0.70 | 0.46
0 | 177 | 507 | 3 | 0 | 0 | 445 | 442 | 0.85 | 7.24 | 7.39 | 0.71 | 0.41
0 | 178 | 511 | 0 | 0 | 0 | 439 | 436 | 0.88 | 7.79 | 7.92 | 0.70 | 0.42
0 | 179 | 498 | 0 | 0 | 0 | 429 | 428 | 0.90 | 6.91 | 7.03 | 0.71 | 0.44
0 | 180 | 508 | 0 | 0 | 0 | 437 | 436 | 0.93 | 7.34 | 7.52 | 0.71 | 0.40
0 | 181 | 536 | 14 | 0 | 0 | 464 | 462 | 0.88 | 7.30 | 7.45 | 0.71 | 0.42
0 | 182 | 485 | 6 | 0 | 0 | 426 | 418 | 0.81 | 6.50 | 6.68 | 0.70 | 0.43
0 | 183 | 502 | 3 | 0 | 0 | 433 | 428 | 0.92 | 6.99 | 7.22 | 0.72 | 0.40
0 | 184 | 529 | 8 | 0 | 0 | 455 | 452 | 0.92 | 6.99 | 7.14 | 0.71 | 0.41
0 | 185 | 483 | 7 | 0 | 0 | 411 | 409 | 0.93 | 7.06 | 7.55 | 0.70 | 0.43
0 | 186 | 532 | 9 | 0 | 0 | 461 | 459 | 0.84 | 6.27 | 6.42 | 0.71 | 0.41
0 | 187 | 465 | 6 | 0 | 0 | 404 | 399 | 0.89 | 6.67 | 7.00 | 0.70 | 0.42
0 | 188 | 529 | 13 | 0 | 0 | 460 | 457 | 0.96 | 7.93 | 8.17 | 0.72 | 0.41
0 | 189 | 511 | 7 | 0 | 0 | 439 | 435 | 0.97 | 8.42 | 8.80 | 0.71 | 0.41
0 | 190 | 493 | 3 | 0 | 0 | 439 | 434 | 0.99 | 7.10 | 7.32 | 0.71 | 0.42
0 | 191 | 543 | 7 | 0 | 0 | 469 | 466 | 0.94 | 7.27 | 7.49 | 0.72 | 0.42
0 | 192 | 487 | 15 | 0 | 0 | 431 | 425 | 0.91 | 6.57 | 7.94 | 0.72 | 0.40
0 | 193 | 501 | 0 | 0 | 0 | 432 | 424 | 0.92 | 7.08 | 7.31 | 0.72 | 0.41
0 | 194 | 516 | 0 | 0 | 0 | 445 | 442 | 1.03 | 8.01 | 8.16 | 0.73 | 0.41
0 | 195 | 521 | 0 | 0 | 0 | 458 | 454 | 1.05 | 8.69 | 8.88 | 0.72 | 0.42
0 | 196 | 491 | 0 | 0 | 0 | 426 | 422 | 1.06 | 8.44 | 8.61 | 0.72 | 0.43
0 | 197 | 503 | 12 | 0 | 0 | 439 | 434 | 0.87 | 6.56 | 7.56 | 0.71 | 0.44
0 | 198 | 520 | 11 | 0 | 0 | 453 | 452 | 0.96 | 7.35 | 7.47 | 0.72 | 0.40
0 | 199 | 497 | 0 | 0 | 0 | 432 | 426 | 1.00 | 7.86 | 8.07 | 0.72 | 0.41
0 | 200 | 500 | 12 | 0 | 0 | 438 | 435 | 0.97 | 6.35 | 6.49 | 0.72 | 0.41
0 | 201 | 531 | 6 | 0 | 0 | 471 | 466 | 1.05 | 7.67 | 7.88 | 0.73 | 0.40
0 | 202 | 500 | 16 | 0 | 0 | 426 | 418 | 1.07 | 7.97 | 8.27 | 0.72 | 0.40
0 | 203 | 514 | 9 | 0 | 0 | 446 | 440 | 1.02 | 7.59 | 7.98 | 0.72 | 0.43
0 | 204 | 484 | 0 | 0 | 0 | 424 | 423 | 1.00 | 6.92 | 7.05 | 0.72 | 0.39
0 | 205 | 531 | 3 | 0 | 0 | 463 | 456 | 0.98 | 6.73 | 6.91 | 0.73 | 0.39
0 | 206 | 483 | 0 | 0 | 0 | 424 | 421 | 1.06 | 7.72 | 7.84 | 0.73 | 0.39
0 | 207 | 517 | 6 | 0 | 0 | 454 | 452 | 1.06 | 7.46 | 7.65 | 0.73 | 0.40
0 | 208 | 501 | 3 | 0 | 0 | 428 | 425 | 1.04 | 7.70 | 7.89 | 0.73 | 0.41
0 | 209 | 519 | 0 | 0 | 0 | 444 | 439 | 1.20 | 8.68 | 8.93 | 0.75 | 0.41
0 | 210 | 503 | 0 | 0 | 0 | 434 | 431 | 1.06 | 6.69 | 6.86 | 0.73 | 0.42
0 | 211 | 511 | 6 | 0 | 0 | 450 | 446 | 1.06 | 7.07 | 7.53 | 0.73 | 0.41
0 | 212 | 513 | 6 | 0 | 0 | 445 | 441 | 1.16 | 7.72 | 8.29 | 0.73 | 0.42
0 | 213 | 487 | 0 | 0 | 0 | 420 | 416 | 1.01 | 6.41 | 6.51 | 0.73 | 0.43
0 | 214 | 502 | 0 | 0 | 0 | 437 | 432 | 1.19 | 7.92 | 8.15 | 0.73 | 0.42
0 | 215 | 523 | 0 | 0 | 0 | 457 | 451 | 1.11 | 7.42 | 7.59 | 0.73 | 0.41
0 | 216 | 511 | 3 | 0 | 0 | 450 | 444 | 1.15 | 7.48 | 7.84 | 0.74 | 0.44
0 | 217 | 493 | 12 | 0 | 0 | 431 | 427 | 1.11 | 7.04 | 7.42 | 0.73 | 0.40
0 | 218 | 531 | 13 | 0 | 0 | 483 | 480 | 1.15 | 6.48 | 6.66 | 0.75 | 0.38
0 | 219 | 496 | 9 | 0 | 0 | 422 | 413 | 1.16 | 7.48 | 7.78 | 0.74 | 0.42
0 | 220 | 525 | 0 | 0 | 0 | 463 | 456 | 1.17 | 7.19 | 7.40 | 0.74 | 0.41
0 | 221 | 489 | 10 | 0 | 0 | 419 | 417 | 1.27 | 8.57 | 8.84 | 0.74 | 0.41
0 | 222 | 509 | 6 | 0 | 0 | 452 | 449 | 1.21 | 7.68 | 7.88 | 0.74 | 0.41
0 | 223 | 511 | 8 | 0 | 0 | 437 | 431 | 1.21 | 7.71 | 7.94 | 0.74 | 0.39
0 | 224 | 506 | 0 | 0 | 0 | 452 | 451 | 1.31 | 6.93 | 7.12 | 0.75 | 0.40
0 | 225 | 502 | 0 | 0 | 0 | 420 | 418 | 1.16 | 6.43 | 6.61 | 0.74 | 0.43
0 | 226 | 492 | 6 | 0 | 0 | 428 | 423 | 1.31 | 7.84 | 8.12 | 0.76 | 0.39
0 | 227 | 524 | 6 | 0 | 0 | 461 | 457 | 1.27 | 8.73 | 9.08 | 0.75 | 0.38
0 | 228 | 506 | 3 | 0 | 0 | 460 | 453 | 1.32 | 8.38 | 8.64 | 0.75 | 0.42
0 | 229 | 508 | 9 | 0 | 0 | 458 | 454 | 1.30 | 7.47 | 7.73 | 0.75 | 0.40
0 | 230 | 515 | 0 | 0 | 0 | 431 | 427 | 1.33 | 7.60 | 7.79 | 0.76 | 0.41
0 | 231 | 497 | 0 | 0 | 0 | 424 | 419 | 1.34 | 7.71 | 7.89 | 0.76 | 0.40
0 | 232 | 502 | 12 | 0 | 0 | 439 | 430 | 1.33 | 7.41 | 7.74 | 0.75 | 0.41
0 | 233 | 506 | 6 | 0 | 0 | 440 | 436 | 1.34 | 8.33 | 9.06 | 0.75 | 0.41
0 | 234 | 531 | 3 | 0 | 0 | 459 | 453 | 1.36 | 7.12 | 7.35 | 0.75 | 0.41
0 | 235 | 502 | 6 | 0 | 0 | 434 | 432 | 1.31 | 6.69 | 6.83 | 0.75 | 0.42
0 | 236 | 492 | 10 | 0 | 0 | 443 | 440 | 1.48 | 9.72 | 9.91 | 0.76 | 0.41
0 | 237 | 492 | 9 | 0 | 0 | 431 | 426 | 1.49 | 9.24 | 10.51 | 0.76 | 0.40
0 | 238 | 504 | 6 | 0 | 0 | 443 | 436 | 1.33 | 6.13 | 6.39 | 0.77 | 0.38
0 | 239 | 531 | 11 | 0 | 0 | 465 | 461 | 1.36 | 8.39 | 8.59 | 0.76 | 0.38
0 | 240 | 525 | 3 | 0 | 0 | 458 | 451 | 1.51 | 9.13 | 9.63 | 0.76 | 0.38
0 | 241 | 483 | 15 | 0 | 0 | 426 | 422 | 1.38 | 8.01 | 8.44 | 0.76 | 0.40
0 | 242 | 501 | 11 | 0 | 0 | 439 | 435 | 1.51 | 8.88 | 9.05 | 0.76 | 0.38
0 | 243 | 530 | 7 | 0 | 0 | 450 | 448 | 1.41 | 7.52 | 7.69 | 0.76 | 0.42
0 | 244 | 491 | 4 | 0 | 0 | 431 | 428 | 1.48 | 6.91 | 7.13 | 0.77 | 0.40
0 | 245 | 536 | 4 | 0 | 0 | 455 | 454 | 1.43 | 7.96 | 8.15 | 0.76 | 0.42
0 | 246 | 490 | 3 | 0 | 0 | 415 | 414 | 1.44 | 7.83 | 8.02 | 0.76 | 0.41
0 | 247 | 506 | 17 | 0 | 0 | 442 | 438 | 1.39 | 7.96 | 8.33 | 0.76 | 0.41
0 | 248 | 526 | 6 | 0 | 0 | 453 | 447 | 1.54 | 8.82 | 9.07 | 0.77 | 0.40
0 | 249 | 500 | 12 | 0 | 0 | 439 | 435 | 1.42 | 8.46 | 8.67 | 0.76 | 0.40
0 | 250 | 511 | 6 | 0 | 0 | 448 | 440 | 1.44 | 7.96 | 8.51 | 0.77 | 0.40
0 | 251 | 497 | 0 | 0 | 0 | 424 | 421 | 1.43 | 7.30 | 7.51 | 0.77 | 0.38
0 | 252 | 491 | 3 | 0 | 0 | 428 | 426 | 1.39 | 7.25 | 7.49 | 0.76 | 0.39
0 | 253 | 518 | 16 | 0 | 0 | 454 | 452 | 1.48 | 8.23 | 8.55 | 0.76 | 0.40
0 | 254 | 477 | 3 | 0 | 0 | 415 | 412 | 1.39 | 7.21 | 7.36 | 0.76 | 0.39
0 | 255 | 538 | 11 | 0 | 0 | 450 | 447 | 1.40 | 7.85 | 8.04 | 0.77 | 0.38
0 | 256 | 515 | 9 | 0 | 0 | 448 | 443 | 1.48 | 9.33 | 9.59 | 0.76 | 0.38
0 | 257 | 501 | 9 | 0 | 0 | 441 | 437 | 1.29 | 6.30 | 6.48 | 0.76 | 0.38
0 | 258 | 540 | 17 | 0 | 0 | 466 | 463 | 1.44 | 8.42 | 8.70 | 0.76 | 0.39
0 | 259 | 492 | 0 | 0 | 0 | 426 | 420 | 1.36 | 7.72 | 7.91 | 0.75 | 0.41
0 | 260 | 482 | 0 | 0 | 0 | 423 | 422 | 1.38 | 7.94 | 8.08 | 0.77 | 0.39
0 | 261 | 514 | 3 | 0 | 0 | 438 | 431 | 1.32 | 6.72 | 7.01 | 0.76 | 0.39
0 | 262 | 518 | 20 | 0 | 0 | 453 | 444 | 1.31 | 6.99 | 7.50 | 0.75 | 0.39
0 | 263 | 485 | 13 | 0 | 0 | 413 | 411 | 1.34 | 8.87 | 9.10 | 0.75 | 0.38
0 | 264 | 508 | 3 | 0 | 0 | 451 | 445 | 1.18 | 7.60 | 7.82 | 0.75 | 0.39
0 | 265 | 507 | 7 | 0 | 0 | 445 | 442 | 1.41 | 7.77 | 7.92 | 0.76 | 0.40
0 | 266 | 510 | 13 | 0 | 0 | 444 | 443 | 1.38 | 8.09 | 8.26 | 0.76 | 0.38
0 | 267 | 554 | 17 | 0 | 0 | 494 | 488 | 1.31 | 9.33 | 13.23 | 0.75 | 0.40
0 | 268 | 493 | 6 | 0 | 0 | 420 | 417 | 1.30 | 8.47 | 8.67 | 0.75 | 0.40
0 | 269 | 512 | 7 | 0 | 0 | 444 | 442 | 1.34 | 8.04 | 8.22 | 0.76 | 0.40
0 | 270 | 517 | 0 | 0 | 0 | 451 | 449 | 1.09 | 6.82 | 6.92 | 0.75 | 0.39
0 | 271 | 501 | 15 | 0 | 0 | 440 | 430 | 1.21 | 8.50 | 8.88 | 0.75 | 0.40
0 | 272 | 471 | 8 | 0 | 0 | 415 | 413 | 1.19 | 7.87 | 8.23 | 0.74 | 0.41
0 | 273 | 536 | 6 | 0 | 0 | 469 | 462 | 1.28 | 8.92 | 9.26 | 0.75 | 0.41
0 | 274 | 485 | 7 | 0 | 0 | 413 | 410 | 1.28 | 9.21 | 9.41 | 0.75 | 0.39
0 | 275 | 510 | 5 | 0 | 0 | 440 | 437 | 1.14 | 7.67 | 7.81 | 0.73 | 0.40
0 | 276 | 519 | 4 | 0 | 0 | 452 | 450 | 1.12 | 7.68 | 7.84 | 0.74 | 0.39
0 | 277 | 493 | 6 | 0 | 0 | 414 | 404 | 1.08 | 7.65 | 7.95 | 0.74 | 0.42
0 | 278 | 539 | 0 | 0 | 0 | 471 | 466 | 1.14 | 7.52 | 7.72 | 0.73 | 0.40
0 | 279 | 505 | 0 | 0 | 0 | 444 | 440 | 1.27 | 8.95 | 9.14 | 0.75 | 0.38
0 | 280 | 481 | 3 | 0 | 0 | 430 | 427 | 1.04 | 7.34 | 7.48 | 0.72 | 0.40
0 | 281 | 514 | 0 | 0 | 0 | 440 | 436 | 1.05 | 7.83 | 7.99 | 0.73 | 0.41
0 | 282 | 506 | 18 | 0 | 0 | 437 | 433 | 1.07 | 7.23 | 7.99 | 0.73 | 0.42
0 | 283 | 520 | 6 | 0 | 0 | 470 | 465 | 1.07 | 6.72 | 6.98 | 0.73 | 0.40
0 | 284 | 500 | 4 | 0 | 0 | 433 | 429 | 1.13 | 7.53 | 7.72 | 0.74 | 0.40
0 | 285 | 503 | 6 | 0 | 0 | 439 | 427 | 1.03 | 6.57 | 6.85 | 0.73 | 0.43
0 | 286 | 525 | 9 | 0 | 0 | 459 | 453 | 1.00 | 7.69 | 7.90 | 0.72 | 0.41
0 | 287 | 484 | 18 | 0 | 0 | 428 | 422 | 0.96 | 6.51 | 6.88 | 0.72 | 0.42
0 | 288 | 520 | 14 | 0 | 0 | 460 | 457 | 1.02 | 7.78 | 7.93 | 0.72 | 0.41
0 | 289 | 493 | 9 | 0 | 0 | 433 | 427 | 1.09 | 7.96 | 8.19 | 0.74 | 0.38
0 | 290 | 537 | 4 | 0 | 0 | 469 | 467 | 1.07 | 8.38 | 8.55 | 0.73 | 0.38
0 | 291 | 490 | 5 | 0 | 0 | 418 | 415 | 0.97 | 8.03 | 8.21 | 0.71 | 0.43
0 | 292 | 514 | 15 | 0 | 0 | 452 | 449 | 0.99 | 7.36 | 7.59 | 0.72 | 0.40
0 | 293 | 498 | 3 | 0 | 0 | 426 | 420 | 0.99 | 6.96 | 7.15 | 0.73 | 0.41
0 | 294 | 509 | 7 | 0 | 0 | 437 | 434 | 0.97 | 7.33 | 7.70 | 0.72 | 0.41
0 | 295 | 488 | 6 | 0 | 0 | 430 | 426 | 1.01 | 8.03 | 8.18 | 0.71 | 0.41
0 | 296 | 529 | 3 | 0 | 0 | 440 | 437 | 0.94 | 6.86 | 6.99 | 0.72 | 0.43
0 | 297 | 507 | 10 | 0 | 0 | 430 | 427 | 1.02 | 8.09 | 8.22 | 0.72 | 0.40
0 | 298 | 520 | 5 | 0 | 0 | 454 | 450 | 0.98 | 8.74 | 8.91 | 0.72 | 0.42
0 | 299 | 475 | 3 | 0 | 0 | 406 | 402 | 0.95 | 8.82 | 9.00 | 0.72 | 0.41
0 | 300 | 540 | 0 | 0 | 0 | 474 | 473 | 0.96 | 8.03 | 8.13 | 0.72 | 0.41
0 | 301 | 511 | 17 | 0 | 0 | 442 | 436 | 0.85 | 6.70 | 7.08 | 0.70 | 0.43
0 | 302 | 524 | 19 | 0 | 0 | 463 | 456 | 0.99 | 8.36 | 9.72 | 0.71 | 0.41
0 | 303 | 477 | 3 | 0 | 0 | 406 | 402 | 0.88 | 7.02 | 7.35 | 0.70 | 0.43
0 | 304 | 532 | 0 | 0 | 0 | 452 | 447 | 0.97 | 6.89 | 7.06 | 0.71 | 0.42
0 | 305 | 497 | 0 | 0 | 0 | 431 | 426 | 0.87 | 6.65 | 6.90 | 0.71 | 0.42
0 | 306 | 499 | 4 | 0 | 0 | 440 | 438 | 0.91 | 7.18 | 7.35 | 0.71 | 0.41
0 | 307 | 499 | 6 | 0 | 0 | 432 | 425 | 0.95 | 7.83 | 8.07 | 0.71 | 0.42
0 | 308 | 538 | 3 | 0 | 0 | 462 | 457 | 0.86 | 7.27 | 7.63 | 0.70 | 0.44
0 | 309 | 510 | 0 | 0 | 0 | 447 | 443 | 0.89 | 6.94 | 7.15 | 0.71 | 0.41
0 | 310 | 481 | 6 | 0 | 0 | 413 | 410 | 0.90 | 8.41 | 8.55 | 0.70 | 0.45
0 | 311 | 509 | 5 | 0 | 0 | 458 | 453 | 0.88 | 7.08 | 7.25 | 0.71 | 0.43
0 | 312 | 520 | 4 | 0 | 0 | 441 | 436 | 0.94 | 8.17 | 8.39 | 0.71 | 0.42
0 | 313 | 507 | 8 | 0 | 0 | 443 | 438 | 0.89 | 7.87 | 8.07 | 0.71 | 0.40
0 | 314 | 522 | 0 | 0 | 0 | 445 | 443 | 0.80 | 6.06 | 6.18 | 0.69 | 0.42
0 | 315 | 511 | 0 | 0 | 0 | 445 | 442 | 0.80 | 7.94 | 8.06 | 0.69 | 0.42
0 | 316 | 496 | 0 | 0 | 0 | 431 | 428 | 0.88 | 7.16 | 7.30 | 0.70 | 0.43
0 | 317 | 465 | 12 | 0 | 0 | 411 | 407 | 0.93 | 8.55 | 9.56 | 0.70 | 0.42
0 | 318 | 546 | 14 | 0 | 0 | 476 | 473 | 0.84 | 7.45 | 7.59 | 0.70 | 0.43
0 | 319 | 496 | 4 | 0 | 0 | 443 | 438 | 0.83 | 6.75 | 6.92 | 0.70 | 0.43
0 | 320 | 513 | 8 | 0 | 0 | 451 | 446 | 0.84 | 6.94 | 7.26 | 0.70 | 0.43
0 | 321 | 499 | 8 | 0 | 0 | 431 | 428 | 0.81 | 7.29 | 7.43 | 0.68 | 0.45
0 | 322 | 533 | 3 | 0 | 0 | 451 | 445 | 0.73 | 6.01 | 6.21 | 0.68 | 0.47
0 | 323 | 480 | 13 | 0 | 0 | 419 | 415 | 0.91 | 8.84 | 9.02 | 0.71 | 0.43
0 | 324 | 522 | 23 | 0 | 0 | 455 | 452 | 0.91 | 8.14 | 8.35 | 0.71 | 0.43
0 | 325 | 504 | 0 | 0 | 0 | 439 | 438 | 0.84 | 7.68 | 7.88 | 0.69 | 0.43
0 | 326 | 487 | 12 | 0 | 0 | 424 | 415 | 0.83 | 7.51 | 8.03 | 0.69 | 0.44
0 | 327 | 528 | 9 | 0 | 0 | 468 | 463 | 0.77 | 7.22 | 7.54 | 0.68 | 0.45
0 | 328 | 517 | 3 | 0 | 0 | 439 | 436 | 0.78 | 6.82 | 7.04 | 0.68 | 0.47
0 | 329 | 528 | 0 | 0 | 0 | 460 | 455 | 0.85 | 7.44 | 7.65 | 0.70 | 0.46
0 | 330 | 492 | 8 | 0 | 0 | 427 | 422 | 0.83 | 7.70 | 7.89 | 0.69 | 0.44
0 | 331 | 492 | 7 | 0 | 0 | 427 | 424 | 0.78 | 6.34 | 6.49 | 0.69 | 0.42
0 | 332 | 494 | 12 | 0 | 0 | 438 | 432 | 0.78 | 6.98 | 7.55 | 0.69 | 0.44
0 | 333 | 512 | 3 | 0 | 0 | 458 | 452 | 0.82 | 7.60 | 7.82 | 0.69 | 0.47
0 | 334 | 500 | 0 | 0 | 0 | 415 | 414 | 0.73 | 7.15 | 7.25 | 0.68 | 0.48
0 | 335 | 531 | 6 | 0 | 0 | 464 | 460 | 0.69 | 5.77 | 5.92 | 0.67 | 0.47
0 | 336 | 515 | 9 | 0 | 0 | 440 | 435 | 0.81 | 7.65 | 7.95 | 0.70 | 0.45
0 | 337 | 498 | 3 | 0 | 0 | 434 | 432 | 0.77 | 6.84 | 6.97 | 0.68 | 0.42
0 | 338 | 518 | 7 | 0 | 0 | 438 | 429 | 0.83 | 7.63 | 8.29 | 0.70 | 0.44
0 | 339 | 486 | 6 | 0 | 0 | 422 | 417 | 0.80 | 7.51 | 7.68 | 0.69 | 0.45
0 | 340 | 521 | 6 | 0 | 0 | 454 | 450 | 0.80 | 7.38 | 7.55 | 0.70 | 0.41
0 | 341 | 491 | 0 | 0 | 0 | 433 | 431 | 0.73 | 6.09 | 6.20 | 0.67 | 0.45
0 | 342 | 532 | 0 | 0 | 0 | 459 | 452 | 0.72 | 6.23 | 6.44 | 0.69 | 0.44
0 | 343 | 491 | 9 | 0 | 0 | 430 | 427 | 0.73 | 6.25 | 7.19 | 0.68 | 0.46
0 | 344 | 519 | 8 | 0 | 0 | 458 | 454 | 0.81 | 7.41 | 7.62 | 0.69 | 0.44
0 | 345 | 488 | 0 | 0 | 0 | 411 | 403 | 0.70 | 6.30 | 6.54 | 0.67 | 0.46
0 | 346 | 531 | 15 | 0 | 0 | 463 | 458 | 0.76 | 6.55 | 6.94 | 0.68 | 0.45
0 | 347 | 491 | 6 | 0 | 0 | 429 | 426 | 0.79 | 7.65 | 7.81 | 0.70 | 0.42
0 | 348 | 508 | 8 | 0 | 0 | 444 | 441 | 0.75 | 7.02 | 7.20 | 0.69 | 0.43
0 | 349 | 510 | 16 | 0 | 0 | 429 | 422 | 0.68 | 6.81 | 7.02 | 0.67 | 0.46
0 | 350 | 522 | 11 | 0 | 0 | 465 | 458 | 0.81 | 7.15 | 7.40 | 0.69 | 0.46
0 | 351 | 502 | 6 | 0 | 0 | 436 | 430 | 0.77 | 7.24 | 7.89 | 0.69 | 0.45
0 | 352 | 473 | 9 | 0 | 0 | 411 | 404 | 0.70 | 6.42 | 6.65 | 0.68 | 0.45
0 | 353 | 514 | 3 | 0 | 0 | 456 | 452 | 0.76 | 7.77 | 7.96 | 0.69 | 0.44
0 | 354 | 532 | 0 | 0 | 0 | 460 | 454 | 0.67 | 5.82 | 6.00 | 0.68 | 0.46
0 | 355 | 509 | 4 | 0 | 0 | 445 | 445 | 0.74 | 7.05 | 7.19 | 0.68 | 0.46
0 | 356 | 502 | 4 | 0 | 0 | 426 | 424 | 0.76 | 7.40 | 7.56 | 0.70 | 0.43
0 | 357 | 540 | 6 | 0 | 0 | 477 | 469 | 0.68 | 5.95 | 6.15 | 0.67 | 0.44
0 | 358 | 474 | 3 | 0 | 0 | 414 | 410 | 0.73 | 6.59 | 6.79 | 0.67 | 0.47
0 | 359 | 487 | 9 | 0 | 0 | 423 | 419 | 0.78 | 8.03 | 8.21 | 0.70 | 0.43
0 | 360 | 543 | 3 | 0 | 0 | 471 | 464 | 0.79 | 8.79 | 9.36 | 0.69 | 0.45
0 | 361 | 485 | 17 | 0 | 0 | 414 | 412 | 0.77 | 6.74 | 6.88 | 0.69 | 0.44
0 | 362 | 489 | 17 | 0 | 0 | 435 | 427 | 0.70 | 6.87 | 7.21 | 0.67 | 0.47
0 | 363 | 510 | 0 | 0 | 0 | 449 | 445 | 0.68 | 6.14 | 6.27 | 0.69 | 0.44
0 | 364 | 512 | 0 | 0 | 0 | 452 | 446 | 0.74 | 7.77 | 7.98 | 0.70 | 0.41
0 | 365 | 517 | 0 | 0 | 0 | 429 | 427 | 0.68 | 6.46 | 6.57 | 0.67 | 0.44
0 | 366 | 541 | 4 | 0 | 0 | 471 | 470 | 0.75 | 7.98 | 8.15 | 0.68 | 0.46
0 | 367 | 538 | 9 | 0 | 0 | 481 | 476 | 0.71 | 8.25 | 8.56 | 0.68 | 0.44
0 | 368 | 519 | 12 | 0 | 0 | 447 | 441 | 0.66 | 6.71 | 6.94 | 0.67 | 0.46
0 | 369 | 473 | 4 | 0 | 0 | 413 | 409 | 0.72 | 7.74 | 8.06 | 0.68 | 0.45
0 | 370 | 460 | 0 | 0 | 0 | 404 | 401 | 0.71 | 6.02 | 6.18 | 0.68 | 0.46
0 | 371 | 520 | 6 | 0 | 0 | 451 | 446 | 0.77 | 7.83 | 8.07 | 0.70 | 0.43
0 | 372 | 501 | 9 | 0 | 0 | 446 | 441 | 0.73 | 7.20 | 8.85 | 0.69 | 0.44
0 | 373 | 505 | 24 | 0 | 0 | 441 | 437 | 0.78 | 8.60 | 8.77 | 0.68 | 0.45
0 | 374 | 501 | 0 | 0 | 0 | 443 | 440 | 0.70 | 6.54 | 6.72 | 0.68 | 0.46
0 | 375 | 506 | 4 | 0 | 0 | 431 | 426 | 0.71 | 6.47 | 6.64 | 0.69 | 0.43
0 | 376 | 523 | 15 | 0 | 0 | 463 | 456 | 0.60 | 5.71 | 6.25 | 0.67 | 0.46
0 | 377 | 510 | 12 | 0 | 0 | 444 | 438 | 0.70 | 6.48 | 6.69 | 0.67 | 0.46
0 | 378 | 506 | 8 | 0 | 0 | 431 | 429 | 0.70 | 5.86 | 6.15 | 0.68 | 0.46
0 | 379 | 536 | 10 | 0 | 0 | 467 | 464 | 0.71 | 6.72 | 6.89 | 0.68 | 0.43
0 | 380 | 524 | 20 | 0 | 0 | 445 | 442 | 0.71 | 7.44 | 7.63 | 0.68 | 0.46
0 | 381 | 517 | 15 | 0 | 0 | 440 | 435 | 0.77 | 7.45 | 7.68 | 0.69 | 0.42
0 | 382 | 489 | 9 | 0 | 0 | 430 | 429 | 0.65 | 6.87 | 7.02 | 0.67 | 0.42
0 | 383 | 498 | 3 | 0 | 0 | 426 | 417 | 0.66 | 6.22 | 6.46 | 0.68 | 0.45
0 | 384 | 500 | 0 | 0 | 0 | 440 | 439 | 0.66 | 6.45 | 6.57 | 0.67 | 0.47
0 | 385 | 497 | 6 | 0 | 0 | 441 | 436 | 0.69 | 7.80 | 8.02 | 0.67 | 0.47
0 | 386 | 521 | 6 | 0 | 0 | 469 | 464 | 0.75 | 7.30 | 7.75 | 0.69 | 0.45
0 | 387 | 498 | 9 | 0 | 0 | 441 | 437 | 0.71 | 7.28 | 7.42 | 0.67 | 0.45
0 | 388 | 524 | 11 | 0 | 0 | 450 | 444 | 0.76 | 8.49 | 9.97 | 0.67 | 0.45
0 | 389 | 488 | 0 | 0 | 0 | 426 | 423 | 0.70 | 6.89 | 7.08 | 0.68 | 0.46
0 | 390 | 528 | 0 | 0 | 0 | 450 | 448 | 0.71 | 6.98 | 7.09 | 0.68 | 0.46
0 | 391 | 519 | 5 | 0 | 0 | 452 | 444 | 0.70 | 6.77 | 7.01 | 0.67 | 0.47
0 | 392 | 488 | 20 | 0 | 0 | 428 | 426 | 0.70 | 6.76 | 9.79 | 0.68 | 0.43
0 | 393 | 538 | 6 | 0 | 0 | 469 | 465 | 0.63 | 6.07 | 6.21 | 0.67 | 0.48
0 | 394 | 497 | 4 | 0 | 0 | 435 | 432 | 0.68 | 6.81 | 6.93 | 0.68 | 0.46
0 | 395 | 497 | 0 | 0 | 0 | 422 | 416 | 0.63 | 6.25 | 6.38 | 0.68 | 0.45
0 | 396 | 520 | 4 | 0 | 0 | 464 | 462 | 0.65 | 5.96 | 6.07 | 0.67 | 0.46
0 | 397 | 495 | 9 | 0 | 0 | 418 | 413 | 0.69 | 6.61 | 7.69 | 0.68 | 0.46
0 | 398 | 504 | 3 | 0 | 0 | 431 | 429 | 0.67 | 6.94 | 7.10 | 0.68 | 0.47
0 | 399 | 520 | 4 | 0 | 0 | 449 | 446 | 0.74 | 7.47 | 7.63 | 0.68 | 0.43
0 | 400 | 500 | 3 | 0 | 0 | 435 | 429 | 0.72 | 6.83 | 7.02 | 0.68 | 0.43
0 | 401 | 503 | 0 | 0 | 0 | 430 | 427 | 0.70 | 7.16 | 7.32 | 0.68 | 0.46
0 | 402 | 506 | 3 | 0 | 0 | 443 | 439 | 0.65 | 6.31 | 6.47 | 0.68 | 0.45
0 | 403 | 506 | 3 | 0 | 0 | 449 | 448 | 0.72 | 7.91 | 8.04 | 0.69 | 0.43
0 | 404 | 519 | 0 | 0 | 0 | 450 | 444 | 0.66 | 6.79 | 6.92 | 0.69 | 0.44
0 | 405 | 490 | 6 | 0 | 0 | 422 | 418 | 0.68 | 6.85 | 6.99 | 0.67 | 0.44
0 | 406 | 525 | 18 | 0 | 0 | 467 | 460 | 0.67 | 6.52 | 6.82 | 0.67 | 0.45
0 | 407 | 483 | 17 | 0 | 0 | 419 | 415 | 0.72 | 7.24 | 8.19 | 0.69 | 0.43
0 | 408 | 539 | 10 | 0 | 0 | 467 | 464 | 0.64 | 6.78 | 7.28 | 0.66 | 0.47
0 | 409 | 481 | 0 | 0 | 0 | 412 | 406 | 0.71 | 6.62 | 6.83 | 0.70 | 0.44
0 | 410 | 537 | 12 | 0 | 0 | 470 | 466 | 0.63 | 6.87 | 7.14 | 0.65 | 0.47
0 | 411 | 478 | 3 | 0 | 0 | 417 | 416 | 0.68 | 6.94 | 7.07 | 0.69 | 0.42
0 | 412 | 540 | 8 | 0 | 0 | 467 | 464 | 0.69 | 7.38 | 7.51 | 0.67 | 0.47
0 | 413 | 491 | 9 | 0 | 0 | 429 | 424 | 0.70 | 7.42 | 7.63 | 0.69 | 0.43
0 | 414 | 521 | 4 | 0 | 0 | 456 | 455 | 0.67 | 5.82 | 5.96 | 0.67 | 0.47
0 | 415 | 494 | 4 | 0 | 0 | 424 | 421 | 0.72 | 6.91 | 7.08 | 0.68 | 0.43
0 | 416 | 528 | 3 | 0 | 0 | 457 | 448 | 0.63 | 6.02 | 6.24 | 0.66 | 0.49
0 | 417 | 501 | 3 | 0 | 0 | 449 | 445 | 0.70 | 6.81 | 7.00 | 0.70 | 0.42
0 | 418 | 531 | 4 | 0 | 0 | 459 | 455 | 0.64 | 6.39 | 6.50 | 0.66 | 0.49
0 | 419 | 485 | 6 | 0 | 0 | 417 | 414 | 0.73 | 7.66 | 7.86 | 0.69 | 0.44
0 | 420 | 532 | 4 | 0 | 0 | 459 | 456 | 0.65 | 5.93 | 6.06 | 0.67 | 0.46
0 | 421 | 496 | 0 | 0 | 0 | 424 | 421 | 0.70 | 6.77 | 6.89 | 0.69 | 0.44
0 | 422 | 508 | 0 | 0 | 0 | 434 | 430 | 0.71 | 6.84 | 7.01 | 0.67 | 0.47
0 | 423 | 514 | 6 | 0 | 0 | 444 | 442 | 0.68 | 7.37 | 7.56 | 0.69 | 0.45
0 | 424 | 493 | 0 | 0 | 0 | 428 | 426 | 0.71 | 7.16 | 7.34 | 0.69 | 0.44
0 | 425 | 527 | 16 | 0 | 0 | 466 | 462 | 0.68 | 6.88 | 7.02 | 0.69 | 0.45
0 | 426 | 505 | 3 | 0 | 0 | 442 | 435 | 0.70 | 7.02 | 7.27 | 0.68 | 0.46
0 | 427 | 495 | 9 | 0 | 0 | 426 | 419 | 0.65 | 6.36 | 6.63 | 0.68 | 0.44
0 | 428 | 500 | 0 | 0 | 0 | 428 | 422 | 0.70 | 6.85 | 7.06 | 0.69 | 0.44
0 | 429 | 504 | 0 | 0 | 0 | 444 | 440 | 0.67 | 6.04 | 6.25 | 0.68 | 0.46
0 | 430 | 533 | 0 | 0 | 0 | 459 | 451 | 0.75 | 8.86 | 9.18 | 0.70 | 0.42
0 | 431 | 477 | 3 | 0 | 0 | 420 | 418 | 0.62 | 6.24 | 6.33 | 0.68 | 0.44
0 | 432 | 525 | 6 | 0 | 0 | 461 | 457 | 0.68 | 6.50 | 6.96 | 0.69 | 0.46
0 | 433 | 521 | 3 | 0 | 0 | 442 | 439 | 0.67 | 6.33 | 6.50 | 0.68 | 0.44
0 | 434 | 486 | 14 | 0 | 0 | 427 | 425 | 0.63 | 5.69 | 5.83 | 0.67 | 0.46
0 | 435 | 521 | 3 | 0 | 0 | 458 | 458 | 0.66 | 6.81 | 6.94 | 0.69 | 0.45
0 | 436 | 496 | 0 | 0 | 0 | 421 | 417 | 0.69 | 6.75 | 6.97 | 0.68 | 0.45
0 | 437 | 515 | 18 | 0 | 0 | 447 | 442 | 0.66 | 6.52 | 6.85 | 0.68 | 0.45
0 | 438 | 529 | 0 | 0 | 0 | 465 | 457 | 0.68 | 6.82 | 7.10 | 0.67 | 0.45
0 | 439 | 503 | 0 | 0 | 0 | 438 | 433 | 0.72 | 7.16 | 7.39 | 0.69 | 0.41
0 | 440 | 509 | 18 | 0 | 0 | 440 | 436 | 0.71 | 7.19 | 7.39 | 0.68 | 0.46
0 | 441 | 507 | 3 | 0 | 0 | 440 | 433 | 0.68 | 6.71 | 7.05 | 0.68 | 0.43
0 | 442 | 504 | 3 | 0 | 0 | 428 | 424 | 0.73 | 6.68 | 6.92 | 0.70 | 0.43
0 | 443 | 514 | 0 | 0 | 0 | 433 | 433 | 0.67 | 6.91 | 7.05 | 0.68 | 0.45
0 | 444 | 487 | 0 | 0 | 0 | 411 | 408 | 0.64 | 6.84 | 6.99 | 0.69 | 0.42
0 | 445 | 511 | 4 | 0 | 0 | 443 | 438 | 0.66 | 6.20 | 6.41 | 0.69 | 0.43
0 | 446 | 478 | 17 | 0 | 0 | 414 | 410 | 0.63 | 6.14 | 6.26 | 0.68 | 0.43
0 | 447 | 547 | 3 | 0 | 0 | 483 | 478 | 0.77 | 8.27 | 8.50 | 0.70 | 0.45
0 | 448 | 500 | 7 | 0 | 0 | 428 | 421 | 0.70 | 6.36 | 6.58 | 0.69 | 0.45
0 | 449 | 491 | 4 | 0 | 0 | 423 | 422 | 0.74 | 7.05 | 7.25 | 0.69 | 0.43
0 | 450 | 537 | 12 | 0 | 0 | 463 | 461 | 0.64 | 6.32 | 6.46 | 0.68 | 0.43
0 | 451 | 520 | 18 | 0 | 0 | 460 | 454 | 0.71 | 7.39 | 7.66 | 0.69 | 0.42
0 | 452 | 518 | 29 | 0 | 0 | 458 | 449 | 0.58 | 5.32 | 5.56 | 0.67 | 0.44
0 | 453 | 501 | 9 | 0 | 0 | 448 | 440 | 0.62 | 5.77 | 6.03 | 0.69 | 0.45
0 | 454 | 517 | 0 | 0 | 0 | 446 | 443 | 0.71 | 6.34 | 6.53 | 0.69 | 0.43
0 | 455 | 514 | 10 | 0 | 0 | 443 | 437 | 0.70 | 6.44 | 6.66 | 0.69 | 0.45
0 | 456 | 462 | 12 | 0 | 0 | 405 | 401 | 0.74 | 7.50 | 7.71 | 0.70 | 0.42
0 | 457 | 536 | 15 | 0 | 0 | 465 | 465 | 0.73 | 7.32 | 7.47 | 0.70 | 0.44
0 | 458 | 469 | 6 | 0 | 0 | 409 | 405 | 0.69 | 6.52 | 6.74 | 0.69 | 0.46
0 | 459 | 469 | 3 | 0 | 0 | 409 | 406 | 0.68 | 6.73 | 6.98 | 0.68 | 0.44
0 | 460 | 508 | 0 | 0 | 0 | 439 | 432 | 0.65 | 6.14 | 6.34 | 0.69 | 0.43
0 | 461 | 543 | 14 | 0 | 0 | 463 | 460 | 0.72 | 6.42 | 6.75 | 0.69 | 0.42
0 | 462 | 539 | 14 | 0 | 0 | 478 | 471 | 0.67 | 6.84 | 7.08 | 0.67 | 0.46
0 | 463 | 527 | 0 | 0 | 0 | 450 | 446 | 0.68 | 6.37 | 6.62 | 0.68 | 0.46
0 | 464 | 509 | 8 | 0 | 0 | 449 | 444 | 0.72 | 6.95 | 7.18 | 0.69 | 0.42
0 | 465 | 516 | 0 | 0 | 0 | 453 | 450 | 0.69 | 7.48 | 7.67 | 0.68 | 0.43
0 | 466 | 520 | 8 | 0 | 0 | 446 | 445 | 0.66 | 6.62 | 6.82 | 0.68 | 0.45
0 | 467 | 452 | 8 | 0 | 0 | 389 | 385 | 0.74 | 7.21 | 7.47 | 0.69 | 0.43
0 | 468 | 557 | 22 | 0 | 0 | 485 | 483 | 0.73 | 6.65 | 6.82 | 0.70 | 0.42
0 | 469 | 490 | 0 | 0 | 0 | 424 | 420 | 0.77 | 7.74 | 7.93 | 0.70 | 0.41
0 | 470 | 448 | 0 | 0 | 0 | 389 | 389 | 0.68 | 5.80 | 5.95 | 0.69 | 0.42
0 | 471 | 503 | 12 | 0 | 0 | 435 | 431 | 0.65 | 6.30 | 6.55 | 0.67 | 0.44
0 | 472 | 576 | 9 | 0 | 0 | 507 | 503 | 0.69 | 6.85 | 7.78 | 0.69 | 0.42
0 | 473 | 494 | 13 | 0 | 0 | 442 | 437 | 0.65 | 5.54 | 5.80 | 0.69 | 0.44
0 | 474 | 535 | 0 | 0 | 0 | 463 | 462 | 0.67 | 6.54 | 6.68 | 0.68 | 0.44
0 | 475 | 498 | 4 | 0 | 0 | 420 | 413 | 0.71 | 6.98 | 7.87 | 0.69 | 0.48
0 | 476 | 501 | 12 | 0 | 0 | 428 | 424 | 0.72 | 6.75 | 6.97 | 0.69 | 0.44
0 | 477 | 498 | 16 | 0 | 0 | 444 | 441 | 0.74 | 7.23 | 8.64 | 0.70 | 0.44
0 | 478 | 519 | 3 | 0 | 0 | 459 | 453 | 0.77 | 7.28 | 7.55 | 0.69 | 0.45
0 | 479 | 465 | 0 | 0 | 0 | 407 | 405 | 0.74 | 6.53 | 6.68 | 0.69 | 0.45
0 | 480 | 497 | 16 | 0 | 0 | 431 | 429 | 0.66 | 5.73 | 5.89 | 0.67 | 0.45
0 | 481 | 557 | 3 | 0 | 0 | 486 | 484 | 0.74 | 6.30 | 6.57 | 0.69 | 0.45
0 | 482 | 509 | 6 | 0 | 0 | 430 | 427 | 0.67 | 5.49 | 6.33 | 0.67 | 0.45
0 | 483 | 511 | 11 | 0 | 0 | 456 | 451 | 0.69 | 6.61 | 6.87 | 0.67 | 0.46
0 | 484 | 513 | 3 | 0 | 0 | 441 | 435 | 0.77 | 6.93 | 7.20 | 0.69 | 0.44
0 | 485 | 507 | 6 | 0 | 0 | 448 | 446 | 0.71 | 6.44 | 6.61 | 0.70 | 0.46
0 | 486 | 503 | 0 | 0 | 0 | 443 | 439 | 0.66 | 5.74 | 5.93 | 0.70 | 0.45
0 | 487 | 467 | 14 | 0 | 0 | 406 | 405 | 0.75 | 6.77 | 6.93 | 0.68 | 0.46
0 | 488 | 506 | 6 | 0 | 0 | 437 | 434 | 0.67 | 6.11 | 6.31 | 0.67 | 0.46
0 | 489 | 510 | 5 | 0 | 0 | 439 | 438 | 0.71 | 5.64 | 5.77 | 0.70 | 0.43
0 | 490 | 547 | 0 | 0 | 0 | 467 | 461 | 0.74 | 6.92 | 7.14 | 0.69 | 0.43
0 | 491 | 502 | 6 | 0 | 0 | 438 | 433 | 0.68 | 6.23 | 6.42 | 0.67 | 0.45
0 | 492 | 501 | 6 | 0 | 0 | 439 | 433 | 0.78 | 7.49 | 7.94 | 0.70 | 0.44
0 | 493 | 502 | 13 | 0 | 0 | 448 | 442 | 0.72 | 6.13 | 6.48 | 0.70 | 0.42
0 | 494 | 520 | 6 | 0 | 0 | 452 | 445 | 0.75 | 7.41 | 7.67 | 0.70 | 0.42
0 | 495 | 473 | 10 | 0 | 0 | 408 | 405 | 0.69 | 5.64 | 5.77 | 0.68 | 0.46
0 | 496 | 539 | 12 | 0 | 0 | 481 | 476 | 0.73 | 6.09 | 6.31 | 0.68 | 0.44
0 | 497 | 516 | 26 | 0 | 0 | 452 | 444 | 0.74 | 6.73 | 7.03 | 0.69 | 0.44
0 | 498 | 496 | 7 | 0 | 0 | 435 | 434 | 0.69 | 5.55 | 5.71 | 0.68 | 0.44
0 | 499 | 517 | 5 | 0 | 0 | 437 | 433 | 0.73 | 6.19 | 6.35 | 0.67 | 0.45
0 | 500 | 520 | 3 | 0 | 0 | 458 | 453 | 0.77 | 7.09 | 7.28 | 0.70 | 0.41
0 | 501 | 489 | 3 | 0 | 0 | 433 | 428 | 0.74 | 6.03 | 6.27 | 0.69 | 0.44
0 | 502 | 496 | 12 | 0 | 0 | 433 | 427 | 0.76 | 7.42 | 10.24 | 0.68 | 0.46
0 | 503 | 478 | 3 | 0 | 0 | 414 | 411 | 0.72 | 5.74 | 5.93 | 0.69 | 0.45
0 | 504 | 550 | 0 | 0 | 0 | 495 | 493 | 0.76 | 6.65 | 6.77 | 0.69 | 0.44
0 | 505 | 497 | 17 | 0 | 0 | 432 | 426 | 0.73 | 7.08 | 7.35 | 0.68 | 0.48
0 | 506 | 500 | 3 | 0 | 0 | 439 | 433 | 0.77 | 7.71 | 7.96 | 0.70 | 0.43
0 | 507 | 539 | 12 | 0 | 0 | 478 | 473 | 0.83 | 7.35 | 7.87 | 0.70 | 0.43
0 | 508 | 488 | 0 | 0 | 0 | 422 | 416 | 0.76 | 6.65 | 6.92 | 0.69 | 0.42
0 | 509 | 513 | 4 | 0 | 0 | 446 | 443 | 0.80 | 6.41 | 6.62 | 0.70 | 0.43
0 | 510 | 484 | 4 | 0 | 0 | 426 | 422 | 0.74 | 6.21 | 6.49 | 0.68 | 0.44
0 | 511 | 522 | 0 | 0 | 0 | 463 | 460 | 0.72 | 5.57 | 5.77 | 0.68 | 0.44
0 | 512 | 511 | 0 | 0 | 0 | 437 | 435 | 0.79 | 6.51 | 6.70 | 0.68 | 0.43
0 | 513 | 533 | 3 | 0 | 0 | 465 | 461 | 0.80 | 6.55 | 6.79 | 0.69 | 0.43
0 | 514 | 490 | 3 | 0 | 0 | 439 | 435 | 0.79 | 6.50 | 6.69 | 0.70 | 0.43
0 | 515 | 491 | 3 | 0 | 0 | 429 | 422 | 0.81 | 7.00 | 7.34 | 0.69 | 0.41
0 | 516 | 524 | 11 | 0 | 0 | 439 | 437 | 0.82 | 6.58 | 8.12 | 0.70 | 0.43
0 | 517 | 500 | 9 | 0 | 0 | 448 | 445 | 0.82 | 7.29 | 7.48 | 0.69 | 0.44
0 | 518 | 532 | 6 | 0 | 0 | 474 | 469 | 0.81 | 7.17 | 7.77 | 0.68 | 0.45
0 | 519 | 505 | 9 | 0 | 0 | 417 | 409 | 0.81 | 7.00 | 7.23 | 0.70 | 0.41
0 | 520 | 519 | 13 | 0 | 0 | 444 | 441 | 0.83 | 6.63 | 6.78 | 0.70 | 0.44
0 | 521 | 481 | 5 | 0 | 0 | 407 | 402 | 0.78 | 6.49 | 6.70 | 0.69 | 0.43
0 | 522 | 502 | 12 | 0 | 0 | 447 | 441 | 0.79 | 6.00 | 6.20 | 0.70 | 0.44
0 | 523 | 519 | 6 | 0 | 0 | 451 | 448 | 0.83 | 6.35 | 6.53 | 0.70 | 0.43
0 | 524 | 519 | 3 | 0 | 0 | 458 | 453 | 0.83 | 5.95 | 6.16 | 0.70 | 0.44
0 | 525 | 514 | 0 | 0 | 0 | 451 | 446 | 0.80 | 6.76 | 6.96 | 0.70 | 0.44
0 | 526 | 491 | 0 | 0 | 0 | 427 | 425 | 0.78 | 6.06 | 6.18 | 0.70 | 0.43
0 | 527 | 499 | 9 | 0 | 0 | 434 | 428 | 0.87 | 6.57 | 6.99 | 0.71 | 0.44
0 | 528 | 509 | 15 | 0 | 0 | 461 | 458 | 0.85 | 7.07 | 7.36 | 0.69 | 0.44
0 | 529 | 513 | 0 | 0 | 0 | 440 | 435 | 0.76 | 6.25 | 6.42 | 0.69 | 0.46
0 | 530 | 517 | 8 | 0 | 0 | 453 | 446 | 0.86 | 6.46 | 6.68 | 0.71 | 0.41
0 | 531 | 518 | 6 | 0 | 0 | 461 | 459 | 0.88 | 7.44 | 7.63 | 0.71 | 0.40
0 | 532 | 507 | 6 | 0 | 0 | 443 | 438 | 0.85 | 6.31 | 7.35 | 0.69 | 0.45
0 | 533 | 483 | 12 | 0 | 0 | 422 | 420 | 0.87 | 7.16 | 7.35 | 0.70 | 0.41
0 | 534 | 516 | 4 | 0 | 0 | 438 | 433 | 0.83 | 6.74 | 6.89 | 0.70 | 0.43
0 | 535 | 498 | 3 | 0 | 0 | 437 | 431 | 0.88 | 6.88 | 7.19 | 0.70 | 0.41
0 | 536 | 513 | 3 | 0 | 0 | 442 | 438 | 0.83 | 6.35 | 6.49 | 0.70 | 0.40
0 | 537 | 506 | 9 | 0 | 0 | 438 | 432 | 0.81 | 6.40 | 7.16 | 0.71 | 0.42
0 | 538 | 509 | 0 | 0 | 0 | 439 | 435 | 0.89 | 7.18 | 7.33 | 0.69 | 0.43
0 | 539 | 503 | 0 | 0 | 0 | 435 | 434 | 0.91 | 6.48 | 6.63 | 0.70 | 0.42
0 | 540 | 516 | 24 | 0 | 0 | 442 | 439 | 0.90 | 6.57 | 6.74 | 0.71 | 0.42
0 | 541 | 518 | 10 | 0 | 0 | 447 | 443 | 0.91 | 7.73 | 7.99 | 0.70 | 0.41
0 | 542 | 497 | 24 | 0 | 0 | 436 | 431 | 0.85 | 5.96 | 6.56 | 0.70 | 0.44
0 | 543 | 508 | 12 | 0 | 0 | 443 | 436 | 0.90 | 6.77 | 7.05 | 0.71 | 0.44
0 | 544 | 516 | 30 | 0 | 0 | 449 | 448 | 0.95 | 6.65 | 6.77 | 0.70 | 0.43
0 | 545 | 493 | 0 | 0 | 0 | 423 | 420 | 0.87 | 6.10 | 6.22 | 0.70 | 0.41
0 | 546 | 527 | 3 | 0 | 0 | 453 | 450 | 0.91 | 6.84 | 7.17 | 0.70 | 0.40
0 | 547 | 470 | 12 | 0 | 0 | 412 | 409 | 0.89 | 6.42 | 6.61 | 0.70 | 0.42
0 | 548 | 512 | 0 | 0 | 0 | 450 | 444 | 0.93 | 7.03 | 7.21 | 0.71 | 0.42
0 | 549 | 524 | 7 | 0 | 0 | 448 | 444 | 0.95 | 8.51 | 8.67 | 0.71 | 0.40
0 | 550 | 503 | 3 | 0 | 0 | 440 | 438 | 0.99 | 6.84 | 6.99 | 0.71 | 0.40
0 | 551 | 532 | 10 | 0 | 0 | 468 | 460 | 0.90 | 6.41 | 6.78 | 0.71 | 0.45
0 | 552 | 504 | 14 | 0 | 0 | 437 | 432 | 0.90 | 6.19 | 6.79 | 0.72 | 0.42
0 | 553 | 491 | 0 | 0 | 0 | 432 | 432 | 0.93 | 6.88 | 7.02 | 0.71 | 0.40
0 | 554 | 522 | 0 | 0 | 0 | 448 | 444 | 1.06 | 8.46 | 8.66 | 0.72 | 0.41
0 | 555 | 502 | 0 | 0 | 0 | 430 | 429 | 1.01 | 7.56 | 7.72 | 0.72 | 0.42
0 | 556 | 498 | 8 | 0 | 0 | 432 | 430 | 1.01 | 7.44 | 7.55 | 0.72 | 0.39
0 | 557 | 509 | 15 | 0 | 0 | 435 | 428 | 0.89 | 6.67 | 6.92 | 0.72 | 0.41
0 | 558 | 506 | 3 | 0 | 0 | 424 | 422 | 0.97 | 6.86 | 7.03 | 0.71 | 0.41
0 | 559 | 504 | 3 | 0 | 0 | 452 | 450 | 0.96 | 7.13 | 7.24 | 0.72 | 0.40
0 | 560 | 506 | 3 | 0 | 0 | 448 | 446 | 0.98 | 6.85 | 6.99 | 0.73 | 0.40
0 | 561 | 530 | 6 | 0 | 0 | 459 | 455 | 1.03 | 6.93 | 7.12 | 0.73 | 0.41
0 | 562 | 502 | 12 | 0 | 0 | 437 | 425 | 1.06 | 8.07 | 8.64 | 0.72 | 0.44
0 | 563 | 497 | 0 | 0 | 0 | 433 | 431 | 1.00 | 6.56 | 6.69 | 0.72 | 0.42
0 | 564 | 509 | 5 | 0 | 0 | 445 | 440 | 1.00 | 7.18 | 7.41 | 0.72 | 0.40
0 | 565 | 535 | 3 | 0 | 0 | 472 | 469 | 0.98 | 6.43 | 6.55 | 0.73 | 0.41
0 | 566 | 463 | 3 | 0 | 0 | 404 | 401 | 1.09 | 7.65 | 7.97 | 0.72 | 0.41
0 | 567 | 507 | 3 | 0 | 0 | 436 | 432 | 1.05 | 7.02 | 7.94 | 0.72 | 0.42
0 | 568 | 510 | 3 | 0 | 0 | 439 | 433 | 1.06 | 7.65 | 7.86 | 0.73 | 0.42
0 | 569 | 528 | 0 | 0 | 0 | 453 | 450 | 1.14 | 8.31 | 8.53 | 0.73 | 0.42
0 | 570 | 494 | 8 | 0 | 0 | 435 | 426 | 1.09 | 6.95 | 7.22 | 0.73 | 0.43
0 | 571 | 531 | 9 | 0 | 0 | 447 | 442 | 1.02 | 6.17 | 6.38 | 0.73 | 0.42
0 | 572 | 496 | 9 | 0 | 0 | 446 | 439 | 1.17 | 7.73 | 8.35 | 0.74 | 0.41
0 | 573 | 499 | 3 | 0 | 0 | 415 | 408 | 1.05 | 6.27 | 6.50 | 0.73 | 0.41
0 | 574 | 503 | 3 | 0 | 0 | 434 | 430 | 1.20 | 8.25 | 8.46 | 0.74 | 0.40
0 | 575 | 502 | 7 | 0 | 0 | 451 | 446 | 1.06 | 6.46 | 6.65 | 0.73 | 0.43
0 | 576 | 515 | 0 | 0 | 0 | 438 | 435 | 1.13 | 7.18 | 7.37 | 0.73 | 0.41
0 | 577 | 494 | 12 | 0 | 0 | 423 | 415 | 1.16 | 7.35 | 7.65 | 0.73 | 0.42
0 | 578 | 529 | 3 | 0 | 0 | 470 | 467 | 1.20 | 7.06 | 7.32 | 0.74 | 0.41
0 | 579 | 481 | 8 | 0 | 0 | 420 | 416 | 1.07 | 6.11 | 6.34 | 0.72 | 0.43
0 | 580 | 535 | 0 | 0 | 0 | 465 | 459 | 1.26 | 8.21 | 8.49 | 0.75 | 0.39
0 | 581 | 498 | 13 | 0 | 0 | 436 | 431 | 1.23 | 8.47 | 8.83 | 0.74 | 0.41
0 | 582 | 500 | 0 | 0 | 0 | 431 | 426 | 1.20 | 7.55 | 7.75 | 0.75 | 0.39
0 | 583 | 525 | 0 | 0 | 0 | 443 | 439 | 1.27 | 7.82 | 8.04 | 0.74 | 0.40
0 | 584 | 501 | 4 | 0 | 0 | 439 | 436 | 1.31 | 7.32 | 7.46 | 0.76 | 0.41
0 | 585 | 517 | 4 | 0 | 0 | 443 | 441 | 1.17 | 6.49 | 6.65 | 0.74 | 0.43
0 | 586 | 495 | 9 | 0 | 0 | 440 | 434 | 1.35 | 8.45 | 8.68 | 0.76 | 0.39
0 | 587 | 511 | 5 | 0 | 0 | 443 | 441 | 1.25 | 7.94 | 8.08 | 0.75 | 0.39
0 | 588 | 507 | 3 | 0 | 0 | 444 | 441 | 1.35 | 8.48 | 8.64 | 0.76 | 0.41
0 | 589 | 507 | 0 | 0 | 0 | 451 | 445 | 1.30 | 7.76 | 7.98 | 0.75 | 0.40
0 | 590 | 507 | 7 | 0 | 0 | 446 | 443 | 1.28 | 6.65 | 6.83 | 0.75 | 0.40
0 | 591 | 494 | 0 | 0 | 0 | 430 | 427 | 1.34 | 8.32 | 8.54 | 0.76 | 0.41
0 | 592 | 524 | 6 | 0 | 0 | 447 | 441 | 1.42 | 8.28 | 8.51 | 0.77 | 0.38
0 | 593 | 508 | 3 | 0 | 0 | 442 | 437 | 1.29 | 7.23 | 7.41 | 0.75 | 0.40
0 | 594 | 523 | 3 | 0 | 0 | 446 | 441 | 1.36 | 7.08 | 7.33 | 0.76 | 0.40
0 | 595 | 484 | 7 | 0 | 0 | 425 | 420 | 1.33 | 6.93 | 7.32 | 0.75 | 0.40
0 | 596 | 503 | 6 | 0 | 0 | 440 | 438 | 1.53 | 9.92 | 10.11 | 0.77 | 0.38
0 | 597 | 501 | 9 | 0 | 0 | 444 | 440 | 1.45 | 7.90 | 8.17 | 0.76 | 0.39
0 | 598 | 515 | 21 | 0 | 0 | 453 | 444 | 1.34 | 6.22 | 6.73 | 0.76 | 0.40
0 | 599 | 514 | 4 | 0 | 0 | 465 | 460 | 1.34 | 8.47 | 9.46 | 0.76 | 0.39
0 | 600 | 527 | 0 | 0 | 0 | 460 | 457 | 1.52 | 9.40 | 9.60 | 0.77 | 0.39
0 | 601 | 483 | 6 | 0 | 0 | 418 | 418 | 1.35 | 8.35 | 8.42 | 0.76 | 0.39
0 | 602 | 512 | 3 | 0 | 0 | 450 | 448 | 1.59 | 9.03 | 9.35 | 0.77 | 0.40
0 | 603 | 517 | 11 | 0 | 0 | 439 | 436 | 1.39 | 7.71 | 7.89 | 0.76 | 0.40
0 | 604 | 510 | 10 | 0 | 0 | 434 | 429 | 1.50 | 7.06 | 7.27 | 0.77 | 0.40
0 | 605 | 510 | 0 | 0 | 0 | 443 | 438 | 1.38 | 7.30 | 7.54 | 0.76 | 0.40
0 | 606 | 509 | 5 | 0 | 0 | 441 | 436 | 1.43 | 8.47 | 8.68 | 0.77 | 0.39
0 | 607 | 491 | 6 | 0 | 0 | 419 | 417 | 1.49 | 8.26 | 10.22 | 0.77 | 0.38
0 | 608 | 524 | 3 | 0 | 0 | 459 | 453 | 1.54 | 8.14 | 8.50 | 0.77 | 0.40
0 | 609 | 489 | 4 | 0 | 0 | 432 | 426 | 1.47 | 9.27 | 9.60 | 0.76 | 0.39
0 | 610 | 525 | 18 | 0 | 0 | 457 | 450 | 1.42 | 8.11 | 8.33 | 0.76 | 0.40
0 | 611 | 490 | 0 | 0 | 0 | 424 | 420 | 1.34 | 6.30 | 6.47 | 0.76 | 0.39
0 | 612 | 488 | 20 | 0 | 0 | 433 | 431 | 1.39 | 7.40 | 7.64 | 0.76 | 0.37
0 | 613 | 521 | 0 | 0 | 0 | 455 | 454 | 1.50 | 8.32 | 8.49 | 0.76 | 0.40
0 | 614 | 493 | 4 | 0 | 0 | 438 | 433 | 1.41 | 7.23 | 7.44 | 0.76 | 0.39
0 | 615 | 525 | 12 | 0 | 0 | 454 | 452 | 1.39 | 7.89 | 8.20 | 0.76 | 0.38
0 | 616 | 524 | 0 | 0 | 0 | 447 | 443 | 1.45 | 8.35 | 8.57 | 0.76 | 0.40
0 | 617 | 498 | 6 | 0 | 0 | 429 | 424 | 1.38 | 7.85 | 9.45 | 0.76 | 0.39
0 | 618 | 526 | 3 | 0 | 0 | 462 | 458 | 1.45 | 8.21 | 8.45 | 0.76 | 0.39
0 | 619 | 503 | 6 | 0 | 0 | 432 | 428 | 1.37 | 8.09 | 8.29 | 0.76 | 0.39
0 | 620 | 484 | 0 | 0 | 0 | 421 | 415 | 1.37 | 7.28 | 7.59 | 0.76 | 0.39
0 | 621 | 502 | 3 | 0 | 0 | 433 | 432 | 1.31 | 7.10 | 7.37 | 0.76 | 0.41
0 | 622 | 513 | 12 | 0 | 0 | 450 | 447 | 1.33 | 7.64 | 7.96 | 0.75 | 0.40
0 | 623 | 498 | 3 | 0 | 0 | 425 | 421 | 1.38 | 8.81 | 9.14 | 0.76 | 0.39
0 | 624 | 504 | 0 | 0 | 0 | 434 | 432 | 1.27 | 8.43 | 8.55 | 0.75 | 0.41
0 | 625 | 528 | 13 | 0 | 0 | 452 | 448 | 1.30 | 6.99 | 7.16 | 0.75 | 0.40
0 | 626 | 518 | 28 | 0 | 0 | 443 | 436 | 1.44 | 9.34 | 9.65 | 0.76 | 0.39
0 | 627 | 509 | 0 | 0 | 0 | 440 | 439 | 1.35 | 8.45 | 8.59 | 0.76 | 0.40
0 | 628 | 504 | 0 | 0 | 0 | 439 | 436 | 1.27 | 8.97 | 9.17 | 0.74 | 0.41
0 | 629 | 512 | 0 | 0 | 0 | 442 | 436 | 1.33 | 7.62 | 7.89 | 0.75 | 0.39
0 | 630 | 515 | 9 | 0 | 0 | 437 | 436 | 1.13 | 6.47 | 6.56 | 0.75 | 0.38
0 | 631 | 517 | 10 | 0 | 0 | 457 | 453 | 1.23 | 9.62 | 9.84 | 0.74 | 0.41
0 | 632 | 480 | 11 | 0 | 0 | 429 | 424 | 1.20 | 8.05 | 11.05 | 0.74 | 0.43
0 | 633 | 510 | 5 | 0 | 0 | 446 | 446 | 1.24 | 7.73 | 7.85 | 0.74 | 0.41
0 | 634 | 480 | 17 | 0 | 0 | 410 | 403 | 1.28 | 9.64 | 9.86 | 0.74 | 0.40
0 | 635 | 526 | 6 | 0 | 0 | 447 | 442 | 1.15 | 7.33 | 7.49 | 0.74 | 0.43
0 | 636 | 515 | 3 | 0 | 0 | 459 | 453 | 1.11 | 7.79 | 8.02 | 0.73 | 0.42
0 | 637 | 491 | 3 | 0 | 0 | 421 | 415 | 1.15 | 8.37 | 8.56 | 0.74 | 0.43
0 | 638 | 536 | 3 | 0 | 0 | 458 | 451 | 1.15 | 6.92 | 7.14 | 0.73 | 0.41
0 | 639 | 502 | 21 | 0 | 0 | 451 | 445 | 1.28 | 9.49 | 9.71 | 0.74 | 0.41
0 | 640 | 476 | 4 | 0 | 0 | 421 | 418 | 1.04 | 7.72 | 7.82 | 0.73 | 0.43
0 | 641 | 529 | 17 | 0 | 0 | 459 | 457 | 1.05 | 7.67 | 7.81 | 0.72 | 0.44
0 | 642 | 496 | 12 | 0 | 0 | 426 | 419 | 1.07 | 7.05 | 7.54 | 0.72 | 0.43
0 | 643 | 522 | 0 | 0 | 0 | 459 | 452 | 1.14 | 7.29 | 7.56 | 0.73 | 0.41
0 | 644 | 508 | 19 | 0 | 0 | 434 | 429 | 1.17 | 7.44 | 7.69 | 0.74 | 0.42
0 | 645 | 489 | 8 | 0 | 0 | 427 | 422 | 1.03 | 7.00 | 7.19 | 0.73 | 0.42
0 | 646 | 531 | 7 | 0 | 0 | 454 | 452 | 1.05 | 7.72 | 7.84 | 0.72 | 0.44
0 | 647 | 483 | 6 | 0 | 0 | 418 | 416 | 1.01 | 7.03 | 7.28 | 0.72 | 0.42
0 | 648 | 504 | 3 | 0 | 0 | 450 | 446 | 1.05 | 8.01 | 8.20 | 0.72 | 0.43
0 | 649 | 494 | 14 | 0 | 0 | 426 | 423 | 1.08 | 7.39 | 7.58 | 0.72 | 0.43
0 | 650 | 521 | 4 | 0 | 0 | 464 | 461 | 1.06 | 8.34 | 8.47 | 0.73 | 0.42
0 | 651 | 507 | 4 | 0 | 0 | 433 | 428 | 1.01 | 8.59 | 8.78 | 0.70 | 0.43
0 | 652 | 503 | 15 | 0 | 0 | 433 | 429 | 1.05 | 7.94 | 8.10 | 0.72 | 0.41
0 | 653 | 521 | 9 | 0 | 0 | 455 | 450 | 0.98 | 7.44 | 8.70 | 0.72 | 0.42
0 | 654 | 492 | 6 | 0 | 0 | 431 | 429 | 0.96 | 6.82 | 7.02 | 0.71 | 0.43
0 | 655 | 496 | 0 | 0 | 0 | 429 | 426 | 1.00 | 7.37 | 7.51 | 0.71 | 0.41
0 | 656 | 518 | 6 | 0 | 0 | 445 | 436 | 0.94 | 6.87 | 7.17 | 0.71 | 0.41
0 | 657 | 517 | 3 | 0 | 0 | 450 | 447 | 1.01 | 7.90 | 8.27 | 0.72 | 0.42
0 | 658 | 517 | 3 | 0 | 0 | 451 | 445 | 1.01 | 9.17 | 9.68 | 0.72 | 0.41
0 | 659 | 480 | 6 | 0 | 0 | 410 | 408 | 0.94 | 8.24 | 8.38 | 0.71 | 0.41
0 | 660 | 534 | 6 | 0 | 0 | 481 | 479 | 0.99 | 8.43 | 8.55 | 0.72 | 0.43
0 | 661 | 512 | 0 | 0 | 0 | 441 | 439 | 0.83 | 5.67 | 5.81 | 0.70 | 0.44
0 | 662 | 511 | 6 | 0 | 0 | 457 | 447 | 0.98 | 8.31 | 8.85 | 0.70 | 0.43
0 | 663 | 484 | 3 | 0 | 0 | 418 | 416 | 0.95 | 7.50 | 7.67 | 0.70 | 0.41
0 | 664 | 528 | 3 | 0 | 0 | 458 | 454 | 0.97 | 7.29 | 7.46 | 0.70 | 0.43
0 | 665 | 506 | 6 | 0 | 0 | 443 | 440 | 0.87 | 6.55 | 7.09 | 0.71 | 0.45
0 | 666 | 509 | 6 | 0 | 0 | 457 | 452 | 0.90 | 6.76 | 6.92 | 0.71 | 0.43
0 | 667 | 491 | 11 | 0 | 0 | 422 | 415 | 0.99 | 8.48 | 8.76 | 0.70 | 0.45
0 | 668 | 518 | 18 | 0 | 0 | 456 | 450 | 0.81 | 6.25 | 7.13 | 0.70 | 0.44
0 | 669 | 510 | 0 | 0 | 0 | 436 | 434 | 0.87 | 6.97 | 7.09 | 0.70 | 0.44
0 | 670 | 480 | 11 | 0 | 0 | 417 | 416 | 0.93 | 8.55 | 8.63 | 0.70 | 0.41
0 | 671 | 504 | 19 | 0 | 0 | 455 | 452 | 0.91 | 7.27 | 7.42 | 0.71 | 0.43
0 | 672 | 533 | 16 | 0 | 0 | 476 | 469 | 0.93 | 7.63 | 7.91 | 0.70 | 0.43
0 | 673 | 504 | 5 | 0 | 0 | 433 | 428 | 0.87 | 7.88 | 8.12 | 0.70 | 0.42
0 | 674 | 527 | 10 | 0 | 0 | 466 | 459 | 0.87 | 7.26 | 7.49 | 0.69 | 0.43
0 | 675 | 496 | 21 | 0 | 0 | 424 | 422 | 0.79 | 7.26 | 7.39 | 0.69 | 0.43
0 | 676 | 500 | 14 | 0 | 0 | 435 | 431 | 0.89 | 7.92 | 8.07 | 0.70 | 0.42
0 | 677 | 470 | 6 | 0 | 0 | 404 | 400 | 0.92 | 8.22 | 8.42 | 0.70 | 0.43
0 | 678 | 541 | 7 | 0 | 0 | 467 | 464 | 0.88 | 7.47 | 7.62 | 0.71 | 0.44
0 | 679 | 500 | 8 | 0 | 0 | 429 | 426 | 0.88 | 7.27 | 7.46 | 0.70 | 0.44
0 | 680 | 526 | 0 | 0 | 0 | 454 | 448 | 0.87 | 7.03 | 7.22 | 0.70 | 0.44
0 | 681 | 477 | 3 | 0 | 0 | 394 | 392 | 0.85 | 7.69 | 7.96 | 0.69 | 0.42
0 | 682 | 572 | 6 | 0 | 0 | 491 | 488 | 0.76 | 6.90 | 7.16 | 0.68 | 0.45
0 | 683 | 446 | 0 | 0 | 0 | 386 | 382 | 0.97 | 9.80 | 9.95 | 0.72 | 0.42
0 | 684 | 526 | 6 | 0 | 0 | 454 | 453 | 0.87 | 7.56 | 7.65 | 0.71 | 0.42
0 | 685 | 501 | 7 | 0 | 0 | 442 | 438 | 0.86 | 7.62 | 7.84 | 0.70 | 0.42
0 | 686 | 504 | 0 | 0 | 0 | 425 | 421 | 0.82 | 7.89 | 8.05 | 0.69 | 0.44
0 | 687 | 508 | 3 | 0 | 0 | 435 | 431 | 0.81 | 7.34 | 7.51 | 0.69 | 0.44
0 | 688 | 551 | 5 | 0 | 0 | 469 | 465 | 0.77 | 6.94 | 7.13 | 0.67 | 0.45
0 | 689 | 522 | 4 | 0 | 0 | 462 | 457 | 0.85 | 7.95 | 8.15 | 0.70 | 0.44
0 | 690 | 461 | 0 | 0 | 0 | 411 | 406 | 0.82 | 7.16 | 7.32 | 0.70 | 0.45
0 | 691 | 503 | 0 | 0 | 0 | 423 | 418 | 0.81 | 7.28 | 7.50 | 0.69 | 0.43
0 | 692 | 498 | 14 | 0 | 0 | 448 | 441 | 0.79 | 7.32 | 7.75 | 0.69 | 0.44
0 | 693 | 519 | 15 | 0 | 0 | 467 | 462 | 0.82 | 7.23 | 7.42 | 0.69 | 0.44
0 | 694 | 507 | 4 | 0 | 0 | 416 | 413 | 0.76 | 7.15 | 7.29 | 0.69 | 0.41
0 | 695 | 533 | 3 | 0 | 0 | 470 | 462 | 0.73 | 6.94 | 7.46 | 0.68 | 0.48
0 | 696 | 502 | 18 | 0 | 0 | 419 | 411 | 0.88 | 8.17 | 8.54 | 0.70 | 0.42
0 | 697 | 506 | 3 | 0 | 0 | 449 | 447 | 0.82 | 7.39 | 8.79 | 0.68 | 0.44
0 | 698 | 495 | 6 | 0 | 0 | 429 | 423 | 0.82 | 7.15 | 7.39 | 0.70 | 0.45
0 | 699 | 485 | 0 | 0 | 0 | 415 | 415 | 0.81 | 7.61 | 7.73 | 0.69 | 0.45
0 | 700 | 534 | 4 | 0 | 0 | 463 | 456 | 0.81 | 7.36 | 7.58 | 0.70 | 0.44
0 | 701 | 509 | 9 | 0 | 0 | 467 | 459 | 0.72 | 6.34 | 6.92 | 0.68 | 0.46
0 | 702 | 519 | 16 | 0 | 0 | 463 | 455 | 0.74 | 6.65 | 6.95 | 0.69 | 0.44
0 | 703 | 487 | 3 | 0 | 0 | 419 | 417 | 0.75 | 6.41 | 6.54 | 0.69 | 0.42
0 | 704 | 501 | 12 | 0 | 0 | 443 | 439 | 0.80 | 7.57 | 7.76 | 0.69 | 0.44
0 | 705 | 494 | 13 | 0 | 0 | 409 | 400 | 0.76 | 6.99 | 7.23 | 0.69 | 0.45
0 | 706 | 531 | 0 | 0 | 0 | 457 | 454 | 0.75 | 7.28 | 7.46 | 0.68 | 0.46
0 | 707 | 513 | 13 | 0 | 0 | 456 | 453 | 0.80 | 7.19 | 7.71 | 0.70 | 0.44
0 | 708 | 518 | 0 | 0 | 0 | 449 | 444 | 0.74 | 7.45 | 7.65 | 0.68 | 0.47
0 | 709 | 520 | 7 | 0 | 0 | 450 | 441 | 0.73 | 6.62 | 6.88 | 0.68 | 0.46
0 | 710 | 505 | 0 | 0 | 0 | 434 | 432 | 0.82 | 8.06 | 8.18 | 0.70 | 0.43
0 | 711 | 497 | 10 | 0 | 0 | 426 | 420 | 0.80 | 7.72 | 8.01 | 0.70 | 0.46
0 | 712 | 469 | 15 | 0 | 0 | 409 | 406 | 0.76 | 7.78 | 7.95 | 0.70 | 0.42
0 | 713 | 513 | 3 | 0 | 0 | 449 | 445 | 0.78 | 8.19 | 8.45 | 0.70 | 0.46
0 | 714 | 517 | 3 | 0 | 0 | 451 | 445 | 0.71 | 6.40 | 6.60 | 0.69 | 0.43
0 | 715 | 518 | 0 | 0 | 0 | 452 | 450 | 0.77 | 7.49 | 7.66 | 0.68 | 0.44
0 | 716 | 542 | 9 | 0 | 0 | 468 | 465 | 0.69 | 6.81 | 6.99 | 0.69 | 0.45
0 | 717 | 526 | 6 | 0 | 0 | 453 | 452 | 0.75 | 7.33 | 7.47 | 0.69 | 0.44
0 | 718 | 449 | 16 | 0 | 0 | 406 | 404 | 0.72 | 6.27 | 6.41 | 0.68 | 0.47
0 | 719 | 287 | 192 | 0 | 0 | 409 | 405 | 0.78 | 8.10 | 9.43 | 0.70 | 0.50
---------------------------------------------------------------------------------------------------------
Summary vs resolution
---------------------------------------------------------------------------------------------------------
ID | d min | # full | # part | # over | # ice | # sum | # prf | Ibg | I/sigI | I/sigI | CC prf | RMSD XY
| | | | | | | | | (sum) | (prf) | |
---------------------------------------------------------------------------------------------------------
0 | 1.21 | 382 | 3 | 0 | 0 | 228 | 146 | 0.08 | 0.36 | 0.43 | 0.43 | 1.01
0 | 1.23 | 1332 | 10 | 0 | 0 | 1025 | 868 | 0.09 | 0.30 | 0.42 | 0.43 | 0.97
0 | 1.25 | 3236 | 22 | 0 | 0 | 2718 | 2414 | 0.10 | 0.31 | 0.44 | 0.45 | 0.91
0 | 1.28 | 5314 | 39 | 0 | 0 | 4508 | 4186 | 0.12 | 0.34 | 0.48 | 0.46 | 0.83
0 | 1.30 | 7653 | 50 | 0 | 0 | 6613 | 6251 | 0.13 | 0.44 | 0.56 | 0.48 | 0.75
0 | 1.33 | 11095 | 72 | 0 | 0 | 9462 | 9022 | 0.15 | 0.49 | 0.60 | 0.50 | 0.70
0 | 1.36 | 15380 | 94 | 0 | 0 | 13248 | 12699 | 0.18 | 0.57 | 0.66 | 0.52 | 0.65
0 | 1.40 | 20748 | 285 | 0 | 0 | 18262 | 17722 | 0.22 | 0.67 | 0.76 | 0.54 | 0.61
0 | 1.43 | 23686 | 389 | 0 | 0 | 21117 | 20893 | 0.25 | 0.79 | 0.86 | 0.57 | 0.56
0 | 1.48 | 24360 | 557 | 0 | 0 | 20777 | 20610 | 0.28 | 1.06 | 1.15 | 0.59 | 0.52
0 | 1.52 | 24264 | 509 | 0 | 0 | 21045 | 20894 | 0.32 | 1.34 | 1.44 | 0.62 | 0.47
0 | 1.58 | 24507 | 467 | 0 | 0 | 21810 | 21656 | 0.37 | 1.65 | 1.73 | 0.65 | 0.44
0 | 1.64 | 24631 | 512 | 0 | 0 | 21492 | 21342 | 0.44 | 2.04 | 2.10 | 0.69 | 0.42
0 | 1.72 | 24968 | 510 | 0 | 0 | 21678 | 21530 | 0.53 | 2.84 | 2.93 | 0.73 | 0.38
0 | 1.81 | 25118 | 636 | 0 | 0 | 21966 | 21816 | 0.67 | 4.02 | 4.14 | 0.78 | 0.36
0 | 1.92 | 25010 | 575 | 0 | 0 | 22047 | 21874 | 0.91 | 5.98 | 6.18 | 0.83 | 0.33
0 | 2.07 | 25540 | 510 | 0 | 0 | 22576 | 22414 | 1.17 | 8.36 | 8.69 | 0.86 | 0.31
0 | 2.28 | 25591 | 652 | 0 | 0 | 22907 | 22760 | 1.42 | 11.52 | 11.93 | 0.87 | 0.27
0 | 2.61 | 26036 | 561 | 0 | 0 | 22751 | 22592 | 2.17 | 18.45 | 19.05 | 0.87 | 0.25
0 | 3.28 | 26208 | 627 | 0 | 0 | 23247 | 23052 | 3.66 | 42.17 | 44.37 | 0.85 | 0.24
---------------------------------------------------------------------------------------------------------
Summary for experiment 0
--------------------------------------------------------------
Item | Overall | Low | High
--------------------------------------------------------------
dmin | 1.21 | 3.28 | 1.21
dmax | 69.31 | 69.31 | 1.23
number fully recorded | 365059 | 26208 | 382
number partially recorded | 7080 | 627 | 3
number with invalid background pixels | 82952 | 4702 | 335
number with invalid foreground pixels | 50306 | 3368 | 157
number with overloaded pixels | 0 | 0 | 0
number in powder rings | 0 | 0 | 0
number processed with summation | 319477 | 23247 | 228
number processed with profile fitting | 314741 | 23052 | 146
number failed in background modelling | 4053 | 966 | 0
number failed in summation | 50306 | 3368 | 157
number failed in profile fitting | 55042 | 3563 | 239
ibg | 0.89 | 3.66 | 0.08
i/sigi (summation) | 7.23 | 42.17 | 0.36
i/sigi (profile fitting) | 7.61 | 44.37 | 0.43
cc prf | 0.71 | 0.85 | 0.43
cc_pearson sum/prf | 0.87 | 0.85 | 0.72
cc_spearman sum/prf | 0.98 | 1.00 | 0.81
--------------------------------------------------------------
Timing information for integration
----------------------------------
Read time | 239.60 seconds
Extract time | 2.39 seconds
Pre-process time | 0.64 seconds
Process time | 255.11 seconds
Post-process time | 0.00 seconds
Total time | 501.29 seconds
User time | 0.00 seconds
----------------------------------
Saving 372139 reflections to integrated.pickle
time taken: 0.539618
Saving the experiments to integrated_experiments.json
time taken: 0.022856
Total time taken: 283.488753
|
Checking the log output, we see that after loading in the reference
reflections from refined.pickle
, new predictions are made up to the
highest resolution at the corner of the detector. This is fine, but if we
wanted to we could have adjusted the resolution limits using parameters
prediction.d_min
and prediction.d_max
. The predictions are
made using the scan-varying crystal model recorded in
refined_experiments.json
. This ensures that prediction is made using
the smoothly varying lattice and orientation that we determined in the
refinement step. As this scan-varying model was determined in advance of
integration, each of the integration jobs is independent and we can take
advantage of true parallelism during processing.
The profile model is calculated from the reflections in
refined.pickle
. First reflections with a too small ‘zeta’
factor are filtered out. This essentially removes reflections that are too
close to the spindle axis. In general these reflections require significant
Lorentz corrections and as a result have less trustworthy intensities anyway.
From the remaining reflection shoeboxes, the average beam divergence and
reflecting range is calculated, providing the two Gaussian width parameters
and used in the 3D profile model.
Following this, independent integration jobs are set up. These jobs overlap, so reflections are assigned to one or more jobs. What follows are blocks of information specific to each integration job.
After these jobs are finished, the reflections are ‘post-processed’, which includes the application of the LP correction to the intensities. Then summary tables are printed giving quality statistics first by frame, and then by resolution bin.
HTML report¶
Much more information from the various steps of data processing can be found within an HTML report generated using the program dials.report. This is run simply with:
dials.report integrated_experiments.json integrated.pickle
which produces the file dials-report.html
.
This report includes plots showing the scan-varying crystal orientation and unit cell parameters. The latter of these is useful to check that changes to the cell during processing appear reasonable. We can at least see from this and the low final refined RMSDs that this is a very well- behaved dataset.
Some of the most useful plots are
- Difference between observed and calculated centroids vs phi, which shows how the average residuals in each of X, Y, and φ vary as a fuction of φ. If scan-varying refinement has been successful in capturing the real changes during the scan then we would expect these plots to be straight lines.
- Centroid residuals in X and Y, in which the X, Y residuals are shown directly. The key point here is to look for a globular shape centred at the origin.
- Difference between observed and calculated centroids in X and Y, which show the difference between predicted and observed reflection positions in either X or Y as functions of detector position. From these plots it is very easy to see whole tiles that are worse than their neighbours, and whether those tiles might be simply shifted or slightly rotated compared to the model detector.
- Reflection and reference correlations binned in X/Y. These are useful companions to the plots of centroid residual as a function of detector position above. Whereas the above plots show systematic errors in the positions and orientations of tiles of a multi-panel detector, these plots indicate what effect that (and any other position-specific systematic error) has on the integrated data quality. The first of these plots shows the correlation between reflections and their reference profiles for all reflections in the dataset. The second shows only the correlations between the strong reference reflections and their profiles (thus these are expected to be higher and do not extend to such high resolution).
- Distribution of I/Sigma vs Z. This reproduces the information versus frame number given in the log file in a graphical form. Here we see that is fairly flat over the whole dataset, which we might use as an indication that there were no bad frames, not much radiation damage occurred and that scale factors are likely to be fairly uniform.
Exporting as MTZ¶
The final step of dials processing is to export the integrated results to mtz format, suitable for input to downstream processing programs such as pointless and aimless.
dials.export integrated.pickle integrated_experiments.json
And this is the output, showing the reflection file statistics.
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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | DIALS 1.dev.1890-gcc25deea
The following parameters have been modified:
input {
experiments = integrated_experiments.json
reflections = integrated.pickle
}
Read 372139 predicted reflections
Selected 314741 integrated reflections
Removing 0 reflections with I/Sig(I) < -5.0
Removing 0 profile reflections with I/Sig(I) < -5.0
Removing 1643 incomplete reflections
Beam vector: -0.0008 0.0000 -1.0000
Saving 313098 integrated reflections to integrated.mtz
Title: from dials.export_mtz
Space group symbol from file: C2
Space group number from file: 5
Space group from matrices: C 1 2 1 (No. 5)
Point group symbol from file: 2
Number of batches: 720
Number of crystals: 1
Number of Miller indices: 313098
Resolution range: 69.1934 1.21665
History:
From DIALS 1.dev.1890-gcc25deea, run on 03/12/2017 at 02:04:39
Crystal 1:
Name: XTAL
Project: DIALS
Id: 1
Unit cell: (53.1729, 61.2449, 69.2913, 90, 93.0466, 90)
Number of datasets: 1
Dataset 1:
Name: FROMDIALS
Id: 1
Wavelength: 1.23985
Number of columns: 17
label #valid %valid min max type
H 313098 100.00% -34.00 34.00 H: index h,k,l
K 313098 100.00% 0.00 43.00 H: index h,k,l
L 313098 100.00% 0.00 49.00 H: index h,k,l
M_ISYM 313098 100.00% 1.00 4.00 Y: M/ISYM, packed partial/reject flag and symmetry number
BATCH 313098 100.00% 1.00 720.00 B: BATCH number
IPR 313098 100.00% -0.00 9919.79 J: intensity
SIGIPR 313098 100.00% 0.53 44.47 Q: standard deviation
I 313098 100.00% -21.57 9909.28 J: intensity
SIGI 313098 100.00% 0.59 44.97 Q: standard deviation
BG 313098 100.00% 3.84 875.05 R: real
SIGBG 313098 100.00% 2.08 34.28 R: real
FRACTIONCALC 313098 100.00% 1.00 1.00 R: real
XDET 313098 100.00% 11.27 2452.54 R: real
YDET 313098 100.00% 9.56 2516.66 R: real
ROT 313098 100.00% 0.13 359.85 R: real
LP 313098 100.00% 0.01 1.01 R: real
DQE 313098 100.00% 0.92 0.99 R: real
|
What to do Next¶
The following demonstrates how to take the output of dials processing and continue with downstream analysis using the CCP4 programs pointless, to sort the data and assign the correct symmetry, followed by scaling with aimless and intensity analysis using ctruncate:
pointless hklin integrated.mtz hklout sorted.mtz > pointless.log
aimless hklin sorted.mtz hklout scaled.mtz > aimless.log << EOF
resolution 1.4
EOF
ctruncate -hklin scaled.mtz -hklout truncated.mtz \
-colin '/*/*/[IMEAN,SIGIMEAN]' > ctruncate.log
to get merged data for downstream analysis. The output from this includes the merging statistics which will give a better idea about data quality. It is easiest to view these logfiles using the program logview, e.g.:
logview aimless.log
Often passing in a sensible resolution limit to aimless is helpful. Here we assumed we ran first without a resolution limit to help decide where to cut the data. Following this we chose to exclude all data at a resolution higher than 1.4 Angstroms, to ensure about 90% completeness in the outer shell. Here is the summary from aimless.log:
Summary data for Project: DIALS Crystal: XTAL Dataset: FROMDIALS
Overall InnerShell OuterShell
Low resolution limit 69.19 69.19 1.42
High resolution limit 1.40 7.67 1.40
Rmerge (within I+/I-) 0.055 0.028 0.467
Rmerge (all I+ and I-) 0.065 0.039 0.534
Rmeas (within I+/I-) 0.066 0.033 0.571
Rmeas (all I+ & I-) 0.071 0.042 0.587
Rpim (within I+/I-) 0.035 0.017 0.324
Rpim (all I+ & I-) 0.027 0.016 0.239
Rmerge in top intensity bin 0.029 - -
Total number of observations 275780 1919 11036
Total number unique 41072 284 1908
Mean((I)/sd(I)) 14.7 48.7 2.5
Mn(I) half-set correlation CC(1/2) 0.999 0.999 0.887
Completeness 94.2 99.2 90.3
Multiplicity 6.7 6.8 5.8
Anomalous completeness 94.1 100.0 89.2
Anomalous multiplicity 3.4 3.7 2.9
DelAnom correlation between half-sets 0.336 0.541 0.026
Mid-Slope of Anom Normal Probability 1.097 - -