-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcanis.json
1226 lines (1226 loc) · 373 KB
/
canis.json
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
{
"elapsed_time":2.26,
"records": [
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:184924","record_type":"occurrence","accepted_name":"Canis ferox","accepted_no":"pbdb:txn:44840","max_age":10.3,"min_age":4.9,"age_unit":"Ma","collection_no":"pbdb:col:18126","lng":-97.728897,"lat":42.8214,"country":"US","state":"Nebraska"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:185469","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":10.3,"min_age":4.9,"age_unit":"Ma","collection_no":"pbdb:col:18201","lng":-98.800003,"lat":42.700001,"country":"US","state":"Nebraska"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:186572","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":10.3,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:18320","lng":-85.791946,"lat":40.454445,"country":"US","state":"Indiana"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:186878","record_type":"occurrence","accepted_name":"Canis lepophagus","accepted_no":"pbdb:txn:44856","max_age":10.3,"min_age":4.9,"age_unit":"Ma","collection_no":"pbdb:col:18359","lng":-97.846298,"lat":42.806801,"country":"US","state":"Nebraska"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:188816","record_type":"occurrence","accepted_name":"Canis ferox","accepted_no":"pbdb:txn:44840","max_age":10.3,"min_age":4.9,"age_unit":"Ma","collection_no":"pbdb:col:18737","lng":-100.666664,"lat":21.083332,"country":"MX","state":"Guanajuato"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:188870","record_type":"occurrence","accepted_name":"Canis ferox","accepted_no":"pbdb:txn:44840","max_age":10.3,"min_age":4.9,"age_unit":"Ma","collection_no":"pbdb:col:18745","lng":-104.099998,"lat":20.200001,"country":"MX","state":"Jalisco"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:189693","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":10.3,"min_age":4.9,"age_unit":"Ma","collection_no":"pbdb:col:18900","lng":-114.300003,"lat":37.799999,"country":"US","state":"Nevada"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:192135","record_type":"occurrence","accepted_name":"Canis ferox","accepted_no":"pbdb:txn:44840","max_age":10.3,"min_age":4.9,"age_unit":"Ma","collection_no":"pbdb:col:19473","lng":-107,"lat":36.5,"country":"US","state":"New Mexico"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:192926","record_type":"occurrence","accepted_name":"Canis edwardii","accepted_no":"pbdb:txn:44838","max_age":4.9,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:19617","lng":-112.400002,"lat":35.700001,"country":"US","state":"Arizona"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:192927","record_type":"occurrence","accepted_name":"Canis armbrusteri","accepted_no":"pbdb:txn:44827","max_age":4.9,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:19617","lng":-112.400002,"lat":35.700001,"country":"US","state":"Arizona"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:192928","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":4.9,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:19617","lng":-112.400002,"lat":35.700001,"country":"US","state":"Arizona"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:193271","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19656","lng":-109.599998,"lat":33,"country":"US","state":"Arizona"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:193272","record_type":"occurrence","accepted_name":"Canis thooides","accepted_no":"pbdb:txn:301914","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19656","lng":-109.599998,"lat":33,"country":"US","state":"Arizona"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:193288","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19657","lng":-109.599998,"lat":33,"country":"US","state":"Arizona"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:193323","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19658","lng":-109.599998,"lat":33,"country":"US","state":"Arizona"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:193373","record_type":"occurrence","accepted_name":"Canis lepophagus","accepted_no":"pbdb:txn:44856","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19668","lng":-122.199997,"lat":40,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:193775","record_type":"occurrence","accepted_name":"Canis lepophagus","accepted_no":"pbdb:txn:44856","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19758","lng":-82.599998,"lat":29.700001,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:193898","record_type":"occurrence","accepted_name":"Canis lepophagus","accepted_no":"pbdb:txn:44856","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19805","lng":-114.900002,"lat":42.799999,"country":"US","state":"Idaho"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:193901","record_type":"occurrence","accepted_name":"Canis lepophagus","accepted_no":"pbdb:txn:44856","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19807","lng":-114.900002,"lat":42.799999,"country":"US","state":"Idaho"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:193916","record_type":"occurrence","accepted_name":"Canis lepophagus","accepted_no":"pbdb:txn:44856","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19812","lng":-114.900002,"lat":42.799999,"country":"US","state":"Idaho"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:193936","record_type":"occurrence","accepted_name":"Canis lepophagus","accepted_no":"pbdb:txn:44856","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19815","lng":-114.900002,"lat":42.799999,"country":"US","state":"Idaho"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:193942","record_type":"occurrence","accepted_name":"Canis lepophagus","accepted_no":"pbdb:txn:44856","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19816","lng":-114.900002,"lat":42.799999,"country":"US","state":"Idaho"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:193957","record_type":"occurrence","accepted_name":"Canis lepophagus","accepted_no":"pbdb:txn:44856","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19819","lng":-114.900002,"lat":42.799999,"country":"US","state":"Idaho"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:193965","record_type":"occurrence","accepted_name":"Canis lepophagus","accepted_no":"pbdb:txn:44856","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19821","lng":-114.900002,"lat":42.799999,"country":"US","state":"Idaho"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:193985","record_type":"occurrence","accepted_name":"Canis ferox","accepted_no":"pbdb:txn:44840","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19832","lng":-114.900002,"lat":42.799999,"country":"US","state":"Idaho"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:193989","record_type":"occurrence","accepted_name":"Canis ferox","accepted_no":"pbdb:txn:44840","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19836","lng":-114.900002,"lat":42.799999,"country":"US","state":"Idaho"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:193992","record_type":"occurrence","accepted_name":"Canis lepophagus","accepted_no":"pbdb:txn:44856","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19839","lng":-114.900002,"lat":42.799999,"country":"US","state":"Idaho"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:194001","record_type":"occurrence","accepted_name":"Canis lepophagus","accepted_no":"pbdb:txn:44856","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19847","lng":-114.900002,"lat":42.799999,"country":"US","state":"Idaho"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:194012","record_type":"occurrence","accepted_name":"Canis lepophagus","accepted_no":"pbdb:txn:44856","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19854","lng":-114.900002,"lat":42.799999,"country":"US","state":"Idaho"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:194033","record_type":"occurrence","accepted_name":"Canis ferox","accepted_no":"pbdb:txn:44840","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19868","lng":-114.900002,"lat":42.799999,"country":"US","state":"Idaho"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:194047","record_type":"occurrence","accepted_name":"Canis lepophagus","accepted_no":"pbdb:txn:44856","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19879","lng":-114.900002,"lat":42.799999,"country":"US","state":"Idaho"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:194056","record_type":"occurrence","accepted_name":"Canis lepophagus","accepted_no":"pbdb:txn:44856","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19888","lng":-114.900002,"lat":42.799999,"country":"US","state":"Idaho"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:194070","record_type":"occurrence","accepted_name":"Canis lepophagus","accepted_no":"pbdb:txn:44856","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19895","lng":-114.900002,"lat":42.799999,"country":"US","state":"Idaho"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:194077","record_type":"occurrence","accepted_name":"Canis ferox","accepted_no":"pbdb:txn:44840","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19902","lng":-114.900002,"lat":42.799999,"country":"US","state":"Idaho"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:194090","record_type":"occurrence","accepted_name":"Canis lepophagus","accepted_no":"pbdb:txn:44856","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19903","lng":-114.900002,"lat":42.799999,"country":"US","state":"Idaho"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:194115","record_type":"occurrence","accepted_name":"Canis ferox","accepted_no":"pbdb:txn:44840","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19906","lng":-114.900002,"lat":42.799999,"country":"US","state":"Idaho"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:194215","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19921","lng":-118,"lat":43,"country":"US","state":"Idaho"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:194251","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19927","lng":-100.300003,"lat":37.200001,"country":"US","state":"Kansas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:194285","record_type":"occurrence","accepted_name":"Canis lepophagus","accepted_no":"pbdb:txn:44856","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19929","lng":-100.300003,"lat":37.200001,"country":"US","state":"Kansas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:194362","record_type":"occurrence","accepted_name":"Canis lepophagus","accepted_no":"pbdb:txn:44856","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19932","lng":-100.300003,"lat":37.200001,"country":"US","state":"Kansas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:194379","record_type":"occurrence","accepted_name":"Canis lepophagus","accepted_no":"pbdb:txn:44856","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19934","lng":-100.300003,"lat":37.200001,"country":"US","state":"Kansas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:194409","record_type":"occurrence","accepted_name":"Canis ferox","accepted_no":"pbdb:txn:44840","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19936","lng":-100.300003,"lat":37.200001,"country":"US","state":"Kansas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:194480","record_type":"occurrence","accepted_name":"Canis lepophagus","accepted_no":"pbdb:txn:44856","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19940","lng":-100.48333,"lat":37.133331,"country":"US","state":"Kansas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:194652","record_type":"occurrence","accepted_name":"Canis lepophagus","accepted_no":"pbdb:txn:44856","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19955","lng":-103.099998,"lat":41.700001,"country":"US","state":"Nebraska"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:194677","record_type":"occurrence","accepted_name":"Canis ferox","accepted_no":"pbdb:txn:44840","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19959","lng":-102.400002,"lat":41.400002,"country":"US","state":"Nebraska"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:194686","record_type":"occurrence","accepted_name":"Canis ferox","accepted_no":"pbdb:txn:44840","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19960","lng":-102.400002,"lat":41.400002,"country":"US","state":"Nebraska"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:194695","record_type":"occurrence","accepted_name":"Canis lepophagus","accepted_no":"pbdb:txn:44856","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19962","lng":-103.800003,"lat":41.799999,"country":"US","state":"Nebraska"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:194719","record_type":"occurrence","accepted_name":"Canis lepophagus","accepted_no":"pbdb:txn:44856","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19963","lng":-100,"lat":42.700001,"country":"US","state":"Nebraska"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:194765","record_type":"occurrence","accepted_name":"Canis lepophagus","accepted_no":"pbdb:txn:44856","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19965","lng":-114.300003,"lat":37.799999,"country":"US","state":"Nevada"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:194814","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19973","lng":-106.699997,"lat":32,"country":"US","state":"New Mexico"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:194838","record_type":"occurrence","accepted_name":"Canis lepophagus","accepted_no":"pbdb:txn:44856","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19981","lng":-106.699997,"lat":32,"country":"US","state":"New Mexico"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:194983","record_type":"occurrence","accepted_name":"Canis lepophagus","accepted_no":"pbdb:txn:44856","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:20023","lng":-101.099998,"lat":33.700001,"country":"US","state":"Texas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:195063","record_type":"occurrence","accepted_name":"Canis lepophagus","accepted_no":"pbdb:txn:44856","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:20033","lng":-101.633331,"lat":34.883331,"country":"US","state":"Texas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:195093","record_type":"occurrence","accepted_name":"Canis lepophagus","accepted_no":"pbdb:txn:44856","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:20034","lng":-102.5,"lat":35.400002,"country":"US","state":"Texas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:195134","record_type":"occurrence","accepted_name":"Canis lepophagus","accepted_no":"pbdb:txn:44856","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:20050","lng":-105.199997,"lat":31.5,"country":"US","state":"Texas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:195215","record_type":"occurrence","accepted_name":"Canis lepophagus","accepted_no":"pbdb:txn:44856","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:20060","lng":-100.916664,"lat":32.716667,"country":"US","state":"Texas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:195263","record_type":"occurrence","accepted_name":"Canis lepophagus","accepted_no":"pbdb:txn:44856","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:20062","lng":-118.5,"lat":47,"country":"US","state":"Washington"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:195264","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:20062","lng":-118.5,"lat":47,"country":"US","state":"Washington"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:195346","record_type":"occurrence","accepted_name":"Canis edwardii","accepted_no":"pbdb:txn:44838","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:20074","lng":-107.400002,"lat":28.5,"country":"MX","state":"Chihuahua"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:195481","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:20105","lng":-117.099998,"lat":32.900002,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:195542","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:20112","lng":-117.099998,"lat":32.900002,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:195555","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:20113","lng":-117.099998,"lat":32.900002,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:195581","record_type":"occurrence","accepted_name":"Canis rufus","accepted_no":"pbdb:txn:44879","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:20115","lng":-117.099998,"lat":32.900002,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:195613","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:20117","lng":-117.099998,"lat":32.900002,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:195614","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:20117","lng":-117.099998,"lat":32.900002,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:195688","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:20120","lng":-117.099998,"lat":32.900002,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:195689","record_type":"occurrence","accepted_name":"Canis rufus","accepted_no":"pbdb:txn:44879","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:20120","lng":-117.099998,"lat":32.900002,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:195718","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:20121","lng":-117.099998,"lat":32.900002,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:195719","record_type":"occurrence","accepted_name":"Canis rufus","accepted_no":"pbdb:txn:44879","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:20121","lng":-117.099998,"lat":32.900002,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:195740","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:20122","lng":-117.099998,"lat":32.900002,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:195741","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:20122","lng":-117.099998,"lat":32.900002,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:195777","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20123","lng":-117.099998,"lat":32.900002,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:195865","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20126","lng":-117.099998,"lat":32.900002,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:195887","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20127","lng":-117.099998,"lat":32.900002,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:195926","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20129","lng":-117.099998,"lat":32.900002,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:195938","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20130","lng":-117.099998,"lat":32.900002,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:195952","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20134","lng":-117.099998,"lat":32.900002,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:195966","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20137","lng":-100.495201,"lat":37.047699,"country":"US","state":"Kansas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:196022","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20143","lng":-98.099998,"lat":40.200001,"country":"US","state":"Nebraska"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:196023","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20143","lng":-98.099998,"lat":40.200001,"country":"US","state":"Nebraska"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:196053","record_type":"occurrence","accepted_name":"Canis edwardii","accepted_no":"pbdb:txn:44838","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20148","lng":-100.900002,"lat":37.099998,"country":"US","state":"Kansas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:196067","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20150","lng":-105.699997,"lat":39.299999,"country":"US","state":"Colorado"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:196068","record_type":"occurrence","accepted_name":"Canis edwardii","accepted_no":"pbdb:txn:44838","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20150","lng":-105.699997,"lat":39.299999,"country":"US","state":"Colorado"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:196069","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20150","lng":-105.699997,"lat":39.299999,"country":"US","state":"Colorado"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:196115","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20157","lng":-100.5,"lat":36.799999,"country":"US","state":"Oklahoma"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:196213","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20166","lng":-100.477097,"lat":37.044701,"country":"US","state":"Kansas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:196265","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20173","lng":-117,"lat":33.900002,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:196301","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20178","lng":-117,"lat":33.900002,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:196351","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20187","lng":-117,"lat":33.900002,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:196424","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20205","lng":-117,"lat":33.900002,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:196549","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20237","lng":-117,"lat":33.900002,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:196652","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20273","lng":-117,"lat":34.799999,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:196653","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20273","lng":-117,"lat":34.799999,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:196681","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20277","lng":-161.899994,"lat":66.599998,"country":"US","state":"Alaska"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:196697","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20280","lng":-114.099998,"lat":39,"country":"US","state":"Nevada"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:196706","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20281","lng":-87.900002,"lat":34.700001,"country":"US","state":"Alabama"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:196730","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20283","lng":-102.300003,"lat":21.799999,"country":"MX","state":"Aguascalientes"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:196731","record_type":"occurrence","accepted_name":"Canis cedazoensis","accepted_no":"pbdb:txn:44831","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20283","lng":-102.300003,"lat":21.799999,"country":"MX","state":"Aguascalientes"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:196732","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20283","lng":-102.300003,"lat":21.799999,"country":"MX","state":"Aguascalientes"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:196759","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20285","lng":-103.199997,"lat":20.299999,"country":"MX","state":"Jalisco"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:196760","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20285","lng":-103.199997,"lat":20.299999,"country":"MX","state":"Jalisco"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:196816","record_type":"occurrence","accepted_name":"Canis armbrusteri","accepted_no":"pbdb:txn:44827","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20289","lng":-82.070274,"lat":28.799168,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:196842","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20290","lng":-93.199997,"lat":36,"country":"US","state":"Arkansas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:196843","record_type":"occurrence","accepted_name":"Canis armbrusteri","accepted_no":"pbdb:txn:44827","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20290","lng":-93.199997,"lat":36,"country":"US","state":"Arkansas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:196901","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20293","lng":-98.099998,"lat":39.799999,"country":"US","state":"Kansas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:196932","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20295","lng":-100.300003,"lat":37.200001,"country":"US","state":"Kansas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:196933","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20295","lng":-100.300003,"lat":37.200001,"country":"US","state":"Kansas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:196953","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20297","lng":-147.800003,"lat":64.800003,"country":"US","state":"Alaska"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:196982","record_type":"occurrence","accepted_name":"Canis edwardii","accepted_no":"pbdb:txn:44838","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20299","lng":-82.199997,"lat":28.799999,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:197002","record_type":"occurrence","accepted_name":"Canis edwardii","accepted_no":"pbdb:txn:44838","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20301","lng":-100.300003,"lat":37.200001,"country":"US","state":"Kansas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:197033","record_type":"occurrence","accepted_name":"Canis armbrusteri","accepted_no":"pbdb:txn:44827","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20302","lng":-78.699997,"lat":39.599998,"country":"US","state":"Maryland"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:197034","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20302","lng":-78.699997,"lat":39.599998,"country":"US","state":"Maryland"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:197092","record_type":"occurrence","accepted_name":"Canis edwardii","accepted_no":"pbdb:txn:44838","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:20303","lng":-110.199997,"lat":32,"country":"US","state":"Arizona"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:197140","record_type":"occurrence","accepted_name":"Canis edwardii","accepted_no":"pbdb:txn:44838","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20308","lng":-81.821114,"lat":27.041668,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:197268","record_type":"occurrence","accepted_name":"Canis edwardii","accepted_no":"pbdb:txn:44838","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20319","lng":-117,"lat":33.900002,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:197294","record_type":"occurrence","accepted_name":"Canis lepophagus","accepted_no":"pbdb:txn:44856","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:20322","lng":-114.5,"lat":31.700001,"country":"MX","state":"Sonora"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:197327","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":1.8,"min_age":0.012,"age_unit":"Ma","collection_no":"pbdb:col:20323","lng":-117.800003,"lat":33.599998,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:197352","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20327","lng":-120.195831,"lat":37.056667,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:197353","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20327","lng":-120.195831,"lat":37.056667,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:197378","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20329","lng":-105.699997,"lat":39.299999,"country":"US","state":"Colorado"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:197379","record_type":"occurrence","accepted_name":"Canis edwardii","accepted_no":"pbdb:txn:44838","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20329","lng":-105.699997,"lat":39.299999,"country":"US","state":"Colorado"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:197401","record_type":"occurrence","accepted_name":"Canis edwardii","accepted_no":"pbdb:txn:44838","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20334","lng":-82,"lat":26.9,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:197404","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":1.8,"min_age":0.012,"age_unit":"Ma","collection_no":"pbdb:col:20335","lng":-117,"lat":34.799999,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:197441","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20342","lng":-99.5,"lat":33.75,"country":"US","state":"Texas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:197442","record_type":"occurrence","accepted_name":"Canis armbrusteri","accepted_no":"pbdb:txn:44827","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20342","lng":-99.5,"lat":33.75,"country":"US","state":"Texas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:197489","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20346","lng":-147.800003,"lat":64.800003,"country":"US","state":"Alaska"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:197498","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20347","lng":-102.5,"lat":42.700001,"country":"US","state":"Nebraska"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:197499","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20347","lng":-102.5,"lat":42.700001,"country":"US","state":"Nebraska"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:197571","record_type":"occurrence","accepted_name":"Canis armbrusteri","accepted_no":"pbdb:txn:44827","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20351","lng":-82.099998,"lat":29.799999,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:197572","record_type":"occurrence","accepted_name":"Canis edwardii","accepted_no":"pbdb:txn:44838","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20351","lng":-82.099998,"lat":29.799999,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:197664","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:20360","lng":-105.75,"lat":37.366669,"country":"US","state":"Colorado"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:197721","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20375","lng":-102.5,"lat":42.700001,"country":"US","state":"Nebraska"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:197731","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20376","lng":-102.5,"lat":42.700001,"country":"US","state":"Nebraska"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:197794","record_type":"occurrence","accepted_name":"Canis edwardii","accepted_no":"pbdb:txn:44838","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:20384","lng":-82.68,"lat":29,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:197859","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20387","lng":-122,"lat":37.599998,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:197860","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20387","lng":-122,"lat":37.599998,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:197978","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.3,"min_age":0.012,"age_unit":"Ma","collection_no":"pbdb:col:20398","lng":-82.199997,"lat":28.799999,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:197990","record_type":"occurrence","accepted_name":"Canis edwardii","accepted_no":"pbdb:txn:44838","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20400","lng":-82.5,"lat":27.700001,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:197991","record_type":"occurrence","accepted_name":"Canis armbrusteri","accepted_no":"pbdb:txn:44827","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20400","lng":-82.5,"lat":27.700001,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:198018","record_type":"occurrence","accepted_name":"Canis armbrusteri","accepted_no":"pbdb:txn:44827","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20401","lng":-82.5,"lat":27.700001,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:198116","record_type":"occurrence","accepted_name":"Canis armbrusteri","accepted_no":"pbdb:txn:44827","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20415","lng":-82.599998,"lat":29.4,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:198133","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20417","lng":-110.699997,"lat":50.099998,"country":"CA","state":"Alberta"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:198145","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":1.8,"min_age":0.012,"age_unit":"Ma","collection_no":"pbdb:col:20419","lng":-80.5,"lat":28.1,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:198253","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20434","lng":-140,"lat":68.199997,"country":"CA","state":"Yukon"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:198363","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20454","lng":-117,"lat":33.900002,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:198476","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20477","lng":-105.699997,"lat":39.299999,"country":"US","state":"Colorado"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:198512","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20479","lng":-75.300003,"lat":40.200001,"country":"US","state":"Pennsylvania"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:198513","record_type":"occurrence","accepted_name":"Canis armbrusteri","accepted_no":"pbdb:txn:44827","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20479","lng":-75.300003,"lat":40.200001,"country":"US","state":"Pennsylvania"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:198606","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.3,"min_age":0.012,"age_unit":"Ma","collection_no":"pbdb:col:20491","lng":-82.300003,"lat":29.1,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:198607","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.3,"min_age":0.012,"age_unit":"Ma","collection_no":"pbdb:col:20491","lng":-82.300003,"lat":29.1,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:198649","record_type":"occurrence","accepted_name":"Canis edwardii","accepted_no":"pbdb:txn:44838","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20494","lng":-82.199997,"lat":27,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:198672","record_type":"occurrence","accepted_name":"Canis armbrusteri","accepted_no":"pbdb:txn:44827","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20498","lng":-101.300003,"lat":34.5,"country":"US","state":"Texas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:198673","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20498","lng":-101.300003,"lat":34.5,"country":"US","state":"Texas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:198688","record_type":"occurrence","accepted_name":"Canis edwardii","accepted_no":"pbdb:txn:44838","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20499","lng":-117.5,"lat":43.599998,"country":"US","state":"Oregon"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:198698","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20500","lng":-102.5,"lat":42.700001,"country":"US","state":"Nebraska"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:198736","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20503","lng":-103.099998,"lat":43.799999,"country":"US","state":"South Dakota"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:198740","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20504","lng":-107,"lat":36.5,"country":"US","state":"New Mexico"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:198767","record_type":"occurrence","accepted_name":"Canis rufus","accepted_no":"pbdb:txn:44879","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20506","lng":-107,"lat":36.5,"country":"US","state":"New Mexico"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:198814","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20514","lng":-107,"lat":36.5,"country":"US","state":"New Mexico"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:198872","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20520","lng":-82.599998,"lat":29.700001,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:198920","record_type":"occurrence","accepted_name":"Canis edwardii","accepted_no":"pbdb:txn:44838","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20528","lng":-117,"lat":33.900002,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:198940","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20530","lng":-101.900002,"lat":33.700001,"country":"US","state":"Texas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:198941","record_type":"occurrence","accepted_name":"Canis armbrusteri","accepted_no":"pbdb:txn:44827","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20530","lng":-101.900002,"lat":33.700001,"country":"US","state":"Texas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:198987","record_type":"occurrence","accepted_name":"Canis edwardii","accepted_no":"pbdb:txn:44838","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20536","lng":-110.199997,"lat":32,"country":"US","state":"Arizona"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:199068","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20556","lng":-96,"lat":42,"country":"US","state":"Iowa"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:199069","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20556","lng":-96,"lat":42,"country":"US","state":"Iowa"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:199085","record_type":"occurrence","accepted_name":"Canis armbrusteri","accepted_no":"pbdb:txn:44827","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20558","lng":-106.699997,"lat":32,"country":"US","state":"New Mexico"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:199126","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20559","lng":-105.699997,"lat":39.299999,"country":"US","state":"Colorado"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:199180","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20567","lng":-98.199997,"lat":39,"country":"US","state":"Kansas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:199204","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:20569","lng":-112.900002,"lat":42.799999,"country":"US","state":"Idaho"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:199205","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:20569","lng":-112.900002,"lat":42.799999,"country":"US","state":"Idaho"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:199271","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:20572","lng":-82.099998,"lat":29.799999,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:199309","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:20573","lng":-82.416664,"lat":29.6,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:199337","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:20580","lng":-82.5,"lat":27.5,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:199393","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:20590","lng":-103.900002,"lat":50.799999,"country":"CA","state":"Saskatchewan"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:199413","record_type":"occurrence","accepted_name":"Canis armbrusteri","accepted_no":"pbdb:txn:44827","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:20593","lng":-82.099998,"lat":29.799999,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:199428","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:20594","lng":-82.099998,"lat":29.799999,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:199486","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:20600","lng":-86.5,"lat":39,"country":"US","state":"Indiana"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:199487","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:20600","lng":-86.5,"lat":39,"country":"US","state":"Indiana"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:199488","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:20600","lng":-86.5,"lat":39,"country":"US","state":"Indiana"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:199610","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:20612","lng":-112.900002,"lat":42.799999,"country":"US","state":"Idaho"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:199643","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:20615","lng":-110.699997,"lat":50.099998,"country":"CA","state":"Alberta"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:199670","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:20617","lng":-105,"lat":37.299999,"country":"US","state":"Colorado"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:199686","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:20619","lng":-110.199997,"lat":32,"country":"US","state":"Arizona"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:199687","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:20619","lng":-110.199997,"lat":32,"country":"US","state":"Arizona"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:199724","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.3,"min_age":0.012,"age_unit":"Ma","collection_no":"pbdb:col:20624","lng":-117.800003,"lat":33.599998,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:199750","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:20626","lng":-140,"lat":68.199997,"country":"CA","state":"Yukon"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:199768","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:20628","lng":-118.199997,"lat":34,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:199774","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:20629","lng":-82.099998,"lat":29.799999,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:199827","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:20635","lng":-106.699997,"lat":52.200001,"country":"CA","state":"Saskatchewan"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:199837","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:20636","lng":-81.449997,"lat":28.716667,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:199867","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:20638","lng":-82.199997,"lat":28.799999,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:199884","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:20639","lng":-118,"lat":34,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:199912","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:20641","lng":-111.199997,"lat":40.900002,"country":"US","state":"Utah"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:199913","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:20641","lng":-111.199997,"lat":40.900002,"country":"US","state":"Utah"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:199934","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:20642","lng":-121.5,"lat":38.599998,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:199935","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:20642","lng":-121.5,"lat":38.599998,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:199948","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:20644","lng":-120.400002,"lat":36.099998,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:199960","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:20646","lng":-118.199997,"lat":34,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:200019","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:20653","lng":-82.199997,"lat":28.799999,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:212037","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":1.806,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:21294","lng":35.792,"lat":4.25,"country":"KE","state":"Rift Valley"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:212321","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":5.333,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:21377","lng":36.317001,"lat":3.975,"country":"KE"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:212356","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":5.333,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:21399","lng":36.373001,"lat":4.067,"country":"KE"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:213110","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:21690","lng":35,"lat":-2.4167,"country":"TZ"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:213111","record_type":"occurrence","accepted_name":"Canis adustus","accepted_no":"pbdb:txn:232942","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:21690","lng":35,"lat":-2.4167,"country":"TZ"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:213140","record_type":"occurrence","accepted_name":"Canis aureus","accepted_no":"pbdb:txn:104156","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:21690","lng":35,"lat":-2.4167,"country":"TZ"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:213251","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:21693","lng":28.6667,"lat":-24.6,"country":"ZA","state":"N. Transraal"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:213252","record_type":"occurrence","accepted_name":"Canis adustus","accepted_no":"pbdb:txn:232942","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:21693","lng":28.6667,"lat":-24.6,"country":"ZA","state":"N. Transraal"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:213350","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":3.6,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:21783","lng":40.583302,"lat":11.1361,"country":"ET"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:213425","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":3.6,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:21796","lng":35.222198,"lat":-3.2153,"country":"TZ"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:213431","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":3.6,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:21798","lng":35.208302,"lat":-3.2153,"country":"TZ"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:213443","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":3.6,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:21800","lng":35.202801,"lat":-3.0125,"country":"TZ"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:213454","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":3.6,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:21802","lng":35.216702,"lat":-3.2014,"country":"TZ"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:213460","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":1.806,"age_unit":"Ma","collection_no":"pbdb:col:21804","lng":35.211102,"lat":-3.2181,"country":"TZ"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:213486","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":3.6,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:21810","lng":35.195801,"lat":-3.2514,"country":"TZ"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:213496","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":3.6,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:21811","lng":35.213902,"lat":-3.2125,"country":"TZ"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:213497","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":3.6,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:21812","lng":35.195801,"lat":-3.2556,"country":"TZ"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:213515","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":5.333,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:21830","lng":35.206902,"lat":-3.2042,"country":"TZ"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:213525","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":3.6,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:21831","lng":35.202801,"lat":-3.2111,"country":"TZ"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:213532","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":3.6,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:21832","lng":35.197201,"lat":-3.1861,"country":"TZ"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:213605","record_type":"occurrence","accepted_name":"Canis aureus","accepted_no":"pbdb:txn:104156","max_age":2.588,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:21856","lng":5.9167,"lat":35.75,"country":"MA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:213635","record_type":"occurrence","accepted_name":"Canis aureus","accepted_no":"pbdb:txn:104156","max_age":2.588,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:21857","lng":5.9167,"lat":35.75,"country":"MA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:213641","record_type":"occurrence","accepted_name":"Canis anthus","accepted_no":"pbdb:txn:233548","max_age":2.588,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:21857","lng":5.9167,"lat":35.75,"country":"MA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:213653","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:21859","lng":5.9167,"lat":35.75,"country":"MA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:213661","record_type":"occurrence","accepted_name":"Canis aureus","accepted_no":"pbdb:txn:104156","max_age":2.588,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:21859","lng":5.9167,"lat":35.75,"country":"MA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:213669","record_type":"occurrence","accepted_name":"Canis anthus","accepted_no":"pbdb:txn:233548","max_age":2.588,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:21859","lng":5.9167,"lat":35.75,"country":"MA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:213744","record_type":"occurrence","accepted_name":"Canis aureus","accepted_no":"pbdb:txn:104156","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:21886","lng":32.950001,"lat":24.766701,"country":"EG"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:213948","record_type":"occurrence","accepted_name":"Canis aureus","accepted_no":"pbdb:txn:104156","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:21907","lng":25.5,"lat":23,"country":"EG"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:213985","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:21914","lng":24.633301,"lat":-27.616699,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:214024","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:21920","lng":24.633301,"lat":-27.616699,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:214181","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:21953","lng":18,"lat":-33,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:214225","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":1.806,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:21961","lng":27.7211,"lat":-26.016899,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:216895","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:22074","lng":29.823,"lat":1.374,"country":"CD"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:217610","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":23.03,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:22220","lng":18.15,"lat":-32.976002,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:217674","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":5.333,"min_age":3.6,"age_unit":"Ma","collection_no":"pbdb:col:22221","lng":18.15,"lat":-32.976002,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:218780","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":3.6,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:22340","lng":28.950001,"lat":-24.200001,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:219129","record_type":"occurrence","accepted_name":"Canis aureus","accepted_no":"pbdb:txn:104156","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:22489","lng":-6.0814,"lat":34.4356,"country":"MA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:219376","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:22513","lng":33,"lat":24.5,"country":"EG","state":"Kom Ombo Plain"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:219803","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":2.588,"min_age":1.806,"age_unit":"Ma","collection_no":"pbdb:col:22596","lng":35.3736,"lat":-2.9806,"country":"TZ"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:219873","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:22628","lng":35.344398,"lat":-2.9861,"country":"TZ"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:220361","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:21862","lng":18.866699,"lat":-34.150002,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:220373","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:21866","lng":25.9167,"lat":-30.4167,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:220429","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:21871","lng":36.25,"lat":15.25,"country":"SD"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:220484","record_type":"occurrence","accepted_name":"Canis aureus","accepted_no":"pbdb:txn:104156","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:21877","lng":28.9,"lat":22.9,"country":"EG"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:220517","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:21883","lng":30.7264,"lat":22.516701,"country":"EG"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:220528","record_type":"occurrence","accepted_name":"Canis familiaris","accepted_no":"pbdb:txn:104153","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:21894","lng":31.9333,"lat":-14.4022,"country":"ZM"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:220617","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:21897","lng":23.7167,"lat":-28.799999,"country":"ZA","state":"Orange Free"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:220656","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:21911","lng":24.633301,"lat":-27.616699,"country":"ZA","state":"Orange Free"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:220672","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:21912","lng":25.866699,"lat":-30.233299,"country":"ZA","state":"Orange Free"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:220690","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:21915","lng":23.5553,"lat":-27.8458,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:220707","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:21916","lng":24.4,"lat":-34.099998,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:220761","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:21918","lng":24.4,"lat":-34.099998,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:220800","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:21931","lng":18.6833,"lat":-34.083302,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:220871","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:21946","lng":27.633301,"lat":-29.0833,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:220896","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":2.588,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:21948","lng":22.1833,"lat":-33.533298,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:220973","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":2.588,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:21950","lng":21.866699,"lat":-33.511101,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:221007","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":2.588,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:21951","lng":19.4667,"lat":-34.583302,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:221048","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:21954","lng":18.25,"lat":-33.083302,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:221315","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":0.781,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:21276","lng":36.167,"lat":-1.767,"country":"KE"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:221316","record_type":"occurrence","accepted_name":"Canis adustus","accepted_no":"pbdb:txn:232942","max_age":0.781,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:21276","lng":36.167,"lat":-1.767,"country":"KE"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:221317","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.781,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:21276","lng":36.167,"lat":-1.767,"country":"KE"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:221353","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":0.781,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:21277","lng":36.167,"lat":-1.767,"country":"KE"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:221354","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.781,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:21277","lng":36.167,"lat":-1.767,"country":"KE"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:221548","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":1.806,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:21296","lng":35.776001,"lat":4.176,"country":"KE","state":"Rift Valley"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:221577","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":2.588,"min_age":1.806,"age_unit":"Ma","collection_no":"pbdb:col:21302","lng":35.724998,"lat":4.05,"country":"KE","state":"Rift Valley"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:224495","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":5.333,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:21791","lng":27.733299,"lat":-26.016701,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:224530","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":5.333,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:21791","lng":27.733299,"lat":-26.016701,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:224975","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":1.806,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:21822","lng":27.733601,"lat":-26.016701,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:225019","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:21824","lng":27.7208,"lat":-26.016701,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:225040","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:21824","lng":27.7208,"lat":-26.016701,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:225084","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:21825","lng":27.7208,"lat":-26.016701,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:225106","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:21825","lng":27.7208,"lat":-26.016701,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:225172","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":5.333,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:21826","lng":27.7208,"lat":-26.016701,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:225190","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":5.333,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:21827","lng":27.7208,"lat":-26.016701,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:225238","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:21828","lng":27.7208,"lat":-26.016701,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:225303","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:21829","lng":27.7208,"lat":-26.016701,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:225604","record_type":"occurrence","accepted_name":"Canis aureus","accepted_no":"pbdb:txn:104156","max_age":2.588,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:21865","lng":20.5333,"lat":32.133301,"country":"LY"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:225624","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:21884","lng":22.1667,"lat":32.866699,"country":"LY"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:225642","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:21902","lng":33.75,"lat":16.25,"country":"SD"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:225673","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:21903","lng":33.75,"lat":16.25,"country":"SD"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:225737","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:21921","lng":18.8333,"lat":-33.383301,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:225754","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:21922","lng":18.8333,"lat":-33.383301,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:225779","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":2.588,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:21924","lng":28.75,"lat":-15.4167,"country":"ZM"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:225845","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:21929","lng":17.950001,"lat":-33.023102,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:226004","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":2.588,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:21952","lng":19.376802,"lat":-34.546085,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:226061","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:21956","lng":24.616699,"lat":-27.616699,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:226127","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:21957","lng":25.65,"lat":-33.599998,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:226130","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:21958","lng":33.75,"lat":16.25,"country":"SD"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:226177","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":5.333,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:21960","lng":27.5,"lat":-26.5,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:226230","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:21963","lng":36.25,"lat":-1.75,"country":"KE"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:226231","record_type":"occurrence","accepted_name":"Canis adustus","accepted_no":"pbdb:txn:232942","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:21963","lng":36.25,"lat":-1.75,"country":"KE"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:226232","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:21963","lng":36.25,"lat":-1.75,"country":"KE"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:226787","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:22066","lng":29.6,"lat":0.1333,"country":"CD"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:227011","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:22073","lng":29.823099,"lat":1.2314,"country":"CD"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:227664","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":23.03,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:22229","lng":18.15,"lat":-32.976002,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:228015","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":5.333,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:22329","lng":27.75,"lat":-26,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:228035","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":5.333,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:22330","lng":27.75,"lat":-26,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:228055","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":5.333,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:22332","lng":27.75,"lat":-26,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:228087","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":5.333,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:22334","lng":27.75,"lat":-26,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:228132","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":5.333,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:22334","lng":27.75,"lat":-26,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:228331","record_type":"occurrence","accepted_name":"Canis adustus","accepted_no":"pbdb:txn:232942","max_age":3.6,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:22340","lng":28.950001,"lat":-24.200001,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:339251","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":5.333,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:32050","lng":35.130001,"lat":-3.13,"country":"TZ","state":"Eastern Drift Valley"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:339309","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:32051","lng":36.349998,"lat":4.083333,"country":"KE"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:339335","record_type":"occurrence","accepted_name":"Canis aureus","accepted_no":"pbdb:txn:104156","max_age":3.6,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:32052","lng":-7.65,"lat":33.583332,"country":"MA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:340885","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:32145","lng":22.033333,"lat":46.966667,"country":"RO"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:341749","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:32195","lng":22.033333,"lat":46.966667,"country":"RO"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:356210","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:33973","lng":22.033333,"lat":46.966667,"country":"RO"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:356272","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:33974","lng":22.033333,"lat":46.966667,"country":"RO"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:357127","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:33975","lng":22.033333,"lat":46.966667,"country":"RO"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:357185","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:34009","lng":22.033333,"lat":46.966667,"country":"RO"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:357217","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:34010","lng":22.033333,"lat":46.966667,"country":"RO"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:358468","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:34102","lng":69.966667,"lat":38.349998,"country":"TJ"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:358553","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:34104","lng":69.966667,"lat":38.349998,"country":"TJ"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:358632","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:34105","lng":36.75,"lat":35.133331,"country":"SY"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:360258","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:34127","lng":5.6,"lat":50.483334,"country":"BE"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:361611","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":5.333,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:22239","lng":36.049999,"lat":2.9,"country":"KE"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:361746","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:34269","lng":-80.397499,"lat":27.638332,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:361747","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:34269","lng":-80.397499,"lat":27.638332,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:361891","record_type":"occurrence","accepted_name":"Canis adustus","accepted_no":"pbdb:txn:232942","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:34287","lng":-7.583333,"lat":33.583332,"country":"MA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:362182","record_type":"occurrence","accepted_name":"Canis adustus","accepted_no":"pbdb:txn:232942","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:34329","lng":-7.583333,"lat":33.583332,"country":"MA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:362197","record_type":"occurrence","accepted_name":"Canis adustus","accepted_no":"pbdb:txn:232942","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:34330","lng":-7.583333,"lat":33.583332,"country":"MA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:362966","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:34382","lng":-101.186203,"lat":42.1189,"country":"US","state":"Nebraska"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:363572","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":5.333,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:34444","lng":69.666946,"lat":38.310833,"country":"TJ"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:363597","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":5.333,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:34445","lng":68,"lat":38,"country":"TJ"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:363600","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:34446","lng":79,"lat":45},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:363611","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:34447","lng":78,"lat":44,"country":"KG"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:365332","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":3.2,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:34617","lng":23.15,"lat":40.683334,"country":"GR","state":"Macedonia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:365333","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":3.2,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:34617","lng":23.15,"lat":40.683334,"country":"GR","state":"Macedonia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:366131","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:34667","lng":123.433334,"lat":41.166668,"country":"CN","state":"Liaoyang"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:367530","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":3.2,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:34764","lng":21.799999,"lat":37.983334,"country":"GR","state":"Macedonia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:367573","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:34766","lng":21.6,"lat":37.516666,"country":"GR","state":"Peloponnisos"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:367688","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:34782","lng":22.950001,"lat":39.366669,"country":"GR","state":"Thessaly"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:367689","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:34782","lng":22.950001,"lat":39.366669,"country":"GR","state":"Thessaly"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:367690","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:34782","lng":22.950001,"lat":39.366669,"country":"GR","state":"Thessaly"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:367716","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:34783","lng":23.466667,"lat":40.566666,"country":"GR","state":"Macedonia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:367723","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:34784","lng":23.466667,"lat":40.566666,"country":"GR","state":"Macedonia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:367724","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:34784","lng":23.466667,"lat":40.566666,"country":"GR","state":"Macedonia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:367725","record_type":"occurrence","accepted_name":"Canis apolloniensis","accepted_no":"pbdb:txn:55004","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:34784","lng":23.466667,"lat":40.566666,"country":"GR","state":"Macedonia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:367726","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:34784","lng":23.466667,"lat":40.566666,"country":"GR","state":"Macedonia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:367963","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":2.588,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:34808","lng":22.950001,"lat":39.366669,"country":"GR","state":"Thessaly"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:368589","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:34872","lng":-3.518889,"lat":42.352501,"country":"ES","state":"Castilla-Leon"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:368996","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:34898","lng":-2.466667,"lat":37.716667,"country":"ES","state":"Granada"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:368997","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:34898","lng":-2.466667,"lat":37.716667,"country":"ES","state":"Granada"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:369045","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:34911","lng":-0.866667,"lat":37.616669,"country":"ES","state":"Murcia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:369171","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:34920","lng":-3.518889,"lat":42.352501,"country":"ES","state":"Castilla-Leon"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:369192","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:34925","lng":-3.518889,"lat":42.352501,"country":"ES","state":"Castilla-Leon"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:369203","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:34926","lng":3.518889,"lat":42.352501,"country":"ES","state":"Castilla-Leon"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:369226","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:34927","lng":-3.518889,"lat":42.352501,"country":"ES","state":"Castilla-Leon"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:369252","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":3.2,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:34929","lng":-0.15,"lat":39.849998,"country":"ES","state":"Castellon"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:369699","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:34985","lng":-2.566667,"lat":37.583332,"country":"ES","state":"Granada"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:370245","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:35045","lng":20.5,"lat":48.083332,"country":"HU"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:370428","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":5.333,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:35076","lng":0.383333,"lat":43.133331,"country":"FR","state":"Midi-Pyrenees"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:370531","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:35078","lng":-2.533333,"lat":37.816666,"country":"ES","state":"Granada"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:373551","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":3.2,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:35358","lng":20.75,"lat":48.516666,"country":"HU","state":"Borsodabaujzemplen"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:374161","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":3.2,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:35369","lng":18.450001,"lat":45.866669,"country":"HU","state":"Barany"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:374162","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":3.2,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:35369","lng":18.450001,"lat":45.866669,"country":"HU","state":"Barany"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:374262","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":3.2,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:35371","lng":18.450001,"lat":45.866669,"country":"HU","state":"Barany"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:374338","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":3.2,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:35374","lng":18.383333,"lat":46.966667,"country":"HU","state":"Fejer"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:375048","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:35428","lng":20.75,"lat":48.516666,"country":"HU","state":"Borsodabaujzemplen"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:375148","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:35431","lng":20.75,"lat":48.516666,"country":"HU","state":"Borsodabaujzemplen"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:375514","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:35442","lng":18.4,"lat":45.833332,"country":"HU","state":"Barany"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:375515","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:35442","lng":18.4,"lat":45.833332,"country":"HU","state":"Barany"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:375632","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:35457","lng":18.450001,"lat":45.866669,"country":"HU","state":"Barany"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:375892","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:35467","lng":18.450001,"lat":45.866669,"country":"HU","state":"Barany"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:375995","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:35472","lng":20.533333,"lat":48.049999,"country":"HU","state":"Borsodabaujzemplen"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:379666","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":2.588,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:35907","lng":16.799999,"lat":49.400002,"country":"CZ"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:380822","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:36134","lng":12.3,"lat":41.883331,"country":"IT","state":"Lazio Region"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:381189","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:36206","lng":11.316667,"lat":51.400002,"country":"DE","state":"Sachsen-Anhalt"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:381231","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:22728","lng":11.3833,"lat":50.983299,"country":"DE","state":"Thuringia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:381395","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:36214","lng":14.083333,"lat":49.933334,"country":"CZ"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:381462","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:36219","lng":14.583333,"lat":50.183334,"country":"CZ"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:381496","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:36220","lng":9.95,"lat":49.816666,"country":"DE","state":"Bayern"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:382410","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":5.333,"min_age":3.6,"age_unit":"Ma","collection_no":"pbdb:col:36318","lng":114.599998,"lat":39.84,"country":"CN","state":"Hebei"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:382411","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":5.333,"min_age":3.6,"age_unit":"Ma","collection_no":"pbdb:col:36318","lng":114.599998,"lat":39.84,"country":"CN","state":"Hebei"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:382561","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:36373","lng":11.3,"lat":42.400002,"country":"IT","state":"Toscana"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:382572","record_type":"occurrence","accepted_name":"Canis familiaris","accepted_no":"pbdb:txn:104153","max_age":2.588,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:36376","lng":8.8333,"lat":45.799999,"country":"IT","state":"Lombardia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:384496","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:36586","lng":100.940002,"lat":24.870001,"country":"CN","state":"Yunnan"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:387459","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:37024","lng":35.566666,"lat":32.683334,"country":"IL"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:387460","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:37024","lng":35.566666,"lat":32.683334,"country":"IL"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:387487","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:37026","lng":35.566666,"lat":32.683334,"country":"IL"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:395161","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:22491","lng":37.5,"lat":5.25,"country":"ET","state":"Ethiopian Rift"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:398243","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:13066","lng":-84.800003,"lat":34.200001,"country":"US","state":"Georgia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:407962","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:11803","lng":35.049999,"lat":32.716667,"country":"IL","state":"Mount Carmel"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:407997","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:39252","lng":35.049999,"lat":32.716667,"country":"IL"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:408440","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:39314","lng":31.913889,"lat":38.279167,"country":"TR"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:408441","record_type":"occurrence","accepted_name":"Canis aureus","accepted_no":"pbdb:txn:104156","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:39314","lng":31.913889,"lat":38.279167,"country":"TR"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:408500","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:39321","lng":30.520555,"lat":39.776669,"country":"TR"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:408555","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":5.333,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:39322","lng":35.463055,"lat":40.873333,"country":"TR"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:409292","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":5.333,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:39409","lng":39.71389,"lat":47.236389,"country":"RU","state":"Rostovskaya Oblast'"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:409300","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":5.333,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:39410","lng":39.71389,"lat":47.236389,"country":"RU","state":"Rostovskaya Oblast'"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:412079","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:39847","lng":23.916668,"lat":44.75,"country":"RO"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:412082","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:39848","lng":23.916668,"lat":44.75,"country":"RO"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:412418","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":5.333,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:39882","lng":44.041668,"lat":41.616669,"country":"GE"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:414551","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":5.333,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:40113","lng":25.549999,"lat":46.016666,"country":"RO"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:415526","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:40266","lng":108.5,"lat":51.833332,"country":"RU","state":"Western Transbaikalia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:416592","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":5.333,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:40392","lng":45.990555,"lat":41.393055,"country":"GE"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:416628","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":5.333,"min_age":3.2,"age_unit":"Ma","collection_no":"pbdb:col:40394","lng":41.816666,"lat":45.033333,"country":"RU","state":"Stavropol'skaya"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:416649","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:40398","lng":44.116669,"lat":41.966667,"country":"GE"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:417541","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.781,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:40497","lng":84.271942,"lat":49.738609},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:417579","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:40500","lng":13.848056,"lat":44.868332,"country":"HR","state":"Istria"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:418305","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":1.806,"age_unit":"Ma","collection_no":"pbdb:col:36112","lng":-0.916667,"lat":40.216667,"country":"ES","state":"Teruel"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:418337","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":5.333,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:34434","lng":69.111115,"lat":38.598331,"country":"TJ","state":"Zulfi"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:418923","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":5.333,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:34395","lng":68.966667,"lat":37.333332,"country":"TJ"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:418960","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:40695","lng":53.426945,"lat":39.459999,"country":"TM"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:419657","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":8.7,"min_age":5.333,"age_unit":"Ma","collection_no":"pbdb:col:35339","lng":-2.596667,"lat":40.347221,"country":"ES","state":"Aragon"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:419944","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":5.333,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:39845","lng":23.916668,"lat":44.75,"country":"RO"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:420015","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:40808","lng":13.664444,"lat":45.768612,"country":"IT","state":"Trieste"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:421638","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:40997","lng":15.45,"lat":41.783333,"country":"IT","state":"Foggia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:421639","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:40997","lng":15.45,"lat":41.783333,"country":"IT","state":"Foggia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:421679","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:41003","lng":15.45,"lat":41.783333,"country":"IT","state":"Foggia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:421686","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:41004","lng":15.45,"lat":41.783333,"country":"IT","state":"Foggia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:421699","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:41006","lng":15.45,"lat":41.783333,"country":"IT","state":"Foggia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:421700","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:41006","lng":15.45,"lat":41.783333,"country":"IT","state":"Foggia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:439011","record_type":"occurrence","accepted_name":"Canis aureus","accepted_no":"pbdb:txn:104156","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:42866","lng":-8.874444,"lat":31.869167,"country":"MA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:439012","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:42866","lng":-8.874444,"lat":31.869167,"country":"MA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:439046","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:42241","lng":3.416667,"lat":45.166668,"country":"FR","state":"Auvergne"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:440026","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:43008","lng":28.964722,"lat":41.018612,"country":"TR"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:440029","record_type":"occurrence","accepted_name":"Canis aureus","accepted_no":"pbdb:txn:104156","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:43008","lng":28.964722,"lat":41.018612,"country":"TR"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:440122","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:43016","lng":14.216667,"lat":40.549999,"country":"IT","state":"Capri Island"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:442548","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.781,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:43617","lng":0.15,"lat":45.650002,"country":"FR","state":"Poitou-Charentes"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:442555","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.781,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:43618","lng":0.15,"lat":45.983334,"country":"FR","state":"Poitou-Charentes"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:442574","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:43619","lng":0.15,"lat":45.650002,"country":"FR","state":"Poitou-Charentes"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:442635","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:43629","lng":0.15,"lat":45.650002,"country":"FR","state":"Poitou-Charentes"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:442664","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:43630","lng":0.15,"lat":45.650002,"country":"FR"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:442682","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:43631","lng":0.15,"lat":45.650002,"country":"FR","state":"Poitou-Charentes"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:442712","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:43632","lng":0.15,"lat":45.650002,"country":"FR","state":"Poitou-Charentes"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:442908","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:43644","lng":11.25,"lat":45.416668,"country":"IT","state":"Verona"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:443122","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:43645","lng":11.25,"lat":45.416668,"country":"IT","state":"Verona"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:443152","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:43649","lng":11.25,"lat":45.416668,"country":"IT","state":"Verona"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:443153","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:43649","lng":11.25,"lat":45.416668,"country":"IT","state":"Verona"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:443180","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:43650","lng":11.25,"lat":45.416668,"country":"IT","state":"Verona"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:443190","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:43651","lng":11.25,"lat":45.416668,"country":"IT","state":"Verona"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:443238","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:43653","lng":11.25,"lat":45.416668,"country":"IT","state":"Verona"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:443239","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:43653","lng":11.25,"lat":45.416668,"country":"IT","state":"Verona"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:443254","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:43654","lng":11.25,"lat":45.416668,"country":"IT","state":"Verona"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:443315","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:43656","lng":11.033333,"lat":45.616669,"country":"IT","state":"Verona"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:443316","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:43656","lng":11.033333,"lat":45.616669,"country":"IT","state":"Verona"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:443339","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.781,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:43657","lng":11,"lat":45.450001,"country":"IT","state":"Verona"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:443400","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:43664","lng":11.1,"lat":46.016666,"country":"IT","state":"Verona"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:443401","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:43664","lng":11.1,"lat":46.016666,"country":"IT","state":"Verona"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:443449","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:43666","lng":11.333333,"lat":45.616669,"country":"IT","state":"Vicenza"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:443582","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:43689","lng":11.55,"lat":45.549999,"country":"IT","state":"Vicenza"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:443685","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:43699","lng":13.748611,"lat":45.736389,"country":"IT","state":"Trieste"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:443733","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.781,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:43702","lng":13.729444,"lat":45.726391,"country":"IT","state":"Trieste"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:447654","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:44090","lng":12.2,"lat":41.849998,"country":"IT","state":"Roma"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:447692","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:44091","lng":18.183332,"lat":40.383331,"country":"IT","state":"Puglia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:448605","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:44145","lng":11.966667,"lat":43.099998,"country":"IT","state":"Perugia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:448612","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:44146","lng":11.466667,"lat":43.616669,"country":"IT","state":"Tuscany"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:448613","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:44146","lng":11.466667,"lat":43.616669,"country":"IT","state":"Tuscany"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:450382","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":5.333,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:44231","lng":3.516667,"lat":45.25,"country":"FR"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:474708","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":3.2,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:47099","lng":3.863056,"lat":45.120556,"country":"FR"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:474731","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":3.2,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:47100","lng":2.919444,"lat":45.68861,"country":"FR"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:478751","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":1.806,"age_unit":"Ma","collection_no":"pbdb:col:47624","lng":3.45,"lat":45.150002,"country":"FR","state":"Auvergne"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:479837","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:47828","lng":3.866667,"lat":45.066666,"country":"FR","state":"Auvergne"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:479850","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:47829","lng":3.9,"lat":45.116669,"country":"FR","state":"Auvergne"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:479879","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:47831","lng":3.85,"lat":45.116669,"country":"FR","state":"Auvergne"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:485282","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:48587","lng":160,"lat":68.75,"country":"RU","state":"Respublika Saha (Jakutija)"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:485373","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:48580","lng":159.300003,"lat":70,"country":"RU","state":"Respublika Saha (Jakutija)"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:487322","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:48889","lng":5.395,"lat":43.686111,"country":"FR","state":"Provence"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:487335","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:48890","lng":5.395,"lat":43.686111,"country":"FR","state":"Provence"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:487387","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:48893","lng":5.395,"lat":43.686111,"country":"FR","state":"Provence"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:487400","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:48908","lng":5.395,"lat":43.686111,"country":"FR","state":"Provence"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:487408","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:48910","lng":5.395,"lat":43.686111,"country":"FR","state":"Provence"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:487415","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:48911","lng":5.395,"lat":43.686111,"country":"FR","state":"Provence"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:488520","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:49089","lng":0.633611,"lat":43.222221,"country":"FR","state":"Haute-Garonne"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:488560","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:49093","lng":1.2,"lat":44.799999,"country":"FR","state":"Aquitaine"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:488561","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:49093","lng":1.2,"lat":44.799999,"country":"FR","state":"Aquitaine"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:488605","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:49094","lng":0.366667,"lat":43.116669,"country":"FR","state":"Haute-Pyrenees"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:489315","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":5.333,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:49240","lng":11.480556,"lat":43.624443,"country":"IT","state":"Tuscany"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:489316","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":5.333,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:49240","lng":11.480556,"lat":43.624443,"country":"IT","state":"Tuscany"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:489370","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":1.806,"age_unit":"Ma","collection_no":"pbdb:col:49254","lng":10.03,"lat":44.228058,"country":"IT","state":"Tuscany"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:489577","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:48981","lng":1.841667,"lat":44.485558,"country":"FR","state":"Lot"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:489590","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:49239","lng":12.935556,"lat":42.964722,"country":"IT"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:489591","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:49239","lng":12.935556,"lat":42.964722,"country":"IT"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:489961","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":1.806,"age_unit":"Ma","collection_no":"pbdb:col:49414","lng":13.158889,"lat":41.742222,"country":"IT","state":"Lazio"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:493158","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:49814","lng":1.731944,"lat":52.455276,"country":"UK","state":"Suffolk"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:493203","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:49816","lng":1.246667,"lat":52.940556,"country":"UK","state":"Norfolk"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:494704","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:49999","lng":7.45,"lat":50.483334,"country":"DE","state":"Rheinland-Pfalz"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:497012","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:50196","lng":8.266667,"lat":50.066666,"country":"DE","state":"Rheinland-Pfalz"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:497081","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:50198","lng":8.283333,"lat":49.166668,"country":"DE","state":"Rheinland-Pfalz"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:497120","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:50199","lng":8.816667,"lat":49.333332,"country":"DE","state":"Baden-Wuerttemberg"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:497444","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:50242","lng":9.2,"lat":48.366669,"country":"DE","state":"Baden-Wuerttemberg"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:497510","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:50249","lng":10.483333,"lat":51.916668,"country":"DE","state":"Niedersachsen"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:497635","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:50258","lng":16.934723,"lat":48.139999,"country":"AT","state":"Niederoesterreich"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:497636","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:50258","lng":16.934723,"lat":48.139999,"country":"AT","state":"Niederoesterreich"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:497675","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:50259","lng":9.516667,"lat":48.533333,"country":"DE","state":"Baden-Wuerttemberg"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:497772","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:50274","lng":9.05,"lat":48.516666,"country":"DE","state":"Baden-Wuerttemberg"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:498800","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:50466","lng":15.816667,"lat":40.966667,"country":"IT","state":"Basilicata"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:498812","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:50342","lng":7.458889,"lat":43.765556,"country":"FR","state":"Alpes Maritimes"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:501588","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":4.9,"min_age":4.2,"age_unit":"Ma","collection_no":"pbdb:col:50910","lng":30,"lat":47,"country":"UA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:501606","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":4.9,"min_age":4.2,"age_unit":"Ma","collection_no":"pbdb:col:50913","lng":30,"lat":47,"country":"UA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:501620","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":4.9,"min_age":3.2,"age_unit":"Ma","collection_no":"pbdb:col:50915","lng":29,"lat":45.5,"country":"MD"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:501624","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":4.2,"min_age":3.2,"age_unit":"Ma","collection_no":"pbdb:col:50917","lng":29,"lat":45.5,"country":"MD"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:501760","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":4.2,"min_age":3.2,"age_unit":"Ma","collection_no":"pbdb:col:50935","lng":29,"lat":45.5,"country":"MD"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:501806","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":4.2,"min_age":3.2,"age_unit":"Ma","collection_no":"pbdb:col:50940","lng":29,"lat":45.25,"country":"MD"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:501828","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":4.2,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:50943","lng":30.5,"lat":46.5,"country":"UA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:501850","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":4.9,"min_age":4.2,"age_unit":"Ma","collection_no":"pbdb:col:50945","lng":77.030556,"lat":52.323612},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:501851","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":4.9,"min_age":4.2,"age_unit":"Ma","collection_no":"pbdb:col:50946","lng":107,"lat":53,"country":"RU","state":"Siberia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:502021","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":1.806,"age_unit":"Ma","collection_no":"pbdb:col:48093","lng":1.351389,"lat":51.963333,"country":"UK","state":"England"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:502572","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:51100","lng":104.73333,"lat":25.627222,"country":"CN","state":"Guizhou"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:508671","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":5.333,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:51684","lng":12.489444,"lat":42.653332,"country":"IT","state":"Umbria"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:510967","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:51778","lng":11.330556,"lat":43.318611,"country":"IT","state":"Tuscany"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:536650","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:55533","lng":4.053056,"lat":51.958057,"country":"NL"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:562951","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":5.333,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:58809","lng":23.033333,"lat":42.849998,"country":"BG"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:565629","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:59150","lng":2.95,"lat":50.299999,"country":"FR"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:583571","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:21695","lng":19.366699,"lat":-34.533298,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:596010","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:63150","lng":-83.364441,"lat":42.808887,"country":"US","state":"Michigan"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:597517","record_type":"occurrence","accepted_name":"Pseudalopex gymnocercus","accepted_no":"pbdb:txn:83739","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:63338","lng":-62.083332,"lat":-38.533333,"country":"AR","state":"Buenos Aires"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:598097","record_type":"occurrence","accepted_name":"Canis (Pseudalopex)","accepted_no":"pbdb:txn:83738","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:63335","lng":-61.766666,"lat":-38.5,"country":"AR","state":"Buenos Aires"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:598333","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:63427","lng":-86.783333,"lat":36.183334,"country":"US","state":"Tennessee"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:598370","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.126,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:63429","lng":-86.783333,"lat":36.183334,"country":"US","state":"Tennessee"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:610349","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:65405","lng":-80.292503,"lat":32.559166,"country":"US","state":"South Carolina"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:623887","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.3,"min_age":0.012,"age_unit":"Ma","collection_no":"pbdb:col:20495","lng":-109.650002,"lat":29.683332,"country":"MX","state":"Sonora"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:648831","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:70118","lng":-89.166664,"lat":13.783333,"country":"SV"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:654796","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:70673","lng":-64.73333,"lat":-21.533333,"country":"BO","state":"Tarija"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:654798","record_type":"occurrence","accepted_name":"Pseudalopex gymnocercus","accepted_no":"pbdb:txn:83739","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:70673","lng":-64.73333,"lat":-21.533333,"country":"BO","state":"Tarija"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:654894","record_type":"occurrence","accepted_name":"Canis (Pseudalopex)","accepted_no":"pbdb:txn:83738","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:70704","lng":-63.066666,"lat":-20.75,"country":"BO","state":"Chuquisaca"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:658992","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:71060","lng":107.283333,"lat":47.766666,"country":"MN"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:661478","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:71263","lng":-104.800003,"lat":27,"country":"MX","state":"Chihuahua"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:661593","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:71277","lng":-100.716667,"lat":23.816668,"country":"MX","state":"San Luis Potosi"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:661651","record_type":"occurrence","accepted_name":"Pseudalopex gymnocercus","accepted_no":"pbdb:txn:83739","max_age":0.781,"min_age":0.012,"age_unit":"Ma","collection_no":"pbdb:col:71286","lng":-58.700001,"lat":-38.566666,"country":"AR","state":"Buenos Aires"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:661802","record_type":"occurrence","accepted_name":"Pseudalopex gymnocercus","accepted_no":"pbdb:txn:83739","max_age":0.781,"min_age":0.012,"age_unit":"Ma","collection_no":"pbdb:col:71303","lng":-57.125,"lat":-34.066666,"country":"AR","state":"Buenos Aires"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:661803","record_type":"occurrence","accepted_name":"Canis (Pseudalopex)","accepted_no":"pbdb:txn:83738","max_age":0.781,"min_age":0.012,"age_unit":"Ma","collection_no":"pbdb:col:71303","lng":-57.125,"lat":-34.066666,"country":"AR","state":"Buenos Aires"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:661848","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:71304","lng":-57.716667,"lat":-38.033333,"country":"AR","state":"Buenos Aires"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:661877","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:71308","lng":-97.150002,"lat":18.266666,"country":"MX","state":"Puebla"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:661974","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:71316","lng":-61.799999,"lat":-38.483334,"country":"AR","state":"Buenos Aires"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:662059","record_type":"occurrence","accepted_name":"Canis familiaris","accepted_no":"pbdb:txn:104153","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:71329","lng":-77.716667,"lat":-9.2,"country":"PE"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:662170","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:71338","lng":-70,"lat":-46.200001,"country":"AR","state":"Chubut"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:662188","record_type":"occurrence","accepted_name":"Canis (Pseudalopex)","accepted_no":"pbdb:txn:83738","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:71342","lng":-70,"lat":-52.066666,"country":"CL"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:662193","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:71343","lng":-69.583336,"lat":-52.166668,"country":"AR"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:662216","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:71345","lng":-99.815277,"lat":24.099443,"country":"MX","state":"Nuevo Leon"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:662240","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:71346","lng":-80.5,"lat":-4.7,"country":"PE"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:662251","record_type":"occurrence","accepted_name":"Canis (Pseudalopex)","accepted_no":"pbdb:txn:83738","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:71346","lng":-80.5,"lat":-4.7,"country":"PE"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:662312","record_type":"occurrence","accepted_name":"Canis familiaris","accepted_no":"pbdb:txn:104153","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:71349","lng":-60.200001,"lat":-37.299999,"country":"AR","state":"Buenos Aires"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:683956","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:73752","lng":-117.987503,"lat":33.895279,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:683957","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:73752","lng":-117.987503,"lat":33.895279,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:684223","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:73761","lng":-2.5,"lat":41.166668,"country":"ES","state":"Soria"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:685639","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:73845","lng":-58.065834,"lat":-37.840557,"country":"AR","state":"Buenos Aires"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:689842","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:74141","lng":-84.75,"lat":37.866669,"country":"US","state":"Kentucky"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:690439","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:74240","lng":-83.133331,"lat":36.266666,"country":"US","state":"Tennessee"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:691250","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:74474","lng":-104.199997,"lat":31.183332,"country":"US","state":"Texas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:696742","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:74953","lng":-107.150002,"lat":38.483334,"country":"US","state":"Colorado"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:699340","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:56733","lng":44.195,"lat":41.329166,"country":"GE"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:709222","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:75995","lng":-93.216667,"lat":36.666668,"country":"US","state":"Missouri"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:709947","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:76059","lng":-104.449997,"lat":32.366669,"country":"US","state":"New Mexico"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:709948","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:76059","lng":-104.449997,"lat":32.366669,"country":"US","state":"New Mexico"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:713685","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":3.6,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:76530","lng":39.715,"lat":47.233334,"country":"RU"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:713686","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":3.6,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:76530","lng":39.715,"lat":47.233334,"country":"RU"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:713731","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":4.2,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:50943","lng":30.5,"lat":46.5,"country":"UA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:724188","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:77773","lng":-3.166667,"lat":37.416668,"country":"ES","state":"Granada"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:724191","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:77773","lng":-3.166667,"lat":37.416668,"country":"ES","state":"Granada"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:724197","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:77773","lng":-3.166667,"lat":37.416668,"country":"ES","state":"Granada"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:732488","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:63515","lng":-72.239166,"lat":10.794722,"country":"VE","state":"Zulia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:740001","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:79548","lng":84.75,"lat":50.950001,"country":"RU","state":"Siberia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:740235","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:79581","lng":-98.099998,"lat":30.358334,"country":"US","state":"Texas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:740244","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:79582","lng":-98.099998,"lat":30.358334,"country":"US","state":"Texas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:740260","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:79584","lng":-98.099998,"lat":30.358334,"country":"US","state":"Texas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:740510","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:79630","lng":-119.51667,"lat":34.400002,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:740511","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:79630","lng":-119.51667,"lat":34.400002,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:740568","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:79632","lng":-98.400002,"lat":29.583332,"country":"US","state":"Texas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:740981","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:79683","lng":-97.683334,"lat":30.633333,"country":"US","state":"Texas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:740982","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:79683","lng":-97.683334,"lat":30.633333,"country":"US","state":"Texas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:745056","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.3,"min_age":0.012,"age_unit":"Ma","collection_no":"pbdb:col:79918","lng":-79.087776,"lat":33.010277,"country":"US","state":"South Carolina"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:745057","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.3,"min_age":0.012,"age_unit":"Ma","collection_no":"pbdb:col:79757","lng":-80.334724,"lat":32.479443,"country":"US","state":"South Carolina"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:745058","record_type":"occurrence","accepted_name":"Canis armbrusteri","accepted_no":"pbdb:txn:44827","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:79919","lng":-80.448059,"lat":33.214443,"country":"US","state":"South Carolina"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:776506","record_type":"occurrence","accepted_name":"Canis aureus","accepted_no":"pbdb:txn:104156","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:83304","lng":9.833333,"lat":16.966667,"country":"NE"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:781878","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:84181","lng":-87.792221,"lat":34.729443,"country":"US","state":"Alabama"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:788394","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:85159","lng":-109.300003,"lat":26.983334,"country":"MX","state":"Sonora"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:789151","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.3,"min_age":0.012,"age_unit":"Ma","collection_no":"pbdb:col:85314","lng":-118.293335,"lat":33.762501,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:798179","record_type":"occurrence","accepted_name":"Canis rufus","accepted_no":"pbdb:txn:44879","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:86852","lng":-86.343887,"lat":34.74139,"country":"US","state":"Alabama"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:819173","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:90036","lng":-5.341389,"lat":36.126667,"country":"ES"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:819521","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:90070","lng":18.341816,"lat":-32.317272,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:834584","record_type":"occurrence","accepted_name":"Canis familiaris","accepted_no":"pbdb:txn:104153","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:92732","lng":46.633057,"lat":-25.19861,"country":"MG","state":"Toliara"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:835238","record_type":"occurrence","accepted_name":"Canis familiaris","accepted_no":"pbdb:txn:104153","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:92733","lng":46.633057,"lat":-25.19861,"country":"MG","state":"Toliara"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:836034","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:92787","lng":110.217781,"lat":33.134167,"country":"CN","state":"Hubei"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:838769","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:93103","lng":-96.707497,"lat":32.714722,"country":"US","state":"Texas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:838770","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:93103","lng":-96.707497,"lat":32.714722,"country":"US","state":"Texas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:839053","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:93141","lng":-106.883331,"lat":34.883331,"country":"US","state":"New Mexico"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:839054","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:93141","lng":-106.883331,"lat":34.883331,"country":"US","state":"New Mexico"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:839964","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:93181","lng":-108.199997,"lat":44.983334,"country":"US","state":"Wyoming"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:839965","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:93181","lng":-108.199997,"lat":44.983334,"country":"US","state":"Wyoming"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:839986","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:93181","lng":-108.199997,"lat":44.983334,"country":"US","state":"Wyoming"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:840114","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:93182","lng":-112.583336,"lat":44.633331,"country":"US","state":"Montana"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:840115","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:93182","lng":-112.583336,"lat":44.633331,"country":"US","state":"Montana"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:841210","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:93251","lng":-120.5,"lat":43.333332,"country":"US","state":"Oregon"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:841211","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:93251","lng":-120.5,"lat":43.333332,"country":"US","state":"Oregon"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:841212","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:93251","lng":-120.5,"lat":43.333332,"country":"US","state":"Oregon"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:841247","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:93257","lng":-104.883331,"lat":31.883333,"country":"US","state":"Texas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:841279","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:93259","lng":-97.050003,"lat":30.716667,"country":"US","state":"Texas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:841442","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:93281","lng":-104.783333,"lat":32.349998,"country":"US","state":"New Mexico"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:841443","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:93281","lng":-104.783333,"lat":32.349998,"country":"US","state":"New Mexico"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:841444","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:93281","lng":-104.783333,"lat":32.349998,"country":"US","state":"New Mexico"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:841539","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:93277","lng":-105.683334,"lat":42.783333,"country":"US","state":"Wyoming"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:841709","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:93326","lng":-114.033333,"lat":39.483334,"country":"US","state":"Utah"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:841710","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.126,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:93326","lng":-114.033333,"lat":39.483334,"country":"US","state":"Utah"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:841734","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:93329","lng":-111.866669,"lat":40.766666,"country":"US","state":"Utah"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:841748","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:93333","lng":-103.466667,"lat":43.433334,"country":"US","state":"South Dakota"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:841749","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:93333","lng":-103.466667,"lat":43.433334,"country":"US","state":"South Dakota"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:841784","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:93345","lng":-88.599998,"lat":33.5,"country":"US","state":"Mississippi"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:841978","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.126,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:93376","lng":-106.400002,"lat":35.258331,"country":"US","state":"New Mexico"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:841995","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:93379","lng":-90.366669,"lat":38.266666,"country":"US","state":"Missouri"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:841996","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:93379","lng":-90.366669,"lat":38.266666,"country":"US","state":"Missouri"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:842525","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:93527","lng":-96.966667,"lat":33.066666,"country":"US","state":"Texas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:842581","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:93528","lng":-114.51667,"lat":50.183334,"country":"CA","state":"Alberta"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:847926","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:94328","lng":14.658611,"lat":37.397778,"country":"IT","state":"Sicily"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:847940","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.781,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:94331","lng":9.012778,"lat":42.039444,"country":"FR","state":"Corsica"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:872393","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:96683","lng":-77.280281,"lat":38.338333,"country":"US","state":"Virginia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:872661","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":23.03,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:96713","lng":10.420833,"lat":43.806946,"country":"IT"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:872761","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":5.333,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:96741","lng":10.689444,"lat":43.549442,"country":"IT"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:874990","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:96973","lng":23.4,"lat":-34.099998,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:875018","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:96974","lng":23.367666,"lat":-34.101559,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:906500","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:101897","lng":141.434174,"lat":41.406113,"country":"JP","state":"Aomori"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:906526","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:101898","lng":141.429718,"lat":41.401943,"country":"JP","state":"Aomori"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:906585","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:101899","lng":141.429718,"lat":41.401943,"country":"JP","state":"Aomori"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:915284","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:103991","lng":-79.656944,"lat":38.086109,"country":"US","state":"Virginia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:915704","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:104758","lng":-81.336098,"lat":37.097298,"country":"US","state":"Virginia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:915925","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:104797","lng":-78.388885,"lat":40.427223,"country":"US","state":"Pennsylvania"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:919198","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.126,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:104034","lng":-79.830833,"lat":37.987221,"country":"US","state":"Virginia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:919339","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:104664","lng":-78.512222,"lat":38.872501,"country":"US","state":"Virginia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:919340","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:104664","lng":-78.512222,"lat":38.872501,"country":"US","state":"Virginia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:919358","record_type":"occurrence","accepted_name":"Canis familiaris","accepted_no":"pbdb:txn:104153","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:104667","lng":-83.057777,"lat":36.733891,"country":"US","state":"Virginia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:919359","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:104668","lng":-77.247223,"lat":38.330002,"country":"US","state":"Virginia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:919450","record_type":"occurrence","accepted_name":"Canis familiaris","accepted_no":"pbdb:txn:104153","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:104675","lng":-78.414719,"lat":38.628056,"country":"US","state":"Virginia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:919493","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.126,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:104680","lng":-78.500557,"lat":38.667221,"country":"US","state":"Virginia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:919540","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.126,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:104689","lng":-80.679169,"lat":37.334721,"country":"US","state":"Virginia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:934378","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:82258","lng":-79.083054,"lat":38.357777,"country":"US","state":"Virginia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:935492","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:82530","lng":4.070278,"lat":51.984165,"country":"NL"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:938097","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.126,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:102954","lng":3,"lat":55,"country":"UK"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:970676","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:21709","lng":18.4333,"lat":-33.666698,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:970705","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":7.246,"min_age":2.588,"age_unit":"Ma","collection_no":"pbdb:col:59167","lng":18.109268,"lat":-32.960178,"country":"ZA","state":"Cape"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:970759","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":2.588,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:21711","lng":18.233299,"lat":-33.116699,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:970808","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:21931","lng":18.6833,"lat":-34.083302,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:970821","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:115167","lng":21.195189,"lat":-34.408665,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:970822","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:115167","lng":21.195189,"lat":-34.408665,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:970910","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:115184","lng":16.576942,"lat":-29.768505,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:970959","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":0.781,"min_age":0.126,"age_unit":"Ma","collection_no":"pbdb:col:115188","lng":17.960278,"lat":-33.029167,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:971090","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:115205","lng":18.15,"lat":-33.333332,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:973715","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:93828","lng":-0.958889,"lat":54.262222,"country":"UK","state":"England"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1003082","record_type":"occurrence","accepted_name":"Canis familiaris","accepted_no":"pbdb:txn:104153","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:122115","lng":4.630556,"lat":52.451942,"country":"NL"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1006780","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:32904","lng":109.988052,"lat":20.133333,"country":"VN"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1028841","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:93332","lng":-79.368889,"lat":38.602779,"country":"US","state":"West Virginia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1028842","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:93332","lng":-79.368889,"lat":38.602779,"country":"US","state":"West Virginia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1028864","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20302","lng":-78.699997,"lat":39.599998,"country":"US","state":"Maryland"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1033798","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:93332","lng":-79.368889,"lat":38.602779,"country":"US","state":"West Virginia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1033799","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:93332","lng":-79.368889,"lat":38.602779,"country":"US","state":"West Virginia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1034153","record_type":"occurrence","accepted_name":"Canis armbrusteri","accepted_no":"pbdb:txn:44827","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20302","lng":-78.699997,"lat":39.599998,"country":"US","state":"Maryland"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1034197","record_type":"occurrence","accepted_name":"Canis rufus","accepted_no":"pbdb:txn:44879","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20302","lng":-78.699997,"lat":39.599998,"country":"US","state":"Maryland"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1106774","record_type":"occurrence","accepted_name":"Canis mesomelas","accepted_no":"pbdb:txn:232943","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:115191","lng":18.452728,"lat":-32.387051,"country":"ZA"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1118503","record_type":"occurrence","accepted_name":"Canis proplatensis","accepted_no":"pbdb:txn:264379","max_age":2.588,"min_age":0.781,"age_unit":"Ma","collection_no":"pbdb:col:142016","lng":-64.75,"lat":-21.5,"country":"BO","state":"Tarija"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1137413","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:144976","lng":-81.091393,"lat":-4.689722,"country":"PE","state":"Piura"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1140905","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:145366","lng":-72.239166,"lat":10.795,"country":"VE","state":"Zulia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1142035","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.781,"min_age":0.012,"age_unit":"Ma","collection_no":"pbdb:col:145500","lng":-81.091393,"lat":-4.689722,"country":"PE","state":"Piura"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1142036","record_type":"occurrence","accepted_name":"Canis (Pseudalopex)","accepted_no":"pbdb:txn:83738","max_age":0.781,"min_age":0.012,"age_unit":"Ma","collection_no":"pbdb:col:145500","lng":-81.091393,"lat":-4.689722,"country":"PE","state":"Piura"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1149282","record_type":"occurrence","accepted_name":"Canis (Pseudalopex)","accepted_no":"pbdb:txn:83738","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:146602","lng":-74.228058,"lat":-13.038611,"country":"PE","state":"Ayacucho"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1185081","record_type":"occurrence","accepted_name":"Canis armbrusteri","accepted_no":"pbdb:txn:44827","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:152904","lng":-80.447777,"lat":33.214443,"country":"US","state":"South Carolina"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1186496","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.3,"min_age":0.012,"age_unit":"Ma","collection_no":"pbdb:col:150336","lng":-118.348892,"lat":34.069721,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1186497","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.3,"min_age":0.012,"age_unit":"Ma","collection_no":"pbdb:col:150336","lng":-118.348892,"lat":34.069721,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1186498","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.3,"min_age":0.012,"age_unit":"Ma","collection_no":"pbdb:col:150336","lng":-118.348892,"lat":34.069721,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1186499","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.3,"min_age":0.012,"age_unit":"Ma","collection_no":"pbdb:col:150336","lng":-118.348892,"lat":34.069721,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1186500","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.3,"min_age":0.012,"age_unit":"Ma","collection_no":"pbdb:col:150336","lng":-118.348892,"lat":34.069721,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1196134","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:154722","lng":-80.400002,"lat":25.700001,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1196135","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:154722","lng":-80.400002,"lat":25.700001,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1196392","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:154771","lng":-82.699997,"lat":27.799999,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1196393","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:154771","lng":-82.699997,"lat":27.799999,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1196494","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:34269","lng":-80.397499,"lat":27.638332,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1196538","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:74292","lng":-80.599998,"lat":28.083332,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1196539","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:74292","lng":-80.599998,"lat":28.083332,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1196540","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:74292","lng":-80.599998,"lat":28.083332,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1196892","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:154804","lng":-81.900002,"lat":27.17,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1196936","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:154805","lng":-82.476387,"lat":29.407499,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1196937","record_type":"occurrence","accepted_name":"Canis rufus","accepted_no":"pbdb:txn:44879","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:154805","lng":-82.476387,"lat":29.407499,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1196938","record_type":"occurrence","accepted_name":"Canis familiaris","accepted_no":"pbdb:txn:104153","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:154805","lng":-82.476387,"lat":29.407499,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1197787","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:154910","lng":-82.599998,"lat":29.85,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1197870","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:154921","lng":-80.166664,"lat":26.700001,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1201173","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:155393","lng":-122.281998,"lat":40.784,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1201221","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:155393","lng":-122.281998,"lat":40.784,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1201222","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:155393","lng":-122.281998,"lat":40.784,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1201310","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:155409","lng":-121.013885,"lat":38.908333,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1201311","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:155409","lng":-121.013885,"lat":38.908333,"country":"US","state":"California"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1217418","record_type":"occurrence","accepted_name":"Canis ferox","accepted_no":"pbdb:txn:44840","max_age":10.3,"min_age":4.9,"age_unit":"Ma","collection_no":"pbdb:col:18304","lng":-101.400002,"lat":36.700001,"country":"US","state":"Oklahoma"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1217419","record_type":"occurrence","accepted_name":"Canis ferox","accepted_no":"pbdb:txn:44840","max_age":10.3,"min_age":4.9,"age_unit":"Ma","collection_no":"pbdb:col:19612","lng":-113.400002,"lat":34.700001,"country":"US","state":"Arizona"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1217420","record_type":"occurrence","accepted_name":"Canis ferox","accepted_no":"pbdb:txn:44840","max_age":10.3,"min_age":4.9,"age_unit":"Ma","collection_no":"pbdb:col:19514","lng":-110.599998,"lat":32.5,"country":"US","state":"Arizona"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1217421","record_type":"occurrence","accepted_name":"Canis ferox","accepted_no":"pbdb:txn:44840","max_age":10.3,"min_age":4.9,"age_unit":"Ma","collection_no":"pbdb:col:18755","lng":-108,"lat":28.799999,"country":"MX","state":"Chihuahua"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1217422","record_type":"occurrence","accepted_name":"Canis ferox","accepted_no":"pbdb:txn:44840","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19925","lng":-100.300003,"lat":37.200001,"country":"US","state":"Kansas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1217423","record_type":"occurrence","accepted_name":"Canis lepophagus","accepted_no":"pbdb:txn:44856","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19954","lng":-98.234444,"lat":42.378334,"country":"US","state":"Nebraska"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1217424","record_type":"occurrence","accepted_name":"Canis lepophagus","accepted_no":"pbdb:txn:44856","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19914","lng":-118,"lat":43,"country":"US","state":"Idaho"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1217425","record_type":"occurrence","accepted_name":"Canis lepophagus","accepted_no":"pbdb:txn:44856","max_age":0.126,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:79621","lng":-82.883331,"lat":29.883333,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1220316","record_type":"occurrence","accepted_name":"Canis edwardii","accepted_no":"pbdb:txn:44838","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:20033","lng":-101.633331,"lat":34.883331,"country":"US","state":"Texas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1220317","record_type":"occurrence","accepted_name":"Canis edwardii","accepted_no":"pbdb:txn:44838","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19963","lng":-100,"lat":42.700001,"country":"US","state":"Nebraska"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1220325","record_type":"occurrence","accepted_name":"Canis edwardii","accepted_no":"pbdb:txn:44838","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19954","lng":-98.234444,"lat":42.378334,"country":"US","state":"Nebraska"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1220326","record_type":"occurrence","accepted_name":"Canis edwardii","accepted_no":"pbdb:txn:44838","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:19751","lng":-82.099998,"lat":29.799999,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1220328","record_type":"occurrence","accepted_name":"Canis edwardii","accepted_no":"pbdb:txn:44838","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:159674","lng":-97.866081,"lat":42.352402,"country":"US","state":"Nebraska"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1220329","record_type":"occurrence","accepted_name":"Canis edwardii","accepted_no":"pbdb:txn:44838","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:159675","lng":-100.626114,"lat":40.205276,"country":"US","state":"Nebraska"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1220330","record_type":"occurrence","accepted_name":"Canis edwardii","accepted_no":"pbdb:txn:44838","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:159676","lng":-101.040001,"lat":40.18,"country":"US","state":"Nebraska"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1220333","record_type":"occurrence","accepted_name":"Canis edwardii","accepted_no":"pbdb:txn:44838","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:159677","lng":-100.480003,"lat":40.18,"country":"US","state":"Nebraska"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1220334","record_type":"occurrence","accepted_name":"Canis edwardii","accepted_no":"pbdb:txn:44838","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:159678","lng":-100.17083,"lat":40.283333,"country":"US","state":"Nebraska"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1220335","record_type":"occurrence","accepted_name":"Canis edwardii","accepted_no":"pbdb:txn:44838","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:159679","lng":-117.5,"lat":43.599998,"country":"US","state":"Oregon"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1220336","record_type":"occurrence","accepted_name":"Canis edwardii","accepted_no":"pbdb:txn:44838","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20342","lng":-99.5,"lat":33.75,"country":"US","state":"Texas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1220337","record_type":"occurrence","accepted_name":"Canis edwardii","accepted_no":"pbdb:txn:44838","max_age":23.03,"min_age":5.333,"age_unit":"Ma","collection_no":"pbdb:col:18500","lng":-81.800003,"lat":27.9,"country":"US","state":"Florida"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1220339","record_type":"occurrence","accepted_name":"Canis edwardii","accepted_no":"pbdb:txn:44838","max_age":4.9,"min_age":1.8,"age_unit":"Ma","collection_no":"pbdb:col:20322","lng":-114.5,"lat":31.700001,"country":"MX","state":"Sonora"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1220340","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:159680","lng":-98.358055,"lat":40.922222,"country":"US","state":"Nebraska"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1220342","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20532","lng":-79.300003,"lat":38.700001,"country":"US","state":"West Virginia"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1220343","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":2.588,"min_age":0.0117,"age_unit":"Ma","collection_no":"pbdb:col:152653","lng":-105.781944,"lat":39.549999,"country":"US","state":"Colorado"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1220344","record_type":"occurrence","accepted_name":"Canis armbrusteri","accepted_no":"pbdb:txn:44827","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20537","lng":-100.900002,"lat":37.099998,"country":"US","state":"Kansas"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1220345","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20500","lng":-102.5,"lat":42.700001,"country":"US","state":"Nebraska"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1220346","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20501","lng":-102.5,"lat":42.700001,"country":"US","state":"Nebraska"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1220347","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20501","lng":-102.5,"lat":42.700001,"country":"US","state":"Nebraska"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1220348","record_type":"occurrence","accepted_name":"Canis dirus","accepted_no":"pbdb:txn:44837","max_age":1.8,"min_age":0.3,"age_unit":"Ma","collection_no":"pbdb:col:20138","lng":-98.099998,"lat":40.200001,"country":"US","state":"Nebraska"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1230888","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:162014","lng":-29.888332,"lat":82.125,"country":"GL"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1231936","record_type":"occurrence","accepted_name":"Canis latrans","accepted_no":"pbdb:txn:44854","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:162133","lng":-113.099998,"lat":46.666668,"country":"US","state":"Montana"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1231937","record_type":"occurrence","accepted_name":"Canis familiaris","accepted_no":"pbdb:txn:104153","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:162133","lng":-113.099998,"lat":46.666668,"country":"US","state":"Montana"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1234807","record_type":"occurrence","accepted_name":"Canis familiaris","accepted_no":"pbdb:txn:104153","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:162545","lng":-14.765556,"lat":81.558609,"country":"GL"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1287081","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:171637","lng":106.821671,"lat":52.753887,"country":"RU"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1310775","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:175940","lng":149.074448,"lat":74.939445,"country":"RU"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1310781","record_type":"occurrence","accepted_name":"Canis familiaris","accepted_no":"pbdb:txn:104153","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:175940","lng":149.074448,"lat":74.939445,"country":"RU"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1310790","record_type":"occurrence","accepted_name":"Canis familiaris","accepted_no":"pbdb:txn:104153","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:175941","lng":-169.903336,"lat":66.048889,"country":"RU"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1310800","record_type":"occurrence","accepted_name":"Canis familiaris","accepted_no":"pbdb:txn:104153","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:175942","lng":-170.046387,"lat":66.034447,"country":"RU"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1314668","record_type":"occurrence","accepted_name":"Canis familiaris","accepted_no":"pbdb:txn:104153","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:176411","lng":-170.383331,"lat":63.700001,"country":"US","state":"Alaska"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1315330","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:176525","lng":-70.299461,"lat":41.700111,"country":"US","state":"Massachusetts"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1315351","record_type":"occurrence","accepted_name":"Canis lupus","accepted_no":"pbdb:txn:44860","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:122450","lng":-68.31778,"lat":44.330555,"country":"US","state":"Maine"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1315352","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:122450","lng":-68.31778,"lat":44.330555,"country":"US","state":"Maine"},
{"database":"PaleoBioDB","occurrence_no":"pbdb:occ:1315386","record_type":"occurrence","accepted_name":"Canis","accepted_no":"pbdb:txn:41198","max_age":0.0117,"min_age":0,"age_unit":"Ma","collection_no":"pbdb:col:122440","lng":-70.820328,"lat":42.820328,"country":"US","state":"Massachusetts"},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913284","record_type":"occurrence","dataset_no":"neotoma:dst:4559","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":13836,"min_age":1353,"age_unit":"ybp","collection_no":"neotoma:sit:3531","collection_name":"Chimney Rock Animal Trap","lng":-105.75,"lat":40.8666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913285","record_type":"occurrence","dataset_no":"neotoma:dst:4559","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":13836,"min_age":1353,"age_unit":"ybp","collection_no":"neotoma:sit:3531","collection_name":"Chimney Rock Animal Trap","lng":-105.75,"lat":40.8666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913316","record_type":"occurrence","dataset_no":"neotoma:dst:4560","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":13100,"min_age":9427,"age_unit":"ybp","collection_no":"neotoma:sit:3532","collection_name":"Lindenmeier [5LR13]","lng":-105,"lat":40.8666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913317","record_type":"occurrence","dataset_no":"neotoma:dst:4560","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":13100,"min_age":9427,"age_unit":"ybp","collection_no":"neotoma:sit:3532","collection_name":"Lindenmeier [5LR13]","lng":-105,"lat":40.8666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913338","record_type":"occurrence","dataset_no":"neotoma:dst:4561","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":11483,"min_age":11483,"age_unit":"ybp","collection_no":"neotoma:sit:3533","collection_name":"Jones-Miller","lng":-102.116666666667,"lat":39.8666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913337","record_type":"occurrence","dataset_no":"neotoma:dst:4561","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":11483,"min_age":11483,"age_unit":"ybp","collection_no":"neotoma:sit:3533","collection_name":"Jones-Miller","lng":-102.116666666667,"lat":39.8666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913396","record_type":"occurrence","dataset_no":"neotoma:dst:4563","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":15531,"min_age":13600,"age_unit":"ybp","collection_no":"neotoma:sit:3535","collection_name":"Lamb Springs [5DA201]","lng":-105.066666666667,"lat":39.5},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913432","record_type":"occurrence","dataset_no":"neotoma:dst:4564","accepted_name":"Canis dirus","accepted_no":"neotoma:txn:5912","max_age":12501,"min_age":11873,"age_unit":"ybp","collection_no":"neotoma:sit:3536","collection_name":"Blackwater Draw Loc. 1","lng":-103.316666666667,"lat":34.2833333333333},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913436","record_type":"occurrence","dataset_no":"neotoma:dst:4564","accepted_name":"Canis dirus","accepted_no":"neotoma:txn:5912","max_age":30041,"min_age":15332,"age_unit":"ybp","collection_no":"neotoma:sit:3536","collection_name":"Blackwater Draw Loc. 1","lng":-103.316666666667,"lat":34.2833333333333},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913437","record_type":"occurrence","dataset_no":"neotoma:dst:4564","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":30041,"min_age":15332,"age_unit":"ybp","collection_no":"neotoma:sit:3536","collection_name":"Blackwater Draw Loc. 1","lng":-103.316666666667,"lat":34.2833333333333},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913405","record_type":"occurrence","dataset_no":"neotoma:dst:4564","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":13462,"min_age":12966,"age_unit":"ybp","collection_no":"neotoma:sit:3536","collection_name":"Blackwater Draw Loc. 1","lng":-103.316666666667,"lat":34.2833333333333},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913438","record_type":"occurrence","dataset_no":"neotoma:dst:4564","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":30041,"min_age":15332,"age_unit":"ybp","collection_no":"neotoma:sit:3536","collection_name":"Blackwater Draw Loc. 1","lng":-103.316666666667,"lat":34.2833333333333},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913456","record_type":"occurrence","dataset_no":"neotoma:dst:4565","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":562,"min_age":562,"age_unit":"ybp","collection_no":"neotoma:sit:3537","collection_name":"Spring Canyon [A-41]","lng":-101.55,"lat":35.7166666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913500","record_type":"occurrence","dataset_no":"neotoma:dst:4567","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":658,"min_age":529,"age_unit":"ybp","collection_no":"neotoma:sit:3539","collection_name":"Alibates","lng":-101.666666666667,"lat":35.5666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913499","record_type":"occurrence","dataset_no":"neotoma:dst:4567","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":658,"min_age":529,"age_unit":"ybp","collection_no":"neotoma:sit:3539","collection_name":"Alibates","lng":-101.666666666667,"lat":35.5666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913532","record_type":"occurrence","dataset_no":"neotoma:dst:4568","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":658,"min_age":529,"age_unit":"ybp","collection_no":"neotoma:sit:3540","collection_name":"Canyon City Club Cave [A251]","lng":-101.866666666667,"lat":35},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913531","record_type":"occurrence","dataset_no":"neotoma:dst:4568","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":658,"min_age":529,"age_unit":"ybp","collection_no":"neotoma:sit:3540","collection_name":"Canyon City Club Cave [A251]","lng":-101.866666666667,"lat":35},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913533","record_type":"occurrence","dataset_no":"neotoma:dst:4568","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":658,"min_age":529,"age_unit":"ybp","collection_no":"neotoma:sit:3540","collection_name":"Canyon City Club Cave [A251]","lng":-101.866666666667,"lat":35},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913622","record_type":"occurrence","dataset_no":"neotoma:dst:4570","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":1171,"min_age":1,"age_unit":"ybp","collection_no":"neotoma:sit:3542","collection_name":"Deadman's Shelter [41SW23]","lng":-101.366666666667,"lat":34.5},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913638","record_type":"occurrence","dataset_no":"neotoma:dst:4570","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":1382,"min_age":1171,"age_unit":"ybp","collection_no":"neotoma:sit:3542","collection_name":"Deadman's Shelter [41SW23]","lng":-101.366666666667,"lat":34.5},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913660","record_type":"occurrence","dataset_no":"neotoma:dst:4570","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":1656,"min_age":1382,"age_unit":"ybp","collection_no":"neotoma:sit:3542","collection_name":"Deadman's Shelter [41SW23]","lng":-101.366666666667,"lat":34.5},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913674","record_type":"occurrence","dataset_no":"neotoma:dst:4570","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":1765,"min_age":1656,"age_unit":"ybp","collection_no":"neotoma:sit:3542","collection_name":"Deadman's Shelter [41SW23]","lng":-101.366666666667,"lat":34.5},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913701","record_type":"occurrence","dataset_no":"neotoma:dst:4570","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":1765,"min_age":1765,"age_unit":"ybp","collection_no":"neotoma:sit:3542","collection_name":"Deadman's Shelter [41SW23]","lng":-101.366666666667,"lat":34.5},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913816","record_type":"occurrence","dataset_no":"neotoma:dst:4571","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":672,"min_age":279,"age_unit":"ybp","collection_no":"neotoma:sit:3543","collection_name":"Lubbock Lake [41LU1]","lng":-101.892083333333,"lat":33.6204166666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913819","record_type":"occurrence","dataset_no":"neotoma:dst:4571","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":672,"min_age":279,"age_unit":"ybp","collection_no":"neotoma:sit:3543","collection_name":"Lubbock Lake [41LU1]","lng":-101.892083333333,"lat":33.6204166666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913825","record_type":"occurrence","dataset_no":"neotoma:dst:4571","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":279,"min_age":189,"age_unit":"ybp","collection_no":"neotoma:sit:3543","collection_name":"Lubbock Lake [41LU1]","lng":-101.892083333333,"lat":33.6204166666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913836","record_type":"occurrence","dataset_no":"neotoma:dst:4571","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":454,"min_age":266,"age_unit":"ybp","collection_no":"neotoma:sit:3543","collection_name":"Lubbock Lake [41LU1]","lng":-101.892083333333,"lat":33.6204166666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913847","record_type":"occurrence","dataset_no":"neotoma:dst:4571","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":454,"min_age":266,"age_unit":"ybp","collection_no":"neotoma:sit:3543","collection_name":"Lubbock Lake [41LU1]","lng":-101.892083333333,"lat":33.6204166666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913851","record_type":"occurrence","dataset_no":"neotoma:dst:4571","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":40350,"min_age":13011,"age_unit":"ybp","collection_no":"neotoma:sit:3543","collection_name":"Lubbock Lake [41LU1]","lng":-101.892083333333,"lat":33.6204166666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913740","record_type":"occurrence","dataset_no":"neotoma:dst:4571","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":8850,"min_age":7170,"age_unit":"ybp","collection_no":"neotoma:sit:3543","collection_name":"Lubbock Lake [41LU1]","lng":-101.892083333333,"lat":33.6204166666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913760","record_type":"occurrence","dataset_no":"neotoma:dst:4571","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":11396,"min_age":8065,"age_unit":"ybp","collection_no":"neotoma:sit:3543","collection_name":"Lubbock Lake [41LU1]","lng":-101.892083333333,"lat":33.6204166666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913778","record_type":"occurrence","dataset_no":"neotoma:dst:4571","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":11341,"min_age":11209,"age_unit":"ybp","collection_no":"neotoma:sit:3543","collection_name":"Lubbock Lake [41LU1]","lng":-101.892083333333,"lat":33.6204166666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913817","record_type":"occurrence","dataset_no":"neotoma:dst:4571","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":672,"min_age":279,"age_unit":"ybp","collection_no":"neotoma:sit:3543","collection_name":"Lubbock Lake [41LU1]","lng":-101.892083333333,"lat":33.6204166666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913837","record_type":"occurrence","dataset_no":"neotoma:dst:4571","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":454,"min_age":266,"age_unit":"ybp","collection_no":"neotoma:sit:3543","collection_name":"Lubbock Lake [41LU1]","lng":-101.892083333333,"lat":33.6204166666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913848","record_type":"occurrence","dataset_no":"neotoma:dst:4571","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":454,"min_age":266,"age_unit":"ybp","collection_no":"neotoma:sit:3543","collection_name":"Lubbock Lake [41LU1]","lng":-101.892083333333,"lat":33.6204166666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913850","record_type":"occurrence","dataset_no":"neotoma:dst:4571","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":40350,"min_age":13011,"age_unit":"ybp","collection_no":"neotoma:sit:3543","collection_name":"Lubbock Lake [41LU1]","lng":-101.892083333333,"lat":33.6204166666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913720","record_type":"occurrence","dataset_no":"neotoma:dst:4571","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":12567,"min_age":11299,"age_unit":"ybp","collection_no":"neotoma:sit:3543","collection_name":"Lubbock Lake [41LU1]","lng":-101.892083333333,"lat":33.6204166666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913739","record_type":"occurrence","dataset_no":"neotoma:dst:4571","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":8850,"min_age":7170,"age_unit":"ybp","collection_no":"neotoma:sit:3543","collection_name":"Lubbock Lake [41LU1]","lng":-101.892083333333,"lat":33.6204166666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913794","record_type":"occurrence","dataset_no":"neotoma:dst:4571","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":5979,"min_age":5638,"age_unit":"ybp","collection_no":"neotoma:sit:3543","collection_name":"Lubbock Lake [41LU1]","lng":-101.892083333333,"lat":33.6204166666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913802","record_type":"occurrence","dataset_no":"neotoma:dst:4571","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":6303,"min_age":5736,"age_unit":"ybp","collection_no":"neotoma:sit:3543","collection_name":"Lubbock Lake [41LU1]","lng":-101.892083333333,"lat":33.6204166666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:913721","record_type":"occurrence","dataset_no":"neotoma:dst:4571","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":12567,"min_age":11299,"age_unit":"ybp","collection_no":"neotoma:sit:3543","collection_name":"Lubbock Lake [41LU1]","lng":-101.892083333333,"lat":33.6204166666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:914115","record_type":"occurrence","dataset_no":"neotoma:dst:4579","accepted_name":"Canis dirus","accepted_no":"neotoma:txn:5912","max_age":23956,"min_age":11417,"age_unit":"ybp","collection_no":"neotoma:sit:3546","collection_name":"Peccary Cave","lng":-93,"lat":35.8666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:914087","record_type":"occurrence","dataset_no":"neotoma:dst:4579","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":23956,"min_age":11417,"age_unit":"ybp","collection_no":"neotoma:sit:3546","collection_name":"Peccary Cave","lng":-93,"lat":35.8666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:914136","record_type":"occurrence","dataset_no":"neotoma:dst:4581","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":11417,"min_age":8913,"age_unit":"ybp","collection_no":"neotoma:sit:3548","collection_name":"Moonshiner","lng":-112.616666666667,"lat":43.3666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:914137","record_type":"occurrence","dataset_no":"neotoma:dst:4581","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":11417,"min_age":8913,"age_unit":"ybp","collection_no":"neotoma:sit:3548","collection_name":"Moonshiner","lng":-112.616666666667,"lat":43.3666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:914239","record_type":"occurrence","dataset_no":"neotoma:dst:4582","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":12202,"min_age":7833,"age_unit":"ybp","collection_no":"neotoma:sit:3549","collection_name":"Jaguar Cave [Cave No. 2]","lng":-112.915277777778,"lat":44.2813888888889},
{"database":"Neotoma","occurrence_no":"neotoma:occ:914258","record_type":"occurrence","dataset_no":"neotoma:dst:4582","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":12202,"min_age":7833,"age_unit":"ybp","collection_no":"neotoma:sit:3549","collection_name":"Jaguar Cave [Cave No. 2]","lng":-112.915277777778,"lat":44.2813888888889},
{"database":"Neotoma","occurrence_no":"neotoma:occ:914205","record_type":"occurrence","dataset_no":"neotoma:dst:4582","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":12202,"min_age":7833,"age_unit":"ybp","collection_no":"neotoma:sit:3549","collection_name":"Jaguar Cave [Cave No. 2]","lng":-112.915277777778,"lat":44.2813888888889},
{"database":"Neotoma","occurrence_no":"neotoma:occ:914209","record_type":"occurrence","dataset_no":"neotoma:dst:4582","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":40350,"min_age":13408,"age_unit":"ybp","collection_no":"neotoma:sit:3549","collection_name":"Jaguar Cave [Cave No. 2]","lng":-112.915277777778,"lat":44.2813888888889},
{"database":"Neotoma","occurrence_no":"neotoma:occ:914218","record_type":"occurrence","dataset_no":"neotoma:dst:4582","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":12202,"min_age":12202,"age_unit":"ybp","collection_no":"neotoma:sit:3549","collection_name":"Jaguar Cave [Cave No. 2]","lng":-112.915277777778,"lat":44.2813888888889},
{"database":"Neotoma","occurrence_no":"neotoma:occ:914232","record_type":"occurrence","dataset_no":"neotoma:dst:4582","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":13408,"min_age":13408,"age_unit":"ybp","collection_no":"neotoma:sit:3549","collection_name":"Jaguar Cave [Cave No. 2]","lng":-112.915277777778,"lat":44.2813888888889},
{"database":"Neotoma","occurrence_no":"neotoma:occ:914257","record_type":"occurrence","dataset_no":"neotoma:dst:4582","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":12202,"min_age":7833,"age_unit":"ybp","collection_no":"neotoma:sit:3549","collection_name":"Jaguar Cave [Cave No. 2]","lng":-112.915277777778,"lat":44.2813888888889},
{"database":"Neotoma","occurrence_no":"neotoma:occ:914219","record_type":"occurrence","dataset_no":"neotoma:dst:4582","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":12202,"min_age":12202,"age_unit":"ybp","collection_no":"neotoma:sit:3549","collection_name":"Jaguar Cave [Cave No. 2]","lng":-112.915277777778,"lat":44.2813888888889},
{"database":"Neotoma","occurrence_no":"neotoma:occ:914233","record_type":"occurrence","dataset_no":"neotoma:dst:4582","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":13408,"min_age":13408,"age_unit":"ybp","collection_no":"neotoma:sit:3549","collection_name":"Jaguar Cave [Cave No. 2]","lng":-112.915277777778,"lat":44.2813888888889},
{"database":"Neotoma","occurrence_no":"neotoma:occ:914240","record_type":"occurrence","dataset_no":"neotoma:dst:4582","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":12202,"min_age":7833,"age_unit":"ybp","collection_no":"neotoma:sit:3549","collection_name":"Jaguar Cave [Cave No. 2]","lng":-112.915277777778,"lat":44.2813888888889},
{"database":"Neotoma","occurrence_no":"neotoma:occ:914259","record_type":"occurrence","dataset_no":"neotoma:dst:4582","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":12202,"min_age":7833,"age_unit":"ybp","collection_no":"neotoma:sit:3549","collection_name":"Jaguar Cave [Cave No. 2]","lng":-112.915277777778,"lat":44.2813888888889},
{"database":"Neotoma","occurrence_no":"neotoma:occ:914217","record_type":"occurrence","dataset_no":"neotoma:dst:4582","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":12202,"min_age":12202,"age_unit":"ybp","collection_no":"neotoma:sit:3549","collection_name":"Jaguar Cave [Cave No. 2]","lng":-112.915277777778,"lat":44.2813888888889},
{"database":"Neotoma","occurrence_no":"neotoma:occ:914238","record_type":"occurrence","dataset_no":"neotoma:dst:4582","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":12202,"min_age":7833,"age_unit":"ybp","collection_no":"neotoma:sit:3549","collection_name":"Jaguar Cave [Cave No. 2]","lng":-112.915277777778,"lat":44.2813888888889},
{"database":"Neotoma","occurrence_no":"neotoma:occ:914293","record_type":"occurrence","dataset_no":"neotoma:dst:4583","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":4698,"min_age":3526,"age_unit":"ybp","collection_no":"neotoma:sit:3550","collection_name":"Dry Creek Rockshelter [10-AA-68]","lng":-116.116666666667,"lat":43.6166666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:914331","record_type":"occurrence","dataset_no":"neotoma:dst:4583","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":1900,"min_age":1619,"age_unit":"ybp","collection_no":"neotoma:sit:3550","collection_name":"Dry Creek Rockshelter [10-AA-68]","lng":-116.116666666667,"lat":43.6166666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:914341","record_type":"occurrence","dataset_no":"neotoma:dst:4584","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":16048,"min_age":11417,"age_unit":"ybp","collection_no":"neotoma:sit:3551","collection_name":"Bell Cave [48AB304]","lng":-105.366666666667,"lat":41.75},
{"database":"Neotoma","occurrence_no":"neotoma:occ:914342","record_type":"occurrence","dataset_no":"neotoma:dst:4584","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":16048,"min_age":11417,"age_unit":"ybp","collection_no":"neotoma:sit:3551","collection_name":"Bell Cave [48AB304]","lng":-105.366666666667,"lat":41.75},
{"database":"Neotoma","occurrence_no":"neotoma:occ:914444","record_type":"occurrence","dataset_no":"neotoma:dst:4585","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":10421,"min_age":10421,"age_unit":"ybp","collection_no":"neotoma:sit:3552","collection_name":"Little Box Elder Cave [48CO287]","lng":-105.616666666667,"lat":42.6166666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:914387","record_type":"occurrence","dataset_no":"neotoma:dst:4585","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":28734,"min_age":11417,"age_unit":"ybp","collection_no":"neotoma:sit:3552","collection_name":"Little Box Elder Cave [48CO287]","lng":-105.616666666667,"lat":42.6166666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:914388","record_type":"occurrence","dataset_no":"neotoma:dst:4585","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":28734,"min_age":11417,"age_unit":"ybp","collection_no":"neotoma:sit:3552","collection_name":"Little Box Elder Cave [48CO287]","lng":-105.616666666667,"lat":42.6166666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:914445","record_type":"occurrence","dataset_no":"neotoma:dst:4585","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":10421,"min_age":10421,"age_unit":"ybp","collection_no":"neotoma:sit:3552","collection_name":"Little Box Elder Cave [48CO287]","lng":-105.616666666667,"lat":42.6166666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:914533","record_type":"occurrence","dataset_no":"neotoma:dst:4587","accepted_name":"Canis dirus","accepted_no":"neotoma:txn:5912","max_age":18811,"min_age":15078,"age_unit":"ybp","collection_no":"neotoma:sit:3554","collection_name":"Natural Trap Cave","lng":-108.116666666667,"lat":44.8666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:914555","record_type":"occurrence","dataset_no":"neotoma:dst:4587","accepted_name":"Canis dirus","accepted_no":"neotoma:txn:5912","max_age":24223,"min_age":18811,"age_unit":"ybp","collection_no":"neotoma:sit:3554","collection_name":"Natural Trap Cave","lng":-108.116666666667,"lat":44.8666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:914517","record_type":"occurrence","dataset_no":"neotoma:dst:4587","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":11417,"min_age":1,"age_unit":"ybp","collection_no":"neotoma:sit:3554","collection_name":"Natural Trap Cave","lng":-108.116666666667,"lat":44.8666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:914534","record_type":"occurrence","dataset_no":"neotoma:dst:4587","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":18811,"min_age":15078,"age_unit":"ybp","collection_no":"neotoma:sit:3554","collection_name":"Natural Trap Cave","lng":-108.116666666667,"lat":44.8666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:914556","record_type":"occurrence","dataset_no":"neotoma:dst:4587","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":24223,"min_age":18811,"age_unit":"ybp","collection_no":"neotoma:sit:3554","collection_name":"Natural Trap Cave","lng":-108.116666666667,"lat":44.8666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:914615","record_type":"occurrence","dataset_no":"neotoma:dst:4588","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":729,"min_age":454,"age_unit":"ybp","collection_no":"neotoma:sit:3555","collection_name":"Cahokia","lng":-90.0880555555556,"lat":38.6627777777778},
{"database":"Neotoma","occurrence_no":"neotoma:occ:914651","record_type":"occurrence","dataset_no":"neotoma:dst:4590","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":1058,"min_age":729,"age_unit":"ybp","collection_no":"neotoma:sit:3557","collection_name":"Phipps [13CK21]","lng":-95.5583333333333,"lat":42.8055555555555},
{"database":"Neotoma","occurrence_no":"neotoma:occ:914669","record_type":"occurrence","dataset_no":"neotoma:dst:4590","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":729,"min_age":594,"age_unit":"ybp","collection_no":"neotoma:sit:3557","collection_name":"Phipps [13CK21]","lng":-95.5583333333333,"lat":42.8055555555555},
{"database":"Neotoma","occurrence_no":"neotoma:occ:914670","record_type":"occurrence","dataset_no":"neotoma:dst:4590","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":729,"min_age":594,"age_unit":"ybp","collection_no":"neotoma:sit:3557","collection_name":"Phipps [13CK21]","lng":-95.5583333333333,"lat":42.8055555555555},
{"database":"Neotoma","occurrence_no":"neotoma:occ:914652","record_type":"occurrence","dataset_no":"neotoma:dst:4590","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":1058,"min_age":729,"age_unit":"ybp","collection_no":"neotoma:sit:3557","collection_name":"Phipps [13CK21]","lng":-95.5583333333333,"lat":42.8055555555555},
{"database":"Neotoma","occurrence_no":"neotoma:occ:914854","record_type":"occurrence","dataset_no":"neotoma:dst:4594","accepted_name":"Canis dirus","accepted_no":"neotoma:txn:5912","max_age":23956,"min_age":12939,"age_unit":"ybp","collection_no":"neotoma:sit:3561","collection_name":"Clark's Cave","lng":-79.6569444444444,"lat":38.0861111111111},
{"database":"Neotoma","occurrence_no":"neotoma:occ:915287","record_type":"occurrence","dataset_no":"neotoma:dst:4600","accepted_name":"Canis dirus","accepted_no":"neotoma:txn:5912","max_age":40350,"min_age":11417,"age_unit":"ybp","collection_no":"neotoma:sit:3565","collection_name":"Bat Cave (US:Missouri:Pulaski)","lng":-92.25,"lat":37.8666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:915288","record_type":"occurrence","dataset_no":"neotoma:dst:4600","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":40350,"min_age":11417,"age_unit":"ybp","collection_no":"neotoma:sit:3565","collection_name":"Bat Cave (US:Missouri:Pulaski)","lng":-92.25,"lat":37.8666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:915369","record_type":"occurrence","dataset_no":"neotoma:dst:4601","accepted_name":"Canis dirus","accepted_no":"neotoma:txn:5912","max_age":39966,"min_age":10670,"age_unit":"ybp","collection_no":"neotoma:sit:3566","collection_name":"Brynjulfson Cave #1","lng":-92.2805555555556,"lat":38.8519444444444},
{"database":"Neotoma","occurrence_no":"neotoma:occ:915370","record_type":"occurrence","dataset_no":"neotoma:dst:4601","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":39966,"min_age":10670,"age_unit":"ybp","collection_no":"neotoma:sit:3566","collection_name":"Brynjulfson Cave #1","lng":-92.2805555555556,"lat":38.8519444444444},
{"database":"Neotoma","occurrence_no":"neotoma:occ:915371","record_type":"occurrence","dataset_no":"neotoma:dst:4601","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":39966,"min_age":10670,"age_unit":"ybp","collection_no":"neotoma:sit:3566","collection_name":"Brynjulfson Cave #1","lng":-92.2805555555556,"lat":38.8519444444444},
{"database":"Neotoma","occurrence_no":"neotoma:occ:915595","record_type":"occurrence","dataset_no":"neotoma:dst:4603","accepted_name":"Canis dirus","accepted_no":"neotoma:txn:5912","max_age":110000,"min_age":11500,"age_unit":"ybp","collection_no":"neotoma:sit:3568","collection_name":"Potter Creek Cave [5357,1055]","lng":-122.280833333333,"lat":40.7838888888889},
{"database":"Neotoma","occurrence_no":"neotoma:occ:915596","record_type":"occurrence","dataset_no":"neotoma:dst:4603","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":110000,"min_age":11500,"age_unit":"ybp","collection_no":"neotoma:sit:3568","collection_name":"Potter Creek Cave [5357,1055]","lng":-122.280833333333,"lat":40.7838888888889},
{"database":"Neotoma","occurrence_no":"neotoma:occ:915597","record_type":"occurrence","dataset_no":"neotoma:dst:4603","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":110000,"min_age":11500,"age_unit":"ybp","collection_no":"neotoma:sit:3568","collection_name":"Potter Creek Cave [5357,1055]","lng":-122.280833333333,"lat":40.7838888888889},
{"database":"Neotoma","occurrence_no":"neotoma:occ:915666","record_type":"occurrence","dataset_no":"neotoma:dst:4606","accepted_name":"Canis dirus","accepted_no":"neotoma:txn:5912","max_age":110000,"min_age":11500,"age_unit":"ybp","collection_no":"neotoma:sit:3569","collection_name":"Samwell Cave","lng":-122.23787,"lat":40.916911},
{"database":"Neotoma","occurrence_no":"neotoma:occ:915667","record_type":"occurrence","dataset_no":"neotoma:dst:4606","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":110000,"min_age":11500,"age_unit":"ybp","collection_no":"neotoma:sit:3569","collection_name":"Samwell Cave","lng":-122.23787,"lat":40.916911},
{"database":"Neotoma","occurrence_no":"neotoma:occ:915668","record_type":"occurrence","dataset_no":"neotoma:dst:4606","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":110000,"min_age":11500,"age_unit":"ybp","collection_no":"neotoma:sit:3569","collection_name":"Samwell Cave","lng":-122.23787,"lat":40.916911},
{"database":"Neotoma","occurrence_no":"neotoma:occ:915695","record_type":"occurrence","dataset_no":"neotoma:dst:4607","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":393,"min_age":279,"age_unit":"ybp","collection_no":"neotoma:sit:3570","collection_name":"Bell [Wn9]","lng":-88.5,"lat":44},
{"database":"Neotoma","occurrence_no":"neotoma:occ:915694","record_type":"occurrence","dataset_no":"neotoma:dst:4607","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":393,"min_age":279,"age_unit":"ybp","collection_no":"neotoma:sit:3570","collection_name":"Bell [Wn9]","lng":-88.5,"lat":44},
{"database":"Neotoma","occurrence_no":"neotoma:occ:915757","record_type":"occurrence","dataset_no":"neotoma:dst:4608","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":2597,"min_age":962,"age_unit":"ybp","collection_no":"neotoma:sit:3571","collection_name":"Schultz","lng":-83.9833333333333,"lat":43.3833333333333},
{"database":"Neotoma","occurrence_no":"neotoma:occ:915718","record_type":"occurrence","dataset_no":"neotoma:dst:4608","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":2597,"min_age":2570,"age_unit":"ybp","collection_no":"neotoma:sit:3571","collection_name":"Schultz","lng":-83.9833333333333,"lat":43.3833333333333},
{"database":"Neotoma","occurrence_no":"neotoma:occ:915728","record_type":"occurrence","dataset_no":"neotoma:dst:4608","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":2140,"min_age":1438,"age_unit":"ybp","collection_no":"neotoma:sit:3571","collection_name":"Schultz","lng":-83.9833333333333,"lat":43.3833333333333},
{"database":"Neotoma","occurrence_no":"neotoma:occ:915737","record_type":"occurrence","dataset_no":"neotoma:dst:4608","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":2140,"min_age":1438,"age_unit":"ybp","collection_no":"neotoma:sit:3571","collection_name":"Schultz","lng":-83.9833333333333,"lat":43.3833333333333},
{"database":"Neotoma","occurrence_no":"neotoma:occ:915778","record_type":"occurrence","dataset_no":"neotoma:dst:4610","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":3712,"min_age":313,"age_unit":"ybp","collection_no":"neotoma:sit:3572","collection_name":"Etowah","lng":-84.8333333333333,"lat":34.0833333333333},
{"database":"Neotoma","occurrence_no":"neotoma:occ:915800","record_type":"occurrence","dataset_no":"neotoma:dst:4612","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":3203,"min_age":1069,"age_unit":"ybp","collection_no":"neotoma:sit:3574","collection_name":"Aztalan","lng":-88.9166666666667,"lat":43},
{"database":"Neotoma","occurrence_no":"neotoma:occ:915819","record_type":"occurrence","dataset_no":"neotoma:dst:4613","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":632,"min_age":632,"age_unit":"ybp","collection_no":"neotoma:sit:3575","collection_name":"Bornick [47MQ65]","lng":-89.25,"lat":43.8},
{"database":"Neotoma","occurrence_no":"neotoma:occ:915820","record_type":"occurrence","dataset_no":"neotoma:dst:4613","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":632,"min_age":632,"age_unit":"ybp","collection_no":"neotoma:sit:3575","collection_name":"Bornick [47MQ65]","lng":-89.25,"lat":43.8},
{"database":"Neotoma","occurrence_no":"neotoma:occ:915845","record_type":"occurrence","dataset_no":"neotoma:dst:4614","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":1545,"min_age":1069,"age_unit":"ybp","collection_no":"neotoma:sit:3576","collection_name":"Durst [SK2]","lng":-89.8666666666667,"lat":43.3666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:915859","record_type":"occurrence","dataset_no":"neotoma:dst:4614","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":3203,"min_age":1069,"age_unit":"ybp","collection_no":"neotoma:sit:3576","collection_name":"Durst [SK2]","lng":-89.8666666666667,"lat":43.3666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:915892","record_type":"occurrence","dataset_no":"neotoma:dst:4614","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":5736,"min_age":3203,"age_unit":"ybp","collection_no":"neotoma:sit:3576","collection_name":"Durst [SK2]","lng":-89.8666666666667,"lat":43.3666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:915883","record_type":"occurrence","dataset_no":"neotoma:dst:4614","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":3203,"min_age":1069,"age_unit":"ybp","collection_no":"neotoma:sit:3576","collection_name":"Durst [SK2]","lng":-89.8666666666667,"lat":43.3666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:915891","record_type":"occurrence","dataset_no":"neotoma:dst:4614","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":5736,"min_age":3203,"age_unit":"ybp","collection_no":"neotoma:sit:3576","collection_name":"Durst [SK2]","lng":-89.8666666666667,"lat":43.3666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:915858","record_type":"occurrence","dataset_no":"neotoma:dst:4614","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":3203,"min_age":1069,"age_unit":"ybp","collection_no":"neotoma:sit:3576","collection_name":"Durst [SK2]","lng":-89.8666666666667,"lat":43.3666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:915874","record_type":"occurrence","dataset_no":"neotoma:dst:4614","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":3203,"min_age":1069,"age_unit":"ybp","collection_no":"neotoma:sit:3576","collection_name":"Durst [SK2]","lng":-89.8666666666667,"lat":43.3666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:915908","record_type":"occurrence","dataset_no":"neotoma:dst:4615","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":912,"min_age":1,"age_unit":"ybp","collection_no":"neotoma:sit:3577","collection_name":"Graham Cave","lng":-91.5666666666667,"lat":38.9},
{"database":"Neotoma","occurrence_no":"neotoma:occ:915920","record_type":"occurrence","dataset_no":"neotoma:dst:4615","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":8431,"min_age":912,"age_unit":"ybp","collection_no":"neotoma:sit:3577","collection_name":"Graham Cave","lng":-91.5666666666667,"lat":38.9},
{"database":"Neotoma","occurrence_no":"neotoma:occ:915932","record_type":"occurrence","dataset_no":"neotoma:dst:4615","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":9872,"min_age":8178,"age_unit":"ybp","collection_no":"neotoma:sit:3577","collection_name":"Graham Cave","lng":-91.5666666666667,"lat":38.9},
{"database":"Neotoma","occurrence_no":"neotoma:occ:915946","record_type":"occurrence","dataset_no":"neotoma:dst:4615","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":11152,"min_age":8689,"age_unit":"ybp","collection_no":"neotoma:sit:3577","collection_name":"Graham Cave","lng":-91.5666666666667,"lat":38.9},
{"database":"Neotoma","occurrence_no":"neotoma:occ:915973","record_type":"occurrence","dataset_no":"neotoma:dst:4616","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":12939,"min_age":912,"age_unit":"ybp","collection_no":"neotoma:sit:3578","collection_name":"Arnold Research Cave [23CY64]","lng":-91.75,"lat":38.7333333333333},
{"database":"Neotoma","occurrence_no":"neotoma:occ:916004","record_type":"occurrence","dataset_no":"neotoma:dst:4617","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":11417,"min_age":1298,"age_unit":"ybp","collection_no":"neotoma:sit:3579","collection_name":"Raddatz Rockshelter [SK5]","lng":-89.9333333333333,"lat":43.35},
{"database":"Neotoma","occurrence_no":"neotoma:occ:916114","record_type":"occurrence","dataset_no":"neotoma:dst:4617","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":1953,"min_age":1,"age_unit":"ybp","collection_no":"neotoma:sit:3579","collection_name":"Raddatz Rockshelter [SK5]","lng":-89.9333333333333,"lat":43.35},
{"database":"Neotoma","occurrence_no":"neotoma:occ:916144","record_type":"occurrence","dataset_no":"neotoma:dst:4617","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":4829,"min_age":3123,"age_unit":"ybp","collection_no":"neotoma:sit:3579","collection_name":"Raddatz Rockshelter [SK5]","lng":-89.9333333333333,"lat":43.35},
{"database":"Neotoma","occurrence_no":"neotoma:occ:916003","record_type":"occurrence","dataset_no":"neotoma:dst:4617","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":11417,"min_age":1298,"age_unit":"ybp","collection_no":"neotoma:sit:3579","collection_name":"Raddatz Rockshelter [SK5]","lng":-89.9333333333333,"lat":43.35},
{"database":"Neotoma","occurrence_no":"neotoma:occ:916145","record_type":"occurrence","dataset_no":"neotoma:dst:4617","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":4829,"min_age":3123,"age_unit":"ybp","collection_no":"neotoma:sit:3579","collection_name":"Raddatz Rockshelter [SK5]","lng":-89.9333333333333,"lat":43.35},
{"database":"Neotoma","occurrence_no":"neotoma:occ:916152","record_type":"occurrence","dataset_no":"neotoma:dst:4617","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":4829,"min_age":3123,"age_unit":"ybp","collection_no":"neotoma:sit:3579","collection_name":"Raddatz Rockshelter [SK5]","lng":-89.9333333333333,"lat":43.35},
{"database":"Neotoma","occurrence_no":"neotoma:occ:916161","record_type":"occurrence","dataset_no":"neotoma:dst:4617","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":5038,"min_age":4829,"age_unit":"ybp","collection_no":"neotoma:sit:3579","collection_name":"Raddatz Rockshelter [SK5]","lng":-89.9333333333333,"lat":43.35},
{"database":"Neotoma","occurrence_no":"neotoma:occ:916172","record_type":"occurrence","dataset_no":"neotoma:dst:4617","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":5948,"min_age":5038,"age_unit":"ybp","collection_no":"neotoma:sit:3579","collection_name":"Raddatz Rockshelter [SK5]","lng":-89.9333333333333,"lat":43.35},
{"database":"Neotoma","occurrence_no":"neotoma:occ:916115","record_type":"occurrence","dataset_no":"neotoma:dst:4617","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":1953,"min_age":1,"age_unit":"ybp","collection_no":"neotoma:sit:3579","collection_name":"Raddatz Rockshelter [SK5]","lng":-89.9333333333333,"lat":43.35},
{"database":"Neotoma","occurrence_no":"neotoma:occ:916120","record_type":"occurrence","dataset_no":"neotoma:dst:4617","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":3123,"min_age":1953,"age_unit":"ybp","collection_no":"neotoma:sit:3579","collection_name":"Raddatz Rockshelter [SK5]","lng":-89.9333333333333,"lat":43.35},
{"database":"Neotoma","occurrence_no":"neotoma:occ:916128","record_type":"occurrence","dataset_no":"neotoma:dst:4617","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":3712,"min_age":3123,"age_unit":"ybp","collection_no":"neotoma:sit:3579","collection_name":"Raddatz Rockshelter [SK5]","lng":-89.9333333333333,"lat":43.35},
{"database":"Neotoma","occurrence_no":"neotoma:occ:916135","record_type":"occurrence","dataset_no":"neotoma:dst:4617","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":3712,"min_age":3123,"age_unit":"ybp","collection_no":"neotoma:sit:3579","collection_name":"Raddatz Rockshelter [SK5]","lng":-89.9333333333333,"lat":43.35},
{"database":"Neotoma","occurrence_no":"neotoma:occ:916190","record_type":"occurrence","dataset_no":"neotoma:dst:4618","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":529,"min_age":1,"age_unit":"ybp","collection_no":"neotoma:sit:3580","collection_name":"Zimmerman","lng":-88.8666666666667,"lat":41.25},
{"database":"Neotoma","occurrence_no":"neotoma:occ:916191","record_type":"occurrence","dataset_no":"neotoma:dst:4618","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":529,"min_age":1,"age_unit":"ybp","collection_no":"neotoma:sit:3580","collection_name":"Zimmerman","lng":-88.8666666666667,"lat":41.25},
{"database":"Neotoma","occurrence_no":"neotoma:occ:916189","record_type":"occurrence","dataset_no":"neotoma:dst:4618","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":529,"min_age":1,"age_unit":"ybp","collection_no":"neotoma:sit:3580","collection_name":"Zimmerman","lng":-88.8666666666667,"lat":41.25},
{"database":"Neotoma","occurrence_no":"neotoma:occ:916192","record_type":"occurrence","dataset_no":"neotoma:dst:4618","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":529,"min_age":1,"age_unit":"ybp","collection_no":"neotoma:sit:3580","collection_name":"Zimmerman","lng":-88.8666666666667,"lat":41.25},
{"database":"Neotoma","occurrence_no":"neotoma:occ:916207","record_type":"occurrence","dataset_no":"neotoma:dst:4619","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":529,"min_age":1,"age_unit":"ybp","collection_no":"neotoma:sit:3580","collection_name":"Zimmerman","lng":-88.8666666666667,"lat":41.25},
{"database":"Neotoma","occurrence_no":"neotoma:occ:916208","record_type":"occurrence","dataset_no":"neotoma:dst:4619","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":529,"min_age":1,"age_unit":"ybp","collection_no":"neotoma:sit:3580","collection_name":"Zimmerman","lng":-88.8666666666667,"lat":41.25},
{"database":"Neotoma","occurrence_no":"neotoma:occ:916206","record_type":"occurrence","dataset_no":"neotoma:dst:4619","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":529,"min_age":1,"age_unit":"ybp","collection_no":"neotoma:sit:3580","collection_name":"Zimmerman","lng":-88.8666666666667,"lat":41.25},
{"database":"Neotoma","occurrence_no":"neotoma:occ:916221","record_type":"occurrence","dataset_no":"neotoma:dst:4620","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":529,"min_age":1,"age_unit":"ybp","collection_no":"neotoma:sit:3580","collection_name":"Zimmerman","lng":-88.8666666666667,"lat":41.25},
{"database":"Neotoma","occurrence_no":"neotoma:occ:916253","record_type":"occurrence","dataset_no":"neotoma:dst:4624","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":1545,"min_age":1069,"age_unit":"ybp","collection_no":"neotoma:sit:3582","collection_name":"Mero","lng":-87.3666666666667,"lat":44.75},
{"database":"Neotoma","occurrence_no":"neotoma:occ:916265","record_type":"occurrence","dataset_no":"neotoma:dst:4625","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":4409,"min_age":3123,"age_unit":"ybp","collection_no":"neotoma:sit:3583","collection_name":"Globe Hill","lng":-80.5666666666667,"lat":40.5},
{"database":"Neotoma","occurrence_no":"neotoma:occ:916311","record_type":"occurrence","dataset_no":"neotoma:dst:4627","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":5931,"min_age":1,"age_unit":"ybp","collection_no":"neotoma:sit:3585","collection_name":"Middle Butte Cave","lng":-112.616666666667,"lat":43.3666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:916312","record_type":"occurrence","dataset_no":"neotoma:dst:4627","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":5931,"min_age":1,"age_unit":"ybp","collection_no":"neotoma:sit:3585","collection_name":"Middle Butte Cave","lng":-112.616666666667,"lat":43.3666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:916396","record_type":"occurrence","dataset_no":"neotoma:dst:4629","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":130,"min_age":1,"age_unit":"ybp","collection_no":"neotoma:sit:3587","collection_name":"Eagle Cave [DjPp-100]","lng":-114.64,"lat":49.6361111111111},
{"database":"Neotoma","occurrence_no":"neotoma:occ:916397","record_type":"occurrence","dataset_no":"neotoma:dst:4629","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":130,"min_age":1,"age_unit":"ybp","collection_no":"neotoma:sit:3587","collection_name":"Eagle Cave [DjPp-100]","lng":-114.64,"lat":49.6361111111111},
{"database":"Neotoma","occurrence_no":"neotoma:occ:916503","record_type":"occurrence","dataset_no":"neotoma:dst:4631","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":294,"min_age":197,"age_unit":"ybp","collection_no":"neotoma:sit:3589","collection_name":"Fort Ouiatenon","lng":-86.8666666666667,"lat":40.3666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:916574","record_type":"occurrence","dataset_no":"neotoma:dst:4633","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":40350,"min_age":8578,"age_unit":"ybp","collection_no":"neotoma:sit:3591","collection_name":"Back Creek Cave 1","lng":-79.8916666666667,"lat":38.0666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:916610","record_type":"occurrence","dataset_no":"neotoma:dst:4634","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":11417,"min_age":7833,"age_unit":"ybp","collection_no":"neotoma:sit:3592","collection_name":"Ripplemead Quarry","lng":-80.8666666666667,"lat":37.25},
{"database":"Neotoma","occurrence_no":"neotoma:occ:916992","record_type":"occurrence","dataset_no":"neotoma:dst:4635","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":14680,"min_age":5736,"age_unit":"ybp","collection_no":"neotoma:sit:3593","collection_name":"Cheek Bend Cave [40MU261]","lng":-86.8666666666667,"lat":35.5},
{"database":"Neotoma","occurrence_no":"neotoma:occ:917587","record_type":"occurrence","dataset_no":"neotoma:dst:4636","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":27721,"min_age":11417,"age_unit":"ybp","collection_no":"neotoma:sit:1135","collection_name":"January Cave [EbPp-Vp]","lng":-114.518333333333,"lat":50.1883333333333},
{"database":"Neotoma","occurrence_no":"neotoma:occ:917503","record_type":"occurrence","dataset_no":"neotoma:dst:4636","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":27721,"min_age":11417,"age_unit":"ybp","collection_no":"neotoma:sit:1135","collection_name":"January Cave [EbPp-Vp]","lng":-114.518333333333,"lat":50.1883333333333},
{"database":"Neotoma","occurrence_no":"neotoma:occ:917533","record_type":"occurrence","dataset_no":"neotoma:dst:4636","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":27721,"min_age":11417,"age_unit":"ybp","collection_no":"neotoma:sit:1135","collection_name":"January Cave [EbPp-Vp]","lng":-114.518333333333,"lat":50.1883333333333},
{"database":"Neotoma","occurrence_no":"neotoma:occ:917774","record_type":"occurrence","dataset_no":"neotoma:dst:4639","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":4875,"min_age":3230,"age_unit":"ybp","collection_no":"neotoma:sit:3597","collection_name":"Pabst","lng":-88.8352777777778,"lat":40.1711111111111},
{"database":"Neotoma","occurrence_no":"neotoma:occ:917835","record_type":"occurrence","dataset_no":"neotoma:dst:4640","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":189,"min_age":140,"age_unit":"ybp","collection_no":"neotoma:sit:3598","collection_name":"Crawford Farm [Ri-81]","lng":-90.5,"lat":41.3666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:917884","record_type":"occurrence","dataset_no":"neotoma:dst:4644","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":607,"min_age":454,"age_unit":"ybp","collection_no":"neotoma:sit:3602","collection_name":"McKees Rocks Village [36AL16]","lng":-80.0497222222222,"lat":40.4722222222222},
{"database":"Neotoma","occurrence_no":"neotoma:occ:917883","record_type":"occurrence","dataset_no":"neotoma:dst:4644","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":607,"min_age":454,"age_unit":"ybp","collection_no":"neotoma:sit:3602","collection_name":"McKees Rocks Village [36AL16]","lng":-80.0497222222222,"lat":40.4722222222222},
{"database":"Neotoma","occurrence_no":"neotoma:occ:917954","record_type":"occurrence","dataset_no":"neotoma:dst:4646","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":770,"min_age":692,"age_unit":"ybp","collection_no":"neotoma:sit:3604","collection_name":"Oakfield [MDa1-4]","lng":-78.25,"lat":43},
{"database":"Neotoma","occurrence_no":"neotoma:occ:917995","record_type":"occurrence","dataset_no":"neotoma:dst:4647","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":411,"min_age":388,"age_unit":"ybp","collection_no":"neotoma:sit:3605","collection_name":"Eschelman [36LA12]","lng":-76.25,"lat":40},
{"database":"Neotoma","occurrence_no":"neotoma:occ:917994","record_type":"occurrence","dataset_no":"neotoma:dst:4647","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":411,"min_age":388,"age_unit":"ybp","collection_no":"neotoma:sit:3605","collection_name":"Eschelman [36LA12]","lng":-76.25,"lat":40},
{"database":"Neotoma","occurrence_no":"neotoma:occ:918046","record_type":"occurrence","dataset_no":"neotoma:dst:4648","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":6967,"min_age":5187,"age_unit":"ybp","collection_no":"neotoma:sit:3606","collection_name":"Indian Knoll [15OH-2]","lng":-86.8666666666667,"lat":37.25},
{"database":"Neotoma","occurrence_no":"neotoma:occ:918157","record_type":"occurrence","dataset_no":"neotoma:dst:4649","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":1403,"min_age":1403,"age_unit":"ybp","collection_no":"neotoma:sit:3607","collection_name":"Deer Creek Cave [EL-25]","lng":-115.366666666667,"lat":41.75},
{"database":"Neotoma","occurrence_no":"neotoma:occ:918173","record_type":"occurrence","dataset_no":"neotoma:dst:4649","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":2724,"min_age":1403,"age_unit":"ybp","collection_no":"neotoma:sit:3607","collection_name":"Deer Creek Cave [EL-25]","lng":-115.366666666667,"lat":41.75},
{"database":"Neotoma","occurrence_no":"neotoma:occ:918559","record_type":"occurrence","dataset_no":"neotoma:dst:4650","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":1563,"min_age":1221,"age_unit":"ybp","collection_no":"neotoma:sit:3608","collection_name":"Meadowcroft Rockshelter [36WH297]","lng":-80.4833333333333,"lat":40.2866666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:918249","record_type":"occurrence","dataset_no":"neotoma:dst:4650","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":7547,"min_age":3346,"age_unit":"ybp","collection_no":"neotoma:sit:3608","collection_name":"Meadowcroft Rockshelter [36WH297]","lng":-80.4833333333333,"lat":40.2866666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:918380","record_type":"occurrence","dataset_no":"neotoma:dst:4650","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":3268,"min_age":2310,"age_unit":"ybp","collection_no":"neotoma:sit:3608","collection_name":"Meadowcroft Rockshelter [36WH297]","lng":-80.4833333333333,"lat":40.2866666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:918451","record_type":"occurrence","dataset_no":"neotoma:dst:4650","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":648,"min_age":648,"age_unit":"ybp","collection_no":"neotoma:sit:3608","collection_name":"Meadowcroft Rockshelter [36WH297]","lng":-80.4833333333333,"lat":40.2866666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:918490","record_type":"occurrence","dataset_no":"neotoma:dst:4650","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":2147,"min_age":1563,"age_unit":"ybp","collection_no":"neotoma:sit:3608","collection_name":"Meadowcroft Rockshelter [36WH297]","lng":-80.4833333333333,"lat":40.2866666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:918558","record_type":"occurrence","dataset_no":"neotoma:dst:4650","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":1563,"min_age":1221,"age_unit":"ybp","collection_no":"neotoma:sit:3608","collection_name":"Meadowcroft Rockshelter [36WH297]","lng":-80.4833333333333,"lat":40.2866666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:918732","record_type":"occurrence","dataset_no":"neotoma:dst:4650","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":217,"min_age":1,"age_unit":"ybp","collection_no":"neotoma:sit:3608","collection_name":"Meadowcroft Rockshelter [36WH297]","lng":-80.4833333333333,"lat":40.2866666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:918595","record_type":"occurrence","dataset_no":"neotoma:dst:4650","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":1221,"min_age":838,"age_unit":"ybp","collection_no":"neotoma:sit:3608","collection_name":"Meadowcroft Rockshelter [36WH297]","lng":-80.4833333333333,"lat":40.2866666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:918733","record_type":"occurrence","dataset_no":"neotoma:dst:4650","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":217,"min_age":1,"age_unit":"ybp","collection_no":"neotoma:sit:3608","collection_name":"Meadowcroft Rockshelter [36WH297]","lng":-80.4833333333333,"lat":40.2866666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:918227","record_type":"occurrence","dataset_no":"neotoma:dst:4650","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":13186,"min_age":13186,"age_unit":"ybp","collection_no":"neotoma:sit:3608","collection_name":"Meadowcroft Rockshelter [36WH297]","lng":-80.4833333333333,"lat":40.2866666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:918316","record_type":"occurrence","dataset_no":"neotoma:dst:4650","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":3479,"min_age":3087,"age_unit":"ybp","collection_no":"neotoma:sit:3608","collection_name":"Meadowcroft Rockshelter [36WH297]","lng":-80.4833333333333,"lat":40.2866666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:918381","record_type":"occurrence","dataset_no":"neotoma:dst:4650","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":3268,"min_age":2310,"age_unit":"ybp","collection_no":"neotoma:sit:3608","collection_name":"Meadowcroft Rockshelter [36WH297]","lng":-80.4833333333333,"lat":40.2866666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:918491","record_type":"occurrence","dataset_no":"neotoma:dst:4650","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":2147,"min_age":1563,"age_unit":"ybp","collection_no":"neotoma:sit:3608","collection_name":"Meadowcroft Rockshelter [36WH297]","lng":-80.4833333333333,"lat":40.2866666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:918795","record_type":"occurrence","dataset_no":"neotoma:dst:4659","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":562,"min_age":493,"age_unit":"ybp","collection_no":"neotoma:sit:3617","collection_name":"Mount Carbon [46FA7]","lng":-81.2833333333333,"lat":38.1333333333333},
{"database":"Neotoma","occurrence_no":"neotoma:occ:918794","record_type":"occurrence","dataset_no":"neotoma:dst:4659","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":562,"min_age":493,"age_unit":"ybp","collection_no":"neotoma:sit:3617","collection_name":"Mount Carbon [46FA7]","lng":-81.2833333333333,"lat":38.1333333333333},
{"database":"Neotoma","occurrence_no":"neotoma:occ:918817","record_type":"occurrence","dataset_no":"neotoma:dst:4659","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":562,"min_age":493,"age_unit":"ybp","collection_no":"neotoma:sit:3617","collection_name":"Mount Carbon [46FA7]","lng":-81.2833333333333,"lat":38.1333333333333},
{"database":"Neotoma","occurrence_no":"neotoma:occ:918848","record_type":"occurrence","dataset_no":"neotoma:dst:4665","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":692,"min_age":411,"age_unit":"ybp","collection_no":"neotoma:sit:3624","collection_name":"Bryan [21GD4]","lng":-92.6166666666667,"lat":44.6166666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:918849","record_type":"occurrence","dataset_no":"neotoma:dst:4665","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":692,"min_age":411,"age_unit":"ybp","collection_no":"neotoma:sit:3624","collection_name":"Bryan [21GD4]","lng":-92.6166666666667,"lat":44.6166666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:918878","record_type":"occurrence","dataset_no":"neotoma:dst:4674","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":5038,"min_age":4409,"age_unit":"ybp","collection_no":"neotoma:sit:3634","collection_name":"Frontenac Island","lng":-76.7,"lat":42.85},
{"database":"Neotoma","occurrence_no":"neotoma:occ:918877","record_type":"occurrence","dataset_no":"neotoma:dst:4674","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":5038,"min_age":4409,"age_unit":"ybp","collection_no":"neotoma:sit:3634","collection_name":"Frontenac Island","lng":-76.7,"lat":42.85},
{"database":"Neotoma","occurrence_no":"neotoma:occ:918892","record_type":"occurrence","dataset_no":"neotoma:dst:4676","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":5685,"min_age":4409,"age_unit":"ybp","collection_no":"neotoma:sit:3636","collection_name":"Lawson [AgHh-1]","lng":-81.3,"lat":43.0125},
{"database":"Neotoma","occurrence_no":"neotoma:occ:918907","record_type":"occurrence","dataset_no":"neotoma:dst:4680","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":872,"min_age":645,"age_unit":"ybp","collection_no":"neotoma:sit:3640","collection_name":"Lasley's Point","lng":-88.6833333333333,"lat":44.1333333333333},
{"database":"Neotoma","occurrence_no":"neotoma:occ:918908","record_type":"occurrence","dataset_no":"neotoma:dst:4680","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":872,"min_age":645,"age_unit":"ybp","collection_no":"neotoma:sit:3640","collection_name":"Lasley's Point","lng":-88.6833333333333,"lat":44.1333333333333},
{"database":"Neotoma","occurrence_no":"neotoma:occ:918939","record_type":"occurrence","dataset_no":"neotoma:dst:4681","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":962,"min_age":962,"age_unit":"ybp","collection_no":"neotoma:sit:3641","collection_name":"Juntunen [20MK1]","lng":-84.5833333333333,"lat":45.8166666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:918945","record_type":"occurrence","dataset_no":"neotoma:dst:4681","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":805,"min_age":805,"age_unit":"ybp","collection_no":"neotoma:sit:3641","collection_name":"Juntunen [20MK1]","lng":-84.5833333333333,"lat":45.8166666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:918953","record_type":"occurrence","dataset_no":"neotoma:dst:4681","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":805,"min_age":613,"age_unit":"ybp","collection_no":"neotoma:sit:3641","collection_name":"Juntunen [20MK1]","lng":-84.5833333333333,"lat":45.8166666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:918959","record_type":"occurrence","dataset_no":"neotoma:dst:4681","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":613,"min_age":613,"age_unit":"ybp","collection_no":"neotoma:sit:3641","collection_name":"Juntunen [20MK1]","lng":-84.5833333333333,"lat":45.8166666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:918927","record_type":"occurrence","dataset_no":"neotoma:dst:4681","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":1041,"min_age":1041,"age_unit":"ybp","collection_no":"neotoma:sit:3641","collection_name":"Juntunen [20MK1]","lng":-84.5833333333333,"lat":45.8166666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:918935","record_type":"occurrence","dataset_no":"neotoma:dst:4681","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":1041,"min_age":1041,"age_unit":"ybp","collection_no":"neotoma:sit:3641","collection_name":"Juntunen [20MK1]","lng":-84.5833333333333,"lat":45.8166666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:918967","record_type":"occurrence","dataset_no":"neotoma:dst:4682","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":296,"min_age":207,"age_unit":"ybp","collection_no":"neotoma:sit:3642","collection_name":"Ft. Michilimackinac","lng":-84.75,"lat":45.8},
{"database":"Neotoma","occurrence_no":"neotoma:occ:918968","record_type":"occurrence","dataset_no":"neotoma:dst:4682","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":296,"min_age":207,"age_unit":"ybp","collection_no":"neotoma:sit:3642","collection_name":"Ft. Michilimackinac","lng":-84.75,"lat":45.8},
{"database":"Neotoma","occurrence_no":"neotoma:occ:919105","record_type":"occurrence","dataset_no":"neotoma:dst:4685","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":40350,"min_age":11417,"age_unit":"ybp","collection_no":"neotoma:sit:3645","collection_name":"Snake Creek Burial Cave","lng":-114.116666666667,"lat":38.8666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:919106","record_type":"occurrence","dataset_no":"neotoma:dst:4685","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":40350,"min_age":11417,"age_unit":"ybp","collection_no":"neotoma:sit:3645","collection_name":"Snake Creek Burial Cave","lng":-114.116666666667,"lat":38.8666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:919255","record_type":"occurrence","dataset_no":"neotoma:dst:4687","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":1394,"min_age":1,"age_unit":"ybp","collection_no":"neotoma:sit:3647","collection_name":"Hidden Cave [NV-Ch-16 (Berkeley)] [26CH16]","lng":-118.616666666667,"lat":39.3666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:919321","record_type":"occurrence","dataset_no":"neotoma:dst:4687","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":3268,"min_age":1394,"age_unit":"ybp","collection_no":"neotoma:sit:3647","collection_name":"Hidden Cave [NV-Ch-16 (Berkeley)] [26CH16]","lng":-118.616666666667,"lat":39.3666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:919351","record_type":"occurrence","dataset_no":"neotoma:dst:4687","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":3268,"min_age":1394,"age_unit":"ybp","collection_no":"neotoma:sit:3647","collection_name":"Hidden Cave [NV-Ch-16 (Berkeley)] [26CH16]","lng":-118.616666666667,"lat":39.3666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:919379","record_type":"occurrence","dataset_no":"neotoma:dst:4687","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":7731,"min_age":1394,"age_unit":"ybp","collection_no":"neotoma:sit:3647","collection_name":"Hidden Cave [NV-Ch-16 (Berkeley)] [26CH16]","lng":-118.616666666667,"lat":39.3666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:919419","record_type":"occurrence","dataset_no":"neotoma:dst:4687","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":7731,"min_age":4184,"age_unit":"ybp","collection_no":"neotoma:sit:3647","collection_name":"Hidden Cave [NV-Ch-16 (Berkeley)] [26CH16]","lng":-118.616666666667,"lat":39.3666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:919457","record_type":"occurrence","dataset_no":"neotoma:dst:4687","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":13922,"min_age":7731,"age_unit":"ybp","collection_no":"neotoma:sit:3647","collection_name":"Hidden Cave [NV-Ch-16 (Berkeley)] [26CH16]","lng":-118.616666666667,"lat":39.3666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:919322","record_type":"occurrence","dataset_no":"neotoma:dst:4687","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":3268,"min_age":1394,"age_unit":"ybp","collection_no":"neotoma:sit:3647","collection_name":"Hidden Cave [NV-Ch-16 (Berkeley)] [26CH16]","lng":-118.616666666667,"lat":39.3666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:919380","record_type":"occurrence","dataset_no":"neotoma:dst:4687","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":7731,"min_age":1394,"age_unit":"ybp","collection_no":"neotoma:sit:3647","collection_name":"Hidden Cave [NV-Ch-16 (Berkeley)] [26CH16]","lng":-118.616666666667,"lat":39.3666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:919513","record_type":"occurrence","dataset_no":"neotoma:dst:4688","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":254,"min_age":164,"age_unit":"ybp","collection_no":"neotoma:sit:3648","collection_name":"Fort De Chartres","lng":-90,"lat":38},
{"database":"Neotoma","occurrence_no":"neotoma:occ:919514","record_type":"occurrence","dataset_no":"neotoma:dst:4688","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":254,"min_age":164,"age_unit":"ybp","collection_no":"neotoma:sit:3648","collection_name":"Fort De Chartres","lng":-90,"lat":38},
{"database":"Neotoma","occurrence_no":"neotoma:occ:919538","record_type":"occurrence","dataset_no":"neotoma:dst:4689","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":3679,"min_age":3596,"age_unit":"ybp","collection_no":"neotoma:sit:3649","collection_name":"Harder [FbNs-1]","lng":-107.050277777778,"lat":52.2102777777778},
{"database":"Neotoma","occurrence_no":"neotoma:occ:919539","record_type":"occurrence","dataset_no":"neotoma:dst:4689","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":3679,"min_age":3596,"age_unit":"ybp","collection_no":"neotoma:sit:3649","collection_name":"Harder [FbNs-1]","lng":-107.050277777778,"lat":52.2102777777778},
{"database":"Neotoma","occurrence_no":"neotoma:occ:919537","record_type":"occurrence","dataset_no":"neotoma:dst:4689","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":3679,"min_age":3596,"age_unit":"ybp","collection_no":"neotoma:sit:3649","collection_name":"Harder [FbNs-1]","lng":-107.050277777778,"lat":52.2102777777778},
{"database":"Neotoma","occurrence_no":"neotoma:occ:919540","record_type":"occurrence","dataset_no":"neotoma:dst:4689","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":3679,"min_age":3596,"age_unit":"ybp","collection_no":"neotoma:sit:3649","collection_name":"Harder [FbNs-1]","lng":-107.050277777778,"lat":52.2102777777778},
{"database":"Neotoma","occurrence_no":"neotoma:occ:919556","record_type":"occurrence","dataset_no":"neotoma:dst:4691","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":5736,"min_age":1069,"age_unit":"ybp","collection_no":"neotoma:sit:3651","collection_name":"Westmoreland - Barber [40Mi11]","lng":-85.5458333333333,"lat":35.0208333333333},
{"database":"Neotoma","occurrence_no":"neotoma:occ:919555","record_type":"occurrence","dataset_no":"neotoma:dst:4691","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":5736,"min_age":1069,"age_unit":"ybp","collection_no":"neotoma:sit:3651","collection_name":"Westmoreland - Barber [40Mi11]","lng":-85.5458333333333,"lat":35.0208333333333},
{"database":"Neotoma","occurrence_no":"neotoma:occ:919584","record_type":"occurrence","dataset_no":"neotoma:dst:4694","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":5736,"min_age":1069,"age_unit":"ybp","collection_no":"neotoma:sit:3651","collection_name":"Westmoreland - Barber [40Mi11]","lng":-85.5458333333333,"lat":35.0208333333333},
{"database":"Neotoma","occurrence_no":"neotoma:occ:919598","record_type":"occurrence","dataset_no":"neotoma:dst:4695","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":5736,"min_age":1069,"age_unit":"ybp","collection_no":"neotoma:sit:3651","collection_name":"Westmoreland - Barber [40Mi11]","lng":-85.5458333333333,"lat":35.0208333333333},
{"database":"Neotoma","occurrence_no":"neotoma:occ:919614","record_type":"occurrence","dataset_no":"neotoma:dst:4697","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":5736,"min_age":1069,"age_unit":"ybp","collection_no":"neotoma:sit:3651","collection_name":"Westmoreland - Barber [40Mi11]","lng":-85.5458333333333,"lat":35.0208333333333},
{"database":"Neotoma","occurrence_no":"neotoma:occ:919662","record_type":"occurrence","dataset_no":"neotoma:dst:4700","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":40350,"min_age":1953,"age_unit":"ybp","collection_no":"neotoma:sit:3654","collection_name":"Ceremonial Cave","lng":-106,"lat":31.8666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:919683","record_type":"occurrence","dataset_no":"neotoma:dst:4703","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":40350,"min_age":11417,"age_unit":"ybp","collection_no":"neotoma:sit:3657","collection_name":"Leo Boatwright Gravel Pit","lng":-96,"lat":32.1166666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:919763","record_type":"occurrence","dataset_no":"neotoma:dst:4711","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":40350,"min_age":30041,"age_unit":"ybp","collection_no":"neotoma:sit:3665","collection_name":"Clear Creek Local Fauna [Trietsch Pit]","lng":-97,"lat":33.25},
{"database":"Neotoma","occurrence_no":"neotoma:occ:919788","record_type":"occurrence","dataset_no":"neotoma:dst:4712","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":13041,"min_age":10802,"age_unit":"ybp","collection_no":"neotoma:sit:3666","collection_name":"Ben Franklin","lng":-95.75,"lat":33.3666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:919812","record_type":"occurrence","dataset_no":"neotoma:dst:4713","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":11417,"min_age":1729,"age_unit":"ybp","collection_no":"neotoma:sit:3667","collection_name":"Wunderlich [41CM3]","lng":-98.25,"lat":29.8666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:919833","record_type":"occurrence","dataset_no":"neotoma:dst:4715","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":1181,"min_age":1,"age_unit":"ybp","collection_no":"neotoma:sit:3669","collection_name":"Oblate [41CM1]","lng":-98.25,"lat":29.8666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:919842","record_type":"occurrence","dataset_no":"neotoma:dst:4715","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":11417,"min_age":1181,"age_unit":"ybp","collection_no":"neotoma:sit:3669","collection_name":"Oblate [41CM1]","lng":-98.25,"lat":29.8666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:919851","record_type":"occurrence","dataset_no":"neotoma:dst:4716","accepted_name":"Canis dirus","accepted_no":"neotoma:txn:5912","max_age":40350,"min_age":1,"age_unit":"ybp","collection_no":"neotoma:sit:3670","collection_name":"Williams Cave","lng":-104.75,"lat":31.8666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:919887","record_type":"occurrence","dataset_no":"neotoma:dst:4721","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":5169,"min_age":2140,"age_unit":"ybp","collection_no":"neotoma:sit:3671","collection_name":"Zopilote [41VV216]","lng":-101,"lat":29.5},
{"database":"Neotoma","occurrence_no":"neotoma:occ:919903","record_type":"occurrence","dataset_no":"neotoma:dst:4722","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":5005,"min_age":1202,"age_unit":"ybp","collection_no":"neotoma:sit:3672","collection_name":"Coontail Spin [41VV82]","lng":-101.3,"lat":29.65},
{"database":"Neotoma","occurrence_no":"neotoma:occ:919938","record_type":"occurrence","dataset_no":"neotoma:dst:4727","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":15332,"min_age":15332,"age_unit":"ybp","collection_no":"neotoma:sit:3676","collection_name":"Dust Cave [C-09]","lng":-104.75,"lat":31.8666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:919959","record_type":"occurrence","dataset_no":"neotoma:dst:4728","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":13418,"min_age":1,"age_unit":"ybp","collection_no":"neotoma:sit:3677","collection_name":"Lower Sloth Cave","lng":-104.866666666667,"lat":31.8666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:920060","record_type":"occurrence","dataset_no":"neotoma:dst:4737","accepted_name":"Canis dirus","accepted_no":"neotoma:txn:5912","max_age":40350,"min_age":11417,"age_unit":"ybp","collection_no":"neotoma:sit:3680","collection_name":"Levi Shelter [41TV49]","lng":-98.1,"lat":30.3583333333333},
{"database":"Neotoma","occurrence_no":"neotoma:occ:920074","record_type":"occurrence","dataset_no":"neotoma:dst:4737","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":13338,"min_age":11417,"age_unit":"ybp","collection_no":"neotoma:sit:3680","collection_name":"Levi Shelter [41TV49]","lng":-98.1,"lat":30.3583333333333},
{"database":"Neotoma","occurrence_no":"neotoma:occ:920090","record_type":"occurrence","dataset_no":"neotoma:dst:4737","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":10505,"min_age":8166,"age_unit":"ybp","collection_no":"neotoma:sit:3680","collection_name":"Levi Shelter [41TV49]","lng":-98.1,"lat":30.3583333333333},
{"database":"Neotoma","occurrence_no":"neotoma:occ:920118","record_type":"occurrence","dataset_no":"neotoma:dst:4738","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":891,"min_age":862,"age_unit":"ybp","collection_no":"neotoma:sit:3681","collection_name":"Kyle [41HI1]","lng":-97.4202777777778,"lat":32.0336111111111},
{"database":"Neotoma","occurrence_no":"neotoma:occ:920133","record_type":"occurrence","dataset_no":"neotoma:dst:4738","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":862,"min_age":632,"age_unit":"ybp","collection_no":"neotoma:sit:3681","collection_name":"Kyle [41HI1]","lng":-97.4202777777778,"lat":32.0336111111111},
{"database":"Neotoma","occurrence_no":"neotoma:occ:920164","record_type":"occurrence","dataset_no":"neotoma:dst:4738","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":641,"min_age":313,"age_unit":"ybp","collection_no":"neotoma:sit:3681","collection_name":"Kyle [41HI1]","lng":-97.4202777777778,"lat":32.0336111111111},
{"database":"Neotoma","occurrence_no":"neotoma:occ:920119","record_type":"occurrence","dataset_no":"neotoma:dst:4738","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":891,"min_age":862,"age_unit":"ybp","collection_no":"neotoma:sit:3681","collection_name":"Kyle [41HI1]","lng":-97.4202777777778,"lat":32.0336111111111},
{"database":"Neotoma","occurrence_no":"neotoma:occ:920211","record_type":"occurrence","dataset_no":"neotoma:dst:4740","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":17075,"min_age":14137,"age_unit":"ybp","collection_no":"neotoma:sit:3683","collection_name":"Cueva Quebrada [41VV162A]","lng":-101.4,"lat":29.7333333333333},
{"database":"Neotoma","occurrence_no":"neotoma:occ:920242","record_type":"occurrence","dataset_no":"neotoma:dst:4741","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":8100,"min_age":3214,"age_unit":"ybp","collection_no":"neotoma:sit:3684","collection_name":"Miller's Cave","lng":-98.6366666666667,"lat":30.5866666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:920264","record_type":"occurrence","dataset_no":"neotoma:dst:4742","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":7833,"min_age":4184,"age_unit":"ybp","collection_no":"neotoma:sit:3685","collection_name":"Schulze Cave","lng":-99.8666666666667,"lat":30.25},
{"database":"Neotoma","occurrence_no":"neotoma:occ:920265","record_type":"occurrence","dataset_no":"neotoma:dst:4742","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":7833,"min_age":4184,"age_unit":"ybp","collection_no":"neotoma:sit:3685","collection_name":"Schulze Cave","lng":-99.8666666666667,"lat":30.25},
{"database":"Neotoma","occurrence_no":"neotoma:occ:920294","record_type":"occurrence","dataset_no":"neotoma:dst:4742","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":10520,"min_age":8913,"age_unit":"ybp","collection_no":"neotoma:sit:3685","collection_name":"Schulze Cave","lng":-99.8666666666667,"lat":30.25},
{"database":"Neotoma","occurrence_no":"neotoma:occ:920345","record_type":"occurrence","dataset_no":"neotoma:dst:4742","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":12939,"min_age":10520,"age_unit":"ybp","collection_no":"neotoma:sit:3685","collection_name":"Schulze Cave","lng":-99.8666666666667,"lat":30.25},
{"database":"Neotoma","occurrence_no":"neotoma:occ:920394","record_type":"occurrence","dataset_no":"neotoma:dst:4743","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":12515,"min_age":411,"age_unit":"ybp","collection_no":"neotoma:sit:3686","collection_name":"Devil's Mouth [41VV188]","lng":-101,"lat":29.3666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:920477","record_type":"occurrence","dataset_no":"neotoma:dst:4746","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":40350,"min_age":11417,"age_unit":"ybp","collection_no":"neotoma:sit:3688","collection_name":"Longhorn Cavern","lng":-98.25,"lat":30.6166666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:920499","record_type":"occurrence","dataset_no":"neotoma:dst:4747","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":23956,"min_age":11417,"age_unit":"ybp","collection_no":"neotoma:sit:3689","collection_name":"Cave Without A Name","lng":-98.6166666666667,"lat":29.8833333333333},
{"database":"Neotoma","occurrence_no":"neotoma:occ:920543","record_type":"occurrence","dataset_no":"neotoma:dst:4749","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":9732,"min_age":5211,"age_unit":"ybp","collection_no":"neotoma:sit:3691","collection_name":"Eagle Cave [41VV167]","lng":-101.55,"lat":29.8166666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:920608","record_type":"occurrence","dataset_no":"neotoma:dst:4750","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":10680,"min_age":9463,"age_unit":"ybp","collection_no":"neotoma:sit:3692","collection_name":"Baker Cave [41VV213]","lng":-101.1,"lat":29.9833333333333},
{"database":"Neotoma","occurrence_no":"neotoma:occ:920623","record_type":"occurrence","dataset_no":"neotoma:dst:4750","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":9463,"min_age":6779,"age_unit":"ybp","collection_no":"neotoma:sit:3692","collection_name":"Baker Cave [41VV213]","lng":-101.1,"lat":29.9833333333333},
{"database":"Neotoma","occurrence_no":"neotoma:occ:920578","record_type":"occurrence","dataset_no":"neotoma:dst:4750","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":11417,"min_age":411,"age_unit":"ybp","collection_no":"neotoma:sit:3692","collection_name":"Baker Cave [41VV213]","lng":-101.1,"lat":29.9833333333333},
{"database":"Neotoma","occurrence_no":"neotoma:occ:921077","record_type":"occurrence","dataset_no":"neotoma:dst:4752","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":11417,"min_age":10279,"age_unit":"ybp","collection_no":"neotoma:sit:3694","collection_name":"Hinds Cave [41VV456]","lng":-101.44,"lat":29.8913888888889},
{"database":"Neotoma","occurrence_no":"neotoma:occ:921145","record_type":"occurrence","dataset_no":"neotoma:dst:4752","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":13380,"min_age":1753,"age_unit":"ybp","collection_no":"neotoma:sit:3694","collection_name":"Hinds Cave [41VV456]","lng":-101.44,"lat":29.8913888888889},
{"database":"Neotoma","occurrence_no":"neotoma:occ:920898","record_type":"occurrence","dataset_no":"neotoma:dst:4752","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":7058,"min_age":5336,"age_unit":"ybp","collection_no":"neotoma:sit:3694","collection_name":"Hinds Cave [41VV456]","lng":-101.44,"lat":29.8913888888889},
{"database":"Neotoma","occurrence_no":"neotoma:occ:920777","record_type":"occurrence","dataset_no":"neotoma:dst:4752","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":4011,"min_age":1753,"age_unit":"ybp","collection_no":"neotoma:sit:3694","collection_name":"Hinds Cave [41VV456]","lng":-101.44,"lat":29.8913888888889},
{"database":"Neotoma","occurrence_no":"neotoma:occ:920794","record_type":"occurrence","dataset_no":"neotoma:dst:4752","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":4011,"min_age":2301,"age_unit":"ybp","collection_no":"neotoma:sit:3694","collection_name":"Hinds Cave [41VV456]","lng":-101.44,"lat":29.8913888888889},
{"database":"Neotoma","occurrence_no":"neotoma:occ:920802","record_type":"occurrence","dataset_no":"neotoma:dst:4752","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":4250,"min_age":4011,"age_unit":"ybp","collection_no":"neotoma:sit:3694","collection_name":"Hinds Cave [41VV456]","lng":-101.44,"lat":29.8913888888889},
{"database":"Neotoma","occurrence_no":"neotoma:occ:920837","record_type":"occurrence","dataset_no":"neotoma:dst:4752","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":5336,"min_age":4011,"age_unit":"ybp","collection_no":"neotoma:sit:3694","collection_name":"Hinds Cave [41VV456]","lng":-101.44,"lat":29.8913888888889},
{"database":"Neotoma","occurrence_no":"neotoma:occ:920864","record_type":"occurrence","dataset_no":"neotoma:dst:4752","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":7058,"min_age":4011,"age_unit":"ybp","collection_no":"neotoma:sit:3694","collection_name":"Hinds Cave [41VV456]","lng":-101.44,"lat":29.8913888888889},
{"database":"Neotoma","occurrence_no":"neotoma:occ:920933","record_type":"occurrence","dataset_no":"neotoma:dst:4752","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":10279,"min_age":5336,"age_unit":"ybp","collection_no":"neotoma:sit:3694","collection_name":"Hinds Cave [41VV456]","lng":-101.44,"lat":29.8913888888889},
{"database":"Neotoma","occurrence_no":"neotoma:occ:920952","record_type":"occurrence","dataset_no":"neotoma:dst:4752","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":7606,"min_age":7058,"age_unit":"ybp","collection_no":"neotoma:sit:3694","collection_name":"Hinds Cave [41VV456]","lng":-101.44,"lat":29.8913888888889},
{"database":"Neotoma","occurrence_no":"neotoma:occ:920975","record_type":"occurrence","dataset_no":"neotoma:dst:4752","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":10279,"min_age":7058,"age_unit":"ybp","collection_no":"neotoma:sit:3694","collection_name":"Hinds Cave [41VV456]","lng":-101.44,"lat":29.8913888888889},
{"database":"Neotoma","occurrence_no":"neotoma:occ:921017","record_type":"occurrence","dataset_no":"neotoma:dst:4752","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":10279,"min_age":7606,"age_unit":"ybp","collection_no":"neotoma:sit:3694","collection_name":"Hinds Cave [41VV456]","lng":-101.44,"lat":29.8913888888889},
{"database":"Neotoma","occurrence_no":"neotoma:occ:921066","record_type":"occurrence","dataset_no":"neotoma:dst:4752","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":11417,"min_age":7606,"age_unit":"ybp","collection_no":"neotoma:sit:3694","collection_name":"Hinds Cave [41VV456]","lng":-101.44,"lat":29.8913888888889},
{"database":"Neotoma","occurrence_no":"neotoma:occ:920744","record_type":"occurrence","dataset_no":"neotoma:dst:4752","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":2301,"min_age":1753,"age_unit":"ybp","collection_no":"neotoma:sit:3694","collection_name":"Hinds Cave [41VV456]","lng":-101.44,"lat":29.8913888888889},
{"database":"Neotoma","occurrence_no":"neotoma:occ:921159","record_type":"occurrence","dataset_no":"neotoma:dst:4754","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":20341,"min_age":14024,"age_unit":"ybp","collection_no":"neotoma:sit:3695","collection_name":"Avenue","lng":-97.75,"lat":30.25},
{"database":"Neotoma","occurrence_no":"neotoma:occ:921235","record_type":"occurrence","dataset_no":"neotoma:dst:4757","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":1394,"min_age":100,"age_unit":"ybp","collection_no":"neotoma:sit:3698","collection_name":"Daughtery Cave [48WA302]","lng":-107.283333333333,"lat":44.1166666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:921244","record_type":"occurrence","dataset_no":"neotoma:dst:4758","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":12723,"min_age":11529,"age_unit":"ybp","collection_no":"neotoma:sit:3699","collection_name":"Sheaman [48NO211]","lng":-104.066666666667,"lat":43.3666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:921279","record_type":"occurrence","dataset_no":"neotoma:dst:4761","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":344,"min_age":266,"age_unit":"ybp","collection_no":"neotoma:sit:3702","collection_name":"Glenrock Buffalo Jump [48CO304]","lng":-105.866666666667,"lat":42.75},
{"database":"Neotoma","occurrence_no":"neotoma:occ:921308","record_type":"occurrence","dataset_no":"neotoma:dst:4764","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":12798,"min_age":12211,"age_unit":"ybp","collection_no":"neotoma:sit:3705","collection_name":"Agate Basin [48NO201]","lng":-104.066666666667,"lat":43.3666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:921309","record_type":"occurrence","dataset_no":"neotoma:dst:4764","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":12798,"min_age":12211,"age_unit":"ybp","collection_no":"neotoma:sit:3705","collection_name":"Agate Basin [48NO201]","lng":-104.066666666667,"lat":43.3666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:921296","record_type":"occurrence","dataset_no":"neotoma:dst:4764","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":12342,"min_age":11968,"age_unit":"ybp","collection_no":"neotoma:sit:3705","collection_name":"Agate Basin [48NO201]","lng":-104.066666666667,"lat":43.3666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:921303","record_type":"occurrence","dataset_no":"neotoma:dst:4764","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":13711,"min_age":12798,"age_unit":"ybp","collection_no":"neotoma:sit:3705","collection_name":"Agate Basin [48NO201]","lng":-104.066666666667,"lat":43.3666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:921337","record_type":"occurrence","dataset_no":"neotoma:dst:4765","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":11623,"min_age":11243,"age_unit":"ybp","collection_no":"neotoma:sit:3706","collection_name":"Casper [48NA302]","lng":-106.25,"lat":42.75},
{"database":"Neotoma","occurrence_no":"neotoma:occ:921358","record_type":"occurrence","dataset_no":"neotoma:dst:4768","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":9497,"min_age":9497,"age_unit":"ybp","collection_no":"neotoma:sit:3709","collection_name":"Eagle Shelter","lng":-108.116666666667,"lat":44.8666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:921397","record_type":"occurrence","dataset_no":"neotoma:dst:4769","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":32307,"min_age":16048,"age_unit":"ybp","collection_no":"neotoma:sit:3710","collection_name":"Prospects Shelter [48BH305]","lng":-108.116666666667,"lat":44.8666666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:921435","record_type":"occurrence","dataset_no":"neotoma:dst:4772","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":549,"min_age":493,"age_unit":"ybp","collection_no":"neotoma:sit:3713","collection_name":"Big Goose Creek [48SH313]","lng":-107.15,"lat":44.7333333333333},
{"database":"Neotoma","occurrence_no":"neotoma:occ:921436","record_type":"occurrence","dataset_no":"neotoma:dst:4772","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":549,"min_age":493,"age_unit":"ybp","collection_no":"neotoma:sit:3713","collection_name":"Big Goose Creek [48SH313]","lng":-107.15,"lat":44.7333333333333},
{"database":"Neotoma","occurrence_no":"neotoma:occ:921451","record_type":"occurrence","dataset_no":"neotoma:dst:4772","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":549,"min_age":493,"age_unit":"ybp","collection_no":"neotoma:sit:3713","collection_name":"Big Goose Creek [48SH313]","lng":-107.15,"lat":44.7333333333333},
{"database":"Neotoma","occurrence_no":"neotoma:occ:921459","record_type":"occurrence","dataset_no":"neotoma:dst:4773","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":429,"min_age":254,"age_unit":"ybp","collection_no":"neotoma:sit:3714","collection_name":"Vore [48CK302]","lng":-104.116666666667,"lat":44.5},
{"database":"Neotoma","occurrence_no":"neotoma:occ:921460","record_type":"occurrence","dataset_no":"neotoma:dst:4773","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":429,"min_age":254,"age_unit":"ybp","collection_no":"neotoma:sit:3714","collection_name":"Vore [48CK302]","lng":-104.116666666667,"lat":44.5},
{"database":"Neotoma","occurrence_no":"neotoma:occ:921458","record_type":"occurrence","dataset_no":"neotoma:dst:4773","accepted_name":"Canis lupus familiaris","accepted_no":"neotoma:txn:7044","max_age":429,"min_age":254,"age_unit":"ybp","collection_no":"neotoma:sit:3714","collection_name":"Vore [48CK302]","lng":-104.116666666667,"lat":44.5},
{"database":"Neotoma","occurrence_no":"neotoma:occ:921509","record_type":"occurrence","dataset_no":"neotoma:dst:4778","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":12939,"min_age":7802,"age_unit":"ybp","collection_no":"neotoma:sit:3719","collection_name":"Bentzen Kaufman Cave [48SH301]","lng":-106.583333333333,"lat":44.6166666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:921525","record_type":"occurrence","dataset_no":"neotoma:dst:4779","accepted_name":"Canis lupus","accepted_no":"neotoma:txn:5917","max_age":7391,"min_age":7204,"age_unit":"ybp","collection_no":"neotoma:sit:3720","collection_name":"Hawken [48CK303]","lng":-104.25,"lat":44.25},
{"database":"Neotoma","occurrence_no":"neotoma:occ:921531","record_type":"occurrence","dataset_no":"neotoma:dst:4782","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":1092,"min_age":902,"age_unit":"ybp","collection_no":"neotoma:sit:3723","collection_name":"Wardell Buffalo Trap [48SU301]","lng":-110,"lat":42.5},
{"database":"Neotoma","occurrence_no":"neotoma:occ:921532","record_type":"occurrence","dataset_no":"neotoma:dst:4782","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":1092,"min_age":902,"age_unit":"ybp","collection_no":"neotoma:sit:3723","collection_name":"Wardell Buffalo Trap [48SU301]","lng":-110,"lat":42.5},
{"database":"Neotoma","occurrence_no":"neotoma:occ:921544","record_type":"occurrence","dataset_no":"neotoma:dst:4783","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":529,"min_age":1,"age_unit":"ybp","collection_no":"neotoma:sit:3724","collection_name":"Rock Ranch Trading Post [48GO123]","lng":-104.25,"lat":42},
{"database":"Neotoma","occurrence_no":"neotoma:occ:921576","record_type":"occurrence","dataset_no":"neotoma:dst:4791","accepted_name":"Canis latrans","accepted_no":"neotoma:txn:5915","max_age":5005,"min_age":4184,"age_unit":"ybp","collection_no":"neotoma:sit:3732","collection_name":"Dead Indian Creek [48PA551]","lng":-109.366666666667,"lat":44.6166666666667},
{"database":"Neotoma","occurrence_no":"neotoma:occ:921580","record_type":"occurrence","dataset_no":"neotoma:dst:4791","accepted_name":"Canis sp.","accepted_no":"neotoma:txn:5920","max_age":5005,"min_age":4184,"age_unit":"ybp","collection_no":"neotoma:sit:3732","collection_name":"Dead Indian Creek [48PA551]","lng":-109.366666666667,"lat":44.6166666666667},