dissectionDocument, urlManager, information);
// Interate over the shards.
RequestedShards shards = dissectedDocument.createRequestedShards();
int dissectableArea = 0;
ShardIterator iterator =
dissectedDocument.getShardIterator(context, dissectableArea);
int count = 0;
while (iterator.hasMoreShards()) {
iterator.populateNextShard();
count += 1;
}
for (int i = 0; i < count; i += 1) {
System.out.println();
System.out.println("Shard " + (i+1) + " of " + count +