linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] ext4 updates for 4.15
@ 2017-11-13  3:15 Theodore Ts'o
  2017-11-13 16:25 ` Theodore Ts'o
  2018-02-12 10:02 ` ext4 iomap SEEK broken [was: [GIT PULL] ext4 updates for 4.15] Jiri Slaby
  0 siblings, 2 replies; 11+ messages in thread
From: Theodore Ts'o @ 2017-11-13  3:15 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel, linux-ext4

The following changes since commit 9e66317d3c92ddaab330c125dfe9d06eee268aff:

  Linux 4.14-rc3 (2017-10-01 14:54:54 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git tags/ext4_for_linus

for you to fetch changes up to 232530680290ba94ca37852ab10d9556ea28badf:

  ext4: improve smp scalability for inode generation (2017-11-08 22:23:20 -0500)

----------------------------------------------------------------
Add support for online resizing of file systems with bigalloc.  Fix a
two data corruption bugs involving DAX, as well as a corruption bug
after a crash during a racing fallocate and delayed allocation.
Finally, a number of cleanups and optimizations.

----------------------------------------------------------------
Andreas Gruenbacher (3):
      iomap: Switch from blkno to disk offset
      iomap: Add IOMAP_F_DATA_INLINE flag
      ext4: Add iomap support for inline data

Christoph Hellwig (1):
      ext4: Switch to iomap for SEEK_HOLE / SEEK_DATA

Kees Cook (2):
      jbd2: convert timers to use timer_setup()
      ext4: convert timers to use timer_setup()

Pavel Machek (1):
      Documentation: fix little inconsistencies

Ross Zwisler (5):
      ext4: prevent data corruption with inline data + DAX
      ext4: prevent data corruption with journaling + DAX
      ext4: add sanity check for encryption + DAX
      ext4: add ext4_should_use_dax()
      ext4: remove duplicate extended attributes defs

Simon Ruderich (1):
      ext4: mention noload when recovering on read-only device

Theodore Ts'o (3):
      ext4: retry allocations conservatively
      ext4: fix interaction between i_size, fallocate, and delalloc after a crash
      ext4: improve smp scalability for inode generation

harshads (1):
      ext4: add support for online resizing with bigalloc

 Documentation/filesystems/ext4.txt |   8 +--
 fs/buffer.c                        |   4 +-
 fs/dax.c                           |   2 +-
 fs/ext2/inode.c                    |   4 +-
 fs/ext4/Kconfig                    |   1 +
 fs/ext4/balloc.c                   |  15 ++--
 fs/ext4/ext4.h                     |  50 ++-----------
 fs/ext4/extents.c                  |   6 +-
 fs/ext4/file.c                     | 263 ++++-----------------------------------------------------------------
 fs/ext4/ialloc.c                   |   4 +-
 fs/ext4/inline.c                   |  43 +++++++++---
 fs/ext4/inode.c                    | 153 ++++++++++++++++++----------------------
 fs/ext4/ioctl.c                    |  30 ++++----
 fs/ext4/mballoc.c                  |  28 ++++----
 fs/ext4/resize.c                   | 104 +++++++++++++++++----------
 fs/ext4/super.c                    |  27 +++----
 fs/iomap.c                         |  13 ++--
 fs/jbd2/journal.c                  |   9 ++-
 fs/nfsd/blocklayout.c              |   4 +-
 fs/xfs/xfs_iomap.c                 |   6 +-
 include/linux/iomap.h              |  15 ++--
 21 files changed, 278 insertions(+), 511 deletions(-)

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [GIT PULL] ext4 updates for 4.15
  2017-11-13  3:15 [GIT PULL] ext4 updates for 4.15 Theodore Ts'o
@ 2017-11-13 16:25 ` Theodore Ts'o
  2017-11-14 20:59   ` Linus Torvalds
  2018-02-12 10:02 ` ext4 iomap SEEK broken [was: [GIT PULL] ext4 updates for 4.15] Jiri Slaby
  1 sibling, 1 reply; 11+ messages in thread
From: Theodore Ts'o @ 2017-11-13 16:25 UTC (permalink / raw)
  To: torvalds, linux-kernel, linux-ext4

I forgot to mention, there's a merge conflict when pulling the ext4
and fscrypt trees.  The fixup is relatively straightforward:

commit daf886f04e60eda3bbc957e79d81d72965afd947
Merge: a0b3bc855374 232530680290
Author: Theodore Ts'o <tytso@mit.edu>
Date:   Sun Nov 12 22:03:15 2017 -0500

    Merge tag 'ext4_for_linus' into test
    
    Add support for online resizing of file systems with bigalloc.  Fix a
    two data corruption bugs involving DAX, as well as a corruption bug
    after a crash during a racing fallocate and delayed allocation.
    Finally, a number of cleanups and optimizations.

diff --cc fs/ext4/inode.c
index 617c7feced24,9f836e2ec18c..737c43d724fb
--- a/fs/ext4/inode.c
+++ b/fs/ext4/inode.c
@@@ -4587,15 -4640,10 +4640,13 @@@ void ext4_set_inode_flags(struct inode 
  		new_fl |= S_NOATIME;
  	if (flags & EXT4_DIRSYNC_FL)
  		new_fl |= S_DIRSYNC;
- 	if (test_opt(inode->i_sb, DAX) && S_ISREG(inode->i_mode) &&
- 	    !ext4_should_journal_data(inode) && !ext4_has_inline_data(inode) &&
- 	    !(flags & EXT4_ENCRYPT_FL))
+ 	if (ext4_should_use_dax(inode))
  		new_fl |= S_DAX;
 +	if (flags & EXT4_ENCRYPT_FL)
 +		new_fl |= S_ENCRYPTED;
  	inode_set_flags(inode, new_fl,
 -			S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC|S_DAX);
 +			S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC|S_DAX|
 +			S_ENCRYPTED);
  }
  
  static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode,

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [GIT PULL] ext4 updates for 4.15
  2017-11-13 16:25 ` Theodore Ts'o
@ 2017-11-14 20:59   ` Linus Torvalds
  2017-11-15  0:56     ` Theodore Ts'o
  0 siblings, 1 reply; 11+ messages in thread
From: Linus Torvalds @ 2017-11-14 20:59 UTC (permalink / raw)
  To: Theodore Ts'o, Linus Torvalds, Linux Kernel Mailing List, linux-ext4

On Mon, Nov 13, 2017 at 8:25 AM, Theodore Ts'o <tytso@mit.edu> wrote:
> I forgot to mention, there's a merge conflict when pulling the ext4
> and fscrypt trees.  The fixup is relatively straightforward:

It doesn't actually look all that straightforward, and in particular,
the resolution you sent me doesn't actually seem correct:

>                 new_fl |= S_NOATIME;
>         if (flags & EXT4_DIRSYNC_FL)
>                 new_fl |= S_DIRSYNC;
> -       if (test_opt(inode->i_sb, DAX) && S_ISREG(inode->i_mode) &&
> -           !ext4_should_journal_data(inode) && !ext4_has_inline_data(inode) &&
> -           !(flags & EXT4_ENCRYPT_FL))
> +       if (ext4_should_use_dax(inode))
>                 new_fl |= S_DAX;

This now loses the "!(flags & EXT4_ENCRYPT_FL)" test when it sets S_DAX.

Yes, in ext4_should_use_dax(), it has this code

        if (ext4_encrypted_inode(inode))
                return false;

but that test was what commit 2ee6a576be56 changed in favor of just
checking !(flags & EXT4_ENCRYPT_FL).

So that suggested merge resolkution actually undoes some of that
commit 2ee6a576be56.

Of course,

        (flags & EXT4_ENCRYPT_FL)

_should_ be the same as

        ext4_test_inode_flag(inode, EXT4_INODE_ENCRYPT);

so It does seem to be harmless, but it's a bit dodgy.

I'll do that suggested resolution, but I have to say that the ext4 bit
testing is incredibly broken and non-obvious. Just as an example:

  fs/ext4/ext4.h:#define EXT4_ENCRYPT_FL                  0x00000800
/* encrypted file */
  fs/ext4/ext4.h: EXT4_INODE_ENCRYPT      = 11,   /* Encrypted file */

yeah, it's the same bit, but it sure as hell isn't obvious. Why the
two totally different ways to define that data?

            Linus

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [GIT PULL] ext4 updates for 4.15
  2017-11-14 20:59   ` Linus Torvalds
@ 2017-11-15  0:56     ` Theodore Ts'o
  2017-11-15  1:11       ` Linus Torvalds
  0 siblings, 1 reply; 11+ messages in thread
From: Theodore Ts'o @ 2017-11-15  0:56 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Linux Kernel Mailing List, linux-ext4

On Tue, Nov 14, 2017 at 12:59:17PM -0800, Linus Torvalds wrote:
> Of course,
> 
>         (flags & EXT4_ENCRYPT_FL)
> 
> _should_ be the same as
> 
>         ext4_test_inode_flag(inode, EXT4_INODE_ENCRYPT);

And in the second is the preferred way to do things, actually.

> I'll do that suggested resolution, but I have to say that the ext4 bit
> testing is incredibly broken and non-obvious. Just as an example:
> 
>   fs/ext4/ext4.h:#define EXT4_ENCRYPT_FL                  0x00000800
> /* encrypted file */
>   fs/ext4/ext4.h: EXT4_INODE_ENCRYPT      = 11,   /* Encrypted file */
> 
> yeah, it's the same bit, but it sure as hell isn't obvious. Why the
> two totally different ways to define that data?

Yes, it's non-obvious and ugly.  Sorry about that.

We originally used EXT4_*_FL, and we needed to use the bit number
encoding so we could use test_bit().  We just never converted all the
way over.

We do have a way to make sure the two ways of defining a bit position
are in sync; see ext4_check_flag_values() and CHECK_FLAG_VALUE in
ext4.h.  It's a bit gross, and we probably should clean this up, at
least in the kernel.  The e2fsprogs user space libraries all use
EXT4_*_FL, and we can't change that without breaking applications
depending on userspace, but we can keep things consistent in the
kernel, and that probably means completely converting away from
EXT4_*_FL, if possible.

       	   	      	 	  - Ted

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [GIT PULL] ext4 updates for 4.15
  2017-11-15  0:56     ` Theodore Ts'o
@ 2017-11-15  1:11       ` Linus Torvalds
  0 siblings, 0 replies; 11+ messages in thread
From: Linus Torvalds @ 2017-11-15  1:11 UTC (permalink / raw)
  To: Theodore Ts'o, Linus Torvalds, Linux Kernel Mailing List, linux-ext4

On Tue, Nov 14, 2017 at 4:56 PM, Theodore Ts'o <tytso@mit.edu> wrote:
>
>    The e2fsprogs user space libraries all use
> EXT4_*_FL, and we can't change that without breaking applications
> depending on userspace, but we can keep things consistent in the
> kernel, and that probably means completely converting away from
> EXT4_*_FL, if possible.

So I don't think you'd necessarily need to convert from one to the
other, but wouldn't it be nice if you at least defined one in terms of
the other, ie something like

  #define EXT4_ENCRYPT_FL (1u << EXT4_INODE_ENCRYPT)

so that when you grep for one you see how they are directly related.

Now it was much less obvious, and I was nervous because that whole
series did introduce _different_ bits that were not in the same space
at all, and encoded the same thing (ie that S_ENCRYPTED bit).

Maybe this normally doesn't come up, but it was not all that obvious,
particularly since there was a lot of indirection:

 ext4_encrypted_inode() ->
    ext4_test_inode_flag(inode, EXT4_INODE_ENCRYPT) ->
        EXT4_INODE_BIT_FNS()

That EXT4_INODE_BIT_FNS thing was really fascinating to see.

So just confirming that yes,

   ext4_encrypted_inode()

is the same thing as

   EXT4_I(inode)->i_flags & EXT4_ENCRYPT_FL

was a real adventure.

Making it clear that EXT4_ENCRYPT_FL and EXT4_INODE_ENCRYPT are the
same bit would maybe have lessened the confusion at least a tiny bit.

Of course, not having five different ways to test the same bit would
have been even better.

Ok, I'm exaggerating.

But there really does seem to be a lot of different ways to check
i_flags bits, with some uses checking it directly, the places
_setting_ it using ext4_set_inode_flag(), and then other testers using
bit-specific helper.

And that somewhat confusing model seems to be true of pretty much all the bits.

As long as you can keep track of it, I guess it's fine.

            Linus

^ permalink raw reply	[flat|nested] 11+ messages in thread

* ext4 iomap SEEK broken [was: [GIT PULL] ext4 updates for 4.15]
  2017-11-13  3:15 [GIT PULL] ext4 updates for 4.15 Theodore Ts'o
  2017-11-13 16:25 ` Theodore Ts'o
@ 2018-02-12 10:02 ` Jiri Slaby
  2018-02-12 12:14   ` Jiri Slaby
  1 sibling, 1 reply; 11+ messages in thread
From: Jiri Slaby @ 2018-02-12 10:02 UTC (permalink / raw)
  To: Theodore Ts'o, linux-kernel, linux-ext4, Christoph Hellwig

Hi,

On 11/13/2017, 04:15 AM, Theodore Ts'o wrote:
> The following changes since commit 9e66317d3c92ddaab330c125dfe9d06eee268aff:
> 
>   Linux 4.14-rc3 (2017-10-01 14:54:54 -0700)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git tags/ext4_for_linus
...
> Christoph Hellwig (1):
>       ext4: Switch to iomap for SEEK_HOLE / SEEK_DATA

So I bisected a 32bit hole problem in 4.15 down to this one.

tar selftests never finish during build on the 32bit kernel. The stack
trace is something like this:
tar             R  running task        0 24780  24590 0x00000000
Call Trace:
 ? ext4_map_blocks+0x2fa/0x5f0
 ? ext4_map_blocks+0x348/0x5f0
 ? ext4_iomap_begin+0x39b/0x4d0
 ? ext4_evict_inode+0x5c0/0x5c0
 ? iomap_apply+0x61/0x160
 ? iomap_to_fiemap+0xd0/0xd0
 ? iomap_seek_data+0xac/0x110
 ? iomap_seek_hole_actor+0x80/0x80
 ? ext4_llseek+0x13a/0x140
 ? ext4_file_mmap+0x90/0x90
 ? SyS_llseek+0x7b/0xc0
 ? do_int80_syscall_32+0x51/0x100
 ? entry_INT80_32+0x36/0x36


The tar test does this:
AT_TAR_CHECK([
AT_DATA([mapfile],
[0 =2560
m4_for([i], 1, 999, 1, [10M =2560
])])
genfile --sparse --file BIGFILE --block-size 4K - < mapfile || AT_SKIP_TEST
tar -f - -c --sparse --posix BIGFILE | tar tvf - | awk '{ print $3, $(NF) }'
],

I.e. it generates a file with 1000 blocks of 2560*4K bytes. The blocks
are 10M from each other, that is 999 10M holes. Tar then tries to
read&seek in the file, but the seek above never finishes (or maybe
finishes after a long time).

Given this happens only on 32bit kernel, I assume some 32bit overflow.
But I am unable to see it (yet).

thanks,
-- 
js
suse labs

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: ext4 iomap SEEK broken [was: [GIT PULL] ext4 updates for 4.15]
  2018-02-12 10:02 ` ext4 iomap SEEK broken [was: [GIT PULL] ext4 updates for 4.15] Jiri Slaby
@ 2018-02-12 12:14   ` Jiri Slaby
  2018-02-12 13:34     ` Jiri Slaby
  2018-02-12 16:10     ` Theodore Ts'o
  0 siblings, 2 replies; 11+ messages in thread
From: Jiri Slaby @ 2018-02-12 12:14 UTC (permalink / raw)
  To: Theodore Ts'o, linux-kernel, linux-ext4, Christoph Hellwig

On 02/12/2018, 11:02 AM, Jiri Slaby wrote:
> Given this happens only on 32bit kernel, I assume some 32bit overflow.
> But I am unable to see it (yet).

Just to add, a diff of strace in good and bad kernels:
@@ -655,14 +655,4 @@
 _llseek(3, 4275568640, [4286054400], SEEK_DATA) = 0
 _llseek(3, 4286054400, [4288675840], SEEK_HOLE) = 0
 _llseek(3, 4288675840, [4299161600], SEEK_DATA) = 0
-_llseek(3, 4299161600, [4301783040], SEEK_HOLE) = 0
+_llseek(3, 4299161600, [4299161600], SEEK_HOLE) = 2621440

llseek returns a very invalid value when it comes to 0x100400000.

regards,
-- 
js
suse labs

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: ext4 iomap SEEK broken [was: [GIT PULL] ext4 updates for 4.15]
  2018-02-12 12:14   ` Jiri Slaby
@ 2018-02-12 13:34     ` Jiri Slaby
  2018-02-12 13:38       ` Jiri Slaby
  2018-02-12 16:10     ` Theodore Ts'o
  1 sibling, 1 reply; 11+ messages in thread
From: Jiri Slaby @ 2018-02-12 13:34 UTC (permalink / raw)
  To: Theodore Ts'o, linux-kernel, linux-ext4, Christoph Hellwig

On 02/12/2018, 01:14 PM, Jiri Slaby wrote:
> On 02/12/2018, 11:02 AM, Jiri Slaby wrote:
>> Given this happens only on 32bit kernel, I assume some 32bit overflow.
>> But I am unable to see it (yet).
> 
> Just to add, a diff of strace in good and bad kernels:
> @@ -655,14 +655,4 @@
>  _llseek(3, 4275568640, [4286054400], SEEK_DATA) = 0
>  _llseek(3, 4286054400, [4288675840], SEEK_HOLE) = 0
>  _llseek(3, 4288675840, [4299161600], SEEK_DATA) = 0
> -_llseek(3, 4299161600, [4301783040], SEEK_HOLE) = 0
> +_llseek(3, 4299161600, [4299161600], SEEK_HOLE) = 2621440
> 
> llseek returns a very invalid value when it comes to 0x100400000.

It gets cropped to 0x400000, so:

--- a/fs/ext4/inode.c
+++ b/fs/ext4/inode.c
@@ -3523,7 +3523,7 @@ static int ext4_iomap_begin(struct inode *inode,
loff_t offset, loff_t length,
                iomap->flags |= IOMAP_F_DIRTY;
        iomap->bdev = inode->i_sb->s_bdev;
        iomap->dax_dev = sbi->s_daxdev;
-       iomap->offset = first_block << blkbits;
+       iomap->offset = (u64)first_block << blkbits;
        iomap->length = (u64)map.m_len << blkbits;

        if (ret == 0) {

sounds about right?

> regards,
-- 
js
suse labs

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: ext4 iomap SEEK broken [was: [GIT PULL] ext4 updates for 4.15]
  2018-02-12 13:34     ` Jiri Slaby
@ 2018-02-12 13:38       ` Jiri Slaby
  0 siblings, 0 replies; 11+ messages in thread
From: Jiri Slaby @ 2018-02-12 13:38 UTC (permalink / raw)
  To: Theodore Ts'o, linux-kernel, linux-ext4, Christoph Hellwig

On 02/12/2018, 02:34 PM, Jiri Slaby wrote:
> @@ -3523,7 +3523,7 @@ static int ext4_iomap_begin(struct inode *inode,
> loff_t offset, loff_t length,
>                 iomap->flags |= IOMAP_F_DIRTY;
>         iomap->bdev = inode->i_sb->s_bdev;
>         iomap->dax_dev = sbi->s_daxdev;
> -       iomap->offset = first_block << blkbits;
> +       iomap->offset = (u64)first_block << blkbits;
>         iomap->length = (u64)map.m_len << blkbits;
> 
>         if (ret == 0) {
> 
> sounds about right?

Or even simpler:
-       iomap->offset = first_block << blkbits;
+       iomap->offset = offset;

>> regards,-- 
js
suse labs

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: ext4 iomap SEEK broken [was: [GIT PULL] ext4 updates for 4.15]
  2018-02-12 12:14   ` Jiri Slaby
  2018-02-12 13:34     ` Jiri Slaby
@ 2018-02-12 16:10     ` Theodore Ts'o
  2018-02-12 20:23       ` Jiri Slaby
  1 sibling, 1 reply; 11+ messages in thread
From: Theodore Ts'o @ 2018-02-12 16:10 UTC (permalink / raw)
  To: Jiri Slaby; +Cc: linux-kernel, linux-ext4, Christoph Hellwig

On Mon, Feb 12, 2018 at 01:14:07PM +0100, Jiri Slaby wrote:
> On 02/12/2018, 11:02 AM, Jiri Slaby wrote:
> > Given this happens only on 32bit kernel, I assume some 32bit overflow.
> > But I am unable to see it (yet).
> 
> Just to add, a diff of strace in good and bad kernels:
> @@ -655,14 +655,4 @@
>  _llseek(3, 4275568640, [4286054400], SEEK_DATA) = 0
>  _llseek(3, 4286054400, [4288675840], SEEK_HOLE) = 0
>  _llseek(3, 4288675840, [4299161600], SEEK_DATA) = 0
> -_llseek(3, 4299161600, [4301783040], SEEK_HOLE) = 0
> +_llseek(3, 4299161600, [4299161600], SEEK_HOLE) = 2621440
> 
> llseek returns a very invalid value when it comes to 0x100400000.

Thanks for the bugreport!  Can you send me the output of "filefrag -v"
on the file so I can make sure we can exactly replicate what you're
seeing?

Thanks,

						- Ted

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: ext4 iomap SEEK broken [was: [GIT PULL] ext4 updates for 4.15]
  2018-02-12 16:10     ` Theodore Ts'o
@ 2018-02-12 20:23       ` Jiri Slaby
  0 siblings, 0 replies; 11+ messages in thread
From: Jiri Slaby @ 2018-02-12 20:23 UTC (permalink / raw)
  To: Theodore Ts'o, linux-kernel, linux-ext4, Christoph Hellwig

[-- Attachment #1: Type: text/plain, Size: 909 bytes --]

On 02/12/2018, 05:10 PM, Theodore Ts'o wrote:
> On Mon, Feb 12, 2018 at 01:14:07PM +0100, Jiri Slaby wrote:
>> On 02/12/2018, 11:02 AM, Jiri Slaby wrote:
>>> Given this happens only on 32bit kernel, I assume some 32bit overflow.
>>> But I am unable to see it (yet).
>>
>> Just to add, a diff of strace in good and bad kernels:
>> @@ -655,14 +655,4 @@
>>  _llseek(3, 4275568640, [4286054400], SEEK_DATA) = 0
>>  _llseek(3, 4286054400, [4288675840], SEEK_HOLE) = 0
>>  _llseek(3, 4288675840, [4299161600], SEEK_DATA) = 0
>> -_llseek(3, 4299161600, [4301783040], SEEK_HOLE) = 0
>> +_llseek(3, 4299161600, [4299161600], SEEK_HOLE) = 2621440
>>
>> llseek returns a very invalid value when it comes to 0x100400000.
> 
> Thanks for the bugreport!  Can you send me the output of "filefrag -v"
> on the file so I can make sure we can exactly replicate what you're
> seeing?

Sure, attaching.

thanks,
-- 
js
suse labs

[-- Attachment #2: filefrag.txt --]
[-- Type: text/plain, Size: 149446 bytes --]

Filesystem type is: ef53
File size of BIGFILE is 13096714240 (3197440 blocks of 4096 bytes)
 ext:     logical_offset:        physical_offset: length:   expected: flags:
   0:        0..     639:      79872..     80511:    640:            
   1:     3200..    3839:      89216..     89855:    640:      83072:
   2:     6400..    7039:      82176..     82815:    640:      92416:
   3:     9600..   10239:      85376..     86015:    640:            
   4:    12800..   13439:      90624..     91263:    640:      88576:
   5:    16000..   16639:      93824..     94463:    640:            
   6:    19200..   19839:      97024..     97663:    640:            
   7:    22400..   23039:     106368..    107007:    640:     100224:
   8:    25600..   26239:     115712..    116351:    640:     109568:
   9:    28800..   29439:     110720..    111359:    640:     118912:
  10:    32000..   32639:     113920..    114559:    640:            
  11:    35200..   35839:     119168..    119807:    640:     117120:
  12:    38400..   39039:     122368..    123007:    640:            
  13:    41600..   42239:     125568..    126207:    640:            
  14:    44800..   45439:     128768..    129407:    640:            
  15:    48000..   48639:     138112..    138751:    640:     131968:
  16:    51200..   51839:     147456..    148095:    640:     141312:
  17:    54400..   55039:     150656..    151295:    640:            
  18:    57600..   58239:     151808..    152447:    640:     153856:
  19:    60800..   61439:     155008..    155647:    640:            
  20:    64000..   64639:     156160..    156799:    640:     158208:
  21:    67200..   67839:     159360..    159999:    640:            
  22:    70400..   71039:     162560..    163199:    640:            
  23:    73600..   74239:     171904..    172543:    640:     165760:
  24:    76800..   77439:     175104..    175743:    640:            
  25:    80000..   80639:     186496..    187135:    640:     178304:
  26:    83200..   83839:     191744..    192383:    640:     189696:
  27:    86400..   87039:     176512..    177151:    640:     194944:
  28:    89600..   90111:     179712..    180223:    512:            
  29:    90112..   90239:     192512..    192639:    128:     180224:
  30:    92800..   93439:     195200..    195839:    640:            
  31:    96000..   96255:     200448..    200703:    256:     198400:
  32:    96256..   96639:     202752..    203135:    384:     200704:
  33:    99200..   99839:     205696..    206335:    640:            
  34:   102400..  103039:     221184..    221823:    640:     208896:
  35:   105600..  106239:     224384..    225023:    640:            
  36:   108800..  109439:     225536..    226175:    640:     227584:
  37:   112000..  112639:     228736..    229375:    640:            
  38:   115200..  115839:     231936..    232575:    640:            
  39:   118400..  119039:     245376..    246015:    640:     235136:
  40:   121600..  122239:     248576..    249215:    640:            
  41:   124800..  125439:     239488..    240127:    640:     251776:
  42:   128000..  128639:     250880..    251519:    640:     242688:
  43:   131200..  131839:     252032..    252671:    640:     254080:
  44:   134400..  135039:     255232..    255871:    640:            
  45:   137600..  138239:     256384..    257023:    640:     258432:
  46:   140800..  141439:     259584..    260223:    640:            
  47:   144000..  144639:     277120..    277759:    640:     262784:
  48:   147200..  147839:     272128..    272767:    640:     280320:
  49:   150400..  151039:     263040..    263679:    640:     275328:
  50:   153600..  154239:     264192..    264831:    640:     266240:
  51:   156800..  157439:     267392..    268031:    640:            
  52:   160000..  160639:     268544..    269183:    640:     270592:
  53:   163200..  163839:     279936..    280575:    640:     271744:
  54:   166400..  167039:     281088..    281727:    640:     283136:
  55:   169600..  170239:     284288..    284927:    640:            
  56:   172800..  173439:     287488..    288127:    640:            
  57:   176000..  176639:     290688..    291327:    640:            
  58:   179200..  179839:     293888..    294527:    640:            
  59:   182400..  183039:     299136..    299775:    640:     297088:
  60:   185600..  186239:     306432..    307071:    640:     302336:
  61:   188800..  189439:     307584..    308223:    640:     309632:
  62:   192000..  192639:     310784..    311423:    640:            
  63:   195200..  195839:     313984..    314623:    640:            
  64:   198400..  199039:     317184..    317823:    640:            
  65:   201600..  202239:     357248..    357887:    640:     320384:
  66:   204800..  205439:     358400..    359039:    640:     360448:
  67:   208000..  208639:     365696..    366335:    640:     361600:
  68:   211200..  211839:     366848..    367487:    640:     368896:
  69:   214400..  215039:     370048..    370687:    640:            
  70:   217600..  218239:     371200..    371839:    640:     373248:
  71:   220800..  221439:     374400..    375039:    640:            
  72:   224000..  224639:     377600..    378239:    640:            
  73:   227200..  227839:     380800..    381439:    640:            
  74:   230400..  231039:     384000..    384639:    640:            
  75:   233600..  234239:     385152..    385791:    640:     387200:
  76:   236800..  237439:     388352..    388991:    640:            
  77:   240000..  240639:     389504..    390143:    640:     391552:
  78:   243200..  243839:     392704..    393343:    640:            
  79:   246400..  247039:     395904..    396543:    640:            
  80:   249600..  250239:     399104..    399743:    640:            
  81:   252800..  253439:     402304..    402943:    640:            
  82:   256000..  256639:     403456..    404095:    640:     405504:
  83:   259200..  259839:     406656..    407295:    640:            
  84:   262400..  263039:     407808..    408447:    640:     409856:
  85:   265600..  266239:     411008..    411647:    640:            
  86:   268800..  269439:     412160..    412799:    640:     414208:
  87:   272000..  272639:     415360..    415999:    640:            
  88:   275200..  275839:     418560..    419199:    640:            
  89:   278400..  279039:     421760..    422399:    640:            
  90:   281600..  282239:     424960..    425599:    640:            
  91:   284800..  285439:     426112..    426751:    640:     428160:
  92:   288000..  288639:     429312..    429951:    640:            
  93:   291200..  291839:     430464..    431103:    640:     432512:
  94:   294400..  295039:     433664..    434303:    640:            
  95:   297600..  298239:     436864..    437503:    640:            
  96:   300800..  301439:     440064..    440703:    640:            
  97:   304000..  304639:     443264..    443903:    640:            
  98:   307200..  307839:     444416..    445055:    640:     446464:
  99:   310400..  311039:     447616..    448255:    640:            
 100:   313600..  314239:     448768..    449407:    640:     450816:
 101:   316800..  317439:     451968..    452607:    640:            
 102:   320000..  320639:     453120..    453759:    640:     455168:
 103:   323200..  323839:     456320..    456959:    640:            
 104:   326400..  327039:     459520..    460159:    640:            
 105:   329600..  330239:     462720..    463359:    640:            
 106:   332800..  333439:     465920..    466559:    640:            
 107:   336000..  336639:     467072..    467711:    640:     469120:
 108:   339200..  339839:     470272..    470911:    640:            
 109:   342400..  343039:     471424..    472063:    640:     473472:
 110:   345600..  346239:     474624..    475263:    640:            
 111:   348800..  349439:     477824..    478463:    640:            
 112:   352000..  352639:     481024..    481663:    640:            
 113:   355200..  355839:     484224..    484863:    640:            
 114:   358400..  359039:     485376..    486015:    640:     487424:
 115:   361600..  362239:     488576..    489215:    640:            
 116:   364800..  365439:     489728..    490367:    640:     491776:
 117:   368000..  368639:     492928..    493567:    640:            
 118:   371200..  371839:     494080..    494719:    640:     496128:
 119:   374400..  375039:     497280..    497919:    640:            
 120:   377600..  378239:     500480..    501119:    640:            
 121:   380800..  381439:     503680..    504319:    640:            
 122:   384000..  384639:     506880..    507519:    640:            
 123:   387200..  387839:     508032..    508671:    640:     510080:
 124:   390400..  391039:     511232..    511871:    640:            
 125:   393600..  394239:     512384..    513023:    640:     514432:
 126:   396800..  397439:     515584..    516223:    640:            
 127:   400000..  400639:     518784..    519423:    640:            
 128:   403200..  403839:     521984..    522623:    640:            
 129:   406400..  407039:     670592..    671231:    640:     525184:
 130:   409600..  410239:     677888..    678527:    640:     673792:
 131:   412800..  413439:     681088..    681727:    640:            
 132:   416000..  416639:     684288..    684927:    640:            
 133:   419200..  419839:     720256..    720895:    640:     687488:
 134:   422400..  423039:     745984..    746623:    640:     723456:
 135:   425600..  425983:     753280..    753663:    384:     749184:
 136:   425984..  426239:     757760..    758015:    256:     753664:
 137:   428800..  429439:     779008..    779647:    640:     760576:
 138:   432000..  432639:     771968..    772607:    640:     782208:
 139:   435200..  435839:     783360..    783999:    640:     775168:
 140:   438400..  439039:     784512..    785151:    640:     786560:
 141:   441600..  442239:     787712..    788351:    640:            
 142:   444800..  445439:     792960..    793599:    640:     790912:
 143:   448000..  448639:     804352..    804991:    640:     796160:
 144:   451200..  451839:     795264..    795903:    640:     807552:
 145:   454400..  455039:     798464..    799103:    640:            
 146:   457600..  458239:     801664..    802303:    640:            
 147:   460800..  461439:     811008..    811647:    640:     804864:
 148:   464000..  464639:     814208..    814847:    640:            
 149:   467200..  467839:     815360..    815999:    640:     817408:
 150:   470400..  471039:     818560..    819199:    640:            
 151:   473600..  474239:     821760..    822399:    640:            
 152:   476800..  477439:     824960..    825599:    640:            
 153:   480000..  480639:     828160..    828799:    640:            
 154:   483200..  483839:     831360..    831999:    640:            
 155:   486400..  487039:     834560..    835199:    640:            
 156:   489600..  490239:     835712..    836351:    640:     837760:
 157:   492800..  493439:     838912..    839551:    640:            
 158:   496000..  496639:     840064..    840703:    640:     842112:
 159:   499200..  499839:     843264..    843903:    640:            
 160:   502400..  503039:     846464..    847103:    640:            
 161:   505600..  506239:     849664..    850303:    640:            
 162:   508800..  509439:     852864..    853503:    640:            
 163:   512000..  512639:     854016..    854655:    640:     856064:
 164:   515200..  515839:     857216..    857855:    640:            
 165:   518400..  519039:     858368..    859007:    640:     860416:
 166:   521600..  522239:     861568..    862207:    640:            
 167:   524800..  525439:     862720..    863359:    640:     864768:
 168:   528000..  528639:     865920..    866559:    640:            
 169:   531200..  531839:     869120..    869759:    640:            
 170:   534400..  535039:     872320..    872959:    640:            
 171:   537600..  538239:     875520..    876159:    640:            
 172:   540800..  541439:     876672..    877311:    640:     878720:
 173:   544000..  544639:     879872..    880511:    640:            
 174:   547200..  547839:     881024..    881663:    640:     883072:
 175:   550400..  550911:     884224..    884735:    512:            
 176:   550912..  551039:     886784..    886911:    128:     884736:
 177:   553600..  554239:     889472..    890111:    640:            
 178:   556800..  557439:     892672..    893311:    640:            
 179:   560000..  560639:     895872..    896511:    640:            
 180:   563200..  563839:     897024..    897663:    640:     899072:
 181:   566400..  567039:     900224..    900863:    640:            
 182:   569600..  570239:     901376..    902015:    640:     903424:
 183:   572800..  573439:     904576..    905215:    640:            
 184:   576000..  576639:     905728..    906367:    640:     907776:
 185:   579200..  579839:     908928..    909567:    640:            
 186:   582400..  583039:     912128..    912767:    640:            
 187:   585600..  586239:     915328..    915967:    640:            
 188:   588800..  589439:     918528..    919167:    640:            
 189:   592000..  592639:     919680..    920319:    640:     921728:
 190:   595200..  595839:     922880..    923519:    640:            
 191:   598400..  599039:     924032..    924671:    640:     926080:
 192:   601600..  602239:     927232..    927871:    640:            
 193:   604800..  605439:     930432..    931071:    640:            
 194:   608000..  608639:     933632..    934271:    640:            
 195:   611200..  611839:     936832..    937471:    640:            
 196:   614400..  615039:     937984..    938623:    640:     940032:
 197:   617600..  618239:     941184..    941823:    640:            
 198:   620800..  621439:     942336..    942975:    640:     944384:
 199:   624000..  624639:     945536..    946175:    640:            
 200:   627200..  627839:     946688..    947327:    640:     948736:
 201:   630400..  631039:     949888..    950527:    640:            
 202:   633600..  634239:     953088..    953727:    640:            
 203:   636800..  637439:     956288..    956927:    640:            
 204:   640000..  640639:     959488..    960127:    640:            
 205:   643200..  643839:     960640..    961279:    640:     962688:
 206:   646400..  647039:     963840..    964479:    640:            
 207:   649600..  650239:     964992..    965631:    640:     967040:
 208:   652800..  653439:     968192..    968831:    640:            
 209:   656000..  656639:     971392..    972031:    640:            
 210:   659200..  659839:     974592..    975231:    640:            
 211:   662400..  663039:     977792..    978431:    640:            
 212:   665600..  666239:     978944..    979583:    640:     980992:
 213:   668800..  669439:     982144..    982783:    640:            
 214:   672000..  672639:     983296..    983935:    640:     985344:
 215:   675200..  675839:     986496..    987135:    640:            
 216:   678400..  679039:     987648..    988287:    640:     989696:
 217:   681600..  682239:     990848..    991487:    640:            
 218:   684800..  685439:     994048..    994687:    640:            
 219:   688000..  688639:     997248..    997887:    640:            
 220:   691200..  691839:    1000448..   1001087:    640:            
 221:   694400..  695039:    1001600..   1002239:    640:    1003648:
 222:   697600..  698239:    1004800..   1005439:    640:            
 223:   700800..  701439:    1005952..   1006591:    640:    1008000:
 224:   704000..  704639:    1009152..   1009791:    640:            
 225:   707200..  707839:    1012352..   1012991:    640:            
 226:   710400..  711039:    1015552..   1016191:    640:            
 227:   713600..  714239:    1018752..   1019391:    640:            
 228:   716800..  717439:    1019904..   1020543:    640:    1021952:
 229:   720000..  720639:    1023104..   1023743:    640:            
 230:   723200..  723839:    1024256..   1024895:    640:    1026304:
 231:   726400..  727039:    1027456..   1028095:    640:            
 232:   729600..  730239:    1028608..   1029247:    640:    1030656:
 233:   732800..  733439:    1031808..   1032447:    640:            
 234:   736000..  736639:    1035008..   1035647:    640:            
 235:   739200..  739839:    1038208..   1038847:    640:            
 236:   742400..  743039:    1041408..   1042047:    640:            
 237:   745600..  746239:    1042560..   1043199:    640:    1044608:
 238:   748800..  749439:    1045760..   1046399:    640:            
 239:   752000..  752639:    1046912..   1047551:    640:    1048960:
 240:   755200..  755711:    1144320..   1144831:    512:    1050112:
 241:   755712..  755839:    1159168..   1159295:    128:    1144832:
 242:   758400..  759039:    1161856..   1162495:    640:            
 243:   761600..  762239:    1165056..   1165695:    640:            
 244:   764800..  765439:    1168256..   1168895:    640:            
 245:   768000..  768639:    1169408..   1170047:    640:    1171456:
 246:   771200..  771839:    1172608..   1173247:    640:            
 247:   774400..  775039:    1173760..   1174399:    640:    1175808:
 248:   777600..  778239:    1176960..   1177599:    640:            
 249:   780800..  781439:    1178112..   1178751:    640:    1180160:
 250:   784000..  784639:    1181312..   1181951:    640:            
 251:   787200..  787839:    1184512..   1185151:    640:            
 252:   790400..  791039:    1187712..   1188351:    640:            
 253:   793600..  794239:    1190912..   1191551:    640:            
 254:   796800..  797439:    1192064..   1192703:    640:    1194112:
 255:   800000..  800639:    1195264..   1195903:    640:            
 256:   803200..  803839:    1196416..   1197055:    640:    1198464:
 257:   806400..  807039:    1199616..   1200255:    640:            
 258:   809600..  810239:    1202816..   1203455:    640:            
 259:   812800..  813439:    1206016..   1206655:    640:            
 260:   816000..  816639:    1209216..   1209855:    640:            
 261:   819200..  819839:    1210368..   1211007:    640:    1212416:
 262:   822400..  823039:    1213568..   1214207:    640:            
 263:   825600..  826239:    1214720..   1215359:    640:    1216768:
 264:   828800..  829439:    1217920..   1218559:    640:            
 265:   832000..  832639:    1219072..   1219711:    640:    1221120:
 266:   835200..  835839:    1222272..   1222911:    640:            
 267:   838400..  839039:    1225472..   1226111:    640:            
 268:   841600..  842239:    1228672..   1229311:    640:            
 269:   844800..  845439:    1231872..   1232511:    640:            
 270:   848000..  848639:    1233024..   1233663:    640:    1235072:
 271:   851200..  851839:    1236224..   1236863:    640:            
 272:   854400..  855039:    1237376..   1238015:    640:    1239424:
 273:   857600..  858239:    1240576..   1241215:    640:            
 274:   860800..  861439:    1243776..   1244415:    640:            
 275:   864000..  864639:    1246976..   1247615:    640:            
 276:   867200..  867839:    1250176..   1250815:    640:            
 277:   870400..  871039:    1251328..   1251967:    640:    1253376:
 278:   873600..  874239:    1254528..   1255167:    640:            
 279:   876800..  877439:    1255680..   1256319:    640:    1257728:
 280:   880000..  880639:    1258880..   1259519:    640:            
 281:   883200..  883839:    1260032..   1260671:    640:    1262080:
 282:   886400..  887039:    1263232..   1263871:    640:            
 283:   889600..  890239:    1266432..   1267071:    640:            
 284:   892800..  893439:    1269632..   1270271:    640:            
 285:   896000..  896639:    1272832..   1273471:    640:            
 286:   899200..  899839:    1273984..   1274623:    640:    1276032:
 287:   902400..  903039:    1277184..   1277823:    640:            
 288:   905600..  906239:    1278336..   1278975:    640:    1280384:
 289:   908800..  909439:    1281536..   1282175:    640:            
 290:   912000..  912639:    1284736..   1285375:    640:            
 291:   915200..  915839:    1287936..   1288575:    640:            
 292:   918400..  919039:    1291136..   1291775:    640:            
 293:   921600..  922239:    1292288..   1292927:    640:    1294336:
 294:   924800..  925439:    1295488..   1296127:    640:            
 295:   928000..  928639:    1296640..   1297279:    640:    1298688:
 296:   931200..  931839:    1299840..   1300479:    640:            
 297:   934400..  935039:    1300992..   1301631:    640:    1303040:
 298:   937600..  938239:    1304192..   1304831:    640:            
 299:   940800..  941439:    1307392..   1308031:    640:            
 300:   944000..  944639:    1310592..   1311231:    640:            
 301:   947200..  947839:    1313792..   1314431:    640:            
 302:   950400..  951039:    1314944..   1315583:    640:    1316992:
 303:   953600..  954239:    1318144..   1318783:    640:            
 304:   956800..  957439:    1319296..   1319935:    640:    1321344:
 305:   960000..  960639:    1322496..   1323135:    640:            
 306:   963200..  963839:    1325696..   1326335:    640:            
 307:   966400..  967039:    1328896..   1329535:    640:            
 308:   969600..  970239:    1332096..   1332735:    640:            
 309:   972800..  973439:    1333248..   1333887:    640:    1335296:
 310:   976000..  976639:    1336448..   1337087:    640:            
 311:   979200..  979839:    1337600..   1338239:    640:    1339648:
 312:   982400..  983039:    1340800..   1341439:    640:            
 313:   985600..  986239:    1341952..   1342591:    640:    1344000:
 314:   988800..  989439:    1345152..   1345791:    640:            
 315:   992000..  992639:    1348352..   1348991:    640:            
 316:   995200..  995839:    1351552..   1352191:    640:            
 317:   998400..  999039:    1354752..   1355391:    640:            
 318:  1001600.. 1002239:    1355904..   1356543:    640:    1357952:
 319:  1004800.. 1005439:    1359104..   1359743:    640:            
 320:  1008000.. 1008639:    1360256..   1360895:    640:    1362304:
 321:  1011200.. 1011839:    1363456..   1364095:    640:            
 322:  1014400.. 1015039:    1366656..   1367295:    640:            
 323:  1017600.. 1018239:    1369856..   1370495:    640:            
 324:  1020800.. 1021439:    1373056..   1373695:    640:            
 325:  1024000.. 1024639:    1374208..   1374847:    640:    1376256:
 326:  1027200.. 1027839:    1377408..   1378047:    640:            
 327:  1030400.. 1031039:    1378560..   1379199:    640:    1380608:
 328:  1033600.. 1034239:    1381760..   1382399:    640:            
 329:  1036800.. 1037439:    1382912..   1383551:    640:    1384960:
 330:  1040000.. 1040639:    1386112..   1386751:    640:            
 331:  1043200.. 1043839:    1389312..   1389951:    640:            
 332:  1046400.. 1047039:    1392512..   1393151:    640:            
 333:  1049600.. 1050239:    1395712..   1396351:    640:            
 334:  1052800.. 1053439:    1396864..   1397503:    640:    1398912:
 335:  1056000.. 1056639:    1400064..   1400703:    640:            
 336:  1059200.. 1059839:    1401216..   1401855:    640:    1403264:
 337:  1062400.. 1063039:    1404416..   1405055:    640:            
 338:  1065600.. 1066239:    1407616..   1408255:    640:            
 339:  1068800.. 1069439:    1410816..   1411455:    640:            
 340:  1072000.. 1072639:    1414016..   1414655:    640:            
 341:  1075200.. 1075839:    1417216..   1417855:    640:            
 342:  1078400.. 1079039:    1420416..   1421055:    640:            
 343:  1081600.. 1082239:    1421568..   1422207:    640:    1423616:
 344:  1084800.. 1085439:    1424768..   1425407:    640:            
 345:  1088000.. 1088639:    1425920..   1426559:    640:    1427968:
 346:  1091200.. 1091839:    1429120..   1429759:    640:            
 347:  1094400.. 1095039:    1432320..   1432959:    640:            
 348:  1097600.. 1098239:    1435520..   1436159:    640:            
 349:  1100800.. 1101439:    1438720..   1439359:    640:            
 350:  1104000.. 1104639:    1439872..   1440511:    640:    1441920:
 351:  1107200.. 1107839:    1443072..   1443711:    640:            
 352:  1110400.. 1111039:    1444224..   1444863:    640:    1446272:
 353:  1113600.. 1114239:    1447424..   1448063:    640:            
 354:  1116800.. 1117439:    1450624..   1451263:    640:            
 355:  1120000.. 1120639:    1453824..   1454463:    640:            
 356:  1123200.. 1123839:    1457024..   1457663:    640:            
 357:  1126400.. 1127039:    1458176..   1458815:    640:    1460224:
 358:  1129600.. 1130239:    1461376..   1462015:    640:            
 359:  1132800.. 1133439:    1462528..   1463167:    640:    1464576:
 360:  1136000.. 1136639:    1465728..   1466367:    640:            
 361:  1139200.. 1139839:    1466880..   1467519:    640:    1468928:
 362:  1142400.. 1143039:    1470080..   1470719:    640:            
 363:  1145600.. 1146239:    1473280..   1473919:    640:            
 364:  1148800.. 1149439:    1476480..   1477119:    640:            
 365:  1152000.. 1152639:    1479680..   1480319:    640:            
 366:  1155200.. 1155839:    1480832..   1481471:    640:    1482880:
 367:  1158400.. 1159039:    1484032..   1484671:    640:            
 368:  1161600.. 1162239:    1485184..   1485823:    640:    1487232:
 369:  1164800.. 1165439:    1488384..   1489023:    640:            
 370:  1168000.. 1168639:    1491584..   1492223:    640:            
 371:  1171200.. 1171839:    1494784..   1495423:    640:            
 372:  1174400.. 1175039:    1497984..   1498623:    640:            
 373:  1177600.. 1178239:    1499136..   1499775:    640:    1501184:
 374:  1180800.. 1181439:    1502336..   1502975:    640:            
 375:  1184000.. 1184639:    1503488..   1504127:    640:    1505536:
 376:  1187200.. 1187839:    1506688..   1507327:    640:            
 377:  1190400.. 1191039:    1507840..   1508479:    640:    1509888:
 378:  1193600.. 1194239:    1511040..   1511679:    640:            
 379:  1196800.. 1197439:    1514240..   1514879:    640:            
 380:  1200000.. 1200639:    1517440..   1518079:    640:            
 381:  1203200.. 1203839:    1520640..   1521279:    640:            
 382:  1206400.. 1207039:    1521792..   1522431:    640:    1523840:
 383:  1209600.. 1210239:    1524992..   1525631:    640:            
 384:  1212800.. 1213439:    1526144..   1526783:    640:    1528192:
 385:  1216000.. 1216639:    1529344..   1529983:    640:            
 386:  1219200.. 1219839:    1532544..   1533183:    640:            
 387:  1222400.. 1223039:    1535744..   1536383:    640:            
 388:  1225600.. 1226239:    1538944..   1539583:    640:            
 389:  1228800.. 1229439:    1540096..   1540735:    640:    1542144:
 390:  1232000.. 1232639:    1543296..   1543935:    640:            
 391:  1235200.. 1235839:    1544448..   1545087:    640:    1546496:
 392:  1238400.. 1239039:    1547648..   1548287:    640:            
 393:  1241600.. 1242239:    1548800..   1549439:    640:    1550848:
 394:  1244800.. 1245439:    1552000..   1552639:    640:            
 395:  1248000.. 1248639:    1555200..   1555839:    640:            
 396:  1251200.. 1251839:    1558400..   1559039:    640:            
 397:  1254400.. 1255039:    1561600..   1562239:    640:            
 398:  1257600.. 1258239:    1562752..   1563391:    640:    1564800:
 399:  1260800.. 1261439:    1565952..   1566591:    640:            
 400:  1264000.. 1264639:    1567104..   1567743:    640:    1569152:
 401:  1267200.. 1267839:    1570304..   1570943:    640:            
 402:  1270400.. 1271039:    1649280..   1649919:    640:    1573504:
 403:  1273600.. 1273855:    1656576..   1656831:    256:    1652480:
 404:  1273856.. 1274239:    1660928..   1661311:    384:    1656832:
 405:  1276800.. 1277439:    1665920..   1666559:    640:    1663872:
 406:  1280000.. 1280639:    1689600..   1690239:    640:    1669120:
 407:  1283200.. 1283839:    1692800..   1693439:    640:            
 408:  1286400.. 1287039:    1693952..   1694591:    640:    1696000:
 409:  1289600.. 1290239:    1697152..   1697791:    640:            
 410:  1292800.. 1293439:    1698304..   1698943:    640:    1700352:
 411:  1296000.. 1296639:    1701504..   1702143:    640:            
 412:  1299200.. 1299839:    1708800..   1709439:    640:    1704704:
 413:  1302400.. 1303039:    1712000..   1712639:    640:            
 414:  1305600.. 1306239:    1715200..   1715839:    640:            
 415:  1308800.. 1309439:    1716352..   1716991:    640:    1718400:
 416:  1312000.. 1312639:    1719552..   1720191:    640:            
 417:  1315200.. 1315839:    1720704..   1721343:    640:    1722752:
 418:  1318400.. 1319039:    1723904..   1724543:    640:            
 419:  1321600.. 1322239:    1727104..   1727743:    640:            
 420:  1324800.. 1325439:    1730304..   1730943:    640:            
 421:  1328000.. 1328639:    1733504..   1734143:    640:            
 422:  1331200.. 1331839:    1734656..   1735295:    640:    1736704:
 423:  1334400.. 1335039:    1737856..   1738495:    640:            
 424:  1337600.. 1338239:    1739008..   1739647:    640:    1741056:
 425:  1340800.. 1341439:    1742208..   1742847:    640:            
 426:  1344000.. 1344639:    1743360..   1743999:    640:    1745408:
 427:  1347200.. 1347839:    1746560..   1747199:    640:            
 428:  1350400.. 1351039:    1749760..   1750399:    640:            
 429:  1353600.. 1354239:    1752960..   1753599:    640:            
 430:  1356800.. 1357439:    1756160..   1756799:    640:            
 431:  1360000.. 1360639:    1757312..   1757951:    640:    1759360:
 432:  1363200.. 1363839:    1760512..   1761151:    640:            
 433:  1366400.. 1367039:    1761664..   1762303:    640:    1763712:
 434:  1369600.. 1370239:    1764864..   1765503:    640:            
 435:  1372800.. 1373439:    1768064..   1768703:    640:            
 436:  1376000.. 1376639:    1771264..   1771903:    640:            
 437:  1379200.. 1379839:    1774464..   1775103:    640:            
 438:  1382400.. 1383039:    1775616..   1776255:    640:    1777664:
 439:  1385600.. 1386239:    1778816..   1779455:    640:            
 440:  1388800.. 1389439:    1779968..   1780607:    640:    1782016:
 441:  1392000.. 1392639:    1783168..   1783807:    640:            
 442:  1395200.. 1395839:    1784320..   1784959:    640:    1786368:
 443:  1398400.. 1399039:    1787520..   1788159:    640:            
 444:  1401600.. 1402239:    1790720..   1791359:    640:            
 445:  1404800.. 1405439:    1793920..   1794559:    640:            
 446:  1408000.. 1408639:    1797120..   1797759:    640:            
 447:  1411200.. 1411839:    1798272..   1798911:    640:    1800320:
 448:  1414400.. 1415039:    1801472..   1802111:    640:            
 449:  1417600.. 1418239:    1802624..   1803263:    640:    1804672:
 450:  1420800.. 1421439:    1805824..   1806463:    640:            
 451:  1424000.. 1424639:    1809024..   1809663:    640:            
 452:  1427200.. 1427839:    1812224..   1812863:    640:            
 453:  1430400.. 1431039:    1815424..   1816063:    640:            
 454:  1433600.. 1434239:    1816576..   1817215:    640:    1818624:
 455:  1436800.. 1437439:    1819776..   1820415:    640:            
 456:  1440000.. 1440639:    1820928..   1821567:    640:    1822976:
 457:  1443200.. 1443839:    1824128..   1824767:    640:            
 458:  1446400.. 1447039:    1825280..   1825919:    640:    1827328:
 459:  1449600.. 1450239:    1828480..   1829119:    640:            
 460:  1452800.. 1453439:    1831680..   1832319:    640:            
 461:  1456000.. 1456639:    1834880..   1835519:    640:            
 462:  1459200.. 1459839:    1838080..   1838719:    640:            
 463:  1462400.. 1463039:    1839232..   1839871:    640:    1841280:
 464:  1465600.. 1466239:    1842432..   1843071:    640:            
 465:  1468800.. 1469439:    1843584..   1844223:    640:    1845632:
 466:  1472000.. 1472639:    1846784..   1847423:    640:            
 467:  1475200.. 1475839:    1849984..   1850623:    640:            
 468:  1478400.. 1479039:    1853184..   1853823:    640:            
 469:  1481600.. 1482239:    1856384..   1857023:    640:            
 470:  1484800.. 1485439:    1857536..   1858175:    640:    1859584:
 471:  1488000.. 1488639:    1860736..   1861375:    640:            
 472:  1491200.. 1491839:    1861888..   1862527:    640:    1863936:
 473:  1494400.. 1495039:    1865088..   1865727:    640:            
 474:  1497600.. 1498239:    1866240..   1866879:    640:    1868288:
 475:  1500800.. 1501439:    1869440..   1870079:    640:            
 476:  1504000.. 1504639:    1872640..   1873279:    640:            
 477:  1507200.. 1507839:    1875840..   1876479:    640:            
 478:  1510400.. 1511039:    1879040..   1879679:    640:            
 479:  1513600.. 1514239:    1880192..   1880831:    640:    1882240:
 480:  1516800.. 1517439:    1883392..   1884031:    640:            
 481:  1520000.. 1520639:    1884544..   1885183:    640:    1886592:
 482:  1523200.. 1523839:    1887744..   1888383:    640:            
 483:  1526400.. 1527039:    1890944..   1891583:    640:            
 484:  1529600.. 1530239:    1894144..   1894783:    640:            
 485:  1532800.. 1533439:    1897344..   1897983:    640:            
 486:  1536000.. 1536639:    1898496..   1899135:    640:    1900544:
 487:  1539200.. 1539839:    1901696..   1902335:    640:            
 488:  1542400.. 1543039:    1902848..   1903487:    640:    1904896:
 489:  1545600.. 1546239:    1906048..   1906687:    640:            
 490:  1548800.. 1549439:    1907200..   1907839:    640:    1909248:
 491:  1552000.. 1552639:    1910400..   1911039:    640:            
 492:  1555200.. 1555839:    1913600..   1914239:    640:            
 493:  1558400.. 1559039:    1916800..   1917439:    640:            
 494:  1561600.. 1562239:    1920000..   1920639:    640:            
 495:  1564800.. 1565439:    1921152..   1921791:    640:    1923200:
 496:  1568000.. 1568639:    1924352..   1924991:    640:            
 497:  1571200.. 1571839:    1925504..   1926143:    640:    1927552:
 498:  1574400.. 1575039:    1928704..   1929343:    640:            
 499:  1577600.. 1578239:    1931904..   1932543:    640:            
 500:  1580800.. 1581439:    1935104..   1935743:    640:            
 501:  1584000.. 1584639:    1938304..   1938943:    640:            
 502:  1587200.. 1587839:    1939456..   1940095:    640:    1941504:
 503:  1590400.. 1591039:    1942656..   1943295:    640:            
 504:  1593600.. 1594239:    1943808..   1944447:    640:    1945856:
 505:  1596800.. 1597439:    1947008..   1947647:    640:            
 506:  1600000.. 1600639:    1948160..   1948799:    640:    1950208:
 507:  1603200.. 1603839:    1951360..   1951999:    640:            
 508:  1606400.. 1607039:    1954560..   1955199:    640:            
 509:  1609600.. 1610239:    1957760..   1958399:    640:            
 510:  1612800.. 1613439:    1960960..   1961599:    640:            
 511:  1616000.. 1616639:    1962112..   1962751:    640:    1964160:
 512:  1619200.. 1619839:    1965312..   1965951:    640:            
 513:  1622400.. 1623039:    1966464..   1967103:    640:    1968512:
 514:  1625600.. 1626239:    1969664..   1970303:    640:            
 515:  1628800.. 1629439:    1972864..   1973503:    640:            
 516:  1632000.. 1632639:    1976064..   1976703:    640:            
 517:  1635200.. 1635839:    1979264..   1979903:    640:            
 518:  1638400.. 1639039:    1980416..   1981055:    640:    1982464:
 519:  1641600.. 1642239:    1983616..   1984255:    640:            
 520:  1644800.. 1645439:    1984768..   1985407:    640:    1986816:
 521:  1648000.. 1648639:    1987968..   1988607:    640:            
 522:  1651200.. 1651839:    1989120..   1989759:    640:    1991168:
 523:  1654400.. 1655039:    1992320..   1992959:    640:            
 524:  1657600.. 1658239:    1995520..   1996159:    640:            
 525:  1660800.. 1661439:    1998720..   1999359:    640:            
 526:  1664000.. 1664639:    2001920..   2002559:    640:            
 527:  1667200.. 1667839:    2003072..   2003711:    640:    2005120:
 528:  1670400.. 1671039:    2006272..   2006911:    640:            
 529:  1673600.. 1674239:    2007424..   2008063:    640:    2009472:
 530:  1676800.. 1677439:    2010624..   2011263:    640:            
 531:  1680000.. 1680639:    2013824..   2014463:    640:            
 532:  1683200.. 1683839:    2017024..   2017663:    640:            
 533:  1686400.. 1687039:    2020224..   2020863:    640:            
 534:  1689600.. 1690239:    2021376..   2022015:    640:    2023424:
 535:  1692800.. 1693439:    2024576..   2025215:    640:            
 536:  1696000.. 1696639:    2025728..   2026367:    640:    2027776:
 537:  1699200.. 1699839:    2028928..   2029567:    640:            
 538:  1702400.. 1703039:    2030080..   2030719:    640:    2032128:
 539:  1705600.. 1706239:    2033280..   2033919:    640:            
 540:  1708800.. 1709439:    2036480..   2037119:    640:            
 541:  1712000.. 1712639:    2039680..   2040319:    640:            
 542:  1715200.. 1715839:    2042880..   2043519:    640:            
 543:  1718400.. 1719039:    2044032..   2044671:    640:    2046080:
 544:  1721600.. 1722239:    2047232..   2047871:    640:            
 545:  1724800.. 1725439:    2048384..   2049023:    640:    2050432:
 546:  1728000.. 1728639:    2051584..   2052223:    640:            
 547:  1731200.. 1731839:    2054784..   2055423:    640:            
 548:  1734400.. 1735039:    2057984..   2058623:    640:            
 549:  1737600.. 1738239:    2061184..   2061823:    640:            
 550:  1740800.. 1741439:    2062336..   2062975:    640:    2064384:
 551:  1744000.. 1744639:    2065536..   2066175:    640:            
 552:  1747200.. 1747839:    2066688..   2067327:    640:    2068736:
 553:  1750400.. 1751039:    2069888..   2070527:    640:            
 554:  1753600.. 1754239:    2071040..   2071679:    640:    2073088:
 555:  1756800.. 1757439:    2074240..   2074879:    640:            
 556:  1760000.. 1760639:    2077440..   2078079:    640:            
 557:  1763200.. 1763839:    2080640..   2081279:    640:            
 558:  1766400.. 1767039:    2083840..   2084479:    640:            
 559:  1769600.. 1770239:    2084992..   2085631:    640:    2087040:
 560:  1772800.. 1773439:    2088192..   2088831:    640:            
 561:  1776000.. 1776639:    2089344..   2089983:    640:    2091392:
 562:  1779200.. 1779839:    2092544..   2093183:    640:            
 563:  1782400.. 1783039:    2095744..   2096383:    640:            
 564:  1785600.. 1785855:    2160384..   2160639:    256:    2098944:
 565:  1785856.. 1786239:    2183168..   2183551:    384:    2160640:
 566:  1788800.. 1789439:    2179968..   2180607:    640:    2186112:
 567:  1792000.. 1792639:    2181120..   2181759:    640:    2183168:
 568:  1795200.. 1795839:    2192512..   2193151:    640:    2184320:
 569:  1798400.. 1799039:    2193664..   2194303:    640:    2195712:
 570:  1801600.. 1802239:    2172288..   2172927:    640:    2196864:
 571:  1804800.. 1805439:    2173440..   2174079:    640:    2175488:
 572:  1808000.. 1808639:    2176640..   2177279:    640:            
 573:  1811200.. 1811839:    2212608..   2213247:    640:    2179840:
 574:  1814400.. 1815039:    2205568..   2206207:    640:    2215808:
 575:  1817600.. 1818239:    2208768..   2209407:    640:            
 576:  1820800.. 1821439:    2209920..   2210559:    640:    2211968:
 577:  1824000.. 1824639:    2221312..   2221951:    640:    2213120:
 578:  1827200.. 1827839:    2222464..   2223103:    640:    2224512:
 579:  1830400.. 1831039:    2225664..   2226303:    640:            
 580:  1833600.. 1834239:    2232960..   2233599:    640:    2228864:
 581:  1836800.. 1837439:    2236160..   2236799:    640:            
 582:  1840000.. 1840639:    2239360..   2239999:    640:            
 583:  1843200.. 1843839:    2240512..   2241151:    640:    2242560:
 584:  1846400.. 1847039:    2243712..   2244351:    640:            
 585:  1849600.. 1850239:    2244864..   2245503:    640:    2246912:
 586:  1852800.. 1853439:    2248064..   2248703:    640:            
 587:  1856000.. 1856639:    2249216..   2249855:    640:    2251264:
 588:  1859200.. 1859839:    2252416..   2253055:    640:            
 589:  1862400.. 1863039:    2255616..   2256255:    640:            
 590:  1865600.. 1866239:    2258816..   2259455:    640:            
 591:  1868800.. 1869439:    2262016..   2262655:    640:            
 592:  1872000.. 1872639:    2263168..   2263807:    640:    2265216:
 593:  1875200.. 1875839:    2266368..   2267007:    640:            
 594:  1878400.. 1879039:    2267520..   2268159:    640:    2269568:
 595:  1881600.. 1882239:    2270720..   2271359:    640:            
 596:  1884800.. 1885439:    2273920..   2274559:    640:            
 597:  1888000.. 1888639:    2277120..   2277759:    640:            
 598:  1891200.. 1891839:    2280320..   2280959:    640:            
 599:  1894400.. 1895039:    2281472..   2282111:    640:    2283520:
 600:  1897600.. 1898239:    2284672..   2285311:    640:            
 601:  1900800.. 1901439:    2285824..   2286463:    640:    2287872:
 602:  1904000.. 1904639:    2289024..   2289663:    640:            
 603:  1907200.. 1907839:    2290176..   2290815:    640:    2292224:
 604:  1910400.. 1911039:    2293376..   2294015:    640:            
 605:  1913600.. 1914239:    2296576..   2297215:    640:            
 606:  1916800.. 1917439:    2299776..   2300415:    640:            
 607:  1920000.. 1920639:    2302976..   2303615:    640:            
 608:  1923200.. 1923839:    2304128..   2304767:    640:    2306176:
 609:  1926400.. 1927039:    2307328..   2307967:    640:            
 610:  1929600.. 1930239:    2308480..   2309119:    640:    2310528:
 611:  1932800.. 1933439:    2311680..   2312319:    640:            
 612:  1936000.. 1936639:    2314880..   2315519:    640:            
 613:  1939200.. 1939839:    2318080..   2318719:    640:            
 614:  1942400.. 1943039:    2321280..   2321919:    640:            
 615:  1945600.. 1946239:    2322432..   2323071:    640:    2324480:
 616:  1948800.. 1949439:    2325632..   2326271:    640:            
 617:  1952000.. 1952639:    2326784..   2327423:    640:    2328832:
 618:  1955200.. 1955839:    2329984..   2330623:    640:            
 619:  1958400.. 1959039:    2331136..   2331775:    640:    2333184:
 620:  1961600.. 1962239:    2334336..   2334975:    640:            
 621:  1964800.. 1965439:    2337536..   2338175:    640:            
 622:  1968000.. 1968639:    2340736..   2341375:    640:            
 623:  1971200.. 1971839:    2343936..   2344575:    640:            
 624:  1974400.. 1975039:    2345088..   2345727:    640:    2347136:
 625:  1977600.. 1978239:    2348288..   2348927:    640:            
 626:  1980800.. 1981439:    2349440..   2350079:    640:    2351488:
 627:  1984000.. 1984639:    2352640..   2353279:    640:            
 628:  1987200.. 1987839:    2355840..   2356479:    640:            
 629:  1990400.. 1991039:    2359040..   2359679:    640:            
 630:  1993600.. 1994239:    2362240..   2362879:    640:            
 631:  1996800.. 1997439:    2363392..   2364031:    640:    2365440:
 632:  2000000.. 2000639:    2366592..   2367231:    640:            
 633:  2003200.. 2003839:    2367744..   2368383:    640:    2369792:
 634:  2006400.. 2007039:    2370944..   2371583:    640:            
 635:  2009600.. 2010239:    2372096..   2372735:    640:    2374144:
 636:  2012800.. 2013439:    2375296..   2375935:    640:            
 637:  2016000.. 2016639:    2378496..   2379135:    640:            
 638:  2019200.. 2019839:    2381696..   2382335:    640:            
 639:  2022400.. 2023039:    2384896..   2385535:    640:            
 640:  2025600.. 2026239:    2386048..   2386687:    640:    2388096:
 641:  2028800.. 2029439:    2389248..   2389887:    640:            
 642:  2032000.. 2032639:    2390400..   2391039:    640:    2392448:
 643:  2035200.. 2035839:    2393600..   2394239:    640:            
 644:  2038400.. 2039039:    2396800..   2397439:    640:            
 645:  2041600.. 2042239:    2400000..   2400639:    640:            
 646:  2044800.. 2045439:    2403200..   2403839:    640:            
 647:  2048000.. 2048639:    2404352..   2404991:    640:    2406400:
 648:  2051200.. 2051839:    2407552..   2408191:    640:            
 649:  2054400.. 2055039:    2408704..   2409343:    640:    2410752:
 650:  2057600.. 2058239:    2411904..   2412543:    640:            
 651:  2060800.. 2061439:    2413056..   2413695:    640:    2415104:
 652:  2064000.. 2064639:    2416256..   2416895:    640:            
 653:  2067200.. 2067839:    2419456..   2420095:    640:            
 654:  2070400.. 2071039:    2422656..   2423295:    640:            
 655:  2073600.. 2074239:    2425856..   2426495:    640:            
 656:  2076800.. 2077439:    2427008..   2427647:    640:    2429056:
 657:  2080000.. 2080639:    2430208..   2430847:    640:            
 658:  2083200.. 2083839:    2431360..   2431999:    640:    2433408:
 659:  2086400.. 2087039:    2434560..   2435199:    640:            
 660:  2089600.. 2090239:    2437760..   2438399:    640:            
 661:  2092800.. 2093439:    2440960..   2441599:    640:            
 662:  2096000.. 2096639:    2444160..   2444799:    640:            
 663:  2099200.. 2099839:    2445312..   2445951:    640:    2447360:
 664:  2102400.. 2103039:    2448512..   2449151:    640:            
 665:  2105600.. 2106239:    2449664..   2450303:    640:    2451712:
 666:  2108800.. 2109439:    2452864..   2453503:    640:            
 667:  2112000.. 2112639:    2454016..   2454655:    640:    2456064:
 668:  2115200.. 2115839:    2457216..   2457855:    640:            
 669:  2118400.. 2119039:    2460416..   2461055:    640:            
 670:  2121600.. 2122239:    2463616..   2464255:    640:            
 671:  2124800.. 2125439:    2466816..   2467455:    640:            
 672:  2128000.. 2128639:    2467968..   2468607:    640:    2470016:
 673:  2131200.. 2131839:    2471168..   2471807:    640:            
 674:  2134400.. 2135039:    2472320..   2472959:    640:    2474368:
 675:  2137600.. 2138239:    2475520..   2476159:    640:            
 676:  2140800.. 2141439:    2478720..   2479359:    640:            
 677:  2144000.. 2144639:    2481920..   2482559:    640:            
 678:  2147200.. 2147839:    2485120..   2485759:    640:            
 679:  2150400.. 2151039:    2486272..   2486911:    640:    2488320:
 680:  2153600.. 2154239:    2489472..   2490111:    640:            
 681:  2156800.. 2157439:    2492672..   2493311:    640:            
 682:  2160000.. 2160639:    2495872..   2496511:    640:            
 683:  2163200.. 2163839:    2497024..   2497663:    640:    2499072:
 684:  2166400.. 2167039:    2500224..   2500863:    640:            
 685:  2169600.. 2170239:    2503424..   2504063:    640:            
 686:  2172800.. 2173439:    2506624..   2507263:    640:            
 687:  2176000.. 2176639:    2509824..   2510463:    640:            
 688:  2179200.. 2179839:    2510976..   2511615:    640:    2513024:
 689:  2182400.. 2183039:    2514176..   2514815:    640:            
 690:  2185600.. 2186239:    2515328..   2515967:    640:    2517376:
 691:  2188800.. 2189439:    2518528..   2519167:    640:            
 692:  2192000.. 2192639:    2521728..   2522367:    640:            
 693:  2195200.. 2195839:    2524928..   2525567:    640:            
 694:  2198400.. 2199039:    2528128..   2528767:    640:            
 695:  2201600.. 2202239:    2529280..   2529919:    640:    2531328:
 696:  2204800.. 2205439:    2532480..   2533119:    640:            
 697:  2208000.. 2208639:    2533632..   2534271:    640:    2535680:
 698:  2211200.. 2211839:    2536832..   2537471:    640:            
 699:  2214400.. 2215039:    2537984..   2538623:    640:    2540032:
 700:  2217600.. 2218239:    2541184..   2541823:    640:            
 701:  2220800.. 2221439:    2544384..   2545023:    640:            
 702:  2224000.. 2224639:    2547584..   2548223:    640:            
 703:  2227200.. 2227839:    2550784..   2551423:    640:            
 704:  2230400.. 2231039:    2551936..   2552575:    640:    2553984:
 705:  2233600.. 2234239:    2555136..   2555775:    640:            
 706:  2236800.. 2237439:    2556288..   2556927:    640:    2558336:
 707:  2240000.. 2240639:    2559488..   2560127:    640:            
 708:  2243200.. 2243839:    2562688..   2563327:    640:            
 709:  2246400.. 2247039:    2565888..   2566527:    640:            
 710:  2249600.. 2250239:    2569088..   2569727:    640:            
 711:  2252800.. 2253439:    2570240..   2570879:    640:    2572288:
 712:  2256000.. 2256639:    2573440..   2574079:    640:            
 713:  2259200.. 2259839:    2574592..   2575231:    640:    2576640:
 714:  2262400.. 2263039:    2577792..   2578431:    640:            
 715:  2265600.. 2266239:    2578944..   2579583:    640:    2580992:
 716:  2268800.. 2269439:    2582144..   2582783:    640:            
 717:  2272000.. 2272639:    2585344..   2585983:    640:            
 718:  2275200.. 2275839:    2588544..   2589183:    640:            
 719:  2278400.. 2279039:    2591744..   2592383:    640:            
 720:  2281600.. 2282239:    2617472..   2618111:    640:    2594944:
 721:  2284800.. 2285439:    2594048..   2594687:    640:    2620672:
 722:  2288000.. 2288639:    2595200..   2595839:    640:    2597248:
 723:  2291200.. 2291839:    2614784..   2615423:    640:    2598400:
 724:  2294400.. 2295039:    2597504..   2598143:    640:    2617984:
 725:  2297600.. 2298239:    2600704..   2601343:    640:            
 726:  2300800.. 2301439:    2603904..   2604543:    640:            
 727:  2304000.. 2304639:    2605056..   2605695:    640:    2607104:
 728:  2307200.. 2307839:    2608256..   2608895:    640:            
 729:  2310400.. 2311039:    2609408..   2610047:    640:    2611456:
 730:  2313600.. 2314239:    2612608..   2613247:    640:            
 731:  2316800.. 2317439:      15925..     16564:    640:    2615808:
 732:  2320000.. 2320639:      19125..     19764:    640:            
 733:  2323200.. 2323839:     535744..    536383:    640:      22325:
 734:  2326400.. 2327039:    1061120..   1061759:    640:     538944:
 735:  2329600.. 2330239:    1074176..   1074815:    640:    1064320:
 736:  2332800.. 2333439:    1583552..   1584191:    640:    1077376:
 737:  2336000.. 2336639:    1586752..   1587391:    640:            
 738:  2339200.. 2339839:    1597824..   1598463:    640:    1589952:
 739:  2342400.. 2343039:    1601024..   1601663:    640:            
 740:  2345600.. 2346239:    1604224..   1604863:    640:            
 741:  2348800.. 2349439:    1589312..   1589951:    640:    1607424:
 742:  2352000.. 2352639:    1592512..   1593151:    640:            
 743:  2355200.. 2355839:    1593664..   1594303:    640:    1595712:
 744:  2358400.. 2359039:    2108800..   2109439:    640:    1596864:
 745:  2361600.. 2362239:    2109952..   2110591:    640:    2112000:
 746:  2364800.. 2365439:    2113152..   2113791:    640:            
 747:  2368000.. 2368639:    2114304..   2114943:    640:    2116352:
 748:  2371200.. 2371839:    2117504..   2118143:    640:            
 749:  2374400.. 2375039:    2120704..   2121343:    640:            
 750:  2377600.. 2378239:    2123904..   2124543:    640:            
 751:  2380800.. 2381439:    2127104..   2127743:    640:            
 752:  2384000.. 2384639:    2128256..   2128895:    640:    2130304:
 753:  2387200.. 2387839:    2189304..   2189943:    640:    2131456:
 754:  2390400.. 2391039:      21941..     22580:    640:    2192504:
 755:  2393600.. 2394239:     538560..    539199:    640:      25141:
 756:  2396800.. 2397439:     541760..    542399:    640:            
 757:  2400000.. 2400639:     544960..    545599:    640:            
 758:  2403200.. 2403839:     548160..    548799:    640:            
 759:  2406400.. 2407039:     549312..    549951:    640:     551360:
 760:  2409600.. 2410239:     552512..    553151:    640:            
 761:  2412800.. 2413439:     553664..    554303:    640:     555712:
 762:  2416000.. 2416639:     556416..    557055:    640:     556864:
 763:  2419200.. 2419839:     595328..    595967:    640:     559616:
 764:  2422400.. 2423039:     598400..    599039:    640:     598528:
 765:  2425600.. 2426239:     630824..    631463:    640:     601600:
 766:  2428800.. 2429439:     650246..    650885:    640:     634024:
 767:  2432000.. 2432639:     654720..    655359:    640:     653446:
 768:  2435200.. 2435839:     673478..    674117:    640:     657920:
 769:  2438400.. 2439039:     712807..    713446:    640:     676678:
 770:  2441600.. 2442239:    1063680..   1064319:    640:     716007:
 771:  2444800.. 2445439:    1076736..   1077375:    640:    1066880:
 772:  2448000.. 2448639:    1079936..   1080575:    640:            
 773:  2451200.. 2451839:    1067136..   1067775:    640:    1083136:
 774:  2454400.. 2455039:    1070336..   1070975:    640:            
 775:  2457600.. 2458239:    1131520..   1132159:    640:    1073536:
 776:  2460800.. 2461439:    1156808..   1157447:    640:    1134720:
 777:  2464000.. 2464639:    1704192..   1704831:    640:    1160008:
 778:  2467200.. 2467839:    2190176..   2190815:    640:    1707392:
 779:  2470400.. 2471039:     180737..    181376:    640:    2193376:
 780:  2473600.. 2474239:     335142..    335781:    640:     183937:
 781:  2476800.. 2477419:     617138..    617757:    620:     338342:
 782:  2477420.. 2477439:     820227..    820246:     20:     617758:
 783:  2480000.. 2480639:    1141072..   1141711:    640:     822807:
 784:  2483200.. 2483839:    1595776..   1596415:    640:    1144272:
 785:  2486400.. 2487039:    1688334..   1688973:    640:    1598976:
 786:  2489600.. 2490239:    2169997..   2170636:    640:    1691534:
 787:  2492800.. 2493439:     184908..    185547:    640:    2173197:
 788:  2496000.. 2496639:     169136..    169775:    640:     188108:
 789:  2499200.. 2499839:     235698..    236337:    640:     172336:
 790:  2502400.. 2503039:     304512..    305151:    640:     238898:
 791:  2505600.. 2506159:     615040..    615599:    560:     307712:
 792:  2506160.. 2506239:     885763..    885842:     80:     615600:
 793:  2508800.. 2509439:    1071488..   1072127:    640:     888403:
 794:  2512000.. 2512639:    1146000..   1146639:    640:    1074688:
 795:  2515200.. 2515839:    1157960..   1158599:    640:    1149200:
 796:  2518400.. 2519039:    1664119..   1664758:    640:    1161160:
 797:  2521600.. 2522239:    1657220..   1657859:    640:    1667319:
 798:  2524800.. 2525439:    1667456..   1668095:    640:    1660420:
 799:  2528000.. 2528639:    1653767..   1654406:    640:    1670656:
 800:  2531200.. 2531839:    2156843..   2157482:    640:    1656967:
 801:  2534400.. 2535039:    2186975..   2187614:    640:    2160043:
 802:  2537600.. 2538239:    2202033..   2202672:    640:    2190175:
 803:  2540800.. 2541260:     134707..    135167:    461:    2205233:
 804:  2541261.. 2541439:     131953..    132131:    179:     135168:
 805:  2544000.. 2544639:     143744..    144383:    640:     134692:
 806:  2547200.. 2547839:     135345..    135984:    640:     146944:
 807:  2550400.. 2551039:     136576..    137215:    640:     138545:
 808:  2553600.. 2554179:     139825..    140404:    580:     139776:
 809:  2554180.. 2554239:    1415169..   1415228:     60:     140405:
 810:  2556800.. 2557439:    1668217..   1668856:    640:    1417789:
 811:  2560000.. 2560639:    2157600..   2158239:    640:    1671417:
 812:  2563200.. 2563839:    2185589..   2186228:    640:    2160800:
 813:  2566400.. 2567039:      70912..     71551:    640:    2188789:
 814:  2569600.. 2570239:     101262..    101901:    640:      74112:
 815:  2572800.. 2573439:     109952..    110591:    640:     104462:
 816:  2576000.. 2576639:     117120..    117759:    640:     113152:
 817:  2579200.. 2579839:     103808..    104447:    640:     120320:
 818:  2582400.. 2582971:     144836..    145407:    572:     107008:
 819:  2582972.. 2583039:    2490369..   2490436:     68:     145408:
 820:  2585600.. 2586239:      75136..     75775:    640:    2492997:
 821:  2588800.. 2589311:      73216..     73727:    512:      78336:
 822:  2589312.. 2589439:    2619392..   2619519:    128:      73728:
 823:  2592000.. 2592460:      48691..     49151:    461:    2622080:
 824:  2592461.. 2592639:     164867..    165045:    179:      49152:
 825:  2595200.. 2595711:     613632..    614143:    512:     167606:
 826:  2595712.. 2595839:     642397..    642524:    128:     614144:
 827:  2598400.. 2598921:     669174..    669695:    522:     645085:
 828:  2598922.. 2599039:     734583..    734700:    118:     669696:
 829:  2601600.. 2602239:     750400..    751039:    640:     737261:
 830:  2604800.. 2605439:     781696..    782335:    640:     753600:
 831:  2608000.. 2608639:     757120..    757759:    640:     784896:
 832:  2611200.. 2611839:     776879..    777518:    640:     760320:
 833:  2614400.. 2615039:     790298..    790937:    640:     780079:
 834:  2617600.. 2618239:    1128704..   1129343:    640:     793498:
 835:  2620800.. 2621425:    1671560..   1672185:    626:    1131904:
 836:  2621426.. 2621439:    1672704..   1672717:     14:    1672186:
 837:  2624000.. 2624639:    2216985..   2217624:    640:    1675278:
 838:  2627200.. 2627783:      43425..     44008:    584:    2220185:
 839:  2627784.. 2627839:     274432..    274487:     56:      44009:
 840:  2630400.. 2630864:     632009..    632473:    465:     277048:
 841:  2630865.. 2631039:    2231446..   2231620:    175:     632474:
 842:  2633600.. 2634111:     131072..    131583:    512:    2234181:
 843:  2634112.. 2634239:     209896..    210023:    128:     131584:
 844:  2636800.. 2637246:     612929..    613375:    447:     212584:
 845:  2637247.. 2637439:    2228224..   2228416:    193:     613376:
 846:  2640000.. 2640439:     624748..    625187:    440:    2230977:
 847:  2640440.. 2640639:     641536..    641735:    200:     625188:
 848:  2643200.. 2643660:     644147..    644607:    461:     644296:
 849:  2643661.. 2643839:     744203..    744381:    179:     644608:
 850:  2646400.. 2647039:     748573..    749212:    640:     746942:
 851:  2649600.. 2650239:     762677..    763316:    640:     751773:
 852:  2652800.. 2653439:     767439..    768078:    640:     765877:
 853:  2656000.. 2656551:    1659397..   1659948:    552:     770639:
 854:  2656552.. 2656639:    1680014..   1680101:     88:    1659949:
 855:  2659200.. 2659743:    2160640..   2161183:    544:    1682662:
 856:  2659744.. 2659839:     236549..    236644:     96:    2161184:
 857:  2662400.. 2662835:     637900..    638335:    436:     239205:
 858:  2662836.. 2663039:     646073..    646276:    204:     638336:
 859:  2665600.. 2666052:     644992..    645444:    453:     648837:
 860:  2666053.. 2666239:    2491973..   2492159:    187:     645445:
 861:  2668800.. 2669213:     589922..    590335:    414:    2494720:
 862:  2669214.. 2669439:     651742..    651967:    226:     590336:
 863:  2672000.. 2672399:     671744..    672143:    400:     654528:
 864:  2672400.. 2672639:     742124..    742363:    240:     672144:
 865:  2675200.. 2675839:     744832..    745471:    640:     744924:
 866:  2678400.. 2679039:     747818..    748457:    640:     748032:
 867:  2681600.. 2682122:    1657861..   1658383:    523:     751018:
 868:  2682123.. 2682239:    2106522..   2106638:    117:    1658384:
 869:  2684800.. 2685170:     621811..    622181:    371:    2109199:
 870:  2685171.. 2685439:     651136..    651404:    269:     622182:
 871:  2688000.. 2688365:     634002..    634367:    366:     653965:
 872:  2688366.. 2688639:     230403..    230676:    274:     634368:
 873:  2691200.. 2691535:     619568..    619903:    336:     233237:
 874:  2691536.. 2691839:     648448..    648751:    304:     619904:
 875:  2694400.. 2694735:     637440..    637775:    336:     651312:
 876:  2694736.. 2695039:     165174..    165477:    304:     637776:
 877:  2697600.. 2697919:     630144..    630463:    320:     168038:
 878:  2697920.. 2698235:     648802..    649117:    316:     630464:
 879:  2698236.. 2698239:     653592..    653595:      4:     649118:
 880:  2700800.. 2701439:     675576..    676215:    640:     656156:
 881:  2704000.. 2704639:     683144..    683783:    640:     678776:
 882:  2707200.. 2707839:     686481..    687120:    640:     686344:
 883:  2710400.. 2711039:     687488..    688127:    640:     689681:
 884:  2713600.. 2714239:     718045..    718684:    640:     690688:
 885:  2716800.. 2717313:    1653248..   1653761:    514:     721245:
 886:  2717314.. 2717439:    2620800..   2620925:    126:    1653762:
 887:  2720000.. 2720361:      34710..     35071:    362:    2623486:
 888:  2720362.. 2720639:      68106..     68383:    278:      35072:
 889:  2723200.. 2723528:     135991..    136319:    329:      70944:
 890:  2723529.. 2723839:     231061..    231371:    311:     136320:
 891:  2726400.. 2726697:     638910..    639207:    298:     233932:
 892:  2726698.. 2726989:     626688..    626979:    292:     639208:
 893:  2726990.. 2727039:     652288..    652337:     50:     626980:
 894:  2729600.. 2729859:     629463..    629722:    260:     654898:
 895:  2729860.. 2729983:     769924..    770047:    124:     629723:
 896:  2729984.. 2730239:    1662980..   1663235:    256:     770048:
 897:  2732800.. 2733304:    1651209..   1651713:    505:    1665796:
 898:  2733305.. 2733439:    1660426..   1660560:    135:    1651714:
 899:  2736000.. 2736497:    1658385..   1658882:    498:    1663121:
 900:  2736498.. 2736639:    1658898..   1659039:    142:    1658883:
 901:  2739200.. 2739489:    1670878..   1671167:    290:    1661600:
 902:  2739490.. 2739839:    1669165..   1669514:    350:    1671168:
 903:  2742400.. 2742867:    1659950..   1660417:    468:    1672075:
 904:  2742868.. 2743039:    2162272..   2162443:    172:    1660418:
 905:  2745600.. 2745954:      35997..     36351:    355:    2165004:
 906:  2745955.. 2746239:     364054..    364338:    285:      36352:
 907:  2748800.. 2748910:     618878..    618988:    111:     366899:
 908:  2748911.. 2749176:     619142..    619407:    266:     618989:
 909:  2749177.. 2749414:     639212..    639449:    238:     619408:
 910:  2749415.. 2749439:     659199..    659223:     25:     639450:
 911:  2752000.. 2752511:     681984..    682495:    512:     661784:
 912:  2752512.. 2752639:     330470..    330597:    128:     682496:
 913:  2755200.. 2755432:     635601..    635833:    233:     333158:
 914:  2755433.. 2755663:     649490..    649720:    231:     635834:
 915:  2755664.. 2755839:     627825..    628000:    176:     649721:
 916:  2758400.. 2758597:     676446..    676643:    198:     630561:
 917:  2758598.. 2758655:     690078..    690135:     58:     676644:
 918:  2758656.. 2758875:     618492..    618711:    220:     690136:
 919:  2758876.. 2759039:     649277..    649440:    164:     618712:
 920:  2761600.. 2761787:     676890..    677077:    188:     652001:
 921:  2761788.. 2762239:     806912..    807363:    452:     677078:
 922:  2764800.. 2765007:     356144..    356351:    208:     809924:
 923:  2765008.. 2765198:     618256..    618446:    191:     356352:
 924:  2765199.. 2765384:     661504..    661689:    186:     618447:
 925:  2765385.. 2765439:     713575..    713629:     55:     661690:
 926:  2768000.. 2768176:     641187..    641363:    177:     716190:
 927:  2768177.. 2768354:     672326..    672503:    178:     641364:
 928:  2768355.. 2768639:    1140318..   1140602:    285:     672504:
 929:  2771200.. 2771361:     638477..    638638:    162:    1143163:
 930:  2771362.. 2771641:     677608..    677887:    280:     638639:
 931:  2771642.. 2771839:    2199125..   2199322:    198:     677888:
 932:  2774400.. 2774555:     631808..    631963:    156:    2201883:
 933:  2774556.. 2774794:     677368..    677606:    239:     631964:
 934:  2774795.. 2775039:     810666..    810910:    245:     677607:
 935:  2777600.. 2777751:     621160..    621311:    152:     813471:
 936:  2777752.. 2777914:     657483..    657645:    163:     621312:
 937:  2777915.. 2778239:     768953..    769277:    325:     657646:
 938:  2780800.. 2780927:     640632..    640759:    128:     771838:
 939:  2780928.. 2781183:     724736..    724991:    256:     640760:
 940:  2781184.. 2781439:     886355..    886610:    256:     724992:
 941:  2784000.. 2784191:    1058720..   1058911:    192:     889171:
 942:  2784192.. 2784568:    1663493..   1663869:    377:    1058912:
 943:  2784569.. 2784639:    1677228..   1677298:     71:    1663870:
 944:  2787200.. 2787549:    1707682..   1708031:    350:    1679859:
 945:  2787550.. 2787701:     622272..    622423:    152:    1708032:
 946:  2787702.. 2787823:     607928..    608049:    122:     622424:
 947:  2787824.. 2787839:     646568..    646583:     16:     608050:
 948:  2790400.. 2790575:     677182..    677357:    176:     649144:
 949:  2790576.. 2790888:    1652424..   1652736:    313:     677358:
 950:  2790889.. 2791039:    1650688..   1650838:    151:    1652737:
 951:  2793600.. 2793838:    1648401..   1648639:    239:    1653399:
 952:  2793839.. 2794130:      45788..     46079:    292:    1648640:
 953:  2794131.. 2794239:     101918..    102026:    109:      46080:
 954:  2796800.. 2797183:     165606..    165989:    384:     104587:
 955:  2797184.. 2797439:     275743..    275998:    256:     165990:
 956:  2800000.. 2800348:     276131..    276479:    349:     278559:
 957:  2800349.. 2800639:     296629..    296919:    291:     276480:
 958:  2803200.. 2803475:     298579..    298854:    276:     299480:
 959:  2803476.. 2803711:     820887..    821122:    236:     298855:
 960:  2803712.. 2803839:     673068..    673195:    128:     821123:
 961:  2806400.. 2806557:     674834..    674991:    158:     675756:
 962:  2806558.. 2806863:    1147572..   1147877:    306:     674992:
 963:  2806864.. 2807039:    2186236..   2186411:    176:    1147878:
 964:  2809600.. 2809794:    2187622..   2187816:    195:    2188972:
 965:  2809795.. 2809855:    2200960..   2201020:     61:    2187817:
 966:  2809856.. 2810239:      23605..     23988:    384:    2201021:
 967:  2812800.. 2813071:      47856..     48127:    272:      26549:
 968:  2813072.. 2813439:      66000..     66367:    368:      48128:
 969:  2816000.. 2816377:      66519..     66896:    378:      68928:
 970:  2816378.. 2816639:     133198..    133459:    262:      66897:
 971:  2819200.. 2819458:     132861..    133119:    259:     136020:
 972:  2819459.. 2819762:     557536..    557839:    304:     133120:
 973:  2819763.. 2819839:     636416..    636492:     77:     557840:
 974:  2822400.. 2822531:     672914..    673045:    132:     639053:
 975:  2822532.. 2822651:     672508..    672627:    120:     673046:
 976:  2822652.. 2822769:     676246..    676363:    118:     672628:
 977:  2822770.. 2822884:     338630..    338744:    115:     676364:
 978:  2822885.. 2822980:     609664..    609759:     96:     338745:
 979:  2822981.. 2823039:     609853..    609911:     59:     609760:
 980:  2825600.. 2825703:     675232..    675335:    104:     612472:
 981:  2825704.. 2826103:    1144832..   1145231:    400:     675336:
 982:  2826104.. 2826239:    1416893..   1417028:    136:    1145232:
 983:  2828800.. 2829183:    1582848..   1583231:    384:    1419589:
 984:  2829184.. 2829439:    2137331..   2137586:    256:    1583232:
 985:  2832000.. 2832099:     677080..    677179:    100:    2140147:
 986:  2832100.. 2832383:    2228801..   2229084:    284:     677180:
 987:  2832384.. 2832634:      36613..     36863:    251:    2229085:
 988:  2832635.. 2832639:      67757..     67761:      5:      36864:
 989:  2835200.. 2835513:     118470..    118783:    314:      70322:
 990:  2835514.. 2835755:     140409..    140650:    242:     118784:
 991:  2835756.. 2835839:     296979..    297062:     84:     140651:
 992:  2838400.. 2838603:     296116..    296319:    204:     299623:
 993:  2838604.. 2838735:     297340..    297471:    132:     296320:
 994:  2838736.. 2838827:     672692..    672783:     92:     297472:
 995:  2838828.. 2838918:     627389..    627479:     91:     672784:
 996:  2838919.. 2839002:     639813..    639896:     84:     627480:
 997:  2839003.. 2839039:     675012..    675048:     37:     639897:
 998:  2841600.. 2841679:     674646..    674725:     80:     677609:
 999:  2841680.. 2841950:    1150193..   1150463:    271:     674726:
1000:  2841951.. 2842203:    1616643..   1616895:    253:    1150464:
1001:  2842204.. 2842239:    1638136..   1638171:     36:    1616896:
1002:  2844800.. 2844879:     331568..    331647:     80:    1640732:
1003:  2844880.. 2844959:     345392..    345471:     80:     331648:
1004:  2844960.. 2845039:     345904..    345983:     80:     345472:
1005:  2845040.. 2845119:     348976..    349055:     80:     345984:
1006:  2845120.. 2845199:     349488..    349567:     80:     349056:
1007:  2845200.. 2845279:     350000..    350079:     80:     349568:
1008:  2845280.. 2845368:     622428..    622516:     89:     350080:
1009:  2845369.. 2845439:     621490..    621560:     71:     622517:
1010:  2848000.. 2848079:     676758..    676837:     80:     624121:
1011:  2848080.. 2848347:    1672436..   1672703:    268:     676838:
1012:  2848348.. 2848571:    2161312..   2161535:    224:    1672704:
1013:  2848572.. 2848639:     165996..    166063:     68:    2161536:
1014:  2851200.. 2851517:     237250..    237567:    318:     168624:
1015:  2851518.. 2851597:     353584..    353663:     80:     237568:
1016:  2851598.. 2851677:     354608..    354687:     80:     353664:
1017:  2851678.. 2851756:     344881..    344959:     79:     354688:
1018:  2851757.. 2851835:     355121..    355199:     79:     344960:
1019:  2851836.. 2851839:     355633..    355636:      4:     355200:
1020:  2854400.. 2854655:     534016..    534271:    256:     358197:
1021:  2854656.. 2854911:    2219520..   2219775:    256:     534272:
1022:  2854912.. 2855039:    2229085..   2229212:    128:    2219776:
1023:  2857600.. 2857825:     132631..    132856:    226:    2231773:
1024:  2857826.. 2857901:     338228..    338303:     76:     132857:
1025:  2857902.. 2857977:     354100..    354175:     76:     338304:
1026:  2857978.. 2858052:     628397..    628471:     75:     354176:
1027:  2858053.. 2858177:     692787..    692911:    125:     628472:
1028:  2858178.. 2858239:     764847..    764908:     62:     692912:
1029:  2860800.. 2861046:    1151607..   1151853:    247:     767469:
1030:  2861047.. 2861055:    1148375..   1148383:      9:    1151854:
1031:  2861056.. 2861242:    1417029..   1417215:    187:    1148384:
1032:  2861243.. 2861370:    1582592..   1582719:    128:    1417216:
1033:  2861371.. 2861439:     674728..    674796:     69:    1582720:
1034:  2864000.. 2864073:     658936..    659009:     74:     677357:
1035:  2864074.. 2864145:     675096..    675167:     72:     659010:
1036:  2864146.. 2864215:     675356..    675425:     70:     675168:
1037:  2864216.. 2864284:     605312..    605380:     69:     675426:
1038:  2864285.. 2864357:     617940..    618012:     73:     605381:
1039:  2864358.. 2864430:     649728..    649800:     73:     618013:
1040:  2864431.. 2864550:     691113..    691232:    120:     649801:
1041:  2864551.. 2864639:     778024..    778112:     89:     691233:
1042:  2867200.. 2867375:    1140848..   1141023:    176:     780673:
1043:  2867376.. 2867544:    1151947..   1152115:    169:    1141024:
1044:  2867545.. 2867611:    1149885..   1149951:     67:    1152116:
1045:  2867612.. 2867674:     659105..    659167:     63:    1149952:
1046:  2867675.. 2867736:     673376..    673437:     62:     659168:
1047:  2867737.. 2867797:     657152..    657212:     61:     673438:
1048:  2867798.. 2867839:     675170..    675211:     42:     657213:
1049:  2870400.. 2870612:     739215..    739427:    213:     677772:
1050:  2870613.. 2870804:    2158400..   2158591:    192:     739428:
1051:  2870805.. 2870964:    2191200..   2191359:    160:    2158592:
1052:  2870965.. 2871039:     207137..    207211:     75:    2191360:
1053:  2873600.. 2873783:     534336..    534519:    184:     209772:
1054:  2873784.. 2873911:     534656..    534783:    128:     534520:
1055:  2873912.. 2873991:     574464..    574543:     80:     534784:
1056:  2873992.. 2874063:     627691..    627762:     72:     574544:
1057:  2874064.. 2874135:     634880..    634951:     72:     627763:
1058:  2874136.. 2874202:     638840..    638906:     67:     634952:
1059:  2874203.. 2874239:     632494..    632530:     37:     638907:
1060:  2876800.. 2877004:     737314..    737518:    205:     635091:
1061:  2877005.. 2877215:    1678102..   1678312:    211:     737519:
1062:  2877216.. 2877439:    2107279..   2107502:    224:    1678313:
1063:  2880000.. 2880142:    2185216..   2185358:    143:    2110063:
1064:  2880143.. 2880353:      43200..     43410:    211:    2185359:
1065:  2880354.. 2880571:     132407..    132624:    218:      43411:
1066:  2880572.. 2880637:     632576..    632641:     66:     132625:
1067:  2880638.. 2880639:     648372..    648373:      2:     632642:
1068:  2883200.. 2883358:     727616..    727774:    159:     650934:
1069:  2883359.. 2883506:     792428..    792575:    148:     727775:
1070:  2883507.. 2883583:     810911..    810987:     77:     792576:
1071:  2883584.. 2883714:    1139069..   1139199:    131:     810988:
1072:  2883715.. 2883777:    1150785..   1150847:     63:    1139200:
1073:  2883778.. 2883836:    1582725..   1582783:     59:    1150848:
1074:  2883837.. 2883839:    1612448..   1612450:      3:    1582784:
1075:  2886400.. 2886415:    1609161..   1609176:     16:    1615011:
1076:  2886416.. 2886473:     330310..    330367:     58:    1609177:
1077:  2886474.. 2886550:     364467..    364543:     77:     330368:
1078:  2886551.. 2886614:     615680..    615743:     64:     364544:
1079:  2886615.. 2886677:     622529..    622591:     63:     615744:
1080:  2886678.. 2886743:     652148..    652213:     66:     622592:
1081:  2886744.. 2886804:     641036..    641096:     61:     652214:
1082:  2886805.. 2886862:     672854..    672911:     58:     641097:
1083:  2886863.. 2887019:    2219776..   2219932:    157:     672912:
1084:  2887020.. 2887039:    2219312..   2219331:     20:    2219933:
1085:  2889600.. 2889763:     100073..    100236:    164:    2221892:
1086:  2889764.. 2889913:     131690..    131839:    150:     100237:
1087:  2889914.. 2890062:     207723..    207871:    149:     131840:
1088:  2890063.. 2890136:     563404..    563477:     74:     207872:
1089:  2890137.. 2890197:     605568..    605628:     61:     563478:
1090:  2890198.. 2890239:     618992..    619033:     42:     605629:
1091:  2892800.. 2892859:     611776..    611835:     60:     621594:
1092:  2892860.. 2892917:     676698..    676755:     58:     611836:
1093:  2892918.. 2892975:     331078..    331135:     58:     676756:
1094:  2892976.. 2893033:     331718..    331775:     58:     331136:
1095:  2893034.. 2893091:     346054..    346111:     58:     331776:
1096:  2893092.. 2893149:     349126..    349183:     58:     346112:
1097:  2893150.. 2893207:     349638..    349695:     58:     349184:
1098:  2893208.. 2893264:     333895..    333951:     57:     349696:
1099:  2893265.. 2893320:     650888..    650943:     56:     333952:
1100:  2893321.. 2893439:    1057536..   1057654:    119:     650944:
1101:  2896000.. 2896127:    1057920..   1058047:    128:    1060215:
1102:  2896128.. 2896255:    1058304..   1058431:    128:    1058048:
1103:  2896256.. 2896383:    1058944..   1059071:    128:    1058432:
1104:  2896384.. 2896447:    1058560..   1058623:     64:    1059072:
1105:  2896448.. 2896503:     672264..    672319:     56:    1058624:
1106:  2896504.. 2896596:     689647..    689739:     93:     672320:
1107:  2896597.. 2896639:     768674..    768716:     43:     689740:
1108:  2899200.. 2899331:     780288..    780419:    132:     771277:
1109:  2899332.. 2899530:    1652224..   1652422:    199:     780420:
1110:  2899531.. 2899723:    1651014..   1651206:    193:    1652423:
1111:  2899724.. 2899839:    1668904..   1669019:    116:    1651207:
1112:  2902400.. 2902537:    1673590..   1673727:    138:    1671580:
1113:  2902538.. 2902665:    2161856..   2161983:    128:    1673728:
1114:  2902666.. 2902721:     672632..    672687:     56:    2161984:
1115:  2902722.. 2902800:     690609..    690687:     79:     672688:
1116:  2902801.. 2902925:     821123..    821247:    125:     690688:
1117:  2902926.. 2902981:     672792..    672847:     56:     821248:
1118:  2902982.. 2903037:     674376..    674431:     56:     672848:
1119:  2903038.. 2903039:     354761..    354762:      2:     674432:
1120:  2905600.. 2905659:     568252..    568311:     60:     357323:
1121:  2905660.. 2905714:     616265..    616319:     55:     568312:
1122:  2905715.. 2905768:     611072..    611125:     54:     616320:
1123:  2905769.. 2905820:     674210..    674261:     52:     611126:
1124:  2905821.. 2905931:     738291..    738401:    111:     674262:
1125:  2905932.. 2906053:    1673164..   1673285:    122:     738402:
1126:  2906054.. 2906111:    2213888..   2213945:     58:    1673286:
1127:  2906112.. 2906239:      65852..     65979:    128:    2213946:
1128:  2908800.. 2908939:     132260..    132399:    140:      68540:
1129:  2908940.. 2909058:     133499..    133617:    119:     132400:
1130:  2909059.. 2909119:     207875..    207935:     61:     133618:
1131:  2909120.. 2909175:     275641..    275696:     56:     207936:
1132:  2909176.. 2909227:     676392..    676443:     52:     275697:
1133:  2909228.. 2909278:     355277..    355327:     51:     676444:
1134:  2909279.. 2909328:     344526..    344575:     50:     355328:
1135:  2909329.. 2909378:     673324..    673373:     50:     344576:
1136:  2909379.. 2909428:     676646..    676695:     50:     673374:
1137:  2909429.. 2909439:     672176..    672186:     11:     676696:
1138:  2912000.. 2912120:     765236..    765356:    121:     674747:
1139:  2912121.. 2912209:    1674032..   1674120:     89:     765357:
1140:  2912210.. 2912255:    2218897..   2218942:     46:    1674121:
1141:  2912256.. 2912393:      35840..     35977:    138:    2218943:
1142:  2912394.. 2912483:      34320..     34409:     90:      35978:
1143:  2912484.. 2912559:      99580..     99655:     76:      34410:
1144:  2912560.. 2912616:     131879..    131935:     57:      99656:
1145:  2912617.. 2912639:     231372..    231394:     23:     131936:
1146:  2915200.. 2915247:     329575..    329622:     48:     233955:
1147:  2915248.. 2915295:     578240..    578287:     48:     329623:
1148:  2915296.. 2915343:     615840..    615887:     48:     578288:
1149:  2915344.. 2915391:     620496..    620543:     48:     615888:
1150:  2915392.. 2915438:     330193..    330239:     47:     620544:
1151:  2915439.. 2915485:     330833..    330879:     47:     330240:
1152:  2915486.. 2915532:     338513..    338559:     47:     330880:
1153:  2915533.. 2915579:     348625..    348671:     47:     338560:
1154:  2915580.. 2915626:     350161..    350207:     47:     348672:
1155:  2915627.. 2915673:     354257..    354303:     47:     350208:
1156:  2915674.. 2915719:     329426..    329471:     46:     354304:
1157:  2915720.. 2915765:     329682..    329727:     46:     329472:
1158:  2915766.. 2915811:     331218..    331263:     46:     329728:
1159:  2915812.. 2915839:     345042..    345069:     28:     331264:
1160:  2918400.. 2918445:     345554..    345599:     46:     347630:
1161:  2918446.. 2918491:     353746..    353791:     46:     345600:
1162:  2918492.. 2918537:     641102..    641147:     46:     353792:
1163:  2918538.. 2918627:     730022..    730111:     90:     641148:
1164:  2918628.. 2918709:     769470..    769551:     82:     730112:
1165:  2918710.. 2918764:    1151165..   1151219:     55:     769552:
1166:  2918765.. 2918796:    1148384..   1148415:     32:    1151220:
1167:  2918797.. 2918821:    1147201..   1147225:     25:    1148416:
1168:  2918822.. 2918839:    1151470..   1151487:     18:    1147226:
1169:  2918840.. 2918852:    1150959..   1150971:     13:    1151488:
1170:  2918853.. 2918863:    1618933..   1618943:     11:    1150972:
1171:  2918864.. 2918868:    1620486..   1620490:      5:    1618944:
1172:  2918869.. 2918872:    1618889..   1618892:      4:    1620491:
1173:  2918873.. 2918876:    1625762..   1625765:      4:    1618893:
1174:  2918877.. 2918879:    1624240..   1624242:      3:    1625766:
1175:  2918880.. 2918891:    1669104..   1669115:     12:    1624243:
1176:  2918892.. 2918987:    2161568..   2161663:     96:    1669116:
1177:  2918988.. 2919039:    2162016..   2162067:     52:    2161664:
1178:  2921600.. 2921711:    2196368..   2196479:    112:    2164628:
1179:  2921712.. 2921823:    2200464..   2200575:    112:    2196480:
1180:  2921824.. 2921903:    2200880..   2200959:     80:    2200576:
1181:  2921904.. 2921948:     641408..    641452:     45:    2200960:
1182:  2921949.. 2922037:     694833..    694921:     89:     641453:
1183:  2922038.. 2922124:     700739..    700825:     87:     694922:
1184:  2922125.. 2922207:     710797..    710879:     83:     700826:
1185:  2922208.. 2922239:    2187940..   2187971:     32:     710880:
1186:  2924800.. 2924874:      55733..     55807:     75:    2190532:
1187:  2924875.. 2924947:      43040..     43112:     73:      55808:
1188:  2924948.. 2925018:      34483..     34553:     71:      43113:
1189:  2925019.. 2925086:      56252..     56319:     68:      34554:
1190:  2925087.. 2925153:      56765..     56831:     67:      56320:
1191:  2925154.. 2925210:      65711..     65767:     57:      56832:
1192:  2925211.. 2925260:      65800..     65849:     50:      65768:
1193:  2925261.. 2925307:      65600..     65646:     47:      65850:
1194:  2925308.. 2925351:     141268..    141311:     44:      65647:
1195:  2925352.. 2925395:     296404..    296447:     44:     141312:
1196:  2925396.. 2925439:     338388..    338431:     44:     296448:
1197:  2928000.. 2928043:     622204..    622247:     44:     340992:
1198:  2928044.. 2928087:     674434..    674477:     44:     622248:
1199:  2928088.. 2928130:     647111..    647153:     43:     674478:
1200:  2928131.. 2928172:     674134..    674175:     42:     647154:
1201:  2928173.. 2928226:    2162692..   2162745:     54:     674176:
1202:  2928227.. 2928279:    2163147..   2163199:     53:    2162746:
1203:  2928280.. 2928327:    2187820..   2187867:     48:    2163200:
1204:  2928328.. 2928374:    2164308..   2164354:     47:    2187868:
1205:  2928375.. 2928420:    2165110..   2165155:     46:    2164355:
1206:  2928421.. 2928463:    2167782..   2167824:     43:    2165156:
1207:  2928464.. 2928504:     355799..    355839:     41:    2167825:
1208:  2928505.. 2928545:     617003..    617043:     41:     355840:
1209:  2928546.. 2928586:     649216..    649256:     41:     617044:
1210:  2928587.. 2928639:    2232261..   2232313:     53:     649257:
1211:  2931200.. 2931248:      35279..     35327:     49:    2234874:
1212:  2931249.. 2931287:     605518..    605556:     39:      35328:
1213:  2931288.. 2931326:     655530..    655568:     39:     605557:
1214:  2931327.. 2931394:     695485..    695552:     68:     655569:
1215:  2931395.. 2931449:     689865..    689919:     55:     695553:
1216:  2931450.. 2931496:     693055..    693101:     47:     689920:
1217:  2931497.. 2931542:     694781..    694826:     46:     693102:
1218:  2931543.. 2931580:     724698..    724735:     38:     694827:
1219:  2931581.. 2931616:     742364..    742399:     36:     724736:
1220:  2931617.. 2931642:     730952..    730977:     26:     742400:
1221:  2931643.. 2931667:    1138663..   1138687:     25:     730978:
1222:  2931668.. 2931682:    1139697..   1139711:     15:    1138688:
1223:  2931683.. 2931690:    1136376..   1136383:      8:    1139712:
1224:  2931691.. 2931698:    1159160..   1159167:      8:    1136384:
1225:  2931699.. 2931702:    1148668..   1148671:      4:    1159168:
1226:  2931703.. 2931724:    1669120..   1669141:     22:    1148672:
1227:  2931725.. 2931788:    2161696..   2161759:     64:    1669142:
1228:  2931789.. 2931826:     676842..    676879:     38:    2161760:
1229:  2931827.. 2931839:     661981..    661993:     13:     676880:
1230:  2934400.. 2934433:     660949..    660982:     34:     664554:
1231:  2934434.. 2934470:     628098..    628134:     37:     660983:
1232:  2934471.. 2934506:     330922..    330957:     36:     628135:
1233:  2934507.. 2934542:     599591..    599626:     36:     330958:
1234:  2934543.. 2934578:     617852..    617887:     36:     599627:
1235:  2934579.. 2934612:     674538..    674571:     34:     617888:
1236:  2934613.. 2934644:     674574..    674605:     32:     674572:
1237:  2934645.. 2934674:     674178..    674207:     30:     674606:
1238:  2934675.. 2934708:     689267..    689300:     34:     674208:
1239:  2934709.. 2934729:     694123..    694143:     21:     689301:
1240:  2934730.. 2934745:     690136..    690151:     16:     694144:
1241:  2934746.. 2934761:     690528..    690543:     16:     690152:
1242:  2934762.. 2934783:    2213946..   2213967:     22:     690544:
1243:  2934784.. 2934848:    2218943..   2219007:     65:    2213968:
1244:  2934849.. 2934886:     563266..    563303:     38:    2219008:
1245:  2934887.. 2934919:     628232..    628264:     33:     563304:
1246:  2934920.. 2934952:     639455..    639487:     33:     628265:
1247:  2934953.. 2934984:     630576..    630607:     32:     639488:
1248:  2934985.. 2935014:     652256..    652285:     30:     630608:
1249:  2935015.. 2935039:     622711..    622735:     25:     652286:
1250:  2937600.. 2937626:     624523..    624549:     27:     625296:
1251:  2937627.. 2937653:     630053..    630079:     27:     624550:
1252:  2937654.. 2937680:     687154..    687180:     27:     630080:
1253:  2937681.. 2937706:     673228..    673253:     26:     687181:
1254:  2937707.. 2937732:     674806..    674831:     26:     673254:
1255:  2937733.. 2937758:     676218..    676243:     26:     674832:
1256:  2937759.. 2937782:     674350..    674373:     24:     676244:
1257:  2937783.. 2937806:     674512..    674535:     24:     674374:
1258:  2937807.. 2937828:     673256..    673277:     22:     674536:
1259:  2937829.. 2937850:     674266..    674287:     22:     673278:
1260:  2937851.. 2937872:     674326..    674347:     22:     674288:
1261:  2937873.. 2937892:     674290..    674309:     20:     674348:
1262:  2937893.. 2937912:     810988..    811007:     20:     674310:
1263:  2937913.. 2937928:    1101376..   1101391:     16:     811008:
1264:  2937929.. 2937944:    1102032..   1102047:     16:    1101392:
1265:  2937945.. 2937960:    1103344..   1103359:     16:    1102048:
1266:  2937961.. 2937976:    1110752..   1110767:     16:    1103360:
1267:  2937977.. 2937992:    1112288..   1112303:     16:    1110768:
1268:  2937993.. 2937996:    1101400..   1101403:      4:    1112304:
1269:  2937997.. 2938000:    1110780..   1110783:      4:    1101404:
1270:  2938001.. 2938004:    1112328..   1112331:      4:    1110784:
1271:  2938005.. 2938008:    1134194..   1134197:      4:    1112332:
1272:  2938009.. 2938012:    1134588..   1134591:      4:    1134198:
1273:  2938013.. 2938015:    1628175..   1628177:      3:    1134592:
1274:  2938016.. 2938018:    1662976..   1662978:      3:    1628178:
1275:  2938019.. 2938056:    1675226..   1675263:     38:    1662979:
1276:  2938057.. 2938090:    2167827..   2167860:     34:    1675264:
1277:  2938091.. 2938127:     166192..    166228:     37:    2167861:
1278:  2938128.. 2938160:     298396..    298428:     33:     166229:
1279:  2938161.. 2938192:     620576..    620607:     32:     298429:
1280:  2938193.. 2938222:     603102..    603131:     30:     620608:
1281:  2938223.. 2938239:     605919..    605935:     17:     603132:
1282:  2940800.. 2940826:     609948..    609974:     27:     608496:
1283:  2940827.. 2940853:     611328..    611354:     27:     609975:
1284:  2940854.. 2940877:     605416..    605439:     24:     611355:
1285:  2940878.. 2940901:     612352..    612375:     24:     605440:
1286:  2940902.. 2940925:     623488..    623511:     24:     612376:
1287:  2940926.. 2940927:     622760..    622761:      2:     623512:
1288:  2940928.. 2940950:     628637..    628659:     23:     622762:
1289:  2940951.. 2940971:     641504..    641524:     21:     628660:
1290:  2940972.. 2940991:     630118..    630137:     20:     641525:
1291:  2940992.. 2941011:     652234..    652253:     20:     630138:
1292:  2941012.. 2941030:     658797..    658815:     19:     652254:
1293:  2941031.. 2941048:     660206..    660223:     18:     658816:
1294:  2941049.. 2941066:     661350..    661367:     18:     660224:
1295:  2941067.. 2941084:     663658..    663675:     18:     661368:
1296:  2941085.. 2941102:     673048..    673065:     18:     663676:
1297:  2941103.. 2941118:     657216..    657231:     16:     673066:
1298:  2941119.. 2941134:     672232..    672247:     16:     657232:
1299:  2941135.. 2941150:     674480..    674495:     16:     672248:
1300:  2941151.. 2941166:     674626..    674641:     16:     674496:
1301:  2941167.. 2941182:     674994..    675009:     16:     674642:
1302:  2941183.. 2941198:     675338..    675353:     16:     675010:
1303:  2941199.. 2941214:     687122..    687137:     16:     675354:
1304:  2941215.. 2941230:     738813..    738828:     16:     687138:
1305:  2941231.. 2941235:    1058491..   1058495:      5:     738829:
1306:  2941236.. 2941237:    1111012..   1111013:      2:    1058496:
1307:  2941238.. 2941239:    1112318..   1112319:      2:    1111014:
1308:  2941240.. 2941241:    1112474..   1112475:      2:    1112320:
1309:  2941242.. 2941243:    1614337..   1614338:      2:    1112476:
1310:  2941244.. 2941279:    1670656..   1670691:     36:    1614339:
1311:  2941280.. 2941311:    2161792..   2161823:     32:    1670692:
1312:  2941312.. 2941345:      99544..     99577:     34:    2161824:
1313:  2941346.. 2941378:     136399..    136431:     33:      99578:
1314:  2941379.. 2941410:     206944..    206975:     32:     136432:
1315:  2941411.. 2941439:     208097..    208125:     29:     206976:
1316:  2944000.. 2944030:     208289..    208319:     31:     210686:
1317:  2944031.. 2944061:     208545..    208575:     31:     208320:
1318:  2944062.. 2944092:     209633..    209663:     31:     208576:
1319:  2944093.. 2944123:     209761..    209791:     31:     209664:
1320:  2944124.. 2944153:     208610..    208639:     30:     209792:
1321:  2944154.. 2944183:     330082..    330111:     30:     208640:
1322:  2944184.. 2944211:     330980..    331007:     28:     330112:
1323:  2944212.. 2944238:     329637..    329663:     27:     331008:
1324:  2944239.. 2944264:     328134..    328159:     26:     329664:
1325:  2944265.. 2944290:     329286..    329311:     26:     328160:
1326:  2944291.. 2944316:     534822..    534847:     26:     329312:
1327:  2944317.. 2944340:     533888..    533911:     24:     534848:
1328:  2944341.. 2944358:     614348..    614365:     18:     533912:
1329:  2944359.. 2944376:     616448..    616465:     18:     614366:
1330:  2944377.. 2944394:     641163..    641180:     18:     616466:
1331:  2944395.. 2944411:     641476..    641492:     17:     641181:
1332:  2944412.. 2944428:     652216..    652232:     17:     641493:
1333:  2944429.. 2944444:     649808..    649823:     16:     652233:
1334:  2944445.. 2944459:     628208..    628222:     15:     649824:
1335:  2944460.. 2944474:     657248..    657262:     15:     628223:
1336:  2944475.. 2944488:     658098..    658111:     14:     657263:
1337:  2944489.. 2944502:     673292..    673305:     14:     658112:
1338:  2944503.. 2944516:     673308..    673321:     14:     673306:
1339:  2944517.. 2944530:     676366..    676379:     14:     673322:
1340:  2944531.. 2944544:     687139..    687152:     14:     676380:
1341:  2944545.. 2944557:     657648..    657660:     13:     687153:
1342:  2944558.. 2944570:     661457..    661469:     13:     657661:
1343:  2944571.. 2944583:     687197..    687209:     13:     661470:
1344:  2944584.. 2944596:     693329..    693341:     13:     687210:
1345:  2944597.. 2944606:     694492..    694501:     10:     693342:
1346:  2944607.. 2944608:    1618886..   1618887:      2:     694502:
1347:  2944609.. 2944620:    1672718..   1672729:     12:    1618888:
1348:  2944621.. 2944639:    2162208..   2162226:     19:    1672730:
1349:  2947200.. 2947231:    2163678..   2163709:     32:    2164787:
1350:  2947232.. 2947263:      99680..     99711:     32:    2163710:
1351:  2947264.. 2947292:     207011..    207039:     29:      99712:
1352:  2947293.. 2947321:     298979..    299007:     29:     207040:
1353:  2947322.. 2947346:     296376..    296400:     25:     299008:
1354:  2947347.. 2947370:     296322..    296345:     24:     296401:
1355:  2947371.. 2947394:     328648..    328671:     24:     296346:
1356:  2947395.. 2947418:     329128..    329151:     24:     328672:
1357:  2947419.. 2947440:     328554..    328575:     22:     329152:
1358:  2947441.. 2947462:     329194..    329215:     22:     328576:
1359:  2947463.. 2947478:     327984..    327999:     16:     329216:
1360:  2947479.. 2947494:     328496..    328511:     16:     328000:
1361:  2947495.. 2947510:     330032..    330047:     16:     328512:
1362:  2947511.. 2947526:     338928..    338943:     16:     330048:
1363:  2947527.. 2947541:     605167..    605181:     15:     338944:
1364:  2947542.. 2947556:     605253..    605267:     15:     605182:
1365:  2947557.. 2947571:     614628..    614642:     15:     605268:
1366:  2947572.. 2947585:     611520..    611533:     14:     614643:
1367:  2947586.. 2947599:     620736..    620749:     14:     611534:
1368:  2947600.. 2947612:     622773..    622785:     13:     620750:
1369:  2947613.. 2947624:     622748..    622759:     12:     622786:
1370:  2947625.. 2947636:     623105..    623116:     12:     622760:
1371:  2947637.. 2947648:     647156..    647167:     12:     623117:
1372:  2947649.. 2947660:     674120..    674131:     12:     647168:
1373:  2947661.. 2947672:     674312..    674323:     12:     674132:
1374:  2947673.. 2947684:     674498..    674509:     12:     674324:
1375:  2947685.. 2947694:     658063..    658072:     10:     674510:
1376:  2947695.. 2947704:     660469..    660478:     10:     658073:
1377:  2947705.. 2947714:     673280..    673289:     10:     660479:
1378:  2947715.. 2947722:     656789..    656796:      8:     673290:
1379:  2947723.. 2947730:     674616..    674623:      8:     656797:
1380:  2947731.. 2947738:     676382..    676389:      8:     674624:
1381:  2947739.. 2947746:     687188..    687195:      8:     676390:
1382:  2947747.. 2947754:     687228..    687235:      8:     687196:
1383:  2947755.. 2947760:     656634..    656639:      6:     687236:
1384:  2947761.. 2947766:     674608..    674613:      6:     656640:
1385:  2947767.. 2947772:     676882..    676887:      6:     674614:
1386:  2947773.. 2947778:     677360..    677365:      6:     676888:
1387:  2947779.. 2947783:     661704..    661708:      5:     677366:
1388:  2947784.. 2947788:     661718..    661722:      5:     661709:
1389:  2947789.. 2947793:     687182..    687186:      5:     661723:
1390:  2947794.. 2947797:     656887..    656890:      4:     687187:
1391:  2947798.. 2947801:     662048..    662051:      4:     656891:
1392:  2947802.. 2947805:     663812..    663815:      4:     662052:
1393:  2947806.. 2947809:     664708..    664711:      4:     663816:
1394:  2947810.. 2947813:     687222..    687225:      4:     664712:
1395:  2947814.. 2947816:     659965..    659967:      3:     687226:
1396:  2947817.. 2947819:     687211..    687213:      3:     659968:
1397:  2947820.. 2947821:     665087..    665088:      2:     687214:
1398:  2947822.. 2947823:     672154..    672155:      2:     665089:
1399:  2947824.. 2947825:     672170..    672171:      2:     672156:
1400:  2947826.. 2947827:     672228..    672229:      2:     672172:
1401:  2947828.. 2947829:     672252..    672253:      2:     672230:
1402:  2947830.. 2947831:     672260..    672261:      2:     672254:
1403:  2947832.. 2947833:     672788..    672789:      2:     672262:
1404:  2947834.. 2947835:     687215..    687216:      2:     672790:
1405:  2947836.. 2947837:     687219..    687220:      2:     687217:
1406:  2947838.. 2947839:    1638126..   1638127:      2:     687221:
1407:  2950400.. 2950411:    1676978..   1676989:     12:    1640688:
1408:  2950412.. 2950442:    2187872..   2187902:     31:    1676990:
1409:  2950443.. 2950470:      65568..     65595:     28:    2187903:
1410:  2950471.. 2950498:     139796..    139823:     28:      65596:
1411:  2950499.. 2950522:     209512..    209535:     24:     139824:
1412:  2950523.. 2950544:     207082..    207103:     22:     209536:
1413:  2950545.. 2950565:     208043..    208063:     21:     207104:
1414:  2950566.. 2950580:     208433..    208447:     15:     208064:
1415:  2950581.. 2950595:     208465..    208479:     15:     208448:
1416:  2950596.. 2950609:     208146..    208159:     14:     208480:
1417:  2950610.. 2950623:     209458..    209471:     14:     208160:
1418:  2950624.. 2950637:     328050..    328063:     14:     209472:
1419:  2950638.. 2950651:     353266..    353279:     14:     328064:
1420:  2950652.. 2950665:     566560..    566573:     14:     353280:
1421:  2950666.. 2950679:     575838..    575851:     14:     566574:
1422:  2950680.. 2950693:     581042..    581055:     14:     575852:
1423:  2950694.. 2950707:     581204..    581217:     14:     581056:
1424:  2950708.. 2950718:     623452..    623462:     11:     581218:
1425:  2950719.. 2950729:     623520..    623530:     11:     623463:
1426:  2950730.. 2950739:     624374..    624383:     10:     623531:
1427:  2950740.. 2950749:     636619..    636628:     10:     624384:
1428:  2950750.. 2950758:     625655..    625663:      9:     636629:
1429:  2950759.. 2950767:     650999..    651007:      9:     625664:
1430:  2950768.. 2950775:     622764..    622771:      8:     651008:
1431:  2950776.. 2950783:     632480..    632487:      8:     622772:
1432:  2950784.. 2950791:     641024..    641031:      8:     632488:
1433:  2950792.. 2950798:     628224..    628230:      7:     641032:
1434:  2950799.. 2950805:     629369..    629375:      7:     628231:
1435:  2950806.. 2950812:     632644..    632650:      7:     629376:
1436:  2950813.. 2950818:     623866..    623871:      6:     632651:
1437:  2950819.. 2950824:     636659..    636664:      6:     623872:
1438:  2950825.. 2950829:     637799..    637803:      5:     636665:
1439:  2950830.. 2950833:     630012..    630015:      4:     637804:
1440:  2950834.. 2950837:     634725..    634728:      4:     630016:
1441:  2950838.. 2950841:     634960..    634963:      4:     634729:
1442:  2950842.. 2950845:     651736..    651739:      4:     634964:
1443:  2950846.. 2950848:     632564..    632566:      3:     651740:
1444:  2950849.. 2950851:     633449..    633451:      3:     632567:
1445:  2950852.. 2950854:     637780..    637782:      3:     633452:
1446:  2950855.. 2950856:     624510..    624511:      2:     637783:
1447:  2950857.. 2950858:     634956..    634957:      2:     624512:
1448:  2950859.. 2950860:     640626..    640627:      2:     634958:
1449:  2950861.. 2950862:     640764..    640765:      2:     640628:
1450:  2950863.. 2950864:     641454..    641455:      2:     640766:
1451:  2950865.. 2950866:     641470..    641471:      2:     641456:
1452:  2950867.. 2950868:     641494..    641495:      2:     641472:
1453:  2950869.. 2950870:     641528..    641529:      2:     641496:
1454:  2950871.. 2950872:     644982..    644983:      2:     641530:
1455:  2950873.. 2950874:     645834..    645835:      2:     644984:
1456:  2950875.. 2950876:     654578..    654579:      2:     645836:
1457:  2950877.. 2950877:     628096..    628096:      1:     654580:
1458:  2950878.. 2950878:     630620..    630620:      1:     628097:
1459:  2950879.. 2950879:     630638..    630638:      1:     630621:
1460:  2950880.. 2950880:     630682..    630682:      1:     630639:
1461:  2950881.. 2950881:     644863..    644863:      1:     630683:
1462:  2950882.. 2950882:     644967..    644967:      1:     644864:
1463:  2950883.. 2950883:     645715..    645715:      1:     644968:
1464:  2950884.. 2950884:     645727..    645727:      1:     645716:
1465:  2950885.. 2950885:     648367..    648367:      1:     645728:
1466:  2950886.. 2950886:     651733..    651733:      1:     648368:
1467:  2950887.. 2950887:     654451..    654451:      1:     651734:
1468:  2950888.. 2950888:     654457..    654457:      1:     654452:
1469:  2950889.. 2950890:    1639934..   1639935:      2:     654458:
1470:  2950891.. 2950908:    2163659..   2163676:     18:    1639936:
1471:  2950909.. 2950933:      67047..     67071:     25:    2163677:
1472:  2950934.. 2950955:      99988..    100009:     22:      67072:
1473:  2950956.. 2950974:     136322..    136340:     19:     100010:
1474:  2950975.. 2950986:     335860..    335871:     12:     136341:
1475:  2950987.. 2950998:    2156676..   2156687:     12:     335872:
1476:  2950999.. 2951002:    2130320..   2130323:      4:    2156688:
1477:  2951003.. 2951005:    2137277..   2137279:      3:    2130324:
1478:  2951006.. 2951008:    2137288..   2137290:      3:    2137280:
1479:  2951009.. 2951011:    2137327..   2137329:      3:    2137291:
1480:  2951012.. 2951013:    2130364..   2130365:      2:    2137330:
1481:  2951014.. 2951015:    2130374..   2130375:      2:    2130366:
1482:  2951016.. 2951017:    2137256..   2137257:      2:    2130376:
1483:  2951018.. 2951019:    2156638..   2156639:      2:    2137258:
1484:  2951020.. 2951020:    2136575..   2136575:      1:    2156640:
1485:  2951021.. 2951021:    2137228..   2137228:      1:    2136576:
1486:  2951022.. 2951022:    2137267..   2137267:      1:    2137229:
1487:  2951023.. 2951023:    2137271..   2137271:      1:    2137268:
1488:  2951024.. 2951024:    2137286..   2137286:      1:    2137272:
1489:  2951025.. 2951025:    2143543..   2143543:      1:    2137287:
1490:  2951026.. 2951026:    2143671..   2143671:      1:    2143544:
1491:  2951027.. 2951027:    2143703..   2143703:      1:    2143672:
1492:  2951028.. 2951028:    2143753..   2143753:      1:    2143704:
1493:  2951029.. 2951029:    2143937..   2143937:      1:    2143754:
1494:  2951030.. 2951030:    2144769..   2144769:      1:    2143938:
1495:  2951031.. 2951031:    2145225..   2145225:      1:    2144770:
1496:  2951032.. 2951032:    2145851..   2145851:      1:    2145226:
1497:  2951033.. 2951033:    2145867..   2145867:      1:    2145852:
1498:  2951034.. 2951034:    2145892..   2145892:      1:    2145868:
1499:  2951035.. 2951035:    2145911..   2145911:      1:    2145893:
1500:  2951036.. 2951036:    2146062..   2146062:      1:    2145912:
1501:  2951037.. 2951037:    2146138..   2146138:      1:    2146063:
1502:  2951038.. 2951038:    2146186..   2146186:      1:    2146139:
1503:  2951039.. 2951039:    2146193..   2146193:      1:    2146187:
1504:  2953600.. 2953623:    2187913..   2187936:     24:    2148754:
1505:  2953624.. 2953643:      66986..     67005:     20:    2187937:
1506:  2953644.. 2953659:      66458..     66473:     16:      67006:
1507:  2953660.. 2953671:      99732..     99743:     12:      66474:
1508:  2953672.. 2953681:     208182..    208191:     10:      99744:
1509:  2953682.. 2953691:     208854..    208863:     10:     208192:
1510:  2953692.. 2953701:     570851..    570860:     10:     208864:
1511:  2953702.. 2953711:     581230..    581239:     10:     570861:
1512:  2953712.. 2953721:     617840..    617849:     10:     581240:
1513:  2953722.. 2953729:     611128..    611135:      8:     617850:
1514:  2953730.. 2953737:     612768..    612775:      8:     611136:
1515:  2953738.. 2953744:     590585..    590591:      7:     612776:
1516:  2953745.. 2953750:     608448..    608453:      6:     590592:
1517:  2953751.. 2953756:     608457..    608462:      6:     608454:
1518:  2953757.. 2953762:     608494..    608499:      6:     608463:
1519:  2953763.. 2953767:     604923..    604927:      5:     608500:
1520:  2953768.. 2953772:     612232..    612236:      5:     604928:
1521:  2953773.. 2953777:     615913..    615917:      5:     612237:
1522:  2953778.. 2953781:     605228..    605231:      4:     615918:
1523:  2953782.. 2953785:     605748..    605751:      4:     605232:
1524:  2953786.. 2953789:     607100..    607103:      4:     605752:
1525:  2953790.. 2953793:     608880..    608883:      4:     607104:
1526:  2953794.. 2953797:     609388..    609391:      4:     608884:
1527:  2953798.. 2953801:     616436..    616439:      4:     609392:
1528:  2953802.. 2953804:     608513..    608515:      3:     616440:
1529:  2953805.. 2953807:     609591..    609593:      3:     608516:
1530:  2953808.. 2953810:     621050..    621052:      3:     609594:
1531:  2953811.. 2953812:     607198..    607199:      2:     621053:
1532:  2953813.. 2953814:     608486..    608487:      2:     607200:
1533:  2953815.. 2953816:     608846..    608847:      2:     608488:
1534:  2953817.. 2953818:     612880..    612881:      2:     608848:
1535:  2953819.. 2953820:     615896..    615897:      2:     612882:
1536:  2953821.. 2953822:     618486..    618487:      2:     615898:
1537:  2953823.. 2953824:     621054..    621055:      2:     618488:
1538:  2953825.. 2953825:     612472..    612472:      1:     621056:
1539:  2953826.. 2953826:     614396..    614396:      1:     612473:
1540:  2953827.. 2953827:     614961..    614961:      1:     614397:
1541:  2953828.. 2953828:     615037..    615037:      1:     614962:
1542:  2953829.. 2953829:     615622..    615622:      1:     615038:
1543:  2953830.. 2953830:     615636..    615636:      1:     615623:
1544:  2953831.. 2953831:     616223..    616223:      1:     615637:
1545:  2953832.. 2953832:     616383..    616383:      1:     616224:
1546:  2953833.. 2953833:     616411..    616411:      1:     616384:
1547:  2953834.. 2953834:     620751..    620751:      1:     616412:
1548:  2953835.. 2953835:     620927..    620927:      1:     620752:
1549:  2953836.. 2953837:    1640348..   1640349:      2:     620928:
1550:  2953838.. 2953855:    2219469..   2219486:     18:    1640350:
1551:  2953856.. 2953872:      33824..     33840:     17:    2219487:
1552:  2953873.. 2953881:     567600..    567608:      9:      33841:
1553:  2953882.. 2953890:     575616..    575624:      9:     567609:
1554:  2953891.. 2953898:     557136..    557143:      8:     575625:
1555:  2953899.. 2953906:     559136..    559143:      8:     557144:
1556:  2953907.. 2953914:     580888..    580895:      8:     559144:
1557:  2953915.. 2953921:     581263..    581269:      7:     580896:
1558:  2953922.. 2953927:     570800..    570805:      6:     581270:
1559:  2953928.. 2953933:     581131..    581136:      6:     570806:
1560:  2953934.. 2953939:     581288..    581293:      6:     581137:
1561:  2953940.. 2953944:     575591..    575595:      5:     581294:
1562:  2953945.. 2953949:     580688..    580692:      5:     575596:
1563:  2953950.. 2953954:     581196..    581200:      5:     580693:
1564:  2953955.. 2953958:     564168..    564171:      4:     581201:
1565:  2953959.. 2953962:     575628..    575631:      4:     564172:
1566:  2953963.. 2953965:     566585..    566587:      3:     575632:
1567:  2953966.. 2953967:     578038..    578039:      2:     566588:
1568:  2953968.. 2953968:     587325..    587325:      1:     578040:
1569:  2953969.. 2953970:    1640950..   1640951:      2:     587326:
1570:  2953971.. 2953987:    2107503..   2107519:     17:    1640952:
1571:  2953988.. 2954003:    2163820..   2163835:     16:    2107520:
1572:  2954004.. 2954018:    2201021..   2201035:     15:    2163836:
1573:  2954019.. 2954032:    2220018..   2220031:     14:    2201036:
1574:  2954033.. 2954043:    2219509..   2219519:     11:    2220032:
1575:  2954044.. 2954051:      34296..     34303:      8:    2219520:
1576:  2954052.. 2954059:     533720..    533727:      8:      34304:
1577:  2954060.. 2954067:     534537..    534544:      8:     533728:
1578:  2954068.. 2954074:     534547..    534553:      7:     534545:
1579:  2954075.. 2954075:     533914..    533914:      1:     534554:
1580:  2954076.. 2954076:     534966..    534966:      1:     533915:
1581:  2954077.. 2954077:     654555..    654555:      1:     534967:
1582:  2954078.. 2954078:     657343..    657343:      1:     654556:
1583:  2954079.. 2954080:    1641360..   1641361:      2:     657344:
1584:  2954081.. 2954089:    2163809..   2163817:      9:    1641362:
1585:  2954090.. 2954097:    2163248..   2163255:      8:    2163818:
1586:  2954098.. 2954104:    2165743..   2165749:      7:    2163256:
1587:  2954105.. 2954111:    2165751..   2165757:      7:    2165750:
1588:  2954112.. 2954118:     206905..    206911:      7:    2165758:
1589:  2954119.. 2954124:     208218..    208223:      6:     206912:
1590:  2954125.. 2954130:     208506..    208511:      6:     208224:
1591:  2954131.. 2954136:     328698..    328703:      6:     208512:
1592:  2954137.. 2954140:     328188..    328191:      4:     328704:
1593:  2954141.. 2954144:     329340..    329343:      4:     328192:
1594:  2954145.. 2954145:     657408..    657408:      1:     329344:
1595:  2954146.. 2954146:     661700..    661700:      1:     657409:
1596:  2954147.. 2954147:     661715..    661715:      1:     661701:
1597:  2954148.. 2954149:    1641984..   1641985:      2:     661716:
1598:  2954150.. 2954155:    2232314..   2232319:      6:    1641986:
1599:  2954156.. 2954160:     207963..    207967:      5:    2232320:
1600:  2954161.. 2954164:     298930..    298933:      4:     207968:
1601:  2954165.. 2954165:     662669..    662669:      1:     298934:
1602:  2954166.. 2954167:    1643965..   1643966:      2:     662670:
1603:  2954168.. 2954171:    2106433..   2106436:      4:    1643967:
1604:  2954172.. 2954175:      32764..     32767:      4:    2106437:
1605:  2954176.. 2954179:      34140..     34143:      4:      32768:
1606:  2954180.. 2954183:      34268..     34271:      4:      34144:
1607:  2954184.. 2954186:      33853..     33855:      3:      34272:
1608:  2954187.. 2954189:     208413..    208415:      3:      33856:
1609:  2954190.. 2954191:     209854..    209855:      2:     208416:
1610:  2954192.. 2954192:     208351..    208351:      1:     209856:
1611:  2954193.. 2954193:     209727..    209727:      1:     208352:
1612:  2954194.. 2954194:     209823..    209823:      1:     209728:
1613:  2954195.. 2954195:     662681..    662681:      1:     209824:
1614:  2954196.. 2954197:    1644099..   1644100:      2:     662682:
1615:  2954198.. 2954199:    2105729..   2105730:      2:    1644101:
1616:  2954200.. 2954201:    2164305..   2164306:      2:    2105731:
1617:  2954202.. 2954203:    2621182..   2621183:      2:    2164307:
1618:  2954204.. 2954205:      13364..     13365:      2:    2621184:
1619:  2954206.. 2954207:     135192..    135193:      2:      13366:
1620:  2954208.. 2954208:     131944..    131944:      1:     135194:
1621:  2954209.. 2954209:     662700..    662700:      1:     131945:
1622:  2954210.. 2954210:     662963..    662963:      1:     662701:
1623:  2954211.. 2954211:     663033..    663033:      1:     662964:
1624:  2954212.. 2954212:     663457..    663457:      1:     663034:
1625:  2954213.. 2954213:     663537..    663537:      1:     663458:
1626:  2954214.. 2954214:     664273..    664273:      1:     663538:
1627:  2954215.. 2954215:     664363..    664363:      1:     664274:
1628:  2954216.. 2954216:     664395..    664395:      1:     664364:
1629:  2954217.. 2954217:     664705..    664705:      1:     664396:
1630:  2954218.. 2954218:     698025..    698025:      1:     664706:
1631:  2954219.. 2954219:     738165..    738165:      1:     698026:
1632:  2954220.. 2954220:    1101694..   1101694:      1:     738166:
1633:  2954221.. 2954221:    1101764..   1101764:      1:    1101695:
1634:  2954222.. 2954222:    1112315..   1112315:      1:    1101765:
1635:  2954223.. 2954223:    1134179..   1134179:      1:    1112316:
1636:  2954224.. 2954224:    1613533..   1613533:      1:    1134180:
1637:  2954225.. 2954225:    1613643..   1613643:      1:    1613534:
1638:  2954226.. 2954226:    1613651..   1613651:      1:    1613644:
1639:  2954227.. 2954227:    1613715..   1613715:      1:    1613652:
1640:  2954228.. 2954228:    1613790..   1613790:      1:    1613716:
1641:  2954229.. 2954229:    1613825..   1613825:      1:    1613791:
1642:  2954230.. 2954230:    1613828..   1613828:      1:    1613826:
1643:  2954231.. 2954231:    1614275..   1614275:      1:    1613829:
1644:  2954232.. 2954232:    1614319..   1614319:      1:    1614276:
1645:  2954233.. 2954233:    1614332..   1614332:      1:    1614320:
1646:  2954234.. 2954234:    1616593..   1616593:      1:    1614333:
1647:  2954235.. 2954235:    1616606..   1616606:      1:    1616594:
1648:  2954236.. 2954236:    1616608..   1616608:      1:    1616607:
1649:  2954237.. 2954237:    1616616..   1616616:      1:    1616609:
1650:  2954238.. 2954238:    1616628..   1616628:      1:    1616617:
1651:  2954239.. 2954239:    1617381..   1617381:      1:    1616629:
1652:  2956800.. 2956800:    1617389..   1617389:      1:    1619942:
1653:  2956801.. 2956801:    1617398..   1617398:      1:    1617390:
1654:  2956802.. 2956802:    1618729..   1618729:      1:    1617399:
1655:  2956803.. 2956803:    1618732..   1618732:      1:    1618730:
1656:  2956804.. 2956804:    1618899..   1618899:      1:    1618733:
1657:  2956805.. 2956805:    1618901..   1618901:      1:    1618900:
1658:  2956806.. 2956806:    1618922..   1618922:      1:    1618902:
1659:  2956807.. 2956807:    1619081..   1619081:      1:    1618923:
1660:  2956808.. 2956808:    1619091..   1619091:      1:    1619082:
1661:  2956809.. 2956809:    1619116..   1619116:      1:    1619092:
1662:  2956810.. 2956810:    1619975..   1619975:      1:    1619117:
1663:  2956811.. 2956811:    1622025..   1622025:      1:    1619976:
1664:  2956812.. 2956812:    1622051..   1622051:      1:    1622026:
1665:  2956813.. 2956813:    1622059..   1622059:      1:    1622052:
1666:  2956814.. 2956814:    1622067..   1622067:      1:    1622060:
1667:  2956815.. 2956815:    1622073..   1622073:      1:    1622068:
1668:  2956816.. 2956816:    1622103..   1622103:      1:    1622074:
1669:  2956817.. 2956817:    1622209..   1622209:      1:    1622104:
1670:  2956818.. 2956818:    1622257..   1622257:      1:    1622210:
1671:  2956819.. 2956819:    1622267..   1622267:      1:    1622258:
1672:  2956820.. 2956820:    1622275..   1622275:      1:    1622268:
1673:  2956821.. 2956821:    1622284..   1622284:      1:    1622276:
1674:  2956822.. 2956822:    1622299..   1622299:      1:    1622285:
1675:  2956823.. 2956823:    1622307..   1622307:      1:    1622300:
1676:  2956824.. 2956824:    1622337..   1622337:      1:    1622308:
1677:  2956825.. 2956825:    1622361..   1622361:      1:    1622338:
1678:  2956826.. 2956826:    1622389..   1622389:      1:    1622362:
1679:  2956827.. 2956827:    1622403..   1622403:      1:    1622390:
1680:  2956828.. 2956828:    1622427..   1622427:      1:    1622404:
1681:  2956829.. 2956829:    1622495..   1622495:      1:    1622428:
1682:  2956830.. 2956830:    1622611..   1622611:      1:    1622496:
1683:  2956831.. 2956831:    1622779..   1622779:      1:    1622612:
1684:  2956832.. 2956832:    1622795..   1622795:      1:    1622780:
1685:  2956833.. 2956833:    1622917..   1622917:      1:    1622796:
1686:  2956834.. 2956834:    1622939..   1622939:      1:    1622918:
1687:  2956835.. 2956835:    1623015..   1623015:      1:    1622940:
1688:  2956836.. 2956836:    1623043..   1623043:      1:    1623016:
1689:  2956837.. 2956837:    1623103..   1623103:      1:    1623044:
1690:  2956838.. 2956838:    1623188..   1623188:      1:    1623104:
1691:  2956839.. 2956839:    1623193..   1623193:      1:    1623189:
1692:  2956840.. 2956840:    1623229..   1623229:      1:    1623194:
1693:  2956841.. 2956841:    1623323..   1623323:      1:    1623230:
1694:  2956842.. 2956842:    1623371..   1623371:      1:    1623324:
1695:  2956843.. 2956843:    1623424..   1623424:      1:    1623372:
1696:  2956844.. 2956844:    1623435..   1623435:      1:    1623425:
1697:  2956845.. 2956845:    1623487..   1623487:      1:    1623436:
1698:  2956846.. 2956846:    1623563..   1623563:      1:    1623488:
1699:  2956847.. 2956847:    1623573..   1623573:      1:    1623564:
1700:  2956848.. 2956848:    1623659..   1623659:      1:    1623574:
1701:  2956849.. 2956849:    1625612..   1625612:      1:    1623660:
1702:  2956850.. 2956850:    1625620..   1625620:      1:    1625613:
1703:  2956851.. 2956851:    1625643..   1625643:      1:    1625621:
1704:  2956852.. 2956852:    1625712..   1625712:      1:    1625644:
1705:  2956853.. 2956853:    1625847..   1625847:      1:    1625713:
1706:  2956854.. 2956854:    1627726..   1627726:      1:    1625848:
1707:  2956855.. 2956855:    1627741..   1627741:      1:    1627727:
1708:  2956856.. 2956856:    1628026..   1628026:      1:    1627742:
1709:  2956857.. 2956857:    1628197..   1628197:      1:    1628027:
1710:  2956858.. 2956858:    1628212..   1628212:      1:    1628198:
1711:  2956859.. 2956859:    1628229..   1628229:      1:    1628213:
1712:  2956860.. 2956860:    1629383..   1629383:      1:    1628230:
1713:  2956861.. 2956861:    1629411..   1629411:      1:    1629384:
1714:  2956862.. 2956862:    1629515..   1629515:      1:    1629412:
1715:  2956863.. 2956863:    1629523..   1629523:      1:    1629516:
1716:  2956864.. 2956864:    1629531..   1629531:      1:    1629524:
1717:  2956865.. 2956865:    1629537..   1629537:      1:    1629532:
1718:  2956866.. 2956866:    1629547..   1629547:      1:    1629538:
1719:  2956867.. 2956867:    1629577..   1629577:      1:    1629548:
1720:  2956868.. 2956868:    1629587..   1629587:      1:    1629578:
1721:  2956869.. 2956869:    1629641..   1629641:      1:    1629588:
1722:  2956870.. 2956870:    1629719..   1629719:      1:    1629642:
1723:  2956871.. 2956871:    1630021..   1630021:      1:    1629720:
1724:  2956872.. 2956872:    1630081..   1630081:      1:    1630022:
1725:  2956873.. 2956873:    1630101..   1630101:      1:    1630082:
1726:  2956874.. 2956874:    1630107..   1630107:      1:    1630102:
1727:  2956875.. 2956875:    1630139..   1630139:      1:    1630108:
1728:  2956876.. 2956876:    1630169..   1630169:      1:    1630140:
1729:  2956877.. 2956877:    1630179..   1630179:      1:    1630170:
1730:  2956878.. 2956878:    1630679..   1630679:      1:    1630180:
1731:  2956879.. 2956879:    1630715..   1630715:      1:    1630680:
1732:  2956880.. 2956880:    1630723..   1630723:      1:    1630716:
1733:  2956881.. 2956881:    1630733..   1630733:      1:    1630724:
1734:  2956882.. 2956882:    1630778..   1630778:      1:    1630734:
1735:  2956883.. 2956883:    1631230..   1631230:      1:    1630779:
1736:  2956884.. 2956884:    1631276..   1631276:      1:    1631231:
1737:  2956885.. 2956885:    1632337..   1632337:      1:    1631277:
1738:  2956886.. 2956886:    1632347..   1632347:      1:    1632338:
1739:  2956887.. 2956887:    1632411..   1632411:      1:    1632348:
1740:  2956888.. 2956888:    1632430..   1632430:      1:    1632412:
1741:  2956889.. 2956889:    1634019..   1634019:      1:    1632431:
1742:  2956890.. 2956890:    1634041..   1634041:      1:    1634020:
1743:  2956891.. 2956891:    1634092..   1634092:      1:    1634042:
1744:  2956892.. 2956892:    1634122..   1634122:      1:    1634093:
1745:  2956893.. 2956893:    1634142..   1634142:      1:    1634123:
1746:  2956894.. 2956894:    1634161..   1634161:      1:    1634143:
1747:  2956895.. 2956895:    1634209..   1634209:      1:    1634162:
1748:  2956896.. 2956896:    1634235..   1634235:      1:    1634210:
1749:  2956897.. 2956897:    1634259..   1634259:      1:    1634236:
1750:  2956898.. 2956898:    1634291..   1634291:      1:    1634260:
1751:  2956899.. 2956899:    1634299..   1634299:      1:    1634292:
1752:  2956900.. 2956900:    1634331..   1634331:      1:    1634300:
1753:  2956901.. 2956901:    1634343..   1634343:      1:    1634332:
1754:  2956902.. 2956902:    1634379..   1634379:      1:    1634344:
1755:  2956903.. 2956903:    1634441..   1634441:      1:    1634380:
1756:  2956904.. 2956904:    1634474..   1634474:      1:    1634442:
1757:  2956905.. 2956905:    1634599..   1634599:      1:    1634475:
1758:  2956906.. 2956906:    1634639..   1634639:      1:    1634600:
1759:  2956907.. 2956907:    1634671..   1634671:      1:    1634640:
1760:  2956908.. 2956908:    1634709..   1634709:      1:    1634672:
1761:  2956909.. 2956909:    1634715..   1634715:      1:    1634710:
1762:  2956910.. 2956910:    1634734..   1634734:      1:    1634716:
1763:  2956911.. 2956911:    1634748..   1634748:      1:    1634735:
1764:  2956912.. 2956912:    1634817..   1634817:      1:    1634749:
1765:  2956913.. 2956913:    1634838..   1634838:      1:    1634818:
1766:  2956914.. 2956914:    1636355..   1636355:      1:    1634839:
1767:  2956915.. 2956915:    1636363..   1636363:      1:    1636356:
1768:  2956916.. 2956916:    1636381..   1636381:      1:    1636364:
1769:  2956917.. 2956917:    1636419..   1636419:      1:    1636382:
1770:  2956918.. 2956918:    1636593..   1636593:      1:    1636420:
1771:  2956919.. 2956919:    1636719..   1636719:      1:    1636594:
1772:  2956920.. 2956920:    1636799..   1636799:      1:    1636720:
1773:  2956921.. 2956921:    1636827..   1636827:      1:    1636800:
1774:  2956922.. 2956922:    1636835..   1636835:      1:    1636828:
1775:  2956923.. 2956923:    1636841..   1636841:      1:    1636836:
1776:  2956924.. 2956924:    1636873..   1636873:      1:    1636842:
1777:  2956925.. 2956925:    1636903..   1636903:      1:    1636874:
1778:  2956926.. 2956926:    1636983..   1636983:      1:    1636904:
1779:  2956927.. 2956927:    1636997..   1636997:      1:    1636984:
1780:  2956928.. 2956928:    1637055..   1637055:      1:    1636998:
1781:  2956929.. 2956929:    1637065..   1637065:      1:    1637056:
1782:  2956930.. 2956930:    1637071..   1637071:      1:    1637066:
1783:  2956931.. 2956931:    1637143..   1637143:      1:    1637072:
1784:  2956932.. 2956932:    1637155..   1637155:      1:    1637144:
1785:  2956933.. 2956933:    1637181..   1637181:      1:    1637156:
1786:  2956934.. 2956934:    1637233..   1637233:      1:    1637182:
1787:  2956935.. 2956935:    1637239..   1637239:      1:    1637234:
1788:  2956936.. 2956936:    1637255..   1637255:      1:    1637240:
1789:  2956937.. 2956937:    1637271..   1637271:      1:    1637256:
1790:  2956938.. 2956938:    1637313..   1637313:      1:    1637272:
1791:  2956939.. 2956939:    1637349..   1637349:      1:    1637314:
1792:  2956940.. 2956940:    1637357..   1637357:      1:    1637350:
1793:  2956941.. 2956941:    1637381..   1637381:      1:    1637358:
1794:  2956942.. 2956942:    1637423..   1637423:      1:    1637382:
1795:  2956943.. 2956943:    1637439..   1637439:      1:    1637424:
1796:  2956944.. 2956944:    1637453..   1637453:      1:    1637440:
1797:  2956945.. 2956945:    1637509..   1637509:      1:    1637454:
1798:  2956946.. 2956946:    1637517..   1637517:      1:    1637510:
1799:  2956947.. 2956947:    1637547..   1637547:      1:    1637518:
1800:  2956948.. 2956948:    1637659..   1637659:      1:    1637548:
1801:  2956949.. 2956949:    1637675..   1637675:      1:    1637660:
1802:  2956950.. 2956950:    1637719..   1637719:      1:    1637676:
1803:  2956951.. 2956951:    1637733..   1637733:      1:    1637720:
1804:  2956952.. 2956952:    1637743..   1637743:      1:    1637734:
1805:  2956953.. 2956953:    1637755..   1637755:      1:    1637744:
1806:  2956954.. 2956954:    1637859..   1637859:      1:    1637756:
1807:  2956955.. 2956955:    1637913..   1637913:      1:    1637860:
1808:  2956956.. 2956956:    1637929..   1637929:      1:    1637914:
1809:  2956957.. 2956957:    1637943..   1637943:      1:    1637930:
1810:  2956958.. 2956958:    1637963..   1637963:      1:    1637944:
1811:  2956959.. 2956959:    1638003..   1638003:      1:    1637964:
1812:  2956960.. 2956960:    1638047..   1638047:      1:    1638004:
1813:  2956961.. 2956961:    1641159..   1641159:      1:    1638048:
1814:  2956962.. 2956962:    1641223..   1641223:      1:    1641160:
1815:  2956963.. 2956963:    1641400..   1641400:      1:    1641224:
1816:  2956964.. 2956964:    1641578..   1641578:      1:    1641401:
1817:  2956965.. 2956965:    1641982..   1641982:      1:    1641579:
1818:  2956966.. 2956966:    1642495..   1642495:      1:    1641983:
1819:  2956967.. 2956967:    1644036..   1644036:      1:    1642496:
1820:  2956968.. 2956968:    1644996..   1644996:      1:    1644037:
1821:  2956969.. 2956969:    1646350..   1646350:      1:    1644997:
1822:  2956970.. 2956970:    1660419..   1660419:      1:    1646351:
1823:  2956971.. 2956971:    1670144..   1670144:      1:    1660420:
1824:  2956972.. 2956972:    1670146..   1670146:      1:    1670145:
1825:  2956973.. 2956973:    2105426..   2105426:      1:    1670147:
1826:  2956974.. 2956974:    2105432..   2105432:      1:    2105427:
1827:  2956975.. 2956975:    2105717..   2105717:      1:    2105433:
1828:  2956976.. 2956976:    2105732..   2105732:      1:    2105718:
1829:  2956977.. 2956977:    2105752..   2105752:      1:    2105733:
1830:  2956978.. 2956978:    2105754..   2105754:      1:    2105753:
1831:  2956979.. 2956979:    2105763..   2105763:      1:    2105755:
1832:  2956980.. 2956980:    2105784..   2105784:      1:    2105764:
1833:  2956981.. 2956981:    2105807..   2105807:      1:    2105785:
1834:  2956982.. 2956982:    2105826..   2105826:      1:    2105808:
1835:  2956983.. 2956983:    2105831..   2105831:      1:    2105827:
1836:  2956984.. 2956984:    2105850..   2105850:      1:    2105832:
1837:  2956985.. 2956985:    2105859..   2105859:      1:    2105851:
1838:  2956986.. 2956986:    2105861..   2105861:      1:    2105860:
1839:  2956987.. 2956987:    2106426..   2106426:      1:    2105862:
1840:  2956988.. 2956988:    2106440..   2106440:      1:    2106427:
1841:  2956989.. 2956989:    2146223..   2146223:      1:    2106441:
1842:  2956990.. 2956990:    2146991..   2146991:      1:    2146224:
1843:  2956991.. 2956991:    2146998..   2146998:      1:    2146992:
1844:  2956992.. 2956992:    2147045..   2147045:      1:    2146999:
1845:  2956993.. 2956993:    2147056..   2147056:      1:    2147046:
1846:  2956994.. 2956994:    2147159..   2147159:      1:    2147057:
1847:  2956995.. 2956995:    2147205..   2147205:      1:    2147160:
1848:  2956996.. 2956996:    2147365..   2147365:      1:    2147206:
1849:  2956997.. 2956997:    2147703..   2147703:      1:    2147366:
1850:  2956998.. 2956998:    2147751..   2147751:      1:    2147704:
1851:  2956999.. 2956999:    2147763..   2147763:      1:    2147752:
1852:  2957000.. 2957000:    2147845..   2147845:      1:    2147764:
1853:  2957001.. 2957001:    2147911..   2147911:      1:    2147846:
1854:  2957002.. 2957002:    2147995..   2147995:      1:    2147912:
1855:  2957003.. 2957003:    2148029..   2148029:      1:    2147996:
1856:  2957004.. 2957004:    2148163..   2148163:      1:    2148030:
1857:  2957005.. 2957005:    2148181..   2148181:      1:    2148164:
1858:  2957006.. 2957006:    2148187..   2148187:      1:    2148182:
1859:  2957007.. 2957007:    2148303..   2148303:      1:    2148188:
1860:  2957008.. 2957008:    2148795..   2148795:      1:    2148304:
1861:  2957009.. 2957009:    2148839..   2148839:      1:    2148796:
1862:  2957010.. 2957010:    2148843..   2148843:      1:    2148840:
1863:  2957011.. 2957011:    2148904..   2148904:      1:    2148844:
1864:  2957012.. 2957012:    2149275..   2149275:      1:    2148905:
1865:  2957013.. 2957013:    2149611..   2149611:      1:    2149276:
1866:  2957014.. 2957014:    2149859..   2149859:      1:    2149612:
1867:  2957015.. 2957015:    2150058..   2150058:      1:    2149860:
1868:  2957016.. 2957016:    2150401..   2150401:      1:    2150059:
1869:  2957017.. 2957017:    2150999..   2150999:      1:    2150402:
1870:  2957018.. 2957018:    2151307..   2151307:      1:    2151000:
1871:  2957019.. 2957019:    2151375..   2151375:      1:    2151308:
1872:  2957020.. 2957020:    2151451..   2151451:      1:    2151376:
1873:  2957021.. 2957021:    2151515..   2151515:      1:    2151452:
1874:  2957022.. 2957022:    2151527..   2151527:      1:    2151516:
1875:  2957023.. 2957023:    2151555..   2151555:      1:    2151528:
1876:  2957024.. 2957024:    2151655..   2151655:      1:    2151556:
1877:  2957025.. 2957025:    2151781..   2151781:      1:    2151656:
1878:  2957026.. 2957026:    2151975..   2151975:      1:    2151782:
1879:  2957027.. 2957027:    2152085..   2152085:      1:    2151976:
1880:  2957028.. 2957028:    2152101..   2152101:      1:    2152086:
1881:  2957029.. 2957029:    2152109..   2152109:      1:    2152102:
1882:  2957030.. 2957030:    2152365..   2152365:      1:    2152110:
1883:  2957031.. 2957031:    2152467..   2152467:      1:    2152366:
1884:  2957032.. 2957032:    2152491..   2152491:      1:    2152468:
1885:  2957033.. 2957033:    2152507..   2152507:      1:    2152492:
1886:  2957034.. 2957034:    2152541..   2152541:      1:    2152508:
1887:  2957035.. 2957035:    2152565..   2152565:      1:    2152542:
1888:  2957036.. 2957036:    2152751..   2152751:      1:    2152566:
1889:  2957037.. 2957037:    2152765..   2152765:      1:    2152752:
1890:  2957038.. 2957038:    2152875..   2152875:      1:    2152766:
1891:  2957039.. 2957039:    2152887..   2152887:      1:    2152876:
1892:  2957040.. 2957040:    2152903..   2152903:      1:    2152888:
1893:  2957041.. 2957041:    2152995..   2152995:      1:    2152904:
1894:  2957042.. 2957042:    2153059..   2153059:      1:    2152996:
1895:  2957043.. 2957043:    2153079..   2153079:      1:    2153060:
1896:  2957044.. 2957044:    2153091..   2153091:      1:    2153080:
1897:  2957045.. 2957045:    2153111..   2153111:      1:    2153092:
1898:  2957046.. 2957046:    2153125..   2153125:      1:    2153112:
1899:  2957047.. 2957047:    2153143..   2153143:      1:    2153126:
1900:  2957048.. 2957048:    2153179..   2153179:      1:    2153144:
1901:  2957049.. 2957049:    2153187..   2153187:      1:    2153180:
1902:  2957050.. 2957050:    2153285..   2153285:      1:    2153188:
1903:  2957051.. 2957051:    2153301..   2153301:      1:    2153286:
1904:  2957052.. 2957052:    2153323..   2153323:      1:    2153302:
1905:  2957053.. 2957053:    2153331..   2153331:      1:    2153324:
1906:  2957054.. 2957054:    2153337..   2153337:      1:    2153332:
1907:  2957055.. 2957055:    2153433..   2153433:      1:    2153338:
1908:  2957056.. 2957056:    2153441..   2153441:      1:    2153434:
1909:  2957057.. 2957057:    2153459..   2153459:      1:    2153442:
1910:  2957058.. 2957058:    2153471..   2153471:      1:    2153460:
1911:  2957059.. 2957059:    2153473..   2153473:      1:    2153472:
1912:  2957060.. 2957060:    2153509..   2153509:      1:    2153474:
1913:  2957061.. 2957061:    2153515..   2153515:      1:    2153510:
1914:  2957062.. 2957062:    2153525..   2153525:      1:    2153516:
1915:  2957063.. 2957063:    2153539..   2153539:      1:    2153526:
1916:  2957064.. 2957064:    2153861..   2153861:      1:    2153540:
1917:  2957065.. 2957065:    2153953..   2153953:      1:    2153862:
1918:  2957066.. 2957066:    2153971..   2153971:      1:    2153954:
1919:  2957067.. 2957067:    2153981..   2153981:      1:    2153972:
1920:  2957068.. 2957068:    2154049..   2154049:      1:    2153982:
1921:  2957069.. 2957069:    2154085..   2154085:      1:    2154050:
1922:  2957070.. 2957070:    2154099..   2154099:      1:    2154086:
1923:  2957071.. 2957071:    2154117..   2154117:      1:    2154100:
1924:  2957072.. 2957072:    2154127..   2154127:      1:    2154118:
1925:  2957073.. 2957073:    2154169..   2154169:      1:    2154128:
1926:  2957074.. 2957074:    2154181..   2154181:      1:    2154170:
1927:  2957075.. 2957075:    2154341..   2154341:      1:    2154182:
1928:  2957076.. 2957076:    2154417..   2154417:      1:    2154342:
1929:  2957077.. 2957077:    2154423..   2154423:      1:    2154418:
1930:  2957078.. 2957078:    2154461..   2154461:      1:    2154424:
1931:  2957079.. 2957079:    2154502..   2154502:      1:    2154462:
1932:  2957080.. 2957080:    2154524..   2154524:      1:    2154503:
1933:  2957081.. 2957081:    2154564..   2154564:      1:    2154525:
1934:  2957082.. 2957082:    2154568..   2154568:      1:    2154565:
1935:  2957083.. 2957083:    2154619..   2154619:      1:    2154569:
1936:  2957084.. 2957084:    2154627..   2154627:      1:    2154620:
1937:  2957085.. 2957085:    2154695..   2154695:      1:    2154628:
1938:  2957086.. 2957086:    2154759..   2154759:      1:    2154696:
1939:  2957087.. 2957087:    2154767..   2154767:      1:    2154760:
1940:  2957088.. 2957088:    2154803..   2154803:      1:    2154768:
1941:  2957089.. 2957089:    2154983..   2154983:      1:    2154804:
1942:  2957090.. 2957090:    2155031..   2155031:      1:    2154984:
1943:  2957091.. 2957091:    2155069..   2155069:      1:    2155032:
1944:  2957092.. 2957092:    2155389..   2155389:      1:    2155070:
1945:  2957093.. 2957093:    2155423..   2155423:      1:    2155390:
1946:  2957094.. 2957094:    2155565..   2155565:      1:    2155424:
1947:  2957095.. 2957095:    2155919..   2155919:      1:    2155566:
1948:  2957096.. 2957096:    2156082..   2156082:      1:    2155920:
1949:  2957097.. 2957097:    2156094..   2156094:      1:    2156083:
1950:  2957098.. 2957098:    2156107..   2156107:      1:    2156095:
1951:  2957099.. 2957099:    2156111..   2156111:      1:    2156108:
1952:  2957100.. 2957100:    2156114..   2156114:      1:    2156112:
1953:  2957101.. 2957101:    2156263..   2156263:      1:    2156115:
1954:  2957102.. 2957102:    2156293..   2156293:      1:    2156264:
1955:  2957103.. 2957103:    2156365..   2156365:      1:    2156294:
1956:  2957104.. 2957104:    2156613..   2156613:      1:    2156366:
1957:  2957105.. 2957105:    2156623..   2156623:      1:    2156614:
1958:  2957106.. 2957106:    2157569..   2157569:      1:    2156624:
1959:  2957107.. 2957107:    2158377..   2158377:      1:    2157570:
1960:  2957108.. 2957108:    2161196..   2161196:      1:    2158378:
1961:  2957109.. 2957109:    2161299..   2161299:      1:    2161197:
1962:  2957110.. 2957110:    2161562..   2161562:      1:    2161300:
1963:  2957111.. 2957111:    2161665..   2161665:      1:    2161563:
1964:  2957112.. 2957112:    2161790..   2161790:      1:    2161666:
1965:  2957113.. 2957113:    2161840..   2161840:      1:    2161791:
1966:  2957114.. 2957114:    2161843..   2161843:      1:    2161841:
1967:  2957115.. 2957115:    2161845..   2161845:      1:    2161844:
1968:  2957116.. 2957116:    2161988..   2161988:      1:    2161846:
1969:  2957117.. 2957117:    2162160..   2162160:      1:    2161989:
1970:  2957118.. 2957118:    2162202..   2162202:      1:    2162161:
1971:  2957119.. 2957119:    2162242..   2162242:      1:    2162203:
1972:  2957120.. 2957120:    2187904..   2187904:      1:    2162243:
1973:  2957121.. 2957121:    2191197..   2191197:      1:    2187905:
1974:  2957122.. 2957122:    2213968..   2213968:      1:    2191198:
1975:  2957123.. 2957123:      33909..     33909:      1:    2213969:
1976:  2957124.. 2957124:      34305..     34305:      1:      33910:
1977:  2957125.. 2957125:      43037..     43037:      1:      34306:
1978:  2957126.. 2957311:      15413..     15598:    186:      43038:
1979:  2957312.. 2957439:      19765..     19892:    128:      15599:
1980:  2960000.. 2960639:      17205..     17844:    640:      22453:
1981:  2963200.. 2963839:      22965..     23604:    640:      20405:
1982:  2966400.. 2966986:      23989..     24575:    587:      26165:
1983:  2966987.. 2967039:      18613..     18665:     53:      24576:
1984:  2969600.. 2969925:      15599..     15924:    326:      21226:
1985:  2969926.. 2970053:      21813..     21940:    128:      15925:
1986:  2970054.. 2970239:      19893..     20078:    186:      21941:
1987:  2972800.. 2973439:      17973..     18612:    640:      22639:
1988:  2976000.. 2976639:      16565..     17204:    640:      21173:
1989:  2979200.. 2979437:      18887..     19124:    238:      19765:
1990:  2979438.. 2979821:      22581..     22964:    384:      19125:
1991:  2979822.. 2979839:      21792..     21809:     18:      22965:
1992:  2982400.. 2982704:      21487..     21791:    305:      24370:
1993:  2982705.. 2982707:      21810..     21812:      3:      21792:
1994:  2982708.. 2983039:      20079..     20410:    332:      21813:
1995:  2985600.. 2985820:      18666..     18886:    221:      22971:
1996:  2985821.. 2985983:      21307..     21469:    163:      18887:
1997:  2985984.. 2986111:      17845..     17972:    128:      21470:
1998:  2986112.. 2986128:      21470..     21486:     17:      17973:
1999:  2986129.. 2986239:      20411..     20521:    111:      21487:
2000:  2988800.. 2989439:      20667..     21306:    640:      23082:
2001:  2992000.. 2992127:      84736..     84863:    128:      23867:
2002:  2992128.. 2992639:      91264..     91775:    512:      84864:
2003:  2995200.. 2995839:      95488..     96127:    640:      94336:
2004:  2998400.. 2999039:      80640..     81279:    640:      98688:
2005:  3001600.. 3002239:      88576..     89215:    640:      83840:
2006:  3004800.. 3005183:      90240..     90623:    384:      91776:
2007:  3005184.. 3005439:      71552..     71807:    256:      90624:
2008:  3008000.. 3008639:      97664..     98303:    640:      74368:
2009:  3011200.. 3011829:      74506..     75135:    630:     100864:
2010:  3011830.. 3011839:      84864..     84873:     10:      75136:
2011:  3014400.. 3014911:      93312..     93823:    512:      87434:
2012:  3014912.. 3015039:      96512..     96639:    128:      93824:
2013:  3017600.. 3017933:      67762..     68095:    334:      99200:
2014:  3017934.. 3018236:      48388..     48690:    303:      68096:
2015:  3018237.. 3018239:      70656..     70658:      3:      48691:
2016:  3020800.. 3021023:      68384..     68607:    224:      73219:
2017:  3021024.. 3021168:      20522..     20666:    145:      68608:
2018:  3021169.. 3021232:      66368..     66431:     64:      20667:
2019:  3021233.. 3021250:      65980..     65997:     18:      66432:
2020:  3021251.. 3021439:      82816..     83004:    189:      65998:
2021:  3024000.. 3024639:      92672..     93311:    640:      85565:
2022:  3027200.. 3027839:      94720..     95359:    640:      95872:
2023:  3030400.. 3031039:      81408..     82047:    640:      97920:
2024:  3033600.. 3034111:      88064..     88575:    512:      84608:
2025:  3034112.. 3034239:      84874..     85001:    128:      88576:
2026:  3036800.. 3037183:      71808..     72191:    384:      87562:
2027:  3037184.. 3037439:      89856..     90111:    256:      72192:
2028:  3040000.. 3040383:      96128..     96511:    384:      92672:
2029:  3040384.. 3040639:      96640..     96895:    256:      96512:
2030:  3043200.. 3043522:      84413..     84735:    323:      99456:
2031:  3043523.. 3043775:      70659..     70911:    253:      84736:
2032:  3043776.. 3043839:      80512..     80575:     64:      70912:
2033:  3046400.. 3047039:      83773..     84412:    640:      83136:
2034:  3049600.. 3050239:      91904..     92543:    640:      86973:
2035:  3052800.. 3053173:      85002..     85375:    374:      95104:
2036:  3053174.. 3053429:      94464..     94719:    256:      85376:
2037:  3053430.. 3053439:      81280..     81289:     10:      94720:
2038:  3056000.. 3056127:      82048..     82175:    128:      83850:
2039:  3056128.. 3056255:      90112..     90239:    128:      82176:
2040:  3056256.. 3056383:      95360..     95487:    128:      90240:
2041:  3056384.. 3056511:      96896..     97023:    128:      95488:
2042:  3056512.. 3056574:      80577..     80639:     63:      97024:
2043:  3056575.. 3056639:      83005..     83069:     65:      80640:
2044:  3059200.. 3059327:      91776..     91903:    128:      85630:
2045:  3059328.. 3059455:      92544..     92671:    128:      91904:
2046:  3059456.. 3059573:      81290..     81407:    118:      92672:
2047:  3059574.. 3059711:      83456..     83593:    138:      81408:
2048:  3059712.. 3059839:      83070..     83197:    128:      83594:
2049:  3062400.. 3062578:      83594..     83772:    179:      85758:
2050:  3062579.. 3063039:     111360..    111820:    461:      83773:
2051:  3065600.. 3065855:     121600..    121855:    256:     114381:
2052:  3065856.. 3066239:     123008..    123391:    384:     121856:
2053:  3068800.. 3069439:     127104..    127743:    640:     125952:
2054:  3072000.. 3072639:     104448..    105087:    640:     130304:
2055:  3075200.. 3075839:     129536..    130175:    640:     107648:
2056:  3078400.. 3079039:     107264..    107903:    640:     132736:
2057:  3081600.. 3082239:     112924..    113563:    640:     110464:
2058:  3084800.. 3085439:     115072..    115711:    640:     116124:
2059:  3088000.. 3088639:     116480..    117119:    640:     118272:
2060:  3091200.. 3091839:     100622..    101261:    640:     119680:
2061:  3094400.. 3095039:     102050..    102689:    640:     103822:
2062:  3097600.. 3098111:     121856..    122367:    512:     105250:
2063:  3098112.. 3098239:     125056..    125183:    128:     122368:
2064:  3100800.. 3101311:     128256..    128767:    512:     127744:
2065:  3101312.. 3101439:     109451..    109578:    128:     128768:
2066:  3104000.. 3104383:     118784..    119167:    384:     112139:
2067:  3104384.. 3104639:      83198..     83453:    256:     119168:
2068:  3107200.. 3107375:     103632..    103807:    176:      86014:
2069:  3107376.. 3107503:     110592..    110719:    128:     103808:
2070:  3107504.. 3107839:     119808..    120143:    336:     110720:
2071:  3110400.. 3111039:     123776..    124415:    640:     122704:
2072:  3113600.. 3114239:     105728..    106367:    640:     126976:
2073:  3116800.. 3117439:     112284..    112923:    640:     108928:
2074:  3120000.. 3120639:     126336..    126975:    640:     115484:
2075:  3123200.. 3123839:     130176..    130815:    640:     129536:
2076:  3126400.. 3127039:     107904..    108543:    640:     133376:
2077:  3129600.. 3130111:     114560..    115071:    512:     111104:
2078:  3130112.. 3130239:     127744..    127871:    128:     115072:
2079:  3132800.. 3133231:     121168..    121599:    432:     130432:
2080:  3133232.. 3133439:     109579..    109786:    208:     121600:
2081:  3136000.. 3136215:     125352..    125567:    216:     112347:
2082:  3136216.. 3136571:     113564..    113919:    356:     125568:
2083:  3136572.. 3136639:     107008..    107075:     68:     113920:
2084:  3139200.. 3139364:     109787..    109951:    165:     109636:
2085:  3139365.. 3139492:     116352..    116479:    128:     109952:
2086:  3139493.. 3139583:     100521..    100611:     91:     116480:
2087:  3139584.. 3139711:     129408..    129535:    128:     100612:
2088:  3139712.. 3139734:     102027..    102049:     23:     129536:
2089:  3139735.. 3139744:     100612..    100621:     10:     102050:
2090:  3139745.. 3139746:      83454..     83455:      2:     100622:
2091:  3139747.. 3139839:     120144..    120236:     93:      83456:
2092:  3142400.. 3143039:     105088..    105727:    640:     122797:
2093:  3145600.. 3146239:     124416..    125055:    640:     108288:
2094:  3148800.. 3149262:     111821..    112283:    463:     127616:
2095:  3149263.. 3149439:     123392..    123568:    177:     112284:
2096:  3152000.. 3152383:     127872..    128255:    384:     126129:
2097:  3152384.. 3152639:     130816..    131071:    256:     128256:
2098:  3155200.. 3155387:     107076..    107263:    188:     133632:
2099:  3155388.. 3155555:     125184..    125351:    168:     107264:
2100:  3155556.. 3155683:     126208..    126335:    128:     125352:
2101:  3155684.. 3155811:     126976..    127103:    128:     126336:
2102:  3155812.. 3155839:     123569..    123596:     28:     127104:
2103:  3158400.. 3159039:     120528..    121167:    640:     126157:
2104:  3161600.. 3161650:     123725..    123775:     51:     123728:
2105:  3161651.. 3162111:     134144..    134604:    461:     123776:
2106:  3162112.. 3162239:     148096..    148223:    128:     134605:
2107:  3164800.. 3165439:     153088..    153727:    640:     150784:
2108:  3168000.. 3168255:     158592..    158847:    256:     156288:
2109:  3168256.. 3168639:     160000..    160383:    384:     158848:
2110:  3171200.. 3171839:     137472..    138111:    640:     162944:
2111:  3174400.. 3175039:     163200..    163839:    640:     140672:
2112:  3177600.. 3178117:     133626..    134143:    518:     166400:
2113:  3178118.. 3178239:     143360..    143481:    122:     134144:
2114:  3180800.. 3181311:     138752..    139263:    512:     146042:
2115:  3181312.. 3181439:     150144..    150271:    128:     139264:
2116:  3184000.. 3184511:     151296..    151807:    512:     152832:
2117:  3184512.. 3184639:     136448..    136575:    128:     151808:
2118:  3187200.. 3187711:     154496..    155007:    512:     139136:
2119:  3187712.. 3187839:     155648..    155775:    128:     155008:
2120:  3190400.. 3190911:     158848..    159359:    512:     158336:
2121:  3190912.. 3191039:     162048..    162175:    128:     159360:
2122:  3193600.. 3193974:     144384..    144758:    375:     164736:
2123:  3193975.. 3194239:     120237..    120501:    265:     144759:
2124:  3196800.. 3196948:     135196..    135344:    149:     123062:
2125:  3196949.. 3197076:     132132..    132259:    128:     135345:
2126:  3197077.. 3197204:     123597..    123724:    128:     132260:
2127:  3197205.. 3197306:     134605..    134706:    102:     123725:
2128:  3197307.. 3197312:     143738..    143743:      6:     134707:
2129:  3197313.. 3197317:     133460..    133464:      5:     143744:
2130:  3197318.. 3197322:     136443..    136447:      5:     133465:
2131:  3197323.. 3197439:     143616..    143732:    117:     136448: last,eof
BIGFILE: 1655 extents found

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2018-02-12 20:23 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-13  3:15 [GIT PULL] ext4 updates for 4.15 Theodore Ts'o
2017-11-13 16:25 ` Theodore Ts'o
2017-11-14 20:59   ` Linus Torvalds
2017-11-15  0:56     ` Theodore Ts'o
2017-11-15  1:11       ` Linus Torvalds
2018-02-12 10:02 ` ext4 iomap SEEK broken [was: [GIT PULL] ext4 updates for 4.15] Jiri Slaby
2018-02-12 12:14   ` Jiri Slaby
2018-02-12 13:34     ` Jiri Slaby
2018-02-12 13:38       ` Jiri Slaby
2018-02-12 16:10     ` Theodore Ts'o
2018-02-12 20:23       ` Jiri Slaby

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).