-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinks.txt
4553 lines (4553 loc) · 787 KB
/
links.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814299&dog_id=542650&r_date=2021-02-04&track_id=4&r_time=18%3A17&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814299&dog_id=549629&r_date=2021-02-04&track_id=4&r_time=18%3A17&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814299&dog_id=550496&r_date=2021-02-04&track_id=4&r_time=18%3A17&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814299&dog_id=549825&r_date=2021-02-04&track_id=4&r_time=18%3A17&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814299&dog_id=549154&r_date=2021-02-04&track_id=4&r_time=18%3A17&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814299&dog_id=533131&r_date=2021-02-04&track_id=4&r_time=18%3A17&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814300&dog_id=547372&r_date=2021-02-04&track_id=4&r_time=18%3A33&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814300&dog_id=524916&r_date=2021-02-04&track_id=4&r_time=18%3A33&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814300&dog_id=545806&r_date=2021-02-04&track_id=4&r_time=18%3A33&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814300&dog_id=533557&r_date=2021-02-04&track_id=4&r_time=18%3A33&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814300&dog_id=549686&r_date=2021-02-04&track_id=4&r_time=18%3A33&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814300&dog_id=523909&r_date=2021-02-04&track_id=4&r_time=18%3A33&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814301&dog_id=545781&r_date=2021-02-04&track_id=4&r_time=18%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814301&dog_id=550391&r_date=2021-02-04&track_id=4&r_time=18%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814301&dog_id=544420&r_date=2021-02-04&track_id=4&r_time=18%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814301&dog_id=536400&r_date=2021-02-04&track_id=4&r_time=18%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814301&dog_id=549597&r_date=2021-02-04&track_id=4&r_time=18%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814301&dog_id=545820&r_date=2021-02-04&track_id=4&r_time=18%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814302&dog_id=544060&r_date=2021-02-04&track_id=4&r_time=19%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814302&dog_id=544259&r_date=2021-02-04&track_id=4&r_time=19%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814302&dog_id=538181&r_date=2021-02-04&track_id=4&r_time=19%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814302&dog_id=534402&r_date=2021-02-04&track_id=4&r_time=19%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814302&dog_id=548645&r_date=2021-02-04&track_id=4&r_time=19%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814302&dog_id=539574&r_date=2021-02-04&track_id=4&r_time=19%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814303&dog_id=542815&r_date=2021-02-04&track_id=4&r_time=19%3A24&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814303&dog_id=541630&r_date=2021-02-04&track_id=4&r_time=19%3A24&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814303&dog_id=541676&r_date=2021-02-04&track_id=4&r_time=19%3A24&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814303&dog_id=543158&r_date=2021-02-04&track_id=4&r_time=19%3A24&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814303&dog_id=539077&r_date=2021-02-04&track_id=4&r_time=19%3A24&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814303&dog_id=537481&r_date=2021-02-04&track_id=4&r_time=19%3A24&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814304&dog_id=539113&r_date=2021-02-04&track_id=4&r_time=19%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814304&dog_id=537440&r_date=2021-02-04&track_id=4&r_time=19%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814304&dog_id=535164&r_date=2021-02-04&track_id=4&r_time=19%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814304&dog_id=534842&r_date=2021-02-04&track_id=4&r_time=19%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814304&dog_id=541525&r_date=2021-02-04&track_id=4&r_time=19%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814304&dog_id=528518&r_date=2021-02-04&track_id=4&r_time=19%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814305&dog_id=537166&r_date=2021-02-04&track_id=4&r_time=20%3A03&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814305&dog_id=544344&r_date=2021-02-04&track_id=4&r_time=20%3A03&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814305&dog_id=537968&r_date=2021-02-04&track_id=4&r_time=20%3A03&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814305&dog_id=516804&r_date=2021-02-04&track_id=4&r_time=20%3A03&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814305&dog_id=534069&r_date=2021-02-04&track_id=4&r_time=20%3A03&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814305&dog_id=540578&r_date=2021-02-04&track_id=4&r_time=20%3A03&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814306&dog_id=523472&r_date=2021-02-04&track_id=4&r_time=20%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814306&dog_id=531055&r_date=2021-02-04&track_id=4&r_time=20%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814306&dog_id=529670&r_date=2021-02-04&track_id=4&r_time=20%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814306&dog_id=527449&r_date=2021-02-04&track_id=4&r_time=20%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814306&dog_id=515659&r_date=2021-02-04&track_id=4&r_time=20%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814306&dog_id=535134&r_date=2021-02-04&track_id=4&r_time=20%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814307&dog_id=534975&r_date=2021-02-04&track_id=4&r_time=20%3A43&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814307&dog_id=535241&r_date=2021-02-04&track_id=4&r_time=20%3A43&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814307&dog_id=545123&r_date=2021-02-04&track_id=4&r_time=20%3A43&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814307&dog_id=534690&r_date=2021-02-04&track_id=4&r_time=20%3A43&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814307&dog_id=540856&r_date=2021-02-04&track_id=4&r_time=20%3A43&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814307&dog_id=533643&r_date=2021-02-04&track_id=4&r_time=20%3A43&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814308&dog_id=537143&r_date=2021-02-04&track_id=4&r_time=21%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814308&dog_id=537965&r_date=2021-02-04&track_id=4&r_time=21%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814308&dog_id=536723&r_date=2021-02-04&track_id=4&r_time=21%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814308&dog_id=530007&r_date=2021-02-04&track_id=4&r_time=21%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814308&dog_id=527142&r_date=2021-02-04&track_id=4&r_time=21%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814308&dog_id=540611&r_date=2021-02-04&track_id=4&r_time=21%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814309&dog_id=541689&r_date=2021-02-04&track_id=4&r_time=21%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814309&dog_id=543159&r_date=2021-02-04&track_id=4&r_time=21%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814309&dog_id=540262&r_date=2021-02-04&track_id=4&r_time=21%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814309&dog_id=537730&r_date=2021-02-04&track_id=4&r_time=21%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814309&dog_id=522844&r_date=2021-02-04&track_id=4&r_time=21%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814309&dog_id=535722&r_date=2021-02-04&track_id=4&r_time=21%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814572&dog_id=541923&r_date=2021-02-05&track_id=4&r_time=13%3A57&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814572&dog_id=520890&r_date=2021-02-05&track_id=4&r_time=13%3A57&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814572&dog_id=535298&r_date=2021-02-05&track_id=4&r_time=13%3A57&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814572&dog_id=543714&r_date=2021-02-05&track_id=4&r_time=13%3A57&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814572&dog_id=544324&r_date=2021-02-05&track_id=4&r_time=13%3A57&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814572&dog_id=539743&r_date=2021-02-05&track_id=4&r_time=13%3A57&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814573&dog_id=547216&r_date=2021-02-05&track_id=4&r_time=14%3A12&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814573&dog_id=527112&r_date=2021-02-05&track_id=4&r_time=14%3A12&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814573&dog_id=537752&r_date=2021-02-05&track_id=4&r_time=14%3A12&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814573&dog_id=516786&r_date=2021-02-05&track_id=4&r_time=14%3A12&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814573&dog_id=526682&r_date=2021-02-05&track_id=4&r_time=14%3A12&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814573&dog_id=544719&r_date=2021-02-05&track_id=4&r_time=14%3A12&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814574&dog_id=542091&r_date=2021-02-05&track_id=4&r_time=14%3A32&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814574&dog_id=518173&r_date=2021-02-05&track_id=4&r_time=14%3A32&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814574&dog_id=530709&r_date=2021-02-05&track_id=4&r_time=14%3A32&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814574&dog_id=538383&r_date=2021-02-05&track_id=4&r_time=14%3A32&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814574&dog_id=545208&r_date=2021-02-05&track_id=4&r_time=14%3A32&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814574&dog_id=539512&r_date=2021-02-05&track_id=4&r_time=14%3A32&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814575&dog_id=531409&r_date=2021-02-05&track_id=4&r_time=14%3A52&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814575&dog_id=542944&r_date=2021-02-05&track_id=4&r_time=14%3A52&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814575&dog_id=546046&r_date=2021-02-05&track_id=4&r_time=14%3A52&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814575&dog_id=549630&r_date=2021-02-05&track_id=4&r_time=14%3A52&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814575&dog_id=541671&r_date=2021-02-05&track_id=4&r_time=14%3A52&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814575&dog_id=549123&r_date=2021-02-05&track_id=4&r_time=14%3A52&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814576&dog_id=531407&r_date=2021-02-05&track_id=4&r_time=15%3A11&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814576&dog_id=534347&r_date=2021-02-05&track_id=4&r_time=15%3A11&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814576&dog_id=536248&r_date=2021-02-05&track_id=4&r_time=15%3A11&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814576&dog_id=546139&r_date=2021-02-05&track_id=4&r_time=15%3A11&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814576&dog_id=514098&r_date=2021-02-05&track_id=4&r_time=15%3A11&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814576&dog_id=516754&r_date=2021-02-05&track_id=4&r_time=15%3A11&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814577&dog_id=518629&r_date=2021-02-05&track_id=4&r_time=15%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814577&dog_id=541373&r_date=2021-02-05&track_id=4&r_time=15%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814577&dog_id=548642&r_date=2021-02-05&track_id=4&r_time=15%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814577&dog_id=547583&r_date=2021-02-05&track_id=4&r_time=15%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814577&dog_id=550401&r_date=2021-02-05&track_id=4&r_time=15%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814577&dog_id=547901&r_date=2021-02-05&track_id=4&r_time=15%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814578&dog_id=550027&r_date=2021-02-05&track_id=4&r_time=15%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814578&dog_id=550061&r_date=2021-02-05&track_id=4&r_time=15%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814578&dog_id=525101&r_date=2021-02-05&track_id=4&r_time=15%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814578&dog_id=541274&r_date=2021-02-05&track_id=4&r_time=15%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814578&dog_id=549093&r_date=2021-02-05&track_id=4&r_time=15%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814578&dog_id=532338&r_date=2021-02-05&track_id=4&r_time=15%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814579&dog_id=537964&r_date=2021-02-05&track_id=4&r_time=16%3A08&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814579&dog_id=526399&r_date=2021-02-05&track_id=4&r_time=16%3A08&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814579&dog_id=536131&r_date=2021-02-05&track_id=4&r_time=16%3A08&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814579&dog_id=534534&r_date=2021-02-05&track_id=4&r_time=16%3A08&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814579&dog_id=538384&r_date=2021-02-05&track_id=4&r_time=16%3A08&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814579&dog_id=543784&r_date=2021-02-05&track_id=4&r_time=16%3A08&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814580&dog_id=547869&r_date=2021-02-05&track_id=4&r_time=16%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814580&dog_id=532599&r_date=2021-02-05&track_id=4&r_time=16%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814580&dog_id=542203&r_date=2021-02-05&track_id=4&r_time=16%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814580&dog_id=542331&r_date=2021-02-05&track_id=4&r_time=16%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814580&dog_id=549092&r_date=2021-02-05&track_id=4&r_time=16%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814580&dog_id=537690&r_date=2021-02-05&track_id=4&r_time=16%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814581&dog_id=550480&r_date=2021-02-05&track_id=4&r_time=16%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814581&dog_id=534405&r_date=2021-02-05&track_id=4&r_time=16%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814581&dog_id=549436&r_date=2021-02-05&track_id=4&r_time=16%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814581&dog_id=530462&r_date=2021-02-05&track_id=4&r_time=16%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814581&dog_id=547146&r_date=2021-02-05&track_id=4&r_time=16%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814581&dog_id=548280&r_date=2021-02-05&track_id=4&r_time=16%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814582&dog_id=538156&r_date=2021-02-05&track_id=4&r_time=17%3A08&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814582&dog_id=541919&r_date=2021-02-05&track_id=4&r_time=17%3A08&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814582&dog_id=518901&r_date=2021-02-05&track_id=4&r_time=17%3A08&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814582&dog_id=520865&r_date=2021-02-05&track_id=4&r_time=17%3A08&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814582&dog_id=524129&r_date=2021-02-05&track_id=4&r_time=17%3A08&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814582&dog_id=538970&r_date=2021-02-05&track_id=4&r_time=17%3A08&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814583&dog_id=530687&r_date=2021-02-05&track_id=4&r_time=17%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814583&dog_id=543274&r_date=2021-02-05&track_id=4&r_time=17%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814583&dog_id=526738&r_date=2021-02-05&track_id=4&r_time=17%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814583&dog_id=537470&r_date=2021-02-05&track_id=4&r_time=17%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814583&dog_id=532691&r_date=2021-02-05&track_id=4&r_time=17%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814583&dog_id=549847&r_date=2021-02-05&track_id=4&r_time=17%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814584&dog_id=542603&r_date=2021-02-05&track_id=4&r_time=17%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814584&dog_id=544141&r_date=2021-02-05&track_id=4&r_time=17%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814584&dog_id=550390&r_date=2021-02-05&track_id=4&r_time=17%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814584&dog_id=538966&r_date=2021-02-05&track_id=4&r_time=17%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814584&dog_id=542017&r_date=2021-02-05&track_id=4&r_time=17%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814584&dog_id=538199&r_date=2021-02-05&track_id=4&r_time=17%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814585&dog_id=549599&r_date=2021-02-05&track_id=4&r_time=18%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814585&dog_id=542288&r_date=2021-02-05&track_id=4&r_time=18%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814585&dog_id=550044&r_date=2021-02-05&track_id=4&r_time=18%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814585&dog_id=526993&r_date=2021-02-05&track_id=4&r_time=18%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814585&dog_id=545784&r_date=2021-02-05&track_id=4&r_time=18%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814585&dog_id=550505&r_date=2021-02-05&track_id=4&r_time=18%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814545&dog_id=549820&r_date=2021-02-06&track_id=4&r_time=18%3A17&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814545&dog_id=550090&r_date=2021-02-06&track_id=4&r_time=18%3A17&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814545&dog_id=546638&r_date=2021-02-06&track_id=4&r_time=18%3A17&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814545&dog_id=548066&r_date=2021-02-06&track_id=4&r_time=18%3A17&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814545&dog_id=547420&r_date=2021-02-06&track_id=4&r_time=18%3A17&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814545&dog_id=547219&r_date=2021-02-06&track_id=4&r_time=18%3A17&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814546&dog_id=550126&r_date=2021-02-06&track_id=4&r_time=18%3A33&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814546&dog_id=544153&r_date=2021-02-06&track_id=4&r_time=18%3A33&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814546&dog_id=546321&r_date=2021-02-06&track_id=4&r_time=18%3A33&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814546&dog_id=546366&r_date=2021-02-06&track_id=4&r_time=18%3A33&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814546&dog_id=547918&r_date=2021-02-06&track_id=4&r_time=18%3A33&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814546&dog_id=545532&r_date=2021-02-06&track_id=4&r_time=18%3A33&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814547&dog_id=544580&r_date=2021-02-06&track_id=4&r_time=18%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814547&dog_id=550252&r_date=2021-02-06&track_id=4&r_time=18%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814547&dog_id=545468&r_date=2021-02-06&track_id=4&r_time=18%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814547&dog_id=547452&r_date=2021-02-06&track_id=4&r_time=18%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814547&dog_id=547407&r_date=2021-02-06&track_id=4&r_time=18%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814547&dog_id=544713&r_date=2021-02-06&track_id=4&r_time=18%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814548&dog_id=546024&r_date=2021-02-06&track_id=4&r_time=19%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814548&dog_id=547387&r_date=2021-02-06&track_id=4&r_time=19%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814548&dog_id=548519&r_date=2021-02-06&track_id=4&r_time=19%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814548&dog_id=546613&r_date=2021-02-06&track_id=4&r_time=19%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814548&dog_id=547729&r_date=2021-02-06&track_id=4&r_time=19%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814548&dog_id=549261&r_date=2021-02-06&track_id=4&r_time=19%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814549&dog_id=547380&r_date=2021-02-06&track_id=4&r_time=19%3A24&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814549&dog_id=546021&r_date=2021-02-06&track_id=4&r_time=19%3A24&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814549&dog_id=546186&r_date=2021-02-06&track_id=4&r_time=19%3A24&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814549&dog_id=548822&r_date=2021-02-06&track_id=4&r_time=19%3A24&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814549&dog_id=548151&r_date=2021-02-06&track_id=4&r_time=19%3A24&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814549&dog_id=549020&r_date=2021-02-06&track_id=4&r_time=19%3A24&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814549&dog_id=548178&r_date=2021-02-06&track_id=4&r_time=19%3A24&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814550&dog_id=547555&r_date=2021-02-06&track_id=4&r_time=19%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814550&dog_id=548684&r_date=2021-02-06&track_id=4&r_time=19%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814550&dog_id=547937&r_date=2021-02-06&track_id=4&r_time=19%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814550&dog_id=545570&r_date=2021-02-06&track_id=4&r_time=19%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814550&dog_id=545773&r_date=2021-02-06&track_id=4&r_time=19%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814550&dog_id=547063&r_date=2021-02-06&track_id=4&r_time=19%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814551&dog_id=539136&r_date=2021-02-06&track_id=4&r_time=20%3A03&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814551&dog_id=544998&r_date=2021-02-06&track_id=4&r_time=20%3A03&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814551&dog_id=539493&r_date=2021-02-06&track_id=4&r_time=20%3A03&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814551&dog_id=537130&r_date=2021-02-06&track_id=4&r_time=20%3A03&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814551&dog_id=543568&r_date=2021-02-06&track_id=4&r_time=20%3A03&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814551&dog_id=542252&r_date=2021-02-06&track_id=4&r_time=20%3A03&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814552&dog_id=545025&r_date=2021-02-06&track_id=4&r_time=20%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814552&dog_id=529162&r_date=2021-02-06&track_id=4&r_time=20%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814552&dog_id=539982&r_date=2021-02-06&track_id=4&r_time=20%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814552&dog_id=543307&r_date=2021-02-06&track_id=4&r_time=20%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814552&dog_id=529009&r_date=2021-02-06&track_id=4&r_time=20%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814552&dog_id=540743&r_date=2021-02-06&track_id=4&r_time=20%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814553&dog_id=538538&r_date=2021-02-06&track_id=4&r_time=20%3A43&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814553&dog_id=530405&r_date=2021-02-06&track_id=4&r_time=20%3A43&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814553&dog_id=534905&r_date=2021-02-06&track_id=4&r_time=20%3A43&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814553&dog_id=536835&r_date=2021-02-06&track_id=4&r_time=20%3A43&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814553&dog_id=542659&r_date=2021-02-06&track_id=4&r_time=20%3A43&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814553&dog_id=544069&r_date=2021-02-06&track_id=4&r_time=20%3A43&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814554&dog_id=538191&r_date=2021-02-06&track_id=4&r_time=21%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814554&dog_id=541063&r_date=2021-02-06&track_id=4&r_time=21%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814554&dog_id=542441&r_date=2021-02-06&track_id=4&r_time=21%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814554&dog_id=540660&r_date=2021-02-06&track_id=4&r_time=21%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814554&dog_id=522506&r_date=2021-02-06&track_id=4&r_time=21%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814554&dog_id=533762&r_date=2021-02-06&track_id=4&r_time=21%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814555&dog_id=548563&r_date=2021-02-06&track_id=4&r_time=21%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814555&dog_id=550504&r_date=2021-02-06&track_id=4&r_time=21%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814555&dog_id=534828&r_date=2021-02-06&track_id=4&r_time=21%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814555&dog_id=535245&r_date=2021-02-06&track_id=4&r_time=21%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814555&dog_id=541082&r_date=2021-02-06&track_id=4&r_time=21%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1814555&dog_id=539137&r_date=2021-02-06&track_id=4&r_time=21%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815076&dog_id=541882&r_date=2021-02-08&track_id=4&r_time=13%3A49&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815076&dog_id=537147&r_date=2021-02-08&track_id=4&r_time=13%3A49&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815076&dog_id=526422&r_date=2021-02-08&track_id=4&r_time=13%3A49&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815076&dog_id=543144&r_date=2021-02-08&track_id=4&r_time=13%3A49&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815076&dog_id=546960&r_date=2021-02-08&track_id=4&r_time=13%3A49&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815076&dog_id=544024&r_date=2021-02-08&track_id=4&r_time=13%3A49&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815076&dog_id=536212&r_date=2021-02-08&track_id=4&r_time=13%3A49&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815077&dog_id=521839&r_date=2021-02-08&track_id=4&r_time=14%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815077&dog_id=521205&r_date=2021-02-08&track_id=4&r_time=14%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815077&dog_id=539389&r_date=2021-02-08&track_id=4&r_time=14%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815077&dog_id=546114&r_date=2021-02-08&track_id=4&r_time=14%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815077&dog_id=526950&r_date=2021-02-08&track_id=4&r_time=14%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815077&dog_id=542905&r_date=2021-02-08&track_id=4&r_time=14%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815078&dog_id=544473&r_date=2021-02-08&track_id=4&r_time=14%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815078&dog_id=541586&r_date=2021-02-08&track_id=4&r_time=14%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815078&dog_id=528573&r_date=2021-02-08&track_id=4&r_time=14%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815078&dog_id=532385&r_date=2021-02-08&track_id=4&r_time=14%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815078&dog_id=519457&r_date=2021-02-08&track_id=4&r_time=14%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815078&dog_id=535132&r_date=2021-02-08&track_id=4&r_time=14%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815079&dog_id=533129&r_date=2021-02-08&track_id=4&r_time=14%3A42&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815079&dog_id=550028&r_date=2021-02-08&track_id=4&r_time=14%3A42&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815079&dog_id=543920&r_date=2021-02-08&track_id=4&r_time=14%3A42&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815079&dog_id=521188&r_date=2021-02-08&track_id=4&r_time=14%3A42&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815079&dog_id=545530&r_date=2021-02-08&track_id=4&r_time=14%3A42&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815079&dog_id=534824&r_date=2021-02-08&track_id=4&r_time=14%3A42&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815079&dog_id=533669&r_date=2021-02-08&track_id=4&r_time=14%3A42&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815080&dog_id=529952&r_date=2021-02-08&track_id=4&r_time=15%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815080&dog_id=519003&r_date=2021-02-08&track_id=4&r_time=15%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815080&dog_id=544345&r_date=2021-02-08&track_id=4&r_time=15%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815080&dog_id=532812&r_date=2021-02-08&track_id=4&r_time=15%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815080&dog_id=536925&r_date=2021-02-08&track_id=4&r_time=15%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815080&dog_id=532420&r_date=2021-02-08&track_id=4&r_time=15%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815080&dog_id=537930&r_date=2021-02-08&track_id=4&r_time=15%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815081&dog_id=541329&r_date=2021-02-08&track_id=4&r_time=15%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815081&dog_id=539722&r_date=2021-02-08&track_id=4&r_time=15%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815081&dog_id=549801&r_date=2021-02-08&track_id=4&r_time=15%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815081&dog_id=546703&r_date=2021-02-08&track_id=4&r_time=15%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815081&dog_id=541922&r_date=2021-02-08&track_id=4&r_time=15%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815081&dog_id=539916&r_date=2021-02-08&track_id=4&r_time=15%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815081&dog_id=533618&r_date=2021-02-08&track_id=4&r_time=15%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815082&dog_id=537681&r_date=2021-02-08&track_id=4&r_time=15%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815082&dog_id=540859&r_date=2021-02-08&track_id=4&r_time=15%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815082&dog_id=546023&r_date=2021-02-08&track_id=4&r_time=15%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815082&dog_id=550560&r_date=2021-02-08&track_id=4&r_time=15%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815082&dog_id=526069&r_date=2021-02-08&track_id=4&r_time=15%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815082&dog_id=549508&r_date=2021-02-08&track_id=4&r_time=15%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815083&dog_id=535504&r_date=2021-02-08&track_id=4&r_time=15%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815083&dog_id=548330&r_date=2021-02-08&track_id=4&r_time=15%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815083&dog_id=541708&r_date=2021-02-08&track_id=4&r_time=15%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815083&dog_id=537368&r_date=2021-02-08&track_id=4&r_time=15%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815083&dog_id=515400&r_date=2021-02-08&track_id=4&r_time=15%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815083&dog_id=532830&r_date=2021-02-08&track_id=4&r_time=15%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815084&dog_id=535643&r_date=2021-02-08&track_id=4&r_time=16%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815084&dog_id=545531&r_date=2021-02-08&track_id=4&r_time=16%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815084&dog_id=542202&r_date=2021-02-08&track_id=4&r_time=16%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815084&dog_id=549383&r_date=2021-02-08&track_id=4&r_time=16%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815084&dog_id=545783&r_date=2021-02-08&track_id=4&r_time=16%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815084&dog_id=535712&r_date=2021-02-08&track_id=4&r_time=16%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815085&dog_id=537455&r_date=2021-02-08&track_id=4&r_time=16%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815085&dog_id=549799&r_date=2021-02-08&track_id=4&r_time=16%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815085&dog_id=542206&r_date=2021-02-08&track_id=4&r_time=16%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815085&dog_id=547608&r_date=2021-02-08&track_id=4&r_time=16%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815085&dog_id=544941&r_date=2021-02-08&track_id=4&r_time=16%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815085&dog_id=542416&r_date=2021-02-08&track_id=4&r_time=16%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815086&dog_id=536555&r_date=2021-02-08&track_id=4&r_time=16%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815086&dog_id=544220&r_date=2021-02-08&track_id=4&r_time=16%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815086&dog_id=539788&r_date=2021-02-08&track_id=4&r_time=16%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815086&dog_id=543158&r_date=2021-02-08&track_id=4&r_time=16%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815086&dog_id=549411&r_date=2021-02-08&track_id=4&r_time=16%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815086&dog_id=526960&r_date=2021-02-08&track_id=4&r_time=16%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815087&dog_id=541941&r_date=2021-02-08&track_id=4&r_time=17%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815087&dog_id=547198&r_date=2021-02-08&track_id=4&r_time=17%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815087&dog_id=532414&r_date=2021-02-08&track_id=4&r_time=17%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815087&dog_id=537740&r_date=2021-02-08&track_id=4&r_time=17%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815087&dog_id=542337&r_date=2021-02-08&track_id=4&r_time=17%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815087&dog_id=514239&r_date=2021-02-08&track_id=4&r_time=17%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815087&dog_id=549628&r_date=2021-02-08&track_id=4&r_time=17%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815088&dog_id=542046&r_date=2021-02-08&track_id=4&r_time=17%3A37&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815088&dog_id=525903&r_date=2021-02-08&track_id=4&r_time=17%3A37&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815088&dog_id=543919&r_date=2021-02-08&track_id=4&r_time=17%3A37&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815088&dog_id=543275&r_date=2021-02-08&track_id=4&r_time=17%3A37&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815088&dog_id=556330&r_date=2021-02-08&track_id=4&r_time=17%3A37&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815088&dog_id=541492&r_date=2021-02-08&track_id=4&r_time=17%3A37&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815089&dog_id=549598&r_date=2021-02-08&track_id=4&r_time=17%3A54&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815089&dog_id=539296&r_date=2021-02-08&track_id=4&r_time=17%3A54&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815089&dog_id=543700&r_date=2021-02-08&track_id=4&r_time=17%3A54&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815089&dog_id=537108&r_date=2021-02-08&track_id=4&r_time=17%3A54&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815089&dog_id=529958&r_date=2021-02-08&track_id=4&r_time=17%3A54&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815089&dog_id=542174&r_date=2021-02-08&track_id=4&r_time=17%3A54&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815308&dog_id=546101&r_date=2021-02-09&track_id=4&r_time=13%3A49&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815308&dog_id=537258&r_date=2021-02-09&track_id=4&r_time=13%3A49&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815308&dog_id=540896&r_date=2021-02-09&track_id=4&r_time=13%3A49&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815308&dog_id=525902&r_date=2021-02-09&track_id=4&r_time=13%3A49&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815308&dog_id=537679&r_date=2021-02-09&track_id=4&r_time=13%3A49&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815308&dog_id=546140&r_date=2021-02-09&track_id=4&r_time=13%3A49&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815309&dog_id=525025&r_date=2021-02-09&track_id=4&r_time=14%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815309&dog_id=542091&r_date=2021-02-09&track_id=4&r_time=14%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815309&dog_id=530988&r_date=2021-02-09&track_id=4&r_time=14%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815309&dog_id=543269&r_date=2021-02-09&track_id=4&r_time=14%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815309&dog_id=544846&r_date=2021-02-09&track_id=4&r_time=14%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815309&dog_id=545853&r_date=2021-02-09&track_id=4&r_time=14%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815310&dog_id=515442&r_date=2021-02-09&track_id=4&r_time=14%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815310&dog_id=537213&r_date=2021-02-09&track_id=4&r_time=14%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815310&dog_id=533847&r_date=2021-02-09&track_id=4&r_time=14%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815310&dog_id=550576&r_date=2021-02-09&track_id=4&r_time=14%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815310&dog_id=549707&r_date=2021-02-09&track_id=4&r_time=14%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815310&dog_id=534931&r_date=2021-02-09&track_id=4&r_time=14%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815311&dog_id=540712&r_date=2021-02-09&track_id=4&r_time=14%3A42&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815311&dog_id=541787&r_date=2021-02-09&track_id=4&r_time=14%3A42&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815311&dog_id=542059&r_date=2021-02-09&track_id=4&r_time=14%3A42&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815311&dog_id=548260&r_date=2021-02-09&track_id=4&r_time=14%3A42&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815311&dog_id=547855&r_date=2021-02-09&track_id=4&r_time=14%3A42&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815311&dog_id=550567&r_date=2021-02-09&track_id=4&r_time=14%3A42&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815312&dog_id=545781&r_date=2021-02-09&track_id=4&r_time=15%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815312&dog_id=521894&r_date=2021-02-09&track_id=4&r_time=15%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815312&dog_id=544259&r_date=2021-02-09&track_id=4&r_time=15%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815312&dog_id=542467&r_date=2021-02-09&track_id=4&r_time=15%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815312&dog_id=535142&r_date=2021-02-09&track_id=4&r_time=15%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815312&dog_id=545223&r_date=2021-02-09&track_id=4&r_time=15%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815312&dog_id=548645&r_date=2021-02-09&track_id=4&r_time=15%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815313&dog_id=549629&r_date=2021-02-09&track_id=4&r_time=15%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815313&dog_id=549825&r_date=2021-02-09&track_id=4&r_time=15%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815313&dog_id=516385&r_date=2021-02-09&track_id=4&r_time=15%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815313&dog_id=531824&r_date=2021-02-09&track_id=4&r_time=15%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815313&dog_id=550026&r_date=2021-02-09&track_id=4&r_time=15%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815313&dog_id=518940&r_date=2021-02-09&track_id=4&r_time=15%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815314&dog_id=525647&r_date=2021-02-09&track_id=4&r_time=15%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815314&dog_id=512502&r_date=2021-02-09&track_id=4&r_time=15%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815314&dog_id=539121&r_date=2021-02-09&track_id=4&r_time=15%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815314&dog_id=532596&r_date=2021-02-09&track_id=4&r_time=15%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815314&dog_id=538331&r_date=2021-02-09&track_id=4&r_time=15%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815314&dog_id=519135&r_date=2021-02-09&track_id=4&r_time=15%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815315&dog_id=540241&r_date=2021-02-09&track_id=4&r_time=15%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815315&dog_id=517034&r_date=2021-02-09&track_id=4&r_time=15%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815315&dog_id=528289&r_date=2021-02-09&track_id=4&r_time=15%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815315&dog_id=532469&r_date=2021-02-09&track_id=4&r_time=15%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815315&dog_id=545896&r_date=2021-02-09&track_id=4&r_time=15%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815315&dog_id=525324&r_date=2021-02-09&track_id=4&r_time=15%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815316&dog_id=541453&r_date=2021-02-09&track_id=4&r_time=16%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815316&dog_id=542650&r_date=2021-02-09&track_id=4&r_time=16%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815316&dog_id=539387&r_date=2021-02-09&track_id=4&r_time=16%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815316&dog_id=542204&r_date=2021-02-09&track_id=4&r_time=16%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815316&dog_id=534000&r_date=2021-02-09&track_id=4&r_time=16%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815316&dog_id=535275&r_date=2021-02-09&track_id=4&r_time=16%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815317&dog_id=549385&r_date=2021-02-09&track_id=4&r_time=16%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815317&dog_id=544060&r_date=2021-02-09&track_id=4&r_time=16%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815317&dog_id=546045&r_date=2021-02-09&track_id=4&r_time=16%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815317&dog_id=535197&r_date=2021-02-09&track_id=4&r_time=16%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815317&dog_id=543547&r_date=2021-02-09&track_id=4&r_time=16%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815317&dog_id=523683&r_date=2021-02-09&track_id=4&r_time=16%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815318&dog_id=547095&r_date=2021-02-09&track_id=4&r_time=16%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815318&dog_id=537482&r_date=2021-02-09&track_id=4&r_time=16%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815318&dog_id=545224&r_date=2021-02-09&track_id=4&r_time=16%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815318&dog_id=532401&r_date=2021-02-09&track_id=4&r_time=16%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815318&dog_id=536480&r_date=2021-02-09&track_id=4&r_time=16%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815318&dog_id=534241&r_date=2021-02-09&track_id=4&r_time=16%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815319&dog_id=536242&r_date=2021-02-09&track_id=4&r_time=17%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815319&dog_id=542205&r_date=2021-02-09&track_id=4&r_time=17%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815319&dog_id=541669&r_date=2021-02-09&track_id=4&r_time=17%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815319&dog_id=539888&r_date=2021-02-09&track_id=4&r_time=17%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815319&dog_id=537662&r_date=2021-02-09&track_id=4&r_time=17%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815319&dog_id=539499&r_date=2021-02-09&track_id=4&r_time=17%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815320&dog_id=545821&r_date=2021-02-09&track_id=4&r_time=17%3A37&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815320&dog_id=536306&r_date=2021-02-09&track_id=4&r_time=17%3A37&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815320&dog_id=545493&r_date=2021-02-09&track_id=4&r_time=17%3A37&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815320&dog_id=537260&r_date=2021-02-09&track_id=4&r_time=17%3A37&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815320&dog_id=548168&r_date=2021-02-09&track_id=4&r_time=17%3A37&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815320&dog_id=528459&r_date=2021-02-09&track_id=4&r_time=17%3A37&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815321&dog_id=542288&r_date=2021-02-09&track_id=4&r_time=17%3A54&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815321&dog_id=548067&r_date=2021-02-09&track_id=4&r_time=17%3A54&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815321&dog_id=545612&r_date=2021-02-09&track_id=4&r_time=17%3A54&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815321&dog_id=525017&r_date=2021-02-09&track_id=4&r_time=17%3A54&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815321&dog_id=526249&r_date=2021-02-09&track_id=4&r_time=17%3A54&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815321&dog_id=540858&r_date=2021-02-09&track_id=4&r_time=17%3A54&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815641&dog_id=540262&r_date=2021-02-11&track_id=4&r_time=18%3A17&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815641&dog_id=542815&r_date=2021-02-11&track_id=4&r_time=18%3A17&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815641&dog_id=540611&r_date=2021-02-11&track_id=4&r_time=18%3A17&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815641&dog_id=541689&r_date=2021-02-11&track_id=4&r_time=18%3A17&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815641&dog_id=544373&r_date=2021-02-11&track_id=4&r_time=18%3A17&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815641&dog_id=542641&r_date=2021-02-11&track_id=4&r_time=18%3A17&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815642&dog_id=527142&r_date=2021-02-11&track_id=4&r_time=18%3A33&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815642&dog_id=538397&r_date=2021-02-11&track_id=4&r_time=18%3A33&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815642&dog_id=533324&r_date=2021-02-11&track_id=4&r_time=18%3A33&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815642&dog_id=534196&r_date=2021-02-11&track_id=4&r_time=18%3A33&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815642&dog_id=525101&r_date=2021-02-11&track_id=4&r_time=18%3A33&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815642&dog_id=542417&r_date=2021-02-11&track_id=4&r_time=18%3A33&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815643&dog_id=539402&r_date=2021-02-11&track_id=4&r_time=18%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815643&dog_id=537562&r_date=2021-02-11&track_id=4&r_time=18%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815643&dog_id=546114&r_date=2021-02-11&track_id=4&r_time=18%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815643&dog_id=544788&r_date=2021-02-11&track_id=4&r_time=18%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815643&dog_id=547216&r_date=2021-02-11&track_id=4&r_time=18%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815643&dog_id=516754&r_date=2021-02-11&track_id=4&r_time=18%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815644&dog_id=533132&r_date=2021-02-11&track_id=4&r_time=19%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815644&dog_id=550481&r_date=2021-02-11&track_id=4&r_time=19%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815644&dog_id=529868&r_date=2021-02-11&track_id=4&r_time=19%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815644&dog_id=544894&r_date=2021-02-11&track_id=4&r_time=19%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815644&dog_id=537964&r_date=2021-02-11&track_id=4&r_time=19%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815644&dog_id=533512&r_date=2021-02-11&track_id=4&r_time=19%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815645&dog_id=529566&r_date=2021-02-11&track_id=4&r_time=19%3A24&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815645&dog_id=534328&r_date=2021-02-11&track_id=4&r_time=19%3A24&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815645&dog_id=541490&r_date=2021-02-11&track_id=4&r_time=19%3A24&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815645&dog_id=531242&r_date=2021-02-11&track_id=4&r_time=19%3A24&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815645&dog_id=534347&r_date=2021-02-11&track_id=4&r_time=19%3A24&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815645&dog_id=539077&r_date=2021-02-11&track_id=4&r_time=19%3A24&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815646&dog_id=535505&r_date=2021-02-11&track_id=4&r_time=19%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815646&dog_id=538381&r_date=2021-02-11&track_id=4&r_time=19%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815646&dog_id=546139&r_date=2021-02-11&track_id=4&r_time=19%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815646&dog_id=543402&r_date=2021-02-11&track_id=4&r_time=19%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815646&dog_id=540911&r_date=2021-02-11&track_id=4&r_time=19%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815646&dog_id=529670&r_date=2021-02-11&track_id=4&r_time=19%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815647&dog_id=534690&r_date=2021-02-11&track_id=4&r_time=20%3A03&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815647&dog_id=535241&r_date=2021-02-11&track_id=4&r_time=20%3A03&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815647&dog_id=549091&r_date=2021-02-11&track_id=4&r_time=20%3A03&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815647&dog_id=544465&r_date=2021-02-11&track_id=4&r_time=20%3A03&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815647&dog_id=529407&r_date=2021-02-11&track_id=4&r_time=20%3A03&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815647&dog_id=541707&r_date=2021-02-11&track_id=4&r_time=20%3A03&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815648&dog_id=522558&r_date=2021-02-11&track_id=4&r_time=20%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815648&dog_id=538540&r_date=2021-02-11&track_id=4&r_time=20%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815648&dog_id=531055&r_date=2021-02-11&track_id=4&r_time=20%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815648&dog_id=547433&r_date=2021-02-11&track_id=4&r_time=20%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815648&dog_id=531407&r_date=2021-02-11&track_id=4&r_time=20%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815648&dog_id=535121&r_date=2021-02-11&track_id=4&r_time=20%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815649&dog_id=542102&r_date=2021-02-11&track_id=4&r_time=20%3A43&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815649&dog_id=543784&r_date=2021-02-11&track_id=4&r_time=20%3A43&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815649&dog_id=549093&r_date=2021-02-11&track_id=4&r_time=20%3A43&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815649&dog_id=537752&r_date=2021-02-11&track_id=4&r_time=20%3A43&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815649&dog_id=549599&r_date=2021-02-11&track_id=4&r_time=20%3A43&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815649&dog_id=550611&r_date=2021-02-11&track_id=4&r_time=20%3A43&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815650&dog_id=544628&r_date=2021-02-11&track_id=4&r_time=21%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815650&dog_id=531959&r_date=2021-02-11&track_id=4&r_time=21%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815650&dog_id=543228&r_date=2021-02-11&track_id=4&r_time=21%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815650&dog_id=530882&r_date=2021-02-11&track_id=4&r_time=21%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815650&dog_id=523472&r_date=2021-02-11&track_id=4&r_time=21%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815650&dog_id=540085&r_date=2021-02-11&track_id=4&r_time=21%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815651&dog_id=539792&r_date=2021-02-11&track_id=4&r_time=21%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815651&dog_id=539113&r_date=2021-02-11&track_id=4&r_time=21%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815651&dog_id=530715&r_date=2021-02-11&track_id=4&r_time=21%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815651&dog_id=530007&r_date=2021-02-11&track_id=4&r_time=21%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815651&dog_id=536723&r_date=2021-02-11&track_id=4&r_time=21%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815651&dog_id=548594&r_date=2021-02-11&track_id=4&r_time=21%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815651&dog_id=530090&r_date=2021-02-11&track_id=4&r_time=21%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815927&dog_id=534402&r_date=2021-02-12&track_id=4&r_time=13%3A57&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815927&dog_id=539574&r_date=2021-02-12&track_id=4&r_time=13%3A57&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815927&dog_id=538181&r_date=2021-02-12&track_id=4&r_time=13%3A57&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815927&dog_id=518173&r_date=2021-02-12&track_id=4&r_time=13%3A57&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815927&dog_id=541373&r_date=2021-02-12&track_id=4&r_time=13%3A57&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815927&dog_id=535298&r_date=2021-02-12&track_id=4&r_time=13%3A57&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815928&dog_id=533870&r_date=2021-02-12&track_id=4&r_time=14%3A12&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815928&dog_id=536400&r_date=2021-02-12&track_id=4&r_time=14%3A12&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815928&dog_id=532599&r_date=2021-02-12&track_id=4&r_time=14%3A12&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815928&dog_id=547372&r_date=2021-02-12&track_id=4&r_time=14%3A12&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815928&dog_id=549092&r_date=2021-02-12&track_id=4&r_time=14%3A12&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815928&dog_id=537690&r_date=2021-02-12&track_id=4&r_time=14%3A12&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815929&dog_id=538383&r_date=2021-02-12&track_id=4&r_time=14%3A32&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815929&dog_id=548642&r_date=2021-02-12&track_id=4&r_time=14%3A32&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815929&dog_id=545561&r_date=2021-02-12&track_id=4&r_time=14%3A32&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815929&dog_id=534826&r_date=2021-02-12&track_id=4&r_time=14%3A32&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815929&dog_id=544655&r_date=2021-02-12&track_id=4&r_time=14%3A32&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815929&dog_id=532722&r_date=2021-02-12&track_id=4&r_time=14%3A32&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815930&dog_id=527666&r_date=2021-02-12&track_id=4&r_time=14%3A52&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815930&dog_id=531806&r_date=2021-02-12&track_id=4&r_time=14%3A52&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815930&dog_id=522340&r_date=2021-02-12&track_id=4&r_time=14%3A52&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815930&dog_id=541525&r_date=2021-02-12&track_id=4&r_time=14%3A52&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815930&dog_id=537879&r_date=2021-02-12&track_id=4&r_time=14%3A52&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815930&dog_id=525699&r_date=2021-02-12&track_id=4&r_time=14%3A52&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815931&dog_id=520749&r_date=2021-02-12&track_id=4&r_time=15%3A11&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815931&dog_id=534824&r_date=2021-02-12&track_id=4&r_time=15%3A11&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815931&dog_id=545784&r_date=2021-02-12&track_id=4&r_time=15%3A11&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815931&dog_id=526949&r_date=2021-02-12&track_id=4&r_time=15%3A11&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815931&dog_id=546306&r_date=2021-02-12&track_id=4&r_time=15%3A11&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815931&dog_id=547827&r_date=2021-02-12&track_id=4&r_time=15%3A11&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815932&dog_id=541274&r_date=2021-02-12&track_id=4&r_time=15%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815932&dog_id=543714&r_date=2021-02-12&track_id=4&r_time=15%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815932&dog_id=534123&r_date=2021-02-12&track_id=4&r_time=15%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815932&dog_id=530709&r_date=2021-02-12&track_id=4&r_time=15%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815932&dog_id=539743&r_date=2021-02-12&track_id=4&r_time=15%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815932&dog_id=542043&r_date=2021-02-12&track_id=4&r_time=15%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815933&dog_id=536204&r_date=2021-02-12&track_id=4&r_time=15%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815933&dog_id=539786&r_date=2021-02-12&track_id=4&r_time=15%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815933&dog_id=531807&r_date=2021-02-12&track_id=4&r_time=15%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815933&dog_id=539357&r_date=2021-02-12&track_id=4&r_time=15%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815933&dog_id=533557&r_date=2021-02-12&track_id=4&r_time=15%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815933&dog_id=523909&r_date=2021-02-12&track_id=4&r_time=15%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815934&dog_id=539788&r_date=2021-02-12&track_id=4&r_time=16%3A08&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815934&dog_id=526960&r_date=2021-02-12&track_id=4&r_time=16%3A08&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815934&dog_id=535958&r_date=2021-02-12&track_id=4&r_time=16%3A08&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815934&dog_id=541923&r_date=2021-02-12&track_id=4&r_time=16%3A08&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815934&dog_id=536131&r_date=2021-02-12&track_id=4&r_time=16%3A08&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815934&dog_id=537455&r_date=2021-02-12&track_id=4&r_time=16%3A08&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815935&dog_id=533335&r_date=2021-02-12&track_id=4&r_time=16%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815935&dog_id=532693&r_date=2021-02-12&track_id=4&r_time=16%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815935&dog_id=549122&r_date=2021-02-12&track_id=4&r_time=16%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815935&dog_id=531292&r_date=2021-02-12&track_id=4&r_time=16%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815935&dog_id=531409&r_date=2021-02-12&track_id=4&r_time=16%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815935&dog_id=548832&r_date=2021-02-12&track_id=4&r_time=16%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815936&dog_id=544139&r_date=2021-02-12&track_id=4&r_time=16%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815936&dog_id=544140&r_date=2021-02-12&track_id=4&r_time=16%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815936&dog_id=539456&r_date=2021-02-12&track_id=4&r_time=16%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815936&dog_id=536108&r_date=2021-02-12&track_id=4&r_time=16%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815936&dog_id=550474&r_date=2021-02-12&track_id=4&r_time=16%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815936&dog_id=527333&r_date=2021-02-12&track_id=4&r_time=16%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815937&dog_id=543274&r_date=2021-02-12&track_id=4&r_time=17%3A08&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815937&dog_id=549436&r_date=2021-02-12&track_id=4&r_time=17%3A08&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815937&dog_id=526937&r_date=2021-02-12&track_id=4&r_time=17%3A08&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815937&dog_id=541919&r_date=2021-02-12&track_id=4&r_time=17%3A08&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815937&dog_id=537107&r_date=2021-02-12&track_id=4&r_time=17%3A08&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815937&dog_id=534405&r_date=2021-02-12&track_id=4&r_time=17%3A08&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815938&dog_id=549573&r_date=2021-02-12&track_id=4&r_time=17%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815938&dog_id=547544&r_date=2021-02-12&track_id=4&r_time=17%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815938&dog_id=533823&r_date=2021-02-12&track_id=4&r_time=17%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815938&dog_id=546046&r_date=2021-02-12&track_id=4&r_time=17%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815938&dog_id=550588&r_date=2021-02-12&track_id=4&r_time=17%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815938&dog_id=549123&r_date=2021-02-12&track_id=4&r_time=17%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815939&dog_id=537128&r_date=2021-02-12&track_id=4&r_time=17%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815939&dog_id=530462&r_date=2021-02-12&track_id=4&r_time=17%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815939&dog_id=549919&r_date=2021-02-12&track_id=4&r_time=17%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815939&dog_id=530687&r_date=2021-02-12&track_id=4&r_time=17%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815939&dog_id=541140&r_date=2021-02-12&track_id=4&r_time=17%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815939&dog_id=541701&r_date=2021-02-12&track_id=4&r_time=17%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815940&dog_id=537338&r_date=2021-02-12&track_id=4&r_time=18%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815940&dog_id=538156&r_date=2021-02-12&track_id=4&r_time=18%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815940&dog_id=549437&r_date=2021-02-12&track_id=4&r_time=18%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815940&dog_id=549154&r_date=2021-02-12&track_id=4&r_time=18%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815940&dog_id=549735&r_date=2021-02-12&track_id=4&r_time=18%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815940&dog_id=541545&r_date=2021-02-12&track_id=4&r_time=18%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815917&dog_id=548822&r_date=2021-02-13&track_id=4&r_time=18%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815917&dog_id=549261&r_date=2021-02-13&track_id=4&r_time=18%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815924&dog_id=548563&r_date=2021-02-13&track_id=4&r_time=21%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815925&dog_id=539933&r_date=2021-02-13&track_id=4&r_time=21%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1815925&dog_id=540743&r_date=2021-02-13&track_id=4&r_time=21%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817148&dog_id=550061&r_date=2021-02-18&track_id=4&r_time=18%3A17&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817148&dog_id=547869&r_date=2021-02-18&track_id=4&r_time=18%3A17&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817148&dog_id=544259&r_date=2021-02-18&track_id=4&r_time=18%3A17&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817148&dog_id=532469&r_date=2021-02-18&track_id=4&r_time=18%3A17&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817148&dog_id=535197&r_date=2021-02-18&track_id=4&r_time=18%3A17&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817148&dog_id=536131&r_date=2021-02-18&track_id=4&r_time=18%3A17&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817149&dog_id=531242&r_date=2021-02-18&track_id=4&r_time=18%3A33&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817149&dog_id=534347&r_date=2021-02-18&track_id=4&r_time=18%3A33&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817149&dog_id=528067&r_date=2021-02-18&track_id=4&r_time=18%3A33&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817149&dog_id=544719&r_date=2021-02-18&track_id=4&r_time=18%3A33&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817149&dog_id=523683&r_date=2021-02-18&track_id=4&r_time=18%3A33&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817149&dog_id=526682&r_date=2021-02-18&track_id=4&r_time=18%3A33&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817150&dog_id=542460&r_date=2021-02-18&track_id=4&r_time=18%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817150&dog_id=544060&r_date=2021-02-18&track_id=4&r_time=18%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817150&dog_id=546045&r_date=2021-02-18&track_id=4&r_time=18%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817150&dog_id=541923&r_date=2021-02-18&track_id=4&r_time=18%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817150&dog_id=527112&r_date=2021-02-18&track_id=4&r_time=18%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817150&dog_id=534402&r_date=2021-02-18&track_id=4&r_time=18%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817151&dog_id=545781&r_date=2021-02-18&track_id=4&r_time=19%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817151&dog_id=546114&r_date=2021-02-18&track_id=4&r_time=19%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817151&dog_id=525025&r_date=2021-02-18&track_id=4&r_time=19%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817151&dog_id=550027&r_date=2021-02-18&track_id=4&r_time=19%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817151&dog_id=520678&r_date=2021-02-18&track_id=4&r_time=19%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817151&dog_id=541274&r_date=2021-02-18&track_id=4&r_time=19%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817151&dog_id=545859&r_date=2021-02-18&track_id=4&r_time=19%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817152&dog_id=544220&r_date=2021-02-18&track_id=4&r_time=19%3A24&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817152&dog_id=537562&r_date=2021-02-18&track_id=4&r_time=19%3A24&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817152&dog_id=536022&r_date=2021-02-18&track_id=4&r_time=19%3A24&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817152&dog_id=535958&r_date=2021-02-18&track_id=4&r_time=19%3A24&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817152&dog_id=546139&r_date=2021-02-18&track_id=4&r_time=19%3A24&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817152&dog_id=536248&r_date=2021-02-18&track_id=4&r_time=19%3A24&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817153&dog_id=539389&r_date=2021-02-18&track_id=4&r_time=19%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817153&dog_id=544894&r_date=2021-02-18&track_id=4&r_time=19%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817153&dog_id=533512&r_date=2021-02-18&track_id=4&r_time=19%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817153&dog_id=543815&r_date=2021-02-18&track_id=4&r_time=19%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817153&dog_id=544788&r_date=2021-02-18&track_id=4&r_time=19%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817153&dog_id=539788&r_date=2021-02-18&track_id=4&r_time=19%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817154&dog_id=549411&r_date=2021-02-18&track_id=4&r_time=20%3A03&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817154&dog_id=536925&r_date=2021-02-18&track_id=4&r_time=20%3A03&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817154&dog_id=514098&r_date=2021-02-18&track_id=4&r_time=20%3A03&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817154&dog_id=542417&r_date=2021-02-18&track_id=4&r_time=20%3A03&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817154&dog_id=547216&r_date=2021-02-18&track_id=4&r_time=20%3A03&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817154&dog_id=540241&r_date=2021-02-18&track_id=4&r_time=20%3A03&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817155&dog_id=541630&r_date=2021-02-18&track_id=4&r_time=20%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817155&dog_id=543005&r_date=2021-02-18&track_id=4&r_time=20%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817155&dog_id=538540&r_date=2021-02-18&track_id=4&r_time=20%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817155&dog_id=550481&r_date=2021-02-18&track_id=4&r_time=20%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817155&dog_id=548594&r_date=2021-02-18&track_id=4&r_time=20%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817155&dog_id=545532&r_date=2021-02-18&track_id=4&r_time=20%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817156&dog_id=547433&r_date=2021-02-18&track_id=4&r_time=20%3A43&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817156&dog_id=535722&r_date=2021-02-18&track_id=4&r_time=20%3A43&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817156&dog_id=543789&r_date=2021-02-18&track_id=4&r_time=20%3A43&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817156&dog_id=531743&r_date=2021-02-18&track_id=4&r_time=20%3A43&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817156&dog_id=542905&r_date=2021-02-18&track_id=4&r_time=20%3A43&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817156&dog_id=542641&r_date=2021-02-18&track_id=4&r_time=20%3A43&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817156&dog_id=525830&r_date=2021-02-18&track_id=4&r_time=20%3A43&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817157&dog_id=516804&r_date=2021-02-18&track_id=4&r_time=21%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817157&dog_id=527666&r_date=2021-02-18&track_id=4&r_time=21%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817157&dog_id=544344&r_date=2021-02-18&track_id=4&r_time=21%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817157&dog_id=534196&r_date=2021-02-18&track_id=4&r_time=21%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817157&dog_id=541160&r_date=2021-02-18&track_id=4&r_time=21%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817157&dog_id=549385&r_date=2021-02-18&track_id=4&r_time=21%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817157&dog_id=515660&r_date=2021-02-18&track_id=4&r_time=21%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817158&dog_id=530007&r_date=2021-02-18&track_id=4&r_time=21%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817158&dog_id=537440&r_date=2021-02-18&track_id=4&r_time=21%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817158&dog_id=530882&r_date=2021-02-18&track_id=4&r_time=21%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817158&dog_id=533132&r_date=2021-02-18&track_id=4&r_time=21%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817158&dog_id=540611&r_date=2021-02-18&track_id=4&r_time=21%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817158&dog_id=522558&r_date=2021-02-18&track_id=4&r_time=21%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817312&dog_id=544605&r_date=2021-02-19&track_id=4&r_time=13%3A57&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817312&dog_id=505900&r_date=2021-02-19&track_id=4&r_time=13%3A57&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817312&dog_id=521980&r_date=2021-02-19&track_id=4&r_time=13%3A57&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817312&dog_id=543275&r_date=2021-02-19&track_id=4&r_time=13%3A57&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817312&dog_id=524035&r_date=2021-02-19&track_id=4&r_time=13%3A57&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817312&dog_id=541440&r_date=2021-02-19&track_id=4&r_time=13%3A57&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817313&dog_id=542203&r_date=2021-02-19&track_id=4&r_time=14%3A12&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817313&dog_id=541092&r_date=2021-02-19&track_id=4&r_time=14%3A12&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817313&dog_id=532599&r_date=2021-02-19&track_id=4&r_time=14%3A12&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817313&dog_id=549092&r_date=2021-02-19&track_id=4&r_time=14%3A12&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817313&dog_id=547372&r_date=2021-02-19&track_id=4&r_time=14%3A12&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817313&dog_id=549597&r_date=2021-02-19&track_id=4&r_time=14%3A12&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817314&dog_id=519457&r_date=2021-02-19&track_id=4&r_time=14%3A32&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817314&dog_id=520749&r_date=2021-02-19&track_id=4&r_time=14%3A32&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817314&dog_id=542959&r_date=2021-02-19&track_id=4&r_time=14%3A32&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817314&dog_id=538397&r_date=2021-02-19&track_id=4&r_time=14%3A32&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817314&dog_id=545821&r_date=2021-02-19&track_id=4&r_time=14%3A32&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817314&dog_id=538199&r_date=2021-02-19&track_id=4&r_time=14%3A32&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817315&dog_id=543700&r_date=2021-02-19&track_id=4&r_time=14%3A52&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817315&dog_id=547098&r_date=2021-02-19&track_id=4&r_time=14%3A52&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817315&dog_id=541494&r_date=2021-02-19&track_id=4&r_time=14%3A52&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817315&dog_id=550588&r_date=2021-02-19&track_id=4&r_time=14%3A52&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817315&dog_id=546046&r_date=2021-02-19&track_id=4&r_time=14%3A52&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817315&dog_id=547731&r_date=2021-02-19&track_id=4&r_time=14%3A52&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817315&dog_id=547544&r_date=2021-02-19&track_id=4&r_time=14%3A52&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817316&dog_id=539768&r_date=2021-02-19&track_id=4&r_time=15%3A11&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817316&dog_id=531292&r_date=2021-02-19&track_id=4&r_time=15%3A11&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817316&dog_id=548957&r_date=2021-02-19&track_id=4&r_time=15%3A11&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817316&dog_id=531409&r_date=2021-02-19&track_id=4&r_time=15%3A11&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817316&dog_id=548832&r_date=2021-02-19&track_id=4&r_time=15%3A11&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817316&dog_id=532693&r_date=2021-02-19&track_id=4&r_time=15%3A11&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817317&dog_id=549573&r_date=2021-02-19&track_id=4&r_time=15%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817317&dog_id=527578&r_date=2021-02-19&track_id=4&r_time=15%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817317&dog_id=550474&r_date=2021-02-19&track_id=4&r_time=15%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817317&dog_id=550576&r_date=2021-02-19&track_id=4&r_time=15%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817317&dog_id=549707&r_date=2021-02-19&track_id=4&r_time=15%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817317&dog_id=536108&r_date=2021-02-19&track_id=4&r_time=15%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817318&dog_id=529407&r_date=2021-02-19&track_id=4&r_time=15%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817318&dog_id=549091&r_date=2021-02-19&track_id=4&r_time=15%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817318&dog_id=539888&r_date=2021-02-19&track_id=4&r_time=15%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817318&dog_id=542014&r_date=2021-02-19&track_id=4&r_time=15%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817318&dog_id=544465&r_date=2021-02-19&track_id=4&r_time=15%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817318&dog_id=541707&r_date=2021-02-19&track_id=4&r_time=15%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817319&dog_id=545784&r_date=2021-02-19&track_id=4&r_time=16%3A08&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817319&dog_id=531807&r_date=2021-02-19&track_id=4&r_time=16%3A08&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817319&dog_id=534824&r_date=2021-02-19&track_id=4&r_time=16%3A08&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817319&dog_id=541941&r_date=2021-02-19&track_id=4&r_time=16%3A08&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817319&dog_id=537690&r_date=2021-02-19&track_id=4&r_time=16%3A08&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817319&dog_id=536480&r_date=2021-02-19&track_id=4&r_time=16%3A08&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817320&dog_id=549825&r_date=2021-02-19&track_id=4&r_time=16%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817320&dog_id=547198&r_date=2021-02-19&track_id=4&r_time=16%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817320&dog_id=549154&r_date=2021-02-19&track_id=4&r_time=16%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817320&dog_id=530462&r_date=2021-02-19&track_id=4&r_time=16%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817320&dog_id=549437&r_date=2021-02-19&track_id=4&r_time=16%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817320&dog_id=541881&r_date=2021-02-19&track_id=4&r_time=16%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817321&dog_id=535868&r_date=2021-02-19&track_id=4&r_time=16%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817321&dog_id=537338&r_date=2021-02-19&track_id=4&r_time=16%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817321&dog_id=535712&r_date=2021-02-19&track_id=4&r_time=16%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817321&dog_id=542202&r_date=2021-02-19&track_id=4&r_time=16%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817321&dog_id=521188&r_date=2021-02-19&track_id=4&r_time=16%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817321&dog_id=526538&r_date=2021-02-19&track_id=4&r_time=16%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817322&dog_id=532596&r_date=2021-02-19&track_id=4&r_time=17%3A08&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817322&dog_id=539121&r_date=2021-02-19&track_id=4&r_time=17%3A08&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817322&dog_id=525101&r_date=2021-02-19&track_id=4&r_time=17%3A08&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817322&dog_id=512502&r_date=2021-02-19&track_id=4&r_time=17%3A08&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817322&dog_id=537879&r_date=2021-02-19&track_id=4&r_time=17%3A08&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817322&dog_id=533324&r_date=2021-02-19&track_id=4&r_time=17%3A08&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817323&dog_id=530687&r_date=2021-02-19&track_id=4&r_time=17%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817323&dog_id=550025&r_date=2021-02-19&track_id=4&r_time=17%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817323&dog_id=541545&r_date=2021-02-19&track_id=4&r_time=17%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817323&dog_id=538156&r_date=2021-02-19&track_id=4&r_time=17%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817323&dog_id=541701&r_date=2021-02-19&track_id=4&r_time=17%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817323&dog_id=550400&r_date=2021-02-19&track_id=4&r_time=17%3A28&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817324&dog_id=547545&r_date=2021-02-19&track_id=4&r_time=17%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817324&dog_id=549436&r_date=2021-02-19&track_id=4&r_time=17%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817324&dog_id=543919&r_date=2021-02-19&track_id=4&r_time=17%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817324&dog_id=535728&r_date=2021-02-19&track_id=4&r_time=17%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817324&dog_id=544139&r_date=2021-02-19&track_id=4&r_time=17%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817324&dog_id=547351&r_date=2021-02-19&track_id=4&r_time=17%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817325&dog_id=541373&r_date=2021-02-19&track_id=4&r_time=18%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817325&dog_id=525647&r_date=2021-02-19&track_id=4&r_time=18%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817325&dog_id=548067&r_date=2021-02-19&track_id=4&r_time=18%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817325&dog_id=542650&r_date=2021-02-19&track_id=4&r_time=18%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817325&dog_id=530709&r_date=2021-02-19&track_id=4&r_time=18%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817325&dog_id=543144&r_date=2021-02-19&track_id=4&r_time=18%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817278&dog_id=546024&r_date=2021-02-20&track_id=4&r_time=18%3A17&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817278&dog_id=549820&r_date=2021-02-20&track_id=4&r_time=18%3A17&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817278&dog_id=547420&r_date=2021-02-20&track_id=4&r_time=18%3A17&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817278&dog_id=545841&r_date=2021-02-20&track_id=4&r_time=18%3A17&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817278&dog_id=548198&r_date=2021-02-20&track_id=4&r_time=18%3A17&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817278&dog_id=549289&r_date=2021-02-20&track_id=4&r_time=18%3A17&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817279&dog_id=546208&r_date=2021-02-20&track_id=4&r_time=18%3A33&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817279&dog_id=550090&r_date=2021-02-20&track_id=4&r_time=18%3A33&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817279&dog_id=547838&r_date=2021-02-20&track_id=4&r_time=18%3A33&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817279&dog_id=546021&r_date=2021-02-20&track_id=4&r_time=18%3A33&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817279&dog_id=547918&r_date=2021-02-20&track_id=4&r_time=18%3A33&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817279&dog_id=547157&r_date=2021-02-20&track_id=4&r_time=18%3A33&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817280&dog_id=545270&r_date=2021-02-20&track_id=4&r_time=18%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817280&dog_id=544580&r_date=2021-02-20&track_id=4&r_time=18%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817280&dog_id=550126&r_date=2021-02-20&track_id=4&r_time=18%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817280&dog_id=547380&r_date=2021-02-20&track_id=4&r_time=18%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817280&dog_id=547418&r_date=2021-02-20&track_id=4&r_time=18%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817280&dog_id=547387&r_date=2021-02-20&track_id=4&r_time=18%3A48&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817281&dog_id=536835&r_date=2021-02-20&track_id=4&r_time=19%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817281&dog_id=539792&r_date=2021-02-20&track_id=4&r_time=19%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817281&dog_id=543888&r_date=2021-02-20&track_id=4&r_time=19%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817281&dog_id=528870&r_date=2021-02-20&track_id=4&r_time=19%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817281&dog_id=531805&r_date=2021-02-20&track_id=4&r_time=19%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817281&dog_id=536619&r_date=2021-02-20&track_id=4&r_time=19%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817282&dog_id=534020&r_date=2021-02-20&track_id=4&r_time=19%3A24&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817282&dog_id=542060&r_date=2021-02-20&track_id=4&r_time=19%3A24&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817282&dog_id=533027&r_date=2021-02-20&track_id=4&r_time=19%3A24&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817282&dog_id=528692&r_date=2021-02-20&track_id=4&r_time=19%3A24&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817282&dog_id=536026&r_date=2021-02-20&track_id=4&r_time=19%3A24&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817282&dog_id=547419&r_date=2021-02-20&track_id=4&r_time=19%3A24&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817283&dog_id=539110&r_date=2021-02-20&track_id=4&r_time=19%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817283&dog_id=534828&r_date=2021-02-20&track_id=4&r_time=19%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817283&dog_id=537130&r_date=2021-02-20&track_id=4&r_time=19%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817283&dog_id=535897&r_date=2021-02-20&track_id=4&r_time=19%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817283&dog_id=531804&r_date=2021-02-20&track_id=4&r_time=19%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817283&dog_id=547728&r_date=2021-02-20&track_id=4&r_time=19%3A44&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817284&dog_id=539136&r_date=2021-02-20&track_id=4&r_time=20%3A03&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817284&dog_id=540743&r_date=2021-02-20&track_id=4&r_time=20%3A03&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817284&dog_id=526025&r_date=2021-02-20&track_id=4&r_time=20%3A03&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817284&dog_id=545567&r_date=2021-02-20&track_id=4&r_time=20%3A03&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817284&dog_id=539825&r_date=2021-02-20&track_id=4&r_time=20%3A03&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817284&dog_id=532944&r_date=2021-02-20&track_id=4&r_time=20%3A03&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817285&dog_id=538538&r_date=2021-02-20&track_id=4&r_time=20%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817285&dog_id=538021&r_date=2021-02-20&track_id=4&r_time=20%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817285&dog_id=545566&r_date=2021-02-20&track_id=4&r_time=20%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817285&dog_id=545025&r_date=2021-02-20&track_id=4&r_time=20%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817285&dog_id=543307&r_date=2021-02-20&track_id=4&r_time=20%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817285&dog_id=535373&r_date=2021-02-20&track_id=4&r_time=20%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817286&dog_id=533762&r_date=2021-02-20&track_id=4&r_time=20%3A43&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817286&dog_id=542252&r_date=2021-02-20&track_id=4&r_time=20%3A43&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817286&dog_id=544998&r_date=2021-02-20&track_id=4&r_time=20%3A43&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817286&dog_id=529162&r_date=2021-02-20&track_id=4&r_time=20%3A43&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817286&dog_id=540239&r_date=2021-02-20&track_id=4&r_time=20%3A43&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817286&dog_id=538417&r_date=2021-02-20&track_id=4&r_time=20%3A43&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817287&dog_id=545569&r_date=2021-02-20&track_id=4&r_time=21%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817287&dog_id=534905&r_date=2021-02-20&track_id=4&r_time=21%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817287&dog_id=534954&r_date=2021-02-20&track_id=4&r_time=21%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817287&dog_id=535677&r_date=2021-02-20&track_id=4&r_time=21%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817287&dog_id=542391&r_date=2021-02-20&track_id=4&r_time=21%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817287&dog_id=535245&r_date=2021-02-20&track_id=4&r_time=21%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817288&dog_id=540756&r_date=2021-02-20&track_id=4&r_time=21%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817288&dog_id=543159&r_date=2021-02-20&track_id=4&r_time=21%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817288&dog_id=540660&r_date=2021-02-20&track_id=4&r_time=21%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817288&dog_id=538191&r_date=2021-02-20&track_id=4&r_time=21%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817288&dog_id=542659&r_date=2021-02-20&track_id=4&r_time=21%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817288&dog_id=541063&r_date=2021-02-20&track_id=4&r_time=21%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817872&dog_id=537147&r_date=2021-02-22&track_id=4&r_time=13%3A49&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817872&dog_id=533129&r_date=2021-02-22&track_id=4&r_time=13%3A49&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817872&dog_id=526993&r_date=2021-02-22&track_id=4&r_time=13%3A49&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817872&dog_id=528573&r_date=2021-02-22&track_id=4&r_time=13%3A49&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817872&dog_id=550390&r_date=2021-02-22&track_id=4&r_time=13%3A49&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817872&dog_id=536212&r_date=2021-02-22&track_id=4&r_time=13%3A49&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817873&dog_id=549122&r_date=2021-02-22&track_id=4&r_time=14%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817873&dog_id=518901&r_date=2021-02-22&track_id=4&r_time=14%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817873&dog_id=546631&r_date=2021-02-22&track_id=4&r_time=14%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817873&dog_id=537258&r_date=2021-02-22&track_id=4&r_time=14%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817873&dog_id=507448&r_date=2021-02-22&track_id=4&r_time=14%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817873&dog_id=525902&r_date=2021-02-22&track_id=4&r_time=14%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817874&dog_id=547901&r_date=2021-02-22&track_id=4&r_time=14%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817874&dog_id=543714&r_date=2021-02-22&track_id=4&r_time=14%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817874&dog_id=544473&r_date=2021-02-22&track_id=4&r_time=14%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817874&dog_id=535298&r_date=2021-02-22&track_id=4&r_time=14%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817874&dog_id=544655&r_date=2021-02-22&track_id=4&r_time=14%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817874&dog_id=541920&r_date=2021-02-22&track_id=4&r_time=14%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817875&dog_id=541492&r_date=2021-02-22&track_id=4&r_time=14%3A42&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817875&dog_id=534405&r_date=2021-02-22&track_id=4&r_time=14%3A42&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817875&dog_id=550463&r_date=2021-02-22&track_id=4&r_time=14%3A42&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817875&dog_id=536003&r_date=2021-02-22&track_id=4&r_time=14%3A42&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817875&dog_id=537107&r_date=2021-02-22&track_id=4&r_time=14%3A42&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817875&dog_id=549598&r_date=2021-02-22&track_id=4&r_time=14%3A42&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817876&dog_id=540856&r_date=2021-02-22&track_id=4&r_time=15%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817876&dog_id=536242&r_date=2021-02-22&track_id=4&r_time=15%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817876&dog_id=548193&r_date=2021-02-22&track_id=4&r_time=15%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817876&dog_id=523472&r_date=2021-02-22&track_id=4&r_time=15%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817876&dog_id=537462&r_date=2021-02-22&track_id=4&r_time=15%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817876&dog_id=534690&r_date=2021-02-22&track_id=4&r_time=15%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817877&dog_id=542467&r_date=2021-02-22&track_id=4&r_time=15%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817877&dog_id=521204&r_date=2021-02-22&track_id=4&r_time=15%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817877&dog_id=525324&r_date=2021-02-22&track_id=4&r_time=15%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817877&dog_id=534328&r_date=2021-02-22&track_id=4&r_time=15%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817877&dog_id=541787&r_date=2021-02-22&track_id=4&r_time=15%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817877&dog_id=544846&r_date=2021-02-22&track_id=4&r_time=15%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817878&dog_id=550496&r_date=2021-02-22&track_id=4&r_time=15%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817878&dog_id=535275&r_date=2021-02-22&track_id=4&r_time=15%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817878&dog_id=548261&r_date=2021-02-22&track_id=4&r_time=15%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817878&dog_id=533131&r_date=2021-02-22&track_id=4&r_time=15%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817878&dog_id=545783&r_date=2021-02-22&track_id=4&r_time=15%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817878&dog_id=538879&r_date=2021-02-22&track_id=4&r_time=15%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817879&dog_id=536400&r_date=2021-02-22&track_id=4&r_time=15%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817879&dog_id=518173&r_date=2021-02-22&track_id=4&r_time=15%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817879&dog_id=538181&r_date=2021-02-22&track_id=4&r_time=15%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817879&dog_id=547095&r_date=2021-02-22&track_id=4&r_time=15%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817879&dog_id=540513&r_date=2021-02-22&track_id=4&r_time=15%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817879&dog_id=528294&r_date=2021-02-22&track_id=4&r_time=15%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817880&dog_id=537740&r_date=2021-02-22&track_id=4&r_time=16%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817880&dog_id=534000&r_date=2021-02-22&track_id=4&r_time=16%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817880&dog_id=549629&r_date=2021-02-22&track_id=4&r_time=16%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817880&dog_id=542017&r_date=2021-02-22&track_id=4&r_time=16%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817880&dog_id=546306&r_date=2021-02-22&track_id=4&r_time=16%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817880&dog_id=528459&r_date=2021-02-22&track_id=4&r_time=16%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817881&dog_id=546140&r_date=2021-02-22&track_id=4&r_time=16%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817881&dog_id=542944&r_date=2021-02-22&track_id=4&r_time=16%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817881&dog_id=541671&r_date=2021-02-22&track_id=4&r_time=16%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817881&dog_id=537213&r_date=2021-02-22&track_id=4&r_time=16%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817881&dog_id=539296&r_date=2021-02-22&track_id=4&r_time=16%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817881&dog_id=550939&r_date=2021-02-22&track_id=4&r_time=16%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817882&dog_id=546023&r_date=2021-02-22&track_id=4&r_time=16%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817882&dog_id=540859&r_date=2021-02-22&track_id=4&r_time=16%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817882&dog_id=540588&r_date=2021-02-22&track_id=4&r_time=16%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817882&dog_id=540573&r_date=2021-02-22&track_id=4&r_time=16%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817882&dog_id=526717&r_date=2021-02-22&track_id=4&r_time=16%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817882&dog_id=538453&r_date=2021-02-22&track_id=4&r_time=16%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817883&dog_id=532414&r_date=2021-02-22&track_id=4&r_time=17%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817883&dog_id=547146&r_date=2021-02-22&track_id=4&r_time=17%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817883&dog_id=550762&r_date=2021-02-22&track_id=4&r_time=17%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817883&dog_id=531824&r_date=2021-02-22&track_id=4&r_time=17%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817883&dog_id=542046&r_date=2021-02-22&track_id=4&r_time=17%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817883&dog_id=548280&r_date=2021-02-22&track_id=4&r_time=17%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817884&dog_id=542288&r_date=2021-02-22&track_id=4&r_time=17%3A37&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817884&dog_id=549599&r_date=2021-02-22&track_id=4&r_time=17%3A37&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817884&dog_id=539743&r_date=2021-02-22&track_id=4&r_time=17%3A37&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817884&dog_id=545561&r_date=2021-02-22&track_id=4&r_time=17%3A37&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817884&dog_id=533870&r_date=2021-02-22&track_id=4&r_time=17%3A37&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817884&dog_id=535142&r_date=2021-02-22&track_id=4&r_time=17%3A37&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817885&dog_id=541586&r_date=2021-02-22&track_id=4&r_time=17%3A54&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817885&dog_id=546960&r_date=2021-02-22&track_id=4&r_time=17%3A54&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817885&dog_id=526422&r_date=2021-02-22&track_id=4&r_time=17%3A54&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817885&dog_id=530186&r_date=2021-02-22&track_id=4&r_time=17%3A54&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817885&dog_id=525017&r_date=2021-02-22&track_id=4&r_time=17%3A54&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1817885&dog_id=545822&r_date=2021-02-22&track_id=4&r_time=17%3A54&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818067&dog_id=529968&r_date=2021-02-23&track_id=4&r_time=13%3A49&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818067&dog_id=526960&r_date=2021-02-23&track_id=4&r_time=13%3A49&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818067&dog_id=536248&r_date=2021-02-23&track_id=4&r_time=13%3A49&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818067&dog_id=538172&r_date=2021-02-23&track_id=4&r_time=13%3A49&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818067&dog_id=518629&r_date=2021-02-23&track_id=4&r_time=13%3A49&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818067&dog_id=542091&r_date=2021-02-23&track_id=4&r_time=13%3A49&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818068&dog_id=537562&r_date=2021-02-23&track_id=4&r_time=14%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818068&dog_id=547063&r_date=2021-02-23&track_id=4&r_time=14%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818068&dog_id=539132&r_date=2021-02-23&track_id=4&r_time=14%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818068&dog_id=543708&r_date=2021-02-23&track_id=4&r_time=14%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818068&dog_id=551001&r_date=2021-02-23&track_id=4&r_time=14%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818068&dog_id=543269&r_date=2021-02-23&track_id=4&r_time=14%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818069&dog_id=538383&r_date=2021-02-23&track_id=4&r_time=14%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818069&dog_id=543547&r_date=2021-02-23&track_id=4&r_time=14%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818069&dog_id=528226&r_date=2021-02-23&track_id=4&r_time=14%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818069&dog_id=541329&r_date=2021-02-23&track_id=4&r_time=14%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818069&dog_id=539810&r_date=2021-02-23&track_id=4&r_time=14%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818069&dog_id=540712&r_date=2021-02-23&track_id=4&r_time=14%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818070&dog_id=544420&r_date=2021-02-23&track_id=4&r_time=14%3A42&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818070&dog_id=541092&r_date=2021-02-23&track_id=4&r_time=14%3A42&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818070&dog_id=525698&r_date=2021-02-23&track_id=4&r_time=14%3A42&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818070&dog_id=542036&r_date=2021-02-23&track_id=4&r_time=14%3A42&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818070&dog_id=550567&r_date=2021-02-23&track_id=4&r_time=14%3A42&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818070&dog_id=532722&r_date=2021-02-23&track_id=4&r_time=14%3A42&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818071&dog_id=536204&r_date=2021-02-23&track_id=4&r_time=15%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818071&dog_id=550391&r_date=2021-02-23&track_id=4&r_time=15%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818071&dog_id=545493&r_date=2021-02-23&track_id=4&r_time=15%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818071&dog_id=545334&r_date=2021-02-23&track_id=4&r_time=15%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818071&dog_id=549799&r_date=2021-02-23&track_id=4&r_time=15%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818071&dog_id=551002&r_date=2021-02-23&track_id=4&r_time=15%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818072&dog_id=537260&r_date=2021-02-23&track_id=4&r_time=15%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818072&dog_id=549800&r_date=2021-02-23&track_id=4&r_time=15%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818072&dog_id=542173&r_date=2021-02-23&track_id=4&r_time=15%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818072&dog_id=547816&r_date=2021-02-23&track_id=4&r_time=15%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818072&dog_id=515741&r_date=2021-02-23&track_id=4&r_time=15%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818072&dog_id=536306&r_date=2021-02-23&track_id=4&r_time=15%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818076&dog_id=517365&r_date=2021-02-23&track_id=4&r_time=16%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818076&dog_id=538966&r_date=2021-02-23&track_id=4&r_time=16%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818076&dog_id=537482&r_date=2021-02-23&track_id=4&r_time=16%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818076&dog_id=539357&r_date=2021-02-23&track_id=4&r_time=16%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818076&dog_id=547827&r_date=2021-02-23&track_id=4&r_time=16%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818076&dog_id=550480&r_date=2021-02-23&track_id=4&r_time=16%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818077&dog_id=547219&r_date=2021-02-23&track_id=4&r_time=16%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818077&dog_id=544788&r_date=2021-02-23&track_id=4&r_time=16%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818077&dog_id=521205&r_date=2021-02-23&track_id=4&r_time=16%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818077&dog_id=545853&r_date=2021-02-23&track_id=4&r_time=16%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818077&dog_id=537964&r_date=2021-02-23&track_id=4&r_time=16%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818077&dog_id=529138&r_date=2021-02-23&track_id=4&r_time=16%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818078&dog_id=542127&r_date=2021-02-23&track_id=4&r_time=17%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818078&dog_id=539502&r_date=2021-02-23&track_id=4&r_time=17%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818078&dog_id=531759&r_date=2021-02-23&track_id=4&r_time=17%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818078&dog_id=529964&r_date=2021-02-23&track_id=4&r_time=17%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818078&dog_id=514743&r_date=2021-02-23&track_id=4&r_time=17%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818078&dog_id=549508&r_date=2021-02-23&track_id=4&r_time=17%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818079&dog_id=534123&r_date=2021-02-23&track_id=4&r_time=17%3A37&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818079&dog_id=542043&r_date=2021-02-23&track_id=4&r_time=17%3A37&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818079&dog_id=543784&r_date=2021-02-23&track_id=4&r_time=17%3A37&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818079&dog_id=542603&r_date=2021-02-23&track_id=4&r_time=17%3A37&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818079&dog_id=521894&r_date=2021-02-23&track_id=4&r_time=17%3A37&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818079&dog_id=534826&r_date=2021-02-23&track_id=4&r_time=17%3A37&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818080&dog_id=539574&r_date=2021-02-23&track_id=4&r_time=17%3A54&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818080&dog_id=545612&r_date=2021-02-23&track_id=4&r_time=17%3A54&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818080&dog_id=548260&r_date=2021-02-23&track_id=4&r_time=17%3A54&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818080&dog_id=547608&r_date=2021-02-23&track_id=4&r_time=17%3A54&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818080&dog_id=546045&r_date=2021-02-23&track_id=4&r_time=17%3A54&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818080&dog_id=537752&r_date=2021-02-23&track_id=4&r_time=17%3A54&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818234&dog_id=521980&r_date=2021-02-24&track_id=4&r_time=13%3A49&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818234&dog_id=543275&r_date=2021-02-24&track_id=4&r_time=13%3A49&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818234&dog_id=505900&r_date=2021-02-24&track_id=4&r_time=13%3A49&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818234&dog_id=532693&r_date=2021-02-24&track_id=4&r_time=13%3A49&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818234&dog_id=541921&r_date=2021-02-24&track_id=4&r_time=13%3A49&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818234&dog_id=537648&r_date=2021-02-24&track_id=4&r_time=13%3A49&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818235&dog_id=535958&r_date=2021-02-24&track_id=4&r_time=14%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818235&dog_id=547216&r_date=2021-02-24&track_id=4&r_time=14%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818235&dog_id=542905&r_date=2021-02-24&track_id=4&r_time=14%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818235&dog_id=530988&r_date=2021-02-24&track_id=4&r_time=14%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818235&dog_id=524597&r_date=2021-02-24&track_id=4&r_time=14%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818235&dog_id=535122&r_date=2021-02-24&track_id=4&r_time=14%3A07&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818236&dog_id=540471&r_date=2021-02-24&track_id=4&r_time=14%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818236&dog_id=543158&r_date=2021-02-24&track_id=4&r_time=14%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818236&dog_id=540241&r_date=2021-02-24&track_id=4&r_time=14%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818236&dog_id=532812&r_date=2021-02-24&track_id=4&r_time=14%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818236&dog_id=539406&r_date=2021-02-24&track_id=4&r_time=14%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818236&dog_id=544894&r_date=2021-02-24&track_id=4&r_time=14%3A23&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818237&dog_id=542203&r_date=2021-02-24&track_id=4&r_time=14%3A42&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818237&dog_id=532469&r_date=2021-02-24&track_id=4&r_time=14%3A42&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818237&dog_id=518372&r_date=2021-02-24&track_id=4&r_time=14%3A42&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818237&dog_id=542206&r_date=2021-02-24&track_id=4&r_time=14%3A42&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818237&dog_id=535197&r_date=2021-02-24&track_id=4&r_time=14%3A42&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818237&dog_id=541882&r_date=2021-02-24&track_id=4&r_time=14%3A42&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818238&dog_id=549825&r_date=2021-02-24&track_id=4&r_time=15%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818238&dog_id=531512&r_date=2021-02-24&track_id=4&r_time=15%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818238&dog_id=533287&r_date=2021-02-24&track_id=4&r_time=15%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818238&dog_id=541701&r_date=2021-02-24&track_id=4&r_time=15%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818238&dog_id=532830&r_date=2021-02-24&track_id=4&r_time=15%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818238&dog_id=538156&r_date=2021-02-24&track_id=4&r_time=15%3A02&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818239&dog_id=520678&r_date=2021-02-24&track_id=4&r_time=15%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818239&dog_id=536022&r_date=2021-02-24&track_id=4&r_time=15%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818239&dog_id=549846&r_date=2021-02-24&track_id=4&r_time=15%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818239&dog_id=541274&r_date=2021-02-24&track_id=4&r_time=15%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818239&dog_id=544060&r_date=2021-02-24&track_id=4&r_time=15%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818239&dog_id=542417&r_date=2021-02-24&track_id=4&r_time=15%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818240&dog_id=534824&r_date=2021-02-24&track_id=4&r_time=15%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818240&dog_id=549919&r_date=2021-02-24&track_id=4&r_time=15%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818240&dog_id=541675&r_date=2021-02-24&track_id=4&r_time=15%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818240&dog_id=543274&r_date=2021-02-24&track_id=4&r_time=15%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818240&dog_id=526949&r_date=2021-02-24&track_id=4&r_time=15%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818240&dog_id=541239&r_date=2021-02-24&track_id=4&r_time=15%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818241&dog_id=542706&r_date=2021-02-24&track_id=4&r_time=15%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818241&dog_id=530709&r_date=2021-02-24&track_id=4&r_time=15%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818241&dog_id=550505&r_date=2021-02-24&track_id=4&r_time=15%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818241&dog_id=533618&r_date=2021-02-24&track_id=4&r_time=15%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818241&dog_id=532599&r_date=2021-02-24&track_id=4&r_time=15%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818241&dog_id=530284&r_date=2021-02-24&track_id=4&r_time=15%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818242&dog_id=539666&r_date=2021-02-24&track_id=4&r_time=16%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818242&dog_id=537338&r_date=2021-02-24&track_id=4&r_time=16%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818242&dog_id=542202&r_date=2021-02-24&track_id=4&r_time=16%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818242&dog_id=528261&r_date=2021-02-24&track_id=4&r_time=16%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818242&dog_id=547372&r_date=2021-02-24&track_id=4&r_time=16%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818242&dog_id=549826&r_date=2021-02-24&track_id=4&r_time=16%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818243&dog_id=544719&r_date=2021-02-24&track_id=4&r_time=16%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818243&dog_id=544324&r_date=2021-02-24&track_id=4&r_time=16%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818243&dog_id=550401&r_date=2021-02-24&track_id=4&r_time=16%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818243&dog_id=523683&r_date=2021-02-24&track_id=4&r_time=16%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818243&dog_id=519457&r_date=2021-02-24&track_id=4&r_time=16%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818243&dog_id=526682&r_date=2021-02-24&track_id=4&r_time=16%3A38&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818244&dog_id=522021&r_date=2021-02-24&track_id=4&r_time=16%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818244&dog_id=526069&r_date=2021-02-24&track_id=4&r_time=16%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818244&dog_id=538344&r_date=2021-02-24&track_id=4&r_time=16%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818244&dog_id=528385&r_date=2021-02-24&track_id=4&r_time=16%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818244&dog_id=541695&r_date=2021-02-24&track_id=4&r_time=16%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818244&dog_id=536656&r_date=2021-02-24&track_id=4&r_time=16%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818244&dog_id=534258&r_date=2021-02-24&track_id=4&r_time=16%3A58&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818245&dog_id=533669&r_date=2021-02-24&track_id=4&r_time=17%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818245&dog_id=535712&r_date=2021-02-24&track_id=4&r_time=17%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818245&dog_id=548833&r_date=2021-02-24&track_id=4&r_time=17%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818245&dog_id=537128&r_date=2021-02-24&track_id=4&r_time=17%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818245&dog_id=513130&r_date=2021-02-24&track_id=4&r_time=17%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818245&dog_id=541708&r_date=2021-02-24&track_id=4&r_time=17%3A18&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818246&dog_id=550025&r_date=2021-02-24&track_id=4&r_time=17%3A37&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818246&dog_id=550026&r_date=2021-02-24&track_id=4&r_time=17%3A37&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818246&dog_id=549847&r_date=2021-02-24&track_id=4&r_time=17%3A37&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818246&dog_id=525903&r_date=2021-02-24&track_id=4&r_time=17%3A37&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818246&dog_id=556330&r_date=2021-02-24&track_id=4&r_time=17%3A37&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818246&dog_id=533335&r_date=2021-02-24&track_id=4&r_time=17%3A37&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818247&dog_id=549154&r_date=2021-02-24&track_id=4&r_time=17%3A54&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818247&dog_id=543919&r_date=2021-02-24&track_id=4&r_time=17%3A54&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818247&dog_id=530462&r_date=2021-02-24&track_id=4&r_time=17%3A54&blocks=results-dog-header%2Cresults-dog-details
https://greyhoundbet.racingpost.com/results/blocks.sd?race_id=1818247&dog_id=549437&r_date=2021-02-24&track_id=4&r_time=17%3A54&blocks=results-dog-header%2Cresults-dog-details