Skip to content

Instantly share code, notes, and snippets.

@ljwolf
Last active November 18, 2024 13:44
Show Gist options
  • Save ljwolf/e5927ab8c859ed477f496329c1ce19fc to your computer and use it in GitHub Desktop.
Save ljwolf/e5927ab8c859ed477f496329c1ce19fc to your computer and use it in GitHub Desktop.
This is an example problem for routing guiness delivery trucks to all the pubs in Dublin from the Guinness Storehouse. See the solution map here: https://www.ljwolf.org/vrpint.html
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
import geopandas, pandas, numpy
from heuristic import LastMile
from pyvrp import stop
gdf = geopandas.read_file("./data/dublinpubs.geojson")
depot = gdf.iloc[0,:]
clients = gdf.iloc[1:,:].reset_index(drop=True)
clients = clients.set_index(clients.osmid.astype(str))
trucks = pandas.DataFrame(
[['big', 'lng', 2000, 280, .004, .50, 5],
['big', 'electric', 2000, 480, .002, .50, 5],
['med', 'lng', 800, 280*.66, .0001, .63, 10],
['med', 'electric', 800, 480*.66, .004, .50, 10],
['smo', 'lng', 400, 280*0.4, .002, .50, 20],
['smo', 'electric', 400, 480*0.4, .0001, .63, 20],
],
columns = [
'namesize', 'namefuel', 'capacity',
'fixed_cost', 'cost_per_meter', 'cost_per_minute', 'n_truck'
]
)
print('initializing model')
m = LastMile(
depot_location=(depot.longitude.item(), depot.latitude.item()),
depot_open=pandas.Timestamp("2030-01-02 07:00:00"),
depot_close=pandas.Timestamp("2030-01-02 20:00:00"),
depot_name=depot['name'],
)
print("adding clients")
m.add_clients(
locations = clients.geometry,
delivery = clients.demand,
pickup = clients.supply,
time_windows=None,
service_times=(numpy.log(clients.demand)**2).astype(int)
)
print("adding trucks")
m.add_trucks_from_frame(
trucks,
)
m.solve(stop=stop.MaxRuntime(60))
m.write_result("./guinness")
route_name truck_type duration_min distance_m fuel_cost_€ labor_cost_€ truck_cost_€ total_cost_€ departure arrival utilization_time utilization_load utilization_rangelimit
0 ancient-cornett 2 78 15837 1.5837 49.14 184.8 235.5237 2030-01-02 07:01:00 2030-01-02 08:19:00 17.33 99.0 0.0
1 boxy-leblanc 2 123 36950 3.695 77.49 184.8 265.985 2030-01-02 07:01:00 2030-01-02 09:04:00 27.33 99.75 0.0
2 broad-beaumont 2 101 26424 2.6424 63.63 184.8 251.0724 2030-01-02 07:01:00 2030-01-02 08:42:00 22.44 99.5 0.0
3 chamfered-bellamy 2 87 22010 2.201 54.81 184.8 241.811 2030-01-02 07:01:00 2030-01-02 08:28:00 19.33 99.75 0.0
4 dark-fortier 0 148 11101 44.404 74.0 280.0 398.404 2030-01-02 07:01:00 2030-01-02 09:29:00 32.89 99.8 0.0
5 exothermic-armistead 2 100 28577 2.8577 63.0 184.8 250.6577 2030-01-02 07:01:00 2030-01-02 08:41:00 22.22 100.0 0.0
6 free-favreau 0 152 16591 66.364 76.0 280.0 422.364 2030-01-02 07:01:00 2030-01-02 09:33:00 33.78 99.9 0.0
7 frozen-thomas 2 93 26230 2.623 58.59 184.8 246.013 2030-01-02 07:01:00 2030-01-02 08:34:00 20.67 99.25 0.0
8 gentle-fabian 1 179 30284 60.568 89.5 480.0 630.068 2030-01-02 07:01:00 2030-01-02 10:00:00 39.78 99.2 0.0
9 massive-blanc 4 33 5826 11.652 16.5 112.0 140.152 2030-01-02 07:01:00 2030-01-02 07:34:00 7.33 87.0 0.0
10 ordered-merle 2 124 40937 4.0937 78.12 184.8 267.0137 2030-01-02 07:01:00 2030-01-02 09:05:00 27.56 100.0 0.0
11 shiny-lambert 2 66 11136 1.1136 41.58 184.8 227.4936 2030-01-02 07:01:00 2030-01-02 08:07:00 14.67 98.5 0.0
12 simple-dupond 0 161 17619 70.476 80.5 280.0 430.976 2030-01-02 07:01:00 2030-01-02 09:42:00 35.78 99.8 0.0
13 vivid-legrand 2 95 23186 2.3186 59.85 184.8 246.9686 2030-01-02 07:01:00 2030-01-02 08:36:00 21.11 99.75 0.0
route_name stop_idx eta stop_number target_uid delivery pickup service_time open_1 close_1
510 ancient-cornett 103 2030-01-02 07:06:00 1 1332272327 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
511 ancient-cornett 287 2030-01-02 07:08:00 2 12179155624 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
512 ancient-cornett 100 2030-01-02 07:11:00 3 1326700611 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
513 ancient-cornett 449 2030-01-02 07:15:00 4 383992493 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
514 ancient-cornett 447 2030-01-02 07:17:00 5 383974974 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
515 ancient-cornett 446 2030-01-02 07:18:00 6 383974966 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
516 ancient-cornett 448 2030-01-02 07:20:00 7 383974977 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
517 ancient-cornett 428 2030-01-02 07:22:00 8 308099353 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
518 ancient-cornett 426 2030-01-02 07:24:00 9 307150002 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
519 ancient-cornett 525 2030-01-02 07:28:00 10 977365000 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
520 ancient-cornett 474 2030-01-02 07:31:00 11 660054530 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
521 ancient-cornett 477 2030-01-02 07:34:00 12 662919753 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
522 ancient-cornett 494 2030-01-02 07:38:00 13 741013943 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
523 ancient-cornett 417 2030-01-02 07:41:00 14 292185701 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
524 ancient-cornett 483 2030-01-02 07:43:00 15 681374550 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
525 ancient-cornett 443 2030-01-02 07:46:00 16 356323694 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
526 ancient-cornett 482 2030-01-02 07:48:00 17 679432837 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
527 ancient-cornett 463 2030-01-02 07:50:00 18 561372021 16 7 13 2030-01-02 07:00:00 2030-01-02 20:00:00
528 ancient-cornett 5 2030-01-02 07:53:00 19 280123269 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
529 ancient-cornett 416 2030-01-02 07:55:00 20 292185700 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
530 ancient-cornett 535 2030-01-02 07:58:00 21 1074353199 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
531 ancient-cornett 367 2030-01-02 08:00:00 22 252713065 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
532 ancient-cornett 540 2030-01-02 08:02:00 23 1084223124 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
533 ancient-cornett 266 2030-01-02 08:05:00 24 10275525043 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
534 ancient-cornett 329 2030-01-02 08:09:00 25 229061165 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
535 ancient-cornett 327 2030-01-02 08:11:00 26 229061161 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
536 ancient-cornett 467 2030-01-02 08:13:00 27 619879360 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
453 boxy-leblanc 307 2030-01-02 07:12:00 1 128942373 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
454 boxy-leblanc 200 2030-01-02 07:19:00 2 4021198488 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
455 boxy-leblanc 414 2030-01-02 07:22:00 3 289743485 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
456 boxy-leblanc 521 2030-01-02 07:25:00 4 972279383 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
457 boxy-leblanc 243 2030-01-02 07:29:00 5 6795621382 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
458 boxy-leblanc 515 2030-01-02 07:33:00 6 963190830 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
459 boxy-leblanc 138 2030-01-02 07:35:00 7 1615384981 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
460 boxy-leblanc 420 2030-01-02 07:40:00 8 296152664 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
461 boxy-leblanc 530 2030-01-02 07:42:00 9 1022471493 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
462 boxy-leblanc 532 2030-01-02 07:44:00 10 1022471506 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
463 boxy-leblanc 531 2030-01-02 07:46:00 11 1022471505 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
464 boxy-leblanc 421 2030-01-02 07:48:00 12 296153007 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
465 boxy-leblanc 67 2030-01-02 07:50:00 13 639829717 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
466 boxy-leblanc 424 2030-01-02 07:53:00 14 302342924 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
467 boxy-leblanc 516 2030-01-02 07:56:00 15 965411035 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
468 boxy-leblanc 124 2030-01-02 08:00:00 16 1484733482 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
469 boxy-leblanc 514 2030-01-02 08:04:00 17 958564201 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
470 boxy-leblanc 123 2030-01-02 08:06:00 18 1484713985 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
471 boxy-leblanc 429 2030-01-02 08:10:00 19 308326739 16 7 14 2030-01-02 07:00:00 2030-01-02 20:00:00
472 boxy-leblanc 114 2030-01-02 08:12:00 20 1423546555 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
473 boxy-leblanc 125 2030-01-02 08:16:00 21 1496722632 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
474 boxy-leblanc 126 2030-01-02 08:20:00 22 1496775243 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
475 boxy-leblanc 236 2030-01-02 08:26:00 23 6248574948 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
476 boxy-leblanc 500 2030-01-02 08:32:00 24 912010119 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
477 boxy-leblanc 127 2030-01-02 08:34:00 25 1496777115 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
478 boxy-leblanc 462 2030-01-02 08:38:00 26 554988456 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
479 boxy-leblanc 502 2030-01-02 08:44:00 27 921876024 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
480 boxy-leblanc 44 2030-01-02 08:48:00 28 491319669 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
481 boxy-leblanc 289 2030-01-02 08:51:00 29 40617788 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
482 boxy-leblanc 43 2030-01-02 08:54:00 30 491319647 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
282 broad-beaumont 119 2030-01-02 07:04:00 1 1426100409 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
283 broad-beaumont 28 2030-01-02 07:06:00 2 358543320 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
284 broad-beaumont 308 2030-01-02 07:10:00 3 129750566 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
285 broad-beaumont 149 2030-01-02 07:13:00 4 2065197334 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
286 broad-beaumont 454 2030-01-02 07:16:00 5 422874523 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
287 broad-beaumont 31 2030-01-02 07:18:00 6 415802976 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
288 broad-beaumont 182 2030-01-02 07:20:00 7 3005899379 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
289 broad-beaumont 83 2030-01-02 07:24:00 8 778699196 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
290 broad-beaumont 461 2030-01-02 07:27:00 9 554939990 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
291 broad-beaumont 379 2030-01-02 07:29:00 10 263470974 16 7 14 2030-01-02 07:00:00 2030-01-02 20:00:00
292 broad-beaumont 533 2030-01-02 07:36:00 11 1026167146 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
293 broad-beaumont 427 2030-01-02 07:38:00 12 307175604 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
294 broad-beaumont 548 2030-01-02 07:44:00 13 13336522 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
295 broad-beaumont 382 2030-01-02 07:46:00 14 266390284 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
296 broad-beaumont 422 2030-01-02 07:50:00 15 298356152 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
297 broad-beaumont 526 2030-01-02 07:54:00 16 989064782 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
298 broad-beaumont 493 2030-01-02 08:00:00 17 723741386 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
299 broad-beaumont 522 2030-01-02 08:02:00 18 973141966 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
300 broad-beaumont 69 2030-01-02 08:07:00 19 698087515 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
301 broad-beaumont 485 2030-01-02 08:09:00 20 681866902 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
302 broad-beaumont 536 2030-01-02 08:11:00 21 1075891893 16 7 13 2030-01-02 07:00:00 2030-01-02 20:00:00
303 broad-beaumont 157 2030-01-02 08:15:00 22 2131267850 16 7 6 2030-01-02 07:00:00 2030-01-02 20:00:00
304 broad-beaumont 487 2030-01-02 08:20:00 23 683240615 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
305 broad-beaumont 65 2030-01-02 08:23:00 24 635273448 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
306 broad-beaumont 328 2030-01-02 08:25:00 25 229061164 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
307 broad-beaumont 80 2030-01-02 08:28:00 26 768520263 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
308 broad-beaumont 265 2030-01-02 08:32:00 27 10265129685 16 7 7 2030-01-02 07:00:00 2030-01-02 20:00:00
309 broad-beaumont 35 2030-01-02 08:34:00 28 446785628 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
310 broad-beaumont 36 2030-01-02 08:36:00 29 446785642 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
311 broad-beaumont 107 2030-01-02 08:39:00 30 1373919801 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
371 chamfered-bellamy 48 2030-01-02 07:07:00 1 538103859 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
372 chamfered-bellamy 486 2030-01-02 07:09:00 2 682430066 16 7 15 2030-01-02 07:00:00 2030-01-02 20:00:00
373 chamfered-bellamy 541 2030-01-02 07:13:00 3 1084437112 16 7 13 2030-01-02 07:00:00 2030-01-02 20:00:00
374 chamfered-bellamy 508 2030-01-02 07:15:00 4 934991746 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
375 chamfered-bellamy 534 2030-01-02 07:18:00 5 1031727094 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
376 chamfered-bellamy 199 2030-01-02 07:22:00 6 3803973848 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
377 chamfered-bellamy 251 2030-01-02 07:24:00 7 9122380611 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
378 chamfered-bellamy 140 2030-01-02 07:27:00 8 1711807593 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
379 chamfered-bellamy 147 2030-01-02 07:29:00 9 2065157408 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
380 chamfered-bellamy 197 2030-01-02 07:33:00 10 3677080040 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
381 chamfered-bellamy 198 2030-01-02 07:36:00 11 3677094036 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
382 chamfered-bellamy 371 2030-01-02 07:38:00 12 254319894 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
383 chamfered-bellamy 216 2030-01-02 07:40:00 13 5073432440 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
384 chamfered-bellamy 73 2030-01-02 07:41:00 14 759295279 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
385 chamfered-bellamy 214 2030-01-02 07:43:00 15 5044580221 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
386 chamfered-bellamy 70 2030-01-02 07:45:00 16 725068375 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
387 chamfered-bellamy 503 2030-01-02 07:50:00 17 928261032 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
388 chamfered-bellamy 47 2030-01-02 07:53:00 18 516031805 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
389 chamfered-bellamy 301 2030-01-02 07:55:00 19 102694943 16 7 13 2030-01-02 07:00:00 2030-01-02 20:00:00
390 chamfered-bellamy 254 2030-01-02 07:57:00 20 9264108045 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
391 chamfered-bellamy 7 2030-01-02 07:59:00 21 282342105 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
392 chamfered-bellamy 543 2030-01-02 08:01:00 22 1086239548 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
393 chamfered-bellamy 374 2030-01-02 08:04:00 23 257772822 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
394 chamfered-bellamy 304 2030-01-02 08:07:00 24 111184730 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
395 chamfered-bellamy 298 2030-01-02 08:10:00 25 96196917 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
396 chamfered-bellamy 297 2030-01-02 08:13:00 26 84018119 16 7 13 2030-01-02 07:00:00 2030-01-02 20:00:00
397 chamfered-bellamy 204 2030-01-02 08:15:00 27 4329853451 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
398 chamfered-bellamy 267 2030-01-02 08:19:00 28 10568217814 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
0 dark-fortier 259 2030-01-02 07:02:00 1 9984256982 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
1 dark-fortier 407 2030-01-02 07:06:00 2 281650312 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
2 dark-fortier 468 2030-01-02 07:08:00 3 619884575 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
3 dark-fortier 116 2030-01-02 07:10:00 4 1423559556 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
4 dark-fortier 120 2030-01-02 07:12:00 5 1431043154 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
5 dark-fortier 159 2030-01-02 07:14:00 6 2175861132 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
6 dark-fortier 192 2030-01-02 07:16:00 7 3315487523 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
7 dark-fortier 57 2030-01-02 07:18:00 8 583412899 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
8 dark-fortier 102 2030-01-02 07:21:00 9 1326745948 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
9 dark-fortier 442 2030-01-02 07:23:00 10 351409390 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
10 dark-fortier 396 2030-01-02 07:25:00 11 273652089 16 7 7 2030-01-02 07:00:00 2030-01-02 20:00:00
11 dark-fortier 173 2030-01-02 07:27:00 12 2859655009 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
12 dark-fortier 277 2030-01-02 07:29:00 13 11522240569 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
13 dark-fortier 384 2030-01-02 07:31:00 14 268700611 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
14 dark-fortier 193 2030-01-02 07:33:00 15 3466369334 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
15 dark-fortier 177 2030-01-02 07:35:00 16 2940313238 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
16 dark-fortier 75 2030-01-02 07:37:00 17 768231201 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
17 dark-fortier 398 2030-01-02 07:39:00 18 275159990 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
18 dark-fortier 377 2030-01-02 07:41:00 19 261269400 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
19 dark-fortier 395 2030-01-02 07:43:00 20 273646173 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
20 dark-fortier 241 2030-01-02 07:45:00 21 6666742585 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
21 dark-fortier 88 2030-01-02 07:47:00 22 907142997 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
22 dark-fortier 330 2030-01-02 07:49:00 23 229316784 16 7 13 2030-01-02 07:00:00 2030-01-02 20:00:00
23 dark-fortier 230 2030-01-02 07:51:00 24 5729185009 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
24 dark-fortier 45 2030-01-02 07:53:00 25 503224346 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
25 dark-fortier 222 2030-01-02 07:55:00 26 5362108727 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
26 dark-fortier 77 2030-01-02 07:57:00 27 768231205 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
27 dark-fortier 281 2030-01-02 07:59:00 28 12087084525 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
28 dark-fortier 56 2030-01-02 08:01:00 29 583411333 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
29 dark-fortier 217 2030-01-02 08:03:00 30 5155648422 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
30 dark-fortier 253 2030-01-02 08:05:00 31 9238631400 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
31 dark-fortier 30 2030-01-02 08:07:00 32 367411336 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
32 dark-fortier 180 2030-01-02 08:09:00 33 2997549697 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
33 dark-fortier 460 2030-01-02 08:11:00 34 549576988 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
34 dark-fortier 376 2030-01-02 08:13:00 35 260307464 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
35 dark-fortier 235 2030-01-02 08:15:00 36 6245890989 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
36 dark-fortier 339 2030-01-02 08:17:00 37 230567954 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
37 dark-fortier 359 2030-01-02 08:19:00 38 249263084 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
38 dark-fortier 393 2030-01-02 08:21:00 39 273202992 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
39 dark-fortier 337 2030-01-02 08:23:00 40 230566047 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
40 dark-fortier 338 2030-01-02 08:25:00 41 230567953 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
41 dark-fortier 381 2030-01-02 08:27:00 42 264741791 16 7 13 2030-01-02 07:00:00 2030-01-02 20:00:00
42 dark-fortier 336 2030-01-02 08:29:00 43 230357177 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
43 dark-fortier 74 2030-01-02 08:31:00 44 768231200 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
44 dark-fortier 229 2030-01-02 08:33:00 45 5678239622 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
45 dark-fortier 95 2030-01-02 08:35:00 46 1146292428 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
46 dark-fortier 412 2030-01-02 08:37:00 47 281772561 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
47 dark-fortier 89 2030-01-02 08:39:00 48 911170200 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
48 dark-fortier 505 2030-01-02 08:41:00 49 931386087 16 7 13 2030-01-02 07:00:00 2030-01-02 20:00:00
49 dark-fortier 452 2030-01-02 08:43:00 50 407979343 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
50 dark-fortier 71 2030-01-02 08:45:00 51 739756772 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
51 dark-fortier 181 2030-01-02 08:47:00 52 2998757813 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
52 dark-fortier 178 2030-01-02 08:49:00 53 2980368136 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
53 dark-fortier 195 2030-01-02 08:51:00 54 3567190069 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
54 dark-fortier 481 2030-01-02 08:53:00 55 669319433 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
55 dark-fortier 413 2030-01-02 08:55:00 56 283771391 16 7 13 2030-01-02 07:00:00 2030-01-02 20:00:00
56 dark-fortier 81 2030-01-02 08:57:00 57 775415430 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
57 dark-fortier 72 2030-01-02 08:59:00 58 739778204 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
58 dark-fortier 205 2030-01-02 09:01:00 59 4337347089 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
59 dark-fortier 247 2030-01-02 09:03:00 60 7138761089 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
60 dark-fortier 453 2030-01-02 09:06:00 61 408630074 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
61 dark-fortier 46 2030-01-02 09:08:00 62 503224354 16 7 13 2030-01-02 07:00:00 2030-01-02 20:00:00
62 dark-fortier 313 2030-01-02 09:10:00 63 154508547 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
63 dark-fortier 312 2030-01-02 09:12:00 64 154508544 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
64 dark-fortier 441 2030-01-02 09:14:00 65 350588958 16 7 13 2030-01-02 07:00:00 2030-01-02 20:00:00
65 dark-fortier 231 2030-01-02 09:17:00 66 5759625992 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
66 dark-fortier 109 2030-01-02 09:20:00 67 1373979474 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
67 dark-fortier 528 2030-01-02 09:22:00 68 1008215352 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
68 dark-fortier 282 2030-01-02 09:24:00 69 12101176582 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
69 dark-fortier 8 2030-01-02 09:27:00 70 298721803 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
312 exothermic-armistead 98 2030-01-02 07:02:00 1 1260538148 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
313 exothermic-armistead 186 2030-01-02 07:04:00 2 3124957096 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
314 exothermic-armistead 144 2030-01-02 07:08:00 3 2004488756 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
315 exothermic-armistead 430 2030-01-02 07:13:00 4 310822756 16 7 14 2030-01-02 07:00:00 2030-01-02 20:00:00
316 exothermic-armistead 92 2030-01-02 07:15:00 5 943350478 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
317 exothermic-armistead 91 2030-01-02 07:17:00 6 943350476 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
318 exothermic-armistead 479 2030-01-02 07:21:00 7 665875674 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
319 exothermic-armistead 108 2030-01-02 07:24:00 8 1373977813 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
320 exothermic-armistead 85 2030-01-02 07:29:00 9 830659393 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
321 exothermic-armistead 244 2030-01-02 07:34:00 10 6969068085 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
322 exothermic-armistead 496 2030-01-02 07:36:00 11 870583665 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
323 exothermic-armistead 497 2030-01-02 07:38:00 12 870583668 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
324 exothermic-armistead 464 2030-01-02 07:44:00 13 606830451 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
325 exothermic-armistead 465 2030-01-02 07:46:00 14 608742882 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
326 exothermic-armistead 249 2030-01-02 07:51:00 15 8521097200 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
327 exothermic-armistead 172 2030-01-02 07:53:00 16 2697063080 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
328 exothermic-armistead 380 2030-01-02 07:55:00 17 264029838 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
329 exothermic-armistead 248 2030-01-02 07:57:00 18 8521097190 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
330 exothermic-armistead 373 2030-01-02 08:00:00 19 255386983 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
331 exothermic-armistead 169 2030-01-02 08:02:00 20 2612014313 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
332 exothermic-armistead 171 2030-01-02 08:06:00 21 2689455361 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
333 exothermic-armistead 372 2030-01-02 08:09:00 22 255386982 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
334 exothermic-armistead 233 2030-01-02 08:12:00 23 5838769296 16 7 13 2030-01-02 07:00:00 2030-01-02 20:00:00
335 exothermic-armistead 415 2030-01-02 08:15:00 24 291771732 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
336 exothermic-armistead 176 2030-01-02 08:18:00 25 2893532903 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
337 exothermic-armistead 40 2030-01-02 08:20:00 26 475642367 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
338 exothermic-armistead 495 2030-01-02 08:23:00 27 795671595 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
339 exothermic-armistead 255 2030-01-02 08:26:00 28 9322108900 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
340 exothermic-armistead 512 2030-01-02 08:32:00 29 935738059 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
141 free-favreau 62 2030-01-02 07:02:00 1 629750014 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
142 free-favreau 232 2030-01-02 07:03:00 2 5787220032 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
143 free-favreau 63 2030-01-02 07:04:00 3 629750018 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
144 free-favreau 111 2030-01-02 07:07:00 4 1404763943 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
145 free-favreau 187 2030-01-02 07:09:00 5 3125025423 16 7 13 2030-01-02 07:00:00 2030-01-02 20:00:00
146 free-favreau 498 2030-01-02 07:11:00 6 875254368 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
147 free-favreau 261 2030-01-02 07:13:00 7 10013398691 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
148 free-favreau 527 2030-01-02 07:16:00 8 993326913 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
149 free-favreau 403 2030-01-02 07:18:00 9 281005429 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
150 free-favreau 542 2030-01-02 07:20:00 10 1084442071 16 7 6 2030-01-02 07:00:00 2030-01-02 20:00:00
151 free-favreau 158 2030-01-02 07:22:00 11 2131267852 16 7 13 2030-01-02 07:00:00 2030-01-02 20:00:00
152 free-favreau 162 2030-01-02 07:24:00 12 2372306728 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
153 free-favreau 163 2030-01-02 07:26:00 13 2372309923 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
154 free-favreau 164 2030-01-02 07:28:00 14 2372312459 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
155 free-favreau 168 2030-01-02 07:30:00 15 2573726983 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
156 free-favreau 106 2030-01-02 07:32:00 16 1349656251 16 7 13 2030-01-02 07:00:00 2030-01-02 20:00:00
157 free-favreau 139 2030-01-02 07:34:00 17 1684858495 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
158 free-favreau 369 2030-01-02 07:37:00 18 252812514 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
159 free-favreau 221 2030-01-02 07:39:00 19 5301569915 16 7 13 2030-01-02 07:00:00 2030-01-02 20:00:00
160 free-favreau 368 2030-01-02 07:41:00 20 252809417 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
161 free-favreau 370 2030-01-02 07:43:00 21 252812519 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
162 free-favreau 246 2030-01-02 07:45:00 22 7017217477 16 7 14 2030-01-02 07:00:00 2030-01-02 20:00:00
163 free-favreau 219 2030-01-02 07:47:00 23 5209264343 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
164 free-favreau 492 2030-01-02 07:50:00 24 697131606 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
165 free-favreau 346 2030-01-02 07:52:00 25 233516827 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
166 free-favreau 472 2030-01-02 07:54:00 26 657456424 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
167 free-favreau 388 2030-01-02 07:56:00 27 270805425 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
168 free-favreau 425 2030-01-02 07:58:00 28 307149426 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
169 free-favreau 224 2030-01-02 08:00:00 29 5373194431 16 7 13 2030-01-02 07:00:00 2030-01-02 20:00:00
170 free-favreau 66 2030-01-02 08:02:00 30 636958169 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
171 free-favreau 174 2030-01-02 08:04:00 31 2860454401 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
172 free-favreau 210 2030-01-02 08:06:00 32 4770224022 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
173 free-favreau 141 2030-01-02 08:08:00 33 1712118211 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
174 free-favreau 38 2030-01-02 08:10:00 34 467744856 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
175 free-favreau 491 2030-01-02 08:12:00 35 696901432 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
176 free-favreau 456 2030-01-02 08:14:00 36 517560263 16 7 13 2030-01-02 07:00:00 2030-01-02 20:00:00
177 free-favreau 357 2030-01-02 08:16:00 37 245124093 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
178 free-favreau 349 2030-01-02 08:18:00 38 233791356 16 7 14 2030-01-02 07:00:00 2030-01-02 20:00:00
179 free-favreau 350 2030-01-02 08:20:00 39 233791363 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
180 free-favreau 351 2030-01-02 08:22:00 40 233801731 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
181 free-favreau 318 2030-01-02 08:25:00 41 228284413 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
182 free-favreau 68 2030-01-02 08:27:00 42 677596888 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
183 free-favreau 105 2030-01-02 08:29:00 43 1348371058 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
184 free-favreau 190 2030-01-02 08:31:00 44 3163587327 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
185 free-favreau 166 2030-01-02 08:33:00 45 2419698552 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
186 free-favreau 316 2030-01-02 08:36:00 46 227766039 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
187 free-favreau 317 2030-01-02 08:38:00 47 227766040 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
188 free-favreau 347 2030-01-02 08:41:00 48 233666288 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
189 free-favreau 293 2030-01-02 08:43:00 49 80567253 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
190 free-favreau 14 2030-01-02 08:46:00 50 311099928 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
191 free-favreau 104 2030-01-02 08:50:00 51 1348370992 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
192 free-favreau 490 2030-01-02 08:52:00 52 696901408 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
193 free-favreau 489 2030-01-02 08:54:00 53 696901397 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
194 free-favreau 437 2030-01-02 08:56:00 54 316971228 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
195 free-favreau 37 2030-01-02 08:58:00 55 467744840 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
196 free-favreau 348 2030-01-02 09:00:00 56 233790935 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
197 free-favreau 546 2030-01-02 09:02:00 57 1218481438 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
198 free-favreau 239 2030-01-02 09:04:00 58 6659452185 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
199 free-favreau 322 2030-01-02 09:06:00 59 228290004 16 7 14 2030-01-02 07:00:00 2030-01-02 20:00:00
200 free-favreau 390 2030-01-02 09:08:00 60 271055200 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
201 free-favreau 321 2030-01-02 09:10:00 61 228287775 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
202 free-favreau 315 2030-01-02 09:12:00 62 227764081 16 7 7 2030-01-02 07:00:00 2030-01-02 20:00:00
203 free-favreau 365 2030-01-02 09:14:00 63 250504040 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
204 free-favreau 352 2030-01-02 09:16:00 64 233804973 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
205 free-favreau 323 2030-01-02 09:18:00 65 228762044 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
206 free-favreau 334 2030-01-02 09:20:00 66 230133865 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
207 free-favreau 191 2030-01-02 09:22:00 67 3224845421 16 7 7 2030-01-02 07:00:00 2030-01-02 20:00:00
208 free-favreau 160 2030-01-02 09:25:00 68 2349855098 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
209 free-favreau 278 2030-01-02 09:27:00 69 11621600199 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
210 free-favreau 538 2030-01-02 09:29:00 70 1080799552 16 7 13 2030-01-02 07:00:00 2030-01-02 20:00:00
211 free-favreau 256 2030-01-02 09:31:00 71 9334710259 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
399 frozen-thomas 537 2030-01-02 07:08:00 1 1078043031 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
400 frozen-thomas 440 2030-01-02 07:11:00 2 350231324 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
401 frozen-thomas 518 2030-01-02 07:13:00 3 967985039 16 7 13 2030-01-02 07:00:00 2030-01-02 20:00:00
402 frozen-thomas 471 2030-01-02 07:15:00 4 656057654 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
403 frozen-thomas 519 2030-01-02 07:17:00 5 968532221 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
404 frozen-thomas 436 2030-01-02 07:19:00 6 314131921 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
405 frozen-thomas 128 2030-01-02 07:22:00 7 1509769787 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
406 frozen-thomas 291 2030-01-02 07:26:00 8 47936694 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
407 frozen-thomas 438 2030-01-02 07:29:00 9 324346439 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
408 frozen-thomas 286 2030-01-02 07:34:00 10 12178058608 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
409 frozen-thomas 131 2030-01-02 07:40:00 11 1521601306 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
410 frozen-thomas 345 2030-01-02 07:43:00 12 233507006 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
411 frozen-thomas 341 2030-01-02 07:47:00 13 230948516 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
412 frozen-thomas 130 2030-01-02 07:52:00 14 1521570233 16 7 14 2030-01-02 07:00:00 2030-01-02 20:00:00
413 frozen-thomas 148 2030-01-02 07:57:00 15 2065167226 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
414 frozen-thomas 517 2030-01-02 08:01:00 16 967072208 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
415 frozen-thomas 520 2030-01-02 08:03:00 17 969321280 16 7 14 2030-01-02 07:00:00 2030-01-02 20:00:00
416 frozen-thomas 153 2030-01-02 08:05:00 18 2071381884 16 7 13 2030-01-02 07:00:00 2030-01-02 20:00:00
417 frozen-thomas 154 2030-01-02 08:07:00 19 2071381885 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
418 frozen-thomas 52 2030-01-02 08:09:00 20 562072082 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
419 frozen-thomas 423 2030-01-02 08:11:00 21 300187149 16 7 13 2030-01-02 07:00:00 2030-01-02 20:00:00
420 frozen-thomas 189 2030-01-02 08:14:00 22 3158435067 16 7 13 2030-01-02 07:00:00 2030-01-02 20:00:00
421 frozen-thomas 524 2030-01-02 08:16:00 23 976106753 16 7 13 2030-01-02 07:00:00 2030-01-02 20:00:00
422 frozen-thomas 87 2030-01-02 08:19:00 24 890854720 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
423 frozen-thomas 355 2030-01-02 08:22:00 25 244989701 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
424 frozen-thomas 356 2030-01-02 08:24:00 26 244989703 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
212 gentle-fabian 86 2030-01-02 07:05:00 1 882292497 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
213 gentle-fabian 258 2030-01-02 07:07:00 2 9975511835 16 7 6 2030-01-02 07:00:00 2030-01-02 20:00:00
214 gentle-fabian 378 2030-01-02 07:10:00 3 261598465 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
215 gentle-fabian 60 2030-01-02 07:12:00 4 612623532 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
216 gentle-fabian 151 2030-01-02 07:14:00 5 2066250086 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
217 gentle-fabian 510 2030-01-02 07:18:00 6 935099918 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
218 gentle-fabian 509 2030-01-02 07:20:00 7 935099879 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
219 gentle-fabian 143 2030-01-02 07:22:00 8 2004412428 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
220 gentle-fabian 142 2030-01-02 07:25:00 9 2004412420 16 7 7 2030-01-02 07:00:00 2030-01-02 20:00:00
221 gentle-fabian 237 2030-01-02 07:30:00 10 6302603646 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
222 gentle-fabian 179 2030-01-02 07:32:00 11 2995285120 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
223 gentle-fabian 145 2030-01-02 07:34:00 12 2004491253 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
224 gentle-fabian 93 2030-01-02 07:36:00 13 988809177 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
225 gentle-fabian 506 2030-01-02 07:40:00 14 931713369 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
226 gentle-fabian 150 2030-01-02 07:42:00 15 2065207024 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
227 gentle-fabian 10 2030-01-02 07:46:00 16 299225092 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
228 gentle-fabian 9 2030-01-02 07:48:00 17 299224403 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
229 gentle-fabian 25 2030-01-02 07:50:00 18 315252689 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
230 gentle-fabian 511 2030-01-02 07:53:00 19 935134063 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
231 gentle-fabian 302 2030-01-02 07:55:00 20 105915585 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
232 gentle-fabian 32 2030-01-02 07:57:00 21 415803254 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
233 gentle-fabian 51 2030-01-02 08:01:00 22 560602898 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
234 gentle-fabian 90 2030-01-02 08:03:00 23 932249376 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
235 gentle-fabian 53 2030-01-02 08:06:00 24 564399648 16 7 15 2030-01-02 07:00:00 2030-01-02 20:00:00
236 gentle-fabian 203 2030-01-02 08:10:00 25 4249403390 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
237 gentle-fabian 206 2030-01-02 08:12:00 26 4337941791 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
238 gentle-fabian 400 2030-01-02 08:14:00 27 275483127 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
239 gentle-fabian 404 2030-01-02 08:17:00 28 281046955 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
240 gentle-fabian 209 2030-01-02 08:19:00 29 4396351895 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
241 gentle-fabian 358 2030-01-02 08:21:00 30 249212894 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
242 gentle-fabian 353 2030-01-02 08:23:00 31 234082876 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
243 gentle-fabian 212 2030-01-02 08:25:00 32 4806183922 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
244 gentle-fabian 58 2030-01-02 08:28:00 33 592066036 16 7 14 2030-01-02 07:00:00 2030-01-02 20:00:00
245 gentle-fabian 303 2030-01-02 08:31:00 34 109370672 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
246 gentle-fabian 296 2030-01-02 08:33:00 35 84018113 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
247 gentle-fabian 294 2030-01-02 08:35:00 36 80580032 16 7 13 2030-01-02 07:00:00 2030-01-02 20:00:00
248 gentle-fabian 295 2030-01-02 08:37:00 37 84017579 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
249 gentle-fabian 299 2030-01-02 08:39:00 38 96255051 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
250 gentle-fabian 305 2030-01-02 08:41:00 39 115086421 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
251 gentle-fabian 227 2030-01-02 08:44:00 40 5590642309 16 7 13 2030-01-02 07:00:00 2030-01-02 20:00:00
252 gentle-fabian 97 2030-01-02 08:46:00 41 1223267149 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
253 gentle-fabian 15 2030-01-02 08:49:00 42 312565824 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
254 gentle-fabian 16 2030-01-02 08:51:00 43 312566081 16 7 14 2030-01-02 07:00:00 2030-01-02 20:00:00
255 gentle-fabian 264 2030-01-02 08:53:00 44 10136276602 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
256 gentle-fabian 17 2030-01-02 08:55:00 45 312569767 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
257 gentle-fabian 18 2030-01-02 08:57:00 46 312569935 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
258 gentle-fabian 529 2030-01-02 08:59:00 47 1012900428 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
259 gentle-fabian 20 2030-01-02 09:03:00 48 312574927 16 7 5 2030-01-02 07:00:00 2030-01-02 20:00:00
260 gentle-fabian 19 2030-01-02 09:05:00 49 312574900 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
261 gentle-fabian 250 2030-01-02 09:07:00 50 8952186013 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
262 gentle-fabian 21 2030-01-02 09:12:00 51 312576602 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
263 gentle-fabian 22 2030-01-02 09:14:00 52 312576639 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
264 gentle-fabian 23 2030-01-02 09:16:00 53 312576904 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
265 gentle-fabian 24 2030-01-02 09:18:00 54 312577264 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
266 gentle-fabian 211 2030-01-02 09:20:00 55 4799036110 16 7 13 2030-01-02 07:00:00 2030-01-02 20:00:00
267 gentle-fabian 42 2030-01-02 09:23:00 56 479092745 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
268 gentle-fabian 49 2030-01-02 09:26:00 57 543384713 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
269 gentle-fabian 499 2030-01-02 09:28:00 58 893376289 16 7 13 2030-01-02 07:00:00 2030-01-02 20:00:00
270 gentle-fabian 118 2030-01-02 09:30:00 59 1426051344 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
271 gentle-fabian 207 2030-01-02 09:33:00 60 4357798892 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
272 gentle-fabian 1 2030-01-02 09:35:00 61 133193958 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
273 gentle-fabian 117 2030-01-02 09:37:00 62 1426048610 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
274 gentle-fabian 3 2030-01-02 09:39:00 63 279464425 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
275 gentle-fabian 82 2030-01-02 09:41:00 64 778690166 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
276 gentle-fabian 263 2030-01-02 09:43:00 65 10078115749 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
277 gentle-fabian 314 2030-01-02 09:45:00 66 154518581 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
278 gentle-fabian 137 2030-01-02 09:48:00 67 1593209605 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
279 gentle-fabian 55 2030-01-02 09:50:00 68 583257143 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
280 gentle-fabian 260 2030-01-02 09:52:00 69 10004624748 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
281 gentle-fabian 112 2030-01-02 09:56:00 70 1404772647 16 7 14 2030-01-02 07:00:00 2030-01-02 20:00:00
537 massive-blanc 129 2030-01-02 07:02:00 1 1521409481 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
538 massive-blanc 469 2030-01-02 07:06:00 2 645050835 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
539 massive-blanc 78 2030-01-02 07:08:00 3 768231917 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
540 massive-blanc 29 2030-01-02 07:10:00 4 358543587 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
541 massive-blanc 27 2030-01-02 07:14:00 5 335980359 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
542 massive-blanc 26 2030-01-02 07:16:00 6 335569489 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
543 massive-blanc 113 2030-01-02 07:18:00 7 1416582578 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
544 massive-blanc 513 2030-01-02 07:20:00 8 942944691 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
545 massive-blanc 41 2030-01-02 07:22:00 9 475642453 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
546 massive-blanc 459 2030-01-02 07:24:00 10 530415760 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
547 massive-blanc 309 2030-01-02 07:26:00 11 129774681 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
548 massive-blanc 458 2030-01-02 07:28:00 12 530407774 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
549 massive-blanc 79 2030-01-02 07:32:00 13 768231918 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
425 ordered-merle 280 2030-01-02 07:11:00 1 12051815620 16 7 15 2030-01-02 07:00:00 2030-01-02 20:00:00
426 ordered-merle 225 2030-01-02 07:13:00 2 5413409337 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
427 ordered-merle 501 2030-01-02 07:16:00 3 916905416 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
428 ordered-merle 470 2030-01-02 07:20:00 4 655447232 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
429 ordered-merle 310 2030-01-02 07:24:00 5 129924270 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
430 ordered-merle 134 2030-01-02 07:27:00 6 1529996763 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
431 ordered-merle 133 2030-01-02 07:31:00 7 1526077721 16 7 7 2030-01-02 07:00:00 2030-01-02 20:00:00
432 ordered-merle 455 2030-01-02 07:36:00 8 471666565 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
433 ordered-merle 290 2030-01-02 07:42:00 9 42422825 16 7 15 2030-01-02 07:00:00 2030-01-02 20:00:00
434 ordered-merle 59 2030-01-02 07:48:00 10 598161343 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
435 ordered-merle 84 2030-01-02 07:53:00 11 811533577 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
436 ordered-merle 155 2030-01-02 08:00:00 12 2080832424 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
437 ordered-merle 475 2030-01-02 08:05:00 13 660641613 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
438 ordered-merle 434 2030-01-02 08:08:00 14 313838460 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
439 ordered-merle 257 2030-01-02 08:11:00 15 9352848206 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
440 ordered-merle 432 2030-01-02 08:13:00 16 313827641 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
441 ordered-merle 433 2030-01-02 08:15:00 17 313838456 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
442 ordered-merle 122 2030-01-02 08:20:00 18 1432780731 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
443 ordered-merle 121 2030-01-02 08:22:00 19 1432780730 16 7 15 2030-01-02 07:00:00 2030-01-02 20:00:00
444 ordered-merle 132 2030-01-02 08:27:00 20 1521660943 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
445 ordered-merle 473 2030-01-02 08:29:00 21 657988244 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
446 ordered-merle 135 2030-01-02 08:33:00 22 1529996838 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
447 ordered-merle 136 2030-01-02 08:36:00 23 1530024649 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
448 ordered-merle 431 2030-01-02 08:39:00 24 313703366 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
449 ordered-merle 523 2030-01-02 08:43:00 25 974841016 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
450 ordered-merle 476 2030-01-02 08:48:00 26 661632319 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
451 ordered-merle 2 2030-01-02 08:50:00 27 249426205 16 7 7 2030-01-02 07:00:00 2030-01-02 20:00:00
452 ordered-merle 435 2030-01-02 08:53:00 28 314103949 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
483 shiny-lambert 331 2030-01-02 07:03:00 1 229376152 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
484 shiny-lambert 332 2030-01-02 07:05:00 2 229456566 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
485 shiny-lambert 283 2030-01-02 07:07:00 3 12165523255 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
486 shiny-lambert 418 2030-01-02 07:09:00 4 292692332 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
487 shiny-lambert 146 2030-01-02 07:11:00 5 2004657419 16 7 13 2030-01-02 07:00:00 2030-01-02 20:00:00
488 shiny-lambert 11 2030-01-02 07:13:00 6 305312829 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
489 shiny-lambert 4 2030-01-02 07:16:00 7 279915988 16 7 7 2030-01-02 07:00:00 2030-01-02 20:00:00
490 shiny-lambert 480 2030-01-02 07:21:00 8 668344583 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
491 shiny-lambert 194 2030-01-02 07:23:00 9 3470507586 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
492 shiny-lambert 167 2030-01-02 07:25:00 10 2419699840 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
493 shiny-lambert 39 2030-01-02 07:27:00 11 467744860 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
494 shiny-lambert 50 2030-01-02 07:29:00 12 559485123 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
495 shiny-lambert 397 2030-01-02 07:31:00 13 273993937 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
496 shiny-lambert 547 2030-01-02 07:33:00 14 3375611 16 7 14 2030-01-02 07:00:00 2030-01-02 20:00:00
497 shiny-lambert 383 2030-01-02 07:35:00 15 268687348 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
498 shiny-lambert 279 2030-01-02 07:37:00 16 12035318295 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
499 shiny-lambert 240 2030-01-02 07:39:00 17 6659454386 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
500 shiny-lambert 275 2030-01-02 07:41:00 18 11038174107 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
501 shiny-lambert 288 2030-01-02 07:45:00 19 12246300601 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
502 shiny-lambert 161 2030-01-02 07:47:00 20 2365544967 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
503 shiny-lambert 64 2030-01-02 07:49:00 21 632666705 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
504 shiny-lambert 445 2030-01-02 07:53:00 22 364532043 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
505 shiny-lambert 450 2030-01-02 07:56:00 23 383996326 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
506 shiny-lambert 539 2030-01-02 07:58:00 24 1084218455 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
507 shiny-lambert 226 2030-01-02 08:00:00 25 5590594966 16 7 14 2030-01-02 07:00:00 2030-01-02 20:00:00
508 shiny-lambert 451 2030-01-02 08:02:00 26 384344469 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
509 shiny-lambert 215 2030-01-02 08:05:00 27 5044959521 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
70 simple-dupond 110 2030-01-02 07:03:00 1 1403120910 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
71 simple-dupond 444 2030-01-02 07:05:00 2 362954595 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
72 simple-dupond 478 2030-01-02 07:07:00 3 665875663 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
73 simple-dupond 272 2030-01-02 07:09:00 4 10994405522 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
74 simple-dupond 234 2030-01-02 07:11:00 5 5866396179 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
75 simple-dupond 340 2030-01-02 07:17:00 6 230613179 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
76 simple-dupond 170 2030-01-02 07:20:00 7 2681367476 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
77 simple-dupond 245 2030-01-02 07:22:00 8 6985146685 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
78 simple-dupond 218 2030-01-02 07:24:00 9 5166614627 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
79 simple-dupond 285 2030-01-02 07:26:00 10 12170327422 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
80 simple-dupond 402 2030-01-02 07:28:00 11 279140842 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
81 simple-dupond 401 2030-01-02 07:29:00 12 279140841 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
82 simple-dupond 342 2030-01-02 07:31:00 13 231199022 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
83 simple-dupond 549 2030-01-02 07:33:00 14 14462907 16 7 6 2030-01-02 07:00:00 2030-01-02 20:00:00
84 simple-dupond 344 2030-01-02 07:35:00 15 233243884 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
85 simple-dupond 156 2030-01-02 07:37:00 16 2127757454 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
86 simple-dupond 361 2030-01-02 07:39:00 17 250107541 16 7 13 2030-01-02 07:00:00 2030-01-02 20:00:00
87 simple-dupond 362 2030-01-02 07:41:00 18 250345931 16 7 14 2030-01-02 07:00:00 2030-01-02 20:00:00
88 simple-dupond 399 2030-01-02 07:44:00 19 275482802 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
89 simple-dupond 76 2030-01-02 07:47:00 20 768231204 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
90 simple-dupond 242 2030-01-02 07:49:00 21 6782589728 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
91 simple-dupond 96 2030-01-02 07:52:00 22 1146292447 16 7 7 2030-01-02 07:00:00 2030-01-02 20:00:00
92 simple-dupond 411 2030-01-02 07:54:00 23 281772553 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
93 simple-dupond 385 2030-01-02 07:59:00 24 268843105 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
94 simple-dupond 238 2030-01-02 08:01:00 25 6551427836 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
95 simple-dupond 188 2030-01-02 08:03:00 26 3130376927 16 7 13 2030-01-02 07:00:00 2030-01-02 20:00:00
96 simple-dupond 269 2030-01-02 08:05:00 27 10601110758 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
97 simple-dupond 386 2030-01-02 08:07:00 28 269759932 16 7 13 2030-01-02 07:00:00 2030-01-02 20:00:00
98 simple-dupond 387 2030-01-02 08:08:00 29 269759933 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
99 simple-dupond 389 2030-01-02 08:09:00 30 270968057 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
100 simple-dupond 392 2030-01-02 08:11:00 31 271989540 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
101 simple-dupond 284 2030-01-02 08:13:00 32 12167965955 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
102 simple-dupond 550 2030-01-02 08:15:00 33 14704472 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
103 simple-dupond 33 2030-01-02 08:18:00 34 434153487 16 7 16 2030-01-02 07:00:00 2030-01-02 20:00:00
104 simple-dupond 375 2030-01-02 08:20:00 35 258651047 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
105 simple-dupond 276 2030-01-02 08:22:00 36 11384483172 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
106 simple-dupond 343 2030-01-02 08:24:00 37 231265715 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
107 simple-dupond 262 2030-01-02 08:26:00 38 10016178636 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
108 simple-dupond 319 2030-01-02 08:29:00 39 228284414 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
109 simple-dupond 320 2030-01-02 08:31:00 40 228286745 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
110 simple-dupond 12 2030-01-02 08:34:00 41 306276661 16 7 13 2030-01-02 07:00:00 2030-01-02 20:00:00
111 simple-dupond 274 2030-01-02 08:36:00 42 11030599280 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
112 simple-dupond 213 2030-01-02 08:39:00 43 4998192522 16 7 13 2030-01-02 07:00:00 2030-01-02 20:00:00
113 simple-dupond 363 2030-01-02 08:41:00 44 250501870 16 7 7 2030-01-02 07:00:00 2030-01-02 20:00:00
114 simple-dupond 364 2030-01-02 08:43:00 45 250501876 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
115 simple-dupond 61 2030-01-02 08:45:00 46 613230592 16 7 13 2030-01-02 07:00:00 2030-01-02 20:00:00
116 simple-dupond 270 2030-01-02 08:48:00 47 10765828306 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
117 simple-dupond 410 2030-01-02 08:50:00 48 281685663 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
118 simple-dupond 409 2030-01-02 08:52:00 49 281683058 16 7 13 2030-01-02 07:00:00 2030-01-02 20:00:00
119 simple-dupond 223 2030-01-02 08:54:00 50 5367355656 16 7 7 2030-01-02 07:00:00 2030-01-02 20:00:00
120 simple-dupond 324 2030-01-02 08:57:00 51 228762046 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
121 simple-dupond 335 2030-01-02 08:59:00 52 230134472 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
122 simple-dupond 405 2030-01-02 09:01:00 53 281357163 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
123 simple-dupond 406 2030-01-02 09:03:00 54 281359242 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
124 simple-dupond 419 2030-01-02 09:05:00 55 294962764 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
125 simple-dupond 201 2030-01-02 09:07:00 56 4078397589 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
126 simple-dupond 333 2030-01-02 09:10:00 57 230101445 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
127 simple-dupond 466 2030-01-02 09:12:00 58 611618541 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
128 simple-dupond 115 2030-01-02 09:14:00 59 1423559526 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
129 simple-dupond 366 2030-01-02 09:16:00 60 251194993 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
130 simple-dupond 457 2030-01-02 09:18:00 61 517592734 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
131 simple-dupond 208 2030-01-02 09:20:00 62 4383657305 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
132 simple-dupond 408 2030-01-02 09:22:00 63 281669751 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
133 simple-dupond 360 2030-01-02 09:24:00 64 249268180 16 7 13 2030-01-02 07:00:00 2030-01-02 20:00:00
134 simple-dupond 326 2030-01-02 09:26:00 65 228968686 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
135 simple-dupond 325 2030-01-02 09:28:00 66 228968680 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
136 simple-dupond 99 2030-01-02 09:30:00 67 1300613610 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
137 simple-dupond 394 2030-01-02 09:32:00 68 273520544 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
138 simple-dupond 196 2030-01-02 09:34:00 69 3676943504 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
139 simple-dupond 165 2030-01-02 09:36:00 70 2386542318 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
140 simple-dupond 13 2030-01-02 09:38:00 71 310408293 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
341 vivid-legrand 484 2030-01-02 07:08:00 1 681866900 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
342 vivid-legrand 311 2030-01-02 07:10:00 2 130774599 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
343 vivid-legrand 292 2030-01-02 07:12:00 3 52304330 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
344 vivid-legrand 252 2030-01-02 07:15:00 4 9202222409 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
345 vivid-legrand 202 2030-01-02 07:17:00 5 4223248090 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
346 vivid-legrand 228 2030-01-02 07:20:00 6 5590669322 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
347 vivid-legrand 439 2030-01-02 07:23:00 7 325131328 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
348 vivid-legrand 488 2030-01-02 07:28:00 8 696901395 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
349 vivid-legrand 273 2030-01-02 07:30:00 9 11026623981 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
350 vivid-legrand 268 2030-01-02 07:32:00 10 10576430555 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
351 vivid-legrand 507 2030-01-02 07:34:00 11 934923912 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
352 vivid-legrand 544 2030-01-02 07:38:00 12 1086239551 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
353 vivid-legrand 545 2030-01-02 07:42:00 13 1147061532 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
354 vivid-legrand 152 2030-01-02 07:44:00 14 2068246787 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
355 vivid-legrand 300 2030-01-02 07:47:00 15 96255067 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
356 vivid-legrand 271 2030-01-02 07:51:00 16 10792357138 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
357 vivid-legrand 183 2030-01-02 07:55:00 17 3028480445 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
358 vivid-legrand 354 2030-01-02 07:59:00 18 239198137 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
359 vivid-legrand 306 2030-01-02 08:01:00 19 115772293 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
360 vivid-legrand 54 2030-01-02 08:05:00 20 565770327 16 7 8 2030-01-02 07:00:00 2030-01-02 20:00:00
361 vivid-legrand 220 2030-01-02 08:08:00 21 5245064896 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
362 vivid-legrand 94 2030-01-02 08:10:00 22 1030106427 16 7 12 2030-01-02 07:00:00 2030-01-02 20:00:00
363 vivid-legrand 185 2030-01-02 08:12:00 23 3040139014 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
364 vivid-legrand 504 2030-01-02 08:14:00 24 931201803 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
365 vivid-legrand 184 2030-01-02 08:16:00 25 3040092718 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
366 vivid-legrand 175 2030-01-02 08:18:00 26 2885369320 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
367 vivid-legrand 391 2030-01-02 08:21:00 27 271450113 16 7 13 2030-01-02 07:00:00 2030-01-02 20:00:00
368 vivid-legrand 34 2030-01-02 08:24:00 28 446783419 16 7 9 2030-01-02 07:00:00 2030-01-02 20:00:00
369 vivid-legrand 101 2030-01-02 08:26:00 29 1326745943 16 7 11 2030-01-02 07:00:00 2030-01-02 20:00:00
370 vivid-legrand 6 2030-01-02 08:30:00 30 280958210 16 7 10 2030-01-02 07:00:00 2030-01-02 20:00:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment