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 .
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 (imported.expt) 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 sequence of data containing 720 images:
DIALS 2.2.9-g061426e04-release
The following parameters have been modified:
input {
experiments = <image files>
}
--------------------------------------------------------------------------------
format: <class 'dxtbx.format.FormatCBFMiniPilatusDLS6MSN100.FormatCBFMiniPilatusDLS6MSN100'>
num images: 720
sequences:
still: 0
sweep: 1
num stills: 0
--------------------------------------------------------------------------------
Writing experiments to imported.expt
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 imported.expt
You will be presented with the main image viewer screen:
Play with the brightness slider (①) a little until you can clearly see the spots on the first image (something in the range 10-20 should make the spots obvious). You can also change the colour scheme (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 imported.expt nproc=4
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 | DIALS 2.2.9-g061426e04-release
The following parameters have been modified:
spotfinder {
mp {
nproc = 4
}
}
input {
experiments = imported.expt
}
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 1752 strong pixels on image 1
Found 1536 strong pixels on image 2
Found 1439 strong pixels on image 3
Found 1433 strong pixels on image 4
Found 1695 strong pixels on image 5
Found 1645 strong pixels on image 6
Found 1593 strong pixels on image 7
Found 1663 strong pixels on image 8
Found 1597 strong pixels on image 9
Found 1605 strong pixels on image 10
Found 1452 strong pixels on image 11
Found 1491 strong pixels on image 12
Found 1489 strong pixels on image 13
Found 1562 strong pixels on image 14
Found 1519 strong pixels on image 15
Found 1605 strong pixels on image 16
Found 1429 strong pixels on image 17
Found 1404 strong pixels on image 18
Found 1407 strong pixels on image 19
Found 1411 strong pixels on image 20
Found 1504 strong pixels on image 21
Found 1562 strong pixels on image 22
Found 1368 strong pixels on image 23
Found 1385 strong pixels on image 24
Found 1488 strong pixels on image 25
Found 1518 strong pixels on image 26
Found 1511 strong pixels on image 27
Found 1470 strong pixels on image 28
Found 1435 strong pixels on image 29
Found 1414 strong pixels on image 30
Found 1540 strong pixels on image 31
Found 1591 strong pixels on image 32
Found 1418 strong pixels on image 33
Found 1474 strong pixels on image 34
Found 1438 strong pixels on image 35
Found 1257 strong pixels on image 36
Found 1223 strong pixels on image 37
Found 1357 strong pixels on image 38
Found 1350 strong pixels on image 39
Found 1441 strong pixels on image 40
Found 1393 strong pixels on image 41
Found 1394 strong pixels on image 42
Found 1411 strong pixels on image 43
Found 1366 strong pixels on image 44
Found 1397 strong pixels on image 45
Found 1231 strong pixels on image 46
Found 1304 strong pixels on image 47
Found 1498 strong pixels on image 48
Found 1444 strong pixels on image 49
Found 1452 strong pixels on image 50
Found 1270 strong pixels on image 51
Found 1465 strong pixels on image 52
Found 1431 strong pixels on image 53
Found 1523 strong pixels on image 54
Found 1382 strong pixels on image 55
Found 1285 strong pixels on image 56
Found 1168 strong pixels on image 57
Found 1383 strong pixels on image 58
Found 1298 strong pixels on image 59
Found 1311 strong pixels on image 60
Found 1273 strong pixels on image 61
Found 1333 strong pixels on image 62
Found 1325 strong pixels on image 63
Found 1253 strong pixels on image 64
Found 1353 strong pixels on image 65
Found 1502 strong pixels on image 66
Found 1317 strong pixels on image 67
Found 1399 strong pixels on image 68
Found 1295 strong pixels on image 69
Found 1255 strong pixels on image 70
Found 1488 strong pixels on image 71
Found 1242 strong pixels on image 72
Found 1289 strong pixels on image 73
Found 1320 strong pixels on image 74
Found 1252 strong pixels on image 75
Found 1435 strong pixels on image 76
Found 1411 strong pixels on image 77
Found 1306 strong pixels on image 78
Found 1307 strong pixels on image 79
Found 1380 strong pixels on image 80
Found 1331 strong pixels on image 81
Found 1235 strong pixels on image 82
Found 1385 strong pixels on image 83
Found 1331 strong pixels on image 84
Found 1337 strong pixels on image 85
Found 1456 strong pixels on image 86
Found 1221 strong pixels on image 87
Found 1570 strong pixels on image 88
Found 1388 strong pixels on image 89
Found 1261 strong pixels on image 90
Found 1333 strong pixels on image 91
Found 1458 strong pixels on image 92
Found 1385 strong pixels on image 93
Found 1383 strong pixels on image 94
Found 1282 strong pixels on image 95
Found 1343 strong pixels on image 96
Found 1394 strong pixels on image 97
Found 1500 strong pixels on image 98
Found 1245 strong pixels on image 99
Found 1284 strong pixels on image 100
Found 1355 strong pixels on image 101
Found 1581 strong pixels on image 102
Found 1540 strong pixels on image 103
Found 1410 strong pixels on image 104
Found 1455 strong pixels on image 105
Found 1490 strong pixels on image 106
Found 1393 strong pixels on image 107
Found 1405 strong pixels on image 108
Found 1553 strong pixels on image 109
Found 1391 strong pixels on image 110
Found 1278 strong pixels on image 111
Found 1318 strong pixels on image 112
Found 1702 strong pixels on image 113
Found 1526 strong pixels on image 114
Found 1424 strong pixels on image 115
Found 1278 strong pixels on image 116
Found 1453 strong pixels on image 117
Found 1551 strong pixels on image 118
Found 1440 strong pixels on image 119
Found 1364 strong pixels on image 120
Found 1424 strong pixels on image 121
Found 1467 strong pixels on image 122
Found 1407 strong pixels on image 123
Found 1433 strong pixels on image 124
Found 1417 strong pixels on image 125
Found 1577 strong pixels on image 126
Found 1484 strong pixels on image 127
Found 1325 strong pixels on image 128
Found 1326 strong pixels on image 129
Found 1470 strong pixels on image 130
Found 1467 strong pixels on image 131
Found 1397 strong pixels on image 132
Found 1497 strong pixels on image 133
Found 1394 strong pixels on image 134
Found 1537 strong pixels on image 135
Found 1413 strong pixels on image 136
Found 1596 strong pixels on image 137
Found 1640 strong pixels on image 138
Found 1380 strong pixels on image 139
Found 1332 strong pixels on image 140
Found 1461 strong pixels on image 141
Found 1489 strong pixels on image 142
Found 1448 strong pixels on image 143
Found 1552 strong pixels on image 144
Found 1610 strong pixels on image 145
Found 1420 strong pixels on image 146
Found 1615 strong pixels on image 147
Found 1625 strong pixels on image 148
Found 1617 strong pixels on image 149
Found 1623 strong pixels on image 150
Found 1540 strong pixels on image 151
Found 1506 strong pixels on image 152
Found 1575 strong pixels on image 153
Found 1572 strong pixels on image 154
Found 1643 strong pixels on image 155
Found 1601 strong pixels on image 156
Found 1633 strong pixels on image 157
Found 1715 strong pixels on image 158
Found 1473 strong pixels on image 159
Found 1477 strong pixels on image 160
Found 1436 strong pixels on image 161
Found 1560 strong pixels on image 162
Found 1585 strong pixels on image 163
Found 1617 strong pixels on image 164
Found 1587 strong pixels on image 165
Found 1622 strong pixels on image 166
Found 1475 strong pixels on image 167
Found 1583 strong pixels on image 168
Found 1582 strong pixels on image 169
Found 1455 strong pixels on image 170
Found 1701 strong pixels on image 171
Found 1747 strong pixels on image 172
Found 1529 strong pixels on image 173
Found 1511 strong pixels on image 174
Found 1598 strong pixels on image 175
Found 1603 strong pixels on image 176
Found 1532 strong pixels on image 177
Found 1760 strong pixels on image 178
Found 1542 strong pixels on image 179
Found 1555 strong pixels on image 180
Found 1530 strong pixels on image 181
Found 1589 strong pixels on image 182
Found 1509 strong pixels on image 183
Found 1622 strong pixels on image 184
Found 1632 strong pixels on image 185
Found 1415 strong pixels on image 186
Found 1588 strong pixels on image 187
Found 1437 strong pixels on image 188
Found 1732 strong pixels on image 189
Found 1777 strong pixels on image 190
Found 1673 strong pixels on image 191
Found 1559 strong pixels on image 192
Found 1542 strong pixels on image 193
Found 1474 strong pixels on image 194
Found 1868 strong pixels on image 195
Found 1787 strong pixels on image 196
Found 1705 strong pixels on image 197
Found 1376 strong pixels on image 198
Found 1533 strong pixels on image 199
Found 1680 strong pixels on image 200
Found 1658 strong pixels on image 201
Found 1638 strong pixels on image 202
Found 1633 strong pixels on image 203
Found 1416 strong pixels on image 204
Found 1417 strong pixels on image 205
Found 1638 strong pixels on image 206
Found 1502 strong pixels on image 207
Found 1580 strong pixels on image 208
Found 1807 strong pixels on image 209
Found 1734 strong pixels on image 210
Found 1472 strong pixels on image 211
Found 1501 strong pixels on image 212
Found 1576 strong pixels on image 213
Found 1394 strong pixels on image 214
Found 1633 strong pixels on image 215
Found 1710 strong pixels on image 216
Found 1649 strong pixels on image 217
Found 1551 strong pixels on image 218
Found 1736 strong pixels on image 219
Found 1560 strong pixels on image 220
Found 1770 strong pixels on image 221
Found 1692 strong pixels on image 222
Found 1776 strong pixels on image 223
Found 1626 strong pixels on image 224
Found 1660 strong pixels on image 225
Found 1462 strong pixels on image 226
Found 1628 strong pixels on image 227
Found 1913 strong pixels on image 228
Found 1697 strong pixels on image 229
Found 1708 strong pixels on image 230
Found 1533 strong pixels on image 231
Found 1584 strong pixels on image 232
Found 1668 strong pixels on image 233
Found 1550 strong pixels on image 234
Found 1564 strong pixels on image 235
Found 1564 strong pixels on image 236
Found 1744 strong pixels on image 237
Found 1610 strong pixels on image 238
Found 1649 strong pixels on image 239
Found 1687 strong pixels on image 240
Found 1783 strong pixels on image 241
Found 1696 strong pixels on image 242
Found 1764 strong pixels on image 243
Found 1765 strong pixels on image 244
Found 1538 strong pixels on image 245
Found 1612 strong pixels on image 246
Found 1619 strong pixels on image 247
Found 1763 strong pixels on image 248
Found 1798 strong pixels on image 249
Found 1671 strong pixels on image 250
Found 1613 strong pixels on image 251
Found 1562 strong pixels on image 252
Found 1560 strong pixels on image 253
Found 1712 strong pixels on image 254
Found 1490 strong pixels on image 255
Found 1599 strong pixels on image 256
Found 1805 strong pixels on image 257
Found 1550 strong pixels on image 258
Found 1790 strong pixels on image 259
Found 1740 strong pixels on image 260
Found 1683 strong pixels on image 261
Found 1458 strong pixels on image 262
Found 1535 strong pixels on image 263
Found 1626 strong pixels on image 264
Found 1456 strong pixels on image 265
Found 1697 strong pixels on image 266
Found 1928 strong pixels on image 267
Found 1950 strong pixels on image 268
Found 1674 strong pixels on image 269
Found 1871 strong pixels on image 270
Found 1634 strong pixels on image 271
Found 1641 strong pixels on image 272
Found 1723 strong pixels on image 273
Found 1912 strong pixels on image 274
Found 1903 strong pixels on image 275
Found 1627 strong pixels on image 276
Found 1664 strong pixels on image 277
Found 1614 strong pixels on image 278
Found 1810 strong pixels on image 279
Found 1865 strong pixels on image 280
Found 1717 strong pixels on image 281
Found 1598 strong pixels on image 282
Found 1531 strong pixels on image 283
Found 1644 strong pixels on image 284
Found 1661 strong pixels on image 285
Found 1655 strong pixels on image 286
Found 1664 strong pixels on image 287
Found 1510 strong pixels on image 288
Found 1786 strong pixels on image 289
Found 1731 strong pixels on image 290
Found 1747 strong pixels on image 291
Found 1635 strong pixels on image 292
Found 1694 strong pixels on image 293
Found 1732 strong pixels on image 294
Found 1505 strong pixels on image 295
Found 1574 strong pixels on image 296
Found 1562 strong pixels on image 297
Found 1610 strong pixels on image 298
Found 1799 strong pixels on image 299
Found 1764 strong pixels on image 300
Found 1879 strong pixels on image 301
Found 1574 strong pixels on image 302
Found 1682 strong pixels on image 303
Found 1510 strong pixels on image 304
Found 1493 strong pixels on image 305
Found 1458 strong pixels on image 306
Found 1584 strong pixels on image 307
Found 1659 strong pixels on image 308
Found 1581 strong pixels on image 309
Found 1552 strong pixels on image 310
Found 1575 strong pixels on image 311
Found 1649 strong pixels on image 312
Found 1710 strong pixels on image 313
Found 1644 strong pixels on image 314
Found 1508 strong pixels on image 315
Found 1499 strong pixels on image 316
Found 1568 strong pixels on image 317
Found 1679 strong pixels on image 318
Found 1754 strong pixels on image 319
Found 1475 strong pixels on image 320
Found 1430 strong pixels on image 321
Found 1466 strong pixels on image 322
Found 1459 strong pixels on image 323
Found 1662 strong pixels on image 324
Found 1820 strong pixels on image 325
Found 1646 strong pixels on image 326
Found 1538 strong pixels on image 327
Found 1563 strong pixels on image 328
Found 1464 strong pixels on image 329
Found 1665 strong pixels on image 330
Found 1480 strong pixels on image 331
Found 1348 strong pixels on image 332
Found 1426 strong pixels on image 333
Found 1721 strong pixels on image 334
Found 1210 strong pixels on image 335
Found 1403 strong pixels on image 336
Found 1520 strong pixels on image 337
Found 1381 strong pixels on image 338
Found 1488 strong pixels on image 339
Found 1433 strong pixels on image 340
Found 1488 strong pixels on image 341
Found 1307 strong pixels on image 342
Found 1535 strong pixels on image 343
Found 1379 strong pixels on image 344
Found 1442 strong pixels on image 345
Found 1201 strong pixels on image 346
Found 1409 strong pixels on image 347
Found 1470 strong pixels on image 348
Found 1490 strong pixels on image 349
Found 1298 strong pixels on image 350
Found 1510 strong pixels on image 351
Found 1418 strong pixels on image 352
Found 1354 strong pixels on image 353
Found 1551 strong pixels on image 354
Found 1390 strong pixels on image 355
Found 1388 strong pixels on image 356
Found 1507 strong pixels on image 357
Found 1362 strong pixels on image 358
Found 1205 strong pixels on image 359
Found 1453 strong pixels on image 360
Found 1518 strong pixels on image 361
Found 1546 strong pixels on image 362
Found 1327 strong pixels on image 363
Found 1324 strong pixels on image 364
Found 1545 strong pixels on image 365
Found 1367 strong pixels on image 366
Found 1452 strong pixels on image 367
Found 1688 strong pixels on image 368
Found 1477 strong pixels on image 369
Found 1371 strong pixels on image 370
Found 1226 strong pixels on image 371
Found 1432 strong pixels on image 372
Found 1460 strong pixels on image 373
Found 1371 strong pixels on image 374
Found 1419 strong pixels on image 375
Found 1296 strong pixels on image 376
Found 1349 strong pixels on image 377
Found 1315 strong pixels on image 378
Found 1238 strong pixels on image 379
Found 1297 strong pixels on image 380
Found 1340 strong pixels on image 381
Found 1375 strong pixels on image 382
Found 1252 strong pixels on image 383
Found 1335 strong pixels on image 384
Found 1267 strong pixels on image 385
Found 1427 strong pixels on image 386
Found 1457 strong pixels on image 387
Found 1345 strong pixels on image 388
Found 1423 strong pixels on image 389
Found 1414 strong pixels on image 390
Found 1426 strong pixels on image 391
Found 1354 strong pixels on image 392
Found 1319 strong pixels on image 393
Found 1363 strong pixels on image 394
Found 1287 strong pixels on image 395
Found 1240 strong pixels on image 396
Found 1264 strong pixels on image 397
Found 1253 strong pixels on image 398
Found 1328 strong pixels on image 399
Found 1406 strong pixels on image 400
Found 1258 strong pixels on image 401
Found 1242 strong pixels on image 402
Found 1291 strong pixels on image 403
Found 1466 strong pixels on image 404
Found 1341 strong pixels on image 405
Found 1208 strong pixels on image 406
Found 1290 strong pixels on image 407
Found 1382 strong pixels on image 408
Found 1309 strong pixels on image 409
Found 1344 strong pixels on image 410
Found 1197 strong pixels on image 411
Found 1397 strong pixels on image 412
Found 1384 strong pixels on image 413
Found 1389 strong pixels on image 414
Found 1338 strong pixels on image 415
Found 1219 strong pixels on image 416
Found 1191 strong pixels on image 417
Found 1408 strong pixels on image 418
Found 1234 strong pixels on image 419
Found 1281 strong pixels on image 420
Found 1121 strong pixels on image 421
Found 1319 strong pixels on image 422
Found 1186 strong pixels on image 423
Found 1286 strong pixels on image 424
Found 1259 strong pixels on image 425
Found 1478 strong pixels on image 426
Found 1198 strong pixels on image 427
Found 1248 strong pixels on image 428
Found 1204 strong pixels on image 429
Found 1310 strong pixels on image 430
Found 1458 strong pixels on image 431
Found 1094 strong pixels on image 432
Found 1273 strong pixels on image 433
Found 1319 strong pixels on image 434
Found 1171 strong pixels on image 435
Found 1391 strong pixels on image 436
Found 1262 strong pixels on image 437
Found 1217 strong pixels on image 438
Found 1300 strong pixels on image 439
Found 1340 strong pixels on image 440
Found 1275 strong pixels on image 441
Found 1130 strong pixels on image 442
Found 1337 strong pixels on image 443
Found 1265 strong pixels on image 444
Found 1310 strong pixels on image 445
Found 1293 strong pixels on image 446
Found 1220 strong pixels on image 447
Found 1463 strong pixels on image 448
Found 1299 strong pixels on image 449
Found 1256 strong pixels on image 450
Found 1322 strong pixels on image 451
Found 1375 strong pixels on image 452
Found 1189 strong pixels on image 453
Found 1217 strong pixels on image 454
Found 1321 strong pixels on image 455
Found 1219 strong pixels on image 456
Found 1265 strong pixels on image 457
Found 1311 strong pixels on image 458
Found 1222 strong pixels on image 459
Found 1167 strong pixels on image 460
Found 1268 strong pixels on image 461
Found 1352 strong pixels on image 462
Found 1484 strong pixels on image 463
Found 1277 strong pixels on image 464
Found 1390 strong pixels on image 465
Found 1346 strong pixels on image 466
Found 1264 strong pixels on image 467
Found 1189 strong pixels on image 468
Found 1492 strong pixels on image 469
Found 1276 strong pixels on image 470
Found 1214 strong pixels on image 471
Found 1297 strong pixels on image 472
Found 1489 strong pixels on image 473
Found 1379 strong pixels on image 474
Found 1271 strong pixels on image 475
Found 1240 strong pixels on image 476
Found 1339 strong pixels on image 477
Found 1503 strong pixels on image 478
Found 1299 strong pixels on image 479
Found 1273 strong pixels on image 480
Found 1262 strong pixels on image 481
Found 1307 strong pixels on image 482
Found 1181 strong pixels on image 483
Found 1259 strong pixels on image 484
Found 1271 strong pixels on image 485
Found 1452 strong pixels on image 486
Found 1288 strong pixels on image 487
Found 1135 strong pixels on image 488
Found 1183 strong pixels on image 489
Found 1369 strong pixels on image 490
Found 1335 strong pixels on image 491
Found 1275 strong pixels on image 492
Found 1344 strong pixels on image 493
Found 1315 strong pixels on image 494
Found 1480 strong pixels on image 495
Found 1264 strong pixels on image 496
Found 1371 strong pixels on image 497
Found 1406 strong pixels on image 498
Found 1187 strong pixels on image 499
Found 1155 strong pixels on image 500
Found 1328 strong pixels on image 501
Found 1341 strong pixels on image 502
Found 1369 strong pixels on image 503
Found 1317 strong pixels on image 504
Found 1555 strong pixels on image 505
Found 1259 strong pixels on image 506
Found 1436 strong pixels on image 507
Found 1404 strong pixels on image 508
Found 1358 strong pixels on image 509
Found 1485 strong pixels on image 510
Found 1393 strong pixels on image 511
Found 1323 strong pixels on image 512
Found 1394 strong pixels on image 513
Found 1338 strong pixels on image 514
Found 1454 strong pixels on image 515
Found 1434 strong pixels on image 516
Found 1436 strong pixels on image 517
Found 1493 strong pixels on image 518
Found 1339 strong pixels on image 519
Found 1452 strong pixels on image 520
Found 1332 strong pixels on image 521
Found 1312 strong pixels on image 522
Found 1440 strong pixels on image 523
Found 1317 strong pixels on image 524
Found 1356 strong pixels on image 525
Found 1425 strong pixels on image 526
Found 1277 strong pixels on image 527
Found 1471 strong pixels on image 528
Found 1437 strong pixels on image 529
Found 1229 strong pixels on image 530
Found 1469 strong pixels on image 531
Found 1558 strong pixels on image 532
Found 1292 strong pixels on image 533
Found 1421 strong pixels on image 534
Found 1460 strong pixels on image 535
Found 1440 strong pixels on image 536
Found 1348 strong pixels on image 537
Found 1515 strong pixels on image 538
Found 1464 strong pixels on image 539
Found 1404 strong pixels on image 540
Found 1492 strong pixels on image 541
Found 1420 strong pixels on image 542
Found 1351 strong pixels on image 543
Found 1469 strong pixels on image 544
Found 1415 strong pixels on image 545
Found 1348 strong pixels on image 546
Found 1373 strong pixels on image 547
Found 1294 strong pixels on image 548
Found 1613 strong pixels on image 549
Found 1631 strong pixels on image 550
Found 1579 strong pixels on image 551
Found 1429 strong pixels on image 552
Found 1406 strong pixels on image 553
Found 1348 strong pixels on image 554
Found 1710 strong pixels on image 555
Found 1656 strong pixels on image 556
Found 1562 strong pixels on image 557
Found 1343 strong pixels on image 558
Found 1406 strong pixels on image 559
Found 1570 strong pixels on image 560
Found 1538 strong pixels on image 561
Found 1593 strong pixels on image 562
Found 1456 strong pixels on image 563
Found 1354 strong pixels on image 564
Found 1374 strong pixels on image 565
Found 1558 strong pixels on image 566
Found 1347 strong pixels on image 567
Found 1418 strong pixels on image 568
Found 1722 strong pixels on image 569
Found 1629 strong pixels on image 570
Found 1445 strong pixels on image 571
Found 1419 strong pixels on image 572
Found 1526 strong pixels on image 573
Found 1458 strong pixels on image 574
Found 1736 strong pixels on image 575
Found 1549 strong pixels on image 576
Found 1531 strong pixels on image 577
Found 1376 strong pixels on image 578
Found 1591 strong pixels on image 579
Found 1398 strong pixels on image 580
Found 1842 strong pixels on image 581
Found 1662 strong pixels on image 582
Found 1689 strong pixels on image 583
Found 1657 strong pixels on image 584
Found 1614 strong pixels on image 585
Found 1477 strong pixels on image 586
Found 1617 strong pixels on image 587
Found 1794 strong pixels on image 588
Found 1582 strong pixels on image 589
Found 1678 strong pixels on image 590
Found 1612 strong pixels on image 591
Found 1513 strong pixels on image 592
Found 1750 strong pixels on image 593
Found 1467 strong pixels on image 594
Found 1584 strong pixels on image 595
Found 1534 strong pixels on image 596
Found 1781 strong pixels on image 597
Found 1568 strong pixels on image 598
Found 1618 strong pixels on image 599
Found 1689 strong pixels on image 600
Found 1949 strong pixels on image 601
Found 1701 strong pixels on image 602
Found 1871 strong pixels on image 603
Found 1674 strong pixels on image 604
Found 1530 strong pixels on image 605
Found 1594 strong pixels on image 606
Found 1719 strong pixels on image 607
Found 1719 strong pixels on image 608
Found 1711 strong pixels on image 609
Found 1649 strong pixels on image 610
Found 1580 strong pixels on image 611
Found 1489 strong pixels on image 612
Found 1625 strong pixels on image 613
Found 1740 strong pixels on image 614
Found 1664 strong pixels on image 615
Found 1703 strong pixels on image 616
Found 1838 strong pixels on image 617
Found 1521 strong pixels on image 618
Found 1782 strong pixels on image 619
Found 1678 strong pixels on image 620
Found 1689 strong pixels on image 621
Found 1619 strong pixels on image 622
Found 1640 strong pixels on image 623
Found 1682 strong pixels on image 624
Found 1471 strong pixels on image 625
Found 1713 strong pixels on image 626
Found 1896 strong pixels on image 627
Found 1912 strong pixels on image 628
Found 1795 strong pixels on image 629
Found 1904 strong pixels on image 630
Found 1681 strong pixels on image 631
Found 1732 strong pixels on image 632
Found 1734 strong pixels on image 633
Found 1928 strong pixels on image 634
Found 1937 strong pixels on image 635
Found 1784 strong pixels on image 636
Found 1741 strong pixels on image 637
Found 1730 strong pixels on image 638
Found 1894 strong pixels on image 639
Found 1947 strong pixels on image 640
Found 1916 strong pixels on image 641
Found 1692 strong pixels on image 642
Found 1622 strong pixels on image 643
Found 1676 strong pixels on image 644
Found 1708 strong pixels on image 645
Found 1787 strong pixels on image 646
Found 1727 strong pixels on image 647
Found 1606 strong pixels on image 648
Found 1774 strong pixels on image 649
Found 1699 strong pixels on image 650
Found 1851 strong pixels on image 651
Found 1710 strong pixels on image 652
Found 1742 strong pixels on image 653
Found 1852 strong pixels on image 654
Found 1528 strong pixels on image 655
Found 1671 strong pixels on image 656
Found 1693 strong pixels on image 657
Found 1716 strong pixels on image 658
Found 1760 strong pixels on image 659
Found 1728 strong pixels on image 660
Found 1997 strong pixels on image 661
Found 1597 strong pixels on image 662
Found 1615 strong pixels on image 663
Found 1588 strong pixels on image 664
Found 1609 strong pixels on image 665
Found 1630 strong pixels on image 666
Found 1729 strong pixels on image 667
Found 1730 strong pixels on image 668
Found 1577 strong pixels on image 669
Found 1584 strong pixels on image 670
Found 1621 strong pixels on image 671
Found 1683 strong pixels on image 672
Found 1735 strong pixels on image 673
Found 1605 strong pixels on image 674
Found 1650 strong pixels on image 675
Found 1534 strong pixels on image 676
Found 1572 strong pixels on image 677
Found 1677 strong pixels on image 678
Found 1769 strong pixels on image 679
Found 1594 strong pixels on image 680
Found 1608 strong pixels on image 681
Found 1405 strong pixels on image 682
Found 1559 strong pixels on image 683
Found 1707 strong pixels on image 684
Found 1709 strong pixels on image 685
Found 1645 strong pixels on image 686
Found 1530 strong pixels on image 687
Found 1636 strong pixels on image 688
Found 1550 strong pixels on image 689
Found 1738 strong pixels on image 690
Found 1546 strong pixels on image 691
Found 1504 strong pixels on image 692
Found 1586 strong pixels on image 693
Found 1740 strong pixels on image 694
Found 1423 strong pixels on image 695
Found 1573 strong pixels on image 696
Found 1506 strong pixels on image 697
Found 1434 strong pixels on image 698
Found 1568 strong pixels on image 699
Found 1498 strong pixels on image 700
Found 1629 strong pixels on image 701
Found 1569 strong pixels on image 702
Found 1563 strong pixels on image 703
Found 1447 strong pixels on image 704
Found 1445 strong pixels on image 705
Found 1311 strong pixels on image 706
Found 1513 strong pixels on image 707
Found 1653 strong pixels on image 708
Found 1509 strong pixels on image 709
Found 1476 strong pixels on image 710
Found 1579 strong pixels on image 711
Found 1523 strong pixels on image 712
Found 1563 strong pixels on image 713
Found 1562 strong pixels on image 714
Found 1560 strong pixels on image 715
Found 1512 strong pixels on image 716
Found 1677 strong pixels on image 717
Found 1482 strong pixels on image 718
Found 1204 strong pixels on image 719
Found 1523 strong pixels on image 720
Extracted 124946 spots
Removed 16738 spots with size < 3 pixels
Removed 1 spots with size > 1000 pixels
Calculated 108207 spot centroids
Calculated 108207 spot intensities
Filtered 107999 of 108207 spots by peak-centroid distance
Histogram of per-image spot count for imageset 0:
107999 spots found on 720 images (max 2137 / bin)
*
*********** ************ ***
*********************************************** ************
************************************************************
************************************************************
************************************************************
************************************************************
************************************************************
************************************************************
************************************************************
1 image 720
--------------------------------------------------------------------------------
Saved 107999 reflections to strong.refl
|
Once this has completed, a new reflection file
‘strong.refl
’ 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 imported.expt strong.refl
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’.
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 imported.expt strong.refl
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 imported.expt strong.refl
If known, the space group and unit cell can be provided at this stage
using the space_group
and unit_cell
parameters, and will
be used to constrain the lattice during refinement, but otherwise
indexing and refinement will be carried out in the primitive lattice
using space group P1.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 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 | DIALS 2.2.9-g061426e04-release
The following parameters have been modified:
input {
experiments = imported.expt
reflections = strong.refl
}
Found max_cell: 94.4 Angstrom
Setting d_min: 1.84
FFT gridding: (256,256,256)
Number of centroids used: 91203
Candidate solutions:
+----------------------------------+----------+----------------+------------+-------------+-------------------+-----------+-----------------+-----------------+
| unit_cell | volume | volume score | #indexed | % indexed | % indexed score | rmsd_xy | rmsd_xy score | overall score |
|----------------------------------+----------+----------------+------------+-------------+-------------------+-----------+-----------------+-----------------|
| 40.72 40.73 69.66 92.0 91.9 98.3 | 114154 | 0.01 | 94166 | 99 | 0 | 0.07 | 0 | 0.01 |
| 40.72 40.72 69.70 91.9 91.9 98.2 | 114243 | 0.01 | 94215 | 99 | 0 | 0.07 | 0 | 0.01 |
| 40.60 40.73 69.67 91.9 91.9 98.4 | 113803 | 0 | 93959 | 98 | 0.01 | 0.07 | 0.01 | 0.02 |
| 40.73 40.76 69.62 92.0 91.9 98.3 | 114214 | 0.01 | 93867 | 98 | 0.01 | 0.07 | 0.01 | 0.02 |
| 40.72 40.72 69.67 92.0 92.0 98.3 | 114144 | 0.01 | 94275 | 99 | 0 | 0.07 | 0.01 | 0.02 |
| 40.72 40.72 69.63 91.9 92.0 98.2 | 114123 | 0.01 | 93742 | 98 | 0.01 | 0.07 | 0.01 | 0.02 |
| 40.60 40.71 69.66 91.9 91.9 98.3 | 113784 | 0 | 93870 | 98 | 0.01 | 0.07 | 0.01 | 0.02 |
| 40.70 40.72 69.66 91.9 92.0 98.2 | 114124 | 0.01 | 94101 | 99 | 0 | 0.07 | 0.01 | 0.02 |
| 40.71 40.73 69.66 91.9 91.9 98.3 | 114140 | 0.01 | 94077 | 99 | 0 | 0.07 | 0.01 | 0.02 |
| 40.72 40.82 69.69 91.8 91.9 98.2 | 114518 | 0.01 | 94017 | 99 | 0.01 | 0.07 | 0.01 | 0.03 |
| 40.72 40.77 69.63 92.0 91.9 98.1 | 114292 | 0.01 | 93749 | 98 | 0.01 | 0.07 | 0.01 | 0.03 |
| 40.69 40.72 69.60 92.0 92.1 98.3 | 113958 | 0 | 93595 | 98 | 0.01 | 0.07 | 0.01 | 0.03 |
| 40.72 40.72 69.66 91.9 91.9 98.0 | 114230 | 0.01 | 94017 | 99 | 0.01 | 0.07 | 0.02 | 0.03 |
| 40.72 40.82 69.64 91.9 91.9 98.2 | 114431 | 0.01 | 93838 | 98 | 0.01 | 0.07 | 0.01 | 0.03 |
| 40.69 40.72 69.66 91.9 92.1 98.3 | 114065 | 0.01 | 94173 | 99 | 0 | 0.07 | 0.02 | 0.03 |
| 40.72 40.83 69.66 91.9 91.9 98.2 | 114507 | 0.01 | 93960 | 98 | 0.01 | 0.07 | 0.02 | 0.03 |
| 40.71 40.72 69.66 91.9 91.9 98.3 | 114109 | 0.01 | 94103 | 99 | 0 | 0.07 | 0.02 | 0.03 |
| 40.72 40.78 69.63 91.9 91.9 98.3 | 114277 | 0.01 | 93862 | 98 | 0.01 | 0.07 | 0.02 | 0.03 |
| 40.72 40.73 69.64 92.0 92.0 98.3 | 114113 | 0.01 | 94089 | 99 | 0 | 0.07 | 0.02 | 0.04 |
| 40.72 40.73 69.63 92.0 91.9 98.3 | 114110 | 0.01 | 93890 | 98 | 0.01 | 0.07 | 0.02 | 0.04 |
| 40.70 40.72 69.59 92.0 91.8 98.2 | 114017 | 0.01 | 93302 | 98 | 0.02 | 0.07 | 0.01 | 0.04 |
| 40.60 40.72 69.67 91.9 91.8 98.2 | 113865 | 0 | 93126 | 98 | 0.02 | 0.07 | 0.02 | 0.04 |
| 40.72 40.72 69.66 91.9 91.9 98.2 | 114178 | 0.01 | 94031 | 99 | 0.01 | 0.07 | 0.03 | 0.04 |
| 40.72 40.74 69.66 91.9 91.9 98.1 | 114275 | 0.01 | 94063 | 99 | 0 | 0.07 | 0.03 | 0.04 |
| 40.72 40.73 69.66 92.0 91.9 98.3 | 114151 | 0.01 | 94188 | 99 | 0 | 0.07 | 0.03 | 0.04 |
| 40.60 40.70 69.58 92.1 91.9 98.4 | 113599 | 0 | 93047 | 98 | 0.02 | 0.07 | 0.02 | 0.04 |
| 40.72 40.72 69.67 91.9 91.8 98.2 | 114191 | 0.01 | 93419 | 98 | 0.01 | 0.07 | 0.02 | 0.04 |
| 40.62 40.71 69.66 91.9 91.6 98.3 | 113880 | 0 | 93138 | 98 | 0.02 | 0.07 | 0.02 | 0.04 |
| 40.72 40.83 69.66 91.6 91.9 98.1 | 114543 | 0.01 | 92656 | 97 | 0.03 | 0.07 | 0.01 | 0.04 |
| 40.70 40.72 69.66 91.9 91.9 98.2 | 114150 | 0.01 | 93970 | 98 | 0.01 | 0.07 | 0.03 | 0.04 |
| 40.73 40.74 69.66 91.9 92.1 98.1 | 114266 | 0.01 | 94194 | 99 | 0 | 0.07 | 0.03 | 0.05 |
| 40.72 40.73 69.69 92.0 91.9 98.3 | 114199 | 0.01 | 94373 | 99 | 0 | 0.07 | 0.04 | 0.05 |
| 40.72 40.72 69.65 92.0 91.9 98.3 | 114110 | 0.01 | 94065 | 99 | 0 | 0.07 | 0.04 | 0.05 |
| 40.72 40.82 69.66 91.8 91.9 98.2 | 114470 | 0.01 | 93872 | 98 | 0.01 | 0.07 | 0.03 | 0.05 |
| 40.53 40.72 69.66 91.9 92.0 98.2 | 113637 | 0 | 93709 | 98 | 0.01 | 0.07 | 0.04 | 0.05 |
| 40.67 40.71 69.66 91.9 91.9 98.2 | 114013 | 0.01 | 94057 | 99 | 0 | 0.07 | 0.04 | 0.05 |
| 40.53 40.72 69.66 91.8 92.1 98.2 | 113621 | 0 | 92029 | 96 | 0.04 | 0.07 | 0.02 | 0.06 |
| 40.72 40.83 69.67 91.5 91.9 98.1 | 114555 | 0.01 | 91895 | 96 | 0.04 | 0.07 | 0.01 | 0.06 |
| 40.72 40.93 69.67 91.8 91.9 98.1 | 114816 | 0.02 | 92639 | 97 | 0.03 | 0.07 | 0.02 | 0.06 |
| 40.72 40.72 69.67 91.8 91.9 98.0 | 114242 | 0.01 | 93340 | 98 | 0.02 | 0.07 | 0.03 | 0.06 |
| 40.60 40.77 69.60 92.0 91.7 98.1 | 113913 | 0 | 92296 | 97 | 0.03 | 0.07 | 0.02 | 0.06 |
| 40.64 40.72 69.67 91.9 91.9 98.1 | 113990 | 0 | 93360 | 98 | 0.02 | 0.07 | 0.04 | 0.06 |
| 40.71 40.74 69.66 91.9 91.9 98.2 | 114207 | 0.01 | 94097 | 99 | 0 | 0.08 | 0.05 | 0.06 |
| 40.72 40.82 69.67 91.7 91.9 98.2 | 114482 | 0.01 | 93092 | 98 | 0.02 | 0.07 | 0.03 | 0.07 |
| 40.69 40.72 69.63 91.9 92.0 98.3 | 114024 | 0.01 | 93886 | 98 | 0.01 | 0.08 | 0.05 | 0.07 |
| 40.72 40.82 69.58 91.9 91.9 98.2 | 114325 | 0.01 | 93248 | 98 | 0.02 | 0.07 | 0.04 | 0.07 |
| 40.72 40.73 69.61 92.0 91.9 98.3 | 114060 | 0.01 | 93703 | 98 | 0.01 | 0.08 | 0.06 | 0.08 |
| 40.69 40.72 69.57 91.9 92.1 98.3 | 113906 | 0 | 92940 | 97 | 0.02 | 0.08 | 0.06 | 0.09 |
| 40.72 40.83 69.50 91.7 92.0 98.1 | 114265 | 0.01 | 91089 | 95 | 0.05 | 0.07 | 0.04 | 0.1 |
| 40.72 40.72 69.63 91.9 91.9 98.2 | 114137 | 0.01 | 93712 | 98 | 0.01 | 0.08 | 0.14 | 0.16 |
+----------------------------------+----------+----------------+------------+-------------+-------------------+-----------+-----------------+-----------------+
Using d_min_step 0.1
Indexed crystal models:
model 1 (94166 reflections):
Crystal:
Unit cell: (40.717, 40.730, 69.663, 91.978, 91.906, 98.339)
Space group: P 1
U matrix: {{ 0.8417, 0.5364, 0.0626},
{-0.1836, 0.1751, 0.9673},
{ 0.5079, -0.8256, 0.2459}}
B matrix: {{ 0.0246, 0.0000, 0.0000},
{ 0.0036, 0.0248, 0.0000},
{ 0.0010, 0.0010, 0.0144}}
A = UB: {{ 0.0227, 0.0134, 0.0009},
{-0.0029, 0.0053, 0.0139},
{ 0.0097, -0.0202, 0.0035}}
+------------+-------------+---------------+-------------+
| Imageset | # indexed | # unindexed | % indexed |
|------------+-------------+---------------+-------------|
| 0 | 94166 | 1262 | 98.7% |
+------------+-------------+---------------+-------------+
################################################################################
Starting refinement (macro-cycle 1)
################################################################################
Summary statistics for 93816 observations matched to predictions:
+-------------------+--------+----------+---------+----------+-------+
| | Min | Q1 | Med | Q3 | Max |
|-------------------+--------+----------+---------+----------+-------|
| Xc - Xo (mm) | -1.681 | -0.4675 | -0.2047 | 0.3707 | 1.383 |
| Yc - Yo (mm) | -1.731 | -0.6009 | -0.2953 | -0.00193 | 2.226 |
| Phic - Phio (deg) | -1.707 | -0.08649 | 0.01357 | 0.1076 | 2.149 |
| X weights | 226.7 | 388 | 398.7 | 403.7 | 405.6 |
| Y weights | 211.5 | 373.8 | 393.2 | 402.4 | 405.6 |
| Phi weights | 39.33 | 47.93 | 48 | 48 | 48 |
+-------------------+--------+----------+---------+----------+-------+
Detecting centroid outliers using the Tukey algorithm
3106 reflections have been flagged as outliers
90710 reflections remain in the manager
Summary statistics for 90710 observations matched to predictions:
+-------------------+--------+----------+---------+----------+--------+
| | Min | Q1 | Med | Q3 | Max |
|-------------------+--------+----------+---------+----------+--------|
| Xc - Xo (mm) | -1.681 | -0.4729 | -0.2157 | 0.3737 | 1.383 |
| Yc - Yo (mm) | -1.583 | -0.6121 | -0.3087 | -0.03742 | 1.006 |
| Phic - Phio (deg) | -0.423 | -0.08685 | 0.01122 | 0.1031 | 0.4516 |
| X weights | 226.7 | 388.5 | 398.9 | 403.7 | 405.6 |
| Y weights | 211.5 | 374.3 | 393.6 | 402.6 | 405.6 |
| Phi weights | 39.33 | 47.94 | 48 | 48 | 48 |
+-------------------+--------+----------+---------+----------+--------+
There are 16 parameters to refine against 36000 reflections in 3 dimensions
Refinement steps:
+--------+--------+----------+----------+------------+
| Step | Nref | RMSD_X | RMSD_Y | RMSD_Phi |
| | | (mm) | (mm) | (deg) |
|--------+--------+----------+----------+------------|
| 0 | 36000 | 0.56197 | 0.55131 | 0.13413 |
| 1 | 36000 | 0.24338 | 0.26503 | 0.15575 |
| 2 | 36000 | 0.10648 | 0.13198 | 0.13476 |
| 3 | 36000 | 0.055785 | 0.059567 | 0.10888 |
| 4 | 36000 | 0.051066 | 0.052336 | 0.10514 |
| 5 | 36000 | 0.050906 | 0.052372 | 0.10505 |
| 6 | 36000 | 0.050901 | 0.052378 | 0.10505 |
+--------+--------+----------+----------+------------+
RMSD no longer decreasing
RMSDs by experiment:
+-------+--------+----------+----------+------------+
| Exp | Nref | RMSD_X | RMSD_Y | RMSD_Z |
| id | | (px) | (px) | (images) |
|-------+--------+----------+----------+------------|
| 0 | 36000 | 0.29594 | 0.30452 | 0.2101 |
+-------+--------+----------+----------+------------+
Refined crystal models:
model 1 (93847 reflections):
Crystal:
Unit cell: (40.5519(7), 40.5591(7), 69.2964(13), 92.0155(4), 91.9752(4), 98.0783(4))
Space group: P 1
U matrix: {{ 0.8429, 0.5343, 0.0638},
{-0.1841, 0.1750, 0.9672},
{ 0.5056, -0.8270, 0.2459}}
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 | % indexed |
|------------+-------------+---------------+-------------|
| 0 | 93847 | 1286 | 98.6% |
+------------+-------------+---------------+-------------+
Increasing resolution to 1.71 Angstrom
Indexed crystal models:
model 1 (101813 reflections):
Crystal:
Unit cell: (40.5519(7), 40.5591(7), 69.2964(13), 92.0155(4), 91.9752(4), 98.0783(4))
Space group: P 1
U matrix: {{ 0.8429, 0.5343, 0.0638},
{-0.1841, 0.1750, 0.9672},
{ 0.5056, -0.8270, 0.2459}}
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 | % indexed |
|------------+-------------+---------------+-------------|
| 0 | 102009 | 413 | 99.6% |
+------------+-------------+---------------+-------------+
################################################################################
Starting refinement (macro-cycle 2)
################################################################################
Summary statistics for 101460 observations matched to predictions:
+-------------------+---------+----------+------------+---------+--------+
| | Min | Q1 | Med | Q3 | Max |
|-------------------+---------+----------+------------+---------+--------|
| Xc - Xo (mm) | -0.3659 | -0.03707 | -0.002529 | 0.03158 | 0.3623 |
| Yc - Yo (mm) | -0.8234 | -0.03127 | -0.0002209 | 0.03123 | 0.9301 |
| Phic - Phio (deg) | -0.8541 | -0.0814 | 0.0005383 | 0.08299 | 1.311 |
| X weights | 226.7 | 384.8 | 397.6 | 403.4 | 405.6 |
| Y weights | 173.8 | 369.2 | 391 | 401.9 | 405.6 |
| Phi weights | 39.33 | 47.94 | 48 | 48 | 48 |
+-------------------+---------+----------+------------+---------+--------+
Detecting centroid outliers using the Tukey algorithm
4886 reflections have been flagged as outliers
96574 reflections remain in the manager
Summary statistics for 96574 observations matched to predictions:
+-------------------+---------+----------+-----------+---------+--------+
| | Min | Q1 | Med | Q3 | Max |
|-------------------+---------+----------+-----------+---------+--------|
| Xc - Xo (mm) | -0.1672 | -0.03646 | -0.002887 | 0.03019 | 0.159 |
| Yc - Yo (mm) | -0.1632 | -0.03001 | -0.000363 | 0.02939 | 0.1893 |
| Phic - Phio (deg) | -0.3509 | -0.08067 | 0.0001275 | 0.08135 | 0.3266 |
| X weights | 226.7 | 386.4 | 398.2 | 403.6 | 405.6 |
| Y weights | 211.5 | 371.9 | 392.3 | 402.2 | 405.6 |
| Phi weights | 40.76 | 47.94 | 48 | 48 | 48 |
+-------------------+---------+----------+-----------+---------+--------+
There are 16 parameters to refine against 36000 reflections in 3 dimensions
Refinement steps:
+--------+--------+----------+----------+------------+
| Step | Nref | RMSD_X | RMSD_Y | RMSD_Phi |
| | | (mm) | (mm) | (deg) |
|--------+--------+----------+----------+------------|
| 0 | 36000 | 0.048834 | 0.046981 | 0.10531 |
| 1 | 36000 | 0.048722 | 0.046957 | 0.10525 |
| 2 | 36000 | 0.048696 | 0.04698 | 0.10522 |
| 3 | 36000 | 0.048684 | 0.046993 | 0.1052 |
| 4 | 36000 | 0.048681 | 0.046997 | 0.1052 |
+--------+--------+----------+----------+------------+
RMSD no longer decreasing
RMSDs by experiment:
+-------+--------+----------+----------+------------+
| Exp | Nref | RMSD_X | RMSD_Y | RMSD_Z |
| id | | (px) | (px) | (images) |
|-------+--------+----------+----------+------------|
| 0 | 36000 | 0.28303 | 0.27324 | 0.2104 |
+-------+--------+----------+----------+------------+
Refined crystal models:
model 1 (101813 reflections):
Crystal:
Unit cell: (40.5520(6), 40.5588(6), 69.2953(10), 92.0189(4), 91.9731(4), 98.0772(4))
Space group: P 1
U matrix: {{ 0.8429, 0.5343, 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 | % indexed |
|------------+-------------+---------------+-------------|
| 0 | 101813 | 609 | 99.4% |
+------------+-------------+---------------+-------------+
Increasing resolution to 1.57 Angstrom
Indexed crystal models:
model 1 (105712 reflections):
Crystal:
Unit cell: (40.5520(6), 40.5588(6), 69.2953(10), 92.0189(4), 91.9731(4), 98.0772(4))
Space group: P 1
U matrix: {{ 0.8429, 0.5343, 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 | % indexed |
|------------+-------------+---------------+-------------|
| 0 | 105724 | 686 | 99.4% |
+------------+-------------+---------------+-------------+
################################################################################
Starting refinement (macro-cycle 3)
################################################################################
Summary statistics for 105342 observations matched to predictions:
+-------------------+---------+----------+------------+---------+--------+
| | Min | Q1 | Med | Q3 | Max |
|-------------------+---------+----------+------------+---------+--------|
| Xc - Xo (mm) | -0.3602 | -0.03583 | -0.0009226 | 0.03338 | 0.3599 |
| Yc - Yo (mm) | -1.133 | -0.03272 | -0.0005848 | 0.03157 | 1.468 |
| Phic - Phio (deg) | -0.988 | -0.08148 | 0.001034 | 0.08422 | 1.291 |
| X weights | 210.9 | 382.8 | 397.1 | 403.3 | 405.6 |
| Y weights | 173.8 | 366.4 | 389.9 | 401.7 | 405.6 |
| Phi weights | 39.29 | 47.95 | 48 | 48 | 48 |
+-------------------+---------+----------+------------+---------+--------+
Detecting centroid outliers using the Tukey algorithm
5469 reflections have been flagged as outliers
99873 reflections remain in the manager
Summary statistics for 99873 observations matched to predictions:
+-------------------+---------+----------+------------+---------+--------+
| | Min | Q1 | Med | Q3 | Max |
|-------------------+---------+----------+------------+---------+--------|
| Xc - Xo (mm) | -0.1752 | -0.03485 | -0.00104 | 0.03209 | 0.1659 |
| Yc - Yo (mm) | -0.1713 | -0.03096 | -0.0005444 | 0.02996 | 0.198 |
| Phic - Phio (deg) | -0.3535 | -0.08055 | 0.0006649 | 0.08254 | 0.3272 |
| X weights | 210.9 | 384.7 | 397.7 | 403.4 | 405.6 |
| Y weights | 211.5 | 369.5 | 391.3 | 402 | 405.6 |
| Phi weights | 39.29 | 47.94 | 48 | 48 | 48 |
+-------------------+---------+----------+------------+---------+--------+
There are 16 parameters to refine against 36000 reflections in 3 dimensions
Refinement steps:
+--------+--------+----------+----------+------------+
| Step | Nref | RMSD_X | RMSD_Y | RMSD_Phi |
| | | (mm) | (mm) | (deg) |
|--------+--------+----------+----------+------------|
| 0 | 36000 | 0.049172 | 0.04859 | 0.10641 |
| 1 | 36000 | 0.049153 | 0.04854 | 0.10638 |
| 2 | 36000 | 0.049152 | 0.048515 | 0.10639 |
| 3 | 36000 | 0.049155 | 0.048503 | 0.1064 |
| 4 | 36000 | 0.049156 | 0.0485 | 0.1064 |
+--------+--------+----------+----------+------------+
RMSD no longer decreasing
RMSDs by experiment:
+-------+--------+----------+----------+------------+
| Exp | Nref | RMSD_X | RMSD_Y | RMSD_Z |
| id | | (px) | (px) | (images) |
|-------+--------+----------+----------+------------|
| 0 | 36000 | 0.28579 | 0.28197 | 0.21281 |
+-------+--------+----------+----------+------------+
Refined crystal models:
model 1 (105712 reflections):
Crystal:
Unit cell: (40.5519(5), 40.5583(5), 69.2938(9), 92.0190(3), 91.9725(3), 98.0761(4))
Space group: P 1
U matrix: {{ 0.8429, 0.5343, 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 | % indexed |
|------------+-------------+---------------+-------------|
| 0 | 105712 | 699 | 99.3% |
+------------+-------------+---------------+-------------+
Increasing resolution to 1.43 Angstrom
Indexed crystal models:
model 1 (107089 reflections):
Crystal:
Unit cell: (40.5519(5), 40.5583(5), 69.2938(9), 92.0190(3), 91.9725(3), 98.0761(4))
Space group: P 1
U matrix: {{ 0.8429, 0.5343, 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 | % indexed |
|------------+-------------+---------------+-------------|
| 0 | 107097 | 723 | 99.3% |
+------------+-------------+---------------+-------------+
################################################################################
Starting refinement (macro-cycle 4)
################################################################################
Summary statistics for 106715 observations matched to predictions:
+-------------------+---------+----------+------------+---------+--------+
| | Min | Q1 | Med | Q3 | Max |
|-------------------+---------+----------+------------+---------+--------|
| Xc - Xo (mm) | -1.939 | -0.036 | -0.0006477 | 0.03379 | 0.3619 |
| Yc - Yo (mm) | -1.114 | -0.03302 | -0.0004506 | 0.03208 | 1.479 |
| Phic - Phio (deg) | -0.9716 | -0.08205 | 0.0008108 | 0.08438 | 1.301 |
| X weights | 194 | 382 | 396.8 | 403.2 | 405.6 |
| Y weights | 173.5 | 365.2 | 389.4 | 401.6 | 405.6 |
| Phi weights | 39.29 | 47.95 | 48 | 48 | 48 |
+-------------------+---------+----------+------------+---------+--------+
Detecting centroid outliers using the Tukey algorithm
5604 reflections have been flagged as outliers
101111 reflections remain in the manager
Summary statistics for 101111 observations matched to predictions:
+-------------------+---------+----------+------------+---------+--------+
| | Min | Q1 | Med | Q3 | Max |
|-------------------+---------+----------+------------+---------+--------|
| Xc - Xo (mm) | -0.1747 | -0.03501 | -0.0007897 | 0.03243 | 0.1648 |
| Yc - Yo (mm) | -0.1716 | -0.03118 | -0.0004102 | 0.03034 | 0.1979 |
| Phic - Phio (deg) | -0.3525 | -0.08096 | 0.0004804 | 0.08264 | 0.3495 |
| X weights | 210.9 | 384 | 397.6 | 403.4 | 405.6 |
| Y weights | 191.7 | 368.6 | 390.9 | 401.9 | 405.6 |
| Phi weights | 39.29 | 47.95 | 48 | 48 | 48 |
+-------------------+---------+----------+------------+---------+--------+
There are 16 parameters to refine against 36000 reflections in 3 dimensions
Refinement steps:
+--------+--------+----------+----------+------------+
| Step | Nref | RMSD_X | RMSD_Y | RMSD_Phi |
| | | (mm) | (mm) | (deg) |
|--------+--------+----------+----------+------------|
| 0 | 36000 | 0.049499 | 0.048536 | 0.1067 |
| 1 | 36000 | 0.049483 | 0.048491 | 0.10673 |
| 2 | 36000 | 0.049474 | 0.048479 | 0.10676 |
| 3 | 36000 | 0.049473 | 0.048472 | 0.10677 |
| 4 | 36000 | 0.049473 | 0.04847 | 0.10677 |
+--------+--------+----------+----------+------------+
RMSD no longer decreasing
RMSDs by experiment:
+-------+--------+----------+----------+------------+
| Exp | Nref | RMSD_X | RMSD_Y | RMSD_Z |
| id | | (px) | (px) | (images) |
|-------+--------+----------+----------+------------|
| 0 | 36000 | 0.28764 | 0.2818 | 0.21355 |
+-------+--------+----------+----------+------------+
Refined crystal models:
model 1 (107089 reflections):
Crystal:
Unit cell: (40.5513(5), 40.5578(5), 69.2911(8), 92.0192(3), 91.9728(3), 98.0758(4))
Space group: P 1
U matrix: {{ 0.8429, 0.5343, 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 | % indexed |
|------------+-------------+---------------+-------------|
| 0 | 107089 | 731 | 99.3% |
+------------+-------------+---------------+-------------+
Increasing resolution to 1.29 Angstrom
Indexed crystal models:
model 1 (107264 reflections):
Crystal:
Unit cell: (40.5513(5), 40.5578(5), 69.2911(8), 92.0192(3), 91.9728(3), 98.0758(4))
Space group: P 1
U matrix: {{ 0.8429, 0.5343, 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 | % indexed |
|------------+-------------+---------------+-------------|
| 0 | 107277 | 720 | 99.3% |
+------------+-------------+---------------+-------------+
################################################################################
Starting refinement (macro-cycle 5)
################################################################################
Summary statistics for 106891 observations matched to predictions:
+-------------------+---------+----------+------------+---------+--------+
| | Min | Q1 | Med | Q3 | Max |
|-------------------+---------+----------+------------+---------+--------|
| Xc - Xo (mm) | -1.937 | -0.03563 | -0.0001711 | 0.03425 | 0.3641 |
| Yc - Yo (mm) | -1.104 | -0.03295 | -0.0004634 | 0.0322 | 1.517 |
| Phic - Phio (deg) | -0.9614 | -0.08213 | 0.0006723 | 0.08443 | 1.308 |
| X weights | 194 | 381.9 | 396.8 | 403.2 | 405.6 |
| Y weights | 143.8 | 365.1 | 389.4 | 401.6 | 405.6 |
| Phi weights | 39.29 | 47.95 | 48 | 48 | 48 |
+-------------------+---------+----------+------------+---------+--------+
Detecting centroid outliers using the Tukey algorithm
5626 reflections have been flagged as outliers
101265 reflections remain in the manager
Summary statistics for 101265 observations matched to predictions:
+-------------------+---------+----------+------------+---------+--------+
| | Min | Q1 | Med | Q3 | Max |
|-------------------+---------+----------+------------+---------+--------|
| Xc - Xo (mm) | -0.1732 | -0.0347 | -0.0003111 | 0.03288 | 0.1637 |
| Yc - Yo (mm) | -0.1724 | -0.03122 | -0.0004946 | 0.03034 | 0.201 |
| Phic - Phio (deg) | -0.3539 | -0.08118 | 0.0003692 | 0.08282 | 0.3509 |
| X weights | 210.9 | 383.9 | 397.5 | 403.4 | 405.6 |
| Y weights | 143.8 | 368.4 | 390.9 | 401.9 | 405.6 |
| Phi weights | 39.29 | 47.95 | 48 | 48 | 48 |
+-------------------+---------+----------+------------+---------+--------+
There are 16 parameters to refine against 36000 reflections in 3 dimensions
Refinement steps:
+--------+--------+----------+----------+------------+
| Step | Nref | RMSD_X | RMSD_Y | RMSD_Phi |
| | | (mm) | (mm) | (deg) |
|--------+--------+----------+----------+------------|
| 0 | 36000 | 0.049518 | 0.04852 | 0.10693 |
| 1 | 36000 | 0.049498 | 0.048528 | 0.10688 |
| 2 | 36000 | 0.049495 | 0.048535 | 0.10686 |
| 3 | 36000 | 0.049494 | 0.048537 | 0.10686 |
+--------+--------+----------+----------+------------+
RMSD no longer decreasing
RMSDs by experiment:
+-------+--------+----------+----------+------------+
| Exp | Nref | RMSD_X | RMSD_Y | RMSD_Z |
| id | | (px) | (px) | (images) |
|-------+--------+----------+----------+------------|
| 0 | 36000 | 0.28776 | 0.28219 | 0.21371 |
+-------+--------+----------+----------+------------+
Refined crystal models:
model 1 (107264 reflections):
Crystal:
Unit cell: (40.5519(5), 40.5585(5), 69.2922(8), 92.0198(3), 91.9722(3), 98.0759(4))
Space group: P 1
U matrix: {{ 0.8429, 0.5343, 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 | % indexed |
|------------+-------------+---------------+-------------|
| 0 | 107264 | 733 | 99.3% |
+------------+-------------+---------------+-------------+
Saving refined experiments to indexed.expt
Saving refined reflections to indexed.refl
|
If successful, dials.index
writes two output data files - an
indexed.expt
containing the tuned
experimental model and determined parameters, and a indexed.refl
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
. A more verbose debug log can be generated by adding
the ‘-v’ option to a dials command line program, but this 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:
126 127 128 129 130 131 132 133 134 135 136 137 | +--------+--------+----------+----------+------------+
| Step | Nref | RMSD_X | RMSD_Y | RMSD_Phi |
| | | (mm) | (mm) | (deg) |
|--------+--------+----------+----------+------------|
| 0 | 36000 | 0.56197 | 0.55131 | 0.13413 |
| 1 | 36000 | 0.24338 | 0.26503 | 0.15575 |
| 2 | 36000 | 0.10648 | 0.13198 | 0.13476 |
| 3 | 36000 | 0.055785 | 0.059567 | 0.10888 |
| 4 | 36000 | 0.051066 | 0.052336 | 0.10514 |
| 5 | 36000 | 0.050906 | 0.052372 | 0.10505 |
| 6 | 36000 | 0.050901 | 0.052378 | 0.10505 |
+--------+--------+----------+----------+------------+
|
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:
549 550 551 552 553 | +------------+-------------+---------------+-------------+
| Imageset | # indexed | # unindexed | % indexed |
|------------+-------------+---------------+-------------|
| 0 | 107264 | 733 | 99.3% |
+------------+-------------+---------------+-------------+
|
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 indexed.expt indexed.refl
Now indexed/unindexed spots are differentiated by colour, and it is possible to see which spots were marked by dials.refine as outliers. If you have a dataset with multiple lattices present, it may be possible to spot them in the unindexed reflections.
In this case, we can see that the refinement has clearly resolved whatever systematic error was causing distortions in the reciprocal space view, and the determined reciprocal unit cell fits the data well:
Bravais Lattice Refinement¶
Since we didn’t know the Bravais lattice before indexing, we can now use dials.refine_bravais_settings to determine likely candidates. This takes the results of the P1 autoindexing and runs refinement with all of the possible Bravais settings applied, allowing you to choose your preferred solution:
dials.refine_bravais_settings indexed.expt indexed.refl
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.0457 | 2.375 | 0.604/0.968 | 35999 | oC | 52.59 60.69 68.41 90.00 90.00 90.00 | 218334 | a+b,-a+b,c |
| 4 | 3.0455 | 2.384 | 0.609/0.609 | 35999 | mC | 60.65 52.58 68.39 90.00 89.94 90.00 | 218080 | a-b,a+b,c |
| 3 | 3.0457 | 2.378 | 0.604/0.604 | 36000 | mP | 40.14 68.34 40.09 90.00 98.16 90.00 | 108857 | -a,-c,-b |
| * 2 | 0.0326 | 0.072 | 0.968/0.968 | 36000 | mC | 53.17 61.25 69.29 90.00 93.05 90.00 | 225340 | a+b,-a+b,c |
| * 1 | 0 | 0.07 | -/- | 36000 | aP | 40.55 40.56 69.29 92.02 91.97 98.08 | 112674 | a,b,c |
+------------+--------------+--------+--------------+----------+-----------+------------------------------------------+----------+------------+
* = recommended solution
Saving summary as bravais_summary.json
Saving solution 5 as bravais_setting_5.expt
Saving solution 4 as bravais_setting_4.expt
Saving solution 3 as bravais_setting_3.expt
Saving solution 2 as bravais_setting_2.expt
Saving solution 1 as bravais_setting_1.expt
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.expt
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.expt
, 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.refl file output by using
dials.reindex:
dials.reindex indexed.refl change_of_basis_op=a+b,-a+b,c
This outputs the file reindexed.refl
which we now
use as input to downstream programs, in place of the original
indexed.refl
.
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.expt reindexed.refl scan_varying=false
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 | DIALS 2.2.9-g061426e04-release
The following parameters have been modified:
refinement {
parameterisation {
scan_varying = False
}
}
input {
experiments = bravais_setting_2.expt
reflections = reindexed.refl
}
Configuring refiner
Summary statistics for 106891 observations matched to predictions:
+-------------------+--------+----------+------------+---------+--------+
| | Min | Q1 | Med | Q3 | Max |
|-------------------+--------+----------+------------+---------+--------|
| Xc - Xo (mm) | -1.948 | -0.03532 | -7.621e-05 | 0.03409 | 0.3577 |
| Yc - Yo (mm) | -1.174 | -0.03515 | -0.0003891 | 0.03422 | 1.681 |
| Phic - Phio (deg) | -1.047 | -0.08285 | 0.0008039 | 0.08427 | 1.356 |
| X weights | 194 | 381.9 | 396.8 | 403.2 | 405.6 |
| Y weights | 143.8 | 365.1 | 389.4 | 401.6 | 405.6 |
| Phi weights | 39.29 | 47.95 | 48 | 48 | 48 |
+-------------------+--------+----------+------------+---------+--------+
Detecting centroid outliers using the MCD algorithm
11193 reflections have been flagged as outliers
95698 reflections remain in the manager
Summary statistics for 95698 observations matched to predictions:
+-------------------+---------+----------+------------+---------+--------+
| | Min | Q1 | Med | Q3 | Max |
|-------------------+---------+----------+------------+---------+--------|
| Xc - Xo (mm) | -0.1758 | -0.03396 | -0.001026 | 0.03026 | 0.1723 |
| Yc - Yo (mm) | -0.1843 | -0.03204 | -0.0007666 | 0.02984 | 0.2342 |
| Phic - Phio (deg) | -0.3632 | -0.07953 | 0.000807 | 0.08146 | 0.3193 |
| X weights | 210.9 | 385.4 | 398.2 | 403.6 | 405.6 |
| Y weights | 143.8 | 370.6 | 392.1 | 402.2 | 405.6 |
| Phi weights | 40.76 | 47.94 | 48 | 48 | 48 |
+-------------------+---------+----------+------------+---------+--------+
There are 14 parameters to refine against 95698 reflections in 3 dimensions
Performing refinement of a single Experiment...
Refinement steps:
+--------+--------+----------+----------+------------+
| Step | Nref | RMSD_X | RMSD_Y | RMSD_Phi |
| | | (mm) | (mm) | (deg) |
|--------+--------+----------+----------+------------|
| 0 | 95698 | 0.046351 | 0.048046 | 0.10464 |
| 1 | 95698 | 0.046288 | 0.04797 | 0.10468 |
| 2 | 95698 | 0.046268 | 0.047948 | 0.10474 |
| 3 | 95698 | 0.046272 | 0.047935 | 0.10476 |
| 4 | 95698 | 0.046276 | 0.04793 | 0.10476 |
+--------+--------+----------+----------+------------+
RMSD no longer decreasing
RMSDs by experiment:
+-------+--------+----------+----------+------------+
| Exp | Nref | RMSD_X | RMSD_Y | RMSD_Z |
| id | | (px) | (px) | (images) |
|-------+--------+----------+----------+------------|
| 0 | 95698 | 0.26904 | 0.27867 | 0.20952 |
+-------+--------+----------+----------+------------+
Updating predictions for indexed reflections
Final refined crystal model:
Crystal:
Unit cell: (53.1698(3), 61.2427(5), 69.2884(5), 90.0, 93.04558(17), 90.0)
Space group: C 1 2 1
U matrix: {{ 0.9560, -0.2863, 0.0639},
{ 0.0114, 0.2539, 0.9672},
{-0.2931, -0.9239, 0.2460}}
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.expt
Saving reflections with updated predictions to refined.refl
|
This uses all reflections in refinement rather than a subset and provided a
small reduction in RMSDs, writing the results out to refined.expt
and refined.refl
.
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.expt refined.refl scan_varying=true
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | DIALS 2.2.9-g061426e04-release
The following parameters have been modified:
refinement {
parameterisation {
scan_varying = True
}
}
input {
experiments = refined.expt
reflections = refined.refl
}
Configuring refiner
Summary statistics for 106889 observations matched to predictions:
+-------------------+--------+----------+------------+---------+--------+
| | Min | Q1 | Med | Q3 | Max |
|-------------------+--------+----------+------------+---------+--------|
| Xc - Xo (mm) | -1.94 | -0.03432 | 0.0006267 | 0.03483 | 0.3635 |
| Yc - Yo (mm) | -1.181 | -0.03496 | -9.466e-05 | 0.03451 | 1.727 |
| Phic - Phio (deg) | -1.061 | -0.0839 | 3.415e-05 | 0.08361 | 1.378 |
| X weights | 194 | 381.9 | 396.8 | 403.2 | 405.6 |
| Y weights | 143.8 | 365.1 | 389.4 | 401.6 | 405.6 |
| Phi weights | 39.29 | 47.95 | 48 | 48 | 48 |
+-------------------+--------+----------+------------+---------+--------+
Detecting centroid outliers using the MCD algorithm
11474 reflections have been flagged as outliers
95415 reflections remain in the manager
Summary statistics for 95415 observations matched to predictions:
+-------------------+---------+----------+------------+---------+--------+
| | Min | Q1 | Med | Q3 | Max |
|-------------------+---------+----------+------------+---------+--------|
| Xc - Xo (mm) | -0.1597 | -0.03294 | -0.000389 | 0.03063 | 0.1746 |
| Yc - Yo (mm) | -0.1822 | -0.0315 | -0.0003536 | 0.03033 | 0.2338 |
| Phic - Phio (deg) | -0.3681 | -0.08071 | -7.198e-05 | 0.08054 | 0.3162 |
| X weights | 210.9 | 385.5 | 398.2 | 403.6 | 405.6 |
| Y weights | 143.8 | 370.7 | 392.1 | 402.3 | 405.6 |
| Phi weights | 40.76 | 47.94 | 48 | 48 | 48 |
+-------------------+---------+----------+------------+---------+--------+
There are 91 parameters to refine against 95415 reflections in 3 dimensions
Performing refinement of a single Experiment...
Refinement steps:
+--------+--------+----------+----------+------------+
| Step | Nref | RMSD_X | RMSD_Y | RMSD_Phi |
| | | (mm) | (mm) | (deg) |
|--------+--------+----------+----------+------------|
| 0 | 95415 | 0.045994 | 0.047882 | 0.1047 |
| 1 | 95415 | 0.043137 | 0.040683 | 0.10342 |
| 2 | 95415 | 0.041146 | 0.039717 | 0.1028 |
| 3 | 95415 | 0.040602 | 0.039511 | 0.10247 |
| 4 | 95415 | 0.040487 | 0.039501 | 0.10226 |
| 5 | 95415 | 0.040464 | 0.039497 | 0.10216 |
| 6 | 95415 | 0.040459 | 0.039496 | 0.10214 |
| 7 | 95415 | 0.040458 | 0.039497 | 0.10214 |
+--------+--------+----------+----------+------------+
RMSD no longer decreasing
RMSDs by experiment:
+-------+--------+----------+----------+------------+
| Exp | Nref | RMSD_X | RMSD_Y | RMSD_Z |
| id | | (px) | (px) | (images) |
|-------+--------+----------+----------+------------|
| 0 | 95415 | 0.23522 | 0.22963 | 0.20428 |
+-------+--------+----------+----------+------------+
Updating predictions for indexed reflections
Final refined crystal model:
Crystal:
Unit cell: (53.1698(3), 61.2427(5), 69.2884(5), 90.0, 93.04558(17), 90.0)
Space group: C 1 2 1
U matrix: {{ 0.9560, -0.2863, 0.0639},
{ 0.0114, 0.2539, 0.9672},
{-0.2931, -0.9239, 0.2460}}
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.expt
Saving reflections with updated predictions to refined.refl
|
which writes over the refined.expt
and
refined.refl
from the previous refinement step. By default the
scan-varying refinement looks for smooth changes over an interval of 36°
intervals, to avoid fitting unphysical models to noise, though this
parameter can be tuned. We can use the HTML report,
described shortly, to
view the results of fitting to smoothly varying crystal cell parameters:
In this tutorial, we see no overall increase in all three cell parameters. If significant cell volume increases had been observed that might be indicative of radiation damage. However we can’t yet conclude that there is no radiation damage from the lack of considerable change observed.
Integration¶
After the refinement is done the next step is integration, which is performed by the program dials.integrate. Mostly, the default parameters are fine for Pilatus data, which will perform XDS-like 3D profile fitting while using a generalized linear model in order to fit a Poisson-distributed background model. We will also increase the number of processors used to speed the job up.
dials.integrate refined.expt refined.refl nproc=4
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 8077 8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275 8276 8277 8278 8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 8361 8362 8363 8364 8365 8366 8367 8368 8369 8370 8371 8372 8373 8374 8375 8376 8377 8378 8379 8380 8381 8382 8383 8384 8385 8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 8411 8412 8413 8414 8415 8416 8417 8418 8419 8420 8421 8422 8423 8424 8425 8426 8427 8428 8429 8430 8431 8432 8433 8434 8435 8436 8437 8438 8439 8440 8441 8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 8456 8457 8458 8459 8460 8461 8462 8463 8464 8465 8466 8467 8468 8469 8470 8471 8472 8473 8474 8475 8476 8477 8478 8479 8480 8481 8482 8483 8484 8485 8486 8487 8488 8489 8490 8491 8492 8493 8494 8495 8496 8497 8498 8499 8500 8501 8502 8503 8504 8505 8506 8507 8508 8509 8510 8511 8512 8513 8514 8515 8516 8517 8518 8519 8520 8521 8522 8523 8524 8525 8526 8527 8528 8529 8530 8531 8532 8533 8534 8535 8536 8537 8538 8539 8540 8541 8542 8543 8544 8545 8546 8547 8548 8549 8550 8551 8552 8553 8554 8555 8556 8557 8558 8559 8560 8561 8562 8563 8564 8565 8566 8567 8568 8569 8570 8571 8572 8573 8574 8575 8576 8577 8578 8579 8580 8581 8582 8583 8584 8585 8586 8587 8588 8589 8590 8591 8592 8593 8594 8595 8596 8597 8598 8599 8600 8601 8602 8603 8604 8605 8606 8607 8608 8609 8610 8611 8612 8613 8614 8615 8616 8617 8618 8619 8620 8621 8622 8623 8624 8625 8626 8627 8628 8629 8630 8631 8632 8633 8634 8635 8636 8637 8638 8639 8640 8641 8642 8643 8644 8645 8646 8647 8648 8649 8650 8651 8652 8653 8654 8655 8656 8657 8658 8659 8660 8661 8662 8663 8664 8665 8666 8667 8668 8669 8670 8671 8672 8673 8674 8675 8676 8677 8678 8679 8680 8681 8682 8683 8684 8685 8686 8687 8688 8689 8690 8691 8692 8693 8694 8695 8696 8697 8698 8699 8700 8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 8732 8733 8734 8735 8736 8737 8738 8739 8740 8741 8742 8743 8744 8745 8746 8747 8748 8749 8750 8751 8752 8753 8754 8755 8756 8757 8758 8759 8760 8761 8762 8763 8764 8765 8766 8767 8768 8769 8770 8771 8772 8773 8774 8775 8776 8777 8778 8779 8780 8781 8782 8783 8784 8785 8786 8787 8788 8789 8790 8791 8792 8793 8794 8795 8796 8797 8798 8799 8800 8801 8802 8803 8804 8805 8806 8807 8808 8809 8810 8811 8812 8813 8814 8815 8816 8817 8818 8819 8820 8821 8822 8823 8824 8825 8826 8827 8828 8829 8830 8831 8832 8833 8834 8835 8836 8837 8838 8839 8840 8841 8842 8843 8844 8845 8846 8847 8848 8849 8850 8851 8852 8853 8854 8855 8856 8857 8858 8859 8860 8861 8862 8863 8864 8865 8866 8867 8868 8869 8870 8871 8872 8873 8874 8875 8876 8877 8878 8879 8880 8881 8882 8883 8884 8885 8886 8887 8888 8889 8890 8891 8892 8893 8894 8895 8896 8897 8898 8899 8900 8901 8902 8903 8904 8905 8906 8907 8908 8909 8910 8911 8912 8913 8914 8915 8916 8917 8918 8919 8920 8921 8922 8923 8924 8925 8926 8927 8928 8929 8930 8931 8932 8933 8934 8935 8936 8937 8938 8939 8940 8941 8942 8943 8944 8945 8946 8947 8948 8949 8950 8951 8952 8953 8954 8955 8956 8957 8958 8959 8960 8961 8962 8963 8964 8965 8966 8967 8968 8969 8970 8971 8972 8973 8974 8975 8976 8977 8978 8979 8980 8981 8982 8983 8984 8985 8986 8987 8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 9015 9016 9017 9018 9019 9020 9021 9022 9023 9024 9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 9052 9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 9100 9101 9102 9103 9104 9105 9106 9107 9108 9109 9110 9111 9112 9113 9114 9115 9116 9117 9118 9119 9120 9121 9122 9123 9124 9125 9126 9127 9128 9129 9130 9131 9132 9133 9134 9135 9136 9137 9138 9139 9140 9141 9142 9143 9144 9145 9146 9147 9148 9149 9150 9151 9152 9153 9154 9155 9156 9157 9158 9159 9160 9161 9162 9163 9164 9165 9166 9167 9168 9169 9170 9171 9172 9173 9174 9175 9176 9177 9178 9179 9180 9181 9182 9183 9184 9185 9186 9187 9188 9189 9190 9191 9192 9193 9194 9195 9196 9197 9198 9199 9200 9201 9202 9203 9204 9205 9206 9207 9208 9209 9210 9211 9212 9213 9214 9215 9216 9217 9218 9219 9220 9221 9222 9223 9224 9225 9226 9227 9228 9229 9230 9231 9232 9233 9234 9235 9236 9237 9238 9239 9240 9241 9242 9243 9244 9245 9246 9247 9248 9249 9250 9251 9252 9253 9254 9255 9256 9257 9258 9259 9260 9261 9262 9263 9264 9265 9266 9267 9268 9269 9270 9271 9272 9273 9274 9275 9276 9277 9278 9279 9280 9281 9282 9283 9284 9285 9286 9287 9288 9289 9290 9291 9292 9293 9294 9295 9296 9297 9298 9299 9300 9301 9302 9303 9304 9305 9306 9307 9308 9309 9310 9311 9312 9313 9314 9315 9316 9317 9318 9319 9320 9321 9322 9323 9324 9325 9326 9327 9328 9329 9330 9331 9332 9333 9334 9335 9336 9337 9338 9339 9340 9341 9342 9343 9344 9345 9346 9347 9348 9349 9350 9351 9352 9353 9354 9355 9356 9357 9358 9359 9360 9361 9362 9363 9364 9365 9366 9367 9368 9369 9370 9371 9372 9373 9374 9375 9376 9377 9378 9379 9380 9381 9382 9383 9384 9385 9386 9387 9388 9389 9390 9391 9392 9393 9394 9395 9396 9397 9398 9399 9400 9401 9402 9403 9404 9405 9406 9407 9408 9409 9410 9411 9412 9413 9414 9415 9416 9417 9418 9419 9420 9421 9422 9423 9424 9425 9426 9427 9428 9429 9430 9431 9432 9433 9434 9435 9436 9437 9438 9439 9440 9441 9442 9443 9444 9445 9446 9447 9448 9449 9450 9451 9452 9453 9454 9455 9456 9457 9458 9459 9460 9461 9462 9463 9464 9465 9466 9467 9468 9469 9470 9471 9472 9473 9474 9475 9476 9477 9478 9479 9480 9481 9482 9483 9484 9485 9486 9487 9488 9489 9490 9491 9492 9493 9494 9495 9496 9497 9498 9499 9500 9501 9502 9503 9504 9505 9506 9507 9508 9509 9510 9511 9512 9513 9514 9515 9516 9517 9518 9519 9520 9521 9522 9523 9524 9525 9526 9527 9528 9529 9530 9531 9532 9533 9534 9535 9536 9537 9538 9539 9540 9541 9542 9543 9544 9545 9546 9547 9548 9549 9550 9551 9552 9553 9554 9555 9556 9557 9558 9559 9560 9561 9562 9563 9564 9565 9566 9567 9568 9569 9570 9571 9572 9573 9574 9575 9576 9577 9578 9579 9580 9581 9582 9583 9584 9585 9586 9587 9588 9589 9590 9591 9592 9593 9594 9595 9596 9597 9598 9599 9600 9601 9602 9603 9604 9605 9606 9607 9608 9609 9610 9611 9612 9613 9614 9615 9616 9617 9618 9619 9620 9621 9622 9623 9624 9625 9626 9627 9628 9629 9630 9631 9632 9633 9634 9635 9636 9637 9638 9639 9640 9641 9642 9643 9644 9645 9646 9647 9648 9649 9650 9651 9652 9653 9654 9655 9656 9657 9658 9659 9660 9661 9662 9663 9664 9665 9666 9667 9668 9669 9670 9671 9672 9673 9674 9675 9676 9677 9678 9679 9680 9681 9682 9683 9684 9685 9686 9687 9688 9689 9690 9691 9692 9693 9694 9695 9696 9697 9698 9699 9700 9701 9702 9703 9704 9705 9706 9707 9708 9709 9710 9711 9712 9713 9714 9715 9716 9717 9718 9719 9720 9721 9722 9723 9724 9725 9726 9727 9728 9729 9730 9731 9732 9733 9734 9735 9736 9737 9738 9739 9740 9741 9742 9743 9744 9745 9746 9747 9748 9749 9750 9751 9752 9753 9754 9755 9756 9757 9758 9759 9760 9761 9762 9763 9764 9765 9766 9767 9768 9769 9770 9771 9772 9773 9774 9775 9776 9777 9778 9779 9780 9781 9782 9783 9784 9785 9786 9787 9788 9789 9790 9791 9792 9793 9794 9795 9796 9797 9798 9799 9800 9801 9802 9803 9804 9805 9806 9807 9808 9809 9810 9811 9812 9813 9814 9815 9816 9817 9818 9819 9820 9821 9822 9823 9824 9825 9826 9827 9828 9829 9830 9831 9832 9833 9834 9835 9836 9837 9838 9839 9840 9841 9842 9843 9844 9845 9846 9847 9848 9849 9850 9851 9852 9853 9854 9855 9856 9857 9858 9859 9860 9861 9862 9863 9864 9865 9866 9867 9868 9869 9870 9871 9872 9873 9874 9875 9876 9877 9878 9879 9880 9881 9882 9883 9884 9885 9886 9887 9888 9889 9890 9891 9892 9893 9894 9895 9896 9897 9898 9899 9900 9901 9902 9903 9904 9905 9906 9907 9908 9909 9910 9911 9912 9913 9914 9915 9916 9917 9918 9919 9920 9921 9922 9923 9924 9925 9926 9927 9928 9929 9930 9931 9932 9933 9934 9935 9936 9937 9938 9939 9940 9941 9942 9943 9944 9945 9946 9947 9948 9949 9950 9951 9952 9953 9954 9955 9956 9957 9958 9959 9960 9961 9962 9963 9964 9965 9966 9967 9968 9969 9970 9971 9972 9973 9974 9975 9976 9977 9978 9979 9980 9981 9982 9983 9984 9985 9986 9987 9988 9989 9990 9991 9992 9993 9994 9995 9996 9997 9998 9999 10000 10001 10002 10003 10004 10005 10006 10007 10008 10009 10010 10011 10012 10013 10014 10015 10016 10017 10018 10019 10020 10021 10022 10023 10024 10025 10026 10027 10028 10029 10030 10031 10032 10033 10034 10035 10036 10037 10038 10039 10040 10041 10042 10043 10044 10045 10046 10047 10048 10049 10050 10051 10052 10053 10054 10055 10056 10057 10058 10059 10060 10061 10062 10063 10064 10065 10066 10067 10068 10069 10070 10071 10072 10073 10074 10075 10076 10077 10078 10079 10080 10081 10082 10083 10084 10085 10086 10087 10088 10089 10090 10091 10092 10093 10094 10095 10096 10097 10098 10099 10100 10101 10102 10103 10104 10105 10106 10107 10108 10109 10110 10111 10112 10113 10114 10115 10116 10117 10118 10119 10120 10121 10122 10123 10124 10125 10126 10127 10128 10129 10130 10131 10132 10133 10134 10135 10136 10137 10138 10139 10140 10141 10142 10143 10144 10145 10146 10147 10148 10149 10150 10151 10152 10153 10154 10155 10156 10157 10158 10159 10160 10161 10162 10163 10164 10165 10166 10167 10168 10169 10170 10171 10172 10173 10174 10175 10176 10177 10178 10179 10180 10181 10182 10183 10184 10185 10186 10187 10188 10189 10190 10191 10192 10193 10194 10195 10196 10197 10198 10199 10200 10201 10202 10203 10204 10205 10206 10207 10208 10209 10210 10211 10212 10213 10214 10215 10216 10217 10218 10219 10220 10221 10222 10223 10224 10225 10226 10227 10228 10229 10230 10231 10232 10233 10234 10235 10236 10237 10238 10239 10240 10241 10242 10243 10244 10245 10246 10247 10248 10249 10250 10251 10252 10253 10254 10255 10256 10257 10258 10259 10260 10261 10262 10263 10264 10265 10266 10267 10268 10269 10270 10271 10272 10273 10274 10275 10276 10277 10278 10279 10280 10281 10282 10283 10284 10285 10286 10287 10288 10289 10290 10291 10292 10293 10294 10295 10296 10297 10298 10299 10300 10301 10302 10303 10304 10305 10306 10307 10308 10309 10310 10311 10312 10313 10314 10315 10316 10317 10318 10319 10320 10321 10322 10323 10324 10325 10326 10327 10328 10329 10330 10331 10332 10333 10334 10335 10336 10337 10338 10339 10340 10341 10342 10343 10344 10345 10346 10347 10348 10349 10350 10351 10352 10353 10354 10355 10356 10357 10358 10359 10360 10361 10362 10363 10364 10365 10366 10367 10368 10369 10370 10371 10372 10373 10374 10375 10376 10377 10378 10379 10380 10381 10382 10383 10384 10385 10386 10387 10388 10389 10390 10391 10392 10393 10394 10395 10396 10397 10398 10399 10400 10401 10402 10403 10404 10405 10406 10407 10408 10409 10410 10411 10412 10413 10414 10415 10416 10417 10418 10419 10420 10421 10422 10423 10424 10425 10426 10427 10428 10429 10430 10431 10432 10433 10434 10435 10436 10437 10438 10439 10440 10441 10442 10443 10444 10445 10446 10447 10448 10449 10450 10451 10452 10453 10454 10455 10456 10457 10458 10459 10460 10461 10462 10463 10464 10465 10466 10467 10468 10469 10470 10471 10472 10473 10474 10475 10476 10477 10478 10479 10480 10481 10482 10483 10484 10485 10486 10487 10488 10489 10490 10491 10492 10493 10494 10495 10496 10497 10498 10499 10500 10501 10502 10503 10504 10505 10506 10507 10508 10509 10510 10511 10512 10513 10514 10515 10516 10517 10518 10519 10520 10521 10522 10523 10524 10525 10526 10527 10528 10529 10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 10548 10549 10550 10551 10552 10553 10554 10555 10556 10557 10558 10559 10560 10561 10562 10563 10564 10565 10566 10567 10568 10569 10570 10571 10572 10573 10574 10575 10576 10577 10578 10579 10580 10581 10582 10583 10584 10585 10586 10587 10588 10589 10590 10591 10592 10593 10594 10595 10596 10597 10598 10599 10600 10601 10602 10603 10604 10605 10606 10607 10608 10609 10610 10611 10612 10613 10614 10615 10616 10617 10618 10619 10620 10621 10622 10623 10624 10625 10626 10627 10628 10629 10630 10631 10632 10633 10634 10635 10636 10637 10638 10639 10640 10641 10642 10643 10644 10645 10646 10647 10648 10649 10650 10651 10652 10653 10654 10655 10656 10657 10658 10659 10660 10661 10662 10663 10664 10665 10666 10667 10668 10669 10670 10671 10672 10673 10674 10675 10676 10677 10678 10679 10680 10681 10682 10683 10684 10685 10686 10687 10688 10689 10690 10691 10692 10693 10694 10695 10696 10697 10698 10699 10700 10701 10702 10703 10704 10705 10706 10707 10708 10709 10710 10711 10712 10713 10714 10715 10716 10717 10718 10719 10720 10721 10722 10723 10724 10725 10726 10727 10728 10729 10730 10731 10732 10733 10734 10735 10736 10737 10738 10739 10740 10741 10742 10743 10744 10745 10746 10747 10748 10749 10750 10751 10752 10753 10754 10755 10756 10757 10758 10759 10760 10761 10762 10763 10764 10765 10766 10767 10768 10769 10770 10771 10772 10773 10774 10775 10776 10777 10778 10779 10780 10781 10782 10783 10784 10785 10786 10787 10788 10789 10790 10791 10792 10793 10794 10795 10796 10797 10798 10799 10800 10801 10802 10803 10804 10805 10806 10807 10808 10809 10810 10811 10812 10813 10814 10815 10816 10817 10818 10819 10820 10821 10822 10823 10824 10825 10826 10827 10828 10829 10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 10879 10880 10881 10882 10883 10884 10885 10886 10887 10888 10889 10890 10891 10892 10893 10894 10895 10896 10897 10898 10899 10900 10901 10902 10903 10904 10905 10906 10907 10908 10909 10910 10911 10912 10913 10914 10915 10916 10917 10918 10919 10920 10921 10922 10923 10924 10925 10926 10927 10928 10929 10930 10931 10932 10933 10934 10935 10936 10937 10938 10939 10940 10941 10942 10943 10944 10945 10946 10947 10948 10949 10950 10951 10952 10953 10954 10955 10956 10957 10958 10959 10960 10961 10962 10963 10964 10965 10966 10967 10968 10969 10970 10971 10972 10973 10974 10975 10976 10977 10978 10979 10980 10981 10982 10983 10984 10985 10986 10987 10988 10989 10990 10991 10992 10993 10994 10995 10996 10997 10998 10999 11000 11001 11002 11003 11004 11005 11006 11007 11008 11009 11010 11011 11012 11013 11014 11015 11016 11017 11018 11019 11020 11021 11022 11023 11024 11025 11026 11027 11028 11029 11030 11031 11032 11033 11034 11035 11036 11037 11038 11039 11040 11041 11042 11043 11044 11045 11046 11047 11048 11049 11050 11051 11052 11053 11054 11055 11056 11057 11058 11059 11060 11061 11062 11063 11064 11065 11066 11067 11068 11069 11070 11071 11072 11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 11083 11084 11085 11086 11087 11088 11089 11090 11091 11092 11093 11094 11095 11096 11097 11098 11099 11100 11101 11102 11103 11104 11105 11106 11107 11108 11109 11110 11111 11112 11113 11114 11115 11116 11117 11118 11119 11120 11121 11122 11123 11124 11125 11126 11127 11128 11129 11130 11131 11132 11133 11134 11135 11136 11137 11138 11139 11140 11141 11142 11143 11144 11145 11146 11147 11148 11149 11150 11151 11152 11153 11154 11155 11156 11157 11158 11159 11160 11161 11162 11163 11164 11165 11166 11167 11168 11169 11170 11171 11172 11173 11174 11175 11176 11177 11178 11179 11180 11181 11182 11183 11184 11185 11186 11187 11188 11189 11190 11191 11192 11193 11194 11195 11196 11197 11198 11199 11200 11201 11202 11203 11204 11205 11206 11207 11208 11209 11210 11211 11212 11213 11214 11215 11216 11217 11218 11219 11220 11221 11222 11223 11224 11225 11226 11227 11228 11229 11230 11231 11232 11233 11234 11235 11236 11237 11238 11239 11240 11241 11242 11243 11244 11245 11246 11247 11248 11249 11250 11251 11252 11253 11254 11255 11256 11257 11258 11259 11260 11261 11262 11263 11264 11265 11266 11267 11268 11269 11270 11271 11272 11273 11274 11275 11276 11277 11278 11279 11280 11281 11282 11283 11284 11285 11286 11287 11288 11289 11290 11291 11292 11293 11294 11295 11296 11297 11298 11299 11300 11301 11302 11303 11304 11305 11306 11307 11308 11309 11310 11311 11312 11313 11314 11315 11316 11317 11318 11319 11320 11321 11322 11323 11324 11325 11326 11327 11328 11329 11330 11331 11332 11333 11334 11335 11336 11337 11338 11339 11340 11341 11342 11343 11344 11345 11346 11347 11348 11349 11350 11351 11352 11353 11354 11355 11356 11357 11358 11359 11360 11361 11362 11363 11364 11365 11366 11367 11368 11369 11370 11371 11372 11373 11374 11375 11376 11377 11378 11379 11380 11381 11382 11383 11384 11385 11386 11387 11388 11389 11390 11391 11392 11393 11394 11395 11396 11397 11398 11399 11400 11401 11402 11403 11404 11405 11406 11407 11408 11409 11410 11411 11412 11413 11414 11415 11416 11417 11418 11419 11420 11421 11422 11423 11424 11425 11426 11427 11428 11429 11430 11431 11432 11433 11434 11435 11436 11437 11438 11439 11440 11441 11442 11443 11444 11445 11446 11447 11448 11449 11450 11451 11452 11453 11454 11455 11456 11457 11458 11459 11460 11461 11462 11463 11464 11465 11466 11467 11468 11469 11470 11471 11472 11473 11474 11475 11476 11477 11478 11479 11480 11481 11482 11483 11484 11485 11486 11487 11488 11489 11490 11491 11492 11493 11494 11495 11496 11497 11498 11499 11500 11501 11502 11503 11504 11505 11506 11507 11508 11509 11510 11511 11512 11513 11514 11515 11516 11517 11518 11519 11520 11521 11522 11523 11524 11525 11526 11527 11528 11529 11530 11531 11532 11533 11534 11535 11536 11537 11538 11539 11540 11541 11542 11543 11544 11545 11546 11547 11548 11549 11550 11551 11552 11553 11554 11555 11556 11557 11558 11559 11560 11561 11562 11563 11564 11565 11566 11567 11568 11569 11570 11571 11572 11573 11574 11575 11576 11577 11578 11579 11580 11581 11582 11583 11584 11585 11586 11587 11588 11589 11590 11591 11592 11593 11594 11595 11596 11597 11598 11599 11600 11601 11602 11603 11604 11605 11606 11607 11608 11609 11610 11611 11612 11613 11614 11615 11616 11617 11618 11619 11620 11621 11622 11623 11624 11625 11626 11627 11628 11629 11630 11631 11632 11633 11634 11635 11636 11637 11638 11639 11640 11641 11642 11643 11644 11645 11646 11647 11648 11649 11650 11651 11652 11653 11654 11655 11656 11657 11658 11659 11660 11661 11662 11663 11664 11665 11666 11667 11668 11669 11670 11671 11672 11673 11674 11675 11676 11677 11678 11679 11680 11681 11682 11683 11684 11685 11686 11687 11688 11689 11690 11691 11692 11693 11694 11695 11696 11697 11698 11699 11700 11701 11702 11703 11704 11705 11706 11707 11708 11709 11710 11711 11712 11713 11714 11715 11716 11717 11718 11719 11720 11721 11722 11723 11724 11725 11726 11727 11728 11729 11730 11731 11732 11733 11734 11735 11736 11737 11738 11739 11740 11741 11742 11743 11744 11745 11746 11747 11748 11749 11750 11751 11752 11753 11754 11755 11756 11757 11758 11759 11760 11761 11762 11763 11764 11765 11766 11767 11768 11769 11770 11771 11772 11773 11774 11775 11776 11777 11778 11779 11780 11781 11782 11783 11784 11785 11786 11787 11788 11789 11790 11791 11792 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 12259 12260 12261 12262 12263 12264 12265 12266 12267 12268 12269 12270 12271 12272 12273 12274 12275 12276 12277 12278 12279 12280 12281 12282 12283 12284 12285 12286 12287 12288 12289 12290 12291 12292 12293 12294 12295 12296 12297 12298 12299 12300 12301 12302 12303 12304 12305 12306 12307 12308 12309 12310 12311 12312 12313 12314 12315 12316 12317 12318 12319 12320 12321 12322 12323 12324 12325 12326 12327 12328 12329 12330 12331 12332 12333 12334 12335 12336 12337 12338 12339 12340 12341 12342 12343 12344 12345 12346 12347 12348 12349 12350 12351 12352 12353 12354 12355 12356 12357 12358 12359 12360 12361 12362 12363 12364 12365 12366 12367 12368 12369 12370 12371 12372 12373 12374 12375 12376 12377 12378 12379 12380 12381 12382 12383 12384 12385 12386 12387 12388 12389 12390 12391 12392 12393 12394 12395 12396 12397 12398 12399 12400 12401 12402 12403 12404 12405 12406 12407 12408 12409 12410 12411 12412 12413 12414 12415 12416 12417 12418 12419 12420 12421 12422 12423 12424 12425 12426 12427 12428 12429 12430 12431 12432 12433 12434 12435 12436 12437 12438 12439 12440 12441 12442 12443 12444 12445 12446 12447 12448 12449 12450 12451 12452 12453 12454 12455 12456 12457 12458 12459 12460 12461 12462 12463 12464 12465 12466 12467 12468 12469 12470 12471 12472 12473 12474 12475 12476 12477 12478 12479 12480 12481 12482 12483 12484 12485 12486 12487 12488 12489 12490 12491 12492 12493 12494 12495 12496 12497 12498 12499 12500 12501 12502 12503 12504 12505 12506 12507 12508 12509 12510 12511 12512 12513 12514 12515 12516 12517 12518 12519 12520 12521 12522 12523 12524 12525 12526 12527 12528 12529 12530 12531 12532 12533 12534 12535 12536 12537 12538 12539 12540 12541 12542 12543 12544 12545 12546 12547 12548 12549 12550 12551 12552 12553 12554 12555 12556 12557 12558 12559 12560 12561 12562 12563 12564 12565 12566 12567 12568 12569 12570 12571 12572 12573 12574 12575 12576 12577 12578 12579 12580 12581 12582 12583 12584 12585 12586 12587 12588 12589 12590 12591 12592 12593 12594 12595 12596 12597 12598 12599 12600 12601 12602 12603 12604 12605 12606 12607 12608 12609 12610 12611 12612 12613 12614 12615 12616 12617 12618 12619 12620 12621 12622 12623 12624 12625 12626 12627 12628 12629 12630 12631 12632 12633 12634 12635 12636 12637 12638 12639 12640 12641 12642 12643 12644 12645 12646 12647 12648 12649 12650 12651 12652 12653 12654 12655 12656 12657 12658 12659 12660 12661 12662 12663 12664 12665 12666 12667 12668 12669 12670 12671 12672 12673 12674 12675 12676 12677 12678 12679 12680 12681 12682 12683 12684 12685 12686 12687 12688 12689 12690 12691 12692 12693 12694 12695 12696 12697 12698 12699 12700 12701 12702 12703 12704 12705 12706 12707 12708 12709 12710 12711 12712 12713 12714 12715 12716 12717 12718 12719 12720 12721 12722 12723 12724 12725 12726 12727 12728 12729 12730 12731 12732 12733 12734 12735 12736 12737 12738 12739 12740 12741 12742 12743 12744 12745 12746 12747 12748 12749 12750 12751 12752 12753 12754 12755 12756 12757 12758 12759 12760 12761 12762 12763 12764 12765 12766 12767 12768 12769 12770 12771 12772 12773 12774 12775 12776 12777 12778 12779 12780 12781 12782 12783 12784 12785 12786 12787 12788 12789 12790 12791 12792 12793 12794 12795 12796 12797 12798 12799 12800 12801 12802 12803 12804 12805 12806 12807 12808 12809 12810 12811 12812 12813 12814 12815 12816 12817 12818 12819 12820 12821 12822 12823 12824 12825 12826 12827 12828 12829 12830 12831 12832 12833 12834 12835 12836 12837 12838 12839 12840 12841 12842 12843 12844 12845 12846 12847 12848 12849 12850 12851 12852 12853 12854 12855 12856 12857 12858 12859 12860 12861 12862 12863 12864 12865 12866 12867 12868 12869 12870 12871 12872 12873 12874 12875 12876 12877 12878 12879 12880 12881 12882 12883 12884 12885 12886 12887 12888 12889 12890 12891 12892 12893 12894 12895 12896 12897 12898 12899 12900 12901 12902 12903 12904 12905 12906 12907 12908 12909 12910 12911 12912 12913 12914 12915 12916 12917 12918 12919 12920 12921 12922 12923 12924 12925 12926 12927 12928 12929 12930 12931 12932 12933 12934 12935 12936 12937 12938 12939 12940 12941 12942 12943 12944 12945 12946 12947 12948 12949 12950 12951 12952 12953 12954 12955 12956 12957 12958 12959 12960 12961 12962 12963 12964 12965 12966 12967 12968 12969 12970 12971 12972 12973 12974 12975 12976 12977 12978 12979 12980 12981 12982 12983 12984 12985 12986 12987 12988 12989 12990 12991 12992 12993 12994 12995 12996 12997 12998 12999 13000 13001 13002 13003 13004 13005 13006 13007 13008 13009 13010 13011 13012 13013 13014 13015 13016 13017 13018 13019 13020 13021 13022 13023 13024 13025 13026 13027 13028 13029 13030 13031 13032 13033 13034 13035 13036 13037 13038 13039 13040 13041 13042 13043 13044 13045 13046 13047 13048 13049 13050 13051 13052 13053 13054 13055 13056 13057 13058 13059 13060 13061 13062 13063 13064 13065 13066 13067 13068 13069 13070 13071 13072 13073 13074 13075 13076 13077 13078 13079 13080 13081 13082 13083 13084 13085 13086 13087 13088 13089 13090 13091 13092 13093 13094 13095 13096 13097 13098 13099 13100 13101 13102 13103 13104 13105 13106 13107 13108 13109 13110 13111 13112 13113 13114 13115 13116 13117 13118 13119 13120 13121 13122 13123 13124 13125 13126 13127 13128 13129 13130 13131 13132 13133 13134 13135 13136 13137 13138 13139 13140 13141 13142 13143 13144 13145 13146 13147 13148 13149 13150 13151 13152 13153 13154 13155 13156 13157 13158 13159 13160 13161 13162 13163 13164 13165 13166 13167 13168 13169 13170 13171 13172 13173 13174 13175 13176 13177 13178 13179 13180 13181 13182 13183 13184 13185 13186 13187 13188 13189 13190 13191 13192 13193 13194 13195 13196 13197 13198 13199 13200 13201 13202 13203 13204 13205 13206 13207 13208 13209 13210 13211 13212 13213 13214 13215 13216 13217 13218 13219 13220 13221 13222 13223 13224 13225 13226 13227 13228 13229 13230 13231 13232 13233 13234 13235 13236 13237 13238 13239 13240 13241 13242 13243 13244 13245 13246 13247 13248 13249 13250 13251 13252 13253 13254 13255 13256 13257 13258 13259 13260 13261 13262 13263 13264 13265 13266 13267 13268 13269 13270 13271 13272 13273 13274 13275 13276 13277 13278 13279 13280 13281 13282 13283 13284 13285 13286 13287 13288 13289 13290 13291 13292 13293 13294 13295 13296 13297 13298 13299 13300 13301 13302 13303 13304 13305 13306 13307 13308 13309 13310 13311 13312 13313 13314 13315 13316 13317 13318 13319 13320 13321 13322 13323 13324 13325 13326 13327 13328 13329 13330 13331 13332 13333 13334 13335 13336 13337 13338 13339 13340 13341 13342 13343 13344 13345 13346 13347 13348 13349 13350 13351 13352 13353 13354 13355 13356 13357 13358 13359 13360 13361 13362 13363 13364 13365 13366 13367 13368 13369 13370 13371 13372 13373 13374 13375 13376 13377 13378 13379 13380 13381 13382 13383 13384 13385 13386 13387 13388 13389 13390 13391 13392 13393 13394 13395 13396 13397 13398 13399 13400 13401 13402 13403 13404 13405 13406 13407 13408 13409 13410 13411 13412 13413 13414 13415 13416 13417 13418 13419 13420 13421 13422 13423 13424 13425 13426 13427 13428 13429 13430 13431 13432 13433 13434 13435 13436 13437 13438 13439 13440 13441 13442 13443 13444 13445 13446 13447 13448 13449 13450 13451 13452 13453 13454 13455 13456 13457 13458 13459 13460 13461 13462 13463 13464 13465 13466 13467 13468 13469 13470 13471 13472 13473 13474 13475 13476 13477 13478 13479 13480 13481 13482 13483 13484 13485 13486 13487 13488 13489 13490 13491 13492 13493 13494 13495 13496 13497 13498 13499 13500 13501 13502 13503 13504 13505 13506 13507 13508 13509 13510 13511 13512 13513 13514 13515 13516 13517 13518 13519 13520 13521 13522 13523 13524 13525 13526 13527 13528 13529 13530 13531 13532 13533 13534 13535 13536 13537 13538 13539 13540 13541 13542 13543 13544 13545 13546 13547 13548 13549 13550 13551 13552 13553 13554 13555 13556 13557 13558 13559 13560 13561 13562 13563 13564 13565 13566 13567 13568 13569 13570 13571 13572 13573 13574 13575 13576 13577 13578 13579 13580 13581 13582 13583 13584 13585 13586 13587 13588 13589 13590 13591 13592 13593 13594 13595 13596 13597 13598 13599 13600 13601 13602 13603 13604 13605 13606 13607 13608 13609 13610 13611 13612 13613 13614 13615 13616 13617 13618 13619 13620 13621 13622 13623 13624 13625 13626 13627 13628 13629 13630 13631 13632 13633 13634 13635 13636 13637 13638 13639 13640 13641 13642 13643 13644 13645 13646 13647 13648 13649 13650 13651 13652 13653 13654 13655 13656 13657 13658 13659 13660 13661 13662 13663 13664 13665 13666 13667 13668 13669 13670 13671 13672 13673 13674 13675 13676 13677 13678 13679 13680 13681 13682 13683 13684 13685 13686 13687 13688 13689 13690 13691 13692 13693 13694 13695 13696 13697 13698 13699 13700 13701 13702 13703 13704 13705 13706 13707 13708 13709 13710 13711 13712 13713 13714 13715 13716 13717 13718 13719 13720 13721 13722 13723 13724 13725 13726 13727 13728 13729 13730 13731 13732 13733 13734 13735 13736 13737 13738 13739 13740 13741 13742 13743 13744 13745 13746 13747 13748 13749 13750 13751 13752 13753 13754 13755 13756 13757 13758 13759 13760 13761 13762 13763 13764 13765 13766 13767 13768 13769 13770 13771 13772 13773 13774 13775 13776 13777 13778 13779 13780 13781 13782 13783 13784 13785 13786 13787 13788 13789 13790 13791 13792 13793 13794 13795 13796 13797 13798 13799 13800 13801 13802 13803 13804 13805 13806 13807 13808 13809 13810 13811 13812 13813 13814 13815 13816 13817 13818 13819 13820 | DIALS 2.2.9-g061426e04-release
The following parameters have been modified:
integration {
mp {
nproc = 4
}
}
input {
experiments = refined.expt
reflections = refined.refl
}
================================================================================
Experiments
Models for experiment 0
Beam:
wavelength: 1.23985
sample to source direction : {0.000829704,-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.005565,-0.0119294}
slow_axis: {-0.00567791,-0.999939,-0.00945161}
origin: {-217.505,210.385,-164.522}
distance: 169.088
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.1698(3), 61.2427(5), 69.2884(5), 90.0, 93.04558(17), 90.0)
Space group: C 1 2 1
U matrix: {{ 0.9560, -0.2863, 0.0639},
{ 0.0114, 0.2539, 0.9672},
{-0.2931, -0.9239, 0.2460}}
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 107999 strong spots
removing 735 unindexed reflections
removing 11850 reflections marked as bad for refinement
using 95414 indexed reflections
found 12585 junk reflections
masked neighbouring pixels in 4 shoeboxes
================================================================================
Predicting reflections
Prediction type: scan varying crystal prediction
Predicted 368592 reflections
Matching reference spots with predicted reflections
95414 observed reflections input
368592 reflections predicted
95414 reflections matched
95414 reflections accepted
Using 95414 / 95414 reflections for sigma calculation
Calculating E.S.D Beam Divergence.
Calculating E.S.D Reflecting Range (mosaicity).
sigma b: 0.044176 degrees
sigma m: 0.057791 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 1795 reflections overlapping job boundaries
Memory situation report:
Available system memory (excluding swap) : 14.1 GB
Available swap memory : 6.1 GB
Available system memory (including swap) : 20.1 GB
Maximum memory for processing (including swap) : 18.1 GB
Maximum memory for processing (excluding swap) : 12.7 GB
Memory required per process : 0.0 GB
no memory ulimit set
Processing reflections in the following blocks of images:
block_size: 6 frames
+-----+---------+--------------+------------+--------------+------------+-----------------+
| # | Group | Frame From | Frame To | Angle From | Angle To | # Reflections |
|-----+---------+--------------+------------+--------------+------------+-----------------|
| 0 | 0 | 0 | 6 | 0 | 3 | 696 |
| 1 | 0 | 3 | 9 | 1.5 | 4.5 | 440 |
| 2 | 0 | 6 | 12 | 3 | 6 | 444 |
| 3 | 0 | 9 | 15 | 4.5 | 7.5 | 439 |
| 4 | 0 | 12 | 18 | 6 | 9 | 423 |
| 5 | 0 | 15 | 21 | 7.5 | 10.5 | 434 |
| 6 | 0 | 18 | 24 | 9 | 12 | 458 |
| 7 | 0 | 21 | 27 | 10.5 | 13.5 | 428 |
| 8 | 0 | 24 | 30 | 12 | 15 | 455 |
| 9 | 0 | 27 | 33 | 13.5 | 16.5 | 463 |
| 10 | 0 | 30 | 36 | 15 | 18 | 450 |
| 11 | 0 | 33 | 39 | 16.5 | 19.5 | 421 |
| 12 | 0 | 36 | 42 | 18 | 21 | 452 |
| 13 | 0 | 39 | 45 | 19.5 | 22.5 | 443 |
| 14 | 0 | 42 | 48 | 21 | 24 | 434 |
| 15 | 0 | 45 | 51 | 22.5 | 25.5 | 448 |
| 16 | 0 | 48 | 54 | 24 | 27 | 426 |
| 17 | 0 | 51 | 57 | 25.5 | 28.5 | 440 |
| 18 | 0 | 54 | 60 | 27 | 30 | 429 |
| 19 | 0 | 57 | 63 | 28.5 | 31.5 | 436 |
| 20 | 0 | 60 | 66 | 30 | 33 | 412 |
| 21 | 0 | 63 | 69 | 31.5 | 34.5 | 471 |
| 22 | 0 | 66 | 72 | 33 | 36 | 449 |
| 23 | 0 | 69 | 75 | 34.5 | 37.5 | 423 |
| 24 | 0 | 72 | 78 | 36 | 39 | 460 |
| 25 | 0 | 75 | 81 | 37.5 | 40.5 | 451 |
| 26 | 0 | 78 | 84 | 39 | 42 | 439 |
| 27 | 0 | 81 | 87 | 40.5 | 43.5 | 474 |
| 28 | 0 | 84 | 90 | 42 | 45 | 445 |
| 29 | 0 | 87 | 93 | 43.5 | 46.5 | 460 |
| 30 | 0 | 90 | 96 | 45 | 48 | 446 |
| 31 | 0 | 93 | 99 | 46.5 | 49.5 | 473 |
| 32 | 0 | 96 | 102 | 48 | 51 | 418 |
| 33 | 0 | 99 | 105 | 49.5 | 52.5 | 485 |
| 34 | 0 | 102 | 108 | 51 | 54 | 474 |
| 35 | 0 | 105 | 111 | 52.5 | 55.5 | 471 |
| 36 | 0 | 108 | 114 | 54 | 57 | 456 |
| 37 | 0 | 111 | 117 | 55.5 | 58.5 | 454 |
| 38 | 0 | 114 | 120 | 57 | 60 | 482 |
| 39 | 0 | 117 | 123 | 58.5 | 61.5 | 433 |
| 40 | 0 | 120 | 126 | 60 | 63 | 458 |
| 41 | 0 | 123 | 129 | 61.5 | 64.5 | 478 |
| 42 | 0 | 126 | 132 | 63 | 66 | 454 |
| 43 | 0 | 129 | 135 | 64.5 | 67.5 | 435 |
| 44 | 0 | 132 | 138 | 66 | 69 | 441 |
| 45 | 0 | 135 | 141 | 67.5 | 70.5 | 446 |
| 46 | 0 | 138 | 144 | 69 | 72 | 415 |
| 47 | 0 | 141 | 147 | 70.5 | 73.5 | 420 |
| 48 | 0 | 144 | 150 | 72 | 75 | 442 |
| 49 | 0 | 147 | 153 | 73.5 | 76.5 | 423 |
| 50 | 0 | 150 | 156 | 75 | 78 | 413 |
| 51 | 0 | 153 | 159 | 76.5 | 79.5 | 449 |
| 52 | 0 | 156 | 162 | 78 | 81 | 410 |
| 53 | 0 | 159 | 165 | 79.5 | 82.5 | 411 |
| 54 | 0 | 162 | 168 | 81 | 84 | 424 |
| 55 | 0 | 165 | 171 | 82.5 | 85.5 | 403 |
| 56 | 0 | 168 | 174 | 84 | 87 | 446 |
| 57 | 0 | 171 | 177 | 85.5 | 88.5 | 417 |
| 58 | 0 | 174 | 180 | 87 | 90 | 399 |
| 59 | 0 | 177 | 183 | 88.5 | 91.5 | 413 |
| 60 | 0 | 180 | 186 | 90 | 93 | 394 |
| 61 | 0 | 183 | 189 | 91.5 | 94.5 | 379 |
| 62 | 0 | 186 | 192 | 93 | 96 | 397 |
| 63 | 0 | 189 | 195 | 94.5 | 97.5 | 390 |
| 64 | 0 | 192 | 198 | 96 | 99 | 431 |
| 65 | 0 | 195 | 201 | 97.5 | 100.5 | 372 |
| 66 | 0 | 198 | 204 | 99 | 102 | 392 |
| 67 | 0 | 201 | 207 | 100.5 | 103.5 | 370 |
| 68 | 0 | 204 | 210 | 102 | 105 | 380 |
| 69 | 0 | 207 | 213 | 103.5 | 106.5 | 369 |
| 70 | 0 | 210 | 216 | 105 | 108 | 369 |
| 71 | 0 | 213 | 219 | 106.5 | 109.5 | 355 |
| 72 | 0 | 216 | 222 | 108 | 111 | 380 |
| 73 | 0 | 219 | 225 | 109.5 | 112.5 | 373 |
| 74 | 0 | 222 | 228 | 111 | 114 | 369 |
| 75 | 0 | 225 | 231 | 112.5 | 115.5 | 365 |
| 76 | 0 | 228 | 234 | 114 | 117 | 369 |
| 77 | 0 | 231 | 237 | 115.5 | 118.5 | 333 |
| 78 | 0 | 234 | 240 | 117 | 120 | 357 |
| 79 | 0 | 237 | 243 | 118.5 | 121.5 | 390 |
| 80 | 0 | 240 | 246 | 120 | 123 | 383 |
| 81 | 0 | 243 | 249 | 121.5 | 124.5 | 370 |
| 82 | 0 | 246 | 252 | 123 | 126 | 390 |
| 83 | 0 | 249 | 255 | 124.5 | 127.5 | 371 |
| 84 | 0 | 252 | 258 | 126 | 129 | 355 |
| 85 | 0 | 255 | 261 | 127.5 | 130.5 | 384 |
| 86 | 0 | 258 | 264 | 129 | 132 | 373 |
| 87 | 0 | 261 | 267 | 130.5 | 133.5 | 355 |
| 88 | 0 | 264 | 270 | 132 | 135 | 433 |
| 89 | 0 | 267 | 273 | 133.5 | 136.5 | 406 |
| 90 | 0 | 270 | 276 | 135 | 138 | 391 |
| 91 | 0 | 273 | 279 | 136.5 | 139.5 | 362 |
| 92 | 0 | 276 | 282 | 138 | 141 | 404 |
| 93 | 0 | 279 | 285 | 139.5 | 142.5 | 388 |
| 94 | 0 | 282 | 288 | 141 | 144 | 388 |
| 95 | 0 | 285 | 291 | 142.5 | 145.5 | 378 |
| 96 | 0 | 288 | 294 | 144 | 147 | 398 |
| 97 | 0 | 291 | 297 | 145.5 | 148.5 | 375 |
| 98 | 0 | 294 | 300 | 147 | 150 | 394 |
| 99 | 0 | 297 | 303 | 148.5 | 151.5 | 404 |
| 100 | 0 | 300 | 306 | 150 | 153 | 366 |
| 101 | 0 | 303 | 309 | 151.5 | 154.5 | 388 |
| 102 | 0 | 306 | 312 | 153 | 156 | 408 |
| 103 | 0 | 309 | 315 | 154.5 | 157.5 | 398 |
| 104 | 0 | 312 | 318 | 156 | 159 | 376 |
| 105 | 0 | 315 | 321 | 157.5 | 160.5 | 404 |
| 106 | 0 | 318 | 324 | 159 | 162 | 373 |
| 107 | 0 | 321 | 327 | 160.5 | 163.5 | 417 |
| 108 | 0 | 324 | 330 | 162 | 165 | 385 |
| 109 | 0 | 327 | 333 | 163.5 | 166.5 | 407 |
| 110 | 0 | 330 | 336 | 165 | 168 | 394 |
| 111 | 0 | 333 | 339 | 166.5 | 169.5 | 376 |
| 112 | 0 | 336 | 342 | 168 | 171 | 432 |
| 113 | 0 | 339 | 345 | 169.5 | 172.5 | 397 |
| 114 | 0 | 342 | 348 | 171 | 174 | 375 |
| 115 | 0 | 345 | 351 | 172.5 | 175.5 | 419 |
| 116 | 0 | 348 | 354 | 174 | 177 | 406 |
| 117 | 0 | 351 | 357 | 175.5 | 178.5 | 419 |
| 118 | 0 | 354 | 360 | 177 | 180 | 413 |
| 119 | 0 | 357 | 363 | 178.5 | 181.5 | 445 |
| 120 | 0 | 360 | 366 | 180 | 183 | 396 |
| 121 | 0 | 363 | 369 | 181.5 | 184.5 | 433 |
| 122 | 0 | 366 | 372 | 183 | 186 | 420 |
| 123 | 0 | 369 | 375 | 184.5 | 187.5 | 406 |
| 124 | 0 | 372 | 378 | 186 | 189 | 419 |
| 125 | 0 | 375 | 381 | 187.5 | 190.5 | 393 |
| 126 | 0 | 378 | 384 | 189 | 192 | 419 |
| 127 | 0 | 381 | 387 | 190.5 | 193.5 | 413 |
| 128 | 0 | 384 | 390 | 192 | 195 | 429 |
| 129 | 0 | 387 | 393 | 193.5 | 196.5 | 428 |
| 130 | 0 | 390 | 396 | 195 | 198 | 434 |
| 131 | 0 | 393 | 399 | 196.5 | 199.5 | 390 |
| 132 | 0 | 396 | 402 | 198 | 201 | 432 |
| 133 | 0 | 399 | 405 | 199.5 | 202.5 | 432 |
| 134 | 0 | 402 | 408 | 201 | 204 | 419 |
| 135 | 0 | 405 | 411 | 202.5 | 205.5 | 420 |
| 136 | 0 | 408 | 414 | 204 | 207 | 424 |
| 137 | 0 | 411 | 417 | 205.5 | 208.5 | 426 |
| 138 | 0 | 414 | 420 | 207 | 210 | 422 |
| 139 | 0 | 417 | 423 | 208.5 | 211.5 | 425 |
| 140 | 0 | 420 | 426 | 210 | 213 | 399 |
| 141 | 0 | 423 | 429 | 211.5 | 214.5 | 435 |
| 142 | 0 | 426 | 432 | 213 | 216 | 442 |
| 143 | 0 | 429 | 435 | 214.5 | 217.5 | 404 |
| 144 | 0 | 432 | 438 | 216 | 219 | 410 |
| 145 | 0 | 435 | 441 | 217.5 | 220.5 | 416 |
| 146 | 0 | 438 | 444 | 219 | 222 | 391 |
| 147 | 0 | 441 | 447 | 220.5 | 223.5 | 430 |
| 148 | 0 | 444 | 450 | 222 | 225 | 405 |
| 149 | 0 | 447 | 453 | 223.5 | 226.5 | 435 |
| 150 | 0 | 450 | 456 | 225 | 228 | 408 |
| 151 | 0 | 453 | 459 | 226.5 | 229.5 | 418 |
| 152 | 0 | 456 | 462 | 228 | 231 | 387 |
| 153 | 0 | 459 | 465 | 229.5 | 232.5 | 434 |
| 154 | 0 | 462 | 468 | 231 | 234 | 442 |
| 155 | 0 | 465 | 471 | 232.5 | 235.5 | 432 |
| 156 | 0 | 468 | 474 | 234 | 237 | 435 |
| 157 | 0 | 471 | 477 | 235.5 | 238.5 | 405 |
| 158 | 0 | 474 | 480 | 237 | 240 | 463 |
| 159 | 0 | 477 | 483 | 238.5 | 241.5 | 381 |
| 160 | 0 | 480 | 486 | 240 | 243 | 397 |
| 161 | 0 | 483 | 489 | 241.5 | 244.5 | 422 |
| 162 | 0 | 486 | 492 | 243 | 246 | 400 |
| 163 | 0 | 489 | 495 | 244.5 | 247.5 | 401 |
| 164 | 0 | 492 | 498 | 246 | 249 | 386 |
| 165 | 0 | 495 | 501 | 247.5 | 250.5 | 393 |
| 166 | 0 | 498 | 504 | 249 | 252 | 371 |
| 167 | 0 | 501 | 507 | 250.5 | 253.5 | 383 |
| 168 | 0 | 504 | 510 | 252 | 255 | 400 |
| 169 | 0 | 507 | 513 | 253.5 | 256.5 | 404 |
| 170 | 0 | 510 | 516 | 255 | 258 | 378 |
| 171 | 0 | 513 | 519 | 256.5 | 259.5 | 398 |
| 172 | 0 | 516 | 522 | 258 | 261 | 390 |
| 173 | 0 | 519 | 525 | 259.5 | 262.5 | 351 |
| 174 | 0 | 522 | 528 | 261 | 264 | 388 |
| 175 | 0 | 525 | 531 | 262.5 | 265.5 | 366 |
| 176 | 0 | 528 | 534 | 264 | 267 | 397 |
| 177 | 0 | 531 | 537 | 265.5 | 268.5 | 369 |
| 178 | 0 | 534 | 540 | 267 | 270 | 346 |
| 179 | 0 | 537 | 543 | 268.5 | 271.5 | 384 |
| 180 | 0 | 540 | 546 | 270 | 273 | 349 |
| 181 | 0 | 543 | 549 | 271.5 | 274.5 | 364 |
| 182 | 0 | 546 | 552 | 273 | 276 | 374 |
| 183 | 0 | 549 | 555 | 274.5 | 277.5 | 353 |
| 184 | 0 | 552 | 558 | 276 | 279 | 384 |
| 185 | 0 | 555 | 561 | 277.5 | 280.5 | 347 |
| 186 | 0 | 558 | 564 | 279 | 282 | 375 |
| 187 | 0 | 561 | 567 | 280.5 | 283.5 | 334 |
| 188 | 0 | 564 | 570 | 282 | 285 | 346 |
| 189 | 0 | 567 | 573 | 283.5 | 286.5 | 348 |
| 190 | 0 | 570 | 576 | 285 | 288 | 347 |
| 191 | 0 | 573 | 579 | 286.5 | 289.5 | 357 |
| 192 | 0 | 576 | 582 | 288 | 291 | 368 |
| 193 | 0 | 579 | 585 | 289.5 | 292.5 | 368 |
| 194 | 0 | 582 | 588 | 291 | 294 | 363 |
| 195 | 0 | 585 | 591 | 292.5 | 295.5 | 367 |
| 196 | 0 | 588 | 594 | 294 | 297 | 375 |
| 197 | 0 | 591 | 597 | 295.5 | 298.5 | 342 |
| 198 | 0 | 594 | 600 | 297 | 300 | 369 |
| 199 | 0 | 597 | 603 | 298.5 | 301.5 | 383 |
| 200 | 0 | 600 | 606 | 300 | 303 | 389 |
| 201 | 0 | 603 | 609 | 301.5 | 304.5 | 360 |
| 202 | 0 | 606 | 612 | 303 | 306 | 391 |
| 203 | 0 | 609 | 615 | 304.5 | 307.5 | 372 |
| 204 | 0 | 612 | 618 | 306 | 309 | 391 |
| 205 | 0 | 615 | 621 | 307.5 | 310.5 | 399 |
| 206 | 0 | 618 | 624 | 309 | 312 | 365 |
| 207 | 0 | 621 | 627 | 310.5 | 313.5 | 354 |
| 208 | 0 | 624 | 630 | 312 | 315 | 430 |
| 209 | 0 | 627 | 633 | 313.5 | 316.5 | 379 |
| 210 | 0 | 630 | 636 | 315 | 318 | 353 |
| 211 | 0 | 633 | 639 | 316.5 | 319.5 | 338 |
| 212 | 0 | 636 | 642 | 318 | 321 | 369 |
| 213 | 0 | 639 | 645 | 319.5 | 322.5 | 337 |
| 214 | 0 | 642 | 648 | 321 | 324 | 361 |
| 215 | 0 | 645 | 651 | 322.5 | 325.5 | 356 |
| 216 | 0 | 648 | 654 | 324 | 327 | 399 |
| 217 | 0 | 651 | 657 | 325.5 | 328.5 | 374 |
| 218 | 0 | 654 | 660 | 327 | 330 | 390 |
| 219 | 0 | 657 | 663 | 328.5 | 331.5 | 417 |
| 220 | 0 | 660 | 666 | 330 | 333 | 391 |
| 221 | 0 | 663 | 669 | 331.5 | 334.5 | 401 |
| 222 | 0 | 666 | 672 | 333 | 336 | 402 |
| 223 | 0 | 669 | 675 | 334.5 | 337.5 | 402 |
| 224 | 0 | 672 | 678 | 336 | 339 | 386 |
| 225 | 0 | 675 | 681 | 337.5 | 340.5 | 407 |
| 226 | 0 | 678 | 684 | 339 | 342 | 390 |
| 227 | 0 | 681 | 687 | 340.5 | 343.5 | 419 |
| 228 | 0 | 684 | 690 | 342 | 345 | 377 |
| 229 | 0 | 687 | 693 | 343.5 | 346.5 | 417 |
| 230 | 0 | 690 | 696 | 345 | 348 | 400 |
| 231 | 0 | 693 | 699 | 346.5 | 349.5 | 398 |
| 232 | 0 | 696 | 702 | 348 | 351 | 427 |
| 233 | 0 | 699 | 705 | 349.5 | 352.5 | 424 |
| 234 | 0 | 702 | 708 | 351 | 354 | 403 |
| 235 | 0 | 705 | 711 | 352.5 | 355.5 | 447 |
| 236 | 0 | 708 | 714 | 354 | 357 | 430 |
| 237 | 0 | 711 | 717 | 355.5 | 358.5 | 461 |
| 238 | 0 | 714 | 720 | 357 | 360 | 648 |
+-----+---------+--------------+------------+--------------+------------+-----------------+
Using multiprocessing with 4 parallel job(s)
Beginning modelling job 0
Frames: 0 -> 6
Number of reflections
Partial: 93
Full: 603
In ice ring: 0
Total: 696
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
1 [268]: ************************************************************
2 [312]: **********************************************************************
3 [268]: ************************************************************
4 [268]: ************************************************************
5 [170]: **************************************
6 [23 ]: *****
Modelled 47 / 94 reflection profiles on image 0
Modelled 155 / 171 reflection profiles on image 1
Modelled 133 / 135 reflection profiles on image 2
Modelled 125 / 126 reflection profiles on image 3
Modelled 145 / 147 reflection profiles on image 4
Modelled 20 / 23 reflection profiles on image 5
Beginning modelling job 1
Frames: 3 -> 9
Number of reflections
Partial: 9
Full: 431
In ice ring: 0
Total: 440
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
4 [1 ]:
5 [127]: ********************************
6 [277]: **********************************************************************
7 [267]: *******************************************************************
8 [162]: ****************************************
9 [20 ]: *****
Modelled 137 / 142 reflection profiles on image 5
Modelled 133 / 136 reflection profiles on image 6
Modelled 139 / 142 reflection profiles on image 7
Modelled 17 / 20 reflection profiles on image 8
Beginning modelling job 2
Frames: 6 -> 12
Number of reflections
Partial: 11
Full: 433
In ice ring: 0
Total: 444
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
7 [6 ]: *
8 [138]: *********************************
9 [281]: *********************************************************************
10 [281]: *********************************************************************
11 [166]: ****************************************
12 [24 ]: *****
Modelled 134 / 140 reflection profiles on image 8
Modelled 137 / 138 reflection profiles on image 9
Modelled 141 / 142 reflection profiles on image 10
Modelled 20 / 24 reflection profiles on image 11
Beginning modelling job 3
Frames: 9 -> 15
Number of reflections
Partial: 11
Full: 428
In ice ring: 0
Total: 439
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
10 [3 ]:
11 [112]: **************************
12 [275]: ******************************************************************
13 [287]: *********************************************************************
14 [156]: *************************************
15 [24 ]: *****
Modelled 121 / 126 reflection profiles on image 11
Modelled 152 / 157 reflection profiles on image 12
Modelled 130 / 132 reflection profiles on image 13
Modelled 21 / 24 reflection profiles on image 14
Beginning modelling job 4
Frames: 12 -> 18
Number of reflections
Partial: 7
Full: 416
In ice ring: 0
Total: 423
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
13 [4 ]: *
14 [119]: *****************************
15 [274]: *********************************************************************
16 [274]: *********************************************************************
17 [161]: ****************************************
18 [19 ]: ****
Modelled 130 / 132 reflection profiles on image 14
Modelled 127 / 130 reflection profiles on image 15
Modelled 141 / 142 reflection profiles on image 16
Modelled 15 / 19 reflection profiles on image 17
Beginning modelling job 5
Frames: 15 -> 21
Number of reflections
Partial: 13
Full: 421
In ice ring: 0
Total: 434
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
16 [1 ]:
17 [118]: ****************************
18 [265]: ****************************************************************
19 [285]: *********************************************************************
20 [161]: **************************************
21 [18 ]: ****
Modelled 122 / 127 reflection profiles on image 17
Modelled 142 / 146 reflection profiles on image 18
Modelled 143 / 143 reflection profiles on image 19
Modelled 13 / 18 reflection profiles on image 20
Beginning modelling job 6
Frames: 18 -> 24
Number of reflections
Partial: 11
Full: 447
In ice ring: 0
Total: 458
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
19 [7 ]: *
20 [131]: ******************************
21 [284]: *****************************************************************
22 [298]: *********************************************************************
23 [170]: ***************************************
24 [28 ]: ******
Modelled 136 / 139 reflection profiles on image 20
Modelled 145 / 149 reflection profiles on image 21
Modelled 140 / 142 reflection profiles on image 22
Modelled 22 / 28 reflection profiles on image 23
Beginning modelling job 7
Frames: 21 -> 27
Number of reflections
Partial: 13
Full: 415
In ice ring: 0
Total: 428
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
22 [6 ]: *
23 [113]: ***************************
24 [264]: ****************************************************************
25 [284]: *********************************************************************
26 [163]: ***************************************
27 [29 ]: *******
Modelled 116 / 122 reflection profiles on image 23
Modelled 141 / 143 reflection profiles on image 24
Modelled 132 / 134 reflection profiles on image 25
Modelled 21 / 29 reflection profiles on image 26
Beginning modelling job 8
Frames: 24 -> 30
Number of reflections
Partial: 12
Full: 443
In ice ring: 0
Total: 455
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
25 [3 ]:
26 [134]: *******************************
27 [280]: *****************************************************************
28 [296]: *********************************************************************
29 [171]: ***************************************
30 [16 ]: ***
Modelled 134 / 138 reflection profiles on image 26
Modelled 142 / 146 reflection profiles on image 27
Modelled 151 / 155 reflection profiles on image 28
Modelled 11 / 16 reflection profiles on image 29
Beginning modelling job 9
Frames: 27 -> 33
Number of reflections
Partial: 12
Full: 451
In ice ring: 0
Total: 463
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
28 [3 ]:
29 [127]: ****************************
30 [282]: ****************************************************************
31 [303]: *********************************************************************
32 [166]: *************************************
33 [24 ]: *****
Modelled 134 / 139 reflection profiles on image 29
Modelled 153 / 158 reflection profiles on image 30
Modelled 138 / 142 reflection profiles on image 31
Modelled 20 / 24 reflection profiles on image 32
Beginning modelling job 10
Frames: 30 -> 36
Number of reflections
Partial: 6
Full: 444
In ice ring: 0
Total: 450
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
31 [7 ]: *
32 [123]: *****************************
33 [276]: ******************************************************************
34 [286]: *********************************************************************
35 [173]: *****************************************
36 [19 ]: ****
Modelled 123 / 125 reflection profiles on image 32
Modelled 150 / 152 reflection profiles on image 33
Modelled 152 / 154 reflection profiles on image 34
Modelled 16 / 19 reflection profiles on image 35
Beginning modelling job 11
Frames: 33 -> 39
Number of reflections
Partial: 5
Full: 416
In ice ring: 0
Total: 421
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
34 [5 ]: *
35 [112]: **************************
36 [256]: ************************************************************
37 [290]: *********************************************************************
38 [162]: **************************************
39 [31 ]: *******
Modelled 107 / 109 reflection profiles on image 35
Modelled 149 / 150 reflection profiles on image 36
Modelled 130 / 131 reflection profiles on image 37
Modelled 25 / 31 reflection profiles on image 38
Beginning modelling job 12
Frames: 36 -> 42
Number of reflections
Partial: 11
Full: 441
In ice ring: 0
Total: 452
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
37 [2 ]:
38 [105]: ***********************
39 [264]: **********************************************************
40 [314]: *********************************************************************
41 [181]: ***************************************
42 [27 ]: *****
Modelled 109 / 115 reflection profiles on image 38
Modelled 156 / 156 reflection profiles on image 39
Modelled 151 / 154 reflection profiles on image 40
Modelled 22 / 27 reflection profiles on image 41
Beginning modelling job 13
Frames: 39 -> 45
Number of reflections
Partial: 10
Full: 433
In ice ring: 0
Total: 443
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
40 [3 ]:
41 [122]: ******************************
42 [271]: ******************************************************************
43 [280]: *********************************************************************
44 [169]: *****************************************
45 [21 ]: *****
Modelled 124 / 127 reflection profiles on image 41
Modelled 143 / 147 reflection profiles on image 42
Modelled 146 / 148 reflection profiles on image 43
Modelled 17 / 21 reflection profiles on image 44
Beginning modelling job 14
Frames: 42 -> 48
Number of reflections
Partial: 10
Full: 424
In ice ring: 0
Total: 434
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
43 [3 ]:
44 [118]: *****************************
45 [264]: ******************************************************************
46 [275]: *********************************************************************
47 [178]: ********************************************
48 [19 ]: ****
Modelled 123 / 129 reflection profiles on image 44
Modelled 127 / 127 reflection profiles on image 45
Modelled 154 / 159 reflection profiles on image 46
Modelled 14 / 19 reflection profiles on image 47
Beginning modelling job 15
Frames: 45 -> 51
Number of reflections
Partial: 9
Full: 439
In ice ring: 0
Total: 448
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
46 [1 ]:
47 [121]: ***************************
48 [275]: ***************************************************************
49 [299]: *********************************************************************
50 [176]: ****************************************
51 [24 ]: *****
Modelled 124 / 127 reflection profiles on image 47
Modelled 142 / 145 reflection profiles on image 48
Modelled 149 / 152 reflection profiles on image 49
Modelled 20 / 24 reflection profiles on image 50
Beginning modelling job 16
Frames: 48 -> 54
Number of reflections
Partial: 6
Full: 420
In ice ring: 0
Total: 426
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
49 [6 ]: *
50 [120]: ******************************
51 [248]: **************************************************************
52 [276]: *********************************************************************
53 [172]: *******************************************
54 [18 ]: ****
Modelled 123 / 124 reflection profiles on image 50
Modelled 126 / 130 reflection profiles on image 51
Modelled 153 / 154 reflection profiles on image 52
Modelled 15 / 18 reflection profiles on image 53
Beginning modelling job 17
Frames: 51 -> 57
Number of reflections
Partial: 5
Full: 435
In ice ring: 0
Total: 440
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
52 [5 ]: *
53 [128]: ******************************
54 [279]: ******************************************************************
55 [288]: *********************************************************************
56 [157]: *************************************
57 [23 ]: *****
Modelled 120 / 125 reflection profiles on image 53
Modelled 155 / 158 reflection profiles on image 54
Modelled 132 / 134 reflection profiles on image 55
Modelled 22 / 23 reflection profiles on image 56
Beginning modelling job 18
Frames: 54 -> 60
Number of reflections
Partial: 5
Full: 424
In ice ring: 0
Total: 429
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
55 [9 ]: **
56 [111]: *************************
57 [250]: *********************************************************
58 [300]: *********************************************************************
59 [174]: ****************************************
60 [23 ]: *****
Modelled 103 / 107 reflection profiles on image 56
Modelled 147 / 148 reflection profiles on image 57
Modelled 147 / 151 reflection profiles on image 58
Modelled 21 / 23 reflection profiles on image 59
Beginning modelling job 19
Frames: 57 -> 63
Number of reflections
Partial: 5
Full: 431
In ice ring: 0
Total: 436
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
58 [6 ]: *
59 [124]: ******************************
60 [265]: *****************************************************************
61 [278]: *********************************************************************
62 [170]: ******************************************
63 [21 ]: *****
Modelled 126 / 128 reflection profiles on image 59
Modelled 136 / 138 reflection profiles on image 60
Modelled 147 / 149 reflection profiles on image 61
Modelled 19 / 21 reflection profiles on image 62
Beginning modelling job 20
Frames: 60 -> 66
Number of reflections
Partial: 10
Full: 402
In ice ring: 0
Total: 412
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
61 [7 ]: *
62 [121]: *******************************
63 [265]: *********************************************************************
64 [256]: ******************************************************************
65 [152]: ***************************************
66 [21 ]: *****
Modelled 124 / 131 reflection profiles on image 62
Modelled 127 / 129 reflection profiles on image 63
Modelled 130 / 131 reflection profiles on image 64
Modelled 16 / 21 reflection profiles on image 65
Beginning modelling job 21
Frames: 63 -> 69
Number of reflections
Partial: 17
Full: 454
In ice ring: 0
Total: 471
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
64 [7 ]: *
65 [143]: *********************************
66 [288]: ******************************************************************
67 [299]: *********************************************************************
68 [191]: ********************************************
69 [22 ]: *****
Modelled 134 / 142 reflection profiles on image 65
Modelled 136 / 138 reflection profiles on image 66
Modelled 165 / 169 reflection profiles on image 67
Modelled 13 / 22 reflection profiles on image 68
Beginning modelling job 22
Frames: 66 -> 72
Number of reflections
Partial: 12
Full: 437
In ice ring: 0
Total: 449
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
67 [2 ]:
68 [116]: ***************************
69 [246]: *********************************************************
70 [293]: *********************************************************************
71 [191]: ********************************************
72 [26 ]: ******
Modelled 130 / 133 reflection profiles on image 68
Modelled 121 / 125 reflection profiles on image 69
Modelled 160 / 165 reflection profiles on image 70
Modelled 23 / 26 reflection profiles on image 71
Beginning modelling job 23
Frames: 69 -> 75
Number of reflections
Partial: 13
Full: 410
In ice ring: 0
Total: 423
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
70 [5 ]: *
71 [104]: *************************
72 [239]: **********************************************************
73 [284]: *********************************************************************
74 [168]: ****************************************
75 [20 ]: ****
Modelled 109 / 116 reflection profiles on image 71
Modelled 136 / 139 reflection profiles on image 72
Modelled 144 / 148 reflection profiles on image 73
Modelled 14 / 20 reflection profiles on image 74
Beginning modelling job 24
Frames: 72 -> 78
Number of reflections
Partial: 11
Full: 449
In ice ring: 0
Total: 460
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
73 [5 ]: *
74 [104]: ***********************
75 [282]: **************************************************************
76 [309]: *********************************************************************
77 [180]: ****************************************
78 [27 ]: ******
Modelled 117 / 123 reflection profiles on image 74
Modelled 153 / 157 reflection profiles on image 75
Modelled 149 / 153 reflection profiles on image 76
Modelled 23 / 27 reflection profiles on image 77
Beginning modelling job 25
Frames: 75 -> 81
Number of reflections
Partial: 9
Full: 442
In ice ring: 0
Total: 451
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
76 [4 ]:
77 [126]: ******************************
78 [273]: ******************************************************************
79 [284]: *********************************************************************
80 [166]: ****************************************
81 [17 ]: ****
Modelled 129 / 132 reflection profiles on image 77
Modelled 150 / 153 reflection profiles on image 78
Modelled 145 / 149 reflection profiles on image 79
Modelled 12 / 17 reflection profiles on image 80
Beginning modelling job 26
Frames: 78 -> 84
Number of reflections
Partial: 16
Full: 423
In ice ring: 0
Total: 439
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
79 [3 ]:
80 [126]: ******************************
81 [269]: ******************************************************************
82 [281]: *********************************************************************
83 [166]: ****************************************
84 [21 ]: *****
Modelled 119 / 129 reflection profiles on image 80
Modelled 138 / 144 reflection profiles on image 81
Modelled 143 / 145 reflection profiles on image 82
Modelled 14 / 21 reflection profiles on image 83
Beginning modelling job 27
Frames: 81 -> 87
Number of reflections
Partial: 14
Full: 460
In ice ring: 0
Total: 474
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
83 [141]: ********************************
84 [290]: *****************************************************************
85 [304]: *********************************************************************
86 [182]: *****************************************
87 [25 ]: *****
Modelled 132 / 138 reflection profiles on image 83
Modelled 150 / 154 reflection profiles on image 84
Modelled 151 / 157 reflection profiles on image 85
Modelled 17 / 25 reflection profiles on image 86
Beginning modelling job 28
Frames: 84 -> 90
Number of reflections
Partial: 9
Full: 436
In ice ring: 0
Total: 445
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
85 [4 ]:
86 [121]: ***************************
87 [268]: ************************************************************
88 [308]: *********************************************************************
89 [179]: ****************************************
90 [20 ]: ****
Modelled 109 / 114 reflection profiles on image 86
Modelled 148 / 152 reflection profiles on image 87
Modelled 156 / 159 reflection profiles on image 88
Modelled 17 / 20 reflection profiles on image 89
Beginning modelling job 29
Frames: 87 -> 93
Number of reflections
Partial: 8
Full: 452
In ice ring: 0
Total: 460
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
88 [7 ]: *
89 [135]: *******************************
90 [270]: ***************************************************************
91 [293]: *********************************************************************
92 [190]: ********************************************
93 [14 ]: ***
Modelled 132 / 135 reflection profiles on image 89
Modelled 132 / 135 reflection profiles on image 90
Modelled 171 / 176 reflection profiles on image 91
Modelled 10 / 14 reflection profiles on image 92
Beginning modelling job 30
Frames: 90 -> 96
Number of reflections
Partial: 5
Full: 441
In ice ring: 0
Total: 446
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
91 [6 ]: *
92 [131]: ******************************
93 [279]: ****************************************************************
94 [299]: *********************************************************************
95 [166]: **************************************
96 [26 ]: ******
Modelled 127 / 130 reflection profiles on image 92
Modelled 148 / 150 reflection profiles on image 93
Modelled 138 / 140 reflection profiles on image 94
Modelled 24 / 26 reflection profiles on image 95
Beginning modelling job 31
Frames: 93 -> 99
Number of reflections
Partial: 15
Full: 458
In ice ring: 0
Total: 473
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
94 [6 ]: *
95 [120]: **************************
96 [278]: ************************************************************
97 [317]: *********************************************************************
98 [193]: ******************************************
99 [24 ]: *****
Modelled 119 / 128 reflection profiles on image 95
Modelled 149 / 152 reflection profiles on image 96
Modelled 169 / 169 reflection profiles on image 97
Modelled 17 / 24 reflection profiles on image 98
Beginning modelling job 32
Frames: 96 -> 102
Number of reflections
Partial: 14
Full: 404
In ice ring: 0
Total: 418
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
97 [3 ]:
98 [122]: *******************************
99 [252]: *****************************************************************
100 [261]: ********************************************************************
101 [160]: *****************************************
102 [21 ]: *****
Modelled 123 / 131 reflection profiles on image 98
Modelled 123 / 127 reflection profiles on image 99
Modelled 135 / 139 reflection profiles on image 100
Modelled 15 / 21 reflection profiles on image 101
Beginning modelling job 33
Frames: 99 -> 105
Number of reflections
Partial: 11
Full: 474
In ice ring: 0
Total: 485
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
100 [5 ]: *
101 [115]: ***********************
102 [309]: ***************************************************************
103 [330]: ********************************************************************
104 [184]: *************************************
105 [27 ]: *****
Modelled 126 / 134 reflection profiles on image 101
Modelled 162 / 167 reflection profiles on image 102
Modelled 154 / 157 reflection profiles on image 103
Modelled 24 / 27 reflection profiles on image 104
Beginning modelling job 34
Frames: 102 -> 108
Number of reflections
Partial: 13
Full: 461
In ice ring: 0
Total: 474
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
103 [3 ]:
104 [138]: ******************************
105 [312]: ********************************************************************
106 [306]: ******************************************************************
107 [159]: **********************************
108 [22 ]: ****
Modelled 137 / 147 reflection profiles on image 104
Modelled 164 / 168 reflection profiles on image 105
Modelled 136 / 137 reflection profiles on image 106
Modelled 16 / 22 reflection profiles on image 107
Beginning modelling job 35
Frames: 105 -> 111
Number of reflections
Partial: 11
Full: 460
In ice ring: 0
Total: 471
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
106 [5 ]: *
107 [138]: ******************************
108 [279]: *************************************************************
109 [308]: ********************************************************************
110 [182]: ****************************************
111 [28 ]: ******
Modelled 138 / 144 reflection profiles on image 107
Modelled 141 / 145 reflection profiles on image 108
Modelled 150 / 154 reflection profiles on image 109
Modelled 23 / 28 reflection profiles on image 110
Beginning modelling job 36
Frames: 108 -> 114
Number of reflections
Partial: 16
Full: 440
In ice ring: 0
Total: 456
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
109 [2 ]:
110 [129]: *******************************
111 [251]: ************************************************************
112 [280]: ********************************************************************
113 [199]: ************************************************
114 [21 ]: *****
Modelled 137 / 145 reflection profiles on image 110
Modelled 111 / 112 reflection profiles on image 111
Modelled 174 / 178 reflection profiles on image 112
Modelled 13 / 21 reflection profiles on image 113
Beginning modelling job 37
Frames: 111 -> 117
Number of reflections
Partial: 14
Full: 440
In ice ring: 0
Total: 454
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
112 [3 ]:
113 [126]: *****************************
114 [291]: *******************************************************************
115 [295]: ********************************************************************
116 [158]: ************************************
117 [22 ]: *****
Modelled 137 / 140 reflection profiles on image 113
Modelled 149 / 156 reflection profiles on image 114
Modelled 133 / 136 reflection profiles on image 115
Modelled 17 / 22 reflection profiles on image 116
Beginning modelling job 38
Frames: 114 -> 120
Number of reflections
Partial: 8
Full: 474
In ice ring: 0
Total: 482
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
115 [7 ]: *
116 [139]: *****************************
117 [282]: ***********************************************************
118 [321]: ********************************************************************
119 [190]: ****************************************
120 [21 ]: ****
Modelled 131 / 135 reflection profiles on image 116
Modelled 151 / 157 reflection profiles on image 117
Modelled 167 / 169 reflection profiles on image 118
Modelled 18 / 21 reflection profiles on image 119
Beginning modelling job 39
Frames: 117 -> 123
Number of reflections
Partial: 7
Full: 426
In ice ring: 0
Total: 433
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
118 [3 ]:
119 [115]: ***************************
120 [257]: *************************************************************
121 [285]: ********************************************************************
122 [173]: *****************************************
123 [24 ]: *****
Modelled 122 / 125 reflection profiles on image 119
Modelled 131 / 135 reflection profiles on image 120
Modelled 146 / 149 reflection profiles on image 121
Modelled 20 / 24 reflection profiles on image 122
Beginning modelling job 40
Frames: 120 -> 126
Number of reflections
Partial: 12
Full: 446
In ice ring: 0
Total: 458
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
121 [6 ]: *
122 [138]: ********************************
123 [293]: ********************************************************************
124 [287]: ******************************************************************
125 [168]: **************************************
126 [29 ]: ******
Modelled 143 / 149 reflection profiles on image 122
Modelled 137 / 141 reflection profiles on image 123
Modelled 135 / 139 reflection profiles on image 124
Modelled 24 / 29 reflection profiles on image 125
Beginning modelling job 41
Frames: 123 -> 129
Number of reflections
Partial: 6
Full: 472
In ice ring: 0
Total: 478
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
124 [8 ]: *
125 [155]: *********************************
126 [310]: ******************************************************************
127 [318]: ********************************************************************
128 [172]: ************************************
129 [23 ]: ****
Modelled 135 / 136 reflection profiles on image 125
Modelled 166 / 170 reflection profiles on image 126
Modelled 146 / 149 reflection profiles on image 127
Modelled 21 / 23 reflection profiles on image 128
Beginning modelling job 42
Frames: 126 -> 132
Number of reflections
Partial: 7
Full: 447
In ice ring: 0
Total: 454
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
127 [3 ]:
128 [126]: ***************************
129 [271]: **********************************************************
130 [313]: ********************************************************************
131 [170]: ************************************
132 [28 ]: ******
Modelled 119 / 122 reflection profiles on image 128
Modelled 160 / 162 reflection profiles on image 129
Modelled 140 / 142 reflection profiles on image 130
Modelled 23 / 28 reflection profiles on image 131
Beginning modelling job 43
Frames: 129 -> 135
Number of reflections
Partial: 13
Full: 422
In ice ring: 0
Total: 435
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
130 [6 ]: *
131 [120]: ****************************
132 [264]: **************************************************************
133 [286]: ********************************************************************
134 [177]: ******************************************
135 [25 ]: *****
Modelled 121 / 126 reflection profiles on image 131
Modelled 130 / 132 reflection profiles on image 132
Modelled 149 / 152 reflection profiles on image 133
Modelled 16 / 25 reflection profiles on image 134
Beginning modelling job 44
Frames: 132 -> 138
Number of reflections
Partial: 14
Full: 427
In ice ring: 0
Total: 441
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
133 [6 ]: *
134 [129]: *****************************
135 [279]: ****************************************************************
136 [294]: ********************************************************************
137 [161]: *************************************
138 [30 ]: ******
Modelled 116 / 122 reflection profiles on image 134
Modelled 155 / 158 reflection profiles on image 135
Modelled 126 / 131 reflection profiles on image 136
Modelled 26 / 30 reflection profiles on image 137
Beginning modelling job 45
Frames: 135 -> 141
Number of reflections
Partial: 14
Full: 432
In ice ring: 0
Total: 446
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
136 [11 ]: **
137 [150]: ***********************************
138 [284]: *******************************************************************
139 [286]: ********************************************************************
140 [160]: **************************************
141 [17 ]: ****
Modelled 135 / 140 reflection profiles on image 137
Modelled 140 / 146 reflection profiles on image 138
Modelled 137 / 143 reflection profiles on image 139
Modelled 13 / 17 reflection profiles on image 140
Beginning modelling job 46
Frames: 138 -> 144
Number of reflections
Partial: 9
Full: 406
In ice ring: 0
Total: 415
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
139 [4 ]:
140 [121]: *****************************
141 [250]: *************************************************************
142 [276]: ********************************************************************
143 [156]: **************************************
144 [18 ]: ****
Modelled 114 / 119 reflection profiles on image 140
Modelled 136 / 140 reflection profiles on image 141
Modelled 134 / 138 reflection profiles on image 142
Modelled 14 / 18 reflection profiles on image 143
Beginning modelling job 47
Frames: 141 -> 147
Number of reflections
Partial: 14
Full: 406
In ice ring: 0
Total: 420
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
142 [5 ]: *
143 [127]: ******************************
144 [269]: *****************************************************************
145 [281]: ********************************************************************
146 [149]: ************************************
147 [25 ]: ******
Modelled 118 / 123 reflection profiles on image 143
Modelled 144 / 148 reflection profiles on image 144
Modelled 118 / 124 reflection profiles on image 145
Modelled 20 / 25 reflection profiles on image 146
Beginning modelling job 48
Frames: 144 -> 150
Number of reflections
Partial: 18
Full: 424
In ice ring: 0
Total: 442
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
145 [4 ]:
146 [126]: *****************************
147 [281]: ******************************************************************
148 [287]: ********************************************************************
149 [153]: ************************************
150 [23 ]: *****
Modelled 126 / 134 reflection profiles on image 146
Modelled 150 / 155 reflection profiles on image 147
Modelled 129 / 130 reflection profiles on image 148
Modelled 15 / 23 reflection profiles on image 149
Beginning modelling job 49
Frames: 147 -> 153
Number of reflections
Partial: 7
Full: 416
In ice ring: 0
Total: 423
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
148 [6 ]: *
149 [127]: ******************************
150 [262]: **************************************************************
151 [285]: ********************************************************************
152 [165]: ***************************************
153 [29 ]: ******
Modelled 114 / 117 reflection profiles on image 149
Modelled 139 / 141 reflection profiles on image 150
Modelled 132 / 136 reflection profiles on image 151
Modelled 27 / 29 reflection profiles on image 152
Beginning modelling job 50
Frames: 150 -> 156
Number of reflections
Partial: 10
Full: 403
In ice ring: 0
Total: 413
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
151 [7 ]: *
152 [122]: *****************************
153 [261]: ***************************************************************
154 [278]: ********************************************************************
155 [164]: ****************************************
156 [27 ]: ******
Modelled 108 / 115 reflection profiles on image 152
Modelled 133 / 134 reflection profiles on image 153
Modelled 137 / 137 reflection profiles on image 154
Modelled 21 / 27 reflection profiles on image 155
Beginning modelling job 51
Frames: 153 -> 159
Number of reflections
Partial: 15
Full: 434
In ice ring: 0
Total: 449
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
154 [7 ]: *
155 [140]: ********************************
156 [276]: ****************************************************************
157 [291]: ********************************************************************
158 [169]: ***************************************
159 [21 ]: ****
Modelled 130 / 136 reflection profiles on image 155
Modelled 140 / 144 reflection profiles on image 156
Modelled 142 / 148 reflection profiles on image 157
Modelled 17 / 21 reflection profiles on image 158
Beginning modelling job 52
Frames: 156 -> 162
Number of reflections
Partial: 7
Full: 403
In ice ring: 0
Total: 410
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
157 [4 ]: *
158 [122]: ******************************
159 [257]: ****************************************************************
160 [270]: ********************************************************************
161 [156]: ***************************************
162 [12 ]: ***
Modelled 111 / 113 reflection profiles on image 158
Modelled 136 / 141 reflection profiles on image 159
Modelled 141 / 144 reflection profiles on image 160
Modelled 10 / 12 reflection profiles on image 161
Beginning modelling job 53
Frames: 159 -> 165
Number of reflections
Partial: 8
Full: 403
In ice ring: 0
Total: 411
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
160 [3 ]:
161 [113]: **************************
162 [245]: *********************************************************
163 [288]: ********************************************************************
164 [160]: *************************************
165 [24 ]: *****
Modelled 104 / 107 reflection profiles on image 161
Modelled 140 / 144 reflection profiles on image 162
Modelled 135 / 136 reflection profiles on image 163
Modelled 20 / 24 reflection profiles on image 164
Beginning modelling job 54
Frames: 162 -> 168
Number of reflections
Partial: 7
Full: 417
In ice ring: 0
Total: 424
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
163 [7 ]: *
164 [138]: ********************************
165 [279]: ******************************************************************
166 [285]: ********************************************************************
167 [157]: *************************************
168 [22 ]: *****
Modelled 123 / 125 reflection profiles on image 164
Modelled 137 / 142 reflection profiles on image 165
Modelled 132 / 135 reflection profiles on image 166
Modelled 19 / 22 reflection profiles on image 167
Beginning modelling job 55
Frames: 165 -> 171
Number of reflections
Partial: 10
Full: 393
In ice ring: 0
Total: 403
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
166 [3 ]:
167 [131]: *********************************
168 [269]: ********************************************************************
169 [258]: *****************************************************************
170 [144]: ************************************
171 [23 ]: *****
Modelled 124 / 131 reflection profiles on image 167
Modelled 125 / 128 reflection profiles on image 168
Modelled 120 / 121 reflection profiles on image 169
Modelled 17 / 23 reflection profiles on image 170
Beginning modelling job 56
Frames: 168 -> 174
Number of reflections
Partial: 16
Full: 430
In ice ring: 0
Total: 446
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
169 [5 ]: *
170 [113]: *************************
171 [273]: ************************************************************
172 [305]: ********************************************************************
173 [176]: ***************************************
174 [29 ]: ******
Modelled 111 / 118 reflection profiles on image 170
Modelled 150 / 152 reflection profiles on image 171
Modelled 146 / 147 reflection profiles on image 172
Modelled 21 / 29 reflection profiles on image 173
Beginning modelling job 57
Frames: 171 -> 177
Number of reflections
Partial: 15
Full: 402
In ice ring: 0
Total: 417
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
172 [7 ]: *
173 [117]: ****************************
174 [246]: ************************************************************
175 [277]: ********************************************************************
176 [159]: ***************************************
177 [19 ]: ****
Modelled 113 / 122 reflection profiles on image 173
Modelled 132 / 136 reflection profiles on image 174
Modelled 135 / 140 reflection profiles on image 175
Modelled 15 / 19 reflection profiles on image 176
Beginning modelling job 58
Frames: 174 -> 180
Number of reflections
Partial: 8
Full: 391
In ice ring: 0
Total: 399
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
175 [6 ]: *
176 [102]: *************************
177 [251]: *************************************************************
178 [277]: ********************************************************************
179 [172]: ******************************************
180 [23 ]: *****
Modelled 103 / 104 reflection profiles on image 176
Modelled 120 / 123 reflection profiles on image 177
Modelled 146 / 149 reflection profiles on image 178
Modelled 20 / 23 reflection profiles on image 179
Beginning modelling job 59
Frames: 177 -> 183
Number of reflections
Partial: 6
Full: 407
In ice ring: 0
Total: 413
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
178 [2 ]:
179 [124]: ********************************
180 [248]: ****************************************************************
181 [262]: ********************************************************************
182 [167]: *******************************************
183 [29 ]: *******
Modelled 127 / 130 reflection profiles on image 179
Modelled 116 / 116 reflection profiles on image 180
Modelled 131 / 138 reflection profiles on image 181
Modelled 26 / 29 reflection profiles on image 182
Beginning modelling job 60
Frames: 180 -> 186
Number of reflections
Partial: 17
Full: 377
In ice ring: 0
Total: 394
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
181 [10 ]: **
182 [104]: **************************
183 [240]: ************************************************************
184 [272]: ********************************************************************
185 [161]: ****************************************
186 [27 ]: ******
Modelled 98 / 105 reflection profiles on image 182
Modelled 125 / 128 reflection profiles on image 183
Modelled 132 / 134 reflection profiles on image 184
Modelled 20 / 27 reflection profiles on image 185
Beginning modelling job 61
Frames: 183 -> 189
Number of reflections
Partial: 13
Full: 366
In ice ring: 0
Total: 379
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
184 [4 ]: *
185 [111]: *****************************
186 [237]: ***************************************************************
187 [252]: ********************************************************************
188 [149]: ****************************************
189 [20 ]: *****
Modelled 105 / 109 reflection profiles on image 185
Modelled 113 / 121 reflection profiles on image 186
Modelled 127 / 129 reflection profiles on image 187
Modelled 15 / 20 reflection profiles on image 188
Beginning modelling job 62
Frames: 186 -> 192
Number of reflections
Partial: 21
Full: 376
In ice ring: 0
Total: 397
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
187 [4 ]: *
188 [112]: ****************************
189 [242]: **************************************************************
190 [264]: ********************************************************************
191 [158]: ****************************************
192 [25 ]: ******
Modelled 106 / 114 reflection profiles on image 188
Modelled 123 / 125 reflection profiles on image 189
Modelled 129 / 133 reflection profiles on image 190
Modelled 11 / 25 reflection profiles on image 191
Beginning modelling job 63
Frames: 189 -> 195
Number of reflections
Partial: 20
Full: 370
In ice ring: 0
Total: 390
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
190 [8 ]: *
191 [113]: ***************************
192 [235]: *********************************************************
193 [279]: ********************************************************************
194 [158]: **************************************
195 [31 ]: *******
Modelled 90 / 97 reflection profiles on image 191
Modelled 129 / 135 reflection profiles on image 192
Modelled 122 / 127 reflection profiles on image 193
Modelled 22 / 31 reflection profiles on image 194
Beginning modelling job 64
Frames: 192 -> 198
Number of reflections
Partial: 15
Full: 416
In ice ring: 0
Total: 431
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
193 [5 ]: *
194 [124]: ******************************
195 [267]: *****************************************************************
196 [277]: ********************************************************************
197 [170]: *****************************************
198 [26 ]: ******
Modelled 127 / 132 reflection profiles on image 194
Modelled 124 / 129 reflection profiles on image 195
Modelled 138 / 144 reflection profiles on image 196
Modelled 22 / 26 reflection profiles on image 197
Beginning modelling job 65
Frames: 195 -> 201
Number of reflections
Partial: 9
Full: 363
In ice ring: 0
Total: 372
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
196 [2 ]:
197 [98 ]: **************************
198 [219]: **********************************************************
199 [256]: ********************************************************************
200 [166]: ********************************************
201 [30 ]: *******
Modelled 98 / 101 reflection profiles on image 197
Modelled 103 / 105 reflection profiles on image 198
Modelled 134 / 136 reflection profiles on image 199
Modelled 23 / 30 reflection profiles on image 200
Beginning modelling job 66
Frames: 198 -> 204
Number of reflections
Partial: 17
Full: 375
In ice ring: 0
Total: 392
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
199 [5 ]: *
200 [114]: *****************************
201 [236]: ************************************************************
202 [265]: ********************************************************************
203 [169]: *******************************************
204 [27 ]: ******
Modelled 101 / 110 reflection profiles on image 200
Modelled 109 / 113 reflection profiles on image 201
Modelled 138 / 142 reflection profiles on image 202
Modelled 19 / 27 reflection profiles on image 203
Beginning modelling job 67
Frames: 201 -> 207
Number of reflections
Partial: 20
Full: 350
In ice ring: 0
Total: 370
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
202 [4 ]: *
203 [103]: ***************************
204 [216]: **********************************************************
205 [251]: ********************************************************************
206 [155]: *****************************************
207 [25 ]: ******
Modelled 97 / 103 reflection profiles on image 203
Modelled 106 / 112 reflection profiles on image 204
Modelled 128 / 130 reflection profiles on image 205
Modelled 19 / 25 reflection profiles on image 206
Beginning modelling job 68
Frames: 204 -> 210
Number of reflections
Partial: 11
Full: 369
In ice ring: 0
Total: 380
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
205 [1 ]:
206 [110]: ******************************
207 [222]: *************************************************************
208 [245]: ********************************************************************
209 [162]: ********************************************
210 [27 ]: *******
Modelled 109 / 112 reflection profiles on image 206
Modelled 100 / 106 reflection profiles on image 207
Modelled 134 / 135 reflection profiles on image 208
Modelled 23 / 27 reflection profiles on image 209
Beginning modelling job 69
Frames: 207 -> 213
Number of reflections
Partial: 12
Full: 357
In ice ring: 0
Total: 369
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
208 [8 ]: **
209 [119]: *********************************
210 [239]: *******************************************************************
211 [240]: ********************************************************************
212 [135]: **************************************
213 [21 ]: *****
Modelled 106 / 110 reflection profiles on image 209
Modelled 122 / 124 reflection profiles on image 210
Modelled 112 / 114 reflection profiles on image 211
Modelled 15 / 21 reflection profiles on image 212
Beginning modelling job 70
Frames: 210 -> 216
Number of reflections
Partial: 14
Full: 355
In ice ring: 0
Total: 369
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
211 [4 ]: *
212 [123]: ************************************
213 [229]: ********************************************************************
214 [226]: *******************************************************************
215 [145]: *******************************************
216 [20 ]: *****
Modelled 121 / 127 reflection profiles on image 212
Modelled 91 / 97 reflection profiles on image 213
Modelled 124 / 125 reflection profiles on image 214
Modelled 14 / 20 reflection profiles on image 215
Beginning modelling job 71
Frames: 213 -> 219
Number of reflections
Partial: 19
Full: 336
In ice ring: 0
Total: 355
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
214 [2 ]:
215 [98 ]: ***************************
216 [207]: **********************************************************
217 [239]: ********************************************************************
218 [143]: ****************************************
219 [29 ]: ********
Modelled 91 / 100 reflection profiles on image 215
Modelled 111 / 112 reflection profiles on image 216
Modelled 111 / 114 reflection profiles on image 217
Modelled 18 / 29 reflection profiles on image 218
Beginning modelling job 72
Frames: 216 -> 222
Number of reflections
Partial: 18
Full: 362
In ice ring: 0
Total: 380
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
217 [5 ]: *
218 [111]: *****************************
219 [238]: **************************************************************
220 [260]: ********************************************************************
221 [161]: ******************************************
222 [24 ]: ******
Modelled 96 / 99 reflection profiles on image 218
Modelled 113 / 120 reflection profiles on image 219
Modelled 132 / 137 reflection profiles on image 220
Modelled 18 / 24 reflection profiles on image 221
Beginning modelling job 73
Frames: 219 -> 225
Number of reflections
Partial: 17
Full: 356
In ice ring: 0
Total: 373
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
220 [5 ]: *
221 [112]: ******************************
222 [239]: ****************************************************************
223 [252]: ********************************************************************
224 [137]: ************************************
225 [23 ]: ******
Modelled 99 / 105 reflection profiles on image 221
Modelled 125 / 131 reflection profiles on image 222
Modelled 113 / 114 reflection profiles on image 223
Modelled 15 / 23 reflection profiles on image 224
Beginning modelling job 74
Frames: 222 -> 228
Number of reflections
Partial: 13
Full: 356
In ice ring: 0
Total: 369
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
223 [5 ]: *
224 [115]: ********************************
225 [225]: ***************************************************************
226 [241]: ********************************************************************
227 [140]: ***************************************
228 [22 ]: ******
Modelled 106 / 109 reflection profiles on image 224
Modelled 116 / 120 reflection profiles on image 225
Modelled 113 / 118 reflection profiles on image 226
Modelled 17 / 22 reflection profiles on image 227
Beginning modelling job 75
Frames: 225 -> 231
Number of reflections
Partial: 8
Full: 357
In ice ring: 0
Total: 365
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
226 [5 ]: *
227 [115]: ******************************
228 [233]: **************************************************************
229 [253]: ********************************************************************
230 [139]: *************************************
231 [23 ]: ******
Modelled 93 / 96 reflection profiles on image 227
Modelled 123 / 130 reflection profiles on image 228
Modelled 112 / 116 reflection profiles on image 229
Modelled 21 / 23 reflection profiles on image 230
Beginning modelling job 76
Frames: 228 -> 234
Number of reflections
Partial: 10
Full: 359
In ice ring: 0
Total: 369
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
229 [3 ]:
230 [111]: *******************************
231 [241]: ********************************************************************
232 [240]: *******************************************************************
233 [137]: **************************************
234 [25 ]: *******
Modelled 107 / 112 reflection profiles on image 230
Modelled 118 / 120 reflection profiles on image 231
Modelled 111 / 112 reflection profiles on image 232
Modelled 20 / 25 reflection profiles on image 233
Beginning modelling job 77
Frames: 231 -> 237
Number of reflections
Partial: 6
Full: 327
In ice ring: 0
Total: 333
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
232 [5 ]: *
233 [95 ]: ****************************
234 [207]: *************************************************************
235 [230]: ********************************************************************
236 [131]: **************************************
237 [23 ]: ******
Modelled 87 / 89 reflection profiles on image 233
Modelled 111 / 113 reflection profiles on image 234
Modelled 106 / 108 reflection profiles on image 235
Modelled 20 / 23 reflection profiles on image 236
Beginning modelling job 78
Frames: 234 -> 240
Number of reflections
Partial: 7
Full: 350
In ice ring: 0
Total: 357
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
235 [6 ]: *
236 [97 ]: **************************
237 [231]: ***************************************************************
238 [249]: ********************************************************************
239 [143]: ***************************************
240 [23 ]: ******
Modelled 82 / 88 reflection profiles on image 236
Modelled 124 / 126 reflection profiles on image 237
Modelled 119 / 120 reflection profiles on image 238
Modelled 18 / 23 reflection profiles on image 239
Beginning modelling job 79
Frames: 237 -> 243
Number of reflections
Partial: 14
Full: 376
In ice ring: 0
Total: 390
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
238 [4 ]: *
239 [120]: ******************************
240 [236]: ***********************************************************
241 [268]: ********************************************************************
242 [155]: ***************************************
243 [24 ]: ******
Modelled 103 / 108 reflection profiles on image 239
Modelled 123 / 127 reflection profiles on image 240
Modelled 131 / 131 reflection profiles on image 241
Modelled 16 / 24 reflection profiles on image 242
Beginning modelling job 80
Frames: 240 -> 246
Number of reflections
Partial: 18
Full: 365
In ice ring: 0
Total: 383
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
241 [3 ]:
242 [118]: *******************************
243 [242]: *****************************************************************
244 [253]: ********************************************************************
245 [145]: **************************************
246 [35 ]: *********
Modelled 106 / 111 reflection profiles on image 242
Modelled 121 / 127 reflection profiles on image 243
Modelled 109 / 110 reflection profiles on image 244
Modelled 24 / 35 reflection profiles on image 245
Beginning modelling job 81
Frames: 243 -> 249
Number of reflections
Partial: 19
Full: 351
In ice ring: 0
Total: 370
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
244 [5 ]: *
245 [95 ]: *************************
246 [222]: ***********************************************************
247 [252]: ********************************************************************
248 [157]: ******************************************
249 [32 ]: ********
Modelled 89 / 96 reflection profiles on image 245
Modelled 114 / 117 reflection profiles on image 246
Modelled 121 / 125 reflection profiles on image 247
Modelled 23 / 32 reflection profiles on image 248
Beginning modelling job 82
Frames: 246 -> 252
Number of reflections
Partial: 8
Full: 382
In ice ring: 0
Total: 390
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
247 [4 ]: *
248 [104]: ****************************
249 [249]: ********************************************************************
250 [243]: ******************************************************************
251 [150]: ****************************************
252 [15 ]: ****
Modelled 123 / 124 reflection profiles on image 248
Modelled 110 / 116 reflection profiles on image 249
Modelled 134 / 135 reflection profiles on image 250
Modelled 12 / 15 reflection profiles on image 251
Beginning modelling job 83
Frames: 249 -> 255
Number of reflections
Partial: 9
Full: 362
In ice ring: 0
Total: 371
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
250 [4 ]: *
251 [110]: *******************************
252 [235]: *******************************************************************
253 [236]: ********************************************************************
254 [156]: ********************************************
255 [27 ]: *******
Modelled 106 / 112 reflection profiles on image 251
Modelled 102 / 103 reflection profiles on image 252
Modelled 129 / 129 reflection profiles on image 253
Modelled 21 / 27 reflection profiles on image 254
Beginning modelling job 84
Frames: 252 -> 258
Number of reflections
Partial: 8
Full: 347
In ice ring: 0
Total: 355
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
253 [2 ]:
254 [88 ]: ************************
255 [215]: **********************************************************
256 [248]: ********************************************************************
257 [151]: *****************************************
258 [26 ]: *******
Modelled 88 / 90 reflection profiles on image 254
Modelled 112 / 114 reflection profiles on image 255
Modelled 123 / 125 reflection profiles on image 256
Modelled 23 / 26 reflection profiles on image 257
Beginning modelling job 85
Frames: 255 -> 261
Number of reflections
Partial: 13
Full: 371
In ice ring: 0
Total: 384
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
256 [8 ]: **
257 [116]: ******************************
258 [238]: **************************************************************
259 [257]: ********************************************************************
260 [147]: **************************************
261 [13 ]: ***
Modelled 106 / 112 reflection profiles on image 257
Modelled 122 / 125 reflection profiles on image 258
Modelled 132 / 134 reflection profiles on image 259
Modelled 9 / 13 reflection profiles on image 260
Beginning modelling job 86
Frames: 258 -> 264
Number of reflections
Partial: 11
Full: 362
In ice ring: 0
Total: 373
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
259 [4 ]: *
260 [110]: *******************************
261 [232]: *******************************************************************
262 [234]: ********************************************************************
263 [139]: ****************************************
264 [21 ]: ******
Modelled 115 / 120 reflection profiles on image 260
Modelled 108 / 114 reflection profiles on image 261
Modelled 116 / 118 reflection profiles on image 262
Modelled 17 / 21 reflection profiles on image 263
Beginning modelling job 87
Frames: 261 -> 267
Number of reflections
Partial: 7
Full: 348
In ice ring: 0
Total: 355
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
262 [3 ]:
263 [113]: ********************************
264 [237]: ********************************************************************
265 [233]: ******************************************************************
266 [143]: *****************************************
267 [20 ]: *****
Modelled 100 / 105 reflection profiles on image 263
Modelled 102 / 107 reflection profiles on image 264
Modelled 121 / 123 reflection profiles on image 265
Modelled 18 / 20 reflection profiles on image 266
Beginning modelling job 88
Frames: 264 -> 270
Number of reflections
Partial: 14
Full: 419
In ice ring: 0
Total: 433
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
265 [6 ]: *
266 [130]: *******************************
267 [282]: ********************************************************************
268 [276]: ******************************************************************
269 [164]: ***************************************
270 [36 ]: ********
Modelled 124 / 135 reflection profiles on image 266
Modelled 131 / 134 reflection profiles on image 267
Modelled 126 / 128 reflection profiles on image 268
Modelled 31 / 36 reflection profiles on image 269
Beginning modelling job 89
Frames: 267 -> 273
Number of reflections
Partial: 12
Full: 394
In ice ring: 0
Total: 406
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
268 [8 ]: *
269 [110]: ***************************
270 [249]: *************************************************************
271 [275]: ********************************************************************
272 [167]: *****************************************
273 [21 ]: *****
Modelled 107 / 111 reflection profiles on image 269
Modelled 123 / 128 reflection profiles on image 270
Modelled 144 / 146 reflection profiles on image 271
Modelled 18 / 21 reflection profiles on image 272
Beginning modelling job 90
Frames: 270 -> 276
Number of reflections
Partial: 8
Full: 383
In ice ring: 0
Total: 391
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
271 [5 ]: *
272 [96 ]: ***********************
273 [224]: *******************************************************
274 [276]: ********************************************************************
275 [160]: ***************************************
276 [25 ]: ******
Modelled 90 / 93 reflection profiles on image 272
Modelled 133 / 138 reflection profiles on image 273
Modelled 134 / 135 reflection profiles on image 274
Modelled 21 / 25 reflection profiles on image 275
Beginning modelling job 91
Frames: 273 -> 279
Number of reflections
Partial: 4
Full: 358
In ice ring: 0
Total: 362
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
274 [2 ]:
275 [104]: *****************************
276 [233]: *****************************************************************
277 [241]: ********************************************************************
278 [136]: **************************************
279 [26 ]: *******
Modelled 107 / 109 reflection profiles on image 275
Modelled 115 / 117 reflection profiles on image 276
Modelled 107 / 110 reflection profiles on image 277
Modelled 25 / 26 reflection profiles on image 278
Beginning modelling job 92
Frames: 276 -> 282
Number of reflections
Partial: 7
Full: 397
In ice ring: 0
Total: 404
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
277 [6 ]: *
278 [119]: ******************************
279 [258]: *****************************************************************
280 [268]: ********************************************************************
281 [145]: ************************************
282 [15 ]: ***
Modelled 115 / 118 reflection profiles on image 278
Modelled 140 / 141 reflection profiles on image 279
Modelled 129 / 130 reflection profiles on image 280
Modelled 12 / 15 reflection profiles on image 281
Beginning modelling job 93
Frames: 279 -> 285
Number of reflections
Partial: 10
Full: 378
In ice ring: 0
Total: 388
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
280 [2 ]:
281 [111]: *****************************
282 [244]: ***************************************************************
283 [260]: ********************************************************************
284 [154]: ****************************************
285 [29 ]: *******
Modelled 105 / 109 reflection profiles on image 281
Modelled 121 / 125 reflection profiles on image 282
Modelled 124 / 125 reflection profiles on image 283
Modelled 24 / 29 reflection profiles on image 284
Beginning modelling job 94
Frames: 282 -> 288
Number of reflections
Partial: 8
Full: 380
In ice ring: 0
Total: 388
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
283 [7 ]: *
284 [120]: ********************************
285 [243]: ******************************************************************
286 [250]: ********************************************************************
287 [142]: **************************************
288 [21 ]: *****
Modelled 110 / 115 reflection profiles on image 284
Modelled 128 / 131 reflection profiles on image 285
Modelled 120 / 121 reflection profiles on image 286
Modelled 15 / 21 reflection profiles on image 287
Beginning modelling job 95
Frames: 285 -> 291
Number of reflections
Partial: 11
Full: 367
In ice ring: 0
Total: 378
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
286 [2 ]:
287 [112]: ********************************
288 [216]: ***************************************************************
289 [233]: ********************************************************************
290 [161]: **********************************************
291 [25 ]: *******
Modelled 109 / 113 reflection profiles on image 287
Modelled 102 / 104 reflection profiles on image 288
Modelled 133 / 136 reflection profiles on image 289
Modelled 20 / 25 reflection profiles on image 290
Beginning modelling job 96
Frames: 288 -> 294
Number of reflections
Partial: 11
Full: 387
In ice ring: 0
Total: 398
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
289 [7 ]: *
290 [126]: ********************************
291 [261]: ********************************************************************
292 [256]: ******************************************************************
293 [152]: ***************************************
294 [28 ]: *******
Modelled 124 / 128 reflection profiles on image 290
Modelled 113 / 118 reflection profiles on image 291
Modelled 121 / 124 reflection profiles on image 292
Modelled 22 / 28 reflection profiles on image 293
Beginning modelling job 97
Frames: 291 -> 297
Number of reflections
Partial: 9
Full: 366
In ice ring: 0
Total: 375
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
292 [3 ]:
293 [114]: ********************************
294 [239]: ********************************************************************
295 [237]: *******************************************************************
296 [141]: ****************************************
297 [24 ]: ******
Modelled 115 / 117 reflection profiles on image 293
Modelled 117 / 117 reflection profiles on image 294
Modelled 116 / 117 reflection profiles on image 295
Modelled 18 / 24 reflection profiles on image 296
Beginning modelling job 98
Frames: 294 -> 300
Number of reflections
Partial: 7
Full: 387
In ice ring: 0
Total: 394
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
295 [3 ]:
296 [114]: ******************************
297 [238]: ***************************************************************
298 [256]: ********************************************************************
299 [149]: ***************************************
300 [23 ]: ******
Modelled 114 / 115 reflection profiles on image 296
Modelled 126 / 130 reflection profiles on image 297
Modelled 122 / 126 reflection profiles on image 298
Modelled 21 / 23 reflection profiles on image 299
Beginning modelling job 99
Frames: 297 -> 303
Number of reflections
Partial: 12
Full: 392
In ice ring: 0
Total: 404
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
298 [5 ]: *
299 [115]: ****************************
300 [258]: ***************************************************************
301 [277]: ********************************************************************
302 [153]: *************************************
303 [31 ]: *******
Modelled 104 / 110 reflection profiles on image 299
Modelled 140 / 141 reflection profiles on image 300
Modelled 120 / 122 reflection profiles on image 301
Modelled 24 / 31 reflection profiles on image 302
Beginning modelling job 100
Frames: 300 -> 306
Number of reflections
Partial: 11
Full: 355
In ice ring: 0
Total: 366
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
301 [2 ]:
302 [106]: *****************************
303 [227]: ***************************************************************
304 [243]: ********************************************************************
305 [145]: ****************************************
306 [24 ]: ******
Modelled 107 / 110 reflection profiles on image 302
Modelled 109 / 111 reflection profiles on image 303
Modelled 118 / 121 reflection profiles on image 304
Modelled 20 / 24 reflection profiles on image 305
Beginning modelling job 101
Frames: 303 -> 309
Number of reflections
Partial: 10
Full: 378
In ice ring: 0
Total: 388
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
304 [3 ]:
305 [119]: *******************************
306 [228]: ***********************************************************
307 [259]: ********************************************************************
308 [152]: ***************************************
309 [20 ]: *****
Modelled 108 / 113 reflection profiles on image 305
Modelled 119 / 123 reflection profiles on image 306
Modelled 131 / 132 reflection profiles on image 307
Modelled 17 / 20 reflection profiles on image 308
Beginning modelling job 102
Frames: 306 -> 312
Number of reflections
Partial: 9
Full: 399
In ice ring: 0
Total: 408
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
307 [4 ]: *
308 [130]: *********************************
309 [261]: ********************************************************************
310 [260]: *******************************************************************
311 [148]: **************************************
312 [26 ]: ******
Modelled 123 / 127 reflection profiles on image 308
Modelled 128 / 133 reflection profiles on image 309
Modelled 121 / 122 reflection profiles on image 310
Modelled 23 / 26 reflection profiles on image 311
Beginning modelling job 103
Frames: 309 -> 315
Number of reflections
Partial: 10
Full: 388
In ice ring: 0
Total: 398
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
310 [3 ]:
311 [104]: **************************
312 [251]: **************************************************************
313 [272]: ********************************************************************
314 [156]: ***************************************
315 [27 ]: ******
Modelled 103 / 106 reflection profiles on image 311
Modelled 131 / 136 reflection profiles on image 312
Modelled 128 / 129 reflection profiles on image 313
Modelled 25 / 27 reflection profiles on image 314
Beginning modelling job 104
Frames: 312 -> 318
Number of reflections
Partial: 7
Full: 369
In ice ring: 0
Total: 376
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
313 [6 ]: *
314 [113]: ******************************
315 [243]: *****************************************************************
316 [252]: ********************************************************************
317 [153]: *****************************************
318 [25 ]: ******
Modelled 104 / 108 reflection profiles on image 314
Modelled 113 / 115 reflection profiles on image 315
Modelled 127 / 128 reflection profiles on image 316
Modelled 22 / 25 reflection profiles on image 317
Beginning modelling job 105
Frames: 315 -> 321
Number of reflections
Partial: 3
Full: 401
In ice ring: 0
Total: 404
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
317 [120]: ******************************
318 [252]: ***************************************************************
319 [270]: ********************************************************************
320 [147]: *************************************
321 [19 ]: ****
Modelled 112 / 113 reflection profiles on image 317
Modelled 142 / 144 reflection profiles on image 318
Modelled 126 / 128 reflection profiles on image 319
Modelled 18 / 19 reflection profiles on image 320
Beginning modelling job 106
Frames: 318 -> 324
Number of reflections
Partial: 5
Full: 368
In ice ring: 0
Total: 373
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
319 [4 ]: *
320 [122]: **********************************
321 [244]: ********************************************************************
322 [235]: *****************************************************************
323 [136]: *************************************
324 [18 ]: *****
Modelled 112 / 113 reflection profiles on image 320
Modelled 123 / 124 reflection profiles on image 321
Modelled 117 / 118 reflection profiles on image 322
Modelled 14 / 18 reflection profiles on image 323
Beginning modelling job 107
Frames: 321 -> 327
Number of reflections
Partial: 8
Full: 409
In ice ring: 0
Total: 417
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
322 [5 ]: *
323 [116]: ***************************
324 [249]: ***********************************************************
325 [284]: ********************************************************************
326 [165]: ***************************************
327 [25 ]: *****
Modelled 106 / 108 reflection profiles on image 323
Modelled 143 / 144 reflection profiles on image 324
Modelled 138 / 140 reflection profiles on image 325
Modelled 20 / 25 reflection profiles on image 326
Beginning modelling job 108
Frames: 324 -> 330
Number of reflections
Partial: 9
Full: 376
In ice ring: 0
Total: 385
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
325 [4 ]: *
326 [118]: ******************************
327 [248]: ***************************************************************
328 [264]: ********************************************************************
329 [146]: *************************************
330 [22 ]: *****
Modelled 105 / 107 reflection profiles on image 326
Modelled 130 / 132 reflection profiles on image 327
Modelled 121 / 124 reflection profiles on image 328
Modelled 18 / 22 reflection profiles on image 329
Beginning modelling job 109
Frames: 327 -> 333
Number of reflections
Partial: 8
Full: 399
In ice ring: 0
Total: 407
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
328 [8 ]: **
329 [139]: ************************************
330 [262]: ********************************************************************
331 [255]: ******************************************************************
332 [147]: **************************************
333 [24 ]: ******
Modelled 126 / 128 reflection profiles on image 329
Modelled 131 / 132 reflection profiles on image 330
Modelled 117 / 123 reflection profiles on image 331
Modelled 21 / 24 reflection profiles on image 332
Beginning modelling job 110
Frames: 330 -> 336
Number of reflections
Partial: 7
Full: 387
In ice ring: 0
Total: 394
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
331 [4 ]:
332 [108]: **************************
333 [243]: ************************************************************
334 [275]: ********************************************************************
335 [148]: ************************************
336 [23 ]: *****
Modelled 101 / 105 reflection profiles on image 332
Modelled 139 / 141 reflection profiles on image 333
Modelled 123 / 125 reflection profiles on image 334
Modelled 19 / 23 reflection profiles on image 335
Beginning modelling job 111
Frames: 333 -> 339
Number of reflections
Partial: 5
Full: 371
In ice ring: 0
Total: 376
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
334 [2 ]:
335 [90 ]: **********************
336 [234]: ***********************************************************
337 [267]: ********************************************************************
338 [148]: *************************************
339 [20 ]: *****
Modelled 88 / 89 reflection profiles on image 335
Modelled 137 / 139 reflection profiles on image 336
Modelled 127 / 128 reflection profiles on image 337
Modelled 18 / 20 reflection profiles on image 338
Beginning modelling job 112
Frames: 336 -> 342
Number of reflections
Partial: 11
Full: 421
In ice ring: 0
Total: 432
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
337 [5 ]: *
338 [121]: ****************************
339 [266]: ***************************************************************
340 [286]: ********************************************************************
341 [164]: **************************************
342 [32 ]: *******
Modelled 116 / 122 reflection profiles on image 338
Modelled 145 / 146 reflection profiles on image 339
Modelled 132 / 132 reflection profiles on image 340
Modelled 26 / 32 reflection profiles on image 341
Beginning modelling job 113
Frames: 339 -> 345
Number of reflections
Partial: 12
Full: 385
In ice ring: 0
Total: 397
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
340 [7 ]: *
341 [107]: ***************************
342 [244]: **************************************************************
343 [266]: ********************************************************************
344 [159]: ****************************************
345 [22 ]: *****
Modelled 99 / 107 reflection profiles on image 341
Modelled 128 / 131 reflection profiles on image 342
Modelled 134 / 137 reflection profiles on image 343
Modelled 17 / 22 reflection profiles on image 344
Beginning modelling job 114
Frames: 342 -> 348
Number of reflections
Partial: 7
Full: 368
In ice ring: 0
Total: 375
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
343 [4 ]: *
344 [121]: **********************************
345 [236]: ********************************************************************
346 [229]: *****************************************************************
347 [146]: ******************************************
348 [27 ]: *******
Modelled 118 / 120 reflection profiles on image 344
Modelled 108 / 109 reflection profiles on image 345
Modelled 118 / 119 reflection profiles on image 346
Modelled 22 / 27 reflection profiles on image 347
Beginning modelling job 115
Frames: 345 -> 351
Number of reflections
Partial: 8
Full: 411
In ice ring: 0
Total: 419
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
346 [4 ]: *
347 [130]: ********************************
348 [268]: ********************************************************************
349 [265]: *******************************************************************
350 [163]: *****************************************
351 [30 ]: *******
Modelled 130 / 134 reflection profiles on image 347
Modelled 121 / 122 reflection profiles on image 348
Modelled 131 / 133 reflection profiles on image 349
Modelled 26 / 30 reflection profiles on image 350
Beginning modelling job 116
Frames: 348 -> 354
Number of reflections
Partial: 11
Full: 395
In ice ring: 0
Total: 406
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
349 [5 ]: *
350 [111]: **************************
351 [260]: **************************************************************
352 [281]: ********************************************************************
353 [159]: **************************************
354 [18 ]: ****
Modelled 105 / 110 reflection profiles on image 350
Modelled 137 / 137 reflection profiles on image 351
Modelled 141 / 141 reflection profiles on image 352
Modelled 12 / 18 reflection profiles on image 353
Beginning modelling job 117
Frames: 351 -> 357
Number of reflections
Partial: 10
Full: 409
In ice ring: 0
Total: 419
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
352 [7 ]: *
353 [118]: ****************************
354 [260]: **************************************************************
355 [284]: ********************************************************************
356 [162]: **************************************
357 [27 ]: ******
Modelled 111 / 113 reflection profiles on image 353
Modelled 140 / 144 reflection profiles on image 354
Modelled 129 / 135 reflection profiles on image 355
Modelled 23 / 27 reflection profiles on image 356
Beginning modelling job 118
Frames: 354 -> 360
Number of reflections
Partial: 15
Full: 398
In ice ring: 0
Total: 413
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
355 [5 ]: *
356 [121]: *****************************
357 [261]: ****************************************************************
358 [276]: ********************************************************************
359 [131]: ********************************
360 [24 ]: *****
Modelled 116 / 123 reflection profiles on image 356
Modelled 156 / 159 reflection profiles on image 357
Modelled 106 / 107 reflection profiles on image 358
Modelled 17 / 24 reflection profiles on image 359
Beginning modelling job 119
Frames: 357 -> 363
Number of reflections
Partial: 14
Full: 431
In ice ring: 0
Total: 445
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
358 [3 ]:
359 [119]: **************************
360 [261]: **********************************************************
361 [301]: ********************************************************************
362 [163]: ************************************
363 [30 ]: ******
Modelled 117 / 122 reflection profiles on image 359
Modelled 153 / 160 reflection profiles on image 360
Modelled 127 / 133 reflection profiles on image 361
Modelled 24 / 30 reflection profiles on image 362
Beginning modelling job 120
Frames: 360 -> 366
Number of reflections
Partial: 8
Full: 388
In ice ring: 0
Total: 396
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
361 [2 ]:
362 [109]: ****************************
363 [231]: ************************************************************
364 [260]: ********************************************************************
365 [164]: ******************************************
366 [28 ]: *******
Modelled 103 / 107 reflection profiles on image 362
Modelled 120 / 125 reflection profiles on image 363
Modelled 135 / 136 reflection profiles on image 364
Modelled 24 / 28 reflection profiles on image 365
Beginning modelling job 121
Frames: 363 -> 369
Number of reflections
Partial: 8
Full: 425
In ice ring: 0
Total: 433
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
364 [3 ]:
365 [119]: ****************************
366 [251]: ************************************************************
367 [283]: ********************************************************************
368 [179]: *******************************************
369 [24 ]: *****
Modelled 123 / 127 reflection profiles on image 365
Modelled 125 / 127 reflection profiles on image 366
Modelled 154 / 155 reflection profiles on image 367
Modelled 21 / 24 reflection profiles on image 368
Beginning modelling job 122
Frames: 366 -> 372
Number of reflections
Partial: 11
Full: 409
In ice ring: 0
Total: 420
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
367 [8 ]: **
368 [142]: ************************************
369 [263]: ********************************************************************
370 [262]: *******************************************************************
371 [154]: ***************************************
372 [24 ]: ******
Modelled 132 / 136 reflection profiles on image 368
Modelled 125 / 130 reflection profiles on image 369
Modelled 128 / 130 reflection profiles on image 370
Modelled 20 / 24 reflection profiles on image 371
Beginning modelling job 123
Frames: 369 -> 375
Number of reflections
Partial: 10
Full: 396
In ice ring: 0
Total: 406
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
370 [4 ]: *
371 [104]: **************************
372 [260]: ******************************************************************
373 [266]: ********************************************************************
374 [141]: ************************************
375 [27 ]: ******
Modelled 110 / 113 reflection profiles on image 371
Modelled 150 / 152 reflection profiles on image 372
Modelled 110 / 114 reflection profiles on image 373
Modelled 22 / 27 reflection profiles on image 374
Beginning modelling job 124
Frames: 372 -> 378
Number of reflections
Partial: 12
Full: 407
In ice ring: 0
Total: 419
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
373 [4 ]:
374 [131]: ********************************
375 [276]: ********************************************************************
376 [267]: *****************************************************************
377 [154]: *************************************
378 [27 ]: ******
Modelled 128 / 133 reflection profiles on image 374
Modelled 128 / 132 reflection profiles on image 375
Modelled 124 / 127 reflection profiles on image 376
Modelled 23 / 27 reflection profiles on image 377
Beginning modelling job 125
Frames: 375 -> 381
Number of reflections
Partial: 7
Full: 386
In ice ring: 0
Total: 393
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
376 [4 ]: *
377 [104]: ***************************
378 [237]: ***************************************************************
379 [253]: ********************************************************************
380 [150]: ****************************************
381 [20 ]: *****
Modelled 108 / 110 reflection profiles on image 377
Modelled 131 / 133 reflection profiles on image 378
Modelled 129 / 130 reflection profiles on image 379
Modelled 17 / 20 reflection profiles on image 380
Beginning modelling job 126
Frames: 378 -> 384
Number of reflections
Partial: 14
Full: 405
In ice ring: 0
Total: 419
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
379 [8 ]: *
380 [119]: *****************************
381 [263]: ****************************************************************
382 [276]: ********************************************************************
383 [160]: ***************************************
384 [26 ]: ******
Modelled 119 / 125 reflection profiles on image 380
Modelled 129 / 134 reflection profiles on image 381
Modelled 132 / 134 reflection profiles on image 382
Modelled 18 / 26 reflection profiles on image 383
Beginning modelling job 127
Frames: 381 -> 387
Number of reflections
Partial: 16
Full: 397
In ice ring: 0
Total: 413
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
382 [1 ]:
383 [102]: ************************
384 [240]: **********************************************************
385 [278]: ********************************************************************
386 [164]: ****************************************
387 [28 ]: ******
Modelled 106 / 110 reflection profiles on image 383
Modelled 134 / 139 reflection profiles on image 384
Modelled 132 / 136 reflection profiles on image 385
Modelled 21 / 28 reflection profiles on image 386
Beginning modelling job 128
Frames: 384 -> 390
Number of reflections
Partial: 15
Full: 414
In ice ring: 0
Total: 429
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
385 [7 ]: *
386 [113]: ***************************
387 [255]: *************************************************************
388 [283]: ********************************************************************
389 [167]: ****************************************
390 [26 ]: ******
Modelled 120 / 124 reflection profiles on image 386
Modelled 136 / 138 reflection profiles on image 387
Modelled 139 / 141 reflection profiles on image 388
Modelled 20 / 26 reflection profiles on image 389
Beginning modelling job 129
Frames: 387 -> 393
Number of reflections
Partial: 13
Full: 415
In ice ring: 0
Total: 428
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
389 [120]: ****************************
390 [258]: **************************************************************
391 [282]: ********************************************************************
392 [154]: *************************************
393 [19 ]: ****
Modelled 121 / 126 reflection profiles on image 389
Modelled 143 / 148 reflection profiles on image 390
Modelled 130 / 135 reflection profiles on image 391
Modelled 16 / 19 reflection profiles on image 392
Beginning modelling job 130
Frames: 390 -> 396
Number of reflections
Partial: 10
Full: 424
In ice ring: 0
Total: 434
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
391 [4 ]:
392 [124]: ******************************
393 [256]: **************************************************************
394 [280]: ********************************************************************
395 [174]: ******************************************
396 [29 ]: *******
Modelled 115 / 121 reflection profiles on image 392
Modelled 135 / 139 reflection profiles on image 393
Modelled 145 / 145 reflection profiles on image 394
Modelled 24 / 29 reflection profiles on image 395
Beginning modelling job 131
Frames: 393 -> 399
Number of reflections
Partial: 14
Full: 376
In ice ring: 0
Total: 390
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
394 [2 ]:
395 [102]: *************************
396 [237]: ************************************************************
397 [268]: ********************************************************************
398 [150]: **************************************
399 [15 ]: ***
Modelled 98 / 103 reflection profiles on image 395
Modelled 133 / 137 reflection profiles on image 396
Modelled 132 / 135 reflection profiles on image 397
Modelled 10 / 15 reflection profiles on image 398
Beginning modelling job 132
Frames: 396 -> 402
Number of reflections
Partial: 6
Full: 426
In ice ring: 0
Total: 432
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
397 [9 ]: **
398 [113]: *************************
399 [275]: **************************************************************
400 [300]: ********************************************************************
401 [166]: *************************************
402 [13 ]: **
Modelled 106 / 107 reflection profiles on image 398
Modelled 155 / 159 reflection profiles on image 399
Modelled 148 / 153 reflection profiles on image 400
Modelled 12 / 13 reflection profiles on image 401
Beginning modelling job 133
Frames: 399 -> 405
Number of reflections
Partial: 13
Full: 419
In ice ring: 0
Total: 432
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
400 [2 ]:
401 [110]: **************************
402 [263]: **************************************************************
403 [284]: ********************************************************************
404 [167]: ***************************************
405 [33 ]: *******
Modelled 114 / 121 reflection profiles on image 401
Modelled 142 / 144 reflection profiles on image 402
Modelled 132 / 134 reflection profiles on image 403
Modelled 26 / 33 reflection profiles on image 404
Beginning modelling job 134
Frames: 402 -> 408
Number of reflections
Partial: 13
Full: 406
In ice ring: 0
Total: 419
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
403 [8 ]: **
404 [120]: ******************************
405 [248]: ***************************************************************
406 [265]: ********************************************************************
407 [171]: *******************************************
408 [19 ]: ****
Modelled 123 / 127 reflection profiles on image 404
Modelled 115 / 121 reflection profiles on image 405
Modelled 152 / 152 reflection profiles on image 406
Modelled 14 / 19 reflection profiles on image 407
Beginning modelling job 135
Frames: 405 -> 411
Number of reflections
Partial: 14
Full: 406
In ice ring: 0
Total: 420
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
406 [7 ]: *
407 [103]: ************************
408 [252]: ************************************************************
409 [283]: ********************************************************************
410 [161]: **************************************
411 [25 ]: ******
Modelled 109 / 114 reflection profiles on image 407
Modelled 142 / 145 reflection profiles on image 408
Modelled 132 / 136 reflection profiles on image 409
Modelled 19 / 25 reflection profiles on image 410
Beginning modelling job 136
Frames: 408 -> 414
Number of reflections
Partial: 15
Full: 409
In ice ring: 0
Total: 424
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
409 [5 ]: *
410 [124]: ******************************
411 [253]: **************************************************************
412 [277]: ********************************************************************
413 [169]: *****************************************
414 [29 ]: *******
Modelled 115 / 120 reflection profiles on image 410
Modelled 131 / 135 reflection profiles on image 411
Modelled 137 / 140 reflection profiles on image 412
Modelled 21 / 29 reflection profiles on image 413
Beginning modelling job 137
Frames: 411 -> 417
Number of reflections
Partial: 18
Full: 408
In ice ring: 0
Total: 426
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
412 [5 ]: *
413 [103]: *************************
414 [264]: ****************************************************************
415 [280]: ********************************************************************
416 [165]: ****************************************
417 [27 ]: ******
Modelled 109 / 118 reflection profiles on image 413
Modelled 138 / 143 reflection profiles on image 414
Modelled 131 / 138 reflection profiles on image 415
Modelled 19 / 27 reflection profiles on image 416
Beginning modelling job 138
Frames: 414 -> 420
Number of reflections
Partial: 10
Full: 412
In ice ring: 0
Total: 422
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
415 [3 ]:
416 [114]: ***************************
417 [267]: ****************************************************************
418 [281]: ********************************************************************
419 [155]: *************************************
420 [22 ]: *****
Modelled 116 / 121 reflection profiles on image 416
Modelled 141 / 146 reflection profiles on image 417
Modelled 129 / 133 reflection profiles on image 418
Modelled 19 / 22 reflection profiles on image 419
Beginning modelling job 139
Frames: 417 -> 423
Number of reflections
Partial: 10
Full: 415
In ice ring: 0
Total: 425
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
418 [5 ]: *
419 [126]: ********************************
420 [251]: *****************************************************************
421 [262]: ********************************************************************
422 [166]: *******************************************
423 [23 ]: *****
Modelled 129 / 133 reflection profiles on image 419
Modelled 123 / 126 reflection profiles on image 420
Modelled 143 / 143 reflection profiles on image 421
Modelled 18 / 23 reflection profiles on image 422
Beginning modelling job 140
Frames: 420 -> 426
Number of reflections
Partial: 14
Full: 385
In ice ring: 0
Total: 399
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
421 [3 ]:
422 [122]: *******************************
423 [260]: ********************************************************************
424 [251]: *****************************************************************
425 [143]: *************************************
426 [19 ]: ****
Modelled 119 / 124 reflection profiles on image 422
Modelled 129 / 132 reflection profiles on image 423
Modelled 123 / 124 reflection profiles on image 424
Modelled 13 / 19 reflection profiles on image 425
Beginning modelling job 141
Frames: 423 -> 429
Number of reflections
Partial: 7
Full: 428
In ice ring: 0
Total: 435
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
424 [5 ]: *
425 [137]: *********************************
426 [275]: *******************************************************************
427 [277]: ********************************************************************
428 [158]: **************************************
429 [17 ]: ****
Modelled 131 / 133 reflection profiles on image 425
Modelled 137 / 144 reflection profiles on image 426
Modelled 139 / 141 reflection profiles on image 427
Modelled 16 / 17 reflection profiles on image 428
Beginning modelling job 142
Frames: 426 -> 432
Number of reflections
Partial: 1
Full: 441
In ice ring: 0
Total: 442
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
427 [3 ]:
428 [122]: *****************************
429 [262]: **************************************************************
430 [286]: ********************************************************************
431 [178]: ******************************************
432 [26 ]: ******
Modelled 134 / 135 reflection profiles on image 428
Modelled 124 / 129 reflection profiles on image 429
Modelled 151 / 152 reflection profiles on image 430
Modelled 25 / 26 reflection profiles on image 431
Beginning modelling job 143
Frames: 429 -> 435
Number of reflections
Partial: 9
Full: 395
In ice ring: 0
Total: 404
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
430 [3 ]:
431 [114]: ****************************
432 [243]: *************************************************************
433 [268]: ********************************************************************
434 [162]: *****************************************
435 [25 ]: ******
Modelled 112 / 117 reflection profiles on image 431
Modelled 124 / 125 reflection profiles on image 432
Modelled 136 / 137 reflection profiles on image 433
Modelled 20 / 25 reflection profiles on image 434
Beginning modelling job 144
Frames: 432 -> 438
Number of reflections
Partial: 7
Full: 403
In ice ring: 0
Total: 410
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
433 [2 ]:
434 [93 ]: **********************
435 [245]: ************************************************************
436 [277]: ********************************************************************
437 [166]: ****************************************
438 [24 ]: *****
Modelled 108 / 109 reflection profiles on image 434
Modelled 133 / 135 reflection profiles on image 435
Modelled 137 / 142 reflection profiles on image 436
Modelled 22 / 24 reflection profiles on image 437
Beginning modelling job 145
Frames: 435 -> 441
Number of reflections
Partial: 12
Full: 404
In ice ring: 0
Total: 416
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
436 [1 ]:
437 [112]: ***************************
438 [263]: ****************************************************************
439 [276]: ********************************************************************
440 [152]: *************************************
441 [19 ]: ****
Modelled 110 / 115 reflection profiles on image 437
Modelled 147 / 149 reflection profiles on image 438
Modelled 129 / 133 reflection profiles on image 439
Modelled 14 / 19 reflection profiles on image 440
Beginning modelling job 146
Frames: 438 -> 444
Number of reflections
Partial: 7
Full: 384
In ice ring: 0
Total: 391
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
439 [5 ]: *
440 [112]: ******************************
441 [247]: ********************************************************************
442 [243]: ******************************************************************
443 [149]: *****************************************
444 [18 ]: ****
Modelled 114 / 118 reflection profiles on image 440
Modelled 124 / 124 reflection profiles on image 441
Modelled 127 / 131 reflection profiles on image 442
Modelled 14 / 18 reflection profiles on image 443
Beginning modelling job 147
Frames: 441 -> 447
Number of reflections
Partial: 5
Full: 425
In ice ring: 0
Total: 430
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
442 [6 ]: *
443 [124]: *****************************
444 [262]: *************************************************************
445 [288]: ********************************************************************
446 [165]: **************************************
447 [17 ]: ****
Modelled 117 / 118 reflection profiles on image 443
Modelled 141 / 147 reflection profiles on image 444
Modelled 148 / 148 reflection profiles on image 445
Modelled 16 / 17 reflection profiles on image 446
Beginning modelling job 148
Frames: 444 -> 450
Number of reflections
Partial: 8
Full: 397
In ice ring: 0
Total: 405
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
445 [6 ]: *
446 [97 ]: **********************
447 [237]: ******************************************************
448 [294]: ********************************************************************
449 [172]: ***************************************
450 [25 ]: *****
Modelled 87 / 90 reflection profiles on image 446
Modelled 142 / 143 reflection profiles on image 447
Modelled 144 / 147 reflection profiles on image 448
Modelled 19 / 25 reflection profiles on image 449
Beginning modelling job 149
Frames: 447 -> 453
Number of reflections
Partial: 12
Full: 423
In ice ring: 0
Total: 435
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
448 [4 ]:
449 [122]: ****************************
450 [253]: ***********************************************************
451 [288]: ********************************************************************
452 [174]: *****************************************
453 [21 ]: ****
Modelled 115 / 118 reflection profiles on image 449
Modelled 140 / 143 reflection profiles on image 450
Modelled 151 / 153 reflection profiles on image 451
Modelled 14 / 21 reflection profiles on image 452
Beginning modelling job 150
Frames: 450 -> 456
Number of reflections
Partial: 15
Full: 393
In ice ring: 0
Total: 408
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
451 [2 ]:
452 [119]: ******************************
453 [250]: ****************************************************************
454 [263]: ********************************************************************
455 [154]: ***************************************
456 [24 ]: ******
Modelled 122 / 128 reflection profiles on image 452
Modelled 119 / 126 reflection profiles on image 453
Modelled 129 / 130 reflection profiles on image 454
Modelled 18 / 24 reflection profiles on image 455
Beginning modelling job 151
Frames: 453 -> 459
Number of reflections
Partial: 11
Full: 407
In ice ring: 0
Total: 418
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
454 [6 ]: *
455 [108]: **************************
456 [246]: ***********************************************************
457 [282]: ********************************************************************
458 [169]: ****************************************
459 [18 ]: ****
Modelled 105 / 109 reflection profiles on image 455
Modelled 135 / 140 reflection profiles on image 456
Modelled 147 / 151 reflection profiles on image 457
Modelled 15 / 18 reflection profiles on image 458
Beginning modelling job 152
Frames: 456 -> 462
Number of reflections
Partial: 8
Full: 379
In ice ring: 0
Total: 387
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
457 [7 ]: *
458 [118]: ********************************
459 [240]: ******************************************************************
460 [246]: ********************************************************************
461 [142]: ***************************************
462 [31 ]: ********
Modelled 112 / 120 reflection profiles on image 458
Modelled 123 / 125 reflection profiles on image 459
Modelled 111 / 111 reflection profiles on image 460
Modelled 27 / 31 reflection profiles on image 461
Beginning modelling job 153
Frames: 459 -> 465
Number of reflections
Partial: 10
Full: 424
In ice ring: 0
Total: 434
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
460 [6 ]: *
461 [110]: *************************
462 [274]: ***************************************************************
463 [292]: ********************************************************************
464 [164]: **************************************
465 [19 ]: ****
Modelled 120 / 123 reflection profiles on image 461
Modelled 146 / 147 reflection profiles on image 462
Modelled 142 / 145 reflection profiles on image 463
Modelled 15 / 19 reflection profiles on image 464
Beginning modelling job 154
Frames: 462 -> 468
Number of reflections
Partial: 15
Full: 427
In ice ring: 0
Total: 442
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
463 [9 ]: **
464 [117]: ***************************
465 [281]: *****************************************************************
466 [292]: ********************************************************************
467 [159]: *************************************
468 [22 ]: *****
Modelled 117 / 123 reflection profiles on image 464
Modelled 155 / 160 reflection profiles on image 465
Modelled 133 / 137 reflection profiles on image 466
Modelled 16 / 22 reflection profiles on image 467
Beginning modelling job 155
Frames: 465 -> 471
Number of reflections
Partial: 13
Full: 419
In ice ring: 0
Total: 432
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
466 [4 ]:
467 [120]: ****************************
468 [263]: **************************************************************
469 [285]: ********************************************************************
470 [159]: *************************************
471 [16 ]: ***
Modelled 125 / 128 reflection profiles on image 467
Modelled 140 / 145 reflection profiles on image 468
Modelled 139 / 143 reflection profiles on image 469
Modelled 11 / 16 reflection profiles on image 470
Beginning modelling job 156
Frames: 468 -> 474
Number of reflections
Partial: 12
Full: 423
In ice ring: 0
Total: 435
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
469 [3 ]:
470 [128]: *******************************
471 [247]: ************************************************************
472 [276]: ********************************************************************
473 [183]: *********************************************
474 [25 ]: ******
Modelled 131 / 134 reflection profiles on image 470
Modelled 116 / 118 reflection profiles on image 471
Modelled 158 / 158 reflection profiles on image 472
Modelled 17 / 25 reflection profiles on image 473
Beginning modelling job 157
Frames: 471 -> 477
Number of reflections
Partial: 15
Full: 390
In ice ring: 0
Total: 405
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
472 [6 ]: *
473 [125]: *******************************
474 [260]: ******************************************************************
475 [266]: ********************************************************************
476 [154]: ***************************************
477 [17 ]: ****
Modelled 118 / 123 reflection profiles on image 473
Modelled 126 / 128 reflection profiles on image 474
Modelled 131 / 137 reflection profiles on image 475
Modelled 12 / 17 reflection profiles on image 476
Beginning modelling job 158
Frames: 474 -> 480
Number of reflections
Partial: 17
Full: 446
In ice ring: 0
Total: 463
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
475 [6 ]: *
476 [138]: *******************************
477 [274]: *************************************************************
478 [301]: ********************************************************************
479 [183]: *****************************************
480 [21 ]: ****
Modelled 128 / 135 reflection profiles on image 476
Modelled 140 / 145 reflection profiles on image 477
Modelled 160 / 162 reflection profiles on image 478
Modelled 14 / 21 reflection profiles on image 479
Beginning modelling job 159
Frames: 477 -> 483
Number of reflections
Partial: 16
Full: 365
In ice ring: 0
Total: 381
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
478 [2 ]:
479 [98 ]: **************************
480 [218]: ***********************************************************
481 [248]: ********************************************************************
482 [161]: ********************************************
483 [26 ]: *******
Modelled 102 / 108 reflection profiles on image 479
Modelled 109 / 112 reflection profiles on image 480
Modelled 128 / 135 reflection profiles on image 481
Modelled 19 / 26 reflection profiles on image 482
Beginning modelling job 160
Frames: 480 -> 486
Number of reflections
Partial: 17
Full: 380
In ice ring: 0
Total: 397
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
481 [6 ]: *
482 [118]: *****************************
483 [238]: ************************************************************
484 [269]: ********************************************************************
485 [153]: **************************************
486 [21 ]: *****
Modelled 110 / 117 reflection profiles on image 482
Modelled 120 / 127 reflection profiles on image 483
Modelled 131 / 132 reflection profiles on image 484
Modelled 13 / 21 reflection profiles on image 485
Beginning modelling job 161
Frames: 483 -> 489
Number of reflections
Partial: 13
Full: 409
In ice ring: 0
Total: 422
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
484 [2 ]:
485 [123]: ****************************
486 [274]: ****************************************************************
487 [289]: ********************************************************************
488 [150]: ***********************************
489 [19 ]: ****
Modelled 107 / 110 reflection profiles on image 485
Modelled 153 / 162 reflection profiles on image 486
Modelled 130 / 131 reflection profiles on image 487
Modelled 15 / 19 reflection profiles on image 488
Beginning modelling job 162
Frames: 486 -> 492
Number of reflections
Partial: 11
Full: 389
In ice ring: 0
Total: 400
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
488 [108]: **************************
489 [235]: **********************************************************
490 [273]: ********************************************************************
491 [163]: ****************************************
492 [20 ]: ****
Modelled 106 / 109 reflection profiles on image 488
Modelled 126 / 128 reflection profiles on image 489
Modelled 140 / 143 reflection profiles on image 490
Modelled 15 / 20 reflection profiles on image 491
Beginning modelling job 163
Frames: 489 -> 495
Number of reflections
Partial: 14
Full: 387
In ice ring: 0
Total: 401
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
490 [6 ]: *
491 [107]: ***************************
492 [228]: **********************************************************
493 [265]: ********************************************************************
494 [164]: ******************************************
495 [26 ]: ******
Modelled 106 / 112 reflection profiles on image 491
Modelled 123 / 125 reflection profiles on image 492
Modelled 137 / 138 reflection profiles on image 493
Modelled 18 / 26 reflection profiles on image 494
Beginning modelling job 164
Frames: 492 -> 498
Number of reflections
Partial: 14
Full: 372
In ice ring: 0
Total: 386
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
493 [9 ]: **
494 [106]: ***************************
495 [239]: *************************************************************
496 [264]: ********************************************************************
497 [147]: *************************************
498 [22 ]: *****
Modelled 103 / 107 reflection profiles on image 494
Modelled 130 / 132 reflection profiles on image 495
Modelled 122 / 125 reflection profiles on image 496
Modelled 16 / 22 reflection profiles on image 497
Beginning modelling job 165
Frames: 495 -> 501
Number of reflections
Partial: 12
Full: 381
In ice ring: 0
Total: 393
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
496 [7 ]: *
497 [129]: **********************************
498 [254]: ********************************************************************
499 [250]: ******************************************************************
500 [137]: ************************************
501 [22 ]: *****
Modelled 124 / 129 reflection profiles on image 497
Modelled 123 / 127 reflection profiles on image 498
Modelled 115 / 115 reflection profiles on image 499
Modelled 17 / 22 reflection profiles on image 500
Beginning modelling job 166
Frames: 498 -> 504
Number of reflections
Partial: 10
Full: 361
In ice ring: 0
Total: 371
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
499 [4 ]: *
500 [108]: *****************************
501 [231]: ***************************************************************
502 [246]: ********************************************************************
503 [142]: ***************************************
504 [13 ]: ***
Modelled 108 / 111 reflection profiles on image 500
Modelled 115 / 118 reflection profiles on image 501
Modelled 126 / 129 reflection profiles on image 502
Modelled 10 / 13 reflection profiles on image 503
Beginning modelling job 167
Frames: 501 -> 507
Number of reflections
Partial: 13
Full: 370
In ice ring: 0
Total: 383
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
502 [3 ]:
503 [108]: ****************************
504 [239]: **************************************************************
505 [262]: ********************************************************************
506 [142]: ************************************
507 [22 ]: *****
Modelled 102 / 105 reflection profiles on image 503
Modelled 130 / 136 reflection profiles on image 504
Modelled 120 / 120 reflection profiles on image 505
Modelled 14 / 22 reflection profiles on image 506
Beginning modelling job 168
Frames: 504 -> 510
Number of reflections
Partial: 18
Full: 382
In ice ring: 0
Total: 400
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
505 [5 ]: *
506 [120]: *******************************
507 [252]: *****************************************************************
508 [262]: ********************************************************************
509 [149]: **************************************
510 [25 ]: ******
Modelled 109 / 118 reflection profiles on image 506
Modelled 128 / 133 reflection profiles on image 507
Modelled 123 / 124 reflection profiles on image 508
Modelled 15 / 25 reflection profiles on image 509
Beginning modelling job 169
Frames: 507 -> 513
Number of reflections
Partial: 22
Full: 382
In ice ring: 0
Total: 404
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
508 [7 ]: *
509 [111]: ***************************
510 [239]: ***********************************************************
511 [271]: ********************************************************************
512 [163]: ****************************************
513 [26 ]: ******
Modelled 101 / 108 reflection profiles on image 509
Modelled 128 / 133 reflection profiles on image 510
Modelled 134 / 137 reflection profiles on image 511
Modelled 18 / 26 reflection profiles on image 512
Beginning modelling job 170
Frames: 510 -> 516
Number of reflections
Partial: 20
Full: 358
In ice ring: 0
Total: 378
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
511 [4 ]: *
512 [106]: ***************************
513 [233]: ************************************************************
514 [260]: ********************************************************************
515 [147]: **************************************
516 [27 ]: *******
Modelled 97 / 103 reflection profiles on image 512
Modelled 118 / 128 reflection profiles on image 513
Modelled 118 / 120 reflection profiles on image 514
Modelled 22 / 27 reflection profiles on image 515
Beginning modelling job 171
Frames: 513 -> 519
Number of reflections
Partial: 14
Full: 384
In ice ring: 0
Total: 398
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
514 [9 ]: **
515 [124]: ********************************
516 [253]: ******************************************************************
517 [257]: ********************************************************************
518 [146]: **************************************
519 [18 ]: ****
Modelled 118 / 124 reflection profiles on image 515
Modelled 119 / 128 reflection profiles on image 516
Modelled 124 / 128 reflection profiles on image 517
Modelled 14 / 18 reflection profiles on image 518
Beginning modelling job 172
Frames: 516 -> 522
Number of reflections
Partial: 6
Full: 384
In ice ring: 0
Total: 390
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
517 [7 ]: *
518 [119]: *******************************
519 [245]: ****************************************************************
520 [257]: ********************************************************************
521 [152]: ****************************************
522 [20 ]: *****
Modelled 108 / 110 reflection profiles on image 518
Modelled 126 / 128 reflection profiles on image 519
Modelled 130 / 132 reflection profiles on image 520
Modelled 18 / 20 reflection profiles on image 521
Beginning modelling job 173
Frames: 519 -> 525
Number of reflections
Partial: 5
Full: 346
In ice ring: 0
Total: 351
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
520 [4 ]: *
521 [85 ]: ***********************
522 [216]: ***********************************************************
523 [245]: ********************************************************************
524 [136]: *************************************
525 [24 ]: ******
Modelled 92 / 94 reflection profiles on image 521
Modelled 121 / 121 reflection profiles on image 522
Modelled 111 / 112 reflection profiles on image 523
Modelled 20 / 24 reflection profiles on image 524
Beginning modelling job 174
Frames: 522 -> 528
Number of reflections
Partial: 12
Full: 376
In ice ring: 0
Total: 388
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
523 [4 ]: *
524 [121]: ********************************
525 [254]: ********************************************************************
526 [248]: ******************************************************************
527 [144]: **************************************
528 [27 ]: *******
Modelled 119 / 123 reflection profiles on image 524
Modelled 118 / 121 reflection profiles on image 525
Modelled 113 / 117 reflection profiles on image 526
Modelled 20 / 27 reflection profiles on image 527
Beginning modelling job 175
Frames: 525 -> 531
Number of reflections
Partial: 23
Full: 343
In ice ring: 0
Total: 366
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
526 [5 ]: *
527 [105]: *****************************
528 [233]: ******************************************************************
529 [240]: ********************************************************************
530 [130]: ************************************
531 [32 ]: *********
Modelled 105 / 112 reflection profiles on image 527
Modelled 118 / 124 reflection profiles on image 528
Modelled 96 / 98 reflection profiles on image 529
Modelled 22 / 32 reflection profiles on image 530
Beginning modelling job 176
Frames: 528 -> 534
Number of reflections
Partial: 17
Full: 380
In ice ring: 0
Total: 397
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
529 [4 ]:
530 [100]: ************************
531 [250]: ************************************************************
532 [279]: ********************************************************************
533 [158]: **************************************
534 [28 ]: ******
Modelled 96 / 101 reflection profiles on image 530
Modelled 132 / 138 reflection profiles on image 531
Modelled 129 / 130 reflection profiles on image 532
Modelled 19 / 28 reflection profiles on image 533
Beginning modelling job 177
Frames: 531 -> 537
Number of reflections
Partial: 13
Full: 356
In ice ring: 0
Total: 369
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
532 [7 ]: *
533 [97 ]: **************************
534 [212]: **********************************************************
535 [248]: ********************************************************************
536 [154]: ******************************************
537 [23 ]: ******
Modelled 97 / 102 reflection profiles on image 533
Modelled 110 / 113 reflection profiles on image 534
Modelled 125 / 131 reflection profiles on image 535
Modelled 16 / 23 reflection profiles on image 536
Beginning modelling job 178
Frames: 534 -> 540
Number of reflections
Partial: 8
Full: 338
In ice ring: 0
Total: 346
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
535 [6 ]: *
536 [99 ]: ****************************
537 [216]: ***************************************************************
538 [233]: ********************************************************************
539 [131]: **************************************
540 [18 ]: *****
Modelled 93 / 95 reflection profiles on image 536
Modelled 116 / 120 reflection profiles on image 537
Modelled 112 / 113 reflection profiles on image 538
Modelled 14 / 18 reflection profiles on image 539
Beginning modelling job 179
Frames: 537 -> 543
Number of reflections
Partial: 17
Full: 367
In ice ring: 0
Total: 384
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
538 [5 ]: *
539 [100]: **************************
540 [227]: ***********************************************************
541 [258]: ********************************************************************
542 [156]: *****************************************
543 [29 ]: *******
Modelled 98 / 107 reflection profiles on image 539
Modelled 118 / 121 reflection profiles on image 540
Modelled 124 / 127 reflection profiles on image 541
Modelled 22 / 29 reflection profiles on image 542
Beginning modelling job 180
Frames: 540 -> 546
Number of reflections
Partial: 13
Full: 336
In ice ring: 0
Total: 349
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
541 [3 ]:
542 [95 ]: **************************
543 [218]: ***********************************************************
544 [248]: ********************************************************************
545 [131]: ***********************************
546 [22 ]: ******
Modelled 85 / 88 reflection profiles on image 542
Modelled 123 / 130 reflection profiles on image 543
Modelled 107 / 109 reflection profiles on image 544
Modelled 17 / 22 reflection profiles on image 545
Beginning modelling job 181
Frames: 543 -> 549
Number of reflections
Partial: 11
Full: 353
In ice ring: 0
Total: 364
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
544 [8 ]: **
545 [102]: ***************************
546 [232]: ***************************************************************
547 [248]: ********************************************************************
548 [142]: **************************************
549 [27 ]: *******
Modelled 99 / 103 reflection profiles on image 545
Modelled 114 / 119 reflection profiles on image 546
Modelled 110 / 115 reflection profiles on image 547
Modelled 22 / 27 reflection profiles on image 548
Beginning modelling job 182
Frames: 546 -> 552
Number of reflections
Partial: 17
Full: 357
In ice ring: 0
Total: 374
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
547 [1 ]:
548 [115]: *******************************
549 [238]: *****************************************************************
550 [247]: ********************************************************************
551 [148]: ****************************************
552 [19 ]: *****
Modelled 102 / 108 reflection profiles on image 548
Modelled 114 / 118 reflection profiles on image 549
Modelled 128 / 129 reflection profiles on image 550
Modelled 10 / 19 reflection profiles on image 551
Beginning modelling job 183
Frames: 549 -> 555
Number of reflections
Partial: 14
Full: 339
In ice ring: 0
Total: 353
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
550 [7 ]: *
551 [100]: **************************
552 [225]: ************************************************************
553 [252]: ********************************************************************
554 [146]: ***************************************
555 [22 ]: *****
Modelled 89 / 92 reflection profiles on image 551
Modelled 110 / 115 reflection profiles on image 552
Modelled 118 / 124 reflection profiles on image 553
Modelled 17 / 22 reflection profiles on image 554
Beginning modelling job 184
Frames: 552 -> 558
Number of reflections
Partial: 6
Full: 378
In ice ring: 0
Total: 384
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
553 [5 ]: *
554 [119]: ********************************
555 [245]: ******************************************************************
556 [252]: ********************************************************************
557 [144]: **************************************
558 [20 ]: *****
Modelled 114 / 116 reflection profiles on image 554
Modelled 123 / 124 reflection profiles on image 555
Modelled 122 / 124 reflection profiles on image 556
Modelled 18 / 20 reflection profiles on image 557
Beginning modelling job 185
Frames: 555 -> 561
Number of reflections
Partial: 7
Full: 340
In ice ring: 0
Total: 347
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
556 [3 ]:
557 [99 ]: ***************************
558 [206]: *********************************************************
559 [243]: ********************************************************************
560 [146]: ****************************************
561 [29 ]: ********
Modelled 88 / 91 reflection profiles on image 557
Modelled 106 / 110 reflection profiles on image 558
Modelled 117 / 117 reflection profiles on image 559
Modelled 26 / 29 reflection profiles on image 560
Beginning modelling job 186
Frames: 558 -> 564
Number of reflections
Partial: 14
Full: 361
In ice ring: 0
Total: 375
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
559 [12 ]: ***
560 [111]: *****************************
561 [221]: **********************************************************
562 [257]: ********************************************************************
563 [159]: ******************************************
564 [26 ]: ******
Modelled 94 / 100 reflection profiles on image 560
Modelled 114 / 116 reflection profiles on image 561
Modelled 127 / 133 reflection profiles on image 562
Modelled 18 / 26 reflection profiles on image 563
Beginning modelling job 187
Frames: 561 -> 567
Number of reflections
Partial: 9
Full: 325
In ice ring: 0
Total: 334
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
562 [2 ]:
563 [91 ]: ****************************
564 [199]: *************************************************************
565 [221]: ********************************************************************
566 [143]: ********************************************
567 [24 ]: *******
Modelled 95 / 96 reflection profiles on image 563
Modelled 89 / 95 reflection profiles on image 564
Modelled 119 / 119 reflection profiles on image 565
Modelled 20 / 24 reflection profiles on image 566
Beginning modelling job 188
Frames: 564 -> 570
Number of reflections
Partial: 6
Full: 340
In ice ring: 0
Total: 346
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
565 [7 ]: **
566 [108]: ********************************
567 [209]: **************************************************************
568 [227]: ********************************************************************
569 [139]: *****************************************
570 [18 ]: *****
Modelled 99 / 103 reflection profiles on image 566
Modelled 101 / 104 reflection profiles on image 567
Modelled 118 / 121 reflection profiles on image 568
Modelled 17 / 18 reflection profiles on image 569
Beginning modelling job 189
Frames: 567 -> 573
Number of reflections
Partial: 8
Full: 340
In ice ring: 0
Total: 348
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
568 [11 ]: ***
569 [114]: **********************************
570 [222]: ******************************************************************
571 [227]: ********************************************************************
572 [127]: **************************************
573 [23 ]: ******
Modelled 98 / 100 reflection profiles on image 569
Modelled 117 / 121 reflection profiles on image 570
Modelled 102 / 104 reflection profiles on image 571
Modelled 19 / 23 reflection profiles on image 572
Beginning modelling job 190
Frames: 570 -> 576
Number of reflections
Partial: 12
Full: 335
In ice ring: 0
Total: 347
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
571 [6 ]: *
572 [106]: *******************************
573 [207]: **************************************************************
574 [226]: ********************************************************************
575 [149]: ********************************************
576 [29 ]: ********
Modelled 101 / 105 reflection profiles on image 572
Modelled 90 / 93 reflection profiles on image 573
Modelled 119 / 120 reflection profiles on image 574
Modelled 23 / 29 reflection profiles on image 575
Beginning modelling job 191
Frames: 573 -> 579
Number of reflections
Partial: 19
Full: 338
In ice ring: 0
Total: 357
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
574 [6 ]: *
575 [105]: ******************************
576 [214]: *************************************************************
577 [237]: ********************************************************************
578 [144]: *****************************************
579 [28 ]: ********
Modelled 97 / 103 reflection profiles on image 575
Modelled 106 / 110 reflection profiles on image 576
Modelled 113 / 116 reflection profiles on image 577
Modelled 19 / 28 reflection profiles on image 578
Beginning modelling job 192
Frames: 576 -> 582
Number of reflections
Partial: 20
Full: 348
In ice ring: 0
Total: 368
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
577 [5 ]: *
578 [106]: *****************************
579 [223]: *************************************************************
580 [247]: ********************************************************************
581 [158]: *******************************************
582 [33 ]: *********
Modelled 87 / 93 reflection profiles on image 578
Modelled 112 / 117 reflection profiles on image 579
Modelled 121 / 125 reflection profiles on image 580
Modelled 27 / 33 reflection profiles on image 581
Beginning modelling job 193
Frames: 579 -> 585
Number of reflections
Partial: 14
Full: 354
In ice ring: 0
Total: 368
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
580 [2 ]:
581 [108]: ******************************
582 [230]: *****************************************************************
583 [239]: ********************************************************************
584 [135]: **************************************
585 [25 ]: *******
Modelled 102 / 105 reflection profiles on image 581
Modelled 121 / 128 reflection profiles on image 582
Modelled 107 / 110 reflection profiles on image 583
Modelled 20 / 25 reflection profiles on image 584
Beginning modelling job 194
Frames: 582 -> 588
Number of reflections
Partial: 14
Full: 349
In ice ring: 0
Total: 363
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
583 [2 ]:
584 [110]: ********************************
585 [223]: *****************************************************************
586 [232]: ********************************************************************
587 [149]: *******************************************
588 [28 ]: ********
Modelled 112 / 116 reflection profiles on image 584
Modelled 97 / 98 reflection profiles on image 585
Modelled 116 / 121 reflection profiles on image 586
Modelled 21 / 28 reflection profiles on image 587
Beginning modelling job 195
Frames: 585 -> 591
Number of reflections
Partial: 10
Full: 357
In ice ring: 0
Total: 367
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
586 [3 ]:
587 [106]: *****************************
588 [224]: **************************************************************
589 [243]: ********************************************************************
590 [146]: ****************************************
591 [23 ]: ******
Modelled 104 / 107 reflection profiles on image 587
Modelled 110 / 114 reflection profiles on image 588
Modelled 120 / 123 reflection profiles on image 589
Modelled 20 / 23 reflection profiles on image 590
Beginning modelling job 196
Frames: 588 -> 594
Number of reflections
Partial: 6
Full: 369
In ice ring: 0
Total: 375
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
589 [2 ]:
590 [126]: ***********************************
591 [242]: ********************************************************************
592 [237]: ******************************************************************
593 [135]: *************************************
594 [20 ]: *****
Modelled 116 / 118 reflection profiles on image 590
Modelled 117 / 122 reflection profiles on image 591
Modelled 112 / 115 reflection profiles on image 592
Modelled 19 / 20 reflection profiles on image 593
Beginning modelling job 197
Frames: 591 -> 597
Number of reflections
Partial: 6
Full: 336
In ice ring: 0
Total: 342
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
592 [2 ]:
593 [97 ]: ****************************
594 [205]: ***********************************************************
595 [233]: ********************************************************************
596 [141]: *****************************************
597 [19 ]: *****
Modelled 88 / 91 reflection profiles on image 593
Modelled 109 / 110 reflection profiles on image 594
Modelled 120 / 122 reflection profiles on image 595
Modelled 16 / 19 reflection profiles on image 596
Beginning modelling job 198
Frames: 594 -> 600
Number of reflections
Partial: 11
Full: 358
In ice ring: 0
Total: 369
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
595 [3 ]:
596 [104]: ****************************
597 [234]: ***************************************************************
598 [251]: ********************************************************************
599 [139]: *************************************
600 [25 ]: ******
Modelled 96 / 100 reflection profiles on image 596
Modelled 126 / 130 reflection profiles on image 597
Modelled 113 / 114 reflection profiles on image 598
Modelled 22 / 25 reflection profiles on image 599
Beginning modelling job 199
Frames: 597 -> 603
Number of reflections
Partial: 8
Full: 375
In ice ring: 0
Total: 383
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
598 [4 ]: *
599 [117]: *******************************
600 [229]: *************************************************************
601 [253]: ********************************************************************
602 [145]: **************************************
603 [13 ]: ***
Modelled 106 / 108 reflection profiles on image 599
Modelled 127 / 130 reflection profiles on image 600
Modelled 129 / 132 reflection profiles on image 601
Modelled 10 / 13 reflection profiles on image 602
Beginning modelling job 200
Frames: 600 -> 606
Number of reflections
Partial: 13
Full: 376
In ice ring: 0
Total: 389
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
601 [6 ]: *
602 [118]: ********************************
603 [250]: ********************************************************************
604 [248]: *******************************************************************
605 [143]: **************************************
606 [25 ]: ******
Modelled 116 / 121 reflection profiles on image 602
Modelled 121 / 125 reflection profiles on image 603
Modelled 116 / 118 reflection profiles on image 604
Modelled 19 / 25 reflection profiles on image 605
Beginning modelling job 201
Frames: 603 -> 609
Number of reflections
Partial: 8
Full: 352
In ice ring: 0
Total: 360
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
604 [4 ]: *
605 [95 ]: **************************
606 [225]: *************************************************************
607 [247]: ********************************************************************
608 [150]: *****************************************
609 [22 ]: ******
Modelled 90 / 94 reflection profiles on image 605
Modelled 114 / 116 reflection profiles on image 606
Modelled 123 / 128 reflection profiles on image 607
Modelled 22 / 22 reflection profiles on image 608
Beginning modelling job 202
Frames: 606 -> 612
Number of reflections
Partial: 5
Full: 386
In ice ring: 0
Total: 391
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
607 [3 ]:
608 [107]: ****************************
609 [257]: ********************************************************************
610 [245]: ****************************************************************
611 [147]: **************************************
612 [21 ]: *****
Modelled 125 / 128 reflection profiles on image 608
Modelled 115 / 116 reflection profiles on image 609
Modelled 125 / 126 reflection profiles on image 610
Modelled 19 / 21 reflection profiles on image 611
Beginning modelling job 203
Frames: 609 -> 615
Number of reflections
Partial: 4
Full: 368
In ice ring: 0
Total: 372
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
610 [4 ]: *
611 [96 ]: *************************
612 [225]: ***********************************************************
613 [258]: ********************************************************************
614 [157]: *****************************************
615 [18 ]: ****
Modelled 93 / 97 reflection profiles on image 611
Modelled 117 / 118 reflection profiles on image 612
Modelled 135 / 139 reflection profiles on image 613
Modelled 16 / 18 reflection profiles on image 614
Beginning modelling job 204
Frames: 612 -> 618
Number of reflections
Partial: 13
Full: 378
In ice ring: 0
Total: 391
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
613 [7 ]: *
614 [114]: *****************************
615 [244]: **************************************************************
616 [266]: ********************************************************************
617 [156]: ***************************************
618 [24 ]: ******
Modelled 103 / 109 reflection profiles on image 614
Modelled 123 / 126 reflection profiles on image 615
Modelled 130 / 132 reflection profiles on image 616
Modelled 18 / 24 reflection profiles on image 617
Beginning modelling job 205
Frames: 615 -> 621
Number of reflections
Partial: 7
Full: 392
In ice ring: 0
Total: 399
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
616 [4 ]: *
617 [126]: ********************************
618 [240]: *************************************************************
619 [267]: ********************************************************************
620 [152]: **************************************
621 [23 ]: *****
Modelled 112 / 114 reflection profiles on image 617
Modelled 128 / 133 reflection profiles on image 618
Modelled 126 / 129 reflection profiles on image 619
Modelled 21 / 23 reflection profiles on image 620
Beginning modelling job 206
Frames: 618 -> 624
Number of reflections
Partial: 5
Full: 360
In ice ring: 0
Total: 365
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
619 [8 ]: **
620 [102]: ****************************
621 [227]: ***************************************************************
622 [242]: ********************************************************************
623 [142]: ***************************************
624 [19 ]: *****
Modelled 105 / 107 reflection profiles on image 620
Modelled 114 / 116 reflection profiles on image 621
Modelled 122 / 123 reflection profiles on image 622
Modelled 15 / 19 reflection profiles on image 623
Beginning modelling job 207
Frames: 621 -> 627
Number of reflections
Partial: 7
Full: 347
In ice ring: 0
Total: 354
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
622 [2 ]:
623 [119]: ***********************************
624 [227]: *******************************************************************
625 [228]: ********************************************************************
626 [140]: *****************************************
627 [24 ]: *******
Modelled 110 / 115 reflection profiles on image 623
Modelled 95 / 99 reflection profiles on image 624
Modelled 115 / 116 reflection profiles on image 625
Modelled 22 / 24 reflection profiles on image 626
Beginning modelling job 208
Frames: 624 -> 630
Number of reflections
Partial: 12
Full: 418
In ice ring: 0
Total: 430
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
625 [1 ]:
626 [134]: ********************************
627 [271]: ******************************************************************
628 [279]: ********************************************************************
629 [165]: ****************************************
630 [30 ]: *******
Modelled 117 / 125 reflection profiles on image 626
Modelled 136 / 140 reflection profiles on image 627
Modelled 134 / 135 reflection profiles on image 628
Modelled 23 / 30 reflection profiles on image 629
Beginning modelling job 209
Frames: 627 -> 633
Number of reflections
Partial: 13
Full: 366
In ice ring: 0
Total: 379
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
628 [6 ]: *
629 [118]: ********************************
630 [234]: ****************************************************************
631 [248]: ********************************************************************
632 [150]: *****************************************
633 [22 ]: ******
Modelled 107 / 112 reflection profiles on image 629
Modelled 115 / 117 reflection profiles on image 630
Modelled 124 / 128 reflection profiles on image 631
Modelled 16 / 22 reflection profiles on image 632
Beginning modelling job 210
Frames: 630 -> 636
Number of reflections
Partial: 12
Full: 341
In ice ring: 0
Total: 353
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
631 [3 ]:
632 [92 ]: **************************
633 [199]: ********************************************************
634 [240]: ********************************************************************
635 [143]: ****************************************
636 [17 ]: ****
Modelled 91 / 95 reflection profiles on image 632
Modelled 110 / 115 reflection profiles on image 633
Modelled 125 / 126 reflection profiles on image 634
Modelled 12 / 17 reflection profiles on image 635
Beginning modelling job 211
Frames: 633 -> 639
Number of reflections
Partial: 11
Full: 327
In ice ring: 0
Total: 338
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
634 [3 ]:
635 [103]: *********************************
636 [206]: ******************************************************************
637 [212]: ********************************************************************
638 [128]: *****************************************
639 [18 ]: *****
Modelled 105 / 111 reflection profiles on image 635
Modelled 95 / 99 reflection profiles on image 636
Modelled 110 / 110 reflection profiles on image 637
Modelled 13 / 18 reflection profiles on image 638
Beginning modelling job 212
Frames: 636 -> 642
Number of reflections
Partial: 4
Full: 365
In ice ring: 0
Total: 369
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
637 [4 ]: *
638 [116]: ******************************
639 [234]: **************************************************************
640 [255]: ********************************************************************
641 [134]: ***********************************
642 [15 ]: ****
Modelled 97 / 98 reflection profiles on image 638
Modelled 134 / 137 reflection profiles on image 639
Modelled 117 / 119 reflection profiles on image 640
Modelled 14 / 15 reflection profiles on image 641
Beginning modelling job 213
Frames: 639 -> 645
Number of reflections
Partial: 9
Full: 328
In ice ring: 0
Total: 337
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
640 [3 ]:
641 [97 ]: ***************************
642 [210]: ***********************************************************
643 [242]: ********************************************************************
644 [141]: ***************************************
645 [27 ]: *******
Modelled 79 / 84 reflection profiles on image 641
Modelled 110 / 112 reflection profiles on image 642
Modelled 114 / 114 reflection profiles on image 643
Modelled 20 / 27 reflection profiles on image 644
Beginning modelling job 214
Frames: 642 -> 648
Number of reflections
Partial: 8
Full: 353
In ice ring: 0
Total: 361
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
643 [9 ]: **
644 [106]: ******************************
645 [235]: ******************************************************************
646 [239]: ********************************************************************
647 [144]: ****************************************
648 [21 ]: *****
Modelled 99 / 105 reflection profiles on image 644
Modelled 106 / 112 reflection profiles on image 645
Modelled 122 / 123 reflection profiles on image 646
Modelled 17 / 21 reflection profiles on image 647
Beginning modelling job 215
Frames: 645 -> 651
Number of reflections
Partial: 13
Full: 343
In ice ring: 0
Total: 356
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
646 [1 ]:
647 [92 ]: **************************
648 [203]: **********************************************************
649 [234]: ********************************************************************
650 [143]: *****************************************
651 [21 ]: ******
Modelled 88 / 93 reflection profiles on image 647
Modelled 117 / 120 reflection profiles on image 648
Modelled 117 / 122 reflection profiles on image 649
Modelled 17 / 21 reflection profiles on image 650
Beginning modelling job 216
Frames: 648 -> 654
Number of reflections
Partial: 13
Full: 386
In ice ring: 0
Total: 399
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
649 [3 ]:
650 [124]: ********************************
651 [260]: ********************************************************************
652 [260]: ********************************************************************
653 [153]: ****************************************
654 [28 ]: *******
Modelled 116 / 123 reflection profiles on image 650
Modelled 118 / 123 reflection profiles on image 651
Modelled 124 / 125 reflection profiles on image 652
Modelled 23 / 28 reflection profiles on image 653
Beginning modelling job 217
Frames: 651 -> 657
Number of reflections
Partial: 9
Full: 365
In ice ring: 0
Total: 374
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
652 [8 ]: **
653 [116]: *********************************
654 [237]: ********************************************************************
655 [237]: ********************************************************************
656 [143]: *****************************************
657 [15 ]: ****
Modelled 105 / 110 reflection profiles on image 653
Modelled 119 / 121 reflection profiles on image 654
Modelled 122 / 128 reflection profiles on image 655
Modelled 12 / 15 reflection profiles on image 656
Beginning modelling job 218
Frames: 654 -> 660
Number of reflections
Partial: 6
Full: 384
In ice ring: 0
Total: 390
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
655 [5 ]: *
656 [109]: ****************************
657 [237]: *************************************************************
658 [262]: ********************************************************************
659 [145]: *************************************
660 [24 ]: ******
Modelled 104 / 108 reflection profiles on image 656
Modelled 134 / 137 reflection profiles on image 657
Modelled 120 / 121 reflection profiles on image 658
Modelled 19 / 24 reflection profiles on image 659
Beginning modelling job 219
Frames: 657 -> 663
Number of reflections
Partial: 14
Full: 403
In ice ring: 0
Total: 417
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
658 [4 ]:
659 [123]: *****************************
660 [270]: ***************************************************************
661 [287]: ********************************************************************
662 [155]: ************************************
663 [32 ]: *******
Modelled 104 / 110 reflection profiles on image 659
Modelled 147 / 152 reflection profiles on image 660
Modelled 121 / 123 reflection profiles on image 661
Modelled 26 / 32 reflection profiles on image 662
Beginning modelling job 220
Frames: 660 -> 666
Number of reflections
Partial: 20
Full: 371
In ice ring: 0
Total: 391
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
661 [6 ]: *
662 [111]: *****************************
663 [235]: **************************************************************
664 [255]: ********************************************************************
665 [165]: ********************************************
666 [20 ]: *****
Modelled 110 / 118 reflection profiles on image 662
Modelled 106 / 108 reflection profiles on image 663
Modelled 140 / 145 reflection profiles on image 664
Modelled 11 / 20 reflection profiles on image 665
Beginning modelling job 221
Frames: 663 -> 669
Number of reflections
Partial: 14
Full: 387
In ice ring: 0
Total: 401
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
664 [3 ]:
665 [107]: *************************
666 [236]: ********************************************************
667 [286]: ********************************************************************
668 [158]: *************************************
669 [28 ]: ******
Modelled 98 / 101 reflection profiles on image 665
Modelled 134 / 142 reflection profiles on image 666
Modelled 126 / 130 reflection profiles on image 667
Modelled 23 / 28 reflection profiles on image 668
Beginning modelling job 222
Frames: 666 -> 672
Number of reflections
Partial: 8
Full: 394
In ice ring: 0
Total: 402
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
667 [5 ]: *
668 [131]: **********************************
669 [256]: ********************************************************************
670 [256]: ********************************************************************
671 [153]: ****************************************
672 [24 ]: ******
Modelled 119 / 122 reflection profiles on image 668
Modelled 126 / 127 reflection profiles on image 669
Modelled 122 / 129 reflection profiles on image 670
Modelled 20 / 24 reflection profiles on image 671
Beginning modelling job 223
Frames: 669 -> 675
Number of reflections
Partial: 13
Full: 389
In ice ring: 0
Total: 402
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
670 [4 ]:
671 [112]: ***************************
672 [258]: ***************************************************************
673 [275]: ********************************************************************
674 [147]: ************************************
675 [26 ]: ******
Modelled 101 / 108 reflection profiles on image 671
Modelled 145 / 147 reflection profiles on image 672
Modelled 120 / 121 reflection profiles on image 673
Modelled 21 / 26 reflection profiles on image 674
Beginning modelling job 224
Frames: 672 -> 678
Number of reflections
Partial: 11
Full: 375
In ice ring: 0
Total: 386
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
673 [3 ]:
674 [123]: *********************************
675 [246]: *******************************************************************
676 [248]: ********************************************************************
677 [148]: ****************************************
678 [29 ]: *******
Modelled 115 / 120 reflection profiles on image 674
Modelled 110 / 118 reflection profiles on image 675
Modelled 117 / 119 reflection profiles on image 676
Modelled 26 / 29 reflection profiles on image 677
Beginning modelling job 225
Frames: 675 -> 681
Number of reflections
Partial: 11
Full: 396
In ice ring: 0
Total: 407
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
676 [2 ]:
677 [118]: ******************************
678 [254]: *****************************************************************
679 [264]: ********************************************************************
680 [148]: **************************************
681 [26 ]: ******
Modelled 109 / 116 reflection profiles on image 677
Modelled 139 / 143 reflection profiles on image 678
Modelled 121 / 122 reflection profiles on image 679
Modelled 23 / 26 reflection profiles on image 680
Beginning modelling job 226
Frames: 678 -> 684
Number of reflections
Partial: 12
Full: 378
In ice ring: 0
Total: 390
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
679 [5 ]: *
680 [114]: *****************************
681 [258]: *******************************************************************
682 [261]: ********************************************************************
683 [134]: **********************************
684 [28 ]: *******
Modelled 113 / 116 reflection profiles on image 680
Modelled 132 / 140 reflection profiles on image 681
Modelled 104 / 106 reflection profiles on image 682
Modelled 22 / 28 reflection profiles on image 683
Beginning modelling job 227
Frames: 681 -> 687
Number of reflections
Partial: 15
Full: 404
In ice ring: 0
Total: 419
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
682 [3 ]:
683 [112]: **************************
684 [240]: ********************************************************
685 [287]: ********************************************************************
686 [167]: ***************************************
687 [27 ]: ******
Modelled 104 / 110 reflection profiles on image 683
Modelled 140 / 142 reflection profiles on image 684
Modelled 135 / 140 reflection profiles on image 685
Modelled 20 / 27 reflection profiles on image 686
Beginning modelling job 228
Frames: 684 -> 690
Number of reflections
Partial: 13
Full: 364
In ice ring: 0
Total: 377
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
685 [5 ]: *
686 [110]: ****************************
687 [234]: ************************************************************
688 [263]: ********************************************************************
689 [143]: ************************************
690 [28 ]: *******
Modelled 99 / 102 reflection profiles on image 686
Modelled 129 / 132 reflection profiles on image 687
Modelled 111 / 115 reflection profiles on image 688
Modelled 22 / 28 reflection profiles on image 689
Beginning modelling job 229
Frames: 687 -> 693
Number of reflections
Partial: 11
Full: 406
In ice ring: 0
Total: 417
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
688 [8 ]: **
689 [134]: *********************************
690 [270]: ********************************************************************
691 [266]: ******************************************************************
692 [150]: *************************************
693 [19 ]: ****
Modelled 125 / 131 reflection profiles on image 689
Modelled 134 / 136 reflection profiles on image 690
Modelled 125 / 131 reflection profiles on image 691
Modelled 15 / 19 reflection profiles on image 692
Beginning modelling job 230
Frames: 690 -> 696
Number of reflections
Partial: 8
Full: 392
In ice ring: 0
Total: 400
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
691 [6 ]: *
692 [110]: **************************
693 [244]: ***********************************************************
694 [279]: ********************************************************************
695 [158]: **************************************
696 [25 ]: ******
Modelled 101 / 105 reflection profiles on image 692
Modelled 131 / 137 reflection profiles on image 693
Modelled 131 / 133 reflection profiles on image 694
Modelled 23 / 25 reflection profiles on image 695
Beginning modelling job 231
Frames: 693 -> 699
Number of reflections
Partial: 3
Full: 395
In ice ring: 0
Total: 398
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
694 [4 ]:
695 [111]: ***************************
696 [248]: *************************************************************
697 [275]: ********************************************************************
698 [153]: *************************************
699 [19 ]: ****
Modelled 102 / 104 reflection profiles on image 695
Modelled 139 / 141 reflection profiles on image 696
Modelled 130 / 134 reflection profiles on image 697
Modelled 17 / 19 reflection profiles on image 698
Beginning modelling job 232
Frames: 696 -> 702
Number of reflections
Partial: 5
Full: 422
In ice ring: 0
Total: 427
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
697 [4 ]: *
698 [128]: ********************************
699 [267]: ********************************************************************
700 [265]: *******************************************************************
701 [164]: *****************************************
702 [21 ]: *****
Modelled 120 / 124 reflection profiles on image 698
Modelled 136 / 139 reflection profiles on image 699
Modelled 142 / 143 reflection profiles on image 700
Modelled 18 / 21 reflection profiles on image 701
Beginning modelling job 233
Frames: 699 -> 705
Number of reflections
Partial: 13
Full: 411
In ice ring: 0
Total: 424
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
700 [5 ]: *
701 [120]: ****************************
702 [260]: ************************************************************
703 [291]: ********************************************************************
704 [166]: **************************************
705 [16 ]: ***
Modelled 105 / 113 reflection profiles on image 701
Modelled 143 / 145 reflection profiles on image 702
Modelled 144 / 150 reflection profiles on image 703
Modelled 11 / 16 reflection profiles on image 704
Beginning modelling job 234
Frames: 702 -> 708
Number of reflections
Partial: 17
Full: 386
In ice ring: 0
Total: 403
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
703 [5 ]: *
704 [124]: ********************************
705 [254]: *******************************************************************
706 [256]: ********************************************************************
707 [146]: **************************************
708 [32 ]: ********
Modelled 118 / 125 reflection profiles on image 704
Modelled 127 / 132 reflection profiles on image 705
Modelled 112 / 114 reflection profiles on image 706
Modelled 24 / 32 reflection profiles on image 707
Beginning modelling job 235
Frames: 705 -> 711
Number of reflections
Partial: 16
Full: 431
In ice ring: 0
Total: 447
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
706 [2 ]:
707 [131]: ******************************
708 [278]: *****************************************************************
709 [289]: ********************************************************************
710 [158]: *************************************
711 [35 ]: ********
Modelled 137 / 140 reflection profiles on image 707
Modelled 143 / 149 reflection profiles on image 708
Modelled 117 / 123 reflection profiles on image 709
Modelled 28 / 35 reflection profiles on image 710
Beginning modelling job 236
Frames: 708 -> 714
Number of reflections
Partial: 11
Full: 419
In ice ring: 0
Total: 430
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
709 [2 ]:
710 [111]: ************************
711 [257]: *********************************************************
712 [302]: ********************************************************************
713 [169]: **************************************
714 [26 ]: *****
Modelled 106 / 109 reflection profiles on image 710
Modelled 146 / 152 reflection profiles on image 711
Modelled 143 / 143 reflection profiles on image 712
Modelled 21 / 26 reflection profiles on image 713
Beginning modelling job 237
Frames: 711 -> 717
Number of reflections
Partial: 9
Full: 452
In ice ring: 0
Total: 461
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
712 [7 ]: *
713 [124]: ***************************
714 [277]: ************************************************************
715 [312]: ********************************************************************
716 [191]: *****************************************
717 [25 ]: *****
Modelled 118 / 121 reflection profiles on image 713
Modelled 147 / 149 reflection profiles on image 714
Modelled 159 / 166 reflection profiles on image 715
Modelled 20 / 25 reflection profiles on image 716
Beginning modelling job 238
Frames: 714 -> 720
Number of reflections
Partial: 73
Full: 575
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.
715 [4 ]:
716 [131]: *****************************
717 [303]: ********************************************************************
718 [300]: *******************************************************************
719 [252]: ********************************************************
720 [229]: ***************************************************
Modelled 127 / 130 reflection profiles on image 716
Modelled 178 / 182 reflection profiles on image 717
Modelled 105 / 107 reflection profiles on image 718
Modelled 166 / 229 reflection profiles on image 719
Summary of profile model
+------+-----------+-----------+----------+----------+----------+-----------------+
| ID | Profile | Created | X (px) | Y (px) | Z (im) | # reflections |
|------+-----------+-----------+----------+----------+----------+-----------------|
| 0 | 0 | True | 410.5 | 421.17 | 5 | 1675 |
| 0 | 1 | True | 1231.5 | 421.17 | 5 | 1990 |
| 0 | 2 | True | 2052.5 | 421.17 | 5 | 1799 |
| 0 | 3 | True | 410.5 | 1263.5 | 5 | 2327 |
| 0 | 4 | True | 1231.5 | 1263.5 | 5 | 2797 |
| 0 | 5 | True | 2052.5 | 1263.5 | 5 | 2561 |
| 0 | 6 | True | 410.5 | 2105.83 | 5 | 1742 |
| 0 | 7 | True | 1231.5 | 2105.83 | 5 | 2150 |
| 0 | 8 | True | 2052.5 | 2105.83 | 5 | 1957 |
| 0 | 9 | True | 410.5 | 421.17 | 15 | 2537 |
| 0 | 10 | True | 1231.5 | 421.17 | 15 | 3023 |
| 0 | 11 | True | 2052.5 | 421.17 | 15 | 2720 |
| 0 | 12 | True | 410.5 | 1263.5 | 15 | 3523 |
| 0 | 13 | True | 1231.5 | 1263.5 | 15 | 4237 |
| 0 | 14 | True | 2052.5 | 1263.5 | 15 | 3856 |
| 0 | 15 | True | 410.5 | 2105.83 | 15 | 2631 |
| 0 | 16 | True | 1231.5 | 2105.83 | 15 | 3245 |
| 0 | 17 | True | 2052.5 | 2105.83 | 15 | 2940 |
| 0 | 18 | True | 410.5 | 421.17 | 25 | 2611 |
| 0 | 19 | True | 1231.5 | 421.17 | 25 | 3110 |
| 0 | 20 | True | 2052.5 | 421.17 | 25 | 2775 |
| 0 | 21 | True | 410.5 | 1263.5 | 25 | 3579 |
| 0 | 22 | True | 1231.5 | 1263.5 | 25 | 4280 |
| 0 | 23 | True | 2052.5 | 1263.5 | 25 | 3868 |
| 0 | 24 | True | 410.5 | 2105.83 | 25 | 2590 |
| 0 | 25 | True | 1231.5 | 2105.83 | 25 | 3172 |
| 0 | 26 | True | 2052.5 | 2105.83 | 25 | 2861 |
| 0 | 27 | True | 410.5 | 421.17 | 35 | 2668 |
| 0 | 28 | True | 1231.5 | 421.17 | 35 | 3178 |
| 0 | 29 | True | 2052.5 | 421.17 | 35 | 2830 |
| 0 | 30 | True | 410.5 | 1263.5 | 35 | 3621 |
| 0 | 31 | True | 1231.5 | 1263.5 | 35 | 4312 |
| 0 | 32 | True | 2052.5 | 1263.5 | 35 | 3887 |
| 0 | 33 | True | 410.5 | 2105.83 | 35 | 2538 |
| 0 | 34 | True | 1231.5 | 2105.83 | 35 | 3099 |
| 0 | 35 | True | 2052.5 | 2105.83 | 35 | 2794 |
| 0 | 36 | True | 410.5 | 421.17 | 45 | 2734 |
| 0 | 37 | True | 1231.5 | 421.17 | 45 | 3242 |
| 0 | 38 | True | 2052.5 | 421.17 | 45 | 2885 |
| 0 | 39 | True | 410.5 | 1263.5 | 45 | 3612 |
| 0 | 40 | True | 1231.5 | 1263.5 | 45 | 4268 |
| 0 | 41 | True | 2052.5 | 1263.5 | 45 | 3859 |
| 0 | 42 | True | 410.5 | 2105.83 | 45 | 2428 |
| 0 | 43 | True | 1231.5 | 2105.83 | 45 | 2944 |
| 0 | 44 | True | 2052.5 | 2105.83 | 45 | 2676 |
| 0 | 45 | True | 410.5 | 421.17 | 55 | 2798 |
| 0 | 46 | True | 1231.5 | 421.17 | 55 | 3302 |
| 0 | 47 | True | 2052.5 | 421.17 | 55 | 2935 |
| 0 | 48 | True | 410.5 | 1263.5 | 55 | 3608 |
| 0 | 49 | True | 1231.5 | 1263.5 | 55 | 4239 |
| 0 | 50 | True | 2052.5 | 1263.5 | 55 | 3826 |
| 0 | 51 | True | 410.5 | 2105.83 | 55 | 2358 |
| 0 | 52 | True | 1231.5 | 2105.83 | 55 | 2840 |
| 0 | 53 | True | 2052.5 | 2105.83 | 55 | 2584 |
| 0 | 54 | True | 410.5 | 421.17 | 65 | 2856 |
| 0 | 55 | True | 1231.5 | 421.17 | 65 | 3375 |
| 0 | 56 | True | 2052.5 | 421.17 | 65 | 2975 |
| 0 | 57 | True | 410.5 | 1263.5 | 65 | 3608 |
| 0 | 58 | True | 1231.5 | 1263.5 | 65 | 4235 |
| 0 | 59 | True | 2052.5 | 1263.5 | 65 | 3800 |
| 0 | 60 | True | 410.5 | 2105.83 | 65 | 2281 |
| 0 | 61 | True | 1231.5 | 2105.83 | 65 | 2732 |
| 0 | 62 | True | 2052.5 | 2105.83 | 65 | 2485 |
| 0 | 63 | True | 410.5 | 421.17 | 75 | 2961 |
| 0 | 64 | True | 1231.5 | 421.17 | 75 | 3501 |
| 0 | 65 | True | 2052.5 | 421.17 | 75 | 3056 |
| 0 | 66 | True | 410.5 | 1263.5 | 75 | 3651 |
| 0 | 67 | True | 1231.5 | 1263.5 | 75 | 4292 |
| 0 | 68 | True | 2052.5 | 1263.5 | 75 | 3814 |
| 0 | 69 | True | 410.5 | 2105.83 | 75 | 2221 |
| 0 | 70 | True | 1231.5 | 2105.83 | 75 | 2667 |
| 0 | 71 | True | 2052.5 | 2105.83 | 75 | 2410 |
| 0 | 72 | True | 410.5 | 421.17 | 85 | 3007 |
| 0 | 73 | True | 1231.5 | 421.17 | 85 | 3582 |
| 0 | 74 | True | 2052.5 | 421.17 | 85 | 3116 |
| 0 | 75 | True | 410.5 | 1263.5 | 85 | 3661 |
| 0 | 76 | True | 1231.5 | 1263.5 | 85 | 4335 |
| 0 | 77 | True | 2052.5 | 1263.5 | 85 | 3844 |
| 0 | 78 | True | 410.5 | 2105.83 | 85 | 2152 |
| 0 | 79 | True | 1231.5 | 2105.83 | 85 | 2615 |
| 0 | 80 | True | 2052.5 | 2105.83 | 85 | 2385 |
| 0 | 81 | True | 410.5 | 421.17 | 95 | 3123 |
| 0 | 82 | True | 1231.5 | 421.17 | 95 | 3714 |
| 0 | 83 | True | 2052.5 | 421.17 | 95 | 3207 |
| 0 | 84 | True | 410.5 | 1263.5 | 95 | 3727 |
| 0 | 85 | True | 1231.5 | 1263.5 | 95 | 4412 |
| 0 | 86 | True | 2052.5 | 1263.5 | 95 | 3886 |
| 0 | 87 | True | 410.5 | 2105.83 | 95 | 2144 |
| 0 | 88 | True | 1231.5 | 2105.83 | 95 | 2612 |
| 0 | 89 | True | 2052.5 | 2105.83 | 95 | 2377 |
| 0 | 90 | True | 410.5 | 421.17 | 105 | 3158 |
| 0 | 91 | True | 1231.5 | 421.17 | 105 | 3751 |
| 0 | 92 | True | 2052.5 | 421.17 | 105 | 3255 |
| 0 | 93 | True | 410.5 | 1263.5 | 105 | 3737 |
| 0 | 94 | True | 1231.5 | 1263.5 | 105 | 4419 |
| 0 | 95 | True | 2052.5 | 1263.5 | 105 | 3903 |
| 0 | 96 | True | 410.5 | 2105.83 | 105 | 2116 |
| 0 | 97 | True | 1231.5 | 2105.83 | 105 | 2571 |
| 0 | 98 | True | 2052.5 | 2105.83 | 105 | 2356 |
| 0 | 99 | True | 410.5 | 421.17 | 115 | 3265 |
| 0 | 100 | True | 1231.5 | 421.17 | 115 | 3859 |
| 0 | 101 | True | 2052.5 | 421.17 | 115 | 3324 |
| 0 | 102 | True | 410.5 | 1263.5 | 115 | 3794 |
| 0 | 103 | True | 1231.5 | 1263.5 | 115 | 4463 |
| 0 | 104 | True | 2052.5 | 1263.5 | 115 | 3905 |
| 0 | 105 | True | 410.5 | 2105.83 | 115 | 2136 |
| 0 | 106 | True | 1231.5 | 2105.83 | 115 | 2573 |
| 0 | 107 | True | 2052.5 | 2105.83 | 115 | 2329 |
| 0 | 108 | True | 410.5 | 421.17 | 125 | 3223 |
| 0 | 109 | True | 1231.5 | 421.17 | 125 | 3796 |
| 0 | 110 | True | 2052.5 | 421.17 | 125 | 3243 |
| 0 | 111 | True | 410.5 | 1263.5 | 125 | 3707 |
| 0 | 112 | True | 1231.5 | 1263.5 | 125 | 4350 |
| 0 | 113 | True | 2052.5 | 1263.5 | 125 | 3772 |
| 0 | 114 | True | 410.5 | 2105.83 | 125 | 2118 |
| 0 | 115 | True | 1231.5 | 2105.83 | 125 | 2540 |
| 0 | 116 | True | 2052.5 | 2105.83 | 125 | 2287 |
| 0 | 117 | True | 410.5 | 421.17 | 135 | 3195 |
| 0 | 118 | True | 1231.5 | 421.17 | 135 | 3745 |
| 0 | 119 | True | 2052.5 | 421.17 | 135 | 3180 |
| 0 | 120 | True | 410.5 | 1263.5 | 135 | 3645 |
| 0 | 121 | True | 1231.5 | 1263.5 | 135 | 4260 |
| 0 | 122 | True | 2052.5 | 1263.5 | 135 | 3669 |
| 0 | 123 | True | 410.5 | 2105.83 | 135 | 2120 |
| 0 | 124 | True | 1231.5 | 2105.83 | 135 | 2534 |
| 0 | 125 | True | 2052.5 | 2105.83 | 135 | 2262 |
| 0 | 126 | True | 410.5 | 421.17 | 145 | 3093 |
| 0 | 127 | True | 1231.5 | 421.17 | 145 | 3623 |
| 0 | 128 | True | 2052.5 | 421.17 | 145 | 3088 |
| 0 | 129 | True | 410.5 | 1263.5 | 145 | 3536 |
| 0 | 130 | True | 1231.5 | 1263.5 | 145 | 4130 |
| 0 | 131 | True | 2052.5 | 1263.5 | 145 | 3570 |
| 0 | 132 | True | 410.5 | 2105.83 | 145 | 2124 |
| 0 | 133 | True | 1231.5 | 2105.83 | 145 | 2534 |
| 0 | 134 | True | 2052.5 | 2105.83 | 145 | 2268 |
| 0 | 135 | True | 410.5 | 421.17 | 155 | 3033 |
| 0 | 136 | True | 1231.5 | 421.17 | 155 | 3548 |
| 0 | 137 | True | 2052.5 | 421.17 | 155 | 3042 |
| 0 | 138 | True | 410.5 | 1263.5 | 155 | 3479 |
| 0 | 139 | True | 1231.5 | 1263.5 | 155 | 4057 |
| 0 | 140 | True | 2052.5 | 1263.5 | 155 | 3530 |
| 0 | 141 | True | 410.5 | 2105.83 | 155 | 2131 |
| 0 | 142 | True | 1231.5 | 2105.83 | 155 | 2550 |
| 0 | 143 | True | 2052.5 | 2105.83 | 155 | 2281 |
| 0 | 144 | True | 410.5 | 421.17 | 165 | 3011 |
| 0 | 145 | True | 1231.5 | 421.17 | 165 | 3518 |
| 0 | 146 | True | 2052.5 | 421.17 | 165 | 2998 |
| 0 | 147 | True | 410.5 | 1263.5 | 165 | 3466 |
| 0 | 148 | True | 1231.5 | 1263.5 | 165 | 4033 |
| 0 | 149 | True | 2052.5 | 1263.5 | 165 | 3494 |
| 0 | 150 | True | 410.5 | 2105.83 | 165 | 2179 |
| 0 | 151 | True | 1231.5 | 2105.83 | 165 | 2604 |
| 0 | 152 | True | 2052.5 | 2105.83 | 165 | 2312 |
| 0 | 153 | True | 410.5 | 421.17 | 175 | 2935 |
| 0 | 154 | True | 1231.5 | 421.17 | 175 | 3433 |
| 0 | 155 | True | 2052.5 | 421.17 | 175 | 2916 |
| 0 | 156 | True | 410.5 | 1263.5 | 175 | 3379 |
| 0 | 157 | True | 1231.5 | 1263.5 | 175 | 3930 |
| 0 | 158 | True | 2052.5 | 1263.5 | 175 | 3401 |
| 0 | 159 | True | 410.5 | 2105.83 | 175 | 2172 |
| 0 | 160 | True | 1231.5 | 2105.83 | 175 | 2594 |
| 0 | 161 | True | 2052.5 | 2105.83 | 175 | 2297 |
| 0 | 162 | True | 410.5 | 421.17 | 185 | 2881 |
| 0 | 163 | True | 1231.5 | 421.17 | 185 | 3367 |
| 0 | 164 | True | 2052.5 | 421.17 | 185 | 2868 |
| 0 | 165 | True | 410.5 | 1263.5 | 185 | 3307 |
| 0 | 166 | True | 1231.5 | 1263.5 | 185 | 3842 |
| 0 | 167 | True | 2052.5 | 1263.5 | 185 | 3332 |
| 0 | 168 | True | 410.5 | 2105.83 | 185 | 2192 |
| 0 | 169 | True | 1231.5 | 2105.83 | 185 | 2606 |
| 0 | 170 | True | 2052.5 | 2105.83 | 185 | 2307 |
| 0 | 171 | True | 410.5 | 421.17 | 195 | 2773 |
| 0 | 172 | True | 1231.5 | 421.17 | 195 | 3250 |
| 0 | 173 | True | 2052.5 | 421.17 | 195 | 2788 |
| 0 | 174 | True | 410.5 | 1263.5 | 195 | 3198 |
| 0 | 175 | True | 1231.5 | 1263.5 | 195 | 3722 |
| 0 | 176 | True | 2052.5 | 1263.5 | 195 | 3245 |
| 0 | 177 | True | 410.5 | 2105.83 | 195 | 2211 |
| 0 | 178 | True | 1231.5 | 2105.83 | 195 | 2622 |
| 0 | 179 | True | 2052.5 | 2105.83 | 195 | 2324 |
| 0 | 180 | True | 410.5 | 421.17 | 205 | 2679 |
| 0 | 181 | True | 1231.5 | 421.17 | 205 | 3137 |
| 0 | 182 | True | 2052.5 | 421.17 | 205 | 2692 |
| 0 | 183 | True | 410.5 | 1263.5 | 205 | 3081 |
| 0 | 184 | True | 1231.5 | 1263.5 | 205 | 3600 |
| 0 | 185 | True | 2052.5 | 1263.5 | 205 | 3136 |
| 0 | 186 | True | 410.5 | 2105.83 | 205 | 2187 |
| 0 | 187 | True | 1231.5 | 2105.83 | 205 | 2613 |
| 0 | 188 | True | 2052.5 | 2105.83 | 205 | 2302 |
| 0 | 189 | True | 410.5 | 421.17 | 215 | 2606 |
| 0 | 190 | True | 1231.5 | 421.17 | 215 | 3047 |
| 0 | 191 | True | 2052.5 | 421.17 | 215 | 2607 |
| 0 | 192 | True | 410.5 | 1263.5 | 215 | 3030 |
| 0 | 193 | True | 1231.5 | 1263.5 | 215 | 3544 |
| 0 | 194 | True | 2052.5 | 1263.5 | 215 | 3083 |
| 0 | 195 | True | 410.5 | 2105.83 | 215 | 2204 |
| 0 | 196 | True | 1231.5 | 2105.83 | 215 | 2626 |
| 0 | 197 | True | 2052.5 | 2105.83 | 215 | 2305 |
| 0 | 198 | True | 410.5 | 421.17 | 225 | 2509 |
| 0 | 199 | True | 1231.5 | 421.17 | 225 | 2948 |
| 0 | 200 | True | 2052.5 | 421.17 | 225 | 2504 |
| 0 | 201 | True | 410.5 | 1263.5 | 225 | 2946 |
| 0 | 202 | True | 1231.5 | 1263.5 | 225 | 3463 |
| 0 | 203 | True | 2052.5 | 1263.5 | 225 | 2996 |
| 0 | 204 | True | 410.5 | 2105.83 | 225 | 2178 |
| 0 | 205 | True | 1231.5 | 2105.83 | 225 | 2604 |
| 0 | 206 | True | 2052.5 | 2105.83 | 225 | 2276 |
| 0 | 207 | True | 410.5 | 421.17 | 235 | 2544 |
| 0 | 208 | True | 1231.5 | 421.17 | 235 | 2970 |
| 0 | 209 | True | 2052.5 | 421.17 | 235 | 2522 |
| 0 | 210 | True | 410.5 | 1263.5 | 235 | 3025 |
| 0 | 211 | True | 1231.5 | 1263.5 | 235 | 3537 |
| 0 | 212 | True | 2052.5 | 1263.5 | 235 | 3063 |
| 0 | 213 | True | 410.5 | 2105.83 | 235 | 2260 |
| 0 | 214 | True | 1231.5 | 2105.83 | 235 | 2682 |
| 0 | 215 | True | 2052.5 | 2105.83 | 235 | 2347 |
| 0 | 216 | True | 410.5 | 421.17 | 245 | 2526 |
| 0 | 217 | True | 1231.5 | 421.17 | 245 | 2956 |
| 0 | 218 | True | 2052.5 | 421.17 | 245 | 2506 |
| 0 | 219 | True | 410.5 | 1263.5 | 245 | 3035 |
| 0 | 220 | True | 1231.5 | 1263.5 | 245 | 3550 |
| 0 | 221 | True | 2052.5 | 1263.5 | 245 | 3062 |
| 0 | 222 | True | 410.5 | 2105.83 | 245 | 2286 |
| 0 | 223 | True | 1231.5 | 2105.83 | 245 | 2714 |
| 0 | 224 | True | 2052.5 | 2105.83 | 245 | 2364 |
| 0 | 225 | True | 410.5 | 421.17 | 255 | 2590 |
| 0 | 226 | True | 1231.5 | 421.17 | 255 | 3019 |
| 0 | 227 | True | 2052.5 | 421.17 | 255 | 2572 |
| 0 | 228 | True | 410.5 | 1263.5 | 255 | 3126 |
| 0 | 229 | True | 1231.5 | 1263.5 | 255 | 3654 |
| 0 | 230 | True | 2052.5 | 1263.5 | 255 | 3162 |
| 0 | 231 | True | 410.5 | 2105.83 | 255 | 2345 |
| 0 | 232 | True | 1231.5 | 2105.83 | 255 | 2797 |
| 0 | 233 | True | 2052.5 | 2105.83 | 255 | 2434 |
| 0 | 234 | True | 410.5 | 421.17 | 265 | 2594 |
| 0 | 235 | True | 1231.5 | 421.17 | 265 | 3010 |
| 0 | 236 | True | 2052.5 | 421.17 | 265 | 2550 |
| 0 | 237 | True | 410.5 | 1263.5 | 265 | 3189 |
| 0 | 238 | True | 1231.5 | 1263.5 | 265 | 3704 |
| 0 | 239 | True | 2052.5 | 1263.5 | 265 | 3176 |
| 0 | 240 | True | 410.5 | 2105.83 | 265 | 2422 |
| 0 | 241 | True | 1231.5 | 2105.83 | 265 | 2869 |
| 0 | 242 | True | 2052.5 | 2105.83 | 265 | 2453 |
| 0 | 243 | True | 410.5 | 421.17 | 275 | 2594 |
| 0 | 244 | True | 1231.5 | 421.17 | 275 | 2992 |
| 0 | 245 | True | 2052.5 | 421.17 | 275 | 2541 |
| 0 | 246 | True | 410.5 | 1263.5 | 275 | 3248 |
| 0 | 247 | True | 1231.5 | 1263.5 | 275 | 3745 |
| 0 | 248 | True | 2052.5 | 1263.5 | 275 | 3209 |
| 0 | 249 | True | 410.5 | 2105.83 | 275 | 2474 |
| 0 | 250 | True | 1231.5 | 2105.83 | 275 | 2920 |
| 0 | 251 | True | 2052.5 | 2105.83 | 275 | 2476 |
| 0 | 252 | True | 410.5 | 421.17 | 285 | 2537 |
| 0 | 253 | True | 1231.5 | 421.17 | 285 | 2915 |
| 0 | 254 | True | 2052.5 | 421.17 | 285 | 2477 |
| 0 | 255 | True | 410.5 | 1263.5 | 285 | 3264 |
| 0 | 256 | True | 1231.5 | 1263.5 | 285 | 3737 |
| 0 | 257 | True | 2052.5 | 1263.5 | 285 | 3191 |
| 0 | 258 | True | 410.5 | 2105.83 | 285 | 2532 |
| 0 | 259 | True | 1231.5 | 2105.83 | 285 | 2958 |
| 0 | 260 | True | 2052.5 | 2105.83 | 285 | 2488 |
| 0 | 261 | True | 410.5 | 421.17 | 295 | 2472 |
| 0 | 262 | True | 1231.5 | 421.17 | 295 | 2866 |
| 0 | 263 | True | 2052.5 | 421.17 | 295 | 2457 |
| 0 | 264 | True | 410.5 | 1263.5 | 295 | 3249 |
| 0 | 265 | True | 1231.5 | 1263.5 | 295 | 3748 |
| 0 | 266 | True | 2052.5 | 1263.5 | 295 | 3219 |
| 0 | 267 | True | 410.5 | 2105.83 | 295 | 2537 |
| 0 | 268 | True | 1231.5 | 2105.83 | 295 | 2985 |
| 0 | 269 | True | 2052.5 | 2105.83 | 295 | 2526 |
| 0 | 270 | True | 410.5 | 421.17 | 305 | 2446 |
| 0 | 271 | True | 1231.5 | 421.17 | 305 | 2845 |
| 0 | 272 | True | 2052.5 | 421.17 | 305 | 2445 |
| 0 | 273 | True | 410.5 | 1263.5 | 305 | 3277 |
| 0 | 274 | True | 1231.5 | 1263.5 | 305 | 3791 |
| 0 | 275 | True | 2052.5 | 1263.5 | 305 | 3254 |
| 0 | 276 | True | 410.5 | 2105.83 | 305 | 2600 |
| 0 | 277 | True | 1231.5 | 2105.83 | 305 | 3062 |
| 0 | 278 | True | 2052.5 | 2105.83 | 305 | 2594 |
| 0 | 279 | True | 410.5 | 421.17 | 315 | 2432 |
| 0 | 280 | True | 1231.5 | 421.17 | 315 | 2844 |
| 0 | 281 | True | 2052.5 | 421.17 | 315 | 2448 |
| 0 | 282 | True | 410.5 | 1263.5 | 315 | 3307 |
| 0 | 283 | True | 1231.5 | 1263.5 | 315 | 3838 |
| 0 | 284 | True | 2052.5 | 1263.5 | 315 | 3286 |
| 0 | 285 | True | 410.5 | 2105.83 | 315 | 2642 |
| 0 | 286 | True | 1231.5 | 2105.83 | 315 | 3110 |
| 0 | 287 | True | 2052.5 | 2105.83 | 315 | 2622 |
| 0 | 288 | True | 410.5 | 421.17 | 325 | 2394 |
| 0 | 289 | True | 1231.5 | 421.17 | 325 | 2805 |
| 0 | 290 | True | 2052.5 | 421.17 | 325 | 2425 |
| 0 | 291 | True | 410.5 | 1263.5 | 325 | 3314 |
| 0 | 292 | True | 1231.5 | 1263.5 | 325 | 3844 |
| 0 | 293 | True | 2052.5 | 1263.5 | 325 | 3292 |
| 0 | 294 | True | 410.5 | 2105.83 | 325 | 2667 |
| 0 | 295 | True | 1231.5 | 2105.83 | 325 | 3129 |
| 0 | 296 | True | 2052.5 | 2105.83 | 325 | 2632 |
| 0 | 297 | True | 410.5 | 421.17 | 335 | 2342 |
| 0 | 298 | True | 1231.5 | 421.17 | 335 | 2769 |
| 0 | 299 | True | 2052.5 | 421.17 | 335 | 2409 |
| 0 | 300 | True | 410.5 | 1263.5 | 335 | 3303 |
| 0 | 301 | True | 1231.5 | 1263.5 | 335 | 3850 |
| 0 | 302 | True | 2052.5 | 1263.5 | 335 | 3301 |
| 0 | 303 | True | 410.5 | 2105.83 | 335 | 2662 |
| 0 | 304 | True | 1231.5 | 2105.83 | 335 | 3128 |
| 0 | 305 | True | 2052.5 | 2105.83 | 335 | 2623 |
| 0 | 306 | True | 410.5 | 421.17 | 345 | 2339 |
| 0 | 307 | True | 1231.5 | 421.17 | 345 | 2788 |
| 0 | 308 | True | 2052.5 | 421.17 | 345 | 2446 |
| 0 | 309 | True | 410.5 | 1263.5 | 345 | 3332 |
| 0 | 310 | True | 1231.5 | 1263.5 | 345 | 3903 |
| 0 | 311 | True | 2052.5 | 1263.5 | 345 | 3394 |
| 0 | 312 | True | 410.5 | 2105.83 | 345 | 2682 |
| 0 | 313 | True | 1231.5 | 2105.83 | 345 | 3164 |
| 0 | 314 | True | 2052.5 | 2105.83 | 345 | 2695 |
| 0 | 315 | True | 410.5 | 421.17 | 355 | 2382 |
| 0 | 316 | True | 1231.5 | 421.17 | 355 | 2848 |
| 0 | 317 | True | 2052.5 | 421.17 | 355 | 2530 |
| 0 | 318 | True | 410.5 | 1263.5 | 355 | 3409 |
| 0 | 319 | True | 1231.5 | 1263.5 | 355 | 3992 |
| 0 | 320 | True | 2052.5 | 1263.5 | 355 | 3517 |
| 0 | 321 | True | 410.5 | 2105.83 | 355 | 2703 |
| 0 | 322 | True | 1231.5 | 2105.83 | 355 | 3189 |
| 0 | 323 | True | 2052.5 | 2105.83 | 355 | 2751 |
| 0 | 324 | True | 410.5 | 421.17 | 365 | 2408 |
| 0 | 325 | True | 1231.5 | 421.17 | 365 | 2899 |
| 0 | 326 | True | 2052.5 | 421.17 | 365 | 2600 |
| 0 | 327 | True | 410.5 | 1263.5 | 365 | 3413 |
| 0 | 328 | True | 1231.5 | 1263.5 | 365 | 4017 |
| 0 | 329 | True | 2052.5 | 1263.5 | 365 | 3583 |
| 0 | 330 | True | 410.5 | 2105.83 | 365 | 2656 |
| 0 | 331 | True | 1231.5 | 2105.83 | 365 | 3148 |
| 0 | 332 | True | 2052.5 | 2105.83 | 365 | 2749 |
| 0 | 333 | True | 410.5 | 421.17 | 375 | 2427 |
| 0 | 334 | True | 1231.5 | 421.17 | 375 | 2919 |
| 0 | 335 | True | 2052.5 | 421.17 | 375 | 2637 |
| 0 | 336 | True | 410.5 | 1263.5 | 375 | 3430 |
| 0 | 337 | True | 1231.5 | 1263.5 | 375 | 4027 |
| 0 | 338 | True | 2052.5 | 1263.5 | 375 | 3598 |
| 0 | 339 | True | 410.5 | 2105.83 | 375 | 2616 |
| 0 | 340 | True | 1231.5 | 2105.83 | 375 | 3089 |
| 0 | 341 | True | 2052.5 | 2105.83 | 375 | 2702 |
| 0 | 342 | True | 410.5 | 421.17 | 385 | 2439 |
| 0 | 343 | True | 1231.5 | 421.17 | 385 | 2946 |
| 0 | 344 | True | 2052.5 | 421.17 | 385 | 2668 |
| 0 | 345 | True | 410.5 | 1263.5 | 385 | 3400 |
| 0 | 346 | True | 1231.5 | 1263.5 | 385 | 4003 |
| 0 | 347 | True | 2052.5 | 1263.5 | 385 | 3587 |
| 0 | 348 | True | 410.5 | 2105.83 | 385 | 2524 |
| 0 | 349 | True | 1231.5 | 2105.83 | 385 | 2990 |
| 0 | 350 | True | 2052.5 | 2105.83 | 385 | 2625 |
| 0 | 351 | True | 410.5 | 421.17 | 395 | 2492 |
| 0 | 352 | True | 1231.5 | 421.17 | 395 | 3012 |
| 0 | 353 | True | 2052.5 | 421.17 | 395 | 2723 |
| 0 | 354 | True | 410.5 | 1263.5 | 395 | 3448 |
| 0 | 355 | True | 1231.5 | 1263.5 | 395 | 4058 |
| 0 | 356 | True | 2052.5 | 1263.5 | 395 | 3635 |
| 0 | 357 | True | 410.5 | 2105.83 | 395 | 2500 |
| 0 | 358 | True | 1231.5 | 2105.83 | 395 | 2957 |
| 0 | 359 | True | 2052.5 | 2105.83 | 395 | 2599 |
| 0 | 360 | True | 410.5 | 421.17 | 405 | 2532 |
| 0 | 361 | True | 1231.5 | 421.17 | 405 | 3068 |
| 0 | 362 | True | 2052.5 | 421.17 | 405 | 2782 |
| 0 | 363 | True | 410.5 | 1263.5 | 405 | 3425 |
| 0 | 364 | True | 1231.5 | 1263.5 | 405 | 4043 |
| 0 | 365 | True | 2052.5 | 1263.5 | 405 | 3648 |
| 0 | 366 | True | 410.5 | 2105.83 | 405 | 2398 |
| 0 | 367 | True | 1231.5 | 2105.83 | 405 | 2846 |
| 0 | 368 | True | 2052.5 | 2105.83 | 405 | 2518 |
| 0 | 369 | True | 410.5 | 421.17 | 415 | 2573 |
| 0 | 370 | True | 1231.5 | 421.17 | 415 | 3143 |
| 0 | 371 | True | 2052.5 | 421.17 | 415 | 2863 |
| 0 | 372 | True | 410.5 | 1263.5 | 415 | 3411 |
| 0 | 373 | True | 1231.5 | 1263.5 | 415 | 4060 |
| 0 | 374 | True | 2052.5 | 1263.5 | 415 | 3689 |
| 0 | 375 | True | 410.5 | 2105.83 | 415 | 2336 |
| 0 | 376 | True | 1231.5 | 2105.83 | 415 | 2778 |
| 0 | 377 | True | 2052.5 | 2105.83 | 415 | 2489 |
| 0 | 378 | True | 410.5 | 421.17 | 425 | 2619 |
| 0 | 379 | True | 1231.5 | 421.17 | 425 | 3213 |
| 0 | 380 | True | 2052.5 | 421.17 | 425 | 2934 |
| 0 | 381 | True | 410.5 | 1263.5 | 425 | 3384 |
| 0 | 382 | True | 1231.5 | 1263.5 | 425 | 4049 |
| 0 | 383 | True | 2052.5 | 1263.5 | 425 | 3700 |
| 0 | 384 | True | 410.5 | 2105.83 | 425 | 2251 |
| 0 | 385 | True | 1231.5 | 2105.83 | 425 | 2676 |
| 0 | 386 | True | 2052.5 | 2105.83 | 425 | 2425 |
| 0 | 387 | True | 410.5 | 421.17 | 435 | 2655 |
| 0 | 388 | True | 1231.5 | 421.17 | 435 | 3285 |
| 0 | 389 | True | 2052.5 | 421.17 | 435 | 2999 |
| 0 | 390 | True | 410.5 | 1263.5 | 435 | 3347 |
| 0 | 391 | True | 1231.5 | 1263.5 | 435 | 4037 |
| 0 | 392 | True | 2052.5 | 1263.5 | 435 | 3688 |
| 0 | 393 | True | 410.5 | 2105.83 | 435 | 2175 |
| 0 | 394 | True | 1231.5 | 2105.83 | 435 | 2584 |
| 0 | 395 | True | 2052.5 | 2105.83 | 435 | 2343 |
| 0 | 396 | True | 410.5 | 421.17 | 445 | 2694 |
| 0 | 397 | True | 1231.5 | 421.17 | 445 | 3333 |
| 0 | 398 | True | 2052.5 | 421.17 | 445 | 3022 |
| 0 | 399 | True | 410.5 | 1263.5 | 445 | 3308 |
| 0 | 400 | True | 1231.5 | 1263.5 | 445 | 3991 |
| 0 | 401 | True | 2052.5 | 1263.5 | 445 | 3627 |
| 0 | 402 | True | 410.5 | 2105.83 | 445 | 2096 |
| 0 | 403 | True | 1231.5 | 2105.83 | 445 | 2477 |
| 0 | 404 | True | 2052.5 | 2105.83 | 445 | 2231 |
| 0 | 405 | True | 410.5 | 421.17 | 455 | 2781 |
| 0 | 406 | True | 1231.5 | 421.17 | 455 | 3447 |
| 0 | 407 | True | 2052.5 | 421.17 | 455 | 3132 |
| 0 | 408 | True | 410.5 | 1263.5 | 455 | 3337 |
| 0 | 409 | True | 1231.5 | 1263.5 | 455 | 4040 |
| 0 | 410 | True | 2052.5 | 1263.5 | 455 | 3681 |
| 0 | 411 | True | 410.5 | 2105.83 | 455 | 2062 |
| 0 | 412 | True | 1231.5 | 2105.83 | 455 | 2433 |
| 0 | 413 | True | 2052.5 | 2105.83 | 455 | 2201 |
| 0 | 414 | True | 410.5 | 421.17 | 465 | 2849 |
| 0 | 415 | True | 1231.5 | 421.17 | 465 | 3511 |
| 0 | 416 | True | 2052.5 | 421.17 | 465 | 3182 |
| 0 | 417 | True | 410.5 | 1263.5 | 465 | 3365 |
| 0 | 418 | True | 1231.5 | 1263.5 | 465 | 4061 |
| 0 | 419 | True | 2052.5 | 1263.5 | 465 | 3690 |
| 0 | 420 | True | 410.5 | 2105.83 | 465 | 2024 |
| 0 | 421 | True | 1231.5 | 2105.83 | 465 | 2389 |
| 0 | 422 | True | 2052.5 | 2105.83 | 465 | 2163 |
| 0 | 423 | True | 410.5 | 421.17 | 475 | 2867 |
| 0 | 424 | True | 1231.5 | 421.17 | 475 | 3544 |
| 0 | 425 | True | 2052.5 | 421.17 | 475 | 3214 |
| 0 | 426 | True | 410.5 | 1263.5 | 475 | 3322 |
| 0 | 427 | True | 1231.5 | 1263.5 | 475 | 4029 |
| 0 | 428 | True | 2052.5 | 1263.5 | 475 | 3662 |
| 0 | 429 | True | 410.5 | 2105.83 | 475 | 1977 |
| 0 | 430 | True | 1231.5 | 2105.83 | 475 | 2344 |
| 0 | 431 | True | 2052.5 | 2105.83 | 475 | 2128 |
| 0 | 432 | True | 410.5 | 421.17 | 485 | 2806 |
| 0 | 433 | True | 1231.5 | 421.17 | 485 | 3473 |
| 0 | 434 | True | 2052.5 | 421.17 | 485 | 3143 |
| 0 | 435 | True | 410.5 | 1263.5 | 485 | 3201 |
| 0 | 436 | True | 1231.5 | 1263.5 | 485 | 3887 |
| 0 | 437 | True | 2052.5 | 1263.5 | 485 | 3521 |
| 0 | 438 | True | 410.5 | 2105.83 | 485 | 1921 |
| 0 | 439 | True | 1231.5 | 2105.83 | 485 | 2274 |
| 0 | 440 | True | 2052.5 | 2105.83 | 485 | 2058 |
| 0 | 441 | True | 410.5 | 421.17 | 495 | 2734 |
| 0 | 442 | True | 1231.5 | 421.17 | 495 | 3407 |
| 0 | 443 | True | 2052.5 | 421.17 | 495 | 3086 |
| 0 | 444 | True | 410.5 | 1263.5 | 495 | 3083 |
| 0 | 445 | True | 1231.5 | 1263.5 | 495 | 3777 |
| 0 | 446 | True | 2052.5 | 1263.5 | 495 | 3427 |
| 0 | 447 | True | 410.5 | 2105.83 | 495 | 1878 |
| 0 | 448 | True | 1231.5 | 2105.83 | 495 | 2238 |
| 0 | 449 | True | 2052.5 | 2105.83 | 495 | 2029 |
| 0 | 450 | True | 410.5 | 421.17 | 505 | 2732 |
| 0 | 451 | True | 1231.5 | 421.17 | 505 | 3384 |
| 0 | 452 | True | 2052.5 | 421.17 | 505 | 3072 |
| 0 | 453 | True | 410.5 | 1263.5 | 505 | 3065 |
| 0 | 454 | True | 1231.5 | 1263.5 | 505 | 3738 |
| 0 | 455 | True | 2052.5 | 1263.5 | 505 | 3401 |
| 0 | 456 | True | 410.5 | 2105.83 | 505 | 1902 |
| 0 | 457 | True | 1231.5 | 2105.83 | 505 | 2261 |
| 0 | 458 | True | 2052.5 | 2105.83 | 505 | 2045 |
| 0 | 459 | True | 410.5 | 421.17 | 515 | 2669 |
| 0 | 460 | True | 1231.5 | 421.17 | 515 | 3297 |
| 0 | 461 | True | 2052.5 | 421.17 | 515 | 2997 |
| 0 | 462 | True | 410.5 | 1263.5 | 515 | 2986 |
| 0 | 463 | True | 1231.5 | 1263.5 | 515 | 3641 |
| 0 | 464 | True | 2052.5 | 1263.5 | 515 | 3317 |
| 0 | 465 | True | 410.5 | 2105.83 | 515 | 1884 |
| 0 | 466 | True | 1231.5 | 2105.83 | 515 | 2254 |
| 0 | 467 | True | 2052.5 | 2105.83 | 515 | 2028 |
| 0 | 468 | True | 410.5 | 421.17 | 525 | 2651 |
| 0 | 469 | True | 1231.5 | 421.17 | 525 | 3275 |
| 0 | 470 | True | 2052.5 | 421.17 | 525 | 2984 |
| 0 | 471 | True | 410.5 | 1263.5 | 525 | 2936 |
| 0 | 472 | True | 1231.5 | 1263.5 | 525 | 3584 |
| 0 | 473 | True | 2052.5 | 1263.5 | 525 | 3272 |
| 0 | 474 | True | 410.5 | 2105.83 | 525 | 1867 |
| 0 | 475 | True | 1231.5 | 2105.83 | 525 | 2242 |
| 0 | 476 | True | 2052.5 | 2105.83 | 525 | 2011 |
| 0 | 477 | True | 410.5 | 421.17 | 535 | 2573 |
| 0 | 478 | True | 1231.5 | 421.17 | 535 | 3215 |
| 0 | 479 | True | 2052.5 | 421.17 | 535 | 2930 |
| 0 | 480 | True | 410.5 | 1263.5 | 535 | 2857 |
| 0 | 481 | True | 1231.5 | 1263.5 | 535 | 3520 |
| 0 | 482 | True | 2052.5 | 1263.5 | 535 | 3211 |
| 0 | 483 | True | 410.5 | 2105.83 | 535 | 1863 |
| 0 | 484 | True | 1231.5 | 2105.83 | 535 | 2254 |
| 0 | 485 | True | 2052.5 | 2105.83 | 535 | 2018 |
| 0 | 486 | True | 410.5 | 421.17 | 545 | 2567 |
| 0 | 487 | True | 1231.5 | 421.17 | 545 | 3227 |
| 0 | 488 | True | 2052.5 | 421.17 | 545 | 2947 |
| 0 | 489 | True | 410.5 | 1263.5 | 545 | 2832 |
| 0 | 490 | True | 1231.5 | 1263.5 | 545 | 3512 |
| 0 | 491 | True | 2052.5 | 1263.5 | 545 | 3211 |
| 0 | 492 | True | 410.5 | 2105.83 | 545 | 1864 |
| 0 | 493 | True | 1231.5 | 2105.83 | 545 | 2268 |
| 0 | 494 | True | 2052.5 | 2105.83 | 545 | 2040 |
| 0 | 495 | True | 410.5 | 421.17 | 555 | 2515 |
| 0 | 496 | True | 1231.5 | 421.17 | 555 | 3161 |
| 0 | 497 | True | 2052.5 | 421.17 | 555 | 2887 |
| 0 | 498 | True | 410.5 | 1263.5 | 555 | 2800 |
| 0 | 499 | True | 1231.5 | 1263.5 | 555 | 3471 |
| 0 | 500 | True | 2052.5 | 1263.5 | 555 | 3170 |
| 0 | 501 | True | 410.5 | 2105.83 | 555 | 1919 |
| 0 | 502 | True | 1231.5 | 2105.83 | 555 | 2340 |
| 0 | 503 | True | 2052.5 | 2105.83 | 555 | 2106 |
| 0 | 504 | True | 410.5 | 421.17 | 565 | 2445 |
| 0 | 505 | True | 1231.5 | 421.17 | 565 | 3064 |
| 0 | 506 | True | 2052.5 | 421.17 | 565 | 2791 |
| 0 | 507 | True | 410.5 | 1263.5 | 565 | 2730 |
| 0 | 508 | True | 1231.5 | 1263.5 | 565 | 3383 |
| 0 | 509 | True | 2052.5 | 1263.5 | 565 | 3075 |
| 0 | 510 | True | 410.5 | 2105.83 | 565 | 1906 |
| 0 | 511 | True | 1231.5 | 2105.83 | 565 | 2338 |
| 0 | 512 | True | 2052.5 | 2105.83 | 565 | 2088 |
| 0 | 513 | True | 410.5 | 421.17 | 575 | 2422 |
| 0 | 514 | True | 1231.5 | 421.17 | 575 | 3031 |
| 0 | 515 | True | 2052.5 | 421.17 | 575 | 2761 |
| 0 | 516 | True | 410.5 | 1263.5 | 575 | 2770 |
| 0 | 517 | True | 1231.5 | 1263.5 | 575 | 3426 |
| 0 | 518 | True | 2052.5 | 1263.5 | 575 | 3110 |
| 0 | 519 | True | 410.5 | 2105.83 | 575 | 1974 |
| 0 | 520 | True | 1231.5 | 2105.83 | 575 | 2439 |
| 0 | 521 | True | 2052.5 | 2105.83 | 575 | 2180 |
| 0 | 522 | True | 410.5 | 421.17 | 585 | 2385 |
| 0 | 523 | True | 1231.5 | 421.17 | 585 | 3000 |
| 0 | 524 | True | 2052.5 | 421.17 | 585 | 2730 |
| 0 | 525 | True | 410.5 | 1263.5 | 585 | 2785 |
| 0 | 526 | True | 1231.5 | 1263.5 | 585 | 3455 |
| 0 | 527 | True | 2052.5 | 1263.5 | 585 | 3143 |
| 0 | 528 | True | 410.5 | 2105.83 | 585 | 2009 |
| 0 | 529 | True | 1231.5 | 2105.83 | 585 | 2497 |
| 0 | 530 | True | 2052.5 | 2105.83 | 585 | 2240 |
| 0 | 531 | True | 410.5 | 421.17 | 595 | 2428 |
| 0 | 532 | True | 1231.5 | 421.17 | 595 | 3052 |
| 0 | 533 | True | 2052.5 | 421.17 | 595 | 2795 |
| 0 | 534 | True | 410.5 | 1263.5 | 595 | 2898 |
| 0 | 535 | True | 1231.5 | 1263.5 | 595 | 3595 |
| 0 | 536 | True | 2052.5 | 1263.5 | 595 | 3295 |
| 0 | 537 | True | 410.5 | 2105.83 | 595 | 2115 |
| 0 | 538 | True | 1231.5 | 2105.83 | 595 | 2635 |
| 0 | 539 | True | 2052.5 | 2105.83 | 595 | 2388 |
| 0 | 540 | True | 410.5 | 421.17 | 605 | 2419 |
| 0 | 541 | True | 1231.5 | 421.17 | 605 | 3042 |
| 0 | 542 | True | 2052.5 | 421.17 | 605 | 2777 |
| 0 | 543 | True | 410.5 | 1263.5 | 605 | 2933 |
| 0 | 544 | True | 1231.5 | 1263.5 | 605 | 3641 |
| 0 | 545 | True | 2052.5 | 1263.5 | 605 | 3331 |
| 0 | 546 | True | 410.5 | 2105.83 | 605 | 2177 |
| 0 | 547 | True | 1231.5 | 2105.83 | 605 | 2707 |
| 0 | 548 | True | 2052.5 | 2105.83 | 605 | 2442 |
| 0 | 549 | True | 410.5 | 421.17 | 615 | 2471 |
| 0 | 550 | True | 1231.5 | 421.17 | 615 | 3074 |
| 0 | 551 | True | 2052.5 | 421.17 | 615 | 2780 |
| 0 | 552 | True | 410.5 | 1263.5 | 615 | 3006 |
| 0 | 553 | True | 1231.5 | 1263.5 | 615 | 3709 |
| 0 | 554 | True | 2052.5 | 1263.5 | 615 | 3363 |
| 0 | 555 | True | 410.5 | 2105.83 | 615 | 2252 |
| 0 | 556 | True | 1231.5 | 2105.83 | 615 | 2788 |
| 0 | 557 | True | 2052.5 | 2105.83 | 615 | 2496 |
| 0 | 558 | True | 410.5 | 421.17 | 625 | 2416 |
| 0 | 559 | True | 1231.5 | 421.17 | 625 | 2984 |
| 0 | 560 | True | 2052.5 | 421.17 | 625 | 2678 |
| 0 | 561 | True | 410.5 | 1263.5 | 625 | 2951 |
| 0 | 562 | True | 1231.5 | 1263.5 | 625 | 3627 |
| 0 | 563 | True | 2052.5 | 1263.5 | 625 | 3276 |
| 0 | 564 | True | 410.5 | 2105.83 | 625 | 2252 |
| 0 | 565 | True | 1231.5 | 2105.83 | 625 | 2790 |
| 0 | 566 | True | 2052.5 | 2105.83 | 625 | 2495 |
| 0 | 567 | True | 410.5 | 421.17 | 635 | 2337 |
| 0 | 568 | True | 1231.5 | 421.17 | 635 | 2856 |
| 0 | 569 | True | 2052.5 | 421.17 | 635 | 2557 |
| 0 | 570 | True | 410.5 | 1263.5 | 635 | 2863 |
| 0 | 571 | True | 1231.5 | 1263.5 | 635 | 3499 |
| 0 | 572 | True | 2052.5 | 1263.5 | 635 | 3160 |
| 0 | 573 | True | 410.5 | 2105.83 | 635 | 2231 |
| 0 | 574 | True | 1231.5 | 2105.83 | 635 | 2763 |
| 0 | 575 | True | 2052.5 | 2105.83 | 635 | 2472 |
| 0 | 576 | True | 410.5 | 421.17 | 645 | 2268 |
| 0 | 577 | True | 1231.5 | 421.17 | 645 | 2770 |
| 0 | 578 | True | 2052.5 | 421.17 | 645 | 2481 |
| 0 | 579 | True | 410.5 | 1263.5 | 645 | 2868 |
| 0 | 580 | True | 1231.5 | 1263.5 | 645 | 3508 |
| 0 | 581 | True | 2052.5 | 1263.5 | 645 | 3170 |
| 0 | 582 | True | 410.5 | 2105.83 | 645 | 2301 |
| 0 | 583 | True | 1231.5 | 2105.83 | 645 | 2851 |
| 0 | 584 | True | 2052.5 | 2105.83 | 645 | 2549 |
| 0 | 585 | True | 410.5 | 421.17 | 655 | 2288 |
| 0 | 586 | True | 1231.5 | 421.17 | 655 | 2796 |
| 0 | 587 | True | 2052.5 | 421.17 | 655 | 2487 |
| 0 | 588 | True | 410.5 | 1263.5 | 655 | 2965 |
| 0 | 589 | True | 1231.5 | 1263.5 | 655 | 3645 |
| 0 | 590 | True | 2052.5 | 1263.5 | 655 | 3275 |
| 0 | 591 | True | 410.5 | 2105.83 | 655 | 2397 |
| 0 | 592 | True | 1231.5 | 2105.83 | 655 | 2987 |
| 0 | 593 | True | 2052.5 | 2105.83 | 655 | 2650 |
| 0 | 594 | True | 410.5 | 421.17 | 665 | 2330 |
| 0 | 595 | True | 1231.5 | 421.17 | 665 | 2848 |
| 0 | 596 | True | 2052.5 | 421.17 | 665 | 2529 |
| 0 | 597 | True | 410.5 | 1263.5 | 665 | 3092 |
| 0 | 598 | True | 1231.5 | 1263.5 | 665 | 3803 |
| 0 | 599 | True | 2052.5 | 1263.5 | 665 | 3409 |
| 0 | 600 | True | 410.5 | 2105.83 | 665 | 2534 |
| 0 | 601 | True | 1231.5 | 2105.83 | 665 | 3146 |
| 0 | 602 | True | 2052.5 | 2105.83 | 665 | 2785 |
| 0 | 603 | True | 410.5 | 421.17 | 675 | 2325 |
| 0 | 604 | True | 1231.5 | 421.17 | 675 | 2846 |
| 0 | 605 | True | 2052.5 | 421.17 | 675 | 2533 |
| 0 | 606 | True | 410.5 | 1263.5 | 675 | 3104 |
| 0 | 607 | True | 1231.5 | 1263.5 | 675 | 3830 |
| 0 | 608 | True | 2052.5 | 1263.5 | 675 | 3437 |
| 0 | 609 | True | 410.5 | 2105.83 | 675 | 2552 |
| 0 | 610 | True | 1231.5 | 2105.83 | 675 | 3179 |
| 0 | 611 | True | 2052.5 | 2105.83 | 675 | 2820 |
| 0 | 612 | True | 410.5 | 421.17 | 685 | 2313 |
| 0 | 613 | True | 1231.5 | 421.17 | 685 | 2806 |
| 0 | 614 | True | 2052.5 | 421.17 | 685 | 2503 |
| 0 | 615 | True | 410.5 | 1263.5 | 685 | 3139 |
| 0 | 616 | True | 1231.5 | 1263.5 | 685 | 3843 |
| 0 | 617 | True | 2052.5 | 1263.5 | 685 | 3450 |
| 0 | 618 | True | 410.5 | 2105.83 | 685 | 2596 |
| 0 | 619 | True | 1231.5 | 2105.83 | 685 | 3209 |
| 0 | 620 | True | 2052.5 | 2105.83 | 685 | 2856 |
| 0 | 621 | True | 410.5 | 421.17 | 695 | 2308 |
| 0 | 622 | True | 1231.5 | 421.17 | 695 | 2797 |
| 0 | 623 | True | 2052.5 | 421.17 | 695 | 2481 |
| 0 | 624 | True | 410.5 | 1263.5 | 695 | 3174 |
| 0 | 625 | True | 1231.5 | 1263.5 | 695 | 3916 |
| 0 | 626 | True | 2052.5 | 1263.5 | 695 | 3511 |
| 0 | 627 | True | 410.5 | 2105.83 | 695 | 2603 |
| 0 | 628 | True | 1231.5 | 2105.83 | 695 | 3257 |
| 0 | 629 | True | 2052.5 | 2105.83 | 695 | 2902 |
| 0 | 630 | True | 410.5 | 421.17 | 705 | 2318 |
| 0 | 631 | True | 1231.5 | 421.17 | 705 | 2782 |
| 0 | 632 | True | 2052.5 | 421.17 | 705 | 2465 |
| 0 | 633 | True | 410.5 | 1263.5 | 705 | 3283 |
| 0 | 634 | True | 1231.5 | 1263.5 | 705 | 4041 |
| 0 | 635 | True | 2052.5 | 1263.5 | 705 | 3630 |
| 0 | 636 | True | 410.5 | 2105.83 | 705 | 2677 |
| 0 | 637 | True | 1231.5 | 2105.83 | 705 | 3356 |
| 0 | 638 | True | 2052.5 | 2105.83 | 705 | 2999 |
| 0 | 639 | True | 410.5 | 421.17 | 715 | 1546 |
| 0 | 640 | True | 1231.5 | 421.17 | 715 | 1859 |
| 0 | 641 | True | 2052.5 | 421.17 | 715 | 1648 |
| 0 | 642 | True | 410.5 | 1263.5 | 715 | 2215 |
| 0 | 643 | True | 1231.5 | 1263.5 | 715 | 2744 |
| 0 | 644 | True | 2052.5 | 1263.5 | 715 | 2470 |
| 0 | 645 | True | 410.5 | 2105.83 | 715 | 1801 |
| 0 | 646 | True | 1231.5 | 2105.83 | 715 | 2273 |
| 0 | 647 | True | 2052.5 | 2105.83 | 715 | 2035 |
+------+-----------+-----------+----------+----------+----------+-----------------+
Timing information for reference profile formation
+-------------------+----------------+
| Read time | 160.48 seconds |
| Extract time | 0.62 seconds |
| Pre-process time | 0.10 seconds |
| Process time | 38.53 seconds |
| Post-process time | 0.00 seconds |
| Total time | 202.29 seconds |
+-------------------+----------------+
================================================================================
Integrating reflections
Split 12313 reflections overlapping job boundaries
Memory situation report:
Available system memory (excluding swap) : 13.9 GB
Available swap memory : 6.1 GB
Available system memory (including swap) : 20.0 GB
Maximum memory for processing (including swap) : 18.0 GB
Maximum memory for processing (excluding swap) : 12.5 GB
Memory required per process : 0.0 GB
no memory ulimit set
Processing reflections in the following blocks of images:
block_size: 6 frames
+-----+---------+--------------+------------+--------------+------------+-----------------+
| # | Group | Frame From | Frame To | Angle From | Angle To | # Reflections |
|-----+---------+--------------+------------+--------------+------------+-----------------|
| 0 | 0 | 0 | 6 | 0 | 3 | 3302 |
| 1 | 0 | 3 | 9 | 1.5 | 4.5 | 1627 |
| 2 | 0 | 6 | 12 | 3 | 6 | 1513 |
| 3 | 0 | 9 | 15 | 4.5 | 7.5 | 1549 |
| 4 | 0 | 12 | 18 | 6 | 9 | 1550 |
| 5 | 0 | 15 | 21 | 7.5 | 10.5 | 1604 |
| 6 | 0 | 18 | 24 | 9 | 12 | 1561 |
| 7 | 0 | 21 | 27 | 10.5 | 13.5 | 1578 |
| 8 | 0 | 24 | 30 | 12 | 15 | 1580 |
| 9 | 0 | 27 | 33 | 13.5 | 16.5 | 1585 |
| 10 | 0 | 30 | 36 | 15 | 18 | 1560 |
| 11 | 0 | 33 | 39 | 16.5 | 19.5 | 1552 |
| 12 | 0 | 36 | 42 | 18 | 21 | 1522 |
| 13 | 0 | 39 | 45 | 19.5 | 22.5 | 1538 |
| 14 | 0 | 42 | 48 | 21 | 24 | 1564 |
| 15 | 0 | 45 | 51 | 22.5 | 25.5 | 1549 |
| 16 | 0 | 48 | 54 | 24 | 27 | 1572 |
| 17 | 0 | 51 | 57 | 25.5 | 28.5 | 1536 |
| 18 | 0 | 54 | 60 | 27 | 30 | 1552 |
| 19 | 0 | 57 | 63 | 28.5 | 31.5 | 1544 |
| 20 | 0 | 60 | 66 | 30 | 33 | 1544 |
| 21 | 0 | 63 | 69 | 31.5 | 34.5 | 1567 |
| 22 | 0 | 66 | 72 | 33 | 36 | 1558 |
| 23 | 0 | 69 | 75 | 34.5 | 37.5 | 1586 |
| 24 | 0 | 72 | 78 | 36 | 39 | 1604 |
| 25 | 0 | 75 | 81 | 37.5 | 40.5 | 1553 |
| 26 | 0 | 78 | 84 | 39 | 42 | 1564 |
| 27 | 0 | 81 | 87 | 40.5 | 43.5 | 1540 |
| 28 | 0 | 84 | 90 | 42 | 45 | 1558 |
| 29 | 0 | 87 | 93 | 43.5 | 46.5 | 1629 |
| 30 | 0 | 90 | 96 | 45 | 48 | 1537 |
| 31 | 0 | 93 | 99 | 46.5 | 49.5 | 1572 |
| 32 | 0 | 96 | 102 | 48 | 51 | 1498 |
| 33 | 0 | 99 | 105 | 49.5 | 52.5 | 1617 |
| 34 | 0 | 102 | 108 | 51 | 54 | 1575 |
| 35 | 0 | 105 | 111 | 52.5 | 55.5 | 1562 |
| 36 | 0 | 108 | 114 | 54 | 57 | 1541 |
| 37 | 0 | 111 | 117 | 55.5 | 58.5 | 1588 |
| 38 | 0 | 114 | 120 | 57 | 60 | 1560 |
| 39 | 0 | 117 | 123 | 58.5 | 61.5 | 1517 |
| 40 | 0 | 120 | 126 | 60 | 63 | 1604 |
| 41 | 0 | 123 | 129 | 61.5 | 64.5 | 1528 |
| 42 | 0 | 126 | 132 | 63 | 66 | 1551 |
| 43 | 0 | 129 | 135 | 64.5 | 67.5 | 1594 |
| 44 | 0 | 132 | 138 | 66 | 69 | 1557 |
| 45 | 0 | 135 | 141 | 67.5 | 70.5 | 1582 |
| 46 | 0 | 138 | 144 | 69 | 72 | 1537 |
| 47 | 0 | 141 | 147 | 70.5 | 73.5 | 1549 |
| 48 | 0 | 144 | 150 | 72 | 75 | 1586 |
| 49 | 0 | 147 | 153 | 73.5 | 76.5 | 1543 |
| 50 | 0 | 150 | 156 | 75 | 78 | 1556 |
| 51 | 0 | 153 | 159 | 76.5 | 79.5 | 1552 |
| 52 | 0 | 156 | 162 | 78 | 81 | 1596 |
| 53 | 0 | 159 | 165 | 79.5 | 82.5 | 1525 |
| 54 | 0 | 162 | 168 | 81 | 84 | 1562 |
| 55 | 0 | 165 | 171 | 82.5 | 85.5 | 1556 |
| 56 | 0 | 168 | 174 | 84 | 87 | 1575 |
| 57 | 0 | 171 | 177 | 85.5 | 88.5 | 1569 |
| 58 | 0 | 174 | 180 | 87 | 90 | 1539 |
| 59 | 0 | 177 | 183 | 88.5 | 91.5 | 1547 |
| 60 | 0 | 180 | 186 | 90 | 93 | 1574 |
| 61 | 0 | 183 | 189 | 91.5 | 94.5 | 1560 |
| 62 | 0 | 186 | 192 | 93 | 96 | 1544 |
| 63 | 0 | 189 | 195 | 94.5 | 97.5 | 1577 |
| 64 | 0 | 192 | 198 | 96 | 99 | 1563 |
| 65 | 0 | 195 | 201 | 97.5 | 100.5 | 1554 |
| 66 | 0 | 198 | 204 | 99 | 102 | 1567 |
| 67 | 0 | 201 | 207 | 100.5 | 103.5 | 1562 |
| 68 | 0 | 204 | 210 | 102 | 105 | 1554 |
| 69 | 0 | 207 | 213 | 103.5 | 106.5 | 1547 |
| 70 | 0 | 210 | 216 | 105 | 108 | 1558 |
| 71 | 0 | 213 | 219 | 106.5 | 109.5 | 1577 |
| 72 | 0 | 216 | 222 | 108 | 111 | 1574 |
| 73 | 0 | 219 | 225 | 109.5 | 112.5 | 1545 |
| 74 | 0 | 222 | 228 | 111 | 114 | 1572 |
| 75 | 0 | 225 | 231 | 112.5 | 115.5 | 1544 |
| 76 | 0 | 228 | 234 | 114 | 117 | 1583 |
| 77 | 0 | 231 | 237 | 115.5 | 118.5 | 1559 |
| 78 | 0 | 234 | 240 | 117 | 120 | 1540 |
| 79 | 0 | 237 | 243 | 118.5 | 121.5 | 1581 |
| 80 | 0 | 240 | 246 | 120 | 123 | 1591 |
| 81 | 0 | 243 | 249 | 121.5 | 124.5 | 1565 |
| 82 | 0 | 246 | 252 | 123 | 126 | 1551 |
| 83 | 0 | 249 | 255 | 124.5 | 127.5 | 1564 |
| 84 | 0 | 252 | 258 | 126 | 129 | 1542 |
| 85 | 0 | 255 | 261 | 127.5 | 130.5 | 1583 |
| 86 | 0 | 258 | 264 | 129 | 132 | 1540 |
| 87 | 0 | 261 | 267 | 130.5 | 133.5 | 1560 |
| 88 | 0 | 264 | 270 | 132 | 135 | 1591 |
| 89 | 0 | 267 | 273 | 133.5 | 136.5 | 1583 |
| 90 | 0 | 270 | 276 | 135 | 138 | 1544 |
| 91 | 0 | 273 | 279 | 136.5 | 139.5 | 1521 |
| 92 | 0 | 276 | 282 | 138 | 141 | 1538 |
| 93 | 0 | 279 | 285 | 139.5 | 142.5 | 1566 |
| 94 | 0 | 282 | 288 | 141 | 144 | 1586 |
| 95 | 0 | 285 | 291 | 142.5 | 145.5 | 1564 |
| 96 | 0 | 288 | 294 | 144 | 147 | 1552 |
| 97 | 0 | 291 | 297 | 145.5 | 148.5 | 1541 |
| 98 | 0 | 294 | 300 | 147 | 150 | 1599 |
| 99 | 0 | 297 | 303 | 148.5 | 151.5 | 1573 |
| 100 | 0 | 300 | 306 | 150 | 153 | 1564 |
| 101 | 0 | 303 | 309 | 151.5 | 154.5 | 1531 |
| 102 | 0 | 306 | 312 | 153 | 156 | 1595 |
| 103 | 0 | 309 | 315 | 154.5 | 157.5 | 1547 |
| 104 | 0 | 312 | 318 | 156 | 159 | 1597 |
| 105 | 0 | 315 | 321 | 157.5 | 160.5 | 1522 |
| 106 | 0 | 318 | 324 | 159 | 162 | 1588 |
| 107 | 0 | 321 | 327 | 160.5 | 163.5 | 1540 |
| 108 | 0 | 324 | 330 | 162 | 165 | 1553 |
| 109 | 0 | 327 | 333 | 163.5 | 166.5 | 1574 |
| 110 | 0 | 330 | 336 | 165 | 168 | 1549 |
| 111 | 0 | 333 | 339 | 166.5 | 169.5 | 1570 |
| 112 | 0 | 336 | 342 | 168 | 171 | 1559 |
| 113 | 0 | 339 | 345 | 169.5 | 172.5 | 1564 |
| 114 | 0 | 342 | 348 | 171 | 174 | 1582 |
| 115 | 0 | 345 | 351 | 172.5 | 175.5 | 1535 |
| 116 | 0 | 348 | 354 | 174 | 177 | 1556 |
| 117 | 0 | 351 | 357 | 175.5 | 178.5 | 1566 |
| 118 | 0 | 354 | 360 | 177 | 180 | 1575 |
| 119 | 0 | 357 | 363 | 178.5 | 181.5 | 1541 |
| 120 | 0 | 360 | 366 | 180 | 183 | 1563 |
| 121 | 0 | 363 | 369 | 181.5 | 184.5 | 1620 |
| 122 | 0 | 366 | 372 | 183 | 186 | 1500 |
| 123 | 0 | 369 | 375 | 184.5 | 187.5 | 1538 |
| 124 | 0 | 372 | 378 | 186 | 189 | 1597 |
| 125 | 0 | 375 | 381 | 187.5 | 190.5 | 1628 |
| 126 | 0 | 378 | 384 | 189 | 192 | 1568 |
| 127 | 0 | 381 | 387 | 190.5 | 193.5 | 1548 |
| 128 | 0 | 384 | 390 | 192 | 195 | 1575 |
| 129 | 0 | 387 | 393 | 193.5 | 196.5 | 1568 |
| 130 | 0 | 390 | 396 | 195 | 198 | 1597 |
| 131 | 0 | 393 | 399 | 196.5 | 199.5 | 1540 |
| 132 | 0 | 396 | 402 | 198 | 201 | 1528 |
| 133 | 0 | 399 | 405 | 199.5 | 202.5 | 1554 |
| 134 | 0 | 402 | 408 | 201 | 204 | 1580 |
| 135 | 0 | 405 | 411 | 202.5 | 205.5 | 1558 |
| 136 | 0 | 408 | 414 | 204 | 207 | 1584 |
| 137 | 0 | 411 | 417 | 205.5 | 208.5 | 1570 |
| 138 | 0 | 414 | 420 | 207 | 210 | 1561 |
| 139 | 0 | 417 | 423 | 208.5 | 211.5 | 1548 |
| 140 | 0 | 420 | 426 | 210 | 213 | 1556 |
| 141 | 0 | 423 | 429 | 211.5 | 214.5 | 1543 |
| 142 | 0 | 426 | 432 | 213 | 216 | 1565 |
| 143 | 0 | 429 | 435 | 214.5 | 217.5 | 1579 |
| 144 | 0 | 432 | 438 | 216 | 219 | 1591 |
| 145 | 0 | 435 | 441 | 217.5 | 220.5 | 1555 |
| 146 | 0 | 438 | 444 | 219 | 222 | 1559 |
| 147 | 0 | 441 | 447 | 220.5 | 223.5 | 1552 |
| 148 | 0 | 444 | 450 | 222 | 225 | 1551 |
| 149 | 0 | 447 | 453 | 223.5 | 226.5 | 1619 |
| 150 | 0 | 450 | 456 | 225 | 228 | 1536 |
| 151 | 0 | 453 | 459 | 226.5 | 229.5 | 1559 |
| 152 | 0 | 456 | 462 | 228 | 231 | 1495 |
| 153 | 0 | 459 | 465 | 229.5 | 232.5 | 1637 |
| 154 | 0 | 462 | 468 | 231 | 234 | 1585 |
| 155 | 0 | 465 | 471 | 232.5 | 235.5 | 1543 |
| 156 | 0 | 468 | 474 | 234 | 237 | 1542 |
| 157 | 0 | 471 | 477 | 235.5 | 238.5 | 1585 |
| 158 | 0 | 474 | 480 | 237 | 240 | 1572 |
| 159 | 0 | 477 | 483 | 238.5 | 241.5 | 1514 |
| 160 | 0 | 480 | 486 | 240 | 243 | 1596 |
| 161 | 0 | 483 | 489 | 241.5 | 244.5 | 1530 |
| 162 | 0 | 486 | 492 | 243 | 246 | 1577 |
| 163 | 0 | 489 | 495 | 244.5 | 247.5 | 1582 |
| 164 | 0 | 492 | 498 | 246 | 249 | 1545 |
| 165 | 0 | 495 | 501 | 247.5 | 250.5 | 1591 |
| 166 | 0 | 498 | 504 | 249 | 252 | 1538 |
| 167 | 0 | 501 | 507 | 250.5 | 253.5 | 1570 |
| 168 | 0 | 504 | 510 | 252 | 255 | 1564 |
| 169 | 0 | 507 | 513 | 253.5 | 256.5 | 1578 |
| 170 | 0 | 510 | 516 | 255 | 258 | 1573 |
| 171 | 0 | 513 | 519 | 256.5 | 259.5 | 1540 |
| 172 | 0 | 516 | 522 | 258 | 261 | 1589 |
| 173 | 0 | 519 | 525 | 259.5 | 262.5 | 1523 |
| 174 | 0 | 522 | 528 | 261 | 264 | 1564 |
| 175 | 0 | 525 | 531 | 262.5 | 265.5 | 1588 |
| 176 | 0 | 528 | 534 | 264 | 267 | 1557 |
| 177 | 0 | 531 | 537 | 265.5 | 268.5 | 1589 |
| 178 | 0 | 534 | 540 | 267 | 270 | 1539 |
| 179 | 0 | 537 | 543 | 268.5 | 271.5 | 1587 |
| 180 | 0 | 540 | 546 | 270 | 273 | 1561 |
| 181 | 0 | 543 | 549 | 271.5 | 274.5 | 1564 |
| 182 | 0 | 546 | 552 | 273 | 276 | 1549 |
| 183 | 0 | 549 | 555 | 274.5 | 277.5 | 1560 |
| 184 | 0 | 552 | 558 | 276 | 279 | 1590 |
| 185 | 0 | 555 | 561 | 277.5 | 280.5 | 1556 |
| 186 | 0 | 558 | 564 | 279 | 282 | 1569 |
| 187 | 0 | 561 | 567 | 280.5 | 283.5 | 1553 |
| 188 | 0 | 564 | 570 | 282 | 285 | 1524 |
| 189 | 0 | 567 | 573 | 283.5 | 286.5 | 1582 |
| 190 | 0 | 570 | 576 | 285 | 288 | 1547 |
| 191 | 0 | 573 | 579 | 286.5 | 289.5 | 1567 |
| 192 | 0 | 576 | 582 | 288 | 291 | 1577 |
| 193 | 0 | 579 | 585 | 289.5 | 292.5 | 1565 |
| 194 | 0 | 582 | 588 | 291 | 294 | 1537 |
| 195 | 0 | 585 | 591 | 292.5 | 295.5 | 1557 |
| 196 | 0 | 588 | 594 | 294 | 297 | 1577 |
| 197 | 0 | 591 | 597 | 295.5 | 298.5 | 1575 |
| 198 | 0 | 594 | 600 | 297 | 300 | 1554 |
| 199 | 0 | 597 | 603 | 298.5 | 301.5 | 1575 |
| 200 | 0 | 600 | 606 | 300 | 303 | 1580 |
| 201 | 0 | 603 | 609 | 301.5 | 304.5 | 1553 |
| 202 | 0 | 606 | 612 | 303 | 306 | 1568 |
| 203 | 0 | 609 | 615 | 304.5 | 307.5 | 1548 |
| 204 | 0 | 612 | 618 | 306 | 309 | 1559 |
| 205 | 0 | 615 | 621 | 307.5 | 310.5 | 1598 |
| 206 | 0 | 618 | 624 | 309 | 312 | 1524 |
| 207 | 0 | 621 | 627 | 310.5 | 313.5 | 1565 |
| 208 | 0 | 624 | 630 | 312 | 315 | 1598 |
| 209 | 0 | 627 | 633 | 313.5 | 316.5 | 1571 |
| 210 | 0 | 630 | 636 | 315 | 318 | 1540 |
| 211 | 0 | 633 | 639 | 316.5 | 319.5 | 1528 |
| 212 | 0 | 636 | 642 | 318 | 321 | 1553 |
| 213 | 0 | 639 | 645 | 319.5 | 322.5 | 1569 |
| 214 | 0 | 642 | 648 | 321 | 324 | 1572 |
| 215 | 0 | 645 | 651 | 322.5 | 325.5 | 1528 |
| 216 | 0 | 648 | 654 | 324 | 327 | 1553 |
| 217 | 0 | 651 | 657 | 325.5 | 328.5 | 1559 |
| 218 | 0 | 654 | 660 | 327 | 330 | 1571 |
| 219 | 0 | 657 | 663 | 328.5 | 331.5 | 1569 |
| 220 | 0 | 660 | 666 | 330 | 333 | 1571 |
| 221 | 0 | 663 | 669 | 331.5 | 334.5 | 1524 |
| 222 | 0 | 666 | 672 | 333 | 336 | 1595 |
| 223 | 0 | 669 | 675 | 334.5 | 337.5 | 1572 |
| 224 | 0 | 672 | 678 | 336 | 339 | 1566 |
| 225 | 0 | 675 | 681 | 337.5 | 340.5 | 1540 |
| 226 | 0 | 678 | 684 | 339 | 342 | 1570 |
| 227 | 0 | 681 | 687 | 340.5 | 343.5 | 1532 |
| 228 | 0 | 684 | 690 | 342 | 345 | 1575 |
| 229 | 0 | 687 | 693 | 343.5 | 346.5 | 1568 |
| 230 | 0 | 690 | 696 | 345 | 348 | 1538 |
| 231 | 0 | 693 | 699 | 346.5 | 349.5 | 1580 |
| 232 | 0 | 696 | 702 | 348 | 351 | 1564 |
| 233 | 0 | 699 | 705 | 349.5 | 352.5 | 1559 |
| 234 | 0 | 702 | 708 | 351 | 354 | 1574 |
| 235 | 0 | 705 | 711 | 352.5 | 355.5 | 1582 |
| 236 | 0 | 708 | 714 | 354 | 357 | 1536 |
| 237 | 0 | 711 | 717 | 355.5 | 358.5 | 1557 |
| 238 | 0 | 714 | 720 | 357 | 360 | 3241 |
+-----+---------+--------------+------------+--------------+------------+-----------------+
Using multiprocessing with 4 parallel job(s)
Beginning integration job 0
Frames: 0 -> 6
Number of reflections
Partial: 1208
Full: 2094
In ice ring: 0
Integrate: 3302
Total: 3302
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
1 [1737]: *********************************************************************
2 [1021]: ****************************************
3 [1009]: ****************************************
4 [1025]: ****************************************
5 [599 ]: ***********************
6 [80 ]: ***
Integrated 1031 (sum) + 241 (prf) / 1197 reflections on image 0
Integrated 439 (sum) + 421 (prf) / 517 reflections on image 1
Integrated 418 (sum) + 411 (prf) / 487 reflections on image 2
Integrated 431 (sum) + 427 (prf) / 502 reflections on image 3
Integrated 438 (sum) + 431 (prf) / 519 reflections on image 4
Integrated 73 (sum) + 73 (prf) / 80 reflections on image 5
Beginning integration job 1
Frames: 3 -> 9
Number of reflections
Partial: 52
Full: 1575
In ice ring: 0
Integrate: 1627
Total: 1627
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
4 [21 ]: *
5 [451 ]: ****************************
6 [999 ]: ****************************************************************
7 [1075]: *********************************************************************
8 [639 ]: *****************************************
9 [103 ]: ******
Integrated 403 (sum) + 396 (prf) / 462 reflections on image 5
Integrated 451 (sum) + 448 (prf) / 526 reflections on image 6
Integrated 444 (sum) + 442 (prf) / 536 reflections on image 7
Integrated 85 (sum) + 83 (prf) / 103 reflections on image 8
Beginning integration job 2
Frames: 6 -> 12
Number of reflections
Partial: 50
Full: 1463
In ice ring: 0
Integrate: 1513
Total: 1513
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
7 [18 ]: *
8 [460]: ********************************
9 [944]: ******************************************************************
10 [983]: *********************************************************************
11 [552]: **************************************
12 [77 ]: *****
Integrated 394 (sum) + 385 (prf) / 459 reflections on image 8
Integrated 429 (sum) + 421 (prf) / 502 reflections on image 9
Integrated 404 (sum) + 400 (prf) / 475 reflections on image 10
Integrated 65 (sum) + 64 (prf) / 77 reflections on image 11
Beginning integration job 3
Frames: 9 -> 15
Number of reflections
Partial: 56
Full: 1493
In ice ring: 0
Integrate: 1549
Total: 1549
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
10 [9 ]:
11 [411]: ****************************
12 [947]: *****************************************************************
13 [997]: *********************************************************************
14 [575]: ***************************************
15 [82 ]: *****
Integrated 409 (sum) + 398 (prf) / 470 reflections on image 11
Integrated 430 (sum) + 423 (prf) / 504 reflections on image 12
Integrated 410 (sum) + 409 (prf) / 493 reflections on image 13
Integrated 70 (sum) + 69 (prf) / 82 reflections on image 14
Beginning integration job 4
Frames: 12 -> 18
Number of reflections
Partial: 49
Full: 1501
In ice ring: 0
Integrate: 1550
Total: 1550
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
13 [12 ]:
14 [446]: ******************************
15 [967]: ******************************************************************
16 [998]: *********************************************************************
17 [586]: ****************************************
18 [77 ]: *****
Integrated 411 (sum) + 401 (prf) / 480 reflections on image 14
Integrated 414 (sum) + 412 (prf) / 484 reflections on image 15
Integrated 438 (sum) + 437 (prf) / 509 reflections on image 16
Integrated 61 (sum) + 60 (prf) / 77 reflections on image 17
Beginning integration job 5
Frames: 15 -> 21
Number of reflections
Partial: 56
Full: 1548
In ice ring: 0
Integrate: 1604
Total: 1604
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
16 [11 ]:
17 [453 ]: *****************************
18 [984 ]: ***************************************************************
19 [1061]: ********************************************************************
20 [617 ]: ***************************************
21 [77 ]: ****
Integrated 396 (sum) + 386 (prf) / 460 reflections on image 17
Integrated 437 (sum) + 429 (prf) / 527 reflections on image 18
Integrated 455 (sum) + 451 (prf) / 540 reflections on image 19
Integrated 67 (sum) + 66 (prf) / 77 reflections on image 20
Beginning integration job 6
Frames: 18 -> 24
Number of reflections
Partial: 63
Full: 1498
In ice ring: 0
Integrate: 1561
Total: 1561
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
19 [16 ]: *
20 [416 ]: ***************************
21 [928 ]: ************************************************************
22 [1043]: ********************************************************************
23 [608 ]: ***************************************
24 [95 ]: ******
Integrated 387 (sum) + 381 (prf) / 448 reflections on image 20
Integrated 427 (sum) + 420 (prf) / 505 reflections on image 21
Integrated 443 (sum) + 439 (prf) / 513 reflections on image 22
Integrated 84 (sum) + 82 (prf) / 95 reflections on image 23
Beginning integration job 7
Frames: 21 -> 27
Number of reflections
Partial: 84
Full: 1494
In ice ring: 0
Integrate: 1578
Total: 1578
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
22 [16 ]: *
23 [432 ]: ****************************
24 [974 ]: ***************************************************************
25 [1035]: ********************************************************************
26 [611 ]: ****************************************
27 [111 ]: *******
Integrated 390 (sum) + 378 (prf) / 465 reflections on image 23
Integrated 423 (sum) + 415 (prf) / 502 reflections on image 24
Integrated 434 (sum) + 428 (prf) / 500 reflections on image 25
Integrated 99 (sum) + 98 (prf) / 111 reflections on image 26
Beginning integration job 8
Frames: 24 -> 30
Number of reflections
Partial: 63
Full: 1517
In ice ring: 0
Integrate: 1580
Total: 1580
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
25 [21 ]: *
26 [432 ]: ****************************
27 [964 ]: **************************************************************
28 [1045]: ********************************************************************
29 [609 ]: ***************************************
30 [74 ]: ****
Integrated 399 (sum) + 394 (prf) / 458 reflections on image 26
Integrated 450 (sum) + 442 (prf) / 513 reflections on image 27
Integrated 461 (sum) + 457 (prf) / 535 reflections on image 28
Integrated 66 (sum) + 64 (prf) / 74 reflections on image 29
Beginning integration job 9
Frames: 27 -> 33
Number of reflections
Partial: 60
Full: 1525
In ice ring: 0
Integrate: 1585
Total: 1585
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
28 [13 ]:
29 [427 ]: ****************************
30 [958 ]: **************************************************************
31 [1037]: ********************************************************************
32 [593 ]: **************************************
33 [99 ]: ******
Integrated 393 (sum) + 385 (prf) / 461 reflections on image 29
Integrated 449 (sum) + 441 (prf) / 531 reflections on image 30
Integrated 413 (sum) + 409 (prf) / 494 reflections on image 31
Integrated 84 (sum) + 84 (prf) / 99 reflections on image 32
Beginning integration job 10
Frames: 30 -> 36
Number of reflections
Partial: 51
Full: 1509
In ice ring: 0
Integrate: 1560
Total: 1560
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
31 [12 ]:
32 [443 ]: *****************************
33 [953 ]: ***************************************************************
34 [1017]: ********************************************************************
35 [597 ]: ***************************************
36 [76 ]: *****
Integrated 382 (sum) + 378 (prf) / 449 reflections on image 32
Integrated 436 (sum) + 427 (prf) / 514 reflections on image 33
Integrated 448 (sum) + 438 (prf) / 521 reflections on image 34
Integrated 62 (sum) + 62 (prf) / 76 reflections on image 35
Beginning integration job 11
Frames: 33 -> 39
Number of reflections
Partial: 45
Full: 1507
In ice ring: 0
Integrate: 1552
Total: 1552
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
34 [20 ]: *
35 [426 ]: ***************************
36 [943 ]: *************************************************************
37 [1036]: ********************************************************************
38 [574 ]: *************************************
39 [87 ]: *****
Integrated 370 (sum) + 366 (prf) / 432 reflections on image 35
Integrated 465 (sum) + 459 (prf) / 546 reflections on image 36
Integrated 401 (sum) + 397 (prf) / 487 reflections on image 37
Integrated 73 (sum) + 73 (prf) / 87 reflections on image 38
Beginning integration job 12
Frames: 36 -> 42
Number of reflections
Partial: 47
Full: 1475
In ice ring: 0
Integrate: 1522
Total: 1522
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
37 [12 ]:
38 [392 ]: *************************
39 [916 ]: ***********************************************************
40 [1044]: ********************************************************************
41 [576 ]: *************************************
42 [85 ]: *****
Integrated 358 (sum) + 351 (prf) / 420 reflections on image 38
Integrated 440 (sum) + 433 (prf) / 526 reflections on image 39
Integrated 433 (sum) + 428 (prf) / 491 reflections on image 40
Integrated 66 (sum) + 66 (prf) / 85 reflections on image 41
Beginning integration job 13
Frames: 39 -> 45
Number of reflections
Partial: 37
Full: 1501
In ice ring: 0
Integrate: 1538
Total: 1538
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
40 [12 ]:
41 [443 ]: *****************************
42 [962 ]: ****************************************************************
43 [1012]: ********************************************************************
44 [548 ]: ************************************
45 [71 ]: ****
Integrated 382 (sum) + 378 (prf) / 450 reflections on image 41
Integrated 461 (sum) + 454 (prf) / 540 reflections on image 42
Integrated 412 (sum) + 410 (prf) / 477 reflections on image 43
Integrated 60 (sum) + 58 (prf) / 71 reflections on image 44
Beginning integration job 14
Frames: 42 -> 48
Number of reflections
Partial: 40
Full: 1524
In ice ring: 0
Integrate: 1564
Total: 1564
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
43 [19 ]: *
44 [463 ]: *******************************
45 [964 ]: *****************************************************************
46 [1003]: ********************************************************************
47 [603 ]: ****************************************
48 [79 ]: *****
Integrated 407 (sum) + 399 (prf) / 484 reflections on image 44
Integrated 405 (sum) + 395 (prf) / 477 reflections on image 45
Integrated 456 (sum) + 451 (prf) / 524 reflections on image 46
Integrated 67 (sum) + 66 (prf) / 79 reflections on image 47
Beginning integration job 15
Frames: 45 -> 51
Number of reflections
Partial: 35
Full: 1514
In ice ring: 0
Integrate: 1549
Total: 1549
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
46 [15 ]:
47 [447 ]: *****************************
48 [965 ]: ****************************************************************
49 [1025]: ********************************************************************
50 [584 ]: **************************************
51 [87 ]: *****
Integrated 389 (sum) + 380 (prf) / 456 reflections on image 47
Integrated 434 (sum) + 429 (prf) / 509 reflections on image 48
Integrated 429 (sum) + 426 (prf) / 497 reflections on image 49
Integrated 74 (sum) + 74 (prf) / 87 reflections on image 50
Beginning integration job 16
Frames: 48 -> 54
Number of reflections
Partial: 42
Full: 1530
In ice ring: 0
Integrate: 1572
Total: 1572
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
49 [16 ]: *
50 [454 ]: ******************************
51 [961 ]: *****************************************************************
52 [1002]: ********************************************************************
53 [618 ]: *****************************************
54 [78 ]: *****
Integrated 397 (sum) + 392 (prf) / 473 reflections on image 50
Integrated 416 (sum) + 411 (prf) / 481 reflections on image 51
Integrated 456 (sum) + 452 (prf) / 540 reflections on image 52
Integrated 69 (sum) + 68 (prf) / 78 reflections on image 53
Beginning integration job 17
Frames: 51 -> 57
Number of reflections
Partial: 30
Full: 1506
In ice ring: 0
Integrate: 1536
Total: 1536
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
52 [18 ]: *
53 [435 ]: ****************************
54 [942 ]: *************************************************************
55 [1034]: ********************************************************************
56 [578 ]: **************************************
57 [72 ]: ****
Integrated 363 (sum) + 360 (prf) / 428 reflections on image 53
Integrated 459 (sum) + 446 (prf) / 530 reflections on image 54
Integrated 427 (sum) + 421 (prf) / 506 reflections on image 55
Integrated 64 (sum) + 63 (prf) / 72 reflections on image 56
Beginning integration job 18
Frames: 54 -> 60
Number of reflections
Partial: 26
Full: 1526
In ice ring: 0
Integrate: 1552
Total: 1552
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
55 [22 ]: *
56 [454 ]: ******************************
57 [968 ]: *****************************************************************
58 [1009]: ********************************************************************
59 [580 ]: ***************************************
60 [77 ]: *****
Integrated 381 (sum) + 374 (prf) / 463 reflections on image 56
Integrated 440 (sum) + 432 (prf) / 509 reflections on image 57
Integrated 444 (sum) + 441 (prf) / 503 reflections on image 58
Integrated 63 (sum) + 62 (prf) / 77 reflections on image 59
Beginning integration job 19
Frames: 57 -> 63
Number of reflections
Partial: 31
Full: 1513
In ice ring: 0
Integrate: 1544
Total: 1544
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
58 [20 ]: *
59 [445]: ******************************
60 [950]: *****************************************************************
61 [999]: *********************************************************************
62 [591]: ****************************************
63 [69 ]: ****
Integrated 378 (sum) + 374 (prf) / 463 reflections on image 59
Integrated 407 (sum) + 401 (prf) / 490 reflections on image 60
Integrated 459 (sum) + 453 (prf) / 522 reflections on image 61
Integrated 55 (sum) + 55 (prf) / 69 reflections on image 62
Beginning integration job 20
Frames: 60 -> 66
Number of reflections
Partial: 41
Full: 1503
In ice ring: 0
Integrate: 1544
Total: 1544
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
61 [18 ]: *
62 [431 ]: ****************************
63 [955 ]: ***************************************************************
64 [1023]: ********************************************************************
65 [582 ]: **************************************
66 [77 ]: *****
Integrated 386 (sum) + 375 (prf) / 442 reflections on image 62
Integrated 427 (sum) + 422 (prf) / 520 reflections on image 63
Integrated 437 (sum) + 430 (prf) / 505 reflections on image 64
Integrated 70 (sum) + 68 (prf) / 77 reflections on image 65
Beginning integration job 21
Frames: 63 -> 69
Number of reflections
Partial: 54
Full: 1513
In ice ring: 0
Integrate: 1567
Total: 1567
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
64 [15 ]: *
65 [449 ]: ******************************
66 [952 ]: ****************************************************************
67 [1011]: ********************************************************************
68 [609 ]: ****************************************
69 [82 ]: *****
Integrated 398 (sum) + 391 (prf) / 469 reflections on image 65
Integrated 414 (sum) + 408 (prf) / 489 reflections on image 66
Integrated 461 (sum) + 455 (prf) / 527 reflections on image 67
Integrated 72 (sum) + 71 (prf) / 82 reflections on image 68
Beginning integration job 22
Frames: 66 -> 72
Number of reflections
Partial: 51
Full: 1507
In ice ring: 0
Integrate: 1558
Total: 1558
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
67 [10 ]:
68 [430 ]: ****************************
69 [922 ]: *************************************************************
70 [1025]: ********************************************************************
71 [594 ]: ***************************************
72 [88 ]: *****
Integrated 385 (sum) + 382 (prf) / 462 reflections on image 68
Integrated 423 (sum) + 417 (prf) / 502 reflections on image 69
Integrated 433 (sum) + 426 (prf) / 506 reflections on image 70
Integrated 80 (sum) + 79 (prf) / 88 reflections on image 71
Beginning integration job 23
Frames: 69 -> 75
Number of reflections
Partial: 73
Full: 1513
In ice ring: 0
Integrate: 1586
Total: 1586
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
70 [22 ]: *
71 [463 ]: ******************************
72 [950 ]: **************************************************************
73 [1040]: ********************************************************************
74 [621 ]: ****************************************
75 [101 ]: ******
Integrated 408 (sum) + 396 (prf) / 470 reflections on image 71
Integrated 430 (sum) + 424 (prf) / 495 reflections on image 72
Integrated 432 (sum) + 427 (prf) / 520 reflections on image 73
Integrated 82 (sum) + 80 (prf) / 101 reflections on image 74
Beginning integration job 24
Frames: 72 -> 78
Number of reflections
Partial: 70
Full: 1534
In ice ring: 0
Integrate: 1604
Total: 1604
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
73 [17 ]: *
74 [446 ]: ****************************
75 [963 ]: *************************************************************
76 [1058]: ********************************************************************
77 [637 ]: ****************************************
78 [101 ]: ******
Integrated 402 (sum) + 397 (prf) / 464 reflections on image 74
Integrated 437 (sum) + 430 (prf) / 503 reflections on image 75
Integrated 448 (sum) + 442 (prf) / 536 reflections on image 76
Integrated 83 (sum) + 80 (prf) / 101 reflections on image 77
Beginning integration job 25
Frames: 75 -> 81
Number of reflections
Partial: 66
Full: 1487
In ice ring: 0
Integrate: 1553
Total: 1553
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
76 [10 ]:
77 [422 ]: ****************************
78 [928 ]: **************************************************************
79 [1006]: ********************************************************************
80 [590 ]: ***************************************
81 [80 ]: *****
Integrated 379 (sum) + 370 (prf) / 458 reflections on image 77
Integrated 436 (sum) + 428 (prf) / 505 reflections on image 78
Integrated 435 (sum) + 432 (prf) / 510 reflections on image 79
Integrated 66 (sum) + 65 (prf) / 80 reflections on image 80
Beginning integration job 26
Frames: 78 -> 84
Number of reflections
Partial: 57
Full: 1507
In ice ring: 0
Integrate: 1564
Total: 1564
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
79 [12 ]:
80 [444 ]: *****************************
81 [945 ]: ***************************************************************
82 [1010]: ********************************************************************
83 [583 ]: ***************************************
84 [81 ]: *****
Integrated 387 (sum) + 377 (prf) / 466 reflections on image 80
Integrated 436 (sum) + 424 (prf) / 515 reflections on image 81
Integrated 423 (sum) + 418 (prf) / 502 reflections on image 82
Integrated 65 (sum) + 62 (prf) / 81 reflections on image 83
Beginning integration job 27
Frames: 81 -> 87
Number of reflections
Partial: 60
Full: 1480
In ice ring: 0
Integrate: 1540
Total: 1540
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
82 [5 ]:
83 [430 ]: *****************************
84 [929 ]: ***************************************************************
85 [1002]: ********************************************************************
86 [590 ]: ****************************************
87 [82 ]: *****
Integrated 395 (sum) + 387 (prf) / 456 reflections on image 83
Integrated 421 (sum) + 415 (prf) / 494 reflections on image 84
Integrated 432 (sum) + 427 (prf) / 508 reflections on image 85
Integrated 63 (sum) + 62 (prf) / 82 reflections on image 86
Beginning integration job 28
Frames: 84 -> 90
Number of reflections
Partial: 60
Full: 1498
In ice ring: 0
Integrate: 1558
Total: 1558
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
85 [16 ]: *
86 [437 ]: ****************************
87 [930 ]: ************************************************************
88 [1037]: ********************************************************************
89 [607 ]: ***************************************
90 [74 ]: ****
Integrated 364 (sum) + 355 (prf) / 437 reflections on image 86
Integrated 437 (sum) + 428 (prf) / 514 reflections on image 87
Integrated 457 (sum) + 449 (prf) / 533 reflections on image 88
Integrated 61 (sum) + 61 (prf) / 74 reflections on image 89
Beginning integration job 29
Frames: 87 -> 93
Number of reflections
Partial: 53
Full: 1576
In ice ring: 0
Integrate: 1629
Total: 1629
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
88 [17 ]: *
89 [466 ]: ****************************
90 [1013]: **************************************************************
91 [1097]: ********************************************************************
92 [630 ]: ***************************************
93 [90 ]: *****
Integrated 384 (sum) + 377 (prf) / 453 reflections on image 89
Integrated 454 (sum) + 450 (prf) / 546 reflections on image 90
Integrated 476 (sum) + 472 (prf) / 540 reflections on image 91
Integrated 74 (sum) + 72 (prf) / 90 reflections on image 92
Beginning integration job 30
Frames: 90 -> 96
Number of reflections
Partial: 51
Full: 1486
In ice ring: 0
Integrate: 1537
Total: 1537
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
91 [19 ]: *
92 [419 ]: ***************************
93 [942 ]: **************************************************************
94 [1021]: ********************************************************************
95 [603 ]: ****************************************
96 [88 ]: *****
Integrated 382 (sum) + 372 (prf) / 442 reflections on image 92
Integrated 426 (sum) + 422 (prf) / 492 reflections on image 93
Integrated 437 (sum) + 437 (prf) / 515 reflections on image 94
Integrated 80 (sum) + 80 (prf) / 88 reflections on image 95
Beginning integration job 31
Frames: 93 -> 99
Number of reflections
Partial: 69
Full: 1503
In ice ring: 0
Integrate: 1572
Total: 1572
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
94 [16 ]: *
95 [456]: *******************************
96 [929]: *****************************************************************
97 [986]: *********************************************************************
98 [617]: *******************************************
99 [76 ]: *****
Integrated 401 (sum) + 389 (prf) / 492 reflections on image 95
Integrated 403 (sum) + 395 (prf) / 463 reflections on image 96
Integrated 465 (sum) + 461 (prf) / 541 reflections on image 97
Integrated 68 (sum) + 68 (prf) / 76 reflections on image 98
Beginning integration job 32
Frames: 96 -> 102
Number of reflections
Partial: 66
Full: 1432
In ice ring: 0
Integrate: 1498
Total: 1498
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
97 [5 ]:
98 [431]: ******************************
99 [903]: ****************************************************************
100 [946]: ********************************************************************
101 [557]: ****************************************
102 [79 ]: *****
Integrated 402 (sum) + 396 (prf) / 467 reflections on image 98
Integrated 394 (sum) + 386 (prf) / 474 reflections on image 99
Integrated 410 (sum) + 405 (prf) / 478 reflections on image 100
Integrated 72 (sum) + 71 (prf) / 79 reflections on image 101
Beginning integration job 33
Frames: 99 -> 105
Number of reflections
Partial: 44
Full: 1573
In ice ring: 0
Integrate: 1617
Total: 1617
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
100 [17 ]: *
101 [464 ]: ****************************
102 [1018]: ***************************************************************
103 [1077]: *******************************************************************
104 [622 ]: **************************************
105 [76 ]: ****
Integrated 398 (sum) + 391 (prf) / 468 reflections on image 101
Integrated 448 (sum) + 438 (prf) / 527 reflections on image 102
Integrated 471 (sum) + 463 (prf) / 546 reflections on image 103
Integrated 70 (sum) + 69 (prf) / 76 reflections on image 104
Beginning integration job 34
Frames: 102 -> 108
Number of reflections
Partial: 50
Full: 1525
In ice ring: 0
Integrate: 1575
Total: 1575
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
103 [13 ]:
104 [455 ]: *****************************
105 [982 ]: ****************************************************************
106 [1025]: *******************************************************************
107 [583 ]: **************************************
108 [81 ]: *****
Integrated 401 (sum) + 394 (prf) / 468 reflections on image 104
Integrated 451 (sum) + 441 (prf) / 524 reflections on image 105
Integrated 432 (sum) + 425 (prf) / 502 reflections on image 106
Integrated 69 (sum) + 68 (prf) / 81 reflections on image 107
Beginning integration job 35
Frames: 105 -> 111
Number of reflections
Partial: 50
Full: 1512
In ice ring: 0
Integrate: 1562
Total: 1562
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
106 [19 ]: *
107 [436 ]: ****************************
108 [945 ]: *************************************************************
109 [1037]: *******************************************************************
110 [610 ]: ***************************************
111 [81 ]: *****
Integrated 383 (sum) + 377 (prf) / 458 reflections on image 107
Integrated 427 (sum) + 422 (prf) / 494 reflections on image 108
Integrated 440 (sum) + 432 (prf) / 529 reflections on image 109
Integrated 70 (sum) + 68 (prf) / 81 reflections on image 110
Beginning integration job 36
Frames: 108 -> 114
Number of reflections
Partial: 57
Full: 1484
In ice ring: 0
Integrate: 1541
Total: 1541
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
109 [15 ]:
110 [399 ]: *************************
111 [865 ]: ********************************************************
112 [1031]: *******************************************************************
113 [666 ]: *******************************************
114 [87 ]: *****
Integrated 368 (sum) + 364 (prf) / 427 reflections on image 110
Integrated 376 (sum) + 365 (prf) / 448 reflections on image 111
Integrated 491 (sum) + 487 (prf) / 579 reflections on image 112
Integrated 74 (sum) + 72 (prf) / 87 reflections on image 113
Beginning integration job 37
Frames: 111 -> 117
Number of reflections
Partial: 55
Full: 1533
In ice ring: 0
Integrate: 1588
Total: 1588
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
112 [18 ]: *
113 [467 ]: *****************************
114 [965 ]: *************************************************************
115 [1050]: *******************************************************************
116 [622 ]: ***************************************
117 [87 ]: *****
Integrated 397 (sum) + 387 (prf) / 461 reflections on image 113
Integrated 436 (sum) + 430 (prf) / 505 reflections on image 114
Integrated 443 (sum) + 438 (prf) / 535 reflections on image 115
Integrated 62 (sum) + 60 (prf) / 87 reflections on image 116
Beginning integration job 38
Frames: 114 -> 120
Number of reflections
Partial: 49
Full: 1511
In ice ring: 0
Integrate: 1560
Total: 1560
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
115 [17 ]: *
116 [446 ]: *****************************
117 [938 ]: *************************************************************
118 [1029]: *******************************************************************
119 [600 ]: ***************************************
120 [75 ]: ****
Integrated 378 (sum) + 375 (prf) / 449 reflections on image 116
Integrated 431 (sum) + 425 (prf) / 511 reflections on image 117
Integrated 460 (sum) + 454 (prf) / 525 reflections on image 118
Integrated 63 (sum) + 62 (prf) / 75 reflections on image 119
Beginning integration job 39
Frames: 117 -> 123
Number of reflections
Partial: 53
Full: 1464
In ice ring: 0
Integrate: 1517
Total: 1517
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
118 [13 ]:
119 [419 ]: ****************************
120 [914 ]: *************************************************************
121 [1000]: *******************************************************************
122 [602 ]: ****************************************
123 [91 ]: ******
Integrated 377 (sum) + 369 (prf) / 442 reflections on image 119
Integrated 400 (sum) + 396 (prf) / 473 reflections on image 120
Integrated 432 (sum) + 424 (prf) / 511 reflections on image 121
Integrated 75 (sum) + 74 (prf) / 91 reflections on image 122
Beginning integration job 40
Frames: 120 -> 126
Number of reflections
Partial: 51
Full: 1553
In ice ring: 0
Integrate: 1604
Total: 1604
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
121 [16 ]: *
122 [471 ]: ******************************
123 [1004]: ****************************************************************
124 [1043]: *******************************************************************
125 [597 ]: **************************************
126 [94 ]: ******
Integrated 422 (sum) + 417 (prf) / 487 reflections on image 122
Integrated 452 (sum) + 444 (prf) / 520 reflections on image 123
Integrated 426 (sum) + 424 (prf) / 503 reflections on image 124
Integrated 81 (sum) + 79 (prf) / 94 reflections on image 125
Beginning integration job 41
Frames: 123 -> 129
Number of reflections
Partial: 39
Full: 1489
In ice ring: 0
Integrate: 1528
Total: 1528
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
124 [14 ]:
125 [442]: ******************************
126 [953]: *****************************************************************
127 [985]: ********************************************************************
128 [563]: **************************************
129 [80 ]: *****
Integrated 398 (sum) + 390 (prf) / 459 reflections on image 125
Integrated 441 (sum) + 433 (prf) / 506 reflections on image 126
Integrated 405 (sum) + 400 (prf) / 483 reflections on image 127
Integrated 65 (sum) + 63 (prf) / 80 reflections on image 128
Beginning integration job 42
Frames: 126 -> 132
Number of reflections
Partial: 47
Full: 1504
In ice ring: 0
Integrate: 1551
Total: 1551
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
127 [17 ]: *
128 [431 ]: ****************************
129 [940 ]: *************************************************************
130 [1025]: *******************************************************************
131 [583 ]: **************************************
132 [80 ]: *****
Integrated 386 (sum) + 377 (prf) / 451 reflections on image 128
Integrated 436 (sum) + 429 (prf) / 517 reflections on image 129
Integrated 415 (sum) + 410 (prf) / 503 reflections on image 130
Integrated 72 (sum) + 71 (prf) / 80 reflections on image 131
Beginning integration job 43
Frames: 129 -> 135
Number of reflections
Partial: 54
Full: 1540
In ice ring: 0
Integrate: 1594
Total: 1594
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
130 [15 ]:
131 [474 ]: *******************************
132 [973 ]: ***************************************************************
133 [1022]: *******************************************************************
134 [607 ]: ***************************************
135 [95 ]: ******
Integrated 416 (sum) + 409 (prf) / 484 reflections on image 131
Integrated 427 (sum) + 422 (prf) / 503 reflections on image 132
Integrated 433 (sum) + 427 (prf) / 512 reflections on image 133
Integrated 78 (sum) + 78 (prf) / 95 reflections on image 134
Beginning integration job 44
Frames: 132 -> 138
Number of reflections
Partial: 61
Full: 1496
In ice ring: 0
Integrate: 1557
Total: 1557
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
133 [12 ]:
134 [451 ]: *****************************
135 [935 ]: *************************************************************
136 [1011]: *******************************************************************
137 [598 ]: ***************************************
138 [89 ]: *****
Integrated 387 (sum) + 379 (prf) / 457 reflections on image 134
Integrated 426 (sum) + 417 (prf) / 502 reflections on image 135
Integrated 435 (sum) + 426 (prf) / 509 reflections on image 136
Integrated 77 (sum) + 77 (prf) / 89 reflections on image 137
Beginning integration job 45
Frames: 135 -> 141
Number of reflections
Partial: 48
Full: 1534
In ice ring: 0
Integrate: 1582
Total: 1582
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
136 [17 ]: *
137 [452 ]: ****************************
138 [946 ]: ************************************************************
139 [1050]: *******************************************************************
140 [633 ]: ****************************************
141 [79 ]: *****
Integrated 399 (sum) + 393 (prf) / 457 reflections on image 137
Integrated 419 (sum) + 409 (prf) / 492 reflections on image 138
Integrated 475 (sum) + 466 (prf) / 554 reflections on image 139
Integrated 66 (sum) + 66 (prf) / 79 reflections on image 140
Beginning integration job 46
Frames: 138 -> 144
Number of reflections
Partial: 38
Full: 1499
In ice ring: 0
Integrate: 1537
Total: 1537
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
139 [10 ]:
140 [438]: *****************************
141 [928]: ***************************************************************
142 [999]: ********************************************************************
143 [575]: ***************************************
144 [73 ]: ****
Integrated 379 (sum) + 368 (prf) / 453 reflections on image 140
Integrated 440 (sum) + 427 (prf) / 509 reflections on image 141
Integrated 420 (sum) + 417 (prf) / 502 reflections on image 142
Integrated 64 (sum) + 64 (prf) / 73 reflections on image 143
Beginning integration job 47
Frames: 141 -> 147
Number of reflections
Partial: 45
Full: 1504
In ice ring: 0
Integrate: 1549
Total: 1549
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
142 [14 ]:
143 [423 ]: ***************************
144 [937 ]: ************************************************************
145 [1046]: *******************************************************************
146 [593 ]: *************************************
147 [86 ]: *****
Integrated 379 (sum) + 371 (prf) / 440 reflections on image 143
Integrated 420 (sum) + 412 (prf) / 516 reflections on image 144
Integrated 435 (sum) + 432 (prf) / 507 reflections on image 145
Integrated 78 (sum) + 77 (prf) / 86 reflections on image 146
Beginning integration job 48
Frames: 144 -> 150
Number of reflections
Partial: 60
Full: 1526
In ice ring: 0
Integrate: 1586
Total: 1586
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
145 [14 ]:
146 [441 ]: ****************************
147 [971 ]: **************************************************************
148 [1042]: *******************************************************************
149 [595 ]: **************************************
150 [88 ]: *****
Integrated 397 (sum) + 387 (prf) / 466 reflections on image 146
Integrated 445 (sum) + 440 (prf) / 525 reflections on image 147
Integrated 442 (sum) + 433 (prf) / 507 reflections on image 148
Integrated 75 (sum) + 74 (prf) / 88 reflections on image 149
Beginning integration job 49
Frames: 147 -> 153
Number of reflections
Partial: 34
Full: 1509
In ice ring: 0
Integrate: 1543
Total: 1543
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
148 [17 ]: *
149 [434 ]: ****************************
150 [928 ]: ***********************************************************
151 [1037]: *******************************************************************
152 [593 ]: **************************************
153 [85 ]: *****
Integrated 367 (sum) + 358 (prf) / 434 reflections on image 149
Integrated 445 (sum) + 442 (prf) / 516 reflections on image 150
Integrated 443 (sum) + 435 (prf) / 508 reflections on image 151
Integrated 76 (sum) + 76 (prf) / 85 reflections on image 152
Beginning integration job 50
Frames: 150 -> 156
Number of reflections
Partial: 46
Full: 1510
In ice ring: 0
Integrate: 1556
Total: 1556
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
151 [16 ]: *
152 [445 ]: *****************************
153 [956 ]: **************************************************************
154 [1026]: *******************************************************************
155 [597 ]: **************************************
156 [81 ]: *****
Integrated 380 (sum) + 373 (prf) / 448 reflections on image 152
Integrated 438 (sum) + 434 (prf) / 511 reflections on image 153
Integrated 441 (sum) + 437 (prf) / 516 reflections on image 154
Integrated 72 (sum) + 69 (prf) / 81 reflections on image 155
Beginning integration job 51
Frames: 153 -> 159
Number of reflections
Partial: 50
Full: 1502
In ice ring: 0
Integrate: 1552
Total: 1552
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
154 [20 ]: *
155 [439 ]: ****************************
156 [945 ]: *************************************************************
157 [1028]: *******************************************************************
158 [598 ]: **************************************
159 [82 ]: *****
Integrated 390 (sum) + 384 (prf) / 444 reflections on image 155
Integrated 418 (sum) + 415 (prf) / 510 reflections on image 156
Integrated 437 (sum) + 435 (prf) / 516 reflections on image 157
Integrated 71 (sum) + 68 (prf) / 82 reflections on image 158
Beginning integration job 52
Frames: 156 -> 162
Number of reflections
Partial: 57
Full: 1539
In ice ring: 0
Integrate: 1596
Total: 1596
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
157 [12 ]:
158 [455 ]: ****************************
159 [973 ]: *************************************************************
160 [1054]: *******************************************************************
161 [620 ]: ***************************************
162 [88 ]: *****
Integrated 397 (sum) + 387 (prf) / 461 reflections on image 158
Integrated 431 (sum) + 422 (prf) / 515 reflections on image 159
Integrated 447 (sum) + 441 (prf) / 532 reflections on image 160
Integrated 69 (sum) + 68 (prf) / 88 reflections on image 161
Beginning integration job 53
Frames: 159 -> 165
Number of reflections
Partial: 51
Full: 1474
In ice ring: 0
Integrate: 1525
Total: 1525
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
160 [10 ]:
161 [411 ]: ***************************
162 [912 ]: ***********************************************************
163 [1019]: *******************************************************************
164 [593 ]: **************************************
165 [84 ]: *****
Integrated 357 (sum) + 349 (prf) / 430 reflections on image 161
Integrated 427 (sum) + 423 (prf) / 502 reflections on image 162
Integrated 433 (sum) + 427 (prf) / 509 reflections on image 163
Integrated 72 (sum) + 68 (prf) / 84 reflections on image 164
Beginning integration job 54
Frames: 162 -> 168
Number of reflections
Partial: 47
Full: 1515
In ice ring: 0
Integrate: 1562
Total: 1562
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
163 [17 ]: *
164 [457 ]: *****************************
165 [978 ]: ***************************************************************
166 [1040]: *******************************************************************
167 [572 ]: ************************************
168 [65 ]: ****
Integrated 401 (sum) + 394 (prf) / 458 reflections on image 164
Integrated 454 (sum) + 441 (prf) / 532 reflections on image 165
Integrated 437 (sum) + 433 (prf) / 507 reflections on image 166
Integrated 55 (sum) + 54 (prf) / 65 reflections on image 167
Beginning integration job 55
Frames: 165 -> 171
Number of reflections
Partial: 50
Full: 1506
In ice ring: 0
Integrate: 1556
Total: 1556
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
166 [10 ]:
167 [459 ]: ******************************
168 [978 ]: ****************************************************************
169 [1016]: *******************************************************************
170 [587 ]: **************************************
171 [85 ]: *****
Integrated 406 (sum) + 398 (prf) / 470 reflections on image 167
Integrated 421 (sum) + 416 (prf) / 499 reflections on image 168
Integrated 432 (sum) + 428 (prf) / 502 reflections on image 169
Integrated 74 (sum) + 73 (prf) / 85 reflections on image 170
Beginning integration job 56
Frames: 168 -> 174
Number of reflections
Partial: 58
Full: 1517
In ice ring: 0
Integrate: 1575
Total: 1575
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
169 [17 ]: *
170 [444 ]: ****************************
171 [968 ]: *************************************************************
172 [1047]: *******************************************************************
173 [584 ]: *************************************
174 [96 ]: ******
Integrated 377 (sum) + 373 (prf) / 454 reflections on image 170
Integrated 462 (sum) + 452 (prf) / 537 reflections on image 171
Integrated 420 (sum) + 418 (prf) / 488 reflections on image 172
Integrated 80 (sum) + 80 (prf) / 96 reflections on image 173
Beginning integration job 57
Frames: 171 -> 177
Number of reflections
Partial: 53
Full: 1516
In ice ring: 0
Integrate: 1569
Total: 1569
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
172 [17 ]: *
173 [454 ]: *****************************
174 [944 ]: *************************************************************
175 [1027]: *******************************************************************
176 [601 ]: ***************************************
177 [72 ]: ****
Integrated 398 (sum) + 389 (prf) / 471 reflections on image 173
Integrated 424 (sum) + 412 (prf) / 497 reflections on image 174
Integrated 448 (sum) + 440 (prf) / 529 reflections on image 175
Integrated 66 (sum) + 66 (prf) / 72 reflections on image 176
Beginning integration job 58
Frames: 174 -> 180
Number of reflections
Partial: 40
Full: 1499
In ice ring: 0
Integrate: 1539
Total: 1539
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
175 [12 ]:
176 [412 ]: ***************************
177 [961 ]: ***************************************************************
178 [1021]: *******************************************************************
179 [585 ]: **************************************
180 [83 ]: *****
Integrated 378 (sum) + 375 (prf) / 440 reflections on image 176
Integrated 434 (sum) + 428 (prf) / 514 reflections on image 177
Integrated 432 (sum) + 424 (prf) / 502 reflections on image 178
Integrated 70 (sum) + 70 (prf) / 83 reflections on image 179
Beginning integration job 59
Frames: 177 -> 183
Number of reflections
Partial: 46
Full: 1501
In ice ring: 0
Integrate: 1547
Total: 1547
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
178 [8 ]:
179 [454]: *******************************
180 [941]: *****************************************************************
181 [978]: ********************************************************************
182 [591]: *****************************************
183 [85 ]: *****
Integrated 418 (sum) + 415 (prf) / 487 reflections on image 179
Integrated 396 (sum) + 391 (prf) / 469 reflections on image 180
Integrated 422 (sum) + 419 (prf) / 506 reflections on image 181
Integrated 76 (sum) + 76 (prf) / 85 reflections on image 182
Beginning integration job 60
Frames: 180 -> 186
Number of reflections
Partial: 60
Full: 1514
In ice ring: 0
Integrate: 1574
Total: 1574
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
181 [21 ]: *
182 [461 ]: *****************************
183 [968 ]: **************************************************************
184 [1031]: *******************************************************************
185 [600 ]: **************************************
186 [82 ]: *****
Integrated 397 (sum) + 390 (prf) / 471 reflections on image 182
Integrated 436 (sum) + 428 (prf) / 503 reflections on image 183
Integrated 442 (sum) + 440 (prf) / 518 reflections on image 184
Integrated 63 (sum) + 62 (prf) / 82 reflections on image 185
Beginning integration job 61
Frames: 183 -> 189
Number of reflections
Partial: 49
Full: 1511
In ice ring: 0
Integrate: 1560
Total: 1560
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
184 [14 ]:
185 [452 ]: *****************************
186 [952 ]: *************************************************************
187 [1031]: *******************************************************************
188 [605 ]: ***************************************
189 [78 ]: *****
Integrated 376 (sum) + 369 (prf) / 454 reflections on image 185
Integrated 422 (sum) + 419 (prf) / 501 reflections on image 186
Integrated 452 (sum) + 449 (prf) / 527 reflections on image 187
Integrated 63 (sum) + 62 (prf) / 78 reflections on image 188
Beginning integration job 62
Frames: 186 -> 192
Number of reflections
Partial: 52
Full: 1492
In ice ring: 0
Integrate: 1544
Total: 1544
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
187 [12 ]:
188 [441 ]: ****************************
189 [955 ]: **************************************************************
190 [1024]: *******************************************************************
191 [571 ]: *************************************
192 [80 ]: *****
Integrated 390 (sum) + 381 (prf) / 450 reflections on image 188
Integrated 441 (sum) + 433 (prf) / 523 reflections on image 189
Integrated 420 (sum) + 417 (prf) / 491 reflections on image 190
Integrated 66 (sum) + 66 (prf) / 80 reflections on image 191
Beginning integration job 63
Frames: 189 -> 195
Number of reflections
Partial: 50
Full: 1527
In ice ring: 0
Integrate: 1577
Total: 1577
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
190 [28 ]: *
191 [461 ]: *****************************
192 [985 ]: **************************************************************
193 [1055]: *******************************************************************
194 [598 ]: *************************************
195 [96 ]: ******
Integrated 381 (sum) + 376 (prf) / 453 reflections on image 191
Integrated 447 (sum) + 441 (prf) / 526 reflections on image 192
Integrated 425 (sum) + 421 (prf) / 502 reflections on image 193
Integrated 81 (sum) + 79 (prf) / 96 reflections on image 194
Beginning integration job 64
Frames: 192 -> 198
Number of reflections
Partial: 41
Full: 1522
In ice ring: 0
Integrate: 1563
Total: 1563
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
193 [8 ]:
194 [449 ]: *****************************
195 [948 ]: ***************************************************************
196 [1006]: *******************************************************************
197 [593 ]: ***************************************
198 [70 ]: ****
Integrated 409 (sum) + 398 (prf) / 476 reflections on image 194
Integrated 429 (sum) + 419 (prf) / 494 reflections on image 195
Integrated 450 (sum) + 446 (prf) / 523 reflections on image 196
Integrated 61 (sum) + 61 (prf) / 70 reflections on image 197
Beginning integration job 65
Frames: 195 -> 201
Number of reflections
Partial: 50
Full: 1504
In ice ring: 0
Integrate: 1554
Total: 1554
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
196 [16 ]: *
197 [445 ]: *****************************
198 [961 ]: ***************************************************************
199 [1011]: *******************************************************************
200 [607 ]: ****************************************
201 [91 ]: ******
Integrated 399 (sum) + 388 (prf) / 471 reflections on image 197
Integrated 395 (sum) + 391 (prf) / 476 reflections on image 198
Integrated 447 (sum) + 444 (prf) / 516 reflections on image 199
Integrated 77 (sum) + 75 (prf) / 91 reflections on image 200
Beginning integration job 66
Frames: 198 -> 204
Number of reflections
Partial: 62
Full: 1505
In ice ring: 0
Integrate: 1567
Total: 1567
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
199 [15 ]:
200 [464 ]: ******************************
201 [944 ]: **************************************************************
202 [1012]: *******************************************************************
203 [599 ]: ***************************************
204 [86 ]: *****
Integrated 401 (sum) + 393 (prf) / 481 reflections on image 200
Integrated 420 (sum) + 417 (prf) / 487 reflections on image 201
Integrated 437 (sum) + 429 (prf) / 513 reflections on image 202
Integrated 70 (sum) + 70 (prf) / 86 reflections on image 203
Beginning integration job 67
Frames: 201 -> 207
Number of reflections
Partial: 55
Full: 1507
In ice ring: 0
Integrate: 1562
Total: 1562
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
202 [11 ]:
203 [451 ]: *****************************
204 [947 ]: *************************************************************
205 [1025]: *******************************************************************
206 [609 ]: ***************************************
207 [90 ]: *****
Integrated 397 (sum) + 391 (prf) / 462 reflections on image 203
Integrated 415 (sum) + 408 (prf) / 491 reflections on image 204
Integrated 446 (sum) + 444 (prf) / 519 reflections on image 205
Integrated 78 (sum) + 77 (prf) / 90 reflections on image 206
Beginning integration job 68
Frames: 204 -> 210
Number of reflections
Partial: 37
Full: 1517
In ice ring: 0
Integrate: 1554
Total: 1554
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
205 [9 ]:
206 [450]: ******************************
207 [929]: ***************************************************************
208 [999]: ********************************************************************
209 [613]: *****************************************
210 [84 ]: *****
Integrated 404 (sum) + 398 (prf) / 463 reflections on image 206
Integrated 400 (sum) + 394 (prf) / 478 reflections on image 207
Integrated 452 (sum) + 450 (prf) / 529 reflections on image 208
Integrated 70 (sum) + 68 (prf) / 84 reflections on image 209
Beginning integration job 69
Frames: 207 -> 213
Number of reflections
Partial: 37
Full: 1510
In ice ring: 0
Integrate: 1547
Total: 1547
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
208 [14 ]:
209 [454]: *******************************
210 [958]: *****************************************************************
211 [994]: ********************************************************************
212 [578]: ***************************************
213 [76 ]: *****
Integrated 395 (sum) + 390 (prf) / 464 reflections on image 209
Integrated 433 (sum) + 426 (prf) / 505 reflections on image 210
Integrated 428 (sum) + 427 (prf) / 502 reflections on image 211
Integrated 68 (sum) + 67 (prf) / 76 reflections on image 212
Beginning integration job 70
Frames: 210 -> 216
Number of reflections
Partial: 64
Full: 1494
In ice ring: 0
Integrate: 1558
Total: 1558
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
211 [14 ]:
212 [463 ]: ******************************
213 [966 ]: ***************************************************************
214 [1013]: *******************************************************************
215 [581 ]: **************************************
216 [83 ]: *****
Integrated 418 (sum) + 406 (prf) / 485 reflections on image 212
Integrated 407 (sum) + 396 (prf) / 492 reflections on image 213
Integrated 424 (sum) + 420 (prf) / 498 reflections on image 214
Integrated 72 (sum) + 70 (prf) / 83 reflections on image 215
Beginning integration job 71
Frames: 213 -> 219
Number of reflections
Partial: 59
Full: 1518
In ice ring: 0
Integrate: 1577
Total: 1577
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
214 [12 ]:
215 [464 ]: ******************************
216 [942 ]: **************************************************************
217 [1017]: *******************************************************************
218 [607 ]: ***************************************
219 [97 ]: ******
Integrated 416 (sum) + 407 (prf) / 483 reflections on image 215
Integrated 421 (sum) + 412 (prf) / 487 reflections on image 216
Integrated 430 (sum) + 425 (prf) / 510 reflections on image 217
Integrated 82 (sum) + 79 (prf) / 97 reflections on image 218
Beginning integration job 72
Frames: 216 -> 222
Number of reflections
Partial: 57
Full: 1517
In ice ring: 0
Integrate: 1574
Total: 1574
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
217 [11 ]:
218 [457 ]: *****************************
219 [962 ]: **************************************************************
220 [1026]: *******************************************************************
221 [604 ]: ***************************************
222 [86 ]: *****
Integrated 394 (sum) + 391 (prf) / 454 reflections on image 218
Integrated 448 (sum) + 441 (prf) / 516 reflections on image 219
Integrated 447 (sum) + 439 (prf) / 518 reflections on image 220
Integrated 73 (sum) + 73 (prf) / 86 reflections on image 221
Beginning integration job 73
Frames: 219 -> 225
Number of reflections
Partial: 52
Full: 1493
In ice ring: 0
Integrate: 1545
Total: 1545
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
220 [15 ]:
221 [448 ]: *****************************
222 [958 ]: ***************************************************************
223 [1012]: *******************************************************************
224 [560 ]: *************************************
225 [80 ]: *****
Integrated 372 (sum) + 366 (prf) / 448 reflections on image 221
Integrated 461 (sum) + 455 (prf) / 537 reflections on image 222
Integrated 409 (sum) + 406 (prf) / 480 reflections on image 223
Integrated 67 (sum) + 66 (prf) / 80 reflections on image 224
Beginning integration job 74
Frames: 222 -> 228
Number of reflections
Partial: 48
Full: 1524
In ice ring: 0
Integrate: 1572
Total: 1572
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
223 [14 ]:
224 [457 ]: ******************************
225 [964 ]: ***************************************************************
226 [1019]: *******************************************************************
227 [594 ]: ***************************************
228 [85 ]: *****
Integrated 411 (sum) + 407 (prf) / 479 reflections on image 224
Integrated 422 (sum) + 414 (prf) / 499 reflections on image 225
Integrated 428 (sum) + 422 (prf) / 509 reflections on image 226
Integrated 70 (sum) + 69 (prf) / 85 reflections on image 227
Beginning integration job 75
Frames: 225 -> 231
Number of reflections
Partial: 42
Full: 1502
In ice ring: 0
Integrate: 1544
Total: 1544
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
226 [12 ]:
227 [444 ]: *****************************
228 [954 ]: **************************************************************
229 [1021]: *******************************************************************
230 [575 ]: *************************************
231 [84 ]: *****
Integrated 386 (sum) + 381 (prf) / 451 reflections on image 227
Integrated 455 (sum) + 447 (prf) / 518 reflections on image 228
Integrated 438 (sum) + 431 (prf) / 491 reflections on image 229
Integrated 77 (sum) + 76 (prf) / 84 reflections on image 230
Beginning integration job 76
Frames: 228 -> 234
Number of reflections
Partial: 48
Full: 1535
In ice ring: 0
Integrate: 1583
Total: 1583
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
229 [14 ]:
230 [476 ]: *******************************
231 [970 ]: ***************************************************************
232 [1016]: *******************************************************************
233 [601 ]: ***************************************
234 [76 ]: *****
Integrated 405 (sum) + 395 (prf) / 483 reflections on image 230
Integrated 427 (sum) + 420 (prf) / 499 reflections on image 231
Integrated 430 (sum) + 426 (prf) / 525 reflections on image 232
Integrated 68 (sum) + 68 (prf) / 76 reflections on image 233
Beginning integration job 77
Frames: 231 -> 237
Number of reflections
Partial: 53
Full: 1506
In ice ring: 0
Integrate: 1559
Total: 1559
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
232 [18 ]: *
233 [432 ]: ****************************
234 [952 ]: **************************************************************
235 [1026]: *******************************************************************
236 [612 ]: ***************************************
237 [89 ]: *****
Integrated 379 (sum) + 373 (prf) / 451 reflections on image 233
Integrated 422 (sum) + 417 (prf) / 496 reflections on image 234
Integrated 438 (sum) + 432 (prf) / 523 reflections on image 235
Integrated 76 (sum) + 75 (prf) / 89 reflections on image 236
Beginning integration job 78
Frames: 234 -> 240
Number of reflections
Partial: 57
Full: 1483
In ice ring: 0
Integrate: 1540
Total: 1540
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
235 [15 ]:
236 [424 ]: ***************************
237 [941 ]: *************************************************************
238 [1025]: *******************************************************************
239 [574 ]: *************************************
240 [92 ]: ******
Integrated 377 (sum) + 367 (prf) / 437 reflections on image 236
Integrated 461 (sum) + 456 (prf) / 529 reflections on image 237
Integrated 410 (sum) + 407 (prf) / 482 reflections on image 238
Integrated 76 (sum) + 74 (prf) / 92 reflections on image 239
Beginning integration job 79
Frames: 237 -> 243
Number of reflections
Partial: 60
Full: 1521
In ice ring: 0
Integrate: 1581
Total: 1581
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
238 [18 ]: *
239 [487 ]: *******************************
240 [959 ]: **************************************************************
241 [1028]: *******************************************************************
242 [594 ]: **************************************
243 [77 ]: *****
Integrated 413 (sum) + 409 (prf) / 481 reflections on image 239
Integrated 427 (sum) + 415 (prf) / 506 reflections on image 240
Integrated 456 (sum) + 450 (prf) / 517 reflections on image 241
Integrated 63 (sum) + 59 (prf) / 77 reflections on image 242
Beginning integration job 80
Frames: 240 -> 246
Number of reflections
Partial: 60
Full: 1531
In ice ring: 0
Integrate: 1591
Total: 1591
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
241 [9 ]:
242 [463 ]: ******************************
243 [964 ]: ***************************************************************
244 [1015]: *******************************************************************
245 [612 ]: ****************************************
246 [96 ]: ******
Integrated 403 (sum) + 398 (prf) / 485 reflections on image 242
Integrated 421 (sum) + 414 (prf) / 494 reflections on image 243
Integrated 443 (sum) + 440 (prf) / 516 reflections on image 244
Integrated 73 (sum) + 73 (prf) / 96 reflections on image 245
Beginning integration job 81
Frames: 243 -> 249
Number of reflections
Partial: 57
Full: 1508
In ice ring: 0
Integrate: 1565
Total: 1565
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
244 [22 ]: *
245 [435 ]: ****************************
246 [949 ]: *************************************************************
247 [1029]: *******************************************************************
248 [600 ]: ***************************************
249 [89 ]: *****
Integrated 385 (sum) + 375 (prf) / 452 reflections on image 245
Integrated 416 (sum) + 407 (prf) / 513 reflections on image 246
Integrated 441 (sum) + 434 (prf) / 511 reflections on image 247
Integrated 69 (sum) + 69 (prf) / 89 reflections on image 248
Beginning integration job 82
Frames: 246 -> 252
Number of reflections
Partial: 33
Full: 1518
In ice ring: 0
Integrate: 1551
Total: 1551
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
247 [13 ]:
248 [429]: *****************************
249 [970]: ******************************************************************
250 [991]: ********************************************************************
251 [592]: ****************************************
252 [71 ]: ****
Integrated 397 (sum) + 393 (prf) / 466 reflections on image 248
Integrated 419 (sum) + 415 (prf) / 493 reflections on image 249
Integrated 449 (sum) + 443 (prf) / 521 reflections on image 250
Integrated 61 (sum) + 59 (prf) / 71 reflections on image 251
Beginning integration job 83
Frames: 249 -> 255
Number of reflections
Partial: 42
Full: 1522
In ice ring: 0
Integrate: 1564
Total: 1564
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
250 [14 ]:
251 [435 ]: ****************************
252 [969 ]: **************************************************************
253 [1039]: *******************************************************************
254 [600 ]: **************************************
255 [96 ]: ******
Integrated 380 (sum) + 375 (prf) / 452 reflections on image 251
Integrated 434 (sum) + 425 (prf) / 512 reflections on image 252
Integrated 426 (sum) + 422 (prf) / 504 reflections on image 253
Integrated 78 (sum) + 78 (prf) / 96 reflections on image 254
Beginning integration job 84
Frames: 252 -> 258
Number of reflections
Partial: 45
Full: 1497
In ice ring: 0
Integrate: 1542
Total: 1542
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
253 [12 ]:
254 [403 ]: *************************
255 [910 ]: **********************************************************
256 [1040]: *******************************************************************
257 [614 ]: ***************************************
258 [98 ]: ******
Integrated 368 (sum) + 362 (prf) / 432 reflections on image 254
Integrated 426 (sum) + 419 (prf) / 496 reflections on image 255
Integrated 425 (sum) + 418 (prf) / 516 reflections on image 256
Integrated 82 (sum) + 81 (prf) / 98 reflections on image 257
Beginning integration job 85
Frames: 255 -> 261
Number of reflections
Partial: 52
Full: 1531
In ice ring: 0
Integrate: 1583
Total: 1583
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
256 [17 ]: *
257 [445 ]: ****************************
258 [941 ]: ************************************************************
259 [1044]: *******************************************************************
260 [633 ]: ****************************************
261 [84 ]: *****
Integrated 401 (sum) + 395 (prf) / 463 reflections on image 257
Integrated 414 (sum) + 408 (prf) / 487 reflections on image 258
Integrated 475 (sum) + 469 (prf) / 549 reflections on image 259
Integrated 69 (sum) + 68 (prf) / 84 reflections on image 260
Beginning integration job 86
Frames: 258 -> 264
Number of reflections
Partial: 59
Full: 1481
In ice ring: 0
Integrate: 1540
Total: 1540
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
259 [15 ]: *
260 [440 ]: *****************************
261 [925 ]: *************************************************************
262 [1004]: *******************************************************************
263 [574 ]: **************************************
264 [92 ]: ******
Integrated 388 (sum) + 385 (prf) / 457 reflections on image 260
Integrated 429 (sum) + 421 (prf) / 509 reflections on image 261
Integrated 405 (sum) + 397 (prf) / 482 reflections on image 262
Integrated 68 (sum) + 68 (prf) / 92 reflections on image 263
Beginning integration job 87
Frames: 261 -> 267
Number of reflections
Partial: 49
Full: 1511
In ice ring: 0
Integrate: 1560
Total: 1560
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
262 [16 ]: *
263 [456 ]: *****************************
264 [953 ]: **************************************************************
265 [1019]: *******************************************************************
266 [611 ]: ****************************************
267 [79 ]: *****
Integrated 385 (sum) + 378 (prf) / 458 reflections on image 263
Integrated 414 (sum) + 406 (prf) / 491 reflections on image 264
Integrated 464 (sum) + 459 (prf) / 532 reflections on image 265
Integrated 70 (sum) + 69 (prf) / 79 reflections on image 266
Beginning integration job 88
Frames: 264 -> 270
Number of reflections
Partial: 50
Full: 1541
In ice ring: 0
Integrate: 1591
Total: 1591
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
265 [21 ]: *
266 [451 ]: ****************************
267 [995 ]: **************************************************************
268 [1059]: *******************************************************************
269 [599 ]: *************************************
270 [96 ]: ******
Integrated 389 (sum) + 385 (prf) / 455 reflections on image 266
Integrated 455 (sum) + 448 (prf) / 537 reflections on image 267
Integrated 430 (sum) + 429 (prf) / 503 reflections on image 268
Integrated 86 (sum) + 86 (prf) / 96 reflections on image 269
Beginning integration job 89
Frames: 267 -> 273
Number of reflections
Partial: 49
Full: 1534
In ice ring: 0
Integrate: 1583
Total: 1583
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
268 [18 ]: *
269 [428 ]: ***************************
270 [967 ]: *************************************************************
271 [1051]: *******************************************************************
272 [621 ]: ***************************************
273 [76 ]: ****
Integrated 381 (sum) + 373 (prf) / 447 reflections on image 269
Integrated 433 (sum) + 426 (prf) / 515 reflections on image 270
Integrated 470 (sum) + 462 (prf) / 545 reflections on image 271
Integrated 63 (sum) + 62 (prf) / 76 reflections on image 272
Beginning integration job 90
Frames: 270 -> 276
Number of reflections
Partial: 38
Full: 1506
In ice ring: 0
Integrate: 1544
Total: 1544
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
271 [17 ]: *
272 [409 ]: *************************
273 [912 ]: *********************************************************
274 [1054]: *******************************************************************
275 [597 ]: *************************************
276 [80 ]: *****
Integrated 344 (sum) + 337 (prf) / 405 reflections on image 272
Integrated 462 (sum) + 457 (prf) / 542 reflections on image 273
Integrated 441 (sum) + 434 (prf) / 517 reflections on image 274
Integrated 62 (sum) + 61 (prf) / 80 reflections on image 275
Beginning integration job 91
Frames: 273 -> 279
Number of reflections
Partial: 31
Full: 1490
In ice ring: 0
Integrate: 1521
Total: 1521
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
274 [9 ]:
275 [399 ]: **************************
276 [939 ]: *************************************************************
277 [1021]: *******************************************************************
278 [577 ]: *************************************
279 [82 ]: *****
Integrated 362 (sum) + 357 (prf) / 426 reflections on image 275
Integrated 445 (sum) + 440 (prf) / 518 reflections on image 276
Integrated 407 (sum) + 400 (prf) / 495 reflections on image 277
Integrated 66 (sum) + 64 (prf) / 82 reflections on image 278
Beginning integration job 92
Frames: 276 -> 282
Number of reflections
Partial: 34
Full: 1504
In ice ring: 0
Integrate: 1538
Total: 1538
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
277 [19 ]: *
278 [436 ]: ****************************
279 [986 ]: ****************************************************************
280 [1019]: *******************************************************************
281 [544 ]: ***********************************
282 [79 ]: *****
Integrated 385 (sum) + 380 (prf) / 447 reflections on image 278
Integrated 468 (sum) + 461 (prf) / 547 reflections on image 279
Integrated 408 (sum) + 406 (prf) / 465 reflections on image 280
Integrated 67 (sum) + 63 (prf) / 79 reflections on image 281
Beginning integration job 93
Frames: 279 -> 285
Number of reflections
Partial: 59
Full: 1507
In ice ring: 0
Integrate: 1566
Total: 1566
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
280 [11 ]:
281 [460 ]: ******************************
282 [979 ]: *****************************************************************
283 [1003]: *******************************************************************
284 [591 ]: ***************************************
285 [87 ]: *****
Integrated 424 (sum) + 412 (prf) / 488 reflections on image 281
Integrated 407 (sum) + 402 (prf) / 487 reflections on image 282
Integrated 432 (sum) + 428 (prf) / 504 reflections on image 283
Integrated 75 (sum) + 74 (prf) / 87 reflections on image 284
Beginning integration job 94
Frames: 282 -> 288
Number of reflections
Partial: 54
Full: 1532
In ice ring: 0
Integrate: 1586
Total: 1586
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
283 [16 ]: *
284 [464 ]: ******************************
285 [959 ]: ***************************************************************
286 [1012]: *******************************************************************
287 [599 ]: ***************************************
288 [95 ]: ******
Integrated 431 (sum) + 421 (prf) / 490 reflections on image 284
Integrated 422 (sum) + 416 (prf) / 497 reflections on image 285
Integrated 420 (sum) + 416 (prf) / 504 reflections on image 286
Integrated 79 (sum) + 76 (prf) / 95 reflections on image 287
Beginning integration job 95
Frames: 285 -> 291
Number of reflections
Partial: 59
Full: 1505
In ice ring: 0
Integrate: 1564
Total: 1564
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
286 [10 ]:
287 [433 ]: ****************************
288 [931 ]: **************************************************************
289 [1005]: *******************************************************************
290 [611 ]: ****************************************
291 [85 ]: *****
Integrated 409 (sum) + 402 (prf) / 468 reflections on image 287
Integrated 402 (sum) + 396 (prf) / 485 reflections on image 288
Integrated 454 (sum) + 450 (prf) / 526 reflections on image 289
Integrated 76 (sum) + 76 (prf) / 85 reflections on image 290
Beginning integration job 96
Frames: 288 -> 294
Number of reflections
Partial: 55
Full: 1497
In ice ring: 0
Integrate: 1552
Total: 1552
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
289 [16 ]: *
290 [457 ]: ******************************
291 [966 ]: ****************************************************************
292 [1011]: *******************************************************************
293 [577 ]: **************************************
294 [89 ]: *****
Integrated 408 (sum) + 401 (prf) / 474 reflections on image 290
Integrated 430 (sum) + 424 (prf) / 501 reflections on image 291
Integrated 408 (sum) + 406 (prf) / 488 reflections on image 292
Integrated 78 (sum) + 77 (prf) / 89 reflections on image 293
Beginning integration job 97
Frames: 291 -> 297
Number of reflections
Partial: 45
Full: 1496
In ice ring: 0
Integrate: 1541
Total: 1541
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
292 [21 ]: *
293 [457 ]: ******************************
294 [968 ]: ****************************************************************
295 [1011]: *******************************************************************
296 [553 ]: ************************************
297 [70 ]: ****
Integrated 390 (sum) + 384 (prf) / 460 reflections on image 293
Integrated 435 (sum) + 428 (prf) / 528 reflections on image 294
Integrated 410 (sum) + 409 (prf) / 483 reflections on image 295
Integrated 56 (sum) + 56 (prf) / 70 reflections on image 296
Beginning integration job 98
Frames: 294 -> 300
Number of reflections
Partial: 55
Full: 1544
In ice ring: 0
Integrate: 1599
Total: 1599
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
295 [16 ]: *
296 [469 ]: ******************************
297 [975 ]: ***************************************************************
298 [1027]: *******************************************************************
299 [589 ]: **************************************
300 [84 ]: *****
Integrated 419 (sum) + 406 (prf) / 485 reflections on image 296
Integrated 438 (sum) + 434 (prf) / 525 reflections on image 297
Integrated 419 (sum) + 413 (prf) / 505 reflections on image 298
Integrated 71 (sum) + 70 (prf) / 84 reflections on image 299
Beginning integration job 99
Frames: 297 -> 303
Number of reflections
Partial: 61
Full: 1512
In ice ring: 0
Integrate: 1573
Total: 1573
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
298 [17 ]: *
299 [432 ]: ***************************
300 [960 ]: *************************************************************
301 [1038]: *******************************************************************
302 [611 ]: ***************************************
303 [103 ]: ******
Integrated 368 (sum) + 360 (prf) / 450 reflections on image 299
Integrated 454 (sum) + 451 (prf) / 512 reflections on image 300
Integrated 435 (sum) + 434 (prf) / 508 reflections on image 301
Integrated 89 (sum) + 86 (prf) / 103 reflections on image 302
Beginning integration job 100
Frames: 300 -> 306
Number of reflections
Partial: 53
Full: 1511
In ice ring: 0
Integrate: 1564
Total: 1564
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
301 [10 ]:
302 [439 ]: ****************************
303 [948 ]: *************************************************************
304 [1027]: *******************************************************************
305 [617 ]: ****************************************
306 [93 ]: ******
Integrated 391 (sum) + 387 (prf) / 459 reflections on image 302
Integrated 411 (sum) + 404 (prf) / 488 reflections on image 303
Integrated 445 (sum) + 441 (prf) / 524 reflections on image 304
Integrated 71 (sum) + 71 (prf) / 93 reflections on image 305
Beginning integration job 101
Frames: 303 -> 309
Number of reflections
Partial: 57
Full: 1474
In ice ring: 0
Integrate: 1531
Total: 1531
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
304 [11 ]:
305 [444 ]: *****************************
306 [927 ]: *************************************************************
307 [1006]: *******************************************************************
308 [589 ]: ***************************************
309 [86 ]: *****
Integrated 394 (sum) + 383 (prf) / 461 reflections on image 305
Integrated 416 (sum) + 408 (prf) / 481 reflections on image 306
Integrated 435 (sum) + 429 (prf) / 503 reflections on image 307
Integrated 70 (sum) + 70 (prf) / 86 reflections on image 308
Beginning integration job 102
Frames: 306 -> 312
Number of reflections
Partial: 43
Full: 1552
In ice ring: 0
Integrate: 1595
Total: 1595
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
307 [14 ]:
308 [478 ]: *******************************
309 [1005]: ******************************************************************
310 [1013]: *******************************************************************
311 [567 ]: *************************************
312 [88 ]: *****
Integrated 415 (sum) + 411 (prf) / 494 reflections on image 308
Integrated 450 (sum) + 441 (prf) / 534 reflections on image 309
Integrated 408 (sum) + 403 (prf) / 479 reflections on image 310
Integrated 69 (sum) + 67 (prf) / 88 reflections on image 311
Beginning integration job 103
Frames: 309 -> 315
Number of reflections
Partial: 44
Full: 1503
In ice ring: 0
Integrate: 1547
Total: 1547
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
310 [13 ]:
311 [417 ]: **************************
312 [948 ]: ************************************************************
313 [1044]: *******************************************************************
314 [581 ]: *************************************
315 [65 ]: ****
Integrated 375 (sum) + 371 (prf) / 430 reflections on image 311
Integrated 476 (sum) + 462 (prf) / 536 reflections on image 312
Integrated 423 (sum) + 418 (prf) / 516 reflections on image 313
Integrated 57 (sum) + 55 (prf) / 65 reflections on image 314
Beginning integration job 104
Frames: 312 -> 318
Number of reflections
Partial: 52
Full: 1545
In ice ring: 0
Integrate: 1597
Total: 1597
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
313 [20 ]: *
314 [436 ]: ***************************
315 [987 ]: **************************************************************
316 [1059]: *******************************************************************
317 [631 ]: ***************************************
318 [81 ]: *****
Integrated 385 (sum) + 378 (prf) / 453 reflections on image 314
Integrated 432 (sum) + 427 (prf) / 513 reflections on image 315
Integrated 476 (sum) + 470 (prf) / 550 reflections on image 316
Integrated 68 (sum) + 67 (prf) / 81 reflections on image 317
Beginning integration job 105
Frames: 315 -> 321
Number of reflections
Partial: 53
Full: 1469
In ice ring: 0
Integrate: 1522
Total: 1522
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
316 [10 ]:
317 [389 ]: *************************
318 [915 ]: ***********************************************************
319 [1035]: *******************************************************************
320 [586 ]: *************************************
321 [83 ]: *****
Integrated 349 (sum) + 345 (prf) / 407 reflections on image 317
Integrated 442 (sum) + 438 (prf) / 529 reflections on image 318
Integrated 444 (sum) + 440 (prf) / 503 reflections on image 319
Integrated 67 (sum) + 67 (prf) / 83 reflections on image 320
Beginning integration job 106
Frames: 318 -> 324
Number of reflections
Partial: 50
Full: 1538
In ice ring: 0
Integrate: 1588
Total: 1588
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
319 [15 ]:
320 [443 ]: ****************************
321 [962 ]: **************************************************************
322 [1035]: *******************************************************************
323 [623 ]: ****************************************
324 [77 ]: ****
Integrated 389 (sum) + 382 (prf) / 447 reflections on image 320
Integrated 439 (sum) + 434 (prf) / 518 reflections on image 321
Integrated 463 (sum) + 456 (prf) / 546 reflections on image 322
Integrated 61 (sum) + 60 (prf) / 77 reflections on image 323
Beginning integration job 107
Frames: 321 -> 327
Number of reflections
Partial: 59
Full: 1481
In ice ring: 0
Integrate: 1540
Total: 1540
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
322 [14 ]:
323 [421 ]: ***************************
324 [921 ]: ***********************************************************
325 [1038]: *******************************************************************
326 [593 ]: **************************************
327 [95 ]: ******
Integrated 357 (sum) + 350 (prf) / 423 reflections on image 323
Integrated 443 (sum) + 439 (prf) / 524 reflections on image 324
Integrated 430 (sum) + 427 (prf) / 498 reflections on image 325
Integrated 84 (sum) + 81 (prf) / 95 reflections on image 326
Beginning integration job 108
Frames: 324 -> 330
Number of reflections
Partial: 45
Full: 1508
In ice ring: 0
Integrate: 1553
Total: 1553
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
325 [18 ]: *
326 [442 ]: ****************************
327 [945 ]: *************************************************************
328 [1030]: *******************************************************************
329 [600 ]: ***************************************
330 [74 ]: ****
Integrated 379 (sum) + 374 (prf) / 451 reflections on image 326
Integrated 423 (sum) + 414 (prf) / 502 reflections on image 327
Integrated 451 (sum) + 448 (prf) / 526 reflections on image 328
Integrated 65 (sum) + 63 (prf) / 74 reflections on image 329
Beginning integration job 109
Frames: 327 -> 333
Number of reflections
Partial: 50
Full: 1524
In ice ring: 0
Integrate: 1574
Total: 1574
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
328 [15 ]: *
329 [501]: **********************************
330 [994]: ********************************************************************
331 [965]: ******************************************************************
332 [566]: **************************************
333 [88 ]: ******
Integrated 449 (sum) + 442 (prf) / 523 reflections on image 329
Integrated 408 (sum) + 402 (prf) / 485 reflections on image 330
Integrated 409 (sum) + 405 (prf) / 478 reflections on image 331
Integrated 78 (sum) + 76 (prf) / 88 reflections on image 332
Beginning integration job 110
Frames: 330 -> 336
Number of reflections
Partial: 45
Full: 1504
In ice ring: 0
Integrate: 1549
Total: 1549
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
331 [12 ]:
332 [420 ]: **************************
333 [938 ]: ************************************************************
334 [1043]: *******************************************************************
335 [581 ]: *************************************
336 [87 ]: *****
Integrated 373 (sum) + 367 (prf) / 437 reflections on image 332
Integrated 455 (sum) + 452 (prf) / 531 reflections on image 333
Integrated 418 (sum) + 412 (prf) / 494 reflections on image 334
Integrated 75 (sum) + 75 (prf) / 87 reflections on image 335
Beginning integration job 111
Frames: 333 -> 339
Number of reflections
Partial: 39
Full: 1531
In ice ring: 0
Integrate: 1570
Total: 1570
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
334 [16 ]: *
335 [437 ]: ***************************
336 [970 ]: *************************************************************
337 [1054]: *******************************************************************
338 [578 ]: ************************************
339 [86 ]: *****
Integrated 373 (sum) + 368 (prf) / 441 reflections on image 335
Integrated 457 (sum) + 445 (prf) / 551 reflections on image 336
Integrated 421 (sum) + 417 (prf) / 492 reflections on image 337
Integrated 73 (sum) + 71 (prf) / 86 reflections on image 338
Beginning integration job 112
Frames: 336 -> 342
Number of reflections
Partial: 54
Full: 1505
In ice ring: 0
Integrate: 1559
Total: 1559
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
337 [21 ]: *
338 [439 ]: ****************************
339 [960 ]: ***************************************************************
340 [1019]: *******************************************************************
341 [591 ]: **************************************
342 [102 ]: ******
Integrated 381 (sum) + 369 (prf) / 460 reflections on image 338
Integrated 434 (sum) + 427 (prf) / 508 reflections on image 339
Integrated 415 (sum) + 413 (prf) / 489 reflections on image 340
Integrated 90 (sum) + 87 (prf) / 102 reflections on image 341
Beginning integration job 113
Frames: 339 -> 345
Number of reflections
Partial: 60
Full: 1504
In ice ring: 0
Integrate: 1564
Total: 1564
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
340 [17 ]: *
341 [434 ]: ****************************
342 [963 ]: **************************************************************
343 [1027]: *******************************************************************
344 [602 ]: ***************************************
345 [85 ]: *****
Integrated 394 (sum) + 388 (prf) / 447 reflections on image 341
Integrated 452 (sum) + 445 (prf) / 515 reflections on image 342
Integrated 424 (sum) + 420 (prf) / 517 reflections on image 343
Integrated 69 (sum) + 65 (prf) / 85 reflections on image 344
Beginning integration job 114
Frames: 342 -> 348
Number of reflections
Partial: 55
Full: 1527
In ice ring: 0
Integrate: 1582
Total: 1582
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
343 [16 ]: *
344 [454 ]: *****************************
345 [957 ]: **************************************************************
346 [1027]: *******************************************************************
347 [627 ]: ****************************************
348 [85 ]: *****
Integrated 401 (sum) + 397 (prf) / 465 reflections on image 344
Integrated 417 (sum) + 407 (prf) / 490 reflections on image 345
Integrated 455 (sum) + 446 (prf) / 542 reflections on image 346
Integrated 72 (sum) + 72 (prf) / 85 reflections on image 347
Beginning integration job 115
Frames: 345 -> 351
Number of reflections
Partial: 45
Full: 1490
In ice ring: 0
Integrate: 1535
Total: 1535
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
346 [17 ]: *
347 [421 ]: ***************************
348 [944 ]: **************************************************************
349 [1008]: *******************************************************************
350 [603 ]: ****************************************
351 [83 ]: *****
Integrated 386 (sum) + 378 (prf) / 457 reflections on image 347
Integrated 404 (sum) + 398 (prf) / 475 reflections on image 348
Integrated 433 (sum) + 426 (prf) / 520 reflections on image 349
Integrated 71 (sum) + 69 (prf) / 83 reflections on image 350
Beginning integration job 116
Frames: 348 -> 354
Number of reflections
Partial: 45
Full: 1511
In ice ring: 0
Integrate: 1556
Total: 1556
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
349 [19 ]: *
350 [453 ]: *****************************
351 [963 ]: ***************************************************************
352 [1017]: *******************************************************************
353 [588 ]: **************************************
354 [71 ]: ****
Integrated 402 (sum) + 395 (prf) / 465 reflections on image 350
Integrated 420 (sum) + 415 (prf) / 503 reflections on image 351
Integrated 441 (sum) + 433 (prf) / 517 reflections on image 352
Integrated 59 (sum) + 58 (prf) / 71 reflections on image 353
Beginning integration job 117
Frames: 351 -> 357
Number of reflections
Partial: 40
Full: 1526
In ice ring: 0
Integrate: 1566
Total: 1566
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
352 [19 ]: *
353 [448 ]: ****************************
354 [958 ]: *************************************************************
355 [1036]: *******************************************************************
356 [601 ]: **************************************
357 [92 ]: *****
Integrated 394 (sum) + 389 (prf) / 450 reflections on image 353
Integrated 440 (sum) + 433 (prf) / 515 reflections on image 354
Integrated 441 (sum) + 435 (prf) / 509 reflections on image 355
Integrated 78 (sum) + 77 (prf) / 92 reflections on image 356
Beginning integration job 118
Frames: 354 -> 360
Number of reflections
Partial: 58
Full: 1517
In ice ring: 0
Integrate: 1575
Total: 1575
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
355 [11 ]:
356 [450 ]: *****************************
357 [990 ]: ***************************************************************
358 [1039]: *******************************************************************
359 [552 ]: ***********************************
360 [73 ]: ****
Integrated 396 (sum) + 392 (prf) / 472 reflections on image 356
Integrated 468 (sum) + 460 (prf) / 551 reflections on image 357
Integrated 413 (sum) + 408 (prf) / 479 reflections on image 358
Integrated 67 (sum) + 67 (prf) / 73 reflections on image 359
Beginning integration job 119
Frames: 357 -> 363
Number of reflections
Partial: 57
Full: 1484
In ice ring: 0
Integrate: 1541
Total: 1541
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
358 [14 ]:
359 [423 ]: ***************************
360 [924 ]: ************************************************************
361 [1030]: *******************************************************************
362 [572 ]: *************************************
363 [87 ]: *****
Integrated 373 (sum) + 367 (prf) / 442 reflections on image 359
Integrated 457 (sum) + 449 (prf) / 527 reflections on image 360
Integrated 401 (sum) + 396 (prf) / 485 reflections on image 361
Integrated 74 (sum) + 73 (prf) / 87 reflections on image 362
Beginning integration job 120
Frames: 360 -> 366
Number of reflections
Partial: 49
Full: 1514
In ice ring: 0
Integrate: 1563
Total: 1563
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
361 [14 ]:
362 [433 ]: ****************************
363 [936 ]: *************************************************************
364 [1023]: *******************************************************************
365 [610 ]: ***************************************
366 [96 ]: ******
Integrated 394 (sum) + 390 (prf) / 454 reflections on image 362
Integrated 423 (sum) + 414 (prf) / 499 reflections on image 363
Integrated 449 (sum) + 446 (prf) / 514 reflections on image 364
Integrated 89 (sum) + 86 (prf) / 96 reflections on image 365
Beginning integration job 121
Frames: 363 -> 369
Number of reflections
Partial: 51
Full: 1569
In ice ring: 0
Integrate: 1620
Total: 1620
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
364 [11 ]:
365 [440 ]: **************************
366 [979 ]: ***********************************************************
367 [1097]: *******************************************************************
368 [644 ]: ***************************************
369 [102 ]: ******
Integrated 381 (sum) + 374 (prf) / 449 reflections on image 365
Integrated 433 (sum) + 426 (prf) / 527 reflections on image 366
Integrated 472 (sum) + 469 (prf) / 542 reflections on image 367
Integrated 92 (sum) + 90 (prf) / 102 reflections on image 368
Beginning integration job 122
Frames: 366 -> 372
Number of reflections
Partial: 54
Full: 1446
In ice ring: 0
Integrate: 1500
Total: 1500
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
367 [14 ]:
368 [464]: ********************************
369 [935]: ******************************************************************
370 [959]: ********************************************************************
371 [525]: *************************************
372 [68 ]: ****
Integrated 403 (sum) + 398 (prf) / 471 reflections on image 368
Integrated 429 (sum) + 420 (prf) / 504 reflections on image 369
Integrated 394 (sum) + 392 (prf) / 457 reflections on image 370
Integrated 63 (sum) + 62 (prf) / 68 reflections on image 371
Beginning integration job 123
Frames: 369 -> 375
Number of reflections
Partial: 56
Full: 1482
In ice ring: 0
Integrate: 1538
Total: 1538
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
370 [8 ]:
371 [419]: ****************************
372 [963]: ******************************************************************
373 [989]: ********************************************************************
374 [546]: *************************************
375 [85 ]: *****
Integrated 406 (sum) + 400 (prf) / 471 reflections on image 371
Integrated 442 (sum) + 433 (prf) / 521 reflections on image 372
Integrated 394 (sum) + 391 (prf) / 461 reflections on image 373
Integrated 72 (sum) + 71 (prf) / 85 reflections on image 374
Beginning integration job 124
Frames: 372 -> 378
Number of reflections
Partial: 62
Full: 1535
In ice ring: 0
Integrate: 1597
Total: 1597
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
373 [12 ]:
374 [471 ]: ******************************
375 [982 ]: ****************************************************************
376 [1028]: *******************************************************************
377 [598 ]: **************************************
378 [93 ]: ******
Integrated 420 (sum) + 409 (prf) / 485 reflections on image 374
Integrated 440 (sum) + 432 (prf) / 514 reflections on image 375
Integrated 421 (sum) + 412 (prf) / 505 reflections on image 376
Integrated 81 (sum) + 80 (prf) / 93 reflections on image 377
Beginning integration job 125
Frames: 375 -> 381
Number of reflections
Partial: 50
Full: 1578
In ice ring: 0
Integrate: 1628
Total: 1628
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
376 [17 ]: *
377 [455 ]: ****************************
378 [974 ]: ************************************************************
379 [1087]: *******************************************************************
380 [662 ]: ****************************************
381 [103 ]: ******
Integrated 386 (sum) + 380 (prf) / 454 reflections on image 377
Integrated 435 (sum) + 430 (prf) / 512 reflections on image 378
Integrated 465 (sum) + 462 (prf) / 559 reflections on image 379
Integrated 91 (sum) + 91 (prf) / 103 reflections on image 380
Beginning integration job 126
Frames: 378 -> 384
Number of reflections
Partial: 72
Full: 1496
In ice ring: 0
Integrate: 1568
Total: 1568
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
379 [13 ]:
380 [419 ]: **************************
381 [931 ]: ***********************************************************
382 [1051]: *******************************************************************
383 [632 ]: ****************************************
384 [103 ]: ******
Integrated 383 (sum) + 370 (prf) / 450 reflections on image 380
Integrated 405 (sum) + 400 (prf) / 486 reflections on image 381
Integrated 445 (sum) + 440 (prf) / 529 reflections on image 382
Integrated 88 (sum) + 88 (prf) / 103 reflections on image 383
Beginning integration job 127
Frames: 381 -> 387
Number of reflections
Partial: 70
Full: 1478
In ice ring: 0
Integrate: 1548
Total: 1548
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
382 [13 ]:
383 [419 ]: ***************************
384 [936 ]: *************************************************************
385 [1021]: *******************************************************************
386 [596 ]: ***************************************
387 [95 ]: ******
Integrated 376 (sum) + 369 (prf) / 446 reflections on image 383
Integrated 429 (sum) + 418 (prf) / 506 reflections on image 384
Integrated 439 (sum) + 434 (prf) / 501 reflections on image 385
Integrated 85 (sum) + 84 (prf) / 95 reflections on image 386
Beginning integration job 128
Frames: 384 -> 390
Number of reflections
Partial: 68
Full: 1507
In ice ring: 0
Integrate: 1575
Total: 1575
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
385 [17 ]: *
386 [418 ]: **************************
387 [949 ]: *************************************************************
388 [1041]: *******************************************************************
389 [596 ]: **************************************
390 [96 ]: ******
Integrated 391 (sum) + 383 (prf) / 457 reflections on image 386
Integrated 451 (sum) + 444 (prf) / 522 reflections on image 387
Integrated 439 (sum) + 431 (prf) / 500 reflections on image 388
Integrated 80 (sum) + 79 (prf) / 96 reflections on image 389
Beginning integration job 129
Frames: 387 -> 393
Number of reflections
Partial: 63
Full: 1505
In ice ring: 0
Integrate: 1568
Total: 1568
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
388 [11 ]:
389 [441 ]: ****************************
390 [947 ]: *************************************************************
391 [1030]: *******************************************************************
392 [604 ]: ***************************************
393 [75 ]: ****
Integrated 392 (sum) + 387 (prf) / 460 reflections on image 389
Integrated 421 (sum) + 416 (prf) / 504 reflections on image 390
Integrated 447 (sum) + 439 (prf) / 529 reflections on image 391
Integrated 70 (sum) + 70 (prf) / 75 reflections on image 392
Beginning integration job 130
Frames: 390 -> 396
Number of reflections
Partial: 52
Full: 1545
In ice ring: 0
Integrate: 1597
Total: 1597
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
391 [19 ]: *
392 [463 ]: *****************************
393 [964 ]: *************************************************************
394 [1045]: *******************************************************************
395 [616 ]: ***************************************
396 [96 ]: ******
Integrated 381 (sum) + 376 (prf) / 456 reflections on image 392
Integrated 455 (sum) + 445 (prf) / 525 reflections on image 393
Integrated 443 (sum) + 440 (prf) / 520 reflections on image 394
Integrated 83 (sum) + 82 (prf) / 96 reflections on image 395
Beginning integration job 131
Frames: 393 -> 399
Number of reflections
Partial: 46
Full: 1494
In ice ring: 0
Integrate: 1540
Total: 1540
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
394 [11 ]:
395 [433 ]: ****************************
396 [938 ]: *************************************************************
397 [1030]: *******************************************************************
398 [590 ]: **************************************
399 [71 ]: ****
Integrated 365 (sum) + 357 (prf) / 428 reflections on image 395
Integrated 453 (sum) + 447 (prf) / 522 reflections on image 396
Integrated 442 (sum) + 440 (prf) / 519 reflections on image 397
Integrated 57 (sum) + 56 (prf) / 71 reflections on image 398
Beginning integration job 132
Frames: 396 -> 402
Number of reflections
Partial: 37
Full: 1491
In ice ring: 0
Integrate: 1528
Total: 1528
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
397 [16 ]: *
398 [418 ]: ***************************
399 [950 ]: **************************************************************
400 [1026]: *******************************************************************
401 [579 ]: *************************************
402 [77 ]: *****
Integrated 363 (sum) + 362 (prf) / 439 reflections on image 398
Integrated 430 (sum) + 425 (prf) / 510 reflections on image 399
Integrated 438 (sum) + 435 (prf) / 502 reflections on image 400
Integrated 61 (sum) + 58 (prf) / 77 reflections on image 401
Beginning integration job 133
Frames: 399 -> 405
Number of reflections
Partial: 43
Full: 1511
In ice ring: 0
Integrate: 1554
Total: 1554
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
400 [9 ]:
401 [446 ]: *****************************
402 [963 ]: ***************************************************************
403 [1017]: *******************************************************************
404 [569 ]: *************************************
405 [81 ]: *****
Integrated 386 (sum) + 377 (prf) / 459 reflections on image 401
Integrated 452 (sum) + 446 (prf) / 526 reflections on image 402
Integrated 424 (sum) + 416 (prf) / 488 reflections on image 403
Integrated 73 (sum) + 71 (prf) / 81 reflections on image 404
Beginning integration job 134
Frames: 402 -> 408
Number of reflections
Partial: 51
Full: 1529
In ice ring: 0
Integrate: 1580
Total: 1580
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
403 [17 ]: *
404 [453 ]: *****************************
405 [953 ]: **************************************************************
406 [1016]: *******************************************************************
407 [610 ]: ****************************************
408 [81 ]: *****
Integrated 409 (sum) + 404 (prf) / 481 reflections on image 404
Integrated 413 (sum) + 404 (prf) / 489 reflections on image 405
Integrated 455 (sum) + 450 (prf) / 529 reflections on image 406
Integrated 62 (sum) + 60 (prf) / 81 reflections on image 407
Beginning integration job 135
Frames: 405 -> 411
Number of reflections
Partial: 58
Full: 1500
In ice ring: 0
Integrate: 1558
Total: 1558
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
406 [17 ]: *
407 [432 ]: ***************************
408 [939 ]: ************************************************************
409 [1040]: *******************************************************************
410 [595 ]: **************************************
411 [93 ]: *****
Integrated 389 (sum) + 374 (prf) / 451 reflections on image 407
Integrated 430 (sum) + 426 (prf) / 512 reflections on image 408
Integrated 426 (sum) + 420 (prf) / 502 reflections on image 409
Integrated 79 (sum) + 77 (prf) / 93 reflections on image 410
Beginning integration job 136
Frames: 408 -> 414
Number of reflections
Partial: 66
Full: 1518
In ice ring: 0
Integrate: 1584
Total: 1584
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
409 [20 ]: *
410 [429 ]: ***************************
411 [971 ]: **************************************************************
412 [1033]: *******************************************************************
413 [595 ]: **************************************
414 [87 ]: *****
Integrated 399 (sum) + 388 (prf) / 468 reflections on image 410
Integrated 446 (sum) + 439 (prf) / 521 reflections on image 411
Integrated 430 (sum) + 426 (prf) / 508 reflections on image 412
Integrated 72 (sum) + 71 (prf) / 87 reflections on image 413
Beginning integration job 137
Frames: 411 -> 417
Number of reflections
Partial: 62
Full: 1508
In ice ring: 0
Integrate: 1570
Total: 1570
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
412 [17 ]: *
413 [446 ]: ****************************
414 [961 ]: **************************************************************
415 [1032]: *******************************************************************
416 [582 ]: *************************************
417 [97 ]: ******
Integrated 401 (sum) + 393 (prf) / 464 reflections on image 413
Integrated 452 (sum) + 445 (prf) / 524 reflections on image 414
Integrated 408 (sum) + 407 (prf) / 485 reflections on image 415
Integrated 83 (sum) + 82 (prf) / 97 reflections on image 416
Beginning integration job 138
Frames: 414 -> 420
Number of reflections
Partial: 42
Full: 1519
In ice ring: 0
Integrate: 1561
Total: 1561
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
415 [9 ]:
416 [442 ]: *****************************
417 [964 ]: ***************************************************************
418 [1018]: *******************************************************************
419 [592 ]: **************************************
420 [83 ]: *****
Integrated 389 (sum) + 380 (prf) / 468 reflections on image 416
Integrated 434 (sum) + 428 (prf) / 501 reflections on image 417
Integrated 438 (sum) + 435 (prf) / 509 reflections on image 418
Integrated 72 (sum) + 71 (prf) / 83 reflections on image 419
Beginning integration job 139
Frames: 417 -> 423
Number of reflections
Partial: 39
Full: 1509
In ice ring: 0
Integrate: 1548
Total: 1548
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
418 [14 ]:
419 [468 ]: ******************************
420 [958 ]: ***************************************************************
421 [1015]: *******************************************************************
422 [579 ]: **************************************
423 [71 ]: ****
Integrated 395 (sum) + 382 (prf) / 467 reflections on image 419
Integrated 436 (sum) + 432 (prf) / 502 reflections on image 420
Integrated 425 (sum) + 423 (prf) / 508 reflections on image 421
Integrated 61 (sum) + 60 (prf) / 71 reflections on image 422
Beginning integration job 140
Frames: 420 -> 426
Number of reflections
Partial: 52
Full: 1504
In ice ring: 0
Integrate: 1556
Total: 1556
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
421 [13 ]:
422 [457 ]: ******************************
423 [968 ]: ****************************************************************
424 [1012]: *******************************************************************
425 [567 ]: *************************************
426 [77 ]: *****
Integrated 397 (sum) + 388 (prf) / 469 reflections on image 422
Integrated 431 (sum) + 427 (prf) / 520 reflections on image 423
Integrated 430 (sum) + 425 (prf) / 490 reflections on image 424
Integrated 70 (sum) + 70 (prf) / 77 reflections on image 425
Beginning integration job 141
Frames: 423 -> 429
Number of reflections
Partial: 34
Full: 1509
In ice ring: 0
Integrate: 1543
Total: 1543
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
424 [13 ]:
425 [453]: ******************************
426 [962]: *****************************************************************
427 [996]: ********************************************************************
428 [572]: ***************************************
429 [65 ]: ****
Integrated 405 (sum) + 397 (prf) / 469 reflections on image 425
Integrated 435 (sum) + 430 (prf) / 502 reflections on image 426
Integrated 431 (sum) + 425 (prf) / 507 reflections on image 427
Integrated 55 (sum) + 54 (prf) / 65 reflections on image 428
Beginning integration job 142
Frames: 426 -> 432
Number of reflections
Partial: 37
Full: 1528
In ice ring: 0
Integrate: 1565
Total: 1565
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
427 [15 ]:
428 [462 ]: ******************************
429 [953 ]: ***************************************************************
430 [1012]: *******************************************************************
431 [593 ]: ***************************************
432 [84 ]: *****
Integrated 400 (sum) + 394 (prf) / 479 reflections on image 428
Integrated 412 (sum) + 408 (prf) / 493 reflections on image 429
Integrated 440 (sum) + 434 (prf) / 509 reflections on image 430
Integrated 74 (sum) + 71 (prf) / 84 reflections on image 431
Beginning integration job 143
Frames: 429 -> 435
Number of reflections
Partial: 64
Full: 1515
In ice ring: 0
Integrate: 1579
Total: 1579
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
430 [10 ]:
431 [454 ]: *****************************
432 [944 ]: ************************************************************
433 [1043]: *******************************************************************
434 [626 ]: ****************************************
435 [111 ]: *******
Integrated 397 (sum) + 389 (prf) / 466 reflections on image 431
Integrated 419 (sum) + 411 (prf) / 487 reflections on image 432
Integrated 436 (sum) + 434 (prf) / 515 reflections on image 433
Integrated 89 (sum) + 89 (prf) / 111 reflections on image 434
Beginning integration job 144
Frames: 432 -> 438
Number of reflections
Partial: 65
Full: 1526
In ice ring: 0
Integrate: 1591
Total: 1591
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
433 [16 ]: *
434 [436 ]: ***************************
435 [947 ]: ***********************************************************
436 [1061]: *******************************************************************
437 [634 ]: ****************************************
438 [105 ]: ******
Integrated 383 (sum) + 376 (prf) / 452 reflections on image 434
Integrated 448 (sum) + 442 (prf) / 505 reflections on image 435
Integrated 446 (sum) + 443 (prf) / 529 reflections on image 436
Integrated 88 (sum) + 85 (prf) / 105 reflections on image 437
Beginning integration job 145
Frames: 435 -> 441
Number of reflections
Partial: 59
Full: 1496
In ice ring: 0
Integrate: 1555
Total: 1555
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
436 [13 ]:
437 [412 ]: ***************************
438 [940 ]: *************************************************************
439 [1019]: *******************************************************************
440 [609 ]: ****************************************
441 [88 ]: *****
Integrated 371 (sum) + 362 (prf) / 453 reflections on image 437
Integrated 429 (sum) + 419 (prf) / 493 reflections on image 438
Integrated 446 (sum) + 440 (prf) / 521 reflections on image 439
Integrated 81 (sum) + 80 (prf) / 88 reflections on image 440
Beginning integration job 146
Frames: 438 -> 444
Number of reflections
Partial: 49
Full: 1510
In ice ring: 0
Integrate: 1559
Total: 1559
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
439 [14 ]:
440 [440]: ******************************
441 [953]: ****************************************************************
442 [997]: ********************************************************************
443 [591]: ****************************************
444 [79 ]: *****
Integrated 385 (sum) + 379 (prf) / 464 reflections on image 440
Integrated 428 (sum) + 418 (prf) / 504 reflections on image 441
Integrated 430 (sum) + 421 (prf) / 512 reflections on image 442
Integrated 67 (sum) + 67 (prf) / 79 reflections on image 443
Beginning integration job 147
Frames: 441 -> 447
Number of reflections
Partial: 52
Full: 1500
In ice ring: 0
Integrate: 1552
Total: 1552
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
442 [14 ]:
443 [427 ]: ***************************
444 [936 ]: *************************************************************
445 [1023]: *******************************************************************
446 [607 ]: ***************************************
447 [75 ]: ****
Integrated 388 (sum) + 382 (prf) / 450 reflections on image 443
Integrated 411 (sum) + 404 (prf) / 495 reflections on image 444
Integrated 450 (sum) + 441 (prf) / 532 reflections on image 445
Integrated 60 (sum) + 60 (prf) / 75 reflections on image 446
Beginning integration job 148
Frames: 444 -> 450
Number of reflections
Partial: 53
Full: 1498
In ice ring: 0
Integrate: 1551
Total: 1551
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
445 [21 ]: *
446 [428 ]: ***************************
447 [930 ]: ************************************************************
448 [1035]: *******************************************************************
449 [598 ]: **************************************
450 [74 ]: ****
Integrated 363 (sum) + 356 (prf) / 431 reflections on image 446
Integrated 451 (sum) + 446 (prf) / 522 reflections on image 447
Integrated 442 (sum) + 436 (prf) / 524 reflections on image 448
Integrated 57 (sum) + 57 (prf) / 74 reflections on image 449
Beginning integration job 149
Frames: 447 -> 453
Number of reflections
Partial: 65
Full: 1554
In ice ring: 0
Integrate: 1619
Total: 1619
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
448 [11 ]:
449 [442 ]: ***************************
450 [1007]: **************************************************************
451 [1085]: *******************************************************************
452 [618 ]: **************************************
453 [95 ]: *****
Integrated 390 (sum) + 376 (prf) / 448 reflections on image 449
Integrated 464 (sum) + 456 (prf) / 553 reflections on image 450
Integrated 450 (sum) + 447 (prf) / 523 reflections on image 451
Integrated 84 (sum) + 82 (prf) / 95 reflections on image 452
Beginning integration job 150
Frames: 450 -> 456
Number of reflections
Partial: 48
Full: 1488
In ice ring: 0
Integrate: 1536
Total: 1536
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
451 [14 ]:
452 [440 ]: *****************************
453 [945 ]: **************************************************************
454 [1008]: *******************************************************************
455 [574 ]: **************************************
456 [78 ]: *****
Integrated 395 (sum) + 392 (prf) / 462 reflections on image 452
Integrated 431 (sum) + 422 (prf) / 500 reflections on image 453
Integrated 423 (sum) + 418 (prf) / 496 reflections on image 454
Integrated 68 (sum) + 67 (prf) / 78 reflections on image 455
Beginning integration job 151
Frames: 453 -> 459
Number of reflections
Partial: 40
Full: 1519
In ice ring: 0
Integrate: 1559
Total: 1559
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
454 [20 ]: *
455 [458]: *******************************
456 [941]: ****************************************************************
457 [994]: ********************************************************************
458 [598]: ****************************************
459 [63 ]: ****
Integrated 395 (sum) + 386 (prf) / 470 reflections on image 455
Integrated 421 (sum) + 413 (prf) / 491 reflections on image 456
Integrated 457 (sum) + 454 (prf) / 535 reflections on image 457
Integrated 54 (sum) + 54 (prf) / 63 reflections on image 458
Beginning integration job 152
Frames: 456 -> 462
Number of reflections
Partial: 48
Full: 1447
In ice ring: 0
Integrate: 1495
Total: 1495
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
457 [15 ]: *
458 [443]: *******************************
459 [906]: *****************************************************************
460 [946]: ********************************************************************
461 [562]: ****************************************
462 [88 ]: ******
Integrated 385 (sum) + 376 (prf) / 464 reflections on image 458
Integrated 405 (sum) + 397 (prf) / 469 reflections on image 459
Integrated 409 (sum) + 405 (prf) / 474 reflections on image 460
Integrated 74 (sum) + 73 (prf) / 88 reflections on image 461
Beginning integration job 153
Frames: 459 -> 465
Number of reflections
Partial: 55
Full: 1582
In ice ring: 0
Integrate: 1637
Total: 1637
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
460 [15 ]:
461 [466 ]: ****************************
462 [1003]: ************************************************************
463 [1105]: *******************************************************************
464 [643 ]: **************************************
465 [91 ]: *****
Integrated 381 (sum) + 372 (prf) / 459 reflections on image 461
Integrated 454 (sum) + 449 (prf) / 535 reflections on image 462
Integrated 477 (sum) + 470 (prf) / 552 reflections on image 463
Integrated 78 (sum) + 76 (prf) / 91 reflections on image 464
Beginning integration job 154
Frames: 462 -> 468
Number of reflections
Partial: 51
Full: 1534
In ice ring: 0
Integrate: 1585
Total: 1585
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
463 [19 ]: *
464 [465 ]: ******************************
465 [991 ]: ****************************************************************
466 [1031]: *******************************************************************
467 [581 ]: *************************************
468 [84 ]: *****
Integrated 403 (sum) + 391 (prf) / 469 reflections on image 464
Integrated 461 (sum) + 452 (prf) / 535 reflections on image 465
Integrated 429 (sum) + 427 (prf) / 497 reflections on image 466
Integrated 75 (sum) + 74 (prf) / 84 reflections on image 467
Beginning integration job 155
Frames: 465 -> 471
Number of reflections
Partial: 48
Full: 1495
In ice ring: 0
Integrate: 1543
Total: 1543
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
466 [17 ]: *
467 [422 ]: ***************************
468 [932 ]: *************************************************************
469 [1017]: *******************************************************************
470 [608 ]: ****************************************
471 [66 ]: ****
Integrated 377 (sum) + 371 (prf) / 451 reflections on image 467
Integrated 414 (sum) + 412 (prf) / 484 reflections on image 468
Integrated 459 (sum) + 453 (prf) / 542 reflections on image 469
Integrated 59 (sum) + 57 (prf) / 66 reflections on image 470
Beginning integration job 156
Frames: 468 -> 474
Number of reflections
Partial: 46
Full: 1496
In ice ring: 0
Integrate: 1542
Total: 1542
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
469 [16 ]: *
470 [397 ]: *************************
471 [855 ]: *******************************************************
472 [1038]: *******************************************************************
473 [676 ]: *******************************************
474 [102 ]: ******
Integrated 364 (sum) + 361 (prf) / 416 reflections on image 470
Integrated 378 (sum) + 377 (prf) / 450 reflections on image 471
Integrated 487 (sum) + 480 (prf) / 574 reflections on image 472
Integrated 84 (sum) + 83 (prf) / 102 reflections on image 473
Beginning integration job 157
Frames: 471 -> 477
Number of reflections
Partial: 52
Full: 1533
In ice ring: 0
Integrate: 1585
Total: 1585
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
472 [12 ]:
473 [478 ]: ******************************
474 [975 ]: **************************************************************
475 [1039]: *******************************************************************
476 [620 ]: ***************************************
477 [70 ]: ****
Integrated 411 (sum) + 400 (prf) / 474 reflections on image 473
Integrated 429 (sum) + 423 (prf) / 491 reflections on image 474
Integrated 466 (sum) + 462 (prf) / 550 reflections on image 475
Integrated 57 (sum) + 56 (prf) / 70 reflections on image 476
Beginning integration job 158
Frames: 474 -> 480
Number of reflections
Partial: 59
Full: 1513
In ice ring: 0
Integrate: 1572
Total: 1572
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
475 [14 ]:
476 [447 ]: *****************************
477 [923 ]: ************************************************************
478 [1030]: *******************************************************************
479 [607 ]: ***************************************
480 [83 ]: *****
Integrated 376 (sum) + 368 (prf) / 449 reflections on image 476
Integrated 432 (sum) + 423 (prf) / 516 reflections on image 477
Integrated 457 (sum) + 448 (prf) / 524 reflections on image 478
Integrated 73 (sum) + 71 (prf) / 83 reflections on image 479
Beginning integration job 159
Frames: 477 -> 483
Number of reflections
Partial: 51
Full: 1463
In ice ring: 0
Integrate: 1514
Total: 1514
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
478 [18 ]: *
479 [412]: ****************************
480 [901]: *************************************************************
481 [991]: ********************************************************************
482 [621]: ******************************************
483 [85 ]: *****
Integrated 383 (sum) + 373 (prf) / 436 reflections on image 479
Integrated 393 (sum) + 390 (prf) / 457 reflections on image 480
Integrated 449 (sum) + 445 (prf) / 536 reflections on image 481
Integrated 73 (sum) + 72 (prf) / 85 reflections on image 482
Beginning integration job 160
Frames: 480 -> 486
Number of reflections
Partial: 44
Full: 1552
In ice ring: 0
Integrate: 1596
Total: 1596
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
481 [19 ]: *
482 [486 ]: *******************************
483 [1005]: ****************************************************************
484 [1039]: *******************************************************************
485 [584 ]: *************************************
486 [72 ]: ****
Integrated 414 (sum) + 410 (prf) / 484 reflections on image 482
Integrated 446 (sum) + 437 (prf) / 528 reflections on image 483
Integrated 433 (sum) + 427 (prf) / 512 reflections on image 484
Integrated 57 (sum) + 57 (prf) / 72 reflections on image 485
Beginning integration job 161
Frames: 483 -> 489
Number of reflections
Partial: 51
Full: 1479
In ice ring: 0
Integrate: 1530
Total: 1530
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
484 [14 ]:
485 [436]: ******************************
486 [963]: ******************************************************************
487 [988]: ********************************************************************
488 [558]: **************************************
489 [79 ]: *****
Integrated 394 (sum) + 392 (prf) / 457 reflections on image 485
Integrated 441 (sum) + 436 (prf) / 515 reflections on image 486
Integrated 407 (sum) + 403 (prf) / 479 reflections on image 487
Integrated 68 (sum) + 67 (prf) / 79 reflections on image 488
Beginning integration job 162
Frames: 486 -> 492
Number of reflections
Partial: 53
Full: 1524
In ice ring: 0
Integrate: 1577
Total: 1577
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
487 [8 ]:
488 [433 ]: ***************************
489 [961 ]: ************************************************************
490 [1061]: *******************************************************************
491 [597 ]: *************************************
492 [88 ]: *****
Integrated 370 (sum) + 365 (prf) / 440 reflections on image 488
Integrated 462 (sum) + 458 (prf) / 540 reflections on image 489
Integrated 434 (sum) + 430 (prf) / 509 reflections on image 490
Integrated 71 (sum) + 69 (prf) / 88 reflections on image 491
Beginning integration job 163
Frames: 489 -> 495
Number of reflections
Partial: 59
Full: 1523
In ice ring: 0
Integrate: 1582
Total: 1582
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
490 [14 ]:
491 [461 ]: ******************************
492 [961 ]: **************************************************************
493 [1023]: *******************************************************************
494 [596 ]: ***************************************
495 [84 ]: *****
Integrated 412 (sum) + 402 (prf) / 476 reflections on image 491
Integrated 437 (sum) + 430 (prf) / 510 reflections on image 492
Integrated 436 (sum) + 432 (prf) / 512 reflections on image 493
Integrated 75 (sum) + 74 (prf) / 84 reflections on image 494
Beginning integration job 164
Frames: 492 -> 498
Number of reflections
Partial: 57
Full: 1488
In ice ring: 0
Integrate: 1545
Total: 1545
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
493 [21 ]: *
494 [452]: ******************************
495 [932]: ***************************************************************
496 [997]: ********************************************************************
497 [594]: ****************************************
498 [89 ]: ******
Integrated 393 (sum) + 379 (prf) / 463 reflections on image 494
Integrated 414 (sum) + 408 (prf) / 488 reflections on image 495
Integrated 441 (sum) + 438 (prf) / 505 reflections on image 496
Integrated 79 (sum) + 78 (prf) / 89 reflections on image 497
Beginning integration job 165
Frames: 495 -> 501
Number of reflections
Partial: 48
Full: 1543
In ice ring: 0
Integrate: 1591
Total: 1591
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
496 [20 ]: *
497 [472 ]: ******************************
498 [977 ]: ***************************************************************
499 [1038]: *******************************************************************
500 [609 ]: ***************************************
501 [81 ]: *****
Integrated 420 (sum) + 415 (prf) / 477 reflections on image 497
Integrated 418 (sum) + 412 (prf) / 505 reflections on image 498
Integrated 443 (sum) + 435 (prf) / 528 reflections on image 499
Integrated 73 (sum) + 71 (prf) / 81 reflections on image 500
Beginning integration job 166
Frames: 498 -> 504
Number of reflections
Partial: 48
Full: 1490
In ice ring: 0
Integrate: 1538
Total: 1538
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
499 [14 ]:
500 [438 ]: *****************************
501 [936 ]: **************************************************************
502 [1002]: *******************************************************************
503 [577 ]: **************************************
504 [67 ]: ****
Integrated 397 (sum) + 389 (prf) / 464 reflections on image 500
Integrated 438 (sum) + 426 (prf) / 497 reflections on image 501
Integrated 431 (sum) + 425 (prf) / 510 reflections on image 502
Integrated 60 (sum) + 57 (prf) / 67 reflections on image 503
Beginning integration job 167
Frames: 501 -> 507
Number of reflections
Partial: 51
Full: 1519
In ice ring: 0
Integrate: 1570
Total: 1570
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
502 [10 ]:
503 [432 ]: ***************************
504 [949 ]: *************************************************************
505 [1041]: *******************************************************************
506 [604 ]: **************************************
507 [98 ]: ******
Integrated 389 (sum) + 385 (prf) / 461 reflections on image 503
Integrated 441 (sum) + 434 (prf) / 505 reflections on image 504
Integrated 442 (sum) + 436 (prf) / 506 reflections on image 505
Integrated 79 (sum) + 76 (prf) / 98 reflections on image 506
Beginning integration job 168
Frames: 504 -> 510
Number of reflections
Partial: 52
Full: 1512
In ice ring: 0
Integrate: 1564
Total: 1564
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
505 [17 ]: *
506 [446 ]: ****************************
507 [943 ]: *************************************************************
508 [1034]: *******************************************************************
509 [585 ]: *************************************
510 [83 ]: *****
Integrated 398 (sum) + 391 (prf) / 463 reflections on image 506
Integrated 434 (sum) + 424 (prf) / 516 reflections on image 507
Integrated 427 (sum) + 421 (prf) / 502 reflections on image 508
Integrated 74 (sum) + 74 (prf) / 83 reflections on image 509
Beginning integration job 169
Frames: 507 -> 513
Number of reflections
Partial: 56
Full: 1522
In ice ring: 0
Integrate: 1578
Total: 1578
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
508 [20 ]: *
509 [438 ]: ****************************
510 [953 ]: *************************************************************
511 [1042]: *******************************************************************
512 [617 ]: ***************************************
513 [84 ]: *****
Integrated 383 (sum) + 375 (prf) / 453 reflections on image 509
Integrated 444 (sum) + 433 (prf) / 508 reflections on image 510
Integrated 461 (sum) + 454 (prf) / 533 reflections on image 511
Integrated 77 (sum) + 73 (prf) / 84 reflections on image 512
Beginning integration job 170
Frames: 510 -> 516
Number of reflections
Partial: 62
Full: 1511
In ice ring: 0
Integrate: 1573
Total: 1573
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
511 [17 ]: *
512 [437 ]: ***************************
513 [937 ]: ***********************************************************
514 [1049]: *******************************************************************
515 [615 ]: ***************************************
516 [92 ]: *****
Integrated 387 (sum) + 381 (prf) / 443 reflections on image 512
Integrated 437 (sum) + 429 (prf) / 515 reflections on image 513
Integrated 452 (sum) + 448 (prf) / 523 reflections on image 514
Integrated 80 (sum) + 79 (prf) / 92 reflections on image 515
Beginning integration job 171
Frames: 513 -> 519
Number of reflections
Partial: 43
Full: 1497
In ice ring: 0
Integrate: 1540
Total: 1540
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
514 [20 ]: *
515 [453 ]: *****************************
516 [946 ]: **************************************************************
517 [1016]: *******************************************************************
518 [595 ]: ***************************************
519 [70 ]: ****
Integrated 389 (sum) + 381 (prf) / 445 reflections on image 515
Integrated 419 (sum) + 411 (prf) / 500 reflections on image 516
Integrated 436 (sum) + 432 (prf) / 525 reflections on image 517
Integrated 61 (sum) + 59 (prf) / 70 reflections on image 518
Beginning integration job 172
Frames: 516 -> 522
Number of reflections
Partial: 45
Full: 1544
In ice ring: 0
Integrate: 1589
Total: 1589
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
517 [17 ]: *
518 [472 ]: ******************************
519 [968 ]: **************************************************************
520 [1036]: *******************************************************************
521 [620 ]: ****************************************
522 [81 ]: *****
Integrated 405 (sum) + 398 (prf) / 470 reflections on image 518
Integrated 428 (sum) + 419 (prf) / 499 reflections on image 519
Integrated 451 (sum) + 447 (prf) / 539 reflections on image 520
Integrated 61 (sum) + 60 (prf) / 81 reflections on image 521
Beginning integration job 173
Frames: 519 -> 525
Number of reflections
Partial: 45
Full: 1478
In ice ring: 0
Integrate: 1523
Total: 1523
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
520 [7 ]:
521 [411 ]: ***************************
522 [924 ]: *************************************************************
523 [1008]: *******************************************************************
524 [590 ]: ***************************************
525 [83 ]: *****
Integrated 371 (sum) + 365 (prf) / 444 reflections on image 521
Integrated 416 (sum) + 409 (prf) / 489 reflections on image 522
Integrated 437 (sum) + 434 (prf) / 507 reflections on image 523
Integrated 71 (sum) + 71 (prf) / 83 reflections on image 524
Beginning integration job 174
Frames: 522 -> 528
Number of reflections
Partial: 44
Full: 1520
In ice ring: 0
Integrate: 1564
Total: 1564
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
523 [17 ]: *
524 [466 ]: ******************************
525 [986 ]: *****************************************************************
526 [1013]: *******************************************************************
527 [569 ]: *************************************
528 [75 ]: ****
Integrated 420 (sum) + 415 (prf) / 478 reflections on image 524
Integrated 442 (sum) + 430 (prf) / 517 reflections on image 525
Integrated 422 (sum) + 421 (prf) / 494 reflections on image 526
Integrated 66 (sum) + 65 (prf) / 75 reflections on image 527
Beginning integration job 175
Frames: 525 -> 531
Number of reflections
Partial: 69
Full: 1519
In ice ring: 0
Integrate: 1588
Total: 1588
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
526 [15 ]:
527 [461 ]: *****************************
528 [983 ]: ***************************************************************
529 [1044]: *******************************************************************
530 [592 ]: *************************************
531 [101 ]: ******
Integrated 400 (sum) + 394 (prf) / 471 reflections on image 527
Integrated 443 (sum) + 439 (prf) / 525 reflections on image 528
Integrated 423 (sum) + 420 (prf) / 491 reflections on image 529
Integrated 86 (sum) + 85 (prf) / 101 reflections on image 530
Beginning integration job 176
Frames: 528 -> 534
Number of reflections
Partial: 64
Full: 1493
In ice ring: 0
Integrate: 1557
Total: 1557
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
529 [11 ]:
530 [426 ]: ***************************
531 [968 ]: *************************************************************
532 [1049]: *******************************************************************
533 [580 ]: *************************************
534 [88 ]: *****
Integrated 377 (sum) + 367 (prf) / 439 reflections on image 530
Integrated 472 (sum) + 468 (prf) / 538 reflections on image 531
Integrated 425 (sum) + 421 (prf) / 492 reflections on image 532
Integrated 74 (sum) + 74 (prf) / 88 reflections on image 533
Beginning integration job 177
Frames: 531 -> 537
Number of reflections
Partial: 53
Full: 1536
In ice ring: 0
Integrate: 1589
Total: 1589
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
532 [20 ]: *
533 [457 ]: *****************************
534 [948 ]: *************************************************************
535 [1029]: *******************************************************************
536 [616 ]: ****************************************
537 [83 ]: *****
Integrated 407 (sum) + 398 (prf) / 481 reflections on image 533
Integrated 414 (sum) + 405 (prf) / 492 reflections on image 534
Integrated 447 (sum) + 442 (prf) / 533 reflections on image 535
Integrated 75 (sum) + 73 (prf) / 83 reflections on image 536
Beginning integration job 178
Frames: 534 -> 540
Number of reflections
Partial: 51
Full: 1488
In ice ring: 0
Integrate: 1539
Total: 1539
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
535 [13 ]:
536 [419 ]: ***************************
537 [942 ]: **************************************************************
538 [1012]: *******************************************************************
539 [577 ]: **************************************
540 [83 ]: *****
Integrated 383 (sum) + 376 (prf) / 445 reflections on image 536
Integrated 434 (sum) + 430 (prf) / 517 reflections on image 537
Integrated 416 (sum) + 410 (prf) / 494 reflections on image 538
Integrated 67 (sum) + 64 (prf) / 83 reflections on image 539
Beginning integration job 179
Frames: 537 -> 543
Number of reflections
Partial: 69
Full: 1518
In ice ring: 0
Integrate: 1587
Total: 1587
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
538 [17 ]: *
539 [467 ]: ******************************
540 [979 ]: ***************************************************************
541 [1025]: *******************************************************************
542 [593 ]: **************************************
543 [97 ]: ******
Integrated 404 (sum) + 398 (prf) / 487 reflections on image 539
Integrated 435 (sum) + 428 (prf) / 507 reflections on image 540
Integrated 428 (sum) + 424 (prf) / 496 reflections on image 541
Integrated 82 (sum) + 82 (prf) / 97 reflections on image 542
Beginning integration job 180
Frames: 540 -> 546
Number of reflections
Partial: 51
Full: 1510
In ice ring: 0
Integrate: 1561
Total: 1561
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
541 [12 ]:
542 [442 ]: ****************************
543 [948 ]: *************************************************************
544 [1032]: *******************************************************************
545 [594 ]: **************************************
546 [83 ]: *****
Integrated 382 (sum) + 375 (prf) / 452 reflections on image 542
Integrated 436 (sum) + 432 (prf) / 515 reflections on image 543
Integrated 432 (sum) + 429 (prf) / 511 reflections on image 544
Integrated 70 (sum) + 70 (prf) / 83 reflections on image 545
Beginning integration job 181
Frames: 543 -> 549
Number of reflections
Partial: 55
Full: 1509
In ice ring: 0
Integrate: 1564
Total: 1564
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
544 [23 ]: *
545 [433 ]: ****************************
546 [950 ]: **************************************************************
547 [1023]: *******************************************************************
548 [595 ]: **************************************
549 [90 ]: *****
Integrated 390 (sum) + 380 (prf) / 463 reflections on image 545
Integrated 432 (sum) + 425 (prf) / 506 reflections on image 546
Integrated 423 (sum) + 420 (prf) / 505 reflections on image 547
Integrated 79 (sum) + 78 (prf) / 90 reflections on image 548
Beginning integration job 182
Frames: 546 -> 552
Number of reflections
Partial: 55
Full: 1494
In ice ring: 0
Integrate: 1549
Total: 1549
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
547 [4 ]:
548 [444 ]: ****************************
549 [960 ]: **************************************************************
550 [1028]: *******************************************************************
551 [585 ]: **************************************
552 [77 ]: *****
Integrated 388 (sum) + 380 (prf) / 451 reflections on image 548
Integrated 439 (sum) + 431 (prf) / 513 reflections on image 549
Integrated 433 (sum) + 431 (prf) / 508 reflections on image 550
Integrated 66 (sum) + 65 (prf) / 77 reflections on image 551
Beginning integration job 183
Frames: 549 -> 555
Number of reflections
Partial: 58
Full: 1502
In ice ring: 0
Integrate: 1560
Total: 1560
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
550 [20 ]: *
551 [448 ]: ****************************
552 [983 ]: ***************************************************************
553 [1037]: *******************************************************************
554 [598 ]: **************************************
555 [85 ]: *****
Integrated 385 (sum) + 380 (prf) / 460 reflections on image 551
Integrated 420 (sum) + 409 (prf) / 502 reflections on image 552
Integrated 435 (sum) + 429 (prf) / 513 reflections on image 553
Integrated 73 (sum) + 71 (prf) / 85 reflections on image 554
Beginning integration job 184
Frames: 552 -> 558
Number of reflections
Partial: 50
Full: 1540
In ice ring: 0
Integrate: 1590
Total: 1590
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
553 [12 ]:
554 [459 ]: ******************************
555 [972 ]: ****************************************************************
556 [1014]: *******************************************************************
557 [597 ]: ***************************************
558 [83 ]: *****
Integrated 426 (sum) + 421 (prf) / 494 reflections on image 554
Integrated 423 (sum) + 412 (prf) / 499 reflections on image 555
Integrated 443 (sum) + 440 (prf) / 514 reflections on image 556
Integrated 66 (sum) + 65 (prf) / 83 reflections on image 557
Beginning integration job 185
Frames: 555 -> 561
Number of reflections
Partial: 58
Full: 1498
In ice ring: 0
Integrate: 1556
Total: 1556
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
556 [13 ]:
557 [455 ]: ******************************
558 [956 ]: ***************************************************************
559 [1014]: *******************************************************************
560 [589 ]: **************************************
561 [92 ]: ******
Integrated 397 (sum) + 388 (prf) / 469 reflections on image 557
Integrated 415 (sum) + 406 (prf) / 498 reflections on image 558
Integrated 426 (sum) + 425 (prf) / 497 reflections on image 559
Integrated 80 (sum) + 78 (prf) / 92 reflections on image 560
Beginning integration job 186
Frames: 558 -> 564
Number of reflections
Partial: 50
Full: 1519
In ice ring: 0
Integrate: 1569
Total: 1569
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
559 [18 ]: *
560 [454 ]: *****************************
561 [939 ]: ************************************************************
562 [1032]: *******************************************************************
563 [617 ]: ****************************************
564 [80 ]: *****
Integrated 394 (sum) + 387 (prf) / 455 reflections on image 560
Integrated 431 (sum) + 426 (prf) / 497 reflections on image 561
Integrated 453 (sum) + 448 (prf) / 537 reflections on image 562
Integrated 67 (sum) + 66 (prf) / 80 reflections on image 563
Beginning integration job 187
Frames: 561 -> 567
Number of reflections
Partial: 46
Full: 1507
In ice ring: 0
Integrate: 1553
Total: 1553
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
562 [11 ]:
563 [441 ]: *****************************
564 [948 ]: ***************************************************************
565 [1008]: *******************************************************************
566 [601 ]: ***************************************
567 [86 ]: *****
Integrated 393 (sum) + 380 (prf) / 462 reflections on image 563
Integrated 408 (sum) + 403 (prf) / 490 reflections on image 564
Integrated 439 (sum) + 433 (prf) / 515 reflections on image 565
Integrated 71 (sum) + 70 (prf) / 86 reflections on image 566
Beginning integration job 188
Frames: 564 -> 570
Number of reflections
Partial: 33
Full: 1491
In ice ring: 0
Integrate: 1524
Total: 1524
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
565 [18 ]: *
566 [437]: ******************************
567 [931]: ****************************************************************
568 [985]: ********************************************************************
569 [578]: ***************************************
570 [64 ]: ****
Integrated 400 (sum) + 396 (prf) / 451 reflections on image 566
Integrated 406 (sum) + 400 (prf) / 495 reflections on image 567
Integrated 438 (sum) + 435 (prf) / 514 reflections on image 568
Integrated 54 (sum) + 54 (prf) / 64 reflections on image 569
Beginning integration job 189
Frames: 567 -> 573
Number of reflections
Partial: 47
Full: 1535
In ice ring: 0
Integrate: 1582
Total: 1582
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
568 [26 ]: *
569 [474 ]: ******************************
570 [983 ]: ****************************************************************
571 [1026]: *******************************************************************
572 [586 ]: **************************************
573 [85 ]: *****
Integrated 392 (sum) + 383 (prf) / 470 reflections on image 569
Integrated 446 (sum) + 436 (prf) / 526 reflections on image 570
Integrated 427 (sum) + 420 (prf) / 501 reflections on image 571
Integrated 71 (sum) + 70 (prf) / 85 reflections on image 572
Beginning integration job 190
Frames: 570 -> 576
Number of reflections
Partial: 47
Full: 1500
In ice ring: 0
Integrate: 1547
Total: 1547
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
571 [16 ]: *
572 [443 ]: *****************************
573 [957 ]: ***************************************************************
574 [1010]: *******************************************************************
575 [578 ]: **************************************
576 [90 ]: *****
Integrated 399 (sum) + 393 (prf) / 467 reflections on image 572
Integrated 416 (sum) + 408 (prf) / 502 reflections on image 573
Integrated 401 (sum) + 395 (prf) / 488 reflections on image 574
Integrated 84 (sum) + 84 (prf) / 90 reflections on image 575
Beginning integration job 191
Frames: 573 -> 579
Number of reflections
Partial: 56
Full: 1511
In ice ring: 0
Integrate: 1567
Total: 1567
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
574 [15 ]:
575 [463 ]: ******************************
576 [932 ]: **************************************************************
577 [1007]: *******************************************************************
578 [603 ]: ****************************************
579 [94 ]: ******
Integrated 424 (sum) + 416 (prf) / 485 reflections on image 575
Integrated 413 (sum) + 405 (prf) / 479 reflections on image 576
Integrated 431 (sum) + 429 (prf) / 509 reflections on image 577
Integrated 82 (sum) + 82 (prf) / 94 reflections on image 578
Beginning integration job 192
Frames: 576 -> 582
Number of reflections
Partial: 56
Full: 1521
In ice ring: 0
Integrate: 1577
Total: 1577
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
577 [13 ]:
578 [436 ]: ****************************
579 [967 ]: ***************************************************************
580 [1013]: *******************************************************************
581 [606 ]: ****************************************
582 [89 ]: *****
Integrated 391 (sum) + 387 (prf) / 457 reflections on image 578
Integrated 443 (sum) + 438 (prf) / 514 reflections on image 579
Integrated 454 (sum) + 448 (prf) / 517 reflections on image 580
Integrated 82 (sum) + 81 (prf) / 89 reflections on image 581
Beginning integration job 193
Frames: 579 -> 585
Number of reflections
Partial: 59
Full: 1506
In ice ring: 0
Integrate: 1565
Total: 1565
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
580 [5 ]:
581 [429 ]: ***************************
582 [945 ]: *************************************************************
583 [1029]: *******************************************************************
584 [596 ]: **************************************
585 [92 ]: *****
Integrated 371 (sum) + 363 (prf) / 443 reflections on image 581
Integrated 442 (sum) + 433 (prf) / 526 reflections on image 582
Integrated 420 (sum) + 414 (prf) / 504 reflections on image 583
Integrated 79 (sum) + 78 (prf) / 92 reflections on image 584
Beginning integration job 194
Frames: 582 -> 588
Number of reflections
Partial: 43
Full: 1494
In ice ring: 0
Integrate: 1537
Total: 1537
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
583 [15 ]:
584 [437 ]: ****************************
585 [930 ]: *************************************************************
586 [1010]: *******************************************************************
587 [592 ]: ***************************************
588 [79 ]: *****
Integrated 399 (sum) + 390 (prf) / 458 reflections on image 584
Integrated 416 (sum) + 414 (prf) / 487 reflections on image 585
Integrated 442 (sum) + 433 (prf) / 513 reflections on image 586
Integrated 65 (sum) + 65 (prf) / 79 reflections on image 587
Beginning integration job 195
Frames: 585 -> 591
Number of reflections
Partial: 52
Full: 1505
In ice ring: 0
Integrate: 1557
Total: 1557
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
586 [10 ]:
587 [458 ]: ******************************
588 [960 ]: ***************************************************************
589 [1013]: *******************************************************************
590 [578 ]: **************************************
591 [82 ]: *****
Integrated 400 (sum) + 394 (prf) / 471 reflections on image 587
Integrated 439 (sum) + 430 (prf) / 508 reflections on image 588
Integrated 419 (sum) + 416 (prf) / 496 reflections on image 589
Integrated 72 (sum) + 69 (prf) / 82 reflections on image 590
Beginning integration job 196
Frames: 588 -> 594
Number of reflections
Partial: 53
Full: 1524
In ice ring: 0
Integrate: 1577
Total: 1577
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
589 [14 ]:
590 [475 ]: *******************************
591 [966 ]: ***************************************************************
592 [1012]: *******************************************************************
593 [594 ]: ***************************************
594 [70 ]: ****
Integrated 432 (sum) + 425 (prf) / 491 reflections on image 590
Integrated 413 (sum) + 409 (prf) / 492 reflections on image 591
Integrated 445 (sum) + 439 (prf) / 524 reflections on image 592
Integrated 62 (sum) + 62 (prf) / 70 reflections on image 593
Beginning integration job 197
Frames: 591 -> 597
Number of reflections
Partial: 57
Full: 1518
In ice ring: 0
Integrate: 1575
Total: 1575
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
592 [6 ]:
593 [438 ]: ****************************
594 [956 ]: **************************************************************
595 [1024]: *******************************************************************
596 [608 ]: ***************************************
597 [99 ]: ******
Integrated 407 (sum) + 394 (prf) / 476 reflections on image 593
Integrated 418 (sum) + 409 (prf) / 491 reflections on image 594
Integrated 433 (sum) + 429 (prf) / 509 reflections on image 595
Integrated 80 (sum) + 78 (prf) / 99 reflections on image 596
Beginning integration job 198
Frames: 594 -> 600
Number of reflections
Partial: 69
Full: 1485
In ice ring: 0
Integrate: 1554
Total: 1554
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
595 [10 ]:
596 [426 ]: ***************************
597 [949 ]: *************************************************************
598 [1031]: *******************************************************************
599 [574 ]: *************************************
600 [99 ]: ******
Integrated 393 (sum) + 386 (prf) / 451 reflections on image 596
Integrated 450 (sum) + 441 (prf) / 529 reflections on image 597
Integrated 402 (sum) + 397 (prf) / 475 reflections on image 598
Integrated 82 (sum) + 78 (prf) / 99 reflections on image 599
Beginning integration job 199
Frames: 597 -> 603
Number of reflections
Partial: 56
Full: 1519
In ice ring: 0
Integrate: 1575
Total: 1575
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
598 [16 ]: *
599 [470 ]: ******************************
600 [944 ]: *************************************************************
601 [1024]: *******************************************************************
602 [584 ]: **************************************
603 [83 ]: *****
Integrated 407 (sum) + 402 (prf) / 469 reflections on image 599
Integrated 453 (sum) + 444 (prf) / 522 reflections on image 600
Integrated 438 (sum) + 435 (prf) / 501 reflections on image 601
Integrated 68 (sum) + 68 (prf) / 83 reflections on image 602
Beginning integration job 200
Frames: 600 -> 606
Number of reflections
Partial: 62
Full: 1518
In ice ring: 0
Integrate: 1580
Total: 1580
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
601 [16 ]: *
602 [450 ]: *****************************
603 [943 ]: **************************************************************
604 [1013]: *******************************************************************
605 [613 ]: ****************************************
606 [83 ]: *****
Integrated 420 (sum) + 415 (prf) / 479 reflections on image 602
Integrated 410 (sum) + 399 (prf) / 488 reflections on image 603
Integrated 440 (sum) + 434 (prf) / 530 reflections on image 604
Integrated 70 (sum) + 70 (prf) / 83 reflections on image 605
Beginning integration job 201
Frames: 603 -> 609
Number of reflections
Partial: 52
Full: 1501
In ice ring: 0
Integrate: 1553
Total: 1553
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
604 [15 ]:
605 [460 ]: ******************************
606 [956 ]: ***************************************************************
607 [1007]: *******************************************************************
608 [581 ]: **************************************
609 [90 ]: *****
Integrated 396 (sum) + 387 (prf) / 475 reflections on image 605
Integrated 422 (sum) + 411 (prf) / 497 reflections on image 606
Integrated 413 (sum) + 409 (prf) / 491 reflections on image 607
Integrated 74 (sum) + 74 (prf) / 90 reflections on image 608
Beginning integration job 202
Frames: 606 -> 612
Number of reflections
Partial: 46
Full: 1522
In ice ring: 0
Integrate: 1568
Total: 1568
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
607 [14 ]:
608 [448 ]: *****************************
609 [984 ]: *****************************************************************
610 [1001]: *******************************************************************
611 [588 ]: ***************************************
612 [75 ]: *****
Integrated 414 (sum) + 406 (prf) / 484 reflections on image 608
Integrated 427 (sum) + 418 (prf) / 496 reflections on image 609
Integrated 443 (sum) + 436 (prf) / 513 reflections on image 610
Integrated 65 (sum) + 63 (prf) / 75 reflections on image 611
Beginning integration job 203
Frames: 609 -> 615
Number of reflections
Partial: 41
Full: 1507
In ice ring: 0
Integrate: 1548
Total: 1548
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
610 [13 ]:
611 [433 ]: ****************************
612 [952 ]: **************************************************************
613 [1014]: *******************************************************************
614 [579 ]: **************************************
615 [74 ]: ****
Integrated 398 (sum) + 387 (prf) / 459 reflections on image 611
Integrated 437 (sum) + 433 (prf) / 510 reflections on image 612
Integrated 435 (sum) + 432 (prf) / 505 reflections on image 613
Integrated 66 (sum) + 65 (prf) / 74 reflections on image 614
Beginning integration job 204
Frames: 612 -> 618
Number of reflections
Partial: 65
Full: 1494
In ice ring: 0
Integrate: 1559
Total: 1559
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
613 [19 ]: *
614 [429 ]: ***************************
615 [948 ]: *************************************************************
616 [1039]: *******************************************************************
617 [606 ]: ***************************************
618 [92 ]: *****
Integrated 398 (sum) + 388 (prf) / 452 reflections on image 614
Integrated 426 (sum) + 416 (prf) / 501 reflections on image 615
Integrated 433 (sum) + 426 (prf) / 514 reflections on image 616
Integrated 81 (sum) + 78 (prf) / 92 reflections on image 617
Beginning integration job 205
Frames: 615 -> 621
Number of reflections
Partial: 56
Full: 1542
In ice ring: 0
Integrate: 1598
Total: 1598
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
616 [13 ]:
617 [458 ]: *****************************
618 [947 ]: ************************************************************
619 [1050]: *******************************************************************
620 [618 ]: ***************************************
621 [81 ]: *****
Integrated 387 (sum) + 381 (prf) / 470 reflections on image 617
Integrated 436 (sum) + 431 (prf) / 510 reflections on image 618
Integrated 458 (sum) + 450 (prf) / 537 reflections on image 619
Integrated 67 (sum) + 67 (prf) / 81 reflections on image 620
Beginning integration job 206
Frames: 618 -> 624
Number of reflections
Partial: 55
Full: 1469
In ice ring: 0
Integrate: 1524
Total: 1524
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
619 [14 ]:
620 [433 ]: ****************************
621 [917 ]: *************************************************************
622 [1004]: *******************************************************************
623 [575 ]: **************************************
624 [85 ]: *****
Integrated 381 (sum) + 371 (prf) / 445 reflections on image 620
Integrated 429 (sum) + 423 (prf) / 504 reflections on image 621
Integrated 422 (sum) + 417 (prf) / 490 reflections on image 622
Integrated 68 (sum) + 68 (prf) / 85 reflections on image 623
Beginning integration job 207
Frames: 621 -> 627
Number of reflections
Partial: 54
Full: 1511
In ice ring: 0
Integrate: 1565
Total: 1565
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
622 [12 ]:
623 [462 ]: ******************************
624 [951 ]: *************************************************************
625 [1029]: *******************************************************************
626 [611 ]: ***************************************
627 [94 ]: ******
Integrated 400 (sum) + 397 (prf) / 463 reflections on image 623
Integrated 406 (sum) + 400 (prf) / 491 reflections on image 624
Integrated 444 (sum) + 438 (prf) / 517 reflections on image 625
Integrated 80 (sum) + 78 (prf) / 94 reflections on image 626
Beginning integration job 208
Frames: 624 -> 630
Number of reflections
Partial: 60
Full: 1538
In ice ring: 0
Integrate: 1598
Total: 1598
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
625 [11 ]:
626 [452 ]: ****************************
627 [984 ]: **************************************************************
628 [1058]: *******************************************************************
629 [580 ]: ************************************
630 [83 ]: *****
Integrated 389 (sum) + 384 (prf) / 458 reflections on image 626
Integrated 468 (sum) + 453 (prf) / 560 reflections on image 627
Integrated 424 (sum) + 421 (prf) / 497 reflections on image 628
Integrated 74 (sum) + 73 (prf) / 83 reflections on image 629
Beginning integration job 209
Frames: 627 -> 633
Number of reflections
Partial: 47
Full: 1524
In ice ring: 0
Integrate: 1571
Total: 1571
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
628 [18 ]: *
629 [431 ]: ***************************
630 [953 ]: ************************************************************
631 [1052]: *******************************************************************
632 [616 ]: ***************************************
633 [77 ]: ****
Integrated 378 (sum) + 367 (prf) / 433 reflections on image 629
Integrated 435 (sum) + 429 (prf) / 522 reflections on image 630
Integrated 459 (sum) + 459 (prf) / 539 reflections on image 631
Integrated 68 (sum) + 68 (prf) / 77 reflections on image 632
Beginning integration job 210
Frames: 630 -> 636
Number of reflections
Partial: 40
Full: 1500
In ice ring: 0
Integrate: 1540
Total: 1540
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
631 [14 ]:
632 [406 ]: **************************
633 [904 ]: **********************************************************
634 [1037]: *******************************************************************
635 [606 ]: ***************************************
636 [66 ]: ****
Integrated 355 (sum) + 349 (prf) / 417 reflections on image 632
Integrated 451 (sum) + 441 (prf) / 517 reflections on image 633
Integrated 465 (sum) + 461 (prf) / 540 reflections on image 634
Integrated 53 (sum) + 53 (prf) / 66 reflections on image 635
Beginning integration job 211
Frames: 633 -> 639
Number of reflections
Partial: 46
Full: 1482
In ice ring: 0
Integrate: 1528
Total: 1528
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
634 [15 ]:
635 [411 ]: **************************
636 [938 ]: *************************************************************
637 [1022]: *******************************************************************
638 [568 ]: *************************************
639 [80 ]: *****
Integrated 368 (sum) + 355 (prf) / 435 reflections on image 635
Integrated 446 (sum) + 442 (prf) / 525 reflections on image 636
Integrated 425 (sum) + 419 (prf) / 488 reflections on image 637
Integrated 68 (sum) + 66 (prf) / 80 reflections on image 638
Beginning integration job 212
Frames: 636 -> 642
Number of reflections
Partial: 58
Full: 1495
In ice ring: 0
Integrate: 1553
Total: 1553
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
637 [12 ]:
638 [435 ]: ****************************
639 [977 ]: ***************************************************************
640 [1030]: *******************************************************************
641 [558 ]: ************************************
642 [75 ]: ****
Integrated 371 (sum) + 363 (prf) / 453 reflections on image 638
Integrated 471 (sum) + 462 (prf) / 542 reflections on image 639
Integrated 419 (sum) + 416 (prf) / 483 reflections on image 640
Integrated 66 (sum) + 64 (prf) / 75 reflections on image 641
Beginning integration job 213
Frames: 639 -> 645
Number of reflections
Partial: 54
Full: 1515
In ice ring: 0
Integrate: 1569
Total: 1569
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
640 [12 ]:
641 [469 ]: ******************************
642 [968 ]: ***************************************************************
643 [1025]: *******************************************************************
644 [581 ]: *************************************
645 [92 ]: ******
Integrated 406 (sum) + 402 (prf) / 473 reflections on image 641
Integrated 421 (sum) + 409 (prf) / 515 reflections on image 642
Integrated 422 (sum) + 415 (prf) / 489 reflections on image 643
Integrated 73 (sum) + 71 (prf) / 92 reflections on image 644
Beginning integration job 214
Frames: 642 -> 648
Number of reflections
Partial: 55
Full: 1517
In ice ring: 0
Integrate: 1572
Total: 1572
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
643 [19 ]: *
644 [449 ]: *****************************
645 [979 ]: ****************************************************************
646 [1020]: *******************************************************************
647 [580 ]: **************************************
648 [85 ]: *****
Integrated 416 (sum) + 409 (prf) / 478 reflections on image 644
Integrated 425 (sum) + 417 (prf) / 514 reflections on image 645
Integrated 411 (sum) + 407 (prf) / 495 reflections on image 646
Integrated 70 (sum) + 69 (prf) / 85 reflections on image 647
Beginning integration job 215
Frames: 645 -> 651
Number of reflections
Partial: 45
Full: 1483
In ice ring: 0
Integrate: 1528
Total: 1528
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
646 [11 ]:
647 [427]: *****************************
648 [931]: ***************************************************************
649 [995]: ********************************************************************
650 [564]: **************************************
651 [70 ]: ****
Integrated 400 (sum) + 392 (prf) / 450 reflections on image 647
Integrated 440 (sum) + 431 (prf) / 514 reflections on image 648
Integrated 419 (sum) + 417 (prf) / 494 reflections on image 649
Integrated 62 (sum) + 61 (prf) / 70 reflections on image 650
Beginning integration job 216
Frames: 648 -> 654
Number of reflections
Partial: 40
Full: 1513
In ice ring: 0
Integrate: 1553
Total: 1553
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
649 [18 ]: *
650 [484 ]: ********************************
651 [983 ]: *****************************************************************
652 [1002]: *******************************************************************
653 [570 ]: **************************************
654 [81 ]: *****
Integrated 410 (sum) + 402 (prf) / 481 reflections on image 650
Integrated 438 (sum) + 429 (prf) / 502 reflections on image 651
Integrated 420 (sum) + 416 (prf) / 489 reflections on image 652
Integrated 70 (sum) + 70 (prf) / 81 reflections on image 653
Beginning integration job 217
Frames: 651 -> 657
Number of reflections
Partial: 42
Full: 1517
In ice ring: 0
Integrate: 1559
Total: 1559
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
652 [16 ]: *
653 [460 ]: ******************************
654 [974 ]: ****************************************************************
655 [1006]: *******************************************************************
656 [576 ]: **************************************
657 [75 ]: ****
Integrated 393 (sum) + 382 (prf) / 468 reflections on image 653
Integrated 447 (sum) + 440 (prf) / 515 reflections on image 654
Integrated 421 (sum) + 418 (prf) / 501 reflections on image 655
Integrated 58 (sum) + 58 (prf) / 75 reflections on image 656
Beginning integration job 218
Frames: 654 -> 660
Number of reflections
Partial: 46
Full: 1525
In ice ring: 0
Integrate: 1571
Total: 1571
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
655 [18 ]: *
656 [446 ]: ****************************
657 [951 ]: *************************************************************
658 [1034]: *******************************************************************
659 [583 ]: *************************************
660 [82 ]: *****
Integrated 389 (sum) + 381 (prf) / 452 reflections on image 656
Integrated 459 (sum) + 452 (prf) / 536 reflections on image 657
Integrated 420 (sum) + 415 (prf) / 501 reflections on image 658
Integrated 70 (sum) + 69 (prf) / 82 reflections on image 659
Beginning integration job 219
Frames: 657 -> 663
Number of reflections
Partial: 59
Full: 1510
In ice ring: 0
Integrate: 1569
Total: 1569
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
658 [14 ]:
659 [449 ]: ****************************
660 [956 ]: *************************************************************
661 [1047]: *******************************************************************
662 [612 ]: ***************************************
663 [96 ]: ******
Integrated 364 (sum) + 355 (prf) / 443 reflections on image 659
Integrated 456 (sum) + 450 (prf) / 514 reflections on image 660
Integrated 455 (sum) + 451 (prf) / 516 reflections on image 661
Integrated 79 (sum) + 77 (prf) / 96 reflections on image 662
Beginning integration job 220
Frames: 660 -> 666
Number of reflections
Partial: 64
Full: 1507
In ice ring: 0
Integrate: 1571
Total: 1571
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
661 [17 ]: *
662 [438 ]: ****************************
663 [939 ]: *************************************************************
664 [1019]: *******************************************************************
665 [616 ]: ****************************************
666 [81 ]: *****
Integrated 407 (sum) + 392 (prf) / 470 reflections on image 662
Integrated 418 (sum) + 410 (prf) / 485 reflections on image 663
Integrated 459 (sum) + 455 (prf) / 535 reflections on image 664
Integrated 64 (sum) + 61 (prf) / 81 reflections on image 665
Beginning integration job 221
Frames: 663 -> 669
Number of reflections
Partial: 50
Full: 1474
In ice ring: 0
Integrate: 1524
Total: 1524
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
664 [13 ]:
665 [452 ]: ******************************
666 [942 ]: **************************************************************
667 [1003]: *******************************************************************
668 [561 ]: *************************************
669 [74 ]: ****
Integrated 393 (sum) + 388 (prf) / 454 reflections on image 665
Integrated 435 (sum) + 430 (prf) / 509 reflections on image 666
Integrated 423 (sum) + 411 (prf) / 487 reflections on image 667
Integrated 59 (sum) + 59 (prf) / 74 reflections on image 668
Beginning integration job 222
Frames: 666 -> 672
Number of reflections
Partial: 52
Full: 1543
In ice ring: 0
Integrate: 1595
Total: 1595
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
667 [14 ]:
668 [481 ]: ********************************
669 [1004]: *******************************************************************
670 [1002]: ******************************************************************
671 [576 ]: **************************************
672 [84 ]: *****
Integrated 432 (sum) + 420 (prf) / 510 reflections on image 668
Integrated 436 (sum) + 432 (prf) / 509 reflections on image 669
Integrated 415 (sum) + 414 (prf) / 492 reflections on image 670
Integrated 72 (sum) + 69 (prf) / 84 reflections on image 671
Beginning integration job 223
Frames: 669 -> 675
Number of reflections
Partial: 54
Full: 1518
In ice ring: 0
Integrate: 1572
Total: 1572
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
670 [14 ]:
671 [410 ]: *************************
672 [959 ]: ************************************************************
673 [1062]: *******************************************************************
674 [599 ]: *************************************
675 [92 ]: *****
Integrated 374 (sum) + 368 (prf) / 423 reflections on image 671
Integrated 483 (sum) + 474 (prf) / 550 reflections on image 672
Integrated 426 (sum) + 422 (prf) / 507 reflections on image 673
Integrated 80 (sum) + 78 (prf) / 92 reflections on image 674
Beginning integration job 224
Frames: 672 -> 678
Number of reflections
Partial: 40
Full: 1526
In ice ring: 0
Integrate: 1566
Total: 1566
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
673 [14 ]:
674 [417 ]: **************************
675 [946 ]: ************************************************************
676 [1043]: *******************************************************************
677 [611 ]: ***************************************
678 [74 ]: ****
Integrated 377 (sum) + 369 (prf) / 449 reflections on image 674
Integrated 431 (sum) + 423 (prf) / 506 reflections on image 675
Integrated 456 (sum) + 452 (prf) / 537 reflections on image 676
Integrated 63 (sum) + 62 (prf) / 74 reflections on image 677
Beginning integration job 225
Frames: 675 -> 681
Number of reflections
Partial: 51
Full: 1489
In ice ring: 0
Integrate: 1540
Total: 1540
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
676 [6 ]:
677 [415 ]: ***************************
678 [912 ]: ***********************************************************
679 [1028]: *******************************************************************
680 [598 ]: **************************************
681 [99 ]: ******
Integrated 356 (sum) + 350 (prf) / 417 reflections on image 677
Integrated 444 (sum) + 434 (prf) / 525 reflections on image 678
Integrated 434 (sum) + 428 (prf) / 499 reflections on image 679
Integrated 80 (sum) + 79 (prf) / 99 reflections on image 680
Beginning integration job 226
Frames: 678 -> 684
Number of reflections
Partial: 51
Full: 1519
In ice ring: 0
Integrate: 1570
Total: 1570
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
679 [11 ]:
680 [422 ]: ***************************
681 [948 ]: ************************************************************
682 [1042]: *******************************************************************
683 [607 ]: ***************************************
684 [85 ]: *****
Integrated 365 (sum) + 356 (prf) / 436 reflections on image 680
Integrated 440 (sum) + 436 (prf) / 527 reflections on image 681
Integrated 427 (sum) + 424 (prf) / 522 reflections on image 682
Integrated 73 (sum) + 70 (prf) / 85 reflections on image 683
Beginning integration job 227
Frames: 681 -> 687
Number of reflections
Partial: 43
Full: 1489
In ice ring: 0
Integrate: 1532
Total: 1532
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
682 [18 ]: *
683 [427 ]: ***************************
684 [894 ]: *********************************************************
685 [1040]: *******************************************************************
686 [592 ]: **************************************
687 [81 ]: *****
Integrated 358 (sum) + 347 (prf) / 420 reflections on image 683
Integrated 444 (sum) + 440 (prf) / 520 reflections on image 684
Integrated 433 (sum) + 430 (prf) / 511 reflections on image 685
Integrated 72 (sum) + 72 (prf) / 81 reflections on image 686
Beginning integration job 228
Frames: 684 -> 690
Number of reflections
Partial: 61
Full: 1514
In ice ring: 0
Integrate: 1575
Total: 1575
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
685 [23 ]: *
686 [451 ]: ****************************
687 [951 ]: ************************************************************
688 [1050]: *******************************************************************
689 [608 ]: **************************************
690 [91 ]: *****
Integrated 387 (sum) + 376 (prf) / 453 reflections on image 686
Integrated 429 (sum) + 420 (prf) / 514 reflections on image 687
Integrated 431 (sum) + 421 (prf) / 517 reflections on image 688
Integrated 78 (sum) + 77 (prf) / 91 reflections on image 689
Beginning integration job 229
Frames: 687 -> 693
Number of reflections
Partial: 50
Full: 1518
In ice ring: 0
Integrate: 1568
Total: 1568
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
688 [16 ]: *
689 [479]: *********************************
690 [980]: ********************************************************************
691 [975]: *******************************************************************
692 [565]: ***************************************
693 [85 ]: *****
Integrated 449 (sum) + 436 (prf) / 514 reflections on image 689
Integrated 434 (sum) + 425 (prf) / 489 reflections on image 690
Integrated 395 (sum) + 393 (prf) / 480 reflections on image 691
Integrated 74 (sum) + 72 (prf) / 85 reflections on image 692
Beginning integration job 230
Frames: 690 -> 696
Number of reflections
Partial: 47
Full: 1491
In ice ring: 0
Integrate: 1538
Total: 1538
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
691 [15 ]:
692 [426 ]: ***************************
693 [937 ]: ************************************************************
694 [1030]: *******************************************************************
695 [589 ]: **************************************
696 [76 ]: ****
Integrated 380 (sum) + 372 (prf) / 437 reflections on image 692
Integrated 439 (sum) + 433 (prf) / 512 reflections on image 693
Integrated 433 (sum) + 430 (prf) / 513 reflections on image 694
Integrated 65 (sum) + 63 (prf) / 76 reflections on image 695
Beginning integration job 231
Frames: 693 -> 699
Number of reflections
Partial: 54
Full: 1526
In ice ring: 0
Integrate: 1580
Total: 1580
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
694 [14 ]:
695 [468 ]: ******************************
696 [988 ]: ***************************************************************
697 [1036]: *******************************************************************
698 [572 ]: ************************************
699 [84 ]: *****
Integrated 407 (sum) + 398 (prf) / 479 reflections on image 695
Integrated 440 (sum) + 433 (prf) / 529 reflections on image 696
Integrated 413 (sum) + 406 (prf) / 488 reflections on image 697
Integrated 67 (sum) + 66 (prf) / 84 reflections on image 698
Beginning integration job 232
Frames: 696 -> 702
Number of reflections
Partial: 55
Full: 1509
In ice ring: 0
Integrate: 1564
Total: 1564
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
697 [11 ]:
698 [439 ]: *****************************
699 [949 ]: ***************************************************************
700 [1003]: *******************************************************************
701 [588 ]: ***************************************
702 [87 ]: *****
Integrated 403 (sum) + 395 (prf) / 463 reflections on image 698
Integrated 424 (sum) + 421 (prf) / 513 reflections on image 699
Integrated 432 (sum) + 426 (prf) / 501 reflections on image 700
Integrated 73 (sum) + 71 (prf) / 87 reflections on image 701
Beginning integration job 233
Frames: 699 -> 705
Number of reflections
Partial: 55
Full: 1504
In ice ring: 0
Integrate: 1559
Total: 1559
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
700 [14 ]:
701 [443 ]: ****************************
702 [975 ]: **************************************************************
703 [1041]: *******************************************************************
704 [578 ]: *************************************
705 [80 ]: *****
Integrated 390 (sum) + 379 (prf) / 437 reflections on image 701
Integrated 468 (sum) + 457 (prf) / 544 reflections on image 702
Integrated 428 (sum) + 421 (prf) / 498 reflections on image 703
Integrated 69 (sum) + 68 (prf) / 80 reflections on image 704
Beginning integration job 234
Frames: 702 -> 708
Number of reflections
Partial: 64
Full: 1510
In ice ring: 0
Integrate: 1574
Total: 1574
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
703 [14 ]:
704 [445 ]: ****************************
705 [953 ]: *************************************************************
706 [1045]: *******************************************************************
707 [602 ]: **************************************
708 [104 ]: ******
Integrated 397 (sum) + 389 (prf) / 460 reflections on image 704
Integrated 431 (sum) + 418 (prf) / 512 reflections on image 705
Integrated 405 (sum) + 397 (prf) / 498 reflections on image 706
Integrated 87 (sum) + 85 (prf) / 104 reflections on image 707
Beginning integration job 235
Frames: 705 -> 711
Number of reflections
Partial: 57
Full: 1525
In ice ring: 0
Integrate: 1582
Total: 1582
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
706 [15 ]:
707 [439 ]: ***************************
708 [967 ]: *************************************************************
709 [1060]: *******************************************************************
710 [594 ]: *************************************
711 [100 ]: ******
Integrated 404 (sum) + 402 (prf) / 455 reflections on image 707
Integrated 453 (sum) + 446 (prf) / 533 reflections on image 708
Integrated 418 (sum) + 412 (prf) / 494 reflections on image 709
Integrated 86 (sum) + 86 (prf) / 100 reflections on image 710
Beginning integration job 236
Frames: 708 -> 714
Number of reflections
Partial: 47
Full: 1489
In ice ring: 0
Integrate: 1536
Total: 1536
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
709 [7 ]:
710 [432 ]: ****************************
711 [928 ]: **************************************************************
712 [1000]: *******************************************************************
713 [581 ]: **************************************
714 [79 ]: *****
Integrated 379 (sum) + 378 (prf) / 458 reflections on image 710
Integrated 422 (sum) + 414 (prf) / 497 reflections on image 711
Integrated 425 (sum) + 420 (prf) / 502 reflections on image 712
Integrated 69 (sum) + 68 (prf) / 79 reflections on image 713
Beginning integration job 237
Frames: 711 -> 717
Number of reflections
Partial: 47
Full: 1510
In ice ring: 0
Integrate: 1557
Total: 1557
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
712 [19 ]: *
713 [440 ]: ****************************
714 [951 ]: *************************************************************
715 [1042]: *******************************************************************
716 [594 ]: **************************************
717 [84 ]: *****
Integrated 378 (sum) + 373 (prf) / 437 reflections on image 713
Integrated 450 (sum) + 442 (prf) / 526 reflections on image 714
Integrated 442 (sum) + 437 (prf) / 510 reflections on image 715
Integrated 70 (sum) + 68 (prf) / 84 reflections on image 716
Beginning integration job 238
Frames: 714 -> 720
Number of reflections
Partial: 1265
Full: 1976
In ice ring: 0
Integrate: 3241
Total: 3241
The following histogram shows the number of reflections predicted
to have all or part of their intensity on each frame.
715 [14 ]:
716 [465 ]: *****************
717 [1036]: ****************************************
718 [1077]: *****************************************
719 [940 ]: ************************************
720 [1731]: *******************************************************************
Integrated 388 (sum) + 385 (prf) / 449 reflections on image 716
Integrated 500 (sum) + 496 (prf) / 596 reflections on image 717
Integrated 399 (sum) + 395 (prf) / 465 reflections on image 718
Integrated 1481 (sum) + 596 (prf) / 1731 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 | 297 | 1192 | 0 | 0 | 1269 | 460 | 0.76 | 3.87 | 9.83 | 0.75 | 0.64 |
| 0 | 1 | 475 | 14 | 0 | 0 | 419 | 413 | 0.73 | 7.05 | 7.13 | 0.73 | 0.43 |
| 0 | 2 | 493 | 4 | 0 | 0 | 427 | 423 | 0.71 | 6.43 | 6.53 | 0.72 | 0.43 |
| 0 | 3 | 507 | 4 | 0 | 0 | 428 | 423 | 0.72 | 7.37 | 7.67 | 0.72 | 0.43 |
| 0 | 4 | 522 | 24 | 0 | 0 | 459 | 454 | 0.77 | 8.35 | 8.43 | 0.72 | 0.44 |
| 0 | 5 | 504 | 17 | 0 | 0 | 448 | 443 | 0.66 | 6.59 | 6.65 | 0.72 | 0.45 |
| 0 | 6 | 530 | 16 | 0 | 0 | 462 | 459 | 0.78 | 8.68 | 8.72 | 0.72 | 0.43 |
| 0 | 7 | 542 | 24 | 0 | 0 | 474 | 467 | 0.73 | 7.48 | 7.57 | 0.72 | 0.45 |
| 0 | 8 | 496 | 21 | 0 | 0 | 433 | 428 | 0.67 | 7.64 | 7.84 | 0.71 | 0.42 |
| 0 | 9 | 475 | 23 | 0 | 0 | 418 | 407 | 0.72 | 8.94 | 10.1 | 0.72 | 0.44 |
| 0 | 10 | 461 | 41 | 0 | 0 | 420 | 414 | 0.72 | 7.13 | 7.46 | 0.71 | 0.45 |
| 0 | 11 | 514 | 13 | 0 | 0 | 450 | 446 | 0.74 | 7.8 | 7.94 | 0.73 | 0.44 |
| 0 | 12 | 508 | 14 | 0 | 0 | 433 | 428 | 0.75 | 7.33 | 7.43 | 0.73 | 0.45 |
| 0 | 13 | 494 | 36 | 0 | 0 | 449 | 443 | 0.75 | 8.73 | 8.98 | 0.73 | 0.43 |
| 0 | 14 | 493 | 25 | 0 | 0 | 435 | 428 | 0.68 | 6.79 | 6.9 | 0.71 | 0.46 |
| 0 | 15 | 514 | 19 | 0 | 0 | 458 | 452 | 0.69 | 6.73 | 6.88 | 0.71 | 0.47 |
| 0 | 16 | 518 | 31 | 0 | 0 | 451 | 447 | 0.65 | 6.47 | 6.64 | 0.72 | 0.44 |
| 0 | 17 | 510 | 14 | 0 | 0 | 439 | 430 | 0.73 | 6.88 | 7.02 | 0.72 | 0.42 |
| 0 | 18 | 486 | 16 | 0 | 0 | 412 | 407 | 0.7 | 6.57 | 6.71 | 0.71 | 0.45 |
| 0 | 19 | 518 | 41 | 0 | 0 | 479 | 475 | 0.72 | 7.44 | 7.99 | 0.7 | 0.47 |
| 0 | 20 | 507 | 18 | 0 | 0 | 446 | 433 | 0.72 | 8.16 | 8.46 | 0.72 | 0.45 |
| 0 | 21 | 511 | 14 | 0 | 0 | 449 | 444 | 0.75 | 7.38 | 7.54 | 0.72 | 0.45 |
| 0 | 22 | 477 | 28 | 0 | 0 | 436 | 431 | 0.63 | 6.86 | 6.96 | 0.71 | 0.45 |
| 0 | 23 | 492 | 21 | 0 | 0 | 425 | 420 | 0.7 | 7.41 | 7.61 | 0.72 | 0.45 |
| 0 | 24 | 505 | 20 | 0 | 0 | 453 | 440 | 0.62 | 6.4 | 6.54 | 0.7 | 0.46 |
| 0 | 25 | 519 | 56 | 0 | 0 | 496 | 487 | 0.67 | 7.46 | 7.96 | 0.71 | 0.46 |
| 0 | 26 | 493 | 17 | 0 | 0 | 441 | 436 | 0.74 | 8.02 | 8.16 | 0.73 | 0.45 |
| 0 | 27 | 498 | 24 | 0 | 0 | 447 | 439 | 0.68 | 7.25 | 7.41 | 0.71 | 0.44 |
| 0 | 28 | 516 | 27 | 0 | 0 | 474 | 468 | 0.77 | 8.9 | 9.33 | 0.71 | 0.45 |
| 0 | 29 | 490 | 19 | 0 | 0 | 438 | 430 | 0.74 | 7.29 | 7.53 | 0.72 | 0.46 |
| 0 | 30 | 517 | 31 | 0 | 0 | 446 | 441 | 0.68 | 7.36 | 7.37 | 0.72 | 0.44 |
| 0 | 31 | 532 | 24 | 0 | 0 | 459 | 451 | 0.75 | 7.76 | 7.92 | 0.72 | 0.44 |
| 0 | 32 | 472 | 26 | 0 | 0 | 425 | 418 | 0.67 | 6.78 | 6.94 | 0.72 | 0.43 |
| 0 | 33 | 515 | 8 | 0 | 0 | 452 | 442 | 0.66 | 6.67 | 6.84 | 0.72 | 0.44 |
| 0 | 34 | 505 | 24 | 0 | 0 | 454 | 449 | 0.64 | 5.98 | 6.07 | 0.71 | 0.47 |
| 0 | 35 | 476 | 10 | 0 | 0 | 415 | 410 | 0.64 | 7.14 | 7.24 | 0.71 | 0.45 |
| 0 | 36 | 503 | 8 | 0 | 0 | 431 | 426 | 0.67 | 6.25 | 6.28 | 0.71 | 0.47 |
| 0 | 37 | 508 | 24 | 0 | 0 | 430 | 423 | 0.65 | 6.5 | 6.61 | 0.72 | 0.45 |
| 0 | 38 | 484 | 15 | 0 | 0 | 416 | 411 | 0.66 | 6.98 | 7.16 | 0.71 | 0.47 |
| 0 | 39 | 530 | 12 | 0 | 0 | 469 | 463 | 0.76 | 7.77 | 7.96 | 0.73 | 0.45 |
| 0 | 40 | 481 | 31 | 0 | 0 | 438 | 433 | 0.76 | 8.15 | 8.52 | 0.72 | 0.46 |
| 0 | 41 | 521 | 15 | 0 | 0 | 439 | 435 | 0.76 | 7.14 | 7.36 | 0.72 | 0.41 |
| 0 | 42 | 491 | 14 | 0 | 0 | 442 | 437 | 0.66 | 7.18 | 7.34 | 0.72 | 0.46 |
| 0 | 43 | 494 | 20 | 0 | 0 | 426 | 420 | 0.69 | 7.27 | 7.46 | 0.72 | 0.45 |
| 0 | 44 | 527 | 54 | 0 | 0 | 457 | 445 | 0.66 | 6.83 | 6.98 | 0.72 | 0.48 |
| 0 | 45 | 473 | 12 | 0 | 0 | 423 | 415 | 0.68 | 7.72 | 8.01 | 0.71 | 0.46 |
| 0 | 46 | 522 | 15 | 0 | 0 | 462 | 454 | 0.72 | 7.16 | 7.43 | 0.71 | 0.47 |
| 0 | 47 | 487 | 6 | 0 | 0 | 427 | 422 | 0.72 | 7.66 | 7.81 | 0.73 | 0.43 |
| 0 | 48 | 519 | 4 | 0 | 0 | 446 | 442 | 0.64 | 6.89 | 6.94 | 0.7 | 0.47 |
| 0 | 49 | 502 | 27 | 0 | 0 | 455 | 451 | 0.72 | 7.58 | 7.82 | 0.73 | 0.42 |
| 0 | 50 | 522 | 10 | 0 | 0 | 442 | 433 | 0.65 | 6.58 | 6.69 | 0.7 | 0.48 |
| 0 | 51 | 487 | 36 | 0 | 0 | 434 | 428 | 0.68 | 7.78 | 8.06 | 0.73 | 0.43 |
| 0 | 52 | 525 | 15 | 0 | 0 | 465 | 458 | 0.68 | 7.37 | 7.57 | 0.71 | 0.48 |
| 0 | 53 | 492 | 11 | 0 | 0 | 425 | 417 | 0.7 | 7.68 | 7.88 | 0.74 | 0.42 |
| 0 | 54 | 526 | 30 | 0 | 0 | 461 | 453 | 0.63 | 6.63 | 6.69 | 0.71 | 0.46 |
| 0 | 55 | 485 | 9 | 0 | 0 | 417 | 413 | 0.71 | 6.81 | 6.96 | 0.72 | 0.45 |
| 0 | 56 | 526 | 0 | 0 | 0 | 441 | 435 | 0.66 | 6.23 | 6.33 | 0.71 | 0.46 |
| 0 | 57 | 489 | 7 | 0 | 0 | 439 | 434 | 0.71 | 7.6 | 7.73 | 0.73 | 0.42 |
| 0 | 58 | 518 | 12 | 0 | 0 | 454 | 452 | 0.63 | 6.7 | 6.75 | 0.71 | 0.45 |
| 0 | 59 | 486 | 3 | 0 | 0 | 400 | 394 | 0.73 | 7.93 | 8.16 | 0.72 | 0.42 |
| 0 | 60 | 530 | 13 | 0 | 0 | 466 | 459 | 0.68 | 6.67 | 6.76 | 0.72 | 0.44 |
| 0 | 61 | 465 | 18 | 0 | 0 | 415 | 408 | 0.64 | 6.36 | 6.45 | 0.72 | 0.47 |
| 0 | 62 | 528 | 6 | 0 | 0 | 454 | 448 | 0.72 | 7.2 | 7.25 | 0.73 | 0.44 |
| 0 | 63 | 500 | 7 | 0 | 0 | 419 | 412 | 0.69 | 7.76 | 7.86 | 0.72 | 0.46 |
| 0 | 64 | 497 | 27 | 0 | 0 | 452 | 443 | 0.66 | 6.65 | 6.79 | 0.71 | 0.46 |
| 0 | 65 | 521 | 13 | 0 | 0 | 456 | 449 | 0.71 | 7.55 | 7.76 | 0.73 | 0.47 |
| 0 | 66 | 489 | 0 | 0 | 0 | 423 | 419 | 0.7 | 7.52 | 7.58 | 0.71 | 0.47 |
| 0 | 67 | 503 | 59 | 0 | 0 | 470 | 459 | 0.72 | 7.54 | 8.13 | 0.72 | 0.44 |
| 0 | 68 | 521 | 16 | 0 | 0 | 445 | 438 | 0.67 | 6.6 | 6.72 | 0.72 | 0.46 |
| 0 | 69 | 471 | 4 | 0 | 0 | 406 | 406 | 0.69 | 7.16 | 7.12 | 0.73 | 0.44 |
| 0 | 70 | 516 | 37 | 0 | 0 | 474 | 462 | 0.7 | 8.02 | 8.1 | 0.72 | 0.44 |
| 0 | 71 | 496 | 29 | 0 | 0 | 445 | 439 | 0.6 | 6.46 | 6.54 | 0.71 | 0.45 |
| 0 | 72 | 523 | 34 | 0 | 0 | 469 | 462 | 0.7 | 6.83 | 7.14 | 0.72 | 0.45 |
| 0 | 73 | 512 | 33 | 0 | 0 | 457 | 448 | 0.65 | 6.27 | 6.53 | 0.71 | 0.45 |
| 0 | 74 | 472 | 16 | 0 | 0 | 428 | 420 | 0.64 | 6.15 | 6.34 | 0.71 | 0.44 |
| 0 | 75 | 551 | 15 | 0 | 0 | 475 | 469 | 0.64 | 6.85 | 6.97 | 0.72 | 0.45 |
| 0 | 76 | 474 | 32 | 0 | 0 | 426 | 422 | 0.68 | 6.89 | 7.19 | 0.72 | 0.46 |
| 0 | 77 | 501 | 21 | 0 | 0 | 434 | 427 | 0.65 | 6.63 | 6.72 | 0.71 | 0.45 |
| 0 | 78 | 508 | 14 | 0 | 0 | 446 | 437 | 0.69 | 7.12 | 7.47 | 0.72 | 0.44 |
| 0 | 79 | 496 | 39 | 0 | 0 | 455 | 445 | 0.66 | 7.08 | 7.3 | 0.71 | 0.45 |
| 0 | 80 | 517 | 16 | 0 | 0 | 439 | 428 | 0.73 | 7.71 | 7.87 | 0.72 | 0.46 |
| 0 | 81 | 483 | 8 | 0 | 0 | 416 | 404 | 0.7 | 6.78 | 7.02 | 0.73 | 0.43 |
| 0 | 82 | 521 | 33 | 0 | 0 | 466 | 460 | 0.73 | 6.6 | 6.92 | 0.73 | 0.45 |
| 0 | 83 | 488 | 24 | 0 | 0 | 437 | 431 | 0.68 | 7.05 | 7.54 | 0.72 | 0.44 |
| 0 | 84 | 489 | 28 | 0 | 0 | 428 | 417 | 0.63 | 6.35 | 6.62 | 0.73 | 0.43 |
| 0 | 85 | 487 | 33 | 0 | 0 | 437 | 434 | 0.65 | 6.76 | 6.97 | 0.72 | 0.47 |
| 0 | 86 | 471 | 30 | 0 | 0 | 394 | 389 | 0.63 | 6.46 | 6.73 | 0.72 | 0.43 |
| 0 | 87 | 545 | 24 | 0 | 0 | 499 | 488 | 0.73 | 7.94 | 8.16 | 0.73 | 0.44 |
| 0 | 88 | 505 | 15 | 0 | 0 | 439 | 429 | 0.68 | 6.58 | 6.71 | 0.73 | 0.42 |
| 0 | 89 | 509 | 20 | 0 | 0 | 440 | 435 | 0.73 | 7.68 | 7.81 | 0.72 | 0.42 |
| 0 | 90 | 528 | 4 | 0 | 0 | 455 | 451 | 0.65 | 6.43 | 6.48 | 0.72 | 0.44 |
| 0 | 91 | 496 | 30 | 0 | 0 | 454 | 447 | 0.7 | 7.28 | 7.38 | 0.73 | 0.43 |
| 0 | 92 | 521 | 18 | 0 | 0 | 467 | 462 | 0.62 | 6.17 | 6.47 | 0.72 | 0.46 |
| 0 | 93 | 486 | 17 | 0 | 0 | 430 | 427 | 0.63 | 5.67 | 5.74 | 0.72 | 0.43 |
| 0 | 94 | 507 | 26 | 0 | 0 | 454 | 446 | 0.66 | 6.47 | 6.56 | 0.71 | 0.45 |
| 0 | 95 | 523 | 19 | 0 | 0 | 445 | 433 | 0.73 | 8.1 | 8.61 | 0.73 | 0.41 |
| 0 | 96 | 471 | 14 | 0 | 0 | 423 | 416 | 0.68 | 6.8 | 7 | 0.73 | 0.43 |
| 0 | 97 | 523 | 61 | 0 | 0 | 497 | 492 | 0.72 | 6.85 | 7.31 | 0.72 | 0.48 |
| 0 | 98 | 464 | 13 | 0 | 0 | 396 | 392 | 0.72 | 7.08 | 7.28 | 0.72 | 0.45 |
| 0 | 99 | 454 | 28 | 0 | 0 | 400 | 391 | 0.65 | 6.98 | 7.25 | 0.73 | 0.42 |
| 0 | 100 | 497 | 32 | 0 | 0 | 451 | 442 | 0.67 | 6.73 | 7.06 | 0.72 | 0.42 |
| 0 | 101 | 537 | 21 | 0 | 0 | 473 | 465 | 0.68 | 6.01 | 6.16 | 0.72 | 0.44 |
| 0 | 102 | 533 | 20 | 0 | 0 | 478 | 466 | 0.7 | 7.97 | 8.83 | 0.72 | 0.45 |
| 0 | 103 | 519 | 12 | 0 | 0 | 460 | 452 | 0.68 | 6.71 | 6.93 | 0.73 | 0.42 |
| 0 | 104 | 503 | 19 | 0 | 0 | 438 | 435 | 0.7 | 6.47 | 6.57 | 0.73 | 0.44 |
| 0 | 105 | 504 | 19 | 0 | 0 | 457 | 446 | 0.68 | 7.65 | 7.87 | 0.72 | 0.44 |
| 0 | 106 | 506 | 17 | 0 | 0 | 434 | 428 | 0.63 | 6.44 | 6.63 | 0.72 | 0.47 |
| 0 | 107 | 472 | 25 | 0 | 0 | 413 | 409 | 0.74 | 7.84 | 8.43 | 0.73 | 0.41 |
| 0 | 108 | 541 | 16 | 0 | 0 | 473 | 463 | 0.74 | 6.97 | 7.14 | 0.74 | 0.42 |
| 0 | 109 | 487 | 28 | 0 | 0 | 436 | 429 | 0.73 | 7.52 | 8.16 | 0.73 | 0.4 |
| 0 | 110 | 460 | 16 | 0 | 0 | 400 | 397 | 0.69 | 6.69 | 6.82 | 0.72 | 0.45 |
| 0 | 111 | 495 | 73 | 0 | 0 | 434 | 425 | 0.64 | 6.32 | 6.55 | 0.71 | 0.45 |
| 0 | 112 | 548 | 18 | 0 | 0 | 481 | 475 | 0.71 | 7.34 | 7.62 | 0.73 | 0.41 |
| 0 | 113 | 498 | 16 | 0 | 0 | 445 | 437 | 0.67 | 6.55 | 6.68 | 0.73 | 0.42 |
| 0 | 114 | 522 | 27 | 0 | 0 | 461 | 449 | 0.72 | 7.23 | 7.46 | 0.73 | 0.43 |
| 0 | 115 | 507 | 73 | 0 | 0 | 433 | 428 | 0.67 | 6.42 | 6.52 | 0.72 | 0.44 |
| 0 | 116 | 496 | 18 | 0 | 0 | 431 | 420 | 0.7 | 6.94 | 7.06 | 0.73 | 0.41 |
| 0 | 117 | 496 | 15 | 0 | 0 | 444 | 438 | 0.72 | 7.63 | 7.87 | 0.73 | 0.42 |
| 0 | 118 | 510 | 26 | 0 | 0 | 454 | 448 | 0.78 | 7.53 | 7.83 | 0.73 | 0.42 |
| 0 | 119 | 475 | 8 | 0 | 0 | 415 | 410 | 0.7 | 6.51 | 6.71 | 0.73 | 0.41 |
| 0 | 120 | 483 | 16 | 0 | 0 | 425 | 418 | 0.7 | 6.35 | 6.57 | 0.72 | 0.46 |
| 0 | 121 | 551 | 18 | 0 | 0 | 480 | 477 | 0.75 | 6.64 | 6.71 | 0.73 | 0.42 |
| 0 | 122 | 491 | 27 | 0 | 0 | 434 | 429 | 0.68 | 6.28 | 6.47 | 0.72 | 0.43 |
| 0 | 123 | 530 | 12 | 0 | 0 | 461 | 453 | 0.69 | 6.59 | 6.74 | 0.71 | 0.43 |
| 0 | 124 | 500 | 38 | 0 | 0 | 458 | 451 | 0.74 | 6.93 | 7.24 | 0.72 | 0.46 |
| 0 | 125 | 504 | 33 | 0 | 0 | 435 | 432 | 0.76 | 7.75 | 7.86 | 0.75 | 0.41 |
| 0 | 126 | 513 | 23 | 0 | 0 | 463 | 453 | 0.67 | 5.85 | 6.1 | 0.73 | 0.44 |
| 0 | 127 | 461 | 17 | 0 | 0 | 412 | 403 | 0.7 | 6.68 | 6.91 | 0.72 | 0.45 |
| 0 | 128 | 503 | 5 | 0 | 0 | 425 | 418 | 0.7 | 6.9 | 7.03 | 0.72 | 0.44 |
| 0 | 129 | 498 | 12 | 0 | 0 | 416 | 411 | 0.71 | 5.96 | 6.07 | 0.74 | 0.42 |
| 0 | 130 | 528 | 14 | 0 | 0 | 463 | 455 | 0.72 | 6.9 | 7.01 | 0.72 | 0.43 |
| 0 | 131 | 522 | 37 | 0 | 0 | 466 | 457 | 0.7 | 6.64 | 6.98 | 0.71 | 0.46 |
| 0 | 132 | 494 | 46 | 0 | 0 | 439 | 431 | 0.81 | 8.36 | 8.62 | 0.74 | 0.4 |
| 0 | 133 | 497 | 23 | 0 | 0 | 440 | 435 | 0.71 | 6.37 | 6.62 | 0.73 | 0.45 |
| 0 | 134 | 506 | 23 | 0 | 0 | 438 | 429 | 0.73 | 7.15 | 7.36 | 0.73 | 0.43 |
| 0 | 135 | 479 | 24 | 0 | 0 | 429 | 416 | 0.72 | 6.92 | 7.22 | 0.72 | 0.45 |
| 0 | 136 | 522 | 24 | 0 | 0 | 478 | 473 | 0.71 | 5.81 | 5.88 | 0.72 | 0.45 |
| 0 | 137 | 492 | 10 | 0 | 0 | 427 | 422 | 0.75 | 7.58 | 7.67 | 0.73 | 0.42 |
| 0 | 138 | 508 | 14 | 0 | 0 | 457 | 449 | 0.68 | 5.96 | 6.16 | 0.72 | 0.44 |
| 0 | 139 | 527 | 20 | 0 | 0 | 458 | 443 | 0.69 | 6.3 | 6.73 | 0.72 | 0.46 |
| 0 | 140 | 505 | 16 | 0 | 0 | 442 | 437 | 0.78 | 7.33 | 7.5 | 0.74 | 0.44 |
| 0 | 141 | 497 | 19 | 0 | 0 | 436 | 425 | 0.73 | 6.61 | 6.89 | 0.73 | 0.45 |
| 0 | 142 | 479 | 21 | 0 | 0 | 409 | 407 | 0.73 | 6.56 | 6.67 | 0.72 | 0.44 |
| 0 | 143 | 488 | 0 | 0 | 0 | 418 | 414 | 0.77 | 7.09 | 7.23 | 0.75 | 0.39 |
| 0 | 144 | 546 | 8 | 0 | 0 | 454 | 449 | 0.73 | 6.95 | 7.22 | 0.72 | 0.45 |
| 0 | 145 | 495 | 40 | 0 | 0 | 465 | 456 | 0.78 | 8.52 | 10 | 0.71 | 0.43 |
| 0 | 146 | 503 | 21 | 0 | 0 | 438 | 432 | 0.75 | 6.91 | 6.96 | 0.73 | 0.42 |
| 0 | 147 | 529 | 18 | 0 | 0 | 461 | 453 | 0.81 | 9.04 | 10.28 | 0.74 | 0.44 |
| 0 | 148 | 493 | 95 | 0 | 0 | 461 | 445 | 0.77 | 7.34 | 7.62 | 0.73 | 0.45 |
| 0 | 149 | 486 | 35 | 0 | 0 | 428 | 421 | 0.78 | 6.8 | 6.92 | 0.73 | 0.44 |
| 0 | 150 | 489 | 65 | 0 | 0 | 425 | 421 | 0.72 | 6.53 | 6.62 | 0.72 | 0.45 |
| 0 | 151 | 513 | 6 | 0 | 0 | 462 | 457 | 0.71 | 5.92 | 6.06 | 0.72 | 0.44 |
| 0 | 152 | 513 | 19 | 0 | 0 | 437 | 431 | 0.8 | 7.08 | 7.28 | 0.72 | 0.43 |
| 0 | 153 | 538 | 16 | 0 | 0 | 458 | 454 | 0.76 | 6.58 | 6.77 | 0.73 | 0.42 |
| 0 | 154 | 481 | 33 | 0 | 0 | 441 | 438 | 0.8 | 7.26 | 7.64 | 0.74 | 0.43 |
| 0 | 155 | 481 | 52 | 0 | 0 | 430 | 419 | 0.76 | 6.95 | 7.16 | 0.73 | 0.44 |
| 0 | 156 | 507 | 21 | 0 | 0 | 431 | 424 | 0.8 | 7.28 | 7.5 | 0.74 | 0.41 |
| 0 | 157 | 504 | 34 | 0 | 0 | 469 | 459 | 0.84 | 7.75 | 8.46 | 0.73 | 0.44 |
| 0 | 158 | 523 | 13 | 0 | 0 | 458 | 448 | 0.77 | 6.94 | 7.14 | 0.73 | 0.44 |
| 0 | 159 | 508 | 11 | 0 | 0 | 424 | 418 | 0.8 | 7.23 | 7.39 | 0.73 | 0.44 |
| 0 | 160 | 499 | 18 | 0 | 0 | 434 | 428 | 0.78 | 6.4 | 6.52 | 0.73 | 0.43 |
| 0 | 161 | 497 | 17 | 0 | 0 | 432 | 427 | 0.77 | 6.79 | 6.83 | 0.74 | 0.42 |
| 0 | 162 | 481 | 18 | 0 | 0 | 423 | 416 | 0.78 | 6.95 | 7.2 | 0.73 | 0.43 |
| 0 | 163 | 520 | 32 | 0 | 0 | 464 | 454 | 0.81 | 6.16 | 6.36 | 0.73 | 0.44 |
| 0 | 164 | 518 | 6 | 0 | 0 | 461 | 451 | 0.8 | 6.83 | 7.04 | 0.74 | 0.41 |
| 0 | 165 | 522 | 9 | 0 | 0 | 446 | 441 | 0.83 | 7.19 | 7.31 | 0.74 | 0.44 |
| 0 | 166 | 475 | 76 | 0 | 0 | 441 | 434 | 0.74 | 6.15 | 6.24 | 0.73 | 0.43 |
| 0 | 167 | 493 | 7 | 0 | 0 | 418 | 415 | 0.86 | 6.92 | 7 | 0.74 | 0.42 |
| 0 | 168 | 509 | 22 | 0 | 0 | 453 | 447 | 0.82 | 7.25 | 7.47 | 0.73 | 0.44 |
| 0 | 169 | 504 | 27 | 0 | 0 | 448 | 442 | 0.73 | 6.28 | 6.44 | 0.71 | 0.46 |
| 0 | 170 | 517 | 18 | 0 | 0 | 459 | 448 | 0.87 | 6.84 | 7.28 | 0.74 | 0.41 |
| 0 | 171 | 500 | 17 | 0 | 0 | 447 | 439 | 0.85 | 7.62 | 7.84 | 0.75 | 0.42 |
| 0 | 172 | 506 | 31 | 0 | 0 | 454 | 451 | 0.83 | 6.41 | 6.63 | 0.73 | 0.44 |
| 0 | 173 | 480 | 11 | 0 | 0 | 417 | 408 | 0.88 | 7.61 | 7.88 | 0.75 | 0.4 |
| 0 | 174 | 510 | 20 | 0 | 0 | 438 | 432 | 0.8 | 6.46 | 6.63 | 0.73 | 0.42 |
| 0 | 175 | 503 | 33 | 0 | 0 | 453 | 446 | 0.91 | 7.93 | 8.66 | 0.74 | 0.4 |
| 0 | 176 | 498 | 24 | 0 | 0 | 439 | 430 | 0.79 | 6.27 | 6.5 | 0.74 | 0.44 |
| 0 | 177 | 506 | 11 | 0 | 0 | 445 | 437 | 0.83 | 7.13 | 7.19 | 0.74 | 0.42 |
| 0 | 178 | 507 | 15 | 0 | 0 | 445 | 441 | 0.85 | 7.54 | 7.68 | 0.73 | 0.43 |
| 0 | 179 | 496 | 3 | 0 | 0 | 425 | 424 | 0.88 | 6.84 | 6.81 | 0.74 | 0.43 |
| 0 | 180 | 503 | 16 | 0 | 0 | 442 | 437 | 0.91 | 7.05 | 7.28 | 0.74 | 0.4 |
| 0 | 181 | 527 | 41 | 0 | 0 | 465 | 462 | 0.85 | 7.01 | 7.08 | 0.74 | 0.41 |
| 0 | 182 | 487 | 6 | 0 | 0 | 424 | 417 | 0.8 | 6.4 | 6.5 | 0.74 | 0.43 |
| 0 | 183 | 498 | 10 | 0 | 0 | 432 | 426 | 0.89 | 6.76 | 6.92 | 0.75 | 0.41 |
| 0 | 184 | 519 | 55 | 0 | 0 | 470 | 466 | 0.92 | 6.7 | 7.6 | 0.74 | 0.42 |
| 0 | 185 | 480 | 15 | 0 | 0 | 408 | 403 | 0.91 | 6.88 | 7.16 | 0.73 | 0.43 |
| 0 | 186 | 531 | 3 | 0 | 0 | 458 | 454 | 0.81 | 5.92 | 5.99 | 0.74 | 0.41 |
| 0 | 187 | 461 | 34 | 0 | 0 | 407 | 402 | 0.88 | 6.51 | 6.7 | 0.73 | 0.42 |
| 0 | 188 | 526 | 24 | 0 | 0 | 458 | 450 | 0.94 | 7.74 | 8.02 | 0.75 | 0.41 |
| 0 | 189 | 509 | 23 | 0 | 0 | 434 | 430 | 0.94 | 8.2 | 8.51 | 0.75 | 0.42 |
| 0 | 190 | 482 | 35 | 0 | 0 | 454 | 443 | 0.95 | 6.7 | 6.9 | 0.74 | 0.42 |
| 0 | 191 | 542 | 25 | 0 | 0 | 472 | 465 | 0.94 | 7.14 | 7.58 | 0.75 | 0.43 |
| 0 | 192 | 481 | 30 | 0 | 0 | 435 | 426 | 0.9 | 6.37 | 6.87 | 0.75 | 0.41 |
| 0 | 193 | 495 | 24 | 0 | 0 | 435 | 425 | 0.89 | 6.84 | 7.13 | 0.75 | 0.41 |
| 0 | 194 | 518 | 0 | 0 | 0 | 444 | 440 | 1 | 7.9 | 7.99 | 0.76 | 0.42 |
| 0 | 195 | 516 | 3 | 0 | 0 | 452 | 447 | 1.01 | 8.39 | 8.49 | 0.75 | 0.41 |
| 0 | 196 | 491 | 6 | 0 | 0 | 427 | 421 | 1.03 | 8.3 | 8.49 | 0.75 | 0.42 |
| 0 | 197 | 498 | 17 | 0 | 0 | 428 | 421 | 0.86 | 6.51 | 6.8 | 0.74 | 0.45 |
| 0 | 198 | 515 | 43 | 0 | 0 | 460 | 454 | 0.92 | 6.76 | 6.84 | 0.74 | 0.43 |
| 0 | 199 | 490 | 21 | 0 | 0 | 431 | 423 | 0.97 | 7.64 | 7.88 | 0.75 | 0.41 |
| 0 | 200 | 497 | 35 | 0 | 0 | 442 | 435 | 0.93 | 6.07 | 6.39 | 0.75 | 0.41 |
| 0 | 201 | 525 | 24 | 0 | 0 | 479 | 472 | 1.02 | 7.42 | 7.71 | 0.76 | 0.4 |
| 0 | 202 | 496 | 34 | 0 | 0 | 428 | 422 | 1.04 | 7.73 | 8.06 | 0.75 | 0.4 |
| 0 | 203 | 509 | 31 | 0 | 0 | 454 | 445 | 0.99 | 7.33 | 7.68 | 0.75 | 0.43 |
| 0 | 204 | 482 | 3 | 0 | 0 | 417 | 414 | 0.98 | 6.91 | 6.97 | 0.76 | 0.39 |
| 0 | 205 | 520 | 35 | 0 | 0 | 477 | 469 | 0.95 | 6.31 | 6.52 | 0.76 | 0.41 |
| 0 | 206 | 482 | 6 | 0 | 0 | 424 | 420 | 1.02 | 7.62 | 7.64 | 0.76 | 0.39 |
| 0 | 207 | 516 | 11 | 0 | 0 | 451 | 444 | 1.04 | 7.4 | 7.41 | 0.76 | 0.42 |
| 0 | 208 | 499 | 18 | 0 | 0 | 433 | 430 | 1.01 | 7.52 | 7.83 | 0.76 | 0.41 |
| 0 | 209 | 517 | 0 | 0 | 0 | 437 | 432 | 1.17 | 8.62 | 8.81 | 0.78 | 0.4 |
| 0 | 210 | 497 | 16 | 0 | 0 | 440 | 434 | 1.04 | 6.47 | 6.72 | 0.76 | 0.42 |
| 0 | 211 | 507 | 24 | 0 | 0 | 457 | 452 | 1.02 | 6.59 | 7 | 0.76 | 0.41 |
| 0 | 212 | 511 | 16 | 0 | 0 | 444 | 438 | 1.13 | 7.65 | 7.79 | 0.77 | 0.42 |
| 0 | 213 | 485 | 6 | 0 | 0 | 413 | 406 | 1 | 6.28 | 6.36 | 0.76 | 0.43 |
| 0 | 214 | 493 | 24 | 0 | 0 | 444 | 437 | 1.15 | 7.6 | 7.87 | 0.76 | 0.4 |
| 0 | 215 | 519 | 11 | 0 | 0 | 453 | 444 | 1.07 | 7.12 | 7.26 | 0.77 | 0.43 |
| 0 | 216 | 505 | 24 | 0 | 0 | 459 | 448 | 1.12 | 7.07 | 7.53 | 0.76 | 0.43 |
| 0 | 217 | 488 | 34 | 0 | 0 | 439 | 433 | 1.11 | 6.83 | 7.55 | 0.76 | 0.41 |
| 0 | 218 | 524 | 37 | 0 | 0 | 486 | 480 | 1.14 | 6.16 | 6.3 | 0.77 | 0.4 |
| 0 | 219 | 497 | 20 | 0 | 0 | 422 | 412 | 1.14 | 7.43 | 7.7 | 0.77 | 0.4 |
| 0 | 220 | 515 | 28 | 0 | 0 | 471 | 461 | 1.16 | 6.81 | 7.12 | 0.77 | 0.4 |
| 0 | 221 | 489 | 20 | 0 | 0 | 421 | 416 | 1.22 | 8.36 | 8.57 | 0.77 | 0.4 |
| 0 | 222 | 505 | 17 | 0 | 0 | 455 | 451 | 1.18 | 7.57 | 7.75 | 0.78 | 0.42 |
| 0 | 223 | 507 | 32 | 0 | 0 | 440 | 433 | 1.2 | 7.43 | 7.85 | 0.77 | 0.41 |
| 0 | 224 | 501 | 10 | 0 | 0 | 453 | 449 | 1.28 | 6.8 | 6.91 | 0.78 | 0.4 |
| 0 | 225 | 500 | 7 | 0 | 0 | 417 | 413 | 1.14 | 6.28 | 6.42 | 0.78 | 0.41 |
| 0 | 226 | 487 | 27 | 0 | 0 | 429 | 423 | 1.28 | 7.61 | 8.04 | 0.78 | 0.39 |
| 0 | 227 | 522 | 12 | 0 | 0 | 460 | 454 | 1.22 | 8.48 | 8.67 | 0.78 | 0.39 |
| 0 | 228 | 503 | 11 | 0 | 0 | 457 | 448 | 1.27 | 8.12 | 8.26 | 0.78 | 0.41 |
| 0 | 229 | 502 | 34 | 0 | 0 | 466 | 458 | 1.28 | 7.11 | 7.33 | 0.78 | 0.4 |
| 0 | 230 | 512 | 10 | 0 | 0 | 432 | 426 | 1.31 | 7.51 | 7.65 | 0.79 | 0.41 |
| 0 | 231 | 497 | 0 | 0 | 0 | 418 | 411 | 1.3 | 7.57 | 7.68 | 0.79 | 0.4 |
| 0 | 232 | 499 | 30 | 0 | 0 | 451 | 442 | 1.3 | 7.15 | 7.54 | 0.78 | 0.42 |
| 0 | 233 | 504 | 17 | 0 | 0 | 443 | 440 | 1.34 | 8.23 | 8.91 | 0.79 | 0.4 |
| 0 | 234 | 529 | 26 | 0 | 0 | 457 | 448 | 1.33 | 7.01 | 7.23 | 0.79 | 0.41 |
| 0 | 235 | 493 | 18 | 0 | 0 | 434 | 431 | 1.26 | 6.47 | 6.48 | 0.78 | 0.42 |
| 0 | 236 | 489 | 15 | 0 | 0 | 436 | 431 | 1.44 | 9.47 | 9.66 | 0.79 | 0.41 |
| 0 | 237 | 490 | 25 | 0 | 0 | 432 | 425 | 1.46 | 9.05 | 9.61 | 0.8 | 0.39 |
| 0 | 238 | 497 | 28 | 0 | 0 | 450 | 440 | 1.3 | 5.78 | 6.06 | 0.79 | 0.39 |
| 0 | 239 | 530 | 24 | 0 | 0 | 466 | 457 | 1.33 | 8.16 | 8.35 | 0.79 | 0.39 |
| 0 | 240 | 520 | 21 | 0 | 0 | 459 | 448 | 1.49 | 8.91 | 9.23 | 0.79 | 0.4 |
| 0 | 241 | 475 | 41 | 0 | 0 | 438 | 429 | 1.32 | 7.55 | 7.84 | 0.78 | 0.41 |
| 0 | 242 | 500 | 24 | 0 | 0 | 432 | 428 | 1.48 | 8.65 | 8.74 | 0.8 | 0.38 |
| 0 | 243 | 529 | 11 | 0 | 0 | 453 | 446 | 1.37 | 7.44 | 7.59 | 0.79 | 0.41 |
| 0 | 244 | 481 | 30 | 0 | 0 | 444 | 437 | 1.43 | 6.49 | 6.83 | 0.8 | 0.39 |
| 0 | 245 | 530 | 18 | 0 | 0 | 447 | 442 | 1.42 | 7.11 | 7.34 | 0.79 | 0.4 |
| 0 | 246 | 490 | 21 | 0 | 0 | 418 | 415 | 1.46 | 8.53 | 9.42 | 0.79 | 0.4 |
| 0 | 247 | 505 | 34 | 0 | 0 | 453 | 447 | 1.36 | 7.63 | 7.88 | 0.79 | 0.4 |
| 0 | 248 | 518 | 20 | 0 | 0 | 446 | 438 | 1.54 | 8.79 | 9.14 | 0.8 | 0.38 |
| 0 | 249 | 501 | 27 | 0 | 0 | 439 | 433 | 1.39 | 8.25 | 8.34 | 0.79 | 0.4 |
| 0 | 250 | 507 | 16 | 0 | 0 | 447 | 436 | 1.42 | 7.74 | 8.06 | 0.8 | 0.41 |
| 0 | 251 | 498 | 4 | 0 | 0 | 420 | 413 | 1.39 | 7 | 7.09 | 0.8 | 0.38 |
| 0 | 252 | 487 | 14 | 0 | 0 | 423 | 417 | 1.39 | 7.09 | 7.4 | 0.79 | 0.38 |
| 0 | 253 | 514 | 43 | 0 | 0 | 465 | 459 | 1.46 | 7.83 | 7.99 | 0.79 | 0.39 |
| 0 | 254 | 475 | 11 | 0 | 0 | 414 | 409 | 1.37 | 7.03 | 7.24 | 0.79 | 0.39 |
| 0 | 255 | 533 | 29 | 0 | 0 | 457 | 450 | 1.39 | 7.66 | 8.2 | 0.79 | 0.38 |
| 0 | 256 | 511 | 27 | 0 | 0 | 450 | 445 | 1.47 | 9.1 | 9.71 | 0.79 | 0.38 |
| 0 | 257 | 498 | 19 | 0 | 0 | 439 | 433 | 1.27 | 6.16 | 6.27 | 0.79 | 0.39 |
| 0 | 258 | 536 | 43 | 0 | 0 | 472 | 467 | 1.43 | 8.18 | 8.48 | 0.79 | 0.4 |
| 0 | 259 | 488 | 12 | 0 | 0 | 425 | 420 | 1.33 | 7.4 | 7.55 | 0.78 | 0.41 |
| 0 | 260 | 482 | 7 | 0 | 0 | 424 | 421 | 1.37 | 7.68 | 8.07 | 0.79 | 0.39 |
| 0 | 261 | 510 | 17 | 0 | 0 | 441 | 427 | 1.3 | 6.45 | 6.65 | 0.79 | 0.4 |
| 0 | 262 | 508 | 49 | 0 | 0 | 456 | 447 | 1.28 | 6.72 | 6.98 | 0.78 | 0.4 |
| 0 | 263 | 482 | 31 | 0 | 0 | 405 | 401 | 1.32 | 8.84 | 9 | 0.79 | 0.4 |
| 0 | 264 | 507 | 8 | 0 | 0 | 449 | 442 | 1.14 | 7.51 | 7.62 | 0.78 | 0.4 |
| 0 | 265 | 504 | 25 | 0 | 0 | 451 | 447 | 1.39 | 7.47 | 7.77 | 0.79 | 0.39 |
| 0 | 266 | 508 | 26 | 0 | 0 | 442 | 439 | 1.32 | 7.72 | 7.81 | 0.79 | 0.37 |
| 0 | 267 | 549 | 30 | 0 | 0 | 498 | 491 | 1.29 | 9.24 | 9.67 | 0.77 | 0.39 |
| 0 | 268 | 487 | 32 | 0 | 0 | 431 | 424 | 1.29 | 8.09 | 8.72 | 0.78 | 0.41 |
| 0 | 269 | 512 | 14 | 0 | 0 | 440 | 437 | 1.31 | 7.86 | 7.97 | 0.79 | 0.4 |
| 0 | 270 | 513 | 10 | 0 | 0 | 449 | 444 | 1.08 | 6.58 | 6.65 | 0.78 | 0.4 |
| 0 | 271 | 494 | 43 | 0 | 0 | 447 | 435 | 1.17 | 8.03 | 8.31 | 0.78 | 0.4 |
| 0 | 272 | 470 | 13 | 0 | 0 | 403 | 398 | 1.14 | 7.67 | 7.82 | 0.77 | 0.41 |
| 0 | 273 | 535 | 16 | 0 | 0 | 469 | 461 | 1.26 | 8.93 | 9.3 | 0.78 | 0.41 |
| 0 | 274 | 479 | 30 | 0 | 0 | 413 | 408 | 1.23 | 8.97 | 9.14 | 0.78 | 0.39 |
| 0 | 275 | 507 | 14 | 0 | 0 | 436 | 430 | 1.12 | 7.52 | 7.61 | 0.76 | 0.39 |
| 0 | 276 | 520 | 3 | 0 | 0 | 454 | 449 | 1.1 | 7.49 | 7.57 | 0.77 | 0.41 |
| 0 | 277 | 488 | 19 | 0 | 0 | 405 | 396 | 1.07 | 7.61 | 7.71 | 0.77 | 0.42 |
| 0 | 278 | 537 | 9 | 0 | 0 | 472 | 464 | 1.12 | 7.42 | 7.84 | 0.76 | 0.4 |
| 0 | 279 | 502 | 3 | 0 | 0 | 435 | 431 | 1.24 | 8.78 | 8.89 | 0.78 | 0.39 |
| 0 | 280 | 481 | 17 | 0 | 0 | 442 | 438 | 1.01 | 7.04 | 7.1 | 0.76 | 0.42 |
| 0 | 281 | 510 | 12 | 0 | 0 | 444 | 439 | 1.03 | 7.67 | 8.02 | 0.76 | 0.41 |
| 0 | 282 | 505 | 29 | 0 | 0 | 428 | 422 | 1.06 | 7.11 | 7.18 | 0.76 | 0.41 |
| 0 | 283 | 512 | 32 | 0 | 0 | 481 | 475 | 1.04 | 6.32 | 6.55 | 0.75 | 0.42 |
| 0 | 284 | 493 | 29 | 0 | 0 | 436 | 427 | 1.1 | 7.2 | 7.47 | 0.77 | 0.4 |
| 0 | 285 | 500 | 19 | 0 | 0 | 439 | 429 | 1.02 | 6.4 | 6.6 | 0.76 | 0.42 |
| 0 | 286 | 518 | 23 | 0 | 0 | 456 | 450 | 0.97 | 7.54 | 7.57 | 0.75 | 0.43 |
| 0 | 287 | 488 | 35 | 0 | 0 | 436 | 422 | 0.95 | 6.29 | 6.54 | 0.75 | 0.43 |
| 0 | 288 | 518 | 21 | 0 | 0 | 453 | 450 | 0.98 | 7.59 | 7.67 | 0.75 | 0.42 |
| 0 | 289 | 483 | 46 | 0 | 0 | 448 | 439 | 1.04 | 7.37 | 7.78 | 0.76 | 0.41 |
| 0 | 290 | 531 | 20 | 0 | 0 | 472 | 468 | 1.05 | 8.12 | 8.28 | 0.76 | 0.4 |
| 0 | 291 | 488 | 22 | 0 | 0 | 421 | 414 | 0.94 | 7.81 | 8.08 | 0.74 | 0.44 |
| 0 | 292 | 510 | 33 | 0 | 0 | 447 | 445 | 0.99 | 7.24 | 7.34 | 0.75 | 0.4 |
| 0 | 293 | 497 | 13 | 0 | 0 | 428 | 420 | 0.96 | 6.69 | 6.89 | 0.76 | 0.41 |
| 0 | 294 | 507 | 15 | 0 | 0 | 437 | 433 | 0.98 | 7.2 | 7.33 | 0.75 | 0.42 |
| 0 | 295 | 478 | 30 | 0 | 0 | 429 | 424 | 1 | 7.87 | 8.44 | 0.75 | 0.41 |
| 0 | 296 | 531 | 3 | 0 | 0 | 439 | 434 | 0.92 | 6.7 | 6.77 | 0.76 | 0.4 |
| 0 | 297 | 502 | 32 | 0 | 0 | 428 | 424 | 1 | 7.93 | 8.08 | 0.76 | 0.39 |
| 0 | 298 | 509 | 39 | 0 | 0 | 468 | 459 | 0.94 | 8.3 | 8.62 | 0.74 | 0.42 |
| 0 | 299 | 468 | 17 | 0 | 0 | 407 | 401 | 0.9 | 8.43 | 8.65 | 0.75 | 0.4 |
| 0 | 300 | 539 | 13 | 0 | 0 | 481 | 476 | 0.94 | 7.8 | 7.9 | 0.75 | 0.4 |
| 0 | 301 | 504 | 45 | 0 | 0 | 450 | 442 | 0.86 | 6.51 | 7.25 | 0.74 | 0.42 |
| 0 | 302 | 522 | 36 | 0 | 0 | 469 | 462 | 0.98 | 8.09 | 8.6 | 0.74 | 0.42 |
| 0 | 303 | 469 | 23 | 0 | 0 | 408 | 403 | 0.86 | 6.8 | 6.99 | 0.73 | 0.42 |
| 0 | 304 | 532 | 12 | 0 | 0 | 454 | 447 | 0.94 | 6.56 | 6.71 | 0.74 | 0.44 |
| 0 | 305 | 486 | 30 | 0 | 0 | 439 | 429 | 0.87 | 6.46 | 6.82 | 0.74 | 0.44 |
| 0 | 306 | 502 | 0 | 0 | 0 | 439 | 436 | 0.89 | 6.97 | 7.07 | 0.74 | 0.4 |
| 0 | 307 | 488 | 32 | 0 | 0 | 440 | 434 | 0.92 | 7.5 | 7.89 | 0.74 | 0.42 |
| 0 | 308 | 537 | 15 | 0 | 0 | 465 | 456 | 0.84 | 7.03 | 7.45 | 0.73 | 0.43 |
| 0 | 309 | 502 | 20 | 0 | 0 | 440 | 430 | 0.87 | 6.76 | 7.04 | 0.74 | 0.42 |
| 0 | 310 | 473 | 39 | 0 | 0 | 420 | 412 | 0.89 | 7.99 | 8.33 | 0.73 | 0.44 |
| 0 | 311 | 506 | 11 | 0 | 0 | 452 | 447 | 0.87 | 7.12 | 7.17 | 0.74 | 0.4 |
| 0 | 312 | 523 | 6 | 0 | 0 | 436 | 432 | 0.92 | 8.04 | 8.16 | 0.74 | 0.42 |
| 0 | 313 | 499 | 34 | 0 | 0 | 454 | 447 | 0.86 | 7.31 | 7.66 | 0.74 | 0.42 |
| 0 | 314 | 522 | 7 | 0 | 0 | 445 | 440 | 0.78 | 5.99 | 6.03 | 0.72 | 0.43 |
| 0 | 315 | 508 | 3 | 0 | 0 | 440 | 434 | 0.79 | 7.82 | 8.01 | 0.73 | 0.42 |
| 0 | 316 | 486 | 27 | 0 | 0 | 438 | 436 | 0.85 | 6.81 | 7.07 | 0.73 | 0.42 |
| 0 | 317 | 465 | 27 | 0 | 0 | 421 | 409 | 0.9 | 8.3 | 8.69 | 0.73 | 0.43 |
| 0 | 318 | 542 | 29 | 0 | 0 | 469 | 465 | 0.83 | 7.14 | 7.16 | 0.73 | 0.41 |
| 0 | 319 | 484 | 40 | 0 | 0 | 457 | 447 | 0.79 | 6.32 | 6.43 | 0.72 | 0.43 |
| 0 | 320 | 514 | 17 | 0 | 0 | 446 | 441 | 0.83 | 6.84 | 6.9 | 0.73 | 0.44 |
| 0 | 321 | 497 | 13 | 0 | 0 | 427 | 421 | 0.79 | 7.13 | 7.2 | 0.73 | 0.45 |
| 0 | 322 | 529 | 15 | 0 | 0 | 451 | 447 | 0.72 | 5.82 | 6.01 | 0.71 | 0.48 |
| 0 | 323 | 479 | 26 | 0 | 0 | 422 | 417 | 0.89 | 8.63 | 8.79 | 0.74 | 0.42 |
| 0 | 324 | 517 | 49 | 0 | 0 | 460 | 455 | 0.89 | 7.94 | 8.25 | 0.74 | 0.41 |
| 0 | 325 | 494 | 27 | 0 | 0 | 446 | 440 | 0.82 | 7.37 | 7.92 | 0.72 | 0.46 |
| 0 | 326 | 482 | 30 | 0 | 0 | 428 | 417 | 0.82 | 7.4 | 7.66 | 0.73 | 0.45 |
| 0 | 327 | 529 | 14 | 0 | 0 | 464 | 457 | 0.75 | 7.03 | 7.06 | 0.72 | 0.42 |
| 0 | 328 | 511 | 18 | 0 | 0 | 440 | 438 | 0.77 | 6.6 | 6.82 | 0.71 | 0.45 |
| 0 | 329 | 529 | 0 | 0 | 0 | 455 | 449 | 0.83 | 7.21 | 7.35 | 0.73 | 0.45 |
| 0 | 330 | 488 | 28 | 0 | 0 | 433 | 424 | 0.81 | 7.49 | 8.1 | 0.72 | 0.45 |
| 0 | 331 | 485 | 29 | 0 | 0 | 430 | 424 | 0.75 | 5.98 | 6.13 | 0.72 | 0.44 |
| 0 | 332 | 492 | 21 | 0 | 0 | 439 | 433 | 0.76 | 6.72 | 7.04 | 0.72 | 0.45 |
| 0 | 333 | 512 | 11 | 0 | 0 | 461 | 453 | 0.8 | 7.37 | 7.45 | 0.72 | 0.45 |
| 0 | 334 | 495 | 19 | 0 | 0 | 425 | 422 | 0.74 | 6.88 | 7.53 | 0.71 | 0.44 |
| 0 | 335 | 526 | 17 | 0 | 0 | 458 | 451 | 0.68 | 5.64 | 5.74 | 0.71 | 0.47 |
| 0 | 336 | 515 | 17 | 0 | 0 | 440 | 432 | 0.8 | 7.39 | 7.62 | 0.72 | 0.46 |
| 0 | 337 | 494 | 12 | 0 | 0 | 436 | 432 | 0.76 | 6.64 | 6.74 | 0.72 | 0.41 |
| 0 | 338 | 518 | 18 | 0 | 0 | 435 | 428 | 0.81 | 7.52 | 7.68 | 0.73 | 0.45 |
| 0 | 339 | 482 | 21 | 0 | 0 | 428 | 421 | 0.8 | 7.19 | 7.74 | 0.72 | 0.43 |
| 0 | 340 | 513 | 34 | 0 | 0 | 460 | 457 | 0.8 | 7.02 | 7.6 | 0.73 | 0.41 |
| 0 | 341 | 487 | 16 | 0 | 0 | 437 | 431 | 0.7 | 5.77 | 5.91 | 0.71 | 0.48 |
| 0 | 342 | 529 | 3 | 0 | 0 | 450 | 443 | 0.71 | 6.1 | 6.18 | 0.72 | 0.42 |
| 0 | 343 | 485 | 41 | 0 | 0 | 452 | 440 | 0.71 | 5.84 | 6.1 | 0.71 | 0.46 |
| 0 | 344 | 515 | 21 | 0 | 0 | 462 | 454 | 0.8 | 7.15 | 7.46 | 0.72 | 0.44 |
| 0 | 345 | 486 | 6 | 0 | 0 | 410 | 399 | 0.71 | 6.33 | 6.56 | 0.71 | 0.47 |
| 0 | 346 | 525 | 42 | 0 | 0 | 477 | 464 | 0.72 | 6.07 | 6.37 | 0.71 | 0.45 |
| 0 | 347 | 486 | 18 | 0 | 0 | 429 | 424 | 0.77 | 7.38 | 7.53 | 0.73 | 0.42 |
| 0 | 348 | 506 | 14 | 0 | 0 | 430 | 426 | 0.75 | 6.92 | 7.06 | 0.72 | 0.42 |
| 0 | 349 | 508 | 33 | 0 | 0 | 422 | 414 | 0.68 | 6.64 | 6.77 | 0.71 | 0.47 |
| 0 | 350 | 520 | 20 | 0 | 0 | 467 | 461 | 0.79 | 6.87 | 7.03 | 0.72 | 0.44 |
| 0 | 351 | 500 | 22 | 0 | 0 | 437 | 429 | 0.77 | 7.06 | 7.31 | 0.72 | 0.44 |
| 0 | 352 | 468 | 29 | 0 | 0 | 422 | 413 | 0.68 | 6.11 | 6.27 | 0.71 | 0.45 |
| 0 | 353 | 513 | 11 | 0 | 0 | 455 | 448 | 0.75 | 7.57 | 7.68 | 0.73 | 0.45 |
| 0 | 354 | 526 | 13 | 0 | 0 | 460 | 450 | 0.65 | 5.51 | 5.65 | 0.71 | 0.48 |
| 0 | 355 | 507 | 22 | 0 | 0 | 453 | 451 | 0.71 | 6.62 | 6.81 | 0.71 | 0.45 |
| 0 | 356 | 497 | 12 | 0 | 0 | 419 | 417 | 0.75 | 7.3 | 7.35 | 0.73 | 0.43 |
| 0 | 357 | 539 | 12 | 0 | 0 | 471 | 464 | 0.67 | 5.88 | 6.07 | 0.71 | 0.45 |
| 0 | 358 | 459 | 39 | 0 | 0 | 430 | 425 | 0.72 | 6.17 | 6.6 | 0.7 | 0.49 |
| 0 | 359 | 487 | 23 | 0 | 0 | 426 | 422 | 0.76 | 7.72 | 7.85 | 0.73 | 0.42 |
| 0 | 360 | 535 | 31 | 0 | 0 | 480 | 467 | 0.79 | 8.6 | 9.82 | 0.72 | 0.44 |
| 0 | 361 | 479 | 34 | 0 | 0 | 419 | 418 | 0.74 | 6.39 | 6.26 | 0.72 | 0.45 |
| 0 | 362 | 486 | 45 | 0 | 0 | 436 | 426 | 0.68 | 6.66 | 6.88 | 0.7 | 0.47 |
| 0 | 363 | 510 | 0 | 0 | 0 | 442 | 440 | 0.67 | 5.98 | 5.99 | 0.72 | 0.43 |
| 0 | 364 | 503 | 27 | 0 | 0 | 460 | 450 | 0.72 | 7.45 | 7.66 | 0.73 | 0.43 |
| 0 | 365 | 514 | 8 | 0 | 0 | 426 | 418 | 0.68 | 6.32 | 6.46 | 0.71 | 0.42 |
| 0 | 366 | 540 | 13 | 0 | 0 | 472 | 469 | 0.75 | 7.76 | 7.91 | 0.71 | 0.45 |
| 0 | 367 | 529 | 36 | 0 | 0 | 493 | 487 | 0.71 | 8.01 | 9.48 | 0.71 | 0.43 |
| 0 | 368 | 516 | 29 | 0 | 0 | 448 | 440 | 0.65 | 6.41 | 6.59 | 0.7 | 0.46 |
| 0 | 369 | 468 | 18 | 0 | 0 | 421 | 415 | 0.7 | 7.39 | 7.53 | 0.71 | 0.48 |
| 0 | 370 | 453 | 18 | 0 | 0 | 407 | 403 | 0.69 | 5.76 | 5.81 | 0.71 | 0.47 |
| 0 | 371 | 519 | 21 | 0 | 0 | 453 | 446 | 0.77 | 7.64 | 7.81 | 0.73 | 0.43 |
| 0 | 372 | 498 | 17 | 0 | 0 | 449 | 440 | 0.72 | 6.95 | 7.2 | 0.72 | 0.41 |
| 0 | 373 | 500 | 59 | 0 | 0 | 445 | 442 | 0.75 | 8.09 | 8.01 | 0.71 | 0.46 |
| 0 | 374 | 498 | 6 | 0 | 0 | 437 | 431 | 0.68 | 6.25 | 6.32 | 0.71 | 0.44 |
| 0 | 375 | 499 | 33 | 0 | 0 | 440 | 431 | 0.69 | 6.06 | 6.25 | 0.71 | 0.46 |
| 0 | 376 | 515 | 34 | 0 | 0 | 466 | 456 | 0.6 | 5.5 | 5.79 | 0.7 | 0.47 |
| 0 | 377 | 508 | 26 | 0 | 0 | 447 | 437 | 0.68 | 6.2 | 6.46 | 0.7 | 0.45 |
| 0 | 378 | 509 | 12 | 0 | 0 | 426 | 423 | 0.69 | 5.63 | 5.73 | 0.71 | 0.46 |
| 0 | 379 | 529 | 30 | 0 | 0 | 472 | 468 | 0.69 | 6.43 | 6.47 | 0.71 | 0.43 |
| 0 | 380 | 521 | 45 | 0 | 0 | 448 | 441 | 0.7 | 7.22 | 7.32 | 0.71 | 0.47 |
| 0 | 381 | 511 | 42 | 0 | 0 | 438 | 429 | 0.75 | 7.07 | 7.32 | 0.72 | 0.44 |
| 0 | 382 | 474 | 50 | 0 | 0 | 447 | 441 | 0.65 | 6.39 | 6.65 | 0.7 | 0.43 |
| 0 | 383 | 498 | 11 | 0 | 0 | 428 | 415 | 0.65 | 6 | 6.24 | 0.71 | 0.43 |
| 0 | 384 | 495 | 19 | 0 | 0 | 451 | 445 | 0.65 | 6.18 | 6.39 | 0.7 | 0.47 |
| 0 | 385 | 489 | 26 | 0 | 0 | 446 | 438 | 0.68 | 7.42 | 7.69 | 0.7 | 0.49 |
| 0 | 386 | 518 | 26 | 0 | 0 | 478 | 469 | 0.75 | 6.98 | 7.4 | 0.72 | 0.45 |
| 0 | 387 | 493 | 20 | 0 | 0 | 443 | 435 | 0.69 | 7.01 | 7.05 | 0.71 | 0.44 |
| 0 | 388 | 513 | 51 | 0 | 0 | 458 | 453 | 0.76 | 8.11 | 8.97 | 0.7 | 0.47 |
| 0 | 389 | 483 | 18 | 0 | 0 | 434 | 426 | 0.7 | 6.63 | 6.86 | 0.71 | 0.46 |
| 0 | 390 | 522 | 13 | 0 | 0 | 447 | 439 | 0.69 | 6.67 | 6.73 | 0.71 | 0.43 |
| 0 | 391 | 513 | 33 | 0 | 0 | 460 | 451 | 0.7 | 6.5 | 7.12 | 0.7 | 0.48 |
| 0 | 392 | 486 | 37 | 0 | 0 | 424 | 421 | 0.68 | 6.57 | 6.99 | 0.71 | 0.46 |
| 0 | 393 | 536 | 20 | 0 | 0 | 479 | 471 | 0.63 | 5.95 | 6.06 | 0.7 | 0.46 |
| 0 | 394 | 489 | 25 | 0 | 0 | 437 | 433 | 0.67 | 6.38 | 6.44 | 0.71 | 0.46 |
| 0 | 395 | 490 | 20 | 0 | 0 | 427 | 419 | 0.62 | 5.95 | 5.87 | 0.71 | 0.46 |
| 0 | 396 | 520 | 12 | 0 | 0 | 463 | 460 | 0.65 | 5.88 | 5.95 | 0.7 | 0.44 |
| 0 | 397 | 490 | 21 | 0 | 0 | 420 | 417 | 0.69 | 6.29 | 6.69 | 0.72 | 0.45 |
| 0 | 398 | 501 | 13 | 0 | 0 | 433 | 430 | 0.67 | 6.74 | 7.03 | 0.72 | 0.47 |
| 0 | 399 | 517 | 13 | 0 | 0 | 445 | 442 | 0.72 | 7.05 | 7.09 | 0.72 | 0.44 |
| 0 | 400 | 494 | 25 | 0 | 0 | 445 | 436 | 0.71 | 6.69 | 7.08 | 0.71 | 0.44 |
| 0 | 401 | 503 | 0 | 0 | 0 | 424 | 418 | 0.7 | 7.01 | 7.12 | 0.72 | 0.44 |
| 0 | 402 | 502 | 10 | 0 | 0 | 442 | 435 | 0.65 | 6.19 | 6.3 | 0.71 | 0.46 |
| 0 | 403 | 502 | 23 | 0 | 0 | 454 | 444 | 0.71 | 7.56 | 7.87 | 0.72 | 0.43 |
| 0 | 404 | 516 | 6 | 0 | 0 | 450 | 442 | 0.66 | 6.56 | 6.78 | 0.72 | 0.44 |
| 0 | 405 | 487 | 19 | 0 | 0 | 427 | 417 | 0.67 | 6.53 | 6.64 | 0.7 | 0.46 |
| 0 | 406 | 520 | 47 | 0 | 0 | 469 | 459 | 0.67 | 6.22 | 6.42 | 0.7 | 0.45 |
| 0 | 407 | 481 | 29 | 0 | 0 | 424 | 417 | 0.71 | 7.02 | 7.2 | 0.72 | 0.45 |
| 0 | 408 | 537 | 23 | 0 | 0 | 465 | 458 | 0.64 | 6.63 | 6.94 | 0.7 | 0.49 |
| 0 | 409 | 470 | 33 | 0 | 0 | 424 | 415 | 0.69 | 6.17 | 6.29 | 0.73 | 0.42 |
| 0 | 410 | 534 | 28 | 0 | 0 | 468 | 462 | 0.63 | 6.57 | 6.74 | 0.69 | 0.47 |
| 0 | 411 | 475 | 11 | 0 | 0 | 417 | 413 | 0.65 | 6.49 | 6.53 | 0.72 | 0.43 |
| 0 | 412 | 527 | 50 | 0 | 0 | 477 | 468 | 0.67 | 6.95 | 7.13 | 0.7 | 0.48 |
| 0 | 413 | 488 | 26 | 0 | 0 | 435 | 428 | 0.68 | 7.04 | 7.19 | 0.72 | 0.42 |
| 0 | 414 | 519 | 12 | 0 | 0 | 450 | 447 | 0.66 | 5.65 | 5.79 | 0.71 | 0.45 |
| 0 | 415 | 479 | 49 | 0 | 0 | 438 | 431 | 0.7 | 6.41 | 6.72 | 0.71 | 0.46 |
| 0 | 416 | 527 | 11 | 0 | 0 | 458 | 447 | 0.63 | 5.82 | 6 | 0.7 | 0.49 |
| 0 | 417 | 499 | 5 | 0 | 0 | 439 | 433 | 0.7 | 6.62 | 6.72 | 0.73 | 0.43 |
| 0 | 418 | 524 | 31 | 0 | 0 | 468 | 464 | 0.62 | 5.91 | 5.81 | 0.69 | 0.48 |
| 0 | 419 | 484 | 15 | 0 | 0 | 418 | 411 | 0.72 | 7.19 | 7.34 | 0.73 | 0.43 |
| 0 | 420 | 531 | 13 | 0 | 0 | 454 | 449 | 0.64 | 5.75 | 5.75 | 0.7 | 0.46 |
| 0 | 421 | 487 | 27 | 0 | 0 | 437 | 427 | 0.68 | 6.34 | 6.56 | 0.72 | 0.44 |
| 0 | 422 | 508 | 0 | 0 | 0 | 426 | 423 | 0.7 | 6.63 | 6.69 | 0.7 | 0.45 |
| 0 | 423 | 512 | 19 | 0 | 0 | 445 | 441 | 0.68 | 7.27 | 7.7 | 0.72 | 0.44 |
| 0 | 424 | 482 | 31 | 0 | 0 | 444 | 438 | 0.71 | 6.78 | 7.25 | 0.71 | 0.47 |
| 0 | 425 | 524 | 36 | 0 | 0 | 468 | 461 | 0.68 | 6.62 | 6.72 | 0.72 | 0.45 |
| 0 | 426 | 499 | 17 | 0 | 0 | 444 | 435 | 0.68 | 6.7 | 6.86 | 0.71 | 0.46 |
| 0 | 427 | 492 | 21 | 0 | 0 | 431 | 421 | 0.64 | 6.11 | 6.25 | 0.71 | 0.46 |
| 0 | 428 | 500 | 4 | 0 | 0 | 424 | 416 | 0.69 | 6.51 | 6.66 | 0.72 | 0.45 |
| 0 | 429 | 504 | 6 | 0 | 0 | 438 | 435 | 0.66 | 5.88 | 5.96 | 0.71 | 0.45 |
| 0 | 430 | 527 | 12 | 0 | 0 | 455 | 447 | 0.76 | 8.75 | 9.29 | 0.73 | 0.43 |
| 0 | 431 | 476 | 14 | 0 | 0 | 426 | 421 | 0.62 | 5.96 | 6.02 | 0.71 | 0.44 |
| 0 | 432 | 522 | 9 | 0 | 0 | 454 | 449 | 0.68 | 6.32 | 6.4 | 0.72 | 0.44 |
| 0 | 433 | 510 | 37 | 0 | 0 | 451 | 445 | 0.65 | 5.92 | 6.07 | 0.71 | 0.45 |
| 0 | 434 | 478 | 49 | 0 | 0 | 437 | 433 | 0.62 | 5.37 | 5.51 | 0.7 | 0.47 |
| 0 | 435 | 515 | 18 | 0 | 0 | 458 | 452 | 0.67 | 6.62 | 6.77 | 0.72 | 0.46 |
| 0 | 436 | 490 | 24 | 0 | 0 | 431 | 424 | 0.67 | 6.35 | 6.5 | 0.71 | 0.46 |
| 0 | 437 | 514 | 28 | 0 | 0 | 447 | 438 | 0.65 | 6.34 | 6.4 | 0.71 | 0.44 |
| 0 | 438 | 527 | 7 | 0 | 0 | 464 | 454 | 0.67 | 6.53 | 6.71 | 0.7 | 0.45 |
| 0 | 439 | 497 | 19 | 0 | 0 | 446 | 440 | 0.7 | 6.83 | 6.92 | 0.72 | 0.43 |
| 0 | 440 | 501 | 55 | 0 | 0 | 454 | 446 | 0.7 | 6.58 | 7.04 | 0.71 | 0.48 |
| 0 | 441 | 501 | 22 | 0 | 0 | 445 | 430 | 0.68 | 6.51 | 6.83 | 0.71 | 0.43 |
| 0 | 442 | 505 | 8 | 0 | 0 | 427 | 422 | 0.72 | 6.41 | 6.48 | 0.73 | 0.42 |
| 0 | 443 | 511 | 12 | 0 | 0 | 434 | 429 | 0.68 | 6.84 | 7.46 | 0.72 | 0.46 |
| 0 | 444 | 481 | 22 | 0 | 0 | 413 | 406 | 0.64 | 6.61 | 6.67 | 0.72 | 0.44 |
| 0 | 445 | 502 | 32 | 0 | 0 | 449 | 438 | 0.64 | 5.91 | 6.02 | 0.72 | 0.44 |
| 0 | 446 | 473 | 45 | 0 | 0 | 415 | 411 | 0.62 | 5.94 | 5.93 | 0.71 | 0.44 |
| 0 | 447 | 543 | 16 | 0 | 0 | 483 | 478 | 0.76 | 8.03 | 8.37 | 0.73 | 0.44 |
| 0 | 448 | 490 | 33 | 0 | 0 | 433 | 423 | 0.67 | 5.75 | 5.94 | 0.72 | 0.45 |
| 0 | 449 | 491 | 18 | 0 | 0 | 427 | 423 | 0.73 | 6.87 | 6.99 | 0.72 | 0.42 |
| 0 | 450 | 535 | 25 | 0 | 0 | 459 | 453 | 0.64 | 6.17 | 6.3 | 0.71 | 0.43 |
| 0 | 451 | 509 | 68 | 0 | 0 | 479 | 471 | 0.69 | 6.9 | 7.32 | 0.71 | 0.44 |
| 0 | 452 | 517 | 50 | 0 | 0 | 453 | 447 | 0.57 | 5.16 | 5.26 | 0.7 | 0.44 |
| 0 | 453 | 498 | 20 | 0 | 0 | 451 | 436 | 0.61 | 5.51 | 5.73 | 0.72 | 0.46 |
| 0 | 454 | 508 | 28 | 0 | 0 | 450 | 442 | 0.7 | 6.05 | 6.32 | 0.72 | 0.43 |
| 0 | 455 | 511 | 26 | 0 | 0 | 443 | 431 | 0.68 | 5.99 | 6.19 | 0.72 | 0.45 |
| 0 | 456 | 462 | 21 | 0 | 0 | 397 | 394 | 0.73 | 7.19 | 7.27 | 0.73 | 0.41 |
| 0 | 457 | 534 | 38 | 0 | 0 | 467 | 465 | 0.72 | 7 | 7.5 | 0.73 | 0.43 |
| 0 | 458 | 469 | 8 | 0 | 0 | 406 | 400 | 0.67 | 6.28 | 6.37 | 0.71 | 0.45 |
| 0 | 459 | 462 | 17 | 0 | 0 | 409 | 404 | 0.67 | 6.47 | 6.69 | 0.71 | 0.47 |
| 0 | 460 | 500 | 27 | 0 | 0 | 450 | 443 | 0.65 | 5.88 | 6.37 | 0.72 | 0.44 |
| 0 | 461 | 540 | 31 | 0 | 0 | 460 | 452 | 0.7 | 6.1 | 6.26 | 0.72 | 0.41 |
| 0 | 462 | 536 | 34 | 0 | 0 | 482 | 473 | 0.66 | 6.72 | 7.02 | 0.71 | 0.47 |
| 0 | 463 | 519 | 21 | 0 | 0 | 458 | 450 | 0.65 | 5.98 | 6.12 | 0.71 | 0.43 |
| 0 | 464 | 509 | 23 | 0 | 0 | 456 | 444 | 0.72 | 6.76 | 7.16 | 0.72 | 0.45 |
| 0 | 465 | 509 | 10 | 0 | 0 | 451 | 446 | 0.7 | 7.4 | 7.97 | 0.71 | 0.42 |
| 0 | 466 | 510 | 42 | 0 | 0 | 458 | 451 | 0.64 | 5.9 | 6.42 | 0.71 | 0.46 |
| 0 | 467 | 453 | 12 | 0 | 0 | 384 | 381 | 0.73 | 7.1 | 7.24 | 0.72 | 0.43 |
| 0 | 468 | 555 | 47 | 0 | 0 | 488 | 480 | 0.71 | 6.34 | 6.39 | 0.73 | 0.42 |
| 0 | 469 | 485 | 12 | 0 | 0 | 427 | 421 | 0.74 | 7.34 | 7.62 | 0.73 | 0.43 |
| 0 | 470 | 444 | 14 | 0 | 0 | 396 | 394 | 0.67 | 5.67 | 5.87 | 0.71 | 0.41 |
| 0 | 471 | 503 | 16 | 0 | 0 | 430 | 425 | 0.64 | 6.08 | 6.19 | 0.7 | 0.43 |
| 0 | 472 | 570 | 31 | 0 | 0 | 521 | 511 | 0.67 | 6.53 | 6.97 | 0.72 | 0.44 |
| 0 | 473 | 492 | 21 | 0 | 0 | 439 | 433 | 0.64 | 5.32 | 5.42 | 0.72 | 0.42 |
| 0 | 474 | 532 | 9 | 0 | 0 | 465 | 460 | 0.66 | 6.32 | 6.47 | 0.71 | 0.42 |
| 0 | 475 | 490 | 29 | 0 | 0 | 426 | 417 | 0.7 | 6.62 | 7.17 | 0.72 | 0.46 |
| 0 | 476 | 498 | 32 | 0 | 0 | 431 | 422 | 0.72 | 6.52 | 6.77 | 0.72 | 0.44 |
| 0 | 477 | 495 | 29 | 0 | 0 | 443 | 436 | 0.74 | 7.06 | 7.32 | 0.73 | 0.43 |
| 0 | 478 | 511 | 32 | 0 | 0 | 473 | 462 | 0.76 | 6.9 | 7.44 | 0.72 | 0.45 |
| 0 | 479 | 462 | 9 | 0 | 0 | 409 | 404 | 0.73 | 6.27 | 6.41 | 0.72 | 0.44 |
| 0 | 480 | 493 | 35 | 0 | 0 | 430 | 425 | 0.65 | 5.43 | 5.55 | 0.7 | 0.45 |
| 0 | 481 | 555 | 16 | 0 | 0 | 488 | 485 | 0.73 | 6.07 | 6.28 | 0.71 | 0.46 |
| 0 | 482 | 508 | 7 | 0 | 0 | 424 | 419 | 0.67 | 5.37 | 5.45 | 0.71 | 0.44 |
| 0 | 483 | 508 | 28 | 0 | 0 | 457 | 451 | 0.68 | 6.42 | 6.5 | 0.71 | 0.46 |
| 0 | 484 | 503 | 34 | 0 | 0 | 453 | 442 | 0.77 | 6.56 | 7.08 | 0.72 | 0.43 |
| 0 | 485 | 504 | 7 | 0 | 0 | 441 | 441 | 0.7 | 6.25 | 6.44 | 0.73 | 0.42 |
| 0 | 486 | 504 | 10 | 0 | 0 | 443 | 434 | 0.64 | 5.42 | 5.55 | 0.73 | 0.44 |
| 0 | 487 | 457 | 54 | 0 | 0 | 415 | 412 | 0.72 | 6.39 | 6.4 | 0.71 | 0.47 |
| 0 | 488 | 505 | 14 | 0 | 0 | 439 | 430 | 0.66 | 5.97 | 5.97 | 0.7 | 0.47 |
| 0 | 489 | 508 | 14 | 0 | 0 | 439 | 437 | 0.7 | 5.48 | 5.53 | 0.73 | 0.44 |
| 0 | 490 | 538 | 24 | 0 | 0 | 475 | 467 | 0.73 | 6.62 | 6.98 | 0.71 | 0.45 |
| 0 | 491 | 502 | 11 | 0 | 0 | 435 | 431 | 0.67 | 6.03 | 6.13 | 0.7 | 0.45 |
| 0 | 492 | 500 | 10 | 0 | 0 | 436 | 432 | 0.77 | 7.38 | 7.67 | 0.73 | 0.43 |
| 0 | 493 | 497 | 39 | 0 | 0 | 457 | 446 | 0.71 | 5.86 | 6.06 | 0.73 | 0.45 |
| 0 | 494 | 512 | 33 | 0 | 0 | 459 | 449 | 0.73 | 7.14 | 7.32 | 0.73 | 0.42 |
| 0 | 495 | 471 | 16 | 0 | 0 | 407 | 404 | 0.68 | 5.43 | 5.46 | 0.71 | 0.45 |
| 0 | 496 | 531 | 44 | 0 | 0 | 489 | 483 | 0.71 | 5.84 | 6.11 | 0.71 | 0.45 |
| 0 | 497 | 516 | 44 | 0 | 0 | 451 | 441 | 0.72 | 6.48 | 6.66 | 0.72 | 0.45 |
| 0 | 498 | 493 | 18 | 0 | 0 | 437 | 430 | 0.67 | 5.33 | 5.51 | 0.71 | 0.46 |
| 0 | 499 | 509 | 30 | 0 | 0 | 448 | 438 | 0.72 | 5.96 | 5.91 | 0.7 | 0.47 |
| 0 | 500 | 519 | 16 | 0 | 0 | 461 | 452 | 0.76 | 6.79 | 6.96 | 0.73 | 0.42 |
| 0 | 501 | 489 | 5 | 0 | 0 | 431 | 422 | 0.73 | 5.88 | 6.05 | 0.72 | 0.45 |
| 0 | 502 | 491 | 24 | 0 | 0 | 433 | 428 | 0.73 | 6.75 | 6.97 | 0.71 | 0.47 |
| 0 | 503 | 476 | 15 | 0 | 0 | 418 | 414 | 0.71 | 6.01 | 6.47 | 0.72 | 0.46 |
| 0 | 504 | 547 | 7 | 0 | 0 | 492 | 484 | 0.73 | 6.36 | 6.47 | 0.72 | 0.44 |
| 0 | 505 | 490 | 47 | 0 | 0 | 435 | 426 | 0.71 | 6.78 | 7.06 | 0.71 | 0.46 |
| 0 | 506 | 500 | 11 | 0 | 0 | 436 | 429 | 0.76 | 8.13 | 9.71 | 0.73 | 0.41 |
| 0 | 507 | 535 | 30 | 0 | 0 | 485 | 470 | 0.79 | 6.89 | 7.38 | 0.73 | 0.43 |
| 0 | 508 | 481 | 12 | 0 | 0 | 424 | 416 | 0.76 | 6.42 | 6.6 | 0.72 | 0.45 |
| 0 | 509 | 507 | 32 | 0 | 0 | 460 | 446 | 0.78 | 6.1 | 6.43 | 0.73 | 0.45 |
| 0 | 510 | 484 | 12 | 0 | 0 | 429 | 423 | 0.73 | 5.99 | 6.17 | 0.72 | 0.45 |
| 0 | 511 | 511 | 33 | 0 | 0 | 474 | 466 | 0.72 | 5.32 | 5.84 | 0.71 | 0.43 |
| 0 | 512 | 507 | 0 | 0 | 0 | 433 | 430 | 0.78 | 6.39 | 6.47 | 0.72 | 0.44 |
| 0 | 513 | 533 | 7 | 0 | 0 | 463 | 458 | 0.78 | 6.28 | 6.55 | 0.72 | 0.44 |
| 0 | 514 | 477 | 45 | 0 | 0 | 461 | 454 | 0.76 | 5.98 | 6.24 | 0.73 | 0.44 |
| 0 | 515 | 492 | 5 | 0 | 0 | 422 | 413 | 0.8 | 6.91 | 7.13 | 0.72 | 0.43 |
| 0 | 516 | 521 | 23 | 0 | 0 | 442 | 436 | 0.79 | 6.32 | 6.46 | 0.73 | 0.42 |
| 0 | 517 | 498 | 23 | 0 | 0 | 449 | 440 | 0.8 | 6.95 | 7.39 | 0.73 | 0.44 |
| 0 | 518 | 528 | 19 | 0 | 0 | 478 | 468 | 0.81 | 7 | 7.27 | 0.72 | 0.45 |
| 0 | 519 | 503 | 24 | 0 | 0 | 416 | 409 | 0.79 | 6.77 | 6.9 | 0.73 | 0.41 |
| 0 | 520 | 514 | 22 | 0 | 0 | 442 | 439 | 0.81 | 6.4 | 6.42 | 0.73 | 0.44 |
| 0 | 521 | 479 | 35 | 0 | 0 | 406 | 399 | 0.76 | 6.05 | 6.26 | 0.72 | 0.43 |
| 0 | 522 | 497 | 25 | 0 | 0 | 446 | 438 | 0.78 | 5.79 | 5.86 | 0.73 | 0.42 |
| 0 | 523 | 514 | 25 | 0 | 0 | 456 | 451 | 0.81 | 6.07 | 6.23 | 0.73 | 0.45 |
| 0 | 524 | 514 | 14 | 0 | 0 | 458 | 450 | 0.81 | 5.76 | 5.83 | 0.73 | 0.44 |
| 0 | 525 | 515 | 3 | 0 | 0 | 450 | 444 | 0.79 | 6.53 | 6.75 | 0.73 | 0.44 |
| 0 | 526 | 487 | 15 | 0 | 0 | 428 | 426 | 0.76 | 5.8 | 5.92 | 0.73 | 0.43 |
| 0 | 527 | 497 | 15 | 0 | 0 | 430 | 425 | 0.85 | 6.44 | 6.49 | 0.74 | 0.41 |
| 0 | 528 | 508 | 30 | 0 | 0 | 462 | 458 | 0.86 | 6.91 | 7.15 | 0.73 | 0.43 |
| 0 | 529 | 500 | 43 | 0 | 0 | 462 | 457 | 0.74 | 5.8 | 6.35 | 0.72 | 0.45 |
| 0 | 530 | 506 | 30 | 0 | 0 | 447 | 439 | 0.84 | 6.28 | 6.41 | 0.74 | 0.42 |
| 0 | 531 | 516 | 17 | 0 | 0 | 466 | 461 | 0.87 | 7.27 | 7.82 | 0.74 | 0.41 |
| 0 | 532 | 504 | 34 | 0 | 0 | 457 | 449 | 0.82 | 5.93 | 6.14 | 0.72 | 0.47 |
| 0 | 533 | 478 | 20 | 0 | 0 | 417 | 411 | 0.85 | 7.06 | 7.19 | 0.74 | 0.41 |
| 0 | 534 | 512 | 16 | 0 | 0 | 432 | 425 | 0.82 | 6.6 | 6.67 | 0.74 | 0.43 |
| 0 | 535 | 494 | 27 | 0 | 0 | 453 | 443 | 0.86 | 6.56 | 6.96 | 0.73 | 0.43 |
| 0 | 536 | 508 | 15 | 0 | 0 | 442 | 433 | 0.81 | 6.14 | 6.24 | 0.73 | 0.43 |
| 0 | 537 | 508 | 16 | 0 | 0 | 437 | 432 | 0.8 | 6.29 | 6.57 | 0.74 | 0.42 |
| 0 | 538 | 499 | 21 | 0 | 0 | 442 | 437 | 0.86 | 6.67 | 6.92 | 0.72 | 0.42 |
| 0 | 539 | 499 | 6 | 0 | 0 | 431 | 428 | 0.89 | 6.28 | 6.39 | 0.73 | 0.43 |
| 0 | 540 | 519 | 14 | 0 | 0 | 451 | 449 | 0.87 | 6.38 | 6.32 | 0.74 | 0.41 |
| 0 | 541 | 503 | 152 | 0 | 0 | 463 | 454 | 0.91 | 7.32 | 7.97 | 0.74 | 0.42 |
| 0 | 542 | 492 | 42 | 0 | 0 | 439 | 430 | 0.85 | 5.76 | 6.14 | 0.73 | 0.45 |
| 0 | 543 | 506 | 143 | 0 | 0 | 443 | 438 | 0.9 | 6.79 | 7.17 | 0.74 | 0.42 |
| 0 | 544 | 515 | 19 | 0 | 0 | 451 | 447 | 0.93 | 6.45 | 6.8 | 0.74 | 0.4 |
| 0 | 545 | 485 | 16 | 0 | 0 | 423 | 416 | 0.85 | 5.94 | 6.13 | 0.74 | 0.43 |
| 0 | 546 | 529 | 5 | 0 | 0 | 446 | 442 | 0.89 | 6.7 | 6.85 | 0.74 | 0.42 |
| 0 | 547 | 464 | 39 | 0 | 0 | 420 | 416 | 0.85 | 6.08 | 6.11 | 0.73 | 0.43 |
| 0 | 548 | 506 | 12 | 0 | 0 | 448 | 440 | 0.9 | 6.83 | 6.87 | 0.74 | 0.43 |
| 0 | 549 | 526 | 16 | 0 | 0 | 447 | 440 | 0.95 | 8.42 | 8.73 | 0.75 | 0.39 |
| 0 | 550 | 487 | 53 | 0 | 0 | 459 | 450 | 0.96 | 6.41 | 6.52 | 0.74 | 0.43 |
| 0 | 551 | 534 | 13 | 0 | 0 | 469 | 457 | 0.88 | 6.25 | 6.44 | 0.74 | 0.44 |
| 0 | 552 | 494 | 25 | 0 | 0 | 427 | 417 | 0.89 | 5.98 | 6.13 | 0.75 | 0.41 |
| 0 | 553 | 489 | 24 | 0 | 0 | 439 | 433 | 0.92 | 6.62 | 6.9 | 0.75 | 0.4 |
| 0 | 554 | 518 | 7 | 0 | 0 | 450 | 444 | 1.04 | 8.13 | 8.38 | 0.76 | 0.41 |
| 0 | 555 | 500 | 14 | 0 | 0 | 440 | 435 | 0.98 | 7.19 | 7.46 | 0.75 | 0.42 |
| 0 | 556 | 491 | 33 | 0 | 0 | 432 | 428 | 0.98 | 7.31 | 7.4 | 0.75 | 0.4 |
| 0 | 557 | 508 | 27 | 0 | 0 | 436 | 428 | 0.87 | 6.46 | 6.58 | 0.75 | 0.41 |
| 0 | 558 | 507 | 6 | 0 | 0 | 422 | 419 | 0.95 | 6.74 | 6.82 | 0.75 | 0.42 |
| 0 | 559 | 494 | 33 | 0 | 0 | 460 | 452 | 0.94 | 6.86 | 7 | 0.75 | 0.4 |
| 0 | 560 | 499 | 27 | 0 | 0 | 456 | 449 | 0.97 | 6.6 | 7 | 0.75 | 0.41 |
| 0 | 561 | 529 | 11 | 0 | 0 | 458 | 452 | 1 | 6.71 | 6.79 | 0.76 | 0.4 |
| 0 | 562 | 494 | 33 | 0 | 0 | 440 | 426 | 1.04 | 7.89 | 8.29 | 0.75 | 0.41 |
| 0 | 563 | 498 | 6 | 0 | 0 | 430 | 426 | 0.99 | 6.43 | 6.43 | 0.75 | 0.43 |
| 0 | 564 | 505 | 18 | 0 | 0 | 439 | 432 | 0.99 | 7.08 | 7.75 | 0.75 | 0.41 |
| 0 | 565 | 532 | 17 | 0 | 0 | 472 | 466 | 0.96 | 6.35 | 6.44 | 0.76 | 0.39 |
| 0 | 566 | 459 | 14 | 0 | 0 | 408 | 401 | 1.06 | 7.45 | 7.61 | 0.76 | 0.42 |
| 0 | 567 | 508 | 4 | 0 | 0 | 427 | 420 | 1.01 | 6.79 | 6.89 | 0.76 | 0.4 |
| 0 | 568 | 504 | 15 | 0 | 0 | 435 | 431 | 1.04 | 7.58 | 7.5 | 0.77 | 0.4 |
| 0 | 569 | 526 | 14 | 0 | 0 | 457 | 451 | 1.12 | 8.27 | 8.81 | 0.76 | 0.42 |
| 0 | 570 | 491 | 21 | 0 | 0 | 432 | 421 | 1.05 | 6.6 | 6.76 | 0.76 | 0.44 |
| 0 | 571 | 527 | 15 | 0 | 0 | 453 | 446 | 1.03 | 5.9 | 6.37 | 0.76 | 0.41 |
| 0 | 572 | 493 | 30 | 0 | 0 | 441 | 434 | 1.15 | 7.71 | 8.02 | 0.77 | 0.39 |
| 0 | 573 | 498 | 7 | 0 | 0 | 413 | 406 | 1.03 | 6.05 | 6.18 | 0.76 | 0.42 |
| 0 | 574 | 498 | 26 | 0 | 0 | 445 | 439 | 1.18 | 7.86 | 8.26 | 0.77 | 0.4 |
| 0 | 575 | 492 | 34 | 0 | 0 | 460 | 450 | 1.03 | 6.05 | 6.21 | 0.76 | 0.42 |
| 0 | 576 | 515 | 3 | 0 | 0 | 434 | 430 | 1.13 | 7.19 | 7.4 | 0.77 | 0.38 |
| 0 | 577 | 486 | 33 | 0 | 0 | 433 | 430 | 1.13 | 7.06 | 7.43 | 0.76 | 0.42 |
| 0 | 578 | 528 | 10 | 0 | 0 | 470 | 467 | 1.18 | 6.34 | 6.31 | 0.78 | 0.41 |
| 0 | 579 | 478 | 30 | 0 | 0 | 428 | 421 | 1.05 | 5.86 | 6.04 | 0.76 | 0.42 |
| 0 | 580 | 524 | 27 | 0 | 0 | 477 | 471 | 1.22 | 7.86 | 8.3 | 0.78 | 0.41 |
| 0 | 581 | 494 | 37 | 0 | 0 | 440 | 430 | 1.21 | 8.26 | 8.36 | 0.77 | 0.43 |
| 0 | 582 | 499 | 0 | 0 | 0 | 425 | 417 | 1.17 | 7.45 | 7.58 | 0.78 | 0.39 |
| 0 | 583 | 516 | 27 | 0 | 0 | 458 | 452 | 1.25 | 7.41 | 7.79 | 0.77 | 0.41 |
| 0 | 584 | 497 | 31 | 0 | 0 | 448 | 441 | 1.26 | 7 | 7.13 | 0.78 | 0.42 |
| 0 | 585 | 512 | 19 | 0 | 0 | 440 | 437 | 1.14 | 6.04 | 6.12 | 0.77 | 0.41 |
| 0 | 586 | 490 | 21 | 0 | 0 | 440 | 426 | 1.33 | 8.27 | 8.47 | 0.79 | 0.38 |
| 0 | 587 | 509 | 18 | 0 | 0 | 445 | 441 | 1.21 | 7.68 | 7.75 | 0.78 | 0.38 |
| 0 | 588 | 507 | 10 | 0 | 0 | 442 | 438 | 1.33 | 8.31 | 8.36 | 0.79 | 0.39 |
| 0 | 589 | 498 | 27 | 0 | 0 | 456 | 448 | 1.26 | 7.4 | 7.66 | 0.78 | 0.38 |
| 0 | 590 | 504 | 13 | 0 | 0 | 447 | 443 | 1.25 | 6.45 | 6.59 | 0.79 | 0.41 |
| 0 | 591 | 494 | 10 | 0 | 0 | 433 | 426 | 1.33 | 8.12 | 8.53 | 0.78 | 0.39 |
| 0 | 592 | 516 | 26 | 0 | 0 | 450 | 445 | 1.39 | 8.03 | 8.23 | 0.79 | 0.39 |
| 0 | 593 | 502 | 15 | 0 | 0 | 440 | 430 | 1.24 | 6.69 | 6.88 | 0.79 | 0.4 |
| 0 | 594 | 519 | 21 | 0 | 0 | 457 | 445 | 1.35 | 6.98 | 7.39 | 0.79 | 0.41 |
| 0 | 595 | 480 | 25 | 0 | 0 | 436 | 426 | 1.3 | 6.7 | 7.3 | 0.78 | 0.41 |
| 0 | 596 | 501 | 11 | 0 | 0 | 438 | 433 | 1.48 | 9.59 | 9.77 | 0.8 | 0.39 |
| 0 | 597 | 500 | 17 | 0 | 0 | 444 | 434 | 1.41 | 7.64 | 7.89 | 0.79 | 0.4 |
| 0 | 598 | 507 | 58 | 0 | 0 | 464 | 452 | 1.33 | 5.94 | 6.29 | 0.79 | 0.4 |
| 0 | 599 | 508 | 24 | 0 | 0 | 475 | 468 | 1.32 | 8.21 | 8.83 | 0.79 | 0.39 |
| 0 | 600 | 519 | 27 | 0 | 0 | 472 | 464 | 1.45 | 9.01 | 9.26 | 0.79 | 0.4 |
| 0 | 601 | 478 | 26 | 0 | 0 | 419 | 415 | 1.32 | 8.13 | 8.21 | 0.79 | 0.39 |
| 0 | 602 | 513 | 4 | 0 | 0 | 445 | 439 | 1.57 | 8.96 | 9.16 | 0.8 | 0.38 |
| 0 | 603 | 515 | 25 | 0 | 0 | 439 | 435 | 1.34 | 7.31 | 7.38 | 0.79 | 0.39 |
| 0 | 604 | 499 | 49 | 0 | 0 | 451 | 442 | 1.49 | 6.63 | 6.86 | 0.8 | 0.39 |
| 0 | 605 | 506 | 13 | 0 | 0 | 437 | 428 | 1.37 | 7.26 | 7.57 | 0.79 | 0.41 |
| 0 | 606 | 505 | 17 | 0 | 0 | 438 | 429 | 1.4 | 8.15 | 8.36 | 0.8 | 0.39 |
| 0 | 607 | 484 | 24 | 0 | 0 | 425 | 423 | 1.47 | 8.03 | 8.83 | 0.8 | 0.37 |
| 0 | 608 | 523 | 7 | 0 | 0 | 456 | 448 | 1.51 | 8.08 | 8.4 | 0.8 | 0.4 |
| 0 | 609 | 487 | 12 | 0 | 0 | 437 | 429 | 1.45 | 9.01 | 9.17 | 0.79 | 0.39 |
| 0 | 610 | 522 | 44 | 0 | 0 | 467 | 454 | 1.4 | 7.77 | 8.3 | 0.79 | 0.41 |
| 0 | 611 | 485 | 14 | 0 | 0 | 430 | 421 | 1.27 | 5.95 | 6.14 | 0.79 | 0.4 |
| 0 | 612 | 488 | 31 | 0 | 0 | 435 | 428 | 1.35 | 7.13 | 7.38 | 0.79 | 0.37 |
| 0 | 613 | 515 | 12 | 0 | 0 | 456 | 454 | 1.46 | 8.11 | 8.23 | 0.79 | 0.39 |
| 0 | 614 | 490 | 16 | 0 | 0 | 436 | 426 | 1.38 | 7.02 | 7.19 | 0.79 | 0.37 |
| 0 | 615 | 522 | 32 | 0 | 0 | 455 | 448 | 1.38 | 7.69 | 8.07 | 0.79 | 0.37 |
| 0 | 616 | 510 | 45 | 0 | 0 | 471 | 461 | 1.39 | 7.77 | 8.57 | 0.79 | 0.42 |
| 0 | 617 | 497 | 11 | 0 | 0 | 423 | 417 | 1.37 | 7.59 | 7.94 | 0.79 | 0.38 |
| 0 | 618 | 523 | 13 | 0 | 0 | 461 | 456 | 1.43 | 8.05 | 8.1 | 0.79 | 0.4 |
| 0 | 619 | 496 | 28 | 0 | 0 | 439 | 433 | 1.33 | 7.76 | 7.86 | 0.78 | 0.39 |
| 0 | 620 | 482 | 11 | 0 | 0 | 420 | 410 | 1.36 | 7.13 | 7.35 | 0.79 | 0.41 |
| 0 | 621 | 498 | 19 | 0 | 0 | 436 | 430 | 1.28 | 6.94 | 7.05 | 0.79 | 0.42 |
| 0 | 622 | 507 | 34 | 0 | 0 | 454 | 446 | 1.31 | 7.37 | 7.61 | 0.79 | 0.4 |
| 0 | 623 | 496 | 14 | 0 | 0 | 427 | 422 | 1.34 | 8.51 | 8.78 | 0.79 | 0.39 |
| 0 | 624 | 496 | 26 | 0 | 0 | 449 | 436 | 1.22 | 8.09 | 8.42 | 0.78 | 0.41 |
| 0 | 625 | 515 | 60 | 0 | 0 | 469 | 462 | 1.25 | 6.55 | 7.02 | 0.78 | 0.42 |
| 0 | 626 | 514 | 55 | 0 | 0 | 440 | 433 | 1.4 | 9.11 | 9.26 | 0.79 | 0.38 |
| 0 | 627 | 506 | 9 | 0 | 0 | 439 | 434 | 1.32 | 8.13 | 8.22 | 0.79 | 0.39 |
| 0 | 628 | 496 | 24 | 0 | 0 | 445 | 439 | 1.26 | 8.71 | 9.26 | 0.77 | 0.42 |
| 0 | 629 | 512 | 7 | 0 | 0 | 444 | 436 | 1.29 | 7.43 | 7.59 | 0.78 | 0.4 |
| 0 | 630 | 511 | 24 | 0 | 0 | 437 | 434 | 1.1 | 6.31 | 6.27 | 0.78 | 0.39 |
| 0 | 631 | 506 | 43 | 0 | 0 | 466 | 460 | 1.22 | 9.15 | 9.95 | 0.77 | 0.42 |
| 0 | 632 | 479 | 17 | 0 | 0 | 426 | 419 | 1.16 | 7.85 | 7.98 | 0.77 | 0.41 |
| 0 | 633 | 508 | 10 | 0 | 0 | 442 | 437 | 1.21 | 7.58 | 7.67 | 0.78 | 0.4 |
| 0 | 634 | 477 | 44 | 0 | 0 | 415 | 404 | 1.25 | 9.31 | 9.9 | 0.77 | 0.41 |
| 0 | 635 | 526 | 16 | 0 | 0 | 447 | 440 | 1.12 | 7.18 | 7.21 | 0.77 | 0.42 |
| 0 | 636 | 511 | 10 | 0 | 0 | 458 | 451 | 1.08 | 7.67 | 7.74 | 0.76 | 0.42 |
| 0 | 637 | 481 | 42 | 0 | 0 | 438 | 430 | 1.12 | 7.96 | 8.38 | 0.76 | 0.44 |
| 0 | 638 | 535 | 8 | 0 | 0 | 453 | 444 | 1.12 | 6.8 | 6.91 | 0.76 | 0.42 |
| 0 | 639 | 497 | 54 | 0 | 0 | 462 | 450 | 1.23 | 9.18 | 9.5 | 0.77 | 0.41 |
| 0 | 640 | 467 | 26 | 0 | 0 | 423 | 420 | 1.01 | 7.64 | 7.81 | 0.76 | 0.42 |
| 0 | 641 | 527 | 30 | 0 | 0 | 460 | 453 | 1.02 | 7.56 | 7.62 | 0.75 | 0.44 |
| 0 | 642 | 495 | 18 | 0 | 0 | 420 | 406 | 1.05 | 6.88 | 7.16 | 0.76 | 0.4 |
| 0 | 643 | 515 | 18 | 0 | 0 | 460 | 452 | 1.1 | 6.84 | 7.15 | 0.76 | 0.42 |
| 0 | 644 | 507 | 49 | 0 | 0 | 435 | 429 | 1.14 | 7.22 | 7.38 | 0.77 | 0.4 |
| 0 | 645 | 481 | 18 | 0 | 0 | 424 | 417 | 1.01 | 6.75 | 6.94 | 0.76 | 0.43 |
| 0 | 646 | 521 | 53 | 0 | 0 | 473 | 467 | 1.02 | 7.4 | 7.65 | 0.75 | 0.43 |
| 0 | 647 | 483 | 7 | 0 | 0 | 412 | 407 | 0.99 | 6.82 | 6.86 | 0.75 | 0.42 |
| 0 | 648 | 505 | 4 | 0 | 0 | 443 | 441 | 1.03 | 8.04 | 8.06 | 0.75 | 0.41 |
| 0 | 649 | 487 | 47 | 0 | 0 | 434 | 425 | 1.06 | 7.07 | 7.59 | 0.75 | 0.4 |
| 0 | 650 | 517 | 12 | 0 | 0 | 460 | 454 | 1.03 | 8.08 | 8.14 | 0.76 | 0.41 |
| 0 | 651 | 506 | 20 | 0 | 0 | 442 | 434 | 0.98 | 8.43 | 8.67 | 0.74 | 0.43 |
| 0 | 652 | 501 | 32 | 0 | 0 | 434 | 427 | 1.02 | 7.75 | 8 | 0.76 | 0.41 |
| 0 | 653 | 518 | 27 | 0 | 0 | 458 | 449 | 0.98 | 7.32 | 7.79 | 0.75 | 0.42 |
| 0 | 654 | 487 | 15 | 0 | 0 | 426 | 423 | 0.95 | 6.62 | 6.72 | 0.74 | 0.43 |
| 0 | 655 | 493 | 12 | 0 | 0 | 430 | 426 | 0.95 | 7.05 | 7.08 | 0.74 | 0.42 |
| 0 | 656 | 511 | 23 | 0 | 0 | 446 | 433 | 0.92 | 6.69 | 6.99 | 0.74 | 0.41 |
| 0 | 657 | 512 | 14 | 0 | 0 | 448 | 442 | 0.99 | 7.75 | 7.87 | 0.74 | 0.4 |
| 0 | 658 | 513 | 24 | 0 | 0 | 459 | 450 | 0.98 | 8.72 | 8.9 | 0.75 | 0.43 |
| 0 | 659 | 478 | 20 | 0 | 0 | 413 | 408 | 0.94 | 8.23 | 8.42 | 0.74 | 0.4 |
| 0 | 660 | 527 | 32 | 0 | 0 | 489 | 484 | 0.96 | 8.06 | 8.16 | 0.74 | 0.43 |
| 0 | 661 | 502 | 21 | 0 | 0 | 444 | 438 | 0.82 | 5.29 | 5.44 | 0.73 | 0.41 |
| 0 | 662 | 508 | 19 | 0 | 0 | 453 | 439 | 0.97 | 8.33 | 8.73 | 0.73 | 0.43 |
| 0 | 663 | 481 | 18 | 0 | 0 | 430 | 426 | 0.91 | 7.06 | 7.2 | 0.74 | 0.44 |
| 0 | 664 | 519 | 32 | 0 | 0 | 469 | 460 | 0.96 | 7.02 | 7.33 | 0.74 | 0.42 |
| 0 | 665 | 504 | 18 | 0 | 0 | 447 | 441 | 0.85 | 6.32 | 6.57 | 0.73 | 0.43 |
| 0 | 666 | 505 | 18 | 0 | 0 | 455 | 446 | 0.87 | 6.57 | 6.63 | 0.74 | 0.41 |
| 0 | 667 | 484 | 42 | 0 | 0 | 431 | 418 | 0.97 | 8.18 | 8.56 | 0.74 | 0.45 |
| 0 | 668 | 517 | 17 | 0 | 0 | 450 | 443 | 0.8 | 6.14 | 6.31 | 0.74 | 0.42 |
| 0 | 669 | 511 | 15 | 0 | 0 | 434 | 431 | 0.84 | 6.64 | 6.64 | 0.73 | 0.43 |
| 0 | 670 | 473 | 44 | 0 | 0 | 423 | 417 | 0.92 | 8.18 | 8.39 | 0.73 | 0.43 |
| 0 | 671 | 498 | 48 | 0 | 0 | 456 | 449 | 0.88 | 7.04 | 7.14 | 0.73 | 0.41 |
| 0 | 672 | 534 | 24 | 0 | 0 | 474 | 466 | 0.92 | 7.61 | 7.74 | 0.73 | 0.43 |
| 0 | 673 | 495 | 27 | 0 | 0 | 437 | 429 | 0.87 | 7.75 | 8.61 | 0.74 | 0.42 |
| 0 | 674 | 524 | 31 | 0 | 0 | 470 | 457 | 0.83 | 6.98 | 7.17 | 0.72 | 0.42 |
| 0 | 675 | 490 | 59 | 0 | 0 | 430 | 420 | 0.78 | 7.03 | 7.24 | 0.72 | 0.44 |
| 0 | 676 | 498 | 28 | 0 | 0 | 434 | 430 | 0.88 | 7.7 | 7.87 | 0.73 | 0.42 |
| 0 | 677 | 471 | 14 | 0 | 0 | 404 | 398 | 0.89 | 8.03 | 8.09 | 0.73 | 0.42 |
| 0 | 678 | 537 | 27 | 0 | 0 | 460 | 454 | 0.86 | 7.26 | 7.35 | 0.74 | 0.41 |
| 0 | 679 | 495 | 24 | 0 | 0 | 442 | 438 | 0.87 | 7.02 | 7.29 | 0.73 | 0.42 |
| 0 | 680 | 523 | 9 | 0 | 0 | 451 | 446 | 0.85 | 6.92 | 6.96 | 0.73 | 0.44 |
| 0 | 681 | 470 | 12 | 0 | 0 | 389 | 383 | 0.81 | 7.26 | 7.43 | 0.72 | 0.43 |
| 0 | 682 | 562 | 29 | 0 | 0 | 492 | 484 | 0.75 | 6.71 | 6.95 | 0.71 | 0.46 |
| 0 | 683 | 447 | 13 | 0 | 0 | 397 | 389 | 0.95 | 9.45 | 9.61 | 0.75 | 0.41 |
| 0 | 684 | 517 | 29 | 0 | 0 | 462 | 455 | 0.85 | 7.31 | 7.44 | 0.74 | 0.44 |
| 0 | 685 | 500 | 29 | 0 | 0 | 448 | 442 | 0.86 | 7.35 | 7.66 | 0.73 | 0.43 |
| 0 | 686 | 500 | 9 | 0 | 0 | 423 | 414 | 0.82 | 7.77 | 8.05 | 0.73 | 0.43 |
| 0 | 687 | 498 | 7 | 0 | 0 | 427 | 418 | 0.8 | 7.28 | 7.37 | 0.73 | 0.45 |
| 0 | 688 | 548 | 45 | 0 | 0 | 493 | 477 | 0.77 | 6.59 | 7.42 | 0.7 | 0.48 |
| 0 | 689 | 517 | 26 | 0 | 0 | 461 | 454 | 0.81 | 7.56 | 7.69 | 0.73 | 0.43 |
| 0 | 690 | 453 | 18 | 0 | 0 | 419 | 409 | 0.8 | 6.8 | 6.82 | 0.72 | 0.43 |
| 0 | 691 | 499 | 18 | 0 | 0 | 427 | 421 | 0.8 | 7.02 | 7.19 | 0.72 | 0.44 |
| 0 | 692 | 493 | 21 | 0 | 0 | 445 | 440 | 0.78 | 7.21 | 7.5 | 0.73 | 0.42 |
| 0 | 693 | 524 | 28 | 0 | 0 | 465 | 461 | 0.8 | 7.03 | 7.05 | 0.73 | 0.43 |
| 0 | 694 | 499 | 25 | 0 | 0 | 420 | 416 | 0.75 | 6.91 | 6.95 | 0.72 | 0.43 |
| 0 | 695 | 528 | 17 | 0 | 0 | 475 | 464 | 0.7 | 6.66 | 6.92 | 0.71 | 0.47 |
| 0 | 696 | 503 | 11 | 0 | 0 | 419 | 408 | 0.86 | 7.92 | 8.16 | 0.73 | 0.42 |
| 0 | 697 | 494 | 57 | 0 | 0 | 454 | 451 | 0.79 | 7.01 | 7.51 | 0.71 | 0.45 |
| 0 | 698 | 492 | 8 | 0 | 0 | 423 | 416 | 0.81 | 6.93 | 7.07 | 0.73 | 0.45 |
| 0 | 699 | 481 | 20 | 0 | 0 | 420 | 415 | 0.8 | 7.26 | 7.38 | 0.72 | 0.44 |
| 0 | 700 | 532 | 14 | 0 | 0 | 466 | 457 | 0.79 | 7.16 | 7.38 | 0.73 | 0.45 |
| 0 | 701 | 504 | 27 | 0 | 0 | 474 | 461 | 0.7 | 5.99 | 6.38 | 0.71 | 0.45 |
| 0 | 702 | 517 | 38 | 0 | 0 | 467 | 450 | 0.74 | 6.44 | 6.69 | 0.72 | 0.43 |
| 0 | 703 | 479 | 29 | 0 | 0 | 430 | 422 | 0.73 | 5.95 | 5.98 | 0.72 | 0.43 |
| 0 | 704 | 500 | 22 | 0 | 0 | 437 | 433 | 0.8 | 7.45 | 7.56 | 0.72 | 0.42 |
| 0 | 705 | 488 | 29 | 0 | 0 | 411 | 402 | 0.74 | 6.71 | 6.87 | 0.72 | 0.45 |
| 0 | 706 | 520 | 39 | 0 | 0 | 468 | 461 | 0.76 | 6.73 | 7.69 | 0.71 | 0.46 |
| 0 | 707 | 512 | 29 | 0 | 0 | 458 | 452 | 0.79 | 7.04 | 7.17 | 0.73 | 0.41 |
| 0 | 708 | 512 | 13 | 0 | 0 | 450 | 442 | 0.73 | 7.26 | 7.48 | 0.71 | 0.48 |
| 0 | 709 | 514 | 37 | 0 | 0 | 457 | 448 | 0.72 | 6.33 | 6.65 | 0.71 | 0.47 |
| 0 | 710 | 501 | 11 | 0 | 0 | 434 | 430 | 0.82 | 7.83 | 7.9 | 0.73 | 0.43 |
| 0 | 711 | 494 | 22 | 0 | 0 | 428 | 419 | 0.79 | 7.48 | 7.73 | 0.73 | 0.44 |
| 0 | 712 | 461 | 47 | 0 | 0 | 413 | 409 | 0.74 | 7.47 | 7.67 | 0.73 | 0.41 |
| 0 | 713 | 515 | 7 | 0 | 0 | 453 | 448 | 0.77 | 8 | 8.12 | 0.73 | 0.44 |
| 0 | 714 | 516 | 6 | 0 | 0 | 441 | 435 | 0.7 | 6.26 | 6.32 | 0.72 | 0.44 |
| 0 | 715 | 507 | 30 | 0 | 0 | 461 | 456 | 0.76 | 7.16 | 7.58 | 0.71 | 0.44 |
| 0 | 716 | 536 | 28 | 0 | 0 | 469 | 465 | 0.67 | 6.6 | 6.69 | 0.72 | 0.44 |
| 0 | 717 | 524 | 13 | 0 | 0 | 448 | 448 | 0.74 | 7.13 | 7.11 | 0.72 | 0.44 |
| 0 | 718 | 450 | 23 | 0 | 0 | 401 | 397 | 0.71 | 6.14 | 6.19 | 0.71 | 0.46 |
| 0 | 719 | 272 | 207 | 0 | 0 | 406 | 402 | 0.77 | 7.95 | 8.61 | 0.73 | 0.49 |
+------+---------+----------+----------+----------+---------+---------+---------+-------+----------+----------+----------+-----------+
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 | 381 | 3 | 0 | 0 | 195 | 105 | 0.08 | 0.27 | 0.22 | 0.5 | 0.96 |
| 0 | 1.23 | 1332 | 10 | 0 | 0 | 952 | 777 | 0.09 | 0.26 | 0.2 | 0.51 | 0.92 |
| 0 | 1.25 | 3233 | 22 | 0 | 0 | 2606 | 2241 | 0.1 | 0.27 | 0.23 | 0.52 | 0.87 |
| 0 | 1.28 | 5312 | 39 | 0 | 0 | 4369 | 3991 | 0.12 | 0.32 | 0.28 | 0.53 | 0.8 |
| 0 | 1.3 | 7648 | 51 | 0 | 0 | 6425 | 5990 | 0.13 | 0.41 | 0.36 | 0.55 | 0.74 |
| 0 | 1.33 | 11094 | 74 | 0 | 0 | 9253 | 8730 | 0.15 | 0.46 | 0.42 | 0.56 | 0.69 |
| 0 | 1.36 | 15358 | 132 | 0 | 0 | 12977 | 12300 | 0.18 | 0.54 | 0.47 | 0.58 | 0.63 |
| 0 | 1.4 | 20648 | 635 | 0 | 0 | 18092 | 17423 | 0.21 | 0.63 | 0.57 | 0.6 | 0.6 |
| 0 | 1.43 | 23530 | 1014 | 0 | 0 | 21166 | 20788 | 0.24 | 0.73 | 0.65 | 0.62 | 0.56 |
| 0 | 1.48 | 24115 | 1544 | 0 | 0 | 20982 | 20688 | 0.27 | 0.98 | 0.9 | 0.63 | 0.52 |
| 0 | 1.52 | 24008 | 1494 | 0 | 0 | 21253 | 20980 | 0.31 | 1.25 | 1.17 | 0.66 | 0.48 |
| 0 | 1.58 | 24289 | 1278 | 0 | 0 | 22002 | 21753 | 0.37 | 1.54 | 1.45 | 0.69 | 0.44 |
| 0 | 1.64 | 24398 | 1437 | 0 | 0 | 21731 | 21480 | 0.43 | 1.89 | 1.82 | 0.71 | 0.42 |
| 0 | 1.72 | 24712 | 1496 | 0 | 0 | 21980 | 21723 | 0.52 | 2.65 | 2.59 | 0.75 | 0.39 |
| 0 | 1.81 | 24894 | 1564 | 0 | 0 | 22145 | 21897 | 0.66 | 3.79 | 3.77 | 0.79 | 0.36 |
| 0 | 1.92 | 24741 | 1718 | 0 | 0 | 22348 | 22065 | 0.88 | 5.65 | 5.73 | 0.84 | 0.33 |
| 0 | 2.07 | 25276 | 1518 | 0 | 0 | 22939 | 22665 | 1.14 | 7.94 | 8.17 | 0.86 | 0.32 |
| 0 | 2.28 | 25359 | 1641 | 0 | 0 | 23216 | 22975 | 1.38 | 11.03 | 11.51 | 0.88 | 0.28 |
| 0 | 2.61 | 25776 | 1566 | 0 | 0 | 22999 | 22755 | 2.11 | 17.71 | 18.45 | 0.89 | 0.26 |
| 0 | 3.28 | 25964 | 1601 | 0 | 0 | 23487 | 23211 | 3.57 | 41.07 | 42.92 | 0.87 | 0.25 |
+------+---------+----------+----------+----------+---------+---------+---------+-------+----------+----------+----------+-----------+
Summary for experiment 0
+---------------------------------------+-----------+----------+--------+
| Item | Overall | Low | High |
|---------------------------------------+-----------+----------+--------|
| dmin | 1.21 | 3.28 | 1.21 |
| dmax | 69.3 | 69.3 | 1.23 |
| number fully recorded | 362068 | 25964 | 381 |
| number partially recorded | 18837 | 1601 | 3 |
| number with invalid background pixels | 97588 | 5426 | 373 |
| number with invalid foreground pixels | 55668 | 3700 | 189 |
| number with overloaded pixels | 0 | 0 | 0 |
| number in powder rings | 0 | 0 | 0 |
| number processed with summation | 321117 | 23487 | 195 |
| number processed with profile fitting | 314537 | 23211 | 105 |
| number failed in background modelling | 1740 | 682 | 0 |
| number failed in summation | 55668 | 3700 | 189 |
| number failed in profile fitting | 62248 | 3976 | 279 |
| ibg | 0.87 | 3.57 | 0.08 |
| i/sigi (summation) | 6.99 | 41.07 | 0.27 |
| i/sigi (profile fitting) | 7.25 | 42.92 | 0.22 |
| cc prf | 0.74 | 0.87 | 0.5 |
| cc_pearson sum/prf | 0.95 | 0.94 | 0.62 |
| cc_spearman sum/prf | 0.94 | 0.98 | 0.62 |
+---------------------------------------+-----------+----------+--------+
Timing information for integration
+-------------------+----------------+
| Read time | 153.38 seconds |
| Extract time | 2.87 seconds |
| Pre-process time | 0.46 seconds |
| Process time | 191.86 seconds |
| Post-process time | 0.00 seconds |
| Total time | 358.70 seconds |
+-------------------+----------------+
Saving 380905 reflections to integrated.refl
Saving the experiments to integrated.expt
|
Checking the log output, we see that after loading in the reference
reflections from refined.refl
, 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.expt
. 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.refl
. 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 analysis¶
After integration, further assessments of the crystal symmetry are possible. Previously, we made an assessment of the lattice symmetry (i.e. the symmetry of the diffraction spot positions), however now we have determined a set of intensity values and can investigate the full symmetry of the diffraction pattern (i.e. spot positions and intensities). The symmetry analysis consists of two stages, determining the laue group symmetry and analysing absent reflections to suggest the space group symmetry.
dials.symmetry integrated.expt integrated.refl
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 | DIALS 2.2.9-g061426e04-release
The following parameters have been modified:
input {
experiments = integrated.expt
reflections = integrated.refl
}
================================================================================
Performing Laue group analysis
Filtering reflections for dataset 0
Read 380905 predicted reflections
Selected 314537 reflections integrated by profile and summation methods
Combined 5340 partial reflections with other partial reflections
Removed 1156 reflections below partiality threshold
Removed 0 intensity.sum.value reflections with I/Sig(I) < -5
Removed 408 intensity.prf.value reflections with I/Sig(I) < -5
A round of outlier rejection has been performed,
273 outliers have been identified.
Patterson group: C 1 2/m 1 (x-y,x+y,z)
--------------------------------------------------------------------------------
Normalising intensities for dataset 1
ML estimate of overall B_cart value:
13.52, -1.10, -0.67
13.45, -1.30
10.80
ML estimate of -log of scale factor:
-2.15
--------------------------------------------------------------------------------
Estimation of resolution for Laue group analysis
Resolution estimate from <I>/<σ(I)> > 4.0 : 1.85
Resolution estimate from CC½ > 0.60: 1.38
High resolution limit set to: 1.38
Selecting 274904 reflections with d > 1.38
Input crystal symmetry:
Unit cell: (40.5515, 40.5515, 69.2884, 91.9961, 91.9961, 98.0721)
Space group: P 1 (No. 1)
Change of basis op to minimum cell: a,b,c
Crystal symmetry in minimum cell:
Unit cell: (40.5515, 40.5515, 69.2884, 91.9961, 91.9961, 98.0721)
Space group: P 1 (No. 1)
Lattice point group: C 1 2/m 1 (x-y,x+y,z)
Overall CC for 20000 unrelated pairs: 0.370
Estimated expectation value of true correlation coefficient E(CC) = 0.981
Estimated sd(CC) = 0.672 / sqrt(N)
Estimated E(CC) of true correlation coefficient from identity = 0.981
--------------------------------------------------------------------------------
Scoring individual symmetry elements
+--------------+--------+------+--------+-----+---------------+
| likelihood | Z-CC | CC | N | | Operator |
|--------------+--------+------+--------+-----+---------------|
| 0.935 | 9.79 | 0.98 | 273629 | *** | 1 |(0, 0, 0) |
| 0.931 | 9.69 | 0.97 | 272339 | *** | 2 |(-1, 1, 0) |
+--------------+--------+------+--------+-----+---------------+
--------------------------------------------------------------------------------
Scoring all possible sub-groups
+-------------------+-----+--------------+----------+--------+--------+------+-------+---------+--------------------+
| Patterson group | | Likelihood | NetZcc | Zcc+ | Zcc- | CC | CC- | delta | Reindex operator |
|-------------------+-----+--------------+----------+--------+--------+------+-------+---------+--------------------|
| C 1 2/m 1 | *** | 0.931 | 9.74 | 9.74 | 0 | 0.97 | 0 | 0 | a+b,-a+b,c |
| P -1 | | 0.069 | 0.09 | 9.79 | 9.69 | 0.98 | 0.97 | 0 | a,b,c |
+-------------------+-----+--------------+----------+--------+--------+------+-------+---------+--------------------+
Best solution: C 1 2/m 1
Unit cell: (53.1698, 61.2427, 69.2884, 90, 93.0456, 90)
Reindex operator: a+b,-a+b,c
Laue group probability: 0.931
Laue group confidence: 0.896
+-------------------+--------------------------+
| Patterson group | Corresponding MX group |
|-------------------+--------------------------|
| C 1 2/m 1 | C 1 2 1 |
+-------------------+--------------------------+
================================================================================
Analysing systematic absences
Laue group: C 1 2/m 1
No absences to check for this laue group
Saving reindexed experiments to symmetrized.expt in space group C 1 2 1
Saving 380905 reindexed reflections to symmetrized.refl
|
The laue group symmetry is the 3D rotational symmetry of the diffraction pattern plus inversion symmetry (due to Friedel’s law that I(h,k,l) = I(-h,-k,-l) when absorption is negligible). To determine the laue group symmetry, all possible symmetry operations of the lattice are scored by comparing the correlation of reflection intensities that would be equivalent under a given operation. The scores for individual symmetry operations are then combined to score the potential laue groups.
Scoring all possible sub-groups
+-------------------+-----+--------------+----------+--------+--------+------+-------+---------+--------------------+
| Patterson group | | Likelihood | NetZcc | Zcc+ | Zcc- | CC | CC- | delta | Reindex operator |
|-------------------+-----+--------------+----------+--------+--------+------+-------+---------+--------------------|
| C 1 2/m 1 | *** | 0.931 | 9.74 | 9.74 | 0 | 0.97 | 0 | 0 | a+b,-a+b,c |
| P -1 | | 0.069 | 0.09 | 9.79 | 9.69 | 0.98 | 0.97 | 0 | a,b,c |
+-------------------+-----+--------------+----------+--------+--------+------+-------+---------+--------------------+
Best solution: C 1 2/m 1
Unit cell: (53.1698, 61.2427, 69.2884, 90, 93.0456, 90)
Reindex operator: a+b,-a+b,c
Laue group probability: 0.931
Laue group confidence: 0.896
+-------------------+--------------------------+
| Patterson group | Corresponding MX group |
|-------------------+--------------------------|
| C 1 2/m 1 | C 1 2 1 |
+-------------------+--------------------------+
================================================================================
Here we see clearly that the best solution is given by C 1 2/m 1, with
a high likelihood. For macromolecules, their chirality means that mirror symmetry
is not allowed (the ‘m’ in C 1 2/m 1), therefore the determined symmetry
relevant for MX at this point is C2. For some laue groups, there are multiple
space groups possible due additional translational symmetries
(e.g P 2, P 21 for laue group P2/m), which requires an additional
analysis of systematic absences. However this is not the case for C 1 2/m 1,
therefore the final result of the analysis is the space group C2, in agreement
with the result from dials.refine_bravais_settings
.
Scaling and Merging¶
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. Three physically motivated corrections are used to create an scaling model, 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.
dials.scale symmetrized.expt symmetrized.refl
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 | DIALS 2.2.9-g061426e04-release
The following parameters have been modified:
input {
experiments = symmetrized.expt
reflections = symmetrized.refl
}
Checking for the existence of a reflection table
containing multiple datasets
Found 1 reflection tables & 1 experiments in total.
Dataset ids are: 0
Space group being used during scaling is C 1 2 1
Scaling models have been initialised for all experiments.
================================================================================
The experiment id for this dataset is 0.
The scaling model type being applied is physical.
Applying filter of min_isigi > -5.0, partiality > 0.4
Excluding 71570/380905 reflections
Reflections passing individual criteria:
criterion: user excluded, reflections: 14167
criterion: excluded for scaling, reflections: 71570
The following corrections will be applied to this dataset:
+--------------+----------------+
| correction | n_parameters |
|--------------+----------------|
| scale | 26 |
| decay | 20 |
| absorption | 24 |
+--------------+----------------+
A round of outlier rejection has been performed,
9290 outliers have been identified.
306292 reflections were preselected for scale factor determination
out of 309335 suitable reflections:
Reflections passing individual criteria:
criterion: in I/sigma range (I/sig > -5.0), reflections: 309335
criterion: above min partiality ( > 0.95), reflections: 306292
Randomly selected 7759/47413 groups (m>1) to use for scaling model
minimisation (50180 reflections)
Completed preprocessing and initialisation for this dataset.
================================================================================
Components to be refined in this cycle for all datasets: scale, decay, absorption
Performing a round of scaling with an LBFGS minimizer.
Time taken for refinement 3.35
Refinement steps:
+--------+--------+----------+
| Step | Nref | RMSD_I |
| | | (a.u) |
|--------+--------+----------|
| 0 | 48661 | 1.2467 |
| 1 | 48661 | 1.2135 |
| 2 | 48661 | 1.1032 |
| 3 | 48661 | 1.0309 |
| 4 | 48661 | 0.94326 |
| 5 | 48661 | 0.89983 |
| 6 | 48661 | 0.88706 |
| 7 | 48661 | 0.87555 |
| 8 | 48661 | 0.86004 |
| 9 | 48661 | 0.85163 |
| 10 | 48661 | 0.84854 |
| 11 | 48661 | 0.8474 |
| 12 | 48661 | 0.8466 |
| 13 | 48661 | 0.84563 |
| 14 | 48661 | 0.84535 |
| 15 | 48661 | 0.84497 |
| 16 | 48661 | 0.84484 |
| 17 | 48661 | 0.84457 |
| 18 | 48661 | 0.84449 |
+--------+--------+----------+
RMSD no longer decreasing
lbfgs minimizer stop: callback_after_step is True
================================================================================
Scale factors determined during minimisation have now been
applied to all reflections for dataset 0.
A round of outlier rejection has been performed,
1175 outliers have been identified.
Performing profile/summation intensity optimisation.
+-----------------+---------+---------+
| Combination | CC1/2 | Rmeas |
|-----------------+---------+---------|
| prf only | 0.99912 | 0.061 |
| sum only | 0.99884 | 0.06731 |
| Imid = 284.82 | 0.99888 | 0.06082 |
| Imid = 48699.97 | 0.99888 | 0.06108 |
| Imid = 4870.0 | 0.99888 | 0.06099 |
| Imid = 487.0 | 0.99889 | 0.06071 |
| Imid = 48.7 | 0.99885 | 0.06285 |
+-----------------+---------+---------+
Combined intensities with Imid = 487.00 determined to be best for scaling.
A round of outlier rejection has been performed,
1017 outliers have been identified.
Components to be refined in this cycle for all datasets: scale, decay, absorption
Performing a round of scaling with an LBFGS minimizer.
Time taken for refinement 1.84
Refinement steps:
+--------+--------+----------+
| Step | Nref | RMSD_I |
| | | (a.u) |
|--------+--------+----------|
| 0 | 50053 | 0.92102 |
| 1 | 50053 | 0.91831 |
| 2 | 50053 | 0.91067 |
| 3 | 50053 | 0.9093 |
| 4 | 50053 | 0.90814 |
| 5 | 50053 | 0.90494 |
| 6 | 50053 | 0.9046 |
| 7 | 50053 | 0.90407 |
| 8 | 50053 | 0.90399 |
+--------+--------+----------+
RMSD no longer decreasing
lbfgs minimizer stop: callback_after_step is True
================================================================================
Scale factors determined during minimisation have now been
applied to all reflections for dataset 0.
A round of outlier rejection has been performed,
890 outliers have been identified.
Performing a round of error model refinement.
Error model details:
Type: basic
Parameters: a = 0.96812, b = 0.03581
Error model formula: σ'² = a²(σ² + (bI)²)
estimated I/sigma asymptotic limit: 28.845
Results of error model refinement. Uncorrected and corrected variances
of normalised intensity deviations for given intensity ranges. Variances
are expected to be ~1.0 for reliable errors (sigmas).
+--------------------------+----------+------------------------+----------------------+
| Intensity range (<Ih>) | n_refl | Uncorrected variance | Corrected variance |
|--------------------------+----------+------------------------+----------------------|
| 9912.89 - 1926.25 | 868 | 13.884 | 0.861 |
| 1926.25 - 1454.41 | 868 | 11.598 | 1.09 |
| 1454.41 - 1229.91 | 868 | 9.149 | 1.082 |
| 1229.91 - 905.52 | 2037 | 6.592 | 0.965 |
| 905.52 - 497.82 | 5833 | 4.975 | 1.156 |
| 497.82 - 273.68 | 9615 | 3.112 | 1.227 |
| 273.68 - 150.46 | 14507 | 2.133 | 1.241 |
| 150.46 - 82.72 | 19158 | 1.539 | 1.164 |
| 82.72 - 45.47 | 20113 | 1.172 | 1.039 |
| 45.47 - 24.99 | 12978 | 0.948 | 0.915 |
+--------------------------+----------+------------------------+----------------------+
Components to be refined in this cycle for all datasets: scale, decay, absorption
Performing a round of scaling with a Levenberg-Marquardt minimizer.
Time taken for refinement 4.38
Refinement steps:
+--------+--------+----------+
| Step | Nref | RMSD_I |
| | | (a.u) |
|--------+--------+----------|
| 0 | 50066 | 0.76614 |
| 1 | 50066 | 0.76112 |
| 2 | 50066 | 0.75991 |
| 3 | 50066 | 0.75854 |
| 4 | 50066 | 0.75782 |
| 5 | 50066 | 0.7577 |
| 6 | 50066 | 0.75769 |
+--------+--------+----------+
RMSD no longer decreasing
================================================================================
Components to be refined in this cycle for all datasets: scale, decay, absorption
Performing a round of scaling with a Levenberg-Marquardt minimizer.
Time taken for refinement 1.18
Refinement steps:
+--------+--------+----------+
| Step | Nref | RMSD_I |
| | | (a.u) |
|--------+--------+----------|
| 0 | 50066 | 0.75769 |
| 1 | 50066 | 0.75769 |
+--------+--------+----------+
RMSD no longer decreasing
================================================================================
Scale factors determined during minimisation have now been
applied to all reflections for dataset 0.
A round of outlier rejection has been performed,
127 outliers have been identified.
Performing a round of error model refinement.
Error model details:
Type: basic
Parameters: a = 0.95242, b = 0.03619
Error model formula: σ'² = a²(σ² + (bI)²)
estimated I/sigma asymptotic limit: 29.010
Results of error model refinement. Uncorrected and corrected variances
of normalised intensity deviations for given intensity ranges. Variances
are expected to be ~1.0 for reliable errors (sigmas).
+--------------------------+----------+------------------------+----------------------+
| Intensity range (<Ih>) | n_refl | Uncorrected variance | Corrected variance |
|--------------------------+----------+------------------------+----------------------|
| 9907.84 - 1924.51 | 867 | 13.586 | 0.871 |
| 1924.51 - 1453.70 | 867 | 11.272 | 1.082 |
| 1453.70 - 1229.29 | 867 | 8.698 | 1.071 |
| 1229.29 - 905.25 | 2035 | 6.445 | 0.958 |
| 905.25 - 497.70 | 5853 | 4.979 | 1.166 |
| 497.70 - 273.63 | 9604 | 3.061 | 1.234 |
| 273.63 - 150.44 | 14481 | 2.107 | 1.248 |
| 150.44 - 82.71 | 19129 | 1.5 | 1.159 |
| 82.71 - 45.47 | 20012 | 1.138 | 1.035 |
| 45.47 - 24.99 | 13000 | 0.936 | 0.929 |
+--------------------------+----------+------------------------+----------------------+
The reflection table variances have been adjusted to account for the
uncertainty in the scaling model
Total time taken: 19.7665s
================================================================================
40.00% of model parameters have signficant uncertainty
(sigma/abs(parameter) > 0.5)
Summary of dataset partialities
+------------------+----------+
| Partiality (p) | n_refl |
|------------------+----------|
| all reflections | 380905 |
| p > 0.99 | 362290 |
| 0.5 < p < 0.99 | 3783 |
| 0.01 < p < 0.5 | 9475 |
| p < 0.01 | 5357 |
+------------------+----------+
Reflections below a partiality_cutoff of 0.4 are not considered for any
part of the scaling analysis or for the reporting of merging statistics.
Additionally, if applicable, only reflections with a min_partiality > 0.95
were considered for use when refining the scaling model.
----------Merging statistics----------
Resolution: 69.19 - 1.22
Observations: 309208
Unique reflections: 48413
Redundancy: 6.4
Completeness: 73.13%
Mean intensity: 72.7
Mean I/sigma(I): 12.6
R-merge: 0.066
R-meas: 0.071
R-pim: 0.027
Statistics by resolution bin:
d_max d_min #obs #uniq mult. %comp <I> <I/sI> r_mrg r_meas r_pim cc1/2 cc_ano
69.30 3.31 22311 3348 6.66 98.73 550.7 52.8 0.038 0.041 0.016 0.998* 0.320*
3.31 2.63 21753 3272 6.65 97.58 206.6 35.9 0.049 0.053 0.020 0.998* 0.379*
2.63 2.29 22232 3220 6.90 96.73 104.5 26.5 0.065 0.070 0.026 0.997* 0.327*
2.29 2.08 21490 3168 6.78 95.97 72.6 20.2 0.078 0.084 0.032 0.996* 0.214*
2.08 1.93 21124 3155 6.70 95.37 48.6 15.2 0.095 0.104 0.040 0.994* 0.251*
1.93 1.82 21219 3145 6.75 94.47 28.0 10.4 0.131 0.142 0.054 0.992* 0.193*
1.82 1.73 20924 3119 6.71 94.00 17.1 7.2 0.175 0.190 0.073 0.986* 0.182*
1.73 1.65 20288 3077 6.59 93.33 11.4 5.1 0.227 0.247 0.096 0.977* 0.127*
1.65 1.59 21131 3061 6.90 92.48 9.1 4.2 0.273 0.295 0.112 0.973* 0.070*
1.59 1.54 20019 3035 6.60 92.17 6.8 3.3 0.330 0.358 0.138 0.958* 0.092*
1.54 1.49 19569 3017 6.49 91.48 5.4 2.6 0.401 0.436 0.170 0.945* 0.033
1.49 1.44 20173 2986 6.76 90.90 3.9 1.9 0.528 0.572 0.219 0.923* 0.086*
1.44 1.41 18232 2992 6.09 90.67 3.2 1.5 0.610 0.667 0.266 0.891* 0.069*
1.41 1.37 13657 2472 5.52 73.79 2.6 1.2 0.723 0.797 0.330 0.838* -0.040
1.37 1.34 9253 1727 5.36 53.25 2.3 1.0 0.801 0.885 0.369 0.795* -0.024
1.34 1.31 6755 1313 5.14 40.05 2.1 0.9 0.876 0.971 0.409 0.779* 0.063
1.31 1.29 4734 1009 4.69 30.20 1.6 0.7 1.106 1.236 0.538 0.659* -0.073
1.29 1.26 2725 670 4.07 20.62 1.3 0.5 1.317 1.507 0.711 0.436* 0.040
1.26 1.24 1317 441 2.99 13.28 1.0 0.4 1.495 1.782 0.946 0.432* 0.065
1.24 1.22 302 186 1.62 5.67 1.2 0.3 1.023 1.350 0.870 0.603* -0.243
69.19 1.22 309208 48413 6.39 73.13 72.7 12.6 0.066 0.071 0.027 0.999* 0.277*
----------Resolution cutoff estimates----------
resolution of all data : 1.218
based on CC(1/2) >= 0.33 : 1.218
based on mean(I/sigma) >= 2.0 : 1.487
based on R-merge < 0.5 : 1.487
based on R-meas < 0.5 : 1.487
based on completeness >= 90% : 1.407
based on completeness >= 50% : 1.341
NOTE: we recommend using all data out to the CC(1/2) limit
for refinement.
Writing html report to: scaling.html
================================================================================
Saving the experiments to scaled.expt
Saving the scaled reflections to scaled.refl
See dials.github.io/dials_scale_user_guide.html for more info on scaling options
|
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 a correction is applied based on a prior expectation of the intensity error 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:
----------Merging statistics----------
Resolution: 69.19 - 1.22
Observations: 309208
Unique reflections: 48413
Redundancy: 6.4
Completeness: 73.13%
Mean intensity: 72.7
Mean I/sigma(I): 12.6
R-merge: 0.066
R-meas: 0.071
R-pim: 0.027
Statistics by resolution bin:
d_max d_min #obs #uniq mult. %comp <I> <I/sI> r_mrg r_meas r_pim cc1/2 cc_ano
69.30 3.31 22311 3348 6.66 98.73 550.7 52.8 0.038 0.041 0.016 0.998* 0.320*
3.31 2.63 21753 3272 6.65 97.58 206.6 35.9 0.049 0.053 0.020 0.998* 0.379*
2.63 2.29 22232 3220 6.90 96.73 104.5 26.5 0.065 0.070 0.026 0.997* 0.327*
2.29 2.08 21490 3168 6.78 95.97 72.6 20.2 0.078 0.084 0.032 0.996* 0.214*
2.08 1.93 21124 3155 6.70 95.37 48.6 15.2 0.095 0.104 0.040 0.994* 0.251*
1.93 1.82 21219 3145 6.75 94.47 28.0 10.4 0.131 0.142 0.054 0.992* 0.193*
1.82 1.73 20924 3119 6.71 94.00 17.1 7.2 0.175 0.190 0.073 0.986* 0.182*
1.73 1.65 20288 3077 6.59 93.33 11.4 5.1 0.227 0.247 0.096 0.977* 0.127*
1.65 1.59 21131 3061 6.90 92.48 9.1 4.2 0.273 0.295 0.112 0.973* 0.070*
1.59 1.54 20019 3035 6.60 92.17 6.8 3.3 0.330 0.358 0.138 0.958* 0.092*
1.54 1.49 19569 3017 6.49 91.48 5.4 2.6 0.401 0.436 0.170 0.945* 0.033
1.49 1.44 20173 2986 6.76 90.90 3.9 1.9 0.528 0.572 0.219 0.923* 0.086*
1.44 1.41 18232 2992 6.09 90.67 3.2 1.5 0.610 0.667 0.266 0.891* 0.069*
1.41 1.37 13657 2472 5.52 73.79 2.6 1.2 0.723 0.797 0.330 0.838* -0.040
1.37 1.34 9253 1727 5.36 53.25 2.3 1.0 0.801 0.885 0.369 0.795* -0.024
1.34 1.31 6755 1313 5.14 40.05 2.1 0.9 0.876 0.971 0.409 0.779* 0.063
1.31 1.29 4734 1009 4.69 30.20 1.6 0.7 1.106 1.236 0.538 0.659* -0.073
1.29 1.26 2725 670 4.07 20.62 1.3 0.5 1.317 1.507 0.711 0.436* 0.040
1.26 1.24 1317 441 2.99 13.28 1.0 0.4 1.495 1.782 0.946 0.432* 0.065
1.24 1.22 302 186 1.62 5.67 1.2 0.3 1.023 1.350 0.870 0.603* -0.243
69.19 1.22 309208 48413 6.39 73.13 72.7 12.6 0.066 0.071 0.027 0.999* 0.277*
Looking at the resolution-dependent merging statistics, we can see that the completeness falls significantly beyond 1.4 Angstrom resolution. If desired, a resolution cutoff can be applied and the data rescaled (using the output of the previous scaling run as input to the next run to load the existing state of the scaling model):
dials.scale scaled.expt scaled.refl d_min=1.4
The merging statistics, as well as a number of scaling and merging plots, are
output into a html report called scaling.html
.
This can be opened in your browser - nativigate to the section “scaling model plots” and take a look.
What is immediately apparent is the periodic nature of the scale term, with peaks
and troughs 90° apart. This indicates that the illuminated volume was changing
significantly during the experiment: a reflection would be measured as almost
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.
The relative B-factor shows low overall variation, suggesting little overall
radiation damage.
Once we are happy with the dataset quality, the final step of dials processing is to merge the data and produce a merged mtz file, suitable for input to downstream structure solution. To do this we can use the command:
dials.merge scaled.expt scaled.refl
The log output reports intensity statistics, the symmetry equivalent reflections are merged and a truncation procedure is performed, to give strictly positive merged structure factors (Fs) in addition to merged intensities.
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.expt scaled.refl
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 to unmerged MTZ¶
It is possible that an unmerged mtz file is desired for further processing before
merging. To produce a scaled unmerged mtz file, one can use the dials.export
command on the scaled datafiles:
dials.export scaled.refl scaled.expt
It is also possible to export the integrated (unscaled) data in mtz
format using dials.export
. If you have an installation of CCP4, symmetry
analysis and scaling can then be continued with the ccp4 programs
pointless, aimless and ctruncate to generate a merged mtz file:
dials.export integrated.refl integrated.expt
pointless hklin integrated.mtz hklout sorted.mtz > pointless.log
aimless hklin sorted.mtz hklout scaled.mtz > aimless.log << EOF
resolution 1.4
anomalous off
EOF
ctruncate -hklin scaled.mtz -hklout truncated.mtz \
-colin '/*/*/[IMEAN,SIGIMEAN]' > ctruncate.log