This documentation page refers to a previous release of DIALS (1.14).
Click here to go to the corresponding page for the latest version of DIALS

Processing in Detail

Introduction

DIALS processing may be performed by either running the individual tools (spot finding, indexing, refinement, integration, symmetry, scaling, 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.

Hint

If you are physically at Diamond on the CCP4 Workshop, then this data is already available in your training data area. After typing module load ccp4-workshop you’ll be moved to a working folder, with the data already located in the tutorial-data/summed subdirectory.

The data is otherwise available for download from lactamase. We’ll only be using the first run of data in this tutorial, C2sum_1.tar, extracted to a tutorial-data/summed subdirectory.

Import

The first stage of step-by-step DIALS processing is to import the data - all that happens here is that metadata are read for all the images, and a file describing their contents (datablock.json) is written:

dials.import 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.14.32-g3faa4529d
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:

../../_images/image_viewer.jpg

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 (sometimes spots can be easier to identify in ‘inverted’ mode) , 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
Show/Hide Log
  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.14.32-g3faa4529d
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: 82.012205

Once this has completed, a new reflection filestrong.pickle’ is written, containing a record of every spot found.

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’.

../../_images/image_viewer_spot.png

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 were found, so ensuring this produces peaks at real diffraction spot positions will give the best chance of success.

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
../../_images/reciprocal_lattice_strong.png

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.

Show/Hide Log
  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.14.32-g3faa4529d
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:

../../_images/reciprocal_lattice_indexed.png

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 indexed.pickle experiments.json

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
Show/Hide Log
 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.14.32-g3faa4529d
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: 9.26s

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
Show/Hide Log
 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.14.32-g3faa4529d
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: 40.26s

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:

../../_images/scan_varying.png

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
Show/Hide Log
    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
11793
11794
11795
11796
11797
11798
11799
11800
11801
11802
11803
11804
11805
11806
11807
11808
11809
11810
11811
11812
11813
11814
11815
11816
11817
11818
11819
11820
11821
11822
11823
11824
11825
11826
11827
11828
11829
11830
11831
11832
11833
11834
11835
11836
11837
11838
11839
11840
11841
11842
11843
11844
11845
11846
11847
11848
11849
11850
11851
11852
11853
11854
11855
11856
11857
11858
11859
11860
11861
11862
11863
11864
11865
11866
11867
11868
11869
11870
11871
11872
11873
11874
11875
11876
11877
11878
11879
11880
11881
11882
11883
11884
11885
11886
11887
11888
11889
11890
11891
11892
11893
11894
11895
11896
11897
11898
11899
11900
11901
11902
11903
11904
11905
11906
11907
11908
11909
11910
11911
11912
11913
11914
11915
11916
11917
11918
11919
11920
11921
11922
11923
11924
11925
11926
11927
11928
11929
11930
11931
11932
11933
11934
11935
11936
11937
11938
11939
11940
11941
11942
11943
11944
11945
11946
11947
11948
11949
11950
11951
11952
11953
11954
11955
11956
11957
11958
11959
11960
11961
11962
11963
11964
11965
11966
11967
11968
11969
11970
11971
11972
11973
11974
11975
11976
11977
11978
11979
11980
11981
11982
11983
11984
11985
11986
11987
11988
11989
11990
11991
11992
11993
11994
11995
11996
11997
11998
11999
12000
12001
12002
12003
12004
12005
12006
12007
12008
12009
12010
12011
12012
12013
12014
12015
12016
12017
12018
12019
12020
12021
12022
12023
12024
12025
12026
12027
12028
12029
12030
12031
12032
12033
12034
12035
12036
12037
12038
12039
12040
12041
12042
12043
12044
12045
12046
12047
12048
12049
12050
12051
12052
12053
12054
12055
12056
12057
12058
12059
12060
12061
12062
12063
12064
12065
12066
12067
12068
12069
12070
12071
12072
12073
12074
12075
12076
12077
12078
12079
12080
12081
12082
12083
12084
12085
12086
12087
12088
12089
12090
12091
12092
12093
12094
12095
12096
12097
12098
12099
12100
12101
12102
12103
12104
12105
12106
12107
12108
12109
12110
12111
12112
12113
12114
12115
12116
12117
12118
12119
12120
12121
12122
12123
12124
12125
12126
12127
12128
12129
12130
12131
12132
12133
12134
12135
12136
12137
12138
12139
12140
12141
12142
12143
12144
12145
12146
12147
12148
12149
12150
12151
12152
12153
12154
12155
12156
12157
12158
12159
12160
12161
12162
12163
12164
12165
12166
12167
12168
12169
12170
12171
12172
12173
12174
12175
12176
12177
12178
12179
12180
12181
12182
12183
12184
12185
12186
12187
12188
12189
12190
12191
12192
12193
12194
12195
12196
12197
12198
12199
12200
12201
12202
12203
12204
12205
12206
12207
12208
12209
12210
12211
12212
12213
12214
12215
12216
12217
12218
12219
12220
12221
12222
12223
12224
12225
12226
12227
12228
12229
12230
12231
12232
12233
12234
12235
12236
12237
12238
12239
12240
12241
12242
12243
12244
12245
12246
12247
12248
12249
12250
12251
12252
12253
12254
12255
12256
12257
12258
DIALS 1.14.32-g3faa4529d
The following parameters have been modified:

integration {
  mp {
    nproc = 4
  }
}
input {
  experiments = refined_experiments.json
  reflections = refined.pickle
}

================================================================================

Experiments

Models for experiment 0

Beam:
    wavelength: 1.23985
    sample to source direction : {0.000845691,-0,1}
    divergence: 0
    sigma divergence: 0
    polarization normal: {0,1,0}
    polarization fraction: 0.999

Detector:
Panel:
  name: Panel
  type: SENSOR_PAD
  identifier: 
  pixel_size:{0.172,0.172}
  image_size: {2463,2527}
  trusted_range: {-1,1.22424e+06}
  thickness: 0.32
  material: Si
  mu: 7.89651
  gain: 1
  pedestal: 0
  fast_axis: {0.999913,-0.00556152,-0.0119461}
  slow_axis: {-0.00567459,-0.999939,-0.00945193}
  origin: {-217.509,210.384,-164.528}
  distance: 169.098
  pixel to millimeter strategy: ParallaxCorrectedPxMmStrategy
    mu: 7.89651
    t0: 0.32


Goniometer:
    Rotation axis:   {1,0,0}
    Fixed rotation:  {0.965028,0.0598562,-0.255222,-0.128604,-0.74028,-0.659883,-0.228434,0.669628,-0.706694}
    Setting rotation:{1,0,0,0,1,0,0,0,1}
    Axis #0 (GON_PHI):  {1,0,0}
    Axis #1 (GON_KAPPA):  {0.914,0.279,-0.297}
    Axis #2 (GON_OMEGA):  {1,0,0}
    Angles: 102.6,37.9,0
    scan axis: #2 (GON_OMEGA)

Scan:
    image range:   {1,720}
    oscillation:   {0,0.5}
    exposure time: 0.5

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

================================================================================

Initialising

Processing reference reflections
 read 103780 strong spots
 removing 1629 unindexed reflections
 removing 11521 reflections marked as bad for refinement
 using 90630 indexed reflections
 found 13150 junk reflections
 time taken: 0.0258451
 masked neighbouring pixels in 1 shoeboxes


================================================================================

Predicting reflections

Prediction type: scan varying crystal prediction
Predicted 368602 reflections
Matching reference spots with predicted reflections
 90630 observed reflections input
 368602 reflections predicted
 90630 reflections matched
 90630 reflections accepted
Calculating E.S.D Beam Divergence.
Calculating E.S.D Reflecting Range.
 sigma b: 0.035788 degrees
 sigma m: 0.056048 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 214 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 |          1060
   1 |     0 |          5 |       15 |        2.5 |      7.5 |           656
   2 |     0 |         10 |       20 |        5.0 |     10.0 |           662
   3 |     0 |         15 |       25 |        7.5 |     12.5 |           669
   4 |     0 |         20 |       30 |       10.0 |     15.0 |           674
   5 |     0 |         25 |       35 |       12.5 |     17.5 |           702
   6 |     0 |         30 |       40 |       15.0 |     20.0 |           660
   7 |     0 |         35 |       45 |       17.5 |     22.5 |           663
   8 |     0 |         40 |       50 |       20.0 |     25.0 |           638
   9 |     0 |         45 |       55 |       22.5 |     27.5 |           657
  10 |     0 |         50 |       60 |       25.0 |     30.0 |           657
  11 |     0 |         55 |       65 |       27.5 |     32.5 |           632
  12 |     0 |         60 |       70 |       30.0 |     35.0 |           645
  13 |     0 |         65 |       75 |       32.5 |     37.5 |           657
  14 |     0 |         70 |       80 |       35.0 |     40.0 |           700
  15 |     0 |         75 |       85 |       37.5 |     42.5 |           664
  16 |     0 |         80 |       90 |       40.0 |     45.0 |           665
  17 |     0 |         85 |       95 |       42.5 |     47.5 |           704
  18 |     0 |         90 |      100 |       45.0 |     50.0 |           693
  19 |     0 |         95 |      105 |       47.5 |     52.5 |           678
  20 |     0 |        100 |      110 |       50.0 |     55.0 |           703
  21 |     0 |        105 |      115 |       52.5 |     57.5 |           703
  22 |     0 |        110 |      120 |       55.0 |     60.0 |           690
  23 |     0 |        115 |      125 |       57.5 |     62.5 |           708
  24 |     0 |        120 |      130 |       60.0 |     65.0 |           703
  25 |     0 |        125 |      135 |       62.5 |     67.5 |           684
  26 |     0 |        130 |      140 |       65.0 |     70.0 |           691
  27 |     0 |        135 |      145 |       67.5 |     72.5 |           653
  28 |     0 |        140 |      150 |       70.0 |     75.0 |           678
  29 |     0 |        145 |      155 |       72.5 |     77.5 |           637
  30 |     0 |        150 |      160 |       75.0 |     80.0 |           691
  31 |     0 |        155 |      165 |       77.5 |     82.5 |           626
  32 |     0 |        160 |      170 |       80.0 |     85.0 |           666
  33 |     0 |        165 |      175 |       82.5 |     87.5 |           660
  34 |     0 |        170 |      180 |       85.0 |     90.0 |           640
  35 |     0 |        175 |      185 |       87.5 |     92.5 |           633
  36 |     0 |        180 |      190 |       90.0 |     95.0 |           618
  37 |     0 |        185 |      195 |       92.5 |     97.5 |           620
  38 |     0 |        190 |      200 |       95.0 |    100.0 |           645
  39 |     0 |        195 |      205 |       97.5 |    102.5 |           631
  40 |     0 |        200 |      210 |      100.0 |    105.0 |           569
  41 |     0 |        205 |      215 |      102.5 |    107.5 |           623
  42 |     0 |        210 |      220 |      105.0 |    110.0 |           556
  43 |     0 |        215 |      225 |      107.5 |    112.5 |           596
  44 |     0 |        220 |      230 |      110.0 |    115.0 |           589
  45 |     0 |        225 |      235 |      112.5 |    117.5 |           580
  46 |     0 |        230 |      240 |      115.0 |    120.0 |           576
  47 |     0 |        235 |      245 |      117.5 |    122.5 |           594
  48 |     0 |        240 |      250 |      120.0 |    125.0 |           590
  49 |     0 |        245 |      255 |      122.5 |    127.5 |           597
  50 |     0 |        250 |      260 |      125.0 |    130.0 |           597
  51 |     0 |        255 |      265 |      127.5 |    132.5 |           594
  52 |     0 |        260 |      270 |      130.0 |    135.0 |           628
  53 |     0 |        265 |      275 |      132.5 |    137.5 |           605
  54 |     0 |        270 |      280 |      135.0 |    140.0 |           629
  55 |     0 |        275 |      285 |      137.5 |    142.5 |           625
  56 |     0 |        280 |      290 |      140.0 |    145.0 |           610
  57 |     0 |        285 |      295 |      142.5 |    147.5 |           622
  58 |     0 |        290 |      300 |      145.0 |    150.0 |           620
  59 |     0 |        295 |      305 |      147.5 |    152.5 |           633
  60 |     0 |        300 |      310 |      150.0 |    155.0 |           607
  61 |     0 |        305 |      315 |      152.5 |    157.5 |           647
  62 |     0 |        310 |      320 |      155.0 |    160.0 |           587
  63 |     0 |        315 |      325 |      157.5 |    162.5 |           628
  64 |     0 |        320 |      330 |      160.0 |    165.0 |           670
  65 |     0 |        325 |      335 |      162.5 |    167.5 |           627
  66 |     0 |        330 |      340 |      165.0 |    170.0 |           626
  67 |     0 |        335 |      345 |      167.5 |    172.5 |           680
  68 |     0 |        340 |      350 |      170.0 |    175.0 |           623
  69 |     0 |        345 |      355 |      172.5 |    177.5 |           645
  70 |     0 |        350 |      360 |      175.0 |    180.0 |           687
  71 |     0 |        355 |      365 |      177.5 |    182.5 |           654
  72 |     0 |        360 |      370 |      180.0 |    185.0 |           651
  73 |     0 |        365 |      375 |      182.5 |    187.5 |           662
  74 |     0 |        370 |      380 |      185.0 |    190.0 |           622
  75 |     0 |        375 |      385 |      187.5 |    192.5 |           624
  76 |     0 |        380 |      390 |      190.0 |    195.0 |           636
  77 |     0 |        385 |      395 |      192.5 |    197.5 |           674
  78 |     0 |        390 |      400 |      195.0 |    200.0 |           630
  79 |     0 |        395 |      405 |      197.5 |    202.5 |           645
  80 |     0 |        400 |      410 |      200.0 |    205.0 |           645
  81 |     0 |        405 |      415 |      202.5 |    207.5 |           649
  82 |     0 |        410 |      420 |      205.0 |    210.0 |           628
  83 |     0 |        415 |      425 |      207.5 |    212.5 |           626
  84 |     0 |        420 |      430 |      210.0 |    215.0 |           617
  85 |     0 |        425 |      435 |      212.5 |    217.5 |           632
  86 |     0 |        430 |      440 |      215.0 |    220.0 |           632
  87 |     0 |        435 |      445 |      217.5 |    222.5 |           599
  88 |     0 |        440 |      450 |      220.0 |    225.0 |           632
  89 |     0 |        445 |      455 |      222.5 |    227.5 |           628
  90 |     0 |        450 |      460 |      225.0 |    230.0 |           606
  91 |     0 |        455 |      465 |      227.5 |    232.5 |           629
  92 |     0 |        460 |      470 |      230.0 |    235.0 |           641
  93 |     0 |        465 |      475 |      232.5 |    237.5 |           640
  94 |     0 |        470 |      480 |      235.0 |    240.0 |           646
  95 |     0 |        475 |      485 |      237.5 |    242.5 |           621
  96 |     0 |        480 |      490 |      240.0 |    245.0 |           622
  97 |     0 |        485 |      495 |      242.5 |    247.5 |           598
  98 |     0 |        490 |      500 |      245.0 |    250.0 |           617
  99 |     0 |        495 |      505 |      247.5 |    252.5 |           563
 100 |     0 |        500 |      510 |      250.0 |    255.0 |           626
 101 |     0 |        505 |      515 |      252.5 |    257.5 |           588
 102 |     0 |        510 |      520 |      255.0 |    260.0 |           610
 103 |     0 |        515 |      525 |      257.5 |    262.5 |           585
 104 |     0 |        520 |      530 |      260.0 |    265.0 |           589
 105 |     0 |        525 |      535 |      262.5 |    267.5 |           609
 106 |     0 |        530 |      540 |      265.0 |    270.0 |           572
 107 |     0 |        535 |      545 |      267.5 |    272.5 |           571
 108 |     0 |        540 |      550 |      270.0 |    275.0 |           570
 109 |     0 |        545 |      555 |      272.5 |    277.5 |           578
 110 |     0 |        550 |      560 |      275.0 |    280.0 |           598
 111 |     0 |        555 |      565 |      277.5 |    282.5 |           579
 112 |     0 |        560 |      570 |      280.0 |    285.0 |           548
 113 |     0 |        565 |      575 |      282.5 |    287.5 |           577
 114 |     0 |        570 |      580 |      285.0 |    290.0 |           542
 115 |     0 |        575 |      585 |      287.5 |    292.5 |           586
 116 |     0 |        580 |      590 |      290.0 |    295.0 |           589
 117 |     0 |        585 |      595 |      292.5 |    297.5 |           600
 118 |     0 |        590 |      600 |      295.0 |    300.0 |           583
 119 |     0 |        595 |      605 |      297.5 |    302.5 |           619
 120 |     0 |        600 |      610 |      300.0 |    305.0 |           601
 121 |     0 |        605 |      615 |      302.5 |    307.5 |           600
 122 |     0 |        610 |      620 |      305.0 |    310.0 |           631
 123 |     0 |        615 |      625 |      307.5 |    312.5 |           604
 124 |     0 |        620 |      630 |      310.0 |    315.0 |           641
 125 |     0 |        625 |      635 |      312.5 |    317.5 |           616
 126 |     0 |        630 |      640 |      315.0 |    320.0 |           574
 127 |     0 |        635 |      645 |      317.5 |    322.5 |           567
 128 |     0 |        640 |      650 |      320.0 |    325.0 |           582
 129 |     0 |        645 |      655 |      322.5 |    327.5 |           626
 130 |     0 |        650 |      660 |      325.0 |    330.0 |           615
 131 |     0 |        655 |      665 |      327.5 |    332.5 |           648
 132 |     0 |        660 |      670 |      330.0 |    335.0 |           621
 133 |     0 |        665 |      675 |      332.5 |    337.5 |           646
 134 |     0 |        670 |      680 |      335.0 |    340.0 |           626
 135 |     0 |        675 |      685 |      337.5 |    342.5 |           632
 136 |     0 |        680 |      690 |      340.0 |    345.0 |           653
 137 |     0 |        685 |      695 |      342.5 |    347.5 |           640
 138 |     0 |        690 |      700 |      345.0 |    350.0 |           659
 139 |     0 |        695 |      705 |      347.5 |    352.5 |           665
 140 |     0 |        700 |      710 |      350.0 |    355.0 |           653
 141 |     0 |        705 |      715 |      352.5 |    357.5 |           669
 142 |     0 |        710 |      720 |      355.0 |    360.0 |          1011
 ---------------------------------------------------------------------------

 Using multiprocessing with 4 parallel job(s)

 Beginning modelling job 0

 Frames: 0 -> 10

 Number of reflections
  Partial:     80
  Full:        980
  In ice ring: 0
  Total:       1060

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 0 [249]: **********************************************************
 1 [297]: **********************************************************************
 2 [253]: ***********************************************************
 3 [240]: ********************************************************
 4 [270]: ***************************************************************
 5 [280]: *****************************************************************
 6 [254]: ***********************************************************
 7 [159]: *************************************
 8 [19 ]: ****
 9 [1  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00131575 GB

 Modelled    45 /    88 reflection profiles on image 0
 Modelled   146 /   162 reflection profiles on image 1
 Modelled   130 /   133 reflection profiles on image 2
 Modelled   111 /   113 reflection profiles on image 3
 Modelled   128 /   131 reflection profiles on image 4
 Modelled   141 /   145 reflection profiles on image 5
 Modelled   128 /   129 reflection profiles on image 6
 Modelled   133 /   140 reflection profiles on image 7
 Modelled    17 /    18 reflection profiles on image 8
 Modelled     0 /     1 reflection profiles on image 9
 Beginning modelling job 1

 Frames: 5 -> 15

 Number of reflections
  Partial:     1
  Full:        655
  In ice ring: 0
  Total:       656

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 5  [2  ]: 
 6  [8  ]: **
 7  [130]: ********************************
 8  [273]: *********************************************************************
 9  [270]: ********************************************************************
 10 [242]: *************************************************************
 11 [244]: *************************************************************
 12 [138]: **********************************
 13 [16 ]: ****

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00130728 GB

 Modelled   121 /   127 reflection profiles on image 8
 Modelled   138 /   142 reflection profiles on image 9
 Modelled   123 /   124 reflection profiles on image 10
 Modelled   124 /   125 reflection profiles on image 11
 Modelled   120 /   122 reflection profiles on image 12
 Modelled    16 /    16 reflection profiles on image 13
 Beginning modelling job 2

 Frames: 10 -> 20

 Number of reflections
  Partial:     0
  Full:        662
  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.

 11 [6  ]: *
 12 [112]: ***************************
 13 [248]: *************************************************************
 14 [280]: *********************************************************************
 15 [262]: ****************************************************************
 16 [260]: ****************************************************************
 17 [143]: ***********************************
 18 [18 ]: ****
 19 [2  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00127441 GB

 Modelled   113 /   116 reflection profiles on image 13
 Modelled   139 /   140 reflection profiles on image 14
 Modelled   121 /   126 reflection profiles on image 15
 Modelled   134 /   137 reflection profiles on image 16
 Modelled   121 /   125 reflection profiles on image 17
 Modelled    15 /    16 reflection profiles on image 18
 Modelled     2 /     2 reflection profiles on image 19
 Beginning modelling job 3

 Frames: 15 -> 25

 Number of reflections
  Partial:     0
  Full:        669
  In ice ring: 0
  Total:       669

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 16 [3  ]: 
 17 [111]: ***************************
 18 [240]: ************************************************************
 19 [258]: ****************************************************************
 20 [269]: *******************************************************************
 21 [276]: *********************************************************************
 22 [156]: ***************************************
 23 [23 ]: *****
 24 [1  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.0012775 GB

 Modelled   106 /   113 reflection profiles on image 18
 Modelled   125 /   127 reflection profiles on image 19
 Modelled   130 /   130 reflection profiles on image 20
 Modelled   134 /   143 reflection profiles on image 21
 Modelled   130 /   133 reflection profiles on image 22
 Modelled    21 /    22 reflection profiles on image 23
 Modelled     1 /     1 reflection profiles on image 24
 Beginning modelling job 4

 Frames: 20 -> 30

 Number of reflections
  Partial:     2
  Full:        672
  In ice ring: 0
  Total:       674

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 20 [2  ]: 
 21 [9  ]: **
 22 [105]: *************************
 23 [244]: ***********************************************************
 24 [272]: ******************************************************************
 25 [281]: *********************************************************************
 26 [278]: ********************************************************************
 27 [156]: **************************************
 28 [27 ]: ******
 29 [3  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00132876 GB

 Modelled    99 /   104 reflection profiles on image 23
 Modelled   131 /   138 reflection profiles on image 24
 Modelled   129 /   133 reflection profiles on image 25
 Modelled   140 /   143 reflection profiles on image 26
 Modelled   128 /   129 reflection profiles on image 27
 Modelled    24 /    24 reflection profiles on image 28
 Modelled     1 /     3 reflection profiles on image 29
 Beginning modelling job 5

 Frames: 25 -> 35

 Number of reflections
  Partial:     1
  Full:        701
  In ice ring: 0
  Total:       702

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 26 [2  ]: 
 27 [115]: ***************************
 28 [252]: *************************************************************
 29 [269]: *****************************************************************
 30 [284]: *********************************************************************
 31 [271]: *****************************************************************
 32 [166]: ****************************************
 33 [20 ]: ****
 34 [5  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00124612 GB

 Modelled   119 /   123 reflection profiles on image 28
 Modelled   134 /   140 reflection profiles on image 29
 Modelled   141 /   144 reflection profiles on image 30
 Modelled   126 /   129 reflection profiles on image 31
 Modelled   140 /   146 reflection profiles on image 32
 Modelled    15 /    15 reflection profiles on image 33
 Modelled     5 /     5 reflection profiles on image 34
 Beginning modelling job 6

 Frames: 30 -> 40

 Number of reflections
  Partial:     0
  Full:        660
  In ice ring: 0
  Total:       660

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 31 [6  ]: *
 32 [115]: *****************************
 33 [247]: ****************************************************************
 34 [249]: ****************************************************************
 35 [249]: ****************************************************************
 36 [265]: *********************************************************************
 37 [148]: **************************************
 38 [22 ]: *****

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00120737 GB

 Modelled   121 /   125 reflection profiles on image 33
 Modelled   132 /   137 reflection profiles on image 34
 Modelled   102 /   110 reflection profiles on image 35
 Modelled   139 /   140 reflection profiles on image 36
 Modelled   118 /   126 reflection profiles on image 37
 Modelled    21 /    22 reflection profiles on image 38
 Beginning modelling job 7

 Frames: 35 -> 45

 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.

 35 [1  ]: 
 36 [4  ]: *
 37 [90 ]: **********************
 38 [238]: ***********************************************************
 39 [276]: *********************************************************************
 40 [265]: ******************************************************************
 41 [270]: *******************************************************************
 42 [155]: **************************************
 43 [24 ]: ******
 44 [3  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.0012322 GB

 Modelled    93 /    99 reflection profiles on image 38
 Modelled   136 /   139 reflection profiles on image 39
 Modelled   129 /   131 reflection profiles on image 40
 Modelled   136 /   139 reflection profiles on image 41
 Modelled   127 /   131 reflection profiles on image 42
 Modelled    18 /    21 reflection profiles on image 43
 Modelled     3 /     3 reflection profiles on image 44
 Beginning modelling job 8

 Frames: 40 -> 50

 Number of reflections
  Partial:     2
  Full:        636
  In ice ring: 0
  Total:       638

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 41 [3  ]: 
 42 [100]: **************************
 43 [233]: **************************************************************
 44 [251]: *******************************************************************
 45 [238]: ****************************************************************
 46 [256]: *********************************************************************
 47 [152]: ****************************************
 48 [20 ]: *****
 49 [3  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00113308 GB

 Modelled   112 /   114 reflection profiles on image 43
 Modelled   123 /   128 reflection profiles on image 44
 Modelled   110 /   113 reflection profiles on image 45
 Modelled   127 /   131 reflection profiles on image 46
 Modelled   129 /   132 reflection profiles on image 47
 Modelled    17 /    17 reflection profiles on image 48
 Modelled     2 /     3 reflection profiles on image 49
 Beginning modelling job 9

 Frames: 45 -> 55

 Number of reflections
  Partial:     1
  Full:        656
  In ice ring: 0
  Total:       657

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 45 [1  ]: 
 46 [5  ]: *
 47 [121]: *******************************
 48 [263]: *******************************************************************
 49 [268]: *********************************************************************
 50 [248]: ***************************************************************
 51 [259]: ******************************************************************
 52 [160]: *****************************************
 53 [16 ]: ****
 54 [1  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00124942 GB

 Modelled   111 /   114 reflection profiles on image 48
 Modelled   136 /   140 reflection profiles on image 49
 Modelled   119 /   121 reflection profiles on image 50
 Modelled   118 /   122 reflection profiles on image 51
 Modelled   138 /   144 reflection profiles on image 52
 Modelled    15 /    15 reflection profiles on image 53
 Modelled     1 /     1 reflection profiles on image 54
 Beginning modelling job 10

 Frames: 50 -> 60

 Number of reflections
  Partial:     0
  Full:        657
  In ice ring: 0
  Total:       657

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 51 [4  ]: *
 52 [119]: ******************************
 53 [256]: *****************************************************************
 54 [269]: *********************************************************************
 55 [252]: ****************************************************************
 56 [241]: *************************************************************
 57 [149]: **************************************
 58 [14 ]: ***
 59 [1  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00123532 GB

 Modelled   115 /   118 reflection profiles on image 53
 Modelled   139 /   143 reflection profiles on image 54
 Modelled   127 /   131 reflection profiles on image 55
 Modelled   110 /   116 reflection profiles on image 56
 Modelled   133 /   135 reflection profiles on image 57
 Modelled    13 /    13 reflection profiles on image 58
 Modelled     1 /     1 reflection profiles on image 59
 Beginning modelling job 11

 Frames: 55 -> 65

 Number of reflections
  Partial:     0
  Full:        632
  In ice ring: 0
  Total:       632

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 56 [5  ]: *
 57 [130]: ************************************
 58 [240]: ******************************************************************
 59 [242]: *******************************************************************
 60 [249]: *********************************************************************
 61 [248]: ********************************************************************
 62 [142]: ***************************************
 63 [14 ]: ***
 64 [5  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00114487 GB

 Modelled   117 /   123 reflection profiles on image 58
 Modelled   112 /   117 reflection profiles on image 59
 Modelled   117 /   120 reflection profiles on image 60
 Modelled   129 /   130 reflection profiles on image 61
 Modelled   121 /   128 reflection profiles on image 62
 Modelled     9 /     9 reflection profiles on image 63
 Modelled     5 /     5 reflection profiles on image 64
 Beginning modelling job 12

 Frames: 60 -> 70

 Number of reflections
  Partial:     0
  Full:        645
  In ice ring: 0
  Total:       645

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 60 [2  ]: 
 61 [10 ]: **
 62 [116]: *****************************
 63 [230]: ***********************************************************
 64 [267]: *********************************************************************
 65 [267]: *********************************************************************
 66 [251]: ****************************************************************
 67 [159]: *****************************************
 68 [18 ]: ****
 69 [3  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00125542 GB

 Modelled   103 /   109 reflection profiles on image 63
 Modelled   118 /   121 reflection profiles on image 64
 Modelled   135 /   139 reflection profiles on image 65
 Modelled   115 /   117 reflection profiles on image 66
 Modelled   138 /   141 reflection profiles on image 67
 Modelled    14 /    15 reflection profiles on image 68
 Modelled     3 /     3 reflection profiles on image 69
 Beginning modelling job 13

 Frames: 65 -> 75

 Number of reflections
  Partial:     2
  Full:        655
  In ice ring: 0
  Total:       657

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 65 [2  ]: 
 66 [4  ]: 
 67 [105]: **************************
 68 [229]: *********************************************************
 69 [277]: *********************************************************************
 70 [274]: ********************************************************************
 71 [240]: ***********************************************************
 72 [141]: ***********************************
 73 [14 ]: ***
 74 [4  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00126046 GB

 Modelled   113 /   115 reflection profiles on image 68
 Modelled   111 /   121 reflection profiles on image 69
 Modelled   147 /   153 reflection profiles on image 70
 Modelled   125 /   127 reflection profiles on image 71
 Modelled   123 /   127 reflection profiles on image 72
 Modelled    10 /    10 reflection profiles on image 73
 Modelled     3 /     4 reflection profiles on image 74
 Beginning modelling job 14

 Frames: 70 -> 80

 Number of reflections
  Partial:     3
  Full:        697
  In ice ring: 0
  Total:       700

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 70 [2  ]: 
 71 [8  ]: *
 72 [130]: *******************************
 73 [245]: **********************************************************
 74 [283]: ********************************************************************
 75 [287]: *********************************************************************
 76 [279]: *******************************************************************
 77 [161]: **************************************
 78 [20 ]: ****
 79 [4  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00137206 GB

 Modelled   123 /   127 reflection profiles on image 73
 Modelled   117 /   128 reflection profiles on image 74
 Modelled   138 /   141 reflection profiles on image 75
 Modelled   141 /   143 reflection profiles on image 76
 Modelled   138 /   141 reflection profiles on image 77
 Modelled    14 /    16 reflection profiles on image 78
 Modelled     3 /     4 reflection profiles on image 79
 Beginning modelling job 15

 Frames: 75 -> 85

 Number of reflections
  Partial:     3
  Full:        661
  In ice ring: 0
  Total:       664

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 75 [1  ]: 
 76 [4  ]: *
 77 [107]: ***************************
 78 [234]: ************************************************************
 79 [267]: ********************************************************************
 80 [268]: *********************************************************************
 81 [254]: *****************************************************************
 82 [153]: ***************************************
 83 [17 ]: ****
 84 [3  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00123258 GB

 Modelled   110 /   114 reflection profiles on image 78
 Modelled   130 /   137 reflection profiles on image 79
 Modelled   120 /   130 reflection profiles on image 80
 Modelled   129 /   130 reflection profiles on image 81
 Modelled   132 /   136 reflection profiles on image 82
 Modelled    14 /    14 reflection profiles on image 83
 Modelled     2 /     3 reflection profiles on image 84
 Beginning modelling job 16

 Frames: 80 -> 90

 Number of reflections
  Partial:     1
  Full:        664
  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.

 80 [2  ]: 
 81 [2  ]: 
 82 [118]: *****************************
 83 [253]: ***************************************************************
 84 [271]: ********************************************************************
 85 [273]: *********************************************************************
 86 [251]: ***************************************************************
 87 [155]: ***************************************
 88 [23 ]: *****
 89 [1  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00130738 GB

 Modelled   113 /   115 reflection profiles on image 83
 Modelled   129 /   130 reflection profiles on image 84
 Modelled   143 /   148 reflection profiles on image 85
 Modelled   112 /   117 reflection profiles on image 86
 Modelled   129 /   132 reflection profiles on image 87
 Modelled    22 /    22 reflection profiles on image 88
 Modelled     1 /     1 reflection profiles on image 89
 Beginning modelling job 17

 Frames: 85 -> 95

 Number of reflections
  Partial:     4
  Full:        700
  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.

 86 [10 ]: **
 87 [123]: ****************************
 88 [261]: *************************************************************
 89 [257]: ************************************************************
 90 [283]: ******************************************************************
 91 [295]: *********************************************************************
 92 [151]: ***********************************
 93 [24 ]: *****
 94 [5  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.0013498 GB

 Modelled   127 /   129 reflection profiles on image 88
 Modelled   121 /   127 reflection profiles on image 89
 Modelled   126 /   131 reflection profiles on image 90
 Modelled   159 /   166 reflection profiles on image 91
 Modelled   123 /   127 reflection profiles on image 92
 Modelled    19 /    19 reflection profiles on image 93
 Modelled     3 /     5 reflection profiles on image 94
 Beginning modelling job 18

 Frames: 90 -> 100

 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.

 90 [1  ]: 
 91 [7  ]: *
 92 [115]: **************************
 93 [247]: *********************************************************
 94 [258]: ************************************************************
 95 [273]: ***************************************************************
 96 [296]: *********************************************************************
 97 [184]: ******************************************
 98 [16 ]: ***
 99 [5  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00134213 GB

 Modelled   112 /   114 reflection profiles on image 93
 Modelled   121 /   123 reflection profiles on image 94
 Modelled   120 /   129 reflection profiles on image 95
 Modelled   141 /   143 reflection profiles on image 96
 Modelled   161 /   168 reflection profiles on image 97
 Modelled    11 /    11 reflection profiles on image 98
 Modelled     4 /     5 reflection profiles on image 99
 Beginning modelling job 19

 Frames: 95 -> 105

 Number of reflections
  Partial:     2
  Full:        676
  In ice ring: 0
  Total:       678

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 95  [3  ]: 
 96  [8  ]: *
 97  [111]: *************************
 98  [230]: ****************************************************
 99  [236]: *****************************************************
 100 [254]: *********************************************************
 101 [299]: ********************************************************************
 102 [185]: ******************************************
 103 [34 ]: *******
 104 [3  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00139441 GB

 Modelled   112 /   117 reflection profiles on image 98
 Modelled   108 /   114 reflection profiles on image 99
 Modelled   122 /   125 reflection profiles on image 100
 Modelled   134 /   137 reflection profiles on image 101
 Modelled   148 /   151 reflection profiles on image 102
 Modelled    29 /    31 reflection profiles on image 103
 Modelled     3 /     3 reflection profiles on image 104
 Beginning modelling job 20

 Frames: 100 -> 110

 Number of reflections
  Partial:     5
  Full:        698
  In ice ring: 0
  Total:       703

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 101 [6  ]: *
 102 [122]: ***************************
 103 [262]: ***********************************************************
 104 [299]: ********************************************************************
 105 [281]: ***************************************************************
 106 [251]: *********************************************************
 107 [158]: ***********************************
 108 [20 ]: ****
 109 [6  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00141787 GB

 Modelled   116 /   120 reflection profiles on image 103
 Modelled   135 /   146 reflection profiles on image 104
 Modelled   153 /   157 reflection profiles on image 105
 Modelled   120 /   122 reflection profiles on image 106
 Modelled   132 /   138 reflection profiles on image 107
 Modelled    14 /    14 reflection profiles on image 108
 Modelled     5 /     6 reflection profiles on image 109
 Beginning modelling job 21

 Frames: 105 -> 115

 Number of reflections
  Partial:     4
  Full:        699
  In ice ring: 0
  Total:       703

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 105 [1  ]: 
 106 [4  ]: 
 107 [111]: **************************
 108 [269]: ****************************************************************
 109 [283]: ********************************************************************
 110 [251]: ************************************************************
 111 [257]: *************************************************************
 112 [190]: *********************************************
 113 [20 ]: ****
 114 [5  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00129574 GB

 Modelled   116 /   119 reflection profiles on image 108
 Modelled   136 /   144 reflection profiles on image 109
 Modelled   139 /   146 reflection profiles on image 110
 Modelled   102 /   104 reflection profiles on image 111
 Modelled   162 /   170 reflection profiles on image 112
 Modelled    14 /    15 reflection profiles on image 113
 Modelled     5 /     5 reflection profiles on image 114
 Beginning modelling job 22

 Frames: 110 -> 120

 Number of reflections
  Partial:     3
  Full:        687
  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.

 110 [2  ]: 
 111 [7  ]: *
 112 [121]: *****************************
 113 [267]: *****************************************************************
 114 [279]: ********************************************************************
 115 [270]: *****************************************************************
 116 [269]: *****************************************************************
 117 [159]: **************************************
 118 [17 ]: ****
 119 [2  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00137248 GB

 Modelled   127 /   129 reflection profiles on image 113
 Modelled   135 /   138 reflection profiles on image 114
 Modelled   122 /   129 reflection profiles on image 115
 Modelled   134 /   135 reflection profiles on image 116
 Modelled   139 /   142 reflection profiles on image 117
 Modelled    14 /    15 reflection profiles on image 118
 Modelled     2 /     2 reflection profiles on image 119
 Beginning modelling job 23

 Frames: 115 -> 125

 Number of reflections
  Partial:     1
  Full:        707
  In ice ring: 0
  Total:       708

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 115 [1  ]: 
 116 [5  ]: *
 117 [127]: *****************************
 118 [265]: **************************************************************
 119 [263]: *************************************************************
 120 [280]: *****************************************************************
 121 [290]: ********************************************************************
 122 [167]: ***************************************
 123 [16 ]: ***
 124 [1  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00132577 GB

 Modelled   133 /   136 reflection profiles on image 118
 Modelled   122 /   126 reflection profiles on image 119
 Modelled   122 /   129 reflection profiles on image 120
 Modelled   140 /   150 reflection profiles on image 121
 Modelled   150 /   151 reflection profiles on image 122
 Modelled    15 /    15 reflection profiles on image 123
 Modelled     1 /     1 reflection profiles on image 124
 Beginning modelling job 24

 Frames: 120 -> 130

 Number of reflections
  Partial:     2
  Full:        701
  In ice ring: 0
  Total:       703

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 121 [2  ]: 
 122 [116]: *************************
 123 [247]: *****************************************************
 124 [300]: ****************************************************************
 125 [314]: ********************************************************************
 126 [288]: **************************************************************
 127 [149]: ********************************
 128 [14 ]: ***
 129 [1  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00156049 GB

 Modelled   110 /   111 reflection profiles on image 123
 Modelled   120 /   128 reflection profiles on image 124
 Modelled   145 /   151 reflection profiles on image 125
 Modelled   160 /   164 reflection profiles on image 126
 Modelled   131 /   135 reflection profiles on image 127
 Modelled    13 /    13 reflection profiles on image 128
 Modelled     0 /     1 reflection profiles on image 129
 Beginning modelling job 25

 Frames: 125 -> 135

 Number of reflections
  Partial:     5
  Full:        679
  In ice ring: 0
  Total:       684

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 126 [6  ]: *
 127 [120]: ****************************
 128 [250]: **********************************************************
 129 [290]: ********************************************************************
 130 [265]: **************************************************************
 131 [261]: *************************************************************
 132 [154]: ************************************
 133 [33 ]: *******
 134 [9  ]: **

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00133146 GB

 Modelled   113 /   116 reflection profiles on image 128
 Modelled   141 /   147 reflection profiles on image 129
 Modelled   127 /   134 reflection profiles on image 130
 Modelled   127 /   133 reflection profiles on image 131
 Modelled   118 /   121 reflection profiles on image 132
 Modelled    24 /    24 reflection profiles on image 133
 Modelled     6 /     9 reflection profiles on image 134
 Beginning modelling job 26

 Frames: 130 -> 140

 Number of reflections
  Partial:     3
  Full:        688
  In ice ring: 0
  Total:       691

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 130 [3  ]: 
 131 [3  ]: 
 132 [124]: *****************************
 133 [246]: **********************************************************
 134 [264]: **************************************************************
 135 [288]: ********************************************************************
 136 [281]: ******************************************************************
 137 [180]: ******************************************
 138 [28 ]: ******
 139 [3  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.0013758 GB

 Modelled   118 /   121 reflection profiles on image 133
 Modelled   111 /   112 reflection profiles on image 134
 Modelled   149 /   154 reflection profiles on image 135
 Modelled   116 /   124 reflection profiles on image 136
 Modelled   149 /   152 reflection profiles on image 137
 Modelled    25 /    25 reflection profiles on image 138
 Modelled     3 /     3 reflection profiles on image 139
 Beginning modelling job 27

 Frames: 135 -> 145

 Number of reflections
  Partial:     2
  Full:        651
  In ice ring: 0
  Total:       653

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 135 [1  ]: 
 136 [6  ]: *
 137 [115]: *****************************
 138 [242]: **************************************************************
 139 [264]: ********************************************************************
 140 [250]: ****************************************************************
 141 [253]: *****************************************************************
 142 [148]: **************************************
 143 [14 ]: ***
 144 [3  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.0012384 GB

 Modelled   110 /   114 reflection profiles on image 138
 Modelled   129 /   134 reflection profiles on image 139
 Modelled   123 /   129 reflection profiles on image 140
 Modelled   126 /   128 reflection profiles on image 141
 Modelled   127 /   134 reflection profiles on image 142
 Modelled    11 /    11 reflection profiles on image 143
 Modelled     2 /     3 reflection profiles on image 144
 Beginning modelling job 28

 Frames: 140 -> 150

 Number of reflections
  Partial:     3
  Full:        675
  In ice ring: 0
  Total:       678

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 141 [6  ]: *
 142 [117]: ****************************
 143 [248]: ************************************************************
 144 [264]: ***************************************************************
 145 [260]: **************************************************************
 146 [281]: ********************************************************************
 147 [167]: ****************************************
 148 [18 ]: ****
 149 [1  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00127729 GB

 Modelled   107 /   108 reflection profiles on image 143
 Modelled   134 /   140 reflection profiles on image 144
 Modelled   120 /   126 reflection profiles on image 145
 Modelled   132 /   137 reflection profiles on image 146
 Modelled   143 /   149 reflection profiles on image 147
 Modelled    15 /    17 reflection profiles on image 148
 Modelled     0 /     1 reflection profiles on image 149
 Beginning modelling job 29

 Frames: 145 -> 155

 Number of reflections
  Partial:     1
  Full:        636
  In ice ring: 0
  Total:       637

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 145 [2  ]: 
 146 [8  ]: **
 147 [113]: *****************************
 148 [247]: ***************************************************************
 149 [262]: *******************************************************************
 150 [264]: ********************************************************************
 151 [246]: ***************************************************************
 152 [144]: *************************************
 153 [20 ]: *****
 154 [4  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00122809 GB

 Modelled   108 /   109 reflection profiles on image 148
 Modelled   123 /   131 reflection profiles on image 149
 Modelled   128 /   132 reflection profiles on image 150
 Modelled   118 /   121 reflection profiles on image 151
 Modelled   122 /   124 reflection profiles on image 152
 Modelled    15 /    16 reflection profiles on image 153
 Modelled     4 /     4 reflection profiles on image 154
 Beginning modelling job 30

 Frames: 150 -> 160

 Number of reflections
  Partial:     2
  Full:        689
  In ice ring: 0
  Total:       691

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 150 [1  ]: 
 151 [7  ]: *
 152 [119]: ***************************
 153 [243]: ********************************************************
 154 [274]: ***************************************************************
 155 [293]: ********************************************************************
 156 [276]: ****************************************************************
 157 [165]: **************************************
 158 [19 ]: ****
 159 [5  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00138066 GB

 Modelled   114 /   118 reflection profiles on image 153
 Modelled   112 /   118 reflection profiles on image 154
 Modelled   147 /   152 reflection profiles on image 155
 Modelled   133 /   138 reflection profiles on image 156
 Modelled   140 /   146 reflection profiles on image 157
 Modelled    13 /    14 reflection profiles on image 158
 Modelled     4 /     5 reflection profiles on image 159
 Beginning modelling job 31

 Frames: 155 -> 165

 Number of reflections
  Partial:     1
  Full:        625
  In ice ring: 0
  Total:       626

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 156 [4  ]: *
 157 [114]: *******************************
 158 [237]: ****************************************************************
 159 [248]: ********************************************************************
 160 [248]: ********************************************************************
 161 [234]: ****************************************************************
 162 [153]: *****************************************
 163 [17 ]: ****
 164 [1  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00109654 GB

 Modelled   103 /   105 reflection profiles on image 158
 Modelled   122 /   125 reflection profiles on image 159
 Modelled   134 /   137 reflection profiles on image 160
 Modelled   103 /   106 reflection profiles on image 161
 Modelled   128 /   136 reflection profiles on image 162
 Modelled    16 /    16 reflection profiles on image 163
 Modelled     1 /     1 reflection profiles on image 164
 Beginning modelling job 32

 Frames: 160 -> 170

 Number of reflections
  Partial:     2
  Full:        664
  In ice ring: 0
  Total:       666

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 161 [4  ]: 
 162 [127]: ******************************
 163 [266]: ****************************************************************
 164 [280]: ********************************************************************
 165 [266]: ****************************************************************
 166 [252]: *************************************************************
 167 [152]: ************************************
 168 [15 ]: ***
 169 [1  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00133084 GB

 Modelled   112 /   116 reflection profiles on image 163
 Modelled   131 /   135 reflection profiles on image 164
 Modelled   131 /   135 reflection profiles on image 165
 Modelled   125 /   128 reflection profiles on image 166
 Modelled   134 /   137 reflection profiles on image 167
 Modelled    14 /    14 reflection profiles on image 168
 Modelled     0 /     1 reflection profiles on image 169
 Beginning modelling job 33

 Frames: 165 -> 175

 Number of reflections
  Partial:     5
  Full:        655
  In ice ring: 0
  Total:       660

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 166 [8  ]: *
 167 [112]: **************************
 168 [231]: ******************************************************
 169 [244]: *********************************************************
 170 [283]: ******************************************************************
 171 [288]: ********************************************************************
 172 [159]: *************************************
 173 [24 ]: *****
 174 [5  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00130912 GB

 Modelled    98 /   104 reflection profiles on image 168
 Modelled   112 /   119 reflection profiles on image 169
 Modelled   120 /   127 reflection profiles on image 170
 Modelled   143 /   151 reflection profiles on image 171
 Modelled   133 /   135 reflection profiles on image 172
 Modelled    19 /    19 reflection profiles on image 173
 Modelled     3 /     5 reflection profiles on image 174
 Beginning modelling job 34

 Frames: 170 -> 180

 Number of reflections
  Partial:     4
  Full:        636
  In ice ring: 0
  Total:       640

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 170 [1  ]: 
 171 [9  ]: **
 172 [112]: ****************************
 173 [233]: ***********************************************************
 174 [265]: ********************************************************************
 175 [253]: ****************************************************************
 176 [250]: ****************************************************************
 177 [159]: ****************************************
 178 [37 ]: *********
 179 [4  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00123 GB

 Modelled   106 /   111 reflection profiles on image 173
 Modelled   122 /   124 reflection profiles on image 174
 Modelled   130 /   139 reflection profiles on image 175
 Modelled   104 /   107 reflection profiles on image 176
 Modelled   118 /   122 reflection profiles on image 177
 Modelled    31 /    33 reflection profiles on image 178
 Modelled     4 /     4 reflection profiles on image 179
 Beginning modelling job 35

 Frames: 175 -> 185

 Number of reflections
  Partial:     1
  Full:        632
  In ice ring: 0
  Total:       633

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 176 [4  ]: *
 177 [109]: ****************************
 178 [235]: **************************************************************
 179 [249]: ******************************************************************
 180 [256]: ********************************************************************
 181 [254]: *******************************************************************
 182 [141]: *************************************
 183 [20 ]: *****
 184 [3  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00117092 GB

 Modelled   104 /   105 reflection profiles on image 178
 Modelled   131 /   138 reflection profiles on image 179
 Modelled   110 /   116 reflection profiles on image 180
 Modelled   125 /   133 reflection profiles on image 181
 Modelled   117 /   121 reflection profiles on image 182
 Modelled    16 /    17 reflection profiles on image 183
 Modelled     3 /     3 reflection profiles on image 184
 Beginning modelling job 36

 Frames: 180 -> 190

 Number of reflections
  Partial:     2
  Full:        616
  In ice ring: 0
  Total:       618

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 180 [1  ]: 
 181 [5  ]: *
 182 [118]: ******************************
 183 [250]: *****************************************************************
 184 [261]: ********************************************************************
 185 [254]: ******************************************************************
 186 [235]: *************************************************************
 187 [137]: ***********************************
 188 [14 ]: ***
 189 [1  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00117671 GB

 Modelled   108 /   112 reflection profiles on image 183
 Modelled   119 /   125 reflection profiles on image 184
 Modelled   123 /   128 reflection profiles on image 185
 Modelled   112 /   116 reflection profiles on image 186
 Modelled   117 /   123 reflection profiles on image 187
 Modelled    13 /    13 reflection profiles on image 188
 Modelled     0 /     1 reflection profiles on image 189
 Beginning modelling job 37

 Frames: 185 -> 195

 Number of reflections
  Partial:     5
  Full:        615
  In ice ring: 0
  Total:       620

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 185 [2  ]: 
 186 [5  ]: *
 187 [110]: ****************************
 188 [236]: *************************************************************
 189 [261]: ********************************************************************
 190 [260]: *******************************************************************
 191 [238]: **************************************************************
 192 [158]: *****************************************
 193 [27 ]: *******
 194 [9  ]: **

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00120172 GB

 Modelled   102 /   108 reflection profiles on image 188
 Modelled   114 /   122 reflection profiles on image 189
 Modelled   127 /   133 reflection profiles on image 190
 Modelled    96 /    99 reflection profiles on image 191
 Modelled   127 /   131 reflection profiles on image 192
 Modelled    17 /    18 reflection profiles on image 193
 Modelled     7 /     9 reflection profiles on image 194
 Beginning modelling job 38

 Frames: 190 -> 200

 Number of reflections
  Partial:     8
  Full:        637
  In ice ring: 0
  Total:       645

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 190 [1  ]: 
 191 [6  ]: *
 192 [115]: ****************************
 193 [239]: **********************************************************
 194 [276]: ********************************************************************
 195 [272]: *******************************************************************
 196 [258]: ***************************************************************
 197 [127]: *******************************
 198 [13 ]: ***
 199 [4  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00119497 GB

 Modelled   100 /   103 reflection profiles on image 193
 Modelled   139 /   145 reflection profiles on image 194
 Modelled   121 /   127 reflection profiles on image 195
 Modelled   138 /   143 reflection profiles on image 196
 Modelled   111 /   114 reflection profiles on image 197
 Modelled     8 /     9 reflection profiles on image 198
 Modelled     1 /     4 reflection profiles on image 199
 Beginning modelling job 39

 Frames: 195 -> 205

 Number of reflections
  Partial:     7
  Full:        624
  In ice ring: 0
  Total:       631

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 196 [2  ]: 
 197 [104]: *************************
 198 [244]: ************************************************************
 199 [276]: ********************************************************************
 200 [256]: ***************************************************************
 201 [246]: ************************************************************
 202 [162]: ***************************************
 203 [23 ]: *****
 204 [5  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00130981 GB

 Modelled    92 /    96 reflection profiles on image 198
 Modelled   126 /   135 reflection profiles on image 199
 Modelled   127 /   134 reflection profiles on image 200
 Modelled   100 /   104 reflection profiles on image 201
 Modelled   132 /   139 reflection profiles on image 202
 Modelled    18 /    18 reflection profiles on image 203
 Modelled     3 /     5 reflection profiles on image 204
 Beginning modelling job 40

 Frames: 200 -> 210

 Number of reflections
  Partial:     2
  Full:        567
  In ice ring: 0
  Total:       569

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 200 [2  ]: 
 201 [7  ]: *
 202 [96 ]: *************************
 203 [201]: ******************************************************
 204 [233]: **************************************************************
 205 [253]: ********************************************************************
 206 [230]: *************************************************************
 207 [130]: **********************************
 208 [24 ]: ******
 209 [1  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00115068 GB

 Modelled    90 /    92 reflection profiles on image 203
 Modelled    97 /   101 reflection profiles on image 204
 Modelled   122 /   125 reflection profiles on image 205
 Modelled   118 /   121 reflection profiles on image 206
 Modelled   104 /   106 reflection profiles on image 207
 Modelled    21 /    23 reflection profiles on image 208
 Modelled     1 /     1 reflection profiles on image 209
 Beginning modelling job 41

 Frames: 205 -> 215

 Number of reflections
  Partial:     0
  Full:        623
  In ice ring: 0
  Total:       623

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 206 [5  ]: *
 207 [121]: ********************************
 208 [255]: ********************************************************************
 209 [254]: *******************************************************************
 210 [237]: ***************************************************************
 211 [237]: ***************************************************************
 212 [149]: ***************************************
 213 [15 ]: ****
 214 [2  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00116819 GB

 Modelled   113 /   115 reflection profiles on image 208
 Modelled   123 /   125 reflection profiles on image 209
 Modelled   117 /   119 reflection profiles on image 210
 Modelled   108 /   115 reflection profiles on image 211
 Modelled   128 /   134 reflection profiles on image 212
 Modelled    13 /    13 reflection profiles on image 213
 Modelled     2 /     2 reflection profiles on image 214
 Beginning modelling job 42

 Frames: 210 -> 220

 Number of reflections
  Partial:     2
  Full:        554
  In ice ring: 0
  Total:       556

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 211 [7  ]: **
 212 [85 ]: ************************
 213 [197]: ********************************************************
 214 [234]: *******************************************************************
 215 [223]: ****************************************************************
 216 [236]: ********************************************************************
 217 [140]: ****************************************
 218 [28 ]: ********
 219 [7  ]: **

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00106133 GB

 Modelled    74 /    77 reflection profiles on image 213
 Modelled   114 /   119 reflection profiles on image 214
 Modelled   104 /   108 reflection profiles on image 215
 Modelled   108 /   112 reflection profiles on image 216
 Modelled   108 /   112 reflection profiles on image 217
 Modelled    18 /    21 reflection profiles on image 218
 Modelled     6 /     7 reflection profiles on image 219
 Beginning modelling job 43

 Frames: 215 -> 225

 Number of reflections
  Partial:     1
  Full:        595
  In ice ring: 0
  Total:       596

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 215 [3  ]: 
 216 [8  ]: **
 217 [104]: **************************
 218 [228]: **********************************************************
 219 [243]: **************************************************************
 220 [264]: ********************************************************************
 221 [244]: **************************************************************
 222 [142]: ************************************
 223 [20 ]: *****
 224 [2  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00121998 GB

 Modelled    91 /    93 reflection profiles on image 218
 Modelled   107 /   108 reflection profiles on image 219
 Modelled   130 /   137 reflection profiles on image 220
 Modelled   110 /   116 reflection profiles on image 221
 Modelled   116 /   122 reflection profiles on image 222
 Modelled    18 /    18 reflection profiles on image 223
 Modelled     2 /     2 reflection profiles on image 224
 Beginning modelling job 44

 Frames: 220 -> 230

 Number of reflections
  Partial:     0
  Full:        589
  In ice ring: 0
  Total:       589

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 220 [2  ]: 
 221 [5  ]: *
 222 [101]: ****************************
 223 [220]: *************************************************************
 224 [222]: *************************************************************
 225 [235]: *****************************************************************
 226 [244]: ********************************************************************
 227 [143]: ***************************************
 228 [29 ]: ********
 229 [3  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00110024 GB

 Modelled    97 /    97 reflection profiles on image 223
 Modelled   110 /   115 reflection profiles on image 224
 Modelled   105 /   111 reflection profiles on image 225
 Modelled   115 /   123 reflection profiles on image 226
 Modelled   110 /   114 reflection profiles on image 227
 Modelled    24 /    26 reflection profiles on image 228
 Modelled     3 /     3 reflection profiles on image 229
 Beginning modelling job 45

 Frames: 225 -> 235

 Number of reflections
  Partial:     4
  Full:        576
  In ice ring: 0
  Total:       580

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 225 [1  ]: 
 226 [11 ]: **
 227 [109]: *****************************
 228 [217]: **********************************************************
 229 [243]: *****************************************************************
 230 [251]: ********************************************************************
 231 [227]: *************************************************************
 232 [136]: ************************************
 233 [22 ]: *****
 234 [3  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00115526 GB

 Modelled    92 /    96 reflection profiles on image 228
 Modelled   107 /   110 reflection profiles on image 229
 Modelled   129 /   130 reflection profiles on image 230
 Modelled   105 /   108 reflection profiles on image 231
 Modelled   108 /   114 reflection profiles on image 232
 Modelled    18 /    19 reflection profiles on image 233
 Modelled     1 /     3 reflection profiles on image 234
 Beginning modelling job 46

 Frames: 230 -> 240

 Number of reflections
  Partial:     2
  Full:        574
  In ice ring: 0
  Total:       576

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 230 [1  ]: 
 231 [5  ]: *
 232 [100]: ***************************
 233 [212]: **********************************************************
 234 [230]: ***************************************************************
 235 [228]: ***************************************************************
 236 [246]: ********************************************************************
 237 [147]: ****************************************
 238 [24 ]: ******
 239 [2  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00111198 GB

 Modelled    82 /    91 reflection profiles on image 233
 Modelled   109 /   116 reflection profiles on image 234
 Modelled   101 /   110 reflection profiles on image 235
 Modelled   105 /   112 reflection profiles on image 236
 Modelled   120 /   123 reflection profiles on image 237
 Modelled    22 /    22 reflection profiles on image 238
 Modelled     2 /     2 reflection profiles on image 239
 Beginning modelling job 47

 Frames: 235 -> 245

 Number of reflections
  Partial:     4
  Full:        590
  In ice ring: 0
  Total:       594

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 236 [5  ]: *
 237 [92 ]: ************************
 238 [219]: ***********************************************************
 239 [234]: ***************************************************************
 240 [247]: ******************************************************************
 241 [251]: ********************************************************************
 242 [144]: ***************************************
 243 [25 ]: ******
 244 [3  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00112796 GB

 Modelled    90 /    93 reflection profiles on image 238
 Modelled   110 /   116 reflection profiles on image 239
 Modelled   115 /   119 reflection profiles on image 240
 Modelled   121 /   122 reflection profiles on image 241
 Modelled   114 /   119 reflection profiles on image 242
 Modelled    20 /    22 reflection profiles on image 243
 Modelled     1 /     3 reflection profiles on image 244
 Beginning modelling job 48

 Frames: 240 -> 250

 Number of reflections
  Partial:     3
  Full:        587
  In ice ring: 0
  Total:       590

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 240 [1  ]: 
 241 [6  ]: *
 242 [115]: *******************************
 243 [220]: ************************************************************
 244 [227]: *************************************************************
 245 [249]: ********************************************************************
 246 [236]: ****************************************************************
 247 [146]: ***************************************
 248 [22 ]: ******
 249 [4  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.0011586 GB

 Modelled   102 /   106 reflection profiles on image 243
 Modelled   103 /   105 reflection profiles on image 244
 Modelled   116 /   119 reflection profiles on image 245
 Modelled   106 /   114 reflection profiles on image 246
 Modelled   120 /   124 reflection profiles on image 247
 Modelled    18 /    18 reflection profiles on image 248
 Modelled     3 /     4 reflection profiles on image 249
 Beginning modelling job 49

 Frames: 245 -> 255

 Number of reflections
  Partial:     3
  Full:        594
  In ice ring: 0
  Total:       597

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 246 [5  ]: *
 247 [106]: *****************************
 248 [246]: ********************************************************************
 249 [229]: ***************************************************************
 250 [241]: ******************************************************************
 251 [224]: *************************************************************
 252 [116]: ********************************
 253 [22 ]: ******
 254 [3  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00107771 GB

 Modelled   117 /   124 reflection profiles on image 248
 Modelled   105 /   111 reflection profiles on image 249
 Modelled   123 /   125 reflection profiles on image 250
 Modelled   120 /   121 reflection profiles on image 251
 Modelled    92 /    94 reflection profiles on image 252
 Modelled    19 /    19 reflection profiles on image 253
 Modelled     1 /     3 reflection profiles on image 254
 Beginning modelling job 50

 Frames: 250 -> 260

 Number of reflections
  Partial:     4
  Full:        593
  In ice ring: 0
  Total:       597

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 250 [1  ]: 
 251 [7  ]: *
 252 [106]: ****************************
 253 [213]: ********************************************************
 254 [224]: ***********************************************************
 255 [248]: ******************************************************************
 256 [255]: ********************************************************************
 257 [152]: ****************************************
 258 [24 ]: ******
 259 [6  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00118091 GB

 Modelled   107 /   110 reflection profiles on image 253
 Modelled   100 /   105 reflection profiles on image 254
 Modelled   105 /   108 reflection profiles on image 255
 Modelled   119 /   122 reflection profiles on image 256
 Modelled   124 /   128 reflection profiles on image 257
 Modelled    18 /    18 reflection profiles on image 258
 Modelled     5 /     6 reflection profiles on image 259
 Beginning modelling job 51

 Frames: 255 -> 265

 Number of reflections
  Partial:     1
  Full:        593
  In ice ring: 0
  Total:       594

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 256 [6  ]: *
 257 [100]: ***************************
 258 [225]: *************************************************************
 259 [248]: ********************************************************************
 260 [238]: *****************************************************************
 261 [218]: ***********************************************************
 262 [124]: **********************************
 263 [15 ]: ****
 264 [3  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.0011067 GB

 Modelled    98 /   102 reflection profiles on image 258
 Modelled   125 /   129 reflection profiles on image 259
 Modelled   116 /   125 reflection profiles on image 260
 Modelled   110 /   114 reflection profiles on image 261
 Modelled   109 /   109 reflection profiles on image 262
 Modelled    12 /    12 reflection profiles on image 263
 Modelled     3 /     3 reflection profiles on image 264
 Beginning modelling job 52

 Frames: 260 -> 270

 Number of reflections
  Partial:     0
  Full:        628
  In ice ring: 0
  Total:       628

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 261 [2  ]: 
 262 [115]: ****************************
 263 [233]: ********************************************************
 264 [221]: ******************************************************
 265 [254]: **************************************************************
 266 [278]: ********************************************************************
 267 [163]: ***************************************
 268 [24 ]: *****
 269 [4  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00120277 GB

 Modelled   104 /   112 reflection profiles on image 263
 Modelled    93 /   101 reflection profiles on image 264
 Modelled   114 /   115 reflection profiles on image 265
 Modelled   134 /   137 reflection profiles on image 266
 Modelled   133 /   139 reflection profiles on image 267
 Modelled    20 /    20 reflection profiles on image 268
 Modelled     4 /     4 reflection profiles on image 269
 Beginning modelling job 53

 Frames: 265 -> 275

 Number of reflections
  Partial:     4
  Full:        601
  In ice ring: 0
  Total:       605

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 266 [10 ]: **
 267 [105]: ***************************
 268 [218]: *********************************************************
 269 [257]: ********************************************************************
 270 [250]: ******************************************************************
 271 [243]: ****************************************************************
 272 [133]: ***********************************
 273 [23 ]: ******
 274 [4  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00118745 GB

 Modelled    91 /    93 reflection profiles on image 268
 Modelled   125 /   129 reflection profiles on image 269
 Modelled   118 /   121 reflection profiles on image 270
 Modelled   128 /   129 reflection profiles on image 271
 Modelled   104 /   110 reflection profiles on image 272
 Modelled    17 /    19 reflection profiles on image 273
 Modelled     2 /     4 reflection profiles on image 274
 Beginning modelling job 54

 Frames: 270 -> 280

 Number of reflections
  Partial:     2
  Full:        627
  In ice ring: 0
  Total:       629

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 270 [1  ]: 
 271 [2  ]: 
 272 [107]: ****************************
 273 [249]: *****************************************************************
 274 [257]: ********************************************************************
 275 [248]: *****************************************************************
 276 [237]: **************************************************************
 277 [128]: *********************************
 278 [23 ]: ******

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00114208 GB

 Modelled   110 /   118 reflection profiles on image 273
 Modelled   132 /   137 reflection profiles on image 274
 Modelled   120 /   125 reflection profiles on image 275
 Modelled   120 /   121 reflection profiles on image 276
 Modelled   100 /   105 reflection profiles on image 277
 Modelled    22 /    23 reflection profiles on image 278
 Beginning modelling job 55

 Frames: 275 -> 285

 Number of reflections
  Partial:     0
  Full:        625
  In ice ring: 0
  Total:       625

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 276 [6  ]: *
 277 [114]: *****************************
 278 [247]: **************************************************************
 279 [267]: ********************************************************************
 280 [240]: *************************************************************
 281 [231]: **********************************************************
 282 [142]: ************************************
 283 [25 ]: ******
 284 [3  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00115076 GB

 Modelled   102 /   106 reflection profiles on image 278
 Modelled   138 /   141 reflection profiles on image 279
 Modelled   122 /   128 reflection profiles on image 280
 Modelled   104 /   108 reflection profiles on image 281
 Modelled   114 /   117 reflection profiles on image 282
 Modelled    22 /    22 reflection profiles on image 283
 Modelled     3 /     3 reflection profiles on image 284
 Beginning modelling job 56

 Frames: 280 -> 290

 Number of reflections
  Partial:     2
  Full:        608
  In ice ring: 0
  Total:       610

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 281 [6  ]: *
 282 [111]: *****************************
 283 [234]: **************************************************************
 284 [254]: ********************************************************************
 285 [235]: **************************************************************
 286 [233]: **************************************************************
 287 [135]: ************************************
 288 [13 ]: ***
 289 [2  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00112654 GB

 Modelled    99 /   100 reflection profiles on image 283
 Modelled   124 /   129 reflection profiles on image 284
 Modelled   126 /   130 reflection profiles on image 285
 Modelled   113 /   116 reflection profiles on image 286
 Modelled   116 /   122 reflection profiles on image 287
 Modelled    10 /    11 reflection profiles on image 288
 Modelled     1 /     2 reflection profiles on image 289
 Beginning modelling job 57

 Frames: 285 -> 295

 Number of reflections
  Partial:     1
  Full:        621
  In ice ring: 0
  Total:       622

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 286 [7  ]: *
 287 [100]: *************************
 288 [229]: **********************************************************
 289 [260]: *****************************************************************
 290 [268]: ********************************************************************
 291 [240]: ************************************************************
 292 [137]: **********************************
 293 [22 ]: *****

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00121771 GB

 Modelled   100 /   103 reflection profiles on image 288
 Modelled   130 /   131 reflection profiles on image 289
 Modelled   127 /   129 reflection profiles on image 290
 Modelled   113 /   122 reflection profiles on image 291
 Modelled   109 /   115 reflection profiles on image 292
 Modelled    20 /    22 reflection profiles on image 293
 Beginning modelling job 58

 Frames: 290 -> 300

 Number of reflections
  Partial:     2
  Full:        618
  In ice ring: 0
  Total:       620

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 290 [1  ]: 
 291 [6  ]: *
 292 [112]: ******************************
 293 [241]: ******************************************************************
 294 [230]: ***************************************************************
 295 [247]: ********************************************************************
 296 [242]: ******************************************************************
 297 [141]: **************************************
 298 [18 ]: ****
 299 [2  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00114871 GB

 Modelled   110 /   114 reflection profiles on image 293
 Modelled   114 /   119 reflection profiles on image 294
 Modelled   114 /   117 reflection profiles on image 295
 Modelled   125 /   129 reflection profiles on image 296
 Modelled   119 /   123 reflection profiles on image 297
 Modelled    15 /    16 reflection profiles on image 298
 Modelled     1 /     2 reflection profiles on image 299
 Beginning modelling job 59

 Frames: 295 -> 305

 Number of reflections
  Partial:     3
  Full:        630
  In ice ring: 0
  Total:       633

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 296 [2  ]: 
 297 [103]: *************************
 298 [234]: **********************************************************
 299 [271]: ********************************************************************
 300 [267]: ******************************************************************
 301 [240]: ************************************************************
 302 [146]: ************************************
 303 [18 ]: ****
 304 [4  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00124526 GB

 Modelled   101 /   103 reflection profiles on image 298
 Modelled   117 /   121 reflection profiles on image 299
 Modelled   140 /   141 reflection profiles on image 300
 Modelled   119 /   122 reflection profiles on image 301
 Modelled   125 /   128 reflection profiles on image 302
 Modelled    14 /    14 reflection profiles on image 303
 Modelled     3 /     4 reflection profiles on image 304
 Beginning modelling job 60

 Frames: 300 -> 310

 Number of reflections
  Partial:     5
  Full:        602
  In ice ring: 0
  Total:       607

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 301 [7  ]: *
 302 [95 ]: *************************
 303 [219]: ***********************************************************
 304 [248]: *******************************************************************
 305 [234]: ***************************************************************
 306 [251]: ********************************************************************
 307 [157]: ******************************************
 308 [23 ]: ******
 309 [3  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00114182 GB

 Modelled    87 /    93 reflection profiles on image 303
 Modelled   116 /   121 reflection profiles on image 304
 Modelled   120 /   122 reflection profiles on image 305
 Modelled   111 /   114 reflection profiles on image 306
 Modelled   131 /   134 reflection profiles on image 307
 Modelled    19 /    20 reflection profiles on image 308
 Modelled     1 /     3 reflection profiles on image 309
 Beginning modelling job 61

 Frames: 305 -> 315

 Number of reflections
  Partial:     2
  Full:        645
  In ice ring: 0
  Total:       647

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 305 [1  ]: 
 306 [4  ]: *
 307 [122]: ********************************
 308 [247]: *****************************************************************
 309 [251]: ******************************************************************
 310 [253]: *******************************************************************
 311 [256]: ********************************************************************
 312 [160]: ******************************************
 313 [24 ]: ******
 314 [1  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00118936 GB

 Modelled   117 /   118 reflection profiles on image 308
 Modelled   121 /   122 reflection profiles on image 309
 Modelled   125 /   129 reflection profiles on image 310
 Modelled   116 /   118 reflection profiles on image 311
 Modelled   134 /   136 reflection profiles on image 312
 Modelled    23 /    23 reflection profiles on image 313
 Modelled     1 /     1 reflection profiles on image 314
 Beginning modelling job 62

 Frames: 310 -> 320

 Number of reflections
  Partial:     0
  Full:        587
  In ice ring: 0
  Total:       587

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 310 [2  ]: 
 311 [10 ]: **
 312 [106]: ****************************
 313 [225]: ************************************************************
 314 [246]: ******************************************************************
 315 [233]: ***************************************************************
 316 [251]: ********************************************************************
 317 [141]: **************************************
 318 [15 ]: ****
 319 [1  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00119054 GB

 Modelled    93 /    98 reflection profiles on image 313
 Modelled   114 /   118 reflection profiles on image 314
 Modelled    99 /   106 reflection profiles on image 315
 Modelled   122 /   124 reflection profiles on image 316
 Modelled   121 /   126 reflection profiles on image 317
 Modelled    13 /    14 reflection profiles on image 318
 Modelled     1 /     1 reflection profiles on image 319
 Beginning modelling job 63

 Frames: 315 -> 325

 Number of reflections
  Partial:     2
  Full:        626
  In ice ring: 0
  Total:       628

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 316 [5  ]: *
 317 [122]: ********************************
 318 [248]: *****************************************************************
 319 [258]: ********************************************************************
 320 [251]: ******************************************************************
 321 [226]: ***********************************************************
 322 [132]: **********************************
 323 [15 ]: ***
 324 [1  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00119021 GB

 Modelled   118 /   121 reflection profiles on image 318
 Modelled   122 /   129 reflection profiles on image 319
 Modelled   123 /   125 reflection profiles on image 320
 Modelled   119 /   121 reflection profiles on image 321
 Modelled   110 /   117 reflection profiles on image 322
 Modelled    14 /    14 reflection profiles on image 323
 Modelled     0 /     1 reflection profiles on image 324
 Beginning modelling job 64

 Frames: 320 -> 330

 Number of reflections
  Partial:     3
  Full:        667
  In ice ring: 0
  Total:       670

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 320 [1  ]: 
 321 [6  ]: *
 322 [117]: ****************************
 323 [246]: ***********************************************************
 324 [274]: ******************************************************************
 325 [279]: ********************************************************************
 326 [267]: *****************************************************************
 327 [161]: ***************************************
 328 [29 ]: *******
 329 [5  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00129341 GB

 Modelled   103 /   109 reflection profiles on image 323
 Modelled   130 /   133 reflection profiles on image 324
 Modelled   135 /   139 reflection profiles on image 325
 Modelled   123 /   128 reflection profiles on image 326
 Modelled   128 /   132 reflection profiles on image 327
 Modelled    23 /    24 reflection profiles on image 328
 Modelled     3 /     5 reflection profiles on image 329
 Beginning modelling job 65

 Frames: 325 -> 335

 Number of reflections
  Partial:     4
  Full:        623
  In ice ring: 0
  Total:       627

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 325 [2  ]: 
 326 [5  ]: *
 327 [109]: **************************
 328 [249]: ************************************************************
 329 [278]: ********************************************************************
 330 [245]: ***********************************************************
 331 [237]: *********************************************************
 332 [132]: ********************************
 333 [20 ]: ****
 334 [3  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.0012828 GB

 Modelled    95 /   101 reflection profiles on image 328
 Modelled   143 /   147 reflection profiles on image 329
 Modelled   118 /   126 reflection profiles on image 330
 Modelled   118 /   121 reflection profiles on image 331
 Modelled   106 /   112 reflection profiles on image 332
 Modelled    16 /    17 reflection profiles on image 333
 Modelled     1 /     3 reflection profiles on image 334
 Beginning modelling job 66

 Frames: 330 -> 340

 Number of reflections
  Partial:     4
  Full:        622
  In ice ring: 0
  Total:       626

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 330 [3  ]: 
 331 [6  ]: *
 332 [121]: ********************************
 333 [254]: *******************************************************************
 334 [229]: ************************************************************
 335 [248]: *****************************************************************
 336 [256]: ********************************************************************
 337 [148]: ***************************************
 338 [20 ]: *****
 339 [3  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00118104 GB

 Modelled   121 /   124 reflection profiles on image 333
 Modelled   114 /   119 reflection profiles on image 334
 Modelled   100 /   107 reflection profiles on image 335
 Modelled   123 /   128 reflection profiles on image 336
 Modelled   124 /   128 reflection profiles on image 337
 Modelled    16 /    17 reflection profiles on image 338
 Modelled     1 /     3 reflection profiles on image 339
 Beginning modelling job 67

 Frames: 335 -> 345

 Number of reflections
  Partial:     2
  Full:        678
  In ice ring: 0
  Total:       680

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 336 [5  ]: *
 337 [120]: *****************************
 338 [257]: **************************************************************
 339 [280]: ********************************************************************
 340 [268]: *****************************************************************
 341 [263]: ***************************************************************
 342 [158]: **************************************
 343 [25 ]: ******
 344 [1  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00129001 GB

 Modelled   113 /   115 reflection profiles on image 338
 Modelled   135 /   143 reflection profiles on image 339
 Modelled   123 /   133 reflection profiles on image 340
 Modelled   123 /   131 reflection profiles on image 341
 Modelled   127 /   133 reflection profiles on image 342
 Modelled    23 /    24 reflection profiles on image 343
 Modelled     1 /     1 reflection profiles on image 344
 Beginning modelling job 68

 Frames: 340 -> 350

 Number of reflections
  Partial:     4
  Full:        619
  In ice ring: 0
  Total:       623

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 340 [1  ]: 
 341 [8  ]: **
 342 [105]: ****************************
 343 [237]: ***************************************************************
 344 [244]: *****************************************************************
 345 [220]: **********************************************************
 346 [254]: ********************************************************************
 347 [170]: *********************************************
 348 [18 ]: ****
 349 [4  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00115571 GB

 Modelled   105 /   107 reflection profiles on image 343
 Modelled   118 /   128 reflection profiles on image 344
 Modelled   102 /   106 reflection profiles on image 345
 Modelled   110 /   112 reflection profiles on image 346
 Modelled   147 /   152 reflection profiles on image 347
 Modelled    13 /    14 reflection profiles on image 348
 Modelled     2 /     4 reflection profiles on image 349
 Beginning modelling job 69

 Frames: 345 -> 355

 Number of reflections
  Partial:     6
  Full:        639
  In ice ring: 0
  Total:       645

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 346 [4  ]: 
 347 [106]: **************************
 348 [239]: ***********************************************************
 349 [260]: ****************************************************************
 350 [274]: ********************************************************************
 351 [266]: ******************************************************************
 352 [157]: **************************************
 353 [18 ]: ****
 354 [5  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00126396 GB

 Modelled   101 /   103 reflection profiles on image 348
 Modelled   127 /   130 reflection profiles on image 349
 Modelled   122 /   124 reflection profiles on image 350
 Modelled   126 /   131 reflection profiles on image 351
 Modelled   134 /   139 reflection profiles on image 352
 Modelled    12 /    13 reflection profiles on image 353
 Modelled     3 /     5 reflection profiles on image 354
 Beginning modelling job 70

 Frames: 350 -> 360

 Number of reflections
  Partial:     4
  Full:        683
  In ice ring: 0
  Total:       687

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 350 [2  ]: 
 351 [7  ]: *
 352 [117]: ****************************
 353 [260]: ****************************************************************
 354 [275]: ********************************************************************
 355 [268]: ******************************************************************
 356 [270]: ******************************************************************
 357 [165]: ****************************************
 358 [14 ]: ***
 359 [1  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00132809 GB

 Modelled   109 /   110 reflection profiles on image 353
 Modelled   135 /   143 reflection profiles on image 354
 Modelled   123 /   130 reflection profiles on image 355
 Modelled   134 /   139 reflection profiles on image 356
 Modelled   144 /   151 reflection profiles on image 357
 Modelled    13 /    13 reflection profiles on image 358
 Modelled     0 /     1 reflection profiles on image 359
 Beginning modelling job 71

 Frames: 355 -> 365

 Number of reflections
  Partial:     5
  Full:        649
  In ice ring: 0
  Total:       654

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 356 [6  ]: *
 357 [101]: ***********************
 358 [220]: **************************************************
 359 [265]: *************************************************************
 360 [295]: ********************************************************************
 361 [258]: ***********************************************************
 362 [157]: ************************************
 363 [21 ]: ****
 364 [2  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00135356 GB

 Modelled    93 /    94 reflection profiles on image 358
 Modelled   119 /   124 reflection profiles on image 359
 Modelled   146 /   154 reflection profiles on image 360
 Modelled   118 /   125 reflection profiles on image 361
 Modelled   131 /   136 reflection profiles on image 362
 Modelled    17 /    19 reflection profiles on image 363
 Modelled     0 /     2 reflection profiles on image 364
 Beginning modelling job 72

 Frames: 360 -> 370

 Number of reflections
  Partial:     2
  Full:        649
  In ice ring: 0
  Total:       651

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 361 [12 ]: ***
 362 [104]: **************************
 363 [224]: *********************************************************
 364 [248]: ***************************************************************
 365 [258]: *****************************************************************
 366 [266]: ********************************************************************
 367 [170]: *******************************************
 368 [23 ]: *****
 369 [3  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00122425 GB

 Modelled    97 /    98 reflection profiles on image 363
 Modelled   126 /   128 reflection profiles on image 364
 Modelled   132 /   135 reflection profiles on image 365
 Modelled   114 /   120 reflection profiles on image 366
 Modelled   145 /   147 reflection profiles on image 367
 Modelled    20 /    20 reflection profiles on image 368
 Modelled     3 /     3 reflection profiles on image 369
 Beginning modelling job 73

 Frames: 365 -> 375

 Number of reflections
  Partial:     2
  Full:        660
  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.

 366 [6  ]: *
 367 [129]: *********************************
 368 [247]: ***************************************************************
 369 [254]: *****************************************************************
 370 [239]: *************************************************************
 371 [264]: ********************************************************************
 372 [177]: *********************************************
 373 [23 ]: *****
 374 [4  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00119386 GB

 Modelled   118 /   118 reflection profiles on image 368
 Modelled   122 /   129 reflection profiles on image 369
 Modelled   121 /   125 reflection profiles on image 370
 Modelled   110 /   113 reflection profiles on image 371
 Modelled   151 /   154 reflection profiles on image 372
 Modelled    19 /    19 reflection profiles on image 373
 Modelled     3 /     4 reflection profiles on image 374
 Beginning modelling job 74

 Frames: 370 -> 380

 Number of reflections
  Partial:     1
  Full:        621
  In ice ring: 0
  Total:       622

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 370 [1  ]: 
 371 [5  ]: *
 372 [93 ]: **********************
 373 [232]: *********************************************************
 374 [275]: ********************************************************************
 375 [260]: ****************************************************************
 376 [245]: ************************************************************
 377 [140]: **********************************
 378 [11 ]: **
 379 [3  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00124555 GB

 Modelled    89 /    92 reflection profiles on image 373
 Modelled   133 /   137 reflection profiles on image 374
 Modelled   125 /   128 reflection profiles on image 375
 Modelled   118 /   125 reflection profiles on image 376
 Modelled   126 /   129 reflection profiles on image 377
 Modelled     8 /     8 reflection profiles on image 378
 Modelled     3 /     3 reflection profiles on image 379
 Beginning modelling job 75

 Frames: 375 -> 385

 Number of reflections
  Partial:     0
  Full:        624
  In ice ring: 0
  Total:       624

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 375 [1  ]: 
 376 [3  ]: 
 377 [100]: **************************
 378 [214]: *******************************************************
 379 [245]: ****************************************************************
 380 [260]: ********************************************************************
 381 [258]: *******************************************************************
 382 [151]: ***************************************
 383 [23 ]: ******
 384 [3  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.001179 GB

 Modelled    99 /   103 reflection profiles on image 378
 Modelled   113 /   114 reflection profiles on image 379
 Modelled   127 /   132 reflection profiles on image 380
 Modelled   122 /   124 reflection profiles on image 381
 Modelled   124 /   128 reflection profiles on image 382
 Modelled    20 /    20 reflection profiles on image 383
 Modelled     3 /     3 reflection profiles on image 384
 Beginning modelling job 76

 Frames: 380 -> 390

 Number of reflections
  Partial:     4
  Full:        632
  In ice ring: 0
  Total:       636

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 381 [4  ]: *
 382 [94 ]: ***********************
 383 [222]: ********************************************************
 384 [268]: ********************************************************************
 385 [262]: ******************************************************************
 386 [257]: *****************************************************************
 387 [145]: ************************************
 388 [24 ]: ******
 389 [3  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00125036 GB

 Modelled    92 /    94 reflection profiles on image 383
 Modelled   130 /   134 reflection profiles on image 384
 Modelled   130 /   132 reflection profiles on image 385
 Modelled   128 /   131 reflection profiles on image 386
 Modelled   120 /   121 reflection profiles on image 387
 Modelled    19 /    21 reflection profiles on image 388
 Modelled     1 /     3 reflection profiles on image 389
 Beginning modelling job 77

 Frames: 385 -> 395

 Number of reflections
  Partial:     2
  Full:        672
  In ice ring: 0
  Total:       674

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 385 [1  ]: 
 386 [4  ]: *
 387 [113]: ****************************
 388 [248]: **************************************************************
 389 [263]: ******************************************************************
 390 [269]: ********************************************************************
 391 [260]: *****************************************************************
 392 [154]: **************************************
 393 [21 ]: *****
 394 [1  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00117037 GB

 Modelled   117 /   119 reflection profiles on image 388
 Modelled   129 /   132 reflection profiles on image 389
 Modelled   138 /   141 reflection profiles on image 390
 Modelled   119 /   128 reflection profiles on image 391
 Modelled   129 /   133 reflection profiles on image 392
 Modelled    20 /    20 reflection profiles on image 393
 Modelled     1 /     1 reflection profiles on image 394
 Beginning modelling job 78

 Frames: 390 -> 400

 Number of reflections
  Partial:     2
  Full:        628
  In ice ring: 0
  Total:       630

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 391 [2  ]: 
 392 [112]: *****************************
 393 [227]: ************************************************************
 394 [246]: *****************************************************************
 395 [247]: *****************************************************************
 396 [257]: ********************************************************************
 397 [150]: ***************************************
 398 [17 ]: ****
 399 [4  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00118056 GB

 Modelled   108 /   111 reflection profiles on image 393
 Modelled   122 /   127 reflection profiles on image 394
 Modelled   111 /   116 reflection profiles on image 395
 Modelled   124 /   126 reflection profiles on image 396
 Modelled   131 /   133 reflection profiles on image 397
 Modelled    11 /    13 reflection profiles on image 398
 Modelled     4 /     4 reflection profiles on image 399
 Beginning modelling job 79

 Frames: 395 -> 405

 Number of reflections
  Partial:     3
  Full:        642
  In ice ring: 0
  Total:       645

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 395 [2  ]: 
 396 [9  ]: **
 397 [106]: **************************
 398 [257]: *****************************************************************
 399 [268]: ********************************************************************
 400 [252]: ***************************************************************
 401 [244]: *************************************************************
 402 [147]: *************************************
 403 [20 ]: *****
 404 [3  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00119996 GB

 Modelled    99 /   106 reflection profiles on image 398
 Modelled   134 /   140 reflection profiles on image 399
 Modelled   134 /   137 reflection profiles on image 400
 Modelled   109 /   115 reflection profiles on image 401
 Modelled   125 /   127 reflection profiles on image 402
 Modelled    15 /    17 reflection profiles on image 403
 Modelled     3 /     3 reflection profiles on image 404
 Beginning modelling job 80

 Frames: 400 -> 410

 Number of reflections
  Partial:     3
  Full:        642
  In ice ring: 0
  Total:       645

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 400 [1  ]: 
 401 [9  ]: **
 402 [130]: **********************************
 403 [258]: ********************************************************************
 404 [248]: *****************************************************************
 405 [255]: *******************************************************************
 406 [256]: *******************************************************************
 407 [135]: ***********************************
 408 [18 ]: ****
 409 [4  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00118571 GB

 Modelled   117 /   123 reflection profiles on image 403
 Modelled   129 /   131 reflection profiles on image 404
 Modelled   106 /   112 reflection profiles on image 405
 Modelled   139 /   144 reflection profiles on image 406
 Modelled   112 /   117 reflection profiles on image 407
 Modelled    13 /    14 reflection profiles on image 408
 Modelled     3 /     4 reflection profiles on image 409
 Beginning modelling job 81

 Frames: 405 -> 415

 Number of reflections
  Partial:     5
  Full:        644
  In ice ring: 0
  Total:       649

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 406 [4  ]: *
 407 [109]: ***************************
 408 [245]: **************************************************************
 409 [267]: ********************************************************************
 410 [259]: *****************************************************************
 411 [265]: *******************************************************************
 412 [156]: ***************************************
 413 [24 ]: ******
 414 [5  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00120353 GB

 Modelled   106 /   109 reflection profiles on image 408
 Modelled   122 /   129 reflection profiles on image 409
 Modelled   117 /   124 reflection profiles on image 410
 Modelled   126 /   131 reflection profiles on image 411
 Modelled   131 /   132 reflection profiles on image 412
 Modelled    19 /    19 reflection profiles on image 413
 Modelled     3 /     5 reflection profiles on image 414
 Beginning modelling job 82

 Frames: 410 -> 420

 Number of reflections
  Partial:     2
  Full:        626
  In ice ring: 0
  Total:       628

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 410 [3  ]: 
 411 [7  ]: *
 412 [104]: ****************************
 413 [243]: ******************************************************************
 414 [247]: *******************************************************************
 415 [241]: *****************************************************************
 416 [249]: ********************************************************************
 417 [143]: ***************************************
 418 [18 ]: ****
 419 [2  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00112895 GB

 Modelled   107 /   110 reflection profiles on image 413
 Modelled   125 /   130 reflection profiles on image 414
 Modelled   112 /   120 reflection profiles on image 415
 Modelled   121 /   125 reflection profiles on image 416
 Modelled   123 /   125 reflection profiles on image 417
 Modelled    14 /    16 reflection profiles on image 418
 Modelled     2 /     2 reflection profiles on image 419
 Beginning modelling job 83

 Frames: 415 -> 425

 Number of reflections
  Partial:     0
  Full:        626
  In ice ring: 0
  Total:       626

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 416 [6  ]: *
 417 [119]: *********************************
 418 [242]: *******************************************************************
 419 [238]: ******************************************************************
 420 [233]: ****************************************************************
 421 [245]: ********************************************************************
 422 [145]: ****************************************
 423 [19 ]: *****
 424 [1  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00108401 GB

 Modelled   109 /   113 reflection profiles on image 418
 Modelled   131 /   131 reflection profiles on image 419
 Modelled   112 /   114 reflection profiles on image 420
 Modelled   118 /   123 reflection profiles on image 421
 Modelled   122 /   126 reflection profiles on image 422
 Modelled    16 /    18 reflection profiles on image 423
 Modelled     1 /     1 reflection profiles on image 424
 Beginning modelling job 84

 Frames: 420 -> 430

 Number of reflections
  Partial:     2
  Full:        615
  In ice ring: 0
  Total:       617

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 420 [2  ]: 
 421 [9  ]: **
 422 [111]: ***************************
 423 [214]: *****************************************************
 424 [254]: ***************************************************************
 425 [271]: ********************************************************************
 426 [248]: **************************************************************
 427 [143]: ***********************************
 428 [16 ]: ****
 429 [1  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.0012521 GB

 Modelled    99 /   101 reflection profiles on image 423
 Modelled   105 /   109 reflection profiles on image 424
 Modelled   133 /   135 reflection profiles on image 425
 Modelled   128 /   129 reflection profiles on image 426
 Modelled   124 /   127 reflection profiles on image 427
 Modelled    14 /    15 reflection profiles on image 428
 Modelled     0 /     1 reflection profiles on image 429
 Beginning modelling job 85

 Frames: 425 -> 435

 Number of reflections
  Partial:     1
  Full:        631
  In ice ring: 0
  Total:       632

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 426 [4  ]: 
 427 [106]: **************************
 428 [230]: *********************************************************
 429 [269]: ******************************************************************
 430 [274]: ********************************************************************
 431 [231]: *********************************************************
 432 [125]: *******************************
 433 [15 ]: ***
 434 [1  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00124568 GB

 Modelled   110 /   115 reflection profiles on image 428
 Modelled   107 /   114 reflection profiles on image 429
 Modelled   144 /   149 reflection profiles on image 430
 Modelled   126 /   129 reflection profiles on image 431
 Modelled   108 /   110 reflection profiles on image 432
 Modelled    14 /    14 reflection profiles on image 433
 Modelled     1 /     1 reflection profiles on image 434
 Beginning modelling job 86

 Frames: 430 -> 440

 Number of reflections
  Partial:     1
  Full:        631
  In ice ring: 0
  Total:       632

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 430 [3  ]: 
 431 [6  ]: *
 432 [117]: ******************************
 433 [222]: *********************************************************
 434 [239]: *************************************************************
 435 [254]: *****************************************************************
 436 [263]: ********************************************************************
 437 [151]: ***************************************
 438 [19 ]: ****
 439 [1  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00123358 GB

 Modelled   109 /   113 reflection profiles on image 433
 Modelled   111 /   115 reflection profiles on image 434
 Modelled   118 /   118 reflection profiles on image 435
 Modelled   133 /   135 reflection profiles on image 436
 Modelled   124 /   132 reflection profiles on image 437
 Modelled    18 /    18 reflection profiles on image 438
 Modelled     0 /     1 reflection profiles on image 439
 Beginning modelling job 87

 Frames: 435 -> 445

 Number of reflections
  Partial:     1
  Full:        598
  In ice ring: 0
  Total:       599

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 436 [5  ]: *
 437 [111]: ******************************
 438 [235]: ****************************************************************
 439 [248]: ********************************************************************
 440 [243]: ******************************************************************
 441 [216]: ***********************************************************
 442 [131]: ***********************************
 443 [20 ]: *****
 444 [5  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00113999 GB

 Modelled   110 /   112 reflection profiles on image 438
 Modelled   118 /   126 reflection profiles on image 439
 Modelled   110 /   118 reflection profiles on image 440
 Modelled   111 /   112 reflection profiles on image 441
 Modelled   109 /   111 reflection profiles on image 442
 Modelled    14 /    15 reflection profiles on image 443
 Modelled     4 /     5 reflection profiles on image 444
 Beginning modelling job 88

 Frames: 440 -> 450

 Number of reflections
  Partial:     1
  Full:        631
  In ice ring: 0
  Total:       632

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 441 [5  ]: *
 442 [109]: ***************************
 443 [236]: ***********************************************************
 444 [268]: ********************************************************************
 445 [249]: ***************************************************************
 446 [230]: **********************************************************
 447 [162]: *****************************************
 448 [22 ]: *****
 449 [3  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00126619 GB

 Modelled   101 /   103 reflection profiles on image 443
 Modelled   126 /   129 reflection profiles on image 444
 Modelled   140 /   145 reflection profiles on image 445
 Modelled    89 /    93 reflection profiles on image 446
 Modelled   137 /   140 reflection profiles on image 447
 Modelled    19 /    19 reflection profiles on image 448
 Modelled     3 /     3 reflection profiles on image 449
 Beginning modelling job 89

 Frames: 445 -> 455

 Number of reflections
  Partial:     4
  Full:        624
  In ice ring: 0
  Total:       628

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 446 [6  ]: *
 447 [113]: ******************************
 448 [241]: ****************************************************************
 449 [248]: ******************************************************************
 450 [254]: ********************************************************************
 451 [243]: *****************************************************************
 452 [141]: *************************************
 453 [17 ]: ****
 454 [3  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.0011633 GB

 Modelled   112 /   113 reflection profiles on image 448
 Modelled   113 /   118 reflection profiles on image 449
 Modelled   131 /   135 reflection profiles on image 450
 Modelled   115 /   121 reflection profiles on image 451
 Modelled   121 /   124 reflection profiles on image 452
 Modelled    14 /    14 reflection profiles on image 453
 Modelled     1 /     3 reflection profiles on image 454
 Beginning modelling job 90

 Frames: 450 -> 460

 Number of reflections
  Partial:     4
  Full:        602
  In ice ring: 0
  Total:       606

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 451 [6  ]: *
 452 [105]: ***************************
 453 [220]: *********************************************************
 454 [232]: *************************************************************
 455 [239]: **************************************************************
 456 [258]: ********************************************************************
 457 [156]: *****************************************
 458 [15 ]: ***
 459 [3  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00116036 GB

 Modelled    92 /    98 reflection profiles on image 453
 Modelled   113 /   115 reflection profiles on image 454
 Modelled   105 /   110 reflection profiles on image 455
 Modelled   126 /   127 reflection profiles on image 456
 Modelled   138 /   141 reflection profiles on image 457
 Modelled    12 /    12 reflection profiles on image 458
 Modelled     2 /     3 reflection profiles on image 459
 Beginning modelling job 91

 Frames: 455 -> 465

 Number of reflections
  Partial:     3
  Full:        626
  In ice ring: 0
  Total:       629

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 456 [7  ]: *
 457 [109]: **************************
 458 [224]: ******************************************************
 459 [239]: *********************************************************
 460 [240]: *********************************************************
 461 [282]: ********************************************************************
 462 [164]: ***************************************
 463 [23 ]: *****
 464 [2  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00132118 GB

 Modelled    99 /   105 reflection profiles on image 458
 Modelled   111 /   116 reflection profiles on image 459
 Modelled   101 /   107 reflection profiles on image 460
 Modelled   132 /   137 reflection profiles on image 461
 Modelled   134 /   141 reflection profiles on image 462
 Modelled    18 /    21 reflection profiles on image 463
 Modelled     2 /     2 reflection profiles on image 464
 Beginning modelling job 92

 Frames: 460 -> 470

 Number of reflections
  Partial:     2
  Full:        639
  In ice ring: 0
  Total:       641

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 461 [4  ]: *
 462 [115]: *****************************
 463 [222]: *********************************************************
 464 [261]: *******************************************************************
 465 [262]: ********************************************************************
 466 [248]: ****************************************************************
 467 [153]: ***************************************
 468 [20 ]: *****
 469 [5  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00121676 GB

 Modelled   104 /   110 reflection profiles on image 463
 Modelled   113 /   117 reflection profiles on image 464
 Modelled   135 /   141 reflection profiles on image 465
 Modelled   119 /   120 reflection profiles on image 466
 Modelled   132 /   133 reflection profiles on image 467
 Modelled    15 /    15 reflection profiles on image 468
 Modelled     4 /     5 reflection profiles on image 469
 Beginning modelling job 93

 Frames: 465 -> 475

 Number of reflections
  Partial:     3
  Full:        637
  In ice ring: 0
  Total:       640

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 466 [3  ]: 
 467 [109]: *****************************
 468 [243]: *****************************************************************
 469 [254]: ********************************************************************
 470 [228]: *************************************************************
 471 [238]: ***************************************************************
 472 [167]: ********************************************
 473 [21 ]: *****
 474 [4  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00112703 GB

 Modelled   113 /   119 reflection profiles on image 468
 Modelled   122 /   129 reflection profiles on image 469
 Modelled   123 /   125 reflection profiles on image 470
 Modelled    98 /   100 reflection profiles on image 471
 Modelled   139 /   146 reflection profiles on image 472
 Modelled    16 /    17 reflection profiles on image 473
 Modelled     2 /     4 reflection profiles on image 474
 Beginning modelling job 94

 Frames: 470 -> 480

 Number of reflections
  Partial:     2
  Full:        644
  In ice ring: 0
  Total:       646

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 470 [1  ]: 
 471 [6  ]: *
 472 [115]: *****************************
 473 [242]: **************************************************************
 474 [245]: ***************************************************************
 475 [264]: ********************************************************************
 476 [261]: *******************************************************************
 477 [150]: **************************************
 478 [22 ]: *****
 479 [2  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00130177 GB

 Modelled   114 /   116 reflection profiles on image 473
 Modelled   117 /   118 reflection profiles on image 474
 Modelled   124 /   128 reflection profiles on image 475
 Modelled   130 /   134 reflection profiles on image 476
 Modelled   125 /   128 reflection profiles on image 477
 Modelled    19 /    20 reflection profiles on image 478
 Modelled     2 /     2 reflection profiles on image 479
 Beginning modelling job 95

 Frames: 475 -> 485

 Number of reflections
  Partial:     5
  Full:        616
  In ice ring: 0
  Total:       621

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 475 [4  ]: *
 476 [6  ]: *
 477 [134]: ************************************
 478 [247]: ********************************************************************
 479 [218]: ************************************************************
 480 [223]: *************************************************************
 481 [246]: *******************************************************************
 482 [143]: ***************************************
 483 [22 ]: ******
 484 [5  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00109862 GB

 Modelled   134 /   141 reflection profiles on image 478
 Modelled   106 /   113 reflection profiles on image 479
 Modelled    97 /   100 reflection profiles on image 480
 Modelled   115 /   124 reflection profiles on image 481
 Modelled   117 /   121 reflection profiles on image 482
 Modelled    17 /    17 reflection profiles on image 483
 Modelled     2 /     5 reflection profiles on image 484
 Beginning modelling job 96

 Frames: 480 -> 490

 Number of reflections
  Partial:     3
  Full:        619
  In ice ring: 0
  Total:       622

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 481 [5  ]: *
 482 [95 ]: ***********************
 483 [219]: ******************************************************
 484 [241]: ************************************************************
 485 [272]: ********************************************************************
 486 [265]: ******************************************************************
 487 [147]: ************************************
 488 [18 ]: ****
 489 [1  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00126575 GB

 Modelled    92 /   100 reflection profiles on image 483
 Modelled   113 /   115 reflection profiles on image 484
 Modelled   113 /   115 reflection profiles on image 485
 Modelled   138 /   145 reflection profiles on image 486
 Modelled   123 /   129 reflection profiles on image 487
 Modelled    14 /    17 reflection profiles on image 488
 Modelled     0 /     1 reflection profiles on image 489
 Beginning modelling job 97

 Frames: 485 -> 495

 Number of reflections
  Partial:     7
  Full:        591
  In ice ring: 0
  Total:       598

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 485 [1  ]: 
 486 [3  ]: 
 487 [96 ]: *************************
 488 [219]: **********************************************************
 489 [253]: ********************************************************************
 490 [241]: ****************************************************************
 491 [220]: ***********************************************************
 492 [139]: *************************************
 493 [19 ]: *****
 494 [4  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00112195 GB

 Modelled    92 /    92 reflection profiles on image 488
 Modelled   117 /   123 reflection profiles on image 489
 Modelled   130 /   133 reflection profiles on image 490
 Modelled   108 /   111 reflection profiles on image 491
 Modelled   115 /   120 reflection profiles on image 492
 Modelled    14 /    15 reflection profiles on image 493
 Modelled     1 /     4 reflection profiles on image 494
 Beginning modelling job 98

 Frames: 490 -> 500

 Number of reflections
  Partial:     3
  Full:        614
  In ice ring: 0
  Total:       617

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 491 [5  ]: *
 492 [116]: *******************************
 493 [232]: ***************************************************************
 494 [237]: *****************************************************************
 495 [244]: *******************************************************************
 496 [247]: ********************************************************************
 497 [153]: ******************************************
 498 [18 ]: ****
 499 [3  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00112435 GB

 Modelled   113 /   114 reflection profiles on image 493
 Modelled   110 /   113 reflection profiles on image 494
 Modelled   121 /   125 reflection profiles on image 495
 Modelled   110 /   112 reflection profiles on image 496
 Modelled   128 /   135 reflection profiles on image 497
 Modelled    15 /    15 reflection profiles on image 498
 Modelled     3 /     3 reflection profiles on image 499
 Beginning modelling job 99

 Frames: 495 -> 505

 Number of reflections
  Partial:     4
  Full:        559
  In ice ring: 0
  Total:       563

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 496 [4  ]: *
 497 [88 ]: **************************
 498 [201]: ************************************************************
 499 [221]: ******************************************************************
 500 [225]: *******************************************************************
 501 [226]: ********************************************************************
 502 [142]: ******************************************
 503 [10 ]: ***
 504 [4  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00102001 GB

 Modelled    91 /    93 reflection profiles on image 498
 Modelled   103 /   107 reflection profiles on image 499
 Modelled   116 /   117 reflection profiles on image 500
 Modelled   103 /   104 reflection profiles on image 501
 Modelled   127 /   132 reflection profiles on image 502
 Modelled     6 /     6 reflection profiles on image 503
 Modelled     2 /     4 reflection profiles on image 504
 Beginning modelling job 100

 Frames: 500 -> 510

 Number of reflections
  Partial:     6
  Full:        620
  In ice ring: 0
  Total:       626

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 500 [1  ]: 
 501 [4  ]: *
 502 [108]: ****************************
 503 [235]: **************************************************************
 504 [247]: *****************************************************************
 505 [255]: ********************************************************************
 506 [253]: *******************************************************************
 507 [144]: **************************************
 508 [20 ]: *****
 509 [4  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00116827 GB

 Modelled   106 /   110 reflection profiles on image 503
 Modelled   122 /   127 reflection profiles on image 504
 Modelled   114 /   118 reflection profiles on image 505
 Modelled   123 /   127 reflection profiles on image 506
 Modelled   118 /   124 reflection profiles on image 507
 Modelled    16 /    16 reflection profiles on image 508
 Modelled     3 /     4 reflection profiles on image 509
 Beginning modelling job 101

 Frames: 505 -> 515

 Number of reflections
  Partial:     2
  Full:        586
  In ice ring: 0
  Total:       588

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 505 [1  ]: 
 506 [5  ]: *
 507 [105]: ****************************
 508 [220]: ***********************************************************
 509 [240]: *****************************************************************
 510 [251]: ********************************************************************
 511 [234]: ***************************************************************
 512 [126]: **********************************
 513 [20 ]: *****
 514 [2  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00116844 GB

 Modelled   101 /   104 reflection profiles on image 508
 Modelled   102 /   104 reflection profiles on image 509
 Modelled   121 /   127 reflection profiles on image 510
 Modelled   125 /   127 reflection profiles on image 511
 Modelled   103 /   106 reflection profiles on image 512
 Modelled    18 /    18 reflection profiles on image 513
 Modelled     2 /     2 reflection profiles on image 514
 Beginning modelling job 102

 Frames: 510 -> 520

 Number of reflections
  Partial:     0
  Full:        610
  In ice ring: 0
  Total:       610

 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 [106]: ***************************
 513 [230]: ***********************************************************
 514 [260]: ******************************************************************
 515 [264]: ********************************************************************
 516 [237]: *************************************************************
 517 [140]: ************************************
 518 [18 ]: ****
 519 [2  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.0012239 GB

 Modelled    94 /    97 reflection profiles on image 513
 Modelled   108 /   116 reflection profiles on image 514
 Modelled   132 /   137 reflection profiles on image 515
 Modelled   117 /   120 reflection profiles on image 516
 Modelled   118 /   122 reflection profiles on image 517
 Modelled    15 /    16 reflection profiles on image 518
 Modelled     2 /     2 reflection profiles on image 519
 Beginning modelling job 103

 Frames: 515 -> 525

 Number of reflections
  Partial:     2
  Full:        583
  In ice ring: 0
  Total:       585

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 515 [1  ]: 
 516 [9  ]: **
 517 [109]: *******************************
 518 [226]: ****************************************************************
 519 [239]: ********************************************************************
 520 [220]: **************************************************************
 521 [221]: **************************************************************
 522 [136]: **************************************
 523 [21 ]: *****
 524 [2  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00106343 GB

 Modelled   103 /   103 reflection profiles on image 518
 Modelled   117 /   120 reflection profiles on image 519
 Modelled   119 /   119 reflection profiles on image 520
 Modelled   106 /   107 reflection profiles on image 521
 Modelled   111 /   115 reflection profiles on image 522
 Modelled    17 /    19 reflection profiles on image 523
 Modelled     1 /     2 reflection profiles on image 524
 Beginning modelling job 104

 Frames: 520 -> 530

 Number of reflections
  Partial:     5
  Full:        584
  In ice ring: 0
  Total:       589

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 521 [6  ]: *
 522 [95 ]: *************************
 523 [214]: *********************************************************
 524 [252]: ********************************************************************
 525 [243]: *****************************************************************
 526 [236]: ***************************************************************
 527 [141]: **************************************
 528 [25 ]: ******
 529 [3  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00108772 GB

 Modelled    81 /    85 reflection profiles on image 523
 Modelled   122 /   126 reflection profiles on image 524
 Modelled   117 /   119 reflection profiles on image 525
 Modelled   113 /   118 reflection profiles on image 526
 Modelled   112 /   116 reflection profiles on image 527
 Modelled    21 /    22 reflection profiles on image 528
 Modelled     1 /     3 reflection profiles on image 529
 Beginning modelling job 105

 Frames: 525 -> 535

 Number of reflections
  Partial:     6
  Full:        603
  In ice ring: 0
  Total:       609

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 526 [2  ]: 
 527 [100]: ************************
 528 [216]: ****************************************************
 529 [232]: ********************************************************
 530 [280]: ********************************************************************
 531 [272]: ******************************************************************
 532 [146]: ***********************************
 533 [24 ]: *****
 534 [5  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00135502 GB

 Modelled    96 /    97 reflection profiles on image 528
 Modelled   100 /   106 reflection profiles on image 529
 Modelled   110 /   115 reflection profiles on image 530
 Modelled   139 /   145 reflection profiles on image 531
 Modelled   120 /   122 reflection profiles on image 532
 Modelled    17 /    19 reflection profiles on image 533
 Modelled     3 /     5 reflection profiles on image 534
 Beginning modelling job 106

 Frames: 530 -> 540

 Number of reflections
  Partial:     6
  Full:        566
  In ice ring: 0
  Total:       572

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 531 [7  ]: **
 532 [90 ]: *************************
 533 [201]: *********************************************************
 534 [236]: *******************************************************************
 535 [238]: ********************************************************************
 536 [221]: ***************************************************************
 537 [140]: ****************************************
 538 [24 ]: ******
 539 [3  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00110143 GB

 Modelled    95 /    97 reflection profiles on image 533
 Modelled   101 /   105 reflection profiles on image 534
 Modelled   121 /   129 reflection profiles on image 535
 Modelled    96 /   101 reflection profiles on image 536
 Modelled   114 /   116 reflection profiles on image 537
 Modelled    20 /    21 reflection profiles on image 538
 Modelled     2 /     3 reflection profiles on image 539
 Beginning modelling job 107

 Frames: 535 -> 545

 Number of reflections
  Partial:     2
  Full:        569
  In ice ring: 0
  Total:       571

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 536 [4  ]: *
 537 [89 ]: ************************
 538 [203]: ********************************************************
 539 [234]: ****************************************************************
 540 [246]: ********************************************************************
 541 [229]: ***************************************************************
 542 [130]: ***********************************
 543 [26 ]: *******
 544 [2  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00109944 GB

 Modelled    92 /    93 reflection profiles on image 538
 Modelled   109 /   112 reflection profiles on image 539
 Modelled   117 /   120 reflection profiles on image 540
 Modelled   112 /   116 reflection profiles on image 541
 Modelled   102 /   104 reflection profiles on image 542
 Modelled    23 /    24 reflection profiles on image 543
 Modelled     2 /     2 reflection profiles on image 544
 Beginning modelling job 108

 Frames: 540 -> 550

 Number of reflections
  Partial:     1
  Full:        569
  In ice ring: 0
  Total:       570

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 540 [1  ]: 
 541 [5  ]: *
 542 [99 ]: ****************************
 543 [220]: **************************************************************
 544 [227]: ****************************************************************
 545 [239]: ********************************************************************
 546 [237]: *******************************************************************
 547 [133]: *************************************
 548 [22 ]: ******
 549 [2  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.0011069 GB

 Modelled    93 /    96 reflection profiles on image 543
 Modelled   107 /   111 reflection profiles on image 544
 Modelled   109 /   113 reflection profiles on image 545
 Modelled   111 /   117 reflection profiles on image 546
 Modelled   105 /   111 reflection profiles on image 547
 Modelled    20 /    20 reflection profiles on image 548
 Modelled     1 /     2 reflection profiles on image 549
 Beginning modelling job 109

 Frames: 545 -> 555

 Number of reflections
  Partial:     3
  Full:        575
  In ice ring: 0
  Total:       578

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 545 [1  ]: 
 546 [3  ]: 
 547 [104]: ****************************
 548 [225]: *************************************************************
 549 [241]: ******************************************************************
 550 [247]: ********************************************************************
 551 [233]: ****************************************************************
 552 [146]: ****************************************
 553 [33 ]: *********
 554 [3  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00113846 GB

 Modelled    94 /    95 reflection profiles on image 548
 Modelled   107 /   110 reflection profiles on image 549
 Modelled   126 /   129 reflection profiles on image 550
 Modelled    94 /    98 reflection profiles on image 551
 Modelled   111 /   113 reflection profiles on image 552
 Modelled    29 /    30 reflection profiles on image 553
 Modelled     1 /     3 reflection profiles on image 554
 Beginning modelling job 110

 Frames: 550 -> 560

 Number of reflections
  Partial:     2
  Full:        596
  In ice ring: 0
  Total:       598

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 551 [5  ]: *
 552 [103]: **************************
 553 [223]: *********************************************************
 554 [263]: ********************************************************************
 555 [252]: *****************************************************************
 556 [244]: ***************************************************************
 557 [129]: *********************************
 558 [19 ]: ****

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00117948 GB

 Modelled    88 /    91 reflection profiles on image 553
 Modelled   126 /   131 reflection profiles on image 554
 Modelled   117 /   121 reflection profiles on image 555
 Modelled   117 /   126 reflection profiles on image 556
 Modelled   105 /   110 reflection profiles on image 557
 Modelled    18 /    19 reflection profiles on image 558
 Beginning modelling job 111

 Frames: 555 -> 565

 Number of reflections
  Partial:     2
  Full:        577
  In ice ring: 0
  Total:       579

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 556 [9  ]: **
 557 [104]: ****************************
 558 [230]: ***************************************************************
 559 [246]: ********************************************************************
 560 [235]: ****************************************************************
 561 [240]: ******************************************************************
 562 [149]: *****************************************
 563 [20 ]: *****
 564 [5  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00125456 GB

 Modelled    89 /    93 reflection profiles on image 558
 Modelled   110 /   111 reflection profiles on image 559
 Modelled   114 /   116 reflection profiles on image 560
 Modelled   108 /   110 reflection profiles on image 561
 Modelled   123 /   129 reflection profiles on image 562
 Modelled    15 /    15 reflection profiles on image 563
 Modelled     4 /     5 reflection profiles on image 564
 Beginning modelling job 112

 Frames: 560 -> 570

 Number of reflections
  Partial:     1
  Full:        547
  In ice ring: 0
  Total:       548

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 561 [3  ]: 
 562 [89 ]: **************************
 563 [197]: *********************************************************
 564 [223]: *****************************************************************
 565 [232]: ********************************************************************
 566 [222]: *****************************************************************
 567 [121]: ***********************************
 568 [20 ]: *****

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00103598 GB

 Modelled    90 /    95 reflection profiles on image 563
 Modelled    93 /    97 reflection profiles on image 564
 Modelled   109 /   117 reflection profiles on image 565
 Modelled   115 /   118 reflection profiles on image 566
 Modelled    98 /   101 reflection profiles on image 567
 Modelled    19 /    20 reflection profiles on image 568
 Beginning modelling job 113

 Frames: 565 -> 575

 Number of reflections
  Partial:     0
  Full:        577
  In ice ring: 0
  Total:       577

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 566 [2  ]: 
 567 [105]: *******************************
 568 [221]: ******************************************************************
 569 [227]: ********************************************************************
 570 [227]: ********************************************************************
 571 [227]: ********************************************************************
 572 [145]: *******************************************
 573 [21 ]: ******
 574 [2  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00103934 GB

 Modelled    96 /    99 reflection profiles on image 568
 Modelled   108 /   110 reflection profiles on image 569
 Modelled   114 /   117 reflection profiles on image 570
 Modelled    99 /   106 reflection profiles on image 571
 Modelled   119 /   124 reflection profiles on image 572
 Modelled    18 /    19 reflection profiles on image 573
 Modelled     2 /     2 reflection profiles on image 574
 Beginning modelling job 114

 Frames: 570 -> 580

 Number of reflections
  Partial:     4
  Full:        538
  In ice ring: 0
  Total:       542

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 571 [4  ]: *
 572 [82 ]: ************************
 573 [191]: ********************************************************
 574 [228]: *******************************************************************
 575 [230]: ********************************************************************
 576 [225]: ******************************************************************
 577 [136]: ****************************************
 578 [22 ]: ******
 579 [5  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00108218 GB

 Modelled    72 /    77 reflection profiles on image 573
 Modelled   104 /   108 reflection profiles on image 574
 Modelled   112 /   114 reflection profiles on image 575
 Modelled   105 /   107 reflection profiles on image 576
 Modelled   108 /   114 reflection profiles on image 577
 Modelled    16 /    17 reflection profiles on image 578
 Modelled     4 /     5 reflection profiles on image 579
 Beginning modelling job 115

 Frames: 575 -> 585

 Number of reflections
  Partial:     4
  Full:        582
  In ice ring: 0
  Total:       586

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 575 [1  ]: 
 576 [7  ]: *
 577 [108]: *****************************
 578 [221]: ***********************************************************
 579 [230]: **************************************************************
 580 [251]: ********************************************************************
 581 [242]: *****************************************************************
 582 [140]: *************************************
 583 [14 ]: ***
 584 [2  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00113136 GB

 Modelled    92 /    94 reflection profiles on image 578
 Modelled   110 /   113 reflection profiles on image 579
 Modelled   114 /   120 reflection profiles on image 580
 Modelled   118 /   119 reflection profiles on image 581
 Modelled   120 /   126 reflection profiles on image 582
 Modelled    11 /    12 reflection profiles on image 583
 Modelled     1 /     2 reflection profiles on image 584
 Beginning modelling job 116

 Frames: 580 -> 590

 Number of reflections
  Partial:     1
  Full:        588
  In ice ring: 0
  Total:       589

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 581 [6  ]: *
 582 [90 ]: ************************
 583 [220]: **********************************************************
 584 [235]: **************************************************************
 585 [227]: ************************************************************
 586 [254]: ********************************************************************
 587 [147]: ***************************************
 588 [23 ]: ******
 589 [2  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00116582 GB

 Modelled    91 /    93 reflection profiles on image 583
 Modelled   126 /   128 reflection profiles on image 584
 Modelled    93 /    96 reflection profiles on image 585
 Modelled   120 /   125 reflection profiles on image 586
 Modelled   119 /   124 reflection profiles on image 587
 Modelled    20 /    21 reflection profiles on image 588
 Modelled     2 /     2 reflection profiles on image 589
 Beginning modelling job 117

 Frames: 585 -> 595

 Number of reflections
  Partial:     0
  Full:        600
  In ice ring: 0
  Total:       600

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 585 [1  ]: 
 586 [3  ]: 
 587 [101]: **************************
 588 [218]: ********************************************************
 589 [262]: ********************************************************************
 590 [257]: ******************************************************************
 591 [228]: ***********************************************************
 592 [132]: **********************************
 593 [19 ]: ****
 594 [1  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00118349 GB

 Modelled    85 /    94 reflection profiles on image 588
 Modelled   117 /   121 reflection profiles on image 589
 Modelled   133 /   135 reflection profiles on image 590
 Modelled   111 /   118 reflection profiles on image 591
 Modelled   108 /   113 reflection profiles on image 592
 Modelled    18 /    18 reflection profiles on image 593
 Modelled     1 /     1 reflection profiles on image 594
 Beginning modelling job 118

 Frames: 590 -> 600

 Number of reflections
  Partial:     2
  Full:        581
  In ice ring: 0
  Total:       583

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 590 [1  ]: 
 591 [3  ]: 
 592 [100]: ****************************
 593 [215]: ************************************************************
 594 [238]: *******************************************************************
 595 [236]: ******************************************************************
 596 [241]: ********************************************************************
 597 [143]: ****************************************
 598 [15 ]: ****
 599 [3  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00108097 GB

 Modelled    93 /    97 reflection profiles on image 593
 Modelled   111 /   117 reflection profiles on image 594
 Modelled   112 /   116 reflection profiles on image 595
 Modelled   107 /   110 reflection profiles on image 596
 Modelled   122 /   128 reflection profiles on image 597
 Modelled    12 /    12 reflection profiles on image 598
 Modelled     1 /     3 reflection profiles on image 599
 Beginning modelling job 119

 Frames: 595 -> 605

 Number of reflections
  Partial:     3
  Full:        616
  In ice ring: 0
  Total:       619

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 596 [4  ]: *
 597 [102]: ***************************
 598 [226]: ************************************************************
 599 [241]: ****************************************************************
 600 [249]: ******************************************************************
 601 [254]: ********************************************************************
 602 [143]: **************************************
 603 [19 ]: *****
 604 [5  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00114415 GB

 Modelled    96 /    98 reflection profiles on image 598
 Modelled   113 /   120 reflection profiles on image 599
 Modelled   121 /   124 reflection profiles on image 600
 Modelled   128 /   134 reflection profiles on image 601
 Modelled   123 /   124 reflection profiles on image 602
 Modelled    11 /    14 reflection profiles on image 603
 Modelled     3 /     5 reflection profiles on image 604
 Beginning modelling job 120

 Frames: 600 -> 610

 Number of reflections
  Partial:     1
  Full:        600
  In ice ring: 0
  Total:       601

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 601 [7  ]: *
 602 [116]: ********************************
 603 [232]: ****************************************************************
 604 [226]: **************************************************************
 605 [243]: *******************************************************************
 606 [245]: ********************************************************************
 607 [152]: ******************************************
 608 [21 ]: *****
 609 [1  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00115601 GB

 Modelled   106 /   111 reflection profiles on image 603
 Modelled   113 /   116 reflection profiles on image 604
 Modelled   104 /   108 reflection profiles on image 605
 Modelled   110 /   114 reflection profiles on image 606
 Modelled   127 /   131 reflection profiles on image 607
 Modelled    20 /    20 reflection profiles on image 608
 Modelled     1 /     1 reflection profiles on image 609
 Beginning modelling job 121

 Frames: 605 -> 615

 Number of reflections
  Partial:     0
  Full:        600
  In ice ring: 0
  Total:       600

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 606 [2  ]: 
 607 [98 ]: **************************
 608 [250]: ********************************************************************
 609 [244]: ******************************************************************
 610 [235]: ***************************************************************
 611 [222]: ************************************************************
 612 [128]: **********************************
 613 [21 ]: *****
 614 [1  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00110238 GB

 Modelled   115 /   118 reflection profiles on image 608
 Modelled   113 /   118 reflection profiles on image 609
 Modelled   121 /   124 reflection profiles on image 610
 Modelled   107 /   112 reflection profiles on image 611
 Modelled   104 /   107 reflection profiles on image 612
 Modelled    19 /    20 reflection profiles on image 613
 Modelled     0 /     1 reflection profiles on image 614
 Beginning modelling job 122

 Frames: 610 -> 620

 Number of reflections
  Partial:     0
  Full:        631
  In ice ring: 0
  Total:       631

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 610 [1  ]: 
 611 [6  ]: *
 612 [115]: *****************************
 613 [237]: *************************************************************
 614 [253]: *****************************************************************
 615 [256]: ******************************************************************
 616 [262]: ********************************************************************
 617 [149]: **************************************
 618 [25 ]: ******
 619 [1  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00124483 GB

 Modelled   111 /   114 reflection profiles on image 613
 Modelled   115 /   118 reflection profiles on image 614
 Modelled   113 /   119 reflection profiles on image 615
 Modelled   127 /   131 reflection profiles on image 616
 Modelled   118 /   124 reflection profiles on image 617
 Modelled    23 /    24 reflection profiles on image 618
 Modelled     1 /     1 reflection profiles on image 619
 Beginning modelling job 123

 Frames: 615 -> 625

 Number of reflections
  Partial:     0
  Full:        604
  In ice ring: 0
  Total:       604

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 615 [3  ]: 
 616 [7  ]: *
 617 [107]: *****************************
 618 [246]: ********************************************************************
 619 [245]: *******************************************************************
 620 [235]: ****************************************************************
 621 [223]: *************************************************************
 622 [128]: ***********************************
 623 [12 ]: ***

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00111157 GB

 Modelled   107 /   112 reflection profiles on image 618
 Modelled   123 /   127 reflection profiles on image 619
 Modelled   121 /   126 reflection profiles on image 620
 Modelled   109 /   111 reflection profiles on image 621
 Modelled   114 /   116 reflection profiles on image 622
 Modelled    12 /    12 reflection profiles on image 623
 Beginning modelling job 124

 Frames: 620 -> 630

 Number of reflections
  Partial:     0
  Full:        641
  In ice ring: 0
  Total:       641

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 620 [1  ]: 
 621 [4  ]: 
 622 [120]: ****************************
 623 [235]: *******************************************************
 624 [231]: ******************************************************
 625 [267]: ***************************************************************
 626 [287]: ********************************************************************
 627 [162]: **************************************
 628 [23 ]: *****
 629 [3  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00128816 GB

 Modelled   114 /   117 reflection profiles on image 623
 Modelled    94 /   101 reflection profiles on image 624
 Modelled   112 /   116 reflection profiles on image 625
 Modelled   138 /   145 reflection profiles on image 626
 Modelled   134 /   139 reflection profiles on image 627
 Modelled    18 /    20 reflection profiles on image 628
 Modelled     3 /     3 reflection profiles on image 629
 Beginning modelling job 125

 Frames: 625 -> 635

 Number of reflections
  Partial:     4
  Full:        612
  In ice ring: 0
  Total:       616

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 626 [6  ]: *
 627 [109]: *****************************
 628 [246]: *****************************************************************
 629 [253]: *******************************************************************
 630 [254]: ********************************************************************
 631 [240]: ****************************************************************
 632 [134]: ***********************************
 633 [19 ]: *****
 634 [2  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.0011942 GB

 Modelled   108 /   109 reflection profiles on image 628
 Modelled   121 /   126 reflection profiles on image 629
 Modelled   115 /   120 reflection profiles on image 630
 Modelled   123 /   127 reflection profiles on image 631
 Modelled   110 /   115 reflection profiles on image 632
 Modelled    16 /    17 reflection profiles on image 633
 Modelled     0 /     2 reflection profiles on image 634
 Beginning modelling job 126

 Frames: 630 -> 640

 Number of reflections
  Partial:     2
  Full:        572
  In ice ring: 0
  Total:       574

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 631 [5  ]: *
 632 [93 ]: **************************
 633 [222]: **************************************************************
 634 [240]: ********************************************************************
 635 [220]: **************************************************************
 636 [218]: *************************************************************
 637 [130]: ************************************
 638 [15 ]: ****
 639 [3  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00101292 GB

 Modelled    98 /   100 reflection profiles on image 633
 Modelled   122 /   127 reflection profiles on image 634
 Modelled   106 /   112 reflection profiles on image 635
 Modelled   101 /   105 reflection profiles on image 636
 Modelled   113 /   115 reflection profiles on image 637
 Modelled    12 /    12 reflection profiles on image 638
 Modelled     3 /     3 reflection profiles on image 639
 Beginning modelling job 127

 Frames: 635 -> 645

 Number of reflections
  Partial:     0
  Full:        567
  In ice ring: 0
  Total:       567

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 635 [2  ]: 
 636 [5  ]: *
 637 [110]: ******************************
 638 [229]: **************************************************************
 639 [249]: ********************************************************************
 640 [221]: ************************************************************
 641 [212]: *********************************************************
 642 [126]: **********************************
 643 [19 ]: *****

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00110599 GB

 Modelled    91 /    95 reflection profiles on image 638
 Modelled   125 /   129 reflection profiles on image 639
 Modelled   116 /   121 reflection profiles on image 640
 Modelled    93 /    96 reflection profiles on image 641
 Modelled   104 /   107 reflection profiles on image 642
 Modelled    19 /    19 reflection profiles on image 643
 Beginning modelling job 128

 Frames: 640 -> 650

 Number of reflections
  Partial:     0
  Full:        582
  In ice ring: 0
  Total:       582

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 640 [2  ]: 
 641 [6  ]: *
 642 [120]: *******************************
 643 [230]: ***********************************************************
 644 [262]: ********************************************************************
 645 [235]: ************************************************************
 646 [225]: **********************************************************
 647 [122]: *******************************
 648 [15 ]: ***
 649 [2  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00120143 GB

 Modelled    95 /    97 reflection profiles on image 643
 Modelled   123 /   128 reflection profiles on image 644
 Modelled   108 /   115 reflection profiles on image 645
 Modelled   120 /   120 reflection profiles on image 646
 Modelled   103 /   107 reflection profiles on image 647
 Modelled    13 /    13 reflection profiles on image 648
 Modelled     2 /     2 reflection profiles on image 649
 Beginning modelling job 129

 Frames: 645 -> 655

 Number of reflections
  Partial:     0
  Full:        626
  In ice ring: 0
  Total:       626

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 646 [4  ]: 
 647 [96 ]: ***********************
 648 [218]: ******************************************************
 649 [267]: ******************************************************************
 650 [274]: ********************************************************************
 651 [252]: **************************************************************
 652 [149]: ************************************
 653 [22 ]: *****
 654 [2  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00129656 GB

 Modelled    96 /    99 reflection profiles on image 648
 Modelled   117 /   120 reflection profiles on image 649
 Modelled   130 /   135 reflection profiles on image 650
 Modelled   120 /   123 reflection profiles on image 651
 Modelled   125 /   127 reflection profiles on image 652
 Modelled    20 /    20 reflection profiles on image 653
 Modelled     2 /     2 reflection profiles on image 654
 Beginning modelling job 130

 Frames: 650 -> 660

 Number of reflections
  Partial:     2
  Full:        613
  In ice ring: 0
  Total:       615

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 650 [4  ]: *
 651 [11 ]: ***
 652 [121]: *********************************
 653 [245]: ********************************************************************
 654 [235]: *****************************************************************
 655 [234]: ****************************************************************
 656 [228]: ***************************************************************
 657 [141]: ***************************************
 658 [13 ]: ***
 659 [1  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00113129 GB

 Modelled   106 /   113 reflection profiles on image 653
 Modelled   121 /   123 reflection profiles on image 654
 Modelled   118 /   123 reflection profiles on image 655
 Modelled   112 /   115 reflection profiles on image 656
 Modelled   126 /   128 reflection profiles on image 657
 Modelled    12 /    12 reflection profiles on image 658
 Modelled     0 /     1 reflection profiles on image 659
 Beginning modelling job 131

 Frames: 655 -> 665

 Number of reflections
  Partial:     3
  Full:        645
  In ice ring: 0
  Total:       648

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 655 [2  ]: 
 656 [5  ]: *
 657 [112]: ***************************
 658 [246]: ***********************************************************
 659 [281]: ********************************************************************
 660 [275]: ******************************************************************
 661 [239]: *********************************************************
 662 [151]: ************************************
 663 [19 ]: ****
 664 [5  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00131885 GB

 Modelled   102 /   107 reflection profiles on image 658
 Modelled   118 /   126 reflection profiles on image 659
 Modelled   147 /   153 reflection profiles on image 660
 Modelled   110 /   111 reflection profiles on image 661
 Modelled   129 /   132 reflection profiles on image 662
 Modelled    14 /    14 reflection profiles on image 663
 Modelled     4 /     5 reflection profiles on image 664
 Beginning modelling job 132

 Frames: 660 -> 670

 Number of reflections
  Partial:     3
  Full:        618
  In ice ring: 0
  Total:       621

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 660 [1  ]: 
 661 [5  ]: *
 662 [102]: ************************
 663 [228]: *******************************************************
 664 [246]: ***********************************************************
 665 [241]: **********************************************************
 666 [280]: ********************************************************************
 667 [151]: ************************************
 668 [24 ]: *****
 669 [2  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00132976 GB

 Modelled    90 /    94 reflection profiles on image 663
 Modelled   130 /   134 reflection profiles on image 664
 Modelled    94 /   100 reflection profiles on image 665
 Modelled   137 /   142 reflection profiles on image 666
 Modelled   126 /   127 reflection profiles on image 667
 Modelled    21 /    22 reflection profiles on image 668
 Modelled     2 /     2 reflection profiles on image 669
 Beginning modelling job 133

 Frames: 665 -> 675

 Number of reflections
  Partial:     3
  Full:        643
  In ice ring: 0
  Total:       646

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 666 [5  ]: *
 667 [125]: ********************************
 668 [243]: ***************************************************************
 669 [248]: *****************************************************************
 670 [248]: *****************************************************************
 671 [259]: ********************************************************************
 672 [161]: ******************************************
 673 [21 ]: *****
 674 [4  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00119818 GB

 Modelled   113 /   116 reflection profiles on image 668
 Modelled   116 /   125 reflection profiles on image 669
 Modelled   121 /   125 reflection profiles on image 670
 Modelled   117 /   119 reflection profiles on image 671
 Modelled   138 /   140 reflection profiles on image 672
 Modelled    16 /    17 reflection profiles on image 673
 Modelled     3 /     4 reflection profiles on image 674
 Beginning modelling job 134

 Frames: 670 -> 680

 Number of reflections
  Partial:     1
  Full:        625
  In ice ring: 0
  Total:       626

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 671 [8  ]: **
 672 [106]: ***************************
 673 [241]: ***************************************************************
 674 [254]: ******************************************************************
 675 [244]: ****************************************************************
 676 [259]: ********************************************************************
 677 [160]: ******************************************
 678 [19 ]: ****
 679 [1  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00121433 GB

 Modelled   100 /   105 reflection profiles on image 673
 Modelled   122 /   127 reflection profiles on image 674
 Modelled   108 /   115 reflection profiles on image 675
 Modelled   112 /   119 reflection profiles on image 676
 Modelled   134 /   141 reflection profiles on image 677
 Modelled    17 /    18 reflection profiles on image 678
 Modelled     1 /     1 reflection profiles on image 679
 Beginning modelling job 135

 Frames: 675 -> 685

 Number of reflections
  Partial:     0
  Full:        632
  In ice ring: 0
  Total:       632

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 676 [3  ]: 
 677 [122]: *******************************
 678 [247]: ***************************************************************
 679 [256]: *****************************************************************
 680 [265]: ********************************************************************
 681 [237]: ************************************************************
 682 [124]: *******************************
 683 [20 ]: *****
 684 [2  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00122822 GB

 Modelled   118 /   123 reflection profiles on image 678
 Modelled   119 /   125 reflection profiles on image 679
 Modelled   126 /   129 reflection profiles on image 680
 Modelled   126 /   131 reflection profiles on image 681
 Modelled    99 /   104 reflection profiles on image 682
 Modelled    18 /    18 reflection profiles on image 683
 Modelled     2 /     2 reflection profiles on image 684
 Beginning modelling job 136

 Frames: 680 -> 690

 Number of reflections
  Partial:     0
  Full:        653
  In ice ring: 0
  Total:       653

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 680 [1  ]: 
 681 [6  ]: *
 682 [122]: *****************************
 683 [251]: ************************************************************
 684 [283]: ********************************************************************
 685 [262]: **************************************************************
 686 [238]: *********************************************************
 687 [149]: ***********************************
 688 [22 ]: *****
 689 [5  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00127733 GB

 Modelled   109 /   114 reflection profiles on image 683
 Modelled   137 /   141 reflection profiles on image 684
 Modelled   129 /   138 reflection profiles on image 685
 Modelled   110 /   111 reflection profiles on image 686
 Modelled   125 /   127 reflection profiles on image 687
 Modelled    16 /    17 reflection profiles on image 688
 Modelled     5 /     5 reflection profiles on image 689
 Beginning modelling job 137

 Frames: 685 -> 695

 Number of reflections
  Partial:     0
  Full:        640
  In ice ring: 0
  Total:       640

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 685 [2  ]: 
 686 [12 ]: **
 687 [111]: **************************
 688 [240]: *********************************************************
 689 [283]: ********************************************************************
 690 [261]: **************************************************************
 691 [251]: ************************************************************
 692 [143]: **********************************
 693 [21 ]: *****
 694 [1  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.0013283 GB

 Modelled    92 /    95 reflection profiles on image 688
 Modelled   134 /   142 reflection profiles on image 689
 Modelled   131 /   135 reflection profiles on image 690
 Modelled   120 /   125 reflection profiles on image 691
 Modelled   116 /   122 reflection profiles on image 692
 Modelled    19 /    20 reflection profiles on image 693
 Modelled     1 /     1 reflection profiles on image 694
 Beginning modelling job 138

 Frames: 690 -> 700

 Number of reflections
  Partial:     0
  Full:        659
  In ice ring: 0
  Total:       659

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 690 [1  ]: 
 691 [5  ]: *
 692 [121]: ******************************
 693 [254]: ****************************************************************
 694 [255]: ****************************************************************
 695 [261]: *****************************************************************
 696 [269]: ********************************************************************
 697 [153]: **************************************
 698 [20 ]: *****
 699 [1  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00123935 GB

 Modelled   115 /   118 reflection profiles on image 693
 Modelled   123 /   125 reflection profiles on image 694
 Modelled   121 /   124 reflection profiles on image 695
 Modelled   134 /   139 reflection profiles on image 696
 Modelled   130 /   133 reflection profiles on image 697
 Modelled    18 /    19 reflection profiles on image 698
 Modelled     1 /     1 reflection profiles on image 699
 Beginning modelling job 139

 Frames: 695 -> 705

 Number of reflections
  Partial:     0
  Full:        665
  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.

 696 [4  ]: *
 697 [116]: *****************************
 698 [250]: ****************************************************************
 699 [263]: *******************************************************************
 700 [264]: ********************************************************************
 701 [252]: ****************************************************************
 702 [151]: **************************************
 703 [28 ]: *******
 704 [1  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00122203 GB

 Modelled   113 /   114 reflection profiles on image 698
 Modelled   132 /   138 reflection profiles on image 699
 Modelled   127 /   138 reflection profiles on image 700
 Modelled   120 /   124 reflection profiles on image 701
 Modelled   121 /   123 reflection profiles on image 702
 Modelled    27 /    27 reflection profiles on image 703
 Modelled     1 /     1 reflection profiles on image 704
 Beginning modelling job 140

 Frames: 700 -> 710

 Number of reflections
  Partial:     2
  Full:        651
  In ice ring: 0
  Total:       653

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 700 [2  ]: 
 701 [7  ]: *
 702 [113]: *****************************
 703 [247]: *****************************************************************
 704 [257]: ********************************************************************
 705 [243]: ****************************************************************
 706 [244]: ****************************************************************
 707 [174]: **********************************************
 708 [26 ]: ******
 709 [2  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00124304 GB

 Modelled   112 /   116 reflection profiles on image 703
 Modelled   117 /   126 reflection profiles on image 704
 Modelled   128 /   135 reflection profiles on image 705
 Modelled    99 /   102 reflection profiles on image 706
 Modelled   147 /   148 reflection profiles on image 707
 Modelled    24 /    24 reflection profiles on image 708
 Modelled     1 /     2 reflection profiles on image 709
 Beginning modelling job 141

 Frames: 705 -> 715

 Number of reflections
  Partial:     3
  Full:        666
  In ice ring: 0
  Total:       669

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 706 [3  ]: 
 707 [108]: *************************
 708 [247]: ***********************************************************
 709 [250]: ************************************************************
 710 [268]: ****************************************************************
 711 [283]: ********************************************************************
 712 [158]: *************************************
 713 [19 ]: ****
 714 [4  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00126366 GB

 Modelled   117 /   120 reflection profiles on image 708
 Modelled   115 /   120 reflection profiles on image 709
 Modelled   118 /   123 reflection profiles on image 710
 Modelled   143 /   148 reflection profiles on image 711
 Modelled   133 /   139 reflection profiles on image 712
 Modelled    15 /    15 reflection profiles on image 713
 Modelled     2 /     4 reflection profiles on image 714
 Beginning modelling job 142

 Frames: 710 -> 720

 Number of reflections
  Partial:     51
  Full:        960
  In ice ring: 0
  Total:       1011

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 710 [1  ]: 
 711 [9  ]: **
 712 [119]: ***************************
 713 [258]: ***********************************************************
 714 [295]: ********************************************************************
 715 [292]: *******************************************************************
 716 [293]: *******************************************************************
 717 [278]: ****************************************************************
 718 [241]: *******************************************************
 719 [200]: **********************************************

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00147008 GB

 Modelled   112 /   113 reflection profiles on image 713
 Modelled   137 /   141 reflection profiles on image 714
 Modelled   149 /   155 reflection profiles on image 715
 Modelled   129 /   133 reflection profiles on image 716
 Modelled   160 /   163 reflection profiles on image 717
 Modelled   101 /   106 reflection profiles on image 718
 Modelled   153 /   200 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   | 1570
 0  | 1       | True    | 1231.50 | 421.17  | 5.00   | 1873
 0  | 2       | True    | 2052.50 | 421.17  | 5.00   | 1687
 0  | 3       | True    | 410.50  | 1263.50 | 5.00   | 2137
 0  | 4       | True    | 1231.50 | 1263.50 | 5.00   | 2563
 0  | 5       | True    | 2052.50 | 1263.50 | 5.00   | 2335
 0  | 6       | True    | 410.50  | 2105.83 | 5.00   | 1582
 0  | 7       | True    | 1231.50 | 2105.83 | 5.00   | 1948
 0  | 8       | True    | 2052.50 | 2105.83 | 5.00   | 1760
 0  | 9       | True    | 410.50  | 421.17  | 15.00  | 2377
 0  | 10      | True    | 1231.50 | 421.17  | 15.00  | 2843
 0  | 11      | True    | 2052.50 | 421.17  | 15.00  | 2548
 0  | 12      | True    | 410.50  | 1263.50 | 15.00  | 3237
 0  | 13      | True    | 1231.50 | 1263.50 | 15.00  | 3882
 0  | 14      | True    | 2052.50 | 1263.50 | 15.00  | 3516
 0  | 15      | True    | 410.50  | 2105.83 | 15.00  | 2388
 0  | 16      | True    | 1231.50 | 2105.83 | 15.00  | 2939
 0  | 17      | True    | 2052.50 | 2105.83 | 15.00  | 2639
 0  | 18      | True    | 410.50  | 421.17  | 25.00  | 2412
 0  | 19      | True    | 1231.50 | 421.17  | 25.00  | 2876
 0  | 20      | True    | 2052.50 | 421.17  | 25.00  | 2556
 0  | 21      | True    | 410.50  | 1263.50 | 25.00  | 3250
 0  | 22      | True    | 1231.50 | 1263.50 | 25.00  | 3873
 0  | 23      | True    | 2052.50 | 1263.50 | 25.00  | 3485
 0  | 24      | True    | 410.50  | 2105.83 | 25.00  | 2324
 0  | 25      | True    | 1231.50 | 2105.83 | 25.00  | 2841
 0  | 26      | True    | 2052.50 | 2105.83 | 25.00  | 2542
 0  | 27      | True    | 410.50  | 421.17  | 35.00  | 2423
 0  | 28      | True    | 1231.50 | 421.17  | 35.00  | 2900
 0  | 29      | True    | 2052.50 | 421.17  | 35.00  | 2577
 0  | 30      | True    | 410.50  | 1263.50 | 35.00  | 3273
 0  | 31      | True    | 1231.50 | 1263.50 | 35.00  | 3891
 0  | 32      | True    | 2052.50 | 1263.50 | 35.00  | 3501
 0  | 33      | True    | 410.50  | 2105.83 | 35.00  | 2275
 0  | 34      | True    | 1231.50 | 2105.83 | 35.00  | 2776
 0  | 35      | True    | 2052.50 | 2105.83 | 35.00  | 2485
 0  | 36      | True    | 410.50  | 421.17  | 45.00  | 2450
 0  | 37      | True    | 1231.50 | 421.17  | 45.00  | 2907
 0  | 38      | True    | 2052.50 | 421.17  | 45.00  | 2571
 0  | 39      | True    | 410.50  | 1263.50 | 45.00  | 3249
 0  | 40      | True    | 1231.50 | 1263.50 | 45.00  | 3820
 0  | 41      | True    | 2052.50 | 1263.50 | 45.00  | 3437
 0  | 42      | True    | 410.50  | 2105.83 | 45.00  | 2165
 0  | 43      | True    | 1231.50 | 2105.83 | 45.00  | 2611
 0  | 44      | True    | 2052.50 | 2105.83 | 45.00  | 2350
 0  | 45      | True    | 410.50  | 421.17  | 55.00  | 2474
 0  | 46      | True    | 1231.50 | 421.17  | 55.00  | 2928
 0  | 47      | True    | 2052.50 | 421.17  | 55.00  | 2574
 0  | 48      | True    | 410.50  | 1263.50 | 55.00  | 3213
 0  | 49      | True    | 1231.50 | 1263.50 | 55.00  | 3766
 0  | 50      | True    | 2052.50 | 1263.50 | 55.00  | 3370
 0  | 51      | True    | 410.50  | 2105.83 | 55.00  | 2093
 0  | 52      | True    | 1231.50 | 2105.83 | 55.00  | 2513
 0  | 53      | True    | 2052.50 | 2105.83 | 55.00  | 2252
 0  | 54      | True    | 410.50  | 421.17  | 65.00  | 2532
 0  | 55      | True    | 1231.50 | 421.17  | 65.00  | 3012
 0  | 56      | True    | 2052.50 | 421.17  | 65.00  | 2624
 0  | 57      | True    | 410.50  | 1263.50 | 65.00  | 3227
 0  | 58      | True    | 1231.50 | 1263.50 | 65.00  | 3798
 0  | 59      | True    | 2052.50 | 1263.50 | 65.00  | 3375
 0  | 60      | True    | 410.50  | 2105.83 | 65.00  | 2043
 0  | 61      | True    | 1231.50 | 2105.83 | 65.00  | 2457
 0  | 62      | True    | 2052.50 | 2105.83 | 65.00  | 2194
 0  | 63      | True    | 410.50  | 421.17  | 75.00  | 2607
 0  | 64      | True    | 1231.50 | 421.17  | 75.00  | 3132
 0  | 65      | True    | 2052.50 | 421.17  | 75.00  | 2724
 0  | 66      | True    | 410.50  | 1263.50 | 75.00  | 3240
 0  | 67      | True    | 1231.50 | 1263.50 | 75.00  | 3859
 0  | 68      | True    | 2052.50 | 1263.50 | 75.00  | 3419
 0  | 69      | True    | 410.50  | 2105.83 | 75.00  | 1994
 0  | 70      | True    | 1231.50 | 2105.83 | 75.00  | 2437
 0  | 71      | True    | 2052.50 | 2105.83 | 75.00  | 2174
 0  | 72      | True    | 410.50  | 421.17  | 85.00  | 2654
 0  | 73      | True    | 1231.50 | 421.17  | 85.00  | 3225
 0  | 74      | True    | 2052.50 | 421.17  | 85.00  | 2812
 0  | 75      | True    | 410.50  | 1263.50 | 85.00  | 3273
 0  | 76      | True    | 1231.50 | 1263.50 | 85.00  | 3929
 0  | 77      | True    | 2052.50 | 1263.50 | 85.00  | 3491
 0  | 78      | True    | 410.50  | 2105.83 | 85.00  | 1965
 0  | 79      | True    | 1231.50 | 2105.83 | 85.00  | 2427
 0  | 80      | True    | 2052.50 | 2105.83 | 85.00  | 2194
 0  | 81      | True    | 410.50  | 421.17  | 95.00  | 2765
 0  | 82      | True    | 1231.50 | 421.17  | 95.00  | 3346
 0  | 83      | True    | 2052.50 | 421.17  | 95.00  | 2904
 0  | 84      | True    | 410.50  | 1263.50 | 95.00  | 3336
 0  | 85      | True    | 1231.50 | 1263.50 | 95.00  | 3995
 0  | 86      | True    | 2052.50 | 1263.50 | 95.00  | 3534
 0  | 87      | True    | 410.50  | 2105.83 | 95.00  | 1971
 0  | 88      | True    | 1231.50 | 2105.83 | 95.00  | 2427
 0  | 89      | True    | 2052.50 | 2105.83 | 95.00  | 2193
 0  | 90      | True    | 410.50  | 421.17  | 105.00 | 2815
 0  | 91      | True    | 1231.50 | 421.17  | 105.00 | 3401
 0  | 92      | True    | 2052.50 | 421.17  | 105.00 | 2959
 0  | 93      | True    | 410.50  | 1263.50 | 105.00 | 3367
 0  | 94      | True    | 1231.50 | 1263.50 | 105.00 | 4023
 0  | 95      | True    | 2052.50 | 1263.50 | 105.00 | 3561
 0  | 96      | True    | 410.50  | 2105.83 | 105.00 | 1967
 0  | 97      | True    | 1231.50 | 2105.83 | 105.00 | 2412
 0  | 98      | True    | 2052.50 | 2105.83 | 105.00 | 2189
 0  | 99      | True    | 410.50  | 421.17  | 115.00 | 2937
 0  | 100     | True    | 1231.50 | 421.17  | 115.00 | 3520
 0  | 101     | True    | 2052.50 | 421.17  | 115.00 | 3048
 0  | 102     | True    | 410.50  | 1263.50 | 115.00 | 3422
 0  | 103     | True    | 1231.50 | 1263.50 | 115.00 | 4071
 0  | 104     | True    | 2052.50 | 1263.50 | 115.00 | 3581
 0  | 105     | True    | 410.50  | 2105.83 | 115.00 | 1964
 0  | 106     | True    | 1231.50 | 2105.83 | 115.00 | 2403
 0  | 107     | True    | 2052.50 | 2105.83 | 115.00 | 2164
 0  | 108     | True    | 410.50  | 421.17  | 125.00 | 2941
 0  | 109     | True    | 1231.50 | 421.17  | 125.00 | 3499
 0  | 110     | True    | 2052.50 | 421.17  | 125.00 | 3010
 0  | 111     | True    | 410.50  | 1263.50 | 125.00 | 3381
 0  | 112     | True    | 1231.50 | 1263.50 | 125.00 | 3999
 0  | 113     | True    | 2052.50 | 1263.50 | 125.00 | 3492
 0  | 114     | True    | 410.50  | 2105.83 | 125.00 | 1964
 0  | 115     | True    | 1231.50 | 2105.83 | 125.00 | 2386
 0  | 116     | True    | 2052.50 | 2105.83 | 125.00 | 2144
 0  | 117     | True    | 410.50  | 421.17  | 135.00 | 2967
 0  | 118     | True    | 1231.50 | 421.17  | 135.00 | 3495
 0  | 119     | True    | 2052.50 | 421.17  | 135.00 | 2997
 0  | 120     | True    | 410.50  | 1263.50 | 135.00 | 3369
 0  | 121     | True    | 1231.50 | 1263.50 | 135.00 | 3955
 0  | 122     | True    | 2052.50 | 1263.50 | 135.00 | 3439
 0  | 123     | True    | 410.50  | 2105.83 | 135.00 | 1988
 0  | 124     | True    | 1231.50 | 2105.83 | 135.00 | 2395
 0  | 125     | True    | 2052.50 | 2105.83 | 135.00 | 2138
 0  | 126     | True    | 410.50  | 421.17  | 145.00 | 2913
 0  | 127     | True    | 1231.50 | 421.17  | 145.00 | 3420
 0  | 128     | True    | 2052.50 | 421.17  | 145.00 | 2945
 0  | 129     | True    | 410.50  | 1263.50 | 145.00 | 3303
 0  | 130     | True    | 1231.50 | 1263.50 | 145.00 | 3864
 0  | 131     | True    | 2052.50 | 1263.50 | 145.00 | 3370
 0  | 132     | True    | 410.50  | 2105.83 | 145.00 | 2022
 0  | 133     | True    | 1231.50 | 2105.83 | 145.00 | 2415
 0  | 134     | True    | 2052.50 | 2105.83 | 145.00 | 2159
 0  | 135     | True    | 410.50  | 421.17  | 155.00 | 2859
 0  | 136     | True    | 1231.50 | 421.17  | 155.00 | 3356
 0  | 137     | True    | 2052.50 | 421.17  | 155.00 | 2912
 0  | 138     | True    | 410.50  | 1263.50 | 155.00 | 3242
 0  | 139     | True    | 1231.50 | 1263.50 | 155.00 | 3793
 0  | 140     | True    | 2052.50 | 1263.50 | 155.00 | 3333
 0  | 141     | True    | 410.50  | 2105.83 | 155.00 | 1999
 0  | 142     | True    | 1231.50 | 2105.83 | 155.00 | 2398
 0  | 143     | True    | 2052.50 | 2105.83 | 155.00 | 2151
 0  | 144     | True    | 410.50  | 421.17  | 165.00 | 2828
 0  | 145     | True    | 1231.50 | 421.17  | 165.00 | 3325
 0  | 146     | True    | 2052.50 | 421.17  | 165.00 | 2873
 0  | 147     | True    | 410.50  | 1263.50 | 165.00 | 3215
 0  | 148     | True    | 1231.50 | 1263.50 | 165.00 | 3759
 0  | 149     | True    | 2052.50 | 1263.50 | 165.00 | 3293
 0  | 150     | True    | 410.50  | 2105.83 | 165.00 | 2033
 0  | 151     | True    | 1231.50 | 2105.83 | 165.00 | 2439
 0  | 152     | True    | 2052.50 | 2105.83 | 165.00 | 2182
 0  | 153     | True    | 410.50  | 421.17  | 175.00 | 2771
 0  | 154     | True    | 1231.50 | 421.17  | 175.00 | 3260
 0  | 155     | True    | 2052.50 | 421.17  | 175.00 | 2806
 0  | 156     | True    | 410.50  | 1263.50 | 175.00 | 3161
 0  | 157     | True    | 1231.50 | 1263.50 | 175.00 | 3693
 0  | 158     | True    | 2052.50 | 1263.50 | 175.00 | 3230
 0  | 159     | True    | 410.50  | 2105.83 | 175.00 | 2050
 0  | 160     | True    | 1231.50 | 2105.83 | 175.00 | 2460
 0  | 161     | True    | 2052.50 | 2105.83 | 175.00 | 2198
 0  | 162     | True    | 410.50  | 421.17  | 185.00 | 2761
 0  | 163     | True    | 1231.50 | 421.17  | 185.00 | 3241
 0  | 164     | True    | 2052.50 | 421.17  | 185.00 | 2780
 0  | 165     | True    | 410.50  | 1263.50 | 185.00 | 3145
 0  | 166     | True    | 1231.50 | 1263.50 | 185.00 | 3664
 0  | 167     | True    | 2052.50 | 1263.50 | 185.00 | 3195
 0  | 168     | True    | 410.50  | 2105.83 | 185.00 | 2119
 0  | 169     | True    | 1231.50 | 2105.83 | 185.00 | 2529
 0  | 170     | True    | 2052.50 | 2105.83 | 185.00 | 2251
 0  | 171     | True    | 410.50  | 421.17  | 195.00 | 2681
 0  | 172     | True    | 1231.50 | 421.17  | 195.00 | 3152
 0  | 173     | True    | 2052.50 | 421.17  | 195.00 | 2712
 0  | 174     | True    | 410.50  | 1263.50 | 195.00 | 3070
 0  | 175     | True    | 1231.50 | 1263.50 | 195.00 | 3582
 0  | 176     | True    | 2052.50 | 1263.50 | 195.00 | 3130
 0  | 177     | True    | 410.50  | 2105.83 | 195.00 | 2150
 0  | 178     | True    | 1231.50 | 2105.83 | 195.00 | 2563
 0  | 179     | True    | 2052.50 | 2105.83 | 195.00 | 2278
 0  | 180     | True    | 410.50  | 421.17  | 205.00 | 2604
 0  | 181     | True    | 1231.50 | 421.17  | 205.00 | 3056
 0  | 182     | True    | 2052.50 | 421.17  | 205.00 | 2618
 0  | 183     | True    | 410.50  | 1263.50 | 205.00 | 2971
 0  | 184     | True    | 1231.50 | 1263.50 | 205.00 | 3475
 0  | 185     | True    | 2052.50 | 1263.50 | 205.00 | 3023
 0  | 186     | True    | 410.50  | 2105.83 | 205.00 | 2135
 0  | 187     | True    | 1231.50 | 2105.83 | 205.00 | 2560
 0  | 188     | True    | 2052.50 | 2105.83 | 205.00 | 2254
 0  | 189     | True    | 410.50  | 421.17  | 215.00 | 2534
 0  | 190     | True    | 1231.50 | 421.17  | 215.00 | 2968
 0  | 191     | True    | 2052.50 | 421.17  | 215.00 | 2539
 0  | 192     | True    | 410.50  | 1263.50 | 215.00 | 2923
 0  | 193     | True    | 1231.50 | 1263.50 | 215.00 | 3417
 0  | 194     | True    | 2052.50 | 1263.50 | 215.00 | 2973
 0  | 195     | True    | 410.50  | 2105.83 | 215.00 | 2149
 0  | 196     | True    | 1231.50 | 2105.83 | 215.00 | 2566
 0  | 197     | True    | 2052.50 | 2105.83 | 215.00 | 2251
 0  | 198     | True    | 410.50  | 421.17  | 225.00 | 2442
 0  | 199     | True    | 1231.50 | 421.17  | 225.00 | 2860
 0  | 200     | True    | 2052.50 | 421.17  | 225.00 | 2427
 0  | 201     | True    | 410.50  | 1263.50 | 225.00 | 2844
 0  | 202     | True    | 1231.50 | 1263.50 | 225.00 | 3330
 0  | 203     | True    | 2052.50 | 1263.50 | 225.00 | 2885
 0  | 204     | True    | 410.50  | 2105.83 | 225.00 | 2119
 0  | 205     | True    | 1231.50 | 2105.83 | 225.00 | 2530
 0  | 206     | True    | 2052.50 | 2105.83 | 225.00 | 2217
 0  | 207     | True    | 410.50  | 421.17  | 235.00 | 2467
 0  | 208     | True    | 1231.50 | 421.17  | 235.00 | 2871
 0  | 209     | True    | 2052.50 | 421.17  | 235.00 | 2439
 0  | 210     | True    | 410.50  | 1263.50 | 235.00 | 2917
 0  | 211     | True    | 1231.50 | 1263.50 | 235.00 | 3397
 0  | 212     | True    | 2052.50 | 1263.50 | 235.00 | 2951
 0  | 213     | True    | 410.50  | 2105.83 | 235.00 | 2187
 0  | 214     | True    | 1231.50 | 2105.83 | 235.00 | 2588
 0  | 215     | True    | 2052.50 | 2105.83 | 235.00 | 2274
 0  | 216     | True    | 410.50  | 421.17  | 245.00 | 2433
 0  | 217     | True    | 1231.50 | 421.17  | 245.00 | 2839
 0  | 218     | True    | 2052.50 | 421.17  | 245.00 | 2413
 0  | 219     | True    | 410.50  | 1263.50 | 245.00 | 2911
 0  | 220     | True    | 1231.50 | 1263.50 | 245.00 | 3398
 0  | 221     | True    | 2052.50 | 1263.50 | 245.00 | 2946
 0  | 222     | True    | 410.50  | 2105.83 | 245.00 | 2202
 0  | 223     | True    | 1231.50 | 2105.83 | 245.00 | 2616
 0  | 224     | True    | 2052.50 | 2105.83 | 245.00 | 2286
 0  | 225     | True    | 410.50  | 421.17  | 255.00 | 2490
 0  | 226     | True    | 1231.50 | 421.17  | 255.00 | 2895
 0  | 227     | True    | 2052.50 | 421.17  | 255.00 | 2481
 0  | 228     | True    | 410.50  | 1263.50 | 255.00 | 3005
 0  | 229     | True    | 1231.50 | 1263.50 | 255.00 | 3496
 0  | 230     | True    | 2052.50 | 1263.50 | 255.00 | 3041
 0  | 231     | True    | 410.50  | 2105.83 | 255.00 | 2273
 0  | 232     | True    | 1231.50 | 2105.83 | 255.00 | 2698
 0  | 233     | True    | 2052.50 | 2105.83 | 255.00 | 2351
 0  | 234     | True    | 410.50  | 421.17  | 265.00 | 2495
 0  | 235     | True    | 1231.50 | 421.17  | 265.00 | 2882
 0  | 236     | True    | 2052.50 | 421.17  | 265.00 | 2458
 0  | 237     | True    | 410.50  | 1263.50 | 265.00 | 3062
 0  | 238     | True    | 1231.50 | 1263.50 | 265.00 | 3539
 0  | 239     | True    | 2052.50 | 1263.50 | 265.00 | 3051
 0  | 240     | True    | 410.50  | 2105.83 | 265.00 | 2339
 0  | 241     | True    | 1231.50 | 2105.83 | 265.00 | 2762
 0  | 242     | True    | 2052.50 | 2105.83 | 265.00 | 2370
 0  | 243     | True    | 410.50  | 421.17  | 275.00 | 2504
 0  | 244     | True    | 1231.50 | 421.17  | 275.00 | 2867
 0  | 245     | True    | 2052.50 | 421.17  | 275.00 | 2439
 0  | 246     | True    | 410.50  | 1263.50 | 275.00 | 3123
 0  | 247     | True    | 1231.50 | 1263.50 | 275.00 | 3576
 0  | 248     | True    | 2052.50 | 1263.50 | 275.00 | 3070
 0  | 249     | True    | 410.50  | 2105.83 | 275.00 | 2395
 0  | 250     | True    | 1231.50 | 2105.83 | 275.00 | 2805
 0  | 251     | True    | 2052.50 | 2105.83 | 275.00 | 2382
 0  | 252     | True    | 410.50  | 421.17  | 285.00 | 2451
 0  | 253     | True    | 1231.50 | 421.17  | 285.00 | 2799
 0  | 254     | True    | 2052.50 | 421.17  | 285.00 | 2379
 0  | 255     | True    | 410.50  | 1263.50 | 285.00 | 3133
 0  | 256     | True    | 1231.50 | 1263.50 | 285.00 | 3573
 0  | 257     | True    | 2052.50 | 1263.50 | 285.00 | 3060
 0  | 258     | True    | 410.50  | 2105.83 | 285.00 | 2446
 0  | 259     | True    | 1231.50 | 2105.83 | 285.00 | 2848
 0  | 260     | True    | 2052.50 | 2105.83 | 285.00 | 2404
 0  | 261     | True    | 410.50  | 421.17  | 295.00 | 2405
 0  | 262     | True    | 1231.50 | 421.17  | 295.00 | 2768
 0  | 263     | True    | 2052.50 | 421.17  | 295.00 | 2368
 0  | 264     | True    | 410.50  | 1263.50 | 295.00 | 3132
 0  | 265     | True    | 1231.50 | 1263.50 | 295.00 | 3594
 0  | 266     | True    | 2052.50 | 1263.50 | 295.00 | 3089
 0  | 267     | True    | 410.50  | 2105.83 | 295.00 | 2461
 0  | 268     | True    | 1231.50 | 2105.83 | 295.00 | 2879
 0  | 269     | True    | 2052.50 | 2105.83 | 295.00 | 2436
 0  | 270     | True    | 410.50  | 421.17  | 305.00 | 2364
 0  | 271     | True    | 1231.50 | 421.17  | 305.00 | 2741
 0  | 272     | True    | 2052.50 | 421.17  | 305.00 | 2359
 0  | 273     | True    | 410.50  | 1263.50 | 305.00 | 3123
 0  | 274     | True    | 1231.50 | 1263.50 | 305.00 | 3610
 0  | 275     | True    | 2052.50 | 1263.50 | 305.00 | 3116
 0  | 276     | True    | 410.50  | 2105.83 | 305.00 | 2489
 0  | 277     | True    | 1231.50 | 2105.83 | 305.00 | 2933
 0  | 278     | True    | 2052.50 | 2105.83 | 305.00 | 2504
 0  | 279     | True    | 410.50  | 421.17  | 315.00 | 2356
 0  | 280     | True    | 1231.50 | 421.17  | 315.00 | 2752
 0  | 281     | True    | 2052.50 | 421.17  | 315.00 | 2374
 0  | 282     | True    | 410.50  | 1263.50 | 315.00 | 3153
 0  | 283     | True    | 1231.50 | 1263.50 | 315.00 | 3669
 0  | 284     | True    | 2052.50 | 1263.50 | 315.00 | 3166
 0  | 285     | True    | 410.50  | 2105.83 | 315.00 | 2527
 0  | 286     | True    | 1231.50 | 2105.83 | 315.00 | 2991
 0  | 287     | True    | 2052.50 | 2105.83 | 315.00 | 2548
 0  | 288     | True    | 410.50  | 421.17  | 325.00 | 2293
 0  | 289     | True    | 1231.50 | 421.17  | 325.00 | 2701
 0  | 290     | True    | 2052.50 | 421.17  | 325.00 | 2344
 0  | 291     | True    | 410.50  | 1263.50 | 325.00 | 3117
 0  | 292     | True    | 1231.50 | 1263.50 | 325.00 | 3650
 0  | 293     | True    | 2052.50 | 1263.50 | 325.00 | 3158
 0  | 294     | True    | 410.50  | 2105.83 | 325.00 | 2534
 0  | 295     | True    | 1231.50 | 2105.83 | 325.00 | 3008
 0  | 296     | True    | 2052.50 | 2105.83 | 325.00 | 2564
 0  | 297     | True    | 410.50  | 421.17  | 335.00 | 2244
 0  | 298     | True    | 1231.50 | 421.17  | 335.00 | 2663
 0  | 299     | True    | 2052.50 | 421.17  | 335.00 | 2317
 0  | 300     | True    | 410.50  | 1263.50 | 335.00 | 3122
 0  | 301     | True    | 1231.50 | 1263.50 | 335.00 | 3668
 0  | 302     | True    | 2052.50 | 1263.50 | 335.00 | 3170
 0  | 303     | True    | 410.50  | 2105.83 | 335.00 | 2551
 0  | 304     | True    | 1231.50 | 2105.83 | 335.00 | 3026
 0  | 305     | True    | 2052.50 | 2105.83 | 335.00 | 2564
 0  | 306     | True    | 410.50  | 421.17  | 345.00 | 2242
 0  | 307     | True    | 1231.50 | 421.17  | 345.00 | 2680
 0  | 308     | True    | 2052.50 | 421.17  | 345.00 | 2343
 0  | 309     | True    | 410.50  | 1263.50 | 345.00 | 3144
 0  | 310     | True    | 1231.50 | 1263.50 | 345.00 | 3701
 0  | 311     | True    | 2052.50 | 1263.50 | 345.00 | 3227
 0  | 312     | True    | 410.50  | 2105.83 | 345.00 | 2554
 0  | 313     | True    | 1231.50 | 2105.83 | 345.00 | 3028
 0  | 314     | True    | 2052.50 | 2105.83 | 345.00 | 2586
 0  | 315     | True    | 410.50  | 421.17  | 355.00 | 2279
 0  | 316     | True    | 1231.50 | 421.17  | 355.00 | 2734
 0  | 317     | True    | 2052.50 | 421.17  | 355.00 | 2422
 0  | 318     | True    | 410.50  | 1263.50 | 355.00 | 3218
 0  | 319     | True    | 1231.50 | 1263.50 | 355.00 | 3782
 0  | 320     | True    | 2052.50 | 1263.50 | 355.00 | 3337
 0  | 321     | True    | 410.50  | 2105.83 | 355.00 | 2558
 0  | 322     | True    | 1231.50 | 2105.83 | 355.00 | 3031
 0  | 323     | True    | 2052.50 | 2105.83 | 355.00 | 2615
 0  | 324     | True    | 410.50  | 421.17  | 365.00 | 2303
 0  | 325     | True    | 1231.50 | 421.17  | 365.00 | 2775
 0  | 326     | True    | 2052.50 | 421.17  | 365.00 | 2474
 0  | 327     | True    | 410.50  | 1263.50 | 365.00 | 3206
 0  | 328     | True    | 1231.50 | 1263.50 | 365.00 | 3779
 0  | 329     | True    | 2052.50 | 1263.50 | 365.00 | 3363
 0  | 330     | True    | 410.50  | 2105.83 | 365.00 | 2481
 0  | 331     | True    | 1231.50 | 2105.83 | 365.00 | 2951
 0  | 332     | True    | 2052.50 | 2105.83 | 365.00 | 2567
 0  | 333     | True    | 410.50  | 421.17  | 375.00 | 2299
 0  | 334     | True    | 1231.50 | 421.17  | 375.00 | 2775
 0  | 335     | True    | 2052.50 | 421.17  | 375.00 | 2489
 0  | 336     | True    | 410.50  | 1263.50 | 375.00 | 3200
 0  | 337     | True    | 1231.50 | 1263.50 | 375.00 | 3775
 0  | 338     | True    | 2052.50 | 1263.50 | 375.00 | 3361
 0  | 339     | True    | 410.50  | 2105.83 | 375.00 | 2424
 0  | 340     | True    | 1231.50 | 2105.83 | 375.00 | 2887
 0  | 341     | True    | 2052.50 | 2105.83 | 375.00 | 2514
 0  | 342     | True    | 410.50  | 421.17  | 385.00 | 2275
 0  | 343     | True    | 1231.50 | 421.17  | 385.00 | 2763
 0  | 344     | True    | 2052.50 | 421.17  | 385.00 | 2478
 0  | 345     | True    | 410.50  | 1263.50 | 385.00 | 3155
 0  | 346     | True    | 1231.50 | 1263.50 | 385.00 | 3733
 0  | 347     | True    | 2052.50 | 1263.50 | 385.00 | 3333
 0  | 348     | True    | 410.50  | 2105.83 | 385.00 | 2350
 0  | 349     | True    | 1231.50 | 2105.83 | 385.00 | 2805
 0  | 350     | True    | 2052.50 | 2105.83 | 385.00 | 2454
 0  | 351     | True    | 410.50  | 421.17  | 395.00 | 2272
 0  | 352     | True    | 1231.50 | 421.17  | 395.00 | 2784
 0  | 353     | True    | 2052.50 | 421.17  | 395.00 | 2504
 0  | 354     | True    | 410.50  | 1263.50 | 395.00 | 3158
 0  | 355     | True    | 1231.50 | 1263.50 | 395.00 | 3757
 0  | 356     | True    | 2052.50 | 1263.50 | 395.00 | 3359
 0  | 357     | True    | 410.50  | 2105.83 | 395.00 | 2305
 0  | 358     | True    | 1231.50 | 2105.83 | 395.00 | 2764
 0  | 359     | True    | 2052.50 | 2105.83 | 395.00 | 2418
 0  | 360     | True    | 410.50  | 421.17  | 405.00 | 2274
 0  | 361     | True    | 1231.50 | 421.17  | 405.00 | 2796
 0  | 362     | True    | 2052.50 | 421.17  | 405.00 | 2526
 0  | 363     | True    | 410.50  | 1263.50 | 405.00 | 3103
 0  | 364     | True    | 1231.50 | 1263.50 | 405.00 | 3704
 0  | 365     | True    | 2052.50 | 1263.50 | 405.00 | 3340
 0  | 366     | True    | 410.50  | 2105.83 | 405.00 | 2205
 0  | 367     | True    | 1231.50 | 2105.83 | 405.00 | 2655
 0  | 368     | True    | 2052.50 | 2105.83 | 405.00 | 2346
 0  | 369     | True    | 410.50  | 421.17  | 415.00 | 2289
 0  | 370     | True    | 1231.50 | 421.17  | 415.00 | 2831
 0  | 371     | True    | 2052.50 | 421.17  | 415.00 | 2567
 0  | 372     | True    | 410.50  | 1263.50 | 415.00 | 3043
 0  | 373     | True    | 1231.50 | 1263.50 | 415.00 | 3663
 0  | 374     | True    | 2052.50 | 1263.50 | 415.00 | 3319
 0  | 375     | True    | 410.50  | 2105.83 | 415.00 | 2107
 0  | 376     | True    | 1231.50 | 2105.83 | 415.00 | 2551
 0  | 377     | True    | 2052.50 | 2105.83 | 415.00 | 2277
 0  | 378     | True    | 410.50  | 421.17  | 425.00 | 2339
 0  | 379     | True    | 1231.50 | 421.17  | 425.00 | 2894
 0  | 380     | True    | 2052.50 | 421.17  | 425.00 | 2631
 0  | 381     | True    | 410.50  | 1263.50 | 425.00 | 3031
 0  | 382     | True    | 1231.50 | 1263.50 | 425.00 | 3656
 0  | 383     | True    | 2052.50 | 1263.50 | 425.00 | 3328
 0  | 384     | True    | 410.50  | 2105.83 | 425.00 | 2036
 0  | 385     | True    | 1231.50 | 2105.83 | 425.00 | 2456
 0  | 386     | True    | 2052.50 | 2105.83 | 425.00 | 2217
 0  | 387     | True    | 410.50  | 421.17  | 435.00 | 2360
 0  | 388     | True    | 1231.50 | 421.17  | 435.00 | 2946
 0  | 389     | True    | 2052.50 | 421.17  | 435.00 | 2679
 0  | 390     | True    | 410.50  | 1263.50 | 435.00 | 2985
 0  | 391     | True    | 1231.50 | 1263.50 | 435.00 | 3628
 0  | 392     | True    | 2052.50 | 1263.50 | 435.00 | 3300
 0  | 393     | True    | 410.50  | 2105.83 | 435.00 | 1962
 0  | 394     | True    | 1231.50 | 2105.83 | 435.00 | 2359
 0  | 395     | True    | 2052.50 | 2105.83 | 435.00 | 2125
 0  | 396     | True    | 410.50  | 421.17  | 445.00 | 2386
 0  | 397     | True    | 1231.50 | 421.17  | 445.00 | 2990
 0  | 398     | True    | 2052.50 | 421.17  | 445.00 | 2707
 0  | 399     | True    | 410.50  | 1263.50 | 445.00 | 2940
 0  | 400     | True    | 1231.50 | 1263.50 | 445.00 | 3588
 0  | 401     | True    | 2052.50 | 1263.50 | 445.00 | 3254
 0  | 402     | True    | 410.50  | 2105.83 | 445.00 | 1882
 0  | 403     | True    | 1231.50 | 2105.83 | 445.00 | 2254
 0  | 404     | True    | 2052.50 | 2105.83 | 445.00 | 2020
 0  | 405     | True    | 410.50  | 421.17  | 455.00 | 2477
 0  | 406     | True    | 1231.50 | 421.17  | 455.00 | 3095
 0  | 407     | True    | 2052.50 | 421.17  | 455.00 | 2805
 0  | 408     | True    | 410.50  | 1263.50 | 455.00 | 2963
 0  | 409     | True    | 1231.50 | 1263.50 | 455.00 | 3612
 0  | 410     | True    | 2052.50 | 1263.50 | 455.00 | 3285
 0  | 411     | True    | 410.50  | 2105.83 | 455.00 | 1853
 0  | 412     | True    | 1231.50 | 2105.83 | 455.00 | 2204
 0  | 413     | True    | 2052.50 | 2105.83 | 455.00 | 1987
 0  | 414     | True    | 410.50  | 421.17  | 465.00 | 2558
 0  | 415     | True    | 1231.50 | 421.17  | 465.00 | 3176
 0  | 416     | True    | 2052.50 | 421.17  | 465.00 | 2864
 0  | 417     | True    | 410.50  | 1263.50 | 465.00 | 3010
 0  | 418     | True    | 1231.50 | 1263.50 | 465.00 | 3657
 0  | 419     | True    | 2052.50 | 1263.50 | 465.00 | 3314
 0  | 420     | True    | 410.50  | 2105.83 | 465.00 | 1821
 0  | 421     | True    | 1231.50 | 2105.83 | 465.00 | 2166
 0  | 422     | True    | 2052.50 | 2105.83 | 465.00 | 1953
 0  | 423     | True    | 410.50  | 421.17  | 475.00 | 2603
 0  | 424     | True    | 1231.50 | 421.17  | 475.00 | 3214
 0  | 425     | True    | 2052.50 | 421.17  | 475.00 | 2895
 0  | 426     | True    | 410.50  | 1263.50 | 475.00 | 3018
 0  | 427     | True    | 1231.50 | 1263.50 | 475.00 | 3651
 0  | 428     | True    | 2052.50 | 1263.50 | 475.00 | 3303
 0  | 429     | True    | 410.50  | 2105.83 | 475.00 | 1807
 0  | 430     | True    | 1231.50 | 2105.83 | 475.00 | 2145
 0  | 431     | True    | 2052.50 | 2105.83 | 475.00 | 1936
 0  | 432     | True    | 410.50  | 421.17  | 485.00 | 2548
 0  | 433     | True    | 1231.50 | 421.17  | 485.00 | 3159
 0  | 434     | True    | 2052.50 | 421.17  | 485.00 | 2850
 0  | 435     | True    | 410.50  | 1263.50 | 485.00 | 2917
 0  | 436     | True    | 1231.50 | 1263.50 | 485.00 | 3547
 0  | 437     | True    | 2052.50 | 1263.50 | 485.00 | 3210
 0  | 438     | True    | 410.50  | 2105.83 | 485.00 | 1757
 0  | 439     | True    | 1231.50 | 2105.83 | 485.00 | 2095
 0  | 440     | True    | 2052.50 | 2105.83 | 485.00 | 1893
 0  | 441     | True    | 410.50  | 421.17  | 495.00 | 2542
 0  | 442     | True    | 1231.50 | 421.17  | 495.00 | 3149
 0  | 443     | True    | 2052.50 | 421.17  | 495.00 | 2851
 0  | 444     | True    | 410.50  | 1263.50 | 495.00 | 2866
 0  | 445     | True    | 1231.50 | 1263.50 | 495.00 | 3493
 0  | 446     | True    | 2052.50 | 1263.50 | 495.00 | 3170
 0  | 447     | True    | 410.50  | 2105.83 | 495.00 | 1746
 0  | 448     | True    | 1231.50 | 2105.83 | 495.00 | 2091
 0  | 449     | True    | 2052.50 | 2105.83 | 495.00 | 1896
 0  | 450     | True    | 410.50  | 421.17  | 505.00 | 2575
 0  | 451     | True    | 1231.50 | 421.17  | 505.00 | 3169
 0  | 452     | True    | 2052.50 | 421.17  | 505.00 | 2872
 0  | 453     | True    | 410.50  | 1263.50 | 505.00 | 2889
 0  | 454     | True    | 1231.50 | 1263.50 | 505.00 | 3501
 0  | 455     | True    | 2052.50 | 1263.50 | 505.00 | 3184
 0  | 456     | True    | 410.50  | 2105.83 | 505.00 | 1802
 0  | 457     | True    | 1231.50 | 2105.83 | 505.00 | 2148
 0  | 458     | True    | 2052.50 | 2105.83 | 505.00 | 1943
 0  | 459     | True    | 410.50  | 421.17  | 515.00 | 2568
 0  | 460     | True    | 1231.50 | 421.17  | 515.00 | 3134
 0  | 461     | True    | 2052.50 | 421.17  | 515.00 | 2838
 0  | 462     | True    | 410.50  | 1263.50 | 515.00 | 2867
 0  | 463     | True    | 1231.50 | 1263.50 | 515.00 | 3455
 0  | 464     | True    | 2052.50 | 1263.50 | 515.00 | 3141
 0  | 465     | True    | 410.50  | 2105.83 | 515.00 | 1820
 0  | 466     | True    | 1231.50 | 2105.83 | 515.00 | 2176
 0  | 467     | True    | 2052.50 | 2105.83 | 515.00 | 1955
 0  | 468     | True    | 410.50  | 421.17  | 525.00 | 2552
 0  | 469     | True    | 1231.50 | 421.17  | 525.00 | 3115
 0  | 470     | True    | 2052.50 | 421.17  | 525.00 | 2820
 0  | 471     | True    | 410.50  | 1263.50 | 525.00 | 2831
 0  | 472     | True    | 1231.50 | 1263.50 | 525.00 | 3410
 0  | 473     | True    | 2052.50 | 1263.50 | 525.00 | 3100
 0  | 474     | True    | 410.50  | 2105.83 | 525.00 | 1824
 0  | 475     | True    | 1231.50 | 2105.83 | 525.00 | 2179
 0  | 476     | True    | 2052.50 | 2105.83 | 525.00 | 1948
 0  | 477     | True    | 410.50  | 421.17  | 535.00 | 2486
 0  | 478     | True    | 1231.50 | 421.17  | 535.00 | 3077
 0  | 479     | True    | 2052.50 | 421.17  | 535.00 | 2793
 0  | 480     | True    | 410.50  | 1263.50 | 535.00 | 2760
 0  | 481     | True    | 1231.50 | 1263.50 | 535.00 | 3367
 0  | 482     | True    | 2052.50 | 1263.50 | 535.00 | 3067
 0  | 483     | True    | 410.50  | 2105.83 | 535.00 | 1817
 0  | 484     | True    | 1231.50 | 2105.83 | 535.00 | 2192
 0  | 485     | True    | 2052.50 | 2105.83 | 535.00 | 1960
 0  | 486     | True    | 410.50  | 421.17  | 545.00 | 2490
 0  | 487     | True    | 1231.50 | 421.17  | 545.00 | 3105
 0  | 488     | True    | 2052.50 | 421.17  | 545.00 | 2821
 0  | 489     | True    | 410.50  | 1263.50 | 545.00 | 2753
 0  | 490     | True    | 1231.50 | 1263.50 | 545.00 | 3385
 0  | 491     | True    | 2052.50 | 1263.50 | 545.00 | 3084
 0  | 492     | True    | 410.50  | 2105.83 | 545.00 | 1837
 0  | 493     | True    | 1231.50 | 2105.83 | 545.00 | 2228
 0  | 494     | True    | 2052.50 | 2105.83 | 545.00 | 1993
 0  | 495     | True    | 410.50  | 421.17  | 555.00 | 2429
 0  | 496     | True    | 1231.50 | 421.17  | 555.00 | 3034
 0  | 497     | True    | 2052.50 | 421.17  | 555.00 | 2767
 0  | 498     | True    | 410.50  | 1263.50 | 555.00 | 2708
 0  | 499     | True    | 1231.50 | 1263.50 | 555.00 | 3338
 0  | 500     | True    | 2052.50 | 1263.50 | 555.00 | 3050
 0  | 501     | True    | 410.50  | 2105.83 | 555.00 | 1880
 0  | 502     | True    | 1231.50 | 2105.83 | 555.00 | 2291
 0  | 503     | True    | 2052.50 | 2105.83 | 555.00 | 2056
 0  | 504     | True    | 410.50  | 421.17  | 565.00 | 2376
 0  | 505     | True    | 1231.50 | 421.17  | 565.00 | 2960
 0  | 506     | True    | 2052.50 | 421.17  | 565.00 | 2704
 0  | 507     | True    | 410.50  | 1263.50 | 565.00 | 2657
 0  | 508     | True    | 1231.50 | 1263.50 | 565.00 | 3274
 0  | 509     | True    | 2052.50 | 1263.50 | 565.00 | 2987
 0  | 510     | True    | 410.50  | 2105.83 | 565.00 | 1872
 0  | 511     | True    | 1231.50 | 2105.83 | 565.00 | 2297
 0  | 512     | True    | 2052.50 | 2105.83 | 565.00 | 2055
 0  | 513     | True    | 410.50  | 421.17  | 575.00 | 2328
 0  | 514     | True    | 1231.50 | 421.17  | 575.00 | 2920
 0  | 515     | True    | 2052.50 | 421.17  | 575.00 | 2679
 0  | 516     | True    | 410.50  | 1263.50 | 575.00 | 2676
 0  | 517     | True    | 1231.50 | 1263.50 | 575.00 | 3312
 0  | 518     | True    | 2052.50 | 1263.50 | 575.00 | 3034
 0  | 519     | True    | 410.50  | 2105.83 | 575.00 | 1933
 0  | 520     | True    | 1231.50 | 2105.83 | 575.00 | 2395
 0  | 521     | True    | 2052.50 | 2105.83 | 575.00 | 2157
 0  | 522     | True    | 410.50  | 421.17  | 585.00 | 2292
 0  | 523     | True    | 1231.50 | 421.17  | 585.00 | 2892
 0  | 524     | True    | 2052.50 | 421.17  | 585.00 | 2647
 0  | 525     | True    | 410.50  | 1263.50 | 585.00 | 2691
 0  | 526     | True    | 1231.50 | 1263.50 | 585.00 | 3345
 0  | 527     | True    | 2052.50 | 1263.50 | 585.00 | 3067
 0  | 528     | True    | 410.50  | 2105.83 | 585.00 | 1964
 0  | 529     | True    | 1231.50 | 2105.83 | 585.00 | 2453
 0  | 530     | True    | 2052.50 | 2105.83 | 585.00 | 2217
 0  | 531     | True    | 410.50  | 421.17  | 595.00 | 2330
 0  | 532     | True    | 1231.50 | 421.17  | 595.00 | 2949
 0  | 533     | True    | 2052.50 | 421.17  | 595.00 | 2713
 0  | 534     | True    | 410.50  | 1263.50 | 595.00 | 2790
 0  | 535     | True    | 1231.50 | 1263.50 | 595.00 | 3482
 0  | 536     | True    | 2052.50 | 1263.50 | 595.00 | 3212
 0  | 537     | True    | 410.50  | 2105.83 | 595.00 | 2059
 0  | 538     | True    | 1231.50 | 2105.83 | 595.00 | 2582
 0  | 539     | True    | 2052.50 | 2105.83 | 595.00 | 2352
 0  | 540     | True    | 410.50  | 421.17  | 605.00 | 2330
 0  | 541     | True    | 1231.50 | 421.17  | 605.00 | 2944
 0  | 542     | True    | 2052.50 | 421.17  | 605.00 | 2702
 0  | 543     | True    | 410.50  | 1263.50 | 605.00 | 2818
 0  | 544     | True    | 1231.50 | 1263.50 | 605.00 | 3511
 0  | 545     | True    | 2052.50 | 1263.50 | 605.00 | 3234
 0  | 546     | True    | 410.50  | 2105.83 | 605.00 | 2101
 0  | 547     | True    | 1231.50 | 2105.83 | 605.00 | 2625
 0  | 548     | True    | 2052.50 | 2105.83 | 605.00 | 2386
 0  | 549     | True    | 410.50  | 421.17  | 615.00 | 2383
 0  | 550     | True    | 1231.50 | 421.17  | 615.00 | 2983
 0  | 551     | True    | 2052.50 | 421.17  | 615.00 | 2720
 0  | 552     | True    | 410.50  | 1263.50 | 615.00 | 2897
 0  | 553     | True    | 1231.50 | 1263.50 | 615.00 | 3586
 0  | 554     | True    | 2052.50 | 1263.50 | 615.00 | 3279
 0  | 555     | True    | 410.50  | 2105.83 | 615.00 | 2184
 0  | 556     | True    | 1231.50 | 2105.83 | 615.00 | 2713
 0  | 557     | True    | 2052.50 | 2105.83 | 615.00 | 2450
 0  | 558     | True    | 410.50  | 421.17  | 625.00 | 2334
 0  | 559     | True    | 1231.50 | 421.17  | 625.00 | 2907
 0  | 560     | True    | 2052.50 | 421.17  | 625.00 | 2627
 0  | 561     | True    | 410.50  | 1263.50 | 625.00 | 2857
 0  | 562     | True    | 1231.50 | 1263.50 | 625.00 | 3526
 0  | 563     | True    | 2052.50 | 1263.50 | 625.00 | 3206
 0  | 564     | True    | 410.50  | 2105.83 | 625.00 | 2202
 0  | 565     | True    | 1231.50 | 2105.83 | 625.00 | 2737
 0  | 566     | True    | 2052.50 | 2105.83 | 625.00 | 2462
 0  | 567     | True    | 410.50  | 421.17  | 635.00 | 2275
 0  | 568     | True    | 1231.50 | 421.17  | 635.00 | 2803
 0  | 569     | True    | 2052.50 | 421.17  | 635.00 | 2521
 0  | 570     | True    | 410.50  | 1263.50 | 635.00 | 2805
 0  | 571     | True    | 1231.50 | 1263.50 | 635.00 | 3441
 0  | 572     | True    | 2052.50 | 1263.50 | 635.00 | 3119
 0  | 573     | True    | 410.50  | 2105.83 | 635.00 | 2210
 0  | 574     | True    | 1231.50 | 2105.83 | 635.00 | 2745
 0  | 575     | True    | 2052.50 | 2105.83 | 635.00 | 2459
 0  | 576     | True    | 410.50  | 421.17  | 645.00 | 2229
 0  | 577     | True    | 1231.50 | 421.17  | 645.00 | 2752
 0  | 578     | True    | 2052.50 | 421.17  | 645.00 | 2469
 0  | 579     | True    | 410.50  | 1263.50 | 645.00 | 2807
 0  | 580     | True    | 1231.50 | 1263.50 | 645.00 | 3457
 0  | 581     | True    | 2052.50 | 1263.50 | 645.00 | 3129
 0  | 582     | True    | 410.50  | 2105.83 | 645.00 | 2266
 0  | 583     | True    | 1231.50 | 2105.83 | 645.00 | 2827
 0  | 584     | True    | 2052.50 | 2105.83 | 645.00 | 2525
 0  | 585     | True    | 410.50  | 421.17  | 655.00 | 2242
 0  | 586     | True    | 1231.50 | 421.17  | 655.00 | 2763
 0  | 587     | True    | 2052.50 | 421.17  | 655.00 | 2466
 0  | 588     | True    | 410.50  | 1263.50 | 655.00 | 2879
 0  | 589     | True    | 1231.50 | 1263.50 | 655.00 | 3550
 0  | 590     | True    | 2052.50 | 1263.50 | 655.00 | 3198
 0  | 591     | True    | 410.50  | 2105.83 | 655.00 | 2331
 0  | 592     | True    | 1231.50 | 2105.83 | 655.00 | 2913
 0  | 593     | True    | 2052.50 | 2105.83 | 655.00 | 2586
 0  | 594     | True    | 410.50  | 421.17  | 665.00 | 2286
 0  | 595     | True    | 1231.50 | 421.17  | 665.00 | 2809
 0  | 596     | True    | 2052.50 | 421.17  | 665.00 | 2503
 0  | 597     | True    | 410.50  | 1263.50 | 665.00 | 2992
 0  | 598     | True    | 1231.50 | 1263.50 | 665.00 | 3684
 0  | 599     | True    | 2052.50 | 1263.50 | 665.00 | 3310
 0  | 600     | True    | 410.50  | 2105.83 | 665.00 | 2454
 0  | 601     | True    | 1231.50 | 2105.83 | 665.00 | 3050
 0  | 602     | True    | 2052.50 | 2105.83 | 665.00 | 2700
 0  | 603     | True    | 410.50  | 421.17  | 675.00 | 2269
 0  | 604     | True    | 1231.50 | 421.17  | 675.00 | 2779
 0  | 605     | True    | 2052.50 | 421.17  | 675.00 | 2484
 0  | 606     | True    | 410.50  | 1263.50 | 675.00 | 3006
 0  | 607     | True    | 1231.50 | 1263.50 | 675.00 | 3691
 0  | 608     | True    | 2052.50 | 1263.50 | 675.00 | 3320
 0  | 609     | True    | 410.50  | 2105.83 | 675.00 | 2469
 0  | 610     | True    | 1231.50 | 2105.83 | 675.00 | 3059
 0  | 611     | True    | 2052.50 | 2105.83 | 675.00 | 2712
 0  | 612     | True    | 410.50  | 421.17  | 685.00 | 2264
 0  | 613     | True    | 1231.50 | 421.17  | 685.00 | 2741
 0  | 614     | True    | 2052.50 | 421.17  | 685.00 | 2448
 0  | 615     | True    | 410.50  | 1263.50 | 685.00 | 3059
 0  | 616     | True    | 1231.50 | 1263.50 | 685.00 | 3723
 0  | 617     | True    | 2052.50 | 1263.50 | 685.00 | 3347
 0  | 618     | True    | 410.50  | 2105.83 | 685.00 | 2524
 0  | 619     | True    | 1231.50 | 2105.83 | 685.00 | 3104
 0  | 620     | True    | 2052.50 | 2105.83 | 685.00 | 2758
 0  | 621     | True    | 410.50  | 421.17  | 695.00 | 2239
 0  | 622     | True    | 1231.50 | 421.17  | 695.00 | 2695
 0  | 623     | True    | 2052.50 | 421.17  | 695.00 | 2387
 0  | 624     | True    | 410.50  | 1263.50 | 695.00 | 3074
 0  | 625     | True    | 1231.50 | 1263.50 | 695.00 | 3747
 0  | 626     | True    | 2052.50 | 1263.50 | 695.00 | 3357
 0  | 627     | True    | 410.50  | 2105.83 | 695.00 | 2514
 0  | 628     | True    | 1231.50 | 2105.83 | 695.00 | 3109
 0  | 629     | True    | 2052.50 | 2105.83 | 695.00 | 2764
 0  | 630     | True    | 410.50  | 421.17  | 705.00 | 2234
 0  | 631     | True    | 1231.50 | 421.17  | 705.00 | 2665
 0  | 632     | True    | 2052.50 | 421.17  | 705.00 | 2355
 0  | 633     | True    | 410.50  | 1263.50 | 705.00 | 3153
 0  | 634     | True    | 1231.50 | 1263.50 | 705.00 | 3814
 0  | 635     | True    | 2052.50 | 1263.50 | 705.00 | 3416
 0  | 636     | True    | 410.50  | 2105.83 | 705.00 | 2567
 0  | 637     | True    | 1231.50 | 2105.83 | 705.00 | 3155
 0  | 638     | True    | 2052.50 | 2105.83 | 705.00 | 2804
 0  | 639     | True    | 410.50  | 421.17  | 715.00 | 1484
 0  | 640     | True    | 1231.50 | 421.17  | 715.00 | 1766
 0  | 641     | True    | 2052.50 | 421.17  | 715.00 | 1560
 0  | 642     | True    | 410.50  | 1263.50 | 715.00 | 2113
 0  | 643     | True    | 1231.50 | 1263.50 | 715.00 | 2553
 0  | 644     | True    | 2052.50 | 1263.50 | 715.00 | 2286
 0  | 645     | True    | 410.50  | 2105.83 | 715.00 | 1717
 0  | 646     | True    | 1231.50 | 2105.83 | 715.00 | 2107
 0  | 647     | True    | 2052.50 | 2105.83 | 715.00 | 1871
 -------------------------------------------------------------------


Timing information for reference profile formation
 ----------------------------------
         Read time | 310.85 seconds
      Extract time |   0.43 seconds
  Pre-process time |   0.09 seconds
      Process time |  32.97 seconds
 Post-process time |   0.00 seconds
        Total time | 351.72 seconds
         User time |   0.00 seconds
 ----------------------------------

================================================================================

Integrating reflections

 Split 4024 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 |          4885
   1 |     0 |          5 |       15 |        2.5 |      7.5 |          2496
   2 |     0 |         10 |       20 |        5.0 |     10.0 |          2544
   3 |     0 |         15 |       25 |        7.5 |     12.5 |          2591
   4 |     0 |         20 |       30 |       10.0 |     15.0 |          2566
   5 |     0 |         25 |       35 |       12.5 |     17.5 |          2567
   6 |     0 |         30 |       40 |       15.0 |     20.0 |          2559
   7 |     0 |         35 |       45 |       17.5 |     22.5 |          2543
   8 |     0 |         40 |       50 |       20.0 |     25.0 |          2524
   9 |     0 |         45 |       55 |       22.5 |     27.5 |          2569
  10 |     0 |         50 |       60 |       25.0 |     30.0 |          2548
  11 |     0 |         55 |       65 |       27.5 |     32.5 |          2533
  12 |     0 |         60 |       70 |       30.0 |     35.0 |          2561
  13 |     0 |         65 |       75 |       32.5 |     37.5 |          2539
  14 |     0 |         70 |       80 |       35.0 |     40.0 |          2598
  15 |     0 |         75 |       85 |       37.5 |     42.5 |          2542
  16 |     0 |         80 |       90 |       40.0 |     45.0 |          2521
  17 |     0 |         85 |       95 |       42.5 |     47.5 |          2611
  18 |     0 |         90 |      100 |       45.0 |     50.0 |          2548
  19 |     0 |         95 |      105 |       47.5 |     52.5 |          2546
  20 |     0 |        100 |      110 |       50.0 |     55.0 |          2572
  21 |     0 |        105 |      115 |       52.5 |     57.5 |          2540
  22 |     0 |        110 |      120 |       55.0 |     60.0 |          2587
  23 |     0 |        115 |      125 |       57.5 |     62.5 |          2542
  24 |     0 |        120 |      130 |       60.0 |     65.0 |          2547
  25 |     0 |        125 |      135 |       62.5 |     67.5 |          2577
  26 |     0 |        130 |      140 |       65.0 |     70.0 |          2561
  27 |     0 |        135 |      145 |       67.5 |     72.5 |          2554
  28 |     0 |        140 |      150 |       70.0 |     75.0 |          2561
  29 |     0 |        145 |      155 |       72.5 |     77.5 |          2536
  30 |     0 |        150 |      160 |       75.0 |     80.0 |          2560
  31 |     0 |        155 |      165 |       77.5 |     82.5 |          2554
  32 |     0 |        160 |      170 |       80.0 |     85.0 |          2566
  33 |     0 |        165 |      175 |       82.5 |     87.5 |          2561
  34 |     0 |        170 |      180 |       85.0 |     90.0 |          2572
  35 |     0 |        175 |      185 |       87.5 |     92.5 |          2539
  36 |     0 |        180 |      190 |       90.0 |     95.0 |          2552
  37 |     0 |        185 |      195 |       92.5 |     97.5 |          2555
  38 |     0 |        190 |      200 |       95.0 |    100.0 |          2571
  39 |     0 |        195 |      205 |       97.5 |    102.5 |          2552
  40 |     0 |        200 |      210 |      100.0 |    105.0 |          2527
  41 |     0 |        205 |      215 |      102.5 |    107.5 |          2585
  42 |     0 |        210 |      220 |      105.0 |    110.0 |          2542
  43 |     0 |        215 |      225 |      107.5 |    112.5 |          2570
  44 |     0 |        220 |      230 |      110.0 |    115.0 |          2543
  45 |     0 |        225 |      235 |      112.5 |    117.5 |          2568
  46 |     0 |        230 |      240 |      115.0 |    120.0 |          2557
  47 |     0 |        235 |      245 |      117.5 |    122.5 |          2577
  48 |     0 |        240 |      250 |      120.0 |    125.0 |          2553
  49 |     0 |        245 |      255 |      122.5 |    127.5 |          2565
  50 |     0 |        250 |      260 |      125.0 |    130.0 |          2549
  51 |     0 |        255 |      265 |      127.5 |    132.5 |          2561
  52 |     0 |        260 |      270 |      130.0 |    135.0 |          2607
  53 |     0 |        265 |      275 |      132.5 |    137.5 |          2513
  54 |     0 |        270 |      280 |      135.0 |    140.0 |          2557
  55 |     0 |        275 |      285 |      137.5 |    142.5 |          2551
  56 |     0 |        280 |      290 |      140.0 |    145.0 |          2577
  57 |     0 |        285 |      295 |      142.5 |    147.5 |          2549
  58 |     0 |        290 |      300 |      145.0 |    150.0 |          2576
  59 |     0 |        295 |      305 |      147.5 |    152.5 |          2560
  60 |     0 |        300 |      310 |      150.0 |    155.0 |          2528
  61 |     0 |        305 |      315 |      152.5 |    157.5 |          2578
  62 |     0 |        310 |      320 |      155.0 |    160.0 |          2525
  63 |     0 |        315 |      325 |      157.5 |    162.5 |          2613
  64 |     0 |        320 |      330 |      160.0 |    165.0 |          2531
  65 |     0 |        325 |      335 |      162.5 |    167.5 |          2545
  66 |     0 |        330 |      340 |      165.0 |    170.0 |          2584
  67 |     0 |        335 |      345 |      167.5 |    172.5 |          2552
  68 |     0 |        340 |      350 |      170.0 |    175.0 |          2571
  69 |     0 |        345 |      355 |      172.5 |    177.5 |          2540
  70 |     0 |        350 |      360 |      175.0 |    180.0 |          2613
  71 |     0 |        355 |      365 |      177.5 |    182.5 |          2487
  72 |     0 |        360 |      370 |      180.0 |    185.0 |          2629
  73 |     0 |        365 |      375 |      182.5 |    187.5 |          2507
  74 |     0 |        370 |      380 |      185.0 |    190.0 |          2557
  75 |     0 |        375 |      385 |      187.5 |    192.5 |          2611
  76 |     0 |        380 |      390 |      190.0 |    195.0 |          2524
  77 |     0 |        385 |      395 |      192.5 |    197.5 |          2576
  78 |     0 |        390 |      400 |      195.0 |    200.0 |          2556
  79 |     0 |        395 |      405 |      197.5 |    202.5 |          2544
  80 |     0 |        400 |      410 |      200.0 |    205.0 |          2551
  81 |     0 |        405 |      415 |      202.5 |    207.5 |          2569
  82 |     0 |        410 |      420 |      205.0 |    210.0 |          2556
  83 |     0 |        415 |      425 |      207.5 |    212.5 |          2566
  84 |     0 |        420 |      430 |      210.0 |    215.0 |          2530
  85 |     0 |        425 |      435 |      212.5 |    217.5 |          2545
  86 |     0 |        430 |      440 |      215.0 |    220.0 |          2592
  87 |     0 |        435 |      445 |      217.5 |    222.5 |          2549
  88 |     0 |        440 |      450 |      220.0 |    225.0 |          2536
  89 |     0 |        445 |      455 |      222.5 |    227.5 |          2608
  90 |     0 |        450 |      460 |      225.0 |    230.0 |          2535
  91 |     0 |        455 |      465 |      227.5 |    232.5 |          2534
  92 |     0 |        460 |      470 |      230.0 |    235.0 |          2584
  93 |     0 |        465 |      475 |      232.5 |    237.5 |          2550
  94 |     0 |        470 |      480 |      235.0 |    240.0 |          2569
  95 |     0 |        475 |      485 |      237.5 |    242.5 |          2567
  96 |     0 |        480 |      490 |      240.0 |    245.0 |          2527
  97 |     0 |        485 |      495 |      242.5 |    247.5 |          2582
  98 |     0 |        490 |      500 |      245.0 |    250.0 |          2564
  99 |     0 |        495 |      505 |      247.5 |    252.5 |          2552
 100 |     0 |        500 |      510 |      250.0 |    255.0 |          2570
 101 |     0 |        505 |      515 |      252.5 |    257.5 |          2543
 102 |     0 |        510 |      520 |      255.0 |    260.0 |          2566
 103 |     0 |        515 |      525 |      257.5 |    262.5 |          2563
 104 |     0 |        520 |      530 |      260.0 |    265.0 |          2562
 105 |     0 |        525 |      535 |      262.5 |    267.5 |          2557
 106 |     0 |        530 |      540 |      265.0 |    270.0 |          2581
 107 |     0 |        535 |      545 |      267.5 |    272.5 |          2557
 108 |     0 |        540 |      550 |      270.0 |    275.0 |          2551
 109 |     0 |        545 |      555 |      272.5 |    277.5 |          2553
 110 |     0 |        550 |      560 |      275.0 |    280.0 |          2573
 111 |     0 |        555 |      565 |      277.5 |    282.5 |          2550
 112 |     0 |        560 |      570 |      280.0 |    285.0 |          2533
 113 |     0 |        565 |      575 |      282.5 |    287.5 |          2578
 114 |     0 |        570 |      580 |      285.0 |    290.0 |          2547
 115 |     0 |        575 |      585 |      287.5 |    292.5 |          2564
 116 |     0 |        580 |      590 |      290.0 |    295.0 |          2544
 117 |     0 |        585 |      595 |      292.5 |    297.5 |          2557
 118 |     0 |        590 |      600 |      295.0 |    300.0 |          2559
 119 |     0 |        595 |      605 |      297.5 |    302.5 |          2574
 120 |     0 |        600 |      610 |      300.0 |    305.0 |          2541
 121 |     0 |        605 |      615 |      302.5 |    307.5 |          2567
 122 |     0 |        610 |      620 |      305.0 |    310.0 |          2548
 123 |     0 |        615 |      625 |      307.5 |    312.5 |          2540
 124 |     0 |        620 |      630 |      310.0 |    315.0 |          2587
 125 |     0 |        625 |      635 |      312.5 |    317.5 |          2510
 126 |     0 |        630 |      640 |      315.0 |    320.0 |          2560
 127 |     0 |        635 |      645 |      317.5 |    322.5 |          2555
 128 |     0 |        640 |      650 |      320.0 |    325.0 |          2554
 129 |     0 |        645 |      655 |      322.5 |    327.5 |          2523
 130 |     0 |        650 |      660 |      325.0 |    330.0 |          2576
 131 |     0 |        655 |      665 |      327.5 |    332.5 |          2557
 132 |     0 |        660 |      670 |      330.0 |    335.0 |          2524
 133 |     0 |        665 |      675 |      332.5 |    337.5 |          2599
 134 |     0 |        670 |      680 |      335.0 |    340.0 |          2525
 135 |     0 |        675 |      685 |      337.5 |    342.5 |          2578
 136 |     0 |        680 |      690 |      340.0 |    345.0 |          2513
 137 |     0 |        685 |      695 |      342.5 |    347.5 |          2554
 138 |     0 |        690 |      700 |      345.0 |    350.0 |          2588
 139 |     0 |        695 |      705 |      347.5 |    352.5 |          2578
 140 |     0 |        700 |      710 |      350.0 |    355.0 |          2537
 141 |     0 |        705 |      715 |      352.5 |    357.5 |          2541
 142 |     0 |        710 |      720 |      355.0 |    360.0 |          4746
 ---------------------------------------------------------------------------

 Using multiprocessing with 4 parallel job(s)

 Beginning integration job 0

 Frames: 0 -> 10

 Number of reflections
  Partial:     1190
  Full:        3695
  In ice ring: 0
  Integrate:   4885
  Total:       4885

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 0 [1728]: *********************************************************************
 1 [1007]: ****************************************
 2 [992 ]: ***************************************
 3 [1029]: *****************************************
 4 [1038]: *****************************************
 5 [1058]: ******************************************
 6 [1054]: ******************************************
 7 [623 ]: ************************
 8 [86  ]: ***
 9 [15  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00871519 GB

 Integrated  1047 (sum) +   248 (prf) / 1202 reflections on image 0
 Integrated   447 (sum) +   428 (prf) /  521 reflections on image 1
 Integrated   419 (sum) +   415 (prf) /  486 reflections on image 2
 Integrated   435 (sum) +   432 (prf) /  497 reflections on image 3
 Integrated   445 (sum) +   440 (prf) /  522 reflections on image 4
 Integrated   447 (sum) +   445 (prf) /  507 reflections on image 5
 Integrated   463 (sum) +   460 (prf) /  527 reflections on image 6
 Integrated   451 (sum) +   450 (prf) /  537 reflections on image 7
 Integrated    59 (sum) +    58 (prf) /   71 reflections on image 8
 Integrated    13 (sum) +    13 (prf) /   15 reflections on image 9
 Beginning integration job 1

 Frames: 5 -> 15

 Number of reflections
  Partial:     15
  Full:        2481
  In ice ring: 0
  Integrate:   2496
  Total:       2496

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 5  [4  ]: 
 6  [24 ]: *
 7  [461]: ********************************
 8  [946]: ******************************************************************
 9  [962]: *******************************************************************
 10 [946]: ******************************************************************
 11 [988]: *********************************************************************
 12 [551]: **************************************
 13 [57 ]: ***
 14 [6  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00770452 GB

 Integrated   394 (sum) +   390 (prf) /  455 reflections on image 8
 Integrated   432 (sum) +   426 (prf) /  497 reflections on image 9
 Integrated   404 (sum) +   400 (prf) /  474 reflections on image 10
 Integrated   456 (sum) +   453 (prf) /  519 reflections on image 11
 Integrated   424 (sum) +   421 (prf) /  494 reflections on image 12
 Integrated    43 (sum) +    43 (prf) /   51 reflections on image 13
 Integrated     4 (sum) +     4 (prf) /    6 reflections on image 14
 Beginning integration job 2

 Frames: 10 -> 20

 Number of reflections
  Partial:     20
  Full:        2524
  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.

 11 [23  ]: *
 12 [425 ]: ****************************
 13 [949 ]: ***************************************************************
 14 [1024]: ********************************************************************
 15 [990 ]: *****************************************************************
 16 [999 ]: ******************************************************************
 17 [572 ]: *************************************
 18 [74  ]: ****
 19 [14  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00819836 GB

 Integrated   379 (sum) +   377 (prf) /  447 reflections on image 13
 Integrated   460 (sum) +   454 (prf) /  531 reflections on image 14
 Integrated   420 (sum) +   415 (prf) /  489 reflections on image 15
 Integrated   445 (sum) +   441 (prf) /  505 reflections on image 16
 Integrated   434 (sum) +   429 (prf) /  498 reflections on image 17
 Integrated    52 (sum) +    52 (prf) /   60 reflections on image 18
 Integrated    10 (sum) +    10 (prf) /   14 reflections on image 19
 Beginning integration job 3

 Frames: 15 -> 25

 Number of reflections
  Partial:     25
  Full:        2566
  In ice ring: 0
  Integrate:   2591
  Total:       2591

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 15 [2   ]: 
 16 [14  ]: 
 17 [474 ]: *******************************
 18 [987 ]: ******************************************************************
 19 [1004]: *******************************************************************
 20 [987 ]: ******************************************************************
 21 [1014]: ********************************************************************
 22 [594 ]: ***************************************
 23 [83  ]: *****
 24 [14  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00810637 GB

 Integrated   388 (sum) +   383 (prf) /  465 reflections on image 18
 Integrated   468 (sum) +   465 (prf) /  544 reflections on image 19
 Integrated   419 (sum) +   417 (prf) /  485 reflections on image 20
 Integrated   433 (sum) +   431 (prf) /  503 reflections on image 21
 Integrated   448 (sum) +   445 (prf) /  511 reflections on image 22
 Integrated    61 (sum) +    61 (prf) /   69 reflections on image 23
 Integrated    12 (sum) +    11 (prf) /   14 reflections on image 24
 Beginning integration job 4

 Frames: 20 -> 30

 Number of reflections
  Partial:     33
  Full:        2533
  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.

 20 [8   ]: 
 21 [23  ]: *
 22 [432 ]: ****************************
 23 [972 ]: ***************************************************************
 24 [1028]: ******************************************************************
 25 [1028]: ******************************************************************
 26 [1047]: ********************************************************************
 27 [598 ]: **************************************
 28 [88  ]: *****
 29 [17  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00856028 GB

 Integrated   373 (sum) +   371 (prf) /  438 reflections on image 23
 Integrated   437 (sum) +   422 (prf) /  508 reflections on image 24
 Integrated   440 (sum) +   434 (prf) /  501 reflections on image 25
 Integrated   459 (sum) +   457 (prf) /  521 reflections on image 26
 Integrated   452 (sum) +   450 (prf) /  510 reflections on image 27
 Integrated    62 (sum) +    61 (prf) /   71 reflections on image 28
 Integrated    15 (sum) +    15 (prf) /   17 reflections on image 29
 Beginning integration job 5

 Frames: 25 -> 35

 Number of reflections
  Partial:     24
  Full:        2543
  In ice ring: 0
  Integrate:   2567
  Total:       2567

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 25 [2   ]: 
 26 [11  ]: 
 27 [448 ]: *****************************
 28 [936 ]: *************************************************************
 29 [996 ]: *****************************************************************
 30 [1033]: ********************************************************************
 31 [1000]: *****************************************************************
 32 [581 ]: **************************************
 33 [70  ]: ****
 34 [21  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00813373 GB

 Integrated   402 (sum) +   400 (prf) /  466 reflections on image 28
 Integrated   429 (sum) +   426 (prf) /  495 reflections on image 29
 Integrated   456 (sum) +   446 (prf) /  527 reflections on image 30
 Integrated   420 (sum) +   417 (prf) /  498 reflections on image 31
 Integrated   447 (sum) +   445 (prf) /  511 reflections on image 32
 Integrated    38 (sum) +    38 (prf) /   49 reflections on image 33
 Integrated    19 (sum) +    19 (prf) /   21 reflections on image 34
 Beginning integration job 6

 Frames: 30 -> 40

 Number of reflections
  Partial:     14
  Full:        2545
  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.

 31 [20  ]: *
 32 [451 ]: ******************************
 33 [943 ]: **************************************************************
 34 [994 ]: ******************************************************************
 35 [992 ]: ******************************************************************
 36 [1019]: ********************************************************************
 37 [563 ]: *************************************
 38 [75  ]: *****
 39 [11  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00800722 GB

 Integrated   401 (sum) +   398 (prf) /  461 reflections on image 33
 Integrated   448 (sum) +   439 (prf) /  516 reflections on image 34
 Integrated   415 (sum) +   411 (prf) /  474 reflections on image 35
 Integrated   466 (sum) +   464 (prf) /  545 reflections on image 36
 Integrated   406 (sum) +   404 (prf) /  488 reflections on image 37
 Integrated    57 (sum) +    57 (prf) /   64 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:     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.

 35 [5   ]: 
 36 [18  ]: *
 37 [384 ]: *************************
 38 [917 ]: ************************************************************
 39 [1032]: ********************************************************************
 40 [1002]: ******************************************************************
 41 [1014]: ******************************************************************
 42 [607 ]: ***************************************
 43 [63  ]: ****
 44 [12  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00807785 GB

 Integrated   356 (sum) +   352 (prf) /  406 reflections on image 38
 Integrated   451 (sum) +   444 (prf) /  530 reflections on image 39
 Integrated   436 (sum) +   433 (prf) /  491 reflections on image 40
 Integrated   433 (sum) +   430 (prf) /  509 reflections on image 41
 Integrated   474 (sum) +   474 (prf) /  544 reflections on image 42
 Integrated    43 (sum) +    43 (prf) /   51 reflections on image 43
 Integrated    12 (sum) +    12 (prf) /   12 reflections on image 44
 Beginning integration job 8

 Frames: 40 -> 50

 Number of reflections
  Partial:     15
  Full:        2509
  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.

 40 [2   ]: 
 41 [13  ]: 
 42 [407 ]: ***************************
 43 [925 ]: *************************************************************
 44 [1002]: ******************************************************************
 45 [1004]: *******************************************************************
 46 [1017]: ********************************************************************
 47 [577 ]: **************************************
 48 [68  ]: ****
 49 [14  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00819409 GB

 Integrated   373 (sum) +   373 (prf) /  427 reflections on image 43
 Integrated   440 (sum) +   435 (prf) /  515 reflections on image 44
 Integrated   411 (sum) +   406 (prf) /  481 reflections on image 45
 Integrated   466 (sum) +   463 (prf) /  524 reflections on image 46
 Integrated   439 (sum) +   434 (prf) /  509 reflections on image 47
 Integrated    43 (sum) +    43 (prf) /   54 reflections on image 48
 Integrated    10 (sum) +    10 (prf) /   14 reflections on image 49
 Beginning integration job 9

 Frames: 45 -> 55

 Number of reflections
  Partial:     18
  Full:        2551
  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.

 45 [3   ]: 
 46 [19  ]: *
 47 [452 ]: *****************************
 48 [963 ]: ***************************************************************
 49 [1006]: ******************************************************************
 50 [1032]: ********************************************************************
 51 [985 ]: ****************************************************************
 52 [603 ]: ***************************************
 53 [69  ]: ****
 54 [14  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00825974 GB

 Integrated   400 (sum) +   396 (prf) /  458 reflections on image 48
 Integrated   430 (sum) +   425 (prf) /  495 reflections on image 49
 Integrated   450 (sum) +   448 (prf) /  529 reflections on image 50
 Integrated   425 (sum) +   421 (prf) /  484 reflections on image 51
 Integrated   455 (sum) +   452 (prf) /  534 reflections on image 52
 Integrated    50 (sum) +    49 (prf) /   55 reflections on image 53
 Integrated    12 (sum) +    12 (prf) /   14 reflections on image 54
 Beginning integration job 10

 Frames: 50 -> 60

 Number of reflections
  Partial:     11
  Full:        2537
  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.

 50 [4   ]: 
 51 [20  ]: *
 52 [432 ]: ****************************
 53 [940 ]: **************************************************************
 54 [1027]: ********************************************************************
 55 [1017]: *******************************************************************
 56 [1007]: ******************************************************************
 57 [570 ]: *************************************
 58 [64  ]: ****
 59 [8   ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.0082246 GB

 Integrated   369 (sum) +   367 (prf) /  430 reflections on image 53
 Integrated   458 (sum) +   453 (prf) /  523 reflections on image 54
 Integrated   440 (sum) +   434 (prf) /  510 reflections on image 55
 Integrated   433 (sum) +   426 (prf) /  515 reflections on image 56
 Integrated   446 (sum) +   442 (prf) /  506 reflections on image 57
 Integrated    49 (sum) +    49 (prf) /   56 reflections on image 58
 Integrated     7 (sum) +     7 (prf) /    8 reflections on image 59
 Beginning integration job 11

 Frames: 55 -> 65

 Number of reflections
  Partial:     7
  Full:        2526
  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.

 55 [1   ]: 
 56 [17  ]: *
 57 [445 ]: *****************************
 58 [951 ]: ****************************************************************
 59 [1009]: ********************************************************************
 60 [993 ]: ******************************************************************
 61 [984 ]: ******************************************************************
 62 [552 ]: *************************************
 63 [66  ]: ****
 64 [13  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00799643 GB

 Integrated   400 (sum) +   398 (prf) /  446 reflections on image 58
 Integrated   447 (sum) +   440 (prf) /  529 reflections on image 59
 Integrated   407 (sum) +   402 (prf) /  481 reflections on image 60
 Integrated   470 (sum) +   465 (prf) /  525 reflections on image 61
 Integrated   420 (sum) +   414 (prf) /  486 reflections on image 62
 Integrated    44 (sum) +    44 (prf) /   53 reflections on image 63
 Integrated    12 (sum) +    12 (prf) /   13 reflections on image 64
 Beginning integration job 12

 Frames: 60 -> 70

 Number of reflections
  Partial:     17
  Full:        2544
  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.

 60 [5   ]: 
 61 [22  ]: *
 62 [455 ]: ******************************
 63 [952 ]: ****************************************************************
 64 [1003]: ********************************************************************
 65 [1003]: ********************************************************************
 66 [988 ]: ******************************************************************
 67 [591 ]: ****************************************
 68 [68  ]: ****
 69 [14  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00812556 GB

 Integrated   388 (sum) +   385 (prf) /  465 reflections on image 63
 Integrated   439 (sum) +   434 (prf) /  504 reflections on image 64
 Integrated   443 (sum) +   438 (prf) /  506 reflections on image 65
 Integrated   423 (sum) +   418 (prf) /  495 reflections on image 66
 Integrated   461 (sum) +   460 (prf) /  523 reflections on image 67
 Integrated    48 (sum) +    48 (prf) /   54 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:     13
  Full:        2526
  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.

 65 [7   ]: 
 66 [19  ]: *
 67 [428 ]: ****************************
 68 [919 ]: ************************************************************
 69 [1015]: ******************************************************************
 70 [1035]: ********************************************************************
 71 [988 ]: ****************************************************************
 72 [565 ]: *************************************
 73 [77  ]: *****
 74 [14  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00838994 GB

 Integrated   387 (sum) +   384 (prf) /  454 reflections on image 68
 Integrated   425 (sum) +   420 (prf) /  498 reflections on image 69
 Integrated   437 (sum) +   432 (prf) /  505 reflections on image 70
 Integrated   459 (sum) +   457 (prf) /  517 reflections on image 71
 Integrated   429 (sum) +   425 (prf) /  488 reflections on image 72
 Integrated    54 (sum) +    54 (prf) /   63 reflections on image 73
 Integrated    12 (sum) +    12 (prf) /   14 reflections on image 74
 Beginning integration job 14

 Frames: 70 -> 80

 Number of reflections
  Partial:     22
  Full:        2576
  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.

 70 [9   ]: 
 71 [37  ]: **
 72 [471 ]: ******************************
 73 [974 ]: ***************************************************************
 74 [1037]: *******************************************************************
 75 [1049]: ********************************************************************
 76 [1024]: ******************************************************************
 77 [580 ]: *************************************
 78 [70  ]: ****
 79 [17  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00856242 GB

 Integrated   390 (sum) +   388 (prf) /  458 reflections on image 73
 Integrated   450 (sum) +   446 (prf) /  518 reflections on image 74
 Integrated   434 (sum) +   430 (prf) /  496 reflections on image 75
 Integrated   463 (sum) +   457 (prf) /  546 reflections on image 76
 Integrated   425 (sum) +   423 (prf) /  510 reflections on image 77
 Integrated    45 (sum) +    44 (prf) /   53 reflections on image 78
 Integrated    14 (sum) +    14 (prf) /   17 reflections on image 79
 Beginning integration job 15

 Frames: 75 -> 85

 Number of reflections
  Partial:     24
  Full:        2518
  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.

 75 [4   ]: 
 76 [19  ]: *
 77 [423 ]: ****************************
 78 [925 ]: **************************************************************
 79 [997 ]: *******************************************************************
 80 [1008]: ********************************************************************
 81 [986 ]: ******************************************************************
 82 [567 ]: **************************************
 83 [64  ]: ****
 84 [13  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00804493 GB

 Integrated   392 (sum) +   387 (prf) /  447 reflections on image 78
 Integrated   441 (sum) +   435 (prf) /  509 reflections on image 79
 Integrated   423 (sum) +   417 (prf) /  506 reflections on image 80
 Integrated   447 (sum) +   444 (prf) /  513 reflections on image 81
 Integrated   432 (sum) +   429 (prf) /  503 reflections on image 82
 Integrated    42 (sum) +    40 (prf) /   51 reflections on image 83
 Integrated    12 (sum) +    12 (prf) /   13 reflections on image 84
 Beginning integration job 16

 Frames: 80 -> 90

 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.

 80 [5   ]: 
 81 [11  ]: 
 82 [433 ]: *****************************
 83 [929 ]: **************************************************************
 84 [984 ]: ******************************************************************
 85 [1010]: ********************************************************************
 86 [965 ]: ****************************************************************
 87 [602 ]: ****************************************
 88 [81  ]: *****
 89 [13  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00809988 GB

 Integrated   396 (sum) +   391 (prf) /  450 reflections on image 83
 Integrated   422 (sum) +   418 (prf) /  488 reflections on image 84
 Integrated   444 (sum) +   438 (prf) /  510 reflections on image 85
 Integrated   393 (sum) +   390 (prf) /  471 reflections on image 86
 Integrated   452 (sum) +   448 (prf) /  521 reflections on image 87
 Integrated    62 (sum) +    62 (prf) /   68 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:     25
  Full:        2586
  In ice ring: 0
  Integrate:   2611
  Total:       2611

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 85 [4   ]: 
 86 [25  ]: *
 87 [439 ]: ***************************
 88 [974 ]: *************************************************************
 89 [1052]: *****************************************************************
 90 [1085]: ********************************************************************
 91 [1017]: ***************************************************************
 92 [571 ]: ***********************************
 93 [75  ]: ****
 94 [20  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00888828 GB

 Integrated   405 (sum) +   399 (prf) /  468 reflections on image 88
 Integrated   415 (sum) +   409 (prf) /  487 reflections on image 89
 Integrated   458 (sum) +   453 (prf) /  544 reflections on image 90
 Integrated   477 (sum) +   474 (prf) /  541 reflections on image 91
 Integrated   435 (sum) +   428 (prf) /  496 reflections on image 92
 Integrated    50 (sum) +    50 (prf) /   55 reflections on image 93
 Integrated    19 (sum) +    19 (prf) /   20 reflections on image 94
 Beginning integration job 18

 Frames: 90 -> 100

 Number of reflections
  Partial:     22
  Full:        2526
  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.

 90 [7   ]: 
 91 [23  ]: *
 92 [446 ]: *****************************
 93 [943 ]: **************************************************************
 94 [1023]: ********************************************************************
 95 [997 ]: ******************************************************************
 96 [966 ]: ****************************************************************
 97 [599 ]: ***************************************
 98 [57  ]: ***
 99 [21  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00827514 GB

 Integrated   385 (sum) +   382 (prf) /  439 reflections on image 93
 Integrated   436 (sum) +   434 (prf) /  510 reflections on image 94
 Integrated   448 (sum) +   440 (prf) /  532 reflections on image 95
 Integrated   413 (sum) +   411 (prf) /  468 reflections on image 96
 Integrated   471 (sum) +   469 (prf) /  542 reflections on image 97
 Integrated    33 (sum) +    33 (prf) /   36 reflections on image 98
 Integrated    17 (sum) +    17 (prf) /   21 reflections on image 99
 Beginning integration job 19

 Frames: 95 -> 105

 Number of reflections
  Partial:     27
  Full:        2519
  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.

 95  [5   ]: 
 96  [16  ]: *
 97  [430 ]: **************************
 98  [899 ]: ********************************************************
 99  [923 ]: *********************************************************
 100 [1007]: ***************************************************************
 101 [1068]: *******************************************************************
 102 [626 ]: ***************************************
 103 [101 ]: ******
 104 [18  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00843571 GB

 Integrated   400 (sum) +   399 (prf) /  459 reflections on image 98
 Integrated   391 (sum) +   386 (prf) /  464 reflections on image 99
 Integrated   423 (sum) +   418 (prf) /  482 reflections on image 100
 Integrated   447 (sum) +   447 (prf) /  515 reflections on image 101
 Integrated   450 (sum) +   449 (prf) /  525 reflections on image 102
 Integrated    75 (sum) +    74 (prf) /   83 reflections on image 103
 Integrated    17 (sum) +    17 (prf) /   18 reflections on image 104
 Beginning integration job 20

 Frames: 100 -> 110

 Number of reflections
  Partial:     27
  Full:        2545
  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.

 100 [1   ]: 
 101 [14  ]: 
 102 [442 ]: ****************************
 103 [961 ]: **************************************************************
 104 [1024]: ******************************************************************
 105 [1029]: *******************************************************************
 106 [983 ]: ****************************************************************
 107 [568 ]: ************************************
 108 [67  ]: ****
 109 [16  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00817722 GB

 Integrated   403 (sum) +   396 (prf) /  459 reflections on image 103
 Integrated   449 (sum) +   441 (prf) /  512 reflections on image 104
 Integrated   457 (sum) +   451 (prf) /  524 reflections on image 105
 Integrated   445 (sum) +   439 (prf) /  509 reflections on image 106
 Integrated   428 (sum) +   425 (prf) /  501 reflections on image 107
 Integrated    43 (sum) +    43 (prf) /   51 reflections on image 108
 Integrated    13 (sum) +    12 (prf) /   16 reflections on image 109
 Beginning integration job 21

 Frames: 105 -> 115

 Number of reflections
  Partial:     26
  Full:        2514
  In ice ring: 0
  Integrate:   2540
  Total:       2540

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 105 [4   ]: 
 106 [23  ]: *
 107 [434 ]: ****************************
 108 [967 ]: ****************************************************************
 109 [981 ]: *****************************************************************
 110 [932 ]: *************************************************************
 111 [1008]: *******************************************************************
 112 [653 ]: *******************************************
 113 [76  ]: *****
 114 [18  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00830606 GB

 Integrated   383 (sum) +   379 (prf) /  437 reflections on image 108
 Integrated   447 (sum) +   439 (prf) /  532 reflections on image 109
 Integrated   414 (sum) +   411 (prf) /  472 reflections on image 110
 Integrated   379 (sum) +   375 (prf) /  446 reflections on image 111
 Integrated   497 (sum) +   495 (prf) /  577 reflections on image 112
 Integrated    51 (sum) +    49 (prf) /   58 reflections on image 113
 Integrated    15 (sum) +    15 (prf) /   18 reflections on image 114
 Beginning integration job 22

 Frames: 110 -> 120

 Number of reflections
  Partial:     26
  Full:        2561
  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.

 110 [5   ]: 
 111 [26  ]: *
 112 [467 ]: *****************************
 113 [956 ]: *************************************************************
 114 [1034]: ******************************************************************
 115 [1046]: *******************************************************************
 116 [993 ]: ***************************************************************
 117 [595 ]: **************************************
 118 [83  ]: *****
 119 [18  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00833633 GB

 Integrated   396 (sum) +   392 (prf) /  453 reflections on image 113
 Integrated   434 (sum) +   429 (prf) /  502 reflections on image 114
 Integrated   451 (sum) +   446 (prf) /  541 reflections on image 115
 Integrated   422 (sum) +   416 (prf) /  496 reflections on image 116
 Integrated   437 (sum) +   435 (prf) /  512 reflections on image 117
 Integrated    57 (sum) +    57 (prf) /   65 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:     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.

 115 [8   ]: 
 116 [18  ]: *
 117 [433 ]: ***************************
 118 [926 ]: ***********************************************************
 119 [950 ]: *************************************************************
 120 [998 ]: ****************************************************************
 121 [1037]: *******************************************************************
 122 [608 ]: ***************************************
 123 [72  ]: ****
 124 [12  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00825656 GB

 Integrated   408 (sum) +   404 (prf) /  465 reflections on image 118
 Integrated   417 (sum) +   410 (prf) /  477 reflections on image 119
 Integrated   406 (sum) +   402 (prf) /  474 reflections on image 120
 Integrated   442 (sum) +   436 (prf) /  518 reflections on image 121
 Integrated   466 (sum) +   464 (prf) /  536 reflections on image 122
 Integrated    53 (sum) +    53 (prf) /   60 reflections on image 123
 Integrated    10 (sum) +    10 (prf) /   12 reflections on image 124
 Beginning integration job 24

 Frames: 120 -> 130

 Number of reflections
  Partial:     25
  Full:        2522
  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.

 120 [2   ]: 
 121 [22  ]: *
 122 [462 ]: *****************************
 123 [965 ]: **************************************************************
 124 [1017]: *****************************************************************
 125 [1034]: *******************************************************************
 126 [967 ]: **************************************************************
 127 [553 ]: ***********************************
 128 [70  ]: ****
 129 [12  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00817915 GB

 Integrated   400 (sum) +   396 (prf) /  458 reflections on image 123
 Integrated   438 (sum) +   435 (prf) /  505 reflections on image 124
 Integrated   457 (sum) +   452 (prf) /  524 reflections on image 125
 Integrated   448 (sum) +   443 (prf) /  507 reflections on image 126
 Integrated   412 (sum) +   409 (prf) /  483 reflections on image 127
 Integrated    46 (sum) +    45 (prf) /   58 reflections on image 128
 Integrated    12 (sum) +    12 (prf) /   12 reflections on image 129
 Beginning integration job 25

 Frames: 125 -> 135

 Number of reflections
  Partial:     30
  Full:        2547
  In ice ring: 0
  Integrate:   2577
  Total:       2577

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 125 [2   ]: 
 126 [21  ]: *
 127 [427 ]: ***************************
 128 [939 ]: ************************************************************
 129 [1016]: *****************************************************************
 130 [1034]: *******************************************************************
 131 [1017]: *****************************************************************
 132 [579 ]: *************************************
 133 [77  ]: ****
 134 [24  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00840074 GB

 Integrated   378 (sum) +   376 (prf) /  439 reflections on image 128
 Integrated   447 (sum) +   437 (prf) /  528 reflections on image 129
 Integrated   428 (sum) +   421 (prf) /  506 reflections on image 130
 Integrated   462 (sum) +   458 (prf) /  525 reflections on image 131
 Integrated   432 (sum) +   427 (prf) /  502 reflections on image 132
 Integrated    50 (sum) +    49 (prf) /   53 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:     21
  Full:        2540
  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.

 130 [8   ]: 
 131 [21  ]: *
 132 [439 ]: ****************************
 133 [961 ]: ***************************************************************
 134 [989 ]: *****************************************************************
 135 [1005]: ******************************************************************
 136 [1016]: *******************************************************************
 137 [592 ]: ***************************************
 138 [80  ]: *****
 139 [17  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00812094 GB

 Integrated   394 (sum) +   392 (prf) /  459 reflections on image 133
 Integrated   428 (sum) +   423 (prf) /  499 reflections on image 134
 Integrated   434 (sum) +   426 (prf) /  503 reflections on image 135
 Integrated   439 (sum) +   432 (prf) /  508 reflections on image 136
 Integrated   449 (sum) +   446 (prf) /  512 reflections on image 137
 Integrated    57 (sum) +    56 (prf) /   63 reflections on image 138
 Integrated    17 (sum) +    17 (prf) /   17 reflections on image 139
 Beginning integration job 27

 Frames: 135 -> 145

 Number of reflections
  Partial:     14
  Full:        2540
  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.

 135 [3   ]: 
 136 [18  ]: *
 137 [429 ]: ***************************
 138 [960 ]: *************************************************************
 139 [1041]: *******************************************************************
 140 [988 ]: ***************************************************************
 141 [977 ]: **************************************************************
 142 [567 ]: ************************************
 143 [64  ]: ****
 144 [11  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00856387 GB

 Integrated   367 (sum) +   363 (prf) /  428 reflections on image 138
 Integrated   475 (sum) +   470 (prf) /  547 reflections on image 139
 Integrated   435 (sum) +   424 (prf) /  508 reflections on image 140
 Integrated   447 (sum) +   442 (prf) /  504 reflections on image 141
 Integrated   425 (sum) +   422 (prf) /  503 reflections on image 142
 Integrated    48 (sum) +    48 (prf) /   53 reflections on image 143
 Integrated     9 (sum) +     9 (prf) /   11 reflections on image 144
 Beginning integration job 28

 Frames: 140 -> 150

 Number of reflections
  Partial:     15
  Full:        2546
  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.

 140 [1   ]: 
 141 [18  ]: *
 142 [414 ]: **************************
 143 [927 ]: ***********************************************************
 144 [1038]: *******************************************************************
 145 [1017]: *****************************************************************
 146 [1020]: *****************************************************************
 147 [595 ]: **************************************
 148 [74  ]: ****
 149 [14  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00866878 GB

 Integrated   373 (sum) +   371 (prf) /  429 reflections on image 143
 Integrated   423 (sum) +   418 (prf) /  515 reflections on image 144
 Integrated   447 (sum) +   442 (prf) /  511 reflections on image 145
 Integrated   444 (sum) +   441 (prf) /  511 reflections on image 146
 Integrated   445 (sum) +   443 (prf) /  521 reflections on image 147
 Integrated    45 (sum) +    44 (prf) /   60 reflections on image 148
 Integrated    14 (sum) +    14 (prf) /   14 reflections on image 149
 Beginning integration job 29

 Frames: 145 -> 155

 Number of reflections
  Partial:     16
  Full:        2520
  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.

 145 [5   ]: 
 146 [24  ]: *
 147 [450 ]: *****************************
 148 [939 ]: ************************************************************
 149 [992 ]: ****************************************************************
 150 [1037]: *******************************************************************
 151 [1000]: ****************************************************************
 152 [576 ]: *************************************
 153 [67  ]: ****
 154 [13  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00840804 GB

 Integrated   396 (sum) +   390 (prf) /  446 reflections on image 148
 Integrated   422 (sum) +   415 (prf) /  490 reflections on image 149
 Integrated   456 (sum) +   452 (prf) /  521 reflections on image 150
 Integrated   442 (sum) +   437 (prf) /  503 reflections on image 151
 Integrated   438 (sum) +   436 (prf) /  509 reflections on image 152
 Integrated    52 (sum) +    52 (prf) /   54 reflections on image 153
 Integrated    11 (sum) +    11 (prf) /   13 reflections on image 154
 Beginning integration job 30

 Frames: 150 -> 160

 Number of reflections
  Partial:     27
  Full:        2533
  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.

 150 [3   ]: 
 151 [24  ]: *
 152 [450 ]: *****************************
 153 [960 ]: ***************************************************************
 154 [1013]: *******************************************************************
 155 [1007]: ******************************************************************
 156 [1004]: ******************************************************************
 157 [584 ]: **************************************
 158 [71  ]: ****
 159 [23  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00820745 GB

 Integrated   392 (sum) +   391 (prf) /  455 reflections on image 153
 Integrated   446 (sum) +   440 (prf) /  521 reflections on image 154
 Integrated   438 (sum) +   432 (prf) /  492 reflections on image 155
 Integrated   423 (sum) +   420 (prf) /  508 reflections on image 156
 Integrated   441 (sum) +   439 (prf) /  513 reflections on image 157
 Integrated    42 (sum) +    42 (prf) /   48 reflections on image 158
 Integrated    21 (sum) +    21 (prf) /   23 reflections on image 159
 Beginning integration job 31

 Frames: 155 -> 165

 Number of reflections
  Partial:     33
  Full:        2521
  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.

 155 [1   ]: 
 156 [13  ]: 
 157 [450 ]: *****************************
 158 [969 ]: ***************************************************************
 159 [1025]: *******************************************************************
 160 [1014]: ******************************************************************
 161 [964 ]: ***************************************************************
 162 [567 ]: *************************************
 163 [72  ]: ****
 164 [18  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.0082167 GB

 Integrated   400 (sum) +   395 (prf) /  458 reflections on image 158
 Integrated   431 (sum) +   425 (prf) /  512 reflections on image 159
 Integrated   463 (sum) +   456 (prf) /  538 reflections on image 160
 Integrated   400 (sum) +   393 (prf) /  479 reflections on image 161
 Integrated   430 (sum) +   430 (prf) /  495 reflections on image 162
 Integrated    48 (sum) +    48 (prf) /   54 reflections on image 163
 Integrated    12 (sum) +    12 (prf) /   18 reflections on image 164
 Beginning integration job 32

 Frames: 160 -> 170

 Number of reflections
  Partial:     23
  Full:        2543
  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.

 160 [2   ]: 
 161 [16  ]: *
 162 [451 ]: *****************************
 163 [965 ]: **************************************************************
 164 [1030]: *******************************************************************
 165 [1026]: ******************************************************************
 166 [982 ]: ***************************************************************
 167 [564 ]: ************************************
 168 [62  ]: ****
 169 [14  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.0082743 GB

 Integrated   397 (sum) +   392 (prf) /  461 reflections on image 163
 Integrated   453 (sum) +   445 (prf) /  509 reflections on image 164
 Integrated   464 (sum) +   453 (prf) /  533 reflections on image 165
 Integrated   433 (sum) +   429 (prf) /  499 reflections on image 166
 Integrated   445 (sum) +   443 (prf) /  502 reflections on image 167
 Integrated    40 (sum) +    40 (prf) /   48 reflections on image 168
 Integrated     9 (sum) +     9 (prf) /   14 reflections on image 169
 Beginning integration job 33

 Frames: 165 -> 175

 Number of reflections
  Partial:     26
  Full:        2535
  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.

 165 [4   ]: 
 166 [26  ]: *
 167 [464 ]: ******************************
 168 [963 ]: **************************************************************
 169 [1004]: ****************************************************************
 170 [1035]: *******************************************************************
 171 [1017]: *****************************************************************
 172 [562 ]: ************************************
 173 [80  ]: *****
 174 [21  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00851425 GB

 Integrated   390 (sum) +   386 (prf) /  457 reflections on image 168
 Integrated   441 (sum) +   433 (prf) /  505 reflections on image 169
 Integrated   426 (sum) +   423 (prf) /  500 reflections on image 170
 Integrated   464 (sum) +   458 (prf) /  537 reflections on image 171
 Integrated   424 (sum) +   424 (prf) /  482 reflections on image 172
 Integrated    50 (sum) +    49 (prf) /   59 reflections on image 173
 Integrated    19 (sum) +    19 (prf) /   21 reflections on image 174
 Beginning integration job 34

 Frames: 170 -> 180

 Number of reflections
  Partial:     17
  Full:        2555
  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.

 170 [3   ]: 
 171 [21  ]: *
 172 [453 ]: ******************************
 173 [946 ]: ***************************************************************
 174 [1006]: *******************************************************************
 175 [998 ]: ******************************************************************
 176 [993 ]: ******************************************************************
 177 [598 ]: ***************************************
 178 [85  ]: *****
 179 [17  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00802457 GB

 Integrated   398 (sum) +   395 (prf) /  468 reflections on image 173
 Integrated   421 (sum) +   418 (prf) /  489 reflections on image 174
 Integrated   459 (sum) +   451 (prf) /  534 reflections on image 175
 Integrated   424 (sum) +   422 (prf) /  483 reflections on image 176
 Integrated   441 (sum) +   437 (prf) /  513 reflections on image 177
 Integrated    62 (sum) +    62 (prf) /   68 reflections on image 178
 Integrated    13 (sum) +    13 (prf) /   17 reflections on image 179
 Beginning integration job 35

 Frames: 175 -> 185

 Number of reflections
  Partial:     17
  Full:        2522
  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.

 176 [17  ]: *
 177 [416 ]: ***************************
 178 [935 ]: *************************************************************
 179 [989 ]: ****************************************************************
 180 [981 ]: ****************************************************************
 181 [1025]: *******************************************************************
 182 [597 ]: ***************************************
 183 [77  ]: *****
 184 [16  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00827612 GB

 Integrated   372 (sum) +   367 (prf) /  433 reflections on image 178
 Integrated   459 (sum) +   457 (prf) /  529 reflections on image 179
 Integrated   406 (sum) +   404 (prf) /  474 reflections on image 180
 Integrated   431 (sum) +   429 (prf) /  506 reflections on image 181
 Integrated   452 (sum) +   449 (prf) /  520 reflections on image 182
 Integrated    52 (sum) +    51 (prf) /   61 reflections on image 183
 Integrated    12 (sum) +    12 (prf) /   16 reflections on image 184
 Beginning integration job 36

 Frames: 180 -> 190

 Number of reflections
  Partial:     26
  Full:        2526
  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.

 180 [5   ]: 
 181 [17  ]: *
 182 [443 ]: *****************************
 183 [953 ]: **************************************************************
 184 [1017]: *******************************************************************
 185 [1016]: ******************************************************************
 186 [1013]: ******************************************************************
 187 [596 ]: ***************************************
 188 [69  ]: ****
 189 [15  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00824222 GB

 Integrated   387 (sum) +   381 (prf) /  445 reflections on image 183
 Integrated   443 (sum) +   438 (prf) /  513 reflections on image 184
 Integrated   422 (sum) +   419 (prf) /  500 reflections on image 185
 Integrated   427 (sum) +   425 (prf) /  498 reflections on image 186
 Integrated   456 (sum) +   453 (prf) /  527 reflections on image 187
 Integrated    44 (sum) +    44 (prf) /   54 reflections on image 188
 Integrated    12 (sum) +    12 (prf) /   15 reflections on image 189
 Beginning integration job 37

 Frames: 185 -> 195

 Number of reflections
  Partial:     19
  Full:        2536
  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 [3   ]: 
 186 [15  ]: 
 187 [439 ]: ****************************
 188 [946 ]: *************************************************************
 189 [1025]: ******************************************************************
 190 [1013]: *****************************************************************
 191 [1035]: *******************************************************************
 192 [606 ]: ***************************************
 193 [80  ]: *****
 194 [23  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00838742 GB

 Integrated   380 (sum) +   378 (prf) /  436 reflections on image 188
 Integrated   454 (sum) +   447 (prf) /  528 reflections on image 189
 Integrated   426 (sum) +   422 (prf) /  493 reflections on image 190
 Integrated   422 (sum) +   417 (prf) /  492 reflections on image 191
 Integrated   453 (sum) +   452 (prf) /  526 reflections on image 192
 Integrated    51 (sum) +    51 (prf) /   57 reflections on image 193
 Integrated    21 (sum) +    21 (prf) /   23 reflections on image 194
 Beginning integration job 38

 Frames: 190 -> 200

 Number of reflections
  Partial:     22
  Full:        2549
  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.

 190 [3   ]: 
 191 [18  ]: *
 192 [445 ]: *****************************
 193 [950 ]: **************************************************************
 194 [1015]: *******************************************************************
 195 [999 ]: *****************************************************************
 196 [1011]: ******************************************************************
 197 [575 ]: *************************************
 198 [64  ]: ****
 199 [14  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00815476 GB

 Integrated   377 (sum) +   374 (prf) /  441 reflections on image 193
 Integrated   472 (sum) +   462 (prf) /  545 reflections on image 194
 Integrated   428 (sum) +   420 (prf) /  487 reflections on image 195
 Integrated   457 (sum) +   455 (prf) /  523 reflections on image 196
 Integrated   442 (sum) +   436 (prf) /  511 reflections on image 197
 Integrated    39 (sum) +    39 (prf) /   50 reflections on image 198
 Integrated    12 (sum) +    12 (prf) /   14 reflections on image 199
 Beginning integration job 39

 Frames: 195 -> 205

 Number of reflections
  Partial:     28
  Full:        2524
  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.

 195 [4   ]: 
 196 [13  ]: 
 197 [436 ]: ****************************
 198 [945 ]: ************************************************************
 199 [1039]: *******************************************************************
 200 [1011]: *****************************************************************
 201 [993 ]: ****************************************************************
 202 [591 ]: **************************************
 203 [76  ]: ****
 204 [20  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00837025 GB

 Integrated   364 (sum) +   361 (prf) /  425 reflections on image 198
 Integrated   458 (sum) +   453 (prf) /  521 reflections on image 199
 Integrated   452 (sum) +   445 (prf) /  526 reflections on image 200
 Integrated   426 (sum) +   425 (prf) /  489 reflections on image 201
 Integrated   442 (sum) +   438 (prf) /  515 reflections on image 202
 Integrated    47 (sum) +    47 (prf) /   56 reflections on image 203
 Integrated    16 (sum) +    16 (prf) /   20 reflections on image 204
 Beginning integration job 40

 Frames: 200 -> 210

 Number of reflections
  Partial:     15
  Full:        2512
  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 [17  ]: *
 202 [446 ]: ****************************
 203 [935 ]: ************************************************************
 204 [994 ]: ****************************************************************
 205 [1038]: *******************************************************************
 206 [990 ]: ***************************************************************
 207 [549 ]: ***********************************
 208 [72  ]: ****
 209 [11  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00830351 GB

 Integrated   396 (sum) +   388 (prf) /  454 reflections on image 203
 Integrated   413 (sum) +   410 (prf) /  482 reflections on image 204
 Integrated   450 (sum) +   447 (prf) /  520 reflections on image 205
 Integrated   463 (sum) +   456 (prf) /  522 reflections on image 206
 Integrated   403 (sum) +   401 (prf) /  477 reflections on image 207
 Integrated    54 (sum) +    54 (prf) /   61 reflections on image 208
 Integrated     9 (sum) +     9 (prf) /   11 reflections on image 209
 Beginning integration job 41

 Frames: 205 -> 215

 Number of reflections
  Partial:     12
  Full:        2573
  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.

 205 [1   ]: 
 206 [15  ]: 
 207 [450 ]: *****************************
 208 [983 ]: ****************************************************************
 209 [1021]: *******************************************************************
 210 [990 ]: ****************************************************************
 211 [1004]: *****************************************************************
 212 [590 ]: **************************************
 213 [66  ]: ****
 214 [12  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.0080354 GB

 Integrated   405 (sum) +   404 (prf) /  468 reflections on image 208
 Integrated   451 (sum) +   445 (prf) /  523 reflections on image 209
 Integrated   431 (sum) +   425 (prf) /  500 reflections on image 210
 Integrated   434 (sum) +   432 (prf) /  504 reflections on image 211
 Integrated   461 (sum) +   458 (prf) /  524 reflections on image 212
 Integrated    44 (sum) +    44 (prf) /   54 reflections on image 213
 Integrated    11 (sum) +    11 (prf) /   12 reflections on image 214
 Beginning integration job 42

 Frames: 210 -> 220

 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.

 210 [3   ]: 
 211 [21  ]: *
 212 [437 ]: ****************************
 213 [945 ]: **************************************************************
 214 [1019]: *******************************************************************
 215 [1003]: *****************************************************************
 216 [1003]: *****************************************************************
 217 [600 ]: ***************************************
 218 [87  ]: *****
 219 [25  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00836686 GB

 Integrated   369 (sum) +   364 (prf) /  435 reflections on image 213
 Integrated   438 (sum) +   433 (prf) /  506 reflections on image 214
 Integrated   451 (sum) +   440 (prf) /  515 reflections on image 215
 Integrated   424 (sum) +   420 (prf) /  486 reflections on image 216
 Integrated   441 (sum) +   435 (prf) /  513 reflections on image 217
 Integrated    52 (sum) +    52 (prf) /   62 reflections on image 218
 Integrated    24 (sum) +    24 (prf) /   25 reflections on image 219
 Beginning integration job 43

 Frames: 215 -> 225

 Number of reflections
  Partial:     17
  Full:        2553
  In ice ring: 0
  Integrate:   2570
  Total:       2570

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 215 [5   ]: 
 216 [17  ]: *
 217 [444 ]: ****************************
 218 [960 ]: **************************************************************
 219 [997 ]: ****************************************************************
 220 [1028]: *******************************************************************
 221 [1009]: *****************************************************************
 222 [599 ]: ***************************************
 223 [67  ]: ****
 224 [13  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.0081928 GB

 Integrated   397 (sum) +   396 (prf) /  449 reflections on image 218
 Integrated   445 (sum) +   441 (prf) /  507 reflections on image 219
 Integrated   450 (sum) +   442 (prf) /  512 reflections on image 220
 Integrated   423 (sum) +   417 (prf) /  503 reflections on image 221
 Integrated   463 (sum) +   462 (prf) /  532 reflections on image 222
 Integrated    44 (sum) +    44 (prf) /   54 reflections on image 223
 Integrated    11 (sum) +    11 (prf) /   13 reflections on image 224
 Beginning integration job 44

 Frames: 220 -> 230

 Number of reflections
  Partial:     18
  Full:        2525
  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 [21  ]: *
 222 [410 ]: ***************************
 223 [936 ]: **************************************************************
 224 [1005]: ******************************************************************
 225 [1007]: *******************************************************************
 226 [1005]: ******************************************************************
 227 [585 ]: **************************************
 228 [77  ]: *****
 229 [14  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00813386 GB

 Integrated   376 (sum) +   373 (prf) /  431 reflections on image 223
 Integrated   459 (sum) +   453 (prf) /  528 reflections on image 224
 Integrated   423 (sum) +   419 (prf) /  492 reflections on image 225
 Integrated   434 (sum) +   430 (prf) /  507 reflections on image 226
 Integrated   438 (sum) +   437 (prf) /  508 reflections on image 227
 Integrated    54 (sum) +    54 (prf) /   63 reflections on image 228
 Integrated    10 (sum) +    10 (prf) /   14 reflections on image 229
 Beginning integration job 45

 Frames: 225 -> 235

 Number of reflections
  Partial:     26
  Full:        2542
  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.

 225 [3   ]: 
 226 [20  ]: *
 227 [439 ]: ****************************
 228 [946 ]: *************************************************************
 229 [1016]: *****************************************************************
 230 [1032]: *******************************************************************
 231 [997 ]: ****************************************************************
 232 [587 ]: **************************************
 233 [65  ]: ****
 234 [16  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00827741 GB

 Integrated   406 (sum) +   402 (prf) /  454 reflections on image 228
 Integrated   452 (sum) +   440 (prf) /  499 reflections on image 229
 Integrated   452 (sum) +   444 (prf) /  527 reflections on image 230
 Integrated   434 (sum) +   430 (prf) /  501 reflections on image 231
 Integrated   432 (sum) +   429 (prf) /  522 reflections on image 232
 Integrated    43 (sum) +    43 (prf) /   49 reflections on image 233
 Integrated    15 (sum) +    15 (prf) /   16 reflections on image 234
 Beginning integration job 46

 Frames: 230 -> 240

 Number of reflections
  Partial:     32
  Full:        2525
  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.

 230 [2   ]: 
 231 [21  ]: *
 232 [430 ]: ****************************
 233 [946 ]: **************************************************************
 234 [1016]: ******************************************************************
 235 [1019]: *******************************************************************
 236 [999 ]: *****************************************************************
 237 [601 ]: ***************************************
 238 [73  ]: ****
 239 [18  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00815498 GB

 Integrated   379 (sum) +   375 (prf) /  443 reflections on image 233
 Integrated   434 (sum) +   426 (prf) /  505 reflections on image 234
 Integrated   442 (sum) +   436 (prf) /  519 reflections on image 235
 Integrated   437 (sum) +   434 (prf) /  489 reflections on image 236
 Integrated   467 (sum) +   464 (prf) /  528 reflections on image 237
 Integrated    52 (sum) +    51 (prf) /   55 reflections on image 238
 Integrated    15 (sum) +    14 (prf) /   18 reflections on image 239
 Beginning integration job 47

 Frames: 235 -> 245

 Number of reflections
  Partial:     29
  Full:        2548
  In ice ring: 0
  Integrate:   2577
  Total:       2577

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 235 [3   ]: 
 236 [19  ]: *
 237 [425 ]: ***************************
 238 [972 ]: ***************************************************************
 239 [1014]: ******************************************************************
 240 [1020]: *******************************************************************
 241 [1017]: ******************************************************************
 242 [592 ]: **************************************
 243 [78  ]: *****
 244 [18  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00828688 GB

 Integrated   363 (sum) +   361 (prf) /  430 reflections on image 238
 Integrated   459 (sum) +   455 (prf) /  529 reflections on image 239
 Integrated   437 (sum) +   432 (prf) /  510 reflections on image 240
 Integrated   459 (sum) +   454 (prf) /  516 reflections on image 241
 Integrated   440 (sum) +   436 (prf) /  514 reflections on image 242
 Integrated    50 (sum) +    49 (prf) /   60 reflections on image 243
 Integrated    12 (sum) +    12 (prf) /   18 reflections on image 244
 Beginning integration job 48

 Frames: 240 -> 250

 Number of reflections
  Partial:     21
  Full:        2532
  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.

 240 [5   ]: 
 241 [24  ]: *
 242 [433 ]: ****************************
 243 [945 ]: *************************************************************
 244 [1011]: ******************************************************************
 245 [1025]: *******************************************************************
 246 [1005]: *****************************************************************
 247 [586 ]: **************************************
 248 [70  ]: ****
 249 [16  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00818122 GB

 Integrated   378 (sum) +   376 (prf) /  439 reflections on image 243
 Integrated   442 (sum) +   439 (prf) /  511 reflections on image 244
 Integrated   437 (sum) +   434 (prf) /  509 reflections on image 245
 Integrated   414 (sum) +   412 (prf) /  508 reflections on image 246
 Integrated   454 (sum) +   450 (prf) /  516 reflections on image 247
 Integrated    41 (sum) +    41 (prf) /   54 reflections on image 248
 Integrated    12 (sum) +    12 (prf) /   16 reflections on image 249
 Beginning integration job 49

 Frames: 245 -> 255

 Number of reflections
  Partial:     21
  Full:        2544
  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.

 245 [3   ]: 
 246 [19  ]: *
 247 [430 ]: ****************************
 248 [969 ]: ****************************************************************
 249 [975 ]: ****************************************************************
 250 [1013]: *******************************************************************
 251 [1010]: ******************************************************************
 252 [581 ]: **************************************
 253 [76  ]: *****
 254 [18  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00813724 GB

 Integrated   401 (sum) +   398 (prf) /  469 reflections on image 248
 Integrated   428 (sum) +   421 (prf) /  487 reflections on image 249
 Integrated   454 (sum) +   450 (prf) /  522 reflections on image 250
 Integrated   435 (sum) +   430 (prf) /  506 reflections on image 251
 Integrated   437 (sum) +   433 (prf) /  505 reflections on image 252
 Integrated    47 (sum) +    46 (prf) /   58 reflections on image 253
 Integrated    13 (sum) +    13 (prf) /   18 reflections on image 254
 Beginning integration job 50

 Frames: 250 -> 260

 Number of reflections
  Partial:     19
  Full:        2530
  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.

 250 [5   ]: 
 251 [17  ]: *
 252 [446 ]: ****************************
 253 [916 ]: **********************************************************
 254 [969 ]: **************************************************************
 255 [1042]: *******************************************************************
 256 [1021]: *****************************************************************
 257 [600 ]: **************************************
 258 [70  ]: ****
 259 [19  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00832535 GB

 Integrated   386 (sum) +   385 (prf) /  447 reflections on image 253
 Integrated   423 (sum) +   418 (prf) /  489 reflections on image 254
 Integrated   431 (sum) +   427 (prf) /  499 reflections on image 255
 Integrated   425 (sum) +   421 (prf) /  514 reflections on image 256
 Integrated   461 (sum) +   459 (prf) /  530 reflections on image 257
 Integrated    44 (sum) +    44 (prf) /   51 reflections on image 258
 Integrated    17 (sum) +    17 (prf) /   19 reflections on image 259
 Beginning integration job 51

 Frames: 255 -> 265

 Number of reflections
  Partial:     33
  Full:        2528
  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.

 255 [2   ]: 
 256 [21  ]: *
 257 [421 ]: ***************************
 258 [970 ]: **************************************************************
 259 [1042]: *******************************************************************
 260 [989 ]: ***************************************************************
 261 [985 ]: ***************************************************************
 262 [567 ]: ************************************
 263 [78  ]: *****
 264 [21  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00838264 GB

 Integrated   374 (sum) +   371 (prf) /  431 reflections on image 258
 Integrated   481 (sum) +   472 (prf) /  553 reflections on image 259
 Integrated   428 (sum) +   425 (prf) /  499 reflections on image 260
 Integrated   437 (sum) +   432 (prf) /  511 reflections on image 261
 Integrated   416 (sum) +   410 (prf) /  489 reflections on image 262
 Integrated    42 (sum) +    42 (prf) /   57 reflections on image 263
 Integrated    16 (sum) +    16 (prf) /   21 reflections on image 264
 Beginning integration job 52

 Frames: 260 -> 270

 Number of reflections
  Partial:     30
  Full:        2577
  In ice ring: 0
  Integrate:   2607
  Total:       2607

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 260 [5   ]: 
 261 [20  ]: *
 262 [443 ]: ****************************
 263 [942 ]: ************************************************************
 264 [1005]: ****************************************************************
 265 [1042]: *******************************************************************
 266 [1034]: ******************************************************************
 267 [636 ]: ****************************************
 268 [94  ]: ******
 269 [27  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00824147 GB

 Integrated   385 (sum) +   381 (prf) /  446 reflections on image 263
 Integrated   429 (sum) +   425 (prf) /  496 reflections on image 264
 Integrated   469 (sum) +   461 (prf) /  531 reflections on image 265
 Integrated   434 (sum) +   434 (prf) /  498 reflections on image 266
 Integrated   464 (sum) +   460 (prf) /  542 reflections on image 267
 Integrated    60 (sum) +    60 (prf) /   67 reflections on image 268
 Integrated    24 (sum) +    24 (prf) /   27 reflections on image 269
 Beginning integration job 53

 Frames: 265 -> 275

 Number of reflections
  Partial:     23
  Full:        2490
  In ice ring: 0
  Integrate:   2513
  Total:       2513

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 265 [2   ]: 
 266 [19  ]: *
 267 [427 ]: ***************************
 268 [911 ]: **********************************************************
 269 [1014]: *****************************************************************
 270 [1044]: *******************************************************************
 271 [999 ]: ****************************************************************
 272 [525 ]: *********************************
 273 [71  ]: ****
 274 [15  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00850746 GB

 Integrated   377 (sum) +   377 (prf) /  439 reflections on image 268
 Integrated   425 (sum) +   419 (prf) /  491 reflections on image 269
 Integrated   442 (sum) +   436 (prf) /  516 reflections on image 270
 Integrated   472 (sum) +   466 (prf) /  542 reflections on image 271
 Integrated   395 (sum) +   389 (prf) /  454 reflections on image 272
 Integrated    46 (sum) +    46 (prf) /   56 reflections on image 273
 Integrated    13 (sum) +    13 (prf) /   15 reflections on image 274
 Beginning integration job 54

 Frames: 270 -> 280

 Number of reflections
  Partial:     11
  Full:        2546
  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.

 270 [3   ]: 
 271 [13  ]: 
 272 [442 ]: *****************************
 273 [975 ]: *****************************************************************
 274 [968 ]: ****************************************************************
 275 [1001]: ******************************************************************
 276 [1003]: *******************************************************************
 277 [561 ]: *************************************
 278 [72  ]: ****
 279 [6   ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00819089 GB

 Integrated   422 (sum) +   418 (prf) /  481 reflections on image 273
 Integrated   445 (sum) +   439 (prf) /  519 reflections on image 274
 Integrated   413 (sum) +   409 (prf) /  477 reflections on image 275
 Integrated   446 (sum) +   443 (prf) /  519 reflections on image 276
 Integrated   408 (sum) +   406 (prf) /  489 reflections on image 277
 Integrated    56 (sum) +    55 (prf) /   66 reflections on image 278
 Integrated     4 (sum) +     3 (prf) /    6 reflections on image 279
 Beginning integration job 55

 Frames: 275 -> 285

 Number of reflections
  Partial:     15
  Full:        2536
  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.

 275 [3   ]: 
 276 [23  ]: *
 277 [437 ]: ****************************
 278 [985 ]: *****************************************************************
 279 [1012]: *******************************************************************
 280 [990 ]: *****************************************************************
 281 [1009]: ******************************************************************
 282 [559 ]: *************************************
 283 [72  ]: ****
 284 [15  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00815306 GB

 Integrated   388 (sum) +   384 (prf) /  444 reflections on image 278
 Integrated   480 (sum) +   470 (prf) /  550 reflections on image 279
 Integrated   413 (sum) +   411 (prf) /  470 reflections on image 280
 Integrated   464 (sum) +   457 (prf) /  528 reflections on image 281
 Integrated   413 (sum) +   410 (prf) /  487 reflections on image 282
 Integrated    48 (sum) +    48 (prf) /   57 reflections on image 283
 Integrated    15 (sum) +    15 (prf) /   15 reflections on image 284
 Beginning integration job 56

 Frames: 280 -> 290

 Number of reflections
  Partial:     31
  Full:        2546
  In ice ring: 0
  Integrate:   2577
  Total:       2577

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 280 [1   ]: 
 281 [30  ]: *
 282 [449 ]: *****************************
 283 [971 ]: ***************************************************************
 284 [1023]: *******************************************************************
 285 [1009]: ******************************************************************
 286 [994 ]: *****************************************************************
 287 [585 ]: **************************************
 288 [72  ]: ****
 289 [23  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00824186 GB

 Integrated   389 (sum) +   386 (prf) /  448 reflections on image 283
 Integrated   477 (sum) +   469 (prf) /  539 reflections on image 284
 Integrated   436 (sum) +   429 (prf) /  501 reflections on image 285
 Integrated   427 (sum) +   421 (prf) /  504 reflections on image 286
 Integrated   450 (sum) +   445 (prf) /  513 reflections on image 287
 Integrated    41 (sum) +    41 (prf) /   49 reflections on image 288
 Integrated    17 (sum) +    17 (prf) /   23 reflections on image 289
 Beginning integration job 57

 Frames: 285 -> 295

 Number of reflections
  Partial:     26
  Full:        2523
  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.

 285 [2   ]: 
 286 [21  ]: *
 287 [424 ]: ***************************
 288 [944 ]: *************************************************************
 289 [1025]: ******************************************************************
 290 [1028]: *******************************************************************
 291 [997 ]: ****************************************************************
 292 [563 ]: ************************************
 293 [78  ]: *****
 294 [15  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00829962 GB

 Integrated   377 (sum) +   374 (prf) /  441 reflections on image 288
 Integrated   463 (sum) +   455 (prf) /  527 reflections on image 289
 Integrated   444 (sum) +   436 (prf) /  508 reflections on image 290
 Integrated   444 (sum) +   440 (prf) /  510 reflections on image 291
 Integrated   412 (sum) +   411 (prf) /  485 reflections on image 292
 Integrated    58 (sum) +    57 (prf) /   63 reflections on image 293
 Integrated    12 (sum) +    12 (prf) /   15 reflections on image 294
 Beginning integration job 58

 Frames: 290 -> 300

 Number of reflections
  Partial:     21
  Full:        2555
  In ice ring: 0
  Integrate:   2576
  Total:       2576

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 290 [2   ]: 
 291 [23  ]: *
 292 [453 ]: ******************************
 293 [964 ]: ****************************************************************
 294 [991 ]: ******************************************************************
 295 [1001]: ******************************************************************
 296 [1005]: *******************************************************************
 297 [589 ]: ***************************************
 298 [65  ]: ****
 299 [13  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00823267 GB

 Integrated   400 (sum) +   395 (prf) /  458 reflections on image 293
 Integrated   438 (sum) +   433 (prf) /  531 reflections on image 294
 Integrated   416 (sum) +   414 (prf) /  480 reflections on image 295
 Integrated   451 (sum) +   446 (prf) /  518 reflections on image 296
 Integrated   442 (sum) +   441 (prf) /  524 reflections on image 297
 Integrated    45 (sum) +    43 (prf) /   52 reflections on image 298
 Integrated     9 (sum) +     9 (prf) /   13 reflections on image 299
 Beginning integration job 59

 Frames: 295 -> 305

 Number of reflections
  Partial:     24
  Full:        2536
  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.

 295 [2   ]: 
 296 [20  ]: *
 297 [441 ]: ****************************
 298 [941 ]: *************************************************************
 299 [1015]: ******************************************************************
 300 [1029]: *******************************************************************
 301 [1012]: *****************************************************************
 302 [583 ]: *************************************
 303 [69  ]: ****
 304 [17  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00824524 GB

 Integrated   379 (sum) +   377 (prf) /  451 reflections on image 298
 Integrated   413 (sum) +   406 (prf) /  496 reflections on image 299
 Integrated   458 (sum) +   455 (prf) /  513 reflections on image 300
 Integrated   449 (sum) +   448 (prf) /  517 reflections on image 301
 Integrated   439 (sum) +   435 (prf) /  514 reflections on image 302
 Integrated    47 (sum) +    47 (prf) /   52 reflections on image 303
 Integrated    15 (sum) +    15 (prf) /   17 reflections on image 304
 Beginning integration job 60

 Frames: 300 -> 310

 Number of reflections
  Partial:     20
  Full:        2508
  In ice ring: 0
  Integrate:   2528
  Total:       2528

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 300 [5   ]: 
 301 [25  ]: *
 302 [441 ]: ****************************
 303 [952 ]: *************************************************************
 304 [1030]: *******************************************************************
 305 [1000]: *****************************************************************
 306 [978 ]: ***************************************************************
 307 [571 ]: *************************************
 308 [72  ]: ****
 309 [14  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00808282 GB

 Integrated   368 (sum) +   364 (prf) /  435 reflections on image 303
 Integrated   451 (sum) +   443 (prf) /  523 reflections on image 304
 Integrated   442 (sum) +   432 (prf) /  517 reflections on image 305
 Integrated   418 (sum) +   415 (prf) /  482 reflections on image 306
 Integrated   437 (sum) +   434 (prf) /  499 reflections on image 307
 Integrated    49 (sum) +    49 (prf) /   58 reflections on image 308
 Integrated    13 (sum) +    13 (prf) /   14 reflections on image 309
 Beginning integration job 61

 Frames: 305 -> 315

 Number of reflections
  Partial:     6
  Full:        2572
  In ice ring: 0
  Integrate:   2578
  Total:       2578

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 305 [4   ]: 
 306 [22  ]: *
 307 [477 ]: *******************************
 308 [1007]: *******************************************************************
 309 [994 ]: ******************************************************************
 310 [966 ]: ****************************************************************
 311 [1001]: ******************************************************************
 312 [595 ]: ***************************************
 313 [62  ]: ****
 314 [4   ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00825548 GB

 Integrated   423 (sum) +   420 (prf) /  492 reflections on image 308
 Integrated   448 (sum) +   443 (prf) /  523 reflections on image 309
 Integrated   418 (sum) +   415 (prf) /  479 reflections on image 310
 Integrated   425 (sum) +   421 (prf) /  489 reflections on image 311
 Integrated   475 (sum) +   466 (prf) /  533 reflections on image 312
 Integrated    50 (sum) +    50 (prf) /   58 reflections on image 313
 Integrated     3 (sum) +     3 (prf) /    4 reflections on image 314
 Beginning integration job 62

 Frames: 310 -> 320

 Number of reflections
  Partial:     22
  Full:        2503
  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.

 310 [6   ]: 
 311 [24  ]: *
 312 [449 ]: ****************************
 313 [939 ]: ***********************************************************
 314 [1032]: *****************************************************************
 315 [1055]: *******************************************************************
 316 [988 ]: **************************************************************
 317 [514 ]: ********************************
 318 [63  ]: ****
 319 [18  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00892626 GB

 Integrated   381 (sum) +   378 (prf) /  455 reflections on image 313
 Integrated   428 (sum) +   419 (prf) /  497 reflections on image 314
 Integrated   439 (sum) +   436 (prf) /  512 reflections on image 315
 Integrated   481 (sum) +   478 (prf) /  547 reflections on image 316
 Integrated   394 (sum) +   390 (prf) /  451 reflections on image 317
 Integrated    39 (sum) +    38 (prf) /   45 reflections on image 318
 Integrated    16 (sum) +    16 (prf) /   18 reflections on image 319
 Beginning integration job 63

 Frames: 315 -> 325

 Number of reflections
  Partial:     23
  Full:        2590
  In ice ring: 0
  Integrate:   2613
  Total:       2613

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 315 [2   ]: 
 316 [21  ]: *
 317 [474 ]: ******************************
 318 [976 ]: ***************************************************************
 319 [999 ]: *****************************************************************
 320 [1027]: *******************************************************************
 321 [1012]: ******************************************************************
 322 [610 ]: ***************************************
 323 [67  ]: ****
 324 [17  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00847938 GB

 Integrated   408 (sum) +   405 (prf) /  482 reflections on image 318
 Integrated   453 (sum) +   448 (prf) /  509 reflections on image 319
 Integrated   434 (sum) +   428 (prf) /  493 reflections on image 320
 Integrated   445 (sum) +   443 (prf) /  519 reflections on image 321
 Integrated   466 (sum) +   460 (prf) /  543 reflections on image 322
 Integrated    39 (sum) +    39 (prf) /   50 reflections on image 323
 Integrated    14 (sum) +    14 (prf) /   17 reflections on image 324
 Beginning integration job 64

 Frames: 320 -> 330

 Number of reflections
  Partial:     22
  Full:        2509
  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.

 320 [2   ]: 
 321 [16  ]: *
 322 [423 ]: ***************************
 323 [916 ]: ***********************************************************
 324 [1024]: *******************************************************************
 325 [1015]: ******************************************************************
 326 [1016]: ******************************************************************
 327 [587 ]: **************************************
 328 [86  ]: *****
 329 [16  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00809212 GB

 Integrated   352 (sum) +   350 (prf) /  413 reflections on image 323
 Integrated   446 (sum) +   443 (prf) /  519 reflections on image 324
 Integrated   435 (sum) +   432 (prf) /  497 reflections on image 325
 Integrated   444 (sum) +   438 (prf) /  515 reflections on image 326
 Integrated   428 (sum) +   424 (prf) /  501 reflections on image 327
 Integrated    60 (sum) +    60 (prf) /   70 reflections on image 328
 Integrated    14 (sum) +    14 (prf) /   16 reflections on image 329
 Beginning integration job 65

 Frames: 325 -> 335

 Number of reflections
  Partial:     25
  Full:        2520
  In ice ring: 0
  Integrate:   2545
  Total:       2545

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 325 [3   ]: 
 326 [11  ]: 
 327 [442 ]: ****************************
 328 [1000]: ****************************************************************
 329 [1035]: *******************************************************************
 330 [959 ]: **************************************************************
 331 [963 ]: **************************************************************
 332 [560 ]: ************************************
 333 [75  ]: ****
 334 [15  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00817229 GB

 Integrated   396 (sum) +   394 (prf) /  460 reflections on image 328
 Integrated   491 (sum) +   484 (prf) /  559 reflections on image 329
 Integrated   412 (sum) +   406 (prf) /  483 reflections on image 330
 Integrated   418 (sum) +   416 (prf) /  483 reflections on image 331
 Integrated   420 (sum) +   417 (prf) /  485 reflections on image 332
 Integrated    53 (sum) +    52 (prf) /   60 reflections on image 333
 Integrated    14 (sum) +    14 (prf) /   15 reflections on image 334
 Beginning integration job 66

 Frames: 330 -> 340

 Number of reflections
  Partial:     18
  Full:        2566
  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.

 330 [4   ]: 
 331 [14  ]: 
 332 [449 ]: *****************************
 333 [972 ]: **************************************************************
 334 [983 ]: ***************************************************************
 335 [1036]: *******************************************************************
 336 [1032]: ******************************************************************
 337 [568 ]: ************************************
 338 [73  ]: ****
 339 [12  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00843768 GB

 Integrated   415 (sum) +   413 (prf) /  475 reflections on image 333
 Integrated   422 (sum) +   415 (prf) /  494 reflections on image 334
 Integrated   422 (sum) +   416 (prf) /  498 reflections on image 335
 Integrated   464 (sum) +   459 (prf) /  549 reflections on image 336
 Integrated   429 (sum) +   428 (prf) /  495 reflections on image 337
 Integrated    54 (sum) +    54 (prf) /   61 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:     20
  Full:        2532
  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.

 335 [4   ]: 
 336 [24  ]: *
 337 [436 ]: ****************************
 338 [952 ]: **************************************************************
 339 [1002]: ******************************************************************
 340 [995 ]: *****************************************************************
 341 [1017]: *******************************************************************
 342 [599 ]: ***************************************
 343 [83  ]: *****
 344 [14  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00832225 GB

 Integrated   377 (sum) +   372 (prf) /  451 reflections on image 338
 Integrated   443 (sum) +   433 (prf) /  512 reflections on image 339
 Integrated   418 (sum) +   412 (prf) /  485 reflections on image 340
 Integrated   448 (sum) +   445 (prf) /  505 reflections on image 341
 Integrated   460 (sum) +   456 (prf) /  516 reflections on image 342
 Integrated    62 (sum) +    61 (prf) /   69 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:     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.

 340 [7   ]: 
 341 [25  ]: *
 342 [430 ]: ***************************
 343 [962 ]: **************************************************************
 344 [1012]: *****************************************************************
 345 [1032]: *******************************************************************
 346 [1013]: *****************************************************************
 347 [580 ]: *************************************
 348 [67  ]: ****
 349 [20  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00861341 GB

 Integrated   367 (sum) +   364 (prf) /  448 reflections on image 343
 Integrated   436 (sum) +   433 (prf) /  506 reflections on image 344
 Integrated   428 (sum) +   421 (prf) /  497 reflections on image 345
 Integrated   455 (sum) +   450 (prf) /  540 reflections on image 346
 Integrated   445 (sum) +   442 (prf) /  513 reflections on image 347
 Integrated    36 (sum) +    36 (prf) /   47 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:     28
  Full:        2512
  In ice ring: 0
  Integrate:   2540
  Total:       2540

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 345 [3   ]: 
 346 [19  ]: *
 347 [431 ]: ****************************
 348 [942 ]: *************************************************************
 349 [1022]: ******************************************************************
 350 [1023]: *******************************************************************
 351 [999 ]: *****************************************************************
 352 [580 ]: *************************************
 353 [62  ]: ****
 354 [14  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00836406 GB

 Integrated   375 (sum) +   373 (prf) /  427 reflections on image 348
 Integrated   440 (sum) +   432 (prf) /  518 reflections on image 349
 Integrated   450 (sum) +   443 (prf) /  511 reflections on image 350
 Integrated   428 (sum) +   421 (prf) /  504 reflections on image 351
 Integrated   445 (sum) +   439 (prf) /  518 reflections on image 352
 Integrated    39 (sum) +    38 (prf) /   48 reflections on image 353
 Integrated    12 (sum) +    12 (prf) /   14 reflections on image 354
 Beginning integration job 70

 Frames: 350 -> 360

 Number of reflections
  Partial:     16
  Full:        2597
  In ice ring: 0
  Integrate:   2613
  Total:       2613

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 350 [4   ]: 
 351 [22  ]: *
 352 [446 ]: ****************************
 353 [959 ]: *************************************************************
 354 [1016]: ****************************************************************
 355 [1027]: *****************************************************************
 356 [1053]: *******************************************************************
 357 [617 ]: ***************************************
 358 [66  ]: ****
 359 [10  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00849337 GB

 Integrated   395 (sum) +   390 (prf) /  448 reflections on image 353
 Integrated   441 (sum) +   433 (prf) /  508 reflections on image 354
 Integrated   447 (sum) +   441 (prf) /  508 reflections on image 355
 Integrated   448 (sum) +   448 (prf) /  532 reflections on image 356
 Integrated   482 (sum) +   476 (prf) /  551 reflections on image 357
 Integrated    48 (sum) +    47 (prf) /   56 reflections on image 358
 Integrated     9 (sum) +     9 (prf) /   10 reflections on image 359
 Beginning integration job 71

 Frames: 355 -> 365

 Number of reflections
  Partial:     16
  Full:        2471
  In ice ring: 0
  Integrate:   2487
  Total:       2487

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 355 [7   ]: 
 356 [22  ]: *
 357 [424 ]: ***************************
 358 [896 ]: **********************************************************
 359 [965 ]: ***************************************************************
 360 [1026]: *******************************************************************
 361 [966 ]: ***************************************************************
 362 [579 ]: *************************************
 363 [66  ]: ****
 364 [16  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.0079321 GB

 Integrated   375 (sum) +   372 (prf) /  430 reflections on image 358
 Integrated   404 (sum) +   399 (prf) /  468 reflections on image 359
 Integrated   463 (sum) +   457 (prf) /  532 reflections on image 360
 Integrated   402 (sum) +   398 (prf) /  478 reflections on image 361
 Integrated   450 (sum) +   449 (prf) /  513 reflections on image 362
 Integrated    41 (sum) +    41 (prf) /   50 reflections on image 363
 Integrated    16 (sum) +    16 (prf) /   16 reflections on image 364
 Beginning integration job 72

 Frames: 360 -> 370

 Number of reflections
  Partial:     20
  Full:        2609
  In ice ring: 0
  Integrate:   2629
  Total:       2629

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 360 [3   ]: 
 361 [21  ]: *
 362 [431 ]: **************************
 363 [944 ]: **********************************************************
 364 [1019]: ***************************************************************
 365 [1062]: ******************************************************************
 366 [1073]: *******************************************************************
 367 [639 ]: ***************************************
 368 [91  ]: *****
 369 [16  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.008821 GB

 Integrated   385 (sum) +   381 (prf) /  442 reflections on image 363
 Integrated   453 (sum) +   447 (prf) /  512 reflections on image 364
 Integrated   444 (sum) +   433 (prf) /  514 reflections on image 365
 Integrated   438 (sum) +   435 (prf) /  522 reflections on image 366
 Integrated   481 (sum) +   480 (prf) /  548 reflections on image 367
 Integrated    68 (sum) +    67 (prf) /   75 reflections on image 368
 Integrated    15 (sum) +    15 (prf) /   16 reflections on image 369
 Beginning integration job 73

 Frames: 365 -> 375

 Number of reflections
  Partial:     19
  Full:        2488
  In ice ring: 0
  Integrate:   2507
  Total:       2507

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 365 [4  ]: 
 366 [19 ]: *
 367 [456]: *******************************
 368 [933]: ***************************************************************
 369 [934]: ***************************************************************
 370 [928]: ***************************************************************
 371 [999]: ********************************************************************
 372 [585]: ***************************************
 373 [64 ]: ****
 374 [15 ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00766158 GB

 Integrated   398 (sum) +   396 (prf) /  461 reflections on image 368
 Integrated   425 (sum) +   419 (prf) /  498 reflections on image 369
 Integrated   398 (sum) +   395 (prf) /  457 reflections on image 370
 Integrated   445 (sum) +   441 (prf) /  506 reflections on image 371
 Integrated   446 (sum) +   440 (prf) /  521 reflections on image 372
 Integrated    47 (sum) +    46 (prf) /   49 reflections on image 373
 Integrated    12 (sum) +    12 (prf) /   15 reflections on image 374
 Beginning integration job 74

 Frames: 370 -> 380

 Number of reflections
  Partial:     30
  Full:        2527
  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.

 370 [3   ]: 
 371 [18  ]: *
 372 [401 ]: *************************
 373 [934 ]: ************************************************************
 374 [1037]: *******************************************************************
 375 [1028]: ******************************************************************
 376 [1022]: ******************************************************************
 377 [598 ]: **************************************
 378 [86  ]: *****
 379 [29  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00843802 GB

 Integrated   354 (sum) +   351 (prf) /  411 reflections on image 373
 Integrated   462 (sum) +   458 (prf) /  529 reflections on image 374
 Integrated   452 (sum) +   447 (prf) /  517 reflections on image 375
 Integrated   423 (sum) +   418 (prf) /  502 reflections on image 376
 Integrated   444 (sum) +   439 (prf) /  512 reflections on image 377
 Integrated    49 (sum) +    49 (prf) /   57 reflections on image 378
 Integrated    24 (sum) +    24 (prf) /   29 reflections on image 379
 Beginning integration job 75

 Frames: 375 -> 385

 Number of reflections
  Partial:     25
  Full:        2586
  In ice ring: 0
  Integrate:   2611
  Total:       2611

 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 [445 ]: ****************************
 378 [994 ]: ****************************************************************
 379 [1039]: *******************************************************************
 380 [1010]: *****************************************************************
 381 [1027]: ******************************************************************
 382 [616 ]: ***************************************
 383 [90  ]: *****
 384 [24  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00846391 GB

 Integrated   391 (sum) +   390 (prf) /  451 reflections on image 378
 Integrated   468 (sum) +   461 (prf) /  557 reflections on image 379
 Integrated   434 (sum) +   429 (prf) /  503 reflections on image 380
 Integrated   414 (sum) +   411 (prf) /  484 reflections on image 381
 Integrated   450 (sum) +   447 (prf) /  526 reflections on image 382
 Integrated    57 (sum) +    57 (prf) /   66 reflections on image 383
 Integrated    20 (sum) +    20 (prf) /   24 reflections on image 384
 Beginning integration job 76

 Frames: 380 -> 390

 Number of reflections
  Partial:     26
  Full:        2498
  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.

 380 [3   ]: 
 381 [21  ]: *
 382 [421 ]: ****************************
 383 [934 ]: **************************************************************
 384 [999 ]: ******************************************************************
 385 [992 ]: ******************************************************************
 386 [1007]: *******************************************************************
 387 [585 ]: **************************************
 388 [69  ]: ****
 389 [18  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00815251 GB

 Integrated   368 (sum) +   364 (prf) /  432 reflections on image 383
 Integrated   435 (sum) +   427 (prf) /  505 reflections on image 384
 Integrated   444 (sum) +   438 (prf) /  503 reflections on image 385
 Integrated   436 (sum) +   433 (prf) /  499 reflections on image 386
 Integrated   451 (sum) +   448 (prf) /  516 reflections on image 387
 Integrated    44 (sum) +    43 (prf) /   51 reflections on image 388
 Integrated    17 (sum) +    17 (prf) /   18 reflections on image 389
 Beginning integration job 77

 Frames: 385 -> 395

 Number of reflections
  Partial:     18
  Full:        2558
  In ice ring: 0
  Integrate:   2576
  Total:       2576

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 385 [8   ]: 
 386 [22  ]: *
 387 [449 ]: *****************************
 388 [955 ]: **************************************************************
 389 [1014]: *****************************************************************
 390 [1030]: *******************************************************************
 391 [1030]: *******************************************************************
 392 [580 ]: *************************************
 393 [81  ]: *****
 394 [12  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00835694 GB

 Integrated   400 (sum) +   396 (prf) /  454 reflections on image 388
 Integrated   439 (sum) +   434 (prf) /  506 reflections on image 389
 Integrated   432 (sum) +   428 (prf) /  508 reflections on image 390
 Integrated   459 (sum) +   452 (prf) /  528 reflections on image 391
 Integrated   432 (sum) +   427 (prf) /  499 reflections on image 392
 Integrated    65 (sum) +    65 (prf) /   69 reflections on image 393
 Integrated    12 (sum) +    12 (prf) /   12 reflections on image 394
 Beginning integration job 78

 Frames: 390 -> 400

 Number of reflections
  Partial:     12
  Full:        2544
  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.

 390 [4   ]: 
 391 [16  ]: *
 392 [445 ]: *****************************
 393 [950 ]: **************************************************************
 394 [1020]: *******************************************************************
 395 [1012]: ******************************************************************
 396 [1002]: *****************************************************************
 397 [580 ]: **************************************
 398 [57  ]: ***
 399 [10  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00824372 GB

 Integrated   385 (sum) +   383 (prf) /  448 reflections on image 393
 Integrated   447 (sum) +   444 (prf) /  519 reflections on image 394
 Integrated   428 (sum) +   420 (prf) /  496 reflections on image 395
 Integrated   449 (sum) +   444 (prf) /  513 reflections on image 396
 Integrated   451 (sum) +   449 (prf) /  523 reflections on image 397
 Integrated    39 (sum) +    38 (prf) /   47 reflections on image 398
 Integrated     9 (sum) +     9 (prf) /   10 reflections on image 399
 Beginning integration job 79

 Frames: 395 -> 405

 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.

 395 [5   ]: 
 396 [23  ]: *
 397 [418 ]: ***************************
 398 [948 ]: **************************************************************
 399 [1012]: *******************************************************************
 400 [1012]: *******************************************************************
 401 [1008]: ******************************************************************
 402 [584 ]: **************************************
 403 [63  ]: ****
 404 [9   ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00821328 GB

 Integrated   365 (sum) +   365 (prf) /  436 reflections on image 398
 Integrated   430 (sum) +   426 (prf) /  504 reflections on image 399
 Integrated   444 (sum) +   439 (prf) /  508 reflections on image 400
 Integrated   430 (sum) +   425 (prf) /  512 reflections on image 401
 Integrated   455 (sum) +   452 (prf) /  521 reflections on image 402
 Integrated    46 (sum) +    44 (prf) /   54 reflections on image 403
 Integrated     8 (sum) +     8 (prf) /    9 reflections on image 404
 Beginning integration job 80

 Frames: 400 -> 410

 Number of reflections
  Partial:     25
  Full:        2526
  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.

 400 [4   ]: 
 401 [16  ]: *
 402 [429 ]: ****************************
 403 [938 ]: **************************************************************
 404 [999 ]: ******************************************************************
 405 [1013]: *******************************************************************
 406 [1010]: ******************************************************************
 407 [568 ]: *************************************
 408 [76  ]: *****
 409 [18  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.008222 GB

 Integrated   394 (sum) +   393 (prf) /  444 reflections on image 403
 Integrated   454 (sum) +   449 (prf) /  523 reflections on image 404
 Integrated   418 (sum) +   413 (prf) /  489 reflections on image 405
 Integrated   458 (sum) +   456 (prf) /  527 reflections on image 406
 Integrated   425 (sum) +   416 (prf) /  492 reflections on image 407
 Integrated    48 (sum) +    48 (prf) /   58 reflections on image 408
 Integrated    15 (sum) +    15 (prf) /   18 reflections on image 409
 Beginning integration job 81

 Frames: 405 -> 415

 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.

 405 [2   ]: 
 406 [15  ]: 
 407 [439 ]: ****************************
 408 [974 ]: **************************************************************
 409 [995 ]: ***************************************************************
 410 [1042]: *******************************************************************
 411 [1007]: ****************************************************************
 412 [575 ]: ************************************
 413 [72  ]: ****
 414 [16  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00835039 GB

 Integrated   390 (sum) +   389 (prf) /  457 reflections on image 408
 Integrated   430 (sum) +   426 (prf) /  502 reflections on image 409
 Integrated   442 (sum) +   435 (prf) /  515 reflections on image 410
 Integrated   453 (sum) +   451 (prf) /  520 reflections on image 411
 Integrated   432 (sum) +   430 (prf) /  503 reflections on image 412
 Integrated    49 (sum) +    49 (prf) /   56 reflections on image 413
 Integrated    14 (sum) +    14 (prf) /   16 reflections on image 414
 Beginning integration job 82

 Frames: 410 -> 420

 Number of reflections
  Partial:     14
  Full:        2542
  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.

 410 [6   ]: 
 411 [25  ]: *
 412 [452 ]: *****************************
 413 [959 ]: **************************************************************
 414 [1017]: ******************************************************************
 415 [1000]: *****************************************************************
 416 [1022]: *******************************************************************
 417 [557 ]: ************************************
 418 [66  ]: ****
 419 [8   ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00819523 GB

 Integrated   397 (sum) +   394 (prf) /  454 reflections on image 413
 Integrated   461 (sum) +   458 (prf) /  522 reflections on image 414
 Integrated   410 (sum) +   407 (prf) /  481 reflections on image 415
 Integrated   464 (sum) +   455 (prf) /  542 reflections on image 416
 Integrated   431 (sum) +   427 (prf) /  491 reflections on image 417
 Integrated    49 (sum) +    48 (prf) /   58 reflections on image 418
 Integrated     8 (sum) +     8 (prf) /    8 reflections on image 419
 Beginning integration job 83

 Frames: 415 -> 425

 Number of reflections
  Partial:     8
  Full:        2558
  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.

 415 [2   ]: 
 416 [24  ]: *
 417 [449 ]: *****************************
 418 [979 ]: ****************************************************************
 419 [1009]: ******************************************************************
 420 [1012]: *******************************************************************
 421 [986 ]: *****************************************************************
 422 [575 ]: **************************************
 423 [68  ]: ****
 424 [9   ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00823314 GB

 Integrated   399 (sum) +   397 (prf) /  457 reflections on image 418
 Integrated   445 (sum) +   439 (prf) /  516 reflections on image 419
 Integrated   450 (sum) +   445 (prf) /  508 reflections on image 420
 Integrated   431 (sum) +   429 (prf) /  510 reflections on image 421
 Integrated   430 (sum) +   426 (prf) /  507 reflections on image 422
 Integrated    48 (sum) +    48 (prf) /   59 reflections on image 423
 Integrated     9 (sum) +     9 (prf) /    9 reflections on image 424
 Beginning integration job 84

 Frames: 420 -> 430

 Number of reflections
  Partial:     12
  Full:        2518
  In ice ring: 0
  Integrate:   2530
  Total:       2530

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 420 [4   ]: 
 421 [23  ]: *
 422 [446 ]: *****************************
 423 [943 ]: *************************************************************
 424 [999 ]: *****************************************************************
 425 [1023]: *******************************************************************
 426 [982 ]: ****************************************************************
 427 [562 ]: ************************************
 428 [56  ]: ***
 429 [11  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00818683 GB

 Integrated   387 (sum) +   385 (prf) /  453 reflections on image 423
 Integrated   434 (sum) +   431 (prf) /  491 reflections on image 424
 Integrated   452 (sum) +   447 (prf) /  516 reflections on image 425
 Integrated   444 (sum) +   440 (prf) /  508 reflections on image 426
 Integrated   434 (sum) +   428 (prf) /  506 reflections on image 427
 Integrated    38 (sum) +    38 (prf) /   45 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:     16
  Full:        2529
  In ice ring: 0
  Integrate:   2545
  Total:       2545

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 425 [2   ]: 
 426 [17  ]: *
 427 [452 ]: *****************************
 428 [946 ]: **************************************************************
 429 [994 ]: *****************************************************************
 430 [1020]: *******************************************************************
 431 [977 ]: ****************************************************************
 432 [559 ]: ************************************
 433 [70  ]: ****
 434 [17  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00816734 GB

 Integrated   400 (sum) +   396 (prf) /  475 reflections on image 428
 Integrated   422 (sum) +   414 (prf) /  488 reflections on image 429
 Integrated   449 (sum) +   441 (prf) /  511 reflections on image 430
 Integrated   447 (sum) +   442 (prf) /  512 reflections on image 431
 Integrated   422 (sum) +   419 (prf) /  489 reflections on image 432
 Integrated    46 (sum) +    46 (prf) /   53 reflections on image 433
 Integrated    12 (sum) +    12 (prf) /   17 reflections on image 434
 Beginning integration job 86

 Frames: 430 -> 440

 Number of reflections
  Partial:     19
  Full:        2573
  In ice ring: 0
  Integrate:   2592
  Total:       2592

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 430 [8   ]: 
 431 [31  ]: *
 432 [481 ]: ******************************
 433 [969 ]: *************************************************************
 434 [1029]: *****************************************************************
 435 [1052]: *******************************************************************
 436 [1012]: ****************************************************************
 437 [587 ]: *************************************
 438 [71  ]: ****
 439 [15  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00859811 GB

 Integrated   395 (sum) +   394 (prf) /  458 reflections on image 433
 Integrated   437 (sum) +   430 (prf) /  512 reflections on image 434
 Integrated   455 (sum) +   454 (prf) /  506 reflections on image 435
 Integrated   451 (sum) +   451 (prf) /  529 reflections on image 436
 Integrated   429 (sum) +   425 (prf) /  516 reflections on image 437
 Integrated    52 (sum) +    52 (prf) /   56 reflections on image 438
 Integrated    12 (sum) +    12 (prf) /   15 reflections on image 439
 Beginning integration job 87

 Frames: 435 -> 445

 Number of reflections
  Partial:     13
  Full:        2536
  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.

 435 [7   ]: 
 436 [20  ]: *
 437 [439 ]: ****************************
 438 [946 ]: **************************************************************
 439 [1021]: *******************************************************************
 440 [1019]: ******************************************************************
 441 [980 ]: ****************************************************************
 442 [580 ]: **************************************
 443 [62  ]: ****
 444 [14  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00832896 GB

 Integrated   379 (sum) +   375 (prf) /  434 reflections on image 438
 Integrated   446 (sum) +   439 (prf) /  515 reflections on image 439
 Integrated   440 (sum) +   435 (prf) /  515 reflections on image 440
 Integrated   439 (sum) +   433 (prf) /  505 reflections on image 441
 Integrated   445 (sum) +   439 (prf) /  518 reflections on image 442
 Integrated    41 (sum) +    41 (prf) /   48 reflections on image 443
 Integrated    13 (sum) +    13 (prf) /   14 reflections on image 444
 Beginning integration job 88

 Frames: 440 -> 450

 Number of reflections
  Partial:     15
  Full:        2521
  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.

 440 [5   ]: 
 441 [24  ]: *
 442 [427 ]: ****************************
 443 [934 ]: *************************************************************
 444 [1017]: ******************************************************************
 445 [1018]: *******************************************************************
 446 [972 ]: ***************************************************************
 447 [606 ]: ***************************************
 448 [78  ]: *****
 449 [15  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.0082813 GB

 Integrated   379 (sum) +   379 (prf) /  438 reflections on image 443
 Integrated   415 (sum) +   411 (prf) /  495 reflections on image 444
 Integrated   457 (sum) +   451 (prf) /  531 reflections on image 445
 Integrated   399 (sum) +   395 (prf) /  466 reflections on image 446
 Integrated   463 (sum) +   459 (prf) /  528 reflections on image 447
 Integrated    51 (sum) +    51 (prf) /   63 reflections on image 448
 Integrated    13 (sum) +    13 (prf) /   15 reflections on image 449
 Beginning integration job 89

 Frames: 445 -> 455

 Number of reflections
  Partial:     25
  Full:        2583
  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.

 445 [4   ]: 
 446 [22  ]: *
 447 [423 ]: **************************
 448 [943 ]: **********************************************************
 449 [1045]: ****************************************************************
 450 [1079]: *******************************************************************
 451 [1013]: **************************************************************
 452 [596 ]: *************************************
 453 [73  ]: ****
 454 [15  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00885262 GB

 Integrated   398 (sum) +   393 (prf) /  460 reflections on image 448
 Integrated   408 (sum) +   399 (prf) /  475 reflections on image 449
 Integrated   476 (sum) +   470 (prf) /  558 reflections on image 450
 Integrated   452 (sum) +   450 (prf) /  519 reflections on image 451
 Integrated   458 (sum) +   452 (prf) /  523 reflections on image 452
 Integrated    50 (sum) +    48 (prf) /   58 reflections on image 453
 Integrated    15 (sum) +    15 (prf) /   15 reflections on image 454
 Beginning integration job 90

 Frames: 450 -> 460

 Number of reflections
  Partial:     20
  Full:        2515
  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.

 450 [7   ]: 
 451 [23  ]: *
 452 [435 ]: *****************************
 453 [936 ]: **************************************************************
 454 [997 ]: ******************************************************************
 455 [1002]: *******************************************************************
 456 [975 ]: *****************************************************************
 457 [591 ]: ***************************************
 458 [51  ]: ***
 459 [10  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00800802 GB

 Integrated   383 (sum) +   379 (prf) /  440 reflections on image 453
 Integrated   431 (sum) +   425 (prf) /  498 reflections on image 454
 Integrated   446 (sum) +   438 (prf) /  517 reflections on image 455
 Integrated   427 (sum) +   424 (prf) /  489 reflections on image 456
 Integrated   468 (sum) +   466 (prf) /  540 reflections on image 457
 Integrated    35 (sum) +    35 (prf) /   41 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:     22
  Full:        2512
  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.

 455 [1   ]: 
 456 [19  ]: *
 457 [432 ]: ***************************
 458 [902 ]: *********************************************************
 459 [937 ]: ***********************************************************
 460 [1006]: ***************************************************************
 461 [1060]: *******************************************************************
 462 [628 ]: ***************************************
 463 [84  ]: *****
 464 [14  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00853193 GB

 Integrated   386 (sum) +   385 (prf) /  452 reflections on image 458
 Integrated   412 (sum) +   407 (prf) /  472 reflections on image 459
 Integrated   416 (sum) +   411 (prf) /  476 reflections on image 460
 Integrated   424 (sum) +   419 (prf) /  506 reflections on image 461
 Integrated   470 (sum) +   468 (prf) /  544 reflections on image 462
 Integrated    56 (sum) +    56 (prf) /   70 reflections on image 463
 Integrated    12 (sum) +    12 (prf) /   14 reflections on image 464
 Beginning integration job 92

 Frames: 460 -> 470

 Number of reflections
  Partial:     15
  Full:        2569
  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.

 460 [7   ]: 
 461 [21  ]: *
 462 [483 ]: ******************************
 463 [1003]: ***************************************************************
 464 [1053]: *******************************************************************
 465 [1030]: *****************************************************************
 466 [972 ]: *************************************************************
 467 [556 ]: ***********************************
 468 [57  ]: ***
 469 [15  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00864851 GB

 Integrated   421 (sum) +   417 (prf) /  476 reflections on image 463
 Integrated   451 (sum) +   444 (prf) /  520 reflections on image 464
 Integrated   461 (sum) +   453 (prf) /  531 reflections on image 465
 Integrated   440 (sum) +   439 (prf) /  501 reflections on image 466
 Integrated   425 (sum) +   422 (prf) /  499 reflections on image 467
 Integrated    39 (sum) +    39 (prf) /   42 reflections on image 468
 Integrated    12 (sum) +    12 (prf) /   15 reflections on image 469
 Beginning integration job 93

 Frames: 465 -> 475

 Number of reflections
  Partial:     23
  Full:        2527
  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.

 465 [2   ]: 
 466 [20  ]: *
 467 [434 ]: ****************************
 468 [966 ]: ***************************************************************
 469 [976 ]: ****************************************************************
 470 [909 ]: ************************************************************
 471 [1014]: *******************************************************************
 472 [667 ]: ********************************************
 473 [88  ]: *****
 474 [17  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00827861 GB

 Integrated   384 (sum) +   384 (prf) /  444 reflections on image 468
 Integrated   462 (sum) +   455 (prf) /  538 reflections on image 469
 Integrated   398 (sum) +   396 (prf) /  454 reflections on image 470
 Integrated   377 (sum) +   377 (prf) /  447 reflections on image 471
 Integrated   498 (sum) +   495 (prf) /  579 reflections on image 472
 Integrated    58 (sum) +    57 (prf) /   71 reflections on image 473
 Integrated    15 (sum) +    15 (prf) /   17 reflections on image 474
 Beginning integration job 94

 Frames: 470 -> 480

 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.

 470 [2   ]: 
 471 [18  ]: *
 472 [474 ]: ******************************
 473 [973 ]: **************************************************************
 474 [1025]: ******************************************************************
 475 [1040]: *******************************************************************
 476 [962 ]: *************************************************************
 477 [588 ]: *************************************
 478 [67  ]: ****
 479 [15  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.008436 GB

 Integrated   408 (sum) +   405 (prf) /  468 reflections on image 473
 Integrated   435 (sum) +   432 (prf) /  490 reflections on image 474
 Integrated   466 (sum) +   461 (prf) /  547 reflections on image 475
 Integrated   402 (sum) +   399 (prf) /  476 reflections on image 476
 Integrated   444 (sum) +   438 (prf) /  521 reflections on image 477
 Integrated    47 (sum) +    47 (prf) /   52 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:     25
  Full:        2542
  In ice ring: 0
  Integrate:   2567
  Total:       2567

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 475 [7   ]: 
 476 [19  ]: *
 477 [451 ]: ****************************
 478 [933 ]: **********************************************************
 479 [953 ]: ***********************************************************
 480 [991 ]: **************************************************************
 481 [1069]: *******************************************************************
 482 [618 ]: **************************************
 483 [78  ]: ****
 484 [16  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.0085419 GB

 Integrated   421 (sum) +   417 (prf) /  474 reflections on image 478
 Integrated   423 (sum) +   414 (prf) /  479 reflections on image 479
 Integrated   399 (sum) +   397 (prf) /  458 reflections on image 480
 Integrated   459 (sum) +   456 (prf) /  538 reflections on image 481
 Integrated   465 (sum) +   464 (prf) /  540 reflections on image 482
 Integrated    57 (sum) +    57 (prf) /   62 reflections on image 483
 Integrated    14 (sum) +    14 (prf) /   16 reflections on image 484
 Beginning integration job 96

 Frames: 480 -> 490

 Number of reflections
  Partial:     18
  Full:        2509
  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.

 480 [5   ]: 
 481 [25  ]: *
 482 [455 ]: *****************************
 483 [954 ]: **************************************************************
 484 [987 ]: ****************************************************************
 485 [1020]: *******************************************************************
 486 [960 ]: ***************************************************************
 487 [550 ]: ************************************
 488 [67  ]: ****
 489 [15  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00793733 GB

 Integrated   391 (sum) +   388 (prf) /  461 reflections on image 483
 Integrated   443 (sum) +   436 (prf) /  512 reflections on image 484
 Integrated   430 (sum) +   427 (prf) /  496 reflections on image 485
 Integrated   445 (sum) +   443 (prf) /  508 reflections on image 486
 Integrated   416 (sum) +   413 (prf) /  483 reflections on image 487
 Integrated    45 (sum) +    45 (prf) /   52 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:     24
  Full:        2558
  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.

 485 [2   ]: 
 486 [13  ]: 
 487 [425 ]: ***************************
 488 [960 ]: *************************************************************
 489 [1044]: *******************************************************************
 490 [1037]: ******************************************************************
 491 [1006]: ****************************************************************
 492 [575 ]: ************************************
 493 [70  ]: ****
 494 [14  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00837716 GB

 Integrated   367 (sum) +   365 (prf) /  430 reflections on image 488
 Integrated   464 (sum) +   460 (prf) /  540 reflections on image 489
 Integrated   445 (sum) +   440 (prf) /  514 reflections on image 490
 Integrated   454 (sum) +   449 (prf) /  523 reflections on image 491
 Integrated   438 (sum) +   433 (prf) /  505 reflections on image 492
 Integrated    47 (sum) +    47 (prf) /   56 reflections on image 493
 Integrated    11 (sum) +    11 (prf) /   14 reflections on image 494
 Beginning integration job 98

 Frames: 490 -> 500

 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.

 490 [5   ]: 
 491 [22  ]: *
 492 [450 ]: *****************************
 493 [959 ]: **************************************************************
 494 [988 ]: ****************************************************************
 495 [996 ]: ****************************************************************
 496 [1031]: *******************************************************************
 497 [606 ]: ***************************************
 498 [76  ]: ****
 499 [18  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.0083175 GB

 Integrated   399 (sum) +   395 (prf) /  456 reflections on image 493
 Integrated   437 (sum) +   428 (prf) /  509 reflections on image 494
 Integrated   418 (sum) +   413 (prf) /  485 reflections on image 495
 Integrated   448 (sum) +   444 (prf) /  508 reflections on image 496
 Integrated   471 (sum) +   467 (prf) /  530 reflections on image 497
 Integrated    46 (sum) +    46 (prf) /   58 reflections on image 498
 Integrated    16 (sum) +    16 (prf) /   18 reflections on image 499
 Beginning integration job 99

 Frames: 495 -> 505

 Number of reflections
  Partial:     26
  Full:        2526
  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.

 495 [4   ]: 
 496 [17  ]: *
 497 [438 ]: ****************************
 498 [957 ]: ***************************************************************
 499 [1015]: *******************************************************************
 500 [998 ]: *****************************************************************
 501 [985 ]: *****************************************************************
 502 [571 ]: *************************************
 503 [59  ]: ***
 504 [18  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00808627 GB

 Integrated   375 (sum) +   372 (prf) /  446 reflections on image 498
 Integrated   448 (sum) +   439 (prf) /  527 reflections on image 499
 Integrated   440 (sum) +   434 (prf) /  508 reflections on image 500
 Integrated   442 (sum) +   436 (prf) /  500 reflections on image 501
 Integrated   439 (sum) +   435 (prf) /  512 reflections on image 502
 Integrated    37 (sum) +    36 (prf) /   41 reflections on image 503
 Integrated    16 (sum) +    16 (prf) /   18 reflections on image 504
 Beginning integration job 100

 Frames: 500 -> 510

 Number of reflections
  Partial:     27
  Full:        2543
  In ice ring: 0
  Integrate:   2570
  Total:       2570

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 500 [3   ]: 
 501 [13  ]: 
 502 [420 ]: ***************************
 503 [943 ]: *************************************************************
 504 [1028]: ******************************************************************
 505 [1030]: *******************************************************************
 506 [1004]: *****************************************************************
 507 [583 ]: *************************************
 508 [70  ]: ****
 509 [20  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.0085847 GB

 Integrated   389 (sum) +   389 (prf) /  447 reflections on image 503
 Integrated   457 (sum) +   451 (prf) /  514 reflections on image 504
 Integrated   443 (sum) +   438 (prf) /  504 reflections on image 505
 Integrated   453 (sum) +   448 (prf) /  522 reflections on image 506
 Integrated   439 (sum) +   435 (prf) /  513 reflections on image 507
 Integrated    39 (sum) +    39 (prf) /   50 reflections on image 508
 Integrated    20 (sum) +    20 (prf) /   20 reflections on image 509
 Beginning integration job 101

 Frames: 505 -> 515

 Number of reflections
  Partial:     18
  Full:        2525
  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.

 505 [4   ]: 
 506 [16  ]: *
 507 [462 ]: *****************************
 508 [944 ]: ************************************************************
 509 [995 ]: ****************************************************************
 510 [1040]: *******************************************************************
 511 [1008]: ****************************************************************
 512 [557 ]: ***********************************
 513 [71  ]: ****
 514 [12  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00842264 GB

 Integrated   400 (sum) +   396 (prf) /  461 reflections on image 508
 Integrated   410 (sum) +   404 (prf) /  483 reflections on image 509
 Integrated   451 (sum) +   443 (prf) /  512 reflections on image 510
 Integrated   468 (sum) +   464 (prf) /  530 reflections on image 511
 Integrated   429 (sum) +   427 (prf) /  486 reflections on image 512
 Integrated    48 (sum) +    47 (prf) /   59 reflections on image 513
 Integrated    11 (sum) +    11 (prf) /   12 reflections on image 514
 Beginning integration job 102

 Frames: 510 -> 520

 Number of reflections
  Partial:     19
  Full:        2547
  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.

 510 [4   ]: 
 511 [27  ]: *
 512 [447 ]: ****************************
 513 [978 ]: **************************************************************
 514 [1042]: *******************************************************************
 515 [1018]: *****************************************************************
 516 [998 ]: ****************************************************************
 517 [585 ]: *************************************
 518 [61  ]: ***
 519 [14  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.0083889 GB

 Integrated   392 (sum) +   391 (prf) /  454 reflections on image 513
 Integrated   456 (sum) +   451 (prf) /  526 reflections on image 514
 Integrated   445 (sum) +   440 (prf) /  499 reflections on image 515
 Integrated   423 (sum) +   418 (prf) /  502 reflections on image 516
 Integrated   447 (sum) +   444 (prf) /  524 reflections on image 517
 Integrated    40 (sum) +    39 (prf) /   47 reflections on image 518
 Integrated    12 (sum) +    12 (prf) /   14 reflections on image 519
 Beginning integration job 103

 Frames: 515 -> 525

 Number of reflections
  Partial:     21
  Full:        2542
  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.

 515 [3   ]: 
 516 [22  ]: *
 517 [465 ]: ******************************
 518 [963 ]: ***************************************************************
 519 [1011]: *******************************************************************
 520 [1010]: ******************************************************************
 521 [968 ]: ****************************************************************
 522 [570 ]: *************************************
 523 [77  ]: *****
 524 [16  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00795601 GB

 Integrated   408 (sum) +   405 (prf) /  464 reflections on image 518
 Integrated   435 (sum) +   427 (prf) /  504 reflections on image 519
 Integrated   457 (sum) +   449 (prf) /  537 reflections on image 520
 Integrated   409 (sum) +   403 (prf) /  488 reflections on image 521
 Integrated   426 (sum) +   422 (prf) /  493 reflections on image 522
 Integrated    48 (sum) +    48 (prf) /   61 reflections on image 523
 Integrated    13 (sum) +    13 (prf) /   16 reflections on image 524
 Beginning integration job 104

 Frames: 520 -> 530

 Number of reflections
  Partial:     21
  Full:        2541
  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.

 520 [3   ]: 
 521 [18  ]: *
 522 [440 ]: ****************************
 523 [961 ]: **************************************************************
 524 [1035]: *******************************************************************
 525 [1011]: *****************************************************************
 526 [996 ]: ****************************************************************
 527 [578 ]: *************************************
 528 [75  ]: ****
 529 [12  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00818387 GB

 Integrated   393 (sum) +   391 (prf) /  448 reflections on image 523
 Integrated   467 (sum) +   463 (prf) /  525 reflections on image 524
 Integrated   450 (sum) +   441 (prf) /  516 reflections on image 525
 Integrated   433 (sum) +   432 (prf) /  495 reflections on image 526
 Integrated   432 (sum) +   426 (prf) /  503 reflections on image 527
 Integrated    49 (sum) +    49 (prf) /   63 reflections on image 528
 Integrated    12 (sum) +    12 (prf) /   12 reflections on image 529
 Beginning integration job 105

 Frames: 525 -> 535

 Number of reflections
  Partial:     26
  Full:        2531
  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.

 525 [4   ]: 
 526 [18  ]: *
 527 [461 ]: *****************************
 528 [965 ]: *************************************************************
 529 [987 ]: **************************************************************
 530 [1050]: *******************************************************************
 531 [1031]: *****************************************************************
 532 [571 ]: ************************************
 533 [74  ]: ****
 534 [19  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00848507 GB

 Integrated   401 (sum) +   399 (prf) /  462 reflections on image 528
 Integrated   432 (sum) +   429 (prf) /  496 reflections on image 529
 Integrated   424 (sum) +   412 (prf) /  488 reflections on image 530
 Integrated   477 (sum) +   476 (prf) /  540 reflections on image 531
 Integrated   434 (sum) +   433 (prf) /  497 reflections on image 532
 Integrated    48 (sum) +    48 (prf) /   55 reflections on image 533
 Integrated    14 (sum) +    14 (prf) /   19 reflections on image 534
 Beginning integration job 106

 Frames: 530 -> 540

 Number of reflections
  Partial:     24
  Full:        2557
  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.

 530 [2   ]: 
 531 [25  ]: *
 532 [455 ]: ******************************
 533 [945 ]: **************************************************************
 534 [1010]: ******************************************************************
 535 [1014]: *******************************************************************
 536 [986 ]: *****************************************************************
 537 [601 ]: ***************************************
 538 [76  ]: *****
 539 [15  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00811242 GB

 Integrated   409 (sum) +   403 (prf) /  472 reflections on image 533
 Integrated   414 (sum) +   408 (prf) /  491 reflections on image 534
 Integrated   462 (sum) +   457 (prf) /  535 reflections on image 535
 Integrated   421 (sum) +   415 (prf) /  482 reflections on image 536
 Integrated   445 (sum) +   444 (prf) /  525 reflections on image 537
 Integrated    52 (sum) +    51 (prf) /   61 reflections on image 538
 Integrated    10 (sum) +    10 (prf) /   15 reflections on image 539
 Beginning integration job 107

 Frames: 535 -> 545

 Number of reflections
  Partial:     30
  Full:        2527
  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 [2   ]: 
 536 [25  ]: *
 537 [418 ]: ***************************
 538 [952 ]: *************************************************************
 539 [1030]: *******************************************************************
 540 [1011]: *****************************************************************
 541 [1002]: *****************************************************************
 542 [595 ]: **************************************
 543 [83  ]: *****
 544 [16  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00825337 GB

 Integrated   373 (sum) +   368 (prf) /  431 reflections on image 538
 Integrated   447 (sum) +   441 (prf) /  532 reflections on image 539
 Integrated   440 (sum) +   434 (prf) /  506 reflections on image 540
 Integrated   426 (sum) +   423 (prf) /  493 reflections on image 541
 Integrated   436 (sum) +   433 (prf) /  512 reflections on image 542
 Integrated    59 (sum) +    59 (prf) /   67 reflections on image 543
 Integrated    12 (sum) +    12 (prf) /   16 reflections on image 544
 Beginning integration job 108

 Frames: 540 -> 550

 Number of reflections
  Partial:     21
  Full:        2530
  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.

 540 [4   ]: 
 541 [14  ]: 
 542 [444 ]: *****************************
 543 [958 ]: ***************************************************************
 544 [1001]: ******************************************************************
 545 [1014]: *******************************************************************
 546 [997 ]: *****************************************************************
 547 [579 ]: **************************************
 548 [73  ]: ****
 549 [9   ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.0079767 GB

 Integrated   381 (sum) +   377 (prf) /  448 reflections on image 543
 Integrated   436 (sum) +   432 (prf) /  507 reflections on image 544
 Integrated   439 (sum) +   436 (prf) /  511 reflections on image 545
 Integrated   440 (sum) +   438 (prf) /  506 reflections on image 546
 Integrated   432 (sum) +   429 (prf) /  506 reflections on image 547
 Integrated    57 (sum) +    57 (prf) /   64 reflections on image 548
 Integrated     7 (sum) +     7 (prf) /    9 reflections on image 549
 Beginning integration job 109

 Frames: 545 -> 555

 Number of reflections
  Partial:     19
  Full:        2534
  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.

 545 [6   ]: 
 546 [13  ]: 
 547 [447 ]: *****************************
 548 [956 ]: **************************************************************
 549 [1025]: *******************************************************************
 550 [1015]: ******************************************************************
 551 [1018]: ******************************************************************
 552 [593 ]: **************************************
 553 [93  ]: ******
 554 [20  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00833065 GB

 Integrated   383 (sum) +   379 (prf) /  439 reflections on image 548
 Integrated   448 (sum) +   440 (prf) /  511 reflections on image 549
 Integrated   443 (sum) +   442 (prf) /  514 reflections on image 550
 Integrated   425 (sum) +   423 (prf) /  496 reflections on image 551
 Integrated   425 (sum) +   420 (prf) /  500 reflections on image 552
 Integrated    61 (sum) +    59 (prf) /   73 reflections on image 553
 Integrated    17 (sum) +    17 (prf) /   20 reflections on image 554
 Beginning integration job 110

 Frames: 550 -> 560

 Number of reflections
  Partial:     21
  Full:        2552
  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.

 550 [7   ]: 
 551 [20  ]: *
 552 [437 ]: ****************************
 553 [946 ]: **************************************************************
 554 [1020]: *******************************************************************
 555 [1010]: ******************************************************************
 556 [1017]: ******************************************************************
 557 [582 ]: **************************************
 558 [69  ]: ****
 559 [11  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00817427 GB

 Integrated   384 (sum) +   382 (prf) /  442 reflections on image 553
 Integrated   471 (sum) +   468 (prf) /  533 reflections on image 554
 Integrated   422 (sum) +   414 (prf) /  497 reflections on image 555
 Integrated   450 (sum) +   448 (prf) /  519 reflections on image 556
 Integrated   440 (sum) +   434 (prf) /  513 reflections on image 557
 Integrated    49 (sum) +    49 (prf) /   58 reflections on image 558
 Integrated     9 (sum) +     9 (prf) /   11 reflections on image 559
 Beginning integration job 111

 Frames: 555 -> 565

 Number of reflections
  Partial:     22
  Full:        2528
  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.

 555 [4   ]: 
 556 [22  ]: *
 557 [442 ]: *****************************
 558 [949 ]: **************************************************************
 559 [1020]: *******************************************************************
 560 [1011]: ******************************************************************
 561 [1013]: ******************************************************************
 562 [597 ]: ***************************************
 563 [68  ]: ****
 564 [17  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00815154 GB

 Integrated   364 (sum) +   361 (prf) /  437 reflections on image 558
 Integrated   439 (sum) +   437 (prf) /  504 reflections on image 559
 Integrated   446 (sum) +   442 (prf) /  507 reflections on image 560
 Integrated   445 (sum) +   442 (prf) /  505 reflections on image 561
 Integrated   453 (sum) +   448 (prf) /  529 reflections on image 562
 Integrated    43 (sum) +    42 (prf) /   51 reflections on image 563
 Integrated    13 (sum) +    13 (prf) /   17 reflections on image 564
 Beginning integration job 112

 Frames: 560 -> 570

 Number of reflections
  Partial:     19
  Full:        2514
  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.

 560 [4   ]: 
 561 [17  ]: *
 562 [441 ]: *****************************
 563 [946 ]: **************************************************************
 564 [996 ]: *****************************************************************
 565 [1018]: *******************************************************************
 566 [989 ]: *****************************************************************
 567 [557 ]: ************************************
 568 [65  ]: ****
 569 [9   ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00818626 GB

 Integrated   395 (sum) +   389 (prf) /  456 reflections on image 563
 Integrated   425 (sum) +   420 (prf) /  495 reflections on image 564
 Integrated   447 (sum) +   441 (prf) /  510 reflections on image 565
 Integrated   453 (sum) +   451 (prf) /  515 reflections on image 566
 Integrated   413 (sum) +   409 (prf) /  492 reflections on image 567
 Integrated    50 (sum) +    50 (prf) /   56 reflections on image 568
 Integrated     9 (sum) +     9 (prf) /    9 reflections on image 569
 Beginning integration job 113

 Frames: 565 -> 575

 Number of reflections
  Partial:     17
  Full:        2561
  In ice ring: 0
  Integrate:   2578
  Total:       2578

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 566 [12  ]: 
 567 [436 ]: ****************************
 568 [974 ]: ***************************************************************
 569 [1021]: *******************************************************************
 570 [1016]: ******************************************************************
 571 [1004]: *****************************************************************
 572 [585 ]: **************************************
 573 [66  ]: ****
 574 [11  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00828737 GB

 Integrated   398 (sum) +   396 (prf) /  459 reflections on image 568
 Integrated   431 (sum) +   421 (prf) /  511 reflections on image 569
 Integrated   452 (sum) +   445 (prf) /  521 reflections on image 570
 Integrated   431 (sum) +   425 (prf) /  502 reflections on image 571
 Integrated   446 (sum) +   442 (prf) /  519 reflections on image 572
 Integrated    46 (sum) +    46 (prf) /   55 reflections on image 573
 Integrated    10 (sum) +    10 (prf) /   11 reflections on image 574
 Beginning integration job 114

 Frames: 570 -> 580

 Number of reflections
  Partial:     22
  Full:        2525
  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.

 570 [6   ]: 
 571 [15  ]: 
 572 [433 ]: ****************************
 573 [936 ]: **************************************************************
 574 [1008]: *******************************************************************
 575 [1006]: ******************************************************************
 576 [983 ]: *****************************************************************
 577 [594 ]: ***************************************
 578 [84  ]: *****
 579 [18  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00810319 GB

 Integrated   385 (sum) +   381 (prf) /  454 reflections on image 573
 Integrated   401 (sum) +   390 (prf) /  482 reflections on image 574
 Integrated   483 (sum) +   476 (prf) /  541 reflections on image 575
 Integrated   417 (sum) +   412 (prf) /  476 reflections on image 576
 Integrated   434 (sum) +   433 (prf) /  510 reflections on image 577
 Integrated    56 (sum) +    56 (prf) /   66 reflections on image 578
 Integrated    17 (sum) +    17 (prf) /   18 reflections on image 579
 Beginning integration job 115

 Frames: 575 -> 585

 Number of reflections
  Partial:     16
  Full:        2548
  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.

 575 [4   ]: 
 576 [17  ]: *
 577 [430 ]: ****************************
 578 [957 ]: ***************************************************************
 579 [985 ]: *****************************************************************
 580 [1014]: *******************************************************************
 581 [998 ]: *****************************************************************
 582 [603 ]: ***************************************
 583 [72  ]: ****
 584 [10  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00796164 GB

 Integrated   381 (sum) +   379 (prf) /  444 reflections on image 578
 Integrated   447 (sum) +   443 (prf) /  511 reflections on image 579
 Integrated   449 (sum) +   440 (prf) /  512 reflections on image 580
 Integrated   423 (sum) +   417 (prf) /  494 reflections on image 581
 Integrated   458 (sum) +   451 (prf) /  531 reflections on image 582
 Integrated    50 (sum) +    50 (prf) /   62 reflections on image 583
 Integrated     9 (sum) +     9 (prf) /   10 reflections on image 584
 Beginning integration job 116

 Frames: 580 -> 590

 Number of reflections
  Partial:     15
  Full:        2529
  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.

 580 [3   ]: 
 581 [23  ]: *
 582 [424 ]: ***************************
 583 [941 ]: *************************************************************
 584 [998 ]: *****************************************************************
 585 [1009]: ******************************************************************
 586 [1022]: *******************************************************************
 587 [584 ]: **************************************
 588 [71  ]: ****
 589 [14  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00815296 GB

 Integrated   368 (sum) +   367 (prf) /  438 reflections on image 583
 Integrated   451 (sum) +   444 (prf) /  513 reflections on image 584
 Integrated   423 (sum) +   420 (prf) /  488 reflections on image 585
 Integrated   456 (sum) +   452 (prf) /  521 reflections on image 586
 Integrated   441 (sum) +   438 (prf) /  513 reflections on image 587
 Integrated    53 (sum) +    53 (prf) /   57 reflections on image 588
 Integrated     9 (sum) +     9 (prf) /   14 reflections on image 589
 Beginning integration job 117

 Frames: 585 -> 595

 Number of reflections
  Partial:     19
  Full:        2538
  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.

 585 [2   ]: 
 586 [17  ]: *
 587 [437 ]: ****************************
 588 [937 ]: ************************************************************
 589 [1030]: *******************************************************************
 590 [1030]: *******************************************************************
 591 [989 ]: ****************************************************************
 592 [588 ]: **************************************
 593 [59  ]: ***
 594 [14  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00826043 GB

 Integrated   386 (sum) +   383 (prf) /  444 reflections on image 588
 Integrated   434 (sum) +   426 (prf) /  498 reflections on image 589
 Integrated   479 (sum) +   474 (prf) /  536 reflections on image 590
 Integrated   414 (sum) +   412 (prf) /  491 reflections on image 591
 Integrated   455 (sum) +   451 (prf) /  529 reflections on image 592
 Integrated    40 (sum) +    40 (prf) /   45 reflections on image 593
 Integrated    12 (sum) +    12 (prf) /   14 reflections on image 594
 Beginning integration job 118

 Frames: 590 -> 600

 Number of reflections
  Partial:     33
  Full:        2526
  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.

 590 [6   ]: 
 591 [14  ]: 
 592 [432 ]: ****************************
 593 [949 ]: **************************************************************
 594 [1001]: ******************************************************************
 595 [1012]: *******************************************************************
 596 [1009]: ******************************************************************
 597 [586 ]: **************************************
 598 [62  ]: ****
 599 [19  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00815956 GB

 Integrated   397 (sum) +   392 (prf) /  461 reflections on image 593
 Integrated   429 (sum) +   423 (prf) /  499 reflections on image 594
 Integrated   432 (sum) +   427 (prf) /  506 reflections on image 595
 Integrated   442 (sum) +   438 (prf) /  507 reflections on image 596
 Integrated   452 (sum) +   451 (prf) /  524 reflections on image 597
 Integrated    38 (sum) +    38 (prf) /   43 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:     22
  Full:        2552
  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.

 595 [5   ]: 
 596 [22  ]: *
 597 [442 ]: ****************************
 598 [966 ]: ***************************************************************
 599 [1002]: *****************************************************************
 600 [1023]: *******************************************************************
 601 [1002]: *****************************************************************
 602 [592 ]: **************************************
 603 [74  ]: ****
 604 [20  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00817938 GB

 Integrated   380 (sum) +   374 (prf) /  440 reflections on image 598
 Integrated   451 (sum) +   446 (prf) /  516 reflections on image 599
 Integrated   456 (sum) +   450 (prf) /  522 reflections on image 600
 Integrated   445 (sum) +   444 (prf) /  504 reflections on image 601
 Integrated   456 (sum) +   456 (prf) /  518 reflections on image 602
 Integrated    46 (sum) +    45 (prf) /   54 reflections on image 603
 Integrated    14 (sum) +    14 (prf) /   20 reflections on image 604
 Beginning integration job 120

 Frames: 600 -> 610

 Number of reflections
  Partial:     19
  Full:        2522
  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.

 600 [3   ]: 
 601 [19  ]: *
 602 [416 ]: ***************************
 603 [936 ]: ************************************************************
 604 [1031]: *******************************************************************
 605 [1019]: ******************************************************************
 606 [994 ]: ****************************************************************
 607 [569 ]: ************************************
 608 [80  ]: *****
 609 [16  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00825046 GB

 Integrated   371 (sum) +   369 (prf) /  434 reflections on image 603
 Integrated   441 (sum) +   439 (prf) /  525 reflections on image 604
 Integrated   439 (sum) +   430 (prf) /  512 reflections on image 605
 Integrated   434 (sum) +   427 (prf) /  501 reflections on image 606
 Integrated   418 (sum) +   415 (prf) /  489 reflections on image 607
 Integrated    53 (sum) +    53 (prf) /   64 reflections on image 608
 Integrated    12 (sum) +    12 (prf) /   16 reflections on image 609
 Beginning integration job 121

 Frames: 605 -> 615

 Number of reflections
  Partial:     20
  Full:        2547
  In ice ring: 0
  Integrate:   2567
  Total:       2567

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 606 [18  ]: *
 607 [439 ]: *****************************
 608 [980 ]: *****************************************************************
 609 [988 ]: *****************************************************************
 610 [1008]: *******************************************************************
 611 [998 ]: ******************************************************************
 612 [581 ]: **************************************
 613 [70  ]: ****
 614 [18  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00810703 GB

 Integrated   410 (sum) +   407 (prf) /  475 reflections on image 608
 Integrated   433 (sum) +   425 (prf) /  497 reflections on image 609
 Integrated   446 (sum) +   442 (prf) /  514 reflections on image 610
 Integrated   433 (sum) +   427 (prf) /  500 reflections on image 611
 Integrated   441 (sum) +   440 (prf) /  511 reflections on image 612
 Integrated    45 (sum) +    45 (prf) /   52 reflections on image 613
 Integrated    16 (sum) +    16 (prf) /   18 reflections on image 614
 Beginning integration job 122

 Frames: 610 -> 620

 Number of reflections
  Partial:     21
  Full:        2527
  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.

 610 [1   ]: 
 611 [13  ]: 
 612 [441 ]: ****************************
 613 [921 ]: ************************************************************
 614 [987 ]: ****************************************************************
 615 [1028]: *******************************************************************
 616 [1026]: ******************************************************************
 617 [594 ]: **************************************
 618 [74  ]: ****
 619 [11  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00838705 GB

 Integrated   398 (sum) +   398 (prf) /  455 reflections on image 613
 Integrated   431 (sum) +   424 (prf) /  485 reflections on image 614
 Integrated   430 (sum) +   426 (prf) /  497 reflections on image 615
 Integrated   442 (sum) +   438 (prf) /  517 reflections on image 616
 Integrated   438 (sum) +   434 (prf) /  520 reflections on image 617
 Integrated    52 (sum) +    51 (prf) /   63 reflections on image 618
 Integrated    10 (sum) +     9 (prf) /   11 reflections on image 619
 Beginning integration job 123

 Frames: 615 -> 625

 Number of reflections
  Partial:     19
  Full:        2521
  In ice ring: 0
  Integrate:   2540
  Total:       2540

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 615 [3   ]: 
 616 [24  ]: *
 617 [429 ]: ****************************
 618 [975 ]: ***************************************************************
 619 [1026]: *******************************************************************
 620 [976 ]: ***************************************************************
 621 [982 ]: ****************************************************************
 622 [563 ]: ************************************
 623 [71  ]: ****
 624 [17  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00817909 GB

 Integrated   391 (sum) +   391 (prf) /  448 reflections on image 618
 Integrated   462 (sum) +   453 (prf) /  536 reflections on image 619
 Integrated   421 (sum) +   416 (prf) /  487 reflections on image 620
 Integrated   439 (sum) +   436 (prf) /  506 reflections on image 621
 Integrated   428 (sum) +   426 (prf) /  492 reflections on image 622
 Integrated    44 (sum) +    44 (prf) /   54 reflections on image 623
 Integrated    11 (sum) +    11 (prf) /   17 reflections on image 624
 Beginning integration job 124

 Frames: 620 -> 630

 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.

 620 [9   ]: 
 621 [24  ]: *
 622 [460 ]: *****************************
 623 [951 ]: *************************************************************
 624 [1009]: ****************************************************************
 625 [1034]: ******************************************************************
 626 [1043]: *******************************************************************
 627 [623 ]: ****************************************
 628 [62  ]: ***
 629 [14  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00838609 GB

 Integrated   396 (sum) +   394 (prf) /  454 reflections on image 623
 Integrated   408 (sum) +   406 (prf) /  487 reflections on image 624
 Integrated   444 (sum) +   440 (prf) /  511 reflections on image 625
 Integrated   438 (sum) +   435 (prf) /  512 reflections on image 626
 Integrated   481 (sum) +   475 (prf) /  561 reflections on image 627
 Integrated    38 (sum) +    38 (prf) /   48 reflections on image 628
 Integrated    11 (sum) +    11 (prf) /   14 reflections on image 629
 Beginning integration job 125

 Frames: 625 -> 635

 Number of reflections
  Partial:     10
  Full:        2500
  In ice ring: 0
  Integrate:   2510
  Total:       2510

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 625 [4   ]: 
 626 [25  ]: *
 627 [439 ]: ****************************
 628 [933 ]: ***********************************************************
 629 [1010]: ****************************************************************
 630 [1049]: *******************************************************************
 631 [984 ]: **************************************************************
 632 [530 ]: *********************************
 633 [58  ]: ***
 634 [12  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00852358 GB

 Integrated   388 (sum) +   388 (prf) /  447 reflections on image 628
 Integrated   424 (sum) +   414 (prf) /  478 reflections on image 629
 Integrated   441 (sum) +   439 (prf) /  522 reflections on image 630
 Integrated   461 (sum) +   460 (prf) /  533 reflections on image 631
 Integrated   407 (sum) +   403 (prf) /  472 reflections on image 632
 Integrated    40 (sum) +    40 (prf) /   46 reflections on image 633
 Integrated    10 (sum) +    10 (prf) /   12 reflections on image 634
 Beginning integration job 126

 Frames: 630 -> 640

 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.

 630 [1   ]: 
 631 [16  ]: *
 632 [441 ]: *****************************
 633 [969 ]: ****************************************************************
 634 [992 ]: ******************************************************************
 635 [993 ]: ******************************************************************
 636 [1001]: *******************************************************************
 637 [558 ]: *************************************
 638 [68  ]: ****
 639 [14  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.0081332 GB

 Integrated   413 (sum) +   410 (prf) /  466 reflections on image 633
 Integrated   466 (sum) +   463 (prf) /  539 reflections on image 634
 Integrated   404 (sum) +   394 (prf) /  473 reflections on image 635
 Integrated   451 (sum) +   449 (prf) /  524 reflections on image 636
 Integrated   428 (sum) +   423 (prf) /  490 reflections on image 637
 Integrated    46 (sum) +    45 (prf) /   54 reflections on image 638
 Integrated    13 (sum) +    13 (prf) /   14 reflections on image 639
 Beginning integration job 127

 Frames: 635 -> 645

 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.

 635 [5   ]: 
 636 [18  ]: *
 637 [434 ]: ****************************
 638 [976 ]: ****************************************************************
 639 [1008]: *******************************************************************
 640 [1003]: ******************************************************************
 641 [1007]: ******************************************************************
 642 [578 ]: **************************************
 643 [66  ]: ****
 644 [17  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00817829 GB

 Integrated   374 (sum) +   365 (prf) /  441 reflections on image 638
 Integrated   469 (sum) +   461 (prf) /  538 reflections on image 639
 Integrated   429 (sum) +   425 (prf) /  488 reflections on image 640
 Integrated   448 (sum) +   448 (prf) /  510 reflections on image 641
 Integrated   425 (sum) +   420 (prf) /  512 reflections on image 642
 Integrated    45 (sum) +    44 (prf) /   49 reflections on image 643
 Integrated    13 (sum) +    12 (prf) /   17 reflections on image 644
 Beginning integration job 128

 Frames: 640 -> 650

 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.

 640 [3   ]: 
 641 [18  ]: *
 642 [443 ]: ****************************
 643 [950 ]: *************************************************************
 644 [1034]: *******************************************************************
 645 [1013]: *****************************************************************
 646 [988 ]: ****************************************************************
 647 [575 ]: *************************************
 648 [69  ]: ****
 649 [12  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.0081876 GB

 Integrated   382 (sum) +   379 (prf) /  442 reflections on image 643
 Integrated   461 (sum) +   456 (prf) /  522 reflections on image 644
 Integrated   432 (sum) +   426 (prf) /  512 reflections on image 645
 Integrated   424 (sum) +   420 (prf) /  503 reflections on image 646
 Integrated   448 (sum) +   447 (prf) /  506 reflections on image 647
 Integrated    50 (sum) +    50 (prf) /   57 reflections on image 648
 Integrated     8 (sum) +     8 (prf) /   12 reflections on image 649
 Beginning integration job 129

 Frames: 645 -> 655

 Number of reflections
  Partial:     15
  Full:        2508
  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.

 645 [2   ]: 
 646 [11  ]: 
 647 [421 ]: ***************************
 648 [920 ]: ***********************************************************
 649 [1022]: ******************************************************************
 650 [1037]: *******************************************************************
 651 [978 ]: ***************************************************************
 652 [554 ]: ***********************************
 653 [66  ]: ****
 654 [9   ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00825772 GB

 Integrated   387 (sum) +   385 (prf) /  446 reflections on image 648
 Integrated   427 (sum) +   421 (prf) /  492 reflections on image 649
 Integrated   459 (sum) +   455 (prf) /  529 reflections on image 650
 Integrated   441 (sum) +   434 (prf) /  502 reflections on image 651
 Integrated   423 (sum) +   420 (prf) /  488 reflections on image 652
 Integrated    49 (sum) +    49 (prf) /   57 reflections on image 653
 Integrated     8 (sum) +     8 (prf) /    9 reflections on image 654
 Beginning integration job 130

 Frames: 650 -> 660

 Number of reflections
  Partial:     17
  Full:        2559
  In ice ring: 0
  Integrate:   2576
  Total:       2576

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 650 [5   ]: 
 651 [22  ]: *
 652 [458 ]: ******************************
 653 [976 ]: *****************************************************************
 654 [1000]: *******************************************************************
 655 [997 ]: ******************************************************************
 656 [992 ]: ******************************************************************
 657 [596 ]: ***************************************
 658 [64  ]: ****
 659 [13  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00823339 GB

 Integrated   394 (sum) +   389 (prf) /  465 reflections on image 653
 Integrated   460 (sum) +   454 (prf) /  520 reflections on image 654
 Integrated   425 (sum) +   423 (prf) /  498 reflections on image 655
 Integrated   424 (sum) +   418 (prf) /  497 reflections on image 656
 Integrated   464 (sum) +   460 (prf) /  532 reflections on image 657
 Integrated    43 (sum) +    42 (prf) /   51 reflections on image 658
 Integrated    11 (sum) +    11 (prf) /   13 reflections on image 659
 Beginning integration job 131

 Frames: 655 -> 665

 Number of reflections
  Partial:     18
  Full:        2539
  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.

 655 [7   ]: 
 656 [18  ]: *
 657 [437 ]: ****************************
 658 [953 ]: *************************************************************
 659 [1012]: ****************************************************************
 660 [1044]: *******************************************************************
 661 [1002]: ****************************************************************
 662 [586 ]: *************************************
 663 [69  ]: ****
 664 [16  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00847228 GB

 Integrated   383 (sum) +   380 (prf) /  448 reflections on image 658
 Integrated   411 (sum) +   403 (prf) /  490 reflections on image 659
 Integrated   471 (sum) +   468 (prf) /  523 reflections on image 660
 Integrated   451 (sum) +   449 (prf) /  510 reflections on image 661
 Integrated   451 (sum) +   447 (prf) /  517 reflections on image 662
 Integrated    48 (sum) +    48 (prf) /   53 reflections on image 663
 Integrated    13 (sum) +    13 (prf) /   16 reflections on image 664
 Beginning integration job 132

 Frames: 660 -> 670

 Number of reflections
  Partial:     20
  Full:        2504
  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.

 660 [6   ]: 
 661 [21  ]: *
 662 [429 ]: ***************************
 663 [947 ]: *************************************************************
 664 [1036]: *******************************************************************
 665 [1010]: *****************************************************************
 666 [989 ]: ***************************************************************
 667 [554 ]: ***********************************
 668 [67  ]: ****
 669 [17  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00822695 GB

 Integrated   372 (sum) +   367 (prf) /  430 reflections on image 663
 Integrated   467 (sum) +   463 (prf) /  534 reflections on image 664
 Integrated   432 (sum) +   427 (prf) /  500 reflections on image 665
 Integrated   440 (sum) +   438 (prf) /  506 reflections on image 666
 Integrated   430 (sum) +   421 (prf) /  487 reflections on image 667
 Integrated    40 (sum) +    40 (prf) /   50 reflections on image 668
 Integrated    12 (sum) +    12 (prf) /   17 reflections on image 669
 Beginning integration job 133

 Frames: 665 -> 675

 Number of reflections
  Partial:     24
  Full:        2575
  In ice ring: 0
  Integrate:   2599
  Total:       2599

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 666 [13  ]: 
 667 [473 ]: *******************************
 668 [995 ]: ******************************************************************
 669 [982 ]: *****************************************************************
 670 [965 ]: ****************************************************************
 671 [1005]: *******************************************************************
 672 [624 ]: *****************************************
 673 [80  ]: *****
 674 [19  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.0079705 GB

 Integrated   429 (sum) +   426 (prf) /  501 reflections on image 668
 Integrated   444 (sum) +   438 (prf) /  512 reflections on image 669
 Integrated   421 (sum) +   417 (prf) /  486 reflections on image 670
 Integrated   423 (sum) +   419 (prf) /  476 reflections on image 671
 Integrated   484 (sum) +   480 (prf) /  544 reflections on image 672
 Integrated    51 (sum) +    49 (prf) /   61 reflections on image 673
 Integrated    17 (sum) +    17 (prf) /   19 reflections on image 674
 Beginning integration job 134

 Frames: 670 -> 680

 Number of reflections
  Partial:     16
  Full:        2509
  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.

 670 [1   ]: 
 671 [26  ]: *
 672 [436 ]: ****************************
 673 [922 ]: ***********************************************************
 674 [1003]: ****************************************************************
 675 [1035]: *******************************************************************
 676 [990 ]: ****************************************************************
 677 [532 ]: **********************************
 678 [68  ]: ****
 679 [9   ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00853508 GB

 Integrated   385 (sum) +   382 (prf) /  447 reflections on image 673
 Integrated   425 (sum) +   417 (prf) /  500 reflections on image 674
 Integrated   445 (sum) +   440 (prf) /  510 reflections on image 675
 Integrated   461 (sum) +   459 (prf) /  536 reflections on image 676
 Integrated   403 (sum) +   400 (prf) /  464 reflections on image 677
 Integrated    49 (sum) +    49 (prf) /   59 reflections on image 678
 Integrated     6 (sum) +     6 (prf) /    9 reflections on image 679
 Beginning integration job 135

 Frames: 675 -> 685

 Number of reflections
  Partial:     13
  Full:        2565
  In ice ring: 0
  Integrate:   2578
  Total:       2578

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 675 [2   ]: 
 676 [20  ]: *
 677 [436 ]: ****************************
 678 [953 ]: **************************************************************
 679 [996 ]: *****************************************************************
 680 [1025]: *******************************************************************
 681 [1012]: ******************************************************************
 682 [596 ]: **************************************
 683 [70  ]: ****
 684 [13  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00836449 GB

 Integrated   397 (sum) +   393 (prf) /  460 reflections on image 678
 Integrated   439 (sum) +   436 (prf) /  506 reflections on image 679
 Integrated   426 (sum) +   419 (prf) /  499 reflections on image 680
 Integrated   437 (sum) +   435 (prf) /  517 reflections on image 681
 Integrated   435 (sum) +   433 (prf) /  526 reflections on image 682
 Integrated    52 (sum) +    51 (prf) /   57 reflections on image 683
 Integrated    11 (sum) +    11 (prf) /   13 reflections on image 684
 Beginning integration job 136

 Frames: 680 -> 690

 Number of reflections
  Partial:     8
  Full:        2505
  In ice ring: 0
  Integrate:   2513
  Total:       2513

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 680 [5   ]: 
 681 [25  ]: *
 682 [430 ]: ***************************
 683 [897 ]: **********************************************************
 684 [1035]: *******************************************************************
 685 [1018]: *****************************************************************
 686 [984 ]: ***************************************************************
 687 [576 ]: *************************************
 688 [65  ]: ****
 689 [13  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00807367 GB

 Integrated   361 (sum) +   356 (prf) /  419 reflections on image 683
 Integrated   439 (sum) +   438 (prf) /  510 reflections on image 684
 Integrated   444 (sum) +   441 (prf) /  516 reflections on image 685
 Integrated   424 (sum) +   419 (prf) /  492 reflections on image 686
 Integrated   435 (sum) +   431 (prf) /  511 reflections on image 687
 Integrated    40 (sum) +    40 (prf) /   52 reflections on image 688
 Integrated    11 (sum) +    11 (prf) /   13 reflections on image 689
 Beginning integration job 137

 Frames: 685 -> 695

 Number of reflections
  Partial:     16
  Full:        2538
  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.

 685 [9   ]: 
 686 [32  ]: **
 687 [474 ]: ******************************
 688 [1008]: ****************************************************************
 689 [1042]: *******************************************************************
 690 [967 ]: **************************************************************
 691 [959 ]: *************************************************************
 692 [549 ]: ***********************************
 693 [67  ]: ****
 694 [10  ]: 

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00842914 GB

 Integrated   400 (sum) +   396 (prf) /  469 reflections on image 688
 Integrated   494 (sum) +   485 (prf) /  564 reflections on image 689
 Integrated   439 (sum) +   433 (prf) /  486 reflections on image 690
 Integrated   407 (sum) +   404 (prf) /  486 reflections on image 691
 Integrated   422 (sum) +   417 (prf) /  482 reflections on image 692
 Integrated    51 (sum) +    51 (prf) /   57 reflections on image 693
 Integrated     9 (sum) +     9 (prf) /   10 reflections on image 694
 Beginning integration job 138

 Frames: 690 -> 700

 Number of reflections
  Partial:     20
  Full:        2568
  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.

 690 [2   ]: 
 691 [17  ]: *
 692 [452 ]: ****************************
 693 [965 ]: *************************************************************
 694 [1033]: ******************************************************************
 695 [1045]: *******************************************************************
 696 [1018]: *****************************************************************
 697 [564 ]: ************************************
 698 [77  ]: ****
 699 [17  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00870662 GB

 Integrated   393 (sum) +   391 (prf) /  450 reflections on image 693
 Integrated   447 (sum) +   441 (prf) /  522 reflections on image 694
 Integrated   449 (sum) +   441 (prf) /  522 reflections on image 695
 Integrated   442 (sum) +   439 (prf) /  530 reflections on image 696
 Integrated   421 (sum) +   414 (prf) /  487 reflections on image 697
 Integrated    50 (sum) +    50 (prf) /   60 reflections on image 698
 Integrated    13 (sum) +    12 (prf) /   17 reflections on image 699
 Beginning integration job 139

 Frames: 695 -> 705

 Number of reflections
  Partial:     25
  Full:        2553
  In ice ring: 0
  Integrate:   2578
  Total:       2578

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 695 [3   ]: 
 696 [13  ]: 
 697 [434 ]: ****************************
 698 [937 ]: *************************************************************
 699 [986 ]: ****************************************************************
 700 [1012]: ******************************************************************
 701 [1025]: *******************************************************************
 702 [625 ]: ****************************************
 703 [87  ]: *****
 704 [21  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00858845 GB

 Integrated   395 (sum) +   392 (prf) /  449 reflections on image 698
 Integrated   434 (sum) +   431 (prf) /  512 reflections on image 699
 Integrated   434 (sum) +   429 (prf) /  502 reflections on image 700
 Integrated   437 (sum) +   430 (prf) /  490 reflections on image 701
 Integrated   474 (sum) +   466 (prf) /  538 reflections on image 702
 Integrated    60 (sum) +    60 (prf) /   66 reflections on image 703
 Integrated    18 (sum) +    18 (prf) /   21 reflections on image 704
 Beginning integration job 140

 Frames: 700 -> 710

 Number of reflections
  Partial:     20
  Full:        2517
  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.

 700 [4   ]: 
 701 [21  ]: *
 702 [408 ]: **************************
 703 [915 ]: ***********************************************************
 704 [991 ]: ***************************************************************
 705 [1038]: *******************************************************************
 706 [1004]: ****************************************************************
 707 [606 ]: ***************************************
 708 [84  ]: *****
 709 [17  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00853848 GB

 Integrated   377 (sum) +   373 (prf) /  436 reflections on image 703
 Integrated   426 (sum) +   420 (prf) /  490 reflections on image 704
 Integrated   440 (sum) +   430 (prf) /  512 reflections on image 705
 Integrated   411 (sum) +   403 (prf) /  493 reflections on image 706
 Integrated   465 (sum) +   464 (prf) /  522 reflections on image 707
 Integrated    57 (sum) +    57 (prf) /   67 reflections on image 708
 Integrated    16 (sum) +    16 (prf) /   17 reflections on image 709
 Beginning integration job 141

 Frames: 705 -> 715

 Number of reflections
  Partial:     11
  Full:        2530
  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.

 705 [4   ]: 
 706 [22  ]: *
 707 [449 ]: *****************************
 708 [965 ]: ****************************************************************
 709 [994 ]: ******************************************************************
 710 [1006]: *******************************************************************
 711 [975 ]: ****************************************************************
 712 [570 ]: *************************************
 713 [68  ]: ****
 714 [16  ]: *

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.0082118 GB

 Integrated   391 (sum) +   387 (prf) /  460 reflections on image 708
 Integrated   429 (sum) +   420 (prf) /  493 reflections on image 709
 Integrated   448 (sum) +   444 (prf) /  523 reflections on image 710
 Integrated   426 (sum) +   421 (prf) /  495 reflections on image 711
 Integrated   427 (sum) +   423 (prf) /  502 reflections on image 712
 Integrated    47 (sum) +    47 (prf) /   52 reflections on image 713
 Integrated    14 (sum) +    14 (prf) /   16 reflections on image 714
 Beginning integration job 142

 Frames: 710 -> 720

 Number of reflections
  Partial:     1241
  Full:        3505
  In ice ring: 0
  Integrate:   4746
  Total:       4746

 The following histogram shows the number of reflections predicted
 to have all or part of their intensity on each frame.

 710 [1   ]: 
 711 [21  ]: 
 712 [441 ]: *****************
 713 [944 ]: ************************************
 714 [1024]: ****************************************
 715 [1044]: ****************************************
 716 [1100]: *******************************************
 717 [1064]: *****************************************
 718 [925 ]: ************************************
 719 [1713]: *******************************************************************

 Memory usage:
  Total system memory: 16.5855 GB
  Limit shoebox memory: 12.4391 GB
  Required shoebox memory: 0.00909198 GB

 Integrated   372 (sum) +   368 (prf) /  428 reflections on image 713
 Integrated   446 (sum) +   445 (prf) /  514 reflections on image 714
 Integrated   459 (sum) +   452 (prf) /  514 reflections on image 715
 Integrated   441 (sum) +   438 (prf) /  513 reflections on image 716
 Integrated   504 (sum) +   501 (prf) /  597 reflections on image 717
 Integrated   411 (sum) +   409 (prf) /  467 reflections on image 718
 Integrated  1483 (sum) +   594 (prf) / 1713 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     | 304    | 1175   | 0      | 0     | 1280  | 464   | 0.77 | 3.91   | 9.95   | 0.73   | 0.63
 0  | 1     | 475    | 14     | 0      | 0     | 423   | 417   | 0.74 | 7.26   | 7.34   | 0.70   | 0.42
 0  | 2     | 495    | 3      | 0      | 0     | 433   | 429   | 0.73 | 6.59   | 6.73   | 0.69   | 0.46
 0  | 3     | 504    | 1      | 0      | 0     | 430   | 428   | 0.72 | 7.46   | 7.53   | 0.70   | 0.43
 0  | 4     | 530    | 5      | 0      | 0     | 461   | 458   | 0.78 | 8.65   | 8.71   | 0.70   | 0.43
 0  | 5     | 508    | 6      | 0      | 0     | 447   | 442   | 0.67 | 6.74   | 6.81   | 0.70   | 0.43
 0  | 6     | 534    | 2      | 0      | 0     | 464   | 464   | 0.79 | 9.03   | 9.04   | 0.70   | 0.44
 0  | 7     | 551    | 5      | 0      | 0     | 470   | 465   | 0.74 | 7.81   | 7.97   | 0.70   | 0.43
 0  | 8     | 499    | 10     | 0      | 0     | 433   | 429   | 0.67 | 7.69   | 7.85   | 0.68   | 0.44
 0  | 9     | 474    | 3      | 0      | 0     | 410   | 405   | 0.72 | 8.85   | 8.98   | 0.70   | 0.43
 0  | 10    | 470    | 10     | 0      | 0     | 410   | 406   | 0.74 | 7.52   | 7.67   | 0.70   | 0.44
 0  | 11    | 517    | 3      | 0      | 0     | 447   | 445   | 0.75 | 8.03   | 8.09   | 0.70   | 0.44
 0  | 12    | 508    | 10     | 0      | 0     | 434   | 430   | 0.75 | 7.46   | 7.50   | 0.70   | 0.46
 0  | 13    | 502    | 9      | 0      | 0     | 442   | 439   | 0.77 | 9.05   | 9.10   | 0.70   | 0.44
 0  | 14    | 499    | 4      | 0      | 0     | 433   | 430   | 0.70 | 7.07   | 7.10   | 0.68   | 0.47
 0  | 15    | 518    | 3      | 0      | 0     | 451   | 448   | 0.70 | 6.97   | 7.10   | 0.69   | 0.47
 0  | 16    | 522    | 9      | 0      | 0     | 452   | 447   | 0.66 | 6.68   | 6.82   | 0.69   | 0.45
 0  | 17    | 510    | 10     | 0      | 0     | 448   | 441   | 0.73 | 6.97   | 7.07   | 0.70   | 0.43
 0  | 18    | 486    | 12     | 0      | 0     | 413   | 409   | 0.72 | 6.77   | 6.85   | 0.69   | 0.44
 0  | 19    | 530    | 3      | 0      | 0     | 461   | 460   | 0.72 | 7.73   | 7.78   | 0.69   | 0.43
 0  | 20    | 511    | 3      | 0      | 0     | 440   | 436   | 0.75 | 8.60   | 8.76   | 0.69   | 0.47
 0  | 21    | 511    | 9      | 0      | 0     | 452   | 447   | 0.76 | 7.57   | 7.77   | 0.70   | 0.45
 0  | 22    | 482    | 17     | 0      | 0     | 437   | 430   | 0.64 | 7.18   | 7.25   | 0.69   | 0.47
 0  | 23    | 497    | 3      | 0      | 0     | 419   | 416   | 0.70 | 7.54   | 7.62   | 0.70   | 0.44
 0  | 24    | 510    | 0      | 0      | 0     | 447   | 441   | 0.64 | 6.72   | 6.83   | 0.68   | 0.46
 0  | 25    | 536    | 4      | 0      | 0     | 472   | 470   | 0.69 | 7.94   | 8.01   | 0.69   | 0.43
 0  | 26    | 496    | 3      | 0      | 0     | 438   | 436   | 0.76 | 8.35   | 8.43   | 0.71   | 0.44
 0  | 27    | 498    | 18     | 0      | 0     | 447   | 440   | 0.68 | 7.42   | 7.45   | 0.68   | 0.45
 0  | 28    | 523    | 9      | 0      | 0     | 465   | 459   | 0.76 | 9.18   | 9.37   | 0.69   | 0.45
 0  | 29    | 493    | 6      | 0      | 0     | 435   | 428   | 0.74 | 7.55   | 7.75   | 0.69   | 0.45
 0  | 30    | 521    | 14     | 0      | 0     | 448   | 445   | 0.70 | 7.58   | 7.61   | 0.70   | 0.43
 0  | 31    | 539    | 0      | 0      | 0     | 452   | 450   | 0.76 | 8.11   | 8.14   | 0.70   | 0.44
 0  | 32    | 475    | 15     | 0      | 0     | 428   | 421   | 0.67 | 6.89   | 7.14   | 0.70   | 0.44
 0  | 33    | 516    | 4      | 0      | 0     | 457   | 450   | 0.67 | 6.81   | 6.91   | 0.70   | 0.44
 0  | 34    | 513    | 0      | 0      | 0     | 448   | 444   | 0.65 | 6.27   | 6.34   | 0.69   | 0.46
 0  | 35    | 479    | 0      | 0      | 0     | 414   | 412   | 0.66 | 7.40   | 7.47   | 0.69   | 0.46
 0  | 36    | 503    | 6      | 0      | 0     | 432   | 429   | 0.67 | 6.39   | 6.44   | 0.69   | 0.44
 0  | 37    | 513    | 6      | 0      | 0     | 435   | 430   | 0.66 | 6.76   | 6.87   | 0.70   | 0.45
 0  | 38    | 490    | 0      | 0      | 0     | 413   | 409   | 0.66 | 7.24   | 7.32   | 0.69   | 0.44
 0  | 39    | 531    | 4      | 0      | 0     | 467   | 464   | 0.76 | 7.97   | 8.10   | 0.70   | 0.45
 0  | 40    | 491    | 4      | 0      | 0     | 430   | 429   | 0.76 | 8.57   | 8.65   | 0.71   | 0.44
 0  | 41    | 522    | 6      | 0      | 0     | 448   | 446   | 0.75 | 7.23   | 7.30   | 0.70   | 0.42
 0  | 42    | 491    | 9      | 0      | 0     | 443   | 441   | 0.67 | 7.40   | 7.38   | 0.70   | 0.45
 0  | 43    | 498    | 3      | 0      | 0     | 426   | 425   | 0.69 | 7.47   | 7.50   | 0.70   | 0.43
 0  | 44    | 530    | 29     | 0      | 0     | 456   | 449   | 0.67 | 7.06   | 7.14   | 0.69   | 0.47
 0  | 45    | 475    | 3      | 0      | 0     | 418   | 415   | 0.69 | 8.05   | 8.07   | 0.69   | 0.46
 0  | 46    | 528    | 0      | 0      | 0     | 463   | 458   | 0.72 | 7.34   | 7.47   | 0.69   | 0.46
 0  | 47    | 487    | 3      | 0      | 0     | 428   | 425   | 0.73 | 7.92   | 8.02   | 0.71   | 0.44
 0  | 48    | 520    | 3      | 0      | 0     | 453   | 449   | 0.64 | 7.02   | 7.06   | 0.68   | 0.49
 0  | 49    | 510    | 4      | 0      | 0     | 445   | 443   | 0.72 | 7.91   | 7.99   | 0.71   | 0.44
 0  | 50    | 521    | 7      | 0      | 0     | 446   | 442   | 0.65 | 6.74   | 6.80   | 0.67   | 0.48
 0  | 51    | 493    | 16     | 0      | 0     | 432   | 430   | 0.69 | 7.96   | 8.15   | 0.71   | 0.42
 0  | 52    | 527    | 3      | 0      | 0     | 462   | 456   | 0.69 | 7.65   | 7.71   | 0.69   | 0.47
 0  | 53    | 494    | 0      | 0      | 0     | 420   | 417   | 0.72 | 7.99   | 8.12   | 0.72   | 0.41
 0  | 54    | 528    | 17     | 0      | 0     | 469   | 461   | 0.64 | 6.89   | 6.98   | 0.68   | 0.47
 0  | 55    | 489    | 0      | 0      | 0     | 417   | 415   | 0.72 | 7.10   | 7.20   | 0.70   | 0.44
 0  | 56    | 525    | 0      | 0      | 0     | 451   | 442   | 0.65 | 6.30   | 6.47   | 0.68   | 0.45
 0  | 57    | 490    | 3      | 0      | 0     | 442   | 439   | 0.71 | 7.76   | 7.84   | 0.71   | 0.43
 0  | 58    | 522    | 0      | 0      | 0     | 457   | 455   | 0.63 | 6.85   | 6.86   | 0.69   | 0.47
 0  | 59    | 485    | 0      | 0      | 0     | 406   | 400   | 0.73 | 8.12   | 8.24   | 0.70   | 0.43
 0  | 60    | 534    | 4      | 0      | 0     | 469   | 463   | 0.69 | 6.85   | 6.98   | 0.70   | 0.43
 0  | 61    | 471    | 0      | 0      | 0     | 410   | 405   | 0.65 | 6.63   | 6.71   | 0.70   | 0.43
 0  | 62    | 527    | 6      | 0      | 0     | 463   | 456   | 0.73 | 7.37   | 7.40   | 0.70   | 0.43
 0  | 63    | 501    | 3      | 0      | 0     | 422   | 419   | 0.70 | 7.91   | 7.99   | 0.70   | 0.45
 0  | 64    | 507    | 0      | 0      | 0     | 441   | 435   | 0.68 | 7.08   | 7.17   | 0.69   | 0.46
 0  | 65    | 524    | 0      | 0      | 0     | 452   | 449   | 0.71 | 7.77   | 7.88   | 0.71   | 0.43
 0  | 66    | 488    | 0      | 0      | 0     | 425   | 421   | 0.71 | 7.71   | 7.80   | 0.69   | 0.46
 0  | 67    | 515    | 22     | 0      | 0     | 459   | 458   | 0.70 | 7.82   | 8.07   | 0.70   | 0.41
 0  | 68    | 523    | 5      | 0      | 0     | 447   | 443   | 0.68 | 6.82   | 6.91   | 0.70   | 0.46
 0  | 69    | 471    | 3      | 0      | 0     | 411   | 410   | 0.69 | 7.25   | 7.26   | 0.70   | 0.43
 0  | 70    | 527    | 4      | 0      | 0     | 459   | 451   | 0.72 | 8.48   | 8.64   | 0.70   | 0.43
 0  | 71    | 497    | 15     | 0      | 0     | 445   | 441   | 0.61 | 6.66   | 6.69   | 0.69   | 0.44
 0  | 72    | 530    | 11     | 0      | 0     | 464   | 458   | 0.71 | 7.08   | 7.25   | 0.70   | 0.44
 0  | 73    | 521    | 0      | 0      | 0     | 445   | 442   | 0.67 | 6.67   | 6.77   | 0.69   | 0.45
 0  | 74    | 479    | 0      | 0      | 0     | 423   | 420   | 0.65 | 6.36   | 6.46   | 0.69   | 0.44
 0  | 75    | 551    | 0      | 0      | 0     | 470   | 468   | 0.65 | 7.15   | 7.24   | 0.70   | 0.42
 0  | 76    | 487    | 6      | 0      | 0     | 419   | 418   | 0.70 | 7.37   | 7.47   | 0.71   | 0.43
 0  | 77    | 502    | 12     | 0      | 0     | 436   | 428   | 0.66 | 6.81   | 6.97   | 0.69   | 0.44
 0  | 78    | 510    | 6      | 0      | 0     | 447   | 442   | 0.69 | 7.25   | 7.46   | 0.70   | 0.43
 0  | 79    | 508    | 0      | 0      | 0     | 435   | 431   | 0.69 | 7.65   | 7.77   | 0.70   | 0.43
 0  | 80    | 521    | 4      | 0      | 0     | 443   | 438   | 0.74 | 7.86   | 7.99   | 0.69   | 0.46
 0  | 81    | 483    | 3      | 0      | 0     | 421   | 415   | 0.72 | 7.17   | 7.27   | 0.70   | 0.43
 0  | 82    | 528    | 14     | 0      | 0     | 463   | 458   | 0.72 | 6.85   | 7.01   | 0.70   | 0.42
 0  | 83    | 489    | 13     | 0      | 0     | 435   | 430   | 0.69 | 7.21   | 7.41   | 0.70   | 0.45
 0  | 84    | 491    | 8      | 0      | 0     | 428   | 421   | 0.65 | 6.94   | 7.12   | 0.71   | 0.41
 0  | 85    | 500    | 0      | 0      | 0     | 428   | 425   | 0.66 | 7.18   | 7.25   | 0.71   | 0.46
 0  | 86    | 474    | 11     | 0      | 0     | 393   | 390   | 0.63 | 6.67   | 6.73   | 0.71   | 0.42
 0  | 87    | 549    | 12     | 0      | 0     | 498   | 493   | 0.75 | 8.14   | 8.28   | 0.71   | 0.43
 0  | 88    | 510    | 0      | 0      | 0     | 434   | 427   | 0.70 | 6.98   | 7.13   | 0.71   | 0.42
 0  | 89    | 513    | 4      | 0      | 0     | 437   | 436   | 0.73 | 7.96   | 8.02   | 0.70   | 0.43
 0  | 90    | 529    | 0      | 0      | 0     | 461   | 457   | 0.66 | 6.56   | 6.66   | 0.69   | 0.43
 0  | 91    | 502    | 9      | 0      | 0     | 448   | 442   | 0.71 | 7.62   | 7.79   | 0.71   | 0.41
 0  | 92    | 522    | 9      | 0      | 0     | 466   | 460   | 0.62 | 6.25   | 6.40   | 0.69   | 0.45
 0  | 93    | 489    | 6      | 0      | 0     | 432   | 428   | 0.63 | 5.93   | 6.01   | 0.70   | 0.42
 0  | 94    | 516    | 3      | 0      | 0     | 445   | 439   | 0.68 | 6.76   | 6.88   | 0.70   | 0.44
 0  | 95    | 524    | 8      | 0      | 0     | 447   | 444   | 0.73 | 8.15   | 8.29   | 0.70   | 0.44
 0  | 96    | 473    | 6      | 0      | 0     | 422   | 418   | 0.70 | 7.03   | 7.15   | 0.71   | 0.44
 0  | 97    | 536    | 16     | 0      | 0     | 481   | 481   | 0.73 | 7.27   | 7.29   | 0.70   | 0.44
 0  | 98    | 469    | 3      | 0      | 0     | 395   | 392   | 0.72 | 7.25   | 7.33   | 0.70   | 0.44
 0  | 99    | 453    | 9      | 0      | 0     | 389   | 387   | 0.66 | 7.25   | 7.32   | 0.71   | 0.44
 0  | 100   | 510    | 4      | 0      | 0     | 452   | 449   | 0.66 | 6.93   | 7.05   | 0.70   | 0.43
 0  | 101   | 539    | 9      | 0      | 0     | 472   | 469   | 0.70 | 6.37   | 6.50   | 0.70   | 0.45
 0  | 102   | 532    | 15     | 0      | 0     | 476   | 467   | 0.71 | 8.02   | 8.42   | 0.69   | 0.44
 0  | 103   | 521    | 3      | 0      | 0     | 459   | 452   | 0.68 | 6.95   | 7.08   | 0.70   | 0.43
 0  | 104   | 509    | 8      | 0      | 0     | 448   | 446   | 0.70 | 6.57   | 6.65   | 0.71   | 0.40
 0  | 105   | 507    | 4      | 0      | 0     | 454   | 448   | 0.68 | 7.92   | 8.09   | 0.70   | 0.44
 0  | 106   | 508    | 8      | 0      | 0     | 436   | 430   | 0.64 | 6.57   | 6.71   | 0.69   | 0.44
 0  | 107   | 475    | 13     | 0      | 0     | 410   | 406   | 0.74 | 8.05   | 8.28   | 0.71   | 0.40
 0  | 108   | 539    | 9      | 0      | 0     | 474   | 462   | 0.76 | 7.15   | 7.39   | 0.72   | 0.43
 0  | 109   | 498    | 4      | 0      | 0     | 431   | 428   | 0.74 | 7.92   | 8.03   | 0.71   | 0.40
 0  | 110   | 462    | 7      | 0      | 0     | 400   | 399   | 0.71 | 7.04   | 7.16   | 0.70   | 0.43
 0  | 111   | 499    | 38     | 0      | 0     | 429   | 425   | 0.66 | 6.45   | 6.59   | 0.68   | 0.46
 0  | 112   | 553    | 3      | 0      | 0     | 481   | 476   | 0.72 | 7.52   | 7.81   | 0.71   | 0.41
 0  | 113   | 501    | 4      | 0      | 0     | 442   | 440   | 0.68 | 6.75   | 6.80   | 0.71   | 0.42
 0  | 114   | 522    | 12     | 0      | 0     | 454   | 448   | 0.72 | 7.38   | 7.70   | 0.70   | 0.43
 0  | 115   | 514    | 34     | 0      | 0     | 431   | 426   | 0.69 | 6.69   | 6.89   | 0.69   | 0.44
 0  | 116   | 500    | 6      | 0      | 0     | 432   | 426   | 0.71 | 7.02   | 7.17   | 0.71   | 0.41
 0  | 117   | 499    | 9      | 0      | 0     | 446   | 441   | 0.74 | 7.75   | 7.86   | 0.71   | 0.41
 0  | 118   | 518    | 3      | 0      | 0     | 449   | 444   | 0.79 | 7.75   | 7.90   | 0.71   | 0.43
 0  | 119   | 476    | 0      | 0      | 0     | 413   | 410   | 0.71 | 6.66   | 6.75   | 0.71   | 0.41
 0  | 120   | 485    | 8      | 0      | 0     | 427   | 425   | 0.71 | 6.56   | 6.70   | 0.70   | 0.46
 0  | 121   | 558    | 0      | 0      | 0     | 476   | 473   | 0.76 | 6.90   | 7.04   | 0.71   | 0.41
 0  | 122   | 490    | 14     | 0      | 0     | 433   | 430   | 0.68 | 6.39   | 6.60   | 0.70   | 0.43
 0  | 123   | 530    | 14     | 0      | 0     | 464   | 458   | 0.70 | 6.70   | 6.85   | 0.69   | 0.44
 0  | 124   | 508    | 8      | 0      | 0     | 450   | 444   | 0.75 | 7.23   | 7.37   | 0.71   | 0.42
 0  | 125   | 506    | 19     | 0      | 0     | 442   | 437   | 0.78 | 8.09   | 8.28   | 0.73   | 0.40
 0  | 126   | 515    | 12     | 0      | 0     | 461   | 453   | 0.68 | 6.00   | 6.17   | 0.70   | 0.41
 0  | 127   | 462    | 6      | 0      | 0     | 405   | 402   | 0.72 | 6.96   | 7.07   | 0.70   | 0.42
 0  | 128   | 504    | 3      | 0      | 0     | 430   | 426   | 0.71 | 7.01   | 7.14   | 0.70   | 0.43
 0  | 129   | 499    | 8      | 0      | 0     | 424   | 417   | 0.72 | 6.17   | 6.33   | 0.71   | 0.42
 0  | 130   | 530    | 0      | 0      | 0     | 456   | 454   | 0.74 | 7.24   | 7.35   | 0.71   | 0.42
 0  | 131   | 527    | 15     | 0      | 0     | 465   | 458   | 0.70 | 6.88   | 7.08   | 0.69   | 0.45
 0  | 132   | 501    | 27     | 0      | 0     | 443   | 435   | 0.82 | 8.45   | 8.73   | 0.72   | 0.42
 0  | 133   | 500    | 6      | 0      | 0     | 438   | 435   | 0.70 | 6.59   | 6.67   | 0.70   | 0.44
 0  | 134   | 509    | 8      | 0      | 0     | 437   | 431   | 0.74 | 7.42   | 7.60   | 0.71   | 0.45
 0  | 135   | 484    | 3      | 0      | 0     | 419   | 410   | 0.75 | 7.24   | 7.44   | 0.70   | 0.43
 0  | 136   | 529    | 0      | 0      | 0     | 464   | 461   | 0.73 | 6.10   | 6.16   | 0.70   | 0.44
 0  | 137   | 497    | 3      | 0      | 0     | 432   | 429   | 0.75 | 7.63   | 7.71   | 0.71   | 0.41
 0  | 138   | 509    | 9      | 0      | 0     | 459   | 453   | 0.71 | 6.15   | 6.29   | 0.70   | 0.43
 0  | 139   | 531    | 0      | 0      | 0     | 450   | 441   | 0.72 | 6.71   | 6.90   | 0.70   | 0.45
 0  | 140   | 506    | 4      | 0      | 0     | 447   | 444   | 0.79 | 7.52   | 7.66   | 0.72   | 0.42
 0  | 141   | 500    | 10     | 0      | 0     | 442   | 435   | 0.74 | 6.66   | 6.83   | 0.70   | 0.43
 0  | 142   | 482    | 7      | 0      | 0     | 406   | 404   | 0.75 | 6.90   | 6.96   | 0.70   | 0.42
 0  | 143   | 488    | 0      | 0      | 0     | 423   | 420   | 0.79 | 7.17   | 7.31   | 0.72   | 0.40
 0  | 144   | 548    | 0      | 0      | 0     | 457   | 454   | 0.73 | 6.97   | 7.05   | 0.70   | 0.45
 0  | 145   | 506    | 7      | 0      | 0     | 452   | 446   | 0.80 | 8.79   | 9.19   | 0.70   | 0.44
 0  | 146   | 506    | 0      | 0      | 0     | 437   | 434   | 0.77 | 7.16   | 7.26   | 0.72   | 0.39
 0  | 147   | 529    | 19     | 0      | 0     | 461   | 456   | 0.83 | 8.85   | 9.17   | 0.71   | 0.42
 0  | 148   | 502    | 57     | 0      | 0     | 442   | 432   | 0.80 | 7.73   | 8.03   | 0.71   | 0.42
 0  | 149   | 492    | 9      | 0      | 0     | 425   | 422   | 0.79 | 6.99   | 7.06   | 0.71   | 0.42
 0  | 150   | 494    | 52     | 0      | 0     | 432   | 429   | 0.74 | 6.54   | 6.62   | 0.70   | 0.44
 0  | 151   | 513    | 6      | 0      | 0     | 465   | 460   | 0.72 | 6.03   | 6.13   | 0.70   | 0.44
 0  | 152   | 516    | 8      | 0      | 0     | 440   | 439   | 0.81 | 7.27   | 7.37   | 0.70   | 0.44
 0  | 153   | 536    | 8      | 0      | 0     | 455   | 452   | 0.78 | 6.83   | 6.90   | 0.71   | 0.41
 0  | 154   | 487    | 22     | 0      | 0     | 428   | 426   | 0.80 | 7.67   | 7.80   | 0.72   | 0.40
 0  | 155   | 485    | 11     | 0      | 0     | 433   | 425   | 0.79 | 7.14   | 7.31   | 0.70   | 0.44
 0  | 156   | 511    | 12     | 0      | 0     | 430   | 426   | 0.82 | 7.43   | 7.55   | 0.72   | 0.40
 0  | 157   | 510    | 12     | 0      | 0     | 460   | 453   | 0.84 | 7.95   | 8.22   | 0.71   | 0.43
 0  | 158   | 523    | 7      | 0      | 0     | 457   | 452   | 0.79 | 7.12   | 7.26   | 0.71   | 0.42
 0  | 159   | 510    | 4      | 0      | 0     | 434   | 428   | 0.81 | 7.33   | 7.47   | 0.70   | 0.43
 0  | 160   | 507    | 0      | 0      | 0     | 433   | 429   | 0.80 | 6.56   | 6.69   | 0.71   | 0.41
 0  | 161   | 496    | 10     | 0      | 0     | 433   | 429   | 0.79 | 7.03   | 7.14   | 0.71   | 0.42
 0  | 162   | 483    | 12     | 0      | 0     | 427   | 421   | 0.80 | 6.99   | 7.14   | 0.71   | 0.41
 0  | 163   | 527    | 3      | 0      | 0     | 456   | 451   | 0.83 | 6.44   | 6.55   | 0.71   | 0.44
 0  | 164   | 523    | 4      | 0      | 0     | 462   | 455   | 0.82 | 6.96   | 7.12   | 0.72   | 0.41
 0  | 165   | 519    | 7      | 0      | 0     | 451   | 446   | 0.86 | 7.56   | 7.68   | 0.71   | 0.44
 0  | 166   | 479    | 36     | 0      | 0     | 439   | 434   | 0.76 | 6.38   | 6.52   | 0.71   | 0.41
 0  | 167   | 494    | 3      | 0      | 0     | 421   | 419   | 0.89 | 7.07   | 7.14   | 0.72   | 0.42
 0  | 168   | 515    | 3      | 0      | 0     | 447   | 442   | 0.84 | 7.41   | 7.58   | 0.71   | 0.41
 0  | 169   | 509    | 7      | 0      | 0     | 445   | 441   | 0.76 | 6.74   | 6.83   | 0.69   | 0.43
 0  | 170   | 524    | 6      | 0      | 0     | 458   | 451   | 0.87 | 6.78   | 6.97   | 0.72   | 0.41
 0  | 171   | 499    | 0      | 0      | 0     | 434   | 432   | 0.89 | 7.94   | 8.02   | 0.73   | 0.39
 0  | 172   | 516    | 15     | 0      | 0     | 460   | 453   | 0.84 | 6.53   | 6.71   | 0.71   | 0.44
 0  | 173   | 483    | 3      | 0      | 0     | 417   | 413   | 0.90 | 7.68   | 7.85   | 0.72   | 0.40
 0  | 174   | 505    | 11     | 0      | 0     | 436   | 432   | 0.82 | 6.85   | 6.94   | 0.71   | 0.42
 0  | 175   | 516    | 5      | 0      | 0     | 448   | 444   | 0.92 | 8.13   | 8.26   | 0.72   | 0.39
 0  | 176   | 500    | 9      | 0      | 0     | 435   | 431   | 0.80 | 6.36   | 6.51   | 0.71   | 0.45
 0  | 177   | 506    | 6      | 0      | 0     | 447   | 443   | 0.85 | 7.19   | 7.30   | 0.72   | 0.41
 0  | 178   | 511    | 0      | 0      | 0     | 439   | 436   | 0.88 | 7.77   | 7.82   | 0.71   | 0.42
 0  | 179   | 498    | 0      | 0      | 0     | 429   | 428   | 0.90 | 6.91   | 6.94   | 0.71   | 0.43
 0  | 180   | 508    | 0      | 0      | 0     | 437   | 436   | 0.93 | 7.33   | 7.41   | 0.72   | 0.39
 0  | 181   | 536    | 14     | 0      | 0     | 464   | 462   | 0.88 | 7.28   | 7.36   | 0.71   | 0.42
 0  | 182   | 485    | 6      | 0      | 0     | 426   | 419   | 0.81 | 6.48   | 6.53   | 0.71   | 0.43
 0  | 183   | 502    | 3      | 0      | 0     | 433   | 428   | 0.92 | 6.96   | 7.10   | 0.72   | 0.39
 0  | 184   | 529    | 8      | 0      | 0     | 455   | 452   | 0.92 | 6.97   | 7.04   | 0.72   | 0.41
 0  | 185   | 482    | 10     | 0      | 0     | 413   | 410   | 0.93 | 7.00   | 7.15   | 0.71   | 0.42
 0  | 186   | 532    | 9      | 0      | 0     | 461   | 459   | 0.84 | 6.25   | 6.34   | 0.71   | 0.40
 0  | 187   | 464    | 9      | 0      | 0     | 406   | 401   | 0.89 | 6.62   | 6.82   | 0.71   | 0.42
 0  | 188   | 529    | 13     | 0      | 0     | 460   | 458   | 0.96 | 7.92   | 8.11   | 0.73   | 0.40
 0  | 189   | 511    | 7      | 0      | 0     | 439   | 435   | 0.97 | 8.40   | 8.60   | 0.72   | 0.41
 0  | 190   | 492    | 8      | 0      | 0     | 443   | 435   | 0.98 | 7.06   | 7.23   | 0.72   | 0.42
 0  | 191   | 543    | 8      | 0      | 0     | 469   | 466   | 0.94 | 7.25   | 7.39   | 0.72   | 0.42
 0  | 192   | 487    | 15     | 0      | 0     | 431   | 426   | 0.90 | 6.55   | 6.82   | 0.72   | 0.40
 0  | 193   | 501    | 0      | 0      | 0     | 432   | 424   | 0.92 | 7.07   | 7.19   | 0.73   | 0.41
 0  | 194   | 516    | 0      | 0      | 0     | 445   | 442   | 1.03 | 8.00   | 8.08   | 0.74   | 0.41
 0  | 195   | 521    | 0      | 0      | 0     | 458   | 454   | 1.05 | 8.69   | 8.79   | 0.73   | 0.42
 0  | 196   | 491    | 0      | 0      | 0     | 426   | 422   | 1.06 | 8.42   | 8.53   | 0.72   | 0.43
 0  | 197   | 503    | 12     | 0      | 0     | 439   | 433   | 0.87 | 6.54   | 6.59   | 0.72   | 0.44
 0  | 198   | 517    | 21     | 0      | 0     | 459   | 455   | 0.96 | 7.26   | 7.44   | 0.72   | 0.40
 0  | 199   | 497    | 0      | 0      | 0     | 432   | 426   | 1.00 | 7.84   | 7.97   | 0.73   | 0.40
 0  | 200   | 500    | 12     | 0      | 0     | 438   | 435   | 0.96 | 6.31   | 6.40   | 0.73   | 0.41
 0  | 201   | 530    | 9      | 0      | 0     | 473   | 468   | 1.04 | 7.60   | 7.76   | 0.74   | 0.40
 0  | 202   | 500    | 16     | 0      | 0     | 426   | 419   | 1.07 | 7.96   | 8.14   | 0.73   | 0.39
 0  | 203   | 513    | 12     | 0      | 0     | 448   | 442   | 1.02 | 7.53   | 7.74   | 0.73   | 0.43
 0  | 204   | 484    | 0      | 0      | 0     | 424   | 423   | 1.00 | 6.89   | 6.94   | 0.73   | 0.39
 0  | 205   | 531    | 3      | 0      | 0     | 463   | 456   | 0.98 | 6.71   | 6.78   | 0.74   | 0.39
 0  | 206   | 483    | 0      | 0      | 0     | 423   | 420   | 1.06 | 7.71   | 7.76   | 0.74   | 0.39
 0  | 207   | 517    | 6      | 0      | 0     | 454   | 452   | 1.06 | 7.44   | 7.44   | 0.73   | 0.39
 0  | 208   | 501    | 3      | 0      | 0     | 428   | 425   | 1.04 | 7.67   | 7.80   | 0.74   | 0.40
 0  | 209   | 519    | 0      | 0      | 0     | 444   | 439   | 1.19 | 8.67   | 8.84   | 0.75   | 0.40
 0  | 210   | 503    | 0      | 0      | 0     | 434   | 431   | 1.06 | 6.65   | 6.74   | 0.73   | 0.42
 0  | 211   | 511    | 6      | 0      | 0     | 450   | 446   | 1.06 | 7.05   | 7.26   | 0.74   | 0.40
 0  | 212   | 512    | 10     | 0      | 0     | 447   | 441   | 1.16 | 7.67   | 7.83   | 0.74   | 0.42
 0  | 213   | 487    | 0      | 0      | 0     | 420   | 416   | 1.01 | 6.38   | 6.41   | 0.73   | 0.42
 0  | 214   | 502    | 0      | 0      | 0     | 437   | 432   | 1.19 | 7.92   | 8.07   | 0.74   | 0.41
 0  | 215   | 523    | 0      | 0      | 0     | 457   | 451   | 1.11 | 7.40   | 7.47   | 0.74   | 0.41
 0  | 216   | 511    | 3      | 0      | 0     | 450   | 444   | 1.15 | 7.46   | 7.66   | 0.74   | 0.43
 0  | 217   | 493    | 12     | 0      | 0     | 431   | 427   | 1.11 | 7.03   | 7.15   | 0.74   | 0.39
 0  | 218   | 530    | 16     | 0      | 0     | 485   | 482   | 1.14 | 6.44   | 6.46   | 0.75   | 0.38
 0  | 219   | 496    | 9      | 0      | 0     | 422   | 413   | 1.16 | 7.46   | 7.66   | 0.75   | 0.42
 0  | 220   | 525    | 0      | 0      | 0     | 463   | 456   | 1.17 | 7.15   | 7.25   | 0.75   | 0.40
 0  | 221   | 489    | 11     | 0      | 0     | 419   | 417   | 1.27 | 8.55   | 8.64   | 0.74   | 0.40
 0  | 222   | 509    | 6      | 0      | 0     | 452   | 450   | 1.21 | 7.66   | 7.73   | 0.75   | 0.40
 0  | 223   | 511    | 8      | 0      | 0     | 437   | 431   | 1.21 | 7.68   | 7.81   | 0.75   | 0.38
 0  | 224   | 506    | 0      | 0      | 0     | 452   | 451   | 1.31 | 6.91   | 6.98   | 0.76   | 0.40
 0  | 225   | 502    | 0      | 0      | 0     | 420   | 418   | 1.16 | 6.42   | 6.49   | 0.75   | 0.43
 0  | 226   | 492    | 6      | 0      | 0     | 428   | 423   | 1.31 | 7.82   | 7.93   | 0.76   | 0.38
 0  | 227   | 524    | 6      | 0      | 0     | 461   | 457   | 1.27 | 8.72   | 8.90   | 0.76   | 0.38
 0  | 228   | 505    | 6      | 0      | 0     | 460   | 453   | 1.32 | 8.36   | 8.50   | 0.76   | 0.41
 0  | 229   | 508    | 10     | 0      | 0     | 459   | 454   | 1.30 | 7.42   | 7.56   | 0.76   | 0.40
 0  | 230   | 515    | 0      | 0      | 0     | 431   | 427   | 1.33 | 7.58   | 7.65   | 0.76   | 0.41
 0  | 231   | 497    | 0      | 0      | 0     | 424   | 419   | 1.33 | 7.68   | 7.77   | 0.76   | 0.39
 0  | 232   | 502    | 12     | 0      | 0     | 439   | 430   | 1.33 | 7.39   | 7.68   | 0.76   | 0.40
 0  | 233   | 504    | 12     | 0      | 0     | 444   | 438   | 1.36 | 8.28   | 8.72   | 0.76   | 0.40
 0  | 234   | 531    | 3      | 0      | 0     | 459   | 453   | 1.36 | 7.11   | 7.26   | 0.76   | 0.41
 0  | 235   | 502    | 6      | 0      | 0     | 434   | 432   | 1.31 | 6.67   | 6.69   | 0.75   | 0.42
 0  | 236   | 492    | 11     | 0      | 0     | 443   | 440   | 1.48 | 9.69   | 9.80   | 0.77   | 0.40
 0  | 237   | 492    | 9      | 0      | 0     | 431   | 426   | 1.48 | 9.22   | 9.59   | 0.77   | 0.39
 0  | 238   | 502    | 12     | 0      | 0     | 447   | 439   | 1.33 | 6.05   | 6.27   | 0.77   | 0.38
 0  | 239   | 531    | 11     | 0      | 0     | 465   | 461   | 1.36 | 8.36   | 8.45   | 0.77   | 0.38
 0  | 240   | 525    | 4      | 0      | 0     | 459   | 451   | 1.51 | 9.09   | 9.33   | 0.77   | 0.38
 0  | 241   | 483    | 15     | 0      | 0     | 426   | 423   | 1.38 | 8.00   | 8.06   | 0.76   | 0.39
 0  | 242   | 501    | 11     | 0      | 0     | 439   | 435   | 1.51 | 8.85   | 8.91   | 0.77   | 0.37
 0  | 243   | 530    | 8      | 0      | 0     | 450   | 448   | 1.40 | 7.49   | 7.56   | 0.77   | 0.42
 0  | 244   | 491    | 4      | 0      | 0     | 431   | 428   | 1.48 | 6.89   | 7.00   | 0.77   | 0.40
 0  | 245   | 536    | 4      | 0      | 0     | 455   | 454   | 1.43 | 7.94   | 8.02   | 0.77   | 0.42
 0  | 246   | 490    | 3      | 0      | 0     | 415   | 414   | 1.44 | 7.80   | 7.87   | 0.77   | 0.41
 0  | 247   | 506    | 17     | 0      | 0     | 442   | 438   | 1.39 | 7.94   | 8.00   | 0.77   | 0.41
 0  | 248   | 526    | 6      | 0      | 0     | 453   | 447   | 1.54 | 8.77   | 8.93   | 0.77   | 0.39
 0  | 249   | 500    | 12     | 0      | 0     | 439   | 435   | 1.42 | 8.42   | 8.49   | 0.77   | 0.39
 0  | 250   | 511    | 6      | 0      | 0     | 448   | 440   | 1.44 | 7.94   | 8.17   | 0.77   | 0.40
 0  | 251   | 497    | 0      | 0      | 0     | 424   | 421   | 1.43 | 7.27   | 7.37   | 0.77   | 0.38
 0  | 252   | 491    | 3      | 0      | 0     | 428   | 426   | 1.39 | 7.22   | 7.35   | 0.77   | 0.39
 0  | 253   | 517    | 20     | 0      | 0     | 456   | 452   | 1.48 | 8.17   | 8.29   | 0.77   | 0.39
 0  | 254   | 477    | 3      | 0      | 0     | 415   | 412   | 1.39 | 7.18   | 7.25   | 0.77   | 0.39
 0  | 255   | 538    | 11     | 0      | 0     | 450   | 447   | 1.40 | 7.82   | 7.89   | 0.77   | 0.38
 0  | 256   | 514    | 12     | 0      | 0     | 450   | 445   | 1.48 | 9.26   | 9.46   | 0.77   | 0.37
 0  | 257   | 500    | 14     | 0      | 0     | 441   | 436   | 1.29 | 6.28   | 6.41   | 0.77   | 0.37
 0  | 258   | 540    | 17     | 0      | 0     | 466   | 463   | 1.44 | 8.40   | 8.52   | 0.77   | 0.38
 0  | 259   | 492    | 0      | 0      | 0     | 426   | 420   | 1.36 | 7.70   | 7.80   | 0.76   | 0.41
 0  | 260   | 481    | 3      | 0      | 0     | 424   | 422   | 1.39 | 7.89   | 8.03   | 0.77   | 0.39
 0  | 261   | 514    | 3      | 0      | 0     | 438   | 431   | 1.32 | 6.69   | 6.88   | 0.76   | 0.38
 0  | 262   | 517    | 23     | 0      | 0     | 455   | 447   | 1.30 | 6.94   | 7.08   | 0.76   | 0.39
 0  | 263   | 484    | 17     | 0      | 0     | 413   | 410   | 1.34 | 8.86   | 9.01   | 0.76   | 0.38
 0  | 264   | 508    | 3      | 0      | 0     | 451   | 445   | 1.17 | 7.59   | 7.70   | 0.75   | 0.39
 0  | 265   | 507    | 8      | 0      | 0     | 445   | 442   | 1.41 | 7.75   | 7.79   | 0.77   | 0.40
 0  | 266   | 510    | 13     | 0      | 0     | 444   | 443   | 1.37 | 8.05   | 8.15   | 0.76   | 0.38
 0  | 267   | 553    | 20     | 0      | 0     | 496   | 489   | 1.31 | 9.27   | 9.66   | 0.75   | 0.40
 0  | 268   | 493    | 6      | 0      | 0     | 420   | 417   | 1.30 | 8.44   | 8.56   | 0.76   | 0.39
 0  | 269   | 512    | 7      | 0      | 0     | 444   | 442   | 1.34 | 8.02   | 8.09   | 0.77   | 0.39
 0  | 270   | 516    | 3      | 0      | 0     | 453   | 450   | 1.09 | 6.77   | 6.78   | 0.75   | 0.39
 0  | 271   | 501    | 15     | 0      | 0     | 440   | 429   | 1.20 | 8.48   | 8.62   | 0.76   | 0.40
 0  | 272   | 471    | 10     | 0      | 0     | 415   | 413   | 1.18 | 7.86   | 7.90   | 0.75   | 0.41
 0  | 273   | 536    | 6      | 0      | 0     | 469   | 462   | 1.28 | 8.91   | 9.15   | 0.76   | 0.41
 0  | 274   | 485    | 7      | 0      | 0     | 413   | 410   | 1.27 | 9.17   | 9.29   | 0.76   | 0.39
 0  | 275   | 510    | 6      | 0      | 0     | 440   | 437   | 1.14 | 7.66   | 7.68   | 0.74   | 0.40
 0  | 276   | 519    | 5      | 0      | 0     | 452   | 450   | 1.12 | 7.65   | 7.72   | 0.74   | 0.39
 0  | 277   | 493    | 6      | 0      | 0     | 414   | 404   | 1.08 | 7.65   | 7.84   | 0.74   | 0.42
 0  | 278   | 539    | 0      | 0      | 0     | 471   | 465   | 1.14 | 7.49   | 7.60   | 0.74   | 0.40
 0  | 279   | 505    | 0      | 0      | 0     | 444   | 440   | 1.27 | 8.92   | 9.00   | 0.76   | 0.38
 0  | 280   | 481    | 3      | 0      | 0     | 430   | 427   | 1.04 | 7.33   | 7.38   | 0.73   | 0.40
 0  | 281   | 514    | 0      | 0      | 0     | 440   | 436   | 1.05 | 7.81   | 7.87   | 0.73   | 0.40
 0  | 282   | 506    | 18     | 0      | 0     | 437   | 434   | 1.07 | 7.22   | 7.32   | 0.73   | 0.41
 0  | 283   | 520    | 6      | 0      | 0     | 470   | 465   | 1.07 | 6.70   | 6.82   | 0.73   | 0.40
 0  | 284   | 499    | 8      | 0      | 0     | 435   | 430   | 1.13 | 7.49   | 7.60   | 0.74   | 0.40
 0  | 285   | 503    | 7      | 0      | 0     | 440   | 427   | 1.03 | 6.53   | 6.73   | 0.74   | 0.43
 0  | 286   | 525    | 9      | 0      | 0     | 458   | 452   | 0.99 | 7.64   | 7.71   | 0.73   | 0.40
 0  | 287   | 484    | 18     | 0      | 0     | 428   | 421   | 0.96 | 6.48   | 6.68   | 0.72   | 0.42
 0  | 288   | 520    | 15     | 0      | 0     | 460   | 457   | 1.01 | 7.75   | 7.80   | 0.73   | 0.40
 0  | 289   | 493    | 9      | 0      | 0     | 433   | 427   | 1.09 | 7.95   | 8.08   | 0.74   | 0.38
 0  | 290   | 537    | 4      | 0      | 0     | 469   | 467   | 1.07 | 8.35   | 8.43   | 0.73   | 0.38
 0  | 291   | 489    | 8      | 0      | 0     | 420   | 416   | 0.97 | 7.97   | 8.09   | 0.72   | 0.43
 0  | 292   | 514    | 15     | 0      | 0     | 452   | 448   | 0.99 | 7.35   | 7.39   | 0.73   | 0.40
 0  | 293   | 498    | 3      | 0      | 0     | 425   | 419   | 0.99 | 6.96   | 7.06   | 0.74   | 0.40
 0  | 294   | 509    | 7      | 0      | 0     | 437   | 434   | 0.97 | 7.31   | 7.40   | 0.73   | 0.41
 0  | 295   | 488    | 6      | 0      | 0     | 430   | 426   | 1.01 | 8.02   | 8.09   | 0.72   | 0.41
 0  | 296   | 529    | 3      | 0      | 0     | 440   | 437   | 0.94 | 6.85   | 6.91   | 0.73   | 0.42
 0  | 297   | 504    | 19     | 0      | 0     | 434   | 429   | 1.01 | 7.99   | 8.00   | 0.73   | 0.39
 0  | 298   | 518    | 11     | 0      | 0     | 458   | 452   | 0.98 | 8.66   | 8.78   | 0.73   | 0.42
 0  | 299   | 475    | 3      | 0      | 0     | 406   | 402   | 0.95 | 8.78   | 8.89   | 0.73   | 0.41
 0  | 300   | 540    | 0      | 0      | 0     | 474   | 473   | 0.96 | 8.02   | 8.03   | 0.73   | 0.41
 0  | 301   | 511    | 17     | 0      | 0     | 442   | 437   | 0.85 | 6.69   | 6.88   | 0.71   | 0.42
 0  | 302   | 524    | 19     | 0      | 0     | 463   | 457   | 0.99 | 8.35   | 8.54   | 0.72   | 0.41
 0  | 303   | 476    | 6      | 0      | 0     | 406   | 402   | 0.88 | 7.00   | 7.15   | 0.71   | 0.42
 0  | 304   | 532    | 0      | 0      | 0     | 452   | 447   | 0.97 | 6.87   | 6.96   | 0.72   | 0.42
 0  | 305   | 497    | 0      | 0      | 0     | 431   | 426   | 0.87 | 6.63   | 6.77   | 0.71   | 0.42
 0  | 306   | 499    | 4      | 0      | 0     | 440   | 438   | 0.91 | 7.15   | 7.24   | 0.72   | 0.41
 0  | 307   | 498    | 9      | 0      | 0     | 434   | 425   | 0.94 | 7.78   | 7.97   | 0.72   | 0.42
 0  | 308   | 536    | 9      | 0      | 0     | 466   | 460   | 0.86 | 7.21   | 7.58   | 0.70   | 0.44
 0  | 309   | 510    | 0      | 0      | 0     | 447   | 443   | 0.88 | 6.91   | 7.03   | 0.71   | 0.41
 0  | 310   | 481    | 6      | 0      | 0     | 413   | 410   | 0.91 | 8.39   | 8.44   | 0.71   | 0.44
 0  | 311   | 509    | 5      | 0      | 0     | 458   | 453   | 0.88 | 7.05   | 7.13   | 0.71   | 0.42
 0  | 312   | 520    | 5      | 0      | 0     | 441   | 436   | 0.94 | 8.15   | 8.29   | 0.72   | 0.42
 0  | 313   | 507    | 8      | 0      | 0     | 443   | 438   | 0.89 | 7.84   | 7.97   | 0.72   | 0.40
 0  | 314   | 522    | 0      | 0      | 0     | 445   | 443   | 0.79 | 6.03   | 6.07   | 0.69   | 0.42
 0  | 315   | 511    | 0      | 0      | 0     | 445   | 442   | 0.80 | 7.91   | 7.95   | 0.70   | 0.41
 0  | 316   | 496    | 0      | 0      | 0     | 431   | 428   | 0.88 | 7.15   | 7.19   | 0.71   | 0.43
 0  | 317   | 463    | 18     | 0      | 0     | 415   | 406   | 0.92 | 8.45   | 8.77   | 0.71   | 0.41
 0  | 318   | 546    | 16     | 0      | 0     | 476   | 473   | 0.84 | 7.42   | 7.45   | 0.71   | 0.42
 0  | 319   | 496    | 4      | 0      | 0     | 443   | 438   | 0.83 | 6.72   | 6.83   | 0.70   | 0.42
 0  | 320   | 513    | 8      | 0      | 0     | 451   | 446   | 0.84 | 6.92   | 7.06   | 0.70   | 0.43
 0  | 321   | 499    | 9      | 0      | 0     | 431   | 428   | 0.81 | 7.27   | 7.32   | 0.69   | 0.45
 0  | 322   | 533    | 3      | 0      | 0     | 451   | 445   | 0.73 | 5.99   | 6.11   | 0.69   | 0.46
 0  | 323   | 479    | 16     | 0      | 0     | 421   | 416   | 0.91 | 8.79   | 8.88   | 0.71   | 0.43
 0  | 324   | 522    | 23     | 0      | 0     | 455   | 452   | 0.90 | 8.13   | 8.23   | 0.72   | 0.42
 0  | 325   | 504    | 0      | 0      | 0     | 439   | 438   | 0.84 | 7.65   | 7.75   | 0.70   | 0.43
 0  | 326   | 487    | 12     | 0      | 0     | 424   | 416   | 0.83 | 7.49   | 7.77   | 0.70   | 0.44
 0  | 327   | 528    | 9      | 0      | 0     | 468   | 464   | 0.77 | 7.21   | 7.27   | 0.69   | 0.45
 0  | 328   | 517    | 3      | 0      | 0     | 439   | 437   | 0.77 | 6.82   | 6.83   | 0.68   | 0.46
 0  | 329   | 528    | 0      | 0      | 0     | 460   | 455   | 0.85 | 7.42   | 7.55   | 0.70   | 0.46
 0  | 330   | 492    | 8      | 0      | 0     | 427   | 422   | 0.83 | 7.69   | 7.77   | 0.70   | 0.44
 0  | 331   | 492    | 8      | 0      | 0     | 427   | 424   | 0.78 | 6.33   | 6.38   | 0.70   | 0.42
 0  | 332   | 493    | 15     | 0      | 0     | 440   | 434   | 0.78 | 6.93   | 6.99   | 0.69   | 0.44
 0  | 333   | 511    | 6      | 0      | 0     | 460   | 452   | 0.82 | 7.53   | 7.71   | 0.70   | 0.47
 0  | 334   | 500    | 0      | 0      | 0     | 415   | 414   | 0.73 | 7.14   | 7.13   | 0.69   | 0.47
 0  | 335   | 531    | 6      | 0      | 0     | 464   | 460   | 0.69 | 5.75   | 5.82   | 0.68   | 0.46
 0  | 336   | 515    | 9      | 0      | 0     | 440   | 435   | 0.81 | 7.63   | 7.74   | 0.70   | 0.45
 0  | 337   | 498    | 3      | 0      | 0     | 434   | 432   | 0.77 | 6.81   | 6.85   | 0.69   | 0.42
 0  | 338   | 518    | 7      | 0      | 0     | 438   | 429   | 0.83 | 7.61   | 7.89   | 0.71   | 0.44
 0  | 339   | 486    | 6      | 0      | 0     | 422   | 417   | 0.80 | 7.49   | 7.57   | 0.70   | 0.44
 0  | 340   | 521    | 6      | 0      | 0     | 454   | 450   | 0.80 | 7.36   | 7.43   | 0.71   | 0.41
 0  | 341   | 490    | 3      | 0      | 0     | 435   | 433   | 0.72 | 6.05   | 6.07   | 0.68   | 0.45
 0  | 342   | 532    | 0      | 0      | 0     | 459   | 452   | 0.72 | 6.21   | 6.33   | 0.70   | 0.43
 0  | 343   | 491    | 9      | 0      | 0     | 430   | 427   | 0.73 | 6.24   | 6.46   | 0.69   | 0.46
 0  | 344   | 519    | 8      | 0      | 0     | 458   | 454   | 0.81 | 7.37   | 7.50   | 0.70   | 0.43
 0  | 345   | 488    | 0      | 0      | 0     | 411   | 403   | 0.70 | 6.29   | 6.43   | 0.68   | 0.45
 0  | 346   | 531    | 16     | 0      | 0     | 464   | 457   | 0.76 | 6.52   | 6.65   | 0.69   | 0.44
 0  | 347   | 490    | 9      | 0      | 0     | 431   | 428   | 0.79 | 7.61   | 7.69   | 0.71   | 0.41
 0  | 348   | 508    | 8      | 0      | 0     | 444   | 441   | 0.75 | 7.01   | 7.09   | 0.69   | 0.43
 0  | 349   | 510    | 16     | 0      | 0     | 429   | 422   | 0.68 | 6.79   | 6.89   | 0.68   | 0.46
 0  | 350   | 522    | 11     | 0      | 0     | 465   | 458   | 0.81 | 7.13   | 7.26   | 0.70   | 0.45
 0  | 351   | 501    | 10     | 0      | 0     | 438   | 431   | 0.77 | 7.17   | 7.34   | 0.70   | 0.44
 0  | 352   | 472    | 12     | 0      | 0     | 413   | 404   | 0.70 | 6.37   | 6.48   | 0.69   | 0.45
 0  | 353   | 514    | 3      | 0      | 0     | 456   | 452   | 0.76 | 7.75   | 7.84   | 0.70   | 0.43
 0  | 354   | 532    | 0      | 0      | 0     | 460   | 454   | 0.67 | 5.80   | 5.89   | 0.69   | 0.45
 0  | 355   | 509    | 4      | 0      | 0     | 445   | 445   | 0.74 | 7.02   | 7.09   | 0.69   | 0.45
 0  | 356   | 502    | 4      | 0      | 0     | 426   | 424   | 0.76 | 7.38   | 7.45   | 0.71   | 0.43
 0  | 357   | 540    | 6      | 0      | 0     | 477   | 469   | 0.68 | 5.93   | 6.02   | 0.68   | 0.44
 0  | 358   | 474    | 3      | 0      | 0     | 414   | 410   | 0.73 | 6.57   | 6.69   | 0.68   | 0.46
 0  | 359   | 487    | 10     | 0      | 0     | 423   | 419   | 0.78 | 8.00   | 8.09   | 0.71   | 0.43
 0  | 360   | 543    | 3      | 0      | 0     | 471   | 464   | 0.79 | 8.76   | 8.98   | 0.70   | 0.45
 0  | 361   | 484    | 22     | 0      | 0     | 416   | 413   | 0.76 | 6.68   | 6.72   | 0.70   | 0.43
 0  | 362   | 488    | 20     | 0      | 0     | 437   | 427   | 0.70 | 6.81   | 6.99   | 0.68   | 0.47
 0  | 363   | 510    | 0      | 0      | 0     | 449   | 445   | 0.68 | 6.12   | 6.17   | 0.70   | 0.43
 0  | 364   | 512    | 0      | 0      | 0     | 452   | 446   | 0.74 | 7.76   | 7.87   | 0.71   | 0.41
 0  | 365   | 517    | 0      | 0      | 0     | 429   | 427   | 0.68 | 6.44   | 6.45   | 0.68   | 0.44
 0  | 366   | 541    | 5      | 0      | 0     | 471   | 470   | 0.75 | 7.96   | 8.03   | 0.69   | 0.45
 0  | 367   | 537    | 12     | 0      | 0     | 483   | 477   | 0.71 | 8.18   | 8.37   | 0.69   | 0.44
 0  | 368   | 519    | 13     | 0      | 0     | 447   | 441   | 0.66 | 6.69   | 6.78   | 0.68   | 0.45
 0  | 369   | 473    | 4      | 0      | 0     | 413   | 410   | 0.72 | 7.72   | 7.77   | 0.69   | 0.44
 0  | 370   | 460    | 0      | 0      | 0     | 404   | 401   | 0.71 | 5.99   | 6.05   | 0.69   | 0.45
 0  | 371   | 519    | 10     | 0      | 0     | 451   | 446   | 0.77 | 7.81   | 7.94   | 0.71   | 0.42
 0  | 372   | 501    | 9      | 0      | 0     | 446   | 442   | 0.73 | 7.18   | 7.33   | 0.69   | 0.44
 0  | 373   | 505    | 25     | 0      | 0     | 441   | 437   | 0.77 | 8.59   | 8.64   | 0.68   | 0.45
 0  | 374   | 501    | 0      | 0      | 0     | 443   | 440   | 0.70 | 6.52   | 6.59   | 0.68   | 0.45
 0  | 375   | 506    | 4      | 0      | 0     | 431   | 426   | 0.71 | 6.46   | 6.52   | 0.69   | 0.43
 0  | 376   | 523    | 16     | 0      | 0     | 463   | 456   | 0.60 | 5.70   | 5.75   | 0.68   | 0.46
 0  | 377   | 510    | 12     | 0      | 0     | 444   | 439   | 0.70 | 6.46   | 6.67   | 0.68   | 0.45
 0  | 378   | 506    | 8      | 0      | 0     | 431   | 429   | 0.70 | 5.85   | 5.97   | 0.69   | 0.46
 0  | 379   | 536    | 10     | 0      | 0     | 467   | 464   | 0.71 | 6.70   | 6.74   | 0.69   | 0.42
 0  | 380   | 524    | 21     | 0      | 0     | 445   | 442   | 0.71 | 7.41   | 7.54   | 0.69   | 0.46
 0  | 381   | 517    | 15     | 0      | 0     | 440   | 435   | 0.77 | 7.42   | 7.57   | 0.70   | 0.42
 0  | 382   | 487    | 15     | 0      | 0     | 434   | 427   | 0.65 | 6.80   | 6.99   | 0.69   | 0.43
 0  | 383   | 498    | 3      | 0      | 0     | 426   | 417   | 0.66 | 6.20   | 6.32   | 0.69   | 0.44
 0  | 384   | 500    | 0      | 0      | 0     | 440   | 439   | 0.66 | 6.43   | 6.48   | 0.68   | 0.46
 0  | 385   | 497    | 6      | 0      | 0     | 441   | 436   | 0.69 | 7.77   | 7.86   | 0.68   | 0.47
 0  | 386   | 521    | 6      | 0      | 0     | 469   | 465   | 0.75 | 7.28   | 7.40   | 0.70   | 0.45
 0  | 387   | 497    | 12     | 0      | 0     | 443   | 438   | 0.70 | 7.23   | 7.23   | 0.68   | 0.46
 0  | 388   | 523    | 14     | 0      | 0     | 452   | 445   | 0.76 | 8.43   | 8.77   | 0.68   | 0.45
 0  | 389   | 488    | 0      | 0      | 0     | 426   | 423   | 0.70 | 6.88   | 6.93   | 0.69   | 0.45
 0  | 390   | 528    | 0      | 0      | 0     | 450   | 448   | 0.70 | 6.95   | 6.97   | 0.69   | 0.44
 0  | 391   | 519    | 6      | 0      | 0     | 452   | 444   | 0.70 | 6.76   | 6.89   | 0.68   | 0.46
 0  | 392   | 487    | 23     | 0      | 0     | 430   | 427   | 0.69 | 6.72   | 6.90   | 0.69   | 0.43
 0  | 393   | 538    | 6      | 0      | 0     | 469   | 465   | 0.63 | 6.04   | 6.07   | 0.68   | 0.48
 0  | 394   | 497    | 4      | 0      | 0     | 435   | 432   | 0.68 | 6.80   | 6.82   | 0.69   | 0.45
 0  | 395   | 497    | 0      | 0      | 0     | 422   | 416   | 0.63 | 6.23   | 6.25   | 0.69   | 0.45
 0  | 396   | 520    | 4      | 0      | 0     | 464   | 462   | 0.65 | 5.94   | 5.95   | 0.68   | 0.46
 0  | 397   | 495    | 9      | 0      | 0     | 418   | 411   | 0.69 | 6.59   | 6.74   | 0.70   | 0.45
 0  | 398   | 504    | 3      | 0      | 0     | 431   | 429   | 0.67 | 6.91   | 6.97   | 0.69   | 0.46
 0  | 399   | 520    | 4      | 0      | 0     | 449   | 446   | 0.74 | 7.45   | 7.52   | 0.69   | 0.42
 0  | 400   | 500    | 3      | 0      | 0     | 435   | 429   | 0.71 | 6.81   | 6.91   | 0.70   | 0.42
 0  | 401   | 503    | 0      | 0      | 0     | 430   | 427   | 0.70 | 7.13   | 7.20   | 0.69   | 0.46
 0  | 402   | 505    | 6      | 0      | 0     | 445   | 439   | 0.66 | 6.27   | 6.37   | 0.69   | 0.45
 0  | 403   | 506    | 3      | 0      | 0     | 449   | 448   | 0.72 | 7.90   | 7.92   | 0.70   | 0.43
 0  | 404   | 519    | 0      | 0      | 0     | 450   | 444   | 0.66 | 6.76   | 6.82   | 0.70   | 0.44
 0  | 405   | 490    | 6      | 0      | 0     | 422   | 418   | 0.68 | 6.83   | 6.89   | 0.68   | 0.43
 0  | 406   | 525    | 20     | 0      | 0     | 467   | 460   | 0.67 | 6.50   | 6.61   | 0.68   | 0.45
 0  | 407   | 483    | 17     | 0      | 0     | 419   | 415   | 0.72 | 7.23   | 7.34   | 0.70   | 0.42
 0  | 408   | 538    | 13     | 0      | 0     | 467   | 465   | 0.64 | 6.76   | 6.94   | 0.67   | 0.47
 0  | 409   | 481    | 0      | 0      | 0     | 412   | 406   | 0.71 | 6.60   | 6.73   | 0.71   | 0.43
 0  | 410   | 537    | 12     | 0      | 0     | 470   | 466   | 0.63 | 6.85   | 6.92   | 0.66   | 0.47
 0  | 411   | 477    | 6      | 0      | 0     | 419   | 417   | 0.68 | 6.90   | 6.95   | 0.70   | 0.42
 0  | 412   | 539    | 11     | 0      | 0     | 469   | 467   | 0.68 | 7.33   | 7.30   | 0.68   | 0.46
 0  | 413   | 491    | 9      | 0      | 0     | 429   | 424   | 0.70 | 7.39   | 7.52   | 0.70   | 0.43
 0  | 414   | 521    | 4      | 0      | 0     | 456   | 455   | 0.67 | 5.80   | 5.84   | 0.68   | 0.46
 0  | 415   | 494    | 4      | 0      | 0     | 424   | 421   | 0.72 | 6.88   | 6.97   | 0.70   | 0.42
 0  | 416   | 527    | 6      | 0      | 0     | 459   | 450   | 0.63 | 5.99   | 6.06   | 0.67   | 0.49
 0  | 417   | 501    | 3      | 0      | 0     | 449   | 445   | 0.70 | 6.80   | 6.83   | 0.71   | 0.42
 0  | 418   | 530    | 7      | 0      | 0     | 461   | 457   | 0.63 | 6.35   | 6.36   | 0.67   | 0.48
 0  | 419   | 485    | 7      | 0      | 0     | 417   | 414   | 0.73 | 7.63   | 7.74   | 0.70   | 0.44
 0  | 420   | 532    | 4      | 0      | 0     | 459   | 456   | 0.65 | 5.91   | 5.95   | 0.68   | 0.46
 0  | 421   | 496    | 0      | 0      | 0     | 424   | 421   | 0.70 | 6.75   | 6.77   | 0.70   | 0.44
 0  | 422   | 508    | 0      | 0      | 0     | 434   | 430   | 0.71 | 6.80   | 6.89   | 0.68   | 0.47
 0  | 423   | 514    | 7      | 0      | 0     | 444   | 442   | 0.68 | 7.34   | 7.42   | 0.69   | 0.45
 0  | 424   | 492    | 3      | 0      | 0     | 430   | 427   | 0.72 | 7.18   | 7.33   | 0.70   | 0.44
 0  | 425   | 527    | 16     | 0      | 0     | 466   | 462   | 0.68 | 6.86   | 6.92   | 0.70   | 0.45
 0  | 426   | 504    | 6      | 0      | 0     | 444   | 437   | 0.69 | 6.96   | 7.06   | 0.69   | 0.46
 0  | 427   | 495    | 9      | 0      | 0     | 426   | 419   | 0.65 | 6.36   | 6.45   | 0.69   | 0.44
 0  | 428   | 500    | 0      | 0      | 0     | 428   | 422   | 0.70 | 6.82   | 6.94   | 0.69   | 0.44
 0  | 429   | 504    | 0      | 0      | 0     | 444   | 440   | 0.67 | 6.01   | 6.13   | 0.69   | 0.45
 0  | 430   | 533    | 0      | 0      | 0     | 459   | 451   | 0.75 | 8.86   | 9.06   | 0.71   | 0.42
 0  | 431   | 477    | 3      | 0      | 0     | 420   | 418   | 0.62 | 6.21   | 6.23   | 0.69   | 0.44
 0  | 432   | 525    | 6      | 0      | 0     | 461   | 456   | 0.68 | 6.48   | 6.52   | 0.70   | 0.46
 0  | 433   | 521    | 3      | 0      | 0     | 442   | 439   | 0.67 | 6.32   | 6.37   | 0.69   | 0.44
 0  | 434   | 485    | 17     | 0      | 0     | 429   | 426   | 0.63 | 5.65   | 5.70   | 0.68   | 0.47
 0  | 435   | 521    | 3      | 0      | 0     | 458   | 458   | 0.66 | 6.79   | 6.82   | 0.70   | 0.45
 0  | 436   | 496    | 0      | 0      | 0     | 421   | 417   | 0.69 | 6.72   | 6.82   | 0.69   | 0.44
 0  | 437   | 515    | 19     | 0      | 0     | 447   | 444   | 0.66 | 6.49   | 6.56   | 0.69   | 0.44
 0  | 438   | 529    | 0      | 0      | 0     | 465   | 457   | 0.68 | 6.80   | 6.97   | 0.68   | 0.44
 0  | 439   | 502    | 3      | 0      | 0     | 440   | 434   | 0.72 | 7.11   | 7.26   | 0.70   | 0.41
 0  | 440   | 509    | 18     | 0      | 0     | 440   | 436   | 0.71 | 7.18   | 7.25   | 0.69   | 0.45
 0  | 441   | 507    | 3      | 0      | 0     | 440   | 433   | 0.68 | 6.68   | 6.82   | 0.69   | 0.43
 0  | 442   | 504    | 3      | 0      | 0     | 428   | 424   | 0.73 | 6.64   | 6.73   | 0.71   | 0.41
 0  | 443   | 513    | 3      | 0      | 0     | 435   | 434   | 0.68 | 6.96   | 7.20   | 0.69   | 0.45
 0  | 444   | 487    | 0      | 0      | 0     | 411   | 408   | 0.64 | 6.81   | 6.87   | 0.70   | 0.42
 0  | 445   | 510    | 7      | 0      | 0     | 445   | 439   | 0.66 | 6.16   | 6.25   | 0.70   | 0.43
 0  | 446   | 478    | 18     | 0      | 0     | 414   | 410   | 0.62 | 6.13   | 6.13   | 0.69   | 0.42
 0  | 447   | 545    | 9      | 0      | 0     | 487   | 479   | 0.77 | 8.17   | 8.38   | 0.70   | 0.45
 0  | 448   | 499    | 11     | 0      | 0     | 428   | 421   | 0.70 | 6.33   | 6.46   | 0.70   | 0.44
 0  | 449   | 491    | 5      | 0      | 0     | 423   | 422   | 0.74 | 7.02   | 7.10   | 0.70   | 0.43
 0  | 450   | 537    | 12     | 0      | 0     | 463   | 461   | 0.64 | 6.31   | 6.36   | 0.69   | 0.43
 0  | 451   | 519    | 23     | 0      | 0     | 462   | 455   | 0.71 | 7.35   | 7.51   | 0.70   | 0.42
 0  | 452   | 518    | 30     | 0      | 0     | 458   | 452   | 0.58 | 5.32   | 5.36   | 0.68   | 0.43
 0  | 453   | 500    | 12     | 0      | 0     | 450   | 441   | 0.62 | 5.72   | 5.87   | 0.70   | 0.44
 0  | 454   | 517    | 0      | 0      | 0     | 446   | 443   | 0.71 | 6.31   | 6.40   | 0.70   | 0.43
 0  | 455   | 514    | 10     | 0      | 0     | 443   | 438   | 0.70 | 6.43   | 6.54   | 0.70   | 0.44
 0  | 456   | 462    | 13     | 0      | 0     | 405   | 401   | 0.74 | 7.48   | 7.58   | 0.71   | 0.42
 0  | 457   | 534    | 21     | 0      | 0     | 469   | 467   | 0.73 | 7.28   | 7.76   | 0.70   | 0.43
 0  | 458   | 469    | 6      | 0      | 0     | 409   | 405   | 0.69 | 6.51   | 6.62   | 0.69   | 0.46
 0  | 459   | 469    | 3      | 0      | 0     | 409   | 406   | 0.68 | 6.71   | 6.83   | 0.69   | 0.44
 0  | 460   | 508    | 0      | 0      | 0     | 439   | 432   | 0.65 | 6.12   | 6.22   | 0.70   | 0.43
 0  | 461   | 543    | 14     | 0      | 0     | 463   | 460   | 0.72 | 6.39   | 6.54   | 0.69   | 0.42
 0  | 462   | 537    | 20     | 0      | 0     | 482   | 475   | 0.67 | 6.78   | 6.94   | 0.68   | 0.46
 0  | 463   | 527    | 0      | 0      | 0     | 450   | 446   | 0.68 | 6.36   | 6.52   | 0.69   | 0.46
 0  | 464   | 508    | 11     | 0      | 0     | 451   | 445   | 0.73 | 7.07   | 7.32   | 0.70   | 0.42
 0  | 465   | 516    | 0      | 0      | 0     | 453   | 450   | 0.68 | 7.45   | 7.54   | 0.69   | 0.43
 0  | 466   | 520    | 9      | 0      | 0     | 447   | 445   | 0.66 | 6.58   | 6.69   | 0.69   | 0.45
 0  | 467   | 452    | 8      | 0      | 0     | 389   | 386   | 0.74 | 7.18   | 7.32   | 0.70   | 0.42
 0  | 468   | 556    | 26     | 0      | 0     | 487   | 484   | 0.73 | 6.61   | 6.68   | 0.71   | 0.41
 0  | 469   | 490    | 0      | 0      | 0     | 424   | 420   | 0.77 | 7.72   | 7.83   | 0.71   | 0.40
 0  | 470   | 448    | 0      | 0      | 0     | 389   | 389   | 0.68 | 5.80   | 5.80   | 0.69   | 0.42
 0  | 471   | 503    | 12     | 0      | 0     | 435   | 431   | 0.65 | 6.29   | 6.40   | 0.68   | 0.44
 0  | 472   | 576    | 9      | 0      | 0     | 507   | 502   | 0.69 | 6.84   | 6.89   | 0.70   | 0.41
 0  | 473   | 494    | 13     | 0      | 0     | 442   | 438   | 0.65 | 5.53   | 5.65   | 0.70   | 0.43
 0  | 474   | 535    | 0      | 0      | 0     | 463   | 462   | 0.67 | 6.53   | 6.55   | 0.69   | 0.44
 0  | 475   | 498    | 4      | 0      | 0     | 420   | 413   | 0.71 | 6.95   | 7.18   | 0.70   | 0.47
 0  | 476   | 500    | 15     | 0      | 0     | 430   | 426   | 0.73 | 6.70   | 6.78   | 0.70   | 0.43
 0  | 477   | 498    | 16     | 0      | 0     | 444   | 440   | 0.74 | 7.21   | 7.52   | 0.71   | 0.44
 0  | 478   | 519    | 3      | 0      | 0     | 459   | 453   | 0.77 | 7.26   | 7.40   | 0.70   | 0.44
 0  | 479   | 465    | 0      | 0      | 0     | 407   | 405   | 0.74 | 6.51   | 6.54   | 0.70   | 0.44
 0  | 480   | 496    | 20     | 0      | 0     | 433   | 430   | 0.66 | 5.68   | 5.77   | 0.68   | 0.46
 0  | 481   | 557    | 3      | 0      | 0     | 486   | 484   | 0.74 | 6.29   | 6.40   | 0.69   | 0.44
 0  | 482   | 509    | 6      | 0      | 0     | 430   | 427   | 0.67 | 5.47   | 5.54   | 0.68   | 0.44
 0  | 483   | 511    | 11     | 0      | 0     | 456   | 451   | 0.69 | 6.61   | 6.74   | 0.68   | 0.46
 0  | 484   | 512    | 6      | 0      | 0     | 443   | 436   | 0.78 | 6.91   | 7.10   | 0.70   | 0.44
 0  | 485   | 507    | 7      | 0      | 0     | 449   | 447   | 0.71 | 6.41   | 6.50   | 0.71   | 0.45
 0  | 486   | 502    | 3      | 0      | 0     | 445   | 440   | 0.66 | 5.70   | 5.78   | 0.71   | 0.43
 0  | 487   | 467    | 14     | 0      | 0     | 406   | 405   | 0.75 | 6.74   | 6.81   | 0.69   | 0.45
 0  | 488   | 506    | 6      | 0      | 0     | 437   | 434   | 0.67 | 6.09   | 6.14   | 0.68   | 0.45
 0  | 489   | 510    | 5      | 0      | 0     | 439   | 438   | 0.71 | 5.62   | 5.67   | 0.71   | 0.42
 0  | 490   | 547    | 0      | 0      | 0     | 467   | 461   | 0.74 | 6.92   | 7.05   | 0.70   | 0.43
 0  | 491   | 502    | 6      | 0      | 0     | 438   | 433   | 0.68 | 6.22   | 6.28   | 0.68   | 0.45
 0  | 492   | 501    | 6      | 0      | 0     | 439   | 432   | 0.78 | 7.47   | 7.63   | 0.71   | 0.43
 0  | 493   | 502    | 13     | 0      | 0     | 448   | 442   | 0.72 | 6.11   | 6.25   | 0.70   | 0.41
 0  | 494   | 520    | 6      | 0      | 0     | 452   | 445   | 0.75 | 7.39   | 7.53   | 0.71   | 0.42
 0  | 495   | 473    | 10     | 0      | 0     | 408   | 405   | 0.69 | 5.61   | 5.66   | 0.68   | 0.45
 0  | 496   | 539    | 13     | 0      | 0     | 481   | 476   | 0.73 | 6.08   | 6.15   | 0.69   | 0.44
 0  | 497   | 516    | 27     | 0      | 0     | 452   | 444   | 0.74 | 6.72   | 6.81   | 0.70   | 0.43
 0  | 498   | 496    | 8      | 0      | 0     | 435   | 434   | 0.69 | 5.52   | 5.59   | 0.69   | 0.43
 0  | 499   | 517    | 6      | 0      | 0     | 437   | 433   | 0.73 | 6.17   | 6.22   | 0.68   | 0.45
 0  | 500   | 520    | 3      | 0      | 0     | 458   | 453   | 0.77 | 7.06   | 7.17   | 0.70   | 0.41
 0  | 501   | 489    | 3      | 0      | 0     | 433   | 428   | 0.74 | 5.99   | 6.14   | 0.70   | 0.44
 0  | 502   | 495    | 15     | 0      | 0     | 435   | 428   | 0.76 | 7.36   | 7.92   | 0.69   | 0.45
 0  | 503   | 478    | 3      | 0      | 0     | 414   | 411   | 0.72 | 5.71   | 5.78   | 0.70   | 0.45
 0  | 504   | 550    | 0      | 0      | 0     | 495   | 493   | 0.76 | 6.63   | 6.67   | 0.70   | 0.44
 0  | 505   | 497    | 19     | 0      | 0     | 433   | 426   | 0.73 | 7.04   | 7.20   | 0.68   | 0.47
 0  | 506   | 500    | 4      | 0      | 0     | 440   | 433   | 0.77 | 7.67   | 7.78   | 0.71   | 0.43
 0  | 507   | 537    | 18     | 0      | 0     | 482   | 474   | 0.83 | 7.27   | 7.54   | 0.71   | 0.42
 0  | 508   | 488    | 0      | 0      | 0     | 422   | 416   | 0.76 | 6.63   | 6.81   | 0.70   | 0.42
 0  | 509   | 512    | 7      | 0      | 0     | 447   | 443   | 0.79 | 6.38   | 6.51   | 0.71   | 0.43
 0  | 510   | 484    | 4      | 0      | 0     | 426   | 422   | 0.74 | 6.19   | 6.32   | 0.69   | 0.44
 0  | 511   | 522    | 0      | 0      | 0     | 463   | 460   | 0.72 | 5.55   | 5.68   | 0.69   | 0.43
 0  | 512   | 511    | 0      | 0      | 0     | 437   | 435   | 0.79 | 6.51   | 6.60   | 0.69   | 0.44
 0  | 513   | 533    | 3      | 0      | 0     | 465   | 462   | 0.80 | 6.53   | 6.67   | 0.70   | 0.43
 0  | 514   | 490    | 3      | 0      | 0     | 439   | 435   | 0.79 | 6.47   | 6.57   | 0.71   | 0.42
 0  | 515   | 491    | 4      | 0      | 0     | 429   | 421   | 0.80 | 6.93   | 7.15   | 0.70   | 0.40
 0  | 516   | 524    | 11     | 0      | 0     | 439   | 436   | 0.82 | 6.56   | 6.65   | 0.70   | 0.42
 0  | 517   | 499    | 12     | 0      | 0     | 450   | 445   | 0.82 | 7.23   | 7.33   | 0.70   | 0.44
 0  | 518   | 532    | 6      | 0      | 0     | 474   | 469   | 0.81 | 7.15   | 7.37   | 0.69   | 0.45
 0  | 519   | 505    | 10     | 0      | 0     | 417   | 409   | 0.81 | 6.98   | 7.14   | 0.71   | 0.40
 0  | 520   | 519    | 13     | 0      | 0     | 444   | 441   | 0.83 | 6.62   | 6.69   | 0.71   | 0.43
 0  | 521   | 479    | 11     | 0      | 0     | 409   | 403   | 0.78 | 6.45   | 6.51   | 0.70   | 0.42
 0  | 522   | 502    | 13     | 0      | 0     | 447   | 441   | 0.79 | 5.98   | 6.08   | 0.70   | 0.43
 0  | 523   | 519    | 6      | 0      | 0     | 451   | 448   | 0.83 | 6.32   | 6.40   | 0.70   | 0.43
 0  | 524   | 519    | 3      | 0      | 0     | 458   | 453   | 0.83 | 5.93   | 6.04   | 0.71   | 0.43
 0  | 525   | 514    | 0      | 0      | 0     | 451   | 446   | 0.80 | 6.73   | 6.85   | 0.70   | 0.45
 0  | 526   | 490    | 3      | 0      | 0     | 429   | 426   | 0.78 | 6.01   | 6.08   | 0.71   | 0.43
 0  | 527   | 498    | 12     | 0      | 0     | 435   | 428   | 0.87 | 6.55   | 6.56   | 0.71   | 0.43
 0  | 528   | 509    | 16     | 0      | 0     | 461   | 458   | 0.85 | 7.05   | 7.19   | 0.70   | 0.43
 0  | 529   | 513    | 0      | 0      | 0     | 440   | 435   | 0.76 | 6.22   | 6.31   | 0.70   | 0.45
 0  | 530   | 517    | 9      | 0      | 0     | 453   | 446   | 0.86 | 6.45   | 6.58   | 0.71   | 0.41
 0  | 531   | 518    | 6      | 0      | 0     | 461   | 459   | 0.88 | 7.41   | 7.48   | 0.72   | 0.40
 0  | 532   | 507    | 6      | 0      | 0     | 443   | 438   | 0.85 | 6.29   | 6.49   | 0.70   | 0.44
 0  | 533   | 483    | 12     | 0      | 0     | 422   | 420   | 0.87 | 7.14   | 7.24   | 0.71   | 0.40
 0  | 534   | 516    | 4      | 0      | 0     | 438   | 433   | 0.83 | 6.73   | 6.79   | 0.71   | 0.43
 0  | 535   | 497    | 6      | 0      | 0     | 439   | 432   | 0.88 | 6.85   | 6.99   | 0.71   | 0.41
 0  | 536   | 513    | 3      | 0      | 0     | 442   | 438   | 0.83 | 6.33   | 6.38   | 0.71   | 0.40
 0  | 537   | 505    | 12     | 0      | 0     | 440   | 432   | 0.82 | 6.36   | 6.59   | 0.72   | 0.41
 0  | 538   | 508    | 3      | 0      | 0     | 441   | 436   | 0.89 | 7.15   | 7.22   | 0.71   | 0.43
 0  | 539   | 503    | 0      | 0      | 0     | 435   | 434   | 0.91 | 6.48   | 6.53   | 0.71   | 0.42
 0  | 540   | 516    | 26     | 0      | 0     | 442   | 438   | 0.90 | 6.54   | 6.65   | 0.72   | 0.41
 0  | 541   | 518    | 11     | 0      | 0     | 447   | 443   | 0.91 | 7.70   | 7.81   | 0.71   | 0.41
 0  | 542   | 497    | 24     | 0      | 0     | 436   | 433   | 0.85 | 5.93   | 6.03   | 0.71   | 0.43
 0  | 543   | 508    | 12     | 0      | 0     | 443   | 437   | 0.89 | 6.75   | 6.88   | 0.72   | 0.43
 0  | 544   | 516    | 31     | 0      | 0     | 449   | 448   | 0.95 | 6.63   | 6.67   | 0.71   | 0.43
 0  | 545   | 493    | 0      | 0      | 0     | 423   | 420   | 0.87 | 6.09   | 6.12   | 0.71   | 0.41
 0  | 546   | 527    | 3      | 0      | 0     | 453   | 450   | 0.91 | 6.81   | 6.95   | 0.71   | 0.40
 0  | 547   | 470    | 13     | 0      | 0     | 412   | 409   | 0.88 | 6.40   | 6.50   | 0.71   | 0.42
 0  | 548   | 511    | 3      | 0      | 0     | 452   | 445   | 0.93 | 6.98   | 7.09   | 0.72   | 0.42
 0  | 549   | 524    | 7      | 0      | 0     | 448   | 444   | 0.95 | 8.48   | 8.56   | 0.72   | 0.40
 0  | 550   | 502    | 6      | 0      | 0     | 442   | 439   | 0.98 | 6.80   | 6.87   | 0.72   | 0.40
 0  | 551   | 532    | 10     | 0      | 0     | 468   | 460   | 0.90 | 6.38   | 6.58   | 0.72   | 0.44
 0  | 552   | 504    | 14     | 0      | 0     | 437   | 431   | 0.90 | 6.17   | 6.16   | 0.73   | 0.41
 0  | 553   | 490    | 3      | 0      | 0     | 434   | 433   | 0.93 | 6.83   | 6.91   | 0.72   | 0.40
 0  | 554   | 522    | 0      | 0      | 0     | 448   | 444   | 1.06 | 8.45   | 8.53   | 0.73   | 0.40
 0  | 555   | 501    | 3      | 0      | 0     | 432   | 430   | 1.00 | 7.49   | 7.59   | 0.72   | 0.41
 0  | 556   | 498    | 9      | 0      | 0     | 432   | 430   | 1.01 | 7.43   | 7.43   | 0.73   | 0.38
 0  | 557   | 509    | 15     | 0      | 0     | 435   | 428   | 0.89 | 6.65   | 6.80   | 0.73   | 0.40
 0  | 558   | 506    | 3      | 0      | 0     | 424   | 422   | 0.97 | 6.84   | 6.94   | 0.72   | 0.41
 0  | 559   | 503    | 6      | 0      | 0     | 454   | 451   | 0.96 | 7.07   | 7.11   | 0.73   | 0.39
 0  | 560   | 506    | 3      | 0      | 0     | 448   | 446   | 0.98 | 6.82   | 6.90   | 0.73   | 0.40
 0  | 561   | 530    | 6      | 0      | 0     | 459   | 456   | 1.03 | 6.92   | 6.99   | 0.73   | 0.41
 0  | 562   | 501    | 15     | 0      | 0     | 439   | 426   | 1.06 | 8.02   | 8.32   | 0.73   | 0.43
 0  | 563   | 497    | 0      | 0      | 0     | 433   | 431   | 1.00 | 6.55   | 6.59   | 0.73   | 0.42
 0  | 564   | 509    | 5      | 0      | 0     | 445   | 440   | 1.00 | 7.15   | 7.30   | 0.73   | 0.40
 0  | 565   | 535    | 3      | 0      | 0     | 472   | 469   | 0.98 | 6.41   | 6.44   | 0.74   | 0.41
 0  | 566   | 463    | 3      | 0      | 0     | 404   | 401   | 1.09 | 7.63   | 7.74   | 0.73   | 0.41
 0  | 567   | 507    | 3      | 0      | 0     | 436   | 431   | 1.05 | 6.99   | 7.09   | 0.73   | 0.41
 0  | 568   | 510    | 3      | 0      | 0     | 439   | 433   | 1.06 | 7.64   | 7.73   | 0.74   | 0.42
 0  | 569   | 527    | 3      | 0      | 0     | 455   | 451   | 1.14 | 8.28   | 8.41   | 0.73   | 0.42
 0  | 570   | 494    | 8      | 0      | 0     | 435   | 426   | 1.09 | 6.92   | 7.08   | 0.74   | 0.43
 0  | 571   | 531    | 9      | 0      | 0     | 447   | 442   | 1.02 | 6.15   | 6.25   | 0.73   | 0.42
 0  | 572   | 496    | 9      | 0      | 0     | 446   | 439   | 1.16 | 7.72   | 7.95   | 0.75   | 0.40
 0  | 573   | 499    | 3      | 0      | 0     | 415   | 408   | 1.05 | 6.25   | 6.37   | 0.74   | 0.41
 0  | 574   | 503    | 3      | 0      | 0     | 434   | 430   | 1.20 | 8.22   | 8.33   | 0.75   | 0.40
 0  | 575   | 502    | 7      | 0      | 0     | 451   | 446   | 1.06 | 6.43   | 6.53   | 0.74   | 0.42
 0  | 576   | 514    | 3      | 0      | 0     | 440   | 436   | 1.14 | 7.14   | 7.27   | 0.74   | 0.41
 0  | 577   | 493    | 15     | 0      | 0     | 425   | 414   | 1.17 | 7.30   | 7.52   | 0.74   | 0.41
 0  | 578   | 529    | 3      | 0      | 0     | 470   | 467   | 1.20 | 7.03   | 7.15   | 0.75   | 0.41
 0  | 579   | 481    | 10     | 0      | 0     | 420   | 416   | 1.07 | 6.09   | 6.21   | 0.73   | 0.43
 0  | 580   | 535    | 0      | 0      | 0     | 465   | 459   | 1.25 | 8.18   | 8.38   | 0.76   | 0.38
 0  | 581   | 498    | 14     | 0      | 0     | 436   | 431   | 1.23 | 8.46   | 8.64   | 0.75   | 0.41
 0  | 582   | 500    | 0      | 0      | 0     | 431   | 426   | 1.20 | 7.53   | 7.61   | 0.76   | 0.39
 0  | 583   | 524    | 3      | 0      | 0     | 445   | 440   | 1.28 | 7.77   | 7.93   | 0.75   | 0.40
 0  | 584   | 501    | 4      | 0      | 0     | 439   | 436   | 1.31 | 7.30   | 7.36   | 0.76   | 0.40
 0  | 585   | 517    | 4      | 0      | 0     | 443   | 441   | 1.17 | 6.47   | 6.53   | 0.75   | 0.41
 0  | 586   | 494    | 12     | 0      | 0     | 442   | 435   | 1.35 | 8.39   | 8.54   | 0.77   | 0.38
 0  | 587   | 511    | 5      | 0      | 0     | 443   | 441   | 1.25 | 7.90   | 7.97   | 0.75   | 0.39
 0  | 588   | 507    | 3      | 0      | 0     | 444   | 441   | 1.35 | 8.46   | 8.53   | 0.76   | 0.40
 0  | 589   | 507    | 0      | 0      | 0     | 451   | 445   | 1.30 | 7.73   | 7.88   | 0.76   | 0.40
 0  | 590   | 507    | 7      | 0      | 0     | 446   | 443   | 1.27 | 6.63   | 6.72   | 0.76   | 0.38
 0  | 591   | 494    | 0      | 0      | 0     | 430   | 427   | 1.34 | 8.29   | 8.43   | 0.76   | 0.40
 0  | 592   | 523    | 9      | 0      | 0     | 448   | 441   | 1.42 | 8.23   | 8.42   | 0.77   | 0.39
 0  | 593   | 508    | 3      | 0      | 0     | 442   | 437   | 1.29 | 7.21   | 7.30   | 0.76   | 0.39
 0  | 594   | 523    | 3      | 0      | 0     | 446   | 441   | 1.36 | 7.06   | 7.21   | 0.76   | 0.40
 0  | 595   | 484    | 7      | 0      | 0     | 425   | 421   | 1.32 | 6.92   | 6.99   | 0.75   | 0.40
 0  | 596   | 503    | 6      | 0      | 0     | 440   | 439   | 1.53 | 9.89   | 9.90   | 0.78   | 0.38
 0  | 597   | 501    | 9      | 0      | 0     | 444   | 440   | 1.44 | 7.87   | 7.99   | 0.77   | 0.39
 0  | 598   | 515    | 21     | 0      | 0     | 453   | 444   | 1.34 | 6.20   | 6.37   | 0.77   | 0.39
 0  | 599   | 513    | 7      | 0      | 0     | 467   | 461   | 1.34 | 8.42   | 8.70   | 0.76   | 0.39
 0  | 600   | 526    | 3      | 0      | 0     | 462   | 458   | 1.51 | 9.33   | 9.46   | 0.77   | 0.38
 0  | 601   | 483    | 8      | 0      | 0     | 418   | 418   | 1.35 | 8.33   | 8.30   | 0.76   | 0.39
 0  | 602   | 512    | 3      | 0      | 0     | 450   | 448   | 1.59 | 9.01   | 9.17   | 0.78   | 0.40
 0  | 603   | 517    | 11     | 0      | 0     | 439   | 437   | 1.39 | 7.69   | 7.75   | 0.77   | 0.40
 0  | 604   | 510    | 10     | 0      | 0     | 434   | 429   | 1.50 | 7.03   | 7.14   | 0.78   | 0.39
 0  | 605   | 510    | 0      | 0      | 0     | 443   | 437   | 1.38 | 7.27   | 7.43   | 0.76   | 0.39
 0  | 606   | 509    | 5      | 0      | 0     | 441   | 436   | 1.43 | 8.45   | 8.56   | 0.77   | 0.39
 0  | 607   | 490    | 9      | 0      | 0     | 420   | 418   | 1.49 | 8.22   | 8.47   | 0.78   | 0.38
 0  | 608   | 524    | 3      | 0      | 0     | 459   | 453   | 1.54 | 8.14   | 8.35   | 0.78   | 0.40
 0  | 609   | 489    | 4      | 0      | 0     | 432   | 427   | 1.47 | 9.24   | 9.49   | 0.77   | 0.39
 0  | 610   | 525    | 19     | 0      | 0     | 457   | 450   | 1.42 | 8.10   | 8.22   | 0.77   | 0.40
 0  | 611   | 489    | 3      | 0      | 0     | 426   | 421   | 1.33 | 6.26   | 6.38   | 0.77   | 0.38
 0  | 612   | 488    | 21     | 0      | 0     | 433   | 431   | 1.39 | 7.37   | 7.50   | 0.77   | 0.37
 0  | 613   | 520    | 3      | 0      | 0     | 456   | 454   | 1.50 | 8.27   | 8.41   | 0.77   | 0.40
 0  | 614   | 493    | 4      | 0      | 0     | 438   | 433   | 1.40 | 7.21   | 7.32   | 0.77   | 0.39
 0  | 615   | 525    | 12     | 0      | 0     | 454   | 452   | 1.39 | 7.85   | 7.99   | 0.77   | 0.37
 0  | 616   | 524    | 0      | 0      | 0     | 447   | 443   | 1.45 | 8.31   | 8.45   | 0.77   | 0.40
 0  | 617   | 497    | 9      | 0      | 0     | 431   | 425   | 1.39 | 7.78   | 7.94   | 0.77   | 0.39
 0  | 618   | 526    | 3      | 0      | 0     | 461   | 458   | 1.45 | 8.20   | 8.27   | 0.77   | 0.39
 0  | 619   | 503    | 6      | 0      | 0     | 432   | 428   | 1.37 | 8.07   | 8.18   | 0.76   | 0.39
 0  | 620   | 484    | 0      | 0      | 0     | 421   | 415   | 1.37 | 7.27   | 7.46   | 0.76   | 0.39
 0  | 621   | 502    | 4      | 0      | 0     | 434   | 432   | 1.31 | 7.08   | 7.14   | 0.77   | 0.41
 0  | 622   | 512    | 15     | 0      | 0     | 452   | 450   | 1.33 | 7.59   | 7.67   | 0.76   | 0.40
 0  | 623   | 498    | 3      | 0      | 0     | 425   | 421   | 1.38 | 8.80   | 8.93   | 0.77   | 0.38
 0  | 624   | 503    | 3      | 0      | 0     | 436   | 433   | 1.27 | 8.40   | 8.45   | 0.76   | 0.40
 0  | 625   | 528    | 13     | 0      | 0     | 452   | 448   | 1.30 | 6.96   | 7.03   | 0.76   | 0.40
 0  | 626   | 518    | 30     | 0      | 0     | 443   | 436   | 1.44 | 9.33   | 9.54   | 0.77   | 0.39
 0  | 627   | 509    | 0      | 0      | 0     | 440   | 439   | 1.35 | 8.43   | 8.45   | 0.77   | 0.40
 0  | 628   | 504    | 0      | 0      | 0     | 439   | 436   | 1.27 | 8.96   | 9.04   | 0.74   | 0.40
 0  | 629   | 512    | 0      | 0      | 0     | 442   | 436   | 1.33 | 7.60   | 7.75   | 0.75   | 0.38
 0  | 630   | 515    | 9      | 0      | 0     | 437   | 436   | 1.13 | 6.44   | 6.41   | 0.75   | 0.38
 0  | 631   | 517    | 10     | 0      | 0     | 457   | 453   | 1.23 | 9.60   | 9.67   | 0.74   | 0.40
 0  | 632   | 480    | 11     | 0      | 0     | 429   | 423   | 1.20 | 8.02   | 8.18   | 0.74   | 0.43
 0  | 633   | 510    | 5      | 0      | 0     | 446   | 446   | 1.23 | 7.72   | 7.73   | 0.75   | 0.41
 0  | 634   | 480    | 19     | 0      | 0     | 410   | 403   | 1.28 | 9.62   | 9.74   | 0.75   | 0.40
 0  | 635   | 526    | 6      | 0      | 0     | 447   | 442   | 1.15 | 7.31   | 7.34   | 0.74   | 0.42
 0  | 636   | 515    | 3      | 0      | 0     | 459   | 453   | 1.11 | 7.77   | 7.87   | 0.74   | 0.41
 0  | 637   | 490    | 6      | 0      | 0     | 423   | 416   | 1.15 | 8.31   | 8.49   | 0.74   | 0.43
 0  | 638   | 536    | 3      | 0      | 0     | 458   | 451   | 1.15 | 6.90   | 6.98   | 0.74   | 0.41
 0  | 639   | 502    | 23     | 0      | 0     | 451   | 445   | 1.28 | 9.46   | 9.56   | 0.75   | 0.41
 0  | 640   | 476    | 4      | 0      | 0     | 421   | 419   | 1.04 | 7.70   | 7.66   | 0.74   | 0.42
 0  | 641   | 529    | 17     | 0      | 0     | 459   | 456   | 1.05 | 7.67   | 7.70   | 0.73   | 0.44
 0  | 642   | 496    | 12     | 0      | 0     | 426   | 419   | 1.07 | 7.04   | 7.14   | 0.73   | 0.42
 0  | 643   | 522    | 0      | 0      | 0     | 459   | 452   | 1.13 | 7.27   | 7.42   | 0.74   | 0.41
 0  | 644   | 508    | 21     | 0      | 0     | 434   | 429   | 1.17 | 7.42   | 7.51   | 0.74   | 0.41
 0  | 645   | 489    | 8      | 0      | 0     | 427   | 422   | 1.03 | 6.97   | 7.05   | 0.73   | 0.42
 0  | 646   | 531    | 7      | 0      | 0     | 454   | 452   | 1.05 | 7.71   | 7.71   | 0.72   | 0.43
 0  | 647   | 483    | 6      | 0      | 0     | 418   | 417   | 1.01 | 7.00   | 6.96   | 0.73   | 0.42
 0  | 648   | 504    | 3      | 0      | 0     | 450   | 446   | 1.05 | 7.99   | 8.05   | 0.73   | 0.42
 0  | 649   | 494    | 16     | 0      | 0     | 426   | 423   | 1.08 | 7.38   | 7.47   | 0.73   | 0.43
 0  | 650   | 521    | 4      | 0      | 0     | 464   | 461   | 1.06 | 8.32   | 8.35   | 0.73   | 0.41
 0  | 651   | 506    | 7      | 0      | 0     | 435   | 429   | 1.01 | 8.54   | 8.64   | 0.71   | 0.42
 0  | 652   | 503    | 15     | 0      | 0     | 433   | 429   | 1.04 | 7.92   | 7.98   | 0.73   | 0.41
 0  | 653   | 520    | 13     | 0      | 0     | 457   | 450   | 0.98 | 7.38   | 7.49   | 0.73   | 0.42
 0  | 654   | 492    | 6      | 0      | 0     | 431   | 429   | 0.96 | 6.79   | 6.88   | 0.72   | 0.43
 0  | 655   | 496    | 0      | 0      | 0     | 429   | 426   | 1.00 | 7.35   | 7.42   | 0.72   | 0.41
 0  | 656   | 518    | 6      | 0      | 0     | 445   | 437   | 0.94 | 6.84   | 7.04   | 0.72   | 0.41
 0  | 657   | 516    | 6      | 0      | 0     | 452   | 447   | 1.01 | 7.84   | 8.02   | 0.72   | 0.42
 0  | 658   | 516    | 6      | 0      | 0     | 453   | 446   | 1.01 | 9.12   | 9.33   | 0.72   | 0.41
 0  | 659   | 480    | 6      | 0      | 0     | 410   | 408   | 0.94 | 8.23   | 8.26   | 0.72   | 0.40
 0  | 660   | 534    | 6      | 0      | 0     | 481   | 479   | 0.99 | 8.39   | 8.43   | 0.72   | 0.42
 0  | 661   | 512    | 0      | 0      | 0     | 441   | 439   | 0.83 | 5.65   | 5.68   | 0.71   | 0.43
 0  | 662   | 510    | 9      | 0      | 0     | 459   | 448   | 0.98 | 8.26   | 8.60   | 0.71   | 0.43
 0  | 663   | 484    | 4      | 0      | 0     | 418   | 416   | 0.95 | 7.49   | 7.57   | 0.71   | 0.41
 0  | 664   | 528    | 3      | 0      | 0     | 458   | 454   | 0.97 | 7.27   | 7.35   | 0.71   | 0.42
 0  | 665   | 506    | 7      | 0      | 0     | 444   | 440   | 0.87 | 6.52   | 6.69   | 0.71   | 0.44
 0  | 666   | 509    | 6      | 0      | 0     | 457   | 452   | 0.90 | 6.75   | 6.79   | 0.71   | 0.43
 0  | 667   | 489    | 20     | 0      | 0     | 426   | 417   | 0.99 | 8.39   | 8.42   | 0.71   | 0.45
 0  | 668   | 518    | 18     | 0      | 0     | 456   | 449   | 0.81 | 6.25   | 6.44   | 0.71   | 0.43
 0  | 669   | 510    | 0      | 0      | 0     | 436   | 434   | 0.87 | 6.95   | 6.99   | 0.71   | 0.44
 0  | 670   | 480    | 11     | 0      | 0     | 417   | 416   | 0.93 | 8.53   | 8.51   | 0.71   | 0.41
 0  | 671   | 503    | 23     | 0      | 0     | 457   | 453   | 0.91 | 7.23   | 7.32   | 0.71   | 0.42
 0  | 672   | 533    | 16     | 0      | 0     | 476   | 469   | 0.93 | 7.61   | 7.71   | 0.71   | 0.43
 0  | 673   | 504    | 6      | 0      | 0     | 433   | 428   | 0.87 | 7.86   | 8.00   | 0.71   | 0.41
 0  | 674   | 527    | 10     | 0      | 0     | 466   | 459   | 0.87 | 7.25   | 7.36   | 0.70   | 0.42
 0  | 675   | 496    | 22     | 0      | 0     | 424   | 422   | 0.79 | 7.24   | 7.28   | 0.70   | 0.42
 0  | 676   | 500    | 16     | 0      | 0     | 435   | 432   | 0.89 | 7.90   | 7.96   | 0.71   | 0.42
 0  | 677   | 470    | 6      | 0      | 0     | 404   | 400   | 0.92 | 8.19   | 8.29   | 0.71   | 0.42
 0  | 678   | 541    | 7      | 0      | 0     | 467   | 464   | 0.88 | 7.46   | 7.54   | 0.72   | 0.43
 0  | 679   | 500    | 8      | 0      | 0     | 429   | 426   | 0.88 | 7.25   | 7.36   | 0.71   | 0.43
 0  | 680   | 526    | 0      | 0      | 0     | 454   | 448   | 0.87 | 7.01   | 7.11   | 0.71   | 0.43
 0  | 681   | 477    | 3      | 0      | 0     | 394   | 391   | 0.84 | 7.68   | 7.77   | 0.69   | 0.41
 0  | 682   | 572    | 6      | 0      | 0     | 491   | 488   | 0.76 | 6.90   | 6.97   | 0.69   | 0.44
 0  | 683   | 445    | 3      | 0      | 0     | 388   | 383   | 0.97 | 9.74   | 9.82   | 0.73   | 0.42
 0  | 684   | 526    | 7      | 0      | 0     | 454   | 453   | 0.87 | 7.55   | 7.53   | 0.72   | 0.42
 0  | 685   | 501    | 8      | 0      | 0     | 442   | 438   | 0.86 | 7.59   | 7.69   | 0.71   | 0.42
 0  | 686   | 504    | 0      | 0      | 0     | 425   | 421   | 0.82 | 7.87   | 7.94   | 0.70   | 0.43
 0  | 687   | 508    | 3      | 0      | 0     | 435   | 430   | 0.81 | 7.32   | 7.37   | 0.70   | 0.43
 0  | 688   | 551    | 6      | 0      | 0     | 469   | 465   | 0.77 | 6.92   | 7.02   | 0.68   | 0.45
 0  | 689   | 522    | 4      | 0      | 0     | 462   | 457   | 0.85 | 7.94   | 8.06   | 0.71   | 0.43
 0  | 690   | 460    | 4      | 0      | 0     | 411   | 406   | 0.82 | 7.13   | 7.19   | 0.71   | 0.45
 0  | 691   | 503    | 0      | 0      | 0     | 423   | 418   | 0.81 | 7.26   | 7.36   | 0.70   | 0.43
 0  | 692   | 497    | 17     | 0      | 0     | 450   | 442   | 0.79 | 7.27   | 7.52   | 0.70   | 0.43
 0  | 693   | 518    | 19     | 0      | 0     | 469   | 463   | 0.81 | 7.19   | 7.27   | 0.70   | 0.43
 0  | 694   | 507    | 4      | 0      | 0     | 416   | 413   | 0.76 | 7.15   | 7.18   | 0.70   | 0.41
 0  | 695   | 533    | 3      | 0      | 0     | 470   | 462   | 0.73 | 6.92   | 7.08   | 0.69   | 0.48
 0  | 696   | 502    | 19     | 0      | 0     | 419   | 411   | 0.88 | 8.16   | 8.36   | 0.71   | 0.42
 0  | 697   | 506    | 3      | 0      | 0     | 449   | 447   | 0.82 | 7.38   | 7.64   | 0.69   | 0.44
 0  | 698   | 495    | 6      | 0      | 0     | 429   | 423   | 0.82 | 7.14   | 7.27   | 0.71   | 0.44
 0  | 699   | 485    | 0      | 0      | 0     | 415   | 415   | 0.81 | 7.59   | 7.63   | 0.70   | 0.45
 0  | 700   | 534    | 4      | 0      | 0     | 463   | 456   | 0.81 | 7.33   | 7.46   | 0.71   | 0.43
 0  | 701   | 509    | 9      | 0      | 0     | 467   | 459   | 0.72 | 6.33   | 6.48   | 0.69   | 0.45
 0  | 702   | 518    | 19     | 0      | 0     | 465   | 456   | 0.74 | 6.59   | 6.75   | 0.70   | 0.44
 0  | 703   | 487    | 3      | 0      | 0     | 419   | 417   | 0.75 | 6.39   | 6.41   | 0.70   | 0.41
 0  | 704   | 501    | 12     | 0      | 0     | 443   | 439   | 0.80 | 7.56   | 7.65   | 0.70   | 0.43
 0  | 705   | 494    | 14     | 0      | 0     | 410   | 400   | 0.75 | 6.95   | 7.10   | 0.70   | 0.44
 0  | 706   | 531    | 0      | 0      | 0     | 457   | 454   | 0.75 | 7.26   | 7.33   | 0.69   | 0.45
 0  | 707   | 512    | 18     | 0      | 0     | 458   | 454   | 0.80 | 7.15   | 7.29   | 0.71   | 0.44
 0  | 708   | 517    | 3      | 0      | 0     | 451   | 445   | 0.74 | 7.41   | 7.52   | 0.69   | 0.46
 0  | 709   | 520    | 7      | 0      | 0     | 450   | 441   | 0.73 | 6.61   | 6.75   | 0.69   | 0.45
 0  | 710   | 505    | 0      | 0      | 0     | 434   | 432   | 0.82 | 8.02   | 8.05   | 0.70   | 0.43
 0  | 711   | 497    | 11     | 0      | 0     | 427   | 419   | 0.80 | 7.67   | 7.88   | 0.70   | 0.46
 0  | 712   | 469    | 15     | 0      | 0     | 409   | 406   | 0.76 | 7.75   | 7.84   | 0.71   | 0.42
 0  | 713   | 513    | 3      | 0      | 0     | 449   | 445   | 0.78 | 8.16   | 8.30   | 0.71   | 0.45
 0  | 714   | 517    | 4      | 0      | 0     | 451   | 445   | 0.71 | 6.38   | 6.50   | 0.70   | 0.43
 0  | 715   | 518    | 0      | 0      | 0     | 452   | 450   | 0.76 | 7.46   | 7.54   | 0.69   | 0.44
 0  | 716   | 541    | 10     | 0      | 0     | 468   | 465   | 0.69 | 6.78   | 6.88   | 0.70   | 0.45
 0  | 717   | 526    | 6      | 0      | 0     | 453   | 452   | 0.75 | 7.31   | 7.36   | 0.69   | 0.43
 0  | 718   | 449    | 16     | 0      | 0     | 406   | 404   | 0.72 | 6.24   | 6.31   | 0.69   | 0.47
 0  | 719   | 277    | 202    | 0      | 0     | 409   | 405   | 0.78 | 8.08   | 8.65   | 0.71   | 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.26   | 0.45   | 0.97
 0  | 1.23  | 1332   | 10     | 0      | 0     | 1025  | 868   | 0.09 | 0.31   | 0.25   | 0.45   | 0.94
 0  | 1.25  | 3236   | 22     | 0      | 0     | 2717  | 2413  | 0.10 | 0.30   | 0.27   | 0.47   | 0.89
 0  | 1.28  | 5314   | 39     | 0      | 0     | 4507  | 4184  | 0.12 | 0.33   | 0.32   | 0.48   | 0.81
 0  | 1.30  | 7652   | 51     | 0      | 0     | 6612  | 6250  | 0.13 | 0.43   | 0.41   | 0.50   | 0.74
 0  | 1.33  | 11094  | 73     | 0      | 0     | 9462  | 9022  | 0.15 | 0.49   | 0.46   | 0.52   | 0.69
 0  | 1.36  | 15376  | 100    | 0      | 0     | 13247 | 12697 | 0.18 | 0.56   | 0.52   | 0.54   | 0.64
 0  | 1.40  | 20743  | 303    | 0      | 0     | 18271 | 17727 | 0.21 | 0.66   | 0.62   | 0.56   | 0.60
 0  | 1.43  | 23668  | 446    | 0      | 0     | 21149 | 20909 | 0.25 | 0.78   | 0.72   | 0.58   | 0.55
 0  | 1.48  | 24346  | 609    | 0      | 0     | 20802 | 20628 | 0.28 | 1.04   | 0.98   | 0.60   | 0.51
 0  | 1.52  | 24249  | 562    | 0      | 0     | 21075 | 20909 | 0.32 | 1.33   | 1.28   | 0.63   | 0.47
 0  | 1.58  | 24496  | 508    | 0      | 0     | 21830 | 21675 | 0.37 | 1.64   | 1.58   | 0.66   | 0.44
 0  | 1.64  | 24616  | 560    | 0      | 0     | 21518 | 21357 | 0.44 | 2.02   | 1.96   | 0.69   | 0.41
 0  | 1.72  | 24950  | 569    | 0      | 0     | 21712 | 21550 | 0.53 | 2.81   | 2.77   | 0.74   | 0.38
 0  | 1.81  | 25103  | 697    | 0      | 0     | 21992 | 21826 | 0.67 | 3.99   | 3.98   | 0.78   | 0.35
 0  | 1.92  | 24991  | 639    | 0      | 0     | 22076 | 21886 | 0.91 | 5.94   | 5.98   | 0.83   | 0.32
 0  | 2.07  | 25524  | 564    | 0      | 0     | 22596 | 22427 | 1.17 | 8.32   | 8.44   | 0.86   | 0.31
 0  | 2.28  | 25577  | 707    | 0      | 0     | 22928 | 22769 | 1.42 | 11.48  | 11.72  | 0.88   | 0.27
 0  | 2.61  | 26016  | 625    | 0      | 0     | 22781 | 22609 | 2.17 | 18.39  | 18.81  | 0.88   | 0.25
 0  | 3.28  | 26191  | 683    | 0      | 0     | 23271 | 23065 | 3.66 | 42.10  | 43.06  | 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                 | 364856  | 26191 | 382
 number partially recorded             | 7770    | 683   | 3
 number with invalid background pixels | 83075   | 4712  | 336
 number with invalid foreground pixels | 50358   | 3373  | 157
 number with overloaded pixels         | 0       | 0     | 0
 number in powder rings                | 0       | 0     | 0
 number processed with summation       | 319799  | 23271 | 228
 number processed with profile fitting | 314917  | 23065 | 146
 number failed in background modelling | 4036    | 963   | 0
 number failed in summation            | 50358   | 3373  | 157
 number failed in profile fitting      | 55240   | 3579  | 239
 ibg                                   | 0.89    | 3.66  | 0.08
 i/sigi (summation)                    | 7.21    | 42.10 | 0.36
 i/sigi (profile fitting)              | 7.36    | 43.06 | 0.26
 cc prf                                | 0.71    | 0.85  | 0.45
 cc_pearson sum/prf                    | 1.00    | 1.00  | 0.68
 cc_spearman sum/prf                   | 0.96    | 1.00  | 0.68
 --------------------------------------------------------------

Timing information for integration
 ----------------------------------
         Read time | 304.31 seconds
      Extract time |   2.49 seconds
  Pre-process time |   0.45 seconds
      Process time | 174.63 seconds
 Post-process time |   0.00 seconds
        Total time | 493.25 seconds
         User time |   0.00 seconds
 ----------------------------------

Saving 372626 reflections to integrated.pickle
 time taken: 0.563167
Saving the experiments to integrated_experiments.json
 time taken: 0.0175319

Total time taken: 270.623245

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 \(\sigma_D\) and \(\sigma_M\) 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.

Symmetry and Scaling

At this point, we have the option to continue processing with dials or to export the integrated data to do the symmetry and scaling steps with the CCP4 programs pointless and aimless. For instructions on how to export the data for further processing, see Exporting as MTZ. In this tutorial we shall continue to process with dials.

Checking the symmetry

After integration we can return to our hypothesis of the space group of the crystal. Although we made an assessment of that when we chose a Bravais lattice after indexing, we now have better, background-subtracted, values for the intensities, and for all reflections, not just the strong spots. So, it is prudent to repeat the assessment to see if there is any indication that our initial assessment should be revised.:

dials.symmetry integrated_experiments.json integrated.pickle

The symmetry analysis scores all possible symmetry operations by looking at the intensities of reflections that would be equivalent under that operation. Then the symmetry operations are combined to score potential space groups:

Scoring all possible sub-groups
---------------------------------------------------------------------------------------------
Patterson group       Likelihood  NetZcc  Zcc+   Zcc-   CC     CC-    delta  Reindex operator
---------------------------------------------------------------------------------------------
C 1 2/m 1        ***  0.909        9.72    9.72   0.00   0.97   0.00  0.0    -a,b,-c
P -1                  0.091        0.11    9.77   9.66   0.98   0.97  0.0    -x-y,-x+y,-z
---------------------------------------------------------------------------------------------
Best solution: C 1 2/m 1

Here we see clearly that the best solution is given by C 1 2/m 1, with a high likelihood, in agreement with the result from dials.refine_bravais_settings. As we remain confident with this choice, we now continue to scaling.

Scaling

Before the data can be reduced for structure solution, the intensity values must be corrected for experimental effects which occur prior to the reflection being measured on the detector. These primarily include sample illumination/absorption effects and radiation damage, which result in symmetry-equivalent reflections having unequal measured intensities (i.e. a systematic effect in addition to any variance due to counting statistics). Thus the purpose of scaling is to determine a scale factor to apply to each reflection, such that the scaled intensities are representative of the ‘true’ scattering intensity from the contents of the unit cell.

During scaling, a scaling model is created, from which scale factors are calculated for each reflection. By default, three components are used to create a physical model for scaling, in a similar manner to that used in the program aimless. This model consists of a smoothly varying scale factor as a function of rotation angle, a smoothly varying B-factor to account for radiation damage as a function of rotation angle and an absorption surface correction, dependent on the direction of the incoming and scattered beam vector relative to the crystal. In this example, we shall scale the dataset using the output of dials.symmetry with a resolution cutoff of 1.4 Angstrom:

dials.scale reindexed_experiments.json reindexed_reflections.pickle d_min=1.4

As can be seen from the output text, 70 parameters are used to parameterise the scaling model for this dataset. Outlier rejection is performed at several stages, as outliers have a disproportionately large effect during scaling and can lead to poor scaling results. During scaling, the distribution of the intensity uncertainties are also analysed and an error model is optimised to transform the intensity errors to an expected normal distribution. At the end of the output, a table and summary of the merging statistics are presented, which give indications of the quality of the scaled dataset:

           ----------Overall merging statistics (non-anomalous)----------

Resolution: 69.19 - 1.40

Observations: 274799

Unique reflections: 41140

Redundancy: 6.7

Completeness: 94.11%

Mean intensity: 80.7

Mean I/sigma(I): 15.4

R-merge: 0.065

R-meas:  0.071

R-pim:   0.027

To see what the scaling is telling us about the dataset, plots of the scaling model should be viewed. These can be generated by passing the output files to the utility program dials.plot_scaling_models:

dials.plot_scaling_models scaled_experiments.json scaled.pickle
open scale_model.png absorption_surface.png
../../_images/scaling.png

What is immediately apparent is the periodic nature of the scale term, with peaks and troughs 90° apart. This indicates that the illumated volume was changing significantly during the experiment: a reflection would be measured as twice as intense if it was measured at rotation angle of ~120° compared to at ~210°. The absorption surface also shows a similar periodicity, as may be expected. What is less clear is the form of the relative B-factor, which also has a periodic nature. As a B-factor can be understood to represent radiation damage, this would not be expected to be periodic, and it is likely that this model component is accounting for variation that could be described only by a scale and absorption term. To test this, we can repeat the scaling process but turn off the decay_term:

dials.scale reindexed_experiments.json reindexed_reflections.pickle d_min=1.4 decay_term=False
           ----------Overall merging statistics (non-anomalous)----------

Resolution: 69.19 - 1.40

Observations: 274578

Unique reflections: 41140

Redundancy: 6.7

Completeness: 94.11%

Mean intensity: 76.6

Mean I/sigma(I): 16.0

R-merge: 0.064

R-meas:  0.070

R-pim:   0.027

By inspecting the statistics in the output, we can see that removing the decay term has had the effect of causing around 200 more reflections to be marked as outliers (taking the outlier count from 0.72% to 0.80% of the data), while improving some of the R-factors and mean I/sigma(I). Therefore it is probably best to exclude the decay correction for this dataset.

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 scaled_experiments.json scaled.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 \(\frac{I}{\sigma_I}\) information versus frame number given in the log file in a graphical form. Here we see that \(\frac{I}{\sigma_I}\) 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 either 1) 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

2) export the scaled intensities for further downstream processing, making sure to include the intensity=scale option:

dials.export scaled.pickle scaled_experiments.json intensity=scale

Here is the output for exporting after integration, 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
DIALS 1.14.32-g3faa4529d
The following parameters have been modified:

input {
  experiments = integrated_experiments.json
  reflections = integrated.pickle
}

Read 372626 predicted reflections
Selected 314917 integrated reflections
Removing 546 incomplete reflections
Removing 0 reflections with I/Sig(I) < -5.0
Removing 74 reflections with I/Sig(I) < -5.0
Saving 313391 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: 313391
Resolution range: 69.1934 1.21665
History:
  From DIALS 1.14.32-g3faa4529d, run on 2019-12-07 at 08:33:36 GMT
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            313391 100.00%  -34.00   34.00 H: index h,k,l
    K            313391 100.00%    0.00   43.00 H: index h,k,l
    L            313391 100.00%    0.00   49.00 H: index h,k,l
    M_ISYM       313391 100.00%    1.00    4.00 Y: M/ISYM, packed partial/reject flag and symmetry number
    BATCH        313391 100.00%    1.00  720.00 B: BATCH number
    IPR          313391 100.00%   -9.96 9919.64 J: intensity
    SIGIPR       313391 100.00%    0.38   44.50 Q: standard deviation
    I            313391 100.00% -209.96 9909.45 J: intensity
    SIGI         313391 100.00%    0.59  396.04 Q: standard deviation
    BG           313391 100.00%    4.92  875.05 R: real
    SIGBG        313391 100.00%    2.35   34.28 R: real
    FRACTIONCALC 313391 100.00%    0.99    1.00 R: real
    XDET         313391 100.00%   10.89 2452.74 R: real
    YDET         313391 100.00%    9.03 2518.06 R: real
    ROT          313391 100.00%    0.13  359.85 R: real
    LP           313391 100.00%    0.01    1.01 R: real
    QE           313391 100.00%    0.92    0.99 R: real

Alternative processing with pointless and aimless

The following demonstrates how to take the output of dials processing after integration 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.54      1.40

Rmerge  (within I+/I-)                     0.056     0.028     0.598
Rmerge  (all I+ and I-)                    0.066     0.039     0.670
Rmeas (within I+/I-)                       0.067     0.033     0.733
Rmeas (all I+ & I-)                        0.072     0.043     0.737
Rpim (within I+/I-)                        0.036     0.017     0.417
Rpim (all I+ & I-)                         0.027     0.017     0.302
Rmerge in top intensity bin                0.029        -         -
Total number of observations              276017      2016     11442
Total number unique                        41113       300      1980
Mean((I)/sd(I))                             14.4      47.7       2.1
Mn(I) half-set correlation CC(1/2)         0.999     0.998     0.808
Completeness                                94.3      99.3      90.5
Multiplicity                                 6.7       6.7       5.8
Mean(Chi^2)                                 0.92      0.77      0.83

Anomalous completeness                      94.3     100.0      89.0
Anomalous multiplicity                       3.4       3.7       2.9
DelAnom correlation between half-sets      0.363     0.683     0.033
Mid-Slope of Anom Normal Probability       1.140       -         -