-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.json
3066 lines (3066 loc) · 106 KB
/
data.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
[
{
"file": "Corynorhinus townsendii 1.jpg",
"attribution": "National Park Service (public domain)",
"common_name": "Townsend's big-eared bat",
"scientific_name": "Corynorhinus townsendii",
"image_description": "",
"image_description_users": []
},
{
"file": "Macrotus californicus 1.jpg",
"attribution": "U.S. Fish and Wildlife Service (public domain)",
"common_name": "California leaf-nosed bat",
"scientific_name": "Macrotus californicus",
"image_description": "",
"image_description_users": []
},
{
"file": "Pteropus poliocephalus 1.jpg",
"attribution": "Andrew Mercer (CC BY-SA)",
"common_name": "Grey-headed flying fox",
"scientific_name": "Pteropus poliocephalus",
"image_description": "",
"image_description_users": []
},
{
"file": "Pteropus poliocephalus 2.jpg",
"attribution": "Andrew Mercer (CC BY-SA)",
"common_name": "Grey-headed flying fox",
"scientific_name": "Pteropus poliocephalus",
"image_description": "A bat hangs from the branches of a tree. It is facing the camera with its wings partially extended, allowing the sunlight to cast through on one side. It has prominent elbows and a highly furred body, mostly grey but with a red ruff collar. It has small pointed ears raised upward, large front-facing brown eyes, and a long snout with split nostrils on its grey head.",
"image_description_users": ["aaronhowe78"]
},
{
"file": "Rousettus aegyptiacus 1.jpg",
"attribution": "MinoZig (CC BY-SA)",
"common_name": "Egyptian fruit bat",
"scientific_name": "Rousettus aegyptiacus",
"image_description": "A group of around 20 grey bats hanging from a stone ceiling. The wings are a darker grey or black, while the fur is a light grey. Mostly only their heads are visible. Some of their eyes reflect the flash light.",
"image_description_users": ["anreji"]
},
{
"file": "Rousettus aegyptiacus 2.jpg",
"attribution": "Lithuanian Zoological Gardens (CC BY-SA)",
"common_name": "Egyptian fruit bat",
"scientific_name": "Rousettus aegyptiacus",
"image_description": "",
"image_description_users": []
},
{
"file": "Rousettus aegyptiacus 3.jpg",
"attribution": "Oren Peles (CC BY)",
"common_name": "Egyptian fruit bat",
"scientific_name": "Rousettus aegyptiacus",
"image_description": "",
"image_description_users": []
},
{
"file": "Chrotopterus auritus 1.jpg",
"attribution": "Guilherme Garbino (CC BY-SA)",
"common_name": "Big-eared woolly bat",
"scientific_name": "Chrotopterus auritus",
"image_description": "",
"image_description_users": []
},
{
"file": "Pteropus medius 1.jpg",
"attribution": "Charles J. Sharp (CC BY-SA)",
"common_name": "Indian flying fox",
"scientific_name": "Pteropus medius",
"image_description": "",
"image_description_users": []
},
{
"file": "Pteropus medius 2.jpg",
"attribution": "Fritz Geller-Grimm (CC BY-SA)",
"common_name": "Indian flying fox",
"scientific_name": "Pteropus medius",
"image_description": "A bat hangs from some thin, reedy branches in the daylight, facing the camera. It has light reddish-brown fur and a black face, adjoined by small, black ears curving to a sharp point. Its large eyes are dark reddish-brown. It is covering its body partially with a black, soft-looking wing, its feet and free wing clinging to the branch.",
"image_description_users": ["aaronhowe78"]
},
{
"file": "Pteropus medius 3.jpg",
"attribution": "Trikansh Sharma (public domain)",
"common_name": "Indian flying fox",
"scientific_name": "Pteropus medius",
"image_description": "",
"image_description_users": []
},
{
"file": "Ectophylla alba 1.jpg",
"attribution": "Leyo (CC BY-SA)",
"common_name": "Honduran white bat",
"scientific_name": "Ectophylla alba",
"image_description": "",
"image_description_users": []
},
{
"file": "Ectophylla alba 2.jpg",
"attribution": "Geoff Gallice (CC BY)",
"common_name": "Honduran white bat",
"scientific_name": "Ectophylla alba",
"image_description": "",
"image_description_users": []
},
{
"file": "Ectophylla alba 3.jpg",
"attribution": "Charlie Jackson (CC BY)",
"common_name": "Honduran white bat",
"scientific_name": "Ectophylla alba",
"image_description": "",
"image_description_users": []
},
{
"file": "Artibeus fimbriatus 1.jpg",
"attribution": "Cardoso Cláudio V, et al. (CC BY)",
"common_name": "Fringed fruit-eating bat",
"scientific_name": "Artibeus fimbriatus",
"image_description": "",
"image_description_users": []
},
{
"file": "Artibeus fraterculus 1.jpg",
"attribution": "Juan Romero (CC BY-SA)",
"common_name": "Fraternal fruit-eating bat",
"scientific_name": "Artibeus fraterculus",
"image_description": "",
"image_description_users": []
},
{
"file": "Artibeus hirsutus 1.jpg",
"attribution": "Juan Cruzado Cortés (CC BY-SA)",
"common_name": "Hairy fruit-eating bat",
"scientific_name": "Artibeus hirsutus",
"image_description": "",
"image_description_users": []
},
{
"file": "Artibeus jamaicensis 1.jpg",
"attribution": "Karin Schneeberger (CC BY-SA)",
"common_name": "Jamaican fruit bat",
"scientific_name": "Artibeus jamaicensis",
"image_description": "A bat hangs from a mossy branch in a night scene. It has greyish-brown fur and a thick torso. Its ears are triangular and close to its head, facing outwards. It has almond-shaped brown eyes with a black pupil. Its nose is distinctly leaf-shaped and extends above the line of its head.",
"image_description_users": ["aaronhowe78"]
},
{
"file": "Balionycteris maculata 1.jpg",
"attribution": "Tabdulla (CC BY-SA)",
"common_name": "Spotted-winged fruit bat",
"scientific_name": "Balionycteris maculata",
"image_description": "",
"image_description_users": []
},
{
"file": "Chironax melanocephalus 1.jpg",
"attribution": "Muhammad Imam R (CC BY)",
"common_name": "Black-capped fruit bat",
"scientific_name": "Chironax melanocephalus",
"image_description": "",
"image_description_users": []
},
{
"file": "Cynopterus brachyotis 1.jpg",
"attribution": "AntanO (CC BY-SA)",
"common_name": "Lesser short-nosed fruit bat",
"scientific_name": "Cynopterus brachyotis",
"image_description": "",
"image_description_users": []
},
{
"file": "Cynopterus brachyotis 2.jpg",
"attribution": "AntanO (CC BY-SA)",
"common_name": "Lesser short-nosed fruit bat",
"scientific_name": "Cynopterus brachyotis",
"image_description": "",
"image_description_users": []
},
{
"file": "Cynopterus minutus 1.jpg",
"attribution": "Wibowo Djatmiko (CC BY-SA)",
"common_name": "Minute fruit bat",
"scientific_name": "Cynopterus minutus",
"image_description": "",
"image_description_users": []
},
{
"file": "Cynopterus sphinx 1.jpg",
"attribution": "Shantanu Kuveskar (CC BY-SA)",
"common_name": "Greater short-nosed fruit bat",
"scientific_name": "Cynopterus sphinx",
"image_description": "",
"image_description_users": []
},
{
"file": "Cynopterus titthaecheilus titthaecheilus 1.jpg",
"attribution": "Wibowo Djatmiko (CC BY-SA)",
"common_name": "Indonesian short-nosed fruit bat",
"scientific_name": "Cynopterus titthaecheilus titthaecheilus",
"image_description": "Close-up of a velvety brown bat lying in a prone position. It has small pointed ears and very large brown eyes. Its snout is short and thick with pointed split nostrils and a strong jaw full of thick but slightly blunted teeth. It has prominent whiskers and chin hairs.",
"image_description_users": ["aaronhowe78"]
},
{
"file": "Haplonycteris fischeri 1.jpg",
"attribution": "Government of the Philippines (public domain)",
"common_name": "Fischer's pygmy fruit bat",
"scientific_name": "Haplonycteris fischeri",
"image_description": "",
"image_description_users": []
},
{
"file": "Eidolon dupreanum 1.jpg",
"attribution": "heinonlein (CC BY-SA)",
"common_name": "Madagascan fruit bat",
"scientific_name": "Eidolon dupreanum",
"image_description": "",
"image_description_users": []
},
{
"file": "Eidolon helvum 1.jpg",
"attribution": "Fritz Geller-Grimm (CC BY-SA)",
"common_name": "Straw-coloured fruit bat",
"scientific_name": "Eidolon helvum",
"image_description": "",
"image_description_users": []
},
{
"file": "Harpyionycteris whiteheadi 1.jpg",
"attribution": "Government of the Philippines (public domain)",
"common_name": "Harpy fruit bat",
"scientific_name": "Harpyionycteris whiteheadi",
"image_description": "A fruit bat fills the main part of the screen. Its body is mostly a furry brown, with the wings outstretched and translucent. In the background is some mountainous green landscape.",
"image_description_users": ["dlbradford"]
},
{
"file": "Nyctimene robinsoni 1.jpg",
"attribution": "Markus Nolf (CC BY-SA)",
"common_name": "Eastern tube-nosed bat",
"scientific_name": "Nyctimene robinsoni",
"image_description": "A brown bat hanging in an inverted position. It has small ears which are edged with patches of white/pale skin. Its wings are also spotted with pale patches. It has light brown eyes, a shortened muzzle and elongated, tubular nostrils.",
"image_description_users": ["aaronhowe78"]
},
{
"file": "Acerodon celebensis 1.jpg",
"attribution": "Scott Heinrichs (CC BY-SA)",
"common_name": "Sulawesi flying fox",
"scientific_name": "Acerodon celebensis",
"image_description": "",
"image_description_users": []
},
{
"file": "Acerodon jubatus 1.jpg",
"attribution": "Gregg Yan",
"common_name": "Giant golden-crowned flying fox",
"scientific_name": "Acerodon jubatus",
"image_description": "",
"image_description_users": []
},
{
"file": "Pteropus conspicillatus 1.jpg",
"attribution": "Justin Welbergen (CC BY-SA)",
"common_name": "Spectacled flying fox",
"scientific_name": "Pteropus conspicillatus",
"image_description": "",
"image_description_users": []
},
{
"file": "Pteropus scapulatus 1.jpg",
"attribution": "Raina Plowright (CC BY)",
"common_name": "Little red flying fox",
"scientific_name": "Pteropus scapulatus",
"image_description": "",
"image_description_users": []
},
{
"file": "Pteropus livingstonii 1.jpg",
"attribution": "Adrian Pingstone (public domain)",
"common_name": "Livingstone's fruit bat",
"scientific_name": "Pteropus livingstonii",
"image_description": "",
"image_description_users": []
},
{
"file": "Pteropus dasymallus 1.jpg",
"attribution": "Koolah (CC BY-SA)",
"common_name": "Ryukyu flying fox",
"scientific_name": "Pteropus dasymallus",
"image_description": "",
"image_description_users": []
},
{
"file": "Pteropus rodricensis 1.jpg",
"attribution": "Vauxford (CC BY-SA)",
"common_name": "Rodrigues flying fox",
"scientific_name": "Pteropus rodricensis",
"image_description": "",
"image_description_users": []
},
{
"file": "Pteropus vampyrus 1.jpg",
"attribution": "NobbiP (CC BY-SA)",
"common_name": "Large flying fox",
"scientific_name": "Pteropus vampyrus",
"image_description": "",
"image_description_users": []
},
{
"file": "Pteropus rufus 1.jpg",
"attribution": "Neil Strickland (CC BY)",
"common_name": "Madagascan flying fox",
"scientific_name": "Pteropus rufus",
"image_description": "",
"image_description_users": []
},
{
"file": "Pteropus seychellensis 1.jpg",
"attribution": "Hubris.nemesis (CC BY-SA)",
"common_name": "Seychelles fruit bat",
"scientific_name": "Pteropus seychellensis",
"image_description": "",
"image_description_users": []
},
{
"file": "Pteropus lylei 1.jpg",
"attribution": "Malene Thyssen (CC BY-SA)",
"common_name": "Lyle's flying fox",
"scientific_name": "Pteropus lylei",
"image_description": "",
"image_description_users": []
},
{
"file": "Pteropus niger 1.jpg",
"attribution": "Charles J. Sharp (CC BY-SA)",
"common_name": "Mauritian flying fox",
"scientific_name": "Pteropus niger",
"image_description": "",
"image_description_users": []
},
{
"file": "Pteropus samoensis 1.jpg",
"attribution": "Paul Asman and Jill Lenoble (CC BY)",
"common_name": "Samoa flying fox",
"scientific_name": "Pteropus samoensis",
"image_description": "",
"image_description_users": []
},
{
"file": "Pteropus poliocephalus 3.jpg",
"attribution": "Andrew Mercer (CC BY-SA)",
"common_name": "Grey-headed flying fox",
"scientific_name": "Pteropus poliocephalus",
"image_description": "Three bats of the same species hanging from a cluster of branches. They each have grey bodies with a ruff of reddish-brown fur around their collars, each with varying shades of grey head fur. They have long snouts ending in split nostrils and black eyes. The frontmost bat is nestled into its mother and is facing away from the camera. The mother is looking at the camera, her black wings partially outstretched. A third bat hangs close behind her, also looking towards the camera.",
"image_description_users": ["aaronhowe78"]
},
{
"file": "Pteropus poliocephalus 4.jpg",
"attribution": "Andrew Mercer (CC BY-SA)",
"common_name": "Grey-headed flying fox",
"scientific_name": "Pteropus poliocephalus",
"image_description": "",
"image_description_users": []
},
{
"file": "Pteropus hypomelanus 1.jpg",
"attribution": "Hadonos (CC BY-SA)",
"common_name": "Small flying fox",
"scientific_name": "Pteropus hypomelanus",
"image_description": "",
"image_description_users": []
},
{
"file": "Pteropus neohibernicus 1.jpg",
"attribution": "Jon Irvine (CC BY-SA)",
"common_name": "Great flying fox",
"scientific_name": "Pteropus neohibernicus",
"image_description": "",
"image_description_users": []
},
{
"file": "Pteropus conspicillatus 2.jpg",
"attribution": "CSIRO (CC BY)",
"common_name": "Spectacled flying fox",
"scientific_name": "Pteropus conspicillatus",
"image_description": "",
"image_description_users": []
},
{
"file": "Pteropus conspicillatus 3.jpg",
"attribution": "Markus Nolf (CC BY-SA)",
"common_name": "Spectacled flying fox",
"scientific_name": "Pteropus conspicillatus",
"image_description": "",
"image_description_users": []
},
{
"file": "Pteropus alecto 1.jpg",
"attribution": "Andrew Mercer (CC BY-SA)",
"common_name": "Black flying fox",
"scientific_name": "Pteropus alecto",
"image_description": "",
"image_description_users": []
},
{
"file": "Pteropus alecto 2.jpg",
"attribution": "Andrew Mercer (CC BY-SA)",
"common_name": "Black flying fox",
"scientific_name": "Pteropus alecto",
"image_description": "",
"image_description_users": []
},
{
"file": "Pteropus tonganus 1.jpg",
"attribution": "Paul Asman and Jill Lenoble (CC BY)",
"common_name": "Insular flying fox",
"scientific_name": "Pteropus tonganus",
"image_description": "",
"image_description_users": []
},
{
"file": "Pteropus mariannus 1.jpg",
"attribution": "U.S. Fish and Wildlife Service (public domain)",
"common_name": "Mariana fruit bat",
"scientific_name": "Pteropus mariannus",
"image_description": "",
"image_description_users": []
},
{
"file": "Pteropus pelewensis yapensis 1.jpg",
"attribution": "thibaudaronson (CC BY-SA)",
"common_name": "Yap flying fox",
"scientific_name": "Pteropus pelewensis yapensis",
"image_description": "",
"image_description_users": []
},
{
"file": "Desmodus rotundus 1.jpg",
"attribution": "Alessandro Catenazzi (CC BY-SA)",
"common_name": "Common vampire bat",
"scientific_name": "Desmodus rotundus",
"image_description": "",
"image_description_users": []
},
{
"file": "Desmodus rotundus 2.jpg",
"attribution": "Uwe Schmidt (CC BY-SA)",
"common_name": "Common vampire bat",
"scientific_name": "Desmodus rotundus",
"image_description": "",
"image_description_users": []
},
{
"file": "Diaemus youngi 1.jpg",
"attribution": "Gerry Carter (CC BY-SA)",
"common_name": "White-winged vampire bat",
"scientific_name": "Diaemus youngi",
"image_description": "",
"image_description_users": []
},
{
"file": "Diphylla ecaudata 1.jpg",
"attribution": "Gerry Carter (CC BY-SA)",
"common_name": "Hairy-legged vampire bat",
"scientific_name": "Diphylla ecaudata",
"image_description": "A young brown bat with only its face visible as it is being held in a white cotton glove. It has coarse brown fur and wide brown ears that lay flat against its head. Its black eyes are very large, and beneath the eye, there is a fold of skin joining the ear to the jaw. Its nose is flat, with ridges extending around to join the previous skin line. Its lips are thick, with a prominent jutting lower lip.",
"image_description_users": ["aaronhowe78"]
},
{
"file": "Macroglossus sobrinus 1.jpg",
"attribution": "Wibowo Djatmiko (CC BY-SA)",
"common_name": "Long-tongued fruit bat",
"scientific_name": "Macroglossus sobrinus",
"image_description": "",
"image_description_users": []
},
{
"file": "Centurio senex 1.jpg",
"attribution": "Jplevraud (CC BY-SA)",
"common_name": "Wrinkle-faced bat",
"scientific_name": "Centurio senex",
"image_description": "",
"image_description_users": []
},
{
"file": "Hypsignathus monstrosus 1.jpg",
"attribution": "Sarah H. Olson, et al. (public domain)",
"common_name": "Hammer-headed bat",
"scientific_name": "Hypsignathus monstrosus",
"image_description": "",
"image_description_users": []
},
{
"file": "Myonycteris relicta 1.jpg",
"attribution": "Carrie Seltzer (CC BY)",
"common_name": "East African little collared fruit bat",
"scientific_name": "Myonycteris relicta",
"image_description": "",
"image_description_users": []
},
{
"file": "Eonycteris spelaea 1.jpg",
"attribution": "Stephen Rossiter (CC BY)",
"common_name": "Cave nectar bat",
"scientific_name": "Eonycteris spelaea",
"image_description": "",
"image_description_users": []
},
{
"file": "Rousettus madagascariensis 1.jpg",
"attribution": "Radasoa A. Andrianaivoarivelo (CC BY)",
"common_name": "Madagascan rousette",
"scientific_name": "Rousettus madagascariensis",
"image_description": "",
"image_description_users": []
},
{
"file": "Mormoops megalophylla 1.jpg",
"attribution": "Alex Borisenko (CC BY-SA)",
"common_name": "Ghost-faced bat",
"scientific_name": "Mormoops megalophylla",
"image_description": "",
"image_description_users": []
},
{
"file": "Pipistrellus pipistrellus 1.jpg",
"attribution": "Drahkrub (CC BY-SA)",
"common_name": "Common pipistrelle",
"scientific_name": "Pipistrellus pipistrellus",
"image_description": "",
"image_description_users": []
},
{
"file": "Pteronotus parnellii 1.jpg",
"attribution": "Alex Borisenko (CC BY-SA)",
"common_name": "Parnell's mustached bat",
"scientific_name": "Pteronotus parnellii",
"image_description": "",
"image_description_users": []
},
{
"file": "Cynopterus sphinx 2.jpg",
"attribution": "Haneesh K M (CC BY-SA)",
"common_name": "Greater short-nosed fruit bat",
"scientific_name": "Cynopterus sphinx",
"image_description": "",
"image_description_users": []
},
{
"file": "Craseonycteris thonglongyai 1.jpg",
"attribution": "Sébastien J. Puechmaille, et al. (CC BY)",
"common_name": "Kitti's hog-nosed bat",
"scientific_name": "Craseonycteris thonglongyai",
"image_description": "",
"image_description_users": []
},
{
"file": "Hipposideros commersoni 1.jpg",
"attribution": "Charles J. Sharp (CC BY-SA)",
"common_name": "Commerson's roundleaf bat",
"scientific_name": "Hipposideros commersoni",
"image_description": "",
"image_description_users": []
},
{
"file": "Hipposideros commersoni 2.jpg",
"attribution": "Charles J. Sharp (CC BY-SA)",
"common_name": "Commerson's roundleaf bat",
"scientific_name": "Hipposideros commersoni",
"image_description": "",
"image_description_users": []
},
{
"file": "Hipposideros armiger 1.jpg",
"attribution": "Rajesh Puttaswamaiah (CC BY-SA)",
"common_name": "Great roundleaf bat",
"scientific_name": "Hipposideros armiger",
"image_description": "",
"image_description_users": []
},
{
"file": "Hipposideros ater 1.jpg",
"attribution": "P. O. Nameer (CC BY)",
"common_name": "Dusky leaf-nosed bat",
"scientific_name": "Hipposideros ater",
"image_description": "A small, approximately palm-sized bat, being held between pinched fingers. It has a head almost the same size as its body, with a leaf-shaped nose and short, ridged, wide ears. Its eyes are black and very small. Its fur is mostly light brown and is slightly darker around the head. Its legs lack fur and it has clawed feet.",
"image_description_users": ["aaronhowe78"]
},
{
"file": "Hipposideros caffer 1.jpg",
"attribution": "Ursula Franke (CC BY-SA)",
"common_name": "Sundevall's roundleaf bat",
"scientific_name": "Hipposideros caffer",
"image_description": "",
"image_description_users": []
},
{
"file": "Hipposideros lankadiva 1.jpg",
"attribution": "Nyanatusita Bhikkhu (CC BY)",
"common_name": "Indian roundleaf bat",
"scientific_name": "Hipposideros lankadiva",
"image_description": "A brown bat hangs from a rock surface. It has a long and thick body, and its wings are folded in against its body. It has short but wide ridged ears that fold over slightly at the tips and very small brown eyes. Its large nose is leaf-shaped, with some visible ridges where it meets the upper lip.",
"image_description_users": ["aaronhowe78"]
},
{
"file": "Hipposideros cervinus 1.jpg",
"attribution": "Dave R. Bennett (CC BY-SA)",
"common_name": "Fawn leaf-nosed bat",
"scientific_name": "Hipposideros cervinus",
"image_description": "",
"image_description_users": []
},
{
"file": "Hipposideros diadema 1.jpg",
"attribution": "Michael Pennay (CC BY)",
"common_name": "Diadem leaf-nosed bat",
"scientific_name": "Hipposideros diadema",
"image_description": "",
"image_description_users": []
},
{
"file": "Hipposideros durgadasi 1.jpg",
"attribution": "Rajesh Puttaswamaiah (CC BY-SA)",
"common_name": "Khajuria's leaf-nosed bat",
"scientific_name": "Hipposideros durgadasi",
"image_description": "",
"image_description_users": []
},
{
"file": "Hipposideros fulvus 1.jpg",
"attribution": "Rohit Chakravarty (CC BY-SA)",
"common_name": "Fulvus roundleaf bat",
"scientific_name": "Hipposideros fulvus",
"image_description": "",
"image_description_users": []
},
{
"file": "Hipposideros galeritus 1.jpg",
"attribution": "Rajesh Puttaswamaiah (CC BY-SA)",
"common_name": "Cantor's roundleaf bat",
"scientific_name": "Hipposideros galeritus",
"image_description": "A plump little bat with a pale belly and dark, velvety wings, hanging by its feet from a cave wall.",
"image_description_users": ["nevillepark"]
},
{
"file": "Hipposideros hypophyllus 1.jpg",
"attribution": "Rajesh Puttaswamaiah (CC BY-SA)",
"common_name": "Kolar leaf-nosed bat",
"scientific_name": "Hipposideros hypophyllus",
"image_description": "",
"image_description_users": []
},
{
"file": "Hipposideros larvatus 1.jpg",
"attribution": "Wibowo Djatmiko (CC BY)",
"common_name": "Intermediate roundleaf bat",
"scientific_name": "Hipposideros larvatus",
"image_description": "",
"image_description_users": []
},
{
"file": "Hipposideros ridleyi 1.jpg",
"attribution": "Tabdulla (CC BY-SA)",
"common_name": "Ridley's leaf-nosed bat",
"scientific_name": "Hipposideros ridleyi",
"image_description": "",
"image_description_users": []
},
{
"file": "Hipposideros speoris 1.jpg",
"attribution": "Seshadri K. S. (CC BY-SA)",
"common_name": "Schneider's leaf-nosed bat",
"scientific_name": "Hipposideros speoris",
"image_description": "",
"image_description_users": []
},
{
"file": "Hipposideros speoris 2.jpg",
"attribution": "Seshadri K. S. (CC BY-SA)",
"common_name": "Schneider's leaf-nosed bat",
"scientific_name": "Hipposideros speoris",
"image_description": "",
"image_description_users": []
},
{
"file": "Emballonura semicaudata 1.jpg",
"attribution": "U.S. Fish and Wildlife Service (CC BY)",
"common_name": "Pacific sheath-tailed bat",
"scientific_name": "Emballonura semicaudata",
"image_description": "",
"image_description_users": []
},
{
"file": "Balantiopteryx io 1.jpg",
"attribution": "Juan Cruzado Cortés (CC BY-SA)",
"common_name": "Thomas's sac-winged bat",
"scientific_name": "Balantiopteryx io",
"image_description": "",
"image_description_users": []
},
{
"file": "Balantiopteryx plicata 1.jpg",
"attribution": "Bernard Dupont (CC BY-SA)",
"common_name": "Gray sac-winged bat",
"scientific_name": "Balantiopteryx plicata",
"image_description": "",
"image_description_users": []
},
{
"file": "Coleura afra 1.jpg",
"attribution": "Tom Jamonneau (CC BY-SA)",
"common_name": "African sheath-tailed bat",
"scientific_name": "Coleura afra",
"image_description": "",
"image_description_users": []
},
{
"file": "Diclidurus albus 1.jpg",
"attribution": "Michael Autumn (CC BY-SA)",
"common_name": "Northern ghost bat",
"scientific_name": "Diclidurus albus",
"image_description": "",
"image_description_users": []
},
{
"file": "Peropteryx trinitatis 1.jpg",
"attribution": "Juan Cruzado Cortés (CC BY-SA)",
"common_name": "Trinidad dog-like bat",
"scientific_name": "Peropteryx trinitatis",
"image_description": "",
"image_description_users": []
},
{
"file": "Rhynchonycteris naso 1.jpg",
"attribution": "Charles J. Sharp (CC BY-SA)",
"common_name": "Proboscis bat",
"scientific_name": "Rhynchonycteris naso",
"image_description": "",
"image_description_users": []
},
{
"file": "Rhynchonycteris naso 2.jpg",
"attribution": "Karin Schneeberger (CC BY-SA)",
"common_name": "Proboscis bat",
"scientific_name": "Rhynchonycteris naso",
"image_description": "",
"image_description_users": []
},
{
"file": "Rhynchonycteris naso 3.jpg",
"attribution": "Karin Schneeberger (CC BY-SA)",
"common_name": "Proboscis bat",
"scientific_name": "Rhynchonycteris naso",
"image_description": "",
"image_description_users": []
},
{
"file": "Saccopteryx bilineata 1.jpg",
"attribution": "Karin Schneeberger (CC BY-SA)",
"common_name": "Greater sac-winged bat",
"scientific_name": "Saccopteryx bilineata",
"image_description": "A bat hanging from a vertical surface. Its dark fur has two golden ripples going parallel down its back. Its little grippy toes are spread out, wings are folded next to it, and its face is pushed up like its doing cobra pose. Its curved mouth looks like it's smiling at the viewer.",
"image_description_users": ["brown-betty"]
},
{
"file": "Saccopteryx bilineata 2.jpg",
"attribution": "Karin Schneeberger (CC BY-SA)",
"common_name": "Greater sac-winged bat",
"scientific_name": "Saccopteryx bilineata",
"image_description": "",
"image_description_users": []
},
{
"file": "Saccopteryx leptura 1.jpg",
"attribution": "Feroze Omardeen (CC BY)",
"common_name": "Lesser sac-winged bat",
"scientific_name": "Saccopteryx leptura",
"image_description": "Two bats hang from a wall. They are both facing out but slightly away from the camera in a mirrored pose. They have thick, small brown bodies with a light brown curving streak down their backs. Their wings appear to be short. They have small, ridged, pointed ears, medium-sized black eyes, and prominently upturned noses ending in points. The underside fur is markedly lighter than the topside.",
"image_description_users": ["aaronhowe78"]
},
{
"file": "Taphozous theobaldi 1.jpg",
"attribution": "Rajesh Puttaswamaiah (CC BY-SA)",
"common_name": "Theobald's tomb bat",
"scientific_name": "Taphozous theobaldi",
"image_description": "",
"image_description_users": []
},
{
"file": "Taphozous melanopogon 1.jpg",
"attribution": "Jenis Patel (CC BY-SA)",
"common_name": "Black-bearded tomb bat",
"scientific_name": "Taphozous melanopogon",
"image_description": "",
"image_description_users": []
},
{
"file": "Taphozous mauritianus 1.jpg",
"attribution": "Frank Vassen (CC BY)",
"common_name": "Mauritian tomb bat",
"scientific_name": "Taphozous mauritianus",
"image_description": "",
"image_description_users": []
},
{
"file": "Taphozous australis 1.jpg",
"attribution": "coenobita (CC BY)",
"common_name": "Coastal sheath-tailed bat",
"scientific_name": "Taphozous australis",
"image_description": "",
"image_description_users": []
},
{
"file": "Cardioderma cor 1.jpg",
"attribution": "wildscope (CC BY)",
"common_name": "Heart-nosed bat",
"scientific_name": "Cardioderma cor",
"image_description": "A grey bat hangs upside down from a piece of wood by one foot. It has mottled brown wings which are folded back and is raising its head to look towards the camera. It has long and slim ears that point upward, black eyes, and a tall, oval-shaped leaf-nose with a ridge running down the middle.",
"image_description_users": ["aaronhowe78"]
},
{
"file": "Lavia frons 1.jpg",
"attribution": "Dries Sagaert (public domain)",
"common_name": "Yellow-winged bat",
"scientific_name": "Lavia frons",
"image_description": "",
"image_description_users": []
},
{
"file": "Macroderma gigas 1.jpg",
"attribution": "Sardaka (CC BY-SA)",
"common_name": "Ghost bat",
"scientific_name": "Macroderma gigas",
"image_description": "",
"image_description_users": []
},
{
"file": "Megaderma spasma 1.jpg",
"attribution": "Piekfrosch (GNU FDL)",
"common_name": "Lesser false vampire bat",
"scientific_name": "Megaderma spasma",
"image_description": "",
"image_description_users": []
},
{
"file": "Lyroderma lyra 1.jpg",
"attribution": "Aditya Joshi (CC BY-SA)",
"common_name": "Greater false vampire bat",
"scientific_name": "Lyroderma lyra",
"image_description": "",
"image_description_users": []
},
{
"file": "Chilonatalus micropus 1.jpg",
"attribution": "Matthew A. Emrich (CC BY-SA)",
"common_name": "Cuban funnel-eared bat",
"scientific_name": "Chilonatalus micropus",
"image_description": "",
"image_description_users": []
},
{
"file": "Myotis myotis 1.jpg",
"attribution": "Thomas Bresson (CC BY)",
"common_name": "Greater mouse-eared bat",
"scientific_name": "Myotis myotis",
"image_description": "",
"image_description_users": []
},
{
"file": "Myotis myotis 2.jpg",
"attribution": "Manuel Werner (CC BY-SA)",
"common_name": "Greater mouse-eared bat",
"scientific_name": "Myotis myotis",
"image_description": "",
"image_description_users": []
},
{
"file": "Myotis emarginatus 1.jpg",
"attribution": "MUSE Science Museum (CC BY-SA)",
"common_name": "Geoffroy's bat",
"scientific_name": "Myotis emarginatus",
"image_description": "",
"image_description_users": []
},
{
"file": "Myotis rufoniger 1.jpg",
"attribution": "Kim Hyun-tae (CC BY)",
"common_name": "Reddish-black myotis",
"scientific_name": "Myotis rufoniger",
"image_description": "",
"image_description_users": []
},
{
"file": "Myotis formosus 1.jpg",
"attribution": "Feng-Chou Teng (CC BY)",
"common_name": "Hodgson's bat",
"scientific_name": "Myotis formosus",
"image_description": "Over a dozen small pale bats, packed in the spaces between some leaves on a plant. The bats are straw coloured, with pink faces and wing-tips, and the effect of multiple bats packed together is a bit like seeing a bat-coloured hydrangea blossom.",
"image_description_users": ["brown-betty"]
},
{
"file": "Myotis alcathoe 1.jpg",
"attribution": "Manuel Ruedi (CC BY-SA)",
"common_name": "Alcathoe bat",
"scientific_name": "Myotis alcathoe",
"image_description": "",
"image_description_users": []
},
{
"file": "Myotis bechsteinii 1.jpg",
"attribution": "Northern Vosges Regional Nature Park (public domain)",
"common_name": "Bechstein's bat",
"scientific_name": "Myotis bechsteinii",
"image_description": "",
"image_description_users": []
},
{
"file": "Myotis blythii 1.jpg",
"attribution": "Kudaibergen Amirekul (CC BY-SA)",
"common_name": "Lesser mouse-eared bat",
"scientific_name": "Myotis blythii",
"image_description": "",
"image_description_users": []
},
{
"file": "Myotis blythii 2.jpg",
"attribution": "C. Robiller (CC BY-SA)",
"common_name": "Lesser mouse-eared bat",
"scientific_name": "Myotis blythii",
"image_description": "",
"image_description_users": []
},
{
"file": "Myotis capaccinii 1.jpg",
"attribution": "Joxerra Aihartza (Free Art License)",
"common_name": "Long-fingered bat",
"scientific_name": "Myotis capaccinii",
"image_description": "",
"image_description_users": []
},
{
"file": "Myotis crypticus 1.jpg",
"attribution": "Manuel Ruedi (CC BY-SA)",
"common_name": "Cryptic myotis",
"scientific_name": "Myotis crypticus",
"image_description": "",
"image_description_users": []
},
{
"file": "Myotis dasycneme 1.jpg",
"attribution": "Gilles San Martin (CC BY-SA)",
"common_name": "Pond bat",
"scientific_name": "Myotis dasycneme",
"image_description": "",
"image_description_users": []
},
{
"file": "Myotis daubentonii 1.jpg",
"attribution": "Gilles San Martin (CC BY-SA)",
"common_name": "Daubenton's bat",
"scientific_name": "Myotis daubentonii",
"image_description": "",
"image_description_users": []
},
{
"file": "Myotis daubentonii 2.jpg",
"attribution": "Lennart Lennuk (CC BY)",
"common_name": "Daubenton's bat",
"scientific_name": "Myotis daubentonii",
"image_description": "",
"image_description_users": []
},
{
"file": "Lasiurus cinereus 1.jpg",
"attribution": "U.S. Geological Survey (public domain)",
"common_name": "Hoary bat",
"scientific_name": "Lasiurus cinereus",
"image_description": "",
"image_description_users": []
},
{
"file": "Lasiurus cinereus 2.jpg",
"attribution": "Larisa Bishop-Boros (CC BY-SA)",
"common_name": "Hoary bat",
"scientific_name": "Lasiurus cinereus",
"image_description": "",
"image_description_users": []
},
{
"file": "Kerivoula intermedia 1.jpg",
"attribution": "Dave R. Bennett (CC BY-SA)",
"common_name": "Small woolly bat",
"scientific_name": "Kerivoula intermedia",
"image_description": "",
"image_description_users": []
},
{
"file": "Kerivoula papillosa 1.jpg",
"attribution": "Gabor Csorba, et al. (CC BY)",
"common_name": "Papillose woolly bat",
"scientific_name": "Kerivoula papillosa",
"image_description": "",
"image_description_users": []