ebabel 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
data/.document ADDED
@@ -0,0 +1,5 @@
1
+ README.rdoc
2
+ lib/**/*.rb
3
+ bin/*
4
+ features/**/*.feature
5
+ LICENSE
data/.gitignore ADDED
@@ -0,0 +1,21 @@
1
+ ## MAC OS
2
+ .DS_Store
3
+
4
+ ## TEXTMATE
5
+ *.tmproj
6
+ tmtags
7
+
8
+ ## EMACS
9
+ *~
10
+ \#*
11
+ .\#*
12
+
13
+ ## VIM
14
+ *.swp
15
+
16
+ ## PROJECT::GENERAL
17
+ coverage
18
+ rdoc
19
+ pkg
20
+
21
+ ## PROJECT::SPECIFIC
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2009 Eian
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,17 @@
1
+ = ebabel
2
+
3
+ Description goes here.
4
+
5
+ == Note on Patches/Pull Requests
6
+
7
+ * Fork the project.
8
+ * Make your feature addition or bug fix.
9
+ * Add tests for it. This is important so I don't break it in a
10
+ future version unintentionally.
11
+ * Commit, do not mess with rakefile, version, or history.
12
+ (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
13
+ * Send me a pull request. Bonus points for topic branches.
14
+
15
+ == Copyright
16
+
17
+ Copyright (c) 2010 Eian. See LICENSE for details.
data/Rakefile ADDED
@@ -0,0 +1,53 @@
1
+ require 'rubygems'
2
+ require 'rake'
3
+
4
+ begin
5
+ require 'jeweler'
6
+ Jeweler::Tasks.new do |gem|
7
+ gem.name = "ebabel"
8
+ gem.summary = "babel updated"
9
+ gem.description = "babel updated"
10
+ gem.email = "eiancoun@gmail.com"
11
+ gem.homepage = "http://github.com/eianco/ebabel"
12
+ gem.authors = ["Eian"]
13
+ gem.add_development_dependency "thoughtbot-shoulda", ">= 0"
14
+ # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
15
+ end
16
+ Jeweler::GemcutterTasks.new
17
+ rescue LoadError
18
+ puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
19
+ end
20
+
21
+ require 'rake/testtask'
22
+ Rake::TestTask.new(:test) do |test|
23
+ test.libs << 'lib' << 'test'
24
+ test.pattern = 'test/**/test_*.rb'
25
+ test.verbose = true
26
+ end
27
+
28
+ begin
29
+ require 'rcov/rcovtask'
30
+ Rcov::RcovTask.new do |test|
31
+ test.libs << 'test'
32
+ test.pattern = 'test/**/test_*.rb'
33
+ test.verbose = true
34
+ end
35
+ rescue LoadError
36
+ task :rcov do
37
+ abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
38
+ end
39
+ end
40
+
41
+ task :test => :check_dependencies
42
+
43
+ task :default => :test
44
+
45
+ require 'rake/rdoctask'
46
+ Rake::RDocTask.new do |rdoc|
47
+ version = File.exist?('VERSION') ? File.read('VERSION') : ""
48
+
49
+ rdoc.rdoc_dir = 'rdoc'
50
+ rdoc.title = "ebabel #{version}"
51
+ rdoc.rdoc_files.include('README*')
52
+ rdoc.rdoc_files.include('lib/**/*.rb')
53
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.1.0
data/ebabel.gemspec ADDED
@@ -0,0 +1,54 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{ebabel}
8
+ s.version = "0.1.0"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Eian"]
12
+ s.date = %q{2010-10-09}
13
+ s.description = %q{babel updated}
14
+ s.email = %q{eiancoun@gmail.com}
15
+ s.extra_rdoc_files = [
16
+ "LICENSE",
17
+ "README.rdoc"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ ".gitignore",
22
+ "LICENSE",
23
+ "README.rdoc",
24
+ "Rakefile",
25
+ "VERSION",
26
+ "ebabel.gemspec",
27
+ "lib/ebabel.rb",
28
+ "test/helper.rb",
29
+ "test/test_ebabel.rb"
30
+ ]
31
+ s.homepage = %q{http://github.com/eianco/ebabel}
32
+ s.rdoc_options = ["--charset=UTF-8"]
33
+ s.require_paths = ["lib"]
34
+ s.rubygems_version = %q{1.3.7}
35
+ s.summary = %q{babel updated}
36
+ s.test_files = [
37
+ "test/test_ebabel.rb",
38
+ "test/helper.rb"
39
+ ]
40
+
41
+ if s.respond_to? :specification_version then
42
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
43
+ s.specification_version = 3
44
+
45
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
46
+ s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
47
+ else
48
+ s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
49
+ end
50
+ else
51
+ s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
52
+ end
53
+ end
54
+
data/lib/ebabel.rb ADDED
@@ -0,0 +1,2743 @@
1
+
2
+ module Babel
3
+ VERSION = '0.1.4'
4
+
5
+ CHUNKS = [
6
+ 'ACM',
7
+ 'ANSI',
8
+ 'ASAP',
9
+ 'Ada',
10
+ 'Ames',
11
+ 'Arab',
12
+ 'Argo',
13
+ 'Asia',
14
+ 'Ave',
15
+ 'BSD',
16
+ 'Bach',
17
+ 'CDC',
18
+ 'CEO',
19
+ 'CMOS',
20
+ 'CPU',
21
+ 'CPUs',
22
+ 'Cray',
23
+ 'DOS',
24
+ 'Dan',
25
+ 'EDP',
26
+ 'EGA',
27
+ 'FIFO',
28
+ 'GPSS',
29
+ 'Greg',
30
+ 'Hz',
31
+ 'IBM',
32
+ 'IEEE',
33
+ 'Inc',
34
+ 'Iran',
35
+ 'Jill',
36
+ 'Jr',
37
+ 'July',
38
+ 'June',
39
+ 'LEDs',
40
+ 'Liz',
41
+ 'Lyle',
42
+ 'MHz',
43
+ 'MIT',
44
+ 'Mary',
45
+ 'Matt',
46
+ 'Mr',
47
+ 'Mrs',
48
+ 'Ms',
49
+ 'NFS',
50
+ 'Nazi',
51
+ 'NeWS',
52
+ 'OEM',
53
+ 'OEMS',
54
+ 'OK',
55
+ 'OS',
56
+ 'Ohio',
57
+ 'PC',
58
+ 'PCs',
59
+ 'PDP',
60
+ 'PhD',
61
+ 'QA',
62
+ 'RCS',
63
+ 'ROM',
64
+ 'RSX',
65
+ 'Rick',
66
+ 'Roy',
67
+ 'SCCS',
68
+ 'SMTP',
69
+ 'Salz',
70
+ 'Sam',
71
+ 'Sr',
72
+ 'TCP',
73
+ 'TeX',
74
+ 'UART',
75
+ 'UCLA',
76
+ 'USC',
77
+ 'USG',
78
+ 'Unix',
79
+ 'Utah',
80
+ 'VAR',
81
+ 'VCR',
82
+ 'VMS',
83
+ 'Vax',
84
+ 'York',
85
+ 'Zulu',
86
+ 'abbe',
87
+ 'abed',
88
+ 'abet',
89
+ 'able',
90
+ 'ably',
91
+ 'abut',
92
+ 'ace',
93
+ 'aced',
94
+ 'acer',
95
+ 'aces',
96
+ 'ache',
97
+ 'acid',
98
+ 'acme',
99
+ 'acne',
100
+ 'acre',
101
+ 'act',
102
+ 'acts',
103
+ 'ad',
104
+ 'add',
105
+ 'adds',
106
+ 'ado',
107
+ 'ads',
108
+ 'afar',
109
+ 'aft',
110
+ 'agar',
111
+ 'age',
112
+ 'aged',
113
+ 'ager',
114
+ 'ages',
115
+ 'ago',
116
+ 'agog',
117
+ 'ague',
118
+ 'ah',
119
+ 'aid',
120
+ 'aide',
121
+ 'aids',
122
+ 'ail',
123
+ 'ails',
124
+ 'aim',
125
+ 'aims',
126
+ 'air',
127
+ 'airs',
128
+ 'airy',
129
+ 'ajar',
130
+ 'akin',
131
+ 'alas',
132
+ 'alba',
133
+ 'ale',
134
+ 'alee',
135
+ 'alga',
136
+ 'all',
137
+ 'ally',
138
+ 'alma',
139
+ 'alms',
140
+ 'aloe',
141
+ 'alps',
142
+ 'also',
143
+ 'alto',
144
+ 'alum',
145
+ 'am',
146
+ 'amen',
147
+ 'amid',
148
+ 'ammo',
149
+ 'amok',
150
+ 'amp',
151
+ 'amps',
152
+ 'ams',
153
+ 'amyl',
154
+ 'an',
155
+ 'anal',
156
+ 'and',
157
+ 'ands',
158
+ 'anew',
159
+ 'anon',
160
+ 'ant',
161
+ 'ante',
162
+ 'anti',
163
+ 'ants',
164
+ 'anus',
165
+ 'any',
166
+ 'ape',
167
+ 'aped',
168
+ 'aper',
169
+ 'apes',
170
+ 'apex',
171
+ 'apse',
172
+ 'apt',
173
+ 'aqua',
174
+ 'arc',
175
+ 'arch',
176
+ 'arcs',
177
+ 'are',
178
+ 'area',
179
+ 'ares',
180
+ 'arid',
181
+ 'ark',
182
+ 'arm',
183
+ 'arms',
184
+ 'army',
185
+ 'art',
186
+ 'arts',
187
+ 'as',
188
+ 'ash',
189
+ 'ask',
190
+ 'asks',
191
+ 'asp',
192
+ 'ass',
193
+ 'at',
194
+ 'ate',
195
+ 'atom',
196
+ 'atop',
197
+ 'aunt',
198
+ 'aura',
199
+ 'auto',
200
+ 'aver',
201
+ 'avid',
202
+ 'avow',
203
+ 'away',
204
+ 'awe',
205
+ 'awed',
206
+ 'awl',
207
+ 'awls',
208
+ 'awry',
209
+ 'ax',
210
+ 'axe',
211
+ 'axed',
212
+ 'axer',
213
+ 'axes',
214
+ 'axis',
215
+ 'axle',
216
+ 'axon',
217
+ 'aye',
218
+ 'ayer',
219
+ 'ayes',
220
+ 'babe',
221
+ 'baby',
222
+ 'back',
223
+ 'bad',
224
+ 'bade',
225
+ 'bads',
226
+ 'bag',
227
+ 'bags',
228
+ 'bah',
229
+ 'bail',
230
+ 'bait',
231
+ 'bake',
232
+ 'bald',
233
+ 'bale',
234
+ 'balk',
235
+ 'ball',
236
+ 'balm',
237
+ 'ban',
238
+ 'band',
239
+ 'bane',
240
+ 'bang',
241
+ 'bank',
242
+ 'bans',
243
+ 'bar',
244
+ 'barb',
245
+ 'bard',
246
+ 'bare',
247
+ 'bark',
248
+ 'barn',
249
+ 'bars',
250
+ 'bas',
251
+ 'base',
252
+ 'bash',
253
+ 'bask',
254
+ 'bass',
255
+ 'bat',
256
+ 'bath',
257
+ 'bats',
258
+ 'baud',
259
+ 'bawl',
260
+ 'bay',
261
+ 'bays',
262
+ 'be',
263
+ 'bead',
264
+ 'beak',
265
+ 'beam',
266
+ 'bean',
267
+ 'bear',
268
+ 'beat',
269
+ 'beau',
270
+ 'beck',
271
+ 'bed',
272
+ 'beds',
273
+ 'bee',
274
+ 'beef',
275
+ 'been',
276
+ 'beep',
277
+ 'beer',
278
+ 'bees',
279
+ 'beet',
280
+ 'beg',
281
+ 'begs',
282
+ 'bell',
283
+ 'belt',
284
+ 'bely',
285
+ 'bend',
286
+ 'bent',
287
+ 'bes',
288
+ 'best',
289
+ 'bet',
290
+ 'beta',
291
+ 'beth',
292
+ 'bets',
293
+ 'bevy',
294
+ 'bias',
295
+ 'bib',
296
+ 'bibs',
297
+ 'bid',
298
+ 'bide',
299
+ 'bids',
300
+ 'bier',
301
+ 'big',
302
+ 'bike',
303
+ 'bile',
304
+ 'bilk',
305
+ 'bill',
306
+ 'bin',
307
+ 'bind',
308
+ 'bing',
309
+ 'bins',
310
+ 'bird',
311
+ 'bit',
312
+ 'bite',
313
+ 'bits',
314
+ 'blab',
315
+ 'bled',
316
+ 'blew',
317
+ 'blip',
318
+ 'blob',
319
+ 'bloc',
320
+ 'blot',
321
+ 'blow',
322
+ 'blue',
323
+ 'blur',
324
+ 'boar',
325
+ 'boat',
326
+ 'bob',
327
+ 'bobs',
328
+ 'bode',
329
+ 'body',
330
+ 'bog',
331
+ 'bogs',
332
+ 'boil',
333
+ 'bold',
334
+ 'boll',
335
+ 'bolt',
336
+ 'bomb',
337
+ 'bond',
338
+ 'bone',
339
+ 'bong',
340
+ 'bony',
341
+ 'boo',
342
+ 'boob',
343
+ 'book',
344
+ 'boom',
345
+ 'boon',
346
+ 'boor',
347
+ 'boos',
348
+ 'boot',
349
+ 'bore',
350
+ 'born',
351
+ 'boss',
352
+ 'both',
353
+ 'bout',
354
+ 'bow',
355
+ 'bowl',
356
+ 'bows',
357
+ 'box',
358
+ 'boy',
359
+ 'boys',
360
+ 'bra',
361
+ 'brae',
362
+ 'brag',
363
+ 'bran',
364
+ 'bras',
365
+ 'brat',
366
+ 'bray',
367
+ 'bred',
368
+ 'brew',
369
+ 'brig',
370
+ 'brim',
371
+ 'brow',
372
+ 'buck',
373
+ 'bud',
374
+ 'buds',
375
+ 'buff',
376
+ 'bug',
377
+ 'bugs',
378
+ 'bulb',
379
+ 'bulk',
380
+ 'bull',
381
+ 'bum',
382
+ 'bump',
383
+ 'bums',
384
+ 'bun',
385
+ 'bunk',
386
+ 'buns',
387
+ 'bunt',
388
+ 'buoy',
389
+ 'burl',
390
+ 'burn',
391
+ 'burp',
392
+ 'burr',
393
+ 'bury',
394
+ 'bus',
395
+ 'bush',
396
+ 'buss',
397
+ 'bust',
398
+ 'busy',
399
+ 'but',
400
+ 'butt',
401
+ 'buy',
402
+ 'buys',
403
+ 'buzz',
404
+ 'by',
405
+ 'bye',
406
+ 'byes',
407
+ 'byte',
408
+ 'cab',
409
+ 'cabs',
410
+ 'cad',
411
+ 'cafe',
412
+ 'cage',
413
+ 'cake',
414
+ 'calf',
415
+ 'call',
416
+ 'calm',
417
+ 'came',
418
+ 'camp',
419
+ 'can',
420
+ 'cane',
421
+ 'cans',
422
+ 'cap',
423
+ 'cape',
424
+ 'caps',
425
+ 'car',
426
+ 'card',
427
+ 'care',
428
+ 'cars',
429
+ 'cart',
430
+ 'case',
431
+ 'cash',
432
+ 'cask',
433
+ 'cast',
434
+ 'cat',
435
+ 'cats',
436
+ 'cave',
437
+ 'caw',
438
+ 'caws',
439
+ 'cell',
440
+ 'cent',
441
+ 'chap',
442
+ 'char',
443
+ 'chat',
444
+ 'chef',
445
+ 'chew',
446
+ 'chin',
447
+ 'chip',
448
+ 'chop',
449
+ 'chum',
450
+ 'cite',
451
+ 'city',
452
+ 'clad',
453
+ 'clam',
454
+ 'clan',
455
+ 'clap',
456
+ 'claw',
457
+ 'clay',
458
+ 'clip',
459
+ 'clod',
460
+ 'clog',
461
+ 'club',
462
+ 'clue',
463
+ 'coal',
464
+ 'coat',
465
+ 'coax',
466
+ 'cock',
467
+ 'cod',
468
+ 'code',
469
+ 'cods',
470
+ 'coil',
471
+ 'coin',
472
+ 'coke',
473
+ 'cold',
474
+ 'colt',
475
+ 'comb',
476
+ 'come',
477
+ 'cone',
478
+ 'cons',
479
+ 'coo',
480
+ 'cook',
481
+ 'cool',
482
+ 'coon',
483
+ 'coop',
484
+ 'cop',
485
+ 'cope',
486
+ 'cops',
487
+ 'copy',
488
+ 'cord',
489
+ 'core',
490
+ 'cork',
491
+ 'corn',
492
+ 'cost',
493
+ 'cot',
494
+ 'cots',
495
+ 'cove',
496
+ 'cow',
497
+ 'cowl',
498
+ 'cows',
499
+ 'cozy',
500
+ 'crab',
501
+ 'crag',
502
+ 'cram',
503
+ 'crap',
504
+ 'crew',
505
+ 'crib',
506
+ 'crop',
507
+ 'crow',
508
+ 'crux',
509
+ 'cry',
510
+ 'cub',
511
+ 'cube',
512
+ 'cubs',
513
+ 'cue',
514
+ 'cued',
515
+ 'cues',
516
+ 'cuff',
517
+ 'cull',
518
+ 'cult',
519
+ 'cup',
520
+ 'cups',
521
+ 'cur',
522
+ 'curb',
523
+ 'cure',
524
+ 'curl',
525
+ 'curs',
526
+ 'curt',
527
+ 'cusp',
528
+ 'cuss',
529
+ 'cut',
530
+ 'cute',
531
+ 'cuts',
532
+ 'cyst',
533
+ 'czar',
534
+ 'dad',
535
+ 'dads',
536
+ 'dale',
537
+ 'dam',
538
+ 'dame',
539
+ 'damn',
540
+ 'damp',
541
+ 'dams',
542
+ 'dare',
543
+ 'dark',
544
+ 'darn',
545
+ 'dart',
546
+ 'dash',
547
+ 'data',
548
+ 'date',
549
+ 'dawn',
550
+ 'day',
551
+ 'days',
552
+ 'daze',
553
+ 'dead',
554
+ 'deaf',
555
+ 'deal',
556
+ 'dean',
557
+ 'dear',
558
+ 'debt',
559
+ 'deck',
560
+ 'deed',
561
+ 'deem',
562
+ 'deep',
563
+ 'deer',
564
+ 'defy',
565
+ 'dell',
566
+ 'demo',
567
+ 'den',
568
+ 'dens',
569
+ 'dent',
570
+ 'deny',
571
+ 'desk',
572
+ 'dew',
573
+ 'dews',
574
+ 'dewy',
575
+ 'dial',
576
+ 'dice',
577
+ 'did',
578
+ 'die',
579
+ 'died',
580
+ 'dies',
581
+ 'diet',
582
+ 'dig',
583
+ 'digs',
584
+ 'dike',
585
+ 'dim',
586
+ 'dime',
587
+ 'dims',
588
+ 'din',
589
+ 'dine',
590
+ 'dint',
591
+ 'dip',
592
+ 'dips',
593
+ 'dire',
594
+ 'dirt',
595
+ 'disc',
596
+ 'dish',
597
+ 'disk',
598
+ 'dive',
599
+ 'do',
600
+ 'dock',
601
+ 'doer',
602
+ 'does',
603
+ 'dog',
604
+ 'dogs',
605
+ 'dole',
606
+ 'doll',
607
+ 'dome',
608
+ 'don',
609
+ 'done',
610
+ 'dons',
611
+ 'doom',
612
+ 'door',
613
+ 'dope',
614
+ 'dose',
615
+ 'dot',
616
+ 'dote',
617
+ 'doth',
618
+ 'dots',
619
+ 'dove',
620
+ 'down',
621
+ 'doze',
622
+ 'drab',
623
+ 'drag',
624
+ 'draw',
625
+ 'drew',
626
+ 'drip',
627
+ 'drop',
628
+ 'drug',
629
+ 'drum',
630
+ 'dry',
631
+ 'dual',
632
+ 'dub',
633
+ 'dubs',
634
+ 'duck',
635
+ 'dude',
636
+ 'due',
637
+ 'duel',
638
+ 'dues',
639
+ 'dug',
640
+ 'duke',
641
+ 'dull',
642
+ 'duly',
643
+ 'dumb',
644
+ 'dump',
645
+ 'dune',
646
+ 'dusk',
647
+ 'dust',
648
+ 'duty',
649
+ 'dye',
650
+ 'dyed',
651
+ 'dyer',
652
+ 'dyes',
653
+ 'each',
654
+ 'ear',
655
+ 'earl',
656
+ 'earn',
657
+ 'ears',
658
+ 'ease',
659
+ 'east',
660
+ 'easy',
661
+ 'eat',
662
+ 'eats',
663
+ 'ebb',
664
+ 'ebbs',
665
+ 'echo',
666
+ 'eddy',
667
+ 'edge',
668
+ 'edit',
669
+ 'eel',
670
+ 'eels',
671
+ 'egg',
672
+ 'eggs',
673
+ 'ego',
674
+ 'egos',
675
+ 'eke',
676
+ 'eked',
677
+ 'ekes',
678
+ 'el',
679
+ 'elf',
680
+ 'elk',
681
+ 'elks',
682
+ 'elm',
683
+ 'elms',
684
+ 'els',
685
+ 'else',
686
+ 'emit',
687
+ 'end',
688
+ 'ends',
689
+ 'envy',
690
+ 'epic',
691
+ 'era',
692
+ 'eras',
693
+ 'ere',
694
+ 'ergo',
695
+ 'err',
696
+ 'errs',
697
+ 'espy',
698
+ 'etc',
699
+ 'eve',
700
+ 'even',
701
+ 'ever',
702
+ 'eves',
703
+ 'evil',
704
+ 'ewe',
705
+ 'ewer',
706
+ 'ewes',
707
+ 'exam',
708
+ 'exit',
709
+ 'eye',
710
+ 'eyed',
711
+ 'eyer',
712
+ 'eyes',
713
+ 'face',
714
+ 'fact',
715
+ 'fade',
716
+ 'fag',
717
+ 'fags',
718
+ 'fail',
719
+ 'fain',
720
+ 'fair',
721
+ 'fake',
722
+ 'fall',
723
+ 'fame',
724
+ 'fan',
725
+ 'fang',
726
+ 'fans',
727
+ 'far',
728
+ 'fare',
729
+ 'farm',
730
+ 'fast',
731
+ 'fat',
732
+ 'fate',
733
+ 'fats',
734
+ 'fawn',
735
+ 'fear',
736
+ 'feat',
737
+ 'fed',
738
+ 'feds',
739
+ 'fee',
740
+ 'feed',
741
+ 'feel',
742
+ 'fees',
743
+ 'feet',
744
+ 'fell',
745
+ 'felt',
746
+ 'fen',
747
+ 'fern',
748
+ 'feud',
749
+ 'few',
750
+ 'fews',
751
+ 'fife',
752
+ 'fig',
753
+ 'figs',
754
+ 'file',
755
+ 'fill',
756
+ 'film',
757
+ 'fin',
758
+ 'find',
759
+ 'fine',
760
+ 'fins',
761
+ 'fir',
762
+ 'fire',
763
+ 'firm',
764
+ 'fish',
765
+ 'fist',
766
+ 'fit',
767
+ 'fits',
768
+ 'five',
769
+ 'fix',
770
+ 'flab',
771
+ 'flag',
772
+ 'flap',
773
+ 'flat',
774
+ 'flaw',
775
+ 'flax',
776
+ 'flea',
777
+ 'fled',
778
+ 'flee',
779
+ 'flew',
780
+ 'flip',
781
+ 'flit',
782
+ 'flop',
783
+ 'flow',
784
+ 'fly',
785
+ 'foam',
786
+ 'foci',
787
+ 'foe',
788
+ 'foes',
789
+ 'fog',
790
+ 'fogs',
791
+ 'foil',
792
+ 'fold',
793
+ 'folk',
794
+ 'fond',
795
+ 'font',
796
+ 'food',
797
+ 'fool',
798
+ 'foot',
799
+ 'for',
800
+ 'ford',
801
+ 'fore',
802
+ 'fork',
803
+ 'form',
804
+ 'fort',
805
+ 'foul',
806
+ 'four',
807
+ 'fowl',
808
+ 'fox',
809
+ 'fray',
810
+ 'free',
811
+ 'fret',
812
+ 'frog',
813
+ 'from',
814
+ 'fry',
815
+ 'fuel',
816
+ 'full',
817
+ 'fume',
818
+ 'fun',
819
+ 'fund',
820
+ 'fur',
821
+ 'furs',
822
+ 'fury',
823
+ 'fuse',
824
+ 'fuss',
825
+ 'gad',
826
+ 'gag',
827
+ 'gags',
828
+ 'gain',
829
+ 'gait',
830
+ 'gale',
831
+ 'gall',
832
+ 'game',
833
+ 'gang',
834
+ 'gap',
835
+ 'gape',
836
+ 'gaps',
837
+ 'garb',
838
+ 'gas',
839
+ 'gash',
840
+ 'gasp',
841
+ 'gate',
842
+ 'gave',
843
+ 'gay',
844
+ 'gaze',
845
+ 'gear',
846
+ 'gel',
847
+ 'gels',
848
+ 'gem',
849
+ 'gems',
850
+ 'gene',
851
+ 'germ',
852
+ 'get',
853
+ 'gets',
854
+ 'gift',
855
+ 'gig',
856
+ 'gigs',
857
+ 'gild',
858
+ 'gill',
859
+ 'gilt',
860
+ 'gin',
861
+ 'gins',
862
+ 'gird',
863
+ 'girl',
864
+ 'girt',
865
+ 'give',
866
+ 'glad',
867
+ 'glee',
868
+ 'glen',
869
+ 'glow',
870
+ 'glue',
871
+ 'gnat',
872
+ 'gnaw',
873
+ 'go',
874
+ 'goad',
875
+ 'goal',
876
+ 'goat',
877
+ 'god',
878
+ 'gods',
879
+ 'goer',
880
+ 'goes',
881
+ 'gold',
882
+ 'golf',
883
+ 'gone',
884
+ 'gong',
885
+ 'good',
886
+ 'gore',
887
+ 'gosh',
888
+ 'got',
889
+ 'goth',
890
+ 'goto',
891
+ 'gown',
892
+ 'grab',
893
+ 'gray',
894
+ 'grew',
895
+ 'grey',
896
+ 'grid',
897
+ 'grim',
898
+ 'grin',
899
+ 'grip',
900
+ 'grit',
901
+ 'grow',
902
+ 'grub',
903
+ 'gulf',
904
+ 'gull',
905
+ 'gulp',
906
+ 'gum',
907
+ 'gums',
908
+ 'gun',
909
+ 'guns',
910
+ 'guru',
911
+ 'gush',
912
+ 'gust',
913
+ 'gut',
914
+ 'guts',
915
+ 'guy',
916
+ 'guys',
917
+ 'gym',
918
+ 'gyms',
919
+ 'ha',
920
+ 'hack',
921
+ 'had',
922
+ 'hag',
923
+ 'hail',
924
+ 'hair',
925
+ 'hale',
926
+ 'half',
927
+ 'hall',
928
+ 'halt',
929
+ 'ham',
930
+ 'hams',
931
+ 'hand',
932
+ 'hang',
933
+ 'hap',
934
+ 'hard',
935
+ 'hare',
936
+ 'hark',
937
+ 'harm',
938
+ 'harp',
939
+ 'hart',
940
+ 'has',
941
+ 'hash',
942
+ 'hat',
943
+ 'hate',
944
+ 'hath',
945
+ 'hats',
946
+ 'haul',
947
+ 'have',
948
+ 'hawk',
949
+ 'hay',
950
+ 'hays',
951
+ 'haze',
952
+ 'hazy',
953
+ 'he',
954
+ 'head',
955
+ 'heal',
956
+ 'heap',
957
+ 'hear',
958
+ 'heat',
959
+ 'heed',
960
+ 'heel',
961
+ 'heir',
962
+ 'held',
963
+ 'hell',
964
+ 'helm',
965
+ 'help',
966
+ 'hem',
967
+ 'hemp',
968
+ 'hems',
969
+ 'hen',
970
+ 'hens',
971
+ 'her',
972
+ 'herb',
973
+ 'herd',
974
+ 'here',
975
+ 'hero',
976
+ 'hers',
977
+ 'hew',
978
+ 'hews',
979
+ 'hex',
980
+ 'hey',
981
+ 'hid',
982
+ 'hide',
983
+ 'high',
984
+ 'hike',
985
+ 'hill',
986
+ 'hilt',
987
+ 'him',
988
+ 'hims',
989
+ 'hind',
990
+ 'hint',
991
+ 'hip',
992
+ 'hips',
993
+ 'hire',
994
+ 'his',
995
+ 'hiss',
996
+ 'hit',
997
+ 'hits',
998
+ 'hive',
999
+ 'hoar',
1000
+ 'hoax',
1001
+ 'hoe',
1002
+ 'hoer',
1003
+ 'hoes',
1004
+ 'hog',
1005
+ 'hogs',
1006
+ 'hold',
1007
+ 'hole',
1008
+ 'holy',
1009
+ 'home',
1010
+ 'hone',
1011
+ 'hood',
1012
+ 'hoof',
1013
+ 'hook',
1014
+ 'hoop',
1015
+ 'hoot',
1016
+ 'hop',
1017
+ 'hope',
1018
+ 'hops',
1019
+ 'horn',
1020
+ 'hose',
1021
+ 'host',
1022
+ 'hot',
1023
+ 'hour',
1024
+ 'how',
1025
+ 'howl',
1026
+ 'hows',
1027
+ 'hrs',
1028
+ 'hub',
1029
+ 'hubs',
1030
+ 'hue',
1031
+ 'hued',
1032
+ 'hues',
1033
+ 'hug',
1034
+ 'huge',
1035
+ 'hugs',
1036
+ 'huh',
1037
+ 'hull',
1038
+ 'hum',
1039
+ 'hump',
1040
+ 'hums',
1041
+ 'hung',
1042
+ 'hunk',
1043
+ 'hunt',
1044
+ 'hurl',
1045
+ 'hurt',
1046
+ 'hush',
1047
+ 'husk',
1048
+ 'hut',
1049
+ 'huts',
1050
+ 'hymn',
1051
+ 'hype',
1052
+ 'ice',
1053
+ 'iced',
1054
+ 'ices',
1055
+ 'icon',
1056
+ 'icy',
1057
+ 'id',
1058
+ 'idea',
1059
+ 'idle',
1060
+ 'idly',
1061
+ 'idol',
1062
+ 'if',
1063
+ 'ii',
1064
+ 'iii',
1065
+ 'ill',
1066
+ 'ills',
1067
+ 'illy',
1068
+ 'imp',
1069
+ 'imps',
1070
+ 'in',
1071
+ 'inch',
1072
+ 'ink',
1073
+ 'inks',
1074
+ 'inly',
1075
+ 'inn',
1076
+ 'inns',
1077
+ 'ins',
1078
+ 'into',
1079
+ 'ion',
1080
+ 'ions',
1081
+ 'ire',
1082
+ 'ires',
1083
+ 'iris',
1084
+ 'irk',
1085
+ 'irks',
1086
+ 'iron',
1087
+ 'is',
1088
+ 'isle',
1089
+ 'it',
1090
+ 'itch',
1091
+ 'item',
1092
+ 'its',
1093
+ 'iv',
1094
+ 'ivy',
1095
+ 'ix',
1096
+ 'jab',
1097
+ 'jabs',
1098
+ 'jack',
1099
+ 'jade',
1100
+ 'jail',
1101
+ 'jam',
1102
+ 'jams',
1103
+ 'jar',
1104
+ 'jars',
1105
+ 'jaw',
1106
+ 'jaws',
1107
+ 'jay',
1108
+ 'jazz',
1109
+ 'jean',
1110
+ 'jeep',
1111
+ 'jeer',
1112
+ 'jerk',
1113
+ 'jest',
1114
+ 'jet',
1115
+ 'jets',
1116
+ 'jig',
1117
+ 'jigs',
1118
+ 'job',
1119
+ 'jobs',
1120
+ 'jog',
1121
+ 'jogs',
1122
+ 'john',
1123
+ 'join',
1124
+ 'joke',
1125
+ 'jolt',
1126
+ 'jot',
1127
+ 'jots',
1128
+ 'joy',
1129
+ 'joys',
1130
+ 'jug',
1131
+ 'jugs',
1132
+ 'jump',
1133
+ 'junk',
1134
+ 'jury',
1135
+ 'just',
1136
+ 'jut',
1137
+ 'kHz',
1138
+ 'keel',
1139
+ 'keen',
1140
+ 'keep',
1141
+ 'ken',
1142
+ 'kept',
1143
+ 'key',
1144
+ 'keys',
1145
+ 'kick',
1146
+ 'kid',
1147
+ 'kids',
1148
+ 'kill',
1149
+ 'kin',
1150
+ 'kind',
1151
+ 'king',
1152
+ 'kiss',
1153
+ 'kit',
1154
+ 'kite',
1155
+ 'kits',
1156
+ 'knee',
1157
+ 'knew',
1158
+ 'knit',
1159
+ 'knob',
1160
+ 'knot',
1161
+ 'know',
1162
+ 'lab',
1163
+ 'labs',
1164
+ 'lace',
1165
+ 'lack',
1166
+ 'lad',
1167
+ 'lads',
1168
+ 'lady',
1169
+ 'lag',
1170
+ 'lags',
1171
+ 'laid',
1172
+ 'lain',
1173
+ 'lair',
1174
+ 'lake',
1175
+ 'lamb',
1176
+ 'lame',
1177
+ 'lamp',
1178
+ 'land',
1179
+ 'lane',
1180
+ 'lap',
1181
+ 'laps',
1182
+ 'lard',
1183
+ 'lark',
1184
+ 'lash',
1185
+ 'lass',
1186
+ 'last',
1187
+ 'late',
1188
+ 'lath',
1189
+ 'lava',
1190
+ 'law',
1191
+ 'lawn',
1192
+ 'laws',
1193
+ 'lay',
1194
+ 'lays',
1195
+ 'lazy',
1196
+ 'lead',
1197
+ 'leaf',
1198
+ 'leak',
1199
+ 'lean',
1200
+ 'leap',
1201
+ 'led',
1202
+ 'lee',
1203
+ 'leer',
1204
+ 'lees',
1205
+ 'left',
1206
+ 'leg',
1207
+ 'legs',
1208
+ 'lend',
1209
+ 'lens',
1210
+ 'lent',
1211
+ 'less',
1212
+ 'lest',
1213
+ 'let',
1214
+ 'lets',
1215
+ 'levy',
1216
+ 'lewd',
1217
+ 'liar',
1218
+ 'lick',
1219
+ 'lid',
1220
+ 'lids',
1221
+ 'lie',
1222
+ 'lied',
1223
+ 'lien',
1224
+ 'lier',
1225
+ 'lies',
1226
+ 'lieu',
1227
+ 'life',
1228
+ 'lift',
1229
+ 'like',
1230
+ 'lily',
1231
+ 'limb',
1232
+ 'lime',
1233
+ 'limp',
1234
+ 'line',
1235
+ 'link',
1236
+ 'lint',
1237
+ 'lion',
1238
+ 'lip',
1239
+ 'lips',
1240
+ 'lisp',
1241
+ 'list',
1242
+ 'lit',
1243
+ 'live',
1244
+ 'load',
1245
+ 'loaf',
1246
+ 'loan',
1247
+ 'lobe',
1248
+ 'loci',
1249
+ 'lock',
1250
+ 'loft',
1251
+ 'log',
1252
+ 'logs',
1253
+ 'loin',
1254
+ 'lone',
1255
+ 'long',
1256
+ 'look',
1257
+ 'loom',
1258
+ 'loon',
1259
+ 'loop',
1260
+ 'loot',
1261
+ 'lord',
1262
+ 'lore',
1263
+ 'lose',
1264
+ 'loss',
1265
+ 'lost',
1266
+ 'lot',
1267
+ 'lots',
1268
+ 'loud',
1269
+ 'love',
1270
+ 'low',
1271
+ 'lows',
1272
+ 'luck',
1273
+ 'lull',
1274
+ 'lump',
1275
+ 'lung',
1276
+ 'lure',
1277
+ 'lurk',
1278
+ 'lust',
1279
+ 'lute',
1280
+ 'lynx',
1281
+ 'lyre',
1282
+ 'mace',
1283
+ 'mad',
1284
+ 'made',
1285
+ 'maid',
1286
+ 'mail',
1287
+ 'maim',
1288
+ 'main',
1289
+ 'make',
1290
+ 'male',
1291
+ 'mall',
1292
+ 'malt',
1293
+ 'mama',
1294
+ 'man',
1295
+ 'mane',
1296
+ 'mans',
1297
+ 'many',
1298
+ 'map',
1299
+ 'maps',
1300
+ 'mar',
1301
+ 'mare',
1302
+ 'mark',
1303
+ 'mars',
1304
+ 'mart',
1305
+ 'mash',
1306
+ 'mask',
1307
+ 'mass',
1308
+ 'mast',
1309
+ 'mat',
1310
+ 'mate',
1311
+ 'math',
1312
+ 'mats',
1313
+ 'max',
1314
+ 'may',
1315
+ 'mays',
1316
+ 'maze',
1317
+ 'me',
1318
+ 'mead',
1319
+ 'meal',
1320
+ 'mean',
1321
+ 'meat',
1322
+ 'med',
1323
+ 'meek',
1324
+ 'meet',
1325
+ 'meld',
1326
+ 'melt',
1327
+ 'memo',
1328
+ 'men',
1329
+ 'mend',
1330
+ 'mens',
1331
+ 'menu',
1332
+ 'mer',
1333
+ 'mere',
1334
+ 'mesh',
1335
+ 'mess',
1336
+ 'met',
1337
+ 'meta',
1338
+ 'mete',
1339
+ 'mets',
1340
+ 'mew',
1341
+ 'mews',
1342
+ 'mica',
1343
+ 'mice',
1344
+ 'mid',
1345
+ 'mien',
1346
+ 'mies',
1347
+ 'miff',
1348
+ 'mild',
1349
+ 'mile',
1350
+ 'milk',
1351
+ 'mill',
1352
+ 'mind',
1353
+ 'mine',
1354
+ 'ming',
1355
+ 'mink',
1356
+ 'mint',
1357
+ 'mire',
1358
+ 'miss',
1359
+ 'mist',
1360
+ 'mite',
1361
+ 'mix',
1362
+ 'ml',
1363
+ 'moan',
1364
+ 'moat',
1365
+ 'mob',
1366
+ 'mobs',
1367
+ 'mock',
1368
+ 'mode',
1369
+ 'mold',
1370
+ 'mole',
1371
+ 'mom',
1372
+ 'moms',
1373
+ 'monk',
1374
+ 'mono',
1375
+ 'mood',
1376
+ 'moon',
1377
+ 'moor',
1378
+ 'moot',
1379
+ 'mop',
1380
+ 'mops',
1381
+ 'more',
1382
+ 'morn',
1383
+ 'moss',
1384
+ 'most',
1385
+ 'moth',
1386
+ 'move',
1387
+ 'mow',
1388
+ 'mows',
1389
+ 'much',
1390
+ 'muck',
1391
+ 'mud',
1392
+ 'muds',
1393
+ 'muff',
1394
+ 'mug',
1395
+ 'mugs',
1396
+ 'mule',
1397
+ 'muse',
1398
+ 'musk',
1399
+ 'must',
1400
+ 'mute',
1401
+ 'my',
1402
+ 'myth',
1403
+ 'nag',
1404
+ 'nags',
1405
+ 'nail',
1406
+ 'name',
1407
+ 'nap',
1408
+ 'naps',
1409
+ 'navy',
1410
+ 'nay',
1411
+ 'near',
1412
+ 'neat',
1413
+ 'neck',
1414
+ 'need',
1415
+ 'nest',
1416
+ 'net',
1417
+ 'nets',
1418
+ 'new',
1419
+ 'news',
1420
+ 'newt',
1421
+ 'next',
1422
+ 'nice',
1423
+ 'nick',
1424
+ 'nigh',
1425
+ 'nil',
1426
+ 'nine',
1427
+ 'nip',
1428
+ 'nips',
1429
+ 'nix',
1430
+ 'no',
1431
+ 'nod',
1432
+ 'node',
1433
+ 'nods',
1434
+ 'non',
1435
+ 'none',
1436
+ 'nook',
1437
+ 'noon',
1438
+ 'nope',
1439
+ 'nor',
1440
+ 'norm',
1441
+ 'nose',
1442
+ 'not',
1443
+ 'note',
1444
+ 'noun',
1445
+ 'now',
1446
+ 'nows',
1447
+ 'null',
1448
+ 'numb',
1449
+ 'nun',
1450
+ 'nuns',
1451
+ 'nut',
1452
+ 'nuts',
1453
+ 'oak',
1454
+ 'oaks',
1455
+ 'oar',
1456
+ 'oars',
1457
+ 'oat',
1458
+ 'oath',
1459
+ 'oats',
1460
+ 'obey',
1461
+ 'odd',
1462
+ 'odds',
1463
+ 'ode',
1464
+ 'oded',
1465
+ 'oder',
1466
+ 'odes',
1467
+ 'of',
1468
+ 'off',
1469
+ 'offs',
1470
+ 'oft',
1471
+ 'oh',
1472
+ 'oil',
1473
+ 'oils',
1474
+ 'oily',
1475
+ 'okay',
1476
+ 'old',
1477
+ 'omen',
1478
+ 'omit',
1479
+ 'on',
1480
+ 'once',
1481
+ 'one',
1482
+ 'oner',
1483
+ 'ones',
1484
+ 'only',
1485
+ 'ons',
1486
+ 'onto',
1487
+ 'oops',
1488
+ 'ooze',
1489
+ 'opal',
1490
+ 'open',
1491
+ 'opt',
1492
+ 'opts',
1493
+ 'or',
1494
+ 'oral',
1495
+ 'orb',
1496
+ 'ore',
1497
+ 'ores',
1498
+ 'orgy',
1499
+ 'orly',
1500
+ 'our',
1501
+ 'ours',
1502
+ 'out',
1503
+ 'outs',
1504
+ 'oval',
1505
+ 'oven',
1506
+ 'over',
1507
+ 'ovum',
1508
+ 'owe',
1509
+ 'owed',
1510
+ 'owes',
1511
+ 'owl',
1512
+ 'owls',
1513
+ 'own',
1514
+ 'owns',
1515
+ 'ox',
1516
+ 'oxen',
1517
+ 'pa',
1518
+ 'pace',
1519
+ 'pack',
1520
+ 'pact',
1521
+ 'pad',
1522
+ 'pads',
1523
+ 'page',
1524
+ 'paid',
1525
+ 'pail',
1526
+ 'pain',
1527
+ 'pair',
1528
+ 'pal',
1529
+ 'pale',
1530
+ 'pall',
1531
+ 'palm',
1532
+ 'pals',
1533
+ 'pan',
1534
+ 'pane',
1535
+ 'pang',
1536
+ 'pans',
1537
+ 'pant',
1538
+ 'papa',
1539
+ 'par',
1540
+ 'pare',
1541
+ 'park',
1542
+ 'pars',
1543
+ 'part',
1544
+ 'pas',
1545
+ 'pass',
1546
+ 'past',
1547
+ 'pat',
1548
+ 'path',
1549
+ 'pats',
1550
+ 'pave',
1551
+ 'paw',
1552
+ 'pawn',
1553
+ 'paws',
1554
+ 'pay',
1555
+ 'pays',
1556
+ 'pea',
1557
+ 'peak',
1558
+ 'peal',
1559
+ 'pear',
1560
+ 'peas',
1561
+ 'peat',
1562
+ 'peck',
1563
+ 'peek',
1564
+ 'peel',
1565
+ 'peep',
1566
+ 'peer',
1567
+ 'peg',
1568
+ 'pegs',
1569
+ 'pelt',
1570
+ 'pen',
1571
+ 'pend',
1572
+ 'pens',
1573
+ 'pent',
1574
+ 'pep',
1575
+ 'per',
1576
+ 'pest',
1577
+ 'pet',
1578
+ 'pets',
1579
+ 'pew',
1580
+ 'pews',
1581
+ 'pi',
1582
+ 'pick',
1583
+ 'pie',
1584
+ 'pied',
1585
+ 'pier',
1586
+ 'pies',
1587
+ 'pig',
1588
+ 'pigs',
1589
+ 'pike',
1590
+ 'pile',
1591
+ 'pill',
1592
+ 'pin',
1593
+ 'pine',
1594
+ 'ping',
1595
+ 'pink',
1596
+ 'pins',
1597
+ 'pint',
1598
+ 'pipe',
1599
+ 'piss',
1600
+ 'pit',
1601
+ 'pith',
1602
+ 'pits',
1603
+ 'pity',
1604
+ 'plan',
1605
+ 'play',
1606
+ 'plea',
1607
+ 'plod',
1608
+ 'plot',
1609
+ 'ploy',
1610
+ 'plug',
1611
+ 'plum',
1612
+ 'plus',
1613
+ 'ply',
1614
+ 'pod',
1615
+ 'pods',
1616
+ 'poem',
1617
+ 'poet',
1618
+ 'poke',
1619
+ 'pole',
1620
+ 'poll',
1621
+ 'polo',
1622
+ 'pomp',
1623
+ 'pond',
1624
+ 'pony',
1625
+ 'poof',
1626
+ 'pool',
1627
+ 'poor',
1628
+ 'pop',
1629
+ 'pope',
1630
+ 'pops',
1631
+ 'pore',
1632
+ 'pork',
1633
+ 'porn',
1634
+ 'port',
1635
+ 'pose',
1636
+ 'post',
1637
+ 'pot',
1638
+ 'pots',
1639
+ 'pour',
1640
+ 'pout',
1641
+ 'pox',
1642
+ 'pray',
1643
+ 'prey',
1644
+ 'pro',
1645
+ 'prop',
1646
+ 'pros',
1647
+ 'prow',
1648
+ 'pry',
1649
+ 'pub',
1650
+ 'pubs',
1651
+ 'puff',
1652
+ 'pull',
1653
+ 'pulp',
1654
+ 'pump',
1655
+ 'pun',
1656
+ 'puns',
1657
+ 'punt',
1658
+ 'puny',
1659
+ 'pup',
1660
+ 'pupa',
1661
+ 'pups',
1662
+ 'pure',
1663
+ 'purr',
1664
+ 'push',
1665
+ 'puss',
1666
+ 'put',
1667
+ 'puts',
1668
+ 'quay',
1669
+ 'quit',
1670
+ 'quiz',
1671
+ 'quo',
1672
+ 'race',
1673
+ 'rack',
1674
+ 'raft',
1675
+ 'rag',
1676
+ 'rage',
1677
+ 'rags',
1678
+ 'raid',
1679
+ 'rail',
1680
+ 'rain',
1681
+ 'rake',
1682
+ 'ram',
1683
+ 'ramp',
1684
+ 'rams',
1685
+ 'ran',
1686
+ 'rang',
1687
+ 'rank',
1688
+ 'rant',
1689
+ 'rap',
1690
+ 'rape',
1691
+ 'raps',
1692
+ 'rapt',
1693
+ 'rare',
1694
+ 'rash',
1695
+ 'rasp',
1696
+ 'rat',
1697
+ 'rate',
1698
+ 'rats',
1699
+ 'rave',
1700
+ 'raw',
1701
+ 'raws',
1702
+ 'ray',
1703
+ 'rays',
1704
+ 're',
1705
+ 'read',
1706
+ 'real',
1707
+ 'ream',
1708
+ 'reap',
1709
+ 'rear',
1710
+ 'red',
1711
+ 'reds',
1712
+ 'reed',
1713
+ 'reef',
1714
+ 'reel',
1715
+ 'rein',
1716
+ 'rely',
1717
+ 'rend',
1718
+ 'reno',
1719
+ 'rent',
1720
+ 'res',
1721
+ 'rest',
1722
+ 'rib',
1723
+ 'ribs',
1724
+ 'rice',
1725
+ 'rich',
1726
+ 'rid',
1727
+ 'ride',
1728
+ 'rids',
1729
+ 'rift',
1730
+ 'rig',
1731
+ 'rigs',
1732
+ 'rill',
1733
+ 'rim',
1734
+ 'rime',
1735
+ 'rims',
1736
+ 'rind',
1737
+ 'ring',
1738
+ 'riot',
1739
+ 'rip',
1740
+ 'ripe',
1741
+ 'rips',
1742
+ 'rise',
1743
+ 'risk',
1744
+ 'rite',
1745
+ 'rive',
1746
+ 'road',
1747
+ 'roam',
1748
+ 'roar',
1749
+ 'rob',
1750
+ 'robe',
1751
+ 'robs',
1752
+ 'rock',
1753
+ 'rod',
1754
+ 'rode',
1755
+ 'rods',
1756
+ 'roe',
1757
+ 'roes',
1758
+ 'role',
1759
+ 'roll',
1760
+ 'romp',
1761
+ 'roof',
1762
+ 'rook',
1763
+ 'room',
1764
+ 'root',
1765
+ 'rope',
1766
+ 'rose',
1767
+ 'rosy',
1768
+ 'rot',
1769
+ 'rots',
1770
+ 'rout',
1771
+ 'rove',
1772
+ 'row',
1773
+ 'rows',
1774
+ 'rub',
1775
+ 'rubs',
1776
+ 'ruby',
1777
+ 'rude',
1778
+ 'rue',
1779
+ 'rues',
1780
+ 'rug',
1781
+ 'rugs',
1782
+ 'ruin',
1783
+ 'rule',
1784
+ 'rum',
1785
+ 'rump',
1786
+ 'run',
1787
+ 'rung',
1788
+ 'runs',
1789
+ 'rush',
1790
+ 'rust',
1791
+ 'rut',
1792
+ 'ruts',
1793
+ 'rye',
1794
+ 'sack',
1795
+ 'sad',
1796
+ 'safe',
1797
+ 'sag',
1798
+ 'sage',
1799
+ 'sags',
1800
+ 'said',
1801
+ 'sail',
1802
+ 'sake',
1803
+ 'sale',
1804
+ 'salt',
1805
+ 'same',
1806
+ 'sand',
1807
+ 'sane',
1808
+ 'sang',
1809
+ 'sank',
1810
+ 'sap',
1811
+ 'saps',
1812
+ 'sash',
1813
+ 'sat',
1814
+ 'sate',
1815
+ 'save',
1816
+ 'saw',
1817
+ 'saws',
1818
+ 'say',
1819
+ 'says',
1820
+ 'scam',
1821
+ 'scan',
1822
+ 'scar',
1823
+ 'scow',
1824
+ 'scum',
1825
+ 'sea',
1826
+ 'seal',
1827
+ 'seam',
1828
+ 'sear',
1829
+ 'seas',
1830
+ 'seat',
1831
+ 'sect',
1832
+ 'see',
1833
+ 'seed',
1834
+ 'seek',
1835
+ 'seem',
1836
+ 'seen',
1837
+ 'seep',
1838
+ 'seer',
1839
+ 'sees',
1840
+ 'self',
1841
+ 'sell',
1842
+ 'send',
1843
+ 'sent',
1844
+ 'serf',
1845
+ 'set',
1846
+ 'sets',
1847
+ 'sew',
1848
+ 'sews',
1849
+ 'sex',
1850
+ 'sham',
1851
+ 'she',
1852
+ 'shed',
1853
+ 'shin',
1854
+ 'ship',
1855
+ 'shit',
1856
+ 'shod',
1857
+ 'shoe',
1858
+ 'shop',
1859
+ 'shot',
1860
+ 'show',
1861
+ 'shun',
1862
+ 'shut',
1863
+ 'shy',
1864
+ 'sick',
1865
+ 'side',
1866
+ 'sift',
1867
+ 'sigh',
1868
+ 'sign',
1869
+ 'silk',
1870
+ 'sill',
1871
+ 'silt',
1872
+ 'sin',
1873
+ 'sine',
1874
+ 'sing',
1875
+ 'sink',
1876
+ 'sins',
1877
+ 'sip',
1878
+ 'sips',
1879
+ 'sir',
1880
+ 'sire',
1881
+ 'sirs',
1882
+ 'sit',
1883
+ 'site',
1884
+ 'sits',
1885
+ 'six',
1886
+ 'size',
1887
+ 'skew',
1888
+ 'ski',
1889
+ 'skim',
1890
+ 'skin',
1891
+ 'skip',
1892
+ 'skis',
1893
+ 'sky',
1894
+ 'slab',
1895
+ 'slam',
1896
+ 'slap',
1897
+ 'slat',
1898
+ 'slay',
1899
+ 'sled',
1900
+ 'slew',
1901
+ 'slid',
1902
+ 'slim',
1903
+ 'slip',
1904
+ 'slit',
1905
+ 'slop',
1906
+ 'slot',
1907
+ 'slow',
1908
+ 'slug',
1909
+ 'slum',
1910
+ 'slur',
1911
+ 'sly',
1912
+ 'smog',
1913
+ 'smug',
1914
+ 'snap',
1915
+ 'snow',
1916
+ 'snug',
1917
+ 'so',
1918
+ 'soak',
1919
+ 'soap',
1920
+ 'soar',
1921
+ 'sob',
1922
+ 'sobs',
1923
+ 'sock',
1924
+ 'sod',
1925
+ 'soda',
1926
+ 'sods',
1927
+ 'sofa',
1928
+ 'soft',
1929
+ 'soil',
1930
+ 'sold',
1931
+ 'sole',
1932
+ 'solo',
1933
+ 'some',
1934
+ 'son',
1935
+ 'song',
1936
+ 'sons',
1937
+ 'soon',
1938
+ 'soot',
1939
+ 'sore',
1940
+ 'sort',
1941
+ 'sos',
1942
+ 'soul',
1943
+ 'soup',
1944
+ 'sour',
1945
+ 'span',
1946
+ 'spat',
1947
+ 'sped',
1948
+ 'spin',
1949
+ 'spit',
1950
+ 'spot',
1951
+ 'spun',
1952
+ 'spur',
1953
+ 'spy',
1954
+ 'stab',
1955
+ 'stag',
1956
+ 'star',
1957
+ 'stay',
1958
+ 'stem',
1959
+ 'step',
1960
+ 'stew',
1961
+ 'stir',
1962
+ 'stop',
1963
+ 'stow',
1964
+ 'stub',
1965
+ 'stud',
1966
+ 'stun',
1967
+ 'sub',
1968
+ 'subs',
1969
+ 'such',
1970
+ 'suck',
1971
+ 'suds',
1972
+ 'sue',
1973
+ 'sued',
1974
+ 'suer',
1975
+ 'sues',
1976
+ 'suit',
1977
+ 'sulk',
1978
+ 'sum',
1979
+ 'sums',
1980
+ 'sun',
1981
+ 'sung',
1982
+ 'sunk',
1983
+ 'suns',
1984
+ 'sup',
1985
+ 'sure',
1986
+ 'surf',
1987
+ 'swam',
1988
+ 'swan',
1989
+ 'swap',
1990
+ 'sway',
1991
+ 'swim',
1992
+ 'swum',
1993
+ 'tab',
1994
+ 'tabs',
1995
+ 'tack',
1996
+ 'tact',
1997
+ 'tag',
1998
+ 'tags',
1999
+ 'tail',
2000
+ 'take',
2001
+ 'tale',
2002
+ 'talk',
2003
+ 'tall',
2004
+ 'tame',
2005
+ 'tan',
2006
+ 'tang',
2007
+ 'tank',
2008
+ 'tans',
2009
+ 'tap',
2010
+ 'tape',
2011
+ 'taps',
2012
+ 'tar',
2013
+ 'tars',
2014
+ 'tart',
2015
+ 'task',
2016
+ 'tau',
2017
+ 'taut',
2018
+ 'tax',
2019
+ 'taxi',
2020
+ 'tea',
2021
+ 'team',
2022
+ 'tear',
2023
+ 'teas',
2024
+ 'teem',
2025
+ 'teen',
2026
+ 'tell',
2027
+ 'ten',
2028
+ 'tend',
2029
+ 'tens',
2030
+ 'tent',
2031
+ 'term',
2032
+ 'test',
2033
+ 'text',
2034
+ 'than',
2035
+ 'that',
2036
+ 'thaw',
2037
+ 'the',
2038
+ 'them',
2039
+ 'then',
2040
+ 'they',
2041
+ 'thin',
2042
+ 'this',
2043
+ 'thud',
2044
+ 'thug',
2045
+ 'thus',
2046
+ 'tick',
2047
+ 'tide',
2048
+ 'tidy',
2049
+ 'tie',
2050
+ 'tied',
2051
+ 'tier',
2052
+ 'ties',
2053
+ 'tile',
2054
+ 'till',
2055
+ 'tilt',
2056
+ 'time',
2057
+ 'tin',
2058
+ 'tins',
2059
+ 'tint',
2060
+ 'tiny',
2061
+ 'tip',
2062
+ 'tips',
2063
+ 'tire',
2064
+ 'tit',
2065
+ 'tits',
2066
+ 'to',
2067
+ 'toad',
2068
+ 'toe',
2069
+ 'toed',
2070
+ 'toes',
2071
+ 'toil',
2072
+ 'told',
2073
+ 'toll',
2074
+ 'tom',
2075
+ 'tomb',
2076
+ 'toms',
2077
+ 'ton',
2078
+ 'tone',
2079
+ 'tons',
2080
+ 'too',
2081
+ 'took',
2082
+ 'tool',
2083
+ 'top',
2084
+ 'tops',
2085
+ 'tore',
2086
+ 'torn',
2087
+ 'toss',
2088
+ 'tour',
2089
+ 'tow',
2090
+ 'town',
2091
+ 'tows',
2092
+ 'toy',
2093
+ 'toys',
2094
+ 'trap',
2095
+ 'tray',
2096
+ 'tree',
2097
+ 'trek',
2098
+ 'trim',
2099
+ 'trig',
2100
+ 'trip',
2101
+ 'trod',
2102
+ 'trot',
2103
+ 'true',
2104
+ 'try',
2105
+ 'tty',
2106
+ 'ttys',
2107
+ 'tub',
2108
+ 'tube',
2109
+ 'tubs',
2110
+ 'tuck',
2111
+ 'tuft',
2112
+ 'tug',
2113
+ 'tugs',
2114
+ 'tune',
2115
+ 'turf',
2116
+ 'turn',
2117
+ 'twas',
2118
+ 'twig',
2119
+ 'twin',
2120
+ 'two',
2121
+ 'twos',
2122
+ 'type',
2123
+ 'ugh',
2124
+ 'ugly',
2125
+ 'undo',
2126
+ 'unit',
2127
+ 'unto',
2128
+ 'up',
2129
+ 'upon',
2130
+ 'ups',
2131
+ 'urge',
2132
+ 'urn',
2133
+ 'urns',
2134
+ 'us',
2135
+ 'use',
2136
+ 'used',
2137
+ 'user',
2138
+ 'uses',
2139
+ 'uucp',
2140
+ 'vale',
2141
+ 'van',
2142
+ 'vane',
2143
+ 'vans',
2144
+ 'vary',
2145
+ 'vase',
2146
+ 'vast',
2147
+ 'vat',
2148
+ 'vats',
2149
+ 'veal',
2150
+ 'veer',
2151
+ 'veil',
2152
+ 'vein',
2153
+ 'vend',
2154
+ 'vent',
2155
+ 'verb',
2156
+ 'very',
2157
+ 'vest',
2158
+ 'veto',
2159
+ 'vex',
2160
+ 'vi',
2161
+ 'via',
2162
+ 'vial',
2163
+ 'vice',
2164
+ 'vie',
2165
+ 'vied',
2166
+ 'vier',
2167
+ 'vies',
2168
+ 'view',
2169
+ 'vii',
2170
+ 'viii',
2171
+ 'vile',
2172
+ 'vine',
2173
+ 'vis',
2174
+ 'visa',
2175
+ 'vita',
2176
+ 'void',
2177
+ 'volt',
2178
+ 'vote',
2179
+ 'vow',
2180
+ 'vows',
2181
+ 'wade',
2182
+ 'waft',
2183
+ 'wag',
2184
+ 'wage',
2185
+ 'wags',
2186
+ 'wail',
2187
+ 'wait',
2188
+ 'wake',
2189
+ 'walk',
2190
+ 'wall',
2191
+ 'wan',
2192
+ 'wand',
2193
+ 'wane',
2194
+ 'want',
2195
+ 'war',
2196
+ 'ward',
2197
+ 'ware',
2198
+ 'warm',
2199
+ 'warn',
2200
+ 'warp',
2201
+ 'wars',
2202
+ 'wart',
2203
+ 'wary',
2204
+ 'was',
2205
+ 'wash',
2206
+ 'wasp',
2207
+ 'wave',
2208
+ 'wax',
2209
+ 'waxy',
2210
+ 'way',
2211
+ 'ways',
2212
+ 'we',
2213
+ 'weak',
2214
+ 'wean',
2215
+ 'wear',
2216
+ 'web',
2217
+ 'webs',
2218
+ 'wed',
2219
+ 'weds',
2220
+ 'wee',
2221
+ 'weed',
2222
+ 'week',
2223
+ 'weep',
2224
+ 'weld',
2225
+ 'well',
2226
+ 'went',
2227
+ 'wept',
2228
+ 'were',
2229
+ 'west',
2230
+ 'wet',
2231
+ 'wets',
2232
+ 'what',
2233
+ 'when',
2234
+ 'whew',
2235
+ 'whey',
2236
+ 'whim',
2237
+ 'whip',
2238
+ 'whit',
2239
+ 'whiz',
2240
+ 'who',
2241
+ 'whom',
2242
+ 'why',
2243
+ 'wick',
2244
+ 'wide',
2245
+ 'wife',
2246
+ 'wig',
2247
+ 'wigs',
2248
+ 'wild',
2249
+ 'wile',
2250
+ 'will',
2251
+ 'wilt',
2252
+ 'wily',
2253
+ 'win',
2254
+ 'wind',
2255
+ 'wine',
2256
+ 'wing',
2257
+ 'wink',
2258
+ 'wins',
2259
+ 'wipe',
2260
+ 'wire',
2261
+ 'wiry',
2262
+ 'wise',
2263
+ 'wish',
2264
+ 'wisp',
2265
+ 'wit',
2266
+ 'with',
2267
+ 'wits',
2268
+ 'woe',
2269
+ 'woke',
2270
+ 'wolf',
2271
+ 'womb',
2272
+ 'wont',
2273
+ 'woo',
2274
+ 'wood',
2275
+ 'woof',
2276
+ 'wool',
2277
+ 'woos',
2278
+ 'word',
2279
+ 'wore',
2280
+ 'work',
2281
+ 'worm',
2282
+ 'worn',
2283
+ 'wove',
2284
+ 'wrap',
2285
+ 'wren',
2286
+ 'writ',
2287
+ 'xi',
2288
+ 'xii',
2289
+ 'xiii',
2290
+ 'xiv',
2291
+ 'xix',
2292
+ 'xv',
2293
+ 'xvi',
2294
+ 'xvii',
2295
+ 'xx',
2296
+ 'yacc',
2297
+ 'yank',
2298
+ 'yard',
2299
+ 'yarn',
2300
+ 'yawn',
2301
+ 'yea',
2302
+ 'yeah',
2303
+ 'year',
2304
+ 'yeas',
2305
+ 'yell',
2306
+ 'yelp',
2307
+ 'yes',
2308
+ 'yet',
2309
+ 'yoke',
2310
+ 'yon',
2311
+ 'you',
2312
+ 'your',
2313
+ 'yuck',
2314
+ 'zap',
2315
+ 'zaps',
2316
+ 'zeal',
2317
+ 'zero',
2318
+ 'zest',
2319
+ 'zinc',
2320
+ 'zone',
2321
+ 'zoo',
2322
+ 'zoom',
2323
+ 'zoos'
2324
+ ]
2325
+ MALE_NAMES = %w(Jacob Michael Joshua Matthew Ethan Andrew Daniel William Joseph Christopher Anthony Ryan Nicholas
2326
+ David Alexander Tyler James John Dylan Nathan Jonathan Brandon Samuel Christian Benjamin Zachary Logan Jose Noah
2327
+ Justin Elijah Gabriel Caleb Kevin Austin Robert Thomas Connor Evan Aidan Jack Luke Jordan Angel Isaiah Isaac Jason
2328
+ Jackson Hunter Cameron Gavin Mason Aaron Juan Kyle Charles Luis Adam Brian Aiden Eric Jayden Alex Bryan Sean Owen
2329
+ Lucas Nathaniel Ian Jesus Carlos Adrian Diego Julian Cole Ashton Steven Jeremiah Timothy Chase Devin Seth Jaden Colin Cody Landon Carter Hayden Xavier Wyatt Dominic Richard Antonio Jesse Blake Sebastian Miguel Jake Alejandro Patrick)
2330
+
2331
+ def random_male_name
2332
+ MALE_NAMES[rand(MALE_NAMES.size)]
2333
+ end
2334
+
2335
+ FEMALE_NAMES = %w(Emily Emma Madison Olivia Hannah Abigail Isabella Ashley Samantha Elizabeth Alexis Sarah Grace
2336
+ Alyssa Sophia Lauren Brianna Kayla Natalie Anna Jessica Taylor Chloe Hailey Ava Jasmine Sydney Victoria Ella Mia Morgan Julia Kaitlyn Rachel Katherine Megan Alexandra Jennifer Destiny Allison Savannah Haley Mackenzie Brooke Maria Nicole Makayla Trinity Kylie Kaylee Paige Lily Faith Zoe Stephanie Jenna Andrea Riley Katelyn Angelina Kimberly Madeline Mary Leah Lillian Michelle Amanda Sara Sofia Jordan Alexa Rebecca Gabrielle Caroline Vanessa Gabriella Avery Marissa Ariana Audrey Jada Autumn Evelyn Jocelyn Maya Arianna Isabel Amber Malanie Diana Danielle Siera Leslie Aaliyah Erin Amelia Molly Claire Bailey Melissa)
2337
+
2338
+ def random_female_name
2339
+ FEMALE_NAMES[rand(FEMALE_NAMES.size)]
2340
+ end
2341
+
2342
+ SURNAMES = %w(Smith Johnson Williams Jones Brown Davis Miller Wilson Moore Taylor Anderson Thomas Jackson White
2343
+ Harris Martin Thompson Garcia Martinez Robinson Clark Rodriguez Lewis Lee Walker Hall Allen Young Hernandez King
2344
+ Wright Lopez Hill Scott Green Adams Baker Gonzalez Nelson Carter Mitchell Perez Roberts Turner Phillips Campbell
2345
+ Parker Evans Edwards Collins Stewart Sanchez Morris Rogers Reed Cook Morgan Bell Murphy Bailey Rivera Cooper
2346
+ Richardson Cox Howard Ward Torres Peterson Gray Ramirez James Watson Brooks Kelly Sanders Price Bennett Wood
2347
+ Barnes Ross Henderson Coleman Jenkins Perry Powell Long Patterson Hughes Flores Washington Butler Simmons Foster
2348
+ Gonzales Bryant Alexander Russell Griffin Diaz Hayes Myers Ford Hamilton Graham Sullivan Wallace Woods Cole West
2349
+ Jordan Owens Reynolds Fisher Ellis Harrison Gibson Mcdonald Cruz Marshall Ortiz Gomez Murray Freeman Wells Webb
2350
+ Simpson Stevens Tucker Porter Hunter Hicks Crawford Henry Boyd Mason Morales Kennedy Warren Dixon Ramos Reyes
2351
+ Burns Gordon Shaw Holmes Rice Robertson Hunt Black Daniels Palmer Mills Nichols Grant Knight Ferguson Rose Stone
2352
+ Hawkins Dunn Perkins Hudson Spencer Gardner Stephens Payne Pierce Berry Matthews Arnold Wagner Willis Ray Watkins
2353
+ Olson Carroll Duncan Snyder Hart Cunningham Bradley Lane Andrews Ruiz Harper Fox Riley Armstrong Carpenter Weaver
2354
+ Greene Lawrence Elliott Chavez Sims Austin Peters Kelley Franklin Lawson Fields Gutierrez Ryan Schmidt Carr Vasquez
2355
+ Castillo Wheeler Chapman Oliver Montgomery Richards Williamson Johnston Banks Meyer Bishop Mccoy Howell Alvarez
2356
+ Morrison Hansen Fernandez Garza Harvey Little Burton Stanley Nguyen George Jacobs Reid Kim Fuller Lynch Dean
2357
+ Gilbert Garrett Romero Welch Larson Frazier Burke Hanson Day Mendoza Moreno Bowman Medina Fowler Brewer Hoffman
2358
+ Carlson Silva Pearson Holland Douglas Fleming Jensen Vargas Byrd Davidson Hopkins May Terry Herrera Wade
2359
+ Soto Walters Curtis Neal Caldwell Lowe Jennings Barnett Graves Jimenez Horton Shelton Barrett Obrien Castro
2360
+ Sutton Gregory Mckinney Lucas Miles Craig Rodriquez Chambers Holt Lambert Fletcher Watts Bates Hale
2361
+ Rhodes Pena Beck Newman Haynes Mcdaniel Mendez Bush Vaughn Parks Dawson Santiago Norris Hardy Love Steele
2362
+ Curry Powers Schultz Barker Guzman Page Munoz Ball Keller Chandler Weber Leonard Walsh Lyons Ramsey
2363
+ Wolfe Schneider Mullins Benson Sharp Bowen Daniel Barber Cummings Hines Baldwin Griffith Valdez Hubbard
2364
+ Salazar Reeves Warner Stevenson Burgess Santos Tate Cross Garner Mann Mack Moss Thornton Dennis Mcgee
2365
+ Farmer Delgado Aguilar Vega Glover Manning Cohen Harmon Rodgers Robbins Newton Todd Blair Higgins Ingram
2366
+ Reese Cannon Strickland Townsend Potter Goodwin Walton Rowe Hampton Ortega Patton Swanson Joseph Francis
2367
+ Goodman Maldonado Yates Becker Erickson Hodges Rios Conner Adkins Webster Norman Malone Hammond Flowers
2368
+ Cobb Moody Quinn Blake Maxwell Pope Floyd Osborne Paul Mccarthy Guerrero Lindsey Estrada Sandoval
2369
+ Gibbs Tyler Gross Fitzgerald Stokes Doyle Sherman Saunders Wise Colon Gill Alvarado Greer Padilla
2370
+ Simon Waters Nunez Ballard Schwartz Mcbride Houston Christensen Klein Pratt Briggs Parsons Mclaughlin
2371
+ Zimmerman French Buchanan Moran Copeland Roy Pittman Brady Mccormick Holloway Brock Poole Frank Logan
2372
+ Owen Bass Marsh Drake Wong Jefferson Park Morton Abbott Sparks Patrick Norton Huff Clayton Massey
2373
+ Lloyd Figueroa Carson Bowers Roberson Barton Tran Lamb Harrington Casey Boone Cortez Clarke Mathis
2374
+ Singleton Wilkins Cain Bryan Underwood Hogan Mckenzie Collier Luna Phelps Mcguire Allison Bridges
2375
+ Wilkerson Nash Summers Atkins Wilcox Pitts Conley Marquez Burnett Richard Cochran Chase Davenport
2376
+ Hood Gates Clay Ayala Sawyer Roman Vazquez Dickerson Hodge Acosta Flynn Espinoza Nicholson Monroe
2377
+ Wolf Morrow Kirk Randall Anthony Whitaker Oconnor Skinner Ware Molina Kirby Huffman Bradford Charles
2378
+ Gilmore Dominguez Oneal Bruce Lang Combs Kramer Heath Hancock Gallagher Gaines Shaffer Short Wiggins
2379
+ Mathews Mcclain Fischer Wall Small Melton Hensley Bond Dyer Cameron Grimes Contreras Christian Wyatt
2380
+ Baxter Snow Mosley Shepherd Larsen Hoover Beasley Glenn Petersen Whitehead Meyers Keith Garrison Vincent
2381
+ Shields Horn Savage Olsen Schroeder Hartman Woodard Mueller Kemp Deleon Booth Patel Calhoun Wiley Eaton
2382
+ Cline Navarro Harrell Lester Humphrey Parrish Duran Hutchinson Hess Dorsey Bullock Robles Beard Dalton
2383
+ Avila Vance Rich Blackwell York Johns Blankenship Trevino Salinas Campos Pruitt Moses Callahan Golden
2384
+ Montoya Hardin Guerra Mcdowell Carey Stafford Gallegos Henson Wilkinson Booker Merritt Miranda Atkinson
2385
+ Orr Decker Hobbs Preston Tanner Knox Pacheco Stephenson Glass Rojas Serrano Marks Hickman English Sweeney
2386
+ Strong Prince Mcclure Conway Walter Roth Maynard Farrell Lowery Hurst Nixon Weiss Trujillo Ellison Sloan
2387
+ Juarez Winters Mclean Randolph Leon Boyer Villarreal Mccall Gentry Carrillo Kent Ayers Lara Shannon Sexton
2388
+ Pace Hull Leblanc Browning Velasquez Leach Chang House Sellers Herring Noble Foley Bartlett Mercado Landry
2389
+ Durham Walls Barr Mckee Bauer Rivers Everett Bradshaw Pugh Velez Rush Estes Dodson Morse Sheppard Weeks
2390
+ Camacho Bean Barron Livingston Middleton Spears Branch Blevins Chen Kerr Mcconnell Hatfield Harding
2391
+ Ashley Solis Herman Frost Giles Blackburn William Pennington Woodward Finley Mcintosh Koch Best Solomon
2392
+ Mccullough Dudley Nolan Blanchard Rivas Brennan Mejia Kane Benton Joyce Buckley Haley Valentine Maddox
2393
+ Russo Mcknight Buck Moon Mcmillan Crosby Berg Dotson Mays Roach Church Chan Richmond Meadows Faulkner
2394
+ Oneill Knapp Kline Barry Ochoa Jacobson Gay Avery Hendricks Horne Shepard Hebert Cherry Cardenas Mcintyre
2395
+ Whitney Waller Holman Donaldson Cantu Terrell Morin Gillespie Fuentes Tillman Sanford Bentley Peck Key Salas
2396
+ Rollins Gamble Dickson Battle Santana Cabrera Cervantes Howe Hinton Hurley Spence Zamora Yang Mcneil Suarez
2397
+ Case Petty Gould Mcfarland Sampson Carver Bray Rosario Macdonald Stout Hester Melendez Dillon Farley Hopper
2398
+ Galloway Potts Bernard Joyner Stein Aguirre Osborn Mercer Bender Franco Rowland Sykes Benjamin Travis Pickett
2399
+ Crane Sears Mayo Dunlap Hayden Wilder Mckay Coffey Mccarty Ewing Cooley Vaughan Bonner Cotton Holder Stark
2400
+ Ferrell Cantrell Fulton Lynn Lott Calderon Rosa Pollard Hooper Burch Mullen Fry Riddle Levy David Duke Odonnell
2401
+ Guy Michael Britt Frederick Daugherty Berger Dillard Alston Jarvis Frye Riggs Chaney Odom Duffy Fitzpatrick
2402
+ Valenzuela Merrill Mayer Alford Mcpherson Acevedo Donovan Barrera Albert Cote Reilly Compton Raymond Mooney
2403
+ Mcgowan Craft Cleveland Clemons Wynn Nielsen Baird Stanton Snider Rosales Bright Witt Stuart Hays Holden
2404
+ Rutledge Kinney Clements Castaneda Slater Hahn Emerson Conrad Burks Delaney Pate Lancaster Sweet Justice
2405
+ Tyson Sharpe Whitfield Talley Macias Irwin Burris Ratliff Mccray Madden Kaufman Beach Goff Cash Bolton
2406
+ Mcfadden Levine Good Byers Kirkland Kidd Workman Carney Dale Mcleod Holcomb England Finch Head Burt Hendrix
2407
+ Sosa Haney Franks Sargent Nieves Downs Rasmussen Bird Hewitt Lindsay Foreman Valencia Oneil Delacruz)
2408
+
2409
+ def random_surname
2410
+ SURNAMES[rand(SURNAMES.size)]
2411
+ end
2412
+
2413
+ USERNAMES = %w(78450774534boysahah 11640 16913 21300 22cutepuppies 2cute2beU 2tall 35224zixzox 35266
2414
+ 3hugz2heartz1love 50cent 5pennies 6666666666 666grayfox666 abagail abhinav abiagil aboutalover
2415
+ AdollAbill AFASDFDFDFSDF afoolishfool Afra7Suli4everLove AHNAH aimee alannag alannah AlexisBraziel ALEXUS
2416
+ alicat Alicia AllieKiernan AmAnDarulestheschool ameersaad amyrogers anaconda anditshurds andrei andres
2417
+ andrewnikedunk angelfire Anilisthebes ANIMAL ANIMALWHATDOESITMEAN anisha AnkurXxXx annihillator anson Anthony
2418
+ AnticrisT appleorange armaro armerstarkers arranmasterman arthur asdfghjkl Ashleifg ashley attackofthebignose
2419
+ aurelie ayman babbygurl BabeJ babiley babypink BabyBoo Babybuby babygigglez babyllama babyphat BabyPhat
2420
+ BadDog1423 BadMan baker bamnigga BamSuckaFish BARBIEGIRL barny baSsicInstinct01 bathroom batteredsausage
2421
+ bbchic Beaner beatriz beccaishott beckstar Beckstar BeHappy BELAJOSANAC Bells BenCheong BENJO benniefat benny
2422
+ benz0r benzin4me betsy betul bewarebitchahed BibleBanger bigdumbbitch biglooka Bigslim bigworm billabong
2423
+ BillieDynamite bingo binky biotch bitches bitchisabadthing BiZzKiT bizznotch BJBarry blablaidntno BlackFox
2424
+ Blackiechan BlackMaGic BlairAlston blairisalegend BLAKEIZAHAMBOY Blingj Blink blinkflikhotmailcom blodboy
2425
+ Blondeheart Blondie BloodCountess BloodyTears bluefoxhawk1 bluey bolammers bogart boobyhead boog booga Booger
2426
+ Boogs boohilary bored boswerth botheredbiatchesxx boyfriend boyzcomeandgo BRANDO BRAWLA Brenda BrionyLeaWills
2427
+ Brizddaclown brosoverhos Brownie BrownieBoy bubblebuddy BubbleToes buburuzatm bugle bulletra burnthebearinhell
2428
+ BuTtOns bytchaR bzyne cahonies CAhViLLe CahViLLeBaLLa callofduty calum camila candybaby canks Cansy CARITA
2429
+ carlosbeaner carnivore carressa carrisma94hotmailcom carso cassie9690501 Cbury CEAPACALITA chales chaman
2430
+ chandelier Chandler changfizzle changfu chapstick charchar cHarlie Charlie CHARLOTTE charnuts CHARONTIRRORISTE
2431
+ chasingpapi chave chealse Chedda cheesecake chiara chicana chickenshizzle Chickmagnet Chickster chimchim chloe
2432
+ chrisco Chrisi chrispbacon christeen ChRiStIaNGuRl ChristieHer CHUBAKA chunkymonkey chzelle classymashyjessie
2433
+ Clavius clayton clemens climaximum cocksmacker cokesucks CoLdStOrM CompUTaWiz ComUTaWIZ connorpaterson conteh
2434
+ coolcool coolj Cootsie cordelia cornerworker couNti CountryGal17 CrACkinNdAHoOd craftlady Crayzlove Crazybabe
2435
+ crazybrat crazychick cripsalot crusher crusty Csaba CstrikeN003 cuddlycassie cumlover cutesie CutiePie Cyrus
2436
+ D3pthCh4rg3 d3s2ny0 D4rkTears DADDYDOLLS damselinthisdress dang Danielslover Danya DARKSIDE darla Darnell darnella
2437
+ DeadlyWhispers DeadMan deciving DeeDeeSlim Deidre denicia denise Derrik Destiny devin Devious diablodork Diegox
2438
+ Dilson dingswhenready dipset4lyfegangsta DirtySanchez dizzie donnell dontmarryforeiners doodlebug dooey douliveinBDA
2439
+ doyouhavepussylickit drastick drdriedal DrEaMeR drewsmillie duditz dustinandrew Dylan ebone Eased ebubekir
2440
+ echthe edgartorres efkalesnami efren eilidh elescribe elgallo elias ElleorDelli elmar ElwoodFunlump Elyse Eminems
2441
+ emmaisalesbo Emmaturnerplaysguys emmie EmOKid emokid336 emoney Ericka ericpalma eristsogtzuiopü ERTERT
2442
+ esraaisthesexiest EVINKESKIN ewald EXFRENDJESSEY faaris Fabio fares fartface farukgokcen fasthands FatCatBob
2443
+ fatfunfoot fatfunfoot fatpigbut FatturkieFurkie female Ferious finyekeh final Fishstick Fizziwig floppy flowrr
2444
+ Foofi foolish forgetthename fORMATER FoshEEdo freakshow frenchy Fresh frost FryKid frzburn funay furby Futor
2445
+ gabboo GaNgStAlOzZy Gangster gansgta4lyfe garbear Gardos Garebear gareth garew gaylife gaylordfakker Geforce
2446
+ GeMMa GeorgeSmith ghettoguyanese giantpenis ginge GISMO gmoney GodsPricelessTeaCuo golob goothy Gorman grappig
2447
+ grilledchicken Grod3n Guera guppy HaCKeR hahaa hahah HajerBest HajerRATELILUVEU HAJERUBROKEMYHEART hangwithwang
2448
+ haramzada HardcoreBiker Haresh HARPEERKFKGJKG Harry harryballs hayrettin hazel heartlessarchangel HeartlessArchangel
2449
+ heatbag hecallsmeBabe HEEEEEEBLAAAAAA hellokitty hellsangle HEMANAGAMANCHA HEPZILLA heythisisaname hfgbhydythngn
2450
+ Hiimsototallygaygay Hilde hitman HLBG hobojoe HonaHonaBord Honeylove horseynicknames HotRod hotsauce
2451
+ houstonmcdaniel humor hushpuppy huuchimama HzelEyez Iceman ICEMAN Iheartjess IINSOMNIA ilikemen iliketoshaggmonkeys
2452
+ ilikeyouyouaregood ILLUMINATI ilovealexis ilovebrielle ilovedylanandkira ilovemanu iloveyouu imagayboy
2453
+ Imgoingtokillyou iMnOtShY innergiant innocentdevil IntelInside ironhands ironmike IvanaTinkle iverson ivvet
2454
+ Izzy7777777 IzzyMiiNizzy Jbug JACKOISDEAD janette jasonia JayBird jaydee jbeezy jeffsy jenniehill Jenny
2455
+ jenster Jenzz jessicasolomakha jessie jessika jewers JH4eva jhandubalm jimmy Jimsaloverboy JingJing Jiordano
2456
+ joejoe joemamasan joesmells johnmack johnnybigbollox jojojimbob jolenebuckedtilly jolenelvstilly jolit Jordi
2457
+ Jordy jorian jquan JuDgMeNT JUICY JuliaDorey julius Justin JUSTINSKYWALKER kabe kafasi kaidi Kaiser Kaitlin
2458
+ kalle kanie Karan Karlee Karleesashitface kasey kasey katy Kaylean kaylene kdkdkdkdkdkdkdkd keke kel02
2459
+ kennykencola kenzie kevinohare KEVLORD kfizzleandjwizzle khjkljuhkljn kidwonder kieron Kiersten KILLA4LIFE
2460
+ KillaJokes KILLER Kimber Kinsall kirababy KirstylovesJamie kizno kizzix Klapon klBabykl klipzdude kngpn
2461
+ knockoutkid knowles kodered KoKet kommanda krackalacka Kristan krukut KUSHJARRUSHJA lacrazygirl LacrazyGirlAKAkarina
2462
+ ladylovlybird LaFlaka lakey laksjdfietnt lara LAURANCY laurel LAUREN laydeefloss lazysexydester LCLuckyCharms
2463
+ Lelainia lemonloom leodavester Leona leonel letisopi libby lightbilb lighteninggal LilBabyGansta lilbabygirl
2464
+ LilLybrook lilmisssmitty lilrider lilshorti lilsmokie lilspooky lilyiz limitz linden lippleas Lippwizz
2465
+ lishiybertischyert litleb littlemissy littlebabyprincess lizzle lolipop lollipoops looly LoopyLou Lordarcher
2466
+ lorene LorenesucksDick lorlay Lotte loverface Luanne Lucilla ludachic Lufthansa lugsie LuVaBlEBaBy luvbug
2467
+ LuVyahunxxx m0rdi Maddox maggit Mahad mahta maiyoya makkan malinmaria mamallama Manitu marcoalexgayylovers
2468
+ Maria marmar masood Matt mattches matthewlewis maurice MaXii MaxLiedtkaisGod Meecho MEHMETCAN MelatoninRonin
2469
+ memosh menafaresfunny menameCHAINZCOOLRITE MetalHead miauk Michaeldoyle mikeymike mikhail mikol minty Mitisha
2470
+ mmmmmmmmmmmhmmmmmmm mmmmmmmmmmmm mmurhudufsormok Mofomotha momnurse mongi monstergirl moozenindahouse
2471
+ morbidprincess mosny mOuseGirL mrfunktastic MrFrazzle mrhankey mrhockey MrIndependent MrKinsall mrlove MrMoop
2472
+ mrpond Mrspop MrStayPuft MrVonTinkleschmidt msnewbooty muchkin muffinhead munchbunch munchinmonster murali
2473
+ mushi MUSHYPEASMUSHMUSH mustang muzza myscreenname4aol n0bed N1NJ4 Nabisco NaDeEn nameless23 nampumpsdaliah
2474
+ nasjian nasty NATHANANDJORDAN nathanwalker NAYLTONOLIVEIRA negro NeKaBoO nerfist netfali5hotmailcom newkid
2475
+ nichola nicknamesstink nicknongo nickygirl nicolle NiggaLips NIKEL nikki nitulina noaim nobby noblet noctoriousfart
2476
+ Nofearnameishere nojansmommasofat nomadnocry Norge Norman NOTHIN notquiteanangel NUMBA1 numbnuts nunuubarfboy
2477
+ nytuyuuiyu oakley OGGANGSTACRIP oidocuzimahotgirl OKTHEN oLIVIA OMGYALLSUCK oopsididitagain ooSUCKMYNIPPLEZ
2478
+ orangeapple orgen OrlandoKendricks Oscargutierrz otaku paddystar pamplemousse pamplemousse panchito parapia
2479
+ Pascal pattywatty pauldeliso PAWA PCHUNKY pdeezy Peachbear peefi pelin pencildicks PGpicklegirl phantasystar
2480
+ phantasystayr phillip PHOISY Phrysphere pickleberry Pimpcess7 pinkoanther pinkpanther pinkie pinsel PixieCorpse
2481
+ playagirl playboychic PlAyGiRl4LiFe playmaker pollabears pondaldinho pondy poobar poobear poodachandi Poodie
2482
+ poohead pookiewoookiepoopoo poonut POOPDACE porfiacto POWERCENTERamdDuron princyppiiisa Priscilla ProPuke
2483
+ prostitu PsychoCandy PsycHoPaT3 pudding puppyluv pussyandfries Qbanitoo QUIANACOOPER Quinisgay Quinn Quish qwerty
2484
+ rachy ramjam rammstein randy rarahoops rasheve rashy rebal RebalBabe rebekahghosh REDDAC RedSHOT Reese REESE
2485
+ remopotore renagade respina ricecrispyboy Rihann ripley Robbi robit rodney rosey rosie rossums RudeBoy2Hot2Handle
2486
+ rugay rumardi RUPERT rusto Ryaen Ryane rypie saamit sadename sadenicknames sagar Saggynanny Sajar salma samet
2487
+ Sandra Sandroff SantaClaus scabs scarletjoehansing schmoodle scruffy sdgdf seannah sechin senozlu SEXMASTER
2488
+ sexuufemaledog SEXYANGELBloNde Shabdu ShaggyButt shagsta ShaunMcfadyen shawnjohnson shazzy SheDevil sheash sherk
2489
+ Shibby Shivvers shizza shizzy Shmoph Shock shortbus shortstuff showstopper shrew shrimp Shrimpie Shrimpy shygurl
2490
+ SiamZamir sidewinder silliedillie skidds skwee SkyWalker slappie slothy smakthtbottm smiler SmokingDro24 smuge
2491
+ SnickleFritz snipa snookles snoopdizzle SnowBunny snugglebug soark soccerchick social sockmonkey softfuzzyyballls
2492
+ sohair Sojerfoos SoLiDbReaKeR soooscrewhim Sophia sophieluvinconnor southernboyswow spaRx Spazzy spencer squeaky
2493
+ SQUIDY squishych33ks srhissexy staysick911StudMuffin stupidboysnicks Sugarbaby SugarLoaf Suite sukkeltje sumgrills
2494
+ SuperioR SURRULES suspect susspekt swadie sweatness Sweetie switchblade Tales TallinHeels Taria tbone
2495
+ Teenieboppertravels teezykibeera thachronic thebestman theblackrooster thedarkmissis theflame thehitman thelud
2496
+ TheMailMan TheMItchmyster theonlyrafan thepond ThePringle thereason TheSchitt TheSolution TheStuff TheYouKnowWho
2497
+ thief thinair ThomasisaStudMuffin thomson tiearrah tinkrbell Titch titster titushka tomatoface tootall topbloke
2498
+ Torque torri Torvill ToyToy tradere travypoo Trebla Tupitufito turnergirl Turtle tuster TwinkleToes TWINKLETOOES
2499
+ umamafattie unanut Undragon upnatem upsidedown uradreamcometrue urbigsexymama urmasterpiece USUCK
2500
+ utjwariorschaoscrew vaigra Vapour velox VenezolanaRebelde viagraman vidal Viktoria vitale VITIGOGNITTI
2501
+ VivaAndromeda vjosa VoodooPrudence Vortex vrienzy vVoVv warpen Warsame wateva websta wednesday weejimmy weird
2502
+ weirdo wenisa WeSTSiDeCRiP whatisyouraddy whatsupwithunurqus Whipstank whiters wholovesyababy whowantsmycock
2503
+ wilden Willtynda winky winnielovesyou wivstar Wonton wordsandgames wotisuraddy wotsuraddyLOL wower X4rt3c
2504
+ xAbs0lut3x Xaracuz XiteZite xxbabyfacexx yasmine Yoguyzngalz yojay16 yourmomgoestocollege Yowotsuraddy YoYoHanZi
2505
+ yuliansilly zambo ZebraLuvurIzzy zenaida Zeratool zerocool Ziggy zigzag zipzap zixzox Zonster Zoopy zorbeyyy58)
2506
+
2507
+ def random_username
2508
+ USERNAMES[rand(USERNAMES.size)]
2509
+ end
2510
+
2511
+ LONG_TEXT_1 = ["To whom it may concern,",
2512
+ "Hiya!",
2513
+ "I wrote to you some time ago, but as yet I have heard nothing from you. I'm not quite sure what to make of this fact, so I decided to write to you again. As you can see from the subject line of this message, the matter is very urgent.",
2514
+ "How are you?",
2515
+ "I just thought I'd drop you a line to see how you are.",
2516
+ "Don't you agree that there is nothing more important than this right now?",
2517
+ "Dear Sir",
2518
+ "I am writing to you because I am the representative of the Vatican in this country.",
2519
+ "Peace, man,",
2520
+ "Hi!",
2521
+ "Hello...",
2522
+ "What the...???"
2523
+ ]
2524
+
2525
+ LONG_TEXT_2 = ["Bla bla bla bla bla bla bla bla bla bla bla?",
2526
+ "Okka okka okka okka okka okka okka okka okka okka okka okka. Uk uk.",
2527
+ "Nessun dorma. Fis ofisasd foi pdsofig oasindd iosdufhjg oiasd oisjd foijsdfsdf sklduifhj sodjf osid fosd ofsldmf sdfsdf, oisdjf osidm foams dad,iopu sodifjsdf. IGOLOLOLO siodfsdf sdfs!!! Ijsd fij FGiojuw pojkwf okokokokokokokok asdifjs dfsf -- nsdifix NIXDORF isjd fiouh qwdoij sdflknsdf.... Foa GOOA CI sdifjsdjf isf iiiiik iiik...!",
2528
+ "O Fortuna, velut Luna statu variabilis, semper crescis aut decrescis; vita detestabilis nunc obdurat et tunc curat ludo mentis aciem; egestatem, potestatem, dissolvit ut glaciem.",
2529
+ "Sors immanis et inanis, rota tu volubilis, status malus, vana salus semper dissolubilis; obumbrata et velata mihi quoque niteris; nunc per ludum dorsum nudum fero tui sceleris.",
2530
+ "Sors salutis et virtutis mihi nunc contraria; est affectus et defectus semper in angaria. Hac in hora sine mora cordae pulsum tangite! quod per sortem sternit fortem, mecum omnes plangite!",
2531
+ "Ego sum abbas Cucaniensis et consilium meum est cum bibulis, et in secta Decii voluntas mea est, et qui mane me quaesierit in taberna post vesperam nudus egredietur, et sic denudatus veste clamabit: Wafna, wafna! quid fecisti, Sors turpissima? nostrae vitae gaudia abstulisti omnia!",
2532
+ "Milli Vanilli - the best band EVER!",
2533
+ "Nobody knows the trouble I've seen. Nobody knows but George Bush.",
2534
+ "Sebastian Arce and Mariana Montes are outstanding teachers of the very highest level: clear, concise, humorous and always to the point, coupled with a thorough understanding of the students' needs. Their style of dancing and teaching encompasses all styles, being rooted in a solid classical technique but taking in all new techniques and approaches to teaching. Sebastian came to tango at the tender age of 8 and as a teenager already had performed in practically all tango shows in Buenos Aires and internationally. Mariana began her career as a folklore dancer and was part of the Salta Ballet. They have also appeared in the films Evita (starring Madonna), in Carlos Saura's Tango, and in Happy Together. Sebastian and Mariana are in high demand worldwide: they are simply among the very best, on stage and as teachers.",
2535
+ "You need to know the following: the history of the building begins in 1878 when the Great Hall of the Royal Musical Academy of Sweden was inaugurated by King Oscar II. It rapidly became the centre of the musical life of Sweden.",
2536
+ "It's LE PRIÈURÉ DE SION, I tell you! And they're after us!",
2537
+ "The Ensemble has collaborated with various bandoneonists as Daniel Binelli, Luis Stazo, Hector Raul \"Tito\" Cartechini, Peter Reil, Josè Luis Betancor, Marisa Mercadè, Massimiliano Pitocco, Gilberto Pereyra, Veronique Rioux, and others. These fruitful collaborations has added a deeper dimension to the Hyperion Ensemble's already intense, artistic character.",
2538
+ "Mario Orlando is undoubtedly the most famous tango DJ in the world. He plays regularly in all the most prestigious and well-known milongas, but he also appears in a number of underground and alternative places. We are extremely proud to present — for the first time ever outside of Argentina — Mario Orlando to the Tango 59° audience. This is a unique opportunity to meet and dance to the music of a true DJ legend, one who defines the art of tango DJ:ing.",
2539
+ "Once upon a midnight dreary, while I pondered, weak and weary, Over many a quaint and curious volume of forgotten lore, While I nodded, nearly napping, suddenly there came a tapping, As of someone gently rapping, rapping at my chamber door. \" 'Tis some visitor,\" I muttered, \"tapping at my chamber door; Only this, and nothing more.\"",
2540
+ "The tomb of the old Hyde family held a fatal attraction for Jervas Dudley until he communed with the dead and learned their secrets.",
2541
+ "I'm dreaming of a dead city Where Deep Ones swim in depths of night Where Cthulhu's sleeping And stars go creeping Until the time when they are right",
2542
+ "Wendigoes Wendigoes - walking in the waste They will soon be whooshing by to find out how you taste - oh! Wendigoes Wendigoes hear the North Wind moan Quicker than the frost will melt they'll strip you to the bone",
2543
+ "Remember, remember the fifth of November, the Gunpowder Treason and Plot. I see no reason why Gunpowder Treason should ever be forgot.",
2544
+ "Guy Fawkes, Guy Fawkes, 'twas his intent, to blow up the King and the Parliament. Three score barrels of powder below, Poor old England to overthrow: By God's providence he was catch'd With a dark lantern and burning match. Holloa boys, holloa boys, make the bells ring. Holloa boys, holloa boys, God save the King! Hip hip hoorah!",
2545
+ "A penny loaf to feed the Pope, A farthing o' cheese to choke him. A pint of beer to rinse it down, A faggot of sticks to burn him. Burn him in a tub of tar, Burn him like a blazing star. Burn his body from his head, Then we'll say ol' Pope is dead. Hip hip hoorah! Hip hip hoorah!",
2546
+ "How do you do, I see you've met my faithful handyman. He's just a little brought down, because when you knocked, he thought you were the candyman."
2547
+ ]
2548
+
2549
+ LONG_TEXT_3 = ["Take care.",
2550
+ "See you around!",
2551
+ "I'll give you a ring later tonight.",
2552
+ "Bye.",
2553
+ "For the sake of the widow's son.",
2554
+ "May the Force be with you.",
2555
+ "Farewell.",
2556
+ "In LVX",
2557
+ "Live long and prosper!",
2558
+ "Yours truly.",
2559
+ "Ciao.",
2560
+ "So there.",
2561
+ "I remain for ever your loyal servant.",
2562
+ "You will *never* get away with this, I tell you.",
2563
+ "Aight.",
2564
+ "Do What Thou Wilt Shall Be The Whole Of The Law."
2565
+ ]
2566
+
2567
+ def random_long
2568
+ result = LONG_TEXT_1[rand(LONG_TEXT_1.size)] + "\n\n"
2569
+ for i in 1..(rand(5)+1)
2570
+ result.concat(LONG_TEXT_2[rand(LONG_TEXT_2.size)] + "\n\n")
2571
+ end
2572
+ result.concat(LONG_TEXT_3[rand(LONG_TEXT_3.size)])
2573
+
2574
+ result.squeeze(' ')
2575
+ end
2576
+
2577
+ TEXT_1 = ['I','You','We','They','The CIA',"My solicitors",'The police','I just','Hey! I', 'They said you', 'Someone said you',
2578
+ 'Howdy! I','What? I', 'I said I', 'MI5', 'Stop! You said you', 'You said I', 'I was told you', 'All rock bands',
2579
+ 'Many punk bands', 'Goths', 'Metal fans', 'Cock rockers', 'Latin music lovers','The FBI','Trekkies', 'Wetbadgers',
2580
+ 'Fashion victims', 'We think you', 'Somebody mentioned that you', 'We have proof that you', "Don't deny that you",
2581
+ 'Queer theoreticians', 'Modern people', 'The young', 'Jetsetters', 'Drug users', 'Sex addicts', 'AA members',
2582
+ 'Nerdy gynaecologists', 'Your parents', 'All church-goers', 'The conservative party', 'You', 'We', 'They',
2583
+ 'Someone said that you', 'We think you', 'We know that you', 'A friend assured me that you', 'Nobody likes that you',
2584
+ 'It is unacceptable that you', 'Pop stars', 'Jetsetters', 'Thin people', 'Fat people', 'Happy people', 'Sad people',
2585
+ 'Famous film stars', 'Celebrities', 'Our best friends', 'Mensa members', 'Game show hosts', 'Newscasters',
2586
+ 'Psychopaths', 'Kabbalists', 'Only psychos', 'You', 'You', 'You', 'You and I', 'TV evangelists', 'Blizzard',
2587
+ 'Trig members', 'Adocca staff', 'People in Surrey', 'Felix readers', 'Most people', 'All average Joes', 'Porn stars',
2588
+ 'Royalty', 'Fat people', 'Thin people', 'Robots']
2589
+
2590
+ TEXT_2 = ['really','so','often','must','should','sometimes','hardly','always','never','secretly','openly','barely',
2591
+ '','','','','','','','','','','','']
2592
+ TEXT_3 = ['love', "don't love",'hate','like','adore','want to kill','need','loathe','try to look like','bonk',
2593
+ 'need to contact','walk with','have had','have fun with','crave','play with','accost','are into','are totally into',
2594
+ 'snog with','phone','sneeze on','spy on','look at','are interested in','dig','eviscerate','often impersonate',
2595
+ 'promote','trade places with','think I am','fornicate with','go berserk over','get excited over',
2596
+ 'look like','smell like','eat like','dress like','marry','expose yourself to','stalk','follow the example of',
2597
+ 'trig on','stalk','want sexy pics of','never find','are clueless about','phone','mess with',
2598
+ 'diss','underestimate','blackmail','want to forget about','would die for','badly need','love everybody except',
2599
+ 'eat', 'will eat', 'will own', 'totally own', 'manhandle', 'innervate', 'want to be like', 'want to sleep with',
2600
+ 'fondle','mystify','shock','murder','kidnap','examine','are fascinated by','are a bit like','taste like','burn like',
2601
+ 'are buried like','doubt the existence of','doubt the veracity of','are inspired by','are put off by',
2602
+ 'crave','wonder about','clean up after']
2603
+ TEXT_4 = ['you','myself','a dog','a cat','a small furry animal','the underage','someone','the IRS','Hitler', 'Madonna',
2604
+ 'a hamburger','more food','a lasagna','God','Satan','Elton John','everybody','the elderly','the poor',
2605
+ 'Brad Pitt','Angelina Jolie','Demis Roussos','Liberace','the YMCA','Beatrix Potter','my budgie','a wreck',
2606
+ 'Göran Persson','the FBI','Mustafa Çan','a mortician','Siegfried & Roy','Oprah','a wino','J-Lo','Toby','50c',
2607
+ 'the Mormon Tabernacle Choir','the hired help','a neural network','Gandhi','Deepak Chopra','the real thing',
2608
+ 'an illusion','the mentally handicapped','the Japanese','anyone','gay people', 'all disco dancers',
2609
+ 'gospel music fans', 'grunge nostalgics', 'Elvis', 'Elvis Costello', 'Maria Carey', 'Gary Glitter',
2610
+ 'KC & the Sunshine band', 'New York gallery owners', 'the rich', 'anybody', 'MC Hammer', 'Eminem',
2611
+ 'a republican', 'the straight', 'a democrat', 'the FBI', 'The Mysterons', 'fashion victims',
2612
+ 'Californian airheads', 'the Hollywood Kabbala crowd', 'Penn & Teller', 'geeks', 'suckers', 'imperialist fascist pigs',
2613
+ 'the Pro Life movement', 'the middle classes', 'the Scottish', 'Geordies', 'Micks', 'Australians',
2614
+ 'Trig members', 'Adocca staff', 'World of Warcraft players', 'your guildies', 'the guildless', 'your mama',
2615
+ 'other people','Kate Moss','Isabella Rossellini','your nightmares','your mental state','your friends',
2616
+ 'your enemies','your body','my body','my life','Versace','Hugo Boss','Vogue','Karl Lagerfelt','Chanel',
2617
+ 'cock rockers', 'royalty', 'teenagers', 'adolescents', 'adults', 'the overweight', 'the thin and gorgeous',
2618
+ 'robots', 'androids']
2619
+
2620
+ def random_short(length = 70)
2621
+ (TEXT_1[rand(TEXT_1.size)] + ' ' + TEXT_2[rand(TEXT_2.size)] + ' ' +
2622
+ TEXT_3[rand(TEXT_3.size)] + ' ' + TEXT_4[rand(TEXT_4.size)]).squeeze(' ')[0...length]
2623
+ end
2624
+
2625
+ SINGLE_PARTS = ['you','myself','a dog','a cat','a small furry animal','the underage','someone','the IRS','Hitler', 'Madonna',
2626
+ 'a hamburger','more food','a lasagna','God','Satan','Elton John','everybody','the elderly','the poor',
2627
+ 'Brad Pitt','Angelina Jolie','Demis Roussos','Liberace','the YMCA','Beatrix Potter','my budgie','a wreck',
2628
+ 'Göran Persson','the FBI','Mustafa Çan','a mortician','Siegfried & Roy','Oprah','a wino','J-Lo','Toby','50c',
2629
+ 'the Mormon Tabernacle Choir','the hired help','a neural network','Gandhi','Deepak Chopra','the real thing',
2630
+ 'an illusion','the mentally handicapped','the Japanese','anyone','gay people', 'all disco dancers',
2631
+ 'gospel music fans', 'grunge nostalgics', 'Elvis', 'Elvis Costello', 'Maria Carey', 'Gary Glitter',
2632
+ 'KC & the Sunshine band', 'New York gallery owners', 'the rich', 'anybody', 'MC Hammer', 'Eminem',
2633
+ 'a republican', 'the straight', 'a democrat', 'the FBI', 'The Mysterons', 'fashion victims',
2634
+ 'Californian airheads', 'the Hollywood Kabbala crowd', 'Penn & Teller', 'geeks', 'suckers', 'imperialist fascist pigs',
2635
+ 'the Pro Life movement', 'the middle classes', 'the Scottish', 'Geordies', 'Micks', 'Australians',
2636
+ 'Trig members', 'Adocca staff', 'World of Warcraft players', 'your guildies', 'the guildless', 'your mama',
2637
+ 'other people','Kate Moss','Isabella Rossellini','your nightmares','your mental state','your friends',
2638
+ 'your enemies','your body','my body','my life','Versace','Hugo Boss','Vogue','Karl Lagerfelt','Chanel',
2639
+ 'cock rockers', 'royalty', 'teenagers', 'adolescents', 'adults', 'the overweight', 'the thin and gorgeous',
2640
+ 'robots', 'androids']
2641
+
2642
+ def random_single
2643
+ SINGLE_PARTS[rand(SINGLE_PARTS.size)].capitalize
2644
+ end
2645
+
2646
+ def produce(n)
2647
+ Array.new(n).collect do |e|
2648
+ CHUNKS[rand(CHUNKS.size)]
2649
+ end.join(".").downcase
2650
+ end
2651
+
2652
+ def morph_login(login)
2653
+ login = login.downcase.gsub(/\s/, "")
2654
+ morphs = [:inator, :ored, :ed, :own, :age, :xor, :ck, :er, :leetz, :leetw2, :leetx, :leetw, :leets4, :leeto2, :leetg, :leetf2, :leetb, :leets3, :leets2, :leets, :leetf, :leetc, :rovar, :leeta, :leete, :leetl, :leett, :leeto, :zor, :ster, :lor, :prependnr1, :first, :iam, :thereal, :appendnr1, :forreal, :prependn, :appendn]
2655
+ morph = morphs[rand(morphs.size)]
2656
+ stripped = login.gsub(/[aoueiy]*$/, "")
2657
+ case morph
2658
+ when :inator
2659
+ "#{stripped.gsub(/i?n?a?$/, "")}inator"
2660
+ when :ed
2661
+ login.gsub(/ed$/, "t")
2662
+ when :ored
2663
+ login.gsub(/or$/, "ored")
2664
+ when :own
2665
+ login.gsub(/own/, "pwn")
2666
+ when :age
2667
+ "#{login}age"
2668
+ when :ck
2669
+ login.gsub(/ck/, "x")
2670
+ when :er
2671
+ login.gsub(/er$/, "or")
2672
+ when :leetz
2673
+ login.gsub(/z/, "s")
2674
+ when :leetw2
2675
+ login.gsub(/w/, "dubya")
2676
+ when :leetb
2677
+ login.gsub(/b/, "8")
2678
+ when :leetx
2679
+ login.gsub(/x/, "ecks")
2680
+ when :leetw
2681
+ login.gsub(/w/, "vv")
2682
+ when :leets4
2683
+ login.gsub(/s/, "ehs")
2684
+ when :leeto2
2685
+ login.gsub(/o/, "oh")
2686
+ when :leetg
2687
+ login.gsub(/g/, "6")
2688
+ when :leetf2
2689
+ login.gsub(/f/, "v")
2690
+ when :leeta
2691
+ login.gsub(/a/, "4")
2692
+ when :leets3
2693
+ login.gsub(/s/, "5")
2694
+ when :leete
2695
+ login.gsub(/e/, "3")
2696
+ when :leetl
2697
+ login.gsub(/l/, "1")
2698
+ when :leett
2699
+ login.gsub(/t/, "7")
2700
+ when :leeto
2701
+ login.gsub(/o/, "0")
2702
+ when :leets
2703
+ login.gsub(/s/, "z")
2704
+ when :leets2
2705
+ login.gsub(/s/, "c")
2706
+ when :leetf
2707
+ login.gsub(/f/, "ph")
2708
+ when :leetc
2709
+ login.gsub(/c/, "k")
2710
+ when :rovar
2711
+ login.gsub(/([cdfghklmnpqrstvwxz])/, "\\1o\\1")
2712
+ when :zor
2713
+ "#{stripped.gsub(/[szx]+/, "")}zor"
2714
+ when :xor
2715
+ "#{stripped.gsub(/x$/, "")}xor"
2716
+ when :ster
2717
+ "#{stripped.gsub(/s$/, "")}ster"
2718
+ when :lor
2719
+ "#{stripped.gsub(/l$/, "")}lor"
2720
+ when :iam
2721
+ "iam#{login}"
2722
+ when :thereal
2723
+ "thereal#{login}"
2724
+ when :appendnr1
2725
+ "#{login}nr1"
2726
+ when :forreal
2727
+ "#{login}forreal"
2728
+ when :prependnr1
2729
+ "nr1#{login}"
2730
+ when :first
2731
+ "thefirst#{login}"
2732
+ when :prependn
2733
+ "#{rand(100)}#{login}"
2734
+ when :appendn
2735
+ "#{login}#{rand(100)}"
2736
+ else
2737
+ raise "unknown morph #{morph}"
2738
+ end
2739
+ end
2740
+
2741
+ module_function :produce, :random_single, :random_short, :random_long, :morph_login, :random_male_name, :random_female_name, :random_surname, :random_username
2742
+
2743
+ end