imw 0.2.7 → 0.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Gemfile +23 -0
- data/Gemfile.lock +47 -0
- data/LICENSE +20 -674
- data/README.rdoc +3 -4
- data/VERSION +1 -1
- data/lib/imw.rb +64 -35
- data/lib/imw/dataset.rb +12 -2
- data/lib/imw/formats.rb +4 -2
- data/lib/imw/formats/delimited.rb +96 -36
- data/lib/imw/formats/excel.rb +69 -101
- data/lib/imw/formats/json.rb +3 -5
- data/lib/imw/formats/pdf.rb +71 -0
- data/lib/imw/formats/yaml.rb +3 -5
- data/lib/imw/metadata.rb +66 -0
- data/lib/imw/metadata/contains_metadata.rb +44 -0
- data/lib/imw/metadata/dsl.rb +111 -0
- data/lib/imw/metadata/field.rb +65 -0
- data/lib/imw/metadata/schema.rb +227 -0
- data/lib/imw/metadata/schematized.rb +27 -0
- data/lib/imw/parsers.rb +1 -0
- data/lib/imw/parsers/flat.rb +44 -0
- data/lib/imw/resource.rb +36 -224
- data/lib/imw/schemes.rb +3 -1
- data/lib/imw/schemes/hdfs.rb +12 -1
- data/lib/imw/schemes/http.rb +1 -2
- data/lib/imw/schemes/local.rb +139 -16
- data/lib/imw/schemes/remote.rb +14 -9
- data/lib/imw/schemes/s3.rb +12 -0
- data/lib/imw/schemes/sql.rb +117 -0
- data/lib/imw/tools.rb +5 -3
- data/lib/imw/tools/downloader.rb +63 -0
- data/lib/imw/tools/summarizer.rb +21 -10
- data/lib/imw/utils.rb +10 -0
- data/lib/imw/utils/dynamically_extendable.rb +137 -0
- data/lib/imw/utils/error.rb +3 -0
- data/lib/imw/utils/extensions.rb +0 -4
- data/lib/imw/utils/extensions/array.rb +6 -7
- data/lib/imw/utils/extensions/hash.rb +3 -5
- data/lib/imw/utils/extensions/string.rb +3 -3
- data/lib/imw/utils/has_uri.rb +114 -0
- data/spec/data/{sample.csv → formats/delimited/sample.csv} +1 -1
- data/spec/data/{sample.tsv → formats/delimited/sample.tsv} +0 -0
- data/spec/data/formats/delimited/with_schema/ace-hardware-locations.tsv +11 -0
- data/spec/data/formats/delimited/with_schema/all-countries-ip-address-to-geolocation-data.tsv +16 -0
- data/spec/data/formats/delimited/with_schema/complete-list-of-starbucks-locations.tsv +11 -0
- data/spec/data/formats/delimited/with_schema/myspace-user-activity-stream-cumulative-word-count-from-from-dec.tsv +22 -0
- data/spec/data/formats/delimited/with_schema/myspace-user-activity-stream-myspace-application-adds-by-zip-cod.tsv +22 -0
- data/spec/data/formats/delimited/with_schema/myspace-user-activity-stream-myspace-application-counts.tsv +12 -0
- data/spec/data/formats/delimited/with_schema/myspace-user-activity-stream-user-count-by-latlong.tsv +13 -0
- data/spec/data/formats/delimited/with_schema/myspace-user-activity-stream-user-count-by-zip-code.tsv +22 -0
- data/spec/data/formats/delimited/with_schema/myspace-user-activity-stream-word-count-by-day-from-december-200.tsv +22 -0
- data/spec/data/formats/delimited/without_schema/ace-hardware-locations.tsv +10 -0
- data/spec/data/formats/delimited/without_schema/all-countries-ip-address-to-geolocation-data.tsv +15 -0
- data/spec/data/formats/delimited/without_schema/complete-list-of-starbucks-locations.tsv +10 -0
- data/spec/data/formats/delimited/without_schema/myspace-user-activity-stream-cumulative-word-count-from-from-dec.tsv +21 -0
- data/spec/data/formats/delimited/without_schema/myspace-user-activity-stream-myspace-application-adds-by-zip-cod.tsv +21 -0
- data/spec/data/formats/delimited/without_schema/myspace-user-activity-stream-myspace-application-counts.tsv +11 -0
- data/spec/data/formats/delimited/without_schema/myspace-user-activity-stream-user-count-by-latlong.tsv +12 -0
- data/spec/data/formats/delimited/without_schema/myspace-user-activity-stream-user-count-by-zip-code.tsv +21 -0
- data/spec/data/formats/delimited/without_schema/myspace-user-activity-stream-word-count-by-day-from-december-200.tsv +21 -0
- data/spec/data/formats/excel/sample.xls +0 -0
- data/spec/data/formats/json/sample.json +1 -0
- data/spec/data/formats/none/sample +650 -0
- data/spec/data/formats/sgml/sample.xml +617 -0
- data/spec/data/formats/text/sample.txt +650 -0
- data/spec/data/formats/yaml/sample.yaml +410 -0
- data/spec/data/schema-tabular.yaml +11 -0
- data/spec/imw/formats/delimited_spec.rb +34 -2
- data/spec/imw/formats/excel_spec.rb +55 -0
- data/spec/imw/formats/json_spec.rb +3 -3
- data/spec/imw/formats/sgml_spec.rb +4 -4
- data/spec/imw/formats/yaml_spec.rb +3 -3
- data/spec/imw/metadata/field_spec.rb +26 -0
- data/spec/imw/metadata/schema_spec.rb +27 -0
- data/spec/imw/metadata_spec.rb +39 -0
- data/spec/imw/parsers/line_parser_spec.rb +1 -1
- data/spec/imw/resource_spec.rb +0 -100
- data/spec/imw/schemes/hdfs_spec.rb +19 -13
- data/spec/imw/schemes/local_spec.rb +59 -3
- data/spec/imw/schemes/s3_spec.rb +4 -0
- data/spec/imw/utils/dynamically_extendable_spec.rb +69 -0
- data/spec/imw/utils/has_uri_spec.rb +55 -0
- data/spec/spec_helper.rb +1 -2
- data/spec/support/random.rb +4 -4
- metadata +58 -17
- data/CHANGELOG +0 -0
- data/TODO +0 -18
- data/spec/data/sample.json +0 -782
- data/spec/data/sample.txt +0 -131
- data/spec/data/sample.xml +0 -653
- data/spec/data/sample.yaml +0 -651
- data/spec/spec.opts +0 -4
- data/spec/support/extensions.rb +0 -18
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
IP_BeginNum IP_EndNum IP_SubBlock IP_Begin IP_End Country State City ZipCode Latitude Longitude MetroCode AreaCode
|
|
2
|
+
16777216 16842751 256 1.0.0.0 1.0.255.255 AP 35.0 105.0
|
|
3
|
+
16842752 16908287 257 1.1.0.0 1.1.255.255 AP 35.0 105.0
|
|
4
|
+
16908288 16973823 258 1.2.0.0 1.2.255.255 AP 35.0 105.0
|
|
5
|
+
16973824 17039359 259 1.3.0.0 1.3.255.255 AP 35.0 105.0
|
|
6
|
+
17039360 17104895 260 1.4.0.0 1.4.255.255 AP 35.0 105.0
|
|
7
|
+
17104896 17170431 261 1.5.0.0 1.5.255.255 AP 35.0 105.0
|
|
8
|
+
17170432 17235967 262 1.6.0.0 1.6.255.255 AP 35.0 105.0
|
|
9
|
+
17235968 17301503 263 1.7.0.0 1.7.255.255 AP 35.0 105.0
|
|
10
|
+
17301504 17367039 264 1.8.0.0 1.8.255.255 AP 35.0 105.0
|
|
11
|
+
17367040 17432575 265 1.9.0.0 1.9.255.255 AP 35.0 105.0
|
|
12
|
+
17432576 17498111 266 1.10.0.0 1.10.255.255 AP 35.0 105.0
|
|
13
|
+
17498112 17563647 267 1.11.0.0 1.11.255.255 AP 35.0 105.0
|
|
14
|
+
17563648 17629183 268 1.12.0.0 1.12.255.255 AP 35.0 105.0
|
|
15
|
+
17629184 17694719 269 1.13.0.0 1.13.255.255 AP 35.0 105.0
|
|
16
|
+
17694720 17760255 270 1.14.0.0 1.14.255.255 AP 35.0 105.0
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
Store Number Store Name Address City State Zip Phone Wireless Latitude Longitude
|
|
2
|
+
103704 Grand & Reems, Surprise 18885 N. Reems Road - #105 Surprise AZ 85374 623-584-5015 wireless 33.646084 -112.389903
|
|
3
|
+
98887 Safeway-Sun City West #1520 14505 W Grand Ave Surprise AZ 85374 623-975-4022 33.655002 -112.371358
|
|
4
|
+
97730 Safeway-Surprise #1997 17049 W Bell Rd Surprise AZ 85374 623-518-1059 33.638805 -112.42561
|
|
5
|
+
97179 Safeway-Surprise #2699 13828 W Waddell Rd Surprise AZ 85374 623-476-1810 33.609216 -112.357999
|
|
6
|
+
23371 Albertsons-Tempe AZ #940 750 E Guadalupe Rd Tempe AZ 85283 480-820-8166 33.364742 -111.92974
|
|
7
|
+
78041 Aramark ASU Bookstore 525 E. Orange St. Tempe AZ 85287 480-727-0830 33.418367 -111.931272
|
|
8
|
+
78040 Aramark ASU Business College College of Business 1st Floor Tempe AZ 85287 480-727-0019 33.4148 -111.9088
|
|
9
|
+
78022 Aramark ASU Memorial Union 2090 S Normal Tempe AZ 85287 480-727-7480 33.416721 -111.933296
|
|
10
|
+
94352 Aramark ASU Palo Verde East 340 E University Dr Tempe AZ 85287 480-727-0462 33.421975 -111.934342
|
|
11
|
+
1417 Arizona Mills 5000 Arizona Mills Circle - Suite #391 Tempe AZ 85282 (480) 897-4804 wireless 33.379419 -111.965053
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Word Count
|
|
2
|
+
accaldata 4
|
|
3
|
+
accaldato 4
|
|
4
|
+
accalia 124
|
|
5
|
+
accallonato 2
|
|
6
|
+
accally 3
|
|
7
|
+
accalmie 5
|
|
8
|
+
accaly 4
|
|
9
|
+
accampato 2
|
|
10
|
+
accanimento 2
|
|
11
|
+
accanisce 4
|
|
12
|
+
accaniti 4
|
|
13
|
+
accanito 3
|
|
14
|
+
accannate 3
|
|
15
|
+
accannato 3
|
|
16
|
+
accant 8
|
|
17
|
+
accanto 135
|
|
18
|
+
accantonate 2
|
|
19
|
+
accaount 7
|
|
20
|
+
accapalla 3
|
|
21
|
+
accapar 6
|
|
22
|
+
accape 2
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
ZIP Code Application Count
|
|
2
|
+
10000 Dragon Wars 9
|
|
3
|
+
10000 SuperPoke Pets 179
|
|
4
|
+
10000 Dancing Bananas_ 75
|
|
5
|
+
10000 digitck 1
|
|
6
|
+
10000 Random Friend Viewer 56
|
|
7
|
+
10000 Daily Horoscope 1
|
|
8
|
+
10000 FARKLE 30
|
|
9
|
+
10000 Chat 12
|
|
10
|
+
10000 Hero World 47
|
|
11
|
+
10000 PinkRibbon 7
|
|
12
|
+
10000 Super Slot Machines 47
|
|
13
|
+
10000 RSS Reader 5
|
|
14
|
+
10000 SexGames 36
|
|
15
|
+
10001 Astrology 18
|
|
16
|
+
10001 Rockstars 3
|
|
17
|
+
10001 Movies 50
|
|
18
|
+
10001 Green Spot 30
|
|
19
|
+
10001 RockYou Pets 95
|
|
20
|
+
10001 Tag Me 1415
|
|
21
|
+
10001 Nitrous Racing 18
|
|
22
|
+
10001 Baby Animals Dressup Tiger 3
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Application Count
|
|
2
|
+
Addicted to Xena 13
|
|
3
|
+
Addicted to Zoey 101 4
|
|
4
|
+
Addicting Games - Free Kicker 3
|
|
5
|
+
Addiction 10
|
|
6
|
+
Adopt A Pet 176
|
|
7
|
+
Adopt a Friend 660
|
|
8
|
+
Adorable Pet Chinchilla 64
|
|
9
|
+
Adorable Puppies 32
|
|
10
|
+
Adorable Twins 7
|
|
11
|
+
Adorninho against the Tsunami 1
|
|
12
|
+
Adrenaline Challenge 30
|
data/spec/data/formats/delimited/with_schema/myspace-user-activity-stream-user-count-by-zip-code.tsv
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
ZIP Code Count
|
|
2
|
+
10000 65859
|
|
3
|
+
10001 146663
|
|
4
|
+
10002 48672
|
|
5
|
+
10003 37804
|
|
6
|
+
10003-8915 4
|
|
7
|
+
10004 11513
|
|
8
|
+
10004-0759 2
|
|
9
|
+
10005 10425
|
|
10
|
+
10006 5329
|
|
11
|
+
10007 8734
|
|
12
|
+
10008 5922
|
|
13
|
+
10009 46003
|
|
14
|
+
10010 24065
|
|
15
|
+
10011 61619
|
|
16
|
+
10012 22312
|
|
17
|
+
10013 13164
|
|
18
|
+
10013-1315 7
|
|
19
|
+
10014 9677
|
|
20
|
+
10015 5715
|
|
21
|
+
10016 17570
|
|
22
|
+
10017 11567
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Date (YYYYMMDD) Word Count
|
|
2
|
+
20030905 creative 2
|
|
3
|
+
20030905 disappointed 2
|
|
4
|
+
20030905 none 6
|
|
5
|
+
20030905 sweaty 2
|
|
6
|
+
20031021 accepting 2
|
|
7
|
+
20031021 accomplished 16
|
|
8
|
+
20031021 adored 8
|
|
9
|
+
20031021 adventurous 6
|
|
10
|
+
20031021 aggravated 4
|
|
11
|
+
20031021 amorous 2
|
|
12
|
+
20031021 amused 10
|
|
13
|
+
20031021 angry 4
|
|
14
|
+
20031021 angsty 2
|
|
15
|
+
20031021 animated 3
|
|
16
|
+
20031021 annoyed 15
|
|
17
|
+
20031021 anxious 4
|
|
18
|
+
20031021 apathetic 3
|
|
19
|
+
20031021 artistic 2
|
|
20
|
+
20031021 awake 4
|
|
21
|
+
20031021 basslined 2
|
|
22
|
+
20031021 betrayed 2
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
10344 Ace Gambles of Hotchkiss 121 E. Bridge Street Hotchkiss CO 81419 (970) 872-3535 38.7988 -107.7205
|
|
2
|
+
10347 Al's Ace Hardware 4010 E 29th St Tucson AZ 85711 (520) 747-8144 32.1996 -110.9059
|
|
3
|
+
10349 Al's Ace Hardware 4722 E Broadway Blvd Tucson AZ 85711 (520) 318-0414 32.2216 -110.8916
|
|
4
|
+
10351 Al's Ace Hardware 2884 N Campbell Ave Tucson AZ 85719 (520) 325-2432 32.259 -110.9428
|
|
5
|
+
10353 Lewistown Ace Hardware 815 NE Main St Lewistown MT 59457 (406) 538-4000 47.0702 -109.409
|
|
6
|
+
10356 Byram Revell Ace Hardware 5726 Terry Rd Jackson MS 39272 (601) 371-8429 32.1919 -90.2542
|
|
7
|
+
10357 Mr C's Ace Hardware 1201 Precinct Line Rd Hurst TX 76053 (817) 282-3428 32.831 -97.186
|
|
8
|
+
10358 Gus Bock Ace Hardware 3455 Ridge Rd Lansing IL 60438 (708) 474-5940 41.5643 -87.5321
|
|
9
|
+
10359 Elberton Ace Hardware 886 Elbert St Elberton GA 30635 (706) 283-3054 34.1008 -82.8495
|
|
10
|
+
10361 Phil's Hardware 13 SW H St Madras OR 97741 (541) 475-9392 44.627737 -121.13004
|
data/spec/data/formats/delimited/without_schema/all-countries-ip-address-to-geolocation-data.tsv
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
16777216 16842751 256 1.0.0.0 1.0.255.255 AP 35.0 105.0
|
|
2
|
+
16842752 16908287 257 1.1.0.0 1.1.255.255 AP 35.0 105.0
|
|
3
|
+
16908288 16973823 258 1.2.0.0 1.2.255.255 AP 35.0 105.0
|
|
4
|
+
16973824 17039359 259 1.3.0.0 1.3.255.255 AP 35.0 105.0
|
|
5
|
+
17039360 17104895 260 1.4.0.0 1.4.255.255 AP 35.0 105.0
|
|
6
|
+
17104896 17170431 261 1.5.0.0 1.5.255.255 AP 35.0 105.0
|
|
7
|
+
17170432 17235967 262 1.6.0.0 1.6.255.255 AP 35.0 105.0
|
|
8
|
+
17235968 17301503 263 1.7.0.0 1.7.255.255 AP 35.0 105.0
|
|
9
|
+
17301504 17367039 264 1.8.0.0 1.8.255.255 AP 35.0 105.0
|
|
10
|
+
17367040 17432575 265 1.9.0.0 1.9.255.255 AP 35.0 105.0
|
|
11
|
+
17432576 17498111 266 1.10.0.0 1.10.255.255 AP 35.0 105.0
|
|
12
|
+
17498112 17563647 267 1.11.0.0 1.11.255.255 AP 35.0 105.0
|
|
13
|
+
17563648 17629183 268 1.12.0.0 1.12.255.255 AP 35.0 105.0
|
|
14
|
+
17629184 17694719 269 1.13.0.0 1.13.255.255 AP 35.0 105.0
|
|
15
|
+
17694720 17760255 270 1.14.0.0 1.14.255.255 AP 35.0 105.0
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
103704 Grand & Reems, Surprise 18885 N. Reems Road - #105 Surprise AZ 85374 623-584-5015 wireless 33.646084 -112.389903
|
|
2
|
+
98887 Safeway-Sun City West #1520 14505 W Grand Ave Surprise AZ 85374 623-975-4022 33.655002 -112.371358
|
|
3
|
+
97730 Safeway-Surprise #1997 17049 W Bell Rd Surprise AZ 85374 623-518-1059 33.638805 -112.42561
|
|
4
|
+
97179 Safeway-Surprise #2699 13828 W Waddell Rd Surprise AZ 85374 623-476-1810 33.609216 -112.357999
|
|
5
|
+
23371 Albertsons-Tempe AZ #940 750 E Guadalupe Rd Tempe AZ 85283 480-820-8166 33.364742 -111.92974
|
|
6
|
+
78041 Aramark ASU Bookstore 525 E. Orange St. Tempe AZ 85287 480-727-0830 33.418367 -111.931272
|
|
7
|
+
78040 Aramark ASU Business College College of Business 1st Floor Tempe AZ 85287 480-727-0019 33.4148 -111.9088
|
|
8
|
+
78022 Aramark ASU Memorial Union 2090 S Normal Tempe AZ 85287 480-727-7480 33.416721 -111.933296
|
|
9
|
+
94352 Aramark ASU Palo Verde East 340 E University Dr Tempe AZ 85287 480-727-0462 33.421975 -111.934342
|
|
10
|
+
1417 Arizona Mills 5000 Arizona Mills Circle - Suite #391 Tempe AZ 85282 (480) 897-4804 wireless 33.379419 -111.965053
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
accaldata 4
|
|
2
|
+
accaldato 4
|
|
3
|
+
accalia 124
|
|
4
|
+
accallonato 2
|
|
5
|
+
accally 3
|
|
6
|
+
accalmie 5
|
|
7
|
+
accaly 4
|
|
8
|
+
accampato 2
|
|
9
|
+
accanimento 2
|
|
10
|
+
accanisce 4
|
|
11
|
+
accaniti 4
|
|
12
|
+
accanito 3
|
|
13
|
+
accannate 3
|
|
14
|
+
accannato 3
|
|
15
|
+
accant 8
|
|
16
|
+
accanto 135
|
|
17
|
+
accantonate 2
|
|
18
|
+
accaount 7
|
|
19
|
+
accapalla 3
|
|
20
|
+
accapar 6
|
|
21
|
+
accape 2
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
10000 Dragon Wars 9
|
|
2
|
+
10000 SuperPoke Pets 179
|
|
3
|
+
10000 Dancing Bananas_ 75
|
|
4
|
+
10000 digitck 1
|
|
5
|
+
10000 Random Friend Viewer 56
|
|
6
|
+
10000 Daily Horoscope 1
|
|
7
|
+
10000 FARKLE 30
|
|
8
|
+
10000 Chat 12
|
|
9
|
+
10000 Hero World 47
|
|
10
|
+
10000 PinkRibbon 7
|
|
11
|
+
10000 Super Slot Machines 47
|
|
12
|
+
10000 RSS Reader 5
|
|
13
|
+
10000 SexGames 36
|
|
14
|
+
10001 Astrology 18
|
|
15
|
+
10001 Rockstars 3
|
|
16
|
+
10001 Movies 50
|
|
17
|
+
10001 Green Spot 30
|
|
18
|
+
10001 RockYou Pets 95
|
|
19
|
+
10001 Tag Me 1415
|
|
20
|
+
10001 Nitrous Racing 18
|
|
21
|
+
10001 Baby Animals Dressup Tiger 3
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
Addicted to Xena 13
|
|
2
|
+
Addicted to Zoey 101 4
|
|
3
|
+
Addicting Games - Free Kicker 3
|
|
4
|
+
Addiction 10
|
|
5
|
+
Adopt A Pet 176
|
|
6
|
+
Adopt a Friend 660
|
|
7
|
+
Adorable Pet Chinchilla 64
|
|
8
|
+
Adorable Puppies 32
|
|
9
|
+
Adorable Twins 7
|
|
10
|
+
Adorninho against the Tsunami 1
|
|
11
|
+
Adrenaline Challenge 30
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
10000 65859
|
|
2
|
+
10001 146663
|
|
3
|
+
10002 48672
|
|
4
|
+
10003 37804
|
|
5
|
+
10003-8915 4
|
|
6
|
+
10004 11513
|
|
7
|
+
10004-0759 2
|
|
8
|
+
10005 10425
|
|
9
|
+
10006 5329
|
|
10
|
+
10007 8734
|
|
11
|
+
10008 5922
|
|
12
|
+
10009 46003
|
|
13
|
+
10010 24065
|
|
14
|
+
10011 61619
|
|
15
|
+
10012 22312
|
|
16
|
+
10013 13164
|
|
17
|
+
10013-1315 7
|
|
18
|
+
10014 9677
|
|
19
|
+
10015 5715
|
|
20
|
+
10016 17570
|
|
21
|
+
10017 11567
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
20030905 creative 2
|
|
2
|
+
20030905 disappointed 2
|
|
3
|
+
20030905 none 6
|
|
4
|
+
20030905 sweaty 2
|
|
5
|
+
20031021 accepting 2
|
|
6
|
+
20031021 accomplished 16
|
|
7
|
+
20031021 adored 8
|
|
8
|
+
20031021 adventurous 6
|
|
9
|
+
20031021 aggravated 4
|
|
10
|
+
20031021 amorous 2
|
|
11
|
+
20031021 amused 10
|
|
12
|
+
20031021 angry 4
|
|
13
|
+
20031021 angsty 2
|
|
14
|
+
20031021 animated 3
|
|
15
|
+
20031021 annoyed 15
|
|
16
|
+
20031021 anxious 4
|
|
17
|
+
20031021 apathetic 3
|
|
18
|
+
20031021 artistic 2
|
|
19
|
+
20031021 awake 4
|
|
20
|
+
20031021 basslined 2
|
|
21
|
+
20031021 betrayed 2
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"Mandrillus":[{"species":"sphinx","name":"Mandrill","id":113},{"species":"leucophaeus","name":"Drill","id":114}],"Rungwecebus":[{"species":"kipunji","name":"Kipunji","id":100}],"Miopithecus":[{"species":"talapoin","name":"Angolan Talapoin","id":38},{"species":"ogouensis","name":"Gabon Talapoin","id":39}],"Presbytis":[{"species":"rubicunda","name":"Maroon Leaf Monkey","id":130}],"Lophocebus":[{"species":"albigena","name":"Grey-cheeked Mangabey","id":94},{"species":"aterrimus","name":"Black Crested Mangabey","id":95},{"species":"opdenboschi","name":"Opdenbosch's Mangabey","id":96},{"species":"ugandae","name":"Uganda Mangabey","id":97},{"species":"johnstoni","name":"Johnston's Mangabey","id":98},{"species":"osmani","name":"Osman Hill's Mangabey","id":99}],"Erythrocebus":[{"species":"patas","name":"Patas Monkey","id":40}],"Piliocolobus":[{"species":"badius","name":"Western Red Colobus","id":120},{"species":"pennantii","name":"Pennant's Colobus","id":121},{"species":"preussi","name":"Preuss's Red Colobus","id":122},{"species":"tholloni","name":"Thollon's Red Colobus","id":123},{"species":"foai","name":"Central African Red Colobus","id":124},{"species":"tephrosceles","name":"Ugandan Red Colobus","id":125},{"species":"gordonorum","name":"Uzungwa Red Colobus","id":126},{"species":"kirkii","name":"Zanzibar Red Colobus","id":127},{"species":"rufomitratus","name":"Tana River Red Colobus","id":128}],"Cercocebus":[{"species":"atys","name":"Sooty Mangabey","id":107},{"species":"torquatus","name":"Collared Mangabey","id":108},{"species":"agilis","name":"Agile Mangabey","id":109},{"species":"chrysogaster","name":"Golden-bellied Mangabey","id":110},{"species":"galeritus","name":"Tana River Mangabey","id":111},{"species":"sanjei","name":"Sanje Mangabey","id":112}],"Theropithecus":[{"species":"gelada","name":"Gelada","id":106}],"Papio":[{"species":"hamadryas","name":"Hamadryas Baboon","id":101},{"species":"papio","name":"Guinea Baboon","id":102},{"species":"anubis","name":"Olive Baboon","id":103},{"species":"cynocephalus","name":"Yellow Baboon","id":104},{"species":"ursinus","name":"Chacma Baboon","id":105}],"Chlorocebus":[{"species":"sabaeus","name":"Green Monkey","id":41},{"species":"aethiops","name":"Grivet","id":42},{"species":"djamdjamensis","name":"Bale Mountains Vervet","id":43},{"species":"tantalus","name":"Tantalus Monkey","id":44},{"species":"pygerythrus","name":"Vervet Monkey","id":45},{"species":"cynosuros","name":"Malbrouck","id":46}],"Allenopithecus":[{"species":"nigroviridis","name":"Allen's Swamp Monkey","id":37}],"Procolobus":[{"species":"verus","name":"Olive Colobus","id":129}],"Hylobates":[{"species":"lar lar","name":"Malaysian Lar Gibbon","id":9},{"species":"lar carpenteri","name":"Carpenter's Lar Gibbon","id":10},{"species":"lar entelloides","name":"Central Lar Gibbon","id":11},{"species":"lar vestitus","name":"Sumatran Lar Gibbon","id":12},{"species":"lar yunnanensis","name":"Yunnan Lar Gibbon","id":13},{"species":"agilis agilis","name":"Mountain Agile Gibbon","id":14},{"species":"agilis albibarbis","name":"Bornean White-bearded Gibbon","id":15},{"species":"agilis unko","name":"Lowland Agile Gibbon","id":16},{"species":"muelleri muelleri","name":"Müller's Gray Gibbon","id":17},{"species":"muelleri abbotti","name":"Abbott's Gray Gibbon","id":18},{"species":"muelleri funereus","name":"Northern Gray Gibbon","id":19}],"Aotus":[{"species":"lemurinus","name":"Gray-bellied Night Monkey","id":1},{"species":"zonalis","name":"Panamanian Night Monkey","id":2},{"species":"jorgehernandezi","name":"Hernández-Camacho's Night Monkey","id":3},{"species":"griseimembra","name":"Gray-handed Night Monkey","id":4},{"species":"hershkovitzi","name":"Hershkovitz's Night Monkey","id":5},{"species":"brumbacki","name":"Brumback's Night Monkey","id":6},{"species":"trivirgatus","name":"Three-striped Night Monkey","id":7},{"species":"vociferans","name":"Spix's Night Monkey","id":8}],"Macaca":[{"species":"sylvanus","name":"Barbary Macaque","id":72},{"species":"silenus","name":"Lion-tailed Macaque","id":73},{"species":"nemestrina","name":"Southern Pig-tailed Macaque or Beruk","id":74},{"species":"leonina","name":"Northern Pig-tailed Macaque","id":75},{"species":"pagensis","name":"Pagai Island Macaque or Bokkoi","id":76},{"species":"siberu","name":"Siberut Macaque","id":77},{"species":"maura","name":"Moor Macaque","id":78},{"species":"ochreata","name":"Booted Macaque","id":79},{"species":"tonkeana","name":"Tonkean Macaque","id":80},{"species":"hecki","name":"Heck's Macaque","id":81},{"species":"nigrescens","name":"Gorontalo Macaque","id":82},{"species":"nigra","name":"Celebes Crested Macaque or Black Ape","id":83},{"species":"fascicularis","name":"Crab-eating Macaque or Long-tailed Macaque or Kera","id":84},{"species":"arctoides","name":"Stump-tailed Macaque or Bear Macaque","id":85},{"species":"mulatta","name":"Rhesus Macaque","id":86},{"species":"cyclopis","name":"Formosan Rock Macaque","id":87},{"species":"fuscata","name":"Japanese Macaque","id":88},{"species":"sinica","name":"Toque Macaque","id":89},{"species":"radiata","name":"Bonnet Macaque","id":90},{"species":"assamensis","name":"Assam Macaque","id":91},{"species":"thibetana","name":"Tibetan Macaque or Milne-Edwards' Macaque","id":92},{"species":"munzala","name":"Arunachal Macaque or Munzala","id":93}],"Colobus":[{"species":"satanas","name":"Black Colobus","id":115},{"species":"angolensis","name":"Angola Colobus","id":116},{"species":"polykomos","name":"King Colobus","id":117},{"species":"vellerosus","name":"Ursine Colobus","id":118},{"species":"guereza","name":"Mantled Guereza","id":119}],"Cercopithecus":[{"species":"dryas","name":"Dryas Monkey or Salongo Monkey","id":47},{"species":"diana","name":"Diana Monkey","id":48},{"species":"roloway","name":"Roloway Monkey","id":49},{"species":"nictitans","name":"Greater Spot-nosed Monkey","id":50},{"species":"mitis","name":"Blue Monkey","id":51},{"species":"doggetti","name":"Silver Monkey","id":52},{"species":"kandti","name":"Golden Monkey","id":53},{"species":"albogularis","name":"Sykes's Monkey","id":54},{"species":"mona","name":"Mona Monkey","id":55},{"species":"campbelli","name":"Campbell's Mona Monkey","id":56},{"species":"lowei","name":"Lowe's Mona Monkey","id":57},{"species":"pogonias","name":"Crested Mona Monkey","id":58},{"species":"wolfi","name":"Wolf's Mona Monkey","id":59},{"species":"denti","name":"Dent's Mona Monkey","id":60},{"species":"petaurista","name":"Lesser Spot-nosed Monkey","id":61},{"species":"erythrogaster","name":"White-throated Guenon","id":62},{"species":"sclateri","name":"Sclater's Guenon","id":63},{"species":"erythrotis","name":"Red-eared Guenon","id":64},{"species":"cephus","name":"Moustached Guenon","id":65},{"species":"ascanius","name":"Red-tailed Monkey","id":66},{"species":"lhoesti","name":"L'Hoest's Monkey","id":67},{"species":"preussi","name":"Preuss's Monkey","id":68},{"species":"solatus","name":"Sun-tailed Monkey","id":69},{"species":"hamlyni","name":"Hamlyn's Monkey","id":70},{"species":"neglectus","name":"De Brazza's Monkey","id":71}],"Saguinas":[{"species":"niger","name":"Black Tamarin","id":20},{"species":"nigricollis","name":"Black-mantled Tamarin","id":21},{"species":"fuscicollis","name":"Brown-mantled Tamarin","id":22},{"species":"oedipus","name":"Cottontop Tamarin or Pinché Tamarin","id":23},{"species":"imperator","name":"Emperor Tamarin","id":24},{"species":"geoffroyi","name":"Geoffroy's Tamarin","id":25},{"species":"tripartitus","name":"Golden-mantled Tamarin","id":26},{"species":"graellsi","name":"Graells's Tamarin","id":27},{"species":"martinsi","name":"Martins's Tamarin","id":28},{"species":"inustus","name":"Mottle-faced Tamarin","id":29},{"species":"mystax","name":"Moustached Tamarin","id":30},{"species":"bicolor","name":"Pied Tamarin","id":31},{"species":"pileatus","name":"Red-capped Tamarin","id":32},{"species":"midas","name":"Red-handed Tamarin","id":33},{"species":"leucopus","name":"White-footed Tamarin","id":34},{"species":"labiatus","name":"White-lipped Tamarin","id":35},{"species":"melanoleucus","name":"White-mantled Tamarin","id":36}]}
|
|
@@ -0,0 +1,650 @@
|
|
|
1
|
+
ID: 001
|
|
2
|
+
NAME: Gray-bellied Night Monkey
|
|
3
|
+
GENUS: Aotus
|
|
4
|
+
SPECIES: lemurinus
|
|
5
|
+
|
|
6
|
+
ID: 002
|
|
7
|
+
NAME: Panamanian Night Monkey
|
|
8
|
+
GENUS: Aotus
|
|
9
|
+
SPECIES: zonalis
|
|
10
|
+
|
|
11
|
+
ID: 003
|
|
12
|
+
NAME: Hernández-Camacho's Night Monkey
|
|
13
|
+
GENUS: Aotus
|
|
14
|
+
SPECIES: jorgehernandezi
|
|
15
|
+
|
|
16
|
+
ID: 004
|
|
17
|
+
NAME: Gray-handed Night Monkey
|
|
18
|
+
GENUS: Aotus
|
|
19
|
+
SPECIES: griseimembra
|
|
20
|
+
|
|
21
|
+
ID: 005
|
|
22
|
+
NAME: Hershkovitz's Night Monkey
|
|
23
|
+
GENUS: Aotus
|
|
24
|
+
SPECIES: hershkovitzi
|
|
25
|
+
|
|
26
|
+
ID: 006
|
|
27
|
+
NAME: Brumback's Night Monkey
|
|
28
|
+
GENUS: Aotus
|
|
29
|
+
SPECIES: brumbacki
|
|
30
|
+
|
|
31
|
+
ID: 007
|
|
32
|
+
NAME: Three-striped Night Monkey
|
|
33
|
+
GENUS: Aotus
|
|
34
|
+
SPECIES: trivirgatus
|
|
35
|
+
|
|
36
|
+
ID: 008
|
|
37
|
+
NAME: Spix's Night Monkey
|
|
38
|
+
GENUS: Aotus
|
|
39
|
+
SPECIES: vociferans
|
|
40
|
+
|
|
41
|
+
ID: 009
|
|
42
|
+
NAME: Malaysian Lar Gibbon
|
|
43
|
+
GENUS: Hylobates
|
|
44
|
+
SPECIES: lar lar
|
|
45
|
+
|
|
46
|
+
ID: 010
|
|
47
|
+
NAME: Carpenter's Lar Gibbon
|
|
48
|
+
GENUS: Hylobates
|
|
49
|
+
SPECIES: lar carpenteri
|
|
50
|
+
|
|
51
|
+
ID: 011
|
|
52
|
+
NAME: Central Lar Gibbon
|
|
53
|
+
GENUS: Hylobates
|
|
54
|
+
SPECIES: lar entelloides
|
|
55
|
+
|
|
56
|
+
ID: 012
|
|
57
|
+
NAME: Sumatran Lar Gibbon
|
|
58
|
+
GENUS: Hylobates
|
|
59
|
+
SPECIES: lar vestitus
|
|
60
|
+
|
|
61
|
+
ID: 013
|
|
62
|
+
NAME: Yunnan Lar Gibbon
|
|
63
|
+
GENUS: Hylobates
|
|
64
|
+
SPECIES: lar yunnanensis
|
|
65
|
+
|
|
66
|
+
ID: 014
|
|
67
|
+
NAME: Mountain Agile Gibbon
|
|
68
|
+
GENUS: Hylobates
|
|
69
|
+
SPECIES: agilis agilis
|
|
70
|
+
|
|
71
|
+
ID: 015
|
|
72
|
+
NAME: Bornean White-bearded Gibbon
|
|
73
|
+
GENUS: Hylobates
|
|
74
|
+
SPECIES: agilis albibarbis
|
|
75
|
+
|
|
76
|
+
ID: 016
|
|
77
|
+
NAME: Lowland Agile Gibbon
|
|
78
|
+
GENUS: Hylobates
|
|
79
|
+
SPECIES: agilis unko
|
|
80
|
+
|
|
81
|
+
ID: 017
|
|
82
|
+
NAME: Müller's Gray Gibbon
|
|
83
|
+
GENUS: Hylobates
|
|
84
|
+
SPECIES: muelleri muelleri
|
|
85
|
+
|
|
86
|
+
ID: 018
|
|
87
|
+
NAME: Abbott's Gray Gibbon
|
|
88
|
+
GENUS: Hylobates
|
|
89
|
+
SPECIES: muelleri abbotti
|
|
90
|
+
|
|
91
|
+
ID: 019
|
|
92
|
+
NAME: Northern Gray Gibbon
|
|
93
|
+
GENUS: Hylobates
|
|
94
|
+
SPECIES: muelleri funereus
|
|
95
|
+
|
|
96
|
+
ID: 020
|
|
97
|
+
NAME: Black Tamarin
|
|
98
|
+
GENUS: Saguinas
|
|
99
|
+
SPECIES: niger
|
|
100
|
+
|
|
101
|
+
ID: 021
|
|
102
|
+
NAME: Black-mantled Tamarin
|
|
103
|
+
GENUS: Saguinas
|
|
104
|
+
SPECIES: nigricollis
|
|
105
|
+
|
|
106
|
+
ID: 022
|
|
107
|
+
NAME: Brown-mantled Tamarin
|
|
108
|
+
GENUS: Saguinas
|
|
109
|
+
SPECIES: fuscicollis
|
|
110
|
+
|
|
111
|
+
ID: 023
|
|
112
|
+
NAME: Cottontop Tamarin or Pinché Tamarin
|
|
113
|
+
GENUS: Saguinas
|
|
114
|
+
SPECIES: oedipus
|
|
115
|
+
|
|
116
|
+
ID: 024
|
|
117
|
+
NAME: Emperor Tamarin
|
|
118
|
+
GENUS: Saguinas
|
|
119
|
+
SPECIES: imperator
|
|
120
|
+
|
|
121
|
+
ID: 025
|
|
122
|
+
NAME: Geoffroy's Tamarin
|
|
123
|
+
GENUS: Saguinas
|
|
124
|
+
SPECIES: geoffroyi
|
|
125
|
+
|
|
126
|
+
ID: 026
|
|
127
|
+
NAME: Golden-mantled Tamarin
|
|
128
|
+
GENUS: Saguinas
|
|
129
|
+
SPECIES: tripartitus
|
|
130
|
+
|
|
131
|
+
ID: 027
|
|
132
|
+
NAME: Graells's Tamarin
|
|
133
|
+
GENUS: Saguinas
|
|
134
|
+
SPECIES: graellsi
|
|
135
|
+
|
|
136
|
+
ID: 028
|
|
137
|
+
NAME: Martins's Tamarin
|
|
138
|
+
GENUS: Saguinas
|
|
139
|
+
SPECIES: martinsi
|
|
140
|
+
|
|
141
|
+
ID: 029
|
|
142
|
+
NAME: Mottle-faced Tamarin
|
|
143
|
+
GENUS: Saguinas
|
|
144
|
+
SPECIES: inustus
|
|
145
|
+
|
|
146
|
+
ID: 030
|
|
147
|
+
NAME: Moustached Tamarin
|
|
148
|
+
GENUS: Saguinas
|
|
149
|
+
SPECIES: mystax
|
|
150
|
+
|
|
151
|
+
ID: 031
|
|
152
|
+
NAME: Pied Tamarin
|
|
153
|
+
GENUS: Saguinas
|
|
154
|
+
SPECIES: bicolor
|
|
155
|
+
|
|
156
|
+
ID: 032
|
|
157
|
+
NAME: Red-capped Tamarin
|
|
158
|
+
GENUS: Saguinas
|
|
159
|
+
SPECIES: pileatus
|
|
160
|
+
|
|
161
|
+
ID: 033
|
|
162
|
+
NAME: Red-handed Tamarin
|
|
163
|
+
GENUS: Saguinas
|
|
164
|
+
SPECIES: midas
|
|
165
|
+
|
|
166
|
+
ID: 034
|
|
167
|
+
NAME: White-footed Tamarin
|
|
168
|
+
GENUS: Saguinas
|
|
169
|
+
SPECIES: leucopus
|
|
170
|
+
|
|
171
|
+
ID: 035
|
|
172
|
+
NAME: White-lipped Tamarin
|
|
173
|
+
GENUS: Saguinas
|
|
174
|
+
SPECIES: labiatus
|
|
175
|
+
|
|
176
|
+
ID: 036
|
|
177
|
+
NAME: White-mantled Tamarin
|
|
178
|
+
GENUS: Saguinas
|
|
179
|
+
SPECIES: melanoleucus
|
|
180
|
+
|
|
181
|
+
ID: 037
|
|
182
|
+
NAME: Allen's Swamp Monkey
|
|
183
|
+
GENUS: Allenopithecus
|
|
184
|
+
SPECIES: nigroviridis
|
|
185
|
+
|
|
186
|
+
ID: 038
|
|
187
|
+
NAME: Angolan Talapoin
|
|
188
|
+
GENUS: Miopithecus
|
|
189
|
+
SPECIES: talapoin
|
|
190
|
+
|
|
191
|
+
ID: 039
|
|
192
|
+
NAME: Gabon Talapoin
|
|
193
|
+
GENUS: Miopithecus
|
|
194
|
+
SPECIES: ogouensis
|
|
195
|
+
|
|
196
|
+
ID: 040
|
|
197
|
+
NAME: Patas Monkey
|
|
198
|
+
GENUS: Erythrocebus
|
|
199
|
+
SPECIES: patas
|
|
200
|
+
|
|
201
|
+
ID: 041
|
|
202
|
+
NAME: Green Monkey
|
|
203
|
+
GENUS: Chlorocebus
|
|
204
|
+
SPECIES: sabaeus
|
|
205
|
+
|
|
206
|
+
ID: 042
|
|
207
|
+
NAME: Grivet
|
|
208
|
+
GENUS: Chlorocebus
|
|
209
|
+
SPECIES: aethiops
|
|
210
|
+
|
|
211
|
+
ID: 043
|
|
212
|
+
NAME: Bale Mountains Vervet
|
|
213
|
+
GENUS: Chlorocebus
|
|
214
|
+
SPECIES: djamdjamensis
|
|
215
|
+
|
|
216
|
+
ID: 044
|
|
217
|
+
NAME: Tantalus Monkey
|
|
218
|
+
GENUS: Chlorocebus
|
|
219
|
+
SPECIES: tantalus
|
|
220
|
+
|
|
221
|
+
ID: 045
|
|
222
|
+
NAME: Vervet Monkey
|
|
223
|
+
GENUS: Chlorocebus
|
|
224
|
+
SPECIES: pygerythrus
|
|
225
|
+
|
|
226
|
+
ID: 046
|
|
227
|
+
NAME: Malbrouck
|
|
228
|
+
GENUS: Chlorocebus
|
|
229
|
+
SPECIES: cynosuros
|
|
230
|
+
|
|
231
|
+
ID: 047
|
|
232
|
+
NAME: Dryas Monkey or Salongo Monkey
|
|
233
|
+
GENUS: Cercopithecus
|
|
234
|
+
SPECIES: dryas
|
|
235
|
+
|
|
236
|
+
ID: 048
|
|
237
|
+
NAME: Diana Monkey
|
|
238
|
+
GENUS: Cercopithecus
|
|
239
|
+
SPECIES: diana
|
|
240
|
+
|
|
241
|
+
ID: 049
|
|
242
|
+
NAME: Roloway Monkey
|
|
243
|
+
GENUS: Cercopithecus
|
|
244
|
+
SPECIES: roloway
|
|
245
|
+
|
|
246
|
+
ID: 050
|
|
247
|
+
NAME: Greater Spot-nosed Monkey
|
|
248
|
+
GENUS: Cercopithecus
|
|
249
|
+
SPECIES: nictitans
|
|
250
|
+
|
|
251
|
+
ID: 051
|
|
252
|
+
NAME: Blue Monkey
|
|
253
|
+
GENUS: Cercopithecus
|
|
254
|
+
SPECIES: mitis
|
|
255
|
+
|
|
256
|
+
ID: 052
|
|
257
|
+
NAME: Silver Monkey
|
|
258
|
+
GENUS: Cercopithecus
|
|
259
|
+
SPECIES: doggetti
|
|
260
|
+
|
|
261
|
+
ID: 053
|
|
262
|
+
NAME: Golden Monkey
|
|
263
|
+
GENUS: Cercopithecus
|
|
264
|
+
SPECIES: kandti
|
|
265
|
+
|
|
266
|
+
ID: 054
|
|
267
|
+
NAME: Sykes's Monkey
|
|
268
|
+
GENUS: Cercopithecus
|
|
269
|
+
SPECIES: albogularis
|
|
270
|
+
|
|
271
|
+
ID: 055
|
|
272
|
+
NAME: Mona Monkey
|
|
273
|
+
GENUS: Cercopithecus
|
|
274
|
+
SPECIES: mona
|
|
275
|
+
|
|
276
|
+
ID: 056
|
|
277
|
+
NAME: Campbell's Mona Monkey
|
|
278
|
+
GENUS: Cercopithecus
|
|
279
|
+
SPECIES: campbelli
|
|
280
|
+
|
|
281
|
+
ID: 057
|
|
282
|
+
NAME: Lowe's Mona Monkey
|
|
283
|
+
GENUS: Cercopithecus
|
|
284
|
+
SPECIES: lowei
|
|
285
|
+
|
|
286
|
+
ID: 058
|
|
287
|
+
NAME: Crested Mona Monkey
|
|
288
|
+
GENUS: Cercopithecus
|
|
289
|
+
SPECIES: pogonias
|
|
290
|
+
|
|
291
|
+
ID: 059
|
|
292
|
+
NAME: Wolf's Mona Monkey
|
|
293
|
+
GENUS: Cercopithecus
|
|
294
|
+
SPECIES: wolfi
|
|
295
|
+
|
|
296
|
+
ID: 060
|
|
297
|
+
NAME: Dent's Mona Monkey
|
|
298
|
+
GENUS: Cercopithecus
|
|
299
|
+
SPECIES: denti
|
|
300
|
+
|
|
301
|
+
ID: 061
|
|
302
|
+
NAME: Lesser Spot-nosed Monkey
|
|
303
|
+
GENUS: Cercopithecus
|
|
304
|
+
SPECIES: petaurista
|
|
305
|
+
|
|
306
|
+
ID: 062
|
|
307
|
+
NAME: White-throated Guenon
|
|
308
|
+
GENUS: Cercopithecus
|
|
309
|
+
SPECIES: erythrogaster
|
|
310
|
+
|
|
311
|
+
ID: 063
|
|
312
|
+
NAME: Sclater's Guenon
|
|
313
|
+
GENUS: Cercopithecus
|
|
314
|
+
SPECIES: sclateri
|
|
315
|
+
|
|
316
|
+
ID: 064
|
|
317
|
+
NAME: Red-eared Guenon
|
|
318
|
+
GENUS: Cercopithecus
|
|
319
|
+
SPECIES: erythrotis
|
|
320
|
+
|
|
321
|
+
ID: 065
|
|
322
|
+
NAME: Moustached Guenon
|
|
323
|
+
GENUS: Cercopithecus
|
|
324
|
+
SPECIES: cephus
|
|
325
|
+
|
|
326
|
+
ID: 066
|
|
327
|
+
NAME: Red-tailed Monkey
|
|
328
|
+
GENUS: Cercopithecus
|
|
329
|
+
SPECIES: ascanius
|
|
330
|
+
|
|
331
|
+
ID: 067
|
|
332
|
+
NAME: L'Hoest's Monkey
|
|
333
|
+
GENUS: Cercopithecus
|
|
334
|
+
SPECIES: lhoesti
|
|
335
|
+
|
|
336
|
+
ID: 068
|
|
337
|
+
NAME: Preuss's Monkey
|
|
338
|
+
GENUS: Cercopithecus
|
|
339
|
+
SPECIES: preussi
|
|
340
|
+
|
|
341
|
+
ID: 069
|
|
342
|
+
NAME: Sun-tailed Monkey
|
|
343
|
+
GENUS: Cercopithecus
|
|
344
|
+
SPECIES: solatus
|
|
345
|
+
|
|
346
|
+
ID: 070
|
|
347
|
+
NAME: Hamlyn's Monkey
|
|
348
|
+
GENUS: Cercopithecus
|
|
349
|
+
SPECIES: hamlyni
|
|
350
|
+
|
|
351
|
+
ID: 071
|
|
352
|
+
NAME: De Brazza's Monkey
|
|
353
|
+
GENUS: Cercopithecus
|
|
354
|
+
SPECIES: neglectus
|
|
355
|
+
|
|
356
|
+
ID: 072
|
|
357
|
+
NAME: Barbary Macaque
|
|
358
|
+
GENUS: Macaca
|
|
359
|
+
SPECIES: sylvanus
|
|
360
|
+
|
|
361
|
+
ID: 073
|
|
362
|
+
NAME: Lion-tailed Macaque
|
|
363
|
+
GENUS: Macaca
|
|
364
|
+
SPECIES: silenus
|
|
365
|
+
|
|
366
|
+
ID: 074
|
|
367
|
+
NAME: Southern Pig-tailed Macaque or Beruk
|
|
368
|
+
GENUS: Macaca
|
|
369
|
+
SPECIES: nemestrina
|
|
370
|
+
|
|
371
|
+
ID: 075
|
|
372
|
+
NAME: Northern Pig-tailed Macaque
|
|
373
|
+
GENUS: Macaca
|
|
374
|
+
SPECIES: leonina
|
|
375
|
+
|
|
376
|
+
ID: 076
|
|
377
|
+
NAME: Pagai Island Macaque or Bokkoi
|
|
378
|
+
GENUS: Macaca
|
|
379
|
+
SPECIES: pagensis
|
|
380
|
+
|
|
381
|
+
ID: 077
|
|
382
|
+
NAME: Siberut Macaque
|
|
383
|
+
GENUS: Macaca
|
|
384
|
+
SPECIES: siberu
|
|
385
|
+
|
|
386
|
+
ID: 078
|
|
387
|
+
NAME: Moor Macaque
|
|
388
|
+
GENUS: Macaca
|
|
389
|
+
SPECIES: maura
|
|
390
|
+
|
|
391
|
+
ID: 079
|
|
392
|
+
NAME: Booted Macaque
|
|
393
|
+
GENUS: Macaca
|
|
394
|
+
SPECIES: ochreata
|
|
395
|
+
|
|
396
|
+
ID: 080
|
|
397
|
+
NAME: Tonkean Macaque
|
|
398
|
+
GENUS: Macaca
|
|
399
|
+
SPECIES: tonkeana
|
|
400
|
+
|
|
401
|
+
ID: 081
|
|
402
|
+
NAME: Heck's Macaque
|
|
403
|
+
GENUS: Macaca
|
|
404
|
+
SPECIES: hecki
|
|
405
|
+
|
|
406
|
+
ID: 082
|
|
407
|
+
NAME: Gorontalo Macaque
|
|
408
|
+
GENUS: Macaca
|
|
409
|
+
SPECIES: nigrescens
|
|
410
|
+
|
|
411
|
+
ID: 083
|
|
412
|
+
NAME: Celebes Crested Macaque or Black Ape
|
|
413
|
+
GENUS: Macaca
|
|
414
|
+
SPECIES: nigra
|
|
415
|
+
|
|
416
|
+
ID: 084
|
|
417
|
+
NAME: Crab-eating Macaque or Long-tailed Macaque or Kera
|
|
418
|
+
GENUS: Macaca
|
|
419
|
+
SPECIES: fascicularis
|
|
420
|
+
|
|
421
|
+
ID: 085
|
|
422
|
+
NAME: Stump-tailed Macaque or Bear Macaque
|
|
423
|
+
GENUS: Macaca
|
|
424
|
+
SPECIES: arctoides
|
|
425
|
+
|
|
426
|
+
ID: 086
|
|
427
|
+
NAME: Rhesus Macaque
|
|
428
|
+
GENUS: Macaca
|
|
429
|
+
SPECIES: mulatta
|
|
430
|
+
|
|
431
|
+
ID: 087
|
|
432
|
+
NAME: Formosan Rock Macaque
|
|
433
|
+
GENUS: Macaca
|
|
434
|
+
SPECIES: cyclopis
|
|
435
|
+
|
|
436
|
+
ID: 088
|
|
437
|
+
NAME: Japanese Macaque
|
|
438
|
+
GENUS: Macaca
|
|
439
|
+
SPECIES: fuscata
|
|
440
|
+
|
|
441
|
+
ID: 089
|
|
442
|
+
NAME: Toque Macaque
|
|
443
|
+
GENUS: Macaca
|
|
444
|
+
SPECIES: sinica
|
|
445
|
+
|
|
446
|
+
ID: 090
|
|
447
|
+
NAME: Bonnet Macaque
|
|
448
|
+
GENUS: Macaca
|
|
449
|
+
SPECIES: radiata
|
|
450
|
+
|
|
451
|
+
ID: 091
|
|
452
|
+
NAME: Assam Macaque
|
|
453
|
+
GENUS: Macaca
|
|
454
|
+
SPECIES: assamensis
|
|
455
|
+
|
|
456
|
+
ID: 092
|
|
457
|
+
NAME: Tibetan Macaque or Milne-Edwards' Macaque
|
|
458
|
+
GENUS: Macaca
|
|
459
|
+
SPECIES: thibetana
|
|
460
|
+
|
|
461
|
+
ID: 093
|
|
462
|
+
NAME: Arunachal Macaque or Munzala
|
|
463
|
+
GENUS: Macaca
|
|
464
|
+
SPECIES: munzala
|
|
465
|
+
|
|
466
|
+
ID: 094
|
|
467
|
+
NAME: Grey-cheeked Mangabey
|
|
468
|
+
GENUS: Lophocebus
|
|
469
|
+
SPECIES: albigena
|
|
470
|
+
|
|
471
|
+
ID: 095
|
|
472
|
+
NAME: Black Crested Mangabey
|
|
473
|
+
GENUS: Lophocebus
|
|
474
|
+
SPECIES: aterrimus
|
|
475
|
+
|
|
476
|
+
ID: 096
|
|
477
|
+
NAME: Opdenbosch's Mangabey
|
|
478
|
+
GENUS: Lophocebus
|
|
479
|
+
SPECIES: opdenboschi
|
|
480
|
+
|
|
481
|
+
ID: 097
|
|
482
|
+
NAME: Uganda Mangabey
|
|
483
|
+
GENUS: Lophocebus
|
|
484
|
+
SPECIES: ugandae
|
|
485
|
+
|
|
486
|
+
ID: 098
|
|
487
|
+
NAME: Johnston's Mangabey
|
|
488
|
+
GENUS: Lophocebus
|
|
489
|
+
SPECIES: johnstoni
|
|
490
|
+
|
|
491
|
+
ID: 099
|
|
492
|
+
NAME: Osman Hill's Mangabey
|
|
493
|
+
GENUS: Lophocebus
|
|
494
|
+
SPECIES: osmani
|
|
495
|
+
|
|
496
|
+
ID: 100
|
|
497
|
+
NAME: Kipunji
|
|
498
|
+
GENUS: Rungwecebus
|
|
499
|
+
SPECIES: kipunji
|
|
500
|
+
|
|
501
|
+
ID: 101
|
|
502
|
+
NAME: Hamadryas Baboon
|
|
503
|
+
GENUS: Papio
|
|
504
|
+
SPECIES: hamadryas
|
|
505
|
+
|
|
506
|
+
ID: 102
|
|
507
|
+
NAME: Guinea Baboon
|
|
508
|
+
GENUS: Papio
|
|
509
|
+
SPECIES: papio
|
|
510
|
+
|
|
511
|
+
ID: 103
|
|
512
|
+
NAME: Olive Baboon
|
|
513
|
+
GENUS: Papio
|
|
514
|
+
SPECIES: anubis
|
|
515
|
+
|
|
516
|
+
ID: 104
|
|
517
|
+
NAME: Yellow Baboon
|
|
518
|
+
GENUS: Papio
|
|
519
|
+
SPECIES: cynocephalus
|
|
520
|
+
|
|
521
|
+
ID: 105
|
|
522
|
+
NAME: Chacma Baboon
|
|
523
|
+
GENUS: Papio
|
|
524
|
+
SPECIES: ursinus
|
|
525
|
+
|
|
526
|
+
ID: 106
|
|
527
|
+
NAME: Gelada
|
|
528
|
+
GENUS: Theropithecus
|
|
529
|
+
SPECIES: gelada
|
|
530
|
+
|
|
531
|
+
ID: 107
|
|
532
|
+
NAME: Sooty Mangabey
|
|
533
|
+
GENUS: Cercocebus
|
|
534
|
+
SPECIES: atys
|
|
535
|
+
|
|
536
|
+
ID: 108
|
|
537
|
+
NAME: Collared Mangabey
|
|
538
|
+
GENUS: Cercocebus
|
|
539
|
+
SPECIES: torquatus
|
|
540
|
+
|
|
541
|
+
ID: 109
|
|
542
|
+
NAME: Agile Mangabey
|
|
543
|
+
GENUS: Cercocebus
|
|
544
|
+
SPECIES: agilis
|
|
545
|
+
|
|
546
|
+
ID: 110
|
|
547
|
+
NAME: Golden-bellied Mangabey
|
|
548
|
+
GENUS: Cercocebus
|
|
549
|
+
SPECIES: chrysogaster
|
|
550
|
+
|
|
551
|
+
ID: 111
|
|
552
|
+
NAME: Tana River Mangabey
|
|
553
|
+
GENUS: Cercocebus
|
|
554
|
+
SPECIES: galeritus
|
|
555
|
+
|
|
556
|
+
ID: 112
|
|
557
|
+
NAME: Sanje Mangabey
|
|
558
|
+
GENUS: Cercocebus
|
|
559
|
+
SPECIES: sanjei
|
|
560
|
+
|
|
561
|
+
ID: 113
|
|
562
|
+
NAME: Mandrill
|
|
563
|
+
GENUS: Mandrillus
|
|
564
|
+
SPECIES: sphinx
|
|
565
|
+
|
|
566
|
+
ID: 114
|
|
567
|
+
NAME: Drill
|
|
568
|
+
GENUS: Mandrillus
|
|
569
|
+
SPECIES: leucophaeus
|
|
570
|
+
|
|
571
|
+
ID: 115
|
|
572
|
+
NAME: Black Colobus
|
|
573
|
+
GENUS: Colobus
|
|
574
|
+
SPECIES: satanas
|
|
575
|
+
|
|
576
|
+
ID: 116
|
|
577
|
+
NAME: Angola Colobus
|
|
578
|
+
GENUS: Colobus
|
|
579
|
+
SPECIES: angolensis
|
|
580
|
+
|
|
581
|
+
ID: 117
|
|
582
|
+
NAME: King Colobus
|
|
583
|
+
GENUS: Colobus
|
|
584
|
+
SPECIES: polykomos
|
|
585
|
+
|
|
586
|
+
ID: 118
|
|
587
|
+
NAME: Ursine Colobus
|
|
588
|
+
GENUS: Colobus
|
|
589
|
+
SPECIES: vellerosus
|
|
590
|
+
|
|
591
|
+
ID: 119
|
|
592
|
+
NAME: Mantled Guereza
|
|
593
|
+
GENUS: Colobus
|
|
594
|
+
SPECIES: guereza
|
|
595
|
+
|
|
596
|
+
ID: 120
|
|
597
|
+
NAME: Western Red Colobus
|
|
598
|
+
GENUS: Piliocolobus
|
|
599
|
+
SPECIES: badius
|
|
600
|
+
|
|
601
|
+
ID: 121
|
|
602
|
+
NAME: Pennant's Colobus
|
|
603
|
+
GENUS: Piliocolobus
|
|
604
|
+
SPECIES: pennantii
|
|
605
|
+
|
|
606
|
+
ID: 122
|
|
607
|
+
NAME: Preuss's Red Colobus
|
|
608
|
+
GENUS: Piliocolobus
|
|
609
|
+
SPECIES: preussi
|
|
610
|
+
|
|
611
|
+
ID: 123
|
|
612
|
+
NAME: Thollon's Red Colobus
|
|
613
|
+
GENUS: Piliocolobus
|
|
614
|
+
SPECIES: tholloni
|
|
615
|
+
|
|
616
|
+
ID: 124
|
|
617
|
+
NAME: Central African Red Colobus
|
|
618
|
+
GENUS: Piliocolobus
|
|
619
|
+
SPECIES: foai
|
|
620
|
+
|
|
621
|
+
ID: 125
|
|
622
|
+
NAME: Ugandan Red Colobus
|
|
623
|
+
GENUS: Piliocolobus
|
|
624
|
+
SPECIES: tephrosceles
|
|
625
|
+
|
|
626
|
+
ID: 126
|
|
627
|
+
NAME: Uzungwa Red Colobus
|
|
628
|
+
GENUS: Piliocolobus
|
|
629
|
+
SPECIES: gordonorum
|
|
630
|
+
|
|
631
|
+
ID: 127
|
|
632
|
+
NAME: Zanzibar Red Colobus
|
|
633
|
+
GENUS: Piliocolobus
|
|
634
|
+
SPECIES: kirkii
|
|
635
|
+
|
|
636
|
+
ID: 128
|
|
637
|
+
NAME: Tana River Red Colobus
|
|
638
|
+
GENUS: Piliocolobus
|
|
639
|
+
SPECIES: rufomitratus
|
|
640
|
+
|
|
641
|
+
ID: 129
|
|
642
|
+
NAME: Olive Colobus
|
|
643
|
+
GENUS: Procolobus
|
|
644
|
+
SPECIES: verus
|
|
645
|
+
|
|
646
|
+
ID: 130
|
|
647
|
+
NAME: Maroon Leaf Monkey
|
|
648
|
+
GENUS: Presbytis
|
|
649
|
+
SPECIES: rubicunda
|
|
650
|
+
|