polardbxengine/mysql-test/suite/ndb/r/ndb_restore_print.result

2466 lines
118 KiB
Plaintext

use test;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9,t10;
create table t1
(pk int key
,a1 BIT(1), a2 BIT(5), a3 BIT(33), a4 BIT(63), a5 BIT(64)
,b1 TINYINT, b2 TINYINT UNSIGNED
,c1 SMALLINT, c2 SMALLINT UNSIGNED
,d1 INT, d2 INT UNSIGNED
,e1 BIGINT, e2 BIGINT UNSIGNED
,f1 CHAR(1) BINARY, f2 CHAR(32) BINARY, f3 CHAR(255) BINARY
,g1 VARCHAR(32) BINARY, g2 VARCHAR(255) BINARY, g3 VARCHAR(1000) BINARY
,h1 BINARY(1), h2 BINARY(8), h3 BINARY(255)
,i1 VARBINARY(32), i2 VARBINARY(255), i3 VARBINARY(1000)
) engine myisam;
Warnings:
Warning 1287 'BINARY as attribute of a type' is deprecated and will be removed in a future release. Please use a CHARACTER SET clause with _bin collation instead
Warning 1287 'BINARY as attribute of a type' is deprecated and will be removed in a future release. Please use a CHARACTER SET clause with _bin collation instead
Warning 1287 'BINARY as attribute of a type' is deprecated and will be removed in a future release. Please use a CHARACTER SET clause with _bin collation instead
Warning 1287 'BINARY as attribute of a type' is deprecated and will be removed in a future release. Please use a CHARACTER SET clause with _bin collation instead
Warning 1287 'BINARY as attribute of a type' is deprecated and will be removed in a future release. Please use a CHARACTER SET clause with _bin collation instead
Warning 1287 'BINARY as attribute of a type' is deprecated and will be removed in a future release. Please use a CHARACTER SET clause with _bin collation instead
insert into t1 values
(1
,0x1, 0x17, 0x789a, 0x789abcde, 0xfedc0001
,127, 255
,32767, 65535
,2147483647, 4294967295
,9223372036854775807, 18446744073709551615
,'1','12345678901234567890123456789012','123456789'
,'1','12345678901234567890123456789012','123456789'
,0x12,0x123456789abcdef0, 0x012345
,0x12,0x123456789abcdef0, 0x00123450
);
insert into t1 values
(2
,0, 0, 0, 0, 0
,-128, 0
,-32768, 0
,-2147483648, 0
,-9223372036854775808, 0
,'','',''
,'','',''
,0x0,0x0,0x0
,0x0,0x0,0x0
);
insert into t1 values
(3
,NULL,NULL,NULL,NULL,NULL
,NULL,NULL
,NULL,NULL
,NULL,NULL
,NULL,NULL
,NULL,NULL,NULL
,NULL,NULL,NULL
,NULL,NULL,NULL
,NULL,NULL,NULL
);
select pk
,hex(a1), hex(a2), hex(a3), hex(a4), hex(a5)
,b1, b2
,c1 , c2
,d1 , d2
,e1 , e2
,f1 , f2, f3
,g1 , g2, g3
,hex(h1), hex(h2), hex(h3)
,hex(i1), hex(i2), hex(i3)
from t1 order by pk;
pk 1
hex(a1) 1
hex(a2) 17
hex(a3) 789A
hex(a4) 789ABCDE
hex(a5) FEDC0001
b1 127
b2 255
c1 32767
c2 65535
d1 2147483647
d2 4294967295
e1 9223372036854775807
e2 18446744073709551615
f1 1
f2 12345678901234567890123456789012
f3 123456789
g1 1
g2 12345678901234567890123456789012
g3 123456789
hex(h1) 12
hex(h2) 123456789ABCDEF0
hex(h3) 012345000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
hex(i1) 12
hex(i2) 123456789ABCDEF0
hex(i3) 00123450
pk 2
hex(a1) 0
hex(a2) 0
hex(a3) 0
hex(a4) 0
hex(a5) 0
b1 -128
b2 0
c1 -32768
c2 0
d1 -2147483648
d2 0
e1 -9223372036854775808
e2 0
f1
f2
f3
g1
g2
g3
hex(h1) 00
hex(h2) 0000000000000000
hex(h3) 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
hex(i1) 00
hex(i2) 00
hex(i3) 00
pk 3
hex(a1) NULL
hex(a2) NULL
hex(a3) NULL
hex(a4) NULL
hex(a5) NULL
b1 NULL
b2 NULL
c1 NULL
c2 NULL
d1 NULL
d2 NULL
e1 NULL
e2 NULL
f1 NULL
f2 NULL
f3 NULL
g1 NULL
g2 NULL
g3 NULL
hex(h1) NULL
hex(h2) NULL
hex(h3) NULL
hex(i1) NULL
hex(i2) NULL
hex(i3) NULL
alter table t1 engine ndb;
select pk
,hex(a1), hex(a2), hex(a3), hex(a4), hex(a5)
,b1, b2
,c1 , c2
,d1 , d2
,e1 , e2
,f1 , f2, f3
,g1 , g2, g3
,hex(h1), hex(h2), hex(h3)
,hex(i1), hex(i2), hex(i3)
from t1 order by pk;
pk 1
hex(a1) 1
hex(a2) 17
hex(a3) 789A
hex(a4) 789ABCDE
hex(a5) FEDC0001
b1 127
b2 255
c1 32767
c2 65535
d1 2147483647
d2 4294967295
e1 9223372036854775807
e2 18446744073709551615
f1 1
f2 12345678901234567890123456789012
f3 123456789
g1 1
g2 12345678901234567890123456789012
g3 123456789
hex(h1) 12
hex(h2) 123456789ABCDEF0
hex(h3) 012345000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
hex(i1) 12
hex(i2) 123456789ABCDEF0
hex(i3) 00123450
pk 2
hex(a1) 0
hex(a2) 0
hex(a3) 0
hex(a4) 0
hex(a5) 0
b1 -128
b2 0
c1 -32768
c2 0
d1 -2147483648
d2 0
e1 -9223372036854775808
e2 0
f1
f2
f3
g1
g2
g3
hex(h1) 00
hex(h2) 0000000000000000
hex(h3) 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
hex(i1) 00
hex(i2) 00
hex(i3) 00
pk 3
hex(a1) NULL
hex(a2) NULL
hex(a3) NULL
hex(a4) NULL
hex(a5) NULL
b1 NULL
b2 NULL
c1 NULL
c2 NULL
d1 NULL
d2 NULL
e1 NULL
e2 NULL
f1 NULL
f2 NULL
f3 NULL
g1 NULL
g2 NULL
g3 NULL
hex(h1) NULL
hex(h2) NULL
hex(h3) NULL
hex(i1) NULL
hex(i2) NULL
hex(i3) NULL
1;0x1;0x17;0x789A;0x789ABCDE;0xFEDC0001;127;255;32767;65535;2147483647;4294967295;9223372036854775807;18446744073709551615;1;12345678901234567890123456789012;123456789;1;12345678901234567890123456789012;123456789;0x12;0x123456789ABCDEF0;0x012345000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000;0x12;0x123456789ABCDEF0;0x00123450
2;0x0;0x0;0x0;0x0;0x0;-128;0;-32768;0;-2147483648;0;-9223372036854775808;0;;;;;;;0x00;0x0000000000000000;0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000;0x00;0x00;0x00
3;\N;\N;\N;\N;\N;\N;\N;\N;\N;\N;\N;\N;\N;\N;\N;\N;\N;\N;\N;\N;\N;\N;\N;\N;\N
1,0x1,0x17,0x789A,0x789ABCDE,0xFEDC0001,127,255,32767,65535,2147483647,4294967295,9223372036854775807,18446744073709551615,'1','12345678901234567890123456789012','123456789','1','12345678901234567890123456789012','123456789',0x12,0x123456789ABCDEF0,0x012345000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000,0x12,0x123456789ABCDEF0,0x00123450
2,0x0,0x0,0x0,0x0,0x0,-128,0,-32768,0,-2147483648,0,-9223372036854775808,0,'','','','','','',0x00,0x0000000000000000,0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000,0x00,0x00,0x00
3,,,,,,,,,,,,,,,,,,,,,,,,,
drop table t1;
create table t1
(pk int key
,f1 CHAR(1) BINARY, f2 CHAR(32) BINARY, f3 CHAR(255) BINARY
,g1 VARCHAR(32) BINARY, g2 VARCHAR(255) BINARY, g3 VARCHAR(1000) BINARY
,h1 BINARY(1), h2 BINARY(9), h3 BINARY(255)
,i1 VARBINARY(32), i2 VARBINARY(255), i3 VARBINARY(1000)
) engine ndb;
Warnings:
Warning 1287 'BINARY as attribute of a type' is deprecated and will be removed in a future release. Please use a CHARACTER SET clause with _bin collation instead
Warning 1287 'BINARY as attribute of a type' is deprecated and will be removed in a future release. Please use a CHARACTER SET clause with _bin collation instead
Warning 1287 'BINARY as attribute of a type' is deprecated and will be removed in a future release. Please use a CHARACTER SET clause with _bin collation instead
Warning 1287 'BINARY as attribute of a type' is deprecated and will be removed in a future release. Please use a CHARACTER SET clause with _bin collation instead
Warning 1287 'BINARY as attribute of a type' is deprecated and will be removed in a future release. Please use a CHARACTER SET clause with _bin collation instead
Warning 1287 'BINARY as attribute of a type' is deprecated and will be removed in a future release. Please use a CHARACTER SET clause with _bin collation instead
insert into t1 values
(1
,'1','12345678901234567890123456789012','123456789 '
,'1 ','12345678901234567890123456789012 ','123456789 '
,0x20,0x123456789abcdef020, 0x012345000020
,0x1200000020,0x123456789abcdef000000020, 0x00123450000020
);
create table t2 (pk int key, a int) engine ndb;
create table t3 (pk int key, a int) engine ndb;
create table t4 (pk int key, a int) engine ndb;
insert into t2 values (1,11),(2,12),(3,13),(4,14),(5,15);
insert into t3 values (1,21),(2,22),(3,23),(4,24),(5,25);
insert into t4 values (1,31),(2,32),(3,33),(4,34),(5,35);
'1' '1' '12345678901234567890123456789012' '123456789' '1' '12345678901234567890123456789012' '123456789' '0x20' '0x123456789ABCDEF020' '0x012345000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000' '0x1200000020' '0x123456789ABCDEF000000020' '0x00123450000020'
Warnings:
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
t1
--
Warnings:
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
1 1 12345678901234567890123456789012 123456789 1 12345678901234567890123456789012 123456789 0x20 0x123456789ABCDEF020 0x012345000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 0x1200000020 0x123456789ABCDEF000000020 0x00123450000020
Warnings:
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
t2
--
Warnings:
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
1 11
2 12
3 13
4 14
5 15
Warnings:
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
t3
--
Warnings:
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
1 21
2 22
3 23
4 24
5 25
Warnings:
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
t4
--
Warnings:
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
1 31
2 32
3 33
4 34
5 35
drop table t1;
create table t1
(pk int key
,a1 MEDIUMINT, a2 MEDIUMINT UNSIGNED
) engine ndb;
insert into t1 values(1, 8388607, 16777215);
insert into t1 values(2, -8388608, 0);
insert into t1 values(3, -1, 1);
1;8388607;16777215
2;-8388608;0
3;-1;1
drop table t1;
drop table t2;
drop table t3;
drop table t4;
create table t1 (a int primary key,
normal decimal (20,10),
unormal decimal (20, 10) unsigned,
biggest decimal (65,30),
ubiggest decimal (65,30) unsigned,
small1 decimal (1,0),
usmall1 decimal (1,0) unsigned,
small2 decimal (1,1),
usmall2 decimal (1,1) unsigned) engine=ndb;
Warnings:
Warning 1681 UNSIGNED for decimal and floating point data types is deprecated and support for it will be removed in a future release.
Warning 1681 UNSIGNED for decimal and floating point data types is deprecated and support for it will be removed in a future release.
Warning 1681 UNSIGNED for decimal and floating point data types is deprecated and support for it will be removed in a future release.
Warning 1681 UNSIGNED for decimal and floating point data types is deprecated and support for it will be removed in a future release.
insert into t1 values (1,
-9999999999.9999999999,
9999999999.9999999999,
-99999999999999999999999999999999999.999999999999999999999999999999,
99999999999999999999999999999999999.999999999999999999999999999999,
-9,
9,
-0.9,
0.9);
insert into t1 values (2,
-1000000000.0000000001,
1000000000.0000000001,
-10000000000000000000000000000000000.000000000000000000000000000001,
10000000000000000000000000000000000.000000000000000000000000000001,
-1,
1,
-0.1,
0.1);
insert into t1 values (3,
-0099.0099,
0099.0099,
-0.1,
0.1,
-5,
5,
-0.5,
0.5);
select * from t1 order by a;
a 1
normal -9999999999.9999999999
unormal 9999999999.9999999999
biggest -99999999999999999999999999999999999.999999999999999999999999999999
ubiggest 99999999999999999999999999999999999.999999999999999999999999999999
small1 -9
usmall1 9
small2 -0.9
usmall2 0.9
a 2
normal -1000000000.0000000001
unormal 1000000000.0000000001
biggest -10000000000000000000000000000000000.000000000000000000000000000001
ubiggest 10000000000000000000000000000000000.000000000000000000000000000001
small1 -1
usmall1 1
small2 -0.1
usmall2 0.1
a 3
normal -99.0099000000
unormal 99.0099000000
biggest -0.100000000000000000000000000000
ubiggest 0.100000000000000000000000000000
small1 -5
usmall1 5
small2 -0.5
usmall2 0.5
1;-9999999999.9999999999;9999999999.9999999999;-99999999999999999999999999999999999.999999999999999999999999999999;99999999999999999999999999999999999.999999999999999999999999999999;-9;9;-0.9;0.9
2;-1000000000.0000000001;1000000000.0000000001;-10000000000000000000000000000000000.000000000000000000000000000001;10000000000000000000000000000000000.000000000000000000000000000001;-1;1;-0.1;0.1
3;-99.0099000000;99.0099000000;-0.100000000000000000000000000000;0.100000000000000000000000000000;-5;5;-0.5;0.5
drop table t1;
create table t1(a int primary key AUTO_INCREMENT, b blob) engine=ndb;
insert into t1 values (NULL, "AAAAABBBBCCCCCDDDDD");
insert into t1 (a,b) select NULL, b from t1;
insert into t1 (a,b) select NULL, b from t1;
insert into t1 (a,b) select NULL, b from t1;
insert into t1 (a,b) select NULL, b from t1;
insert into t1 (a,b) select NULL, b from t1;
insert into t1 (a,b) select NULL, b from t1;
insert into t1 (a,b) select NULL, b from t1;
insert into t1 (a,b) select NULL, b from t1;
insert into t1 (a,b) select NULL, b from t1;
insert into t1 (a,b) select NULL, b from t1;
insert into t1 (a,b) select NULL, b from t1;
drop table t1;
'1' '19:41414141414242424243434343434444444444'
'10' '19:41414141414242424243434343434444444444'
'100' '19:41414141414242424243434343434444444444'
'1000' '19:41414141414242424243434343434444444444'
'1001' '19:41414141414242424243434343434444444444'
'1002' '19:41414141414242424243434343434444444444'
'1003' '19:41414141414242424243434343434444444444'
'1004' '19:41414141414242424243434343434444444444'
'1005' '19:41414141414242424243434343434444444444'
'1006' '19:41414141414242424243434343434444444444'
'1007' '19:41414141414242424243434343434444444444'
'1008' '19:41414141414242424243434343434444444444'
'1009' '19:41414141414242424243434343434444444444'
'101' '19:41414141414242424243434343434444444444'
'1010' '19:41414141414242424243434343434444444444'
'1011' '19:41414141414242424243434343434444444444'
'1012' '19:41414141414242424243434343434444444444'
'1013' '19:41414141414242424243434343434444444444'
'1014' '19:41414141414242424243434343434444444444'
'1015' '19:41414141414242424243434343434444444444'
'1016' '19:41414141414242424243434343434444444444'
'1017' '19:41414141414242424243434343434444444444'
'1018' '19:41414141414242424243434343434444444444'
'1019' '19:41414141414242424243434343434444444444'
'102' '19:41414141414242424243434343434444444444'
'1020' '19:41414141414242424243434343434444444444'
'1021' '19:41414141414242424243434343434444444444'
'1022' '19:41414141414242424243434343434444444444'
'1023' '19:41414141414242424243434343434444444444'
'1024' '19:41414141414242424243434343434444444444'
'1025' '19:41414141414242424243434343434444444444'
'1026' '19:41414141414242424243434343434444444444'
'1027' '19:41414141414242424243434343434444444444'
'1028' '19:41414141414242424243434343434444444444'
'1029' '19:41414141414242424243434343434444444444'
'103' '19:41414141414242424243434343434444444444'
'1030' '19:41414141414242424243434343434444444444'
'1031' '19:41414141414242424243434343434444444444'
'1032' '19:41414141414242424243434343434444444444'
'1033' '19:41414141414242424243434343434444444444'
'1034' '19:41414141414242424243434343434444444444'
'1035' '19:41414141414242424243434343434444444444'
'1036' '19:41414141414242424243434343434444444444'
'1037' '19:41414141414242424243434343434444444444'
'1038' '19:41414141414242424243434343434444444444'
'1039' '19:41414141414242424243434343434444444444'
'104' '19:41414141414242424243434343434444444444'
'1040' '19:41414141414242424243434343434444444444'
'1041' '19:41414141414242424243434343434444444444'
'1042' '19:41414141414242424243434343434444444444'
'1043' '19:41414141414242424243434343434444444444'
'1044' '19:41414141414242424243434343434444444444'
'1045' '19:41414141414242424243434343434444444444'
'1046' '19:41414141414242424243434343434444444444'
'1047' '19:41414141414242424243434343434444444444'
'1048' '19:41414141414242424243434343434444444444'
'1049' '19:41414141414242424243434343434444444444'
'105' '19:41414141414242424243434343434444444444'
'1050' '19:41414141414242424243434343434444444444'
'1051' '19:41414141414242424243434343434444444444'
'1052' '19:41414141414242424243434343434444444444'
'1053' '19:41414141414242424243434343434444444444'
'1054' '19:41414141414242424243434343434444444444'
'1055' '19:41414141414242424243434343434444444444'
'1056' '19:41414141414242424243434343434444444444'
'1057' '19:41414141414242424243434343434444444444'
'1058' '19:41414141414242424243434343434444444444'
'1059' '19:41414141414242424243434343434444444444'
'106' '19:41414141414242424243434343434444444444'
'1060' '19:41414141414242424243434343434444444444'
'1061' '19:41414141414242424243434343434444444444'
'1062' '19:41414141414242424243434343434444444444'
'1063' '19:41414141414242424243434343434444444444'
'1064' '19:41414141414242424243434343434444444444'
'1065' '19:41414141414242424243434343434444444444'
'1066' '19:41414141414242424243434343434444444444'
'1067' '19:41414141414242424243434343434444444444'
'1068' '19:41414141414242424243434343434444444444'
'1069' '19:41414141414242424243434343434444444444'
'107' '19:41414141414242424243434343434444444444'
'1070' '19:41414141414242424243434343434444444444'
'1071' '19:41414141414242424243434343434444444444'
'1072' '19:41414141414242424243434343434444444444'
'1073' '19:41414141414242424243434343434444444444'
'1074' '19:41414141414242424243434343434444444444'
'1075' '19:41414141414242424243434343434444444444'
'1076' '19:41414141414242424243434343434444444444'
'1077' '19:41414141414242424243434343434444444444'
'1078' '19:41414141414242424243434343434444444444'
'1079' '19:41414141414242424243434343434444444444'
'108' '19:41414141414242424243434343434444444444'
'1080' '19:41414141414242424243434343434444444444'
'1081' '19:41414141414242424243434343434444444444'
'1082' '19:41414141414242424243434343434444444444'
'1083' '19:41414141414242424243434343434444444444'
'1084' '19:41414141414242424243434343434444444444'
'1085' '19:41414141414242424243434343434444444444'
'1086' '19:41414141414242424243434343434444444444'
'1087' '19:41414141414242424243434343434444444444'
'1088' '19:41414141414242424243434343434444444444'
'1089' '19:41414141414242424243434343434444444444'
'109' '19:41414141414242424243434343434444444444'
'1090' '19:41414141414242424243434343434444444444'
'1091' '19:41414141414242424243434343434444444444'
'1092' '19:41414141414242424243434343434444444444'
'1093' '19:41414141414242424243434343434444444444'
'1094' '19:41414141414242424243434343434444444444'
'1095' '19:41414141414242424243434343434444444444'
'1096' '19:41414141414242424243434343434444444444'
'1097' '19:41414141414242424243434343434444444444'
'1098' '19:41414141414242424243434343434444444444'
'1099' '19:41414141414242424243434343434444444444'
'11' '19:41414141414242424243434343434444444444'
'110' '19:41414141414242424243434343434444444444'
'1100' '19:41414141414242424243434343434444444444'
'1101' '19:41414141414242424243434343434444444444'
'1102' '19:41414141414242424243434343434444444444'
'1103' '19:41414141414242424243434343434444444444'
'1104' '19:41414141414242424243434343434444444444'
'1105' '19:41414141414242424243434343434444444444'
'1106' '19:41414141414242424243434343434444444444'
'1107' '19:41414141414242424243434343434444444444'
'1108' '19:41414141414242424243434343434444444444'
'1109' '19:41414141414242424243434343434444444444'
'111' '19:41414141414242424243434343434444444444'
'1110' '19:41414141414242424243434343434444444444'
'1111' '19:41414141414242424243434343434444444444'
'1112' '19:41414141414242424243434343434444444444'
'1113' '19:41414141414242424243434343434444444444'
'1114' '19:41414141414242424243434343434444444444'
'1115' '19:41414141414242424243434343434444444444'
'1116' '19:41414141414242424243434343434444444444'
'1117' '19:41414141414242424243434343434444444444'
'1118' '19:41414141414242424243434343434444444444'
'1119' '19:41414141414242424243434343434444444444'
'112' '19:41414141414242424243434343434444444444'
'1120' '19:41414141414242424243434343434444444444'
'1121' '19:41414141414242424243434343434444444444'
'1122' '19:41414141414242424243434343434444444444'
'1123' '19:41414141414242424243434343434444444444'
'1124' '19:41414141414242424243434343434444444444'
'1125' '19:41414141414242424243434343434444444444'
'1126' '19:41414141414242424243434343434444444444'
'1127' '19:41414141414242424243434343434444444444'
'1128' '19:41414141414242424243434343434444444444'
'1129' '19:41414141414242424243434343434444444444'
'113' '19:41414141414242424243434343434444444444'
'1130' '19:41414141414242424243434343434444444444'
'1131' '19:41414141414242424243434343434444444444'
'1132' '19:41414141414242424243434343434444444444'
'1133' '19:41414141414242424243434343434444444444'
'1134' '19:41414141414242424243434343434444444444'
'1135' '19:41414141414242424243434343434444444444'
'1136' '19:41414141414242424243434343434444444444'
'1137' '19:41414141414242424243434343434444444444'
'1138' '19:41414141414242424243434343434444444444'
'1139' '19:41414141414242424243434343434444444444'
'114' '19:41414141414242424243434343434444444444'
'1140' '19:41414141414242424243434343434444444444'
'1141' '19:41414141414242424243434343434444444444'
'1142' '19:41414141414242424243434343434444444444'
'1143' '19:41414141414242424243434343434444444444'
'1144' '19:41414141414242424243434343434444444444'
'1145' '19:41414141414242424243434343434444444444'
'1146' '19:41414141414242424243434343434444444444'
'1147' '19:41414141414242424243434343434444444444'
'1148' '19:41414141414242424243434343434444444444'
'1149' '19:41414141414242424243434343434444444444'
'115' '19:41414141414242424243434343434444444444'
'1150' '19:41414141414242424243434343434444444444'
'1151' '19:41414141414242424243434343434444444444'
'1152' '19:41414141414242424243434343434444444444'
'1153' '19:41414141414242424243434343434444444444'
'1154' '19:41414141414242424243434343434444444444'
'1155' '19:41414141414242424243434343434444444444'
'1156' '19:41414141414242424243434343434444444444'
'1157' '19:41414141414242424243434343434444444444'
'1158' '19:41414141414242424243434343434444444444'
'1159' '19:41414141414242424243434343434444444444'
'116' '19:41414141414242424243434343434444444444'
'1160' '19:41414141414242424243434343434444444444'
'1161' '19:41414141414242424243434343434444444444'
'1162' '19:41414141414242424243434343434444444444'
'1163' '19:41414141414242424243434343434444444444'
'1164' '19:41414141414242424243434343434444444444'
'1165' '19:41414141414242424243434343434444444444'
'1166' '19:41414141414242424243434343434444444444'
'1167' '19:41414141414242424243434343434444444444'
'1168' '19:41414141414242424243434343434444444444'
'1169' '19:41414141414242424243434343434444444444'
'117' '19:41414141414242424243434343434444444444'
'1170' '19:41414141414242424243434343434444444444'
'1171' '19:41414141414242424243434343434444444444'
'1172' '19:41414141414242424243434343434444444444'
'1173' '19:41414141414242424243434343434444444444'
'1174' '19:41414141414242424243434343434444444444'
'1175' '19:41414141414242424243434343434444444444'
'1176' '19:41414141414242424243434343434444444444'
'1177' '19:41414141414242424243434343434444444444'
'1178' '19:41414141414242424243434343434444444444'
'1179' '19:41414141414242424243434343434444444444'
'118' '19:41414141414242424243434343434444444444'
'1180' '19:41414141414242424243434343434444444444'
'1181' '19:41414141414242424243434343434444444444'
'1182' '19:41414141414242424243434343434444444444'
'1183' '19:41414141414242424243434343434444444444'
'1184' '19:41414141414242424243434343434444444444'
'1185' '19:41414141414242424243434343434444444444'
'1186' '19:41414141414242424243434343434444444444'
'1187' '19:41414141414242424243434343434444444444'
'1188' '19:41414141414242424243434343434444444444'
'1189' '19:41414141414242424243434343434444444444'
'119' '19:41414141414242424243434343434444444444'
'1190' '19:41414141414242424243434343434444444444'
'1191' '19:41414141414242424243434343434444444444'
'1192' '19:41414141414242424243434343434444444444'
'1193' '19:41414141414242424243434343434444444444'
'1194' '19:41414141414242424243434343434444444444'
'1195' '19:41414141414242424243434343434444444444'
'1196' '19:41414141414242424243434343434444444444'
'1197' '19:41414141414242424243434343434444444444'
'1198' '19:41414141414242424243434343434444444444'
'1199' '19:41414141414242424243434343434444444444'
'12' '19:41414141414242424243434343434444444444'
'120' '19:41414141414242424243434343434444444444'
'1200' '19:41414141414242424243434343434444444444'
'1201' '19:41414141414242424243434343434444444444'
'1202' '19:41414141414242424243434343434444444444'
'1203' '19:41414141414242424243434343434444444444'
'1204' '19:41414141414242424243434343434444444444'
'1205' '19:41414141414242424243434343434444444444'
'1206' '19:41414141414242424243434343434444444444'
'1207' '19:41414141414242424243434343434444444444'
'1208' '19:41414141414242424243434343434444444444'
'1209' '19:41414141414242424243434343434444444444'
'121' '19:41414141414242424243434343434444444444'
'1210' '19:41414141414242424243434343434444444444'
'1211' '19:41414141414242424243434343434444444444'
'1212' '19:41414141414242424243434343434444444444'
'1213' '19:41414141414242424243434343434444444444'
'1214' '19:41414141414242424243434343434444444444'
'1215' '19:41414141414242424243434343434444444444'
'1216' '19:41414141414242424243434343434444444444'
'1217' '19:41414141414242424243434343434444444444'
'1218' '19:41414141414242424243434343434444444444'
'1219' '19:41414141414242424243434343434444444444'
'122' '19:41414141414242424243434343434444444444'
'1220' '19:41414141414242424243434343434444444444'
'1221' '19:41414141414242424243434343434444444444'
'1222' '19:41414141414242424243434343434444444444'
'1223' '19:41414141414242424243434343434444444444'
'1224' '19:41414141414242424243434343434444444444'
'1225' '19:41414141414242424243434343434444444444'
'1226' '19:41414141414242424243434343434444444444'
'1227' '19:41414141414242424243434343434444444444'
'1228' '19:41414141414242424243434343434444444444'
'1229' '19:41414141414242424243434343434444444444'
'123' '19:41414141414242424243434343434444444444'
'1230' '19:41414141414242424243434343434444444444'
'1231' '19:41414141414242424243434343434444444444'
'1232' '19:41414141414242424243434343434444444444'
'1233' '19:41414141414242424243434343434444444444'
'1234' '19:41414141414242424243434343434444444444'
'1235' '19:41414141414242424243434343434444444444'
'1236' '19:41414141414242424243434343434444444444'
'1237' '19:41414141414242424243434343434444444444'
'1238' '19:41414141414242424243434343434444444444'
'1239' '19:41414141414242424243434343434444444444'
'124' '19:41414141414242424243434343434444444444'
'1240' '19:41414141414242424243434343434444444444'
'1241' '19:41414141414242424243434343434444444444'
'1242' '19:41414141414242424243434343434444444444'
'1243' '19:41414141414242424243434343434444444444'
'1244' '19:41414141414242424243434343434444444444'
'1245' '19:41414141414242424243434343434444444444'
'1246' '19:41414141414242424243434343434444444444'
'1247' '19:41414141414242424243434343434444444444'
'1248' '19:41414141414242424243434343434444444444'
'1249' '19:41414141414242424243434343434444444444'
'125' '19:41414141414242424243434343434444444444'
'1250' '19:41414141414242424243434343434444444444'
'1251' '19:41414141414242424243434343434444444444'
'1252' '19:41414141414242424243434343434444444444'
'1253' '19:41414141414242424243434343434444444444'
'1254' '19:41414141414242424243434343434444444444'
'1255' '19:41414141414242424243434343434444444444'
'1256' '19:41414141414242424243434343434444444444'
'1257' '19:41414141414242424243434343434444444444'
'1258' '19:41414141414242424243434343434444444444'
'1259' '19:41414141414242424243434343434444444444'
'126' '19:41414141414242424243434343434444444444'
'1260' '19:41414141414242424243434343434444444444'
'1261' '19:41414141414242424243434343434444444444'
'1262' '19:41414141414242424243434343434444444444'
'1263' '19:41414141414242424243434343434444444444'
'1264' '19:41414141414242424243434343434444444444'
'1265' '19:41414141414242424243434343434444444444'
'1266' '19:41414141414242424243434343434444444444'
'1267' '19:41414141414242424243434343434444444444'
'1268' '19:41414141414242424243434343434444444444'
'1269' '19:41414141414242424243434343434444444444'
'127' '19:41414141414242424243434343434444444444'
'1270' '19:41414141414242424243434343434444444444'
'1271' '19:41414141414242424243434343434444444444'
'1272' '19:41414141414242424243434343434444444444'
'1273' '19:41414141414242424243434343434444444444'
'1274' '19:41414141414242424243434343434444444444'
'1275' '19:41414141414242424243434343434444444444'
'1276' '19:41414141414242424243434343434444444444'
'1277' '19:41414141414242424243434343434444444444'
'1278' '19:41414141414242424243434343434444444444'
'1279' '19:41414141414242424243434343434444444444'
'128' '19:41414141414242424243434343434444444444'
'1280' '19:41414141414242424243434343434444444444'
'1281' '19:41414141414242424243434343434444444444'
'1282' '19:41414141414242424243434343434444444444'
'1283' '19:41414141414242424243434343434444444444'
'1284' '19:41414141414242424243434343434444444444'
'1285' '19:41414141414242424243434343434444444444'
'1286' '19:41414141414242424243434343434444444444'
'1287' '19:41414141414242424243434343434444444444'
'1288' '19:41414141414242424243434343434444444444'
'1289' '19:41414141414242424243434343434444444444'
'129' '19:41414141414242424243434343434444444444'
'1290' '19:41414141414242424243434343434444444444'
'1291' '19:41414141414242424243434343434444444444'
'1292' '19:41414141414242424243434343434444444444'
'1293' '19:41414141414242424243434343434444444444'
'1294' '19:41414141414242424243434343434444444444'
'1295' '19:41414141414242424243434343434444444444'
'1296' '19:41414141414242424243434343434444444444'
'1297' '19:41414141414242424243434343434444444444'
'1298' '19:41414141414242424243434343434444444444'
'1299' '19:41414141414242424243434343434444444444'
'13' '19:41414141414242424243434343434444444444'
'130' '19:41414141414242424243434343434444444444'
'1300' '19:41414141414242424243434343434444444444'
'1301' '19:41414141414242424243434343434444444444'
'1302' '19:41414141414242424243434343434444444444'
'1303' '19:41414141414242424243434343434444444444'
'1304' '19:41414141414242424243434343434444444444'
'1305' '19:41414141414242424243434343434444444444'
'1306' '19:41414141414242424243434343434444444444'
'1307' '19:41414141414242424243434343434444444444'
'1308' '19:41414141414242424243434343434444444444'
'1309' '19:41414141414242424243434343434444444444'
'131' '19:41414141414242424243434343434444444444'
'1310' '19:41414141414242424243434343434444444444'
'1311' '19:41414141414242424243434343434444444444'
'1312' '19:41414141414242424243434343434444444444'
'1313' '19:41414141414242424243434343434444444444'
'1314' '19:41414141414242424243434343434444444444'
'1315' '19:41414141414242424243434343434444444444'
'1316' '19:41414141414242424243434343434444444444'
'1317' '19:41414141414242424243434343434444444444'
'1318' '19:41414141414242424243434343434444444444'
'1319' '19:41414141414242424243434343434444444444'
'132' '19:41414141414242424243434343434444444444'
'1320' '19:41414141414242424243434343434444444444'
'1321' '19:41414141414242424243434343434444444444'
'1322' '19:41414141414242424243434343434444444444'
'1323' '19:41414141414242424243434343434444444444'
'1324' '19:41414141414242424243434343434444444444'
'1325' '19:41414141414242424243434343434444444444'
'1326' '19:41414141414242424243434343434444444444'
'1327' '19:41414141414242424243434343434444444444'
'1328' '19:41414141414242424243434343434444444444'
'1329' '19:41414141414242424243434343434444444444'
'133' '19:41414141414242424243434343434444444444'
'1330' '19:41414141414242424243434343434444444444'
'1331' '19:41414141414242424243434343434444444444'
'1332' '19:41414141414242424243434343434444444444'
'1333' '19:41414141414242424243434343434444444444'
'1334' '19:41414141414242424243434343434444444444'
'1335' '19:41414141414242424243434343434444444444'
'1336' '19:41414141414242424243434343434444444444'
'1337' '19:41414141414242424243434343434444444444'
'1338' '19:41414141414242424243434343434444444444'
'1339' '19:41414141414242424243434343434444444444'
'134' '19:41414141414242424243434343434444444444'
'1340' '19:41414141414242424243434343434444444444'
'1341' '19:41414141414242424243434343434444444444'
'1342' '19:41414141414242424243434343434444444444'
'1343' '19:41414141414242424243434343434444444444'
'1344' '19:41414141414242424243434343434444444444'
'1345' '19:41414141414242424243434343434444444444'
'1346' '19:41414141414242424243434343434444444444'
'1347' '19:41414141414242424243434343434444444444'
'1348' '19:41414141414242424243434343434444444444'
'1349' '19:41414141414242424243434343434444444444'
'135' '19:41414141414242424243434343434444444444'
'1350' '19:41414141414242424243434343434444444444'
'1351' '19:41414141414242424243434343434444444444'
'1352' '19:41414141414242424243434343434444444444'
'1353' '19:41414141414242424243434343434444444444'
'1354' '19:41414141414242424243434343434444444444'
'1355' '19:41414141414242424243434343434444444444'
'1356' '19:41414141414242424243434343434444444444'
'1357' '19:41414141414242424243434343434444444444'
'1358' '19:41414141414242424243434343434444444444'
'1359' '19:41414141414242424243434343434444444444'
'136' '19:41414141414242424243434343434444444444'
'1360' '19:41414141414242424243434343434444444444'
'1361' '19:41414141414242424243434343434444444444'
'1362' '19:41414141414242424243434343434444444444'
'1363' '19:41414141414242424243434343434444444444'
'1364' '19:41414141414242424243434343434444444444'
'1365' '19:41414141414242424243434343434444444444'
'1366' '19:41414141414242424243434343434444444444'
'1367' '19:41414141414242424243434343434444444444'
'1368' '19:41414141414242424243434343434444444444'
'1369' '19:41414141414242424243434343434444444444'
'137' '19:41414141414242424243434343434444444444'
'1370' '19:41414141414242424243434343434444444444'
'1371' '19:41414141414242424243434343434444444444'
'1372' '19:41414141414242424243434343434444444444'
'1373' '19:41414141414242424243434343434444444444'
'1374' '19:41414141414242424243434343434444444444'
'1375' '19:41414141414242424243434343434444444444'
'1376' '19:41414141414242424243434343434444444444'
'1377' '19:41414141414242424243434343434444444444'
'1378' '19:41414141414242424243434343434444444444'
'1379' '19:41414141414242424243434343434444444444'
'138' '19:41414141414242424243434343434444444444'
'1380' '19:41414141414242424243434343434444444444'
'1381' '19:41414141414242424243434343434444444444'
'1382' '19:41414141414242424243434343434444444444'
'1383' '19:41414141414242424243434343434444444444'
'1384' '19:41414141414242424243434343434444444444'
'1385' '19:41414141414242424243434343434444444444'
'1386' '19:41414141414242424243434343434444444444'
'1387' '19:41414141414242424243434343434444444444'
'1388' '19:41414141414242424243434343434444444444'
'1389' '19:41414141414242424243434343434444444444'
'139' '19:41414141414242424243434343434444444444'
'1390' '19:41414141414242424243434343434444444444'
'1391' '19:41414141414242424243434343434444444444'
'1392' '19:41414141414242424243434343434444444444'
'1393' '19:41414141414242424243434343434444444444'
'1394' '19:41414141414242424243434343434444444444'
'1395' '19:41414141414242424243434343434444444444'
'1396' '19:41414141414242424243434343434444444444'
'1397' '19:41414141414242424243434343434444444444'
'1398' '19:41414141414242424243434343434444444444'
'1399' '19:41414141414242424243434343434444444444'
'14' '19:41414141414242424243434343434444444444'
'140' '19:41414141414242424243434343434444444444'
'1400' '19:41414141414242424243434343434444444444'
'1401' '19:41414141414242424243434343434444444444'
'1402' '19:41414141414242424243434343434444444444'
'1403' '19:41414141414242424243434343434444444444'
'1404' '19:41414141414242424243434343434444444444'
'1405' '19:41414141414242424243434343434444444444'
'1406' '19:41414141414242424243434343434444444444'
'1407' '19:41414141414242424243434343434444444444'
'1408' '19:41414141414242424243434343434444444444'
'1409' '19:41414141414242424243434343434444444444'
'141' '19:41414141414242424243434343434444444444'
'1410' '19:41414141414242424243434343434444444444'
'1411' '19:41414141414242424243434343434444444444'
'1412' '19:41414141414242424243434343434444444444'
'1413' '19:41414141414242424243434343434444444444'
'1414' '19:41414141414242424243434343434444444444'
'1415' '19:41414141414242424243434343434444444444'
'1416' '19:41414141414242424243434343434444444444'
'1417' '19:41414141414242424243434343434444444444'
'1418' '19:41414141414242424243434343434444444444'
'1419' '19:41414141414242424243434343434444444444'
'142' '19:41414141414242424243434343434444444444'
'1420' '19:41414141414242424243434343434444444444'
'1421' '19:41414141414242424243434343434444444444'
'1422' '19:41414141414242424243434343434444444444'
'1423' '19:41414141414242424243434343434444444444'
'1424' '19:41414141414242424243434343434444444444'
'1425' '19:41414141414242424243434343434444444444'
'1426' '19:41414141414242424243434343434444444444'
'1427' '19:41414141414242424243434343434444444444'
'1428' '19:41414141414242424243434343434444444444'
'1429' '19:41414141414242424243434343434444444444'
'143' '19:41414141414242424243434343434444444444'
'1430' '19:41414141414242424243434343434444444444'
'1431' '19:41414141414242424243434343434444444444'
'1432' '19:41414141414242424243434343434444444444'
'1433' '19:41414141414242424243434343434444444444'
'1434' '19:41414141414242424243434343434444444444'
'1435' '19:41414141414242424243434343434444444444'
'1436' '19:41414141414242424243434343434444444444'
'1437' '19:41414141414242424243434343434444444444'
'1438' '19:41414141414242424243434343434444444444'
'1439' '19:41414141414242424243434343434444444444'
'144' '19:41414141414242424243434343434444444444'
'1440' '19:41414141414242424243434343434444444444'
'1441' '19:41414141414242424243434343434444444444'
'1442' '19:41414141414242424243434343434444444444'
'1443' '19:41414141414242424243434343434444444444'
'1444' '19:41414141414242424243434343434444444444'
'1445' '19:41414141414242424243434343434444444444'
'1446' '19:41414141414242424243434343434444444444'
'1447' '19:41414141414242424243434343434444444444'
'1448' '19:41414141414242424243434343434444444444'
'1449' '19:41414141414242424243434343434444444444'
'145' '19:41414141414242424243434343434444444444'
'1450' '19:41414141414242424243434343434444444444'
'1451' '19:41414141414242424243434343434444444444'
'1452' '19:41414141414242424243434343434444444444'
'1453' '19:41414141414242424243434343434444444444'
'1454' '19:41414141414242424243434343434444444444'
'1455' '19:41414141414242424243434343434444444444'
'1456' '19:41414141414242424243434343434444444444'
'1457' '19:41414141414242424243434343434444444444'
'1458' '19:41414141414242424243434343434444444444'
'1459' '19:41414141414242424243434343434444444444'
'146' '19:41414141414242424243434343434444444444'
'1460' '19:41414141414242424243434343434444444444'
'1461' '19:41414141414242424243434343434444444444'
'1462' '19:41414141414242424243434343434444444444'
'1463' '19:41414141414242424243434343434444444444'
'1464' '19:41414141414242424243434343434444444444'
'1465' '19:41414141414242424243434343434444444444'
'1466' '19:41414141414242424243434343434444444444'
'1467' '19:41414141414242424243434343434444444444'
'1468' '19:41414141414242424243434343434444444444'
'1469' '19:41414141414242424243434343434444444444'
'147' '19:41414141414242424243434343434444444444'
'1470' '19:41414141414242424243434343434444444444'
'1471' '19:41414141414242424243434343434444444444'
'1472' '19:41414141414242424243434343434444444444'
'1473' '19:41414141414242424243434343434444444444'
'1474' '19:41414141414242424243434343434444444444'
'1475' '19:41414141414242424243434343434444444444'
'1476' '19:41414141414242424243434343434444444444'
'1477' '19:41414141414242424243434343434444444444'
'1478' '19:41414141414242424243434343434444444444'
'1479' '19:41414141414242424243434343434444444444'
'148' '19:41414141414242424243434343434444444444'
'1480' '19:41414141414242424243434343434444444444'
'1481' '19:41414141414242424243434343434444444444'
'1482' '19:41414141414242424243434343434444444444'
'1483' '19:41414141414242424243434343434444444444'
'1484' '19:41414141414242424243434343434444444444'
'1485' '19:41414141414242424243434343434444444444'
'1486' '19:41414141414242424243434343434444444444'
'1487' '19:41414141414242424243434343434444444444'
'1488' '19:41414141414242424243434343434444444444'
'1489' '19:41414141414242424243434343434444444444'
'149' '19:41414141414242424243434343434444444444'
'1490' '19:41414141414242424243434343434444444444'
'1491' '19:41414141414242424243434343434444444444'
'1492' '19:41414141414242424243434343434444444444'
'1493' '19:41414141414242424243434343434444444444'
'1494' '19:41414141414242424243434343434444444444'
'1495' '19:41414141414242424243434343434444444444'
'1496' '19:41414141414242424243434343434444444444'
'1497' '19:41414141414242424243434343434444444444'
'1498' '19:41414141414242424243434343434444444444'
'1499' '19:41414141414242424243434343434444444444'
'15' '19:41414141414242424243434343434444444444'
'150' '19:41414141414242424243434343434444444444'
'1500' '19:41414141414242424243434343434444444444'
'1501' '19:41414141414242424243434343434444444444'
'1502' '19:41414141414242424243434343434444444444'
'1503' '19:41414141414242424243434343434444444444'
'1504' '19:41414141414242424243434343434444444444'
'1505' '19:41414141414242424243434343434444444444'
'1506' '19:41414141414242424243434343434444444444'
'1507' '19:41414141414242424243434343434444444444'
'1508' '19:41414141414242424243434343434444444444'
'1509' '19:41414141414242424243434343434444444444'
'151' '19:41414141414242424243434343434444444444'
'1510' '19:41414141414242424243434343434444444444'
'1511' '19:41414141414242424243434343434444444444'
'1512' '19:41414141414242424243434343434444444444'
'1513' '19:41414141414242424243434343434444444444'
'1514' '19:41414141414242424243434343434444444444'
'1515' '19:41414141414242424243434343434444444444'
'1516' '19:41414141414242424243434343434444444444'
'1517' '19:41414141414242424243434343434444444444'
'1518' '19:41414141414242424243434343434444444444'
'1519' '19:41414141414242424243434343434444444444'
'152' '19:41414141414242424243434343434444444444'
'1520' '19:41414141414242424243434343434444444444'
'1521' '19:41414141414242424243434343434444444444'
'1522' '19:41414141414242424243434343434444444444'
'1523' '19:41414141414242424243434343434444444444'
'1524' '19:41414141414242424243434343434444444444'
'1525' '19:41414141414242424243434343434444444444'
'1526' '19:41414141414242424243434343434444444444'
'1527' '19:41414141414242424243434343434444444444'
'1528' '19:41414141414242424243434343434444444444'
'1529' '19:41414141414242424243434343434444444444'
'153' '19:41414141414242424243434343434444444444'
'1530' '19:41414141414242424243434343434444444444'
'1531' '19:41414141414242424243434343434444444444'
'1532' '19:41414141414242424243434343434444444444'
'1533' '19:41414141414242424243434343434444444444'
'1534' '19:41414141414242424243434343434444444444'
'1535' '19:41414141414242424243434343434444444444'
'1536' '19:41414141414242424243434343434444444444'
'1537' '19:41414141414242424243434343434444444444'
'1538' '19:41414141414242424243434343434444444444'
'1539' '19:41414141414242424243434343434444444444'
'154' '19:41414141414242424243434343434444444444'
'1540' '19:41414141414242424243434343434444444444'
'1541' '19:41414141414242424243434343434444444444'
'1542' '19:41414141414242424243434343434444444444'
'1543' '19:41414141414242424243434343434444444444'
'1544' '19:41414141414242424243434343434444444444'
'1545' '19:41414141414242424243434343434444444444'
'1546' '19:41414141414242424243434343434444444444'
'1547' '19:41414141414242424243434343434444444444'
'1548' '19:41414141414242424243434343434444444444'
'1549' '19:41414141414242424243434343434444444444'
'155' '19:41414141414242424243434343434444444444'
'1550' '19:41414141414242424243434343434444444444'
'1551' '19:41414141414242424243434343434444444444'
'1552' '19:41414141414242424243434343434444444444'
'1553' '19:41414141414242424243434343434444444444'
'1554' '19:41414141414242424243434343434444444444'
'1555' '19:41414141414242424243434343434444444444'
'1556' '19:41414141414242424243434343434444444444'
'1557' '19:41414141414242424243434343434444444444'
'1558' '19:41414141414242424243434343434444444444'
'1559' '19:41414141414242424243434343434444444444'
'156' '19:41414141414242424243434343434444444444'
'1560' '19:41414141414242424243434343434444444444'
'1561' '19:41414141414242424243434343434444444444'
'1562' '19:41414141414242424243434343434444444444'
'1563' '19:41414141414242424243434343434444444444'
'1564' '19:41414141414242424243434343434444444444'
'1565' '19:41414141414242424243434343434444444444'
'1566' '19:41414141414242424243434343434444444444'
'1567' '19:41414141414242424243434343434444444444'
'1568' '19:41414141414242424243434343434444444444'
'1569' '19:41414141414242424243434343434444444444'
'157' '19:41414141414242424243434343434444444444'
'1570' '19:41414141414242424243434343434444444444'
'1571' '19:41414141414242424243434343434444444444'
'1572' '19:41414141414242424243434343434444444444'
'1573' '19:41414141414242424243434343434444444444'
'1574' '19:41414141414242424243434343434444444444'
'1575' '19:41414141414242424243434343434444444444'
'1576' '19:41414141414242424243434343434444444444'
'1577' '19:41414141414242424243434343434444444444'
'1578' '19:41414141414242424243434343434444444444'
'1579' '19:41414141414242424243434343434444444444'
'158' '19:41414141414242424243434343434444444444'
'1580' '19:41414141414242424243434343434444444444'
'1581' '19:41414141414242424243434343434444444444'
'1582' '19:41414141414242424243434343434444444444'
'1583' '19:41414141414242424243434343434444444444'
'1584' '19:41414141414242424243434343434444444444'
'1585' '19:41414141414242424243434343434444444444'
'1586' '19:41414141414242424243434343434444444444'
'1587' '19:41414141414242424243434343434444444444'
'1588' '19:41414141414242424243434343434444444444'
'1589' '19:41414141414242424243434343434444444444'
'159' '19:41414141414242424243434343434444444444'
'1590' '19:41414141414242424243434343434444444444'
'1591' '19:41414141414242424243434343434444444444'
'1592' '19:41414141414242424243434343434444444444'
'1593' '19:41414141414242424243434343434444444444'
'1594' '19:41414141414242424243434343434444444444'
'1595' '19:41414141414242424243434343434444444444'
'1596' '19:41414141414242424243434343434444444444'
'1597' '19:41414141414242424243434343434444444444'
'1598' '19:41414141414242424243434343434444444444'
'1599' '19:41414141414242424243434343434444444444'
'16' '19:41414141414242424243434343434444444444'
'160' '19:41414141414242424243434343434444444444'
'1600' '19:41414141414242424243434343434444444444'
'1601' '19:41414141414242424243434343434444444444'
'1602' '19:41414141414242424243434343434444444444'
'1603' '19:41414141414242424243434343434444444444'
'1604' '19:41414141414242424243434343434444444444'
'1605' '19:41414141414242424243434343434444444444'
'1606' '19:41414141414242424243434343434444444444'
'1607' '19:41414141414242424243434343434444444444'
'1608' '19:41414141414242424243434343434444444444'
'1609' '19:41414141414242424243434343434444444444'
'161' '19:41414141414242424243434343434444444444'
'1610' '19:41414141414242424243434343434444444444'
'1611' '19:41414141414242424243434343434444444444'
'1612' '19:41414141414242424243434343434444444444'
'1613' '19:41414141414242424243434343434444444444'
'1614' '19:41414141414242424243434343434444444444'
'1615' '19:41414141414242424243434343434444444444'
'1616' '19:41414141414242424243434343434444444444'
'1617' '19:41414141414242424243434343434444444444'
'1618' '19:41414141414242424243434343434444444444'
'1619' '19:41414141414242424243434343434444444444'
'162' '19:41414141414242424243434343434444444444'
'1620' '19:41414141414242424243434343434444444444'
'1621' '19:41414141414242424243434343434444444444'
'1622' '19:41414141414242424243434343434444444444'
'1623' '19:41414141414242424243434343434444444444'
'1624' '19:41414141414242424243434343434444444444'
'1625' '19:41414141414242424243434343434444444444'
'1626' '19:41414141414242424243434343434444444444'
'1627' '19:41414141414242424243434343434444444444'
'1628' '19:41414141414242424243434343434444444444'
'1629' '19:41414141414242424243434343434444444444'
'163' '19:41414141414242424243434343434444444444'
'1630' '19:41414141414242424243434343434444444444'
'1631' '19:41414141414242424243434343434444444444'
'1632' '19:41414141414242424243434343434444444444'
'1633' '19:41414141414242424243434343434444444444'
'1634' '19:41414141414242424243434343434444444444'
'1635' '19:41414141414242424243434343434444444444'
'1636' '19:41414141414242424243434343434444444444'
'1637' '19:41414141414242424243434343434444444444'
'1638' '19:41414141414242424243434343434444444444'
'1639' '19:41414141414242424243434343434444444444'
'164' '19:41414141414242424243434343434444444444'
'1640' '19:41414141414242424243434343434444444444'
'1641' '19:41414141414242424243434343434444444444'
'1642' '19:41414141414242424243434343434444444444'
'1643' '19:41414141414242424243434343434444444444'
'1644' '19:41414141414242424243434343434444444444'
'1645' '19:41414141414242424243434343434444444444'
'1646' '19:41414141414242424243434343434444444444'
'1647' '19:41414141414242424243434343434444444444'
'1648' '19:41414141414242424243434343434444444444'
'1649' '19:41414141414242424243434343434444444444'
'165' '19:41414141414242424243434343434444444444'
'1650' '19:41414141414242424243434343434444444444'
'1651' '19:41414141414242424243434343434444444444'
'1652' '19:41414141414242424243434343434444444444'
'1653' '19:41414141414242424243434343434444444444'
'1654' '19:41414141414242424243434343434444444444'
'1655' '19:41414141414242424243434343434444444444'
'1656' '19:41414141414242424243434343434444444444'
'1657' '19:41414141414242424243434343434444444444'
'1658' '19:41414141414242424243434343434444444444'
'1659' '19:41414141414242424243434343434444444444'
'166' '19:41414141414242424243434343434444444444'
'1660' '19:41414141414242424243434343434444444444'
'1661' '19:41414141414242424243434343434444444444'
'1662' '19:41414141414242424243434343434444444444'
'1663' '19:41414141414242424243434343434444444444'
'1664' '19:41414141414242424243434343434444444444'
'1665' '19:41414141414242424243434343434444444444'
'1666' '19:41414141414242424243434343434444444444'
'1667' '19:41414141414242424243434343434444444444'
'1668' '19:41414141414242424243434343434444444444'
'1669' '19:41414141414242424243434343434444444444'
'167' '19:41414141414242424243434343434444444444'
'1670' '19:41414141414242424243434343434444444444'
'1671' '19:41414141414242424243434343434444444444'
'1672' '19:41414141414242424243434343434444444444'
'1673' '19:41414141414242424243434343434444444444'
'1674' '19:41414141414242424243434343434444444444'
'1675' '19:41414141414242424243434343434444444444'
'1676' '19:41414141414242424243434343434444444444'
'1677' '19:41414141414242424243434343434444444444'
'1678' '19:41414141414242424243434343434444444444'
'1679' '19:41414141414242424243434343434444444444'
'168' '19:41414141414242424243434343434444444444'
'1680' '19:41414141414242424243434343434444444444'
'1681' '19:41414141414242424243434343434444444444'
'1682' '19:41414141414242424243434343434444444444'
'1683' '19:41414141414242424243434343434444444444'
'1684' '19:41414141414242424243434343434444444444'
'1685' '19:41414141414242424243434343434444444444'
'1686' '19:41414141414242424243434343434444444444'
'1687' '19:41414141414242424243434343434444444444'
'1688' '19:41414141414242424243434343434444444444'
'1689' '19:41414141414242424243434343434444444444'
'169' '19:41414141414242424243434343434444444444'
'1690' '19:41414141414242424243434343434444444444'
'1691' '19:41414141414242424243434343434444444444'
'1692' '19:41414141414242424243434343434444444444'
'1693' '19:41414141414242424243434343434444444444'
'1694' '19:41414141414242424243434343434444444444'
'1695' '19:41414141414242424243434343434444444444'
'1696' '19:41414141414242424243434343434444444444'
'1697' '19:41414141414242424243434343434444444444'
'1698' '19:41414141414242424243434343434444444444'
'1699' '19:41414141414242424243434343434444444444'
'17' '19:41414141414242424243434343434444444444'
'170' '19:41414141414242424243434343434444444444'
'1700' '19:41414141414242424243434343434444444444'
'1701' '19:41414141414242424243434343434444444444'
'1702' '19:41414141414242424243434343434444444444'
'1703' '19:41414141414242424243434343434444444444'
'1704' '19:41414141414242424243434343434444444444'
'1705' '19:41414141414242424243434343434444444444'
'1706' '19:41414141414242424243434343434444444444'
'1707' '19:41414141414242424243434343434444444444'
'1708' '19:41414141414242424243434343434444444444'
'1709' '19:41414141414242424243434343434444444444'
'171' '19:41414141414242424243434343434444444444'
'1710' '19:41414141414242424243434343434444444444'
'1711' '19:41414141414242424243434343434444444444'
'1712' '19:41414141414242424243434343434444444444'
'1713' '19:41414141414242424243434343434444444444'
'1714' '19:41414141414242424243434343434444444444'
'1715' '19:41414141414242424243434343434444444444'
'1716' '19:41414141414242424243434343434444444444'
'1717' '19:41414141414242424243434343434444444444'
'1718' '19:41414141414242424243434343434444444444'
'1719' '19:41414141414242424243434343434444444444'
'172' '19:41414141414242424243434343434444444444'
'1720' '19:41414141414242424243434343434444444444'
'1721' '19:41414141414242424243434343434444444444'
'1722' '19:41414141414242424243434343434444444444'
'1723' '19:41414141414242424243434343434444444444'
'1724' '19:41414141414242424243434343434444444444'
'1725' '19:41414141414242424243434343434444444444'
'1726' '19:41414141414242424243434343434444444444'
'1727' '19:41414141414242424243434343434444444444'
'1728' '19:41414141414242424243434343434444444444'
'1729' '19:41414141414242424243434343434444444444'
'173' '19:41414141414242424243434343434444444444'
'1730' '19:41414141414242424243434343434444444444'
'1731' '19:41414141414242424243434343434444444444'
'1732' '19:41414141414242424243434343434444444444'
'1733' '19:41414141414242424243434343434444444444'
'1734' '19:41414141414242424243434343434444444444'
'1735' '19:41414141414242424243434343434444444444'
'1736' '19:41414141414242424243434343434444444444'
'1737' '19:41414141414242424243434343434444444444'
'1738' '19:41414141414242424243434343434444444444'
'1739' '19:41414141414242424243434343434444444444'
'174' '19:41414141414242424243434343434444444444'
'1740' '19:41414141414242424243434343434444444444'
'1741' '19:41414141414242424243434343434444444444'
'1742' '19:41414141414242424243434343434444444444'
'1743' '19:41414141414242424243434343434444444444'
'1744' '19:41414141414242424243434343434444444444'
'1745' '19:41414141414242424243434343434444444444'
'1746' '19:41414141414242424243434343434444444444'
'1747' '19:41414141414242424243434343434444444444'
'1748' '19:41414141414242424243434343434444444444'
'1749' '19:41414141414242424243434343434444444444'
'175' '19:41414141414242424243434343434444444444'
'1750' '19:41414141414242424243434343434444444444'
'1751' '19:41414141414242424243434343434444444444'
'1752' '19:41414141414242424243434343434444444444'
'1753' '19:41414141414242424243434343434444444444'
'1754' '19:41414141414242424243434343434444444444'
'1755' '19:41414141414242424243434343434444444444'
'1756' '19:41414141414242424243434343434444444444'
'1757' '19:41414141414242424243434343434444444444'
'1758' '19:41414141414242424243434343434444444444'
'1759' '19:41414141414242424243434343434444444444'
'176' '19:41414141414242424243434343434444444444'
'1760' '19:41414141414242424243434343434444444444'
'1761' '19:41414141414242424243434343434444444444'
'1762' '19:41414141414242424243434343434444444444'
'1763' '19:41414141414242424243434343434444444444'
'1764' '19:41414141414242424243434343434444444444'
'1765' '19:41414141414242424243434343434444444444'
'1766' '19:41414141414242424243434343434444444444'
'1767' '19:41414141414242424243434343434444444444'
'1768' '19:41414141414242424243434343434444444444'
'1769' '19:41414141414242424243434343434444444444'
'177' '19:41414141414242424243434343434444444444'
'1770' '19:41414141414242424243434343434444444444'
'1771' '19:41414141414242424243434343434444444444'
'1772' '19:41414141414242424243434343434444444444'
'1773' '19:41414141414242424243434343434444444444'
'1774' '19:41414141414242424243434343434444444444'
'1775' '19:41414141414242424243434343434444444444'
'1776' '19:41414141414242424243434343434444444444'
'1777' '19:41414141414242424243434343434444444444'
'1778' '19:41414141414242424243434343434444444444'
'1779' '19:41414141414242424243434343434444444444'
'178' '19:41414141414242424243434343434444444444'
'1780' '19:41414141414242424243434343434444444444'
'1781' '19:41414141414242424243434343434444444444'
'1782' '19:41414141414242424243434343434444444444'
'1783' '19:41414141414242424243434343434444444444'
'1784' '19:41414141414242424243434343434444444444'
'1785' '19:41414141414242424243434343434444444444'
'1786' '19:41414141414242424243434343434444444444'
'1787' '19:41414141414242424243434343434444444444'
'1788' '19:41414141414242424243434343434444444444'
'1789' '19:41414141414242424243434343434444444444'
'179' '19:41414141414242424243434343434444444444'
'1790' '19:41414141414242424243434343434444444444'
'1791' '19:41414141414242424243434343434444444444'
'1792' '19:41414141414242424243434343434444444444'
'1793' '19:41414141414242424243434343434444444444'
'1794' '19:41414141414242424243434343434444444444'
'1795' '19:41414141414242424243434343434444444444'
'1796' '19:41414141414242424243434343434444444444'
'1797' '19:41414141414242424243434343434444444444'
'1798' '19:41414141414242424243434343434444444444'
'1799' '19:41414141414242424243434343434444444444'
'18' '19:41414141414242424243434343434444444444'
'180' '19:41414141414242424243434343434444444444'
'1800' '19:41414141414242424243434343434444444444'
'1801' '19:41414141414242424243434343434444444444'
'1802' '19:41414141414242424243434343434444444444'
'1803' '19:41414141414242424243434343434444444444'
'1804' '19:41414141414242424243434343434444444444'
'1805' '19:41414141414242424243434343434444444444'
'1806' '19:41414141414242424243434343434444444444'
'1807' '19:41414141414242424243434343434444444444'
'1808' '19:41414141414242424243434343434444444444'
'1809' '19:41414141414242424243434343434444444444'
'181' '19:41414141414242424243434343434444444444'
'1810' '19:41414141414242424243434343434444444444'
'1811' '19:41414141414242424243434343434444444444'
'1812' '19:41414141414242424243434343434444444444'
'1813' '19:41414141414242424243434343434444444444'
'1814' '19:41414141414242424243434343434444444444'
'1815' '19:41414141414242424243434343434444444444'
'1816' '19:41414141414242424243434343434444444444'
'1817' '19:41414141414242424243434343434444444444'
'1818' '19:41414141414242424243434343434444444444'
'1819' '19:41414141414242424243434343434444444444'
'182' '19:41414141414242424243434343434444444444'
'1820' '19:41414141414242424243434343434444444444'
'1821' '19:41414141414242424243434343434444444444'
'1822' '19:41414141414242424243434343434444444444'
'1823' '19:41414141414242424243434343434444444444'
'1824' '19:41414141414242424243434343434444444444'
'1825' '19:41414141414242424243434343434444444444'
'1826' '19:41414141414242424243434343434444444444'
'1827' '19:41414141414242424243434343434444444444'
'1828' '19:41414141414242424243434343434444444444'
'1829' '19:41414141414242424243434343434444444444'
'183' '19:41414141414242424243434343434444444444'
'1830' '19:41414141414242424243434343434444444444'
'1831' '19:41414141414242424243434343434444444444'
'1832' '19:41414141414242424243434343434444444444'
'1833' '19:41414141414242424243434343434444444444'
'1834' '19:41414141414242424243434343434444444444'
'1835' '19:41414141414242424243434343434444444444'
'1836' '19:41414141414242424243434343434444444444'
'1837' '19:41414141414242424243434343434444444444'
'1838' '19:41414141414242424243434343434444444444'
'1839' '19:41414141414242424243434343434444444444'
'184' '19:41414141414242424243434343434444444444'
'1840' '19:41414141414242424243434343434444444444'
'1841' '19:41414141414242424243434343434444444444'
'1842' '19:41414141414242424243434343434444444444'
'1843' '19:41414141414242424243434343434444444444'
'1844' '19:41414141414242424243434343434444444444'
'1845' '19:41414141414242424243434343434444444444'
'1846' '19:41414141414242424243434343434444444444'
'1847' '19:41414141414242424243434343434444444444'
'1848' '19:41414141414242424243434343434444444444'
'1849' '19:41414141414242424243434343434444444444'
'185' '19:41414141414242424243434343434444444444'
'1850' '19:41414141414242424243434343434444444444'
'1851' '19:41414141414242424243434343434444444444'
'1852' '19:41414141414242424243434343434444444444'
'1853' '19:41414141414242424243434343434444444444'
'1854' '19:41414141414242424243434343434444444444'
'1855' '19:41414141414242424243434343434444444444'
'1856' '19:41414141414242424243434343434444444444'
'1857' '19:41414141414242424243434343434444444444'
'1858' '19:41414141414242424243434343434444444444'
'1859' '19:41414141414242424243434343434444444444'
'186' '19:41414141414242424243434343434444444444'
'1860' '19:41414141414242424243434343434444444444'
'1861' '19:41414141414242424243434343434444444444'
'1862' '19:41414141414242424243434343434444444444'
'1863' '19:41414141414242424243434343434444444444'
'1864' '19:41414141414242424243434343434444444444'
'1865' '19:41414141414242424243434343434444444444'
'1866' '19:41414141414242424243434343434444444444'
'1867' '19:41414141414242424243434343434444444444'
'1868' '19:41414141414242424243434343434444444444'
'1869' '19:41414141414242424243434343434444444444'
'187' '19:41414141414242424243434343434444444444'
'1870' '19:41414141414242424243434343434444444444'
'1871' '19:41414141414242424243434343434444444444'
'1872' '19:41414141414242424243434343434444444444'
'1873' '19:41414141414242424243434343434444444444'
'1874' '19:41414141414242424243434343434444444444'
'1875' '19:41414141414242424243434343434444444444'
'1876' '19:41414141414242424243434343434444444444'
'1877' '19:41414141414242424243434343434444444444'
'1878' '19:41414141414242424243434343434444444444'
'1879' '19:41414141414242424243434343434444444444'
'188' '19:41414141414242424243434343434444444444'
'1880' '19:41414141414242424243434343434444444444'
'1881' '19:41414141414242424243434343434444444444'
'1882' '19:41414141414242424243434343434444444444'
'1883' '19:41414141414242424243434343434444444444'
'1884' '19:41414141414242424243434343434444444444'
'1885' '19:41414141414242424243434343434444444444'
'1886' '19:41414141414242424243434343434444444444'
'1887' '19:41414141414242424243434343434444444444'
'1888' '19:41414141414242424243434343434444444444'
'1889' '19:41414141414242424243434343434444444444'
'189' '19:41414141414242424243434343434444444444'
'1890' '19:41414141414242424243434343434444444444'
'1891' '19:41414141414242424243434343434444444444'
'1892' '19:41414141414242424243434343434444444444'
'1893' '19:41414141414242424243434343434444444444'
'1894' '19:41414141414242424243434343434444444444'
'1895' '19:41414141414242424243434343434444444444'
'1896' '19:41414141414242424243434343434444444444'
'1897' '19:41414141414242424243434343434444444444'
'1898' '19:41414141414242424243434343434444444444'
'1899' '19:41414141414242424243434343434444444444'
'19' '19:41414141414242424243434343434444444444'
'190' '19:41414141414242424243434343434444444444'
'1900' '19:41414141414242424243434343434444444444'
'1901' '19:41414141414242424243434343434444444444'
'1902' '19:41414141414242424243434343434444444444'
'1903' '19:41414141414242424243434343434444444444'
'1904' '19:41414141414242424243434343434444444444'
'1905' '19:41414141414242424243434343434444444444'
'1906' '19:41414141414242424243434343434444444444'
'1907' '19:41414141414242424243434343434444444444'
'1908' '19:41414141414242424243434343434444444444'
'1909' '19:41414141414242424243434343434444444444'
'191' '19:41414141414242424243434343434444444444'
'1910' '19:41414141414242424243434343434444444444'
'1911' '19:41414141414242424243434343434444444444'
'1912' '19:41414141414242424243434343434444444444'
'1913' '19:41414141414242424243434343434444444444'
'1914' '19:41414141414242424243434343434444444444'
'1915' '19:41414141414242424243434343434444444444'
'1916' '19:41414141414242424243434343434444444444'
'1917' '19:41414141414242424243434343434444444444'
'1918' '19:41414141414242424243434343434444444444'
'1919' '19:41414141414242424243434343434444444444'
'192' '19:41414141414242424243434343434444444444'
'1920' '19:41414141414242424243434343434444444444'
'1921' '19:41414141414242424243434343434444444444'
'1922' '19:41414141414242424243434343434444444444'
'1923' '19:41414141414242424243434343434444444444'
'1924' '19:41414141414242424243434343434444444444'
'1925' '19:41414141414242424243434343434444444444'
'1926' '19:41414141414242424243434343434444444444'
'1927' '19:41414141414242424243434343434444444444'
'1928' '19:41414141414242424243434343434444444444'
'1929' '19:41414141414242424243434343434444444444'
'193' '19:41414141414242424243434343434444444444'
'1930' '19:41414141414242424243434343434444444444'
'1931' '19:41414141414242424243434343434444444444'
'1932' '19:41414141414242424243434343434444444444'
'1933' '19:41414141414242424243434343434444444444'
'1934' '19:41414141414242424243434343434444444444'
'1935' '19:41414141414242424243434343434444444444'
'1936' '19:41414141414242424243434343434444444444'
'1937' '19:41414141414242424243434343434444444444'
'1938' '19:41414141414242424243434343434444444444'
'1939' '19:41414141414242424243434343434444444444'
'194' '19:41414141414242424243434343434444444444'
'1940' '19:41414141414242424243434343434444444444'
'1941' '19:41414141414242424243434343434444444444'
'1942' '19:41414141414242424243434343434444444444'
'1943' '19:41414141414242424243434343434444444444'
'1944' '19:41414141414242424243434343434444444444'
'1945' '19:41414141414242424243434343434444444444'
'1946' '19:41414141414242424243434343434444444444'
'1947' '19:41414141414242424243434343434444444444'
'1948' '19:41414141414242424243434343434444444444'
'1949' '19:41414141414242424243434343434444444444'
'195' '19:41414141414242424243434343434444444444'
'1950' '19:41414141414242424243434343434444444444'
'1951' '19:41414141414242424243434343434444444444'
'1952' '19:41414141414242424243434343434444444444'
'1953' '19:41414141414242424243434343434444444444'
'1954' '19:41414141414242424243434343434444444444'
'1955' '19:41414141414242424243434343434444444444'
'1956' '19:41414141414242424243434343434444444444'
'1957' '19:41414141414242424243434343434444444444'
'1958' '19:41414141414242424243434343434444444444'
'1959' '19:41414141414242424243434343434444444444'
'196' '19:41414141414242424243434343434444444444'
'1960' '19:41414141414242424243434343434444444444'
'1961' '19:41414141414242424243434343434444444444'
'1962' '19:41414141414242424243434343434444444444'
'1963' '19:41414141414242424243434343434444444444'
'1964' '19:41414141414242424243434343434444444444'
'1965' '19:41414141414242424243434343434444444444'
'1966' '19:41414141414242424243434343434444444444'
'1967' '19:41414141414242424243434343434444444444'
'1968' '19:41414141414242424243434343434444444444'
'1969' '19:41414141414242424243434343434444444444'
'197' '19:41414141414242424243434343434444444444'
'1970' '19:41414141414242424243434343434444444444'
'1971' '19:41414141414242424243434343434444444444'
'1972' '19:41414141414242424243434343434444444444'
'1973' '19:41414141414242424243434343434444444444'
'1974' '19:41414141414242424243434343434444444444'
'1975' '19:41414141414242424243434343434444444444'
'1976' '19:41414141414242424243434343434444444444'
'1977' '19:41414141414242424243434343434444444444'
'1978' '19:41414141414242424243434343434444444444'
'1979' '19:41414141414242424243434343434444444444'
'198' '19:41414141414242424243434343434444444444'
'1980' '19:41414141414242424243434343434444444444'
'1981' '19:41414141414242424243434343434444444444'
'1982' '19:41414141414242424243434343434444444444'
'1983' '19:41414141414242424243434343434444444444'
'1984' '19:41414141414242424243434343434444444444'
'1985' '19:41414141414242424243434343434444444444'
'1986' '19:41414141414242424243434343434444444444'
'1987' '19:41414141414242424243434343434444444444'
'1988' '19:41414141414242424243434343434444444444'
'1989' '19:41414141414242424243434343434444444444'
'199' '19:41414141414242424243434343434444444444'
'1990' '19:41414141414242424243434343434444444444'
'1991' '19:41414141414242424243434343434444444444'
'1992' '19:41414141414242424243434343434444444444'
'1993' '19:41414141414242424243434343434444444444'
'1994' '19:41414141414242424243434343434444444444'
'1995' '19:41414141414242424243434343434444444444'
'1996' '19:41414141414242424243434343434444444444'
'1997' '19:41414141414242424243434343434444444444'
'1998' '19:41414141414242424243434343434444444444'
'1999' '19:41414141414242424243434343434444444444'
'2' '19:41414141414242424243434343434444444444'
'20' '19:41414141414242424243434343434444444444'
'200' '19:41414141414242424243434343434444444444'
'2000' '19:41414141414242424243434343434444444444'
'2001' '19:41414141414242424243434343434444444444'
'2002' '19:41414141414242424243434343434444444444'
'2003' '19:41414141414242424243434343434444444444'
'2004' '19:41414141414242424243434343434444444444'
'2005' '19:41414141414242424243434343434444444444'
'2006' '19:41414141414242424243434343434444444444'
'2007' '19:41414141414242424243434343434444444444'
'2008' '19:41414141414242424243434343434444444444'
'2009' '19:41414141414242424243434343434444444444'
'201' '19:41414141414242424243434343434444444444'
'2010' '19:41414141414242424243434343434444444444'
'2011' '19:41414141414242424243434343434444444444'
'2012' '19:41414141414242424243434343434444444444'
'2013' '19:41414141414242424243434343434444444444'
'2014' '19:41414141414242424243434343434444444444'
'2015' '19:41414141414242424243434343434444444444'
'2016' '19:41414141414242424243434343434444444444'
'2017' '19:41414141414242424243434343434444444444'
'2018' '19:41414141414242424243434343434444444444'
'2019' '19:41414141414242424243434343434444444444'
'202' '19:41414141414242424243434343434444444444'
'2020' '19:41414141414242424243434343434444444444'
'2021' '19:41414141414242424243434343434444444444'
'2022' '19:41414141414242424243434343434444444444'
'2023' '19:41414141414242424243434343434444444444'
'2024' '19:41414141414242424243434343434444444444'
'2025' '19:41414141414242424243434343434444444444'
'2026' '19:41414141414242424243434343434444444444'
'2027' '19:41414141414242424243434343434444444444'
'2028' '19:41414141414242424243434343434444444444'
'2029' '19:41414141414242424243434343434444444444'
'203' '19:41414141414242424243434343434444444444'
'2030' '19:41414141414242424243434343434444444444'
'2031' '19:41414141414242424243434343434444444444'
'2032' '19:41414141414242424243434343434444444444'
'2033' '19:41414141414242424243434343434444444444'
'2034' '19:41414141414242424243434343434444444444'
'2035' '19:41414141414242424243434343434444444444'
'2036' '19:41414141414242424243434343434444444444'
'2037' '19:41414141414242424243434343434444444444'
'2038' '19:41414141414242424243434343434444444444'
'2039' '19:41414141414242424243434343434444444444'
'204' '19:41414141414242424243434343434444444444'
'2040' '19:41414141414242424243434343434444444444'
'2041' '19:41414141414242424243434343434444444444'
'2042' '19:41414141414242424243434343434444444444'
'2043' '19:41414141414242424243434343434444444444'
'2044' '19:41414141414242424243434343434444444444'
'2045' '19:41414141414242424243434343434444444444'
'2046' '19:41414141414242424243434343434444444444'
'2047' '19:41414141414242424243434343434444444444'
'2048' '19:41414141414242424243434343434444444444'
'205' '19:41414141414242424243434343434444444444'
'206' '19:41414141414242424243434343434444444444'
'207' '19:41414141414242424243434343434444444444'
'208' '19:41414141414242424243434343434444444444'
'209' '19:41414141414242424243434343434444444444'
'21' '19:41414141414242424243434343434444444444'
'210' '19:41414141414242424243434343434444444444'
'211' '19:41414141414242424243434343434444444444'
'212' '19:41414141414242424243434343434444444444'
'213' '19:41414141414242424243434343434444444444'
'214' '19:41414141414242424243434343434444444444'
'215' '19:41414141414242424243434343434444444444'
'216' '19:41414141414242424243434343434444444444'
'217' '19:41414141414242424243434343434444444444'
'218' '19:41414141414242424243434343434444444444'
'219' '19:41414141414242424243434343434444444444'
'22' '19:41414141414242424243434343434444444444'
'220' '19:41414141414242424243434343434444444444'
'221' '19:41414141414242424243434343434444444444'
'222' '19:41414141414242424243434343434444444444'
'223' '19:41414141414242424243434343434444444444'
'224' '19:41414141414242424243434343434444444444'
'225' '19:41414141414242424243434343434444444444'
'226' '19:41414141414242424243434343434444444444'
'227' '19:41414141414242424243434343434444444444'
'228' '19:41414141414242424243434343434444444444'
'229' '19:41414141414242424243434343434444444444'
'23' '19:41414141414242424243434343434444444444'
'230' '19:41414141414242424243434343434444444444'
'231' '19:41414141414242424243434343434444444444'
'232' '19:41414141414242424243434343434444444444'
'233' '19:41414141414242424243434343434444444444'
'234' '19:41414141414242424243434343434444444444'
'235' '19:41414141414242424243434343434444444444'
'236' '19:41414141414242424243434343434444444444'
'237' '19:41414141414242424243434343434444444444'
'238' '19:41414141414242424243434343434444444444'
'239' '19:41414141414242424243434343434444444444'
'24' '19:41414141414242424243434343434444444444'
'240' '19:41414141414242424243434343434444444444'
'241' '19:41414141414242424243434343434444444444'
'242' '19:41414141414242424243434343434444444444'
'243' '19:41414141414242424243434343434444444444'
'244' '19:41414141414242424243434343434444444444'
'245' '19:41414141414242424243434343434444444444'
'246' '19:41414141414242424243434343434444444444'
'247' '19:41414141414242424243434343434444444444'
'248' '19:41414141414242424243434343434444444444'
'249' '19:41414141414242424243434343434444444444'
'25' '19:41414141414242424243434343434444444444'
'250' '19:41414141414242424243434343434444444444'
'251' '19:41414141414242424243434343434444444444'
'252' '19:41414141414242424243434343434444444444'
'253' '19:41414141414242424243434343434444444444'
'254' '19:41414141414242424243434343434444444444'
'255' '19:41414141414242424243434343434444444444'
'256' '19:41414141414242424243434343434444444444'
'257' '19:41414141414242424243434343434444444444'
'258' '19:41414141414242424243434343434444444444'
'259' '19:41414141414242424243434343434444444444'
'26' '19:41414141414242424243434343434444444444'
'260' '19:41414141414242424243434343434444444444'
'261' '19:41414141414242424243434343434444444444'
'262' '19:41414141414242424243434343434444444444'
'263' '19:41414141414242424243434343434444444444'
'264' '19:41414141414242424243434343434444444444'
'265' '19:41414141414242424243434343434444444444'
'266' '19:41414141414242424243434343434444444444'
'267' '19:41414141414242424243434343434444444444'
'268' '19:41414141414242424243434343434444444444'
'269' '19:41414141414242424243434343434444444444'
'27' '19:41414141414242424243434343434444444444'
'270' '19:41414141414242424243434343434444444444'
'271' '19:41414141414242424243434343434444444444'
'272' '19:41414141414242424243434343434444444444'
'273' '19:41414141414242424243434343434444444444'
'274' '19:41414141414242424243434343434444444444'
'275' '19:41414141414242424243434343434444444444'
'276' '19:41414141414242424243434343434444444444'
'277' '19:41414141414242424243434343434444444444'
'278' '19:41414141414242424243434343434444444444'
'279' '19:41414141414242424243434343434444444444'
'28' '19:41414141414242424243434343434444444444'
'280' '19:41414141414242424243434343434444444444'
'281' '19:41414141414242424243434343434444444444'
'282' '19:41414141414242424243434343434444444444'
'283' '19:41414141414242424243434343434444444444'
'284' '19:41414141414242424243434343434444444444'
'285' '19:41414141414242424243434343434444444444'
'286' '19:41414141414242424243434343434444444444'
'287' '19:41414141414242424243434343434444444444'
'288' '19:41414141414242424243434343434444444444'
'289' '19:41414141414242424243434343434444444444'
'29' '19:41414141414242424243434343434444444444'
'290' '19:41414141414242424243434343434444444444'
'291' '19:41414141414242424243434343434444444444'
'292' '19:41414141414242424243434343434444444444'
'293' '19:41414141414242424243434343434444444444'
'294' '19:41414141414242424243434343434444444444'
'295' '19:41414141414242424243434343434444444444'
'296' '19:41414141414242424243434343434444444444'
'297' '19:41414141414242424243434343434444444444'
'298' '19:41414141414242424243434343434444444444'
'299' '19:41414141414242424243434343434444444444'
'3' '19:41414141414242424243434343434444444444'
'30' '19:41414141414242424243434343434444444444'
'300' '19:41414141414242424243434343434444444444'
'301' '19:41414141414242424243434343434444444444'
'302' '19:41414141414242424243434343434444444444'
'303' '19:41414141414242424243434343434444444444'
'304' '19:41414141414242424243434343434444444444'
'305' '19:41414141414242424243434343434444444444'
'306' '19:41414141414242424243434343434444444444'
'307' '19:41414141414242424243434343434444444444'
'308' '19:41414141414242424243434343434444444444'
'309' '19:41414141414242424243434343434444444444'
'31' '19:41414141414242424243434343434444444444'
'310' '19:41414141414242424243434343434444444444'
'311' '19:41414141414242424243434343434444444444'
'312' '19:41414141414242424243434343434444444444'
'313' '19:41414141414242424243434343434444444444'
'314' '19:41414141414242424243434343434444444444'
'315' '19:41414141414242424243434343434444444444'
'316' '19:41414141414242424243434343434444444444'
'317' '19:41414141414242424243434343434444444444'
'318' '19:41414141414242424243434343434444444444'
'319' '19:41414141414242424243434343434444444444'
'32' '19:41414141414242424243434343434444444444'
'320' '19:41414141414242424243434343434444444444'
'321' '19:41414141414242424243434343434444444444'
'322' '19:41414141414242424243434343434444444444'
'323' '19:41414141414242424243434343434444444444'
'324' '19:41414141414242424243434343434444444444'
'325' '19:41414141414242424243434343434444444444'
'326' '19:41414141414242424243434343434444444444'
'327' '19:41414141414242424243434343434444444444'
'328' '19:41414141414242424243434343434444444444'
'329' '19:41414141414242424243434343434444444444'
'33' '19:41414141414242424243434343434444444444'
'330' '19:41414141414242424243434343434444444444'
'331' '19:41414141414242424243434343434444444444'
'332' '19:41414141414242424243434343434444444444'
'333' '19:41414141414242424243434343434444444444'
'334' '19:41414141414242424243434343434444444444'
'335' '19:41414141414242424243434343434444444444'
'336' '19:41414141414242424243434343434444444444'
'337' '19:41414141414242424243434343434444444444'
'338' '19:41414141414242424243434343434444444444'
'339' '19:41414141414242424243434343434444444444'
'34' '19:41414141414242424243434343434444444444'
'340' '19:41414141414242424243434343434444444444'
'341' '19:41414141414242424243434343434444444444'
'342' '19:41414141414242424243434343434444444444'
'343' '19:41414141414242424243434343434444444444'
'344' '19:41414141414242424243434343434444444444'
'345' '19:41414141414242424243434343434444444444'
'346' '19:41414141414242424243434343434444444444'
'347' '19:41414141414242424243434343434444444444'
'348' '19:41414141414242424243434343434444444444'
'349' '19:41414141414242424243434343434444444444'
'35' '19:41414141414242424243434343434444444444'
'350' '19:41414141414242424243434343434444444444'
'351' '19:41414141414242424243434343434444444444'
'352' '19:41414141414242424243434343434444444444'
'353' '19:41414141414242424243434343434444444444'
'354' '19:41414141414242424243434343434444444444'
'355' '19:41414141414242424243434343434444444444'
'356' '19:41414141414242424243434343434444444444'
'357' '19:41414141414242424243434343434444444444'
'358' '19:41414141414242424243434343434444444444'
'359' '19:41414141414242424243434343434444444444'
'36' '19:41414141414242424243434343434444444444'
'360' '19:41414141414242424243434343434444444444'
'361' '19:41414141414242424243434343434444444444'
'362' '19:41414141414242424243434343434444444444'
'363' '19:41414141414242424243434343434444444444'
'364' '19:41414141414242424243434343434444444444'
'365' '19:41414141414242424243434343434444444444'
'366' '19:41414141414242424243434343434444444444'
'367' '19:41414141414242424243434343434444444444'
'368' '19:41414141414242424243434343434444444444'
'369' '19:41414141414242424243434343434444444444'
'37' '19:41414141414242424243434343434444444444'
'370' '19:41414141414242424243434343434444444444'
'371' '19:41414141414242424243434343434444444444'
'372' '19:41414141414242424243434343434444444444'
'373' '19:41414141414242424243434343434444444444'
'374' '19:41414141414242424243434343434444444444'
'375' '19:41414141414242424243434343434444444444'
'376' '19:41414141414242424243434343434444444444'
'377' '19:41414141414242424243434343434444444444'
'378' '19:41414141414242424243434343434444444444'
'379' '19:41414141414242424243434343434444444444'
'38' '19:41414141414242424243434343434444444444'
'380' '19:41414141414242424243434343434444444444'
'381' '19:41414141414242424243434343434444444444'
'382' '19:41414141414242424243434343434444444444'
'383' '19:41414141414242424243434343434444444444'
'384' '19:41414141414242424243434343434444444444'
'385' '19:41414141414242424243434343434444444444'
'386' '19:41414141414242424243434343434444444444'
'387' '19:41414141414242424243434343434444444444'
'388' '19:41414141414242424243434343434444444444'
'389' '19:41414141414242424243434343434444444444'
'39' '19:41414141414242424243434343434444444444'
'390' '19:41414141414242424243434343434444444444'
'391' '19:41414141414242424243434343434444444444'
'392' '19:41414141414242424243434343434444444444'
'393' '19:41414141414242424243434343434444444444'
'394' '19:41414141414242424243434343434444444444'
'395' '19:41414141414242424243434343434444444444'
'396' '19:41414141414242424243434343434444444444'
'397' '19:41414141414242424243434343434444444444'
'398' '19:41414141414242424243434343434444444444'
'399' '19:41414141414242424243434343434444444444'
'4' '19:41414141414242424243434343434444444444'
'40' '19:41414141414242424243434343434444444444'
'400' '19:41414141414242424243434343434444444444'
'401' '19:41414141414242424243434343434444444444'
'402' '19:41414141414242424243434343434444444444'
'403' '19:41414141414242424243434343434444444444'
'404' '19:41414141414242424243434343434444444444'
'405' '19:41414141414242424243434343434444444444'
'406' '19:41414141414242424243434343434444444444'
'407' '19:41414141414242424243434343434444444444'
'408' '19:41414141414242424243434343434444444444'
'409' '19:41414141414242424243434343434444444444'
'41' '19:41414141414242424243434343434444444444'
'410' '19:41414141414242424243434343434444444444'
'411' '19:41414141414242424243434343434444444444'
'412' '19:41414141414242424243434343434444444444'
'413' '19:41414141414242424243434343434444444444'
'414' '19:41414141414242424243434343434444444444'
'415' '19:41414141414242424243434343434444444444'
'416' '19:41414141414242424243434343434444444444'
'417' '19:41414141414242424243434343434444444444'
'418' '19:41414141414242424243434343434444444444'
'419' '19:41414141414242424243434343434444444444'
'42' '19:41414141414242424243434343434444444444'
'420' '19:41414141414242424243434343434444444444'
'421' '19:41414141414242424243434343434444444444'
'422' '19:41414141414242424243434343434444444444'
'423' '19:41414141414242424243434343434444444444'
'424' '19:41414141414242424243434343434444444444'
'425' '19:41414141414242424243434343434444444444'
'426' '19:41414141414242424243434343434444444444'
'427' '19:41414141414242424243434343434444444444'
'428' '19:41414141414242424243434343434444444444'
'429' '19:41414141414242424243434343434444444444'
'43' '19:41414141414242424243434343434444444444'
'430' '19:41414141414242424243434343434444444444'
'431' '19:41414141414242424243434343434444444444'
'432' '19:41414141414242424243434343434444444444'
'433' '19:41414141414242424243434343434444444444'
'434' '19:41414141414242424243434343434444444444'
'435' '19:41414141414242424243434343434444444444'
'436' '19:41414141414242424243434343434444444444'
'437' '19:41414141414242424243434343434444444444'
'438' '19:41414141414242424243434343434444444444'
'439' '19:41414141414242424243434343434444444444'
'44' '19:41414141414242424243434343434444444444'
'440' '19:41414141414242424243434343434444444444'
'441' '19:41414141414242424243434343434444444444'
'442' '19:41414141414242424243434343434444444444'
'443' '19:41414141414242424243434343434444444444'
'444' '19:41414141414242424243434343434444444444'
'445' '19:41414141414242424243434343434444444444'
'446' '19:41414141414242424243434343434444444444'
'447' '19:41414141414242424243434343434444444444'
'448' '19:41414141414242424243434343434444444444'
'449' '19:41414141414242424243434343434444444444'
'45' '19:41414141414242424243434343434444444444'
'450' '19:41414141414242424243434343434444444444'
'451' '19:41414141414242424243434343434444444444'
'452' '19:41414141414242424243434343434444444444'
'453' '19:41414141414242424243434343434444444444'
'454' '19:41414141414242424243434343434444444444'
'455' '19:41414141414242424243434343434444444444'
'456' '19:41414141414242424243434343434444444444'
'457' '19:41414141414242424243434343434444444444'
'458' '19:41414141414242424243434343434444444444'
'459' '19:41414141414242424243434343434444444444'
'46' '19:41414141414242424243434343434444444444'
'460' '19:41414141414242424243434343434444444444'
'461' '19:41414141414242424243434343434444444444'
'462' '19:41414141414242424243434343434444444444'
'463' '19:41414141414242424243434343434444444444'
'464' '19:41414141414242424243434343434444444444'
'465' '19:41414141414242424243434343434444444444'
'466' '19:41414141414242424243434343434444444444'
'467' '19:41414141414242424243434343434444444444'
'468' '19:41414141414242424243434343434444444444'
'469' '19:41414141414242424243434343434444444444'
'47' '19:41414141414242424243434343434444444444'
'470' '19:41414141414242424243434343434444444444'
'471' '19:41414141414242424243434343434444444444'
'472' '19:41414141414242424243434343434444444444'
'473' '19:41414141414242424243434343434444444444'
'474' '19:41414141414242424243434343434444444444'
'475' '19:41414141414242424243434343434444444444'
'476' '19:41414141414242424243434343434444444444'
'477' '19:41414141414242424243434343434444444444'
'478' '19:41414141414242424243434343434444444444'
'479' '19:41414141414242424243434343434444444444'
'48' '19:41414141414242424243434343434444444444'
'480' '19:41414141414242424243434343434444444444'
'481' '19:41414141414242424243434343434444444444'
'482' '19:41414141414242424243434343434444444444'
'483' '19:41414141414242424243434343434444444444'
'484' '19:41414141414242424243434343434444444444'
'485' '19:41414141414242424243434343434444444444'
'486' '19:41414141414242424243434343434444444444'
'487' '19:41414141414242424243434343434444444444'
'488' '19:41414141414242424243434343434444444444'
'489' '19:41414141414242424243434343434444444444'
'49' '19:41414141414242424243434343434444444444'
'490' '19:41414141414242424243434343434444444444'
'491' '19:41414141414242424243434343434444444444'
'492' '19:41414141414242424243434343434444444444'
'493' '19:41414141414242424243434343434444444444'
'494' '19:41414141414242424243434343434444444444'
'495' '19:41414141414242424243434343434444444444'
'496' '19:41414141414242424243434343434444444444'
'497' '19:41414141414242424243434343434444444444'
'498' '19:41414141414242424243434343434444444444'
'499' '19:41414141414242424243434343434444444444'
'5' '19:41414141414242424243434343434444444444'
'50' '19:41414141414242424243434343434444444444'
'500' '19:41414141414242424243434343434444444444'
'501' '19:41414141414242424243434343434444444444'
'502' '19:41414141414242424243434343434444444444'
'503' '19:41414141414242424243434343434444444444'
'504' '19:41414141414242424243434343434444444444'
'505' '19:41414141414242424243434343434444444444'
'506' '19:41414141414242424243434343434444444444'
'507' '19:41414141414242424243434343434444444444'
'508' '19:41414141414242424243434343434444444444'
'509' '19:41414141414242424243434343434444444444'
'51' '19:41414141414242424243434343434444444444'
'510' '19:41414141414242424243434343434444444444'
'511' '19:41414141414242424243434343434444444444'
'512' '19:41414141414242424243434343434444444444'
'513' '19:41414141414242424243434343434444444444'
'514' '19:41414141414242424243434343434444444444'
'515' '19:41414141414242424243434343434444444444'
'516' '19:41414141414242424243434343434444444444'
'517' '19:41414141414242424243434343434444444444'
'518' '19:41414141414242424243434343434444444444'
'519' '19:41414141414242424243434343434444444444'
'52' '19:41414141414242424243434343434444444444'
'520' '19:41414141414242424243434343434444444444'
'521' '19:41414141414242424243434343434444444444'
'522' '19:41414141414242424243434343434444444444'
'523' '19:41414141414242424243434343434444444444'
'524' '19:41414141414242424243434343434444444444'
'525' '19:41414141414242424243434343434444444444'
'526' '19:41414141414242424243434343434444444444'
'527' '19:41414141414242424243434343434444444444'
'528' '19:41414141414242424243434343434444444444'
'529' '19:41414141414242424243434343434444444444'
'53' '19:41414141414242424243434343434444444444'
'530' '19:41414141414242424243434343434444444444'
'531' '19:41414141414242424243434343434444444444'
'532' '19:41414141414242424243434343434444444444'
'533' '19:41414141414242424243434343434444444444'
'534' '19:41414141414242424243434343434444444444'
'535' '19:41414141414242424243434343434444444444'
'536' '19:41414141414242424243434343434444444444'
'537' '19:41414141414242424243434343434444444444'
'538' '19:41414141414242424243434343434444444444'
'539' '19:41414141414242424243434343434444444444'
'54' '19:41414141414242424243434343434444444444'
'540' '19:41414141414242424243434343434444444444'
'541' '19:41414141414242424243434343434444444444'
'542' '19:41414141414242424243434343434444444444'
'543' '19:41414141414242424243434343434444444444'
'544' '19:41414141414242424243434343434444444444'
'545' '19:41414141414242424243434343434444444444'
'546' '19:41414141414242424243434343434444444444'
'547' '19:41414141414242424243434343434444444444'
'548' '19:41414141414242424243434343434444444444'
'549' '19:41414141414242424243434343434444444444'
'55' '19:41414141414242424243434343434444444444'
'550' '19:41414141414242424243434343434444444444'
'551' '19:41414141414242424243434343434444444444'
'552' '19:41414141414242424243434343434444444444'
'553' '19:41414141414242424243434343434444444444'
'554' '19:41414141414242424243434343434444444444'
'555' '19:41414141414242424243434343434444444444'
'556' '19:41414141414242424243434343434444444444'
'557' '19:41414141414242424243434343434444444444'
'558' '19:41414141414242424243434343434444444444'
'559' '19:41414141414242424243434343434444444444'
'56' '19:41414141414242424243434343434444444444'
'560' '19:41414141414242424243434343434444444444'
'561' '19:41414141414242424243434343434444444444'
'562' '19:41414141414242424243434343434444444444'
'563' '19:41414141414242424243434343434444444444'
'564' '19:41414141414242424243434343434444444444'
'565' '19:41414141414242424243434343434444444444'
'566' '19:41414141414242424243434343434444444444'
'567' '19:41414141414242424243434343434444444444'
'568' '19:41414141414242424243434343434444444444'
'569' '19:41414141414242424243434343434444444444'
'57' '19:41414141414242424243434343434444444444'
'570' '19:41414141414242424243434343434444444444'
'571' '19:41414141414242424243434343434444444444'
'572' '19:41414141414242424243434343434444444444'
'573' '19:41414141414242424243434343434444444444'
'574' '19:41414141414242424243434343434444444444'
'575' '19:41414141414242424243434343434444444444'
'576' '19:41414141414242424243434343434444444444'
'577' '19:41414141414242424243434343434444444444'
'578' '19:41414141414242424243434343434444444444'
'579' '19:41414141414242424243434343434444444444'
'58' '19:41414141414242424243434343434444444444'
'580' '19:41414141414242424243434343434444444444'
'581' '19:41414141414242424243434343434444444444'
'582' '19:41414141414242424243434343434444444444'
'583' '19:41414141414242424243434343434444444444'
'584' '19:41414141414242424243434343434444444444'
'585' '19:41414141414242424243434343434444444444'
'586' '19:41414141414242424243434343434444444444'
'587' '19:41414141414242424243434343434444444444'
'588' '19:41414141414242424243434343434444444444'
'589' '19:41414141414242424243434343434444444444'
'59' '19:41414141414242424243434343434444444444'
'590' '19:41414141414242424243434343434444444444'
'591' '19:41414141414242424243434343434444444444'
'592' '19:41414141414242424243434343434444444444'
'593' '19:41414141414242424243434343434444444444'
'594' '19:41414141414242424243434343434444444444'
'595' '19:41414141414242424243434343434444444444'
'596' '19:41414141414242424243434343434444444444'
'597' '19:41414141414242424243434343434444444444'
'598' '19:41414141414242424243434343434444444444'
'599' '19:41414141414242424243434343434444444444'
'6' '19:41414141414242424243434343434444444444'
'60' '19:41414141414242424243434343434444444444'
'600' '19:41414141414242424243434343434444444444'
'601' '19:41414141414242424243434343434444444444'
'602' '19:41414141414242424243434343434444444444'
'603' '19:41414141414242424243434343434444444444'
'604' '19:41414141414242424243434343434444444444'
'605' '19:41414141414242424243434343434444444444'
'606' '19:41414141414242424243434343434444444444'
'607' '19:41414141414242424243434343434444444444'
'608' '19:41414141414242424243434343434444444444'
'609' '19:41414141414242424243434343434444444444'
'61' '19:41414141414242424243434343434444444444'
'610' '19:41414141414242424243434343434444444444'
'611' '19:41414141414242424243434343434444444444'
'612' '19:41414141414242424243434343434444444444'
'613' '19:41414141414242424243434343434444444444'
'614' '19:41414141414242424243434343434444444444'
'615' '19:41414141414242424243434343434444444444'
'616' '19:41414141414242424243434343434444444444'
'617' '19:41414141414242424243434343434444444444'
'618' '19:41414141414242424243434343434444444444'
'619' '19:41414141414242424243434343434444444444'
'62' '19:41414141414242424243434343434444444444'
'620' '19:41414141414242424243434343434444444444'
'621' '19:41414141414242424243434343434444444444'
'622' '19:41414141414242424243434343434444444444'
'623' '19:41414141414242424243434343434444444444'
'624' '19:41414141414242424243434343434444444444'
'625' '19:41414141414242424243434343434444444444'
'626' '19:41414141414242424243434343434444444444'
'627' '19:41414141414242424243434343434444444444'
'628' '19:41414141414242424243434343434444444444'
'629' '19:41414141414242424243434343434444444444'
'63' '19:41414141414242424243434343434444444444'
'630' '19:41414141414242424243434343434444444444'
'631' '19:41414141414242424243434343434444444444'
'632' '19:41414141414242424243434343434444444444'
'633' '19:41414141414242424243434343434444444444'
'634' '19:41414141414242424243434343434444444444'
'635' '19:41414141414242424243434343434444444444'
'636' '19:41414141414242424243434343434444444444'
'637' '19:41414141414242424243434343434444444444'
'638' '19:41414141414242424243434343434444444444'
'639' '19:41414141414242424243434343434444444444'
'64' '19:41414141414242424243434343434444444444'
'640' '19:41414141414242424243434343434444444444'
'641' '19:41414141414242424243434343434444444444'
'642' '19:41414141414242424243434343434444444444'
'643' '19:41414141414242424243434343434444444444'
'644' '19:41414141414242424243434343434444444444'
'645' '19:41414141414242424243434343434444444444'
'646' '19:41414141414242424243434343434444444444'
'647' '19:41414141414242424243434343434444444444'
'648' '19:41414141414242424243434343434444444444'
'649' '19:41414141414242424243434343434444444444'
'65' '19:41414141414242424243434343434444444444'
'650' '19:41414141414242424243434343434444444444'
'651' '19:41414141414242424243434343434444444444'
'652' '19:41414141414242424243434343434444444444'
'653' '19:41414141414242424243434343434444444444'
'654' '19:41414141414242424243434343434444444444'
'655' '19:41414141414242424243434343434444444444'
'656' '19:41414141414242424243434343434444444444'
'657' '19:41414141414242424243434343434444444444'
'658' '19:41414141414242424243434343434444444444'
'659' '19:41414141414242424243434343434444444444'
'66' '19:41414141414242424243434343434444444444'
'660' '19:41414141414242424243434343434444444444'
'661' '19:41414141414242424243434343434444444444'
'662' '19:41414141414242424243434343434444444444'
'663' '19:41414141414242424243434343434444444444'
'664' '19:41414141414242424243434343434444444444'
'665' '19:41414141414242424243434343434444444444'
'666' '19:41414141414242424243434343434444444444'
'667' '19:41414141414242424243434343434444444444'
'668' '19:41414141414242424243434343434444444444'
'669' '19:41414141414242424243434343434444444444'
'67' '19:41414141414242424243434343434444444444'
'670' '19:41414141414242424243434343434444444444'
'671' '19:41414141414242424243434343434444444444'
'672' '19:41414141414242424243434343434444444444'
'673' '19:41414141414242424243434343434444444444'
'674' '19:41414141414242424243434343434444444444'
'675' '19:41414141414242424243434343434444444444'
'676' '19:41414141414242424243434343434444444444'
'677' '19:41414141414242424243434343434444444444'
'678' '19:41414141414242424243434343434444444444'
'679' '19:41414141414242424243434343434444444444'
'68' '19:41414141414242424243434343434444444444'
'680' '19:41414141414242424243434343434444444444'
'681' '19:41414141414242424243434343434444444444'
'682' '19:41414141414242424243434343434444444444'
'683' '19:41414141414242424243434343434444444444'
'684' '19:41414141414242424243434343434444444444'
'685' '19:41414141414242424243434343434444444444'
'686' '19:41414141414242424243434343434444444444'
'687' '19:41414141414242424243434343434444444444'
'688' '19:41414141414242424243434343434444444444'
'689' '19:41414141414242424243434343434444444444'
'69' '19:41414141414242424243434343434444444444'
'690' '19:41414141414242424243434343434444444444'
'691' '19:41414141414242424243434343434444444444'
'692' '19:41414141414242424243434343434444444444'
'693' '19:41414141414242424243434343434444444444'
'694' '19:41414141414242424243434343434444444444'
'695' '19:41414141414242424243434343434444444444'
'696' '19:41414141414242424243434343434444444444'
'697' '19:41414141414242424243434343434444444444'
'698' '19:41414141414242424243434343434444444444'
'699' '19:41414141414242424243434343434444444444'
'7' '19:41414141414242424243434343434444444444'
'70' '19:41414141414242424243434343434444444444'
'700' '19:41414141414242424243434343434444444444'
'701' '19:41414141414242424243434343434444444444'
'702' '19:41414141414242424243434343434444444444'
'703' '19:41414141414242424243434343434444444444'
'704' '19:41414141414242424243434343434444444444'
'705' '19:41414141414242424243434343434444444444'
'706' '19:41414141414242424243434343434444444444'
'707' '19:41414141414242424243434343434444444444'
'708' '19:41414141414242424243434343434444444444'
'709' '19:41414141414242424243434343434444444444'
'71' '19:41414141414242424243434343434444444444'
'710' '19:41414141414242424243434343434444444444'
'711' '19:41414141414242424243434343434444444444'
'712' '19:41414141414242424243434343434444444444'
'713' '19:41414141414242424243434343434444444444'
'714' '19:41414141414242424243434343434444444444'
'715' '19:41414141414242424243434343434444444444'
'716' '19:41414141414242424243434343434444444444'
'717' '19:41414141414242424243434343434444444444'
'718' '19:41414141414242424243434343434444444444'
'719' '19:41414141414242424243434343434444444444'
'72' '19:41414141414242424243434343434444444444'
'720' '19:41414141414242424243434343434444444444'
'721' '19:41414141414242424243434343434444444444'
'722' '19:41414141414242424243434343434444444444'
'723' '19:41414141414242424243434343434444444444'
'724' '19:41414141414242424243434343434444444444'
'725' '19:41414141414242424243434343434444444444'
'726' '19:41414141414242424243434343434444444444'
'727' '19:41414141414242424243434343434444444444'
'728' '19:41414141414242424243434343434444444444'
'729' '19:41414141414242424243434343434444444444'
'73' '19:41414141414242424243434343434444444444'
'730' '19:41414141414242424243434343434444444444'
'731' '19:41414141414242424243434343434444444444'
'732' '19:41414141414242424243434343434444444444'
'733' '19:41414141414242424243434343434444444444'
'734' '19:41414141414242424243434343434444444444'
'735' '19:41414141414242424243434343434444444444'
'736' '19:41414141414242424243434343434444444444'
'737' '19:41414141414242424243434343434444444444'
'738' '19:41414141414242424243434343434444444444'
'739' '19:41414141414242424243434343434444444444'
'74' '19:41414141414242424243434343434444444444'
'740' '19:41414141414242424243434343434444444444'
'741' '19:41414141414242424243434343434444444444'
'742' '19:41414141414242424243434343434444444444'
'743' '19:41414141414242424243434343434444444444'
'744' '19:41414141414242424243434343434444444444'
'745' '19:41414141414242424243434343434444444444'
'746' '19:41414141414242424243434343434444444444'
'747' '19:41414141414242424243434343434444444444'
'748' '19:41414141414242424243434343434444444444'
'749' '19:41414141414242424243434343434444444444'
'75' '19:41414141414242424243434343434444444444'
'750' '19:41414141414242424243434343434444444444'
'751' '19:41414141414242424243434343434444444444'
'752' '19:41414141414242424243434343434444444444'
'753' '19:41414141414242424243434343434444444444'
'754' '19:41414141414242424243434343434444444444'
'755' '19:41414141414242424243434343434444444444'
'756' '19:41414141414242424243434343434444444444'
'757' '19:41414141414242424243434343434444444444'
'758' '19:41414141414242424243434343434444444444'
'759' '19:41414141414242424243434343434444444444'
'76' '19:41414141414242424243434343434444444444'
'760' '19:41414141414242424243434343434444444444'
'761' '19:41414141414242424243434343434444444444'
'762' '19:41414141414242424243434343434444444444'
'763' '19:41414141414242424243434343434444444444'
'764' '19:41414141414242424243434343434444444444'
'765' '19:41414141414242424243434343434444444444'
'766' '19:41414141414242424243434343434444444444'
'767' '19:41414141414242424243434343434444444444'
'768' '19:41414141414242424243434343434444444444'
'769' '19:41414141414242424243434343434444444444'
'77' '19:41414141414242424243434343434444444444'
'770' '19:41414141414242424243434343434444444444'
'771' '19:41414141414242424243434343434444444444'
'772' '19:41414141414242424243434343434444444444'
'773' '19:41414141414242424243434343434444444444'
'774' '19:41414141414242424243434343434444444444'
'775' '19:41414141414242424243434343434444444444'
'776' '19:41414141414242424243434343434444444444'
'777' '19:41414141414242424243434343434444444444'
'778' '19:41414141414242424243434343434444444444'
'779' '19:41414141414242424243434343434444444444'
'78' '19:41414141414242424243434343434444444444'
'780' '19:41414141414242424243434343434444444444'
'781' '19:41414141414242424243434343434444444444'
'782' '19:41414141414242424243434343434444444444'
'783' '19:41414141414242424243434343434444444444'
'784' '19:41414141414242424243434343434444444444'
'785' '19:41414141414242424243434343434444444444'
'786' '19:41414141414242424243434343434444444444'
'787' '19:41414141414242424243434343434444444444'
'788' '19:41414141414242424243434343434444444444'
'789' '19:41414141414242424243434343434444444444'
'79' '19:41414141414242424243434343434444444444'
'790' '19:41414141414242424243434343434444444444'
'791' '19:41414141414242424243434343434444444444'
'792' '19:41414141414242424243434343434444444444'
'793' '19:41414141414242424243434343434444444444'
'794' '19:41414141414242424243434343434444444444'
'795' '19:41414141414242424243434343434444444444'
'796' '19:41414141414242424243434343434444444444'
'797' '19:41414141414242424243434343434444444444'
'798' '19:41414141414242424243434343434444444444'
'799' '19:41414141414242424243434343434444444444'
'8' '19:41414141414242424243434343434444444444'
'80' '19:41414141414242424243434343434444444444'
'800' '19:41414141414242424243434343434444444444'
'801' '19:41414141414242424243434343434444444444'
'802' '19:41414141414242424243434343434444444444'
'803' '19:41414141414242424243434343434444444444'
'804' '19:41414141414242424243434343434444444444'
'805' '19:41414141414242424243434343434444444444'
'806' '19:41414141414242424243434343434444444444'
'807' '19:41414141414242424243434343434444444444'
'808' '19:41414141414242424243434343434444444444'
'809' '19:41414141414242424243434343434444444444'
'81' '19:41414141414242424243434343434444444444'
'810' '19:41414141414242424243434343434444444444'
'811' '19:41414141414242424243434343434444444444'
'812' '19:41414141414242424243434343434444444444'
'813' '19:41414141414242424243434343434444444444'
'814' '19:41414141414242424243434343434444444444'
'815' '19:41414141414242424243434343434444444444'
'816' '19:41414141414242424243434343434444444444'
'817' '19:41414141414242424243434343434444444444'
'818' '19:41414141414242424243434343434444444444'
'819' '19:41414141414242424243434343434444444444'
'82' '19:41414141414242424243434343434444444444'
'820' '19:41414141414242424243434343434444444444'
'821' '19:41414141414242424243434343434444444444'
'822' '19:41414141414242424243434343434444444444'
'823' '19:41414141414242424243434343434444444444'
'824' '19:41414141414242424243434343434444444444'
'825' '19:41414141414242424243434343434444444444'
'826' '19:41414141414242424243434343434444444444'
'827' '19:41414141414242424243434343434444444444'
'828' '19:41414141414242424243434343434444444444'
'829' '19:41414141414242424243434343434444444444'
'83' '19:41414141414242424243434343434444444444'
'830' '19:41414141414242424243434343434444444444'
'831' '19:41414141414242424243434343434444444444'
'832' '19:41414141414242424243434343434444444444'
'833' '19:41414141414242424243434343434444444444'
'834' '19:41414141414242424243434343434444444444'
'835' '19:41414141414242424243434343434444444444'
'836' '19:41414141414242424243434343434444444444'
'837' '19:41414141414242424243434343434444444444'
'838' '19:41414141414242424243434343434444444444'
'839' '19:41414141414242424243434343434444444444'
'84' '19:41414141414242424243434343434444444444'
'840' '19:41414141414242424243434343434444444444'
'841' '19:41414141414242424243434343434444444444'
'842' '19:41414141414242424243434343434444444444'
'843' '19:41414141414242424243434343434444444444'
'844' '19:41414141414242424243434343434444444444'
'845' '19:41414141414242424243434343434444444444'
'846' '19:41414141414242424243434343434444444444'
'847' '19:41414141414242424243434343434444444444'
'848' '19:41414141414242424243434343434444444444'
'849' '19:41414141414242424243434343434444444444'
'85' '19:41414141414242424243434343434444444444'
'850' '19:41414141414242424243434343434444444444'
'851' '19:41414141414242424243434343434444444444'
'852' '19:41414141414242424243434343434444444444'
'853' '19:41414141414242424243434343434444444444'
'854' '19:41414141414242424243434343434444444444'
'855' '19:41414141414242424243434343434444444444'
'856' '19:41414141414242424243434343434444444444'
'857' '19:41414141414242424243434343434444444444'
'858' '19:41414141414242424243434343434444444444'
'859' '19:41414141414242424243434343434444444444'
'86' '19:41414141414242424243434343434444444444'
'860' '19:41414141414242424243434343434444444444'
'861' '19:41414141414242424243434343434444444444'
'862' '19:41414141414242424243434343434444444444'
'863' '19:41414141414242424243434343434444444444'
'864' '19:41414141414242424243434343434444444444'
'865' '19:41414141414242424243434343434444444444'
'866' '19:41414141414242424243434343434444444444'
'867' '19:41414141414242424243434343434444444444'
'868' '19:41414141414242424243434343434444444444'
'869' '19:41414141414242424243434343434444444444'
'87' '19:41414141414242424243434343434444444444'
'870' '19:41414141414242424243434343434444444444'
'871' '19:41414141414242424243434343434444444444'
'872' '19:41414141414242424243434343434444444444'
'873' '19:41414141414242424243434343434444444444'
'874' '19:41414141414242424243434343434444444444'
'875' '19:41414141414242424243434343434444444444'
'876' '19:41414141414242424243434343434444444444'
'877' '19:41414141414242424243434343434444444444'
'878' '19:41414141414242424243434343434444444444'
'879' '19:41414141414242424243434343434444444444'
'88' '19:41414141414242424243434343434444444444'
'880' '19:41414141414242424243434343434444444444'
'881' '19:41414141414242424243434343434444444444'
'882' '19:41414141414242424243434343434444444444'
'883' '19:41414141414242424243434343434444444444'
'884' '19:41414141414242424243434343434444444444'
'885' '19:41414141414242424243434343434444444444'
'886' '19:41414141414242424243434343434444444444'
'887' '19:41414141414242424243434343434444444444'
'888' '19:41414141414242424243434343434444444444'
'889' '19:41414141414242424243434343434444444444'
'89' '19:41414141414242424243434343434444444444'
'890' '19:41414141414242424243434343434444444444'
'891' '19:41414141414242424243434343434444444444'
'892' '19:41414141414242424243434343434444444444'
'893' '19:41414141414242424243434343434444444444'
'894' '19:41414141414242424243434343434444444444'
'895' '19:41414141414242424243434343434444444444'
'896' '19:41414141414242424243434343434444444444'
'897' '19:41414141414242424243434343434444444444'
'898' '19:41414141414242424243434343434444444444'
'899' '19:41414141414242424243434343434444444444'
'9' '19:41414141414242424243434343434444444444'
'90' '19:41414141414242424243434343434444444444'
'900' '19:41414141414242424243434343434444444444'
'901' '19:41414141414242424243434343434444444444'
'902' '19:41414141414242424243434343434444444444'
'903' '19:41414141414242424243434343434444444444'
'904' '19:41414141414242424243434343434444444444'
'905' '19:41414141414242424243434343434444444444'
'906' '19:41414141414242424243434343434444444444'
'907' '19:41414141414242424243434343434444444444'
'908' '19:41414141414242424243434343434444444444'
'909' '19:41414141414242424243434343434444444444'
'91' '19:41414141414242424243434343434444444444'
'910' '19:41414141414242424243434343434444444444'
'911' '19:41414141414242424243434343434444444444'
'912' '19:41414141414242424243434343434444444444'
'913' '19:41414141414242424243434343434444444444'
'914' '19:41414141414242424243434343434444444444'
'915' '19:41414141414242424243434343434444444444'
'916' '19:41414141414242424243434343434444444444'
'917' '19:41414141414242424243434343434444444444'
'918' '19:41414141414242424243434343434444444444'
'919' '19:41414141414242424243434343434444444444'
'92' '19:41414141414242424243434343434444444444'
'920' '19:41414141414242424243434343434444444444'
'921' '19:41414141414242424243434343434444444444'
'922' '19:41414141414242424243434343434444444444'
'923' '19:41414141414242424243434343434444444444'
'924' '19:41414141414242424243434343434444444444'
'925' '19:41414141414242424243434343434444444444'
'926' '19:41414141414242424243434343434444444444'
'927' '19:41414141414242424243434343434444444444'
'928' '19:41414141414242424243434343434444444444'
'929' '19:41414141414242424243434343434444444444'
'93' '19:41414141414242424243434343434444444444'
'930' '19:41414141414242424243434343434444444444'
'931' '19:41414141414242424243434343434444444444'
'932' '19:41414141414242424243434343434444444444'
'933' '19:41414141414242424243434343434444444444'
'934' '19:41414141414242424243434343434444444444'
'935' '19:41414141414242424243434343434444444444'
'936' '19:41414141414242424243434343434444444444'
'937' '19:41414141414242424243434343434444444444'
'938' '19:41414141414242424243434343434444444444'
'939' '19:41414141414242424243434343434444444444'
'94' '19:41414141414242424243434343434444444444'
'940' '19:41414141414242424243434343434444444444'
'941' '19:41414141414242424243434343434444444444'
'942' '19:41414141414242424243434343434444444444'
'943' '19:41414141414242424243434343434444444444'
'944' '19:41414141414242424243434343434444444444'
'945' '19:41414141414242424243434343434444444444'
'946' '19:41414141414242424243434343434444444444'
'947' '19:41414141414242424243434343434444444444'
'948' '19:41414141414242424243434343434444444444'
'949' '19:41414141414242424243434343434444444444'
'95' '19:41414141414242424243434343434444444444'
'950' '19:41414141414242424243434343434444444444'
'951' '19:41414141414242424243434343434444444444'
'952' '19:41414141414242424243434343434444444444'
'953' '19:41414141414242424243434343434444444444'
'954' '19:41414141414242424243434343434444444444'
'955' '19:41414141414242424243434343434444444444'
'956' '19:41414141414242424243434343434444444444'
'957' '19:41414141414242424243434343434444444444'
'958' '19:41414141414242424243434343434444444444'
'959' '19:41414141414242424243434343434444444444'
'96' '19:41414141414242424243434343434444444444'
'960' '19:41414141414242424243434343434444444444'
'961' '19:41414141414242424243434343434444444444'
'962' '19:41414141414242424243434343434444444444'
'963' '19:41414141414242424243434343434444444444'
'964' '19:41414141414242424243434343434444444444'
'965' '19:41414141414242424243434343434444444444'
'966' '19:41414141414242424243434343434444444444'
'967' '19:41414141414242424243434343434444444444'
'968' '19:41414141414242424243434343434444444444'
'969' '19:41414141414242424243434343434444444444'
'97' '19:41414141414242424243434343434444444444'
'970' '19:41414141414242424243434343434444444444'
'971' '19:41414141414242424243434343434444444444'
'972' '19:41414141414242424243434343434444444444'
'973' '19:41414141414242424243434343434444444444'
'974' '19:41414141414242424243434343434444444444'
'975' '19:41414141414242424243434343434444444444'
'976' '19:41414141414242424243434343434444444444'
'977' '19:41414141414242424243434343434444444444'
'978' '19:41414141414242424243434343434444444444'
'979' '19:41414141414242424243434343434444444444'
'98' '19:41414141414242424243434343434444444444'
'980' '19:41414141414242424243434343434444444444'
'981' '19:41414141414242424243434343434444444444'
'982' '19:41414141414242424243434343434444444444'
'983' '19:41414141414242424243434343434444444444'
'984' '19:41414141414242424243434343434444444444'
'985' '19:41414141414242424243434343434444444444'
'986' '19:41414141414242424243434343434444444444'
'987' '19:41414141414242424243434343434444444444'
'988' '19:41414141414242424243434343434444444444'
'989' '19:41414141414242424243434343434444444444'
'99' '19:41414141414242424243434343434444444444'
'990' '19:41414141414242424243434343434444444444'
'991' '19:41414141414242424243434343434444444444'
'992' '19:41414141414242424243434343434444444444'
'993' '19:41414141414242424243434343434444444444'
'994' '19:41414141414242424243434343434444444444'
'995' '19:41414141414242424243434343434444444444'
'996' '19:41414141414242424243434343434444444444'
'997' '19:41414141414242424243434343434444444444'
'998' '19:41414141414242424243434343434444444444'
'999' '19:41414141414242424243434343434444444444'