cryptozoologist 1.0.0 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fa68d2f7cdabdd773f55ddda0d0fc9fc5f4926aa
4
- data.tar.gz: b13fd83703a882d98d105df13b2ac77833f3ada4
3
+ metadata.gz: 570fbd64cf5f220a49071fcae1c81caf6bc326a5
4
+ data.tar.gz: ea5573d3408e45bef12310f760411b69c953521d
5
5
  SHA512:
6
- metadata.gz: dcf899674ffccd84cce06c4bae8eddd099505a4857ff3d8ea69e7ccb9558a00b31d9b9ffe3dc4b1df275408101133a9a0de0ac31ef0b3c6b1c05b9deacc8cd90
7
- data.tar.gz: 1b88d9b5fe3c9f7b971bbd28145f9cec3408b2cbc3754508dfe03935b96cd48a320d8c41ea1f28341d6fcc5d48284af781334c4cd89abf04da27965ff0730435
6
+ metadata.gz: 63aa97f9b8549b968191af3969eb9f8f3a90cb7ba083a9bd6f7cf2603f993e465e6b81de09c9d955552fd49c7200472408f381312d6992bd0f091ca5c475ae23
7
+ data.tar.gz: b23288082ac4e9386c6c40ad78549260fb6c20ee8f920ffc5adc5ecabd2659f56e7280ebbc187fb3e6c58be14997b5429ac2f4ebee2d12ffb01737e1b823933f
@@ -0,0 +1,6 @@
1
+ # Changelog
2
+
3
+ ## 1.1.0
4
+
5
+ - add `Configuration` options to exclude dictionaries
6
+ - bump Ruby to 2.3.1
data/README.md CHANGED
@@ -32,4 +32,20 @@ Right now, this gem doesn't do much of anything except over architect a series o
32
32
 
33
33
  dictionary = Cryptozoologist::Dictionary.new
34
34
  animals = dictionary.animals
35
- animals.sample
35
+ animals.sample # => "sun bear"
36
+
37
+ **Exclude animal types:**
38
+
39
+ Valid types to exclude;
40
+
41
+ - `:common`
42
+ - `:mythical`
43
+
44
+ *Note:* you can only exclude one or you wan't have any animals!
45
+
46
+ Cryptozoologist.configurre do |config|
47
+ configu.exclude = [:common]
48
+ end
49
+ dictionary = Cryptozoologist::Dictionary.new
50
+ animals = dictionary.animals
51
+ animals.sample # => "crumple horned snorkack"
@@ -1,4 +1,6 @@
1
1
  require "cryptozoologist/version"
2
+ require "cryptozoologist/errors"
3
+ require "cryptozoologist/configuration"
2
4
 
3
5
  directory = "#{File.dirname(__FILE__)}/cryptozoologist/dictionaries/*/*.rb"
4
6
  Dir[directory].each { |file| require file }
@@ -7,5 +9,24 @@ require "cryptozoologist/dictionary"
7
9
  require "cryptozoologist/dictionaries"
8
10
 
9
11
  module Cryptozoologist
10
- # Your code goes here...
12
+ class << self
13
+ attr_accessor :configuration
14
+ end
15
+
16
+ def self.configuration
17
+ @configuration ||= Configuration.new
18
+ end
19
+
20
+ def self.reset
21
+ @configuration = Configuration.new
22
+ end
23
+
24
+ def self.configure
25
+ yield(configuration)
26
+ end
27
+
28
+ protected
29
+ def self.dictionaries
30
+ Dictionaries.library
31
+ end
11
32
  end
@@ -0,0 +1,20 @@
1
+ module Cryptozoologist
2
+ class Configuration
3
+ attr_reader :exclude
4
+
5
+ def initialize
6
+ @exclude = []
7
+ end
8
+
9
+ def exclude=(exclusions)
10
+ raise Errors::Configuration, "Exclusions must be an array" unless exclusions.is_a?(Array)
11
+
12
+ @exclude = exclusions.select { |e| valid_exclusions.include?(e) }
13
+ end
14
+
15
+ private
16
+ def valid_exclusions
17
+ Cryptozoologist.dictionaries.keys
18
+ end
19
+ end
20
+ end
@@ -4,12 +4,22 @@ module Cryptozoologist
4
4
 
5
5
  def animals
6
6
  list = []
7
- animal_lists.each { |word_bank| list << word_bank }
7
+ filtered.each { |word_bank| list << word_bank.list }
8
8
  list.flatten
9
9
  end
10
10
 
11
- private def animal_lists
12
- [ Animals::Common::LIST, Animals::Mythical::LIST ]
11
+ def library
12
+ {
13
+ common: Animals::Common,
14
+ mythical: Animals::Mythical
15
+ }
16
+ end
17
+
18
+ private def filtered
19
+ dictionaries = library.reject do |key, value|
20
+ Cryptozoologist.configuration.exclude.include?(key)
21
+ end
22
+ dictionaries.values
13
23
  end
14
24
  end
15
25
  end
@@ -2,532 +2,534 @@ module Cryptozoologist
2
2
  module Dictionaries
3
3
  module Animals
4
4
  module Common
5
- LIST = [
6
- "abyssinian",
7
- "affenpinscher",
8
- "adelie penguin",
9
- "afghan hound",
10
- "ainu dog",
11
- "airedale terrier",
12
- "akbash",
13
- "akita",
14
- "alaskan malamute",
15
- "albatross",
16
- "aldabra giant tortoise",
17
- "alligator",
18
- "alpine dachsbracke",
19
- "anatolian shepherd dog",
20
- "angelfish",
21
- "ant",
22
- "anteater",
23
- "antelope",
24
- "appenzeller dog",
25
- "arctic fox",
26
- "arctic hare",
27
- "arctic wolf",
28
- "armadillo",
29
- "asian elephant",
30
- "asian giant hornet",
31
- "asian palm civet",
32
- "asiatic black bear",
33
- "australian shepherd",
34
- "avocet",
35
- "axolotl",
36
- "aye aye",
37
- "baboon",
38
- "bactrian camel",
39
- "badger",
40
- "balinese",
41
- "banded palm civet",
42
- "bandicoot",
43
- "barb",
44
- "barn owl",
45
- "barnacle",
46
- "barracuda",
47
- "basenji dog",
48
- "basking shark",
49
- "basset hound",
50
- "bat",
51
- "bavarian mountain hound",
52
- "beagle",
53
- "bear",
54
- "bearded collie",
55
- "bearded dragon",
56
- "beaver",
57
- "bedlington terrier",
58
- "beetle",
59
- "bengal tiger",
60
- "bernese mountain dog",
61
- "bichon frise",
62
- "binturong",
63
- "bird",
64
- "birds of paradise",
65
- "birman",
66
- "bison",
67
- "black bear",
68
- "black rhinoceros",
69
- "black russian terrier",
70
- "black widow spider",
71
- "bloodhound",
72
- "blue lacy dog",
73
- "blue whale",
74
- "bluetick coonhound",
75
- "bobcat",
76
- "bolognese dog",
77
- "bombay",
78
- "bongo",
79
- "bonobo",
80
- "booby",
81
- "border collie",
82
- "border terrier",
83
- "bornean orang utan",
84
- "borneo elephant",
85
- "boston terrier",
86
- "bottle nosed dolphin",
87
- "boxer dog",
88
- "boykin spaniel",
89
- "brazilian terrier",
90
- "brown bear",
91
- "budgerigar",
92
- "buffalo",
93
- "bull mastiff",
94
- "bull shark",
95
- "bull terrier",
96
- "bulldog",
97
- "bullfrog",
98
- "bumble bee",
99
- "burmese",
100
- "burrowing frog",
101
- "butterfly",
102
- "butterfly fish",
103
- "caiman",
104
- "caiman lizard",
105
- "cairn terrier",
106
- "camel",
107
- "canaan dog",
108
- "capybara",
109
- "caracal",
110
- "carolina dog",
111
- "cassowary",
112
- "cat",
113
- "caterpillar",
114
- "catfish",
115
- "cavalier king charles spaniel",
116
- "centipede",
117
- "cesky fousek",
118
- "chameleon",
119
- "chamois",
120
- "cheetah",
121
- "chesapeake bay retriever",
122
- "chicken",
123
- "chihuahua",
124
- "chimpanzee",
125
- "chinchilla",
126
- "chinese crested dog",
127
- "chinook",
128
- "chinstrap penguin",
129
- "chipmunk",
130
- "chow chow",
131
- "cichlid",
132
- "clouded leopard",
133
- "clown fish",
134
- "clumber spaniel",
135
- "coati",
136
- "cockroach",
137
- "collared peccary",
138
- "collie",
139
- "coral",
140
- "cottontop tamarin",
141
- "cougar",
142
- "cow",
143
- "coyote",
144
- "crab",
145
- "crab eating macaque",
146
- "crane",
147
- "crested penguin",
148
- "crocodile",
149
- "cross river gorilla",
150
- "curly coated retriever",
151
- "cuscus",
152
- "cuttlefish",
153
- "dachshund",
154
- "dalmatian",
155
- "darwin's frog",
156
- "deer",
157
- "desert tortoise",
158
- "deutsche bracke",
159
- "dhole",
160
- "dingo",
161
- "discus",
162
- "doberman pinscher",
163
- "dodo",
164
- "dog",
165
- "dogo argentino",
166
- "dogue de bordeaux",
167
- "dolphin",
168
- "donkey",
169
- "dormouse",
170
- "dragonfly",
171
- "drever",
172
- "duck",
173
- "dugong",
174
- "dunker",
175
- "dusky dolphin",
176
- "dwarf crocodile",
177
- "eagle",
178
- "earwig",
179
- "eastern gorilla",
180
- "eastern lowland gorilla",
181
- "echidna",
182
- "edible frog",
183
- "egyptian mau",
184
- "electric eel",
185
- "elephant",
186
- "elephant seal",
187
- "elephant shrew",
188
- "emperor penguin",
189
- "emperor tamarin",
190
- "emu",
191
- "english cocker spaniel",
192
- "english shepherd",
193
- "english springer spaniel",
194
- "entlebucher mountain dog",
195
- "epagneul pont audemer",
196
- "eskimo dog",
197
- "estrela mountain dog",
198
- "falcon",
199
- "fennec fox",
200
- "ferret",
201
- "field spaniel",
202
- "fin whale",
203
- "finnish spitz",
204
- "fire bellied toad",
205
- "fish",
206
- "fishing cat",
207
- "flamingo",
208
- "flat coat retriever",
209
- "flounder",
210
- "fly",
211
- "flying squirrel",
212
- "fossa",
213
- "fox",
214
- "fox terrier",
215
- "french bulldog",
216
- "frigatebird",
217
- "frilled lizard",
218
- "frog",
219
- "fur seal",
220
- "galapagos penguin",
221
- "galapagos tortoise",
222
- "gar",
223
- "gecko",
224
- "gentoo penguin",
225
- "geoffroys tamarin",
226
- "gerbil",
227
- "german pinscher",
228
- "german shepherd",
229
- "gharial",
230
- "giant african land snail",
231
- "giant clam",
232
- "giant panda bear",
233
- "giant schnauzer",
234
- "gibbon",
235
- "gila monster",
236
- "giraffe",
237
- "glass lizard",
238
- "glow worm",
239
- "goat",
240
- "golden lion tamarin",
241
- "golden oriole",
242
- "golden retriever",
243
- "goose",
244
- "gopher",
245
- "gorilla",
246
- "grasshopper",
247
- "great dane",
248
- "great white shark",
249
- "greater swiss mountain dog",
250
- "green bee eater",
251
- "greenland dog",
252
- "grey mouse lemur",
253
- "grey reef shark",
254
- "grey seal",
255
- "greyhound",
256
- "grizzly bear",
257
- "grouse",
258
- "guinea fowl",
259
- "guinea pig",
260
- "guppy",
261
- "hammerhead shark",
262
- "hamster",
263
- "hare",
264
- "harrier",
265
- "havanese",
266
- "hedgehog",
267
- "hercules beetle",
268
- "hermit crab",
269
- "heron",
270
- "highland cattle",
271
- "himalayan",
272
- "hippopotamus",
273
- "honey bee",
274
- "horn shark",
275
- "horned frog",
276
- "horse",
277
- "horseshoe crab",
278
- "howler monkey",
279
- "human",
280
- "humboldt penguin",
281
- "hummingbird",
282
- "humpback whale",
283
- "hyena",
284
- "ibis",
285
- "ibizan hound",
286
- "iguana",
287
- "impala",
288
- "indochinese tiger",
289
- "indri",
290
- "insect",
291
- "irish setter",
292
- "irish wolfhound",
293
- "jack russel",
294
- "jackal",
295
- "jaguar",
296
- "japanese chin",
297
- "japanese macaque",
298
- "javan rhinoceros",
299
- "javanese",
300
- "jellyfish",
301
- "kakapo",
302
- "kangaroo",
303
- "keel billed toucan",
304
- "killer whale",
305
- "king crab",
306
- "king penguin",
307
- "kingfisher",
308
- "kiwi",
309
- "koala",
310
- "komodo dragon",
311
- "kudu",
312
- "labradoodle",
313
- "labrador retriever",
314
- "ladybird",
315
- "leaf tailed gecko",
316
- "lemming",
317
- "lemur",
318
- "leopard",
319
- "leopard cat",
320
- "leopard seal",
321
- "leopard tortoise",
322
- "liger",
323
- "lion",
324
- "lionfish",
325
- "little penguin",
326
- "lizard",
327
- "llama",
328
- "lobster",
329
- "long eared owl",
330
- "lynx",
331
- "macaroni penguin",
332
- "macaw",
333
- "magellanic penguin",
334
- "magpie",
335
- "maine coon",
336
- "malayan civet",
337
- "malayan tiger",
338
- "maltese",
339
- "manatee",
340
- "mandrill",
341
- "manta ray",
342
- "marine toad",
343
- "markhor",
344
- "marsh frog",
345
- "masked palm civet",
346
- "mastiff",
347
- "mayfly",
348
- "meerkat",
349
- "millipede",
350
- "minke whale",
351
- "mole",
352
- "molly",
353
- "mongoose",
354
- "mongrel",
355
- "monitor lizard",
356
- "monkey",
357
- "monte iberia eleuth",
358
- "moorhen",
359
- "moose",
360
- "moray eel",
361
- "moth",
362
- "mountain gorilla",
363
- "mountain lion",
364
- "mouse",
365
- "mule",
366
- "neanderthal",
367
- "neapolitan mastiff",
368
- "newfoundland",
369
- "newt",
370
- "nightingale",
371
- "norfolk terrier",
372
- "norwegian forest",
373
- "numbat",
374
- "nurse shark",
375
- "ocelot",
376
- "octopus",
377
- "okapi",
378
- "old english sheepdog",
379
- "olm",
380
- "opossum",
381
- "orang utan",
382
- "ostrich",
383
- "otter",
384
- "oyster",
385
- "quail",
386
- "quetzal",
387
- "quokka",
388
- "quoll",
389
- "rabbit",
390
- "raccoon",
391
- "raccoon dog",
392
- "radiated tortoise",
393
- "ragdoll",
394
- "rat",
395
- "rattlesnake",
396
- "red knee tarantula",
397
- "red panda",
398
- "red wolf",
399
- "red handed tamarin",
400
- "reindeer",
401
- "rhinoceros",
402
- "river dolphin",
403
- "river turtle",
404
- "robin",
405
- "rock hyrax",
406
- "rockhopper penguin",
407
- "roseate spoonbill",
408
- "rottweiler",
409
- "royal penguin",
410
- "russian blue",
411
- "sabre toothed tiger",
412
- "saint bernard",
413
- "salamander",
414
- "sand lizard",
415
- "saola",
416
- "scorpion",
417
- "scorpion fish",
418
- "sea dragon",
419
- "sea lion",
420
- "sea otter",
421
- "sea slug",
422
- "sea squirt",
423
- "sea turtle",
424
- "sea urchin",
425
- "seahorse",
426
- "seal",
427
- "serval",
428
- "sheep",
429
- "shih tzu",
430
- "shrimp",
431
- "siamese",
432
- "siamese fighting fish",
433
- "siberian",
434
- "siberian husky",
435
- "siberian tiger",
436
- "silver dollar",
437
- "skunk",
438
- "sloth",
439
- "slow worm",
440
- "snail",
441
- "snake",
442
- "snapping turtle",
443
- "snowshoe",
444
- "snowy owl",
445
- "somali",
446
- "south china tiger",
447
- "spadefoot toad",
448
- "sparrow",
449
- "spectacled bear",
450
- "sperm whale",
451
- "spider monkey",
452
- "spiny dogfish",
453
- "sponge",
454
- "squid",
455
- "squirrel",
456
- "squirrel monkey",
457
- "sri lankan elephant",
458
- "staffordshire bull terrier",
459
- "stag beetle",
460
- "starfish",
461
- "stellers sea cow",
462
- "stick insect",
463
- "stingray",
464
- "stoat",
465
- "striped rocket frog",
466
- "sun bear",
467
- "swan",
468
- "tang",
469
- "tapir",
470
- "tarsier",
471
- "tasmanian devil",
472
- "tawny owl",
473
- "termite",
474
- "tetra",
475
- "thorny devil",
476
- "tibetan mastiff",
477
- "tiffany",
478
- "tiger",
479
- "tiger salamander",
480
- "tiger shark",
481
- "tortoise",
482
- "toucan",
483
- "tree frog",
484
- "tropicbird",
485
- "tuatara",
486
- "turkey",
487
- "turkish angora",
488
- "uakari",
489
- "uguisu",
490
- "umbrellabird",
491
- "vampire bat",
492
- "vervet monkey",
493
- "vulture",
494
- "wallaby",
495
- "walrus",
496
- "warthog",
497
- "wasp",
498
- "water buffalo",
499
- "water dragon",
500
- "water vole",
501
- "weasel",
502
- "welsh corgi",
503
- "west highland terrier",
504
- "western gorilla",
505
- "western lowland gorilla",
506
- "whale shark",
507
- "whippet",
508
- "white faced capuchin",
509
- "white rhinoceros",
510
- "white tiger",
511
- "wild boar",
512
- "wildebeest",
513
- "wolf",
514
- "wolverine",
515
- "wombat",
516
- "woodlouse",
517
- "woodpecker",
518
- "woolly mammoth",
519
- "woolly monkey",
520
- "wrasse",
521
- "x ray tetra",
522
- "yak",
523
- "yellow eyed penguin",
524
- "yorkshire terrier",
525
- "zebra",
526
- "zebra shark",
527
- "zebu",
528
- "zonkey",
529
- "zorse"
530
- ]
5
+ def self.list
6
+ [
7
+ "abyssinian",
8
+ "affenpinscher",
9
+ "adelie penguin",
10
+ "afghan hound",
11
+ "ainu dog",
12
+ "airedale terrier",
13
+ "akbash",
14
+ "akita",
15
+ "alaskan malamute",
16
+ "albatross",
17
+ "aldabra giant tortoise",
18
+ "alligator",
19
+ "alpine dachsbracke",
20
+ "anatolian shepherd dog",
21
+ "angelfish",
22
+ "ant",
23
+ "anteater",
24
+ "antelope",
25
+ "appenzeller dog",
26
+ "arctic fox",
27
+ "arctic hare",
28
+ "arctic wolf",
29
+ "armadillo",
30
+ "asian elephant",
31
+ "asian giant hornet",
32
+ "asian palm civet",
33
+ "asiatic black bear",
34
+ "australian shepherd",
35
+ "avocet",
36
+ "axolotl",
37
+ "aye aye",
38
+ "baboon",
39
+ "bactrian camel",
40
+ "badger",
41
+ "balinese",
42
+ "banded palm civet",
43
+ "bandicoot",
44
+ "barb",
45
+ "barn owl",
46
+ "barnacle",
47
+ "barracuda",
48
+ "basenji dog",
49
+ "basking shark",
50
+ "basset hound",
51
+ "bat",
52
+ "bavarian mountain hound",
53
+ "beagle",
54
+ "bear",
55
+ "bearded collie",
56
+ "bearded dragon",
57
+ "beaver",
58
+ "bedlington terrier",
59
+ "beetle",
60
+ "bengal tiger",
61
+ "bernese mountain dog",
62
+ "bichon frise",
63
+ "binturong",
64
+ "bird",
65
+ "birds of paradise",
66
+ "birman",
67
+ "bison",
68
+ "black bear",
69
+ "black rhinoceros",
70
+ "black russian terrier",
71
+ "black widow spider",
72
+ "bloodhound",
73
+ "blue lacy dog",
74
+ "blue whale",
75
+ "bluetick coonhound",
76
+ "bobcat",
77
+ "bolognese dog",
78
+ "bombay",
79
+ "bongo",
80
+ "bonobo",
81
+ "booby",
82
+ "border collie",
83
+ "border terrier",
84
+ "bornean orang utan",
85
+ "borneo elephant",
86
+ "boston terrier",
87
+ "bottle nosed dolphin",
88
+ "boxer dog",
89
+ "boykin spaniel",
90
+ "brazilian terrier",
91
+ "brown bear",
92
+ "budgerigar",
93
+ "buffalo",
94
+ "bull mastiff",
95
+ "bull shark",
96
+ "bull terrier",
97
+ "bulldog",
98
+ "bullfrog",
99
+ "bumble bee",
100
+ "burmese",
101
+ "burrowing frog",
102
+ "butterfly",
103
+ "butterfly fish",
104
+ "caiman",
105
+ "caiman lizard",
106
+ "cairn terrier",
107
+ "camel",
108
+ "canaan dog",
109
+ "capybara",
110
+ "caracal",
111
+ "carolina dog",
112
+ "cassowary",
113
+ "cat",
114
+ "caterpillar",
115
+ "catfish",
116
+ "cavalier king charles spaniel",
117
+ "centipede",
118
+ "cesky fousek",
119
+ "chameleon",
120
+ "chamois",
121
+ "cheetah",
122
+ "chesapeake bay retriever",
123
+ "chicken",
124
+ "chihuahua",
125
+ "chimpanzee",
126
+ "chinchilla",
127
+ "chinese crested dog",
128
+ "chinook",
129
+ "chinstrap penguin",
130
+ "chipmunk",
131
+ "chow chow",
132
+ "cichlid",
133
+ "clouded leopard",
134
+ "clown fish",
135
+ "clumber spaniel",
136
+ "coati",
137
+ "cockroach",
138
+ "collared peccary",
139
+ "collie",
140
+ "coral",
141
+ "cottontop tamarin",
142
+ "cougar",
143
+ "cow",
144
+ "coyote",
145
+ "crab",
146
+ "crab eating macaque",
147
+ "crane",
148
+ "crested penguin",
149
+ "crocodile",
150
+ "cross river gorilla",
151
+ "curly coated retriever",
152
+ "cuscus",
153
+ "cuttlefish",
154
+ "dachshund",
155
+ "dalmatian",
156
+ "darwin's frog",
157
+ "deer",
158
+ "desert tortoise",
159
+ "deutsche bracke",
160
+ "dhole",
161
+ "dingo",
162
+ "discus",
163
+ "doberman pinscher",
164
+ "dodo",
165
+ "dog",
166
+ "dogo argentino",
167
+ "dogue de bordeaux",
168
+ "dolphin",
169
+ "donkey",
170
+ "dormouse",
171
+ "dragonfly",
172
+ "drever",
173
+ "duck",
174
+ "dugong",
175
+ "dunker",
176
+ "dusky dolphin",
177
+ "dwarf crocodile",
178
+ "eagle",
179
+ "earwig",
180
+ "eastern gorilla",
181
+ "eastern lowland gorilla",
182
+ "echidna",
183
+ "edible frog",
184
+ "egyptian mau",
185
+ "electric eel",
186
+ "elephant",
187
+ "elephant seal",
188
+ "elephant shrew",
189
+ "emperor penguin",
190
+ "emperor tamarin",
191
+ "emu",
192
+ "english cocker spaniel",
193
+ "english shepherd",
194
+ "english springer spaniel",
195
+ "entlebucher mountain dog",
196
+ "epagneul pont audemer",
197
+ "eskimo dog",
198
+ "estrela mountain dog",
199
+ "falcon",
200
+ "fennec fox",
201
+ "ferret",
202
+ "field spaniel",
203
+ "fin whale",
204
+ "finnish spitz",
205
+ "fire bellied toad",
206
+ "fish",
207
+ "fishing cat",
208
+ "flamingo",
209
+ "flat coat retriever",
210
+ "flounder",
211
+ "fly",
212
+ "flying squirrel",
213
+ "fossa",
214
+ "fox",
215
+ "fox terrier",
216
+ "french bulldog",
217
+ "frigatebird",
218
+ "frilled lizard",
219
+ "frog",
220
+ "fur seal",
221
+ "galapagos penguin",
222
+ "galapagos tortoise",
223
+ "gar",
224
+ "gecko",
225
+ "gentoo penguin",
226
+ "geoffroys tamarin",
227
+ "gerbil",
228
+ "german pinscher",
229
+ "german shepherd",
230
+ "gharial",
231
+ "giant african land snail",
232
+ "giant clam",
233
+ "giant panda bear",
234
+ "giant schnauzer",
235
+ "gibbon",
236
+ "gila monster",
237
+ "giraffe",
238
+ "glass lizard",
239
+ "glow worm",
240
+ "goat",
241
+ "golden lion tamarin",
242
+ "golden oriole",
243
+ "golden retriever",
244
+ "goose",
245
+ "gopher",
246
+ "gorilla",
247
+ "grasshopper",
248
+ "great dane",
249
+ "great white shark",
250
+ "greater swiss mountain dog",
251
+ "green bee eater",
252
+ "greenland dog",
253
+ "grey mouse lemur",
254
+ "grey reef shark",
255
+ "grey seal",
256
+ "greyhound",
257
+ "grizzly bear",
258
+ "grouse",
259
+ "guinea fowl",
260
+ "guinea pig",
261
+ "guppy",
262
+ "hammerhead shark",
263
+ "hamster",
264
+ "hare",
265
+ "harrier",
266
+ "havanese",
267
+ "hedgehog",
268
+ "hercules beetle",
269
+ "hermit crab",
270
+ "heron",
271
+ "highland cattle",
272
+ "himalayan",
273
+ "hippopotamus",
274
+ "honey bee",
275
+ "horn shark",
276
+ "horned frog",
277
+ "horse",
278
+ "horseshoe crab",
279
+ "howler monkey",
280
+ "human",
281
+ "humboldt penguin",
282
+ "hummingbird",
283
+ "humpback whale",
284
+ "hyena",
285
+ "ibis",
286
+ "ibizan hound",
287
+ "iguana",
288
+ "impala",
289
+ "indochinese tiger",
290
+ "indri",
291
+ "insect",
292
+ "irish setter",
293
+ "irish wolfhound",
294
+ "jack russel",
295
+ "jackal",
296
+ "jaguar",
297
+ "japanese chin",
298
+ "japanese macaque",
299
+ "javan rhinoceros",
300
+ "javanese",
301
+ "jellyfish",
302
+ "kakapo",
303
+ "kangaroo",
304
+ "keel billed toucan",
305
+ "killer whale",
306
+ "king crab",
307
+ "king penguin",
308
+ "kingfisher",
309
+ "kiwi",
310
+ "koala",
311
+ "komodo dragon",
312
+ "kudu",
313
+ "labradoodle",
314
+ "labrador retriever",
315
+ "ladybird",
316
+ "leaf tailed gecko",
317
+ "lemming",
318
+ "lemur",
319
+ "leopard",
320
+ "leopard cat",
321
+ "leopard seal",
322
+ "leopard tortoise",
323
+ "liger",
324
+ "lion",
325
+ "lionfish",
326
+ "little penguin",
327
+ "lizard",
328
+ "llama",
329
+ "lobster",
330
+ "long eared owl",
331
+ "lynx",
332
+ "macaroni penguin",
333
+ "macaw",
334
+ "magellanic penguin",
335
+ "magpie",
336
+ "maine coon",
337
+ "malayan civet",
338
+ "malayan tiger",
339
+ "maltese",
340
+ "manatee",
341
+ "mandrill",
342
+ "manta ray",
343
+ "marine toad",
344
+ "markhor",
345
+ "marsh frog",
346
+ "masked palm civet",
347
+ "mastiff",
348
+ "mayfly",
349
+ "meerkat",
350
+ "millipede",
351
+ "minke whale",
352
+ "mole",
353
+ "molly",
354
+ "mongoose",
355
+ "mongrel",
356
+ "monitor lizard",
357
+ "monkey",
358
+ "monte iberia eleuth",
359
+ "moorhen",
360
+ "moose",
361
+ "moray eel",
362
+ "moth",
363
+ "mountain gorilla",
364
+ "mountain lion",
365
+ "mouse",
366
+ "mule",
367
+ "neanderthal",
368
+ "neapolitan mastiff",
369
+ "newfoundland",
370
+ "newt",
371
+ "nightingale",
372
+ "norfolk terrier",
373
+ "norwegian forest",
374
+ "numbat",
375
+ "nurse shark",
376
+ "ocelot",
377
+ "octopus",
378
+ "okapi",
379
+ "old english sheepdog",
380
+ "olm",
381
+ "opossum",
382
+ "orang utan",
383
+ "ostrich",
384
+ "otter",
385
+ "oyster",
386
+ "quail",
387
+ "quetzal",
388
+ "quokka",
389
+ "quoll",
390
+ "rabbit",
391
+ "raccoon",
392
+ "raccoon dog",
393
+ "radiated tortoise",
394
+ "ragdoll",
395
+ "rat",
396
+ "rattlesnake",
397
+ "red knee tarantula",
398
+ "red panda",
399
+ "red wolf",
400
+ "red handed tamarin",
401
+ "reindeer",
402
+ "rhinoceros",
403
+ "river dolphin",
404
+ "river turtle",
405
+ "robin",
406
+ "rock hyrax",
407
+ "rockhopper penguin",
408
+ "roseate spoonbill",
409
+ "rottweiler",
410
+ "royal penguin",
411
+ "russian blue",
412
+ "sabre toothed tiger",
413
+ "saint bernard",
414
+ "salamander",
415
+ "sand lizard",
416
+ "saola",
417
+ "scorpion",
418
+ "scorpion fish",
419
+ "sea dragon",
420
+ "sea lion",
421
+ "sea otter",
422
+ "sea slug",
423
+ "sea squirt",
424
+ "sea turtle",
425
+ "sea urchin",
426
+ "seahorse",
427
+ "seal",
428
+ "serval",
429
+ "sheep",
430
+ "shih tzu",
431
+ "shrimp",
432
+ "siamese",
433
+ "siamese fighting fish",
434
+ "siberian",
435
+ "siberian husky",
436
+ "siberian tiger",
437
+ "silver dollar",
438
+ "skunk",
439
+ "sloth",
440
+ "slow worm",
441
+ "snail",
442
+ "snake",
443
+ "snapping turtle",
444
+ "snowshoe",
445
+ "snowy owl",
446
+ "somali",
447
+ "south china tiger",
448
+ "spadefoot toad",
449
+ "sparrow",
450
+ "spectacled bear",
451
+ "sperm whale",
452
+ "spider monkey",
453
+ "spiny dogfish",
454
+ "sponge",
455
+ "squid",
456
+ "squirrel",
457
+ "squirrel monkey",
458
+ "sri lankan elephant",
459
+ "staffordshire bull terrier",
460
+ "stag beetle",
461
+ "starfish",
462
+ "stellers sea cow",
463
+ "stick insect",
464
+ "stingray",
465
+ "stoat",
466
+ "striped rocket frog",
467
+ "sun bear",
468
+ "swan",
469
+ "tang",
470
+ "tapir",
471
+ "tarsier",
472
+ "tasmanian devil",
473
+ "tawny owl",
474
+ "termite",
475
+ "tetra",
476
+ "thorny devil",
477
+ "tibetan mastiff",
478
+ "tiffany",
479
+ "tiger",
480
+ "tiger salamander",
481
+ "tiger shark",
482
+ "tortoise",
483
+ "toucan",
484
+ "tree frog",
485
+ "tropicbird",
486
+ "tuatara",
487
+ "turkey",
488
+ "turkish angora",
489
+ "uakari",
490
+ "uguisu",
491
+ "umbrellabird",
492
+ "vampire bat",
493
+ "vervet monkey",
494
+ "vulture",
495
+ "wallaby",
496
+ "walrus",
497
+ "warthog",
498
+ "wasp",
499
+ "water buffalo",
500
+ "water dragon",
501
+ "water vole",
502
+ "weasel",
503
+ "welsh corgi",
504
+ "west highland terrier",
505
+ "western gorilla",
506
+ "western lowland gorilla",
507
+ "whale shark",
508
+ "whippet",
509
+ "white faced capuchin",
510
+ "white rhinoceros",
511
+ "white tiger",
512
+ "wild boar",
513
+ "wildebeest",
514
+ "wolf",
515
+ "wolverine",
516
+ "wombat",
517
+ "woodlouse",
518
+ "woodpecker",
519
+ "woolly mammoth",
520
+ "woolly monkey",
521
+ "wrasse",
522
+ "x ray tetra",
523
+ "yak",
524
+ "yellow eyed penguin",
525
+ "yorkshire terrier",
526
+ "zebra",
527
+ "zebra shark",
528
+ "zebu",
529
+ "zonkey",
530
+ "zorse"
531
+ ]
532
+ end
531
533
  end
532
534
  end
533
535
  end