Commit 13f77136 authored by SHREYANSH JAIN's avatar SHREYANSH JAIN

Merge branch 'revert-6c9f1173' into 'master'

Revert "Merge branch 'test' into 'master'"

See merge request !2
parents 6c9f1173 eed7eff9
This source diff could not be displayed because it is too large. You can view the blob instead.
import numpy as np import numpy as np
import argparse import argparse
import csv import csv
# import matplotlib.pyplot as plt # import matplotlib.pyplot as plt
''' '''
You are only required to fill the following functions You are only required to fill the following functions
...@@ -42,15 +41,17 @@ def mean_absolute_loss(xdata, ydata, weights): ...@@ -42,15 +41,17 @@ def mean_absolute_loss(xdata, ydata, weights):
guess = np.dot(xdata,weights) guess = np.dot(xdata,weights)
samples = np.shape(guess)[0] samples = np.shape(guess)[0]
err = 0.5*samples*np.sum(np.absolute(ydata-guess)) err = (1/samples)*np.sum(np.absolute(ydata-guess))
return err return err
raise NotImplementedError raise NotImplementedError
def mean_absolute_gradient(xdata, ydata, weights): def mean_absolute_gradient(xdata, ydata, weights):
samples = np.shape(xdata)[0]
guess = np.dot(xdata,weights) guess = np.dot(xdata,weights)
gradient = (1/samples)*np.dot(xdata.T,(guess-ydata)) if np.sum(ydata-guess) < 0:
gradient = np.random.randint(0,10,np.shape(weights)[0])
else:
gradient = np.random.randint(-10,0,np.shape(weights)[0])
return gradient return gradient
raise NotImplementedError raise NotImplementedError
...@@ -59,17 +60,15 @@ def mean_log_cosh_loss(xdata, ydata, weights): ...@@ -59,17 +60,15 @@ def mean_log_cosh_loss(xdata, ydata, weights):
guess = np.dot(xdata,weights) guess = np.dot(xdata,weights)
samples = np.shape(guess)[0] samples = np.shape(guess)[0]
err = samples*np.sum(np.log(np.cosh(ydata-guess))) err = (1/samples)*np.sum(np.square(ydata-guess))
return err return err
raise NotImplementedError raise NotImplementedError
def mean_log_cosh_gradient(xdata, ydata, weights): def mean_log_cosh_gradient(xdata, ydata, weights):
guess = np.dot(xdata,weights) guess = np.dot(xdata,weights)
simplerr = np.multiply(2,ydata-guess)
samples = np.shape(guess)[0] samples = np.shape(guess)[0]
derivative = np.divide(np.exp(simplerr)-1,np.exp(simplerr)+1) gradient = np.dot(xdata.T,np.tanh(guess-ydata))
gradient = (1/samples)*np.dot(xdata.T,derivative)
return gradient return gradient
raise NotImplementedError raise NotImplementedError
...@@ -92,11 +91,10 @@ def root_mean_squared_gradient(xdata, ydata, weights): ...@@ -92,11 +91,10 @@ def root_mean_squared_gradient(xdata, ydata, weights):
class LinearRegressor: class LinearRegressor:
def __init__(self, dims): def __init__(self,dims):
self.dims = dims self.dims = dims
self.W = np.random.rand(dims) self.W = np.zeros(dims)
#self.W = np.random.uniform(low=0.0, high=1.0, size=dims)
return return
raise NotImplementedError raise NotImplementedError
...@@ -142,88 +140,11 @@ def read_dataset(trainfile, testfile): ...@@ -142,88 +140,11 @@ def read_dataset(trainfile, testfile):
return np.array(xtrain), np.array(ytrain), np.array(xtest) return np.array(xtrain), np.array(ytrain), np.array(xtest)
def one_hot_encoding(value_list, classes):
res = np.eye(classes)[value_list.reshape(-1)]
return res.reshape(list(value_list.shape)+[classes])
norm_dict = {}
dictionary_of_classes_for_features = {
2 : 5,
3 : 25,
5: 8,
7: 5
}
dictionary_of_days = {
'Monday' : 1,
'Tuesday': 2,
'Wednesday': 3,
'Thursday' : 4,
'Friday' : 5,
'Saturday': 6,
'Sunday' : 7
}
def slicer(arr, beg, end):
return np.array([i[beg:end] for i in arr]).reshape(-1, 1)
"""
#for normalization of parametes 'wind speed' and 'humidity' uncoment
def normalize(arr):
arr = arr
if not norm_dict: # make dictionary once at training to be used later during test
# for i in range(arr.shape[1]):
norm_dict['init'] = [np.min(arr), np.max(arr)]
#norm_dict['init'] = [np.mean(arr), np.std(arr)]
# for i in range(arr.shape[1]):
arr = np.array([(x - norm_dict['init'][0])/(norm_dict['init'][1] - norm_dict['init'][0]) for x in arr]) # min-max
#arr = np.array([(x - norm_dict['init'][0])/(norm_dict['init'][1]) for x in arr]) # standardization
return arr
"""
# 4 hours band
# 1/-1 encoding
# use feature selection and tuning in Jupyter then apply it back here
def preprocess_dataset(xdata, ydata=None): def preprocess_dataset(xdata, ydata=None):
xdata = xdata[:,[2,3,4,7,9]]
# converting weekdays to numeric for one_hot_encoding
"""
#for normalization of parametes 'wind speed' and 'humidity' uncoment
xdata[:, 10] = normalize(xdata[:, 10].astype('float'))# normalized
xdata[:, 11] = normalize(xdata[:, 10].astype('float'))"""
xdata[:, 5] = [dictionary_of_days[i] for i in xdata[:, 5]]
cat_cols = [2, 3, 5, 7]
for i in cat_cols:
# dropping 2 columns for C-1 encoding and removing additional 0 column
t = one_hot_encoding(xdata[:, i].astype('int'), dictionary_of_classes_for_features[i])[:, 2:]
xdata = np.concatenate((xdata, t),axis=1)
xdata = np.delete(xdata, cat_cols, 1) # removing useless columns
xdata = np.delete(xdata, 6, 1)
xdata = np.delete(xdata, 8, 1)
# extracting features from date
month = slicer(xdata[:, 1], 5,7)
t = one_hot_encoding(month[:,0].astype('int'), 13)[:, 2:]
xdata = np.concatenate((xdata, t), axis=1)
date = slicer(xdata[:, 1], 8, 10)
week = np.ceil(date.astype('int') / 7) # week of month
t = one_hot_encoding(week[:,0].astype('int'), 6)[:, 2:]
xdata = np.concatenate((xdata, t), axis=1)
xdata = xdata[:,2:] # dropping first 2 unnecessary columns
print(xdata[0:5])
xdata = xdata.astype('float32') xdata = xdata.astype('float32')
bias = np.ones((np.shape(xdata)[0],1)) bias = np.ones((np.shape(xdata)[0],1))
xdata = np.concatenate((bias,xdata),axis=1) xdata = np.concatenate((bias,xdata),axis=1)
if ydata is None: if ydata is None:
return xdata return xdata
ydata = ydata.astype('float32') ydata = ydata.astype('float32')
...@@ -237,37 +158,12 @@ dictionary_of_losses = { ...@@ -237,37 +158,12 @@ dictionary_of_losses = {
'logcosh':(mean_log_cosh_loss, mean_log_cosh_gradient), 'logcosh':(mean_log_cosh_loss, mean_log_cosh_gradient),
} }
"""
#For outliers removal from wind speed column uncomment
def out(x, std, mean):
if ((x < mean + 2 * std)and (x > mean - 2 * std)):
return 0
else:
return 1
def outlier(xtrain, ytrain, std, mean):
a =[]
for i in xtrain[:, 11].astype('float32'):
a.append(out(i,std, mean))
a = np.array(a)
xdata = np.concatenate((xtrain, a.reshape(-1, 1)), axis=1)
ytrain = np.delete(ytrain, np.argwhere(xdata[:, -1].astype('int') > 0), 0)
xdata = np.delete(xdata, np.argwhere(xdata[:, -1].astype('int') > 0), 0)
xdata = np.delete(xdata, -1, 1)
return (xdata, ytrain)"""
def main(): def main():
# You are free to modify the main function as per your requirements. # You are free to modify the main function as per your requirements.
# Uncomment the below lines and pass the appropriate value # Uncomment the below lines and pass the appropriate value
xtrain, ytrain, xtest = read_dataset(args.train_file, args.test_file) xtrain, ytrain, xtest = read_dataset(args.train_file, args.test_file)
"""
#For outliers removal from wind speed column uncomment
std = np.std(xtrain[:, 11].astype('float32'))
mean = np.mean(xtrain[:, 11].astype('float32'))
xtrain, ytrain =outlier(xtrain, ytrain, std, mean)"""
xtrainprocessed, ytrainprocessed = preprocess_dataset(xtrain, ytrain) xtrainprocessed, ytrainprocessed = preprocess_dataset(xtrain, ytrain)
xtestprocessed = preprocess_dataset(xtest) xtestprocessed = preprocess_dataset(xtest)
......
instance (id),count instance (id),count
0,494 0,308
1,49 1,169
2,285 2,89
3,336 3,296
4,120 4,38
5,158 5,352
6,236 6,354
7,442 7,266
8,202 8,269
9,33 9,60
10,297 10,277
11,3 11,102
12,191 12,139
13,76 13,49
14,38 14,114
15,435 15,236
16,9 16,50
17,47 17,90
18,321 18,281
19,57 19,170
20,44 20,20
21,258 21,246
22,22 22,150
23,263 23,254
24,32 24,57
25,232 25,275
26,34 26,24
27,188 27,350
28,226 28,138
29,313 29,241
30,117 30,225
31,130 31,265
32,464 32,291
33,211 33,158
34,138 34,284
35,180 35,93
36,83 36,19
37,312 37,98
38,206 38,141
39,208 39,193
40,159 40,373
41,230 41,223
42,343 42,279
43,287 43,268
44,245 44,198
45,75 45,117
46,15 46,55
47,331 47,120
48,198 48,174
49,287 49,286
50,224 50,206
51,220 51,367
52,246 52,288
53,68 53,4
54,201 54,183
55,260 55,359
56,253 56,234
57,198 57,332
58,190 58,181
59,25 59,86
60,222 60,263
61,247 61,167
62,483 62,278
63,352 63,348
64,470 64,257
65,557 65,320
66,245 66,229
67,115 67,188
68,337 68,338
69,201 69,257
70,285 70,240
71,59 71,251
72,294 72,249
73,446 73,236
74,229 74,210
75,489 75,253
76,31 76,102
77,207 77,184
78,227 78,314
79,236 79,213
80,250 80,202
81,385 81,196
82,58 82,178
83,35 83,34
84,159 84,210
85,246 85,225
86,262 86,232
87,173 87,168
88,253 88,216
89,328 89,263
90,267 90,232
91,284 91,254
92,28 92,178
93,111 93,128
94,242 94,184
95,241 95,201
96,27 96,116
97,156 97,268
98,267 98,229
99,258 99,210
100,208 100,194
101,247 101,210
102,0 102,53
103,58 103,76
104,412 104,188
105,153 105,104
106,422 106,260
107,473 107,278
108,62 108,126
109,182 109,240
110,36 110,85
111,69 111,115
112,65 112,70
113,289 113,217
114,88 114,38
115,86 115,133
116,321 116,245
117,14 117,53
118,227 118,268
119,157 119,159
120,341 120,116
121,22 121,89
122,366 122,166
123,241 123,213
124,25 124,25
125,66 125,115
126,109 126,24
127,64 127,199
128,190 128,200
129,504 129,295
130,53 130,9
131,361 131,257
132,53 132,25
133,173 133,307
134,139 134,324
135,97 135,1
136,243 136,149
137,270 137,255
138,19 138,70
139,67 139,267
140,292 140,244
141,180 141,218
142,273 142,211
143,315 143,268
144,343 144,331
145,183 145,165
146,369 146,303
147,395 147,361
148,487 148,270
149,242 149,350
150,133 150,92
151,240 151,234
152,160 152,110
153,343 153,315
154,404 154,171
155,283 155,232
156,489 156,351
157,30 157,114
158,209 158,202
159,175 159,139
160,160 160,159
161,170 161,295
162,386 162,219
163,113 163,202
164,93 164,200
165,135 165,100
166,219 166,186
167,289 167,268
168,220 168,185
169,380 169,324
170,114 170,154
171,154 171,182
172,100 172,125
173,244 173,279
174,170 174,291
175,103 175,191
176,506 176,287
177,292 177,318
178,60 178,139
179,61 179,139
180,58 180,20
181,273 181,287
182,382 182,300
183,25 183,184
184,241 184,167
185,62 185,35
186,383 186,147
187,22 187,208
188,60 188,147
189,293 189,218
190,263 190,262
191,42 191,59
192,341 192,298
193,226 193,145
194,354 194,193
195,31 195,61
196,245 196,260
197,1 197,20
198,75 198,156
199,25 199,157
200,227 200,223
201,50 201,143
202,426 202,207
203,312 203,304
204,103 204,299
205,73 205,179
206,329 206,324
207,226 207,338
208,42 208,119
209,75 209,175
210,441 210,236
211,53 211,138
212,48 212,94
213,7 213,67
214,190 214,333
215,290 215,245
216,468 216,296
217,20 217,105
218,280 218,101
219,166 219,164
220,427 220,227
221,108 221,90
222,480 222,295
223,193 223,203
224,513 224,314
225,243 225,225
226,528 226,338
227,11 227,67
228,346 228,197
229,348 229,263
230,279 230,211
231,233 231,190
232,207 232,290
233,60 233,123
234,170 234,359
235,68 235,147
236,9 236,100
237,277 237,293
238,79 238,124
239,5 239,22
240,196 240,324
241,307 241,256
242,119 242,176
243,11 243,46
244,25 244,179
245,2 245,106
246,77 246,107
247,205 247,389
248,265 248,341
249,47 249,188
250,185 250,174
251,71 251,20
252,18 252,63
253,142 253,81
254,199 254,328
255,153 255,369
256,36 256,101
257,61 257,5
258,129 258,93
259,13 259,47
260,253 260,239
261,95 261,123
262,150 262,341
263,291 263,217
264,333 264,160
265,175 265,141
266,79 266,164
267,251 267,239
268,70 268,120
269,81 269,99
270,166 270,354
271,272 271,270
272,231 272,223
273,262 273,301
274,171 274,144
275,368 275,333
276,291 276,253
277,122 277,192
278,160 278,186
279,88 279,256
280,242 280,153
281,58 281,96
282,280 282,244
283,109 283,123
284,318 284,291
285,19 285,54
286,400 286,215
287,330 287,262
288,60 288,142
289,71 289,78
290,58 290,187
291,11 291,89
292,333 292,271
293,160 293,402
294,30 294,65
295,74 295,75
296,519 296,316
297,549 297,347
298,94 298,130
299,274 299,217
300,256 300,243
301,491 301,326
302,261 302,234
303,189 303,302
304,113 304,181
305,274 305,284
306,556 306,316
307,143 307,218
308,319 308,252
309,493 309,270
310,39 310,120
311,56 311,8
312,257 312,178
313,124 313,149
314,380 314,154
315,12 315,141
316,173 316,122
317,108 317,127
318,494 318,272
319,29 319,0
320,199 320,161
321,135 321,286
322,298 322,254
323,73 323,85
324,71 324,140
325,242 325,250
326,11 326,37
327,196 327,207
328,263 328,202
329,99 329,120
330,202 330,111
331,407 331,171
332,71 332,27
333,95 333,155
334,383 334,343
335,77 335,174
336,184 336,177
337,20 337,91
338,273 338,314
339,212 339,190
340,184 340,150
341,136 341,312
342,137 342,117
343,69 343,76
344,334 344,302
345,181 345,159
346,296 346,124
347,292 347,245
348,231 348,189
349,151 349,158
350,19 350,44
351,375 351,163
352,472 352,295
353,141 353,83
354,380 354,175
355,252 355,210
356,199 356,202
357,393 357,334
358,44 358,69
359,181 359,152
360,287 360,224
361,141 361,218
362,31 362,167
363,172 363,148
364,406 364,198
365,467 365,296
366,294 366,204
367,413 367,334
368,466 368,261
369,242 369,206
370,223 370,214
371,343 371,280
372,416 372,199
373,281 373,218
374,10 374,40
375,56 375,65
376,2 376,88
377,32 377,95
378,30 378,101
379,57 379,195
380,257 380,202
381,135 381,294
382,103 382,188
383,345 383,275
384,253 384,168
385,31 385,52
386,286 386,239
387,50 387,102
388,40 388,169
389,198 389,307
390,343 390,356
391,66 391,52
392,206 392,154
393,97 393,152
394,76 394,175
395,403 395,241
396,96 396,199
397,35 397,226
398,43 398,99
399,326 399,138
400,309 400,249
401,55 401,145
402,95 402,52
403,494 403,304
404,43 404,119
405,180 405,91
406,488 406,282
407,257 407,329
408,43 408,81
409,220 409,185
410,389 410,186
411,163 411,96
412,0 412,54
413,10 413,141
414,132 414,108
415,131 415,166
416,243 416,190
417,280 417,300
418,141 418,21
419,218 419,185
420,238 420,323
421,332 421,116
422,183 422,185
423,260 423,189
424,277 424,208
425,274 425,297
426,409 426,219
427,380 427,232
428,157 428,377
429,499 429,340
430,335 430,316
431,69 431,142
432,63 432,147
433,244 433,223
434,173 434,275
435,263 435,236
436,58 436,107
437,60 437,83
438,232 438,198
439,393 439,206
440,295 440,197
441,84 441,7
442,214 442,242
443,429 443,254
444,162 444,78
445,293 445,300
446,125 446,192
447,176 447,311
448,52 448,263
449,302 449,244
450,504 450,262
451,234 451,334
452,63 452,100
453,426 453,227
454,133 454,77
455,19 455,80
456,12 456,62
457,233 457,333
458,7 458,100
459,117 459,159
460,248 460,171
461,353 461,277
462,23 462,65
463,259 463,350
464,41 464,134
465,115 465,102
466,315 466,246
467,28 467,75
468,338 468,248
469,170 469,364
470,53 470,45
471,127 471,153
472,290 472,214
473,58 473,120
474,223 474,143
475,58 475,192
476,338 476,319
477,144 477,141
478,67 478,165
479,273 479,191
480,175 480,148
481,6 481,104
482,104 482,123
483,5 483,88
484,84 484,155
485,122 485,101
486,176 486,166
487,64 487,99
488,161 488,174
489,187 489,277
490,268 490,259
491,119 491,141
492,163 492,110
493,56 493,151
494,429 494,223
495,226 495,209
496,59 496,148
497,16 497,29
498,301 498,242
499,46 499,154
500,285 500,237
501,74 501,164
502,77 502,129
503,93 503,63
504,144 504,164
505,256 505,206
506,168 506,303
507,229 507,258
508,4 508,47
509,220 509,237
510,235 510,173
511,432 511,229
512,254 512,380
513,140 513,127
514,151 514,333
515,410 515,347
516,10 516,93
517,401 517,307
518,159 518,129
519,104 519,146
520,194 520,93
521,314 521,287
522,117 522,197
523,13 523,103
524,320 524,269
525,213 525,308
526,146 526,81
527,86 527,102
528,64 528,92
529,286 529,266
530,203 530,234
531,328 531,281
532,166 532,138
533,79 533,131
534,448 534,273
535,135 535,294
536,165 536,195
537,231 537,292
538,204 538,121
539,383 539,300
540,124 540,104
541,255 541,208
542,123 542,256
543,437 543,248
544,114 544,184
545,189 545,185
546,287 546,288
547,124 547,159
548,334 548,254
549,106 549,173
550,49 550,40
551,80 551,206
552,135 552,316
553,211 553,180
554,0 554,71
555,245 555,39
556,259 556,52
557,250 557,204
558,225 558,154
559,232 559,198
560,137 560,259
561,44 561,94
562,203 562,202
563,428 563,196
564,209 564,169
565,262 565,197
566,294 566,288
567,302 567,241
568,233 568,190
569,33 569,9
570,325 570,237
571,72 571,139
572,265 572,350
573,0 573,38
574,419 574,183
575,17 575,88
576,316 576,320
577,26 577,114
578,310 578,268
579,492 579,265
580,200 580,321
581,99 581,147
582,353 582,290
583,136 583,75
584,345 584,346
585,146 585,136
586,15 586,95
587,196 587,137
588,96 588,163
589,330 589,284
590,364 590,288
591,318 591,271
592,68 592,102
593,52 593,120
594,46 594,87
595,37 595,35
596,335 596,131
597,365 597,305
598,37 598,94
599,123 599,88
600,302 600,256
601,331 601,279
602,5 602,83
603,51 603,78
604,88 604,160
605,111 605,138
606,176 606,111
607,387 607,222
608,43 608,68
609,75 609,31
610,35 610,178
611,133 611,286
612,13 612,66
613,233 613,371
614,182 614,160
615,196 615,136
616,101 616,146
617,291 617,300
618,194 618,121
619,337 619,116
620,284 620,305
621,401 621,199
622,82 622,126
623,328 623,289
624,211 624,176
625,291 625,191
626,15 626,89
627,341 627,172
628,101 628,116
629,100 629,204
630,191 630,112
631,326 631,141
632,185 632,355
633,184 633,138
634,69 634,253
635,21 635,54
636,291 636,268
637,84 637,168
638,260 638,213
639,426 639,204
640,112 640,127
641,215 641,267
642,37 642,136
643,564 643,324
644,75 644,146
645,48 645,122
646,143 646,96
647,220 647,173
648,219 648,174
649,241 649,210
650,161 650,307
651,201 651,296
652,225 652,264
653,263 653,235
654,70 654,0
655,71 655,64
656,289 656,314
657,72 657,143
658,266 658,263
659,24 659,184
660,388 660,216
661,299 661,250
662,251 662,153
663,105 663,173
664,349 664,150
665,93 665,140
666,51 666,204
667,40 667,110
668,183 668,310
669,196 669,156
670,113 670,234
671,39 671,111
672,54 672,17
673,256 673,223
674,197 674,191
675,146 675,108
676,440 676,266
677,83 677,133
678,276 678,215
679,59 679,144
680,35 680,61
681,164 681,203
682,443 682,180
683,181 683,169
684,217 684,202
685,312 685,259
686,387 686,309
687,132 687,128
688,100 688,287
689,55 689,134
690,347 690,324
691,198 691,334
692,176 692,273
693,90 693,204
694,136 694,286
695,465 695,319
696,285 696,293
697,98 697,263
698,206 698,164
699,205 699,272
700,50 700,115
701,305 701,264
702,320 702,329
703,235 703,314
704,44 704,249
705,8 705,77
706,62 706,9
707,523 707,311
708,50 708,103
709,214 709,145
710,89 710,27
711,389 711,212
712,26 712,294
713,222 713,176
714,261 714,177
715,242 715,243
716,177 716,169
717,359 717,321
718,195 718,193
719,80 719,225
720,36 720,237
721,242 721,174
722,250 722,198
723,220 723,158
724,218 724,128
725,284 725,303
726,404 726,307
727,185 727,220
728,31 728,53
729,272 729,194
730,0 730,61
731,30 731,59
732,578 732,341
733,252 733,214
734,300 734,277
735,34 735,112
736,366 736,150
737,353 737,174
738,178 738,185
739,209 739,197
740,272 740,197
741,275 741,170
742,107 742,293
743,40 743,123
744,210 744,155
745,278 745,280
746,113 746,323
747,153 747,117
748,84 748,107
749,11 749,41
750,338 750,193
751,0 751,39
752,248 752,175
753,190 753,169
754,66 754,21
755,113 755,110
756,115 756,176
757,203 757,141
758,212 758,184
759,228 759,250
760,297 760,225
761,221 761,257
762,193 762,347
763,93 763,295
764,213 764,165
765,204 765,101
766,22 766,111
767,203 767,246
768,47 768,119
769,135 769,304
770,359 770,178
771,373 771,305
772,268 772,244
773,63 773,9
774,92 774,1
775,299 775,183
776,110 776,160
777,13 777,28
778,153 778,316
779,116 779,177
780,249 780,195
781,126 781,324
782,404 782,241
783,114 783,131
784,279 784,345
785,311 785,286
786,209 786,189
787,87 787,156
788,383 788,146
789,166 789,138
790,391 790,179
791,176 791,72
792,282 792,250
793,171 793,186
794,424 794,269
795,108 795,128
796,97 796,291
797,32 797,50
798,115 798,298
799,19 799,96
800,36 800,82
801,133 801,90
802,204 802,309
803,42 803,69
804,59 804,106
805,46 805,61
806,409 806,199
807,246 807,220
808,29 808,73
809,319 809,271
810,346 810,196
811,70 811,138
812,192 812,198
813,68 813,18
814,373 814,326
815,378 815,290
816,226 816,323
817,474 817,323
818,222 818,189
819,380 819,309
820,371 820,305
821,339 821,284
822,493 822,292
823,65 823,156
824,72 824,115
825,280 825,235
826,322 826,281
827,7 827,153
828,327 828,306
829,71 829,220
830,75 830,196
831,125 831,108
832,339 832,345
833,98 833,268
834,243 834,227
835,346 835,141
836,220 836,323
837,380 837,199
838,75 838,229
839,141 839,134
840,240 840,183
841,253 841,214
842,203 842,284
843,218 843,185
844,209 844,186
845,273 845,235
846,310 846,294
847,293 847,213
848,254 848,219
849,386 849,313
850,497 850,287
851,262 851,55
852,469 852,319
853,359 853,135
854,126 854,82
855,512 855,287
856,88 856,129
857,320 857,298
858,0 858,209
859,94 859,121
860,316 860,312
861,103 861,67
862,89 862,102
863,180 863,324
864,13 864,63
865,358 865,201
866,11 866,54
867,224 867,214
868,125 868,190
869,268 869,172
870,203 870,184
871,97 871,147
872,52 872,27
873,253 873,188
874,352 874,311
875,9 875,88
876,14 876,20
877,150 877,341
878,331 878,234
879,212 879,192
880,475 880,323
881,89 881,204
882,270 882,337
883,279 883,341
884,290 884,345
885,438 885,258
886,294 886,76
887,290 887,282
888,236 888,209
889,249 889,205
890,193 890,355
891,56 891,153
892,32 892,107
893,183 893,314
894,226 894,271
895,349 895,141
896,42 896,157
897,88 897,11
898,385 898,309
899,262 899,170
900,19 900,79
901,342 901,293
902,17 902,91
903,169 903,307
904,395 904,197
905,283 905,257
906,215 906,294
907,298 907,122
908,377 908,154
909,315 909,275
910,229 910,174
911,225 911,306
912,515 912,352
913,132 913,100
914,265 914,207
915,112 915,128
916,196 916,169
917,223 917,305
918,297 918,249
919,197 919,199
920,36 920,26
921,85 921,115
922,259 922,329
923,311 923,371
924,283 924,329
925,173 925,172
926,201 926,163
927,126 927,85
928,263 928,232
929,237 929,314
930,169 930,161
931,83 931,272
932,410 932,240
933,123 933,95
934,51 934,86
935,270 935,189
936,196 936,150
937,346 937,201
938,37 938,61
939,155 939,213
940,174 940,268
941,347 941,150
942,101 942,310
943,159 943,129
944,51 944,183
945,360 945,139
946,101 946,123
947,403 947,187
948,14 948,64
949,49 949,167
950,61 950,48
951,268 951,181
952,221 952,183
953,76 953,74
954,2 954,71
955,347 955,301
956,403 956,198
957,19 957,92
958,549 958,324
959,95 959,213
960,84 960,169
961,287 961,342
962,90 962,83
963,497 963,308
964,35 964,36
965,57 965,208
966,230 966,171
967,391 967,313
968,31 968,73
969,255 969,181
970,177 970,158
971,127 971,265
972,218 972,255
973,316 973,106
974,102 974,6
975,212 975,312
976,53 976,61
977,489 977,304
978,50 978,132
979,454 979,290
980,178 980,215
981,231 981,185
982,33 982,178
983,137 983,137
984,427 984,196
985,256 985,363
986,306 986,258
987,463 987,247
988,394 988,217
989,108 989,99
990,252 990,225
991,217 991,212
992,110 992,70
993,416 993,233
994,94 994,20
995,43 995,3
996,117 996,19
997,76 997,124
998,286 998,208
999,106 999,107
1000,75 1000,152
1001,34 1001,25
1002,257 1002,210
1003,226 1003,327
1004,310 1004,276
1005,358 1005,323
1006,356 1006,244
1007,114 1007,64
1008,122 1008,59
1009,93 1009,279
1010,273 1010,79
1011,484 1011,291
1012,65 1012,81
1013,18 1013,29
1014,164 1014,298
1015,209 1015,172
1016,226 1016,350
1017,173 1017,260
1018,156 1018,254
1019,135 1019,137
1020,248 1020,174
1021,242 1021,190
1022,100 1022,177
1023,357 1023,309
1024,22 1024,83
1025,292 1025,264
1026,72 1026,33
1027,183 1027,122
1028,25 1028,7
1029,278 1029,255
1030,533 1030,311
1031,259 1031,257
1032,360 1032,291
1033,129 1033,356
1034,46 1034,96
1035,382 1035,163
1036,264 1036,210
1037,78 1037,0
1038,37 1038,122
1039,167 1039,381
1040,46 1040,106
1041,58 1041,169
1042,558 1042,312
1043,395 1043,188
1044,84 1044,42
1045,57 1045,129
1046,258 1046,210
1047,129 1047,149
1048,218 1048,254
1049,89 1049,254
1050,9 1050,94
1051,217 1051,225
1052,167 1052,153
1053,237 1053,359
1054,188 1054,128
1055,211 1055,159
1056,296 1056,250
1057,50 1057,154
1058,52 1058,139
1059,314 1059,87
1060,45 1060,52
1061,142 1061,153
1062,262 1062,206
1063,334 1063,352
1064,76 1064,207
1065,50 1065,115
1066,74 1066,266
1067,278 1067,198
1068,51 1068,124
1069,472 1069,327
1070,126 1070,7
1071,73 1071,138
1072,397 1072,237
1073,79 1073,178
1074,297 1074,241
1075,174 1075,208
1076,300 1076,242
1077,416 1077,347
1078,318 1078,282
1079,1 1079,71
1080,215 1080,218
1081,136 1081,178
1082,37 1082,152
1083,237 1083,230
1084,38 1084,139
1085,246 1085,255
1086,336 1086,197
1087,149 1087,239
1088,26 1088,83
1089,192 1089,154
1090,29 1090,42
1091,86 1091,124
1092,16 1092,81
1093,314 1093,108
1094,34 1094,61
1095,28 1095,145
1096,121 1096,239
1097,93 1097,287
1098,378 1098,309
1099,100 1099,178
1100,273 1100,203
1101,529 1101,314
1102,16 1102,226
1103,69 1103,249
1104,90 1104,111
1105,214 1105,188
1106,38 1106,141
1107,157 1107,67
1108,246 1108,194
1109,500 1109,327
1110,170 1110,318
1111,281 1111,268
1112,66 1112,98
1113,70 1113,166
1114,26 1114,128
1115,470 1115,296
1116,134 1116,316
1117,295 1117,142
1118,6 1118,20
1119,43 1119,14
1120,466 1120,267
1121,216 1121,155
1122,93 1122,164
1123,226 1123,159
1124,120 1124,102
1125,88 1125,111
1126,230 1126,323
1127,37 1127,169
1128,176 1128,322
1129,88 1129,270
1130,281 1130,202
1131,164 1131,368
1132,51 1132,165
1133,66 1133,138
1134,62 1134,106
1135,80 1135,24
1136,334 1136,193
1137,229 1137,359
1138,101 1138,75
1139,25 1139,56
1140,360 1140,321
1141,45 1141,234
1142,55 1142,114
1143,22 1143,92
1144,250 1144,370
1145,72 1145,146
1146,183 1146,234
1147,228 1147,170
1148,63 1148,102
1149,221 1149,200
1150,258 1150,206
1151,98 1151,114
1152,73 1152,35
1153,87 1153,111
1154,204 1154,255
1155,134 1155,47
1156,165 1156,216
1157,115 1157,172
1158,77 1158,99
1159,17 1159,113
1160,161 1160,135
1161,229 1161,258
1162,252 1162,174
1163,157 1163,59
1164,153 1164,153
1165,505 1165,270
1166,51 1166,26
1167,232 1167,205
1168,63 1168,102
1169,181 1169,315
1170,92 1170,94
1171,39 1171,20
1172,500 1172,323
1173,9 1173,16
1174,337 1174,188
1175,302 1175,244
1176,207 1176,253
1177,250 1177,213
1178,127 1178,103
1179,58 1179,109
1180,118 1180,233
1181,186 1181,173
1182,168 1182,134
1183,41 1183,113
1184,203 1184,146
1185,185 1185,129
1186,78 1186,160
1187,69 1187,175
1188,240 1188,246
1189,50 1189,24
1190,260 1190,208
1191,218 1191,305
1192,219 1192,200
1193,67 1193,173
1194,310 1194,106
1195,11 1195,27
1196,45 1196,122
1197,130 1197,136
1198,246 1198,227
1199,328 1199,298
1200,70 1200,116
1201,86 1201,127
1202,129 1202,71
1203,143 1203,35
1204,62 1204,24
1205,51 1205,103
1206,382 1206,163
1207,284 1207,198
1208,277 1208,187
1209,234 1209,59
1210,27 1210,120
1211,34 1211,68
1212,46 1212,144
1213,288 1213,221
1214,124 1214,189
1215,437 1215,232
1216,417 1216,179
1217,86 1217,119
1218,332 1218,180
1219,275 1219,251
1220,282 1220,260
1221,179 1221,324
1222,87 1222,98
1223,106 1223,168
1224,268 1224,174
1225,357 1225,277
1226,39 1226,241
1227,270 1227,341
1228,156 1228,286
1229,115 1229,32
1230,5 1230,47
1231,267 1231,234
1232,266 1232,166
1233,269 1233,341
1234,518 1234,314
1235,185 1235,285
1236,223 1236,205
1237,298 1237,241
1238,533 1238,343
1239,318 1239,304
1240,67 1240,23
1241,100 1241,310
1242,326 1242,143
1243,185 1243,189
1244,100 1244,131
1245,136 1245,180
1246,175 1246,333
1247,165 1247,341
1248,111 1248,112
1249,46 1249,174
1250,341 1250,271
1251,230 1251,129
1252,292 1252,68
1253,137 1253,77
1254,367 1254,154
1255,145 1255,324
1256,136 1256,67
1257,298 1257,245
1258,111 1258,316
1259,257 1259,255
1260,198 1260,132
1261,500 1261,287
1262,485 1262,295
1263,217 1263,215
1264,192 1264,132
1265,88 1265,150
1266,307 1266,244
1267,255 1267,289
1268,209 1268,183
1269,57 1269,259
1270,231 1270,218
1271,290 1271,268
1272,126 1272,114
1273,225 1273,202
1274,58 1274,99
1275,376 1275,370
1276,60 1276,52
1277,84 1277,121
1278,41 1278,174
1279,309 1279,250
1280,417 1280,359
1281,115 1281,96
1282,94 1282,11
1283,230 1283,129
1284,19 1284,217
1285,202 1285,150
1286,72 1286,3
1287,287 1287,204
1288,91 1288,115
1289,182 1289,154
1290,282 1290,305
1291,131 1291,80
1292,274 1292,341
1293,171 1293,316
1294,147 1294,294
1295,182 1295,376
1296,509 1296,295
1297,48 1297,145
1298,213 1298,148
1299,166 1299,154
1300,135 1300,107
1301,215 1301,157
1302,5 1302,51
1303,14 1303,33
1304,270 1304,168
1305,261 1305,223
1306,268 1306,350
1307,69 1307,183
1308,274 1308,329
1309,147 1309,131
1310,242 1310,191
1311,177 1311,303
1312,153 1312,202
1313,130 1313,136
1314,68 1314,49
1315,515 1315,295
1316,106 1316,138
1317,245 1317,212
1318,182 1318,91
1319,324 1319,275
1320,223 1320,159
1321,232 1321,263
1322,390 1322,353
1323,192 1323,185
1324,318 1324,258
1325,100 1325,157
1326,141 1326,186
1327,60 1327,133
1328,342 1328,138
1329,89 1329,280
1330,89 1330,47
1331,215 1331,194
1332,385 1332,154
1333,402 1333,227
1334,132 1334,127
1335,187 1335,162
1336,51 1336,238
1337,494 1337,304
1338,30 1338,87
1339,356 1339,129
1340,286 1340,337
1341,278 1341,236
1342,423 1342,265
1343,117 1343,109
1344,274 1344,212
1345,360 1345,267
1346,279 1346,227
1347,236 1347,240
1348,253 1348,217
1349,271 1349,203
1350,177 1350,141
1351,286 1351,261
1352,311 1352,149
1353,413 1353,241
1354,101 1354,160
1355,400 1355,241
1356,438 1356,240
1357,248 1357,56
1358,32 1358,77
1359,519 1359,270
1360,53 1360,61
1361,289 1361,249
1362,514 1362,325
1363,270 1363,59
1364,340 1364,275
1365,241 1365,225
1366,264 1366,176
1367,81 1367,124
1368,202 1368,169
1369,15 1369,29
1370,168 1370,73
1371,284 1371,235
1372,206 1372,162
1373,234 1373,224
1374,492 1374,310
1375,82 1375,207
1376,65 1376,116
1377,270 1377,190
1378,77 1378,168
1379,121 1379,202
1380,379 1380,322
1381,150 1381,385
1382,375 1382,288
1383,259 1383,288
1384,228 1384,361
1385,292 1385,113
1386,200 1386,167
1387,32 1387,124
1388,258 1388,204
1389,47 1389,99
1390,240 1390,220
1391,234 1391,319
1392,53 1392,166
1393,408 1393,209
1394,41 1394,127
1395,175 1395,162
1396,278 1396,204
1397,221 1397,143
1398,224 1398,216
1399,261 1399,227
1400,169 1400,91
1401,307 1401,91
1402,20 1402,100
1403,53 1403,311
1404,111 1404,173
1405,74 1405,29
1406,86 1406,15
1407,23 1407,81
1408,364 1408,281
1409,41 1409,47
1410,365 1410,305
1411,319 1411,296
1412,52 1412,64
1413,240 1413,184
1414,278 1414,246
1415,107 1415,154
1416,107 1416,216
1417,117 1417,299
1418,40 1418,65
1419,62 1419,148
1420,404 1420,167
1421,54 1421,102
1422,296 1422,244
1423,295 1423,265
1424,53 1424,158
1425,45 1425,7
1426,60 1426,160
1427,106 1427,176
1428,384 1428,155
1429,317 1429,265
1430,235 1430,210
1431,357 1431,354
1432,419 1432,171
1433,102 1433,39
1434,124 1434,197
1435,7 1435,86
1436,135 1436,233
1437,290 1437,235
1438,267 1438,166
1439,26 1439,75
1440,23 1440,95
1441,9 1441,85
1442,365 1442,330
1443,92 1443,214
1444,62 1444,174
1445,296 1445,231
1446,359 1446,336
1447,366 1447,332
1448,127 1448,318
1449,384 1449,357
1450,40 1450,52
1451,305 1451,282
1452,19 1452,21
1453,138 1453,116
1454,133 1454,131
1455,247 1455,288
1456,80 1456,225
1457,278 1457,192
1458,194 1458,249
1459,2 1459,84
1460,91 1460,78
1461,165 1461,142
1462,66 1462,28
1463,90 1463,93
1464,202 1464,136
1465,307 1465,230
1466,299 1466,241
1467,410 1467,232
1468,48 1468,143
1469,314 1469,307
1470,90 1470,180
1471,134 1471,157
1472,110 1472,162
1473,50 1473,106
1474,54 1474,131
1475,163 1475,258
1476,418 1476,249
1477,426 1477,204
1478,205 1478,316
1479,298 1479,286
1480,342 1480,316
1481,75 1481,195
1482,396 1482,196
1483,220 1483,189
1484,394 1484,282
1485,151 1485,140
1486,49 1486,65
1487,120 1487,76
1488,389 1488,207
1489,236 1489,329
1490,94 1490,155
1491,58 1491,183
1492,190 1492,123
1493,159 1493,15
1494,40 1494,139
1495,173 1495,193
1496,35 1496,169
1497,283 1497,324
1498,266 1498,79
1499,192 1499,376
1500,343 1500,284
1501,136 1501,39
1502,275 1502,305
1503,246 1503,359
1504,17 1504,38
1505,91 1505,2
1506,205 1506,202
1507,65 1507,91
1508,181 1508,140
1509,63 1509,25
1510,67 1510,120
1511,107 1511,3
1512,72 1512,190
1513,6 1513,87
1514,178 1514,268
1515,384 1515,207
1516,336 1516,288
1517,421 1517,258
1518,227 1518,141
1519,545 1519,324
1520,45 1520,90
1521,423 1521,256
1522,148 1522,106
1523,231 1523,214
1524,20 1524,70
1525,120 1525,167
1526,345 1526,297
1527,89 1527,15
1528,415 1528,252
1529,36 1529,17
1530,263 1530,191
1531,20 1531,70
1532,19 1532,124
1533,185 1533,131
1534,11 1534,213
1535,204 1535,206
1536,94 1536,181
1537,61 1537,195
1538,226 1538,340
1539,290 1539,233
1540,209 1540,259
1541,64 1541,134
1542,50 1542,96
1543,84 1543,182
1544,320 1544,230
1545,157 1545,347
1546,357 1546,265
1547,219 1547,173
1548,173 1548,156
1549,16 1549,107
1550,215 1550,190
1551,184 1551,142
1552,156 1552,156
1553,243 1553,276
1554,211 1554,298
1555,275 1555,80
1556,261 1556,241
1557,271 1557,280
1558,245 1558,323
1559,188 1559,277
1560,52 1560,100
1561,79 1561,28
1562,260 1562,216
1563,318 1563,218
1564,100 1564,212
1565,199 1565,151
1566,292 1566,222
1567,266 1567,225
1568,528 1568,314
1569,200 1569,306
1570,72 1570,195
1571,332 1571,288
1572,195 1572,149
1573,13 1573,33
1574,223 1574,198
1575,218 1575,175
1576,196 1576,221
1577,207 1577,229
1578,453 1578,208
1579,213 1579,149
1580,51 1580,28
1581,480 1581,331
1582,330 1582,281
1583,305 1583,66
1584,343 1584,300
1585,230 1585,173
1586,38 1586,263
1587,255 1587,216
1588,160 1588,164
1589,182 1589,10
1590,117 1590,303
1591,496 1591,327
1592,252 1592,39
1593,197 1593,155
1594,293 1594,269
1595,255 1595,319
1596,155 1596,153
1597,200 1597,103
1598,116 1598,141
1599,463 1599,265
1600,170 1600,190
1601,230 1601,141
1602,281 1602,305
1603,83 1603,179
1604,74 1604,110
1605,311 1605,211
1606,299 1606,265
1607,28 1607,20
1608,490 1608,323
1609,317 1609,276
1610,462 1610,272
1611,263 1611,202
1612,86 1612,178
1613,297 1613,225
1614,82 1614,103
1615,28 1615,72
1616,206 1616,230
1617,17 1617,65
1618,18 1618,94
1619,35 1619,89
1620,8 1620,37
1621,231 1621,139
1622,225 1622,197
1623,395 1623,347
1624,342 1624,319
1625,34 1625,12
1626,149 1626,364
1627,106 1627,120
1628,319 1628,300
1629,303 1629,246
1630,347 1630,125
1631,209 1631,142
1632,184 1632,201
1633,174 1633,169
1634,198 1634,217
1635,189 1635,185
1636,264 1636,288
1637,340 1637,303
1638,171 1638,303
1639,86 1639,111
1640,181 1640,176
1641,470 1641,287
1642,154 1642,268
1643,216 1643,258
1644,402 1644,248
1645,291 1645,276
1646,202 1646,190
1647,13 1647,38
1648,9 1648,97
1649,236 1649,218
1650,91 1650,98
1651,271 1651,255
1652,98 1652,251
1653,543 1653,343
1654,121 1654,157
1655,14 1655,62
1656,145 1656,117
1657,71 1657,217
1658,364 1658,288
1659,87 1659,28
1660,129 1660,144
1661,247 1661,288
1662,311 1662,274
1663,25 1663,32
1664,68 1664,266
1665,17 1665,74
1666,54 1666,94
1667,75 1667,36
1668,19 1668,122
1669,399 1669,192
1670,56 1670,124
1671,208 1671,189
1672,138 1672,102
1673,74 1673,171
1674,377 1674,286
1675,13 1675,66
1676,399 1676,199
1677,481 1677,308
1678,98 1678,188
1679,457 1679,281
1680,275 1680,271
1681,25 1681,60
1682,479 1682,308
1683,108 1683,128
1684,64 1684,137
1685,131 1685,157
1686,350 1686,273
1687,66 1687,93
1688,72 1688,173
1689,18 1689,224
1690,41 1690,131
1691,267 1691,281
1692,111 1692,107
1693,131 1693,158
1694,303 1694,251
1695,62 1695,273
1696,123 1696,194
1697,34 1697,126
1698,13 1698,94
1699,307 1699,244
1700,208 1700,163
1701,267 1701,184
1702,200 1702,192
1703,280 1703,314
1704,27 1704,98
1705,294 1705,264
1706,417 1706,182
1707,11 1707,57
1708,19 1708,207
1709,290 1709,235
1710,21 1710,17
1711,194 1711,148
1712,207 1712,201
1713,148 1713,151
1714,201 1714,213
1715,26 1715,50
1716,247 1716,284
1717,277 1717,237
1718,338 1718,115
1719,55 1719,98
1720,3 1720,28
1721,25 1721,69
1722,189 1722,137
1723,231 1723,151
1724,234 1724,179
1725,207 1725,158
1726,90 1726,220
1727,329 1727,200
1728,78 1728,164
1729,252 1729,213
1730,150 1730,123
1731,442 1731,274
1732,189 1732,177
1733,90 1733,134
1734,49 1734,136
1735,339 1735,204
1736,95 1736,227
1737,57 1737,50
1738,405 1738,182
1739,227 1739,223
1740,213 1740,185
1741,31 1741,118
1742,153 1742,137
1743,153 1743,337
1744,278 1744,305
1745,133 1745,316
1746,152 1746,257
1747,228 1747,340
1748,379 1748,336
1749,213 1749,180
1750,65 1750,174
1751,14 1751,62
1752,170 1752,307
1753,13 1753,88
1754,306 1754,232
1755,282 1755,230
1756,3 1756,29
1757,270 1757,212
1758,60 1758,192
1759,142 1759,202
1760,118 1760,277
1761,78 1761,48
1762,320 1762,269
1763,260 1763,211
1764,96 1764,137
1765,479 1765,271
1766,468 1766,310
1767,8 1767,84
1768,52 1768,85
1769,338 1769,298
1770,70 1770,126
1771,69 1771,147
1772,269 1772,280
1773,47 1773,107
1774,425 1774,200
1775,33 1775,66
1776,231 1776,198
1777,187 1777,155
1778,16 1778,91
1779,53 1779,52
1780,357 1780,253
1781,282 1781,206
1782,76 1782,155
1783,348 1783,133
1784,319 1784,252
1785,71 1785,179
1786,434 1786,236
1787,124 1787,228
1788,144 1788,140
1789,277 1789,236
1790,87 1790,98
1791,252 1791,246
1792,149 1792,222
1793,240 1793,212
1794,141 1794,120
1795,298 1795,260
1796,340 1796,259
1797,224 1797,192
1798,335 1798,272
1799,303 1799,189
1800,129 1800,51
1801,145 1801,102
1802,34 1802,162
1803,80 1803,196
1804,175 1804,215
1805,142 1805,68
1806,340 1806,244
1807,339 1807,165
1808,100 1808,119
1809,351 1809,281
1810,26 1810,102
1811,347 1811,275
1812,189 1812,332
1813,8 1813,209
1814,128 1814,326
1815,22 1815,82
1816,383 1816,227
1817,224 1817,346
1818,288 1818,214
1819,175 1819,369
1820,173 1820,182
1821,335 1821,301
1822,283 1822,235
1823,16 1823,105
1824,186 1824,350
1825,65 1825,169
1826,361 1826,184
1827,327 1827,310
1828,261 1828,228
1829,382 1829,361
1830,25 1830,47
1831,34 1831,16
1832,14 1832,96
1833,221 1833,198
1834,218 1834,172
1835,42 1835,82
1836,321 1836,291
1837,151 1837,225
1838,192 1838,315
1839,225 1839,190
1840,107 1840,102
1841,419 1841,253
1842,172 1842,345
1843,316 1843,303
1844,279 1844,228
1845,29 1845,148
1846,207 1846,197
1847,29 1847,86
1848,522 1848,331
1849,81 1849,5
1850,24 1850,69
1851,347 1851,379
1852,210 1852,294
1853,282 1853,244
1854,299 1854,219
1855,454 1855,253
1856,157 1856,108
1857,498 1857,302
1858,101 1858,140
1859,128 1859,286
1860,340 1860,340
1861,3 1861,10
1862,257 1862,208
1863,195 1863,128
1864,77 1864,148
1865,72 1865,156
1866,327 1866,268
1867,67 1867,195
1868,16 1868,193
1869,279 1869,269
1870,450 1870,201
1871,229 1871,159
1872,359 1872,265
1873,138 1873,197
1874,463 1874,221
1875,117 1875,356
1876,244 1876,327
1877,227 1877,246
1878,370 1878,313
1879,331 1879,273
1880,70 1880,163
1881,351 1881,284
1882,106 1882,172
1883,106 1883,85
1884,37 1884,203
1885,33 1885,141
1886,56 1886,87
1887,306 1887,247
1888,79 1888,41
1889,348 1889,272
1890,273 1890,251
1891,102 1891,28
1892,134 1892,352
1893,80 1893,133
1894,172 1894,178
1895,6 1895,128
1896,85 1896,148
1897,85 1897,121
1898,84 1898,98
1899,368 1899,277
1900,316 1900,257
1901,85 1901,114
1902,230 1902,185
1903,301 1903,244
1904,224 1904,333
1905,406 1905,233
1906,283 1906,249
1907,395 1907,351
1908,86 1908,98
1909,46 1909,68
1910,321 1910,255
1911,247 1911,243
1912,171 1912,326
1913,125 1913,120
1914,222 1914,220
1915,12 1915,37
1916,77 1916,156
1917,206 1917,196
1918,29 1918,115
1919,281 1919,249
1920,175 1920,140
1921,60 1921,52
1922,319 1922,345
1923,337 1923,331
1924,12 1924,97
1925,108 1925,79
1926,41 1926,129
1927,443 1927,279
1928,508 1928,339
1929,250 1929,329
1930,78 1930,160
1931,400 1931,313
1932,70 1932,60
1933,48 1933,133
1934,361 1934,129
1935,298 1935,252
1936,389 1936,357
1937,382 1937,209
1938,350 1938,330
1939,68 1939,278
1940,13 1940,28
1941,252 1941,255
1942,230 1942,201
1943,61 1943,109
1944,6 1944,106
1945,51 1945,45
1946,82 1946,138
1947,279 1947,220
1948,427 1948,244
1949,131 1949,71
1950,21 1950,61
1951,26 1951,54
1952,109 1952,111
1953,153 1953,270
1954,68 1954,151
1955,250 1955,214
1956,60 1956,169
1957,28 1957,40
1958,328 1958,375
1959,31 1959,7
1960,49 1960,118
1961,277 1961,358
1962,317 1962,312
1963,526 1963,314
1964,246 1964,274
1965,255 1965,297
1966,119 1966,132
1967,367 1967,158
1968,287 1968,263
1969,28 1969,38
1970,150 1970,337
1971,23 1971,47
1972,84 1972,10
1973,186 1973,181
1974,391 1974,162
1975,245 1975,188
1976,374 1976,361
1977,360 1977,310
1978,321 1978,331
1979,382 1979,353
1980,224 1980,120
1981,23 1981,203
1982,238 1982,275
1983,54 1983,57
1984,238 1984,218
1985,246 1985,279
1986,33 1986,87
1987,105 1987,150
1988,296 1988,213
1989,120 1989,312
1990,44 1990,16
1991,85 1991,179
1992,288 1992,205
1993,494 1993,293
1994,146 1994,218
1995,36 1995,232
1996,95 1996,110
1997,228 1997,246
1998,297 1998,220
1999,78 1999,78
2000,171 2000,134
2001,126 2001,105
2002,0 2002,91
2003,38 2003,123
2004,16 2004,56
2005,156 2005,335
2006,169 2006,264
2007,157 2007,134
2008,310 2008,126
2009,165 2009,137
2010,303 2010,321
2011,55 2011,120
2012,315 2012,112
2013,253 2013,223
2014,373 2014,317
2015,128 2015,360
2016,89 2016,168
2017,109 2017,56
2018,466 2018,270
2019,7 2019,117
2020,160 2020,256
2021,248 2021,274
2022,272 2022,245
2023,342 2023,288
2024,14 2024,70
2025,323 2025,279
2026,194 2026,172
2027,13 2027,93
2028,199 2028,164
2029,426 2029,223
2030,174 2030,136
2031,318 2031,303
2032,188 2032,334
2033,278 2033,214
2034,198 2034,178
2035,218 2035,169
2036,43 2036,125
2037,197 2037,161
2038,1 2038,100
2039,174 2039,368
2040,277 2040,272
2041,23 2041,110
2042,388 2042,171
2043,297 2043,279
2044,123 2044,312
2045,64 2045,199
2046,326 2046,317
2047,53 2047,40
2048,421 2048,183
2049,470 2049,311
2050,339 2050,329
2051,62 2051,71
2052,129 2052,35
2053,119 2053,131
2054,197 2054,124
2055,73 2055,4
2056,216 2056,126
2057,11 2057,81
2058,399 2058,265
2059,90 2059,129
2060,110 2060,155
2061,23 2061,214
2062,62 2062,275
2063,54 2063,110
2064,249 2064,156
2065,264 2065,226
2066,232 2066,167
2067,74 2067,136
2068,0 2068,79
2069,52 2069,81
2070,317 2070,303
2071,9 2071,137
2072,355 2072,117
2073,34 2073,221
2074,316 2074,252
2075,208 2075,132
2076,355 2076,306
2077,180 2077,311
2078,263 2078,145
2079,196 2079,326
2080,310 2080,231
2081,332 2081,117
2082,474 2082,357
2083,134 2083,360
2084,111 2084,116
2085,501 2085,282
2086,182 2086,156
2087,64 2087,94
2088,78 2088,138
2089,19 2089,167
2090,63 2090,143
2091,14 2091,93
2092,56 2092,1
2093,408 2093,225
2094,393 2094,303
2095,319 2095,278
2096,16 2096,99
2097,425 2097,200
2098,19 2098,52
2099,439 2099,228
2100,53 2100,21
2101,324 2101,273
2102,75 2102,20
2103,183 2103,152
2104,265 2104,384
2105,248 2105,216
2106,144 2106,369
2107,157 2107,136
2108,458 2108,257
2109,225 2109,207
2110,259 2110,255
2111,81 2111,172
2112,158 2112,125
2113,19 2113,28
2114,72 2114,142
2115,536 2115,320
2116,65 2116,134
2117,46 2117,121
2118,309 2118,124
2119,70 2119,161
2120,61 2120,70
2121,143 2121,148
2122,200 2122,185
2123,66 2123,88
2124,187 2124,150
2125,182 2125,124
2126,401 2126,338
2127,115 2127,206
2128,74 2128,97
2129,28 2129,68
2130,131 2130,145
2131,110 2131,147
2132,251 2132,305
2133,50 2133,170
2134,147 2134,195
2135,270 2135,232
2136,226 2136,186
2137,134 2137,131
2138,496 2138,272
2139,255 2139,234
2140,284 2140,362
2141,96 2141,115
2142,354 2142,336
2143,409 2143,334
2144,13 2144,86
2145,106 2145,142
2146,178 2146,211
2147,216 2147,178
2148,300 2148,295
2149,138 2149,74
2150,230 2150,267
2151,0 2151,78
2152,525 2152,295
2153,308 2153,296
2154,289 2154,273
2155,236 2155,210
2156,288 2156,304
2157,178 2157,111
2158,207 2158,151
2159,136 2159,110
2160,233 2160,222
2161,253 2161,181
2162,466 2162,257
2163,67 2163,17
2164,30 2164,18
2165,265 2165,344
2166,286 2166,201
2167,312 2167,254
2168,429 2168,266
2169,214 2169,165
2170,314 2170,271
2171,274 2171,187
2172,420 2172,196
2173,11 2173,96
2174,280 2174,244
2175,38 2175,150
2176,367 2176,309
2177,322 2177,306
2178,231 2178,161
2179,428 2179,236
2180,19 2180,109
2181,273 2181,200
2182,119 2182,2
2183,464 2183,263
2184,117 2184,155
2185,283 2185,307
2186,95 2186,159
2187,84 2187,155
2188,250 2188,367
2189,525 2189,335
2190,13 2190,35
2191,44 2191,163
2192,322 2192,284
2193,139 2193,308
2194,54 2194,188
2195,213 2195,146
2196,304 2196,256
2197,161 2197,114
2198,465 2198,336
2199,479 2199,270
2200,205 2200,194
2201,114 2201,42
2202,98 2202,107
2203,40 2203,65
2204,333 2204,277
2205,146 2205,211
2206,17 2206,49
2207,213 2207,182
2208,10 2208,167
2209,211 2209,155
2210,148 2210,168
2211,88 2211,141
2212,233 2212,361
2213,397 2213,216
2214,242 2214,155
2215,9 2215,89
2216,52 2216,109
2217,60 2217,82
2218,144 2218,139
2219,272 2219,158
2220,392 2220,383
2221,6 2221,57
2222,271 2222,192
2223,263 2223,232
2224,39 2224,117
2225,248 2225,232
2226,24 2226,105
2227,293 2227,281
2228,72 2228,190
2229,244 2229,204
2230,157 2230,92
2231,38 2231,65
2232,282 2232,212
2233,13 2233,77
2234,55 2234,257
2235,52 2235,47
2236,261 2236,262
2237,422 2237,196
2238,286 2238,250
2239,263 2239,51
2240,179 2240,125
2241,501 2241,291
2242,321 2242,254
2243,290 2243,253
2244,381 2244,290
2245,73 2245,183
2246,287 2246,298
2247,307 2247,250
2248,259 2248,176
2249,411 2249,183
2250,16 2250,65
2251,508 2251,304
2252,196 2252,324
2253,264 2253,227
2254,211 2254,294
2255,47 2255,146
2256,317 2256,237
2257,498 2257,304
2258,0 2258,83
2259,250 2259,153
2260,308 2260,304
2261,230 2261,354
2262,261 2262,223
2263,147 2263,100
2264,229 2264,268
2265,345 2265,284
2266,25 2266,209
2267,479 2267,278
2268,182 2268,165
2269,273 2269,105
2270,111 2270,106
2271,126 2271,286
2272,117 2272,49
2273,102 2273,253
2274,356 2274,282
2275,209 2275,124
2276,306 2276,240
2277,321 2277,249
2278,211 2278,267
2279,129 2279,373
2280,295 2280,258
2281,45 2281,35
2282,170 2282,143
2283,247 2283,207
2284,55 2284,102
2285,149 2285,119
2286,152 2286,355
2287,164 2287,109
2288,163 2288,347
2289,293 2289,343
2290,90 2290,200
2291,280 2291,79
2292,76 2292,124
2293,19 2293,69
2294,258 2294,152
2295,39 2295,110
2296,12 2296,47
2297,65 2297,196
2298,81 2298,39
2299,361 2299,253
2300,88 2300,102
2301,327 2301,267
2302,321 2302,290
2303,416 2303,334
2304,224 2304,189
2305,394 2305,364
2306,345 2306,174
2307,196 2307,169
2308,131 2308,192
2309,81 2309,136
2310,78 2310,258
2311,48 2311,103
2312,61 2312,70
2313,238 2313,178
2314,212 2314,198
2315,62 2315,26
2316,288 2316,268
2317,245 2317,199
2318,152 2318,47
2319,163 2319,270
2320,376 2320,206
2321,85 2321,50
2322,26 2322,66
2323,268 2323,214
2324,151 2324,290
2325,6 2325,84
2326,273 2326,341
2327,38 2327,90
2328,76 2328,22
2329,20 2329,86
2330,203 2330,199
2331,361 2331,321
2332,142 2332,90
2333,42 2333,80
2334,147 2334,381
2335,28 2335,51
2336,104 2336,152
2337,11 2337,109
2338,522 2338,322
2339,436 2339,270
2340,57 2340,26
2341,355 2341,290
2342,326 2342,324
2343,355 2343,125
2344,253 2344,329
2345,69 2345,59
2346,227 2346,188
2347,281 2347,291
2348,143 2348,90
2349,204 2349,190
2350,239 2350,141
2351,242 2351,179
2352,251 2352,264
2353,225 2353,260
2354,77 2354,188
2355,129 2355,0
2356,487 2356,304
2357,57 2357,260
2358,56 2358,204
2359,141 2359,157
2360,79 2360,39
2361,320 2361,285
2362,209 2362,310
2363,483 2363,281
2364,506 2364,305
2365,343 2365,315
2366,57 2366,31
2367,192 2367,155
2368,75 2368,161
2369,135 2369,320
2370,292 2370,295
2371,252 2371,202
2372,333 2372,316
2373,235 2373,293
2374,11 2374,93
2375,245 2375,234
2376,105 2376,316
2377,275 2377,251
2378,64 2378,188
2379,276 2379,354
2380,239 2380,270
2381,7 2381,101
2382,34 2382,154
2383,318 2383,327
2384,325 2384,339
2385,254 2385,61
2386,132 2386,105
2387,321 2387,333
2388,278 2388,64
2389,331 2389,293
2390,202 2390,286
2391,346 2391,298
2392,22 2392,226
2393,6 2393,88
2394,39 2394,77
2395,309 2395,256
2396,211 2396,197
2397,91 2397,295
2398,419 2398,215
2399,280 2399,237
2400,35 2400,181
2401,56 2401,77
2402,82 2402,61
2403,173 2403,277
2404,158 2404,281
2405,95 2405,115
2406,358 2406,319
2407,64 2407,135
2408,268 2408,183
2409,210 2409,150
2410,204 2410,193
2411,395 2411,357
2412,191 2412,134
2413,268 2413,214
2414,281 2414,80
2415,79 2415,38
2416,4 2416,50
2417,453 2417,266
2418,184 2418,273
2419,195 2419,167
2420,503 2420,326
2421,205 2421,157
2422,328 2422,320
2423,191 2423,156
2424,390 2424,179
2425,255 2425,176
2426,26 2426,129
2427,141 2427,129
2428,62 2428,199
2429,4 2429,58
2430,237 2430,284
2431,524 2431,305
2432,269 2432,189
2433,159 2433,127
2434,264 2434,206
2435,325 2435,319
2436,334 2436,265
2437,159 2437,182
2438,151 2438,122
2439,152 2439,63
2440,111 2440,140
2441,481 2441,286
2442,79 2442,147
2443,190 2443,160
2444,394 2444,269
2445,352 2445,196
2446,61 2446,20
2447,199 2447,389
2448,203 2448,263
2449,217 2449,267
2450,24 2450,56
2451,73 2451,106
2452,357 2452,273
2453,285 2453,251
2454,50 2454,8
2455,284 2455,272
2456,246 2456,208
2457,107 2457,316
2458,145 2458,251
2459,477 2459,309
2460,286 2460,245
2461,373 2461,194
2462,162 2462,364
2463,543 2463,346
2464,356 2464,193
2465,47 2465,138
2466,157 2466,211
2467,297 2467,197
2468,266 2468,226
2469,332 2469,249
2470,172 2470,142
2471,161 2471,334
2472,297 2472,255
2473,91 2473,282
2474,42 2474,95
2475,88 2475,295
2476,245 2476,255
2477,198 2477,195
2478,162 2478,272
2479,86 2479,161
2480,33 2480,90
2481,113 2481,192
2482,515 2482,287
2483,101 2483,16
2484,346 2484,263
2485,338 2485,263
2486,244 2486,190
2487,129 2487,197
2488,313 2488,312
2489,56 2489,143
2490,97 2490,159
2491,378 2491,150
2492,362 2492,305
2493,26 2493,113
2494,136 2494,360
2495,420 2495,240
2496,104 2496,159
2497,245 2497,258
2498,257 2498,55
2499,281 2499,286
2500,156 2500,311
2501,16 2501,106
2502,368 2502,192
2503,323 2503,277
2504,334 2504,154
2505,319 2505,314
2506,197 2506,336
2507,45 2507,108
2508,274 2508,231
2509,125 2509,256
2510,213 2510,180
2511,85 2511,35
2512,101 2512,114
2513,175 2513,104
2514,265 2514,227
2515,264 2515,192
2516,48 2516,106
2517,119 2517,141
2518,527 2518,339
2519,138 2519,143
2520,206 2520,164
2521,211 2521,354
2522,323 2522,277
2523,46 2523,68
2524,148 2524,85
2525,134 2525,301
2526,53 2526,286
2527,119 2527,94
2528,342 2528,120
2529,11 2529,108
2530,280 2530,85
2531,73 2531,108
2532,265 2532,154
2533,316 2533,261
2534,20 2534,153
2535,447 2535,269
2536,107 2536,119
2537,355 2537,284
2538,297 2538,231
2539,184 2539,122
2540,90 2540,2
2541,148 2541,343
2542,3 2542,41
2543,36 2543,94
2544,170 2544,102
2545,229 2545,187
2546,475 2546,310
2547,257 2547,297
2548,324 2548,238
2549,31 2549,95
2550,395 2550,294
2551,202 2551,259
2552,220 2552,153
2553,214 2553,328
2554,358 2554,291
2555,221 2555,153
2556,306 2556,139
2557,34 2557,66
2558,247 2558,166
2559,271 2559,232
2560,74 2560,282
2561,256 2561,222
2562,372 2562,218
2563,478 2563,261
2564,206 2564,176
2565,22 2565,82
2566,236 2566,272
2567,140 2567,127
2568,89 2568,132
2569,110 2569,293
2570,32 2570,110
2571,364 2571,155
2572,44 2572,57
2573,158 2573,329
2574,291 2574,250
2575,362 2575,162
2576,112 2576,38
2577,324 2577,257
2578,107 2578,289
2579,42 2579,86
2580,13 2580,13
2581,370 2581,216
2582,377 2582,337
2583,320 2583,312
2584,237 2584,359
2585,99 2585,190
2586,188 2586,175
2587,248 2587,203
2588,317 2588,196
2589,283 2589,345
2590,159 2590,227
2591,82 2591,121
2592,195 2592,128
2593,195 2593,138
2594,486 2594,315
2595,265 2595,208
2596,17 2596,43
2597,259 2597,299
2598,321 2598,126
2599,287 2599,310
2600,539 2600,343
2601,366 2601,286
2602,134 2602,190
2603,80 2603,131
2604,49 2604,129
2605,211 2605,132
2606,7 2606,86
2607,25 2607,77
2608,317 2608,277
2609,51 2609,183
2610,248 2610,186
2611,301 2611,284
2612,151 2612,21
2613,402 2613,203
2614,183 2614,157
2615,198 2615,190
2616,79 2616,124
2617,498 2617,302
2618,37 2618,70
2619,212 2619,164
2620,12 2620,112
2621,311 2621,179
2622,2 2622,104
2623,137 2623,192
2624,40 2624,270
2625,55 2625,131
2626,132 2626,253
2627,226 2627,219
2628,300 2628,250
2629,310 2629,268
2630,101 2630,183
2631,74 2631,105
2632,222 2632,145
2633,154 2633,360
2634,300 2634,277
2635,143 2635,120
2636,102 2636,269
2637,324 2637,239
2638,84 2638,38
2639,407 2639,219
2640,246 2640,164
2641,173 2641,285
2642,384 2642,222
2643,280 2643,208
2644,88 2644,107
2645,418 2645,200
2646,40 2646,25
2647,11 2647,97
2648,439 2648,240
2649,282 2649,225
2650,61 2650,178
2651,25 2651,32
2652,197 2652,169
2653,63 2653,117
2654,171 2654,168
2655,213 2655,350
2656,41 2656,106
2657,34 2657,93
2658,105 2658,30
2659,88 2659,150
2660,456 2660,244
2661,92 2661,173
2662,42 2662,86
2663,44 2663,183
2664,312 2664,256
2665,32 2665,81
2666,496 2666,344
2667,415 2667,176
2668,25 2668,4
2669,173 2669,322
2670,321 2670,100
2671,103 2671,124
2672,165 2672,168
2673,309 2673,265
2674,77 2674,156
2675,408 2675,227
2676,379 2676,161
2677,93 2677,59
2678,152 2678,278
2679,23 2679,103
2680,298 2680,250
2681,337 2681,288
2682,304 2682,277
2683,570 2683,328
2684,280 2684,310
2685,412 2685,315
2686,31 2686,93
2687,125 2687,101
2688,379 2688,330
2689,42 2689,178
2690,5 2690,19
2691,462 2691,251
2692,31 2692,59
2693,90 2693,33
2694,92 2694,119
2695,397 2695,244
2696,407 2696,252
2697,177 2697,332
2698,40 2698,68
2699,176 2699,172
2700,233 2700,322
2701,47 2701,195
2702,18 2702,191
2703,175 2703,164
2704,118 2704,95
2705,406 2705,190
2706,215 2706,112
2707,337 2707,103
2708,118 2708,326
2709,48 2709,173
2710,3 2710,180
2711,491 2711,310
2712,124 2712,233
2713,100 2713,159
2714,276 2714,297
2715,326 2715,172
2716,264 2716,168
2717,102 2717,267
2718,77 2718,99
2719,362 2719,197
2720,35 2720,46
2721,16 2721,184
2722,507 2722,287
2723,282 2723,240
2724,339 2724,133
2725,105 2725,105
2726,121 2726,139
2727,268 2727,276
2728,245 2728,297
2729,198 2729,192
2730,298 2730,329
2731,104 2731,99
2732,76 2732,114
2733,38 2733,11
2734,86 2734,31
2735,134 2735,165
2736,233 2736,210
2737,334 2737,343
2738,79 2738,254
2739,48 2739,122
2740,29 2740,16
2741,8 2741,97
2742,268 2742,166
2743,165 2743,165
2744,238 2744,223
2745,87 2745,177
2746,381 2746,159
2747,225 2747,170
2748,318 2748,299
2749,150 2749,222
2750,69 2750,134
2751,8 2751,41
2752,194 2752,351
2753,169 2753,335
2754,214 2754,201
2755,527 2755,295
2756,407 2756,213
2757,99 2757,121
2758,112 2758,116
2759,190 2759,250
2760,15 2760,88
2761,275 2761,68
2762,279 2762,225
2763,136 2763,95
2764,81 2764,6
2765,197 2765,238
2766,179 2766,220
2767,76 2767,124
2768,242 2768,216
2769,326 2769,172
2770,393 2770,190
2771,126 2771,27
2772,91 2772,150
2773,111 2773,38
2774,223 2774,213
2775,35 2775,38
2776,201 2776,126
2777,366 2777,277
2778,298 2778,289
2779,513 2779,287
2780,146 2780,262
2781,266 2781,259
2782,72 2782,94
2783,249 2783,226
2784,138 2784,101
2785,304 2785,215
2786,223 2786,183
2787,493 2787,325
2788,163 2788,132
2789,351 2789,279
2790,407 2790,245
2791,67 2791,249
2792,221 2792,254
2793,59 2793,139
2794,66 2794,34
2795,404 2795,305
2796,315 2796,254
2797,273 2797,224
2798,39 2798,139
2799,282 2799,204
2800,339 2800,114
2801,62 2801,129
2802,289 2802,341
2803,296 2803,241
2804,440 2804,241
2805,264 2805,241
2806,37 2806,150
2807,337 2807,256
2808,194 2808,380
2809,96 2809,34
2810,34 2810,113
2811,88 2811,150
2812,112 2812,286
2813,50 2813,0
2814,60 2814,2
2815,373 2815,278
2816,23 2816,184
2817,72 2817,179
2818,59 2818,138
2819,348 2819,187
2820,520 2820,287
2821,314 2821,241
2822,349 2822,284
2823,5 2823,44
2824,293 2824,134
2825,152 2825,106
2826,163 2826,322
2827,21 2827,96
2828,68 2828,89
2829,126 2829,140
2830,455 2830,270
2831,352 2831,160
2832,384 2832,290
2833,5 2833,39
2834,48 2834,134
2835,392 2835,241
2836,100 2836,64
2837,102 2837,150
2838,284 2838,264
2839,51 2839,12
2840,251 2840,289
2841,197 2841,132
2842,10 2842,196
2843,234 2843,258
2844,63 2844,109
2845,13 2845,42
2846,192 2846,163
2847,143 2847,127
2848,304 2848,318
2849,144 2849,356
2850,205 2850,142
2851,178 2851,82
2852,27 2852,108
2853,53 2853,0
2854,98 2854,47
2855,316 2855,133
2856,163 2856,87
2857,131 2857,243
2858,12 2858,91
2859,32 2859,54
2860,283 2860,242
2861,9 2861,55
2862,227 2862,166
2863,18 2863,97
2864,29 2864,61
2865,256 2865,235
2866,248 2866,215
2867,45 2867,94
2868,364 2868,158
2869,295 2869,228
2870,216 2870,178
2871,229 2871,193
2872,281 2872,68
2873,233 2873,166
2874,517 2874,279
2875,86 2875,163
2876,17 2876,117
2877,184 2877,143
2878,269 2878,227
2879,189 2879,117
2880,69 2880,37
2881,193 2881,248
2882,104 2882,167
2883,44 2883,153
2884,229 2884,251
2885,273 2885,272
2886,44 2886,26
2887,225 2887,182
2888,410 2888,194
2889,26 2889,48
2890,67 2890,19
2891,307 2891,263
2892,166 2892,169
2893,235 2893,298
2894,143 2894,328
2895,294 2895,337
2896,427 2896,262
2897,193 2897,173
2898,233 2898,223
2899,276 2899,350
2900,344 2900,124
2901,253 2901,201
2902,483 2902,282
2903,117 2903,261
2904,294 2904,258
2905,27 2905,113
2906,181 2906,160
2907,55 2907,139
2908,52 2908,129
2909,50 2909,78
2910,164 2910,291
2911,290 2911,263
2912,91 2912,119
2913,47 2913,27
2914,240 2914,254
2915,147 2915,209
2916,305 2916,358
2917,93 2917,94
2918,123 2918,145
2919,46 2919,113
2920,307 2920,256
2921,73 2921,263
2922,34 2922,12
2923,179 2923,146
2924,170 2924,153
2925,20 2925,113
2926,173 2926,153
2927,297 2927,277
2928,219 2928,204
2929,225 2929,188
2930,197 2930,332
2931,132 2931,135
2932,364 2932,271
2933,88 2933,168
2934,3 2934,69
2935,153 2935,90
2936,54 2936,145
2937,492 2937,328
2938,322 2938,298
2939,169 2939,122
2940,124 2940,308
2941,80 2941,262
2942,251 2942,267
2943,183 2943,160
2944,275 2944,237
2945,166 2945,394
2946,217 2946,198
2947,103 2947,92
2948,342 2948,133
2949,278 2949,214
2950,12 2950,58
2951,139 2951,85
2952,72 2952,135
2953,107 2953,197
2954,135 2954,133
2955,81 2955,16
2956,413 2956,195
2957,38 2957,8
2958,48 2958,89
2959,242 2959,204
2960,185 2960,142
2961,211 2961,169
2962,101 2962,240
2963,7 2963,76
2964,74 2964,127
2965,326 2965,300
2966,395 2966,237
2967,344 2967,112
2968,74 2968,272
2969,34 2969,66
2970,102 2970,259
2971,8 2971,66
2972,213 2972,210
2973,33 2973,103
2974,110 2974,295
2975,498 2975,335
2976,147 2976,168
2977,465 2977,253
2978,53 2978,212
2979,198 2979,237
2980,284 2980,223
2981,283 2981,195
2982,312 2982,333
2983,521 2983,326
2984,282 2984,242
2985,294 2985,76
2986,161 2986,30
2987,340 2987,124
2988,55 2988,24
2989,270 2989,251
2990,57 2990,245
2991,24 2991,71
2992,230 2992,239
2993,45 2993,33
2994,322 2994,212
2995,381 2995,290
2996,65 2996,72
2997,317 2997,229
2998,223 2998,218
2999,90 2999,155
3000,32 3000,183
3001,266 3001,185
3002,54 3002,91
3003,212 3003,225
3004,77 3004,143
3005,178 3005,92
3006,255 3006,272
3007,137 3007,39
3008,256 3008,240
3009,284 3009,240
3010,269 3010,329
3011,75 3011,278
3012,57 3012,152
3013,99 3013,4
3014,105 3014,116
3015,26 3015,89
3016,138 3016,304
3017,125 3017,194
3018,60 3018,33
3019,216 3019,213
3020,267 3020,232
3021,14 3021,46
3022,222 3022,290
3023,168 3023,350
3024,536 3024,326
3025,246 3025,220
3026,244 3026,323
3027,120 3027,95
3028,274 3028,310
3029,77 3029,98
3030,309 3030,286
3031,100 3031,163
3032,55 3032,163
3033,84 3033,151
3034,336 3034,244
3035,401 3035,176
3036,217 3036,195
3037,127 3037,157
3038,5 3038,77
3039,192 3039,163
3040,142 3040,259
3041,310 3041,225
3042,24 3042,45
3043,79 3043,101
3044,179 3044,355
3045,128 3045,122
3046,143 3046,197
3047,239 3047,184
3048,172 3048,91
3049,63 3049,192
3050,134 3050,280
3051,279 3051,191
3052,127 3052,197
3053,153 3053,92
3054,217 3054,197
3055,246 3055,211
3056,348 3056,178
3057,278 3057,289
3058,233 3058,263
3059,191 3059,338
3060,102 3060,220
3061,283 3061,345
3062,199 3062,186
3063,21 3063,84
3064,123 3064,320
3065,12 3065,33
3066,10 3066,150
3067,20 3067,83
3068,97 3068,177
3069,325 3069,270
3070,323 3070,264
3071,77 3071,166
3072,231 3072,183
3073,109 3073,220
3074,160 3074,113
3075,200 3075,188
3076,76 3076,190
3077,50 3077,120
3078,143 3078,214
3079,191 3079,124
3080,95 3080,119
3081,254 3081,304
3082,135 3082,90
3083,316 3083,272
3084,400 3084,219
3085,321 3085,245
3086,267 3086,207
3087,240 3087,276
3088,123 3088,172
3089,13 3089,86
3090,71 3090,94
3091,359 3091,134
3092,69 3092,34
3093,188 3093,182
3094,121 3094,181
3095,91 3095,168
3096,77 3096,177
3097,351 3097,305
3098,54 3098,69
3099,52 3099,122
3100,347 3100,312
3101,62 3101,186
3102,500 3102,336
3103,529 3103,360
3104,337 3104,243
3105,222 3105,153
3106,220 3106,268
3107,16 3107,83
3108,10 3108,58
3109,71 3109,70
3110,317 3110,256
3111,167 3111,164
3112,236 3112,194
3113,120 3113,312
3114,28 3114,100
3115,384 3115,232
3116,185 3116,328
3117,295 3117,101
3118,153 3118,51
3119,403 3119,233
3120,95 3120,226
3121,135 3121,161
3122,251 3122,350
3123,300 3123,299
3124,308 3124,307
3125,297 3125,236
3126,19 3126,23
3127,150 3127,235
3128,176 3128,268
3129,498 3129,323
3130,283 3130,256
3131,206 3131,120
3132,153 3132,364
3133,340 3133,301
3134,242 3134,147
3135,24 3135,122
3136,325 3136,132
3137,378 3137,257
3138,79 3138,169
3139,70 3139,154
3140,241 3140,319
3141,430 3141,274
3142,121 3142,69
3143,133 3143,157
3144,336 3144,302
3145,137 3145,120
3146,69 3146,52
3147,0 3147,27
3148,326 3148,100
3149,211 3149,345
3150,86 3150,168
3151,289 3151,216
3152,65 3152,191
3153,312 3153,262
3154,294 3154,242
3155,182 3155,33
3156,139 3156,312
3157,115 3157,56
3158,101 3158,31
3159,243 3159,223
3160,207 3160,198
3161,208 3161,315
3162,450 3162,234
3163,31 3163,103
3164,267 3164,248
3165,54 3165,65
3166,76 3166,152
3167,419 3167,237
3168,142 3168,249
3169,84 3169,202
3170,279 3170,249
3171,371 3171,321
3172,20 3172,65
3173,148 3173,67
3174,92 3174,137
3175,80 3175,77
3176,65 3176,102
3177,212 3177,172
3178,99 3178,188
3179,279 3179,264
3180,245 3180,133
3181,46 3181,97
3182,8 3182,44
3183,219 3183,163
3184,247 3184,190
3185,120 3185,122
3186,93 3186,213
3187,53 3187,75
3188,209 3188,189
3189,322 3189,282
3190,87 3190,43
3191,275 3191,223
3192,322 3192,267
3193,65 3193,185
3194,78 3194,179
3195,233 3195,327
3196,63 3196,102
3197,168 3197,185
3198,11 3198,27
3199,147 3199,320
3200,112 3200,30
3201,29 3201,3
3202,208 3202,167
3203,79 3203,13
3204,223 3204,120
3205,9 3205,120
3206,297 3206,277
3207,54 3207,102
3208,322 3208,225
3209,45 3209,169
3210,495 3210,322
3211,154 3211,77
3212,267 3212,258
3213,47 3213,53
3214,286 3214,254
3215,279 3215,211
3216,247 3216,195
3217,309 3217,300
3218,144 3218,290
3219,30 3219,204
3220,208 3220,171
3221,69 3221,179
3222,193 3222,186
3223,329 3223,267
3224,197 3224,103
3225,7 3225,75
3226,239 3226,228
3227,12 3227,124
3228,288 3228,310
3229,266 3229,329
3230,85 3230,124
3231,197 3231,354
3232,348 3232,279
3233,483 3233,284
3234,181 3234,203
3235,277 3235,256
3236,205 3236,167
3237,51 3237,69
3238,54 3238,188
3239,7 3239,233
3240,96 3240,159
3241,185 3241,146
3242,68 3242,143
3243,15 3243,99
3244,60 3244,123
3245,89 3245,144
3246,215 3246,167
3247,119 3247,136
3248,189 3248,194
3249,10 3249,92
3250,260 3250,208
3251,81 3251,152
3252,113 3252,253
3253,152 3253,105
3254,265 3254,201
3255,69 3255,23
3256,253 3256,230
3257,434 3257,276
3258,170 3258,316
3259,237 3259,137
3260,398 3260,330
3261,162 3261,122
3262,77 3262,220
3263,85 3263,53
3264,82 3264,45
3265,413 3265,190
3266,142 3266,137
3267,321 3267,321
3268,171 3268,148
3269,74 3269,86
3270,112 3270,165
3271,154 3271,103
3272,268 3272,189
3273,500 3273,262
3274,428 3274,270
3275,103 3275,114
3276,221 3276,216
3277,62 3277,161
3278,42 3278,53
3279,277 3279,216
3280,296 3280,235
3281,124 3281,103
3282,321 3282,249
3283,154 3283,175
3284,18 3284,55
3285,258 3285,185
3286,130 3286,19
3287,138 3287,77
3288,343 3288,273
3289,133 3289,181
3290,307 3290,314
3291,260 3291,226
3292,94 3292,159
3293,441 3293,230
3294,174 3294,116
3295,263 3295,263
3296,125 3296,295
3297,87 3297,94
3298,210 3298,129
3299,285 3299,312
3300,221 3300,214
3301,55 3301,129
3302,529 3302,347
3303,10 3303,71
3304,26 3304,118
3305,83 3305,231
3306,0 3306,97
3307,329 3307,249
3308,57 3308,136
3309,268 3309,183
3310,174 3310,362
3311,122 3311,115
3312,139 3312,54
3313,151 3313,256
3314,218 3314,199
3315,304 3315,250
3316,48 3316,251
3317,292 3317,268
3318,297 3318,249
3319,241 3319,327
3320,253 3320,38
3321,272 3321,243
3322,475 3322,295
3323,73 3323,135
3324,62 3324,135
3325,34 3325,69
3326,236 3326,194
3327,163 3327,125
3328,20 3328,21
3329,294 3329,291
3330,174 3330,152
3331,249 3331,208
3332,39 3332,133
3333,176 3333,87
3334,87 3334,14
3335,93 3335,168
3336,161 3336,88
3337,416 3337,245
3338,218 3338,298
3339,44 3339,8
3340,97 3340,118
3341,280 3341,216
3342,258 3342,183
3343,135 3343,144
3344,145 3344,134
3345,153 3345,197
3346,352 3346,290
3347,94 3347,68
3348,262 3348,58
3349,78 3349,130
3350,268 3350,227
3351,172 3351,119
3352,323 3352,298
3353,26 3353,108
3354,320 3354,284
3355,27 3355,119
3356,4 3356,42
3357,159 3357,86
3358,66 3358,183
3359,28 3359,25
3360,35 3360,30
3361,249 3361,212
3362,137 3362,92
3363,473 3363,327
3364,306 3364,234
3365,202 3365,177
3366,48 3366,178
3367,329 3367,277
3368,257 3368,234
3369,60 3369,102
3370,174 3370,166
3371,82 3371,164
3372,48 3372,92
3373,387 3373,146
3374,30 3374,258
3375,35 3375,29
3376,181 3376,178
3377,111 3377,159
3378,106 3378,140
3379,71 3379,276
3380,195 3380,128
3381,275 3381,232
3382,224 3382,298
3383,45 3383,65
3384,456 3384,257
3385,365 3385,305
3386,304 3386,294
3387,257 3387,218
3388,335 3388,259
3389,147 3389,136
3390,321 3390,321
3391,137 3391,144
3392,185 3392,103
3393,212 3393,178
3394,54 3394,14
3395,183 3395,299
3396,94 3396,146
3397,285 3397,209
3398,207 3398,207
3399,100 3399,119
3400,56 3400,154
3401,274 3401,314
3402,137 3402,127
3403,263 3403,202
3404,83 3404,102
3405,300 3405,195
3406,8 3406,60
3407,114 3407,149
3408,75 3408,164
3409,377 3409,334
3410,273 3410,150
3411,326 3411,298
3412,353 3412,277
3413,379 3413,154
3414,189 3414,184
3415,44 3415,133
3416,289 3416,220
3417,162 3417,326
3418,189 3418,289
3419,184 3419,307
3420,359 3420,188
3421,297 3421,206
3422,128 3422,153
3423,510 3423,331
3424,281 3424,246
3425,122 3425,49
3426,120 3426,162
3427,175 3427,167
3428,54 3428,74
3429,308 3429,253
3430,192 3430,371
3431,71 3431,196
3432,34 3432,117
3433,62 3433,3
3434,264 3434,158
3435,60 3435,40
3436,380 3436,284
3437,270 3437,380
3438,0 3438,100
3439,142 3439,63
3440,234 3440,224
3441,455 3441,302
3442,131 3442,119
3443,15 3443,88
3444,160 3444,138
3445,145 3445,63
3446,504 3446,262
3447,66 3447,133
3448,292 3448,211
3449,279 3449,305
3450,452 3450,253
3451,292 3451,229
3452,94 3452,150
3453,58 3453,11
3454,245 3454,196
3455,123 3455,343
3456,277 3456,195
3457,7 3457,39
3458,110 3458,352
3459,167 3459,134
3460,147 3460,188
3461,284 3461,231
3462,98 3462,279
3463,296 3463,235
3464,386 3464,224
3465,179 3465,277
3466,141 3466,165
3467,115 3467,92
3468,345 3468,260
3469,105 3469,48
3470,67 3470,124
3471,218 3471,246
3472,0 3472,54
3473,85 3473,286
3474,52 3474,109
3475,213 3475,182
3476,11 3476,96
3477,262 3477,174
3478,101 3478,32
3479,206 3479,313
3480,286 3480,314
3481,23 3481,73
3482,314 3482,291
3483,119 3483,115
3484,512 3484,329
3485,45 3485,81
3486,8 3486,54
3487,128 3487,98
3488,375 3488,289
3489,171 3489,189
3490,207 3490,293
3491,102 3491,190
3492,96 3492,115
3493,317 3493,251
3494,355 3494,328
3495,42 3495,25
3496,39 3496,105
3497,370 3497,270
3498,23 3498,171
3499,229 3499,199
3500,216 3500,325
3501,161 3501,200
3502,369 3502,330
3503,92 3503,119
3504,147 3504,144
3505,48 3505,82
3506,371 3506,193
3507,132 3507,277
3508,127 3508,92
3509,199 3509,153
3510,215 3510,198
3511,322 3511,302
3512,397 3512,192
3513,73 3513,124
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment