~ubuntu-branches/ubuntu/precise/mysql-5.1/precise

« back to all changes in this revision

Viewing changes to mysql-test/r/archive.result

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Tretkowski
  • Date: 2010-03-17 14:56:02 UTC
  • Revision ID: james.westby@ubuntu.com-20100317145602-x7e30l1b2sb5s6w6
Tags: upstream-5.1.45
ImportĀ upstreamĀ versionĀ 5.1.45

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
DROP TABLE if exists t1,t2,t3,t4,t5,t6;
 
2
SET storage_engine=ARCHIVE;
 
3
CREATE TABLE t1 (
 
4
Period smallint(4) unsigned zerofill DEFAULT '0000' NOT NULL,
 
5
Varor_period smallint(4) unsigned DEFAULT '0' NOT NULL
 
6
) ENGINE=archive;
 
7
INSERT INTO t1 VALUES (9410,9412);
 
8
select period FROM t1;
 
9
period
 
10
9410
 
11
select * FROM t1;
 
12
Period  Varor_period
 
13
9410    9412
 
14
select t1.* FROM t1;
 
15
Period  Varor_period
 
16
9410    9412
 
17
CREATE TABLE t2 (
 
18
auto int,
 
19
fld1 int(6) unsigned zerofill DEFAULT '000000' NOT NULL,
 
20
companynr tinyint(2) unsigned zerofill DEFAULT '00' NOT NULL,
 
21
fld3 char(30) DEFAULT '' NOT NULL,
 
22
fld4 char(35) DEFAULT '' NOT NULL,
 
23
fld5 char(35) DEFAULT '' NOT NULL,
 
24
fld6 char(4) DEFAULT '' NOT NULL
 
25
) ENGINE=archive;
 
26
select t2.fld3 FROM t2 where companynr = 58 and fld3 like "%imaginable%";
 
27
fld3
 
28
imaginable
 
29
select fld3 FROM t2 where fld3 like "%cultivation" ;
 
30
fld3
 
31
cultivation
 
32
select t2.fld3,companynr FROM t2 where companynr = 57+1 order by fld3;
 
33
fld3    companynr
 
34
concoct 58
 
35
druggists       58
 
36
engrossing      58
 
37
Eurydice        58
 
38
exclaimers      58
 
39
ferociousness   58
 
40
hopelessness    58
 
41
Huey    58
 
42
imaginable      58
 
43
judges  58
 
44
merging 58
 
45
ostrich 58
 
46
peering 58
 
47
Phelps  58
 
48
presumes        58
 
49
Ruth    58
 
50
sentences       58
 
51
Shylock 58
 
52
straggled       58
 
53
synergy 58
 
54
thanking        58
 
55
tying   58
 
56
unlocks 58
 
57
select fld3,companynr FROM t2 where companynr = 58 order by fld3;
 
58
fld3    companynr
 
59
concoct 58
 
60
druggists       58
 
61
engrossing      58
 
62
Eurydice        58
 
63
exclaimers      58
 
64
ferociousness   58
 
65
hopelessness    58
 
66
Huey    58
 
67
imaginable      58
 
68
judges  58
 
69
merging 58
 
70
ostrich 58
 
71
peering 58
 
72
Phelps  58
 
73
presumes        58
 
74
Ruth    58
 
75
sentences       58
 
76
Shylock 58
 
77
straggled       58
 
78
synergy 58
 
79
thanking        58
 
80
tying   58
 
81
unlocks 58
 
82
select fld3 FROM t2 order by fld3 desc limit 10;
 
83
fld3
 
84
youthfulness
 
85
yelped
 
86
Wotan
 
87
workers
 
88
Witt
 
89
witchcraft
 
90
Winsett
 
91
Willy
 
92
willed
 
93
wildcats
 
94
select fld3 FROM t2 order by fld3 desc limit 5;
 
95
fld3
 
96
youthfulness
 
97
yelped
 
98
Wotan
 
99
workers
 
100
Witt
 
101
select fld3 FROM t2 order by fld3 desc limit 5,5;
 
102
fld3
 
103
witchcraft
 
104
Winsett
 
105
Willy
 
106
willed
 
107
wildcats
 
108
select t2.fld3 FROM t2 where fld3 = 'honeysuckle';
 
109
fld3
 
110
honeysuckle
 
111
select t2.fld3 FROM t2 where fld3 LIKE 'honeysuckl_';
 
112
fld3
 
113
honeysuckle
 
114
select t2.fld3 FROM t2 where fld3 LIKE 'hon_ysuckl_';
 
115
fld3
 
116
honeysuckle
 
117
select t2.fld3 FROM t2 where fld3 LIKE 'honeysuckle%';
 
118
fld3
 
119
honeysuckle
 
120
select t2.fld3 FROM t2 where fld3 LIKE 'h%le';
 
121
fld3
 
122
honeysuckle
 
123
select t2.fld3 FROM t2 where fld3 LIKE 'honeysuckle_';
 
124
fld3
 
125
select t2.fld3 FROM t2 where fld3 LIKE 'don_t_find_me_please%';
 
126
fld3
 
127
select t2.fld3 FROM t2 where fld3 >= 'honeysuckle' and fld3 <= 'honoring' order by fld3;
 
128
fld3
 
129
honeysuckle
 
130
honoring
 
131
select fld1,fld3 FROM t2 where fld3="Colombo" or fld3 = "nondecreasing" order by fld3;
 
132
fld1    fld3
 
133
148504  Colombo
 
134
068305  Colombo
 
135
000000  nondecreasing
 
136
select fld1,fld3 FROM t2 where companynr = 37 and fld3 like 'f%';
 
137
fld1    fld3
 
138
012001  flanking
 
139
013602  foldout
 
140
013606  fingerings
 
141
018007  fanatic
 
142
018017  featherweight
 
143
018054  fetters
 
144
018103  flint
 
145
018104  flopping
 
146
036002  funereal
 
147
038017  fetched
 
148
038205  firearm
 
149
058004  Fenton
 
150
088303  feminine
 
151
186002  freakish
 
152
188007  flurried
 
153
188505  fitting
 
154
198006  furthermore
 
155
202301  Fitzpatrick
 
156
208101  fiftieth
 
157
208113  freest
 
158
218008  finishers
 
159
218022  feed
 
160
218401  faithful
 
161
226205  foothill
 
162
226209  furnishings
 
163
228306  forthcoming
 
164
228311  fated
 
165
231315  freezes
 
166
232102  forgivably
 
167
238007  filial
 
168
238008  fixedly
 
169
select fld3 FROM t2 where fld3 like "L%" and fld3 = "ok";
 
170
fld3
 
171
select fld3 FROM t2 where (fld3 like "C%" and fld3 = "Chantilly");
 
172
fld3
 
173
Chantilly
 
174
select fld1,fld3 FROM t2 where fld1 like "25050%";
 
175
fld1    fld3
 
176
250501  poisoning
 
177
250502  Iraqis
 
178
250503  heaving
 
179
250504  population
 
180
250505  bomb
 
181
select fld1,fld3 FROM t2 where fld1 like "25050_";
 
182
fld1    fld3
 
183
250501  poisoning
 
184
250502  Iraqis
 
185
250503  heaving
 
186
250504  population
 
187
250505  bomb
 
188
CREATE TABLE t3 engine=archive select * FROM t2;
 
189
select * FROM t3 where fld3='bonfire';
 
190
auto    fld1    companynr       fld3    fld4    fld5    fld6
 
191
1191    068504  00      bonfire corresponds     positively      
 
192
select count(*) FROM t3;
 
193
count(*)
 
194
1199
 
195
rename table t3 to t4;
 
196
select * FROM t4 where fld3='bonfire';
 
197
auto    fld1    companynr       fld3    fld4    fld5    fld6
 
198
1191    068504  00      bonfire corresponds     positively      
 
199
select count(*) FROM t4;
 
200
count(*)
 
201
1199
 
202
INSERT INTO t2 VALUES (1,000001,00,'Omaha','teethe','neat','');
 
203
INSERT INTO t2 VALUES (2,011401,37,'breaking','dreaded','Steinberg','W');
 
204
INSERT INTO t2 VALUES (3,011402,37,'Romans','scholastics','jarring','');
 
205
INSERT INTO t2 VALUES (4,011403,37,'intercepted','audiology','tinily','');
 
206
SELECT * FROM t2;
 
207
auto    fld1    companynr       fld3    fld4    fld5    fld6
 
208
1       000001  00      Omaha   teethe  neat    
 
209
2       011401  37      breaking        dreaded Steinberg       W
 
210
3       011402  37      Romans  scholastics     jarring 
 
211
4       011403  37      intercepted     audiology       tinily  
 
212
5       011501  37      bewilderingly   wallet  balled  
 
213
6       011701  37      astound parters persist W
 
214
7       011702  37      admonishing     eschew  attainments     
 
215
8       011703  37      sumac   quitter fanatic 
 
216
9       012001  37      flanking        neat    measures        FAS
 
217
10      012003  37      combed  Steinberg       rightfulness    
 
218
11      012004  37      subjective      jarring capably 
 
219
12      012005  37      scatterbrain    tinily  impulsive       
 
220
13      012301  37      Eulerian        balled  starlet 
 
221
14      012302  36      dubbed  persist terminators     
 
222
15      012303  37      Kane    attainments     untying 
 
223
16      012304  37      overlay fanatic announces       FAS
 
224
17      012305  37      perturb measures        featherweight   FAS
 
225
18      012306  37      goblins rightfulness    pessimist       FAS
 
226
19      012501  37      annihilates     capably daughter        
 
227
20      012602  37      Wotan   impulsive       decliner        FAS
 
228
21      012603  37      snatching       starlet lawgiver        
 
229
22      012604  37      concludes       terminators     stated  
 
230
23      012605  37      laterally       untying readable        
 
231
24      012606  37      yelped  announces       attrition       
 
232
25      012701  37      grazing featherweight   cascade FAS
 
233
26      012702  37      Baird   pessimist       motors  FAS
 
234
27      012703  37      celery  daughter        interrogate     
 
235
28      012704  37      misunderstander decliner        pests   W
 
236
29      013601  37      handgun lawgiver        stairway        
 
237
30      013602  37      foldout stated  dopers  FAS
 
238
31      013603  37      mystic  readable        testicle        W
 
239
32      013604  37      succumbed       attrition       Parsifal        W
 
240
33      013605  37      Nabisco cascade leavings        
 
241
34      013606  37      fingerings      motors  postulation     W
 
242
35      013607  37      aging   interrogate     squeaking       
 
243
36      013608  37      afield  pests   contrasted      
 
244
37      013609  37      ammonium        stairway        leftover        
 
245
38      013610  37      boat    dopers  whiteners       
 
246
39      013801  37      intelligibility testicle        erases  W
 
247
40      013802  37      Augustine       Parsifal        Punjab  W
 
248
41      013803  37      teethe  leavings        Merritt 
 
249
42      013804  37      dreaded postulation     Quixotism       
 
250
43      013901  37      scholastics     squeaking       sweetish        FAS
 
251
44      016001  37      audiology       contrasted      dogging FAS
 
252
45      016201  37      wallet  leftover        scornfully      FAS
 
253
46      016202  37      parters whiteners       bellow  
 
254
47      016301  37      eschew  erases  bills   
 
255
48      016302  37      quitter Punjab  cupboard        FAS
 
256
49      016303  37      neat    Merritt sureties        FAS
 
257
50      016304  37      Steinberg       Quixotism       puddings        
 
258
51      018001  37      jarring sweetish        tapestry        
 
259
52      018002  37      tinily  dogging fetters 
 
260
53      018003  37      balled  scornfully      bivalves        
 
261
54      018004  37      persist bellow  incurring       
 
262
55      018005  37      attainments     bills   Adolph  
 
263
56      018007  37      fanatic cupboard        pithed  
 
264
57      018008  37      measures        sureties        emergency       
 
265
58      018009  37      rightfulness    puddings        Miles   
 
266
59      018010  37      capably tapestry        trimmings       
 
267
60      018012  37      impulsive       fetters tragedies       W
 
268
61      018013  37      starlet bivalves        skulking        W
 
269
62      018014  37      terminators     incurring       flint   
 
270
63      018015  37      untying Adolph  flopping        W
 
271
64      018016  37      announces       pithed  relaxing        FAS
 
272
65      018017  37      featherweight   emergency       offload FAS
 
273
66      018018  37      pessimist       Miles   suites  W
 
274
67      018019  37      daughter        trimmings       lists   FAS
 
275
68      018020  37      decliner        tragedies       animized        FAS
 
276
69      018021  37      lawgiver        skulking        multilayer      W
 
277
70      018022  37      stated  flint   standardizes    FAS
 
278
71      018023  37      readable        flopping        Judas   
 
279
72      018024  37      attrition       relaxing        vacuuming       W
 
280
73      018025  37      cascade offload dentally        W
 
281
74      018026  37      motors  suites  humanness       W
 
282
75      018027  37      interrogate     lists   inch    W
 
283
76      018028  37      pests   animized        Weissmuller     W
 
284
77      018029  37      stairway        multilayer      irresponsibly   W
 
285
78      018030  37      dopers  standardizes    luckily FAS
 
286
79      018032  37      testicle        Judas   culled  W
 
287
80      018033  37      Parsifal        vacuuming       medical FAS
 
288
81      018034  37      leavings        dentally        bloodbath       FAS
 
289
82      018035  37      postulation     humanness       subschema       W
 
290
83      018036  37      squeaking       inch    animals W
 
291
84      018037  37      contrasted      Weissmuller     Micronesia      
 
292
85      018038  37      leftover        irresponsibly   repetitions     
 
293
86      018039  37      whiteners       luckily Antares 
 
294
87      018040  37      erases  culled  ventilate       W
 
295
88      018041  37      Punjab  medical pityingly       
 
296
89      018042  37      Merritt bloodbath       interdependent  
 
297
90      018043  37      Quixotism       subschema       Graves  FAS
 
298
91      018044  37      sweetish        animals neonatal        
 
299
92      018045  37      dogging Micronesia      scribbled       FAS
 
300
93      018046  37      scornfully      repetitions     chafe   W
 
301
94      018048  37      bellow  Antares honoring        
 
302
95      018049  37      bills   ventilate       realtor 
 
303
96      018050  37      cupboard        pityingly       elite   
 
304
97      018051  37      sureties        interdependent  funereal        
 
305
98      018052  37      puddings        Graves  abrogating      
 
306
99      018053  50      tapestry        neonatal        sorters 
 
307
100     018054  37      fetters scribbled       Conley  
 
308
101     018055  37      bivalves        chafe   lectured        
 
309
102     018056  37      incurring       honoring        Abraham 
 
310
103     018057  37      Adolph  realtor Hawaii  W
 
311
104     018058  37      pithed  elite   cage    
 
312
105     018059  36      emergency       funereal        hushes  
 
313
106     018060  37      Miles   abrogating      Simla   
 
314
107     018061  37      trimmings       sorters reporters       
 
315
108     018101  37      tragedies       Conley  Dutchman        FAS
 
316
109     018102  37      skulking        lectured        descendants     FAS
 
317
110     018103  37      flint   Abraham groupings       FAS
 
318
111     018104  37      flopping        Hawaii  dissociate      
 
319
112     018201  37      relaxing        cage    coexist W
 
320
113     018202  37      offload hushes  Beebe   
 
321
114     018402  37      suites  Simla   Taoism  
 
322
115     018403  37      lists   reporters       Connally        
 
323
116     018404  37      animized        Dutchman        fetched FAS
 
324
117     018405  37      multilayer      descendants     checkpoints     FAS
 
325
118     018406  37      standardizes    groupings       rusting 
 
326
119     018409  37      Judas   dissociate      galling 
 
327
120     018601  37      vacuuming       coexist obliterates     
 
328
121     018602  37      dentally        Beebe   traitor 
 
329
122     018603  37      humanness       Taoism  resumes FAS
 
330
123     018801  37      inch    Connally        analyzable      FAS
 
331
124     018802  37      Weissmuller     fetched terminator      FAS
 
332
125     018803  37      irresponsibly   checkpoints     gritty  FAS
 
333
126     018804  37      luckily rusting firearm W
 
334
127     018805  37      culled  galling minima  
 
335
128     018806  37      medical obliterates     Selfridge       
 
336
129     018807  37      bloodbath       traitor disable 
 
337
130     018808  37      subschema       resumes witchcraft      W
 
338
131     018809  37      animals analyzable      betroth W
 
339
132     018810  37      Micronesia      terminator      Manhattanize    
 
340
133     018811  37      repetitions     gritty  imprint 
 
341
134     018812  37      Antares firearm peeked  
 
342
135     019101  37      ventilate       minima  swelling        
 
343
136     019102  37      pityingly       Selfridge       interrelationships      W
 
344
137     019103  37      interdependent  disable riser   
 
345
138     019201  37      Graves  witchcraft      Gandhian        W
 
346
139     030501  37      neonatal        betroth peacock A
 
347
140     030502  50      scribbled       Manhattanize    bee     A
 
348
141     030503  37      chafe   imprint kanji   
 
349
142     030504  37      honoring        peeked  dental  
 
350
143     031901  37      realtor swelling        scarf   FAS
 
351
144     036001  37      elite   interrelationships      chasm   A
 
352
145     036002  37      funereal        riser   insolence       A
 
353
146     036004  37      abrogating      Gandhian        syndicate       
 
354
147     036005  37      sorters peacock alike   
 
355
148     038001  37      Conley  bee     imperial        A
 
356
149     038002  37      lectured        kanji   convulsion      A
 
357
150     038003  37      Abraham dental  railway A
 
358
151     038004  37      Hawaii  scarf   validate        A
 
359
152     038005  37      cage    chasm   normalizes      A
 
360
153     038006  37      hushes  insolence       comprehensive   
 
361
154     038007  37      Simla   syndicate       chewing 
 
362
155     038008  37      reporters       alike   denizen 
 
363
156     038009  37      Dutchman        imperial        schemer 
 
364
157     038010  37      descendants     convulsion      chronicle       
 
365
158     038011  37      groupings       railway Kline   
 
366
159     038012  37      dissociate      validate        Anatole 
 
367
160     038013  37      coexist normalizes      partridges      
 
368
161     038014  37      Beebe   comprehensive   brunch  
 
369
162     038015  37      Taoism  chewing recruited       
 
370
163     038016  37      Connally        denizen dimensions      W
 
371
164     038017  37      fetched schemer Chicana W
 
372
165     038018  37      checkpoints     chronicle       announced       
 
373
166     038101  37      rusting Kline   praised FAS
 
374
167     038102  37      galling Anatole employing       
 
375
168     038103  37      obliterates     partridges      linear  
 
376
169     038104  37      traitor brunch  quagmire        
 
377
170     038201  37      resumes recruited       western A
 
378
171     038202  37      analyzable      dimensions      relishing       
 
379
172     038203  37      terminator      Chicana serving A
 
380
173     038204  37      gritty  announced       scheduling      
 
381
174     038205  37      firearm praised lore    
 
382
175     038206  37      minima  employing       eventful        
 
383
176     038208  37      Selfridge       linear  arteriole       A
 
384
177     042801  37      disable quagmire        disentangle     
 
385
178     042802  37      witchcraft      western cured   A
 
386
179     046101  37      betroth relishing       Fenton  W
 
387
180     048001  37      Manhattanize    serving avoidable       A
 
388
181     048002  37      imprint scheduling      drains  A
 
389
182     048003  37      peeked  lore    detectably      FAS
 
390
183     048004  37      swelling        eventful        husky   
 
391
184     048005  37      interrelationships      arteriole       impelling       
 
392
185     048006  37      riser   disentangle     undoes  
 
393
186     048007  37      Gandhian        cured   evened  
 
394
187     048008  37      peacock Fenton  squeezes        
 
395
188     048101  37      bee     avoidable       destroyer       FAS
 
396
189     048102  37      kanji   drains  rudeness        
 
397
190     048201  37      dental  detectably      beaner  FAS
 
398
191     048202  37      scarf   husky   boorish 
 
399
192     048203  37      chasm   impelling       Everhart        
 
400
193     048204  37      insolence       undoes  encompass       A
 
401
194     048205  37      syndicate       evened  mushrooms       
 
402
195     048301  37      alike   squeezes        Alison  A
 
403
196     048302  37      imperial        destroyer       externally      FAS
 
404
197     048303  37      convulsion      rudeness        pellagra        
 
405
198     048304  37      railway beaner  cult    
 
406
199     048305  37      validate        boorish creek   A
 
407
200     048401  37      normalizes      Everhart        Huffman 
 
408
201     048402  37      comprehensive   encompass       Majorca FAS
 
409
202     048403  37      chewing mushrooms       governing       A
 
410
203     048404  37      denizen Alison  gadfly  FAS
 
411
204     048405  37      schemer externally      reassigned      FAS
 
412
205     048406  37      chronicle       pellagra        intentness      W
 
413
206     048407  37      Kline   cult    craziness       
 
414
207     048408  37      Anatole creek   psychic 
 
415
208     048409  37      partridges      Huffman squabbled       
 
416
209     048410  37      brunch  Majorca burlesque       
 
417
210     048411  37      recruited       governing       capped  
 
418
211     048412  37      dimensions      gadfly  extracted       A
 
419
212     048413  37      Chicana reassigned      DiMaggio        
 
420
213     048601  37      announced       intentness      exclamation     FAS
 
421
214     048602  37      praised craziness       subdirectory    
 
422
215     048603  37      employing       psychic fangs   
 
423
216     048604  37      linear  squabbled       buyer   A
 
424
217     048801  37      quagmire        burlesque       pithing A
 
425
218     050901  37      western capped  transistorizing A
 
426
219     051201  37      relishing       extracted       nonbiodegradable        
 
427
220     056002  37      serving DiMaggio        dislocate       
 
428
221     056003  37      scheduling      exclamation     monochromatic   FAS
 
429
222     056004  37      lore    subdirectory    batting 
 
430
223     056102  37      eventful        fangs   postcondition   A
 
431
224     056203  37      arteriole       buyer   catalog FAS
 
432
225     056204  37      disentangle     pithing Remus   
 
433
226     058003  37      cured   transistorizing devices A
 
434
227     058004  37      Fenton  nonbiodegradable        bike    A
 
435
228     058005  37      avoidable       dislocate       qualify 
 
436
229     058006  37      drains  monochromatic   detained        
 
437
230     058007  37      detectably      batting commended       
 
438
231     058101  37      husky   postcondition   civilize        
 
439
232     058102  37      impelling       catalog Elmhurst        
 
440
233     058103  37      undoes  Remus   anesthetizing   
 
441
234     058105  37      evened  devices deaf    
 
442
235     058111  37      squeezes        bike    Brigham 
 
443
236     058112  37      destroyer       qualify title   
 
444
237     058113  37      rudeness        detained        coarse  
 
445
238     058114  37      beaner  commended       combinations    
 
446
239     058115  37      boorish civilize        grayness        
 
447
240     058116  37      Everhart        Elmhurst        innumerable     FAS
 
448
241     058117  37      encompass       anesthetizing   Caroline        A
 
449
242     058118  37      mushrooms       deaf    fatty   FAS
 
450
243     058119  37      Alison  Brigham eastbound       
 
451
244     058120  37      externally      title   inexperienced   
 
452
245     058121  37      pellagra        coarse  hoarder A
 
453
246     058122  37      cult    combinations    scotch  W
 
454
247     058123  37      creek   grayness        passport        A
 
455
248     058124  37      Huffman innumerable     strategic       FAS
 
456
249     058125  37      Majorca Caroline        gated   
 
457
250     058126  37      governing       fatty   flog    
 
458
251     058127  37      gadfly  eastbound       Pipestone       
 
459
252     058128  37      reassigned      inexperienced   Dar     
 
460
253     058201  37      intentness      hoarder Corcoran        
 
461
254     058202  37      craziness       scotch  flyers  A
 
462
255     058303  37      psychic passport        competitions    W
 
463
256     058304  37      squabbled       strategic       suppliers       FAS
 
464
257     058602  37      burlesque       gated   skips   
 
465
258     058603  37      capped  flog    institutes      
 
466
259     058604  37      extracted       Pipestone       troop   A
 
467
260     058605  37      DiMaggio        Dar     connective      W
 
468
261     058606  37      exclamation     Corcoran        denies  
 
469
262     058607  37      subdirectory    flyers  polka   
 
470
263     060401  36      fangs   competitions    observations    FAS
 
471
264     061701  36      buyer   suppliers       askers  
 
472
265     066201  36      pithing skips   homeless        FAS
 
473
266     066501  36      transistorizing institutes      Anna    
 
474
267     068001  36      nonbiodegradable        troop   subdirectories  W
 
475
268     068002  36      dislocate       connective      decaying        FAS
 
476
269     068005  36      monochromatic   denies  outwitting      W
 
477
270     068006  36      batting polka   Harpy   W
 
478
271     068007  36      postcondition   observations    crazed  
 
479
272     068008  36      catalog askers  suffocate       
 
480
273     068009  36      Remus   homeless        provers FAS
 
481
274     068010  36      devices Anna    technically     
 
482
275     068011  36      bike    subdirectories  Franklinizations        
 
483
276     068202  36      qualify decaying        considered      
 
484
277     068302  36      detained        outwitting      tinnily 
 
485
278     068303  36      commended       Harpy   uninterruptedly 
 
486
279     068401  36      civilize        crazed  whistled        A
 
487
280     068501  36      Elmhurst        suffocate       automate        
 
488
281     068502  36      anesthetizing   provers gutting W
 
489
282     068503  36      deaf    technically     surreptitious   
 
490
283     068602  36      Brigham Franklinizations        Choctaw 
 
491
284     068603  36      title   considered      cooks   
 
492
285     068701  36      coarse  tinnily millivolt       FAS
 
493
286     068702  36      combinations    uninterruptedly counterpoise    
 
494
287     068703  36      grayness        whistled        Gothicism       
 
495
288     076001  36      innumerable     automate        feminine        
 
496
289     076002  36      Caroline        gutting metaphysically  W
 
497
290     076101  36      fatty   surreptitious   sanding A
 
498
291     076102  36      eastbound       Choctaw contributorily  
 
499
292     076103  36      inexperienced   cooks   receivers       FAS
 
500
293     076302  36      hoarder millivolt       adjourn 
 
501
294     076303  36      scotch  counterpoise    straggled       A
 
502
295     076304  36      passport        Gothicism       druggists       
 
503
296     076305  36      strategic       feminine        thanking        FAS
 
504
297     076306  36      gated   metaphysically  ostrich 
 
505
298     076307  36      flog    sanding hopelessness    FAS
 
506
299     076402  36      Pipestone       contributorily  Eurydice        
 
507
300     076501  36      Dar     receivers       excitation      W
 
508
301     076502  36      Corcoran        adjourn presumes        FAS
 
509
302     076701  36      flyers  straggled       imaginable      FAS
 
510
303     078001  36      competitions    druggists       concoct W
 
511
304     078002  36      suppliers       thanking        peering W
 
512
305     078003  36      skips   ostrich Phelps  FAS
 
513
306     078004  36      institutes      hopelessness    ferociousness   FAS
 
514
307     078005  36      troop   Eurydice        sentences       
 
515
308     078006  36      connective      excitation      unlocks 
 
516
309     078007  36      denies  presumes        engrossing      W
 
517
310     078008  36      polka   imaginable      Ruth    
 
518
311     078101  36      observations    concoct tying   
 
519
312     078103  36      askers  peering exclaimers      
 
520
313     078104  36      homeless        Phelps  synergy 
 
521
314     078105  36      Anna    ferociousness   Huey    W
 
522
315     082101  36      subdirectories  sentences       merging 
 
523
316     083401  36      decaying        unlocks judges  A
 
524
317     084001  36      outwitting      engrossing      Shylock W
 
525
318     084002  36      Harpy   Ruth    Miltonism       
 
526
319     086001  36      crazed  tying   hen     W
 
527
320     086102  36      suffocate       exclaimers      honeybee        FAS
 
528
321     086201  36      provers synergy towers  
 
529
322     088001  36      technically     Huey    dilutes W
 
530
323     088002  36      Franklinizations        merging numerals        FAS
 
531
324     088003  36      considered      judges  democracy       FAS
 
532
325     088004  36      tinnily Shylock Ibero-  
 
533
326     088101  36      uninterruptedly Miltonism       invalids        
 
534
327     088102  36      whistled        hen     behavior        
 
535
328     088103  36      automate        honeybee        accruing        
 
536
329     088104  36      gutting towers  relics  A
 
537
330     088105  36      surreptitious   dilutes rackets 
 
538
331     088106  36      Choctaw numerals        Fischbein       W
 
539
332     088201  36      cooks   democracy       phony   W
 
540
333     088203  36      millivolt       Ibero-  cross   FAS
 
541
334     088204  36      counterpoise    invalids        cleanup 
 
542
335     088302  37      Gothicism       behavior        conspirator     
 
543
336     088303  37      feminine        accruing        label   FAS
 
544
337     088305  37      metaphysically  relics  university      
 
545
338     088402  37      sanding rackets cleansed        FAS
 
546
339     088501  36      contributorily  Fischbein       ballgown        
 
547
340     088502  36      receivers       phony   starlet 
 
548
341     088503  36      adjourn cross   aqueous 
 
549
342     098001  58      straggled       cleanup portrayal       A
 
550
343     098002  58      druggists       conspirator     despising       W
 
551
344     098003  58      thanking        label   distort W
 
552
345     098004  58      ostrich university      palmed  
 
553
346     098005  58      hopelessness    cleansed        faced   
 
554
347     098006  58      Eurydice        ballgown        silverware      
 
555
348     141903  29      excitation      starlet assessor        
 
556
349     098008  58      presumes        aqueous spiders 
 
557
350     098009  58      imaginable      portrayal       artificially    
 
558
351     098010  58      concoct despising       reminiscence    
 
559
352     098011  58      peering distort Mexican 
 
560
353     098012  58      Phelps  palmed  obnoxious       
 
561
354     098013  58      ferociousness   faced   fragile 
 
562
355     098014  58      sentences       silverware      apprehensible   
 
563
356     098015  58      unlocks assessor        births  
 
564
357     098016  58      engrossing      spiders garages 
 
565
358     098017  58      Ruth    artificially    panty   
 
566
359     098018  58      tying   reminiscence    anteater        
 
567
360     098019  58      exclaimers      Mexican displacement    A
 
568
361     098020  58      synergy obnoxious       drovers A
 
569
362     098021  58      Huey    fragile patenting       A
 
570
363     098022  58      merging apprehensible   far     A
 
571
364     098023  58      judges  births  shrieks 
 
572
365     098024  58      Shylock garages aligning        W
 
573
366     098025  37      Miltonism       panty   pragmatism      
 
574
367     106001  36      hen     anteater        fevers  W
 
575
368     108001  36      honeybee        displacement    reexamines      A
 
576
369     108002  36      towers  drovers occupancies     
 
577
370     108003  36      dilutes patenting       sweats  FAS
 
578
371     108004  36      numerals        far     modulators      
 
579
372     108005  36      democracy       shrieks demand  W
 
580
373     108007  36      Ibero-  aligning        Madeira 
 
581
374     108008  36      invalids        pragmatism      Viennese        W
 
582
375     108009  36      behavior        fevers  chillier        W
 
583
376     108010  36      accruing        reexamines      wildcats        FAS
 
584
377     108011  36      relics  occupancies     gentle  
 
585
378     108012  36      rackets sweats  Angles  W
 
586
379     108101  36      Fischbein       modulators      accuracies      
 
587
380     108102  36      phony   demand  toggle  
 
588
381     108103  36      cross   Madeira Mendelssohn     W
 
589
382     108111  50      cleanup Viennese        behaviorally    
 
590
383     108105  36      conspirator     chillier        Rochford        
 
591
384     108106  36      label   wildcats        mirror  W
 
592
385     108107  36      university      gentle  Modula  
 
593
386     108108  50      cleansed        Angles  clobbering      
 
594
387     108109  36      ballgown        accuracies      chronography    
 
595
388     108110  36      starlet toggle  Eskimoizeds     
 
596
389     108201  36      aqueous Mendelssohn     British W
 
597
390     108202  36      portrayal       behaviorally    pitfalls        
 
598
391     108203  36      despising       Rochford        verify  W
 
599
392     108204  36      distort mirror  scatter FAS
 
600
393     108205  36      palmed  Modula  Aztecan 
 
601
394     108301  36      faced   clobbering      acuity  W
 
602
395     108302  36      silverware      chronography    sinking W
 
603
396     112101  36      assessor        Eskimoizeds     beasts  FAS
 
604
397     112102  36      spiders British Witt    W
 
605
398     113701  36      artificially    pitfalls        physicists      FAS
 
606
399     116001  36      reminiscence    verify  folksong        A
 
607
400     116201  36      Mexican scatter strokes FAS
 
608
401     116301  36      obnoxious       Aztecan crowder 
 
609
402     116302  36      fragile acuity  merry   
 
610
403     116601  36      apprehensible   sinking cadenced        
 
611
404     116602  36      births  beasts  alimony A
 
612
405     116603  36      garages Witt    principled      A
 
613
406     116701  36      panty   physicists      golfing 
 
614
407     116702  36      anteater        folksong        undiscovered    
 
615
408     118001  36      displacement    strokes irritates       
 
616
409     118002  36      drovers crowder patriots        A
 
617
410     118003  36      patenting       merry   rooms   FAS
 
618
411     118004  36      far     cadenced        towering        W
 
619
412     118005  36      shrieks alimony displease       
 
620
413     118006  36      aligning        principled      photosensitive  
 
621
414     118007  36      pragmatism      golfing inking  
 
622
415     118008  36      fevers  undiscovered    gainers 
 
623
416     118101  36      reexamines      irritates       leaning A
 
624
417     118102  36      occupancies     patriots        hydrant A
 
625
418     118103  36      sweats  rooms   preserve        
 
626
419     118202  36      modulators      towering        blinded A
 
627
420     118203  36      demand  displease       interactions    A
 
628
421     118204  36      Madeira photosensitive  Barry   
 
629
422     118302  36      Viennese        inking  whiteness       A
 
630
423     118304  36      chillier        gainers pastimes        W
 
631
424     118305  36      wildcats        leaning Edenization     
 
632
425     118306  36      gentle  hydrant Muscat  
 
633
426     118307  36      Angles  preserve        assassinated    
 
634
427     123101  36      accuracies      blinded labeled 
 
635
428     123102  36      toggle  interactions    glacial A
 
636
429     123301  36      Mendelssohn     Barry   implied W
 
637
430     126001  36      behaviorally    whiteness       bibliographies  W
 
638
431     126002  36      Rochford        pastimes        Buchanan        
 
639
432     126003  36      mirror  Edenization     forgivably      FAS
 
640
433     126101  36      Modula  Muscat  innuendo        A
 
641
434     126301  36      clobbering      assassinated    den     FAS
 
642
435     126302  36      chronography    labeled submarines      W
 
643
436     126402  36      Eskimoizeds     glacial mouthful        A
 
644
437     126601  36      British implied expiring        
 
645
438     126602  36      pitfalls        bibliographies  unfulfilled     FAS
 
646
439     126702  36      verify  Buchanan        precession      
 
647
440     128001  36      scatter forgivably      nullified       
 
648
441     128002  36      Aztecan innuendo        affects 
 
649
442     128003  36      acuity  den     Cynthia 
 
650
443     128004  36      sinking submarines      Chablis A
 
651
444     128005  36      beasts  mouthful        betterments     FAS
 
652
445     128007  36      Witt    expiring        advertising     
 
653
446     128008  36      physicists      unfulfilled     rubies  A
 
654
447     128009  36      folksong        precession      southwest       FAS
 
655
448     128010  36      strokes nullified       superstitious   A
 
656
449     128011  36      crowder affects tabernacle      W
 
657
450     128012  36      merry   Cynthia silk    A
 
658
451     128013  36      cadenced        Chablis handsomest      A
 
659
452     128014  36      alimony betterments     Persian A
 
660
453     128015  36      principled      advertising     analog  W
 
661
454     128016  36      golfing rubies  complex W
 
662
455     128017  36      undiscovered    southwest       Taoist  
 
663
456     128018  36      irritates       superstitious   suspend 
 
664
457     128019  36      patriots        tabernacle      relegated       
 
665
458     128020  36      rooms   silk    awesome W
 
666
459     128021  36      towering        handsomest      Bruxelles       
 
667
460     128022  36      displease       Persian imprecisely     A
 
668
461     128023  36      photosensitive  analog  televise        
 
669
462     128101  36      inking  complex braking 
 
670
463     128102  36      gainers Taoist  true    FAS
 
671
464     128103  36      leaning suspend disappointing   FAS
 
672
465     128104  36      hydrant relegated       navally W
 
673
466     128106  36      preserve        awesome circus  
 
674
467     128107  36      blinded Bruxelles       beetles 
 
675
468     128108  36      interactions    imprecisely     trumps  
 
676
469     128202  36      Barry   televise        fourscore       W
 
677
470     128203  36      whiteness       braking Blackfoots      
 
678
471     128301  36      pastimes        true    Grady   
 
679
472     128302  36      Edenization     disappointing   quiets  FAS
 
680
473     128303  36      Muscat  navally floundered      FAS
 
681
474     128304  36      assassinated    circus  profundity      W
 
682
475     128305  36      labeled beetles Garrisonian     W
 
683
476     128307  36      glacial trumps  Strauss 
 
684
477     128401  36      implied fourscore       cemented        FAS
 
685
478     128502  36      bibliographies  Blackfoots      contrition      A
 
686
479     128503  36      Buchanan        Grady   mutations       
 
687
480     128504  36      forgivably      quiets  exhibits        W
 
688
481     128505  36      innuendo        floundered      tits    
 
689
482     128601  36      den     profundity      mate    A
 
690
483     128603  36      submarines      Garrisonian     arches  
 
691
484     128604  36      mouthful        Strauss Moll    
 
692
485     128702  36      expiring        cemented        ropers  
 
693
486     128703  36      unfulfilled     contrition      bombast 
 
694
487     128704  36      precession      mutations       difficultly     A
 
695
488     138001  36      nullified       exhibits        adsorption      
 
696
489     138002  36      affects tits    definiteness    FAS
 
697
490     138003  36      Cynthia mate    cultivation     A
 
698
491     138004  36      Chablis arches  heals   A
 
699
492     138005  36      betterments     Moll    Heusen  W
 
700
493     138006  36      advertising     ropers  target  FAS
 
701
494     138007  36      rubies  bombast cited   A
 
702
495     138008  36      southwest       difficultly     congresswoman   W
 
703
496     138009  36      superstitious   adsorption      Katherine       
 
704
497     138102  36      tabernacle      definiteness    titter  A
 
705
498     138103  36      silk    cultivation     aspire  A
 
706
499     138104  36      handsomest      heals   Mardis  
 
707
500     138105  36      Persian Heusen  Nadia   W
 
708
501     138201  36      analog  target  estimating      FAS
 
709
502     138302  36      complex cited   stuck   A
 
710
503     138303  36      Taoist  congresswoman   fifteenth       A
 
711
504     138304  36      suspend Katherine       Colombo 
 
712
505     138401  29      relegated       titter  survey  A
 
713
506     140102  29      awesome aspire  staffing        
 
714
507     140103  29      Bruxelles       Mardis  obtain  
 
715
508     140104  29      imprecisely     Nadia   loaded  
 
716
509     140105  29      televise        estimating      slaughtered     
 
717
510     140201  29      braking stuck   lights  A
 
718
511     140701  29      true    fifteenth       circumference   
 
719
512     141501  29      disappointing   Colombo dull    A
 
720
513     141502  29      navally survey  weekly  A
 
721
514     141901  29      circus  staffing        wetness 
 
722
515     141902  29      beetles obtain  visualized      
 
723
516     142101  29      trumps  loaded  Tannenbaum      
 
724
517     142102  29      fourscore       slaughtered     moribund        
 
725
518     142103  29      Blackfoots      lights  demultiplex     
 
726
519     142701  29      Grady   circumference   lockings        
 
727
520     143001  29      quiets  dull    thugs   FAS
 
728
521     143501  29      floundered      weekly  unnerves        
 
729
522     143502  29      profundity      wetness abut    
 
730
523     148001  29      Garrisonian     visualized      Chippewa        A
 
731
524     148002  29      Strauss Tannenbaum      stratifications A
 
732
525     148003  29      cemented        moribund        signaled        
 
733
526     148004  29      contrition      demultiplex     Italianizes     A
 
734
527     148005  29      mutations       lockings        algorithmic     A
 
735
528     148006  29      exhibits        thugs   paranoid        FAS
 
736
529     148007  29      tits    unnerves        camping A
 
737
530     148009  29      mate    abut    signifying      A
 
738
531     148010  29      arches  Chippewa        Patrice W
 
739
532     148011  29      Moll    stratifications search  A
 
740
533     148012  29      ropers  signaled        Angeles A
 
741
534     148013  29      bombast Italianizes     semblance       
 
742
535     148023  36      difficultly     algorithmic     taxed   
 
743
536     148015  29      adsorption      paranoid        Beatrice        
 
744
537     148016  29      definiteness    camping retrace 
 
745
538     148017  29      cultivation     signifying      lockout 
 
746
539     148018  29      heals   Patrice grammatic       
 
747
540     148019  29      Heusen  search  helmsman        
 
748
541     148020  29      target  Angeles uniform W
 
749
542     148021  29      cited   semblance       hamming 
 
750
543     148022  29      congresswoman   taxed   disobedience    
 
751
544     148101  29      Katherine       Beatrice        captivated      A
 
752
545     148102  29      titter  retrace transferals     A
 
753
546     148201  29      aspire  lockout cartographer    A
 
754
547     148401  29      Mardis  grammatic       aims    FAS
 
755
548     148402  29      Nadia   helmsman        Pakistani       
 
756
549     148501  29      estimating      uniform burglarized     FAS
 
757
550     148502  29      stuck   hamming saucepans       A
 
758
551     148503  29      fifteenth       disobedience    lacerating      A
 
759
552     148504  29      Colombo captivated      corny   
 
760
553     148601  29      survey  transferals     megabytes       FAS
 
761
554     148602  29      staffing        cartographer    chancellor      
 
762
555     150701  29      obtain  aims    bulk    A
 
763
556     152101  29      loaded  Pakistani       commits A
 
764
557     152102  29      slaughtered     burglarized     meson   W
 
765
558     155202  36      lights  saucepans       deputies        
 
766
559     155203  29      circumference   lacerating      northeaster     A
 
767
560     155204  29      dull    corny   dipole  
 
768
561     155205  29      weekly  megabytes       machining       0
 
769
562     156001  29      wetness chancellor      therefore       
 
770
563     156002  29      visualized      bulk    Telefunken      
 
771
564     156102  29      Tannenbaum      commits salvaging       
 
772
565     156301  29      moribund        meson   Corinthianizes  A
 
773
566     156302  29      demultiplex     deputies        restlessly      A
 
774
567     156303  29      lockings        northeaster     bromides        
 
775
568     156304  29      thugs   dipole  generalized     A
 
776
569     156305  29      unnerves        machining       mishaps 
 
777
570     156306  29      abut    therefore       quelling        
 
778
571     156501  29      Chippewa        Telefunken      spiritual       A
 
779
572     158001  29      stratifications salvaging       beguiles        FAS
 
780
573     158002  29      signaled        Corinthianizes  Trobriand       FAS
 
781
574     158101  29      Italianizes     restlessly      fleeing A
 
782
575     158102  29      algorithmic     bromides        Armour  A
 
783
576     158103  29      paranoid        generalized     chin    A
 
784
577     158201  29      camping mishaps provers A
 
785
578     158202  29      signifying      quelling        aeronautic      A
 
786
579     158203  29      Patrice spiritual       voltage W
 
787
580     158204  29      search  beguiles        sash    
 
788
581     158301  29      Angeles Trobriand       anaerobic       A
 
789
582     158302  29      semblance       fleeing simultaneous    A
 
790
583     158303  29      taxed   Armour  accumulating    A
 
791
584     158304  29      Beatrice        chin    Medusan A
 
792
585     158305  29      retrace provers shouted A
 
793
586     158306  29      lockout aeronautic      freakish        
 
794
587     158501  29      grammatic       voltage index   FAS
 
795
588     160301  29      helmsman        sash    commercially    
 
796
589     166101  50      uniform anaerobic       mistiness       A
 
797
590     166102  50      hamming simultaneous    endpoint        
 
798
591     168001  29      disobedience    accumulating    straight        A
 
799
592     168002  29      captivated      Medusan flurried        
 
800
593     168003  29      transferals     shouted denotative      A
 
801
594     168101  29      cartographer    freakish        coming  FAS
 
802
595     168102  29      aims    index   commencements   FAS
 
803
596     168103  29      Pakistani       commercially    gentleman       
 
804
597     168104  29      burglarized     mistiness       gifted  
 
805
598     168202  29      saucepans       endpoint        Shanghais       
 
806
599     168301  29      lacerating      straight        sportswriting   A
 
807
600     168502  29      corny   flurried        sloping A
 
808
601     168503  29      megabytes       denotative      navies  
 
809
602     168601  29      chancellor      coming  leaflet A
 
810
603     173001  40      bulk    commencements   shooter 
 
811
604     173701  40      commits gentleman       Joplin  FAS
 
812
605     173702  40      meson   gifted  babies  
 
813
606     176001  40      deputies        Shanghais       subdivision     FAS
 
814
607     176101  40      northeaster     sportswriting   burstiness      W
 
815
608     176201  40      dipole  sloping belted  FAS
 
816
609     176401  40      machining       navies  assails FAS
 
817
610     176501  40      therefore       leaflet admiring        W
 
818
611     176601  40      Telefunken      shooter swaying 0
 
819
612     176602  40      salvaging       Joplin  Goldstine       FAS
 
820
613     176603  40      Corinthianizes  babies  fitting 
 
821
614     178001  40      restlessly      subdivision     Norwalk W
 
822
615     178002  40      bromides        burstiness      weakening       W
 
823
616     178003  40      generalized     belted  analogy FAS
 
824
617     178004  40      mishaps assails deludes 
 
825
618     178005  40      quelling        admiring        cokes   
 
826
619     178006  40      spiritual       swaying Clayton 
 
827
620     178007  40      beguiles        Goldstine       exhausts        
 
828
621     178008  40      Trobriand       fitting causality       
 
829
622     178101  40      fleeing Norwalk sating  FAS
 
830
623     178102  40      Armour  weakening       icon    
 
831
624     178103  40      chin    analogy throttles       
 
832
625     178201  40      provers deludes communicants    FAS
 
833
626     178202  40      aeronautic      cokes   dehydrate       FAS
 
834
627     178301  40      voltage Clayton priceless       FAS
 
835
628     178302  40      sash    exhausts        publicly        
 
836
629     178401  40      anaerobic       causality       incidentals     FAS
 
837
630     178402  40      simultaneous    sating  commonplace     
 
838
631     178403  40      accumulating    icon    mumbles 
 
839
632     178404  40      Medusan throttles       furthermore     W
 
840
633     178501  40      shouted communicants    cautioned       W
 
841
634     186002  37      freakish        dehydrate       parametrized    A
 
842
635     186102  37      index   priceless       registration    A
 
843
636     186201  40      commercially    publicly        sadly   FAS
 
844
637     186202  40      mistiness       incidentals     positioning     
 
845
638     186203  40      endpoint        commonplace     babysitting     
 
846
639     186302  37      straight        mumbles eternal A
 
847
640     188007  37      flurried        furthermore     hoarder 
 
848
641     188008  37      denotative      cautioned       congregates     
 
849
642     188009  37      coming  parametrized    rains   
 
850
643     188010  37      commencements   registration    workers W
 
851
644     188011  37      gentleman       sadly   sags    A
 
852
645     188012  37      gifted  positioning     unplug  W
 
853
646     188013  37      Shanghais       babysitting     garage  A
 
854
647     188014  37      sportswriting   eternal boulder A
 
855
648     188015  37      sloping hoarder hollowly        A
 
856
649     188016  37      navies  congregates     specifics       
 
857
650     188017  37      leaflet rains   Teresa  
 
858
651     188102  37      shooter workers Winsett 
 
859
652     188103  37      Joplin  sags    convenient      A
 
860
653     188202  37      babies  unplug  buckboards      FAS
 
861
654     188301  40      subdivision     garage  amenities       
 
862
655     188302  40      burstiness      boulder resplendent     FAS
 
863
656     188303  40      belted  hollowly        priding FAS
 
864
657     188401  37      assails specifics       configurations  
 
865
658     188402  37      admiring        Teresa  untidiness      A
 
866
659     188503  37      swaying Winsett Brice   W
 
867
660     188504  37      Goldstine       convenient      sews    FAS
 
868
661     188505  37      fitting buckboards      participated    
 
869
662     190701  37      Norwalk amenities       Simon   FAS
 
870
663     190703  50      weakening       resplendent     certificates    
 
871
664     191701  37      analogy priding Fitzpatrick     
 
872
665     191702  37      deludes configurations  Evanston        A
 
873
666     191703  37      cokes   untidiness      misted  
 
874
667     196001  37      Clayton Brice   textures        A
 
875
668     196002  37      exhausts        sews    save    
 
876
669     196003  37      causality       participated    count   
 
877
670     196101  37      sating  Simon   rightful        A
 
878
671     196103  37      icon    certificates    chaperone       
 
879
672     196104  37      throttles       Fitzpatrick     Lizzy   A
 
880
673     196201  37      communicants    Evanston        clenched        A
 
881
674     196202  37      dehydrate       misted  effortlessly    
 
882
675     196203  37      priceless       textures        accessed        
 
883
676     198001  37      publicly        save    beaters A
 
884
677     198003  37      incidentals     count   Hornblower      FAS
 
885
678     198004  37      commonplace     rightful        vests   A
 
886
679     198005  37      mumbles chaperone       indulgences     FAS
 
887
680     198006  37      furthermore     Lizzy   infallibly      A
 
888
681     198007  37      cautioned       clenched        unwilling       FAS
 
889
682     198008  37      parametrized    effortlessly    excrete FAS
 
890
683     198009  37      registration    accessed        spools  A
 
891
684     198010  37      sadly   beaters crunches        FAS
 
892
685     198011  37      positioning     Hornblower      overestimating  FAS
 
893
686     198012  37      babysitting     vests   ineffective     
 
894
687     198013  37      eternal indulgences     humiliation     A
 
895
688     198014  37      hoarder infallibly      sophomore       
 
896
689     198015  37      congregates     unwilling       star    
 
897
690     198017  37      rains   excrete rifles  
 
898
691     198018  37      workers spools  dialysis        
 
899
692     198019  37      sags    crunches        arriving        
 
900
693     198020  37      unplug  overestimating  indulge 
 
901
694     198021  37      garage  ineffective     clockers        
 
902
695     198022  37      boulder humiliation     languages       
 
903
696     198023  50      hollowly        sophomore       Antarctica      A
 
904
697     198024  37      specifics       star    percentage      
 
905
698     198101  37      Teresa  rifles  ceiling A
 
906
699     198103  37      Winsett dialysis        specification   
 
907
700     198105  37      convenient      arriving        regimented      A
 
908
701     198106  37      buckboards      indulge ciphers 
 
909
702     198201  37      amenities       clockers        pictures        A
 
910
703     198204  37      resplendent     languages       serpents        A
 
911
704     198301  53      priding Antarctica      allot   A
 
912
705     198302  53      configurations  percentage      realized        A
 
913
706     198303  53      untidiness      ceiling mayoral A
 
914
707     198304  53      Brice   specification   opaquely        A
 
915
708     198401  37      sews    regimented      hostess FAS
 
916
709     198402  37      participated    ciphers fiftieth        
 
917
710     198403  37      Simon   pictures        incorrectly     
 
918
711     202101  37      certificates    serpents        decomposition   FAS
 
919
712     202301  37      Fitzpatrick     allot   stranglings     
 
920
713     202302  37      Evanston        realized        mixture FAS
 
921
714     202303  37      misted  mayoral electroencephalography  FAS
 
922
715     202304  37      textures        opaquely        similarities    FAS
 
923
716     202305  37      save    hostess charges W
 
924
717     202601  37      count   fiftieth        freest  FAS
 
925
718     202602  37      rightful        incorrectly     Greenberg       FAS
 
926
719     202605  37      chaperone       decomposition   tinting 
 
927
720     202606  37      Lizzy   stranglings     expelled        W
 
928
721     202607  37      clenched        mixture warm    
 
929
722     202901  37      effortlessly    electroencephalography  smoothed        
 
930
723     202902  37      accessed        similarities    deductions      FAS
 
931
724     202903  37      beaters charges Romano  W
 
932
725     202904  37      Hornblower      freest  bitterroot      
 
933
726     202907  37      vests   Greenberg       corset  
 
934
727     202908  37      indulgences     tinting securing        
 
935
728     203101  37      infallibly      expelled        environing      FAS
 
936
729     203103  37      unwilling       warm    cute    
 
937
730     203104  37      excrete smoothed        Crays   
 
938
731     203105  37      spools  deductions      heiress FAS
 
939
732     203401  37      crunches        Romano  inform  FAS
 
940
733     203402  37      overestimating  bitterroot      avenge  
 
941
734     203404  37      ineffective     corset  universals      
 
942
735     203901  37      humiliation     securing        Kinsey  W
 
943
736     203902  37      sophomore       environing      ravines FAS
 
944
737     203903  37      star    cute    bestseller      
 
945
738     203906  37      rifles  Crays   equilibrium     
 
946
739     203907  37      dialysis        heiress extents 0
 
947
740     203908  37      arriving        inform  relatively      
 
948
741     203909  37      indulge avenge  pressure        FAS
 
949
742     206101  37      clockers        universals      critiques       FAS
 
950
743     206201  37      languages       Kinsey  befouled        
 
951
744     206202  37      Antarctica      ravines rightfully      FAS
 
952
745     206203  37      percentage      bestseller      mechanizing     FAS
 
953
746     206206  37      ceiling equilibrium     Latinizes       
 
954
747     206207  37      specification   extents timesharing     
 
955
748     206208  37      regimented      relatively      Aden    
 
956
749     208001  37      ciphers pressure        embassies       
 
957
750     208002  37      pictures        critiques       males   FAS
 
958
751     208003  37      serpents        befouled        shapelessly     FAS
 
959
752     208004  37      allot   rightfully      genres  FAS
 
960
753     208008  37      realized        mechanizing     mastering       
 
961
754     208009  37      mayoral Latinizes       Newtonian       
 
962
755     208010  37      opaquely        timesharing     finishers       FAS
 
963
756     208011  37      hostess Aden    abates  
 
964
757     208101  37      fiftieth        embassies       teem    
 
965
758     208102  37      incorrectly     males   kiting  FAS
 
966
759     208103  37      decomposition   shapelessly     stodgy  FAS
 
967
760     208104  37      stranglings     genres  scalps  FAS
 
968
761     208105  37      mixture mastering       feed    FAS
 
969
762     208110  37      electroencephalography  Newtonian       guitars 
 
970
763     208111  37      similarities    finishers       airships        
 
971
764     208112  37      charges abates  store   
 
972
765     208113  37      freest  teem    denounces       
 
973
766     208201  37      Greenberg       kiting  Pyle    FAS
 
974
767     208203  37      tinting stodgy  Saxony  
 
975
768     208301  37      expelled        scalps  serializations  FAS
 
976
769     208302  37      warm    feed    Peruvian        FAS
 
977
770     208305  37      smoothed        guitars taxonomically   FAS
 
978
771     208401  37      deductions      airships        kingdom A
 
979
772     208402  37      Romano  store   stint   A
 
980
773     208403  37      bitterroot      denounces       Sault   A
 
981
774     208404  37      corset  Pyle    faithful        
 
982
775     208501  37      securing        Saxony  Ganymede        FAS
 
983
776     208502  37      environing      serializations  tidiness        FAS
 
984
777     208503  37      cute    Peruvian        gainful FAS
 
985
778     208504  37      Crays   taxonomically   contrary        FAS
 
986
779     208505  37      heiress kingdom Tipperary       FAS
 
987
780     210101  37      inform  stint   tropics W
 
988
781     210102  37      avenge  Sault   theorizers      
 
989
782     210103  37      universals      faithful        renew   0
 
990
783     210104  37      Kinsey  Ganymede        already 
 
991
784     210105  37      ravines tidiness        terminal        
 
992
785     210106  37      bestseller      gainful Hegelian        
 
993
786     210107  37      equilibrium     contrary        hypothesizer    
 
994
787     210401  37      extents Tipperary       warningly       FAS
 
995
788     213201  37      relatively      tropics journalizing    FAS
 
996
789     213203  37      pressure        theorizers      nested  
 
997
790     213204  37      critiques       renew   Lars    
 
998
791     213205  37      befouled        already saplings        
 
999
792     213206  37      rightfully      terminal        foothill        
 
1000
793     213207  37      mechanizing     Hegelian        labeled 
 
1001
794     216101  37      Latinizes       hypothesizer    imperiously     FAS
 
1002
795     216103  37      timesharing     warningly       reporters       FAS
 
1003
796     218001  37      Aden    journalizing    furnishings     FAS
 
1004
797     218002  37      embassies       nested  precipitable    FAS
 
1005
798     218003  37      males   Lars    discounts       FAS
 
1006
799     218004  37      shapelessly     saplings        excises FAS
 
1007
800     143503  50      genres  foothill        Stalin  
 
1008
801     218006  37      mastering       labeled despot  FAS
 
1009
802     218007  37      Newtonian       imperiously     ripeness        FAS
 
1010
803     218008  37      finishers       reporters       Arabia  
 
1011
804     218009  37      abates  furnishings     unruly  
 
1012
805     218010  37      teem    precipitable    mournfulness    
 
1013
806     218011  37      kiting  discounts       boom    FAS
 
1014
807     218020  37      stodgy  excises slaughter       A
 
1015
808     218021  50      scalps  Stalin  Sabine  
 
1016
809     218022  37      feed    despot  handy   FAS
 
1017
810     218023  37      guitars ripeness        rural   
 
1018
811     218024  37      airships        Arabia  organizer       
 
1019
812     218101  37      store   unruly  shipyard        FAS
 
1020
813     218102  37      denounces       mournfulness    civics  FAS
 
1021
814     218103  37      Pyle    boom    inaccuracy      FAS
 
1022
815     218201  37      Saxony  slaughter       rules   FAS
 
1023
816     218202  37      serializations  Sabine  juveniles       FAS
 
1024
817     218203  37      Peruvian        handy   comprised       W
 
1025
818     218204  37      taxonomically   rural   investigations  
 
1026
819     218205  37      kingdom organizer       stabilizes      A
 
1027
820     218301  37      stint   shipyard        seminaries      FAS
 
1028
821     218302  37      Sault   civics  Hunter  A
 
1029
822     218401  37      faithful        inaccuracy      sporty  FAS
 
1030
823     218402  37      Ganymede        rules   test    FAS
 
1031
824     218403  37      tidiness        juveniles       weasels 
 
1032
825     218404  37      gainful comprised       CERN    
 
1033
826     218407  37      contrary        investigations  tempering       
 
1034
827     218408  37      Tipperary       stabilizes      afore   FAS
 
1035
828     218409  37      tropics seminaries      Galatean        
 
1036
829     218410  37      theorizers      Hunter  techniques      W
 
1037
830     226001  37      renew   sporty  error   
 
1038
831     226002  37      already test    veranda 
 
1039
832     226003  37      terminal        weasels severely        
 
1040
833     226004  37      Hegelian        CERN    Cassites        FAS
 
1041
834     226005  37      hypothesizer    tempering       forthcoming     
 
1042
835     226006  37      warningly       afore   guides  
 
1043
836     226007  37      journalizing    Galatean        vanish  FAS
 
1044
837     226008  37      nested  techniques      lied    A
 
1045
838     226203  37      Lars    error   sawtooth        FAS
 
1046
839     226204  37      saplings        veranda fated   FAS
 
1047
840     226205  37      foothill        severely        gradually       
 
1048
841     226206  37      labeled Cassites        widens  
 
1049
842     226207  37      imperiously     forthcoming     preclude        
 
1050
843     226208  37      reporters       guides  Jobrel  
 
1051
844     226209  37      furnishings     vanish  hooker  
 
1052
845     226210  37      precipitable    lied    rainstorm       
 
1053
846     226211  37      discounts       sawtooth        disconnects     
 
1054
847     228001  37      excises fated   cruelty 
 
1055
848     228004  37      Stalin  gradually       exponentials    A
 
1056
849     228005  37      despot  widens  affective       A
 
1057
850     228006  37      ripeness        preclude        arteries        
 
1058
851     228007  37      Arabia  Jobrel  Crosby  FAS
 
1059
852     228008  37      unruly  hooker  acquaint        
 
1060
853     228009  37      mournfulness    rainstorm       evenhandedly    
 
1061
854     228101  37      boom    disconnects     percentage      
 
1062
855     228108  37      slaughter       cruelty disobedience    
 
1063
856     228109  37      Sabine  exponentials    humility        
 
1064
857     228110  37      handy   affective       gleaning        A
 
1065
858     228111  37      rural   arteries        petted  A
 
1066
859     228112  37      organizer       Crosby  bloater A
 
1067
860     228113  37      shipyard        acquaint        minion  A
 
1068
861     228114  37      civics  evenhandedly    marginal        A
 
1069
862     228115  37      inaccuracy      percentage      apiary  A
 
1070
863     228116  37      rules   disobedience    measures        
 
1071
864     228117  37      juveniles       humility        precaution      
 
1072
865     228118  37      comprised       gleaning        repelled        
 
1073
866     228119  37      investigations  petted  primary FAS
 
1074
867     228120  37      stabilizes      bloater coverings       
 
1075
868     228121  37      seminaries      minion  Artemia A
 
1076
869     228122  37      Hunter  marginal        navigate        
 
1077
870     228201  37      sporty  apiary  spatial 
 
1078
871     228206  37      test    measures        Gurkha  
 
1079
872     228207  37      weasels precaution      meanwhile       A
 
1080
873     228208  37      CERN    repelled        Melinda A
 
1081
874     228209  37      tempering       primary Butterfield     
 
1082
875     228210  37      afore   coverings       Aldrich A
 
1083
876     228211  37      Galatean        Artemia previewing      A
 
1084
877     228212  37      techniques      navigate        glut    A
 
1085
878     228213  37      error   spatial unaffected      
 
1086
879     228214  37      veranda Gurkha  inmate  
 
1087
880     228301  37      severely        meanwhile       mineral 
 
1088
881     228305  37      Cassites        Melinda impending       A
 
1089
882     228306  37      forthcoming     Butterfield     meditation      A
 
1090
883     228307  37      guides  Aldrich ideas   
 
1091
884     228308  37      vanish  previewing      miniaturizes    W
 
1092
885     228309  37      lied    glut    lewdly  
 
1093
886     228310  37      sawtooth        unaffected      title   
 
1094
887     228311  37      fated   inmate  youthfulness    
 
1095
888     228312  37      gradually       mineral creak   FAS
 
1096
889     228313  37      widens  impending       Chippewa        
 
1097
890     228314  37      preclude        meditation      clamored        
 
1098
891     228401  65      Jobrel  ideas   freezes 
 
1099
892     228402  65      hooker  miniaturizes    forgivably      FAS
 
1100
893     228403  65      rainstorm       lewdly  reduce  FAS
 
1101
894     228404  65      disconnects     title   McGovern        W
 
1102
895     228405  65      cruelty youthfulness    Nazis   W
 
1103
896     228406  65      exponentials    creak   epistle W
 
1104
897     228407  65      affective       Chippewa        socializes      W
 
1105
898     228408  65      arteries        clamored        conceptions     
 
1106
899     228409  65      Crosby  freezes Kevin   
 
1107
900     228410  65      acquaint        forgivably      uncovering      
 
1108
901     230301  37      evenhandedly    reduce  chews   FAS
 
1109
902     230302  37      percentage      McGovern        appendixes      FAS
 
1110
903     230303  37      disobedience    Nazis   raining 
 
1111
904     018062  37      humility        epistle infest  
 
1112
905     230501  37      gleaning        socializes      compartment     
 
1113
906     230502  37      petted  conceptions     minting 
 
1114
907     230503  37      bloater Kevin   ducks   
 
1115
908     230504  37      minion  uncovering      roped   A
 
1116
909     230505  37      marginal        chews   waltz   
 
1117
910     230506  37      apiary  appendixes      Lillian 
 
1118
911     230507  37      measures        raining repressions     A
 
1119
912     230508  37      precaution      infest  chillingly      
 
1120
913     230509  37      repelled        compartment     noncritical     
 
1121
914     230901  37      primary minting lithograph      
 
1122
915     230902  37      coverings       ducks   spongers        
 
1123
916     230903  37      Artemia roped   parenthood      
 
1124
917     230904  37      navigate        waltz   posed   
 
1125
918     230905  37      spatial Lillian instruments     
 
1126
919     230906  37      Gurkha  repressions     filial  
 
1127
920     230907  37      meanwhile       chillingly      fixedly 
 
1128
921     230908  37      Melinda noncritical     relives 
 
1129
922     230909  37      Butterfield     lithograph      Pandora 
 
1130
923     230910  37      Aldrich spongers        watering        A
 
1131
924     230911  37      previewing      parenthood      ungrateful      
 
1132
925     230912  37      glut    posed   secures 
 
1133
926     230913  37      unaffected      instruments     chastisers      
 
1134
927     230914  37      inmate  filial  icon    
 
1135
928     231304  37      mineral fixedly reuniting       A
 
1136
929     231305  37      impending       relives imagining       A
 
1137
930     231306  37      meditation      Pandora abiding A
 
1138
931     231307  37      ideas   watering        omnisciently    
 
1139
932     231308  37      miniaturizes    ungrateful      Britannic       
 
1140
933     231309  37      lewdly  secures scholastics     A
 
1141
934     231310  37      title   chastisers      mechanics       A
 
1142
935     231311  37      youthfulness    icon    humidly A
 
1143
936     231312  37      creak   reuniting       masterpiece     
 
1144
937     231313  37      Chippewa        imagining       however 
 
1145
938     231314  37      clamored        abiding Mendelian       
 
1146
939     231315  37      freezes omnisciently    jarred  
 
1147
940     232102  37      forgivably      Britannic       scolds  
 
1148
941     232103  37      reduce  scholastics     infatuate       
 
1149
942     232104  37      McGovern        mechanics       willed  A
 
1150
943     232105  37      Nazis   humidly joyfully        
 
1151
944     232106  37      epistle masterpiece     Microsoft       
 
1152
945     232107  37      socializes      however fibrosities     
 
1153
946     232108  37      conceptions     Mendelian       Baltimorean     
 
1154
947     232601  37      Kevin   jarred  equestrian      
 
1155
948     232602  37      uncovering      scolds  Goodrich        
 
1156
949     232603  37      chews   infatuate       apish   A
 
1157
950     232605  37      appendixes      willed  Adlerian        
 
1158
5950    1232605 37      appendixes      willed  Adlerian        
 
1159
5951    1232606 37      appendixes      willed  Adlerian        
 
1160
5952    1232607 37      appendixes      willed  Adlerian        
 
1161
5953    1232608 37      appendixes      willed  Adlerian        
 
1162
5954    1232609 37      appendixes      willed  Adlerian        
 
1163
951     232606  37      raining joyfully        Tropez  
 
1164
952     232607  37      infest  Microsoft       nouns   
 
1165
953     232608  37      compartment     fibrosities     distracting     
 
1166
954     232609  37      minting Baltimorean     mutton  
 
1167
955     236104  37      ducks   equestrian      bridgeable      A
 
1168
956     236105  37      roped   Goodrich        stickers        A
 
1169
957     236106  37      waltz   apish   transcontinental        A
 
1170
958     236107  37      Lillian Adlerian        amateurish      
 
1171
959     236108  37      repressions     Tropez  Gandhian        
 
1172
960     236109  37      chillingly      nouns   stratified      
 
1173
961     236110  37      noncritical     distracting     chamberlains    
 
1174
962     236111  37      lithograph      mutton  creditably      
 
1175
963     236112  37      spongers        bridgeable      philosophic     
 
1176
964     236113  37      parenthood      stickers        ores    
 
1177
965     238005  37      posed   transcontinental        Carleton        
 
1178
966     238006  37      instruments     amateurish      tape    A
 
1179
967     238007  37      filial  Gandhian        afloat  A
 
1180
968     238008  37      fixedly stratified      goodness        A
 
1181
969     238009  37      relives chamberlains    welcoming       
 
1182
970     238010  37      Pandora creditably      Pinsky  FAS
 
1183
971     238011  37      watering        philosophic     halting 
 
1184
972     238012  37      ungrateful      ores    bibliography    
 
1185
973     238013  37      secures Carleton        decoding        
 
1186
974     240401  41      chastisers      tape    variance        A
 
1187
975     240402  41      icon    afloat  allowed A
 
1188
976     240901  41      reuniting       goodness        dire    A
 
1189
977     240902  41      imagining       welcoming       dub     A
 
1190
978     241801  41      abiding Pinsky  poisoning       
 
1191
979     242101  41      omnisciently    halting Iraqis  A
 
1192
980     242102  41      Britannic       bibliography    heaving 
 
1193
981     242201  41      scholastics     decoding        population      A
 
1194
982     242202  41      mechanics       variance        bomb    A
 
1195
983     242501  41      humidly allowed Majorca A
 
1196
984     242502  41      masterpiece     dire    Gershwins       
 
1197
985     246201  41      however dub     explorers       
 
1198
986     246202  41      Mendelian       poisoning       libretto        A
 
1199
987     246203  41      jarred  Iraqis  occurred        
 
1200
988     246204  41      scolds  heaving Lagos   
 
1201
989     246205  41      infatuate       population      rats    
 
1202
990     246301  41      willed  bomb    bankruptcies    A
 
1203
991     246302  41      joyfully        Majorca crying  
 
1204
992     248001  41      Microsoft       Gershwins       unexpected      
 
1205
993     248002  41      fibrosities     explorers       accessed        A
 
1206
994     248003  41      Baltimorean     libretto        colorful        A
 
1207
995     248004  41      equestrian      occurred        versatility     A
 
1208
996     248005  41      Goodrich        Lagos   cosy    
 
1209
997     248006  41      apish   rats    Darius  A
 
1210
998     248007  41      Adlerian        bankruptcies    mastering       A
 
1211
999     248008  41      Tropez  crying  Asiaticizations A
 
1212
1000    248009  41      nouns   unexpected      offerers        A
 
1213
1001    248010  41      distracting     accessed        uncles  A
 
1214
1002    248011  41      mutton  colorful        sleepwalk       
 
1215
1003    248012  41      bridgeable      versatility     Ernestine       
 
1216
1004    248013  41      stickers        cosy    checksumming    
 
1217
1005    248014  41      transcontinental        Darius  stopped 
 
1218
1006    248015  41      amateurish      mastering       sicker  
 
1219
1007    248016  41      Gandhian        Asiaticizations Italianization  
 
1220
1008    248017  41      stratified      offerers        alphabetic      
 
1221
1009    248018  41      chamberlains    uncles  pharmaceutic    
 
1222
1010    248019  41      creditably      sleepwalk       creator 
 
1223
1011    248020  41      philosophic     Ernestine       chess   
 
1224
1012    248021  41      ores    checksumming    charcoal        
 
1225
1013    248101  41      Carleton        stopped Epiphany        A
 
1226
1014    248102  41      tape    sicker  bulldozes       A
 
1227
1015    248201  41      afloat  Italianization  Pygmalion       A
 
1228
1016    248202  41      goodness        alphabetic      caressing       A
 
1229
1017    248203  41      welcoming       pharmaceutic    Palestine       A
 
1230
1018    248204  41      Pinsky  creator regimented      A
 
1231
1019    248205  41      halting chess   scars   A
 
1232
1020    248206  41      bibliography    charcoal        realest A
 
1233
1021    248207  41      decoding        Epiphany        diffusing       A
 
1234
1022    248208  41      variance        bulldozes       clubroom        A
 
1235
1023    248209  41      allowed Pygmalion       Blythe  A
 
1236
1024    248210  41      dire    caressing       ahead   
 
1237
1025    248211  50      dub     Palestine       reviver 
 
1238
1026    250501  34      poisoning       regimented      retransmitting  A
 
1239
1027    250502  34      Iraqis  scars   landslide       
 
1240
1028    250503  34      heaving realest Eiffel  
 
1241
1029    250504  34      population      diffusing       absentee        
 
1242
1030    250505  34      bomb    clubroom        aye     
 
1243
1031    250601  34      Majorca Blythe  forked  A
 
1244
1032    250602  34      Gershwins       ahead   Peruvianizes    
 
1245
1033    250603  34      explorers       reviver clerked 
 
1246
1034    250604  34      libretto        retransmitting  tutor   
 
1247
1035    250605  34      occurred        landslide       boulevard       
 
1248
1036    251001  34      Lagos   Eiffel  shuttered       
 
1249
1037    251002  34      rats    absentee        quotes  A
 
1250
1038    251003  34      bankruptcies    aye     Caltech 
 
1251
1039    251004  34      crying  forked  Mossberg        
 
1252
1040    251005  34      unexpected      Peruvianizes    kept    
 
1253
1041    251301  34      accessed        clerked roundly 
 
1254
1042    251302  34      colorful        tutor   features        A
 
1255
1043    251303  34      versatility     boulevard       imaginable      A
 
1256
1044    251304  34      cosy    shuttered       controller      
 
1257
1045    251305  34      Darius  quotes  racial  
 
1258
1046    251401  34      mastering       Caltech uprisings       A
 
1259
1047    251402  34      Asiaticizations Mossberg        narrowed        A
 
1260
1048    251403  34      offerers        kept    cannot  A
 
1261
1049    251404  34      uncles  roundly vest    
 
1262
1050    251405  34      sleepwalk       features        famine  
 
1263
1051    251406  34      Ernestine       imaginable      sugars  
 
1264
1052    251801  34      checksumming    controller      exterminated    A
 
1265
1053    251802  34      stopped racial  belays  
 
1266
1054    252101  34      sicker  uprisings       Hodges  A
 
1267
1055    252102  34      Italianization  narrowed        translatable    
 
1268
1056    252301  34      alphabetic      cannot  duality A
 
1269
1057    252302  34      pharmaceutic    vest    recording       A
 
1270
1058    252303  34      creator famine  rouses  A
 
1271
1059    252304  34      chess   sugars  poison  
 
1272
1060    252305  34      charcoal        exterminated    attitude        
 
1273
1061    252306  34      Epiphany        belays  dusted  
 
1274
1062    252307  34      bulldozes       Hodges  encompasses     
 
1275
1063    252308  34      Pygmalion       translatable    presentation    
 
1276
1064    252309  34      caressing       duality Kantian 
 
1277
1065    256001  34      Palestine       recording       imprecision     A
 
1278
1066    256002  34      regimented      rouses  saving  
 
1279
1067    256003  34      scars   poison  maternal        
 
1280
1068    256004  34      realest attitude        hewed   
 
1281
1069    256005  34      diffusing       dusted  kerosene        
 
1282
1070    258001  34      clubroom        encompasses     Cubans  
 
1283
1071    258002  34      Blythe  presentation    photographers   
 
1284
1072    258003  34      ahead   Kantian nymph   A
 
1285
1073    258004  34      reviver imprecision     bedlam  A
 
1286
1074    258005  34      retransmitting  saving  north   A
 
1287
1075    258006  34      landslide       maternal        Schoenberg      A
 
1288
1076    258007  34      Eiffel  hewed   botany  A
 
1289
1077    258008  34      absentee        kerosene        curs    
 
1290
1078    258009  34      aye     Cubans  solidification  
 
1291
1079    258010  34      forked  photographers   inheritresses   
 
1292
1080    258011  34      Peruvianizes    nymph   stiller 
 
1293
1081    258101  68      clerked bedlam  t1      A
 
1294
1082    258102  68      tutor   north   suite   A
 
1295
1083    258103  34      boulevard       Schoenberg      ransomer        
 
1296
1084    258104  68      shuttered       botany  Willy   
 
1297
1085    258105  68      quotes  curs    Rena    A
 
1298
1086    258106  68      Caltech solidification  Seattle A
 
1299
1087    258107  68      Mossberg        inheritresses   relaxes A
 
1300
1088    258108  68      kept    stiller exclaim 
 
1301
1089    258109  68      roundly t1      implicated      A
 
1302
1090    258110  68      features        suite   distinguish     
 
1303
1091    258111  68      imaginable      ransomer        assayed 
 
1304
1092    258112  68      controller      Willy   homeowner       
 
1305
1093    258113  68      racial  Rena    and     
 
1306
1094    258201  34      uprisings       Seattle stealth 
 
1307
1095    258202  34      narrowed        relaxes coinciding      A
 
1308
1096    258203  34      cannot  exclaim founder A
 
1309
1097    258204  34      vest    implicated      environing      
 
1310
1098    258205  34      famine  distinguish     jewelry 
 
1311
1099    258301  34      sugars  assayed lemons  A
 
1312
1100    258401  34      exterminated    homeowner       brokenness      A
 
1313
1101    258402  34      belays  and     bedpost A
 
1314
1102    258403  34      Hodges  stealth assurers        A
 
1315
1103    258404  34      translatable    coinciding      annoyers        
 
1316
1104    258405  34      duality founder affixed 
 
1317
1105    258406  34      recording       environing      warbling        
 
1318
1106    258407  34      rouses  jewelry seriously       
 
1319
1107    228123  37      poison  lemons  boasted 
 
1320
1108    250606  34      attitude        brokenness      Chantilly       
 
1321
1109    208405  37      dusted  bedpost Iranizes        
 
1322
1110    212101  37      encompasses     assurers        violinist       
 
1323
1111    218206  37      presentation    annoyers        extramarital    
 
1324
1112    150401  37      Kantian affixed spates  
 
1325
1113    248212  41      imprecision     warbling        cloakroom       
 
1326
1114    128026  00      saving  seriously       gazer   
 
1327
1115    128024  00      maternal        boasted hand    
 
1328
1116    128027  00      hewed   Chantilly       tucked  
 
1329
1117    128025  00      kerosene        Iranizes        gems    
 
1330
1118    128109  00      Cubans  violinist       clinker 
 
1331
1119    128705  00      photographers   extramarital    refiner 
 
1332
1120    126303  00      nymph   spates  callus  
 
1333
1121    128308  00      bedlam  cloakroom       leopards        
 
1334
1122    128204  00      north   gazer   comfortingly    
 
1335
1123    128205  00      Schoenberg      hand    generically     
 
1336
1124    128206  00      botany  tucked  getters 
 
1337
1125    128207  00      curs    gems    sexually        
 
1338
1126    118205  00      solidification  clinker spear   
 
1339
1127    116801  00      inheritresses   refiner serums  
 
1340
1128    116803  00      stiller callus  Italianization  
 
1341
1129    116804  00      t1      leopards        attendants      
 
1342
1130    116802  00      suite   comfortingly    spies   
 
1343
1131    128605  00      ransomer        generically     Anthony 
 
1344
1132    118308  00      Willy   getters planar  
 
1345
1133    113702  00      Rena    sexually        cupped  
 
1346
1134    113703  00      Seattle spear   cleanser        
 
1347
1135    112103  00      relaxes serums  commuters       
 
1348
1136    118009  00      exclaim Italianization  honeysuckle     
 
1349
5136    1118009 00      exclaim Italianization  honeysuckle     
 
1350
1137    138011  00      implicated      attendants      orphanage       
 
1351
1138    138010  00      distinguish     spies   skies   
 
1352
1139    138012  00      assayed Anthony crushers        
 
1353
1140    068304  00      homeowner       planar  Puritan 
 
1354
1141    078009  00      and     cupped  squeezer        
 
1355
1142    108013  00      stealth cleanser        bruises 
 
1356
1143    084004  00      coinciding      commuters       bonfire 
 
1357
1144    083402  00      founder honeysuckle     Colombo 
 
1358
1145    084003  00      environing      orphanage       nondecreasing   
 
1359
1146    088504  00      jewelry skies   innocents       
 
1360
1147    088005  00      lemons  crushers        masked  
 
1361
1148    088007  00      brokenness      Puritan file    
 
1362
1149    088006  00      bedpost squeezer        brush   
 
1363
1150    148025  00      assurers        bruises mutilate        
 
1364
1151    148024  00      annoyers        bonfire mommy   
 
1365
1152    138305  00      affixed Colombo bulkheads       
 
1366
1153    138306  00      warbling        nondecreasing   undeclared      
 
1367
1154    152701  00      seriously       innocents       displacements   
 
1368
1155    148505  00      boasted masked  nieces  
 
1369
1156    158003  00      Chantilly       file    coeducation     
 
1370
1157    156201  00      Iranizes        brush   brassy  
 
1371
1158    156202  00      violinist       mutilate        authenticator   
 
1372
1159    158307  00      extramarital    mommy   Washoe  
 
1373
1160    158402  00      spates  bulkheads       penny   
 
1374
1161    158401  00      cloakroom       undeclared      Flagler 
 
1375
1162    068013  00      gazer   displacements   stoned  
 
1376
1163    068012  00      hand    nieces  cranes  
 
1377
1164    068203  00      tucked  coeducation     masterful       
 
1378
1165    088205  00      gems    brassy  biracial        
 
1379
1166    068704  00      clinker authenticator   steamships      
 
1380
1167    068604  00      refiner Washoe  windmills       
 
1381
1168    158502  00      callus  penny   exploit 
 
1382
1169    123103  00      leopards        Flagler riverfront      
 
1383
1170    148026  00      comfortingly    stoned  sisterly        
 
1384
1171    123302  00      generically     cranes  sharpshoot      
 
1385
1172    076503  00      getters masterful       mittens 
 
1386
1173    126304  00      sexually        biracial        interdependency 
 
1387
1174    068306  00      spear   steamships      policy  
 
1388
1175    143504  00      serums  windmills       unleashing      
 
1389
1176    160201  00      Italianization  exploit pretenders      
 
1390
1177    148028  00      attendants      riverfront      overstatements  
 
1391
1178    148027  00      spies   sisterly        birthed 
 
1392
1179    143505  00      Anthony sharpshoot      opportunism     
 
1393
1180    108014  00      planar  mittens showroom        
 
1394
1181    076104  00      cupped  interdependency compromisingly  
 
1395
1182    078106  00      cleanser        policy  Medicare        
 
1396
1183    126102  00      commuters       unleashing      corresponds     
 
1397
1184    128029  00      honeysuckle     pretenders      hardware        
 
1398
1185    128028  00      orphanage       overstatements  implant 
 
1399
1186    018410  00      skies   birthed Alicia  
 
1400
1187    128110  00      crushers        opportunism     requesting      
 
1401
1188    148506  00      Puritan showroom        produced        
 
1402
1189    123303  00      squeezer        compromisingly  criticizes      
 
1403
1190    123304  00      bruises Medicare        backer  
 
1404
1191    068504  00      bonfire corresponds     positively      
 
1405
1192    068305  00      Colombo hardware        colicky 
 
1406
1193    000000  00      nondecreasing   implant thrillingly     
 
1407
1       000001  00      Omaha   teethe  neat    
 
1408
2       011401  37      breaking        dreaded Steinberg       W
 
1409
3       011402  37      Romans  scholastics     jarring 
 
1410
4       011403  37      intercepted     audiology       tinily  
 
1411
OPTIMIZE TABLE t2;
 
1412
Table   Op      Msg_type        Msg_text
 
1413
test.t2 optimize        status  OK
 
1414
SELECT * FROM t2;
 
1415
auto    fld1    companynr       fld3    fld4    fld5    fld6
 
1416
1       000001  00      Omaha   teethe  neat    
 
1417
2       011401  37      breaking        dreaded Steinberg       W
 
1418
3       011402  37      Romans  scholastics     jarring 
 
1419
4       011403  37      intercepted     audiology       tinily  
 
1420
5       011501  37      bewilderingly   wallet  balled  
 
1421
6       011701  37      astound parters persist W
 
1422
7       011702  37      admonishing     eschew  attainments     
 
1423
8       011703  37      sumac   quitter fanatic 
 
1424
9       012001  37      flanking        neat    measures        FAS
 
1425
10      012003  37      combed  Steinberg       rightfulness    
 
1426
11      012004  37      subjective      jarring capably 
 
1427
12      012005  37      scatterbrain    tinily  impulsive       
 
1428
13      012301  37      Eulerian        balled  starlet 
 
1429
14      012302  36      dubbed  persist terminators     
 
1430
15      012303  37      Kane    attainments     untying 
 
1431
16      012304  37      overlay fanatic announces       FAS
 
1432
17      012305  37      perturb measures        featherweight   FAS
 
1433
18      012306  37      goblins rightfulness    pessimist       FAS
 
1434
19      012501  37      annihilates     capably daughter        
 
1435
20      012602  37      Wotan   impulsive       decliner        FAS
 
1436
21      012603  37      snatching       starlet lawgiver        
 
1437
22      012604  37      concludes       terminators     stated  
 
1438
23      012605  37      laterally       untying readable        
 
1439
24      012606  37      yelped  announces       attrition       
 
1440
25      012701  37      grazing featherweight   cascade FAS
 
1441
26      012702  37      Baird   pessimist       motors  FAS
 
1442
27      012703  37      celery  daughter        interrogate     
 
1443
28      012704  37      misunderstander decliner        pests   W
 
1444
29      013601  37      handgun lawgiver        stairway        
 
1445
30      013602  37      foldout stated  dopers  FAS
 
1446
31      013603  37      mystic  readable        testicle        W
 
1447
32      013604  37      succumbed       attrition       Parsifal        W
 
1448
33      013605  37      Nabisco cascade leavings        
 
1449
34      013606  37      fingerings      motors  postulation     W
 
1450
35      013607  37      aging   interrogate     squeaking       
 
1451
36      013608  37      afield  pests   contrasted      
 
1452
37      013609  37      ammonium        stairway        leftover        
 
1453
38      013610  37      boat    dopers  whiteners       
 
1454
39      013801  37      intelligibility testicle        erases  W
 
1455
40      013802  37      Augustine       Parsifal        Punjab  W
 
1456
41      013803  37      teethe  leavings        Merritt 
 
1457
42      013804  37      dreaded postulation     Quixotism       
 
1458
43      013901  37      scholastics     squeaking       sweetish        FAS
 
1459
44      016001  37      audiology       contrasted      dogging FAS
 
1460
45      016201  37      wallet  leftover        scornfully      FAS
 
1461
46      016202  37      parters whiteners       bellow  
 
1462
47      016301  37      eschew  erases  bills   
 
1463
48      016302  37      quitter Punjab  cupboard        FAS
 
1464
49      016303  37      neat    Merritt sureties        FAS
 
1465
50      016304  37      Steinberg       Quixotism       puddings        
 
1466
51      018001  37      jarring sweetish        tapestry        
 
1467
52      018002  37      tinily  dogging fetters 
 
1468
53      018003  37      balled  scornfully      bivalves        
 
1469
54      018004  37      persist bellow  incurring       
 
1470
55      018005  37      attainments     bills   Adolph  
 
1471
56      018007  37      fanatic cupboard        pithed  
 
1472
57      018008  37      measures        sureties        emergency       
 
1473
58      018009  37      rightfulness    puddings        Miles   
 
1474
59      018010  37      capably tapestry        trimmings       
 
1475
60      018012  37      impulsive       fetters tragedies       W
 
1476
61      018013  37      starlet bivalves        skulking        W
 
1477
62      018014  37      terminators     incurring       flint   
 
1478
63      018015  37      untying Adolph  flopping        W
 
1479
64      018016  37      announces       pithed  relaxing        FAS
 
1480
65      018017  37      featherweight   emergency       offload FAS
 
1481
66      018018  37      pessimist       Miles   suites  W
 
1482
67      018019  37      daughter        trimmings       lists   FAS
 
1483
68      018020  37      decliner        tragedies       animized        FAS
 
1484
69      018021  37      lawgiver        skulking        multilayer      W
 
1485
70      018022  37      stated  flint   standardizes    FAS
 
1486
71      018023  37      readable        flopping        Judas   
 
1487
72      018024  37      attrition       relaxing        vacuuming       W
 
1488
73      018025  37      cascade offload dentally        W
 
1489
74      018026  37      motors  suites  humanness       W
 
1490
75      018027  37      interrogate     lists   inch    W
 
1491
76      018028  37      pests   animized        Weissmuller     W
 
1492
77      018029  37      stairway        multilayer      irresponsibly   W
 
1493
78      018030  37      dopers  standardizes    luckily FAS
 
1494
79      018032  37      testicle        Judas   culled  W
 
1495
80      018033  37      Parsifal        vacuuming       medical FAS
 
1496
81      018034  37      leavings        dentally        bloodbath       FAS
 
1497
82      018035  37      postulation     humanness       subschema       W
 
1498
83      018036  37      squeaking       inch    animals W
 
1499
84      018037  37      contrasted      Weissmuller     Micronesia      
 
1500
85      018038  37      leftover        irresponsibly   repetitions     
 
1501
86      018039  37      whiteners       luckily Antares 
 
1502
87      018040  37      erases  culled  ventilate       W
 
1503
88      018041  37      Punjab  medical pityingly       
 
1504
89      018042  37      Merritt bloodbath       interdependent  
 
1505
90      018043  37      Quixotism       subschema       Graves  FAS
 
1506
91      018044  37      sweetish        animals neonatal        
 
1507
92      018045  37      dogging Micronesia      scribbled       FAS
 
1508
93      018046  37      scornfully      repetitions     chafe   W
 
1509
94      018048  37      bellow  Antares honoring        
 
1510
95      018049  37      bills   ventilate       realtor 
 
1511
96      018050  37      cupboard        pityingly       elite   
 
1512
97      018051  37      sureties        interdependent  funereal        
 
1513
98      018052  37      puddings        Graves  abrogating      
 
1514
99      018053  50      tapestry        neonatal        sorters 
 
1515
100     018054  37      fetters scribbled       Conley  
 
1516
101     018055  37      bivalves        chafe   lectured        
 
1517
102     018056  37      incurring       honoring        Abraham 
 
1518
103     018057  37      Adolph  realtor Hawaii  W
 
1519
104     018058  37      pithed  elite   cage    
 
1520
105     018059  36      emergency       funereal        hushes  
 
1521
106     018060  37      Miles   abrogating      Simla   
 
1522
107     018061  37      trimmings       sorters reporters       
 
1523
108     018101  37      tragedies       Conley  Dutchman        FAS
 
1524
109     018102  37      skulking        lectured        descendants     FAS
 
1525
110     018103  37      flint   Abraham groupings       FAS
 
1526
111     018104  37      flopping        Hawaii  dissociate      
 
1527
112     018201  37      relaxing        cage    coexist W
 
1528
113     018202  37      offload hushes  Beebe   
 
1529
114     018402  37      suites  Simla   Taoism  
 
1530
115     018403  37      lists   reporters       Connally        
 
1531
116     018404  37      animized        Dutchman        fetched FAS
 
1532
117     018405  37      multilayer      descendants     checkpoints     FAS
 
1533
118     018406  37      standardizes    groupings       rusting 
 
1534
119     018409  37      Judas   dissociate      galling 
 
1535
120     018601  37      vacuuming       coexist obliterates     
 
1536
121     018602  37      dentally        Beebe   traitor 
 
1537
122     018603  37      humanness       Taoism  resumes FAS
 
1538
123     018801  37      inch    Connally        analyzable      FAS
 
1539
124     018802  37      Weissmuller     fetched terminator      FAS
 
1540
125     018803  37      irresponsibly   checkpoints     gritty  FAS
 
1541
126     018804  37      luckily rusting firearm W
 
1542
127     018805  37      culled  galling minima  
 
1543
128     018806  37      medical obliterates     Selfridge       
 
1544
129     018807  37      bloodbath       traitor disable 
 
1545
130     018808  37      subschema       resumes witchcraft      W
 
1546
131     018809  37      animals analyzable      betroth W
 
1547
132     018810  37      Micronesia      terminator      Manhattanize    
 
1548
133     018811  37      repetitions     gritty  imprint 
 
1549
134     018812  37      Antares firearm peeked  
 
1550
135     019101  37      ventilate       minima  swelling        
 
1551
136     019102  37      pityingly       Selfridge       interrelationships      W
 
1552
137     019103  37      interdependent  disable riser   
 
1553
138     019201  37      Graves  witchcraft      Gandhian        W
 
1554
139     030501  37      neonatal        betroth peacock A
 
1555
140     030502  50      scribbled       Manhattanize    bee     A
 
1556
141     030503  37      chafe   imprint kanji   
 
1557
142     030504  37      honoring        peeked  dental  
 
1558
143     031901  37      realtor swelling        scarf   FAS
 
1559
144     036001  37      elite   interrelationships      chasm   A
 
1560
145     036002  37      funereal        riser   insolence       A
 
1561
146     036004  37      abrogating      Gandhian        syndicate       
 
1562
147     036005  37      sorters peacock alike   
 
1563
148     038001  37      Conley  bee     imperial        A
 
1564
149     038002  37      lectured        kanji   convulsion      A
 
1565
150     038003  37      Abraham dental  railway A
 
1566
151     038004  37      Hawaii  scarf   validate        A
 
1567
152     038005  37      cage    chasm   normalizes      A
 
1568
153     038006  37      hushes  insolence       comprehensive   
 
1569
154     038007  37      Simla   syndicate       chewing 
 
1570
155     038008  37      reporters       alike   denizen 
 
1571
156     038009  37      Dutchman        imperial        schemer 
 
1572
157     038010  37      descendants     convulsion      chronicle       
 
1573
158     038011  37      groupings       railway Kline   
 
1574
159     038012  37      dissociate      validate        Anatole 
 
1575
160     038013  37      coexist normalizes      partridges      
 
1576
161     038014  37      Beebe   comprehensive   brunch  
 
1577
162     038015  37      Taoism  chewing recruited       
 
1578
163     038016  37      Connally        denizen dimensions      W
 
1579
164     038017  37      fetched schemer Chicana W
 
1580
165     038018  37      checkpoints     chronicle       announced       
 
1581
166     038101  37      rusting Kline   praised FAS
 
1582
167     038102  37      galling Anatole employing       
 
1583
168     038103  37      obliterates     partridges      linear  
 
1584
169     038104  37      traitor brunch  quagmire        
 
1585
170     038201  37      resumes recruited       western A
 
1586
171     038202  37      analyzable      dimensions      relishing       
 
1587
172     038203  37      terminator      Chicana serving A
 
1588
173     038204  37      gritty  announced       scheduling      
 
1589
174     038205  37      firearm praised lore    
 
1590
175     038206  37      minima  employing       eventful        
 
1591
176     038208  37      Selfridge       linear  arteriole       A
 
1592
177     042801  37      disable quagmire        disentangle     
 
1593
178     042802  37      witchcraft      western cured   A
 
1594
179     046101  37      betroth relishing       Fenton  W
 
1595
180     048001  37      Manhattanize    serving avoidable       A
 
1596
181     048002  37      imprint scheduling      drains  A
 
1597
182     048003  37      peeked  lore    detectably      FAS
 
1598
183     048004  37      swelling        eventful        husky   
 
1599
184     048005  37      interrelationships      arteriole       impelling       
 
1600
185     048006  37      riser   disentangle     undoes  
 
1601
186     048007  37      Gandhian        cured   evened  
 
1602
187     048008  37      peacock Fenton  squeezes        
 
1603
188     048101  37      bee     avoidable       destroyer       FAS
 
1604
189     048102  37      kanji   drains  rudeness        
 
1605
190     048201  37      dental  detectably      beaner  FAS
 
1606
191     048202  37      scarf   husky   boorish 
 
1607
192     048203  37      chasm   impelling       Everhart        
 
1608
193     048204  37      insolence       undoes  encompass       A
 
1609
194     048205  37      syndicate       evened  mushrooms       
 
1610
195     048301  37      alike   squeezes        Alison  A
 
1611
196     048302  37      imperial        destroyer       externally      FAS
 
1612
197     048303  37      convulsion      rudeness        pellagra        
 
1613
198     048304  37      railway beaner  cult    
 
1614
199     048305  37      validate        boorish creek   A
 
1615
200     048401  37      normalizes      Everhart        Huffman 
 
1616
201     048402  37      comprehensive   encompass       Majorca FAS
 
1617
202     048403  37      chewing mushrooms       governing       A
 
1618
203     048404  37      denizen Alison  gadfly  FAS
 
1619
204     048405  37      schemer externally      reassigned      FAS
 
1620
205     048406  37      chronicle       pellagra        intentness      W
 
1621
206     048407  37      Kline   cult    craziness       
 
1622
207     048408  37      Anatole creek   psychic 
 
1623
208     048409  37      partridges      Huffman squabbled       
 
1624
209     048410  37      brunch  Majorca burlesque       
 
1625
210     048411  37      recruited       governing       capped  
 
1626
211     048412  37      dimensions      gadfly  extracted       A
 
1627
212     048413  37      Chicana reassigned      DiMaggio        
 
1628
213     048601  37      announced       intentness      exclamation     FAS
 
1629
214     048602  37      praised craziness       subdirectory    
 
1630
215     048603  37      employing       psychic fangs   
 
1631
216     048604  37      linear  squabbled       buyer   A
 
1632
217     048801  37      quagmire        burlesque       pithing A
 
1633
218     050901  37      western capped  transistorizing A
 
1634
219     051201  37      relishing       extracted       nonbiodegradable        
 
1635
220     056002  37      serving DiMaggio        dislocate       
 
1636
221     056003  37      scheduling      exclamation     monochromatic   FAS
 
1637
222     056004  37      lore    subdirectory    batting 
 
1638
223     056102  37      eventful        fangs   postcondition   A
 
1639
224     056203  37      arteriole       buyer   catalog FAS
 
1640
225     056204  37      disentangle     pithing Remus   
 
1641
226     058003  37      cured   transistorizing devices A
 
1642
227     058004  37      Fenton  nonbiodegradable        bike    A
 
1643
228     058005  37      avoidable       dislocate       qualify 
 
1644
229     058006  37      drains  monochromatic   detained        
 
1645
230     058007  37      detectably      batting commended       
 
1646
231     058101  37      husky   postcondition   civilize        
 
1647
232     058102  37      impelling       catalog Elmhurst        
 
1648
233     058103  37      undoes  Remus   anesthetizing   
 
1649
234     058105  37      evened  devices deaf    
 
1650
235     058111  37      squeezes        bike    Brigham 
 
1651
236     058112  37      destroyer       qualify title   
 
1652
237     058113  37      rudeness        detained        coarse  
 
1653
238     058114  37      beaner  commended       combinations    
 
1654
239     058115  37      boorish civilize        grayness        
 
1655
240     058116  37      Everhart        Elmhurst        innumerable     FAS
 
1656
241     058117  37      encompass       anesthetizing   Caroline        A
 
1657
242     058118  37      mushrooms       deaf    fatty   FAS
 
1658
243     058119  37      Alison  Brigham eastbound       
 
1659
244     058120  37      externally      title   inexperienced   
 
1660
245     058121  37      pellagra        coarse  hoarder A
 
1661
246     058122  37      cult    combinations    scotch  W
 
1662
247     058123  37      creek   grayness        passport        A
 
1663
248     058124  37      Huffman innumerable     strategic       FAS
 
1664
249     058125  37      Majorca Caroline        gated   
 
1665
250     058126  37      governing       fatty   flog    
 
1666
251     058127  37      gadfly  eastbound       Pipestone       
 
1667
252     058128  37      reassigned      inexperienced   Dar     
 
1668
253     058201  37      intentness      hoarder Corcoran        
 
1669
254     058202  37      craziness       scotch  flyers  A
 
1670
255     058303  37      psychic passport        competitions    W
 
1671
256     058304  37      squabbled       strategic       suppliers       FAS
 
1672
257     058602  37      burlesque       gated   skips   
 
1673
258     058603  37      capped  flog    institutes      
 
1674
259     058604  37      extracted       Pipestone       troop   A
 
1675
260     058605  37      DiMaggio        Dar     connective      W
 
1676
261     058606  37      exclamation     Corcoran        denies  
 
1677
262     058607  37      subdirectory    flyers  polka   
 
1678
263     060401  36      fangs   competitions    observations    FAS
 
1679
264     061701  36      buyer   suppliers       askers  
 
1680
265     066201  36      pithing skips   homeless        FAS
 
1681
266     066501  36      transistorizing institutes      Anna    
 
1682
267     068001  36      nonbiodegradable        troop   subdirectories  W
 
1683
268     068002  36      dislocate       connective      decaying        FAS
 
1684
269     068005  36      monochromatic   denies  outwitting      W
 
1685
270     068006  36      batting polka   Harpy   W
 
1686
271     068007  36      postcondition   observations    crazed  
 
1687
272     068008  36      catalog askers  suffocate       
 
1688
273     068009  36      Remus   homeless        provers FAS
 
1689
274     068010  36      devices Anna    technically     
 
1690
275     068011  36      bike    subdirectories  Franklinizations        
 
1691
276     068202  36      qualify decaying        considered      
 
1692
277     068302  36      detained        outwitting      tinnily 
 
1693
278     068303  36      commended       Harpy   uninterruptedly 
 
1694
279     068401  36      civilize        crazed  whistled        A
 
1695
280     068501  36      Elmhurst        suffocate       automate        
 
1696
281     068502  36      anesthetizing   provers gutting W
 
1697
282     068503  36      deaf    technically     surreptitious   
 
1698
283     068602  36      Brigham Franklinizations        Choctaw 
 
1699
284     068603  36      title   considered      cooks   
 
1700
285     068701  36      coarse  tinnily millivolt       FAS
 
1701
286     068702  36      combinations    uninterruptedly counterpoise    
 
1702
287     068703  36      grayness        whistled        Gothicism       
 
1703
288     076001  36      innumerable     automate        feminine        
 
1704
289     076002  36      Caroline        gutting metaphysically  W
 
1705
290     076101  36      fatty   surreptitious   sanding A
 
1706
291     076102  36      eastbound       Choctaw contributorily  
 
1707
292     076103  36      inexperienced   cooks   receivers       FAS
 
1708
293     076302  36      hoarder millivolt       adjourn 
 
1709
294     076303  36      scotch  counterpoise    straggled       A
 
1710
295     076304  36      passport        Gothicism       druggists       
 
1711
296     076305  36      strategic       feminine        thanking        FAS
 
1712
297     076306  36      gated   metaphysically  ostrich 
 
1713
298     076307  36      flog    sanding hopelessness    FAS
 
1714
299     076402  36      Pipestone       contributorily  Eurydice        
 
1715
300     076501  36      Dar     receivers       excitation      W
 
1716
301     076502  36      Corcoran        adjourn presumes        FAS
 
1717
302     076701  36      flyers  straggled       imaginable      FAS
 
1718
303     078001  36      competitions    druggists       concoct W
 
1719
304     078002  36      suppliers       thanking        peering W
 
1720
305     078003  36      skips   ostrich Phelps  FAS
 
1721
306     078004  36      institutes      hopelessness    ferociousness   FAS
 
1722
307     078005  36      troop   Eurydice        sentences       
 
1723
308     078006  36      connective      excitation      unlocks 
 
1724
309     078007  36      denies  presumes        engrossing      W
 
1725
310     078008  36      polka   imaginable      Ruth    
 
1726
311     078101  36      observations    concoct tying   
 
1727
312     078103  36      askers  peering exclaimers      
 
1728
313     078104  36      homeless        Phelps  synergy 
 
1729
314     078105  36      Anna    ferociousness   Huey    W
 
1730
315     082101  36      subdirectories  sentences       merging 
 
1731
316     083401  36      decaying        unlocks judges  A
 
1732
317     084001  36      outwitting      engrossing      Shylock W
 
1733
318     084002  36      Harpy   Ruth    Miltonism       
 
1734
319     086001  36      crazed  tying   hen     W
 
1735
320     086102  36      suffocate       exclaimers      honeybee        FAS
 
1736
321     086201  36      provers synergy towers  
 
1737
322     088001  36      technically     Huey    dilutes W
 
1738
323     088002  36      Franklinizations        merging numerals        FAS
 
1739
324     088003  36      considered      judges  democracy       FAS
 
1740
325     088004  36      tinnily Shylock Ibero-  
 
1741
326     088101  36      uninterruptedly Miltonism       invalids        
 
1742
327     088102  36      whistled        hen     behavior        
 
1743
328     088103  36      automate        honeybee        accruing        
 
1744
329     088104  36      gutting towers  relics  A
 
1745
330     088105  36      surreptitious   dilutes rackets 
 
1746
331     088106  36      Choctaw numerals        Fischbein       W
 
1747
332     088201  36      cooks   democracy       phony   W
 
1748
333     088203  36      millivolt       Ibero-  cross   FAS
 
1749
334     088204  36      counterpoise    invalids        cleanup 
 
1750
335     088302  37      Gothicism       behavior        conspirator     
 
1751
336     088303  37      feminine        accruing        label   FAS
 
1752
337     088305  37      metaphysically  relics  university      
 
1753
338     088402  37      sanding rackets cleansed        FAS
 
1754
339     088501  36      contributorily  Fischbein       ballgown        
 
1755
340     088502  36      receivers       phony   starlet 
 
1756
341     088503  36      adjourn cross   aqueous 
 
1757
342     098001  58      straggled       cleanup portrayal       A
 
1758
343     098002  58      druggists       conspirator     despising       W
 
1759
344     098003  58      thanking        label   distort W
 
1760
345     098004  58      ostrich university      palmed  
 
1761
346     098005  58      hopelessness    cleansed        faced   
 
1762
347     098006  58      Eurydice        ballgown        silverware      
 
1763
348     141903  29      excitation      starlet assessor        
 
1764
349     098008  58      presumes        aqueous spiders 
 
1765
350     098009  58      imaginable      portrayal       artificially    
 
1766
351     098010  58      concoct despising       reminiscence    
 
1767
352     098011  58      peering distort Mexican 
 
1768
353     098012  58      Phelps  palmed  obnoxious       
 
1769
354     098013  58      ferociousness   faced   fragile 
 
1770
355     098014  58      sentences       silverware      apprehensible   
 
1771
356     098015  58      unlocks assessor        births  
 
1772
357     098016  58      engrossing      spiders garages 
 
1773
358     098017  58      Ruth    artificially    panty   
 
1774
359     098018  58      tying   reminiscence    anteater        
 
1775
360     098019  58      exclaimers      Mexican displacement    A
 
1776
361     098020  58      synergy obnoxious       drovers A
 
1777
362     098021  58      Huey    fragile patenting       A
 
1778
363     098022  58      merging apprehensible   far     A
 
1779
364     098023  58      judges  births  shrieks 
 
1780
365     098024  58      Shylock garages aligning        W
 
1781
366     098025  37      Miltonism       panty   pragmatism      
 
1782
367     106001  36      hen     anteater        fevers  W
 
1783
368     108001  36      honeybee        displacement    reexamines      A
 
1784
369     108002  36      towers  drovers occupancies     
 
1785
370     108003  36      dilutes patenting       sweats  FAS
 
1786
371     108004  36      numerals        far     modulators      
 
1787
372     108005  36      democracy       shrieks demand  W
 
1788
373     108007  36      Ibero-  aligning        Madeira 
 
1789
374     108008  36      invalids        pragmatism      Viennese        W
 
1790
375     108009  36      behavior        fevers  chillier        W
 
1791
376     108010  36      accruing        reexamines      wildcats        FAS
 
1792
377     108011  36      relics  occupancies     gentle  
 
1793
378     108012  36      rackets sweats  Angles  W
 
1794
379     108101  36      Fischbein       modulators      accuracies      
 
1795
380     108102  36      phony   demand  toggle  
 
1796
381     108103  36      cross   Madeira Mendelssohn     W
 
1797
382     108111  50      cleanup Viennese        behaviorally    
 
1798
383     108105  36      conspirator     chillier        Rochford        
 
1799
384     108106  36      label   wildcats        mirror  W
 
1800
385     108107  36      university      gentle  Modula  
 
1801
386     108108  50      cleansed        Angles  clobbering      
 
1802
387     108109  36      ballgown        accuracies      chronography    
 
1803
388     108110  36      starlet toggle  Eskimoizeds     
 
1804
389     108201  36      aqueous Mendelssohn     British W
 
1805
390     108202  36      portrayal       behaviorally    pitfalls        
 
1806
391     108203  36      despising       Rochford        verify  W
 
1807
392     108204  36      distort mirror  scatter FAS
 
1808
393     108205  36      palmed  Modula  Aztecan 
 
1809
394     108301  36      faced   clobbering      acuity  W
 
1810
395     108302  36      silverware      chronography    sinking W
 
1811
396     112101  36      assessor        Eskimoizeds     beasts  FAS
 
1812
397     112102  36      spiders British Witt    W
 
1813
398     113701  36      artificially    pitfalls        physicists      FAS
 
1814
399     116001  36      reminiscence    verify  folksong        A
 
1815
400     116201  36      Mexican scatter strokes FAS
 
1816
401     116301  36      obnoxious       Aztecan crowder 
 
1817
402     116302  36      fragile acuity  merry   
 
1818
403     116601  36      apprehensible   sinking cadenced        
 
1819
404     116602  36      births  beasts  alimony A
 
1820
405     116603  36      garages Witt    principled      A
 
1821
406     116701  36      panty   physicists      golfing 
 
1822
407     116702  36      anteater        folksong        undiscovered    
 
1823
408     118001  36      displacement    strokes irritates       
 
1824
409     118002  36      drovers crowder patriots        A
 
1825
410     118003  36      patenting       merry   rooms   FAS
 
1826
411     118004  36      far     cadenced        towering        W
 
1827
412     118005  36      shrieks alimony displease       
 
1828
413     118006  36      aligning        principled      photosensitive  
 
1829
414     118007  36      pragmatism      golfing inking  
 
1830
415     118008  36      fevers  undiscovered    gainers 
 
1831
416     118101  36      reexamines      irritates       leaning A
 
1832
417     118102  36      occupancies     patriots        hydrant A
 
1833
418     118103  36      sweats  rooms   preserve        
 
1834
419     118202  36      modulators      towering        blinded A
 
1835
420     118203  36      demand  displease       interactions    A
 
1836
421     118204  36      Madeira photosensitive  Barry   
 
1837
422     118302  36      Viennese        inking  whiteness       A
 
1838
423     118304  36      chillier        gainers pastimes        W
 
1839
424     118305  36      wildcats        leaning Edenization     
 
1840
425     118306  36      gentle  hydrant Muscat  
 
1841
426     118307  36      Angles  preserve        assassinated    
 
1842
427     123101  36      accuracies      blinded labeled 
 
1843
428     123102  36      toggle  interactions    glacial A
 
1844
429     123301  36      Mendelssohn     Barry   implied W
 
1845
430     126001  36      behaviorally    whiteness       bibliographies  W
 
1846
431     126002  36      Rochford        pastimes        Buchanan        
 
1847
432     126003  36      mirror  Edenization     forgivably      FAS
 
1848
433     126101  36      Modula  Muscat  innuendo        A
 
1849
434     126301  36      clobbering      assassinated    den     FAS
 
1850
435     126302  36      chronography    labeled submarines      W
 
1851
436     126402  36      Eskimoizeds     glacial mouthful        A
 
1852
437     126601  36      British implied expiring        
 
1853
438     126602  36      pitfalls        bibliographies  unfulfilled     FAS
 
1854
439     126702  36      verify  Buchanan        precession      
 
1855
440     128001  36      scatter forgivably      nullified       
 
1856
441     128002  36      Aztecan innuendo        affects 
 
1857
442     128003  36      acuity  den     Cynthia 
 
1858
443     128004  36      sinking submarines      Chablis A
 
1859
444     128005  36      beasts  mouthful        betterments     FAS
 
1860
445     128007  36      Witt    expiring        advertising     
 
1861
446     128008  36      physicists      unfulfilled     rubies  A
 
1862
447     128009  36      folksong        precession      southwest       FAS
 
1863
448     128010  36      strokes nullified       superstitious   A
 
1864
449     128011  36      crowder affects tabernacle      W
 
1865
450     128012  36      merry   Cynthia silk    A
 
1866
451     128013  36      cadenced        Chablis handsomest      A
 
1867
452     128014  36      alimony betterments     Persian A
 
1868
453     128015  36      principled      advertising     analog  W
 
1869
454     128016  36      golfing rubies  complex W
 
1870
455     128017  36      undiscovered    southwest       Taoist  
 
1871
456     128018  36      irritates       superstitious   suspend 
 
1872
457     128019  36      patriots        tabernacle      relegated       
 
1873
458     128020  36      rooms   silk    awesome W
 
1874
459     128021  36      towering        handsomest      Bruxelles       
 
1875
460     128022  36      displease       Persian imprecisely     A
 
1876
461     128023  36      photosensitive  analog  televise        
 
1877
462     128101  36      inking  complex braking 
 
1878
463     128102  36      gainers Taoist  true    FAS
 
1879
464     128103  36      leaning suspend disappointing   FAS
 
1880
465     128104  36      hydrant relegated       navally W
 
1881
466     128106  36      preserve        awesome circus  
 
1882
467     128107  36      blinded Bruxelles       beetles 
 
1883
468     128108  36      interactions    imprecisely     trumps  
 
1884
469     128202  36      Barry   televise        fourscore       W
 
1885
470     128203  36      whiteness       braking Blackfoots      
 
1886
471     128301  36      pastimes        true    Grady   
 
1887
472     128302  36      Edenization     disappointing   quiets  FAS
 
1888
473     128303  36      Muscat  navally floundered      FAS
 
1889
474     128304  36      assassinated    circus  profundity      W
 
1890
475     128305  36      labeled beetles Garrisonian     W
 
1891
476     128307  36      glacial trumps  Strauss 
 
1892
477     128401  36      implied fourscore       cemented        FAS
 
1893
478     128502  36      bibliographies  Blackfoots      contrition      A
 
1894
479     128503  36      Buchanan        Grady   mutations       
 
1895
480     128504  36      forgivably      quiets  exhibits        W
 
1896
481     128505  36      innuendo        floundered      tits    
 
1897
482     128601  36      den     profundity      mate    A
 
1898
483     128603  36      submarines      Garrisonian     arches  
 
1899
484     128604  36      mouthful        Strauss Moll    
 
1900
485     128702  36      expiring        cemented        ropers  
 
1901
486     128703  36      unfulfilled     contrition      bombast 
 
1902
487     128704  36      precession      mutations       difficultly     A
 
1903
488     138001  36      nullified       exhibits        adsorption      
 
1904
489     138002  36      affects tits    definiteness    FAS
 
1905
490     138003  36      Cynthia mate    cultivation     A
 
1906
491     138004  36      Chablis arches  heals   A
 
1907
492     138005  36      betterments     Moll    Heusen  W
 
1908
493     138006  36      advertising     ropers  target  FAS
 
1909
494     138007  36      rubies  bombast cited   A
 
1910
495     138008  36      southwest       difficultly     congresswoman   W
 
1911
496     138009  36      superstitious   adsorption      Katherine       
 
1912
497     138102  36      tabernacle      definiteness    titter  A
 
1913
498     138103  36      silk    cultivation     aspire  A
 
1914
499     138104  36      handsomest      heals   Mardis  
 
1915
500     138105  36      Persian Heusen  Nadia   W
 
1916
501     138201  36      analog  target  estimating      FAS
 
1917
502     138302  36      complex cited   stuck   A
 
1918
503     138303  36      Taoist  congresswoman   fifteenth       A
 
1919
504     138304  36      suspend Katherine       Colombo 
 
1920
505     138401  29      relegated       titter  survey  A
 
1921
506     140102  29      awesome aspire  staffing        
 
1922
507     140103  29      Bruxelles       Mardis  obtain  
 
1923
508     140104  29      imprecisely     Nadia   loaded  
 
1924
509     140105  29      televise        estimating      slaughtered     
 
1925
510     140201  29      braking stuck   lights  A
 
1926
511     140701  29      true    fifteenth       circumference   
 
1927
512     141501  29      disappointing   Colombo dull    A
 
1928
513     141502  29      navally survey  weekly  A
 
1929
514     141901  29      circus  staffing        wetness 
 
1930
515     141902  29      beetles obtain  visualized      
 
1931
516     142101  29      trumps  loaded  Tannenbaum      
 
1932
517     142102  29      fourscore       slaughtered     moribund        
 
1933
518     142103  29      Blackfoots      lights  demultiplex     
 
1934
519     142701  29      Grady   circumference   lockings        
 
1935
520     143001  29      quiets  dull    thugs   FAS
 
1936
521     143501  29      floundered      weekly  unnerves        
 
1937
522     143502  29      profundity      wetness abut    
 
1938
523     148001  29      Garrisonian     visualized      Chippewa        A
 
1939
524     148002  29      Strauss Tannenbaum      stratifications A
 
1940
525     148003  29      cemented        moribund        signaled        
 
1941
526     148004  29      contrition      demultiplex     Italianizes     A
 
1942
527     148005  29      mutations       lockings        algorithmic     A
 
1943
528     148006  29      exhibits        thugs   paranoid        FAS
 
1944
529     148007  29      tits    unnerves        camping A
 
1945
530     148009  29      mate    abut    signifying      A
 
1946
531     148010  29      arches  Chippewa        Patrice W
 
1947
532     148011  29      Moll    stratifications search  A
 
1948
533     148012  29      ropers  signaled        Angeles A
 
1949
534     148013  29      bombast Italianizes     semblance       
 
1950
535     148023  36      difficultly     algorithmic     taxed   
 
1951
536     148015  29      adsorption      paranoid        Beatrice        
 
1952
537     148016  29      definiteness    camping retrace 
 
1953
538     148017  29      cultivation     signifying      lockout 
 
1954
539     148018  29      heals   Patrice grammatic       
 
1955
540     148019  29      Heusen  search  helmsman        
 
1956
541     148020  29      target  Angeles uniform W
 
1957
542     148021  29      cited   semblance       hamming 
 
1958
543     148022  29      congresswoman   taxed   disobedience    
 
1959
544     148101  29      Katherine       Beatrice        captivated      A
 
1960
545     148102  29      titter  retrace transferals     A
 
1961
546     148201  29      aspire  lockout cartographer    A
 
1962
547     148401  29      Mardis  grammatic       aims    FAS
 
1963
548     148402  29      Nadia   helmsman        Pakistani       
 
1964
549     148501  29      estimating      uniform burglarized     FAS
 
1965
550     148502  29      stuck   hamming saucepans       A
 
1966
551     148503  29      fifteenth       disobedience    lacerating      A
 
1967
552     148504  29      Colombo captivated      corny   
 
1968
553     148601  29      survey  transferals     megabytes       FAS
 
1969
554     148602  29      staffing        cartographer    chancellor      
 
1970
555     150701  29      obtain  aims    bulk    A
 
1971
556     152101  29      loaded  Pakistani       commits A
 
1972
557     152102  29      slaughtered     burglarized     meson   W
 
1973
558     155202  36      lights  saucepans       deputies        
 
1974
559     155203  29      circumference   lacerating      northeaster     A
 
1975
560     155204  29      dull    corny   dipole  
 
1976
561     155205  29      weekly  megabytes       machining       0
 
1977
562     156001  29      wetness chancellor      therefore       
 
1978
563     156002  29      visualized      bulk    Telefunken      
 
1979
564     156102  29      Tannenbaum      commits salvaging       
 
1980
565     156301  29      moribund        meson   Corinthianizes  A
 
1981
566     156302  29      demultiplex     deputies        restlessly      A
 
1982
567     156303  29      lockings        northeaster     bromides        
 
1983
568     156304  29      thugs   dipole  generalized     A
 
1984
569     156305  29      unnerves        machining       mishaps 
 
1985
570     156306  29      abut    therefore       quelling        
 
1986
571     156501  29      Chippewa        Telefunken      spiritual       A
 
1987
572     158001  29      stratifications salvaging       beguiles        FAS
 
1988
573     158002  29      signaled        Corinthianizes  Trobriand       FAS
 
1989
574     158101  29      Italianizes     restlessly      fleeing A
 
1990
575     158102  29      algorithmic     bromides        Armour  A
 
1991
576     158103  29      paranoid        generalized     chin    A
 
1992
577     158201  29      camping mishaps provers A
 
1993
578     158202  29      signifying      quelling        aeronautic      A
 
1994
579     158203  29      Patrice spiritual       voltage W
 
1995
580     158204  29      search  beguiles        sash    
 
1996
581     158301  29      Angeles Trobriand       anaerobic       A
 
1997
582     158302  29      semblance       fleeing simultaneous    A
 
1998
583     158303  29      taxed   Armour  accumulating    A
 
1999
584     158304  29      Beatrice        chin    Medusan A
 
2000
585     158305  29      retrace provers shouted A
 
2001
586     158306  29      lockout aeronautic      freakish        
 
2002
587     158501  29      grammatic       voltage index   FAS
 
2003
588     160301  29      helmsman        sash    commercially    
 
2004
589     166101  50      uniform anaerobic       mistiness       A
 
2005
590     166102  50      hamming simultaneous    endpoint        
 
2006
591     168001  29      disobedience    accumulating    straight        A
 
2007
592     168002  29      captivated      Medusan flurried        
 
2008
593     168003  29      transferals     shouted denotative      A
 
2009
594     168101  29      cartographer    freakish        coming  FAS
 
2010
595     168102  29      aims    index   commencements   FAS
 
2011
596     168103  29      Pakistani       commercially    gentleman       
 
2012
597     168104  29      burglarized     mistiness       gifted  
 
2013
598     168202  29      saucepans       endpoint        Shanghais       
 
2014
599     168301  29      lacerating      straight        sportswriting   A
 
2015
600     168502  29      corny   flurried        sloping A
 
2016
601     168503  29      megabytes       denotative      navies  
 
2017
602     168601  29      chancellor      coming  leaflet A
 
2018
603     173001  40      bulk    commencements   shooter 
 
2019
604     173701  40      commits gentleman       Joplin  FAS
 
2020
605     173702  40      meson   gifted  babies  
 
2021
606     176001  40      deputies        Shanghais       subdivision     FAS
 
2022
607     176101  40      northeaster     sportswriting   burstiness      W
 
2023
608     176201  40      dipole  sloping belted  FAS
 
2024
609     176401  40      machining       navies  assails FAS
 
2025
610     176501  40      therefore       leaflet admiring        W
 
2026
611     176601  40      Telefunken      shooter swaying 0
 
2027
612     176602  40      salvaging       Joplin  Goldstine       FAS
 
2028
613     176603  40      Corinthianizes  babies  fitting 
 
2029
614     178001  40      restlessly      subdivision     Norwalk W
 
2030
615     178002  40      bromides        burstiness      weakening       W
 
2031
616     178003  40      generalized     belted  analogy FAS
 
2032
617     178004  40      mishaps assails deludes 
 
2033
618     178005  40      quelling        admiring        cokes   
 
2034
619     178006  40      spiritual       swaying Clayton 
 
2035
620     178007  40      beguiles        Goldstine       exhausts        
 
2036
621     178008  40      Trobriand       fitting causality       
 
2037
622     178101  40      fleeing Norwalk sating  FAS
 
2038
623     178102  40      Armour  weakening       icon    
 
2039
624     178103  40      chin    analogy throttles       
 
2040
625     178201  40      provers deludes communicants    FAS
 
2041
626     178202  40      aeronautic      cokes   dehydrate       FAS
 
2042
627     178301  40      voltage Clayton priceless       FAS
 
2043
628     178302  40      sash    exhausts        publicly        
 
2044
629     178401  40      anaerobic       causality       incidentals     FAS
 
2045
630     178402  40      simultaneous    sating  commonplace     
 
2046
631     178403  40      accumulating    icon    mumbles 
 
2047
632     178404  40      Medusan throttles       furthermore     W
 
2048
633     178501  40      shouted communicants    cautioned       W
 
2049
634     186002  37      freakish        dehydrate       parametrized    A
 
2050
635     186102  37      index   priceless       registration    A
 
2051
636     186201  40      commercially    publicly        sadly   FAS
 
2052
637     186202  40      mistiness       incidentals     positioning     
 
2053
638     186203  40      endpoint        commonplace     babysitting     
 
2054
639     186302  37      straight        mumbles eternal A
 
2055
640     188007  37      flurried        furthermore     hoarder 
 
2056
641     188008  37      denotative      cautioned       congregates     
 
2057
642     188009  37      coming  parametrized    rains   
 
2058
643     188010  37      commencements   registration    workers W
 
2059
644     188011  37      gentleman       sadly   sags    A
 
2060
645     188012  37      gifted  positioning     unplug  W
 
2061
646     188013  37      Shanghais       babysitting     garage  A
 
2062
647     188014  37      sportswriting   eternal boulder A
 
2063
648     188015  37      sloping hoarder hollowly        A
 
2064
649     188016  37      navies  congregates     specifics       
 
2065
650     188017  37      leaflet rains   Teresa  
 
2066
651     188102  37      shooter workers Winsett 
 
2067
652     188103  37      Joplin  sags    convenient      A
 
2068
653     188202  37      babies  unplug  buckboards      FAS
 
2069
654     188301  40      subdivision     garage  amenities       
 
2070
655     188302  40      burstiness      boulder resplendent     FAS
 
2071
656     188303  40      belted  hollowly        priding FAS
 
2072
657     188401  37      assails specifics       configurations  
 
2073
658     188402  37      admiring        Teresa  untidiness      A
 
2074
659     188503  37      swaying Winsett Brice   W
 
2075
660     188504  37      Goldstine       convenient      sews    FAS
 
2076
661     188505  37      fitting buckboards      participated    
 
2077
662     190701  37      Norwalk amenities       Simon   FAS
 
2078
663     190703  50      weakening       resplendent     certificates    
 
2079
664     191701  37      analogy priding Fitzpatrick     
 
2080
665     191702  37      deludes configurations  Evanston        A
 
2081
666     191703  37      cokes   untidiness      misted  
 
2082
667     196001  37      Clayton Brice   textures        A
 
2083
668     196002  37      exhausts        sews    save    
 
2084
669     196003  37      causality       participated    count   
 
2085
670     196101  37      sating  Simon   rightful        A
 
2086
671     196103  37      icon    certificates    chaperone       
 
2087
672     196104  37      throttles       Fitzpatrick     Lizzy   A
 
2088
673     196201  37      communicants    Evanston        clenched        A
 
2089
674     196202  37      dehydrate       misted  effortlessly    
 
2090
675     196203  37      priceless       textures        accessed        
 
2091
676     198001  37      publicly        save    beaters A
 
2092
677     198003  37      incidentals     count   Hornblower      FAS
 
2093
678     198004  37      commonplace     rightful        vests   A
 
2094
679     198005  37      mumbles chaperone       indulgences     FAS
 
2095
680     198006  37      furthermore     Lizzy   infallibly      A
 
2096
681     198007  37      cautioned       clenched        unwilling       FAS
 
2097
682     198008  37      parametrized    effortlessly    excrete FAS
 
2098
683     198009  37      registration    accessed        spools  A
 
2099
684     198010  37      sadly   beaters crunches        FAS
 
2100
685     198011  37      positioning     Hornblower      overestimating  FAS
 
2101
686     198012  37      babysitting     vests   ineffective     
 
2102
687     198013  37      eternal indulgences     humiliation     A
 
2103
688     198014  37      hoarder infallibly      sophomore       
 
2104
689     198015  37      congregates     unwilling       star    
 
2105
690     198017  37      rains   excrete rifles  
 
2106
691     198018  37      workers spools  dialysis        
 
2107
692     198019  37      sags    crunches        arriving        
 
2108
693     198020  37      unplug  overestimating  indulge 
 
2109
694     198021  37      garage  ineffective     clockers        
 
2110
695     198022  37      boulder humiliation     languages       
 
2111
696     198023  50      hollowly        sophomore       Antarctica      A
 
2112
697     198024  37      specifics       star    percentage      
 
2113
698     198101  37      Teresa  rifles  ceiling A
 
2114
699     198103  37      Winsett dialysis        specification   
 
2115
700     198105  37      convenient      arriving        regimented      A
 
2116
701     198106  37      buckboards      indulge ciphers 
 
2117
702     198201  37      amenities       clockers        pictures        A
 
2118
703     198204  37      resplendent     languages       serpents        A
 
2119
704     198301  53      priding Antarctica      allot   A
 
2120
705     198302  53      configurations  percentage      realized        A
 
2121
706     198303  53      untidiness      ceiling mayoral A
 
2122
707     198304  53      Brice   specification   opaquely        A
 
2123
708     198401  37      sews    regimented      hostess FAS
 
2124
709     198402  37      participated    ciphers fiftieth        
 
2125
710     198403  37      Simon   pictures        incorrectly     
 
2126
711     202101  37      certificates    serpents        decomposition   FAS
 
2127
712     202301  37      Fitzpatrick     allot   stranglings     
 
2128
713     202302  37      Evanston        realized        mixture FAS
 
2129
714     202303  37      misted  mayoral electroencephalography  FAS
 
2130
715     202304  37      textures        opaquely        similarities    FAS
 
2131
716     202305  37      save    hostess charges W
 
2132
717     202601  37      count   fiftieth        freest  FAS
 
2133
718     202602  37      rightful        incorrectly     Greenberg       FAS
 
2134
719     202605  37      chaperone       decomposition   tinting 
 
2135
720     202606  37      Lizzy   stranglings     expelled        W
 
2136
721     202607  37      clenched        mixture warm    
 
2137
722     202901  37      effortlessly    electroencephalography  smoothed        
 
2138
723     202902  37      accessed        similarities    deductions      FAS
 
2139
724     202903  37      beaters charges Romano  W
 
2140
725     202904  37      Hornblower      freest  bitterroot      
 
2141
726     202907  37      vests   Greenberg       corset  
 
2142
727     202908  37      indulgences     tinting securing        
 
2143
728     203101  37      infallibly      expelled        environing      FAS
 
2144
729     203103  37      unwilling       warm    cute    
 
2145
730     203104  37      excrete smoothed        Crays   
 
2146
731     203105  37      spools  deductions      heiress FAS
 
2147
732     203401  37      crunches        Romano  inform  FAS
 
2148
733     203402  37      overestimating  bitterroot      avenge  
 
2149
734     203404  37      ineffective     corset  universals      
 
2150
735     203901  37      humiliation     securing        Kinsey  W
 
2151
736     203902  37      sophomore       environing      ravines FAS
 
2152
737     203903  37      star    cute    bestseller      
 
2153
738     203906  37      rifles  Crays   equilibrium     
 
2154
739     203907  37      dialysis        heiress extents 0
 
2155
740     203908  37      arriving        inform  relatively      
 
2156
741     203909  37      indulge avenge  pressure        FAS
 
2157
742     206101  37      clockers        universals      critiques       FAS
 
2158
743     206201  37      languages       Kinsey  befouled        
 
2159
744     206202  37      Antarctica      ravines rightfully      FAS
 
2160
745     206203  37      percentage      bestseller      mechanizing     FAS
 
2161
746     206206  37      ceiling equilibrium     Latinizes       
 
2162
747     206207  37      specification   extents timesharing     
 
2163
748     206208  37      regimented      relatively      Aden    
 
2164
749     208001  37      ciphers pressure        embassies       
 
2165
750     208002  37      pictures        critiques       males   FAS
 
2166
751     208003  37      serpents        befouled        shapelessly     FAS
 
2167
752     208004  37      allot   rightfully      genres  FAS
 
2168
753     208008  37      realized        mechanizing     mastering       
 
2169
754     208009  37      mayoral Latinizes       Newtonian       
 
2170
755     208010  37      opaquely        timesharing     finishers       FAS
 
2171
756     208011  37      hostess Aden    abates  
 
2172
757     208101  37      fiftieth        embassies       teem    
 
2173
758     208102  37      incorrectly     males   kiting  FAS
 
2174
759     208103  37      decomposition   shapelessly     stodgy  FAS
 
2175
760     208104  37      stranglings     genres  scalps  FAS
 
2176
761     208105  37      mixture mastering       feed    FAS
 
2177
762     208110  37      electroencephalography  Newtonian       guitars 
 
2178
763     208111  37      similarities    finishers       airships        
 
2179
764     208112  37      charges abates  store   
 
2180
765     208113  37      freest  teem    denounces       
 
2181
766     208201  37      Greenberg       kiting  Pyle    FAS
 
2182
767     208203  37      tinting stodgy  Saxony  
 
2183
768     208301  37      expelled        scalps  serializations  FAS
 
2184
769     208302  37      warm    feed    Peruvian        FAS
 
2185
770     208305  37      smoothed        guitars taxonomically   FAS
 
2186
771     208401  37      deductions      airships        kingdom A
 
2187
772     208402  37      Romano  store   stint   A
 
2188
773     208403  37      bitterroot      denounces       Sault   A
 
2189
774     208404  37      corset  Pyle    faithful        
 
2190
775     208501  37      securing        Saxony  Ganymede        FAS
 
2191
776     208502  37      environing      serializations  tidiness        FAS
 
2192
777     208503  37      cute    Peruvian        gainful FAS
 
2193
778     208504  37      Crays   taxonomically   contrary        FAS
 
2194
779     208505  37      heiress kingdom Tipperary       FAS
 
2195
780     210101  37      inform  stint   tropics W
 
2196
781     210102  37      avenge  Sault   theorizers      
 
2197
782     210103  37      universals      faithful        renew   0
 
2198
783     210104  37      Kinsey  Ganymede        already 
 
2199
784     210105  37      ravines tidiness        terminal        
 
2200
785     210106  37      bestseller      gainful Hegelian        
 
2201
786     210107  37      equilibrium     contrary        hypothesizer    
 
2202
787     210401  37      extents Tipperary       warningly       FAS
 
2203
788     213201  37      relatively      tropics journalizing    FAS
 
2204
789     213203  37      pressure        theorizers      nested  
 
2205
790     213204  37      critiques       renew   Lars    
 
2206
791     213205  37      befouled        already saplings        
 
2207
792     213206  37      rightfully      terminal        foothill        
 
2208
793     213207  37      mechanizing     Hegelian        labeled 
 
2209
794     216101  37      Latinizes       hypothesizer    imperiously     FAS
 
2210
795     216103  37      timesharing     warningly       reporters       FAS
 
2211
796     218001  37      Aden    journalizing    furnishings     FAS
 
2212
797     218002  37      embassies       nested  precipitable    FAS
 
2213
798     218003  37      males   Lars    discounts       FAS
 
2214
799     218004  37      shapelessly     saplings        excises FAS
 
2215
800     143503  50      genres  foothill        Stalin  
 
2216
801     218006  37      mastering       labeled despot  FAS
 
2217
802     218007  37      Newtonian       imperiously     ripeness        FAS
 
2218
803     218008  37      finishers       reporters       Arabia  
 
2219
804     218009  37      abates  furnishings     unruly  
 
2220
805     218010  37      teem    precipitable    mournfulness    
 
2221
806     218011  37      kiting  discounts       boom    FAS
 
2222
807     218020  37      stodgy  excises slaughter       A
 
2223
808     218021  50      scalps  Stalin  Sabine  
 
2224
809     218022  37      feed    despot  handy   FAS
 
2225
810     218023  37      guitars ripeness        rural   
 
2226
811     218024  37      airships        Arabia  organizer       
 
2227
812     218101  37      store   unruly  shipyard        FAS
 
2228
813     218102  37      denounces       mournfulness    civics  FAS
 
2229
814     218103  37      Pyle    boom    inaccuracy      FAS
 
2230
815     218201  37      Saxony  slaughter       rules   FAS
 
2231
816     218202  37      serializations  Sabine  juveniles       FAS
 
2232
817     218203  37      Peruvian        handy   comprised       W
 
2233
818     218204  37      taxonomically   rural   investigations  
 
2234
819     218205  37      kingdom organizer       stabilizes      A
 
2235
820     218301  37      stint   shipyard        seminaries      FAS
 
2236
821     218302  37      Sault   civics  Hunter  A
 
2237
822     218401  37      faithful        inaccuracy      sporty  FAS
 
2238
823     218402  37      Ganymede        rules   test    FAS
 
2239
824     218403  37      tidiness        juveniles       weasels 
 
2240
825     218404  37      gainful comprised       CERN    
 
2241
826     218407  37      contrary        investigations  tempering       
 
2242
827     218408  37      Tipperary       stabilizes      afore   FAS
 
2243
828     218409  37      tropics seminaries      Galatean        
 
2244
829     218410  37      theorizers      Hunter  techniques      W
 
2245
830     226001  37      renew   sporty  error   
 
2246
831     226002  37      already test    veranda 
 
2247
832     226003  37      terminal        weasels severely        
 
2248
833     226004  37      Hegelian        CERN    Cassites        FAS
 
2249
834     226005  37      hypothesizer    tempering       forthcoming     
 
2250
835     226006  37      warningly       afore   guides  
 
2251
836     226007  37      journalizing    Galatean        vanish  FAS
 
2252
837     226008  37      nested  techniques      lied    A
 
2253
838     226203  37      Lars    error   sawtooth        FAS
 
2254
839     226204  37      saplings        veranda fated   FAS
 
2255
840     226205  37      foothill        severely        gradually       
 
2256
841     226206  37      labeled Cassites        widens  
 
2257
842     226207  37      imperiously     forthcoming     preclude        
 
2258
843     226208  37      reporters       guides  Jobrel  
 
2259
844     226209  37      furnishings     vanish  hooker  
 
2260
845     226210  37      precipitable    lied    rainstorm       
 
2261
846     226211  37      discounts       sawtooth        disconnects     
 
2262
847     228001  37      excises fated   cruelty 
 
2263
848     228004  37      Stalin  gradually       exponentials    A
 
2264
849     228005  37      despot  widens  affective       A
 
2265
850     228006  37      ripeness        preclude        arteries        
 
2266
851     228007  37      Arabia  Jobrel  Crosby  FAS
 
2267
852     228008  37      unruly  hooker  acquaint        
 
2268
853     228009  37      mournfulness    rainstorm       evenhandedly    
 
2269
854     228101  37      boom    disconnects     percentage      
 
2270
855     228108  37      slaughter       cruelty disobedience    
 
2271
856     228109  37      Sabine  exponentials    humility        
 
2272
857     228110  37      handy   affective       gleaning        A
 
2273
858     228111  37      rural   arteries        petted  A
 
2274
859     228112  37      organizer       Crosby  bloater A
 
2275
860     228113  37      shipyard        acquaint        minion  A
 
2276
861     228114  37      civics  evenhandedly    marginal        A
 
2277
862     228115  37      inaccuracy      percentage      apiary  A
 
2278
863     228116  37      rules   disobedience    measures        
 
2279
864     228117  37      juveniles       humility        precaution      
 
2280
865     228118  37      comprised       gleaning        repelled        
 
2281
866     228119  37      investigations  petted  primary FAS
 
2282
867     228120  37      stabilizes      bloater coverings       
 
2283
868     228121  37      seminaries      minion  Artemia A
 
2284
869     228122  37      Hunter  marginal        navigate        
 
2285
870     228201  37      sporty  apiary  spatial 
 
2286
871     228206  37      test    measures        Gurkha  
 
2287
872     228207  37      weasels precaution      meanwhile       A
 
2288
873     228208  37      CERN    repelled        Melinda A
 
2289
874     228209  37      tempering       primary Butterfield     
 
2290
875     228210  37      afore   coverings       Aldrich A
 
2291
876     228211  37      Galatean        Artemia previewing      A
 
2292
877     228212  37      techniques      navigate        glut    A
 
2293
878     228213  37      error   spatial unaffected      
 
2294
879     228214  37      veranda Gurkha  inmate  
 
2295
880     228301  37      severely        meanwhile       mineral 
 
2296
881     228305  37      Cassites        Melinda impending       A
 
2297
882     228306  37      forthcoming     Butterfield     meditation      A
 
2298
883     228307  37      guides  Aldrich ideas   
 
2299
884     228308  37      vanish  previewing      miniaturizes    W
 
2300
885     228309  37      lied    glut    lewdly  
 
2301
886     228310  37      sawtooth        unaffected      title   
 
2302
887     228311  37      fated   inmate  youthfulness    
 
2303
888     228312  37      gradually       mineral creak   FAS
 
2304
889     228313  37      widens  impending       Chippewa        
 
2305
890     228314  37      preclude        meditation      clamored        
 
2306
891     228401  65      Jobrel  ideas   freezes 
 
2307
892     228402  65      hooker  miniaturizes    forgivably      FAS
 
2308
893     228403  65      rainstorm       lewdly  reduce  FAS
 
2309
894     228404  65      disconnects     title   McGovern        W
 
2310
895     228405  65      cruelty youthfulness    Nazis   W
 
2311
896     228406  65      exponentials    creak   epistle W
 
2312
897     228407  65      affective       Chippewa        socializes      W
 
2313
898     228408  65      arteries        clamored        conceptions     
 
2314
899     228409  65      Crosby  freezes Kevin   
 
2315
900     228410  65      acquaint        forgivably      uncovering      
 
2316
901     230301  37      evenhandedly    reduce  chews   FAS
 
2317
902     230302  37      percentage      McGovern        appendixes      FAS
 
2318
903     230303  37      disobedience    Nazis   raining 
 
2319
904     018062  37      humility        epistle infest  
 
2320
905     230501  37      gleaning        socializes      compartment     
 
2321
906     230502  37      petted  conceptions     minting 
 
2322
907     230503  37      bloater Kevin   ducks   
 
2323
908     230504  37      minion  uncovering      roped   A
 
2324
909     230505  37      marginal        chews   waltz   
 
2325
910     230506  37      apiary  appendixes      Lillian 
 
2326
911     230507  37      measures        raining repressions     A
 
2327
912     230508  37      precaution      infest  chillingly      
 
2328
913     230509  37      repelled        compartment     noncritical     
 
2329
914     230901  37      primary minting lithograph      
 
2330
915     230902  37      coverings       ducks   spongers        
 
2331
916     230903  37      Artemia roped   parenthood      
 
2332
917     230904  37      navigate        waltz   posed   
 
2333
918     230905  37      spatial Lillian instruments     
 
2334
919     230906  37      Gurkha  repressions     filial  
 
2335
920     230907  37      meanwhile       chillingly      fixedly 
 
2336
921     230908  37      Melinda noncritical     relives 
 
2337
922     230909  37      Butterfield     lithograph      Pandora 
 
2338
923     230910  37      Aldrich spongers        watering        A
 
2339
924     230911  37      previewing      parenthood      ungrateful      
 
2340
925     230912  37      glut    posed   secures 
 
2341
926     230913  37      unaffected      instruments     chastisers      
 
2342
927     230914  37      inmate  filial  icon    
 
2343
928     231304  37      mineral fixedly reuniting       A
 
2344
929     231305  37      impending       relives imagining       A
 
2345
930     231306  37      meditation      Pandora abiding A
 
2346
931     231307  37      ideas   watering        omnisciently    
 
2347
932     231308  37      miniaturizes    ungrateful      Britannic       
 
2348
933     231309  37      lewdly  secures scholastics     A
 
2349
934     231310  37      title   chastisers      mechanics       A
 
2350
935     231311  37      youthfulness    icon    humidly A
 
2351
936     231312  37      creak   reuniting       masterpiece     
 
2352
937     231313  37      Chippewa        imagining       however 
 
2353
938     231314  37      clamored        abiding Mendelian       
 
2354
939     231315  37      freezes omnisciently    jarred  
 
2355
940     232102  37      forgivably      Britannic       scolds  
 
2356
941     232103  37      reduce  scholastics     infatuate       
 
2357
942     232104  37      McGovern        mechanics       willed  A
 
2358
943     232105  37      Nazis   humidly joyfully        
 
2359
944     232106  37      epistle masterpiece     Microsoft       
 
2360
945     232107  37      socializes      however fibrosities     
 
2361
946     232108  37      conceptions     Mendelian       Baltimorean     
 
2362
947     232601  37      Kevin   jarred  equestrian      
 
2363
948     232602  37      uncovering      scolds  Goodrich        
 
2364
949     232603  37      chews   infatuate       apish   A
 
2365
950     232605  37      appendixes      willed  Adlerian        
 
2366
5950    1232605 37      appendixes      willed  Adlerian        
 
2367
5951    1232606 37      appendixes      willed  Adlerian        
 
2368
5952    1232607 37      appendixes      willed  Adlerian        
 
2369
5953    1232608 37      appendixes      willed  Adlerian        
 
2370
5954    1232609 37      appendixes      willed  Adlerian        
 
2371
951     232606  37      raining joyfully        Tropez  
 
2372
952     232607  37      infest  Microsoft       nouns   
 
2373
953     232608  37      compartment     fibrosities     distracting     
 
2374
954     232609  37      minting Baltimorean     mutton  
 
2375
955     236104  37      ducks   equestrian      bridgeable      A
 
2376
956     236105  37      roped   Goodrich        stickers        A
 
2377
957     236106  37      waltz   apish   transcontinental        A
 
2378
958     236107  37      Lillian Adlerian        amateurish      
 
2379
959     236108  37      repressions     Tropez  Gandhian        
 
2380
960     236109  37      chillingly      nouns   stratified      
 
2381
961     236110  37      noncritical     distracting     chamberlains    
 
2382
962     236111  37      lithograph      mutton  creditably      
 
2383
963     236112  37      spongers        bridgeable      philosophic     
 
2384
964     236113  37      parenthood      stickers        ores    
 
2385
965     238005  37      posed   transcontinental        Carleton        
 
2386
966     238006  37      instruments     amateurish      tape    A
 
2387
967     238007  37      filial  Gandhian        afloat  A
 
2388
968     238008  37      fixedly stratified      goodness        A
 
2389
969     238009  37      relives chamberlains    welcoming       
 
2390
970     238010  37      Pandora creditably      Pinsky  FAS
 
2391
971     238011  37      watering        philosophic     halting 
 
2392
972     238012  37      ungrateful      ores    bibliography    
 
2393
973     238013  37      secures Carleton        decoding        
 
2394
974     240401  41      chastisers      tape    variance        A
 
2395
975     240402  41      icon    afloat  allowed A
 
2396
976     240901  41      reuniting       goodness        dire    A
 
2397
977     240902  41      imagining       welcoming       dub     A
 
2398
978     241801  41      abiding Pinsky  poisoning       
 
2399
979     242101  41      omnisciently    halting Iraqis  A
 
2400
980     242102  41      Britannic       bibliography    heaving 
 
2401
981     242201  41      scholastics     decoding        population      A
 
2402
982     242202  41      mechanics       variance        bomb    A
 
2403
983     242501  41      humidly allowed Majorca A
 
2404
984     242502  41      masterpiece     dire    Gershwins       
 
2405
985     246201  41      however dub     explorers       
 
2406
986     246202  41      Mendelian       poisoning       libretto        A
 
2407
987     246203  41      jarred  Iraqis  occurred        
 
2408
988     246204  41      scolds  heaving Lagos   
 
2409
989     246205  41      infatuate       population      rats    
 
2410
990     246301  41      willed  bomb    bankruptcies    A
 
2411
991     246302  41      joyfully        Majorca crying  
 
2412
992     248001  41      Microsoft       Gershwins       unexpected      
 
2413
993     248002  41      fibrosities     explorers       accessed        A
 
2414
994     248003  41      Baltimorean     libretto        colorful        A
 
2415
995     248004  41      equestrian      occurred        versatility     A
 
2416
996     248005  41      Goodrich        Lagos   cosy    
 
2417
997     248006  41      apish   rats    Darius  A
 
2418
998     248007  41      Adlerian        bankruptcies    mastering       A
 
2419
999     248008  41      Tropez  crying  Asiaticizations A
 
2420
1000    248009  41      nouns   unexpected      offerers        A
 
2421
1001    248010  41      distracting     accessed        uncles  A
 
2422
1002    248011  41      mutton  colorful        sleepwalk       
 
2423
1003    248012  41      bridgeable      versatility     Ernestine       
 
2424
1004    248013  41      stickers        cosy    checksumming    
 
2425
1005    248014  41      transcontinental        Darius  stopped 
 
2426
1006    248015  41      amateurish      mastering       sicker  
 
2427
1007    248016  41      Gandhian        Asiaticizations Italianization  
 
2428
1008    248017  41      stratified      offerers        alphabetic      
 
2429
1009    248018  41      chamberlains    uncles  pharmaceutic    
 
2430
1010    248019  41      creditably      sleepwalk       creator 
 
2431
1011    248020  41      philosophic     Ernestine       chess   
 
2432
1012    248021  41      ores    checksumming    charcoal        
 
2433
1013    248101  41      Carleton        stopped Epiphany        A
 
2434
1014    248102  41      tape    sicker  bulldozes       A
 
2435
1015    248201  41      afloat  Italianization  Pygmalion       A
 
2436
1016    248202  41      goodness        alphabetic      caressing       A
 
2437
1017    248203  41      welcoming       pharmaceutic    Palestine       A
 
2438
1018    248204  41      Pinsky  creator regimented      A
 
2439
1019    248205  41      halting chess   scars   A
 
2440
1020    248206  41      bibliography    charcoal        realest A
 
2441
1021    248207  41      decoding        Epiphany        diffusing       A
 
2442
1022    248208  41      variance        bulldozes       clubroom        A
 
2443
1023    248209  41      allowed Pygmalion       Blythe  A
 
2444
1024    248210  41      dire    caressing       ahead   
 
2445
1025    248211  50      dub     Palestine       reviver 
 
2446
1026    250501  34      poisoning       regimented      retransmitting  A
 
2447
1027    250502  34      Iraqis  scars   landslide       
 
2448
1028    250503  34      heaving realest Eiffel  
 
2449
1029    250504  34      population      diffusing       absentee        
 
2450
1030    250505  34      bomb    clubroom        aye     
 
2451
1031    250601  34      Majorca Blythe  forked  A
 
2452
1032    250602  34      Gershwins       ahead   Peruvianizes    
 
2453
1033    250603  34      explorers       reviver clerked 
 
2454
1034    250604  34      libretto        retransmitting  tutor   
 
2455
1035    250605  34      occurred        landslide       boulevard       
 
2456
1036    251001  34      Lagos   Eiffel  shuttered       
 
2457
1037    251002  34      rats    absentee        quotes  A
 
2458
1038    251003  34      bankruptcies    aye     Caltech 
 
2459
1039    251004  34      crying  forked  Mossberg        
 
2460
1040    251005  34      unexpected      Peruvianizes    kept    
 
2461
1041    251301  34      accessed        clerked roundly 
 
2462
1042    251302  34      colorful        tutor   features        A
 
2463
1043    251303  34      versatility     boulevard       imaginable      A
 
2464
1044    251304  34      cosy    shuttered       controller      
 
2465
1045    251305  34      Darius  quotes  racial  
 
2466
1046    251401  34      mastering       Caltech uprisings       A
 
2467
1047    251402  34      Asiaticizations Mossberg        narrowed        A
 
2468
1048    251403  34      offerers        kept    cannot  A
 
2469
1049    251404  34      uncles  roundly vest    
 
2470
1050    251405  34      sleepwalk       features        famine  
 
2471
1051    251406  34      Ernestine       imaginable      sugars  
 
2472
1052    251801  34      checksumming    controller      exterminated    A
 
2473
1053    251802  34      stopped racial  belays  
 
2474
1054    252101  34      sicker  uprisings       Hodges  A
 
2475
1055    252102  34      Italianization  narrowed        translatable    
 
2476
1056    252301  34      alphabetic      cannot  duality A
 
2477
1057    252302  34      pharmaceutic    vest    recording       A
 
2478
1058    252303  34      creator famine  rouses  A
 
2479
1059    252304  34      chess   sugars  poison  
 
2480
1060    252305  34      charcoal        exterminated    attitude        
 
2481
1061    252306  34      Epiphany        belays  dusted  
 
2482
1062    252307  34      bulldozes       Hodges  encompasses     
 
2483
1063    252308  34      Pygmalion       translatable    presentation    
 
2484
1064    252309  34      caressing       duality Kantian 
 
2485
1065    256001  34      Palestine       recording       imprecision     A
 
2486
1066    256002  34      regimented      rouses  saving  
 
2487
1067    256003  34      scars   poison  maternal        
 
2488
1068    256004  34      realest attitude        hewed   
 
2489
1069    256005  34      diffusing       dusted  kerosene        
 
2490
1070    258001  34      clubroom        encompasses     Cubans  
 
2491
1071    258002  34      Blythe  presentation    photographers   
 
2492
1072    258003  34      ahead   Kantian nymph   A
 
2493
1073    258004  34      reviver imprecision     bedlam  A
 
2494
1074    258005  34      retransmitting  saving  north   A
 
2495
1075    258006  34      landslide       maternal        Schoenberg      A
 
2496
1076    258007  34      Eiffel  hewed   botany  A
 
2497
1077    258008  34      absentee        kerosene        curs    
 
2498
1078    258009  34      aye     Cubans  solidification  
 
2499
1079    258010  34      forked  photographers   inheritresses   
 
2500
1080    258011  34      Peruvianizes    nymph   stiller 
 
2501
1081    258101  68      clerked bedlam  t1      A
 
2502
1082    258102  68      tutor   north   suite   A
 
2503
1083    258103  34      boulevard       Schoenberg      ransomer        
 
2504
1084    258104  68      shuttered       botany  Willy   
 
2505
1085    258105  68      quotes  curs    Rena    A
 
2506
1086    258106  68      Caltech solidification  Seattle A
 
2507
1087    258107  68      Mossberg        inheritresses   relaxes A
 
2508
1088    258108  68      kept    stiller exclaim 
 
2509
1089    258109  68      roundly t1      implicated      A
 
2510
1090    258110  68      features        suite   distinguish     
 
2511
1091    258111  68      imaginable      ransomer        assayed 
 
2512
1092    258112  68      controller      Willy   homeowner       
 
2513
1093    258113  68      racial  Rena    and     
 
2514
1094    258201  34      uprisings       Seattle stealth 
 
2515
1095    258202  34      narrowed        relaxes coinciding      A
 
2516
1096    258203  34      cannot  exclaim founder A
 
2517
1097    258204  34      vest    implicated      environing      
 
2518
1098    258205  34      famine  distinguish     jewelry 
 
2519
1099    258301  34      sugars  assayed lemons  A
 
2520
1100    258401  34      exterminated    homeowner       brokenness      A
 
2521
1101    258402  34      belays  and     bedpost A
 
2522
1102    258403  34      Hodges  stealth assurers        A
 
2523
1103    258404  34      translatable    coinciding      annoyers        
 
2524
1104    258405  34      duality founder affixed 
 
2525
1105    258406  34      recording       environing      warbling        
 
2526
1106    258407  34      rouses  jewelry seriously       
 
2527
1107    228123  37      poison  lemons  boasted 
 
2528
1108    250606  34      attitude        brokenness      Chantilly       
 
2529
1109    208405  37      dusted  bedpost Iranizes        
 
2530
1110    212101  37      encompasses     assurers        violinist       
 
2531
1111    218206  37      presentation    annoyers        extramarital    
 
2532
1112    150401  37      Kantian affixed spates  
 
2533
1113    248212  41      imprecision     warbling        cloakroom       
 
2534
1114    128026  00      saving  seriously       gazer   
 
2535
1115    128024  00      maternal        boasted hand    
 
2536
1116    128027  00      hewed   Chantilly       tucked  
 
2537
1117    128025  00      kerosene        Iranizes        gems    
 
2538
1118    128109  00      Cubans  violinist       clinker 
 
2539
1119    128705  00      photographers   extramarital    refiner 
 
2540
1120    126303  00      nymph   spates  callus  
 
2541
1121    128308  00      bedlam  cloakroom       leopards        
 
2542
1122    128204  00      north   gazer   comfortingly    
 
2543
1123    128205  00      Schoenberg      hand    generically     
 
2544
1124    128206  00      botany  tucked  getters 
 
2545
1125    128207  00      curs    gems    sexually        
 
2546
1126    118205  00      solidification  clinker spear   
 
2547
1127    116801  00      inheritresses   refiner serums  
 
2548
1128    116803  00      stiller callus  Italianization  
 
2549
1129    116804  00      t1      leopards        attendants      
 
2550
1130    116802  00      suite   comfortingly    spies   
 
2551
1131    128605  00      ransomer        generically     Anthony 
 
2552
1132    118308  00      Willy   getters planar  
 
2553
1133    113702  00      Rena    sexually        cupped  
 
2554
1134    113703  00      Seattle spear   cleanser        
 
2555
1135    112103  00      relaxes serums  commuters       
 
2556
1136    118009  00      exclaim Italianization  honeysuckle     
 
2557
5136    1118009 00      exclaim Italianization  honeysuckle     
 
2558
1137    138011  00      implicated      attendants      orphanage       
 
2559
1138    138010  00      distinguish     spies   skies   
 
2560
1139    138012  00      assayed Anthony crushers        
 
2561
1140    068304  00      homeowner       planar  Puritan 
 
2562
1141    078009  00      and     cupped  squeezer        
 
2563
1142    108013  00      stealth cleanser        bruises 
 
2564
1143    084004  00      coinciding      commuters       bonfire 
 
2565
1144    083402  00      founder honeysuckle     Colombo 
 
2566
1145    084003  00      environing      orphanage       nondecreasing   
 
2567
1146    088504  00      jewelry skies   innocents       
 
2568
1147    088005  00      lemons  crushers        masked  
 
2569
1148    088007  00      brokenness      Puritan file    
 
2570
1149    088006  00      bedpost squeezer        brush   
 
2571
1150    148025  00      assurers        bruises mutilate        
 
2572
1151    148024  00      annoyers        bonfire mommy   
 
2573
1152    138305  00      affixed Colombo bulkheads       
 
2574
1153    138306  00      warbling        nondecreasing   undeclared      
 
2575
1154    152701  00      seriously       innocents       displacements   
 
2576
1155    148505  00      boasted masked  nieces  
 
2577
1156    158003  00      Chantilly       file    coeducation     
 
2578
1157    156201  00      Iranizes        brush   brassy  
 
2579
1158    156202  00      violinist       mutilate        authenticator   
 
2580
1159    158307  00      extramarital    mommy   Washoe  
 
2581
1160    158402  00      spates  bulkheads       penny   
 
2582
1161    158401  00      cloakroom       undeclared      Flagler 
 
2583
1162    068013  00      gazer   displacements   stoned  
 
2584
1163    068012  00      hand    nieces  cranes  
 
2585
1164    068203  00      tucked  coeducation     masterful       
 
2586
1165    088205  00      gems    brassy  biracial        
 
2587
1166    068704  00      clinker authenticator   steamships      
 
2588
1167    068604  00      refiner Washoe  windmills       
 
2589
1168    158502  00      callus  penny   exploit 
 
2590
1169    123103  00      leopards        Flagler riverfront      
 
2591
1170    148026  00      comfortingly    stoned  sisterly        
 
2592
1171    123302  00      generically     cranes  sharpshoot      
 
2593
1172    076503  00      getters masterful       mittens 
 
2594
1173    126304  00      sexually        biracial        interdependency 
 
2595
1174    068306  00      spear   steamships      policy  
 
2596
1175    143504  00      serums  windmills       unleashing      
 
2597
1176    160201  00      Italianization  exploit pretenders      
 
2598
1177    148028  00      attendants      riverfront      overstatements  
 
2599
1178    148027  00      spies   sisterly        birthed 
 
2600
1179    143505  00      Anthony sharpshoot      opportunism     
 
2601
1180    108014  00      planar  mittens showroom        
 
2602
1181    076104  00      cupped  interdependency compromisingly  
 
2603
1182    078106  00      cleanser        policy  Medicare        
 
2604
1183    126102  00      commuters       unleashing      corresponds     
 
2605
1184    128029  00      honeysuckle     pretenders      hardware        
 
2606
1185    128028  00      orphanage       overstatements  implant 
 
2607
1186    018410  00      skies   birthed Alicia  
 
2608
1187    128110  00      crushers        opportunism     requesting      
 
2609
1188    148506  00      Puritan showroom        produced        
 
2610
1189    123303  00      squeezer        compromisingly  criticizes      
 
2611
1190    123304  00      bruises Medicare        backer  
 
2612
1191    068504  00      bonfire corresponds     positively      
 
2613
1192    068305  00      Colombo hardware        colicky 
 
2614
1193    000000  00      nondecreasing   implant thrillingly     
 
2615
1       000001  00      Omaha   teethe  neat    
 
2616
2       011401  37      breaking        dreaded Steinberg       W
 
2617
3       011402  37      Romans  scholastics     jarring 
 
2618
4       011403  37      intercepted     audiology       tinily  
 
2619
INSERT INTO t2 VALUES (2,011401,37,'breaking','dreaded','Steinberg','W');
 
2620
INSERT INTO t2 VALUES (3,011402,37,'Romans','scholastics','jarring','');
 
2621
INSERT INTO t2 VALUES (4,011403,37,'intercepted','audiology','tinily','');
 
2622
OPTIMIZE TABLE t2;
 
2623
Table   Op      Msg_type        Msg_text
 
2624
test.t2 optimize        status  OK
 
2625
SELECT * FROM t2;
 
2626
auto    fld1    companynr       fld3    fld4    fld5    fld6
 
2627
1       000001  00      Omaha   teethe  neat    
 
2628
2       011401  37      breaking        dreaded Steinberg       W
 
2629
3       011402  37      Romans  scholastics     jarring 
 
2630
4       011403  37      intercepted     audiology       tinily  
 
2631
5       011501  37      bewilderingly   wallet  balled  
 
2632
6       011701  37      astound parters persist W
 
2633
7       011702  37      admonishing     eschew  attainments     
 
2634
8       011703  37      sumac   quitter fanatic 
 
2635
9       012001  37      flanking        neat    measures        FAS
 
2636
10      012003  37      combed  Steinberg       rightfulness    
 
2637
11      012004  37      subjective      jarring capably 
 
2638
12      012005  37      scatterbrain    tinily  impulsive       
 
2639
13      012301  37      Eulerian        balled  starlet 
 
2640
14      012302  36      dubbed  persist terminators     
 
2641
15      012303  37      Kane    attainments     untying 
 
2642
16      012304  37      overlay fanatic announces       FAS
 
2643
17      012305  37      perturb measures        featherweight   FAS
 
2644
18      012306  37      goblins rightfulness    pessimist       FAS
 
2645
19      012501  37      annihilates     capably daughter        
 
2646
20      012602  37      Wotan   impulsive       decliner        FAS
 
2647
21      012603  37      snatching       starlet lawgiver        
 
2648
22      012604  37      concludes       terminators     stated  
 
2649
23      012605  37      laterally       untying readable        
 
2650
24      012606  37      yelped  announces       attrition       
 
2651
25      012701  37      grazing featherweight   cascade FAS
 
2652
26      012702  37      Baird   pessimist       motors  FAS
 
2653
27      012703  37      celery  daughter        interrogate     
 
2654
28      012704  37      misunderstander decliner        pests   W
 
2655
29      013601  37      handgun lawgiver        stairway        
 
2656
30      013602  37      foldout stated  dopers  FAS
 
2657
31      013603  37      mystic  readable        testicle        W
 
2658
32      013604  37      succumbed       attrition       Parsifal        W
 
2659
33      013605  37      Nabisco cascade leavings        
 
2660
34      013606  37      fingerings      motors  postulation     W
 
2661
35      013607  37      aging   interrogate     squeaking       
 
2662
36      013608  37      afield  pests   contrasted      
 
2663
37      013609  37      ammonium        stairway        leftover        
 
2664
38      013610  37      boat    dopers  whiteners       
 
2665
39      013801  37      intelligibility testicle        erases  W
 
2666
40      013802  37      Augustine       Parsifal        Punjab  W
 
2667
41      013803  37      teethe  leavings        Merritt 
 
2668
42      013804  37      dreaded postulation     Quixotism       
 
2669
43      013901  37      scholastics     squeaking       sweetish        FAS
 
2670
44      016001  37      audiology       contrasted      dogging FAS
 
2671
45      016201  37      wallet  leftover        scornfully      FAS
 
2672
46      016202  37      parters whiteners       bellow  
 
2673
47      016301  37      eschew  erases  bills   
 
2674
48      016302  37      quitter Punjab  cupboard        FAS
 
2675
49      016303  37      neat    Merritt sureties        FAS
 
2676
50      016304  37      Steinberg       Quixotism       puddings        
 
2677
51      018001  37      jarring sweetish        tapestry        
 
2678
52      018002  37      tinily  dogging fetters 
 
2679
53      018003  37      balled  scornfully      bivalves        
 
2680
54      018004  37      persist bellow  incurring       
 
2681
55      018005  37      attainments     bills   Adolph  
 
2682
56      018007  37      fanatic cupboard        pithed  
 
2683
57      018008  37      measures        sureties        emergency       
 
2684
58      018009  37      rightfulness    puddings        Miles   
 
2685
59      018010  37      capably tapestry        trimmings       
 
2686
60      018012  37      impulsive       fetters tragedies       W
 
2687
61      018013  37      starlet bivalves        skulking        W
 
2688
62      018014  37      terminators     incurring       flint   
 
2689
63      018015  37      untying Adolph  flopping        W
 
2690
64      018016  37      announces       pithed  relaxing        FAS
 
2691
65      018017  37      featherweight   emergency       offload FAS
 
2692
66      018018  37      pessimist       Miles   suites  W
 
2693
67      018019  37      daughter        trimmings       lists   FAS
 
2694
68      018020  37      decliner        tragedies       animized        FAS
 
2695
69      018021  37      lawgiver        skulking        multilayer      W
 
2696
70      018022  37      stated  flint   standardizes    FAS
 
2697
71      018023  37      readable        flopping        Judas   
 
2698
72      018024  37      attrition       relaxing        vacuuming       W
 
2699
73      018025  37      cascade offload dentally        W
 
2700
74      018026  37      motors  suites  humanness       W
 
2701
75      018027  37      interrogate     lists   inch    W
 
2702
76      018028  37      pests   animized        Weissmuller     W
 
2703
77      018029  37      stairway        multilayer      irresponsibly   W
 
2704
78      018030  37      dopers  standardizes    luckily FAS
 
2705
79      018032  37      testicle        Judas   culled  W
 
2706
80      018033  37      Parsifal        vacuuming       medical FAS
 
2707
81      018034  37      leavings        dentally        bloodbath       FAS
 
2708
82      018035  37      postulation     humanness       subschema       W
 
2709
83      018036  37      squeaking       inch    animals W
 
2710
84      018037  37      contrasted      Weissmuller     Micronesia      
 
2711
85      018038  37      leftover        irresponsibly   repetitions     
 
2712
86      018039  37      whiteners       luckily Antares 
 
2713
87      018040  37      erases  culled  ventilate       W
 
2714
88      018041  37      Punjab  medical pityingly       
 
2715
89      018042  37      Merritt bloodbath       interdependent  
 
2716
90      018043  37      Quixotism       subschema       Graves  FAS
 
2717
91      018044  37      sweetish        animals neonatal        
 
2718
92      018045  37      dogging Micronesia      scribbled       FAS
 
2719
93      018046  37      scornfully      repetitions     chafe   W
 
2720
94      018048  37      bellow  Antares honoring        
 
2721
95      018049  37      bills   ventilate       realtor 
 
2722
96      018050  37      cupboard        pityingly       elite   
 
2723
97      018051  37      sureties        interdependent  funereal        
 
2724
98      018052  37      puddings        Graves  abrogating      
 
2725
99      018053  50      tapestry        neonatal        sorters 
 
2726
100     018054  37      fetters scribbled       Conley  
 
2727
101     018055  37      bivalves        chafe   lectured        
 
2728
102     018056  37      incurring       honoring        Abraham 
 
2729
103     018057  37      Adolph  realtor Hawaii  W
 
2730
104     018058  37      pithed  elite   cage    
 
2731
105     018059  36      emergency       funereal        hushes  
 
2732
106     018060  37      Miles   abrogating      Simla   
 
2733
107     018061  37      trimmings       sorters reporters       
 
2734
108     018101  37      tragedies       Conley  Dutchman        FAS
 
2735
109     018102  37      skulking        lectured        descendants     FAS
 
2736
110     018103  37      flint   Abraham groupings       FAS
 
2737
111     018104  37      flopping        Hawaii  dissociate      
 
2738
112     018201  37      relaxing        cage    coexist W
 
2739
113     018202  37      offload hushes  Beebe   
 
2740
114     018402  37      suites  Simla   Taoism  
 
2741
115     018403  37      lists   reporters       Connally        
 
2742
116     018404  37      animized        Dutchman        fetched FAS
 
2743
117     018405  37      multilayer      descendants     checkpoints     FAS
 
2744
118     018406  37      standardizes    groupings       rusting 
 
2745
119     018409  37      Judas   dissociate      galling 
 
2746
120     018601  37      vacuuming       coexist obliterates     
 
2747
121     018602  37      dentally        Beebe   traitor 
 
2748
122     018603  37      humanness       Taoism  resumes FAS
 
2749
123     018801  37      inch    Connally        analyzable      FAS
 
2750
124     018802  37      Weissmuller     fetched terminator      FAS
 
2751
125     018803  37      irresponsibly   checkpoints     gritty  FAS
 
2752
126     018804  37      luckily rusting firearm W
 
2753
127     018805  37      culled  galling minima  
 
2754
128     018806  37      medical obliterates     Selfridge       
 
2755
129     018807  37      bloodbath       traitor disable 
 
2756
130     018808  37      subschema       resumes witchcraft      W
 
2757
131     018809  37      animals analyzable      betroth W
 
2758
132     018810  37      Micronesia      terminator      Manhattanize    
 
2759
133     018811  37      repetitions     gritty  imprint 
 
2760
134     018812  37      Antares firearm peeked  
 
2761
135     019101  37      ventilate       minima  swelling        
 
2762
136     019102  37      pityingly       Selfridge       interrelationships      W
 
2763
137     019103  37      interdependent  disable riser   
 
2764
138     019201  37      Graves  witchcraft      Gandhian        W
 
2765
139     030501  37      neonatal        betroth peacock A
 
2766
140     030502  50      scribbled       Manhattanize    bee     A
 
2767
141     030503  37      chafe   imprint kanji   
 
2768
142     030504  37      honoring        peeked  dental  
 
2769
143     031901  37      realtor swelling        scarf   FAS
 
2770
144     036001  37      elite   interrelationships      chasm   A
 
2771
145     036002  37      funereal        riser   insolence       A
 
2772
146     036004  37      abrogating      Gandhian        syndicate       
 
2773
147     036005  37      sorters peacock alike   
 
2774
148     038001  37      Conley  bee     imperial        A
 
2775
149     038002  37      lectured        kanji   convulsion      A
 
2776
150     038003  37      Abraham dental  railway A
 
2777
151     038004  37      Hawaii  scarf   validate        A
 
2778
152     038005  37      cage    chasm   normalizes      A
 
2779
153     038006  37      hushes  insolence       comprehensive   
 
2780
154     038007  37      Simla   syndicate       chewing 
 
2781
155     038008  37      reporters       alike   denizen 
 
2782
156     038009  37      Dutchman        imperial        schemer 
 
2783
157     038010  37      descendants     convulsion      chronicle       
 
2784
158     038011  37      groupings       railway Kline   
 
2785
159     038012  37      dissociate      validate        Anatole 
 
2786
160     038013  37      coexist normalizes      partridges      
 
2787
161     038014  37      Beebe   comprehensive   brunch  
 
2788
162     038015  37      Taoism  chewing recruited       
 
2789
163     038016  37      Connally        denizen dimensions      W
 
2790
164     038017  37      fetched schemer Chicana W
 
2791
165     038018  37      checkpoints     chronicle       announced       
 
2792
166     038101  37      rusting Kline   praised FAS
 
2793
167     038102  37      galling Anatole employing       
 
2794
168     038103  37      obliterates     partridges      linear  
 
2795
169     038104  37      traitor brunch  quagmire        
 
2796
170     038201  37      resumes recruited       western A
 
2797
171     038202  37      analyzable      dimensions      relishing       
 
2798
172     038203  37      terminator      Chicana serving A
 
2799
173     038204  37      gritty  announced       scheduling      
 
2800
174     038205  37      firearm praised lore    
 
2801
175     038206  37      minima  employing       eventful        
 
2802
176     038208  37      Selfridge       linear  arteriole       A
 
2803
177     042801  37      disable quagmire        disentangle     
 
2804
178     042802  37      witchcraft      western cured   A
 
2805
179     046101  37      betroth relishing       Fenton  W
 
2806
180     048001  37      Manhattanize    serving avoidable       A
 
2807
181     048002  37      imprint scheduling      drains  A
 
2808
182     048003  37      peeked  lore    detectably      FAS
 
2809
183     048004  37      swelling        eventful        husky   
 
2810
184     048005  37      interrelationships      arteriole       impelling       
 
2811
185     048006  37      riser   disentangle     undoes  
 
2812
186     048007  37      Gandhian        cured   evened  
 
2813
187     048008  37      peacock Fenton  squeezes        
 
2814
188     048101  37      bee     avoidable       destroyer       FAS
 
2815
189     048102  37      kanji   drains  rudeness        
 
2816
190     048201  37      dental  detectably      beaner  FAS
 
2817
191     048202  37      scarf   husky   boorish 
 
2818
192     048203  37      chasm   impelling       Everhart        
 
2819
193     048204  37      insolence       undoes  encompass       A
 
2820
194     048205  37      syndicate       evened  mushrooms       
 
2821
195     048301  37      alike   squeezes        Alison  A
 
2822
196     048302  37      imperial        destroyer       externally      FAS
 
2823
197     048303  37      convulsion      rudeness        pellagra        
 
2824
198     048304  37      railway beaner  cult    
 
2825
199     048305  37      validate        boorish creek   A
 
2826
200     048401  37      normalizes      Everhart        Huffman 
 
2827
201     048402  37      comprehensive   encompass       Majorca FAS
 
2828
202     048403  37      chewing mushrooms       governing       A
 
2829
203     048404  37      denizen Alison  gadfly  FAS
 
2830
204     048405  37      schemer externally      reassigned      FAS
 
2831
205     048406  37      chronicle       pellagra        intentness      W
 
2832
206     048407  37      Kline   cult    craziness       
 
2833
207     048408  37      Anatole creek   psychic 
 
2834
208     048409  37      partridges      Huffman squabbled       
 
2835
209     048410  37      brunch  Majorca burlesque       
 
2836
210     048411  37      recruited       governing       capped  
 
2837
211     048412  37      dimensions      gadfly  extracted       A
 
2838
212     048413  37      Chicana reassigned      DiMaggio        
 
2839
213     048601  37      announced       intentness      exclamation     FAS
 
2840
214     048602  37      praised craziness       subdirectory    
 
2841
215     048603  37      employing       psychic fangs   
 
2842
216     048604  37      linear  squabbled       buyer   A
 
2843
217     048801  37      quagmire        burlesque       pithing A
 
2844
218     050901  37      western capped  transistorizing A
 
2845
219     051201  37      relishing       extracted       nonbiodegradable        
 
2846
220     056002  37      serving DiMaggio        dislocate       
 
2847
221     056003  37      scheduling      exclamation     monochromatic   FAS
 
2848
222     056004  37      lore    subdirectory    batting 
 
2849
223     056102  37      eventful        fangs   postcondition   A
 
2850
224     056203  37      arteriole       buyer   catalog FAS
 
2851
225     056204  37      disentangle     pithing Remus   
 
2852
226     058003  37      cured   transistorizing devices A
 
2853
227     058004  37      Fenton  nonbiodegradable        bike    A
 
2854
228     058005  37      avoidable       dislocate       qualify 
 
2855
229     058006  37      drains  monochromatic   detained        
 
2856
230     058007  37      detectably      batting commended       
 
2857
231     058101  37      husky   postcondition   civilize        
 
2858
232     058102  37      impelling       catalog Elmhurst        
 
2859
233     058103  37      undoes  Remus   anesthetizing   
 
2860
234     058105  37      evened  devices deaf    
 
2861
235     058111  37      squeezes        bike    Brigham 
 
2862
236     058112  37      destroyer       qualify title   
 
2863
237     058113  37      rudeness        detained        coarse  
 
2864
238     058114  37      beaner  commended       combinations    
 
2865
239     058115  37      boorish civilize        grayness        
 
2866
240     058116  37      Everhart        Elmhurst        innumerable     FAS
 
2867
241     058117  37      encompass       anesthetizing   Caroline        A
 
2868
242     058118  37      mushrooms       deaf    fatty   FAS
 
2869
243     058119  37      Alison  Brigham eastbound       
 
2870
244     058120  37      externally      title   inexperienced   
 
2871
245     058121  37      pellagra        coarse  hoarder A
 
2872
246     058122  37      cult    combinations    scotch  W
 
2873
247     058123  37      creek   grayness        passport        A
 
2874
248     058124  37      Huffman innumerable     strategic       FAS
 
2875
249     058125  37      Majorca Caroline        gated   
 
2876
250     058126  37      governing       fatty   flog    
 
2877
251     058127  37      gadfly  eastbound       Pipestone       
 
2878
252     058128  37      reassigned      inexperienced   Dar     
 
2879
253     058201  37      intentness      hoarder Corcoran        
 
2880
254     058202  37      craziness       scotch  flyers  A
 
2881
255     058303  37      psychic passport        competitions    W
 
2882
256     058304  37      squabbled       strategic       suppliers       FAS
 
2883
257     058602  37      burlesque       gated   skips   
 
2884
258     058603  37      capped  flog    institutes      
 
2885
259     058604  37      extracted       Pipestone       troop   A
 
2886
260     058605  37      DiMaggio        Dar     connective      W
 
2887
261     058606  37      exclamation     Corcoran        denies  
 
2888
262     058607  37      subdirectory    flyers  polka   
 
2889
263     060401  36      fangs   competitions    observations    FAS
 
2890
264     061701  36      buyer   suppliers       askers  
 
2891
265     066201  36      pithing skips   homeless        FAS
 
2892
266     066501  36      transistorizing institutes      Anna    
 
2893
267     068001  36      nonbiodegradable        troop   subdirectories  W
 
2894
268     068002  36      dislocate       connective      decaying        FAS
 
2895
269     068005  36      monochromatic   denies  outwitting      W
 
2896
270     068006  36      batting polka   Harpy   W
 
2897
271     068007  36      postcondition   observations    crazed  
 
2898
272     068008  36      catalog askers  suffocate       
 
2899
273     068009  36      Remus   homeless        provers FAS
 
2900
274     068010  36      devices Anna    technically     
 
2901
275     068011  36      bike    subdirectories  Franklinizations        
 
2902
276     068202  36      qualify decaying        considered      
 
2903
277     068302  36      detained        outwitting      tinnily 
 
2904
278     068303  36      commended       Harpy   uninterruptedly 
 
2905
279     068401  36      civilize        crazed  whistled        A
 
2906
280     068501  36      Elmhurst        suffocate       automate        
 
2907
281     068502  36      anesthetizing   provers gutting W
 
2908
282     068503  36      deaf    technically     surreptitious   
 
2909
283     068602  36      Brigham Franklinizations        Choctaw 
 
2910
284     068603  36      title   considered      cooks   
 
2911
285     068701  36      coarse  tinnily millivolt       FAS
 
2912
286     068702  36      combinations    uninterruptedly counterpoise    
 
2913
287     068703  36      grayness        whistled        Gothicism       
 
2914
288     076001  36      innumerable     automate        feminine        
 
2915
289     076002  36      Caroline        gutting metaphysically  W
 
2916
290     076101  36      fatty   surreptitious   sanding A
 
2917
291     076102  36      eastbound       Choctaw contributorily  
 
2918
292     076103  36      inexperienced   cooks   receivers       FAS
 
2919
293     076302  36      hoarder millivolt       adjourn 
 
2920
294     076303  36      scotch  counterpoise    straggled       A
 
2921
295     076304  36      passport        Gothicism       druggists       
 
2922
296     076305  36      strategic       feminine        thanking        FAS
 
2923
297     076306  36      gated   metaphysically  ostrich 
 
2924
298     076307  36      flog    sanding hopelessness    FAS
 
2925
299     076402  36      Pipestone       contributorily  Eurydice        
 
2926
300     076501  36      Dar     receivers       excitation      W
 
2927
301     076502  36      Corcoran        adjourn presumes        FAS
 
2928
302     076701  36      flyers  straggled       imaginable      FAS
 
2929
303     078001  36      competitions    druggists       concoct W
 
2930
304     078002  36      suppliers       thanking        peering W
 
2931
305     078003  36      skips   ostrich Phelps  FAS
 
2932
306     078004  36      institutes      hopelessness    ferociousness   FAS
 
2933
307     078005  36      troop   Eurydice        sentences       
 
2934
308     078006  36      connective      excitation      unlocks 
 
2935
309     078007  36      denies  presumes        engrossing      W
 
2936
310     078008  36      polka   imaginable      Ruth    
 
2937
311     078101  36      observations    concoct tying   
 
2938
312     078103  36      askers  peering exclaimers      
 
2939
313     078104  36      homeless        Phelps  synergy 
 
2940
314     078105  36      Anna    ferociousness   Huey    W
 
2941
315     082101  36      subdirectories  sentences       merging 
 
2942
316     083401  36      decaying        unlocks judges  A
 
2943
317     084001  36      outwitting      engrossing      Shylock W
 
2944
318     084002  36      Harpy   Ruth    Miltonism       
 
2945
319     086001  36      crazed  tying   hen     W
 
2946
320     086102  36      suffocate       exclaimers      honeybee        FAS
 
2947
321     086201  36      provers synergy towers  
 
2948
322     088001  36      technically     Huey    dilutes W
 
2949
323     088002  36      Franklinizations        merging numerals        FAS
 
2950
324     088003  36      considered      judges  democracy       FAS
 
2951
325     088004  36      tinnily Shylock Ibero-  
 
2952
326     088101  36      uninterruptedly Miltonism       invalids        
 
2953
327     088102  36      whistled        hen     behavior        
 
2954
328     088103  36      automate        honeybee        accruing        
 
2955
329     088104  36      gutting towers  relics  A
 
2956
330     088105  36      surreptitious   dilutes rackets 
 
2957
331     088106  36      Choctaw numerals        Fischbein       W
 
2958
332     088201  36      cooks   democracy       phony   W
 
2959
333     088203  36      millivolt       Ibero-  cross   FAS
 
2960
334     088204  36      counterpoise    invalids        cleanup 
 
2961
335     088302  37      Gothicism       behavior        conspirator     
 
2962
336     088303  37      feminine        accruing        label   FAS
 
2963
337     088305  37      metaphysically  relics  university      
 
2964
338     088402  37      sanding rackets cleansed        FAS
 
2965
339     088501  36      contributorily  Fischbein       ballgown        
 
2966
340     088502  36      receivers       phony   starlet 
 
2967
341     088503  36      adjourn cross   aqueous 
 
2968
342     098001  58      straggled       cleanup portrayal       A
 
2969
343     098002  58      druggists       conspirator     despising       W
 
2970
344     098003  58      thanking        label   distort W
 
2971
345     098004  58      ostrich university      palmed  
 
2972
346     098005  58      hopelessness    cleansed        faced   
 
2973
347     098006  58      Eurydice        ballgown        silverware      
 
2974
348     141903  29      excitation      starlet assessor        
 
2975
349     098008  58      presumes        aqueous spiders 
 
2976
350     098009  58      imaginable      portrayal       artificially    
 
2977
351     098010  58      concoct despising       reminiscence    
 
2978
352     098011  58      peering distort Mexican 
 
2979
353     098012  58      Phelps  palmed  obnoxious       
 
2980
354     098013  58      ferociousness   faced   fragile 
 
2981
355     098014  58      sentences       silverware      apprehensible   
 
2982
356     098015  58      unlocks assessor        births  
 
2983
357     098016  58      engrossing      spiders garages 
 
2984
358     098017  58      Ruth    artificially    panty   
 
2985
359     098018  58      tying   reminiscence    anteater        
 
2986
360     098019  58      exclaimers      Mexican displacement    A
 
2987
361     098020  58      synergy obnoxious       drovers A
 
2988
362     098021  58      Huey    fragile patenting       A
 
2989
363     098022  58      merging apprehensible   far     A
 
2990
364     098023  58      judges  births  shrieks 
 
2991
365     098024  58      Shylock garages aligning        W
 
2992
366     098025  37      Miltonism       panty   pragmatism      
 
2993
367     106001  36      hen     anteater        fevers  W
 
2994
368     108001  36      honeybee        displacement    reexamines      A
 
2995
369     108002  36      towers  drovers occupancies     
 
2996
370     108003  36      dilutes patenting       sweats  FAS
 
2997
371     108004  36      numerals        far     modulators      
 
2998
372     108005  36      democracy       shrieks demand  W
 
2999
373     108007  36      Ibero-  aligning        Madeira 
 
3000
374     108008  36      invalids        pragmatism      Viennese        W
 
3001
375     108009  36      behavior        fevers  chillier        W
 
3002
376     108010  36      accruing        reexamines      wildcats        FAS
 
3003
377     108011  36      relics  occupancies     gentle  
 
3004
378     108012  36      rackets sweats  Angles  W
 
3005
379     108101  36      Fischbein       modulators      accuracies      
 
3006
380     108102  36      phony   demand  toggle  
 
3007
381     108103  36      cross   Madeira Mendelssohn     W
 
3008
382     108111  50      cleanup Viennese        behaviorally    
 
3009
383     108105  36      conspirator     chillier        Rochford        
 
3010
384     108106  36      label   wildcats        mirror  W
 
3011
385     108107  36      university      gentle  Modula  
 
3012
386     108108  50      cleansed        Angles  clobbering      
 
3013
387     108109  36      ballgown        accuracies      chronography    
 
3014
388     108110  36      starlet toggle  Eskimoizeds     
 
3015
389     108201  36      aqueous Mendelssohn     British W
 
3016
390     108202  36      portrayal       behaviorally    pitfalls        
 
3017
391     108203  36      despising       Rochford        verify  W
 
3018
392     108204  36      distort mirror  scatter FAS
 
3019
393     108205  36      palmed  Modula  Aztecan 
 
3020
394     108301  36      faced   clobbering      acuity  W
 
3021
395     108302  36      silverware      chronography    sinking W
 
3022
396     112101  36      assessor        Eskimoizeds     beasts  FAS
 
3023
397     112102  36      spiders British Witt    W
 
3024
398     113701  36      artificially    pitfalls        physicists      FAS
 
3025
399     116001  36      reminiscence    verify  folksong        A
 
3026
400     116201  36      Mexican scatter strokes FAS
 
3027
401     116301  36      obnoxious       Aztecan crowder 
 
3028
402     116302  36      fragile acuity  merry   
 
3029
403     116601  36      apprehensible   sinking cadenced        
 
3030
404     116602  36      births  beasts  alimony A
 
3031
405     116603  36      garages Witt    principled      A
 
3032
406     116701  36      panty   physicists      golfing 
 
3033
407     116702  36      anteater        folksong        undiscovered    
 
3034
408     118001  36      displacement    strokes irritates       
 
3035
409     118002  36      drovers crowder patriots        A
 
3036
410     118003  36      patenting       merry   rooms   FAS
 
3037
411     118004  36      far     cadenced        towering        W
 
3038
412     118005  36      shrieks alimony displease       
 
3039
413     118006  36      aligning        principled      photosensitive  
 
3040
414     118007  36      pragmatism      golfing inking  
 
3041
415     118008  36      fevers  undiscovered    gainers 
 
3042
416     118101  36      reexamines      irritates       leaning A
 
3043
417     118102  36      occupancies     patriots        hydrant A
 
3044
418     118103  36      sweats  rooms   preserve        
 
3045
419     118202  36      modulators      towering        blinded A
 
3046
420     118203  36      demand  displease       interactions    A
 
3047
421     118204  36      Madeira photosensitive  Barry   
 
3048
422     118302  36      Viennese        inking  whiteness       A
 
3049
423     118304  36      chillier        gainers pastimes        W
 
3050
424     118305  36      wildcats        leaning Edenization     
 
3051
425     118306  36      gentle  hydrant Muscat  
 
3052
426     118307  36      Angles  preserve        assassinated    
 
3053
427     123101  36      accuracies      blinded labeled 
 
3054
428     123102  36      toggle  interactions    glacial A
 
3055
429     123301  36      Mendelssohn     Barry   implied W
 
3056
430     126001  36      behaviorally    whiteness       bibliographies  W
 
3057
431     126002  36      Rochford        pastimes        Buchanan        
 
3058
432     126003  36      mirror  Edenization     forgivably      FAS
 
3059
433     126101  36      Modula  Muscat  innuendo        A
 
3060
434     126301  36      clobbering      assassinated    den     FAS
 
3061
435     126302  36      chronography    labeled submarines      W
 
3062
436     126402  36      Eskimoizeds     glacial mouthful        A
 
3063
437     126601  36      British implied expiring        
 
3064
438     126602  36      pitfalls        bibliographies  unfulfilled     FAS
 
3065
439     126702  36      verify  Buchanan        precession      
 
3066
440     128001  36      scatter forgivably      nullified       
 
3067
441     128002  36      Aztecan innuendo        affects 
 
3068
442     128003  36      acuity  den     Cynthia 
 
3069
443     128004  36      sinking submarines      Chablis A
 
3070
444     128005  36      beasts  mouthful        betterments     FAS
 
3071
445     128007  36      Witt    expiring        advertising     
 
3072
446     128008  36      physicists      unfulfilled     rubies  A
 
3073
447     128009  36      folksong        precession      southwest       FAS
 
3074
448     128010  36      strokes nullified       superstitious   A
 
3075
449     128011  36      crowder affects tabernacle      W
 
3076
450     128012  36      merry   Cynthia silk    A
 
3077
451     128013  36      cadenced        Chablis handsomest      A
 
3078
452     128014  36      alimony betterments     Persian A
 
3079
453     128015  36      principled      advertising     analog  W
 
3080
454     128016  36      golfing rubies  complex W
 
3081
455     128017  36      undiscovered    southwest       Taoist  
 
3082
456     128018  36      irritates       superstitious   suspend 
 
3083
457     128019  36      patriots        tabernacle      relegated       
 
3084
458     128020  36      rooms   silk    awesome W
 
3085
459     128021  36      towering        handsomest      Bruxelles       
 
3086
460     128022  36      displease       Persian imprecisely     A
 
3087
461     128023  36      photosensitive  analog  televise        
 
3088
462     128101  36      inking  complex braking 
 
3089
463     128102  36      gainers Taoist  true    FAS
 
3090
464     128103  36      leaning suspend disappointing   FAS
 
3091
465     128104  36      hydrant relegated       navally W
 
3092
466     128106  36      preserve        awesome circus  
 
3093
467     128107  36      blinded Bruxelles       beetles 
 
3094
468     128108  36      interactions    imprecisely     trumps  
 
3095
469     128202  36      Barry   televise        fourscore       W
 
3096
470     128203  36      whiteness       braking Blackfoots      
 
3097
471     128301  36      pastimes        true    Grady   
 
3098
472     128302  36      Edenization     disappointing   quiets  FAS
 
3099
473     128303  36      Muscat  navally floundered      FAS
 
3100
474     128304  36      assassinated    circus  profundity      W
 
3101
475     128305  36      labeled beetles Garrisonian     W
 
3102
476     128307  36      glacial trumps  Strauss 
 
3103
477     128401  36      implied fourscore       cemented        FAS
 
3104
478     128502  36      bibliographies  Blackfoots      contrition      A
 
3105
479     128503  36      Buchanan        Grady   mutations       
 
3106
480     128504  36      forgivably      quiets  exhibits        W
 
3107
481     128505  36      innuendo        floundered      tits    
 
3108
482     128601  36      den     profundity      mate    A
 
3109
483     128603  36      submarines      Garrisonian     arches  
 
3110
484     128604  36      mouthful        Strauss Moll    
 
3111
485     128702  36      expiring        cemented        ropers  
 
3112
486     128703  36      unfulfilled     contrition      bombast 
 
3113
487     128704  36      precession      mutations       difficultly     A
 
3114
488     138001  36      nullified       exhibits        adsorption      
 
3115
489     138002  36      affects tits    definiteness    FAS
 
3116
490     138003  36      Cynthia mate    cultivation     A
 
3117
491     138004  36      Chablis arches  heals   A
 
3118
492     138005  36      betterments     Moll    Heusen  W
 
3119
493     138006  36      advertising     ropers  target  FAS
 
3120
494     138007  36      rubies  bombast cited   A
 
3121
495     138008  36      southwest       difficultly     congresswoman   W
 
3122
496     138009  36      superstitious   adsorption      Katherine       
 
3123
497     138102  36      tabernacle      definiteness    titter  A
 
3124
498     138103  36      silk    cultivation     aspire  A
 
3125
499     138104  36      handsomest      heals   Mardis  
 
3126
500     138105  36      Persian Heusen  Nadia   W
 
3127
501     138201  36      analog  target  estimating      FAS
 
3128
502     138302  36      complex cited   stuck   A
 
3129
503     138303  36      Taoist  congresswoman   fifteenth       A
 
3130
504     138304  36      suspend Katherine       Colombo 
 
3131
505     138401  29      relegated       titter  survey  A
 
3132
506     140102  29      awesome aspire  staffing        
 
3133
507     140103  29      Bruxelles       Mardis  obtain  
 
3134
508     140104  29      imprecisely     Nadia   loaded  
 
3135
509     140105  29      televise        estimating      slaughtered     
 
3136
510     140201  29      braking stuck   lights  A
 
3137
511     140701  29      true    fifteenth       circumference   
 
3138
512     141501  29      disappointing   Colombo dull    A
 
3139
513     141502  29      navally survey  weekly  A
 
3140
514     141901  29      circus  staffing        wetness 
 
3141
515     141902  29      beetles obtain  visualized      
 
3142
516     142101  29      trumps  loaded  Tannenbaum      
 
3143
517     142102  29      fourscore       slaughtered     moribund        
 
3144
518     142103  29      Blackfoots      lights  demultiplex     
 
3145
519     142701  29      Grady   circumference   lockings        
 
3146
520     143001  29      quiets  dull    thugs   FAS
 
3147
521     143501  29      floundered      weekly  unnerves        
 
3148
522     143502  29      profundity      wetness abut    
 
3149
523     148001  29      Garrisonian     visualized      Chippewa        A
 
3150
524     148002  29      Strauss Tannenbaum      stratifications A
 
3151
525     148003  29      cemented        moribund        signaled        
 
3152
526     148004  29      contrition      demultiplex     Italianizes     A
 
3153
527     148005  29      mutations       lockings        algorithmic     A
 
3154
528     148006  29      exhibits        thugs   paranoid        FAS
 
3155
529     148007  29      tits    unnerves        camping A
 
3156
530     148009  29      mate    abut    signifying      A
 
3157
531     148010  29      arches  Chippewa        Patrice W
 
3158
532     148011  29      Moll    stratifications search  A
 
3159
533     148012  29      ropers  signaled        Angeles A
 
3160
534     148013  29      bombast Italianizes     semblance       
 
3161
535     148023  36      difficultly     algorithmic     taxed   
 
3162
536     148015  29      adsorption      paranoid        Beatrice        
 
3163
537     148016  29      definiteness    camping retrace 
 
3164
538     148017  29      cultivation     signifying      lockout 
 
3165
539     148018  29      heals   Patrice grammatic       
 
3166
540     148019  29      Heusen  search  helmsman        
 
3167
541     148020  29      target  Angeles uniform W
 
3168
542     148021  29      cited   semblance       hamming 
 
3169
543     148022  29      congresswoman   taxed   disobedience    
 
3170
544     148101  29      Katherine       Beatrice        captivated      A
 
3171
545     148102  29      titter  retrace transferals     A
 
3172
546     148201  29      aspire  lockout cartographer    A
 
3173
547     148401  29      Mardis  grammatic       aims    FAS
 
3174
548     148402  29      Nadia   helmsman        Pakistani       
 
3175
549     148501  29      estimating      uniform burglarized     FAS
 
3176
550     148502  29      stuck   hamming saucepans       A
 
3177
551     148503  29      fifteenth       disobedience    lacerating      A
 
3178
552     148504  29      Colombo captivated      corny   
 
3179
553     148601  29      survey  transferals     megabytes       FAS
 
3180
554     148602  29      staffing        cartographer    chancellor      
 
3181
555     150701  29      obtain  aims    bulk    A
 
3182
556     152101  29      loaded  Pakistani       commits A
 
3183
557     152102  29      slaughtered     burglarized     meson   W
 
3184
558     155202  36      lights  saucepans       deputies        
 
3185
559     155203  29      circumference   lacerating      northeaster     A
 
3186
560     155204  29      dull    corny   dipole  
 
3187
561     155205  29      weekly  megabytes       machining       0
 
3188
562     156001  29      wetness chancellor      therefore       
 
3189
563     156002  29      visualized      bulk    Telefunken      
 
3190
564     156102  29      Tannenbaum      commits salvaging       
 
3191
565     156301  29      moribund        meson   Corinthianizes  A
 
3192
566     156302  29      demultiplex     deputies        restlessly      A
 
3193
567     156303  29      lockings        northeaster     bromides        
 
3194
568     156304  29      thugs   dipole  generalized     A
 
3195
569     156305  29      unnerves        machining       mishaps 
 
3196
570     156306  29      abut    therefore       quelling        
 
3197
571     156501  29      Chippewa        Telefunken      spiritual       A
 
3198
572     158001  29      stratifications salvaging       beguiles        FAS
 
3199
573     158002  29      signaled        Corinthianizes  Trobriand       FAS
 
3200
574     158101  29      Italianizes     restlessly      fleeing A
 
3201
575     158102  29      algorithmic     bromides        Armour  A
 
3202
576     158103  29      paranoid        generalized     chin    A
 
3203
577     158201  29      camping mishaps provers A
 
3204
578     158202  29      signifying      quelling        aeronautic      A
 
3205
579     158203  29      Patrice spiritual       voltage W
 
3206
580     158204  29      search  beguiles        sash    
 
3207
581     158301  29      Angeles Trobriand       anaerobic       A
 
3208
582     158302  29      semblance       fleeing simultaneous    A
 
3209
583     158303  29      taxed   Armour  accumulating    A
 
3210
584     158304  29      Beatrice        chin    Medusan A
 
3211
585     158305  29      retrace provers shouted A
 
3212
586     158306  29      lockout aeronautic      freakish        
 
3213
587     158501  29      grammatic       voltage index   FAS
 
3214
588     160301  29      helmsman        sash    commercially    
 
3215
589     166101  50      uniform anaerobic       mistiness       A
 
3216
590     166102  50      hamming simultaneous    endpoint        
 
3217
591     168001  29      disobedience    accumulating    straight        A
 
3218
592     168002  29      captivated      Medusan flurried        
 
3219
593     168003  29      transferals     shouted denotative      A
 
3220
594     168101  29      cartographer    freakish        coming  FAS
 
3221
595     168102  29      aims    index   commencements   FAS
 
3222
596     168103  29      Pakistani       commercially    gentleman       
 
3223
597     168104  29      burglarized     mistiness       gifted  
 
3224
598     168202  29      saucepans       endpoint        Shanghais       
 
3225
599     168301  29      lacerating      straight        sportswriting   A
 
3226
600     168502  29      corny   flurried        sloping A
 
3227
601     168503  29      megabytes       denotative      navies  
 
3228
602     168601  29      chancellor      coming  leaflet A
 
3229
603     173001  40      bulk    commencements   shooter 
 
3230
604     173701  40      commits gentleman       Joplin  FAS
 
3231
605     173702  40      meson   gifted  babies  
 
3232
606     176001  40      deputies        Shanghais       subdivision     FAS
 
3233
607     176101  40      northeaster     sportswriting   burstiness      W
 
3234
608     176201  40      dipole  sloping belted  FAS
 
3235
609     176401  40      machining       navies  assails FAS
 
3236
610     176501  40      therefore       leaflet admiring        W
 
3237
611     176601  40      Telefunken      shooter swaying 0
 
3238
612     176602  40      salvaging       Joplin  Goldstine       FAS
 
3239
613     176603  40      Corinthianizes  babies  fitting 
 
3240
614     178001  40      restlessly      subdivision     Norwalk W
 
3241
615     178002  40      bromides        burstiness      weakening       W
 
3242
616     178003  40      generalized     belted  analogy FAS
 
3243
617     178004  40      mishaps assails deludes 
 
3244
618     178005  40      quelling        admiring        cokes   
 
3245
619     178006  40      spiritual       swaying Clayton 
 
3246
620     178007  40      beguiles        Goldstine       exhausts        
 
3247
621     178008  40      Trobriand       fitting causality       
 
3248
622     178101  40      fleeing Norwalk sating  FAS
 
3249
623     178102  40      Armour  weakening       icon    
 
3250
624     178103  40      chin    analogy throttles       
 
3251
625     178201  40      provers deludes communicants    FAS
 
3252
626     178202  40      aeronautic      cokes   dehydrate       FAS
 
3253
627     178301  40      voltage Clayton priceless       FAS
 
3254
628     178302  40      sash    exhausts        publicly        
 
3255
629     178401  40      anaerobic       causality       incidentals     FAS
 
3256
630     178402  40      simultaneous    sating  commonplace     
 
3257
631     178403  40      accumulating    icon    mumbles 
 
3258
632     178404  40      Medusan throttles       furthermore     W
 
3259
633     178501  40      shouted communicants    cautioned       W
 
3260
634     186002  37      freakish        dehydrate       parametrized    A
 
3261
635     186102  37      index   priceless       registration    A
 
3262
636     186201  40      commercially    publicly        sadly   FAS
 
3263
637     186202  40      mistiness       incidentals     positioning     
 
3264
638     186203  40      endpoint        commonplace     babysitting     
 
3265
639     186302  37      straight        mumbles eternal A
 
3266
640     188007  37      flurried        furthermore     hoarder 
 
3267
641     188008  37      denotative      cautioned       congregates     
 
3268
642     188009  37      coming  parametrized    rains   
 
3269
643     188010  37      commencements   registration    workers W
 
3270
644     188011  37      gentleman       sadly   sags    A
 
3271
645     188012  37      gifted  positioning     unplug  W
 
3272
646     188013  37      Shanghais       babysitting     garage  A
 
3273
647     188014  37      sportswriting   eternal boulder A
 
3274
648     188015  37      sloping hoarder hollowly        A
 
3275
649     188016  37      navies  congregates     specifics       
 
3276
650     188017  37      leaflet rains   Teresa  
 
3277
651     188102  37      shooter workers Winsett 
 
3278
652     188103  37      Joplin  sags    convenient      A
 
3279
653     188202  37      babies  unplug  buckboards      FAS
 
3280
654     188301  40      subdivision     garage  amenities       
 
3281
655     188302  40      burstiness      boulder resplendent     FAS
 
3282
656     188303  40      belted  hollowly        priding FAS
 
3283
657     188401  37      assails specifics       configurations  
 
3284
658     188402  37      admiring        Teresa  untidiness      A
 
3285
659     188503  37      swaying Winsett Brice   W
 
3286
660     188504  37      Goldstine       convenient      sews    FAS
 
3287
661     188505  37      fitting buckboards      participated    
 
3288
662     190701  37      Norwalk amenities       Simon   FAS
 
3289
663     190703  50      weakening       resplendent     certificates    
 
3290
664     191701  37      analogy priding Fitzpatrick     
 
3291
665     191702  37      deludes configurations  Evanston        A
 
3292
666     191703  37      cokes   untidiness      misted  
 
3293
667     196001  37      Clayton Brice   textures        A
 
3294
668     196002  37      exhausts        sews    save    
 
3295
669     196003  37      causality       participated    count   
 
3296
670     196101  37      sating  Simon   rightful        A
 
3297
671     196103  37      icon    certificates    chaperone       
 
3298
672     196104  37      throttles       Fitzpatrick     Lizzy   A
 
3299
673     196201  37      communicants    Evanston        clenched        A
 
3300
674     196202  37      dehydrate       misted  effortlessly    
 
3301
675     196203  37      priceless       textures        accessed        
 
3302
676     198001  37      publicly        save    beaters A
 
3303
677     198003  37      incidentals     count   Hornblower      FAS
 
3304
678     198004  37      commonplace     rightful        vests   A
 
3305
679     198005  37      mumbles chaperone       indulgences     FAS
 
3306
680     198006  37      furthermore     Lizzy   infallibly      A
 
3307
681     198007  37      cautioned       clenched        unwilling       FAS
 
3308
682     198008  37      parametrized    effortlessly    excrete FAS
 
3309
683     198009  37      registration    accessed        spools  A
 
3310
684     198010  37      sadly   beaters crunches        FAS
 
3311
685     198011  37      positioning     Hornblower      overestimating  FAS
 
3312
686     198012  37      babysitting     vests   ineffective     
 
3313
687     198013  37      eternal indulgences     humiliation     A
 
3314
688     198014  37      hoarder infallibly      sophomore       
 
3315
689     198015  37      congregates     unwilling       star    
 
3316
690     198017  37      rains   excrete rifles  
 
3317
691     198018  37      workers spools  dialysis        
 
3318
692     198019  37      sags    crunches        arriving        
 
3319
693     198020  37      unplug  overestimating  indulge 
 
3320
694     198021  37      garage  ineffective     clockers        
 
3321
695     198022  37      boulder humiliation     languages       
 
3322
696     198023  50      hollowly        sophomore       Antarctica      A
 
3323
697     198024  37      specifics       star    percentage      
 
3324
698     198101  37      Teresa  rifles  ceiling A
 
3325
699     198103  37      Winsett dialysis        specification   
 
3326
700     198105  37      convenient      arriving        regimented      A
 
3327
701     198106  37      buckboards      indulge ciphers 
 
3328
702     198201  37      amenities       clockers        pictures        A
 
3329
703     198204  37      resplendent     languages       serpents        A
 
3330
704     198301  53      priding Antarctica      allot   A
 
3331
705     198302  53      configurations  percentage      realized        A
 
3332
706     198303  53      untidiness      ceiling mayoral A
 
3333
707     198304  53      Brice   specification   opaquely        A
 
3334
708     198401  37      sews    regimented      hostess FAS
 
3335
709     198402  37      participated    ciphers fiftieth        
 
3336
710     198403  37      Simon   pictures        incorrectly     
 
3337
711     202101  37      certificates    serpents        decomposition   FAS
 
3338
712     202301  37      Fitzpatrick     allot   stranglings     
 
3339
713     202302  37      Evanston        realized        mixture FAS
 
3340
714     202303  37      misted  mayoral electroencephalography  FAS
 
3341
715     202304  37      textures        opaquely        similarities    FAS
 
3342
716     202305  37      save    hostess charges W
 
3343
717     202601  37      count   fiftieth        freest  FAS
 
3344
718     202602  37      rightful        incorrectly     Greenberg       FAS
 
3345
719     202605  37      chaperone       decomposition   tinting 
 
3346
720     202606  37      Lizzy   stranglings     expelled        W
 
3347
721     202607  37      clenched        mixture warm    
 
3348
722     202901  37      effortlessly    electroencephalography  smoothed        
 
3349
723     202902  37      accessed        similarities    deductions      FAS
 
3350
724     202903  37      beaters charges Romano  W
 
3351
725     202904  37      Hornblower      freest  bitterroot      
 
3352
726     202907  37      vests   Greenberg       corset  
 
3353
727     202908  37      indulgences     tinting securing        
 
3354
728     203101  37      infallibly      expelled        environing      FAS
 
3355
729     203103  37      unwilling       warm    cute    
 
3356
730     203104  37      excrete smoothed        Crays   
 
3357
731     203105  37      spools  deductions      heiress FAS
 
3358
732     203401  37      crunches        Romano  inform  FAS
 
3359
733     203402  37      overestimating  bitterroot      avenge  
 
3360
734     203404  37      ineffective     corset  universals      
 
3361
735     203901  37      humiliation     securing        Kinsey  W
 
3362
736     203902  37      sophomore       environing      ravines FAS
 
3363
737     203903  37      star    cute    bestseller      
 
3364
738     203906  37      rifles  Crays   equilibrium     
 
3365
739     203907  37      dialysis        heiress extents 0
 
3366
740     203908  37      arriving        inform  relatively      
 
3367
741     203909  37      indulge avenge  pressure        FAS
 
3368
742     206101  37      clockers        universals      critiques       FAS
 
3369
743     206201  37      languages       Kinsey  befouled        
 
3370
744     206202  37      Antarctica      ravines rightfully      FAS
 
3371
745     206203  37      percentage      bestseller      mechanizing     FAS
 
3372
746     206206  37      ceiling equilibrium     Latinizes       
 
3373
747     206207  37      specification   extents timesharing     
 
3374
748     206208  37      regimented      relatively      Aden    
 
3375
749     208001  37      ciphers pressure        embassies       
 
3376
750     208002  37      pictures        critiques       males   FAS
 
3377
751     208003  37      serpents        befouled        shapelessly     FAS
 
3378
752     208004  37      allot   rightfully      genres  FAS
 
3379
753     208008  37      realized        mechanizing     mastering       
 
3380
754     208009  37      mayoral Latinizes       Newtonian       
 
3381
755     208010  37      opaquely        timesharing     finishers       FAS
 
3382
756     208011  37      hostess Aden    abates  
 
3383
757     208101  37      fiftieth        embassies       teem    
 
3384
758     208102  37      incorrectly     males   kiting  FAS
 
3385
759     208103  37      decomposition   shapelessly     stodgy  FAS
 
3386
760     208104  37      stranglings     genres  scalps  FAS
 
3387
761     208105  37      mixture mastering       feed    FAS
 
3388
762     208110  37      electroencephalography  Newtonian       guitars 
 
3389
763     208111  37      similarities    finishers       airships        
 
3390
764     208112  37      charges abates  store   
 
3391
765     208113  37      freest  teem    denounces       
 
3392
766     208201  37      Greenberg       kiting  Pyle    FAS
 
3393
767     208203  37      tinting stodgy  Saxony  
 
3394
768     208301  37      expelled        scalps  serializations  FAS
 
3395
769     208302  37      warm    feed    Peruvian        FAS
 
3396
770     208305  37      smoothed        guitars taxonomically   FAS
 
3397
771     208401  37      deductions      airships        kingdom A
 
3398
772     208402  37      Romano  store   stint   A
 
3399
773     208403  37      bitterroot      denounces       Sault   A
 
3400
774     208404  37      corset  Pyle    faithful        
 
3401
775     208501  37      securing        Saxony  Ganymede        FAS
 
3402
776     208502  37      environing      serializations  tidiness        FAS
 
3403
777     208503  37      cute    Peruvian        gainful FAS
 
3404
778     208504  37      Crays   taxonomically   contrary        FAS
 
3405
779     208505  37      heiress kingdom Tipperary       FAS
 
3406
780     210101  37      inform  stint   tropics W
 
3407
781     210102  37      avenge  Sault   theorizers      
 
3408
782     210103  37      universals      faithful        renew   0
 
3409
783     210104  37      Kinsey  Ganymede        already 
 
3410
784     210105  37      ravines tidiness        terminal        
 
3411
785     210106  37      bestseller      gainful Hegelian        
 
3412
786     210107  37      equilibrium     contrary        hypothesizer    
 
3413
787     210401  37      extents Tipperary       warningly       FAS
 
3414
788     213201  37      relatively      tropics journalizing    FAS
 
3415
789     213203  37      pressure        theorizers      nested  
 
3416
790     213204  37      critiques       renew   Lars    
 
3417
791     213205  37      befouled        already saplings        
 
3418
792     213206  37      rightfully      terminal        foothill        
 
3419
793     213207  37      mechanizing     Hegelian        labeled 
 
3420
794     216101  37      Latinizes       hypothesizer    imperiously     FAS
 
3421
795     216103  37      timesharing     warningly       reporters       FAS
 
3422
796     218001  37      Aden    journalizing    furnishings     FAS
 
3423
797     218002  37      embassies       nested  precipitable    FAS
 
3424
798     218003  37      males   Lars    discounts       FAS
 
3425
799     218004  37      shapelessly     saplings        excises FAS
 
3426
800     143503  50      genres  foothill        Stalin  
 
3427
801     218006  37      mastering       labeled despot  FAS
 
3428
802     218007  37      Newtonian       imperiously     ripeness        FAS
 
3429
803     218008  37      finishers       reporters       Arabia  
 
3430
804     218009  37      abates  furnishings     unruly  
 
3431
805     218010  37      teem    precipitable    mournfulness    
 
3432
806     218011  37      kiting  discounts       boom    FAS
 
3433
807     218020  37      stodgy  excises slaughter       A
 
3434
808     218021  50      scalps  Stalin  Sabine  
 
3435
809     218022  37      feed    despot  handy   FAS
 
3436
810     218023  37      guitars ripeness        rural   
 
3437
811     218024  37      airships        Arabia  organizer       
 
3438
812     218101  37      store   unruly  shipyard        FAS
 
3439
813     218102  37      denounces       mournfulness    civics  FAS
 
3440
814     218103  37      Pyle    boom    inaccuracy      FAS
 
3441
815     218201  37      Saxony  slaughter       rules   FAS
 
3442
816     218202  37      serializations  Sabine  juveniles       FAS
 
3443
817     218203  37      Peruvian        handy   comprised       W
 
3444
818     218204  37      taxonomically   rural   investigations  
 
3445
819     218205  37      kingdom organizer       stabilizes      A
 
3446
820     218301  37      stint   shipyard        seminaries      FAS
 
3447
821     218302  37      Sault   civics  Hunter  A
 
3448
822     218401  37      faithful        inaccuracy      sporty  FAS
 
3449
823     218402  37      Ganymede        rules   test    FAS
 
3450
824     218403  37      tidiness        juveniles       weasels 
 
3451
825     218404  37      gainful comprised       CERN    
 
3452
826     218407  37      contrary        investigations  tempering       
 
3453
827     218408  37      Tipperary       stabilizes      afore   FAS
 
3454
828     218409  37      tropics seminaries      Galatean        
 
3455
829     218410  37      theorizers      Hunter  techniques      W
 
3456
830     226001  37      renew   sporty  error   
 
3457
831     226002  37      already test    veranda 
 
3458
832     226003  37      terminal        weasels severely        
 
3459
833     226004  37      Hegelian        CERN    Cassites        FAS
 
3460
834     226005  37      hypothesizer    tempering       forthcoming     
 
3461
835     226006  37      warningly       afore   guides  
 
3462
836     226007  37      journalizing    Galatean        vanish  FAS
 
3463
837     226008  37      nested  techniques      lied    A
 
3464
838     226203  37      Lars    error   sawtooth        FAS
 
3465
839     226204  37      saplings        veranda fated   FAS
 
3466
840     226205  37      foothill        severely        gradually       
 
3467
841     226206  37      labeled Cassites        widens  
 
3468
842     226207  37      imperiously     forthcoming     preclude        
 
3469
843     226208  37      reporters       guides  Jobrel  
 
3470
844     226209  37      furnishings     vanish  hooker  
 
3471
845     226210  37      precipitable    lied    rainstorm       
 
3472
846     226211  37      discounts       sawtooth        disconnects     
 
3473
847     228001  37      excises fated   cruelty 
 
3474
848     228004  37      Stalin  gradually       exponentials    A
 
3475
849     228005  37      despot  widens  affective       A
 
3476
850     228006  37      ripeness        preclude        arteries        
 
3477
851     228007  37      Arabia  Jobrel  Crosby  FAS
 
3478
852     228008  37      unruly  hooker  acquaint        
 
3479
853     228009  37      mournfulness    rainstorm       evenhandedly    
 
3480
854     228101  37      boom    disconnects     percentage      
 
3481
855     228108  37      slaughter       cruelty disobedience    
 
3482
856     228109  37      Sabine  exponentials    humility        
 
3483
857     228110  37      handy   affective       gleaning        A
 
3484
858     228111  37      rural   arteries        petted  A
 
3485
859     228112  37      organizer       Crosby  bloater A
 
3486
860     228113  37      shipyard        acquaint        minion  A
 
3487
861     228114  37      civics  evenhandedly    marginal        A
 
3488
862     228115  37      inaccuracy      percentage      apiary  A
 
3489
863     228116  37      rules   disobedience    measures        
 
3490
864     228117  37      juveniles       humility        precaution      
 
3491
865     228118  37      comprised       gleaning        repelled        
 
3492
866     228119  37      investigations  petted  primary FAS
 
3493
867     228120  37      stabilizes      bloater coverings       
 
3494
868     228121  37      seminaries      minion  Artemia A
 
3495
869     228122  37      Hunter  marginal        navigate        
 
3496
870     228201  37      sporty  apiary  spatial 
 
3497
871     228206  37      test    measures        Gurkha  
 
3498
872     228207  37      weasels precaution      meanwhile       A
 
3499
873     228208  37      CERN    repelled        Melinda A
 
3500
874     228209  37      tempering       primary Butterfield     
 
3501
875     228210  37      afore   coverings       Aldrich A
 
3502
876     228211  37      Galatean        Artemia previewing      A
 
3503
877     228212  37      techniques      navigate        glut    A
 
3504
878     228213  37      error   spatial unaffected      
 
3505
879     228214  37      veranda Gurkha  inmate  
 
3506
880     228301  37      severely        meanwhile       mineral 
 
3507
881     228305  37      Cassites        Melinda impending       A
 
3508
882     228306  37      forthcoming     Butterfield     meditation      A
 
3509
883     228307  37      guides  Aldrich ideas   
 
3510
884     228308  37      vanish  previewing      miniaturizes    W
 
3511
885     228309  37      lied    glut    lewdly  
 
3512
886     228310  37      sawtooth        unaffected      title   
 
3513
887     228311  37      fated   inmate  youthfulness    
 
3514
888     228312  37      gradually       mineral creak   FAS
 
3515
889     228313  37      widens  impending       Chippewa        
 
3516
890     228314  37      preclude        meditation      clamored        
 
3517
891     228401  65      Jobrel  ideas   freezes 
 
3518
892     228402  65      hooker  miniaturizes    forgivably      FAS
 
3519
893     228403  65      rainstorm       lewdly  reduce  FAS
 
3520
894     228404  65      disconnects     title   McGovern        W
 
3521
895     228405  65      cruelty youthfulness    Nazis   W
 
3522
896     228406  65      exponentials    creak   epistle W
 
3523
897     228407  65      affective       Chippewa        socializes      W
 
3524
898     228408  65      arteries        clamored        conceptions     
 
3525
899     228409  65      Crosby  freezes Kevin   
 
3526
900     228410  65      acquaint        forgivably      uncovering      
 
3527
901     230301  37      evenhandedly    reduce  chews   FAS
 
3528
902     230302  37      percentage      McGovern        appendixes      FAS
 
3529
903     230303  37      disobedience    Nazis   raining 
 
3530
904     018062  37      humility        epistle infest  
 
3531
905     230501  37      gleaning        socializes      compartment     
 
3532
906     230502  37      petted  conceptions     minting 
 
3533
907     230503  37      bloater Kevin   ducks   
 
3534
908     230504  37      minion  uncovering      roped   A
 
3535
909     230505  37      marginal        chews   waltz   
 
3536
910     230506  37      apiary  appendixes      Lillian 
 
3537
911     230507  37      measures        raining repressions     A
 
3538
912     230508  37      precaution      infest  chillingly      
 
3539
913     230509  37      repelled        compartment     noncritical     
 
3540
914     230901  37      primary minting lithograph      
 
3541
915     230902  37      coverings       ducks   spongers        
 
3542
916     230903  37      Artemia roped   parenthood      
 
3543
917     230904  37      navigate        waltz   posed   
 
3544
918     230905  37      spatial Lillian instruments     
 
3545
919     230906  37      Gurkha  repressions     filial  
 
3546
920     230907  37      meanwhile       chillingly      fixedly 
 
3547
921     230908  37      Melinda noncritical     relives 
 
3548
922     230909  37      Butterfield     lithograph      Pandora 
 
3549
923     230910  37      Aldrich spongers        watering        A
 
3550
924     230911  37      previewing      parenthood      ungrateful      
 
3551
925     230912  37      glut    posed   secures 
 
3552
926     230913  37      unaffected      instruments     chastisers      
 
3553
927     230914  37      inmate  filial  icon    
 
3554
928     231304  37      mineral fixedly reuniting       A
 
3555
929     231305  37      impending       relives imagining       A
 
3556
930     231306  37      meditation      Pandora abiding A
 
3557
931     231307  37      ideas   watering        omnisciently    
 
3558
932     231308  37      miniaturizes    ungrateful      Britannic       
 
3559
933     231309  37      lewdly  secures scholastics     A
 
3560
934     231310  37      title   chastisers      mechanics       A
 
3561
935     231311  37      youthfulness    icon    humidly A
 
3562
936     231312  37      creak   reuniting       masterpiece     
 
3563
937     231313  37      Chippewa        imagining       however 
 
3564
938     231314  37      clamored        abiding Mendelian       
 
3565
939     231315  37      freezes omnisciently    jarred  
 
3566
940     232102  37      forgivably      Britannic       scolds  
 
3567
941     232103  37      reduce  scholastics     infatuate       
 
3568
942     232104  37      McGovern        mechanics       willed  A
 
3569
943     232105  37      Nazis   humidly joyfully        
 
3570
944     232106  37      epistle masterpiece     Microsoft       
 
3571
945     232107  37      socializes      however fibrosities     
 
3572
946     232108  37      conceptions     Mendelian       Baltimorean     
 
3573
947     232601  37      Kevin   jarred  equestrian      
 
3574
948     232602  37      uncovering      scolds  Goodrich        
 
3575
949     232603  37      chews   infatuate       apish   A
 
3576
950     232605  37      appendixes      willed  Adlerian        
 
3577
5950    1232605 37      appendixes      willed  Adlerian        
 
3578
5951    1232606 37      appendixes      willed  Adlerian        
 
3579
5952    1232607 37      appendixes      willed  Adlerian        
 
3580
5953    1232608 37      appendixes      willed  Adlerian        
 
3581
5954    1232609 37      appendixes      willed  Adlerian        
 
3582
951     232606  37      raining joyfully        Tropez  
 
3583
952     232607  37      infest  Microsoft       nouns   
 
3584
953     232608  37      compartment     fibrosities     distracting     
 
3585
954     232609  37      minting Baltimorean     mutton  
 
3586
955     236104  37      ducks   equestrian      bridgeable      A
 
3587
956     236105  37      roped   Goodrich        stickers        A
 
3588
957     236106  37      waltz   apish   transcontinental        A
 
3589
958     236107  37      Lillian Adlerian        amateurish      
 
3590
959     236108  37      repressions     Tropez  Gandhian        
 
3591
960     236109  37      chillingly      nouns   stratified      
 
3592
961     236110  37      noncritical     distracting     chamberlains    
 
3593
962     236111  37      lithograph      mutton  creditably      
 
3594
963     236112  37      spongers        bridgeable      philosophic     
 
3595
964     236113  37      parenthood      stickers        ores    
 
3596
965     238005  37      posed   transcontinental        Carleton        
 
3597
966     238006  37      instruments     amateurish      tape    A
 
3598
967     238007  37      filial  Gandhian        afloat  A
 
3599
968     238008  37      fixedly stratified      goodness        A
 
3600
969     238009  37      relives chamberlains    welcoming       
 
3601
970     238010  37      Pandora creditably      Pinsky  FAS
 
3602
971     238011  37      watering        philosophic     halting 
 
3603
972     238012  37      ungrateful      ores    bibliography    
 
3604
973     238013  37      secures Carleton        decoding        
 
3605
974     240401  41      chastisers      tape    variance        A
 
3606
975     240402  41      icon    afloat  allowed A
 
3607
976     240901  41      reuniting       goodness        dire    A
 
3608
977     240902  41      imagining       welcoming       dub     A
 
3609
978     241801  41      abiding Pinsky  poisoning       
 
3610
979     242101  41      omnisciently    halting Iraqis  A
 
3611
980     242102  41      Britannic       bibliography    heaving 
 
3612
981     242201  41      scholastics     decoding        population      A
 
3613
982     242202  41      mechanics       variance        bomb    A
 
3614
983     242501  41      humidly allowed Majorca A
 
3615
984     242502  41      masterpiece     dire    Gershwins       
 
3616
985     246201  41      however dub     explorers       
 
3617
986     246202  41      Mendelian       poisoning       libretto        A
 
3618
987     246203  41      jarred  Iraqis  occurred        
 
3619
988     246204  41      scolds  heaving Lagos   
 
3620
989     246205  41      infatuate       population      rats    
 
3621
990     246301  41      willed  bomb    bankruptcies    A
 
3622
991     246302  41      joyfully        Majorca crying  
 
3623
992     248001  41      Microsoft       Gershwins       unexpected      
 
3624
993     248002  41      fibrosities     explorers       accessed        A
 
3625
994     248003  41      Baltimorean     libretto        colorful        A
 
3626
995     248004  41      equestrian      occurred        versatility     A
 
3627
996     248005  41      Goodrich        Lagos   cosy    
 
3628
997     248006  41      apish   rats    Darius  A
 
3629
998     248007  41      Adlerian        bankruptcies    mastering       A
 
3630
999     248008  41      Tropez  crying  Asiaticizations A
 
3631
1000    248009  41      nouns   unexpected      offerers        A
 
3632
1001    248010  41      distracting     accessed        uncles  A
 
3633
1002    248011  41      mutton  colorful        sleepwalk       
 
3634
1003    248012  41      bridgeable      versatility     Ernestine       
 
3635
1004    248013  41      stickers        cosy    checksumming    
 
3636
1005    248014  41      transcontinental        Darius  stopped 
 
3637
1006    248015  41      amateurish      mastering       sicker  
 
3638
1007    248016  41      Gandhian        Asiaticizations Italianization  
 
3639
1008    248017  41      stratified      offerers        alphabetic      
 
3640
1009    248018  41      chamberlains    uncles  pharmaceutic    
 
3641
1010    248019  41      creditably      sleepwalk       creator 
 
3642
1011    248020  41      philosophic     Ernestine       chess   
 
3643
1012    248021  41      ores    checksumming    charcoal        
 
3644
1013    248101  41      Carleton        stopped Epiphany        A
 
3645
1014    248102  41      tape    sicker  bulldozes       A
 
3646
1015    248201  41      afloat  Italianization  Pygmalion       A
 
3647
1016    248202  41      goodness        alphabetic      caressing       A
 
3648
1017    248203  41      welcoming       pharmaceutic    Palestine       A
 
3649
1018    248204  41      Pinsky  creator regimented      A
 
3650
1019    248205  41      halting chess   scars   A
 
3651
1020    248206  41      bibliography    charcoal        realest A
 
3652
1021    248207  41      decoding        Epiphany        diffusing       A
 
3653
1022    248208  41      variance        bulldozes       clubroom        A
 
3654
1023    248209  41      allowed Pygmalion       Blythe  A
 
3655
1024    248210  41      dire    caressing       ahead   
 
3656
1025    248211  50      dub     Palestine       reviver 
 
3657
1026    250501  34      poisoning       regimented      retransmitting  A
 
3658
1027    250502  34      Iraqis  scars   landslide       
 
3659
1028    250503  34      heaving realest Eiffel  
 
3660
1029    250504  34      population      diffusing       absentee        
 
3661
1030    250505  34      bomb    clubroom        aye     
 
3662
1031    250601  34      Majorca Blythe  forked  A
 
3663
1032    250602  34      Gershwins       ahead   Peruvianizes    
 
3664
1033    250603  34      explorers       reviver clerked 
 
3665
1034    250604  34      libretto        retransmitting  tutor   
 
3666
1035    250605  34      occurred        landslide       boulevard       
 
3667
1036    251001  34      Lagos   Eiffel  shuttered       
 
3668
1037    251002  34      rats    absentee        quotes  A
 
3669
1038    251003  34      bankruptcies    aye     Caltech 
 
3670
1039    251004  34      crying  forked  Mossberg        
 
3671
1040    251005  34      unexpected      Peruvianizes    kept    
 
3672
1041    251301  34      accessed        clerked roundly 
 
3673
1042    251302  34      colorful        tutor   features        A
 
3674
1043    251303  34      versatility     boulevard       imaginable      A
 
3675
1044    251304  34      cosy    shuttered       controller      
 
3676
1045    251305  34      Darius  quotes  racial  
 
3677
1046    251401  34      mastering       Caltech uprisings       A
 
3678
1047    251402  34      Asiaticizations Mossberg        narrowed        A
 
3679
1048    251403  34      offerers        kept    cannot  A
 
3680
1049    251404  34      uncles  roundly vest    
 
3681
1050    251405  34      sleepwalk       features        famine  
 
3682
1051    251406  34      Ernestine       imaginable      sugars  
 
3683
1052    251801  34      checksumming    controller      exterminated    A
 
3684
1053    251802  34      stopped racial  belays  
 
3685
1054    252101  34      sicker  uprisings       Hodges  A
 
3686
1055    252102  34      Italianization  narrowed        translatable    
 
3687
1056    252301  34      alphabetic      cannot  duality A
 
3688
1057    252302  34      pharmaceutic    vest    recording       A
 
3689
1058    252303  34      creator famine  rouses  A
 
3690
1059    252304  34      chess   sugars  poison  
 
3691
1060    252305  34      charcoal        exterminated    attitude        
 
3692
1061    252306  34      Epiphany        belays  dusted  
 
3693
1062    252307  34      bulldozes       Hodges  encompasses     
 
3694
1063    252308  34      Pygmalion       translatable    presentation    
 
3695
1064    252309  34      caressing       duality Kantian 
 
3696
1065    256001  34      Palestine       recording       imprecision     A
 
3697
1066    256002  34      regimented      rouses  saving  
 
3698
1067    256003  34      scars   poison  maternal        
 
3699
1068    256004  34      realest attitude        hewed   
 
3700
1069    256005  34      diffusing       dusted  kerosene        
 
3701
1070    258001  34      clubroom        encompasses     Cubans  
 
3702
1071    258002  34      Blythe  presentation    photographers   
 
3703
1072    258003  34      ahead   Kantian nymph   A
 
3704
1073    258004  34      reviver imprecision     bedlam  A
 
3705
1074    258005  34      retransmitting  saving  north   A
 
3706
1075    258006  34      landslide       maternal        Schoenberg      A
 
3707
1076    258007  34      Eiffel  hewed   botany  A
 
3708
1077    258008  34      absentee        kerosene        curs    
 
3709
1078    258009  34      aye     Cubans  solidification  
 
3710
1079    258010  34      forked  photographers   inheritresses   
 
3711
1080    258011  34      Peruvianizes    nymph   stiller 
 
3712
1081    258101  68      clerked bedlam  t1      A
 
3713
1082    258102  68      tutor   north   suite   A
 
3714
1083    258103  34      boulevard       Schoenberg      ransomer        
 
3715
1084    258104  68      shuttered       botany  Willy   
 
3716
1085    258105  68      quotes  curs    Rena    A
 
3717
1086    258106  68      Caltech solidification  Seattle A
 
3718
1087    258107  68      Mossberg        inheritresses   relaxes A
 
3719
1088    258108  68      kept    stiller exclaim 
 
3720
1089    258109  68      roundly t1      implicated      A
 
3721
1090    258110  68      features        suite   distinguish     
 
3722
1091    258111  68      imaginable      ransomer        assayed 
 
3723
1092    258112  68      controller      Willy   homeowner       
 
3724
1093    258113  68      racial  Rena    and     
 
3725
1094    258201  34      uprisings       Seattle stealth 
 
3726
1095    258202  34      narrowed        relaxes coinciding      A
 
3727
1096    258203  34      cannot  exclaim founder A
 
3728
1097    258204  34      vest    implicated      environing      
 
3729
1098    258205  34      famine  distinguish     jewelry 
 
3730
1099    258301  34      sugars  assayed lemons  A
 
3731
1100    258401  34      exterminated    homeowner       brokenness      A
 
3732
1101    258402  34      belays  and     bedpost A
 
3733
1102    258403  34      Hodges  stealth assurers        A
 
3734
1103    258404  34      translatable    coinciding      annoyers        
 
3735
1104    258405  34      duality founder affixed 
 
3736
1105    258406  34      recording       environing      warbling        
 
3737
1106    258407  34      rouses  jewelry seriously       
 
3738
1107    228123  37      poison  lemons  boasted 
 
3739
1108    250606  34      attitude        brokenness      Chantilly       
 
3740
1109    208405  37      dusted  bedpost Iranizes        
 
3741
1110    212101  37      encompasses     assurers        violinist       
 
3742
1111    218206  37      presentation    annoyers        extramarital    
 
3743
1112    150401  37      Kantian affixed spates  
 
3744
1113    248212  41      imprecision     warbling        cloakroom       
 
3745
1114    128026  00      saving  seriously       gazer   
 
3746
1115    128024  00      maternal        boasted hand    
 
3747
1116    128027  00      hewed   Chantilly       tucked  
 
3748
1117    128025  00      kerosene        Iranizes        gems    
 
3749
1118    128109  00      Cubans  violinist       clinker 
 
3750
1119    128705  00      photographers   extramarital    refiner 
 
3751
1120    126303  00      nymph   spates  callus  
 
3752
1121    128308  00      bedlam  cloakroom       leopards        
 
3753
1122    128204  00      north   gazer   comfortingly    
 
3754
1123    128205  00      Schoenberg      hand    generically     
 
3755
1124    128206  00      botany  tucked  getters 
 
3756
1125    128207  00      curs    gems    sexually        
 
3757
1126    118205  00      solidification  clinker spear   
 
3758
1127    116801  00      inheritresses   refiner serums  
 
3759
1128    116803  00      stiller callus  Italianization  
 
3760
1129    116804  00      t1      leopards        attendants      
 
3761
1130    116802  00      suite   comfortingly    spies   
 
3762
1131    128605  00      ransomer        generically     Anthony 
 
3763
1132    118308  00      Willy   getters planar  
 
3764
1133    113702  00      Rena    sexually        cupped  
 
3765
1134    113703  00      Seattle spear   cleanser        
 
3766
1135    112103  00      relaxes serums  commuters       
 
3767
1136    118009  00      exclaim Italianization  honeysuckle     
 
3768
5136    1118009 00      exclaim Italianization  honeysuckle     
 
3769
1137    138011  00      implicated      attendants      orphanage       
 
3770
1138    138010  00      distinguish     spies   skies   
 
3771
1139    138012  00      assayed Anthony crushers        
 
3772
1140    068304  00      homeowner       planar  Puritan 
 
3773
1141    078009  00      and     cupped  squeezer        
 
3774
1142    108013  00      stealth cleanser        bruises 
 
3775
1143    084004  00      coinciding      commuters       bonfire 
 
3776
1144    083402  00      founder honeysuckle     Colombo 
 
3777
1145    084003  00      environing      orphanage       nondecreasing   
 
3778
1146    088504  00      jewelry skies   innocents       
 
3779
1147    088005  00      lemons  crushers        masked  
 
3780
1148    088007  00      brokenness      Puritan file    
 
3781
1149    088006  00      bedpost squeezer        brush   
 
3782
1150    148025  00      assurers        bruises mutilate        
 
3783
1151    148024  00      annoyers        bonfire mommy   
 
3784
1152    138305  00      affixed Colombo bulkheads       
 
3785
1153    138306  00      warbling        nondecreasing   undeclared      
 
3786
1154    152701  00      seriously       innocents       displacements   
 
3787
1155    148505  00      boasted masked  nieces  
 
3788
1156    158003  00      Chantilly       file    coeducation     
 
3789
1157    156201  00      Iranizes        brush   brassy  
 
3790
1158    156202  00      violinist       mutilate        authenticator   
 
3791
1159    158307  00      extramarital    mommy   Washoe  
 
3792
1160    158402  00      spates  bulkheads       penny   
 
3793
1161    158401  00      cloakroom       undeclared      Flagler 
 
3794
1162    068013  00      gazer   displacements   stoned  
 
3795
1163    068012  00      hand    nieces  cranes  
 
3796
1164    068203  00      tucked  coeducation     masterful       
 
3797
1165    088205  00      gems    brassy  biracial        
 
3798
1166    068704  00      clinker authenticator   steamships      
 
3799
1167    068604  00      refiner Washoe  windmills       
 
3800
1168    158502  00      callus  penny   exploit 
 
3801
1169    123103  00      leopards        Flagler riverfront      
 
3802
1170    148026  00      comfortingly    stoned  sisterly        
 
3803
1171    123302  00      generically     cranes  sharpshoot      
 
3804
1172    076503  00      getters masterful       mittens 
 
3805
1173    126304  00      sexually        biracial        interdependency 
 
3806
1174    068306  00      spear   steamships      policy  
 
3807
1175    143504  00      serums  windmills       unleashing      
 
3808
1176    160201  00      Italianization  exploit pretenders      
 
3809
1177    148028  00      attendants      riverfront      overstatements  
 
3810
1178    148027  00      spies   sisterly        birthed 
 
3811
1179    143505  00      Anthony sharpshoot      opportunism     
 
3812
1180    108014  00      planar  mittens showroom        
 
3813
1181    076104  00      cupped  interdependency compromisingly  
 
3814
1182    078106  00      cleanser        policy  Medicare        
 
3815
1183    126102  00      commuters       unleashing      corresponds     
 
3816
1184    128029  00      honeysuckle     pretenders      hardware        
 
3817
1185    128028  00      orphanage       overstatements  implant 
 
3818
1186    018410  00      skies   birthed Alicia  
 
3819
1187    128110  00      crushers        opportunism     requesting      
 
3820
1188    148506  00      Puritan showroom        produced        
 
3821
1189    123303  00      squeezer        compromisingly  criticizes      
 
3822
1190    123304  00      bruises Medicare        backer  
 
3823
1191    068504  00      bonfire corresponds     positively      
 
3824
1192    068305  00      Colombo hardware        colicky 
 
3825
1193    000000  00      nondecreasing   implant thrillingly     
 
3826
1       000001  00      Omaha   teethe  neat    
 
3827
2       011401  37      breaking        dreaded Steinberg       W
 
3828
3       011402  37      Romans  scholastics     jarring 
 
3829
4       011403  37      intercepted     audiology       tinily  
 
3830
2       011401  37      breaking        dreaded Steinberg       W
 
3831
3       011402  37      Romans  scholastics     jarring 
 
3832
4       011403  37      intercepted     audiology       tinily  
 
3833
REPAIR TABLE t2;
 
3834
Table   Op      Msg_type        Msg_text
 
3835
test.t2 repair  status  OK
 
3836
SELECT * FROM t2;
 
3837
auto    fld1    companynr       fld3    fld4    fld5    fld6
 
3838
1       000001  00      Omaha   teethe  neat    
 
3839
2       011401  37      breaking        dreaded Steinberg       W
 
3840
3       011402  37      Romans  scholastics     jarring 
 
3841
4       011403  37      intercepted     audiology       tinily  
 
3842
5       011501  37      bewilderingly   wallet  balled  
 
3843
6       011701  37      astound parters persist W
 
3844
7       011702  37      admonishing     eschew  attainments     
 
3845
8       011703  37      sumac   quitter fanatic 
 
3846
9       012001  37      flanking        neat    measures        FAS
 
3847
10      012003  37      combed  Steinberg       rightfulness    
 
3848
11      012004  37      subjective      jarring capably 
 
3849
12      012005  37      scatterbrain    tinily  impulsive       
 
3850
13      012301  37      Eulerian        balled  starlet 
 
3851
14      012302  36      dubbed  persist terminators     
 
3852
15      012303  37      Kane    attainments     untying 
 
3853
16      012304  37      overlay fanatic announces       FAS
 
3854
17      012305  37      perturb measures        featherweight   FAS
 
3855
18      012306  37      goblins rightfulness    pessimist       FAS
 
3856
19      012501  37      annihilates     capably daughter        
 
3857
20      012602  37      Wotan   impulsive       decliner        FAS
 
3858
21      012603  37      snatching       starlet lawgiver        
 
3859
22      012604  37      concludes       terminators     stated  
 
3860
23      012605  37      laterally       untying readable        
 
3861
24      012606  37      yelped  announces       attrition       
 
3862
25      012701  37      grazing featherweight   cascade FAS
 
3863
26      012702  37      Baird   pessimist       motors  FAS
 
3864
27      012703  37      celery  daughter        interrogate     
 
3865
28      012704  37      misunderstander decliner        pests   W
 
3866
29      013601  37      handgun lawgiver        stairway        
 
3867
30      013602  37      foldout stated  dopers  FAS
 
3868
31      013603  37      mystic  readable        testicle        W
 
3869
32      013604  37      succumbed       attrition       Parsifal        W
 
3870
33      013605  37      Nabisco cascade leavings        
 
3871
34      013606  37      fingerings      motors  postulation     W
 
3872
35      013607  37      aging   interrogate     squeaking       
 
3873
36      013608  37      afield  pests   contrasted      
 
3874
37      013609  37      ammonium        stairway        leftover        
 
3875
38      013610  37      boat    dopers  whiteners       
 
3876
39      013801  37      intelligibility testicle        erases  W
 
3877
40      013802  37      Augustine       Parsifal        Punjab  W
 
3878
41      013803  37      teethe  leavings        Merritt 
 
3879
42      013804  37      dreaded postulation     Quixotism       
 
3880
43      013901  37      scholastics     squeaking       sweetish        FAS
 
3881
44      016001  37      audiology       contrasted      dogging FAS
 
3882
45      016201  37      wallet  leftover        scornfully      FAS
 
3883
46      016202  37      parters whiteners       bellow  
 
3884
47      016301  37      eschew  erases  bills   
 
3885
48      016302  37      quitter Punjab  cupboard        FAS
 
3886
49      016303  37      neat    Merritt sureties        FAS
 
3887
50      016304  37      Steinberg       Quixotism       puddings        
 
3888
51      018001  37      jarring sweetish        tapestry        
 
3889
52      018002  37      tinily  dogging fetters 
 
3890
53      018003  37      balled  scornfully      bivalves        
 
3891
54      018004  37      persist bellow  incurring       
 
3892
55      018005  37      attainments     bills   Adolph  
 
3893
56      018007  37      fanatic cupboard        pithed  
 
3894
57      018008  37      measures        sureties        emergency       
 
3895
58      018009  37      rightfulness    puddings        Miles   
 
3896
59      018010  37      capably tapestry        trimmings       
 
3897
60      018012  37      impulsive       fetters tragedies       W
 
3898
61      018013  37      starlet bivalves        skulking        W
 
3899
62      018014  37      terminators     incurring       flint   
 
3900
63      018015  37      untying Adolph  flopping        W
 
3901
64      018016  37      announces       pithed  relaxing        FAS
 
3902
65      018017  37      featherweight   emergency       offload FAS
 
3903
66      018018  37      pessimist       Miles   suites  W
 
3904
67      018019  37      daughter        trimmings       lists   FAS
 
3905
68      018020  37      decliner        tragedies       animized        FAS
 
3906
69      018021  37      lawgiver        skulking        multilayer      W
 
3907
70      018022  37      stated  flint   standardizes    FAS
 
3908
71      018023  37      readable        flopping        Judas   
 
3909
72      018024  37      attrition       relaxing        vacuuming       W
 
3910
73      018025  37      cascade offload dentally        W
 
3911
74      018026  37      motors  suites  humanness       W
 
3912
75      018027  37      interrogate     lists   inch    W
 
3913
76      018028  37      pests   animized        Weissmuller     W
 
3914
77      018029  37      stairway        multilayer      irresponsibly   W
 
3915
78      018030  37      dopers  standardizes    luckily FAS
 
3916
79      018032  37      testicle        Judas   culled  W
 
3917
80      018033  37      Parsifal        vacuuming       medical FAS
 
3918
81      018034  37      leavings        dentally        bloodbath       FAS
 
3919
82      018035  37      postulation     humanness       subschema       W
 
3920
83      018036  37      squeaking       inch    animals W
 
3921
84      018037  37      contrasted      Weissmuller     Micronesia      
 
3922
85      018038  37      leftover        irresponsibly   repetitions     
 
3923
86      018039  37      whiteners       luckily Antares 
 
3924
87      018040  37      erases  culled  ventilate       W
 
3925
88      018041  37      Punjab  medical pityingly       
 
3926
89      018042  37      Merritt bloodbath       interdependent  
 
3927
90      018043  37      Quixotism       subschema       Graves  FAS
 
3928
91      018044  37      sweetish        animals neonatal        
 
3929
92      018045  37      dogging Micronesia      scribbled       FAS
 
3930
93      018046  37      scornfully      repetitions     chafe   W
 
3931
94      018048  37      bellow  Antares honoring        
 
3932
95      018049  37      bills   ventilate       realtor 
 
3933
96      018050  37      cupboard        pityingly       elite   
 
3934
97      018051  37      sureties        interdependent  funereal        
 
3935
98      018052  37      puddings        Graves  abrogating      
 
3936
99      018053  50      tapestry        neonatal        sorters 
 
3937
100     018054  37      fetters scribbled       Conley  
 
3938
101     018055  37      bivalves        chafe   lectured        
 
3939
102     018056  37      incurring       honoring        Abraham 
 
3940
103     018057  37      Adolph  realtor Hawaii  W
 
3941
104     018058  37      pithed  elite   cage    
 
3942
105     018059  36      emergency       funereal        hushes  
 
3943
106     018060  37      Miles   abrogating      Simla   
 
3944
107     018061  37      trimmings       sorters reporters       
 
3945
108     018101  37      tragedies       Conley  Dutchman        FAS
 
3946
109     018102  37      skulking        lectured        descendants     FAS
 
3947
110     018103  37      flint   Abraham groupings       FAS
 
3948
111     018104  37      flopping        Hawaii  dissociate      
 
3949
112     018201  37      relaxing        cage    coexist W
 
3950
113     018202  37      offload hushes  Beebe   
 
3951
114     018402  37      suites  Simla   Taoism  
 
3952
115     018403  37      lists   reporters       Connally        
 
3953
116     018404  37      animized        Dutchman        fetched FAS
 
3954
117     018405  37      multilayer      descendants     checkpoints     FAS
 
3955
118     018406  37      standardizes    groupings       rusting 
 
3956
119     018409  37      Judas   dissociate      galling 
 
3957
120     018601  37      vacuuming       coexist obliterates     
 
3958
121     018602  37      dentally        Beebe   traitor 
 
3959
122     018603  37      humanness       Taoism  resumes FAS
 
3960
123     018801  37      inch    Connally        analyzable      FAS
 
3961
124     018802  37      Weissmuller     fetched terminator      FAS
 
3962
125     018803  37      irresponsibly   checkpoints     gritty  FAS
 
3963
126     018804  37      luckily rusting firearm W
 
3964
127     018805  37      culled  galling minima  
 
3965
128     018806  37      medical obliterates     Selfridge       
 
3966
129     018807  37      bloodbath       traitor disable 
 
3967
130     018808  37      subschema       resumes witchcraft      W
 
3968
131     018809  37      animals analyzable      betroth W
 
3969
132     018810  37      Micronesia      terminator      Manhattanize    
 
3970
133     018811  37      repetitions     gritty  imprint 
 
3971
134     018812  37      Antares firearm peeked  
 
3972
135     019101  37      ventilate       minima  swelling        
 
3973
136     019102  37      pityingly       Selfridge       interrelationships      W
 
3974
137     019103  37      interdependent  disable riser   
 
3975
138     019201  37      Graves  witchcraft      Gandhian        W
 
3976
139     030501  37      neonatal        betroth peacock A
 
3977
140     030502  50      scribbled       Manhattanize    bee     A
 
3978
141     030503  37      chafe   imprint kanji   
 
3979
142     030504  37      honoring        peeked  dental  
 
3980
143     031901  37      realtor swelling        scarf   FAS
 
3981
144     036001  37      elite   interrelationships      chasm   A
 
3982
145     036002  37      funereal        riser   insolence       A
 
3983
146     036004  37      abrogating      Gandhian        syndicate       
 
3984
147     036005  37      sorters peacock alike   
 
3985
148     038001  37      Conley  bee     imperial        A
 
3986
149     038002  37      lectured        kanji   convulsion      A
 
3987
150     038003  37      Abraham dental  railway A
 
3988
151     038004  37      Hawaii  scarf   validate        A
 
3989
152     038005  37      cage    chasm   normalizes      A
 
3990
153     038006  37      hushes  insolence       comprehensive   
 
3991
154     038007  37      Simla   syndicate       chewing 
 
3992
155     038008  37      reporters       alike   denizen 
 
3993
156     038009  37      Dutchman        imperial        schemer 
 
3994
157     038010  37      descendants     convulsion      chronicle       
 
3995
158     038011  37      groupings       railway Kline   
 
3996
159     038012  37      dissociate      validate        Anatole 
 
3997
160     038013  37      coexist normalizes      partridges      
 
3998
161     038014  37      Beebe   comprehensive   brunch  
 
3999
162     038015  37      Taoism  chewing recruited       
 
4000
163     038016  37      Connally        denizen dimensions      W
 
4001
164     038017  37      fetched schemer Chicana W
 
4002
165     038018  37      checkpoints     chronicle       announced       
 
4003
166     038101  37      rusting Kline   praised FAS
 
4004
167     038102  37      galling Anatole employing       
 
4005
168     038103  37      obliterates     partridges      linear  
 
4006
169     038104  37      traitor brunch  quagmire        
 
4007
170     038201  37      resumes recruited       western A
 
4008
171     038202  37      analyzable      dimensions      relishing       
 
4009
172     038203  37      terminator      Chicana serving A
 
4010
173     038204  37      gritty  announced       scheduling      
 
4011
174     038205  37      firearm praised lore    
 
4012
175     038206  37      minima  employing       eventful        
 
4013
176     038208  37      Selfridge       linear  arteriole       A
 
4014
177     042801  37      disable quagmire        disentangle     
 
4015
178     042802  37      witchcraft      western cured   A
 
4016
179     046101  37      betroth relishing       Fenton  W
 
4017
180     048001  37      Manhattanize    serving avoidable       A
 
4018
181     048002  37      imprint scheduling      drains  A
 
4019
182     048003  37      peeked  lore    detectably      FAS
 
4020
183     048004  37      swelling        eventful        husky   
 
4021
184     048005  37      interrelationships      arteriole       impelling       
 
4022
185     048006  37      riser   disentangle     undoes  
 
4023
186     048007  37      Gandhian        cured   evened  
 
4024
187     048008  37      peacock Fenton  squeezes        
 
4025
188     048101  37      bee     avoidable       destroyer       FAS
 
4026
189     048102  37      kanji   drains  rudeness        
 
4027
190     048201  37      dental  detectably      beaner  FAS
 
4028
191     048202  37      scarf   husky   boorish 
 
4029
192     048203  37      chasm   impelling       Everhart        
 
4030
193     048204  37      insolence       undoes  encompass       A
 
4031
194     048205  37      syndicate       evened  mushrooms       
 
4032
195     048301  37      alike   squeezes        Alison  A
 
4033
196     048302  37      imperial        destroyer       externally      FAS
 
4034
197     048303  37      convulsion      rudeness        pellagra        
 
4035
198     048304  37      railway beaner  cult    
 
4036
199     048305  37      validate        boorish creek   A
 
4037
200     048401  37      normalizes      Everhart        Huffman 
 
4038
201     048402  37      comprehensive   encompass       Majorca FAS
 
4039
202     048403  37      chewing mushrooms       governing       A
 
4040
203     048404  37      denizen Alison  gadfly  FAS
 
4041
204     048405  37      schemer externally      reassigned      FAS
 
4042
205     048406  37      chronicle       pellagra        intentness      W
 
4043
206     048407  37      Kline   cult    craziness       
 
4044
207     048408  37      Anatole creek   psychic 
 
4045
208     048409  37      partridges      Huffman squabbled       
 
4046
209     048410  37      brunch  Majorca burlesque       
 
4047
210     048411  37      recruited       governing       capped  
 
4048
211     048412  37      dimensions      gadfly  extracted       A
 
4049
212     048413  37      Chicana reassigned      DiMaggio        
 
4050
213     048601  37      announced       intentness      exclamation     FAS
 
4051
214     048602  37      praised craziness       subdirectory    
 
4052
215     048603  37      employing       psychic fangs   
 
4053
216     048604  37      linear  squabbled       buyer   A
 
4054
217     048801  37      quagmire        burlesque       pithing A
 
4055
218     050901  37      western capped  transistorizing A
 
4056
219     051201  37      relishing       extracted       nonbiodegradable        
 
4057
220     056002  37      serving DiMaggio        dislocate       
 
4058
221     056003  37      scheduling      exclamation     monochromatic   FAS
 
4059
222     056004  37      lore    subdirectory    batting 
 
4060
223     056102  37      eventful        fangs   postcondition   A
 
4061
224     056203  37      arteriole       buyer   catalog FAS
 
4062
225     056204  37      disentangle     pithing Remus   
 
4063
226     058003  37      cured   transistorizing devices A
 
4064
227     058004  37      Fenton  nonbiodegradable        bike    A
 
4065
228     058005  37      avoidable       dislocate       qualify 
 
4066
229     058006  37      drains  monochromatic   detained        
 
4067
230     058007  37      detectably      batting commended       
 
4068
231     058101  37      husky   postcondition   civilize        
 
4069
232     058102  37      impelling       catalog Elmhurst        
 
4070
233     058103  37      undoes  Remus   anesthetizing   
 
4071
234     058105  37      evened  devices deaf    
 
4072
235     058111  37      squeezes        bike    Brigham 
 
4073
236     058112  37      destroyer       qualify title   
 
4074
237     058113  37      rudeness        detained        coarse  
 
4075
238     058114  37      beaner  commended       combinations    
 
4076
239     058115  37      boorish civilize        grayness        
 
4077
240     058116  37      Everhart        Elmhurst        innumerable     FAS
 
4078
241     058117  37      encompass       anesthetizing   Caroline        A
 
4079
242     058118  37      mushrooms       deaf    fatty   FAS
 
4080
243     058119  37      Alison  Brigham eastbound       
 
4081
244     058120  37      externally      title   inexperienced   
 
4082
245     058121  37      pellagra        coarse  hoarder A
 
4083
246     058122  37      cult    combinations    scotch  W
 
4084
247     058123  37      creek   grayness        passport        A
 
4085
248     058124  37      Huffman innumerable     strategic       FAS
 
4086
249     058125  37      Majorca Caroline        gated   
 
4087
250     058126  37      governing       fatty   flog    
 
4088
251     058127  37      gadfly  eastbound       Pipestone       
 
4089
252     058128  37      reassigned      inexperienced   Dar     
 
4090
253     058201  37      intentness      hoarder Corcoran        
 
4091
254     058202  37      craziness       scotch  flyers  A
 
4092
255     058303  37      psychic passport        competitions    W
 
4093
256     058304  37      squabbled       strategic       suppliers       FAS
 
4094
257     058602  37      burlesque       gated   skips   
 
4095
258     058603  37      capped  flog    institutes      
 
4096
259     058604  37      extracted       Pipestone       troop   A
 
4097
260     058605  37      DiMaggio        Dar     connective      W
 
4098
261     058606  37      exclamation     Corcoran        denies  
 
4099
262     058607  37      subdirectory    flyers  polka   
 
4100
263     060401  36      fangs   competitions    observations    FAS
 
4101
264     061701  36      buyer   suppliers       askers  
 
4102
265     066201  36      pithing skips   homeless        FAS
 
4103
266     066501  36      transistorizing institutes      Anna    
 
4104
267     068001  36      nonbiodegradable        troop   subdirectories  W
 
4105
268     068002  36      dislocate       connective      decaying        FAS
 
4106
269     068005  36      monochromatic   denies  outwitting      W
 
4107
270     068006  36      batting polka   Harpy   W
 
4108
271     068007  36      postcondition   observations    crazed  
 
4109
272     068008  36      catalog askers  suffocate       
 
4110
273     068009  36      Remus   homeless        provers FAS
 
4111
274     068010  36      devices Anna    technically     
 
4112
275     068011  36      bike    subdirectories  Franklinizations        
 
4113
276     068202  36      qualify decaying        considered      
 
4114
277     068302  36      detained        outwitting      tinnily 
 
4115
278     068303  36      commended       Harpy   uninterruptedly 
 
4116
279     068401  36      civilize        crazed  whistled        A
 
4117
280     068501  36      Elmhurst        suffocate       automate        
 
4118
281     068502  36      anesthetizing   provers gutting W
 
4119
282     068503  36      deaf    technically     surreptitious   
 
4120
283     068602  36      Brigham Franklinizations        Choctaw 
 
4121
284     068603  36      title   considered      cooks   
 
4122
285     068701  36      coarse  tinnily millivolt       FAS
 
4123
286     068702  36      combinations    uninterruptedly counterpoise    
 
4124
287     068703  36      grayness        whistled        Gothicism       
 
4125
288     076001  36      innumerable     automate        feminine        
 
4126
289     076002  36      Caroline        gutting metaphysically  W
 
4127
290     076101  36      fatty   surreptitious   sanding A
 
4128
291     076102  36      eastbound       Choctaw contributorily  
 
4129
292     076103  36      inexperienced   cooks   receivers       FAS
 
4130
293     076302  36      hoarder millivolt       adjourn 
 
4131
294     076303  36      scotch  counterpoise    straggled       A
 
4132
295     076304  36      passport        Gothicism       druggists       
 
4133
296     076305  36      strategic       feminine        thanking        FAS
 
4134
297     076306  36      gated   metaphysically  ostrich 
 
4135
298     076307  36      flog    sanding hopelessness    FAS
 
4136
299     076402  36      Pipestone       contributorily  Eurydice        
 
4137
300     076501  36      Dar     receivers       excitation      W
 
4138
301     076502  36      Corcoran        adjourn presumes        FAS
 
4139
302     076701  36      flyers  straggled       imaginable      FAS
 
4140
303     078001  36      competitions    druggists       concoct W
 
4141
304     078002  36      suppliers       thanking        peering W
 
4142
305     078003  36      skips   ostrich Phelps  FAS
 
4143
306     078004  36      institutes      hopelessness    ferociousness   FAS
 
4144
307     078005  36      troop   Eurydice        sentences       
 
4145
308     078006  36      connective      excitation      unlocks 
 
4146
309     078007  36      denies  presumes        engrossing      W
 
4147
310     078008  36      polka   imaginable      Ruth    
 
4148
311     078101  36      observations    concoct tying   
 
4149
312     078103  36      askers  peering exclaimers      
 
4150
313     078104  36      homeless        Phelps  synergy 
 
4151
314     078105  36      Anna    ferociousness   Huey    W
 
4152
315     082101  36      subdirectories  sentences       merging 
 
4153
316     083401  36      decaying        unlocks judges  A
 
4154
317     084001  36      outwitting      engrossing      Shylock W
 
4155
318     084002  36      Harpy   Ruth    Miltonism       
 
4156
319     086001  36      crazed  tying   hen     W
 
4157
320     086102  36      suffocate       exclaimers      honeybee        FAS
 
4158
321     086201  36      provers synergy towers  
 
4159
322     088001  36      technically     Huey    dilutes W
 
4160
323     088002  36      Franklinizations        merging numerals        FAS
 
4161
324     088003  36      considered      judges  democracy       FAS
 
4162
325     088004  36      tinnily Shylock Ibero-  
 
4163
326     088101  36      uninterruptedly Miltonism       invalids        
 
4164
327     088102  36      whistled        hen     behavior        
 
4165
328     088103  36      automate        honeybee        accruing        
 
4166
329     088104  36      gutting towers  relics  A
 
4167
330     088105  36      surreptitious   dilutes rackets 
 
4168
331     088106  36      Choctaw numerals        Fischbein       W
 
4169
332     088201  36      cooks   democracy       phony   W
 
4170
333     088203  36      millivolt       Ibero-  cross   FAS
 
4171
334     088204  36      counterpoise    invalids        cleanup 
 
4172
335     088302  37      Gothicism       behavior        conspirator     
 
4173
336     088303  37      feminine        accruing        label   FAS
 
4174
337     088305  37      metaphysically  relics  university      
 
4175
338     088402  37      sanding rackets cleansed        FAS
 
4176
339     088501  36      contributorily  Fischbein       ballgown        
 
4177
340     088502  36      receivers       phony   starlet 
 
4178
341     088503  36      adjourn cross   aqueous 
 
4179
342     098001  58      straggled       cleanup portrayal       A
 
4180
343     098002  58      druggists       conspirator     despising       W
 
4181
344     098003  58      thanking        label   distort W
 
4182
345     098004  58      ostrich university      palmed  
 
4183
346     098005  58      hopelessness    cleansed        faced   
 
4184
347     098006  58      Eurydice        ballgown        silverware      
 
4185
348     141903  29      excitation      starlet assessor        
 
4186
349     098008  58      presumes        aqueous spiders 
 
4187
350     098009  58      imaginable      portrayal       artificially    
 
4188
351     098010  58      concoct despising       reminiscence    
 
4189
352     098011  58      peering distort Mexican 
 
4190
353     098012  58      Phelps  palmed  obnoxious       
 
4191
354     098013  58      ferociousness   faced   fragile 
 
4192
355     098014  58      sentences       silverware      apprehensible   
 
4193
356     098015  58      unlocks assessor        births  
 
4194
357     098016  58      engrossing      spiders garages 
 
4195
358     098017  58      Ruth    artificially    panty   
 
4196
359     098018  58      tying   reminiscence    anteater        
 
4197
360     098019  58      exclaimers      Mexican displacement    A
 
4198
361     098020  58      synergy obnoxious       drovers A
 
4199
362     098021  58      Huey    fragile patenting       A
 
4200
363     098022  58      merging apprehensible   far     A
 
4201
364     098023  58      judges  births  shrieks 
 
4202
365     098024  58      Shylock garages aligning        W
 
4203
366     098025  37      Miltonism       panty   pragmatism      
 
4204
367     106001  36      hen     anteater        fevers  W
 
4205
368     108001  36      honeybee        displacement    reexamines      A
 
4206
369     108002  36      towers  drovers occupancies     
 
4207
370     108003  36      dilutes patenting       sweats  FAS
 
4208
371     108004  36      numerals        far     modulators      
 
4209
372     108005  36      democracy       shrieks demand  W
 
4210
373     108007  36      Ibero-  aligning        Madeira 
 
4211
374     108008  36      invalids        pragmatism      Viennese        W
 
4212
375     108009  36      behavior        fevers  chillier        W
 
4213
376     108010  36      accruing        reexamines      wildcats        FAS
 
4214
377     108011  36      relics  occupancies     gentle  
 
4215
378     108012  36      rackets sweats  Angles  W
 
4216
379     108101  36      Fischbein       modulators      accuracies      
 
4217
380     108102  36      phony   demand  toggle  
 
4218
381     108103  36      cross   Madeira Mendelssohn     W
 
4219
382     108111  50      cleanup Viennese        behaviorally    
 
4220
383     108105  36      conspirator     chillier        Rochford        
 
4221
384     108106  36      label   wildcats        mirror  W
 
4222
385     108107  36      university      gentle  Modula  
 
4223
386     108108  50      cleansed        Angles  clobbering      
 
4224
387     108109  36      ballgown        accuracies      chronography    
 
4225
388     108110  36      starlet toggle  Eskimoizeds     
 
4226
389     108201  36      aqueous Mendelssohn     British W
 
4227
390     108202  36      portrayal       behaviorally    pitfalls        
 
4228
391     108203  36      despising       Rochford        verify  W
 
4229
392     108204  36      distort mirror  scatter FAS
 
4230
393     108205  36      palmed  Modula  Aztecan 
 
4231
394     108301  36      faced   clobbering      acuity  W
 
4232
395     108302  36      silverware      chronography    sinking W
 
4233
396     112101  36      assessor        Eskimoizeds     beasts  FAS
 
4234
397     112102  36      spiders British Witt    W
 
4235
398     113701  36      artificially    pitfalls        physicists      FAS
 
4236
399     116001  36      reminiscence    verify  folksong        A
 
4237
400     116201  36      Mexican scatter strokes FAS
 
4238
401     116301  36      obnoxious       Aztecan crowder 
 
4239
402     116302  36      fragile acuity  merry   
 
4240
403     116601  36      apprehensible   sinking cadenced        
 
4241
404     116602  36      births  beasts  alimony A
 
4242
405     116603  36      garages Witt    principled      A
 
4243
406     116701  36      panty   physicists      golfing 
 
4244
407     116702  36      anteater        folksong        undiscovered    
 
4245
408     118001  36      displacement    strokes irritates       
 
4246
409     118002  36      drovers crowder patriots        A
 
4247
410     118003  36      patenting       merry   rooms   FAS
 
4248
411     118004  36      far     cadenced        towering        W
 
4249
412     118005  36      shrieks alimony displease       
 
4250
413     118006  36      aligning        principled      photosensitive  
 
4251
414     118007  36      pragmatism      golfing inking  
 
4252
415     118008  36      fevers  undiscovered    gainers 
 
4253
416     118101  36      reexamines      irritates       leaning A
 
4254
417     118102  36      occupancies     patriots        hydrant A
 
4255
418     118103  36      sweats  rooms   preserve        
 
4256
419     118202  36      modulators      towering        blinded A
 
4257
420     118203  36      demand  displease       interactions    A
 
4258
421     118204  36      Madeira photosensitive  Barry   
 
4259
422     118302  36      Viennese        inking  whiteness       A
 
4260
423     118304  36      chillier        gainers pastimes        W
 
4261
424     118305  36      wildcats        leaning Edenization     
 
4262
425     118306  36      gentle  hydrant Muscat  
 
4263
426     118307  36      Angles  preserve        assassinated    
 
4264
427     123101  36      accuracies      blinded labeled 
 
4265
428     123102  36      toggle  interactions    glacial A
 
4266
429     123301  36      Mendelssohn     Barry   implied W
 
4267
430     126001  36      behaviorally    whiteness       bibliographies  W
 
4268
431     126002  36      Rochford        pastimes        Buchanan        
 
4269
432     126003  36      mirror  Edenization     forgivably      FAS
 
4270
433     126101  36      Modula  Muscat  innuendo        A
 
4271
434     126301  36      clobbering      assassinated    den     FAS
 
4272
435     126302  36      chronography    labeled submarines      W
 
4273
436     126402  36      Eskimoizeds     glacial mouthful        A
 
4274
437     126601  36      British implied expiring        
 
4275
438     126602  36      pitfalls        bibliographies  unfulfilled     FAS
 
4276
439     126702  36      verify  Buchanan        precession      
 
4277
440     128001  36      scatter forgivably      nullified       
 
4278
441     128002  36      Aztecan innuendo        affects 
 
4279
442     128003  36      acuity  den     Cynthia 
 
4280
443     128004  36      sinking submarines      Chablis A
 
4281
444     128005  36      beasts  mouthful        betterments     FAS
 
4282
445     128007  36      Witt    expiring        advertising     
 
4283
446     128008  36      physicists      unfulfilled     rubies  A
 
4284
447     128009  36      folksong        precession      southwest       FAS
 
4285
448     128010  36      strokes nullified       superstitious   A
 
4286
449     128011  36      crowder affects tabernacle      W
 
4287
450     128012  36      merry   Cynthia silk    A
 
4288
451     128013  36      cadenced        Chablis handsomest      A
 
4289
452     128014  36      alimony betterments     Persian A
 
4290
453     128015  36      principled      advertising     analog  W
 
4291
454     128016  36      golfing rubies  complex W
 
4292
455     128017  36      undiscovered    southwest       Taoist  
 
4293
456     128018  36      irritates       superstitious   suspend 
 
4294
457     128019  36      patriots        tabernacle      relegated       
 
4295
458     128020  36      rooms   silk    awesome W
 
4296
459     128021  36      towering        handsomest      Bruxelles       
 
4297
460     128022  36      displease       Persian imprecisely     A
 
4298
461     128023  36      photosensitive  analog  televise        
 
4299
462     128101  36      inking  complex braking 
 
4300
463     128102  36      gainers Taoist  true    FAS
 
4301
464     128103  36      leaning suspend disappointing   FAS
 
4302
465     128104  36      hydrant relegated       navally W
 
4303
466     128106  36      preserve        awesome circus  
 
4304
467     128107  36      blinded Bruxelles       beetles 
 
4305
468     128108  36      interactions    imprecisely     trumps  
 
4306
469     128202  36      Barry   televise        fourscore       W
 
4307
470     128203  36      whiteness       braking Blackfoots      
 
4308
471     128301  36      pastimes        true    Grady   
 
4309
472     128302  36      Edenization     disappointing   quiets  FAS
 
4310
473     128303  36      Muscat  navally floundered      FAS
 
4311
474     128304  36      assassinated    circus  profundity      W
 
4312
475     128305  36      labeled beetles Garrisonian     W
 
4313
476     128307  36      glacial trumps  Strauss 
 
4314
477     128401  36      implied fourscore       cemented        FAS
 
4315
478     128502  36      bibliographies  Blackfoots      contrition      A
 
4316
479     128503  36      Buchanan        Grady   mutations       
 
4317
480     128504  36      forgivably      quiets  exhibits        W
 
4318
481     128505  36      innuendo        floundered      tits    
 
4319
482     128601  36      den     profundity      mate    A
 
4320
483     128603  36      submarines      Garrisonian     arches  
 
4321
484     128604  36      mouthful        Strauss Moll    
 
4322
485     128702  36      expiring        cemented        ropers  
 
4323
486     128703  36      unfulfilled     contrition      bombast 
 
4324
487     128704  36      precession      mutations       difficultly     A
 
4325
488     138001  36      nullified       exhibits        adsorption      
 
4326
489     138002  36      affects tits    definiteness    FAS
 
4327
490     138003  36      Cynthia mate    cultivation     A
 
4328
491     138004  36      Chablis arches  heals   A
 
4329
492     138005  36      betterments     Moll    Heusen  W
 
4330
493     138006  36      advertising     ropers  target  FAS
 
4331
494     138007  36      rubies  bombast cited   A
 
4332
495     138008  36      southwest       difficultly     congresswoman   W
 
4333
496     138009  36      superstitious   adsorption      Katherine       
 
4334
497     138102  36      tabernacle      definiteness    titter  A
 
4335
498     138103  36      silk    cultivation     aspire  A
 
4336
499     138104  36      handsomest      heals   Mardis  
 
4337
500     138105  36      Persian Heusen  Nadia   W
 
4338
501     138201  36      analog  target  estimating      FAS
 
4339
502     138302  36      complex cited   stuck   A
 
4340
503     138303  36      Taoist  congresswoman   fifteenth       A
 
4341
504     138304  36      suspend Katherine       Colombo 
 
4342
505     138401  29      relegated       titter  survey  A
 
4343
506     140102  29      awesome aspire  staffing        
 
4344
507     140103  29      Bruxelles       Mardis  obtain  
 
4345
508     140104  29      imprecisely     Nadia   loaded  
 
4346
509     140105  29      televise        estimating      slaughtered     
 
4347
510     140201  29      braking stuck   lights  A
 
4348
511     140701  29      true    fifteenth       circumference   
 
4349
512     141501  29      disappointing   Colombo dull    A
 
4350
513     141502  29      navally survey  weekly  A
 
4351
514     141901  29      circus  staffing        wetness 
 
4352
515     141902  29      beetles obtain  visualized      
 
4353
516     142101  29      trumps  loaded  Tannenbaum      
 
4354
517     142102  29      fourscore       slaughtered     moribund        
 
4355
518     142103  29      Blackfoots      lights  demultiplex     
 
4356
519     142701  29      Grady   circumference   lockings        
 
4357
520     143001  29      quiets  dull    thugs   FAS
 
4358
521     143501  29      floundered      weekly  unnerves        
 
4359
522     143502  29      profundity      wetness abut    
 
4360
523     148001  29      Garrisonian     visualized      Chippewa        A
 
4361
524     148002  29      Strauss Tannenbaum      stratifications A
 
4362
525     148003  29      cemented        moribund        signaled        
 
4363
526     148004  29      contrition      demultiplex     Italianizes     A
 
4364
527     148005  29      mutations       lockings        algorithmic     A
 
4365
528     148006  29      exhibits        thugs   paranoid        FAS
 
4366
529     148007  29      tits    unnerves        camping A
 
4367
530     148009  29      mate    abut    signifying      A
 
4368
531     148010  29      arches  Chippewa        Patrice W
 
4369
532     148011  29      Moll    stratifications search  A
 
4370
533     148012  29      ropers  signaled        Angeles A
 
4371
534     148013  29      bombast Italianizes     semblance       
 
4372
535     148023  36      difficultly     algorithmic     taxed   
 
4373
536     148015  29      adsorption      paranoid        Beatrice        
 
4374
537     148016  29      definiteness    camping retrace 
 
4375
538     148017  29      cultivation     signifying      lockout 
 
4376
539     148018  29      heals   Patrice grammatic       
 
4377
540     148019  29      Heusen  search  helmsman        
 
4378
541     148020  29      target  Angeles uniform W
 
4379
542     148021  29      cited   semblance       hamming 
 
4380
543     148022  29      congresswoman   taxed   disobedience    
 
4381
544     148101  29      Katherine       Beatrice        captivated      A
 
4382
545     148102  29      titter  retrace transferals     A
 
4383
546     148201  29      aspire  lockout cartographer    A
 
4384
547     148401  29      Mardis  grammatic       aims    FAS
 
4385
548     148402  29      Nadia   helmsman        Pakistani       
 
4386
549     148501  29      estimating      uniform burglarized     FAS
 
4387
550     148502  29      stuck   hamming saucepans       A
 
4388
551     148503  29      fifteenth       disobedience    lacerating      A
 
4389
552     148504  29      Colombo captivated      corny   
 
4390
553     148601  29      survey  transferals     megabytes       FAS
 
4391
554     148602  29      staffing        cartographer    chancellor      
 
4392
555     150701  29      obtain  aims    bulk    A
 
4393
556     152101  29      loaded  Pakistani       commits A
 
4394
557     152102  29      slaughtered     burglarized     meson   W
 
4395
558     155202  36      lights  saucepans       deputies        
 
4396
559     155203  29      circumference   lacerating      northeaster     A
 
4397
560     155204  29      dull    corny   dipole  
 
4398
561     155205  29      weekly  megabytes       machining       0
 
4399
562     156001  29      wetness chancellor      therefore       
 
4400
563     156002  29      visualized      bulk    Telefunken      
 
4401
564     156102  29      Tannenbaum      commits salvaging       
 
4402
565     156301  29      moribund        meson   Corinthianizes  A
 
4403
566     156302  29      demultiplex     deputies        restlessly      A
 
4404
567     156303  29      lockings        northeaster     bromides        
 
4405
568     156304  29      thugs   dipole  generalized     A
 
4406
569     156305  29      unnerves        machining       mishaps 
 
4407
570     156306  29      abut    therefore       quelling        
 
4408
571     156501  29      Chippewa        Telefunken      spiritual       A
 
4409
572     158001  29      stratifications salvaging       beguiles        FAS
 
4410
573     158002  29      signaled        Corinthianizes  Trobriand       FAS
 
4411
574     158101  29      Italianizes     restlessly      fleeing A
 
4412
575     158102  29      algorithmic     bromides        Armour  A
 
4413
576     158103  29      paranoid        generalized     chin    A
 
4414
577     158201  29      camping mishaps provers A
 
4415
578     158202  29      signifying      quelling        aeronautic      A
 
4416
579     158203  29      Patrice spiritual       voltage W
 
4417
580     158204  29      search  beguiles        sash    
 
4418
581     158301  29      Angeles Trobriand       anaerobic       A
 
4419
582     158302  29      semblance       fleeing simultaneous    A
 
4420
583     158303  29      taxed   Armour  accumulating    A
 
4421
584     158304  29      Beatrice        chin    Medusan A
 
4422
585     158305  29      retrace provers shouted A
 
4423
586     158306  29      lockout aeronautic      freakish        
 
4424
587     158501  29      grammatic       voltage index   FAS
 
4425
588     160301  29      helmsman        sash    commercially    
 
4426
589     166101  50      uniform anaerobic       mistiness       A
 
4427
590     166102  50      hamming simultaneous    endpoint        
 
4428
591     168001  29      disobedience    accumulating    straight        A
 
4429
592     168002  29      captivated      Medusan flurried        
 
4430
593     168003  29      transferals     shouted denotative      A
 
4431
594     168101  29      cartographer    freakish        coming  FAS
 
4432
595     168102  29      aims    index   commencements   FAS
 
4433
596     168103  29      Pakistani       commercially    gentleman       
 
4434
597     168104  29      burglarized     mistiness       gifted  
 
4435
598     168202  29      saucepans       endpoint        Shanghais       
 
4436
599     168301  29      lacerating      straight        sportswriting   A
 
4437
600     168502  29      corny   flurried        sloping A
 
4438
601     168503  29      megabytes       denotative      navies  
 
4439
602     168601  29      chancellor      coming  leaflet A
 
4440
603     173001  40      bulk    commencements   shooter 
 
4441
604     173701  40      commits gentleman       Joplin  FAS
 
4442
605     173702  40      meson   gifted  babies  
 
4443
606     176001  40      deputies        Shanghais       subdivision     FAS
 
4444
607     176101  40      northeaster     sportswriting   burstiness      W
 
4445
608     176201  40      dipole  sloping belted  FAS
 
4446
609     176401  40      machining       navies  assails FAS
 
4447
610     176501  40      therefore       leaflet admiring        W
 
4448
611     176601  40      Telefunken      shooter swaying 0
 
4449
612     176602  40      salvaging       Joplin  Goldstine       FAS
 
4450
613     176603  40      Corinthianizes  babies  fitting 
 
4451
614     178001  40      restlessly      subdivision     Norwalk W
 
4452
615     178002  40      bromides        burstiness      weakening       W
 
4453
616     178003  40      generalized     belted  analogy FAS
 
4454
617     178004  40      mishaps assails deludes 
 
4455
618     178005  40      quelling        admiring        cokes   
 
4456
619     178006  40      spiritual       swaying Clayton 
 
4457
620     178007  40      beguiles        Goldstine       exhausts        
 
4458
621     178008  40      Trobriand       fitting causality       
 
4459
622     178101  40      fleeing Norwalk sating  FAS
 
4460
623     178102  40      Armour  weakening       icon    
 
4461
624     178103  40      chin    analogy throttles       
 
4462
625     178201  40      provers deludes communicants    FAS
 
4463
626     178202  40      aeronautic      cokes   dehydrate       FAS
 
4464
627     178301  40      voltage Clayton priceless       FAS
 
4465
628     178302  40      sash    exhausts        publicly        
 
4466
629     178401  40      anaerobic       causality       incidentals     FAS
 
4467
630     178402  40      simultaneous    sating  commonplace     
 
4468
631     178403  40      accumulating    icon    mumbles 
 
4469
632     178404  40      Medusan throttles       furthermore     W
 
4470
633     178501  40      shouted communicants    cautioned       W
 
4471
634     186002  37      freakish        dehydrate       parametrized    A
 
4472
635     186102  37      index   priceless       registration    A
 
4473
636     186201  40      commercially    publicly        sadly   FAS
 
4474
637     186202  40      mistiness       incidentals     positioning     
 
4475
638     186203  40      endpoint        commonplace     babysitting     
 
4476
639     186302  37      straight        mumbles eternal A
 
4477
640     188007  37      flurried        furthermore     hoarder 
 
4478
641     188008  37      denotative      cautioned       congregates     
 
4479
642     188009  37      coming  parametrized    rains   
 
4480
643     188010  37      commencements   registration    workers W
 
4481
644     188011  37      gentleman       sadly   sags    A
 
4482
645     188012  37      gifted  positioning     unplug  W
 
4483
646     188013  37      Shanghais       babysitting     garage  A
 
4484
647     188014  37      sportswriting   eternal boulder A
 
4485
648     188015  37      sloping hoarder hollowly        A
 
4486
649     188016  37      navies  congregates     specifics       
 
4487
650     188017  37      leaflet rains   Teresa  
 
4488
651     188102  37      shooter workers Winsett 
 
4489
652     188103  37      Joplin  sags    convenient      A
 
4490
653     188202  37      babies  unplug  buckboards      FAS
 
4491
654     188301  40      subdivision     garage  amenities       
 
4492
655     188302  40      burstiness      boulder resplendent     FAS
 
4493
656     188303  40      belted  hollowly        priding FAS
 
4494
657     188401  37      assails specifics       configurations  
 
4495
658     188402  37      admiring        Teresa  untidiness      A
 
4496
659     188503  37      swaying Winsett Brice   W
 
4497
660     188504  37      Goldstine       convenient      sews    FAS
 
4498
661     188505  37      fitting buckboards      participated    
 
4499
662     190701  37      Norwalk amenities       Simon   FAS
 
4500
663     190703  50      weakening       resplendent     certificates    
 
4501
664     191701  37      analogy priding Fitzpatrick     
 
4502
665     191702  37      deludes configurations  Evanston        A
 
4503
666     191703  37      cokes   untidiness      misted  
 
4504
667     196001  37      Clayton Brice   textures        A
 
4505
668     196002  37      exhausts        sews    save    
 
4506
669     196003  37      causality       participated    count   
 
4507
670     196101  37      sating  Simon   rightful        A
 
4508
671     196103  37      icon    certificates    chaperone       
 
4509
672     196104  37      throttles       Fitzpatrick     Lizzy   A
 
4510
673     196201  37      communicants    Evanston        clenched        A
 
4511
674     196202  37      dehydrate       misted  effortlessly    
 
4512
675     196203  37      priceless       textures        accessed        
 
4513
676     198001  37      publicly        save    beaters A
 
4514
677     198003  37      incidentals     count   Hornblower      FAS
 
4515
678     198004  37      commonplace     rightful        vests   A
 
4516
679     198005  37      mumbles chaperone       indulgences     FAS
 
4517
680     198006  37      furthermore     Lizzy   infallibly      A
 
4518
681     198007  37      cautioned       clenched        unwilling       FAS
 
4519
682     198008  37      parametrized    effortlessly    excrete FAS
 
4520
683     198009  37      registration    accessed        spools  A
 
4521
684     198010  37      sadly   beaters crunches        FAS
 
4522
685     198011  37      positioning     Hornblower      overestimating  FAS
 
4523
686     198012  37      babysitting     vests   ineffective     
 
4524
687     198013  37      eternal indulgences     humiliation     A
 
4525
688     198014  37      hoarder infallibly      sophomore       
 
4526
689     198015  37      congregates     unwilling       star    
 
4527
690     198017  37      rains   excrete rifles  
 
4528
691     198018  37      workers spools  dialysis        
 
4529
692     198019  37      sags    crunches        arriving        
 
4530
693     198020  37      unplug  overestimating  indulge 
 
4531
694     198021  37      garage  ineffective     clockers        
 
4532
695     198022  37      boulder humiliation     languages       
 
4533
696     198023  50      hollowly        sophomore       Antarctica      A
 
4534
697     198024  37      specifics       star    percentage      
 
4535
698     198101  37      Teresa  rifles  ceiling A
 
4536
699     198103  37      Winsett dialysis        specification   
 
4537
700     198105  37      convenient      arriving        regimented      A
 
4538
701     198106  37      buckboards      indulge ciphers 
 
4539
702     198201  37      amenities       clockers        pictures        A
 
4540
703     198204  37      resplendent     languages       serpents        A
 
4541
704     198301  53      priding Antarctica      allot   A
 
4542
705     198302  53      configurations  percentage      realized        A
 
4543
706     198303  53      untidiness      ceiling mayoral A
 
4544
707     198304  53      Brice   specification   opaquely        A
 
4545
708     198401  37      sews    regimented      hostess FAS
 
4546
709     198402  37      participated    ciphers fiftieth        
 
4547
710     198403  37      Simon   pictures        incorrectly     
 
4548
711     202101  37      certificates    serpents        decomposition   FAS
 
4549
712     202301  37      Fitzpatrick     allot   stranglings     
 
4550
713     202302  37      Evanston        realized        mixture FAS
 
4551
714     202303  37      misted  mayoral electroencephalography  FAS
 
4552
715     202304  37      textures        opaquely        similarities    FAS
 
4553
716     202305  37      save    hostess charges W
 
4554
717     202601  37      count   fiftieth        freest  FAS
 
4555
718     202602  37      rightful        incorrectly     Greenberg       FAS
 
4556
719     202605  37      chaperone       decomposition   tinting 
 
4557
720     202606  37      Lizzy   stranglings     expelled        W
 
4558
721     202607  37      clenched        mixture warm    
 
4559
722     202901  37      effortlessly    electroencephalography  smoothed        
 
4560
723     202902  37      accessed        similarities    deductions      FAS
 
4561
724     202903  37      beaters charges Romano  W
 
4562
725     202904  37      Hornblower      freest  bitterroot      
 
4563
726     202907  37      vests   Greenberg       corset  
 
4564
727     202908  37      indulgences     tinting securing        
 
4565
728     203101  37      infallibly      expelled        environing      FAS
 
4566
729     203103  37      unwilling       warm    cute    
 
4567
730     203104  37      excrete smoothed        Crays   
 
4568
731     203105  37      spools  deductions      heiress FAS
 
4569
732     203401  37      crunches        Romano  inform  FAS
 
4570
733     203402  37      overestimating  bitterroot      avenge  
 
4571
734     203404  37      ineffective     corset  universals      
 
4572
735     203901  37      humiliation     securing        Kinsey  W
 
4573
736     203902  37      sophomore       environing      ravines FAS
 
4574
737     203903  37      star    cute    bestseller      
 
4575
738     203906  37      rifles  Crays   equilibrium     
 
4576
739     203907  37      dialysis        heiress extents 0
 
4577
740     203908  37      arriving        inform  relatively      
 
4578
741     203909  37      indulge avenge  pressure        FAS
 
4579
742     206101  37      clockers        universals      critiques       FAS
 
4580
743     206201  37      languages       Kinsey  befouled        
 
4581
744     206202  37      Antarctica      ravines rightfully      FAS
 
4582
745     206203  37      percentage      bestseller      mechanizing     FAS
 
4583
746     206206  37      ceiling equilibrium     Latinizes       
 
4584
747     206207  37      specification   extents timesharing     
 
4585
748     206208  37      regimented      relatively      Aden    
 
4586
749     208001  37      ciphers pressure        embassies       
 
4587
750     208002  37      pictures        critiques       males   FAS
 
4588
751     208003  37      serpents        befouled        shapelessly     FAS
 
4589
752     208004  37      allot   rightfully      genres  FAS
 
4590
753     208008  37      realized        mechanizing     mastering       
 
4591
754     208009  37      mayoral Latinizes       Newtonian       
 
4592
755     208010  37      opaquely        timesharing     finishers       FAS
 
4593
756     208011  37      hostess Aden    abates  
 
4594
757     208101  37      fiftieth        embassies       teem    
 
4595
758     208102  37      incorrectly     males   kiting  FAS
 
4596
759     208103  37      decomposition   shapelessly     stodgy  FAS
 
4597
760     208104  37      stranglings     genres  scalps  FAS
 
4598
761     208105  37      mixture mastering       feed    FAS
 
4599
762     208110  37      electroencephalography  Newtonian       guitars 
 
4600
763     208111  37      similarities    finishers       airships        
 
4601
764     208112  37      charges abates  store   
 
4602
765     208113  37      freest  teem    denounces       
 
4603
766     208201  37      Greenberg       kiting  Pyle    FAS
 
4604
767     208203  37      tinting stodgy  Saxony  
 
4605
768     208301  37      expelled        scalps  serializations  FAS
 
4606
769     208302  37      warm    feed    Peruvian        FAS
 
4607
770     208305  37      smoothed        guitars taxonomically   FAS
 
4608
771     208401  37      deductions      airships        kingdom A
 
4609
772     208402  37      Romano  store   stint   A
 
4610
773     208403  37      bitterroot      denounces       Sault   A
 
4611
774     208404  37      corset  Pyle    faithful        
 
4612
775     208501  37      securing        Saxony  Ganymede        FAS
 
4613
776     208502  37      environing      serializations  tidiness        FAS
 
4614
777     208503  37      cute    Peruvian        gainful FAS
 
4615
778     208504  37      Crays   taxonomically   contrary        FAS
 
4616
779     208505  37      heiress kingdom Tipperary       FAS
 
4617
780     210101  37      inform  stint   tropics W
 
4618
781     210102  37      avenge  Sault   theorizers      
 
4619
782     210103  37      universals      faithful        renew   0
 
4620
783     210104  37      Kinsey  Ganymede        already 
 
4621
784     210105  37      ravines tidiness        terminal        
 
4622
785     210106  37      bestseller      gainful Hegelian        
 
4623
786     210107  37      equilibrium     contrary        hypothesizer    
 
4624
787     210401  37      extents Tipperary       warningly       FAS
 
4625
788     213201  37      relatively      tropics journalizing    FAS
 
4626
789     213203  37      pressure        theorizers      nested  
 
4627
790     213204  37      critiques       renew   Lars    
 
4628
791     213205  37      befouled        already saplings        
 
4629
792     213206  37      rightfully      terminal        foothill        
 
4630
793     213207  37      mechanizing     Hegelian        labeled 
 
4631
794     216101  37      Latinizes       hypothesizer    imperiously     FAS
 
4632
795     216103  37      timesharing     warningly       reporters       FAS
 
4633
796     218001  37      Aden    journalizing    furnishings     FAS
 
4634
797     218002  37      embassies       nested  precipitable    FAS
 
4635
798     218003  37      males   Lars    discounts       FAS
 
4636
799     218004  37      shapelessly     saplings        excises FAS
 
4637
800     143503  50      genres  foothill        Stalin  
 
4638
801     218006  37      mastering       labeled despot  FAS
 
4639
802     218007  37      Newtonian       imperiously     ripeness        FAS
 
4640
803     218008  37      finishers       reporters       Arabia  
 
4641
804     218009  37      abates  furnishings     unruly  
 
4642
805     218010  37      teem    precipitable    mournfulness    
 
4643
806     218011  37      kiting  discounts       boom    FAS
 
4644
807     218020  37      stodgy  excises slaughter       A
 
4645
808     218021  50      scalps  Stalin  Sabine  
 
4646
809     218022  37      feed    despot  handy   FAS
 
4647
810     218023  37      guitars ripeness        rural   
 
4648
811     218024  37      airships        Arabia  organizer       
 
4649
812     218101  37      store   unruly  shipyard        FAS
 
4650
813     218102  37      denounces       mournfulness    civics  FAS
 
4651
814     218103  37      Pyle    boom    inaccuracy      FAS
 
4652
815     218201  37      Saxony  slaughter       rules   FAS
 
4653
816     218202  37      serializations  Sabine  juveniles       FAS
 
4654
817     218203  37      Peruvian        handy   comprised       W
 
4655
818     218204  37      taxonomically   rural   investigations  
 
4656
819     218205  37      kingdom organizer       stabilizes      A
 
4657
820     218301  37      stint   shipyard        seminaries      FAS
 
4658
821     218302  37      Sault   civics  Hunter  A
 
4659
822     218401  37      faithful        inaccuracy      sporty  FAS
 
4660
823     218402  37      Ganymede        rules   test    FAS
 
4661
824     218403  37      tidiness        juveniles       weasels 
 
4662
825     218404  37      gainful comprised       CERN    
 
4663
826     218407  37      contrary        investigations  tempering       
 
4664
827     218408  37      Tipperary       stabilizes      afore   FAS
 
4665
828     218409  37      tropics seminaries      Galatean        
 
4666
829     218410  37      theorizers      Hunter  techniques      W
 
4667
830     226001  37      renew   sporty  error   
 
4668
831     226002  37      already test    veranda 
 
4669
832     226003  37      terminal        weasels severely        
 
4670
833     226004  37      Hegelian        CERN    Cassites        FAS
 
4671
834     226005  37      hypothesizer    tempering       forthcoming     
 
4672
835     226006  37      warningly       afore   guides  
 
4673
836     226007  37      journalizing    Galatean        vanish  FAS
 
4674
837     226008  37      nested  techniques      lied    A
 
4675
838     226203  37      Lars    error   sawtooth        FAS
 
4676
839     226204  37      saplings        veranda fated   FAS
 
4677
840     226205  37      foothill        severely        gradually       
 
4678
841     226206  37      labeled Cassites        widens  
 
4679
842     226207  37      imperiously     forthcoming     preclude        
 
4680
843     226208  37      reporters       guides  Jobrel  
 
4681
844     226209  37      furnishings     vanish  hooker  
 
4682
845     226210  37      precipitable    lied    rainstorm       
 
4683
846     226211  37      discounts       sawtooth        disconnects     
 
4684
847     228001  37      excises fated   cruelty 
 
4685
848     228004  37      Stalin  gradually       exponentials    A
 
4686
849     228005  37      despot  widens  affective       A
 
4687
850     228006  37      ripeness        preclude        arteries        
 
4688
851     228007  37      Arabia  Jobrel  Crosby  FAS
 
4689
852     228008  37      unruly  hooker  acquaint        
 
4690
853     228009  37      mournfulness    rainstorm       evenhandedly    
 
4691
854     228101  37      boom    disconnects     percentage      
 
4692
855     228108  37      slaughter       cruelty disobedience    
 
4693
856     228109  37      Sabine  exponentials    humility        
 
4694
857     228110  37      handy   affective       gleaning        A
 
4695
858     228111  37      rural   arteries        petted  A
 
4696
859     228112  37      organizer       Crosby  bloater A
 
4697
860     228113  37      shipyard        acquaint        minion  A
 
4698
861     228114  37      civics  evenhandedly    marginal        A
 
4699
862     228115  37      inaccuracy      percentage      apiary  A
 
4700
863     228116  37      rules   disobedience    measures        
 
4701
864     228117  37      juveniles       humility        precaution      
 
4702
865     228118  37      comprised       gleaning        repelled        
 
4703
866     228119  37      investigations  petted  primary FAS
 
4704
867     228120  37      stabilizes      bloater coverings       
 
4705
868     228121  37      seminaries      minion  Artemia A
 
4706
869     228122  37      Hunter  marginal        navigate        
 
4707
870     228201  37      sporty  apiary  spatial 
 
4708
871     228206  37      test    measures        Gurkha  
 
4709
872     228207  37      weasels precaution      meanwhile       A
 
4710
873     228208  37      CERN    repelled        Melinda A
 
4711
874     228209  37      tempering       primary Butterfield     
 
4712
875     228210  37      afore   coverings       Aldrich A
 
4713
876     228211  37      Galatean        Artemia previewing      A
 
4714
877     228212  37      techniques      navigate        glut    A
 
4715
878     228213  37      error   spatial unaffected      
 
4716
879     228214  37      veranda Gurkha  inmate  
 
4717
880     228301  37      severely        meanwhile       mineral 
 
4718
881     228305  37      Cassites        Melinda impending       A
 
4719
882     228306  37      forthcoming     Butterfield     meditation      A
 
4720
883     228307  37      guides  Aldrich ideas   
 
4721
884     228308  37      vanish  previewing      miniaturizes    W
 
4722
885     228309  37      lied    glut    lewdly  
 
4723
886     228310  37      sawtooth        unaffected      title   
 
4724
887     228311  37      fated   inmate  youthfulness    
 
4725
888     228312  37      gradually       mineral creak   FAS
 
4726
889     228313  37      widens  impending       Chippewa        
 
4727
890     228314  37      preclude        meditation      clamored        
 
4728
891     228401  65      Jobrel  ideas   freezes 
 
4729
892     228402  65      hooker  miniaturizes    forgivably      FAS
 
4730
893     228403  65      rainstorm       lewdly  reduce  FAS
 
4731
894     228404  65      disconnects     title   McGovern        W
 
4732
895     228405  65      cruelty youthfulness    Nazis   W
 
4733
896     228406  65      exponentials    creak   epistle W
 
4734
897     228407  65      affective       Chippewa        socializes      W
 
4735
898     228408  65      arteries        clamored        conceptions     
 
4736
899     228409  65      Crosby  freezes Kevin   
 
4737
900     228410  65      acquaint        forgivably      uncovering      
 
4738
901     230301  37      evenhandedly    reduce  chews   FAS
 
4739
902     230302  37      percentage      McGovern        appendixes      FAS
 
4740
903     230303  37      disobedience    Nazis   raining 
 
4741
904     018062  37      humility        epistle infest  
 
4742
905     230501  37      gleaning        socializes      compartment     
 
4743
906     230502  37      petted  conceptions     minting 
 
4744
907     230503  37      bloater Kevin   ducks   
 
4745
908     230504  37      minion  uncovering      roped   A
 
4746
909     230505  37      marginal        chews   waltz   
 
4747
910     230506  37      apiary  appendixes      Lillian 
 
4748
911     230507  37      measures        raining repressions     A
 
4749
912     230508  37      precaution      infest  chillingly      
 
4750
913     230509  37      repelled        compartment     noncritical     
 
4751
914     230901  37      primary minting lithograph      
 
4752
915     230902  37      coverings       ducks   spongers        
 
4753
916     230903  37      Artemia roped   parenthood      
 
4754
917     230904  37      navigate        waltz   posed   
 
4755
918     230905  37      spatial Lillian instruments     
 
4756
919     230906  37      Gurkha  repressions     filial  
 
4757
920     230907  37      meanwhile       chillingly      fixedly 
 
4758
921     230908  37      Melinda noncritical     relives 
 
4759
922     230909  37      Butterfield     lithograph      Pandora 
 
4760
923     230910  37      Aldrich spongers        watering        A
 
4761
924     230911  37      previewing      parenthood      ungrateful      
 
4762
925     230912  37      glut    posed   secures 
 
4763
926     230913  37      unaffected      instruments     chastisers      
 
4764
927     230914  37      inmate  filial  icon    
 
4765
928     231304  37      mineral fixedly reuniting       A
 
4766
929     231305  37      impending       relives imagining       A
 
4767
930     231306  37      meditation      Pandora abiding A
 
4768
931     231307  37      ideas   watering        omnisciently    
 
4769
932     231308  37      miniaturizes    ungrateful      Britannic       
 
4770
933     231309  37      lewdly  secures scholastics     A
 
4771
934     231310  37      title   chastisers      mechanics       A
 
4772
935     231311  37      youthfulness    icon    humidly A
 
4773
936     231312  37      creak   reuniting       masterpiece     
 
4774
937     231313  37      Chippewa        imagining       however 
 
4775
938     231314  37      clamored        abiding Mendelian       
 
4776
939     231315  37      freezes omnisciently    jarred  
 
4777
940     232102  37      forgivably      Britannic       scolds  
 
4778
941     232103  37      reduce  scholastics     infatuate       
 
4779
942     232104  37      McGovern        mechanics       willed  A
 
4780
943     232105  37      Nazis   humidly joyfully        
 
4781
944     232106  37      epistle masterpiece     Microsoft       
 
4782
945     232107  37      socializes      however fibrosities     
 
4783
946     232108  37      conceptions     Mendelian       Baltimorean     
 
4784
947     232601  37      Kevin   jarred  equestrian      
 
4785
948     232602  37      uncovering      scolds  Goodrich        
 
4786
949     232603  37      chews   infatuate       apish   A
 
4787
950     232605  37      appendixes      willed  Adlerian        
 
4788
5950    1232605 37      appendixes      willed  Adlerian        
 
4789
5951    1232606 37      appendixes      willed  Adlerian        
 
4790
5952    1232607 37      appendixes      willed  Adlerian        
 
4791
5953    1232608 37      appendixes      willed  Adlerian        
 
4792
5954    1232609 37      appendixes      willed  Adlerian        
 
4793
951     232606  37      raining joyfully        Tropez  
 
4794
952     232607  37      infest  Microsoft       nouns   
 
4795
953     232608  37      compartment     fibrosities     distracting     
 
4796
954     232609  37      minting Baltimorean     mutton  
 
4797
955     236104  37      ducks   equestrian      bridgeable      A
 
4798
956     236105  37      roped   Goodrich        stickers        A
 
4799
957     236106  37      waltz   apish   transcontinental        A
 
4800
958     236107  37      Lillian Adlerian        amateurish      
 
4801
959     236108  37      repressions     Tropez  Gandhian        
 
4802
960     236109  37      chillingly      nouns   stratified      
 
4803
961     236110  37      noncritical     distracting     chamberlains    
 
4804
962     236111  37      lithograph      mutton  creditably      
 
4805
963     236112  37      spongers        bridgeable      philosophic     
 
4806
964     236113  37      parenthood      stickers        ores    
 
4807
965     238005  37      posed   transcontinental        Carleton        
 
4808
966     238006  37      instruments     amateurish      tape    A
 
4809
967     238007  37      filial  Gandhian        afloat  A
 
4810
968     238008  37      fixedly stratified      goodness        A
 
4811
969     238009  37      relives chamberlains    welcoming       
 
4812
970     238010  37      Pandora creditably      Pinsky  FAS
 
4813
971     238011  37      watering        philosophic     halting 
 
4814
972     238012  37      ungrateful      ores    bibliography    
 
4815
973     238013  37      secures Carleton        decoding        
 
4816
974     240401  41      chastisers      tape    variance        A
 
4817
975     240402  41      icon    afloat  allowed A
 
4818
976     240901  41      reuniting       goodness        dire    A
 
4819
977     240902  41      imagining       welcoming       dub     A
 
4820
978     241801  41      abiding Pinsky  poisoning       
 
4821
979     242101  41      omnisciently    halting Iraqis  A
 
4822
980     242102  41      Britannic       bibliography    heaving 
 
4823
981     242201  41      scholastics     decoding        population      A
 
4824
982     242202  41      mechanics       variance        bomb    A
 
4825
983     242501  41      humidly allowed Majorca A
 
4826
984     242502  41      masterpiece     dire    Gershwins       
 
4827
985     246201  41      however dub     explorers       
 
4828
986     246202  41      Mendelian       poisoning       libretto        A
 
4829
987     246203  41      jarred  Iraqis  occurred        
 
4830
988     246204  41      scolds  heaving Lagos   
 
4831
989     246205  41      infatuate       population      rats    
 
4832
990     246301  41      willed  bomb    bankruptcies    A
 
4833
991     246302  41      joyfully        Majorca crying  
 
4834
992     248001  41      Microsoft       Gershwins       unexpected      
 
4835
993     248002  41      fibrosities     explorers       accessed        A
 
4836
994     248003  41      Baltimorean     libretto        colorful        A
 
4837
995     248004  41      equestrian      occurred        versatility     A
 
4838
996     248005  41      Goodrich        Lagos   cosy    
 
4839
997     248006  41      apish   rats    Darius  A
 
4840
998     248007  41      Adlerian        bankruptcies    mastering       A
 
4841
999     248008  41      Tropez  crying  Asiaticizations A
 
4842
1000    248009  41      nouns   unexpected      offerers        A
 
4843
1001    248010  41      distracting     accessed        uncles  A
 
4844
1002    248011  41      mutton  colorful        sleepwalk       
 
4845
1003    248012  41      bridgeable      versatility     Ernestine       
 
4846
1004    248013  41      stickers        cosy    checksumming    
 
4847
1005    248014  41      transcontinental        Darius  stopped 
 
4848
1006    248015  41      amateurish      mastering       sicker  
 
4849
1007    248016  41      Gandhian        Asiaticizations Italianization  
 
4850
1008    248017  41      stratified      offerers        alphabetic      
 
4851
1009    248018  41      chamberlains    uncles  pharmaceutic    
 
4852
1010    248019  41      creditably      sleepwalk       creator 
 
4853
1011    248020  41      philosophic     Ernestine       chess   
 
4854
1012    248021  41      ores    checksumming    charcoal        
 
4855
1013    248101  41      Carleton        stopped Epiphany        A
 
4856
1014    248102  41      tape    sicker  bulldozes       A
 
4857
1015    248201  41      afloat  Italianization  Pygmalion       A
 
4858
1016    248202  41      goodness        alphabetic      caressing       A
 
4859
1017    248203  41      welcoming       pharmaceutic    Palestine       A
 
4860
1018    248204  41      Pinsky  creator regimented      A
 
4861
1019    248205  41      halting chess   scars   A
 
4862
1020    248206  41      bibliography    charcoal        realest A
 
4863
1021    248207  41      decoding        Epiphany        diffusing       A
 
4864
1022    248208  41      variance        bulldozes       clubroom        A
 
4865
1023    248209  41      allowed Pygmalion       Blythe  A
 
4866
1024    248210  41      dire    caressing       ahead   
 
4867
1025    248211  50      dub     Palestine       reviver 
 
4868
1026    250501  34      poisoning       regimented      retransmitting  A
 
4869
1027    250502  34      Iraqis  scars   landslide       
 
4870
1028    250503  34      heaving realest Eiffel  
 
4871
1029    250504  34      population      diffusing       absentee        
 
4872
1030    250505  34      bomb    clubroom        aye     
 
4873
1031    250601  34      Majorca Blythe  forked  A
 
4874
1032    250602  34      Gershwins       ahead   Peruvianizes    
 
4875
1033    250603  34      explorers       reviver clerked 
 
4876
1034    250604  34      libretto        retransmitting  tutor   
 
4877
1035    250605  34      occurred        landslide       boulevard       
 
4878
1036    251001  34      Lagos   Eiffel  shuttered       
 
4879
1037    251002  34      rats    absentee        quotes  A
 
4880
1038    251003  34      bankruptcies    aye     Caltech 
 
4881
1039    251004  34      crying  forked  Mossberg        
 
4882
1040    251005  34      unexpected      Peruvianizes    kept    
 
4883
1041    251301  34      accessed        clerked roundly 
 
4884
1042    251302  34      colorful        tutor   features        A
 
4885
1043    251303  34      versatility     boulevard       imaginable      A
 
4886
1044    251304  34      cosy    shuttered       controller      
 
4887
1045    251305  34      Darius  quotes  racial  
 
4888
1046    251401  34      mastering       Caltech uprisings       A
 
4889
1047    251402  34      Asiaticizations Mossberg        narrowed        A
 
4890
1048    251403  34      offerers        kept    cannot  A
 
4891
1049    251404  34      uncles  roundly vest    
 
4892
1050    251405  34      sleepwalk       features        famine  
 
4893
1051    251406  34      Ernestine       imaginable      sugars  
 
4894
1052    251801  34      checksumming    controller      exterminated    A
 
4895
1053    251802  34      stopped racial  belays  
 
4896
1054    252101  34      sicker  uprisings       Hodges  A
 
4897
1055    252102  34      Italianization  narrowed        translatable    
 
4898
1056    252301  34      alphabetic      cannot  duality A
 
4899
1057    252302  34      pharmaceutic    vest    recording       A
 
4900
1058    252303  34      creator famine  rouses  A
 
4901
1059    252304  34      chess   sugars  poison  
 
4902
1060    252305  34      charcoal        exterminated    attitude        
 
4903
1061    252306  34      Epiphany        belays  dusted  
 
4904
1062    252307  34      bulldozes       Hodges  encompasses     
 
4905
1063    252308  34      Pygmalion       translatable    presentation    
 
4906
1064    252309  34      caressing       duality Kantian 
 
4907
1065    256001  34      Palestine       recording       imprecision     A
 
4908
1066    256002  34      regimented      rouses  saving  
 
4909
1067    256003  34      scars   poison  maternal        
 
4910
1068    256004  34      realest attitude        hewed   
 
4911
1069    256005  34      diffusing       dusted  kerosene        
 
4912
1070    258001  34      clubroom        encompasses     Cubans  
 
4913
1071    258002  34      Blythe  presentation    photographers   
 
4914
1072    258003  34      ahead   Kantian nymph   A
 
4915
1073    258004  34      reviver imprecision     bedlam  A
 
4916
1074    258005  34      retransmitting  saving  north   A
 
4917
1075    258006  34      landslide       maternal        Schoenberg      A
 
4918
1076    258007  34      Eiffel  hewed   botany  A
 
4919
1077    258008  34      absentee        kerosene        curs    
 
4920
1078    258009  34      aye     Cubans  solidification  
 
4921
1079    258010  34      forked  photographers   inheritresses   
 
4922
1080    258011  34      Peruvianizes    nymph   stiller 
 
4923
1081    258101  68      clerked bedlam  t1      A
 
4924
1082    258102  68      tutor   north   suite   A
 
4925
1083    258103  34      boulevard       Schoenberg      ransomer        
 
4926
1084    258104  68      shuttered       botany  Willy   
 
4927
1085    258105  68      quotes  curs    Rena    A
 
4928
1086    258106  68      Caltech solidification  Seattle A
 
4929
1087    258107  68      Mossberg        inheritresses   relaxes A
 
4930
1088    258108  68      kept    stiller exclaim 
 
4931
1089    258109  68      roundly t1      implicated      A
 
4932
1090    258110  68      features        suite   distinguish     
 
4933
1091    258111  68      imaginable      ransomer        assayed 
 
4934
1092    258112  68      controller      Willy   homeowner       
 
4935
1093    258113  68      racial  Rena    and     
 
4936
1094    258201  34      uprisings       Seattle stealth 
 
4937
1095    258202  34      narrowed        relaxes coinciding      A
 
4938
1096    258203  34      cannot  exclaim founder A
 
4939
1097    258204  34      vest    implicated      environing      
 
4940
1098    258205  34      famine  distinguish     jewelry 
 
4941
1099    258301  34      sugars  assayed lemons  A
 
4942
1100    258401  34      exterminated    homeowner       brokenness      A
 
4943
1101    258402  34      belays  and     bedpost A
 
4944
1102    258403  34      Hodges  stealth assurers        A
 
4945
1103    258404  34      translatable    coinciding      annoyers        
 
4946
1104    258405  34      duality founder affixed 
 
4947
1105    258406  34      recording       environing      warbling        
 
4948
1106    258407  34      rouses  jewelry seriously       
 
4949
1107    228123  37      poison  lemons  boasted 
 
4950
1108    250606  34      attitude        brokenness      Chantilly       
 
4951
1109    208405  37      dusted  bedpost Iranizes        
 
4952
1110    212101  37      encompasses     assurers        violinist       
 
4953
1111    218206  37      presentation    annoyers        extramarital    
 
4954
1112    150401  37      Kantian affixed spates  
 
4955
1113    248212  41      imprecision     warbling        cloakroom       
 
4956
1114    128026  00      saving  seriously       gazer   
 
4957
1115    128024  00      maternal        boasted hand    
 
4958
1116    128027  00      hewed   Chantilly       tucked  
 
4959
1117    128025  00      kerosene        Iranizes        gems    
 
4960
1118    128109  00      Cubans  violinist       clinker 
 
4961
1119    128705  00      photographers   extramarital    refiner 
 
4962
1120    126303  00      nymph   spates  callus  
 
4963
1121    128308  00      bedlam  cloakroom       leopards        
 
4964
1122    128204  00      north   gazer   comfortingly    
 
4965
1123    128205  00      Schoenberg      hand    generically     
 
4966
1124    128206  00      botany  tucked  getters 
 
4967
1125    128207  00      curs    gems    sexually        
 
4968
1126    118205  00      solidification  clinker spear   
 
4969
1127    116801  00      inheritresses   refiner serums  
 
4970
1128    116803  00      stiller callus  Italianization  
 
4971
1129    116804  00      t1      leopards        attendants      
 
4972
1130    116802  00      suite   comfortingly    spies   
 
4973
1131    128605  00      ransomer        generically     Anthony 
 
4974
1132    118308  00      Willy   getters planar  
 
4975
1133    113702  00      Rena    sexually        cupped  
 
4976
1134    113703  00      Seattle spear   cleanser        
 
4977
1135    112103  00      relaxes serums  commuters       
 
4978
1136    118009  00      exclaim Italianization  honeysuckle     
 
4979
5136    1118009 00      exclaim Italianization  honeysuckle     
 
4980
1137    138011  00      implicated      attendants      orphanage       
 
4981
1138    138010  00      distinguish     spies   skies   
 
4982
1139    138012  00      assayed Anthony crushers        
 
4983
1140    068304  00      homeowner       planar  Puritan 
 
4984
1141    078009  00      and     cupped  squeezer        
 
4985
1142    108013  00      stealth cleanser        bruises 
 
4986
1143    084004  00      coinciding      commuters       bonfire 
 
4987
1144    083402  00      founder honeysuckle     Colombo 
 
4988
1145    084003  00      environing      orphanage       nondecreasing   
 
4989
1146    088504  00      jewelry skies   innocents       
 
4990
1147    088005  00      lemons  crushers        masked  
 
4991
1148    088007  00      brokenness      Puritan file    
 
4992
1149    088006  00      bedpost squeezer        brush   
 
4993
1150    148025  00      assurers        bruises mutilate        
 
4994
1151    148024  00      annoyers        bonfire mommy   
 
4995
1152    138305  00      affixed Colombo bulkheads       
 
4996
1153    138306  00      warbling        nondecreasing   undeclared      
 
4997
1154    152701  00      seriously       innocents       displacements   
 
4998
1155    148505  00      boasted masked  nieces  
 
4999
1156    158003  00      Chantilly       file    coeducation     
 
5000
1157    156201  00      Iranizes        brush   brassy  
 
5001
1158    156202  00      violinist       mutilate        authenticator   
 
5002
1159    158307  00      extramarital    mommy   Washoe  
 
5003
1160    158402  00      spates  bulkheads       penny   
 
5004
1161    158401  00      cloakroom       undeclared      Flagler 
 
5005
1162    068013  00      gazer   displacements   stoned  
 
5006
1163    068012  00      hand    nieces  cranes  
 
5007
1164    068203  00      tucked  coeducation     masterful       
 
5008
1165    088205  00      gems    brassy  biracial        
 
5009
1166    068704  00      clinker authenticator   steamships      
 
5010
1167    068604  00      refiner Washoe  windmills       
 
5011
1168    158502  00      callus  penny   exploit 
 
5012
1169    123103  00      leopards        Flagler riverfront      
 
5013
1170    148026  00      comfortingly    stoned  sisterly        
 
5014
1171    123302  00      generically     cranes  sharpshoot      
 
5015
1172    076503  00      getters masterful       mittens 
 
5016
1173    126304  00      sexually        biracial        interdependency 
 
5017
1174    068306  00      spear   steamships      policy  
 
5018
1175    143504  00      serums  windmills       unleashing      
 
5019
1176    160201  00      Italianization  exploit pretenders      
 
5020
1177    148028  00      attendants      riverfront      overstatements  
 
5021
1178    148027  00      spies   sisterly        birthed 
 
5022
1179    143505  00      Anthony sharpshoot      opportunism     
 
5023
1180    108014  00      planar  mittens showroom        
 
5024
1181    076104  00      cupped  interdependency compromisingly  
 
5025
1182    078106  00      cleanser        policy  Medicare        
 
5026
1183    126102  00      commuters       unleashing      corresponds     
 
5027
1184    128029  00      honeysuckle     pretenders      hardware        
 
5028
1185    128028  00      orphanage       overstatements  implant 
 
5029
1186    018410  00      skies   birthed Alicia  
 
5030
1187    128110  00      crushers        opportunism     requesting      
 
5031
1188    148506  00      Puritan showroom        produced        
 
5032
1189    123303  00      squeezer        compromisingly  criticizes      
 
5033
1190    123304  00      bruises Medicare        backer  
 
5034
1191    068504  00      bonfire corresponds     positively      
 
5035
1192    068305  00      Colombo hardware        colicky 
 
5036
1193    000000  00      nondecreasing   implant thrillingly     
 
5037
1       000001  00      Omaha   teethe  neat    
 
5038
2       011401  37      breaking        dreaded Steinberg       W
 
5039
3       011402  37      Romans  scholastics     jarring 
 
5040
4       011403  37      intercepted     audiology       tinily  
 
5041
2       011401  37      breaking        dreaded Steinberg       W
 
5042
3       011402  37      Romans  scholastics     jarring 
 
5043
4       011403  37      intercepted     audiology       tinily  
 
5044
INSERT INTO t2 VALUES (1,000001,00,'Omaha','teethe','neat','') , (2,011401,37,'breaking','dreaded','Steinberg','W') , (3,011402,37,'Romans','scholastics','jarring','') , (4,011403,37,'intercepted','audiology','tinily','');
 
5045
SELECT * FROM t2;
 
5046
auto    fld1    companynr       fld3    fld4    fld5    fld6
 
5047
1       000001  00      Omaha   teethe  neat    
 
5048
2       011401  37      breaking        dreaded Steinberg       W
 
5049
3       011402  37      Romans  scholastics     jarring 
 
5050
4       011403  37      intercepted     audiology       tinily  
 
5051
5       011501  37      bewilderingly   wallet  balled  
 
5052
6       011701  37      astound parters persist W
 
5053
7       011702  37      admonishing     eschew  attainments     
 
5054
8       011703  37      sumac   quitter fanatic 
 
5055
9       012001  37      flanking        neat    measures        FAS
 
5056
10      012003  37      combed  Steinberg       rightfulness    
 
5057
11      012004  37      subjective      jarring capably 
 
5058
12      012005  37      scatterbrain    tinily  impulsive       
 
5059
13      012301  37      Eulerian        balled  starlet 
 
5060
14      012302  36      dubbed  persist terminators     
 
5061
15      012303  37      Kane    attainments     untying 
 
5062
16      012304  37      overlay fanatic announces       FAS
 
5063
17      012305  37      perturb measures        featherweight   FAS
 
5064
18      012306  37      goblins rightfulness    pessimist       FAS
 
5065
19      012501  37      annihilates     capably daughter        
 
5066
20      012602  37      Wotan   impulsive       decliner        FAS
 
5067
21      012603  37      snatching       starlet lawgiver        
 
5068
22      012604  37      concludes       terminators     stated  
 
5069
23      012605  37      laterally       untying readable        
 
5070
24      012606  37      yelped  announces       attrition       
 
5071
25      012701  37      grazing featherweight   cascade FAS
 
5072
26      012702  37      Baird   pessimist       motors  FAS
 
5073
27      012703  37      celery  daughter        interrogate     
 
5074
28      012704  37      misunderstander decliner        pests   W
 
5075
29      013601  37      handgun lawgiver        stairway        
 
5076
30      013602  37      foldout stated  dopers  FAS
 
5077
31      013603  37      mystic  readable        testicle        W
 
5078
32      013604  37      succumbed       attrition       Parsifal        W
 
5079
33      013605  37      Nabisco cascade leavings        
 
5080
34      013606  37      fingerings      motors  postulation     W
 
5081
35      013607  37      aging   interrogate     squeaking       
 
5082
36      013608  37      afield  pests   contrasted      
 
5083
37      013609  37      ammonium        stairway        leftover        
 
5084
38      013610  37      boat    dopers  whiteners       
 
5085
39      013801  37      intelligibility testicle        erases  W
 
5086
40      013802  37      Augustine       Parsifal        Punjab  W
 
5087
41      013803  37      teethe  leavings        Merritt 
 
5088
42      013804  37      dreaded postulation     Quixotism       
 
5089
43      013901  37      scholastics     squeaking       sweetish        FAS
 
5090
44      016001  37      audiology       contrasted      dogging FAS
 
5091
45      016201  37      wallet  leftover        scornfully      FAS
 
5092
46      016202  37      parters whiteners       bellow  
 
5093
47      016301  37      eschew  erases  bills   
 
5094
48      016302  37      quitter Punjab  cupboard        FAS
 
5095
49      016303  37      neat    Merritt sureties        FAS
 
5096
50      016304  37      Steinberg       Quixotism       puddings        
 
5097
51      018001  37      jarring sweetish        tapestry        
 
5098
52      018002  37      tinily  dogging fetters 
 
5099
53      018003  37      balled  scornfully      bivalves        
 
5100
54      018004  37      persist bellow  incurring       
 
5101
55      018005  37      attainments     bills   Adolph  
 
5102
56      018007  37      fanatic cupboard        pithed  
 
5103
57      018008  37      measures        sureties        emergency       
 
5104
58      018009  37      rightfulness    puddings        Miles   
 
5105
59      018010  37      capably tapestry        trimmings       
 
5106
60      018012  37      impulsive       fetters tragedies       W
 
5107
61      018013  37      starlet bivalves        skulking        W
 
5108
62      018014  37      terminators     incurring       flint   
 
5109
63      018015  37      untying Adolph  flopping        W
 
5110
64      018016  37      announces       pithed  relaxing        FAS
 
5111
65      018017  37      featherweight   emergency       offload FAS
 
5112
66      018018  37      pessimist       Miles   suites  W
 
5113
67      018019  37      daughter        trimmings       lists   FAS
 
5114
68      018020  37      decliner        tragedies       animized        FAS
 
5115
69      018021  37      lawgiver        skulking        multilayer      W
 
5116
70      018022  37      stated  flint   standardizes    FAS
 
5117
71      018023  37      readable        flopping        Judas   
 
5118
72      018024  37      attrition       relaxing        vacuuming       W
 
5119
73      018025  37      cascade offload dentally        W
 
5120
74      018026  37      motors  suites  humanness       W
 
5121
75      018027  37      interrogate     lists   inch    W
 
5122
76      018028  37      pests   animized        Weissmuller     W
 
5123
77      018029  37      stairway        multilayer      irresponsibly   W
 
5124
78      018030  37      dopers  standardizes    luckily FAS
 
5125
79      018032  37      testicle        Judas   culled  W
 
5126
80      018033  37      Parsifal        vacuuming       medical FAS
 
5127
81      018034  37      leavings        dentally        bloodbath       FAS
 
5128
82      018035  37      postulation     humanness       subschema       W
 
5129
83      018036  37      squeaking       inch    animals W
 
5130
84      018037  37      contrasted      Weissmuller     Micronesia      
 
5131
85      018038  37      leftover        irresponsibly   repetitions     
 
5132
86      018039  37      whiteners       luckily Antares 
 
5133
87      018040  37      erases  culled  ventilate       W
 
5134
88      018041  37      Punjab  medical pityingly       
 
5135
89      018042  37      Merritt bloodbath       interdependent  
 
5136
90      018043  37      Quixotism       subschema       Graves  FAS
 
5137
91      018044  37      sweetish        animals neonatal        
 
5138
92      018045  37      dogging Micronesia      scribbled       FAS
 
5139
93      018046  37      scornfully      repetitions     chafe   W
 
5140
94      018048  37      bellow  Antares honoring        
 
5141
95      018049  37      bills   ventilate       realtor 
 
5142
96      018050  37      cupboard        pityingly       elite   
 
5143
97      018051  37      sureties        interdependent  funereal        
 
5144
98      018052  37      puddings        Graves  abrogating      
 
5145
99      018053  50      tapestry        neonatal        sorters 
 
5146
100     018054  37      fetters scribbled       Conley  
 
5147
101     018055  37      bivalves        chafe   lectured        
 
5148
102     018056  37      incurring       honoring        Abraham 
 
5149
103     018057  37      Adolph  realtor Hawaii  W
 
5150
104     018058  37      pithed  elite   cage    
 
5151
105     018059  36      emergency       funereal        hushes  
 
5152
106     018060  37      Miles   abrogating      Simla   
 
5153
107     018061  37      trimmings       sorters reporters       
 
5154
108     018101  37      tragedies       Conley  Dutchman        FAS
 
5155
109     018102  37      skulking        lectured        descendants     FAS
 
5156
110     018103  37      flint   Abraham groupings       FAS
 
5157
111     018104  37      flopping        Hawaii  dissociate      
 
5158
112     018201  37      relaxing        cage    coexist W
 
5159
113     018202  37      offload hushes  Beebe   
 
5160
114     018402  37      suites  Simla   Taoism  
 
5161
115     018403  37      lists   reporters       Connally        
 
5162
116     018404  37      animized        Dutchman        fetched FAS
 
5163
117     018405  37      multilayer      descendants     checkpoints     FAS
 
5164
118     018406  37      standardizes    groupings       rusting 
 
5165
119     018409  37      Judas   dissociate      galling 
 
5166
120     018601  37      vacuuming       coexist obliterates     
 
5167
121     018602  37      dentally        Beebe   traitor 
 
5168
122     018603  37      humanness       Taoism  resumes FAS
 
5169
123     018801  37      inch    Connally        analyzable      FAS
 
5170
124     018802  37      Weissmuller     fetched terminator      FAS
 
5171
125     018803  37      irresponsibly   checkpoints     gritty  FAS
 
5172
126     018804  37      luckily rusting firearm W
 
5173
127     018805  37      culled  galling minima  
 
5174
128     018806  37      medical obliterates     Selfridge       
 
5175
129     018807  37      bloodbath       traitor disable 
 
5176
130     018808  37      subschema       resumes witchcraft      W
 
5177
131     018809  37      animals analyzable      betroth W
 
5178
132     018810  37      Micronesia      terminator      Manhattanize    
 
5179
133     018811  37      repetitions     gritty  imprint 
 
5180
134     018812  37      Antares firearm peeked  
 
5181
135     019101  37      ventilate       minima  swelling        
 
5182
136     019102  37      pityingly       Selfridge       interrelationships      W
 
5183
137     019103  37      interdependent  disable riser   
 
5184
138     019201  37      Graves  witchcraft      Gandhian        W
 
5185
139     030501  37      neonatal        betroth peacock A
 
5186
140     030502  50      scribbled       Manhattanize    bee     A
 
5187
141     030503  37      chafe   imprint kanji   
 
5188
142     030504  37      honoring        peeked  dental  
 
5189
143     031901  37      realtor swelling        scarf   FAS
 
5190
144     036001  37      elite   interrelationships      chasm   A
 
5191
145     036002  37      funereal        riser   insolence       A
 
5192
146     036004  37      abrogating      Gandhian        syndicate       
 
5193
147     036005  37      sorters peacock alike   
 
5194
148     038001  37      Conley  bee     imperial        A
 
5195
149     038002  37      lectured        kanji   convulsion      A
 
5196
150     038003  37      Abraham dental  railway A
 
5197
151     038004  37      Hawaii  scarf   validate        A
 
5198
152     038005  37      cage    chasm   normalizes      A
 
5199
153     038006  37      hushes  insolence       comprehensive   
 
5200
154     038007  37      Simla   syndicate       chewing 
 
5201
155     038008  37      reporters       alike   denizen 
 
5202
156     038009  37      Dutchman        imperial        schemer 
 
5203
157     038010  37      descendants     convulsion      chronicle       
 
5204
158     038011  37      groupings       railway Kline   
 
5205
159     038012  37      dissociate      validate        Anatole 
 
5206
160     038013  37      coexist normalizes      partridges      
 
5207
161     038014  37      Beebe   comprehensive   brunch  
 
5208
162     038015  37      Taoism  chewing recruited       
 
5209
163     038016  37      Connally        denizen dimensions      W
 
5210
164     038017  37      fetched schemer Chicana W
 
5211
165     038018  37      checkpoints     chronicle       announced       
 
5212
166     038101  37      rusting Kline   praised FAS
 
5213
167     038102  37      galling Anatole employing       
 
5214
168     038103  37      obliterates     partridges      linear  
 
5215
169     038104  37      traitor brunch  quagmire        
 
5216
170     038201  37      resumes recruited       western A
 
5217
171     038202  37      analyzable      dimensions      relishing       
 
5218
172     038203  37      terminator      Chicana serving A
 
5219
173     038204  37      gritty  announced       scheduling      
 
5220
174     038205  37      firearm praised lore    
 
5221
175     038206  37      minima  employing       eventful        
 
5222
176     038208  37      Selfridge       linear  arteriole       A
 
5223
177     042801  37      disable quagmire        disentangle     
 
5224
178     042802  37      witchcraft      western cured   A
 
5225
179     046101  37      betroth relishing       Fenton  W
 
5226
180     048001  37      Manhattanize    serving avoidable       A
 
5227
181     048002  37      imprint scheduling      drains  A
 
5228
182     048003  37      peeked  lore    detectably      FAS
 
5229
183     048004  37      swelling        eventful        husky   
 
5230
184     048005  37      interrelationships      arteriole       impelling       
 
5231
185     048006  37      riser   disentangle     undoes  
 
5232
186     048007  37      Gandhian        cured   evened  
 
5233
187     048008  37      peacock Fenton  squeezes        
 
5234
188     048101  37      bee     avoidable       destroyer       FAS
 
5235
189     048102  37      kanji   drains  rudeness        
 
5236
190     048201  37      dental  detectably      beaner  FAS
 
5237
191     048202  37      scarf   husky   boorish 
 
5238
192     048203  37      chasm   impelling       Everhart        
 
5239
193     048204  37      insolence       undoes  encompass       A
 
5240
194     048205  37      syndicate       evened  mushrooms       
 
5241
195     048301  37      alike   squeezes        Alison  A
 
5242
196     048302  37      imperial        destroyer       externally      FAS
 
5243
197     048303  37      convulsion      rudeness        pellagra        
 
5244
198     048304  37      railway beaner  cult    
 
5245
199     048305  37      validate        boorish creek   A
 
5246
200     048401  37      normalizes      Everhart        Huffman 
 
5247
201     048402  37      comprehensive   encompass       Majorca FAS
 
5248
202     048403  37      chewing mushrooms       governing       A
 
5249
203     048404  37      denizen Alison  gadfly  FAS
 
5250
204     048405  37      schemer externally      reassigned      FAS
 
5251
205     048406  37      chronicle       pellagra        intentness      W
 
5252
206     048407  37      Kline   cult    craziness       
 
5253
207     048408  37      Anatole creek   psychic 
 
5254
208     048409  37      partridges      Huffman squabbled       
 
5255
209     048410  37      brunch  Majorca burlesque       
 
5256
210     048411  37      recruited       governing       capped  
 
5257
211     048412  37      dimensions      gadfly  extracted       A
 
5258
212     048413  37      Chicana reassigned      DiMaggio        
 
5259
213     048601  37      announced       intentness      exclamation     FAS
 
5260
214     048602  37      praised craziness       subdirectory    
 
5261
215     048603  37      employing       psychic fangs   
 
5262
216     048604  37      linear  squabbled       buyer   A
 
5263
217     048801  37      quagmire        burlesque       pithing A
 
5264
218     050901  37      western capped  transistorizing A
 
5265
219     051201  37      relishing       extracted       nonbiodegradable        
 
5266
220     056002  37      serving DiMaggio        dislocate       
 
5267
221     056003  37      scheduling      exclamation     monochromatic   FAS
 
5268
222     056004  37      lore    subdirectory    batting 
 
5269
223     056102  37      eventful        fangs   postcondition   A
 
5270
224     056203  37      arteriole       buyer   catalog FAS
 
5271
225     056204  37      disentangle     pithing Remus   
 
5272
226     058003  37      cured   transistorizing devices A
 
5273
227     058004  37      Fenton  nonbiodegradable        bike    A
 
5274
228     058005  37      avoidable       dislocate       qualify 
 
5275
229     058006  37      drains  monochromatic   detained        
 
5276
230     058007  37      detectably      batting commended       
 
5277
231     058101  37      husky   postcondition   civilize        
 
5278
232     058102  37      impelling       catalog Elmhurst        
 
5279
233     058103  37      undoes  Remus   anesthetizing   
 
5280
234     058105  37      evened  devices deaf    
 
5281
235     058111  37      squeezes        bike    Brigham 
 
5282
236     058112  37      destroyer       qualify title   
 
5283
237     058113  37      rudeness        detained        coarse  
 
5284
238     058114  37      beaner  commended       combinations    
 
5285
239     058115  37      boorish civilize        grayness        
 
5286
240     058116  37      Everhart        Elmhurst        innumerable     FAS
 
5287
241     058117  37      encompass       anesthetizing   Caroline        A
 
5288
242     058118  37      mushrooms       deaf    fatty   FAS
 
5289
243     058119  37      Alison  Brigham eastbound       
 
5290
244     058120  37      externally      title   inexperienced   
 
5291
245     058121  37      pellagra        coarse  hoarder A
 
5292
246     058122  37      cult    combinations    scotch  W
 
5293
247     058123  37      creek   grayness        passport        A
 
5294
248     058124  37      Huffman innumerable     strategic       FAS
 
5295
249     058125  37      Majorca Caroline        gated   
 
5296
250     058126  37      governing       fatty   flog    
 
5297
251     058127  37      gadfly  eastbound       Pipestone       
 
5298
252     058128  37      reassigned      inexperienced   Dar     
 
5299
253     058201  37      intentness      hoarder Corcoran        
 
5300
254     058202  37      craziness       scotch  flyers  A
 
5301
255     058303  37      psychic passport        competitions    W
 
5302
256     058304  37      squabbled       strategic       suppliers       FAS
 
5303
257     058602  37      burlesque       gated   skips   
 
5304
258     058603  37      capped  flog    institutes      
 
5305
259     058604  37      extracted       Pipestone       troop   A
 
5306
260     058605  37      DiMaggio        Dar     connective      W
 
5307
261     058606  37      exclamation     Corcoran        denies  
 
5308
262     058607  37      subdirectory    flyers  polka   
 
5309
263     060401  36      fangs   competitions    observations    FAS
 
5310
264     061701  36      buyer   suppliers       askers  
 
5311
265     066201  36      pithing skips   homeless        FAS
 
5312
266     066501  36      transistorizing institutes      Anna    
 
5313
267     068001  36      nonbiodegradable        troop   subdirectories  W
 
5314
268     068002  36      dislocate       connective      decaying        FAS
 
5315
269     068005  36      monochromatic   denies  outwitting      W
 
5316
270     068006  36      batting polka   Harpy   W
 
5317
271     068007  36      postcondition   observations    crazed  
 
5318
272     068008  36      catalog askers  suffocate       
 
5319
273     068009  36      Remus   homeless        provers FAS
 
5320
274     068010  36      devices Anna    technically     
 
5321
275     068011  36      bike    subdirectories  Franklinizations        
 
5322
276     068202  36      qualify decaying        considered      
 
5323
277     068302  36      detained        outwitting      tinnily 
 
5324
278     068303  36      commended       Harpy   uninterruptedly 
 
5325
279     068401  36      civilize        crazed  whistled        A
 
5326
280     068501  36      Elmhurst        suffocate       automate        
 
5327
281     068502  36      anesthetizing   provers gutting W
 
5328
282     068503  36      deaf    technically     surreptitious   
 
5329
283     068602  36      Brigham Franklinizations        Choctaw 
 
5330
284     068603  36      title   considered      cooks   
 
5331
285     068701  36      coarse  tinnily millivolt       FAS
 
5332
286     068702  36      combinations    uninterruptedly counterpoise    
 
5333
287     068703  36      grayness        whistled        Gothicism       
 
5334
288     076001  36      innumerable     automate        feminine        
 
5335
289     076002  36      Caroline        gutting metaphysically  W
 
5336
290     076101  36      fatty   surreptitious   sanding A
 
5337
291     076102  36      eastbound       Choctaw contributorily  
 
5338
292     076103  36      inexperienced   cooks   receivers       FAS
 
5339
293     076302  36      hoarder millivolt       adjourn 
 
5340
294     076303  36      scotch  counterpoise    straggled       A
 
5341
295     076304  36      passport        Gothicism       druggists       
 
5342
296     076305  36      strategic       feminine        thanking        FAS
 
5343
297     076306  36      gated   metaphysically  ostrich 
 
5344
298     076307  36      flog    sanding hopelessness    FAS
 
5345
299     076402  36      Pipestone       contributorily  Eurydice        
 
5346
300     076501  36      Dar     receivers       excitation      W
 
5347
301     076502  36      Corcoran        adjourn presumes        FAS
 
5348
302     076701  36      flyers  straggled       imaginable      FAS
 
5349
303     078001  36      competitions    druggists       concoct W
 
5350
304     078002  36      suppliers       thanking        peering W
 
5351
305     078003  36      skips   ostrich Phelps  FAS
 
5352
306     078004  36      institutes      hopelessness    ferociousness   FAS
 
5353
307     078005  36      troop   Eurydice        sentences       
 
5354
308     078006  36      connective      excitation      unlocks 
 
5355
309     078007  36      denies  presumes        engrossing      W
 
5356
310     078008  36      polka   imaginable      Ruth    
 
5357
311     078101  36      observations    concoct tying   
 
5358
312     078103  36      askers  peering exclaimers      
 
5359
313     078104  36      homeless        Phelps  synergy 
 
5360
314     078105  36      Anna    ferociousness   Huey    W
 
5361
315     082101  36      subdirectories  sentences       merging 
 
5362
316     083401  36      decaying        unlocks judges  A
 
5363
317     084001  36      outwitting      engrossing      Shylock W
 
5364
318     084002  36      Harpy   Ruth    Miltonism       
 
5365
319     086001  36      crazed  tying   hen     W
 
5366
320     086102  36      suffocate       exclaimers      honeybee        FAS
 
5367
321     086201  36      provers synergy towers  
 
5368
322     088001  36      technically     Huey    dilutes W
 
5369
323     088002  36      Franklinizations        merging numerals        FAS
 
5370
324     088003  36      considered      judges  democracy       FAS
 
5371
325     088004  36      tinnily Shylock Ibero-  
 
5372
326     088101  36      uninterruptedly Miltonism       invalids        
 
5373
327     088102  36      whistled        hen     behavior        
 
5374
328     088103  36      automate        honeybee        accruing        
 
5375
329     088104  36      gutting towers  relics  A
 
5376
330     088105  36      surreptitious   dilutes rackets 
 
5377
331     088106  36      Choctaw numerals        Fischbein       W
 
5378
332     088201  36      cooks   democracy       phony   W
 
5379
333     088203  36      millivolt       Ibero-  cross   FAS
 
5380
334     088204  36      counterpoise    invalids        cleanup 
 
5381
335     088302  37      Gothicism       behavior        conspirator     
 
5382
336     088303  37      feminine        accruing        label   FAS
 
5383
337     088305  37      metaphysically  relics  university      
 
5384
338     088402  37      sanding rackets cleansed        FAS
 
5385
339     088501  36      contributorily  Fischbein       ballgown        
 
5386
340     088502  36      receivers       phony   starlet 
 
5387
341     088503  36      adjourn cross   aqueous 
 
5388
342     098001  58      straggled       cleanup portrayal       A
 
5389
343     098002  58      druggists       conspirator     despising       W
 
5390
344     098003  58      thanking        label   distort W
 
5391
345     098004  58      ostrich university      palmed  
 
5392
346     098005  58      hopelessness    cleansed        faced   
 
5393
347     098006  58      Eurydice        ballgown        silverware      
 
5394
348     141903  29      excitation      starlet assessor        
 
5395
349     098008  58      presumes        aqueous spiders 
 
5396
350     098009  58      imaginable      portrayal       artificially    
 
5397
351     098010  58      concoct despising       reminiscence    
 
5398
352     098011  58      peering distort Mexican 
 
5399
353     098012  58      Phelps  palmed  obnoxious       
 
5400
354     098013  58      ferociousness   faced   fragile 
 
5401
355     098014  58      sentences       silverware      apprehensible   
 
5402
356     098015  58      unlocks assessor        births  
 
5403
357     098016  58      engrossing      spiders garages 
 
5404
358     098017  58      Ruth    artificially    panty   
 
5405
359     098018  58      tying   reminiscence    anteater        
 
5406
360     098019  58      exclaimers      Mexican displacement    A
 
5407
361     098020  58      synergy obnoxious       drovers A
 
5408
362     098021  58      Huey    fragile patenting       A
 
5409
363     098022  58      merging apprehensible   far     A
 
5410
364     098023  58      judges  births  shrieks 
 
5411
365     098024  58      Shylock garages aligning        W
 
5412
366     098025  37      Miltonism       panty   pragmatism      
 
5413
367     106001  36      hen     anteater        fevers  W
 
5414
368     108001  36      honeybee        displacement    reexamines      A
 
5415
369     108002  36      towers  drovers occupancies     
 
5416
370     108003  36      dilutes patenting       sweats  FAS
 
5417
371     108004  36      numerals        far     modulators      
 
5418
372     108005  36      democracy       shrieks demand  W
 
5419
373     108007  36      Ibero-  aligning        Madeira 
 
5420
374     108008  36      invalids        pragmatism      Viennese        W
 
5421
375     108009  36      behavior        fevers  chillier        W
 
5422
376     108010  36      accruing        reexamines      wildcats        FAS
 
5423
377     108011  36      relics  occupancies     gentle  
 
5424
378     108012  36      rackets sweats  Angles  W
 
5425
379     108101  36      Fischbein       modulators      accuracies      
 
5426
380     108102  36      phony   demand  toggle  
 
5427
381     108103  36      cross   Madeira Mendelssohn     W
 
5428
382     108111  50      cleanup Viennese        behaviorally    
 
5429
383     108105  36      conspirator     chillier        Rochford        
 
5430
384     108106  36      label   wildcats        mirror  W
 
5431
385     108107  36      university      gentle  Modula  
 
5432
386     108108  50      cleansed        Angles  clobbering      
 
5433
387     108109  36      ballgown        accuracies      chronography    
 
5434
388     108110  36      starlet toggle  Eskimoizeds     
 
5435
389     108201  36      aqueous Mendelssohn     British W
 
5436
390     108202  36      portrayal       behaviorally    pitfalls        
 
5437
391     108203  36      despising       Rochford        verify  W
 
5438
392     108204  36      distort mirror  scatter FAS
 
5439
393     108205  36      palmed  Modula  Aztecan 
 
5440
394     108301  36      faced   clobbering      acuity  W
 
5441
395     108302  36      silverware      chronography    sinking W
 
5442
396     112101  36      assessor        Eskimoizeds     beasts  FAS
 
5443
397     112102  36      spiders British Witt    W
 
5444
398     113701  36      artificially    pitfalls        physicists      FAS
 
5445
399     116001  36      reminiscence    verify  folksong        A
 
5446
400     116201  36      Mexican scatter strokes FAS
 
5447
401     116301  36      obnoxious       Aztecan crowder 
 
5448
402     116302  36      fragile acuity  merry   
 
5449
403     116601  36      apprehensible   sinking cadenced        
 
5450
404     116602  36      births  beasts  alimony A
 
5451
405     116603  36      garages Witt    principled      A
 
5452
406     116701  36      panty   physicists      golfing 
 
5453
407     116702  36      anteater        folksong        undiscovered    
 
5454
408     118001  36      displacement    strokes irritates       
 
5455
409     118002  36      drovers crowder patriots        A
 
5456
410     118003  36      patenting       merry   rooms   FAS
 
5457
411     118004  36      far     cadenced        towering        W
 
5458
412     118005  36      shrieks alimony displease       
 
5459
413     118006  36      aligning        principled      photosensitive  
 
5460
414     118007  36      pragmatism      golfing inking  
 
5461
415     118008  36      fevers  undiscovered    gainers 
 
5462
416     118101  36      reexamines      irritates       leaning A
 
5463
417     118102  36      occupancies     patriots        hydrant A
 
5464
418     118103  36      sweats  rooms   preserve        
 
5465
419     118202  36      modulators      towering        blinded A
 
5466
420     118203  36      demand  displease       interactions    A
 
5467
421     118204  36      Madeira photosensitive  Barry   
 
5468
422     118302  36      Viennese        inking  whiteness       A
 
5469
423     118304  36      chillier        gainers pastimes        W
 
5470
424     118305  36      wildcats        leaning Edenization     
 
5471
425     118306  36      gentle  hydrant Muscat  
 
5472
426     118307  36      Angles  preserve        assassinated    
 
5473
427     123101  36      accuracies      blinded labeled 
 
5474
428     123102  36      toggle  interactions    glacial A
 
5475
429     123301  36      Mendelssohn     Barry   implied W
 
5476
430     126001  36      behaviorally    whiteness       bibliographies  W
 
5477
431     126002  36      Rochford        pastimes        Buchanan        
 
5478
432     126003  36      mirror  Edenization     forgivably      FAS
 
5479
433     126101  36      Modula  Muscat  innuendo        A
 
5480
434     126301  36      clobbering      assassinated    den     FAS
 
5481
435     126302  36      chronography    labeled submarines      W
 
5482
436     126402  36      Eskimoizeds     glacial mouthful        A
 
5483
437     126601  36      British implied expiring        
 
5484
438     126602  36      pitfalls        bibliographies  unfulfilled     FAS
 
5485
439     126702  36      verify  Buchanan        precession      
 
5486
440     128001  36      scatter forgivably      nullified       
 
5487
441     128002  36      Aztecan innuendo        affects 
 
5488
442     128003  36      acuity  den     Cynthia 
 
5489
443     128004  36      sinking submarines      Chablis A
 
5490
444     128005  36      beasts  mouthful        betterments     FAS
 
5491
445     128007  36      Witt    expiring        advertising     
 
5492
446     128008  36      physicists      unfulfilled     rubies  A
 
5493
447     128009  36      folksong        precession      southwest       FAS
 
5494
448     128010  36      strokes nullified       superstitious   A
 
5495
449     128011  36      crowder affects tabernacle      W
 
5496
450     128012  36      merry   Cynthia silk    A
 
5497
451     128013  36      cadenced        Chablis handsomest      A
 
5498
452     128014  36      alimony betterments     Persian A
 
5499
453     128015  36      principled      advertising     analog  W
 
5500
454     128016  36      golfing rubies  complex W
 
5501
455     128017  36      undiscovered    southwest       Taoist  
 
5502
456     128018  36      irritates       superstitious   suspend 
 
5503
457     128019  36      patriots        tabernacle      relegated       
 
5504
458     128020  36      rooms   silk    awesome W
 
5505
459     128021  36      towering        handsomest      Bruxelles       
 
5506
460     128022  36      displease       Persian imprecisely     A
 
5507
461     128023  36      photosensitive  analog  televise        
 
5508
462     128101  36      inking  complex braking 
 
5509
463     128102  36      gainers Taoist  true    FAS
 
5510
464     128103  36      leaning suspend disappointing   FAS
 
5511
465     128104  36      hydrant relegated       navally W
 
5512
466     128106  36      preserve        awesome circus  
 
5513
467     128107  36      blinded Bruxelles       beetles 
 
5514
468     128108  36      interactions    imprecisely     trumps  
 
5515
469     128202  36      Barry   televise        fourscore       W
 
5516
470     128203  36      whiteness       braking Blackfoots      
 
5517
471     128301  36      pastimes        true    Grady   
 
5518
472     128302  36      Edenization     disappointing   quiets  FAS
 
5519
473     128303  36      Muscat  navally floundered      FAS
 
5520
474     128304  36      assassinated    circus  profundity      W
 
5521
475     128305  36      labeled beetles Garrisonian     W
 
5522
476     128307  36      glacial trumps  Strauss 
 
5523
477     128401  36      implied fourscore       cemented        FAS
 
5524
478     128502  36      bibliographies  Blackfoots      contrition      A
 
5525
479     128503  36      Buchanan        Grady   mutations       
 
5526
480     128504  36      forgivably      quiets  exhibits        W
 
5527
481     128505  36      innuendo        floundered      tits    
 
5528
482     128601  36      den     profundity      mate    A
 
5529
483     128603  36      submarines      Garrisonian     arches  
 
5530
484     128604  36      mouthful        Strauss Moll    
 
5531
485     128702  36      expiring        cemented        ropers  
 
5532
486     128703  36      unfulfilled     contrition      bombast 
 
5533
487     128704  36      precession      mutations       difficultly     A
 
5534
488     138001  36      nullified       exhibits        adsorption      
 
5535
489     138002  36      affects tits    definiteness    FAS
 
5536
490     138003  36      Cynthia mate    cultivation     A
 
5537
491     138004  36      Chablis arches  heals   A
 
5538
492     138005  36      betterments     Moll    Heusen  W
 
5539
493     138006  36      advertising     ropers  target  FAS
 
5540
494     138007  36      rubies  bombast cited   A
 
5541
495     138008  36      southwest       difficultly     congresswoman   W
 
5542
496     138009  36      superstitious   adsorption      Katherine       
 
5543
497     138102  36      tabernacle      definiteness    titter  A
 
5544
498     138103  36      silk    cultivation     aspire  A
 
5545
499     138104  36      handsomest      heals   Mardis  
 
5546
500     138105  36      Persian Heusen  Nadia   W
 
5547
501     138201  36      analog  target  estimating      FAS
 
5548
502     138302  36      complex cited   stuck   A
 
5549
503     138303  36      Taoist  congresswoman   fifteenth       A
 
5550
504     138304  36      suspend Katherine       Colombo 
 
5551
505     138401  29      relegated       titter  survey  A
 
5552
506     140102  29      awesome aspire  staffing        
 
5553
507     140103  29      Bruxelles       Mardis  obtain  
 
5554
508     140104  29      imprecisely     Nadia   loaded  
 
5555
509     140105  29      televise        estimating      slaughtered     
 
5556
510     140201  29      braking stuck   lights  A
 
5557
511     140701  29      true    fifteenth       circumference   
 
5558
512     141501  29      disappointing   Colombo dull    A
 
5559
513     141502  29      navally survey  weekly  A
 
5560
514     141901  29      circus  staffing        wetness 
 
5561
515     141902  29      beetles obtain  visualized      
 
5562
516     142101  29      trumps  loaded  Tannenbaum      
 
5563
517     142102  29      fourscore       slaughtered     moribund        
 
5564
518     142103  29      Blackfoots      lights  demultiplex     
 
5565
519     142701  29      Grady   circumference   lockings        
 
5566
520     143001  29      quiets  dull    thugs   FAS
 
5567
521     143501  29      floundered      weekly  unnerves        
 
5568
522     143502  29      profundity      wetness abut    
 
5569
523     148001  29      Garrisonian     visualized      Chippewa        A
 
5570
524     148002  29      Strauss Tannenbaum      stratifications A
 
5571
525     148003  29      cemented        moribund        signaled        
 
5572
526     148004  29      contrition      demultiplex     Italianizes     A
 
5573
527     148005  29      mutations       lockings        algorithmic     A
 
5574
528     148006  29      exhibits        thugs   paranoid        FAS
 
5575
529     148007  29      tits    unnerves        camping A
 
5576
530     148009  29      mate    abut    signifying      A
 
5577
531     148010  29      arches  Chippewa        Patrice W
 
5578
532     148011  29      Moll    stratifications search  A
 
5579
533     148012  29      ropers  signaled        Angeles A
 
5580
534     148013  29      bombast Italianizes     semblance       
 
5581
535     148023  36      difficultly     algorithmic     taxed   
 
5582
536     148015  29      adsorption      paranoid        Beatrice        
 
5583
537     148016  29      definiteness    camping retrace 
 
5584
538     148017  29      cultivation     signifying      lockout 
 
5585
539     148018  29      heals   Patrice grammatic       
 
5586
540     148019  29      Heusen  search  helmsman        
 
5587
541     148020  29      target  Angeles uniform W
 
5588
542     148021  29      cited   semblance       hamming 
 
5589
543     148022  29      congresswoman   taxed   disobedience    
 
5590
544     148101  29      Katherine       Beatrice        captivated      A
 
5591
545     148102  29      titter  retrace transferals     A
 
5592
546     148201  29      aspire  lockout cartographer    A
 
5593
547     148401  29      Mardis  grammatic       aims    FAS
 
5594
548     148402  29      Nadia   helmsman        Pakistani       
 
5595
549     148501  29      estimating      uniform burglarized     FAS
 
5596
550     148502  29      stuck   hamming saucepans       A
 
5597
551     148503  29      fifteenth       disobedience    lacerating      A
 
5598
552     148504  29      Colombo captivated      corny   
 
5599
553     148601  29      survey  transferals     megabytes       FAS
 
5600
554     148602  29      staffing        cartographer    chancellor      
 
5601
555     150701  29      obtain  aims    bulk    A
 
5602
556     152101  29      loaded  Pakistani       commits A
 
5603
557     152102  29      slaughtered     burglarized     meson   W
 
5604
558     155202  36      lights  saucepans       deputies        
 
5605
559     155203  29      circumference   lacerating      northeaster     A
 
5606
560     155204  29      dull    corny   dipole  
 
5607
561     155205  29      weekly  megabytes       machining       0
 
5608
562     156001  29      wetness chancellor      therefore       
 
5609
563     156002  29      visualized      bulk    Telefunken      
 
5610
564     156102  29      Tannenbaum      commits salvaging       
 
5611
565     156301  29      moribund        meson   Corinthianizes  A
 
5612
566     156302  29      demultiplex     deputies        restlessly      A
 
5613
567     156303  29      lockings        northeaster     bromides        
 
5614
568     156304  29      thugs   dipole  generalized     A
 
5615
569     156305  29      unnerves        machining       mishaps 
 
5616
570     156306  29      abut    therefore       quelling        
 
5617
571     156501  29      Chippewa        Telefunken      spiritual       A
 
5618
572     158001  29      stratifications salvaging       beguiles        FAS
 
5619
573     158002  29      signaled        Corinthianizes  Trobriand       FAS
 
5620
574     158101  29      Italianizes     restlessly      fleeing A
 
5621
575     158102  29      algorithmic     bromides        Armour  A
 
5622
576     158103  29      paranoid        generalized     chin    A
 
5623
577     158201  29      camping mishaps provers A
 
5624
578     158202  29      signifying      quelling        aeronautic      A
 
5625
579     158203  29      Patrice spiritual       voltage W
 
5626
580     158204  29      search  beguiles        sash    
 
5627
581     158301  29      Angeles Trobriand       anaerobic       A
 
5628
582     158302  29      semblance       fleeing simultaneous    A
 
5629
583     158303  29      taxed   Armour  accumulating    A
 
5630
584     158304  29      Beatrice        chin    Medusan A
 
5631
585     158305  29      retrace provers shouted A
 
5632
586     158306  29      lockout aeronautic      freakish        
 
5633
587     158501  29      grammatic       voltage index   FAS
 
5634
588     160301  29      helmsman        sash    commercially    
 
5635
589     166101  50      uniform anaerobic       mistiness       A
 
5636
590     166102  50      hamming simultaneous    endpoint        
 
5637
591     168001  29      disobedience    accumulating    straight        A
 
5638
592     168002  29      captivated      Medusan flurried        
 
5639
593     168003  29      transferals     shouted denotative      A
 
5640
594     168101  29      cartographer    freakish        coming  FAS
 
5641
595     168102  29      aims    index   commencements   FAS
 
5642
596     168103  29      Pakistani       commercially    gentleman       
 
5643
597     168104  29      burglarized     mistiness       gifted  
 
5644
598     168202  29      saucepans       endpoint        Shanghais       
 
5645
599     168301  29      lacerating      straight        sportswriting   A
 
5646
600     168502  29      corny   flurried        sloping A
 
5647
601     168503  29      megabytes       denotative      navies  
 
5648
602     168601  29      chancellor      coming  leaflet A
 
5649
603     173001  40      bulk    commencements   shooter 
 
5650
604     173701  40      commits gentleman       Joplin  FAS
 
5651
605     173702  40      meson   gifted  babies  
 
5652
606     176001  40      deputies        Shanghais       subdivision     FAS
 
5653
607     176101  40      northeaster     sportswriting   burstiness      W
 
5654
608     176201  40      dipole  sloping belted  FAS
 
5655
609     176401  40      machining       navies  assails FAS
 
5656
610     176501  40      therefore       leaflet admiring        W
 
5657
611     176601  40      Telefunken      shooter swaying 0
 
5658
612     176602  40      salvaging       Joplin  Goldstine       FAS
 
5659
613     176603  40      Corinthianizes  babies  fitting 
 
5660
614     178001  40      restlessly      subdivision     Norwalk W
 
5661
615     178002  40      bromides        burstiness      weakening       W
 
5662
616     178003  40      generalized     belted  analogy FAS
 
5663
617     178004  40      mishaps assails deludes 
 
5664
618     178005  40      quelling        admiring        cokes   
 
5665
619     178006  40      spiritual       swaying Clayton 
 
5666
620     178007  40      beguiles        Goldstine       exhausts        
 
5667
621     178008  40      Trobriand       fitting causality       
 
5668
622     178101  40      fleeing Norwalk sating  FAS
 
5669
623     178102  40      Armour  weakening       icon    
 
5670
624     178103  40      chin    analogy throttles       
 
5671
625     178201  40      provers deludes communicants    FAS
 
5672
626     178202  40      aeronautic      cokes   dehydrate       FAS
 
5673
627     178301  40      voltage Clayton priceless       FAS
 
5674
628     178302  40      sash    exhausts        publicly        
 
5675
629     178401  40      anaerobic       causality       incidentals     FAS
 
5676
630     178402  40      simultaneous    sating  commonplace     
 
5677
631     178403  40      accumulating    icon    mumbles 
 
5678
632     178404  40      Medusan throttles       furthermore     W
 
5679
633     178501  40      shouted communicants    cautioned       W
 
5680
634     186002  37      freakish        dehydrate       parametrized    A
 
5681
635     186102  37      index   priceless       registration    A
 
5682
636     186201  40      commercially    publicly        sadly   FAS
 
5683
637     186202  40      mistiness       incidentals     positioning     
 
5684
638     186203  40      endpoint        commonplace     babysitting     
 
5685
639     186302  37      straight        mumbles eternal A
 
5686
640     188007  37      flurried        furthermore     hoarder 
 
5687
641     188008  37      denotative      cautioned       congregates     
 
5688
642     188009  37      coming  parametrized    rains   
 
5689
643     188010  37      commencements   registration    workers W
 
5690
644     188011  37      gentleman       sadly   sags    A
 
5691
645     188012  37      gifted  positioning     unplug  W
 
5692
646     188013  37      Shanghais       babysitting     garage  A
 
5693
647     188014  37      sportswriting   eternal boulder A
 
5694
648     188015  37      sloping hoarder hollowly        A
 
5695
649     188016  37      navies  congregates     specifics       
 
5696
650     188017  37      leaflet rains   Teresa  
 
5697
651     188102  37      shooter workers Winsett 
 
5698
652     188103  37      Joplin  sags    convenient      A
 
5699
653     188202  37      babies  unplug  buckboards      FAS
 
5700
654     188301  40      subdivision     garage  amenities       
 
5701
655     188302  40      burstiness      boulder resplendent     FAS
 
5702
656     188303  40      belted  hollowly        priding FAS
 
5703
657     188401  37      assails specifics       configurations  
 
5704
658     188402  37      admiring        Teresa  untidiness      A
 
5705
659     188503  37      swaying Winsett Brice   W
 
5706
660     188504  37      Goldstine       convenient      sews    FAS
 
5707
661     188505  37      fitting buckboards      participated    
 
5708
662     190701  37      Norwalk amenities       Simon   FAS
 
5709
663     190703  50      weakening       resplendent     certificates    
 
5710
664     191701  37      analogy priding Fitzpatrick     
 
5711
665     191702  37      deludes configurations  Evanston        A
 
5712
666     191703  37      cokes   untidiness      misted  
 
5713
667     196001  37      Clayton Brice   textures        A
 
5714
668     196002  37      exhausts        sews    save    
 
5715
669     196003  37      causality       participated    count   
 
5716
670     196101  37      sating  Simon   rightful        A
 
5717
671     196103  37      icon    certificates    chaperone       
 
5718
672     196104  37      throttles       Fitzpatrick     Lizzy   A
 
5719
673     196201  37      communicants    Evanston        clenched        A
 
5720
674     196202  37      dehydrate       misted  effortlessly    
 
5721
675     196203  37      priceless       textures        accessed        
 
5722
676     198001  37      publicly        save    beaters A
 
5723
677     198003  37      incidentals     count   Hornblower      FAS
 
5724
678     198004  37      commonplace     rightful        vests   A
 
5725
679     198005  37      mumbles chaperone       indulgences     FAS
 
5726
680     198006  37      furthermore     Lizzy   infallibly      A
 
5727
681     198007  37      cautioned       clenched        unwilling       FAS
 
5728
682     198008  37      parametrized    effortlessly    excrete FAS
 
5729
683     198009  37      registration    accessed        spools  A
 
5730
684     198010  37      sadly   beaters crunches        FAS
 
5731
685     198011  37      positioning     Hornblower      overestimating  FAS
 
5732
686     198012  37      babysitting     vests   ineffective     
 
5733
687     198013  37      eternal indulgences     humiliation     A
 
5734
688     198014  37      hoarder infallibly      sophomore       
 
5735
689     198015  37      congregates     unwilling       star    
 
5736
690     198017  37      rains   excrete rifles  
 
5737
691     198018  37      workers spools  dialysis        
 
5738
692     198019  37      sags    crunches        arriving        
 
5739
693     198020  37      unplug  overestimating  indulge 
 
5740
694     198021  37      garage  ineffective     clockers        
 
5741
695     198022  37      boulder humiliation     languages       
 
5742
696     198023  50      hollowly        sophomore       Antarctica      A
 
5743
697     198024  37      specifics       star    percentage      
 
5744
698     198101  37      Teresa  rifles  ceiling A
 
5745
699     198103  37      Winsett dialysis        specification   
 
5746
700     198105  37      convenient      arriving        regimented      A
 
5747
701     198106  37      buckboards      indulge ciphers 
 
5748
702     198201  37      amenities       clockers        pictures        A
 
5749
703     198204  37      resplendent     languages       serpents        A
 
5750
704     198301  53      priding Antarctica      allot   A
 
5751
705     198302  53      configurations  percentage      realized        A
 
5752
706     198303  53      untidiness      ceiling mayoral A
 
5753
707     198304  53      Brice   specification   opaquely        A
 
5754
708     198401  37      sews    regimented      hostess FAS
 
5755
709     198402  37      participated    ciphers fiftieth        
 
5756
710     198403  37      Simon   pictures        incorrectly     
 
5757
711     202101  37      certificates    serpents        decomposition   FAS
 
5758
712     202301  37      Fitzpatrick     allot   stranglings     
 
5759
713     202302  37      Evanston        realized        mixture FAS
 
5760
714     202303  37      misted  mayoral electroencephalography  FAS
 
5761
715     202304  37      textures        opaquely        similarities    FAS
 
5762
716     202305  37      save    hostess charges W
 
5763
717     202601  37      count   fiftieth        freest  FAS
 
5764
718     202602  37      rightful        incorrectly     Greenberg       FAS
 
5765
719     202605  37      chaperone       decomposition   tinting 
 
5766
720     202606  37      Lizzy   stranglings     expelled        W
 
5767
721     202607  37      clenched        mixture warm    
 
5768
722     202901  37      effortlessly    electroencephalography  smoothed        
 
5769
723     202902  37      accessed        similarities    deductions      FAS
 
5770
724     202903  37      beaters charges Romano  W
 
5771
725     202904  37      Hornblower      freest  bitterroot      
 
5772
726     202907  37      vests   Greenberg       corset  
 
5773
727     202908  37      indulgences     tinting securing        
 
5774
728     203101  37      infallibly      expelled        environing      FAS
 
5775
729     203103  37      unwilling       warm    cute    
 
5776
730     203104  37      excrete smoothed        Crays   
 
5777
731     203105  37      spools  deductions      heiress FAS
 
5778
732     203401  37      crunches        Romano  inform  FAS
 
5779
733     203402  37      overestimating  bitterroot      avenge  
 
5780
734     203404  37      ineffective     corset  universals      
 
5781
735     203901  37      humiliation     securing        Kinsey  W
 
5782
736     203902  37      sophomore       environing      ravines FAS
 
5783
737     203903  37      star    cute    bestseller      
 
5784
738     203906  37      rifles  Crays   equilibrium     
 
5785
739     203907  37      dialysis        heiress extents 0
 
5786
740     203908  37      arriving        inform  relatively      
 
5787
741     203909  37      indulge avenge  pressure        FAS
 
5788
742     206101  37      clockers        universals      critiques       FAS
 
5789
743     206201  37      languages       Kinsey  befouled        
 
5790
744     206202  37      Antarctica      ravines rightfully      FAS
 
5791
745     206203  37      percentage      bestseller      mechanizing     FAS
 
5792
746     206206  37      ceiling equilibrium     Latinizes       
 
5793
747     206207  37      specification   extents timesharing     
 
5794
748     206208  37      regimented      relatively      Aden    
 
5795
749     208001  37      ciphers pressure        embassies       
 
5796
750     208002  37      pictures        critiques       males   FAS
 
5797
751     208003  37      serpents        befouled        shapelessly     FAS
 
5798
752     208004  37      allot   rightfully      genres  FAS
 
5799
753     208008  37      realized        mechanizing     mastering       
 
5800
754     208009  37      mayoral Latinizes       Newtonian       
 
5801
755     208010  37      opaquely        timesharing     finishers       FAS
 
5802
756     208011  37      hostess Aden    abates  
 
5803
757     208101  37      fiftieth        embassies       teem    
 
5804
758     208102  37      incorrectly     males   kiting  FAS
 
5805
759     208103  37      decomposition   shapelessly     stodgy  FAS
 
5806
760     208104  37      stranglings     genres  scalps  FAS
 
5807
761     208105  37      mixture mastering       feed    FAS
 
5808
762     208110  37      electroencephalography  Newtonian       guitars 
 
5809
763     208111  37      similarities    finishers       airships        
 
5810
764     208112  37      charges abates  store   
 
5811
765     208113  37      freest  teem    denounces       
 
5812
766     208201  37      Greenberg       kiting  Pyle    FAS
 
5813
767     208203  37      tinting stodgy  Saxony  
 
5814
768     208301  37      expelled        scalps  serializations  FAS
 
5815
769     208302  37      warm    feed    Peruvian        FAS
 
5816
770     208305  37      smoothed        guitars taxonomically   FAS
 
5817
771     208401  37      deductions      airships        kingdom A
 
5818
772     208402  37      Romano  store   stint   A
 
5819
773     208403  37      bitterroot      denounces       Sault   A
 
5820
774     208404  37      corset  Pyle    faithful        
 
5821
775     208501  37      securing        Saxony  Ganymede        FAS
 
5822
776     208502  37      environing      serializations  tidiness        FAS
 
5823
777     208503  37      cute    Peruvian        gainful FAS
 
5824
778     208504  37      Crays   taxonomically   contrary        FAS
 
5825
779     208505  37      heiress kingdom Tipperary       FAS
 
5826
780     210101  37      inform  stint   tropics W
 
5827
781     210102  37      avenge  Sault   theorizers      
 
5828
782     210103  37      universals      faithful        renew   0
 
5829
783     210104  37      Kinsey  Ganymede        already 
 
5830
784     210105  37      ravines tidiness        terminal        
 
5831
785     210106  37      bestseller      gainful Hegelian        
 
5832
786     210107  37      equilibrium     contrary        hypothesizer    
 
5833
787     210401  37      extents Tipperary       warningly       FAS
 
5834
788     213201  37      relatively      tropics journalizing    FAS
 
5835
789     213203  37      pressure        theorizers      nested  
 
5836
790     213204  37      critiques       renew   Lars    
 
5837
791     213205  37      befouled        already saplings        
 
5838
792     213206  37      rightfully      terminal        foothill        
 
5839
793     213207  37      mechanizing     Hegelian        labeled 
 
5840
794     216101  37      Latinizes       hypothesizer    imperiously     FAS
 
5841
795     216103  37      timesharing     warningly       reporters       FAS
 
5842
796     218001  37      Aden    journalizing    furnishings     FAS
 
5843
797     218002  37      embassies       nested  precipitable    FAS
 
5844
798     218003  37      males   Lars    discounts       FAS
 
5845
799     218004  37      shapelessly     saplings        excises FAS
 
5846
800     143503  50      genres  foothill        Stalin  
 
5847
801     218006  37      mastering       labeled despot  FAS
 
5848
802     218007  37      Newtonian       imperiously     ripeness        FAS
 
5849
803     218008  37      finishers       reporters       Arabia  
 
5850
804     218009  37      abates  furnishings     unruly  
 
5851
805     218010  37      teem    precipitable    mournfulness    
 
5852
806     218011  37      kiting  discounts       boom    FAS
 
5853
807     218020  37      stodgy  excises slaughter       A
 
5854
808     218021  50      scalps  Stalin  Sabine  
 
5855
809     218022  37      feed    despot  handy   FAS
 
5856
810     218023  37      guitars ripeness        rural   
 
5857
811     218024  37      airships        Arabia  organizer       
 
5858
812     218101  37      store   unruly  shipyard        FAS
 
5859
813     218102  37      denounces       mournfulness    civics  FAS
 
5860
814     218103  37      Pyle    boom    inaccuracy      FAS
 
5861
815     218201  37      Saxony  slaughter       rules   FAS
 
5862
816     218202  37      serializations  Sabine  juveniles       FAS
 
5863
817     218203  37      Peruvian        handy   comprised       W
 
5864
818     218204  37      taxonomically   rural   investigations  
 
5865
819     218205  37      kingdom organizer       stabilizes      A
 
5866
820     218301  37      stint   shipyard        seminaries      FAS
 
5867
821     218302  37      Sault   civics  Hunter  A
 
5868
822     218401  37      faithful        inaccuracy      sporty  FAS
 
5869
823     218402  37      Ganymede        rules   test    FAS
 
5870
824     218403  37      tidiness        juveniles       weasels 
 
5871
825     218404  37      gainful comprised       CERN    
 
5872
826     218407  37      contrary        investigations  tempering       
 
5873
827     218408  37      Tipperary       stabilizes      afore   FAS
 
5874
828     218409  37      tropics seminaries      Galatean        
 
5875
829     218410  37      theorizers      Hunter  techniques      W
 
5876
830     226001  37      renew   sporty  error   
 
5877
831     226002  37      already test    veranda 
 
5878
832     226003  37      terminal        weasels severely        
 
5879
833     226004  37      Hegelian        CERN    Cassites        FAS
 
5880
834     226005  37      hypothesizer    tempering       forthcoming     
 
5881
835     226006  37      warningly       afore   guides  
 
5882
836     226007  37      journalizing    Galatean        vanish  FAS
 
5883
837     226008  37      nested  techniques      lied    A
 
5884
838     226203  37      Lars    error   sawtooth        FAS
 
5885
839     226204  37      saplings        veranda fated   FAS
 
5886
840     226205  37      foothill        severely        gradually       
 
5887
841     226206  37      labeled Cassites        widens  
 
5888
842     226207  37      imperiously     forthcoming     preclude        
 
5889
843     226208  37      reporters       guides  Jobrel  
 
5890
844     226209  37      furnishings     vanish  hooker  
 
5891
845     226210  37      precipitable    lied    rainstorm       
 
5892
846     226211  37      discounts       sawtooth        disconnects     
 
5893
847     228001  37      excises fated   cruelty 
 
5894
848     228004  37      Stalin  gradually       exponentials    A
 
5895
849     228005  37      despot  widens  affective       A
 
5896
850     228006  37      ripeness        preclude        arteries        
 
5897
851     228007  37      Arabia  Jobrel  Crosby  FAS
 
5898
852     228008  37      unruly  hooker  acquaint        
 
5899
853     228009  37      mournfulness    rainstorm       evenhandedly    
 
5900
854     228101  37      boom    disconnects     percentage      
 
5901
855     228108  37      slaughter       cruelty disobedience    
 
5902
856     228109  37      Sabine  exponentials    humility        
 
5903
857     228110  37      handy   affective       gleaning        A
 
5904
858     228111  37      rural   arteries        petted  A
 
5905
859     228112  37      organizer       Crosby  bloater A
 
5906
860     228113  37      shipyard        acquaint        minion  A
 
5907
861     228114  37      civics  evenhandedly    marginal        A
 
5908
862     228115  37      inaccuracy      percentage      apiary  A
 
5909
863     228116  37      rules   disobedience    measures        
 
5910
864     228117  37      juveniles       humility        precaution      
 
5911
865     228118  37      comprised       gleaning        repelled        
 
5912
866     228119  37      investigations  petted  primary FAS
 
5913
867     228120  37      stabilizes      bloater coverings       
 
5914
868     228121  37      seminaries      minion  Artemia A
 
5915
869     228122  37      Hunter  marginal        navigate        
 
5916
870     228201  37      sporty  apiary  spatial 
 
5917
871     228206  37      test    measures        Gurkha  
 
5918
872     228207  37      weasels precaution      meanwhile       A
 
5919
873     228208  37      CERN    repelled        Melinda A
 
5920
874     228209  37      tempering       primary Butterfield     
 
5921
875     228210  37      afore   coverings       Aldrich A
 
5922
876     228211  37      Galatean        Artemia previewing      A
 
5923
877     228212  37      techniques      navigate        glut    A
 
5924
878     228213  37      error   spatial unaffected      
 
5925
879     228214  37      veranda Gurkha  inmate  
 
5926
880     228301  37      severely        meanwhile       mineral 
 
5927
881     228305  37      Cassites        Melinda impending       A
 
5928
882     228306  37      forthcoming     Butterfield     meditation      A
 
5929
883     228307  37      guides  Aldrich ideas   
 
5930
884     228308  37      vanish  previewing      miniaturizes    W
 
5931
885     228309  37      lied    glut    lewdly  
 
5932
886     228310  37      sawtooth        unaffected      title   
 
5933
887     228311  37      fated   inmate  youthfulness    
 
5934
888     228312  37      gradually       mineral creak   FAS
 
5935
889     228313  37      widens  impending       Chippewa        
 
5936
890     228314  37      preclude        meditation      clamored        
 
5937
891     228401  65      Jobrel  ideas   freezes 
 
5938
892     228402  65      hooker  miniaturizes    forgivably      FAS
 
5939
893     228403  65      rainstorm       lewdly  reduce  FAS
 
5940
894     228404  65      disconnects     title   McGovern        W
 
5941
895     228405  65      cruelty youthfulness    Nazis   W
 
5942
896     228406  65      exponentials    creak   epistle W
 
5943
897     228407  65      affective       Chippewa        socializes      W
 
5944
898     228408  65      arteries        clamored        conceptions     
 
5945
899     228409  65      Crosby  freezes Kevin   
 
5946
900     228410  65      acquaint        forgivably      uncovering      
 
5947
901     230301  37      evenhandedly    reduce  chews   FAS
 
5948
902     230302  37      percentage      McGovern        appendixes      FAS
 
5949
903     230303  37      disobedience    Nazis   raining 
 
5950
904     018062  37      humility        epistle infest  
 
5951
905     230501  37      gleaning        socializes      compartment     
 
5952
906     230502  37      petted  conceptions     minting 
 
5953
907     230503  37      bloater Kevin   ducks   
 
5954
908     230504  37      minion  uncovering      roped   A
 
5955
909     230505  37      marginal        chews   waltz   
 
5956
910     230506  37      apiary  appendixes      Lillian 
 
5957
911     230507  37      measures        raining repressions     A
 
5958
912     230508  37      precaution      infest  chillingly      
 
5959
913     230509  37      repelled        compartment     noncritical     
 
5960
914     230901  37      primary minting lithograph      
 
5961
915     230902  37      coverings       ducks   spongers        
 
5962
916     230903  37      Artemia roped   parenthood      
 
5963
917     230904  37      navigate        waltz   posed   
 
5964
918     230905  37      spatial Lillian instruments     
 
5965
919     230906  37      Gurkha  repressions     filial  
 
5966
920     230907  37      meanwhile       chillingly      fixedly 
 
5967
921     230908  37      Melinda noncritical     relives 
 
5968
922     230909  37      Butterfield     lithograph      Pandora 
 
5969
923     230910  37      Aldrich spongers        watering        A
 
5970
924     230911  37      previewing      parenthood      ungrateful      
 
5971
925     230912  37      glut    posed   secures 
 
5972
926     230913  37      unaffected      instruments     chastisers      
 
5973
927     230914  37      inmate  filial  icon    
 
5974
928     231304  37      mineral fixedly reuniting       A
 
5975
929     231305  37      impending       relives imagining       A
 
5976
930     231306  37      meditation      Pandora abiding A
 
5977
931     231307  37      ideas   watering        omnisciently    
 
5978
932     231308  37      miniaturizes    ungrateful      Britannic       
 
5979
933     231309  37      lewdly  secures scholastics     A
 
5980
934     231310  37      title   chastisers      mechanics       A
 
5981
935     231311  37      youthfulness    icon    humidly A
 
5982
936     231312  37      creak   reuniting       masterpiece     
 
5983
937     231313  37      Chippewa        imagining       however 
 
5984
938     231314  37      clamored        abiding Mendelian       
 
5985
939     231315  37      freezes omnisciently    jarred  
 
5986
940     232102  37      forgivably      Britannic       scolds  
 
5987
941     232103  37      reduce  scholastics     infatuate       
 
5988
942     232104  37      McGovern        mechanics       willed  A
 
5989
943     232105  37      Nazis   humidly joyfully        
 
5990
944     232106  37      epistle masterpiece     Microsoft       
 
5991
945     232107  37      socializes      however fibrosities     
 
5992
946     232108  37      conceptions     Mendelian       Baltimorean     
 
5993
947     232601  37      Kevin   jarred  equestrian      
 
5994
948     232602  37      uncovering      scolds  Goodrich        
 
5995
949     232603  37      chews   infatuate       apish   A
 
5996
950     232605  37      appendixes      willed  Adlerian        
 
5997
5950    1232605 37      appendixes      willed  Adlerian        
 
5998
5951    1232606 37      appendixes      willed  Adlerian        
 
5999
5952    1232607 37      appendixes      willed  Adlerian        
 
6000
5953    1232608 37      appendixes      willed  Adlerian        
 
6001
5954    1232609 37      appendixes      willed  Adlerian        
 
6002
951     232606  37      raining joyfully        Tropez  
 
6003
952     232607  37      infest  Microsoft       nouns   
 
6004
953     232608  37      compartment     fibrosities     distracting     
 
6005
954     232609  37      minting Baltimorean     mutton  
 
6006
955     236104  37      ducks   equestrian      bridgeable      A
 
6007
956     236105  37      roped   Goodrich        stickers        A
 
6008
957     236106  37      waltz   apish   transcontinental        A
 
6009
958     236107  37      Lillian Adlerian        amateurish      
 
6010
959     236108  37      repressions     Tropez  Gandhian        
 
6011
960     236109  37      chillingly      nouns   stratified      
 
6012
961     236110  37      noncritical     distracting     chamberlains    
 
6013
962     236111  37      lithograph      mutton  creditably      
 
6014
963     236112  37      spongers        bridgeable      philosophic     
 
6015
964     236113  37      parenthood      stickers        ores    
 
6016
965     238005  37      posed   transcontinental        Carleton        
 
6017
966     238006  37      instruments     amateurish      tape    A
 
6018
967     238007  37      filial  Gandhian        afloat  A
 
6019
968     238008  37      fixedly stratified      goodness        A
 
6020
969     238009  37      relives chamberlains    welcoming       
 
6021
970     238010  37      Pandora creditably      Pinsky  FAS
 
6022
971     238011  37      watering        philosophic     halting 
 
6023
972     238012  37      ungrateful      ores    bibliography    
 
6024
973     238013  37      secures Carleton        decoding        
 
6025
974     240401  41      chastisers      tape    variance        A
 
6026
975     240402  41      icon    afloat  allowed A
 
6027
976     240901  41      reuniting       goodness        dire    A
 
6028
977     240902  41      imagining       welcoming       dub     A
 
6029
978     241801  41      abiding Pinsky  poisoning       
 
6030
979     242101  41      omnisciently    halting Iraqis  A
 
6031
980     242102  41      Britannic       bibliography    heaving 
 
6032
981     242201  41      scholastics     decoding        population      A
 
6033
982     242202  41      mechanics       variance        bomb    A
 
6034
983     242501  41      humidly allowed Majorca A
 
6035
984     242502  41      masterpiece     dire    Gershwins       
 
6036
985     246201  41      however dub     explorers       
 
6037
986     246202  41      Mendelian       poisoning       libretto        A
 
6038
987     246203  41      jarred  Iraqis  occurred        
 
6039
988     246204  41      scolds  heaving Lagos   
 
6040
989     246205  41      infatuate       population      rats    
 
6041
990     246301  41      willed  bomb    bankruptcies    A
 
6042
991     246302  41      joyfully        Majorca crying  
 
6043
992     248001  41      Microsoft       Gershwins       unexpected      
 
6044
993     248002  41      fibrosities     explorers       accessed        A
 
6045
994     248003  41      Baltimorean     libretto        colorful        A
 
6046
995     248004  41      equestrian      occurred        versatility     A
 
6047
996     248005  41      Goodrich        Lagos   cosy    
 
6048
997     248006  41      apish   rats    Darius  A
 
6049
998     248007  41      Adlerian        bankruptcies    mastering       A
 
6050
999     248008  41      Tropez  crying  Asiaticizations A
 
6051
1000    248009  41      nouns   unexpected      offerers        A
 
6052
1001    248010  41      distracting     accessed        uncles  A
 
6053
1002    248011  41      mutton  colorful        sleepwalk       
 
6054
1003    248012  41      bridgeable      versatility     Ernestine       
 
6055
1004    248013  41      stickers        cosy    checksumming    
 
6056
1005    248014  41      transcontinental        Darius  stopped 
 
6057
1006    248015  41      amateurish      mastering       sicker  
 
6058
1007    248016  41      Gandhian        Asiaticizations Italianization  
 
6059
1008    248017  41      stratified      offerers        alphabetic      
 
6060
1009    248018  41      chamberlains    uncles  pharmaceutic    
 
6061
1010    248019  41      creditably      sleepwalk       creator 
 
6062
1011    248020  41      philosophic     Ernestine       chess   
 
6063
1012    248021  41      ores    checksumming    charcoal        
 
6064
1013    248101  41      Carleton        stopped Epiphany        A
 
6065
1014    248102  41      tape    sicker  bulldozes       A
 
6066
1015    248201  41      afloat  Italianization  Pygmalion       A
 
6067
1016    248202  41      goodness        alphabetic      caressing       A
 
6068
1017    248203  41      welcoming       pharmaceutic    Palestine       A
 
6069
1018    248204  41      Pinsky  creator regimented      A
 
6070
1019    248205  41      halting chess   scars   A
 
6071
1020    248206  41      bibliography    charcoal        realest A
 
6072
1021    248207  41      decoding        Epiphany        diffusing       A
 
6073
1022    248208  41      variance        bulldozes       clubroom        A
 
6074
1023    248209  41      allowed Pygmalion       Blythe  A
 
6075
1024    248210  41      dire    caressing       ahead   
 
6076
1025    248211  50      dub     Palestine       reviver 
 
6077
1026    250501  34      poisoning       regimented      retransmitting  A
 
6078
1027    250502  34      Iraqis  scars   landslide       
 
6079
1028    250503  34      heaving realest Eiffel  
 
6080
1029    250504  34      population      diffusing       absentee        
 
6081
1030    250505  34      bomb    clubroom        aye     
 
6082
1031    250601  34      Majorca Blythe  forked  A
 
6083
1032    250602  34      Gershwins       ahead   Peruvianizes    
 
6084
1033    250603  34      explorers       reviver clerked 
 
6085
1034    250604  34      libretto        retransmitting  tutor   
 
6086
1035    250605  34      occurred        landslide       boulevard       
 
6087
1036    251001  34      Lagos   Eiffel  shuttered       
 
6088
1037    251002  34      rats    absentee        quotes  A
 
6089
1038    251003  34      bankruptcies    aye     Caltech 
 
6090
1039    251004  34      crying  forked  Mossberg        
 
6091
1040    251005  34      unexpected      Peruvianizes    kept    
 
6092
1041    251301  34      accessed        clerked roundly 
 
6093
1042    251302  34      colorful        tutor   features        A
 
6094
1043    251303  34      versatility     boulevard       imaginable      A
 
6095
1044    251304  34      cosy    shuttered       controller      
 
6096
1045    251305  34      Darius  quotes  racial  
 
6097
1046    251401  34      mastering       Caltech uprisings       A
 
6098
1047    251402  34      Asiaticizations Mossberg        narrowed        A
 
6099
1048    251403  34      offerers        kept    cannot  A
 
6100
1049    251404  34      uncles  roundly vest    
 
6101
1050    251405  34      sleepwalk       features        famine  
 
6102
1051    251406  34      Ernestine       imaginable      sugars  
 
6103
1052    251801  34      checksumming    controller      exterminated    A
 
6104
1053    251802  34      stopped racial  belays  
 
6105
1054    252101  34      sicker  uprisings       Hodges  A
 
6106
1055    252102  34      Italianization  narrowed        translatable    
 
6107
1056    252301  34      alphabetic      cannot  duality A
 
6108
1057    252302  34      pharmaceutic    vest    recording       A
 
6109
1058    252303  34      creator famine  rouses  A
 
6110
1059    252304  34      chess   sugars  poison  
 
6111
1060    252305  34      charcoal        exterminated    attitude        
 
6112
1061    252306  34      Epiphany        belays  dusted  
 
6113
1062    252307  34      bulldozes       Hodges  encompasses     
 
6114
1063    252308  34      Pygmalion       translatable    presentation    
 
6115
1064    252309  34      caressing       duality Kantian 
 
6116
1065    256001  34      Palestine       recording       imprecision     A
 
6117
1066    256002  34      regimented      rouses  saving  
 
6118
1067    256003  34      scars   poison  maternal        
 
6119
1068    256004  34      realest attitude        hewed   
 
6120
1069    256005  34      diffusing       dusted  kerosene        
 
6121
1070    258001  34      clubroom        encompasses     Cubans  
 
6122
1071    258002  34      Blythe  presentation    photographers   
 
6123
1072    258003  34      ahead   Kantian nymph   A
 
6124
1073    258004  34      reviver imprecision     bedlam  A
 
6125
1074    258005  34      retransmitting  saving  north   A
 
6126
1075    258006  34      landslide       maternal        Schoenberg      A
 
6127
1076    258007  34      Eiffel  hewed   botany  A
 
6128
1077    258008  34      absentee        kerosene        curs    
 
6129
1078    258009  34      aye     Cubans  solidification  
 
6130
1079    258010  34      forked  photographers   inheritresses   
 
6131
1080    258011  34      Peruvianizes    nymph   stiller 
 
6132
1081    258101  68      clerked bedlam  t1      A
 
6133
1082    258102  68      tutor   north   suite   A
 
6134
1083    258103  34      boulevard       Schoenberg      ransomer        
 
6135
1084    258104  68      shuttered       botany  Willy   
 
6136
1085    258105  68      quotes  curs    Rena    A
 
6137
1086    258106  68      Caltech solidification  Seattle A
 
6138
1087    258107  68      Mossberg        inheritresses   relaxes A
 
6139
1088    258108  68      kept    stiller exclaim 
 
6140
1089    258109  68      roundly t1      implicated      A
 
6141
1090    258110  68      features        suite   distinguish     
 
6142
1091    258111  68      imaginable      ransomer        assayed 
 
6143
1092    258112  68      controller      Willy   homeowner       
 
6144
1093    258113  68      racial  Rena    and     
 
6145
1094    258201  34      uprisings       Seattle stealth 
 
6146
1095    258202  34      narrowed        relaxes coinciding      A
 
6147
1096    258203  34      cannot  exclaim founder A
 
6148
1097    258204  34      vest    implicated      environing      
 
6149
1098    258205  34      famine  distinguish     jewelry 
 
6150
1099    258301  34      sugars  assayed lemons  A
 
6151
1100    258401  34      exterminated    homeowner       brokenness      A
 
6152
1101    258402  34      belays  and     bedpost A
 
6153
1102    258403  34      Hodges  stealth assurers        A
 
6154
1103    258404  34      translatable    coinciding      annoyers        
 
6155
1104    258405  34      duality founder affixed 
 
6156
1105    258406  34      recording       environing      warbling        
 
6157
1106    258407  34      rouses  jewelry seriously       
 
6158
1107    228123  37      poison  lemons  boasted 
 
6159
1108    250606  34      attitude        brokenness      Chantilly       
 
6160
1109    208405  37      dusted  bedpost Iranizes        
 
6161
1110    212101  37      encompasses     assurers        violinist       
 
6162
1111    218206  37      presentation    annoyers        extramarital    
 
6163
1112    150401  37      Kantian affixed spates  
 
6164
1113    248212  41      imprecision     warbling        cloakroom       
 
6165
1114    128026  00      saving  seriously       gazer   
 
6166
1115    128024  00      maternal        boasted hand    
 
6167
1116    128027  00      hewed   Chantilly       tucked  
 
6168
1117    128025  00      kerosene        Iranizes        gems    
 
6169
1118    128109  00      Cubans  violinist       clinker 
 
6170
1119    128705  00      photographers   extramarital    refiner 
 
6171
1120    126303  00      nymph   spates  callus  
 
6172
1121    128308  00      bedlam  cloakroom       leopards        
 
6173
1122    128204  00      north   gazer   comfortingly    
 
6174
1123    128205  00      Schoenberg      hand    generically     
 
6175
1124    128206  00      botany  tucked  getters 
 
6176
1125    128207  00      curs    gems    sexually        
 
6177
1126    118205  00      solidification  clinker spear   
 
6178
1127    116801  00      inheritresses   refiner serums  
 
6179
1128    116803  00      stiller callus  Italianization  
 
6180
1129    116804  00      t1      leopards        attendants      
 
6181
1130    116802  00      suite   comfortingly    spies   
 
6182
1131    128605  00      ransomer        generically     Anthony 
 
6183
1132    118308  00      Willy   getters planar  
 
6184
1133    113702  00      Rena    sexually        cupped  
 
6185
1134    113703  00      Seattle spear   cleanser        
 
6186
1135    112103  00      relaxes serums  commuters       
 
6187
1136    118009  00      exclaim Italianization  honeysuckle     
 
6188
5136    1118009 00      exclaim Italianization  honeysuckle     
 
6189
1137    138011  00      implicated      attendants      orphanage       
 
6190
1138    138010  00      distinguish     spies   skies   
 
6191
1139    138012  00      assayed Anthony crushers        
 
6192
1140    068304  00      homeowner       planar  Puritan 
 
6193
1141    078009  00      and     cupped  squeezer        
 
6194
1142    108013  00      stealth cleanser        bruises 
 
6195
1143    084004  00      coinciding      commuters       bonfire 
 
6196
1144    083402  00      founder honeysuckle     Colombo 
 
6197
1145    084003  00      environing      orphanage       nondecreasing   
 
6198
1146    088504  00      jewelry skies   innocents       
 
6199
1147    088005  00      lemons  crushers        masked  
 
6200
1148    088007  00      brokenness      Puritan file    
 
6201
1149    088006  00      bedpost squeezer        brush   
 
6202
1150    148025  00      assurers        bruises mutilate        
 
6203
1151    148024  00      annoyers        bonfire mommy   
 
6204
1152    138305  00      affixed Colombo bulkheads       
 
6205
1153    138306  00      warbling        nondecreasing   undeclared      
 
6206
1154    152701  00      seriously       innocents       displacements   
 
6207
1155    148505  00      boasted masked  nieces  
 
6208
1156    158003  00      Chantilly       file    coeducation     
 
6209
1157    156201  00      Iranizes        brush   brassy  
 
6210
1158    156202  00      violinist       mutilate        authenticator   
 
6211
1159    158307  00      extramarital    mommy   Washoe  
 
6212
1160    158402  00      spates  bulkheads       penny   
 
6213
1161    158401  00      cloakroom       undeclared      Flagler 
 
6214
1162    068013  00      gazer   displacements   stoned  
 
6215
1163    068012  00      hand    nieces  cranes  
 
6216
1164    068203  00      tucked  coeducation     masterful       
 
6217
1165    088205  00      gems    brassy  biracial        
 
6218
1166    068704  00      clinker authenticator   steamships      
 
6219
1167    068604  00      refiner Washoe  windmills       
 
6220
1168    158502  00      callus  penny   exploit 
 
6221
1169    123103  00      leopards        Flagler riverfront      
 
6222
1170    148026  00      comfortingly    stoned  sisterly        
 
6223
1171    123302  00      generically     cranes  sharpshoot      
 
6224
1172    076503  00      getters masterful       mittens 
 
6225
1173    126304  00      sexually        biracial        interdependency 
 
6226
1174    068306  00      spear   steamships      policy  
 
6227
1175    143504  00      serums  windmills       unleashing      
 
6228
1176    160201  00      Italianization  exploit pretenders      
 
6229
1177    148028  00      attendants      riverfront      overstatements  
 
6230
1178    148027  00      spies   sisterly        birthed 
 
6231
1179    143505  00      Anthony sharpshoot      opportunism     
 
6232
1180    108014  00      planar  mittens showroom        
 
6233
1181    076104  00      cupped  interdependency compromisingly  
 
6234
1182    078106  00      cleanser        policy  Medicare        
 
6235
1183    126102  00      commuters       unleashing      corresponds     
 
6236
1184    128029  00      honeysuckle     pretenders      hardware        
 
6237
1185    128028  00      orphanage       overstatements  implant 
 
6238
1186    018410  00      skies   birthed Alicia  
 
6239
1187    128110  00      crushers        opportunism     requesting      
 
6240
1188    148506  00      Puritan showroom        produced        
 
6241
1189    123303  00      squeezer        compromisingly  criticizes      
 
6242
1190    123304  00      bruises Medicare        backer  
 
6243
1191    068504  00      bonfire corresponds     positively      
 
6244
1192    068305  00      Colombo hardware        colicky 
 
6245
1193    000000  00      nondecreasing   implant thrillingly     
 
6246
1       000001  00      Omaha   teethe  neat    
 
6247
2       011401  37      breaking        dreaded Steinberg       W
 
6248
3       011402  37      Romans  scholastics     jarring 
 
6249
4       011403  37      intercepted     audiology       tinily  
 
6250
2       011401  37      breaking        dreaded Steinberg       W
 
6251
3       011402  37      Romans  scholastics     jarring 
 
6252
4       011403  37      intercepted     audiology       tinily  
 
6253
1       000001  00      Omaha   teethe  neat    
 
6254
2       011401  37      breaking        dreaded Steinberg       W
 
6255
3       011402  37      Romans  scholastics     jarring 
 
6256
4       011403  37      intercepted     audiology       tinily  
 
6257
DELETE FROM t2;
 
6258
ERROR HY000: Table storage engine for 't2' doesn't have this option
 
6259
SELECT * FROM t2;
 
6260
auto    fld1    companynr       fld3    fld4    fld5    fld6
 
6261
1       000001  00      Omaha   teethe  neat    
 
6262
2       011401  37      breaking        dreaded Steinberg       W
 
6263
3       011402  37      Romans  scholastics     jarring 
 
6264
4       011403  37      intercepted     audiology       tinily  
 
6265
5       011501  37      bewilderingly   wallet  balled  
 
6266
6       011701  37      astound parters persist W
 
6267
7       011702  37      admonishing     eschew  attainments     
 
6268
8       011703  37      sumac   quitter fanatic 
 
6269
9       012001  37      flanking        neat    measures        FAS
 
6270
10      012003  37      combed  Steinberg       rightfulness    
 
6271
11      012004  37      subjective      jarring capably 
 
6272
12      012005  37      scatterbrain    tinily  impulsive       
 
6273
13      012301  37      Eulerian        balled  starlet 
 
6274
14      012302  36      dubbed  persist terminators     
 
6275
15      012303  37      Kane    attainments     untying 
 
6276
16      012304  37      overlay fanatic announces       FAS
 
6277
17      012305  37      perturb measures        featherweight   FAS
 
6278
18      012306  37      goblins rightfulness    pessimist       FAS
 
6279
19      012501  37      annihilates     capably daughter        
 
6280
20      012602  37      Wotan   impulsive       decliner        FAS
 
6281
21      012603  37      snatching       starlet lawgiver        
 
6282
22      012604  37      concludes       terminators     stated  
 
6283
23      012605  37      laterally       untying readable        
 
6284
24      012606  37      yelped  announces       attrition       
 
6285
25      012701  37      grazing featherweight   cascade FAS
 
6286
26      012702  37      Baird   pessimist       motors  FAS
 
6287
27      012703  37      celery  daughter        interrogate     
 
6288
28      012704  37      misunderstander decliner        pests   W
 
6289
29      013601  37      handgun lawgiver        stairway        
 
6290
30      013602  37      foldout stated  dopers  FAS
 
6291
31      013603  37      mystic  readable        testicle        W
 
6292
32      013604  37      succumbed       attrition       Parsifal        W
 
6293
33      013605  37      Nabisco cascade leavings        
 
6294
34      013606  37      fingerings      motors  postulation     W
 
6295
35      013607  37      aging   interrogate     squeaking       
 
6296
36      013608  37      afield  pests   contrasted      
 
6297
37      013609  37      ammonium        stairway        leftover        
 
6298
38      013610  37      boat    dopers  whiteners       
 
6299
39      013801  37      intelligibility testicle        erases  W
 
6300
40      013802  37      Augustine       Parsifal        Punjab  W
 
6301
41      013803  37      teethe  leavings        Merritt 
 
6302
42      013804  37      dreaded postulation     Quixotism       
 
6303
43      013901  37      scholastics     squeaking       sweetish        FAS
 
6304
44      016001  37      audiology       contrasted      dogging FAS
 
6305
45      016201  37      wallet  leftover        scornfully      FAS
 
6306
46      016202  37      parters whiteners       bellow  
 
6307
47      016301  37      eschew  erases  bills   
 
6308
48      016302  37      quitter Punjab  cupboard        FAS
 
6309
49      016303  37      neat    Merritt sureties        FAS
 
6310
50      016304  37      Steinberg       Quixotism       puddings        
 
6311
51      018001  37      jarring sweetish        tapestry        
 
6312
52      018002  37      tinily  dogging fetters 
 
6313
53      018003  37      balled  scornfully      bivalves        
 
6314
54      018004  37      persist bellow  incurring       
 
6315
55      018005  37      attainments     bills   Adolph  
 
6316
56      018007  37      fanatic cupboard        pithed  
 
6317
57      018008  37      measures        sureties        emergency       
 
6318
58      018009  37      rightfulness    puddings        Miles   
 
6319
59      018010  37      capably tapestry        trimmings       
 
6320
60      018012  37      impulsive       fetters tragedies       W
 
6321
61      018013  37      starlet bivalves        skulking        W
 
6322
62      018014  37      terminators     incurring       flint   
 
6323
63      018015  37      untying Adolph  flopping        W
 
6324
64      018016  37      announces       pithed  relaxing        FAS
 
6325
65      018017  37      featherweight   emergency       offload FAS
 
6326
66      018018  37      pessimist       Miles   suites  W
 
6327
67      018019  37      daughter        trimmings       lists   FAS
 
6328
68      018020  37      decliner        tragedies       animized        FAS
 
6329
69      018021  37      lawgiver        skulking        multilayer      W
 
6330
70      018022  37      stated  flint   standardizes    FAS
 
6331
71      018023  37      readable        flopping        Judas   
 
6332
72      018024  37      attrition       relaxing        vacuuming       W
 
6333
73      018025  37      cascade offload dentally        W
 
6334
74      018026  37      motors  suites  humanness       W
 
6335
75      018027  37      interrogate     lists   inch    W
 
6336
76      018028  37      pests   animized        Weissmuller     W
 
6337
77      018029  37      stairway        multilayer      irresponsibly   W
 
6338
78      018030  37      dopers  standardizes    luckily FAS
 
6339
79      018032  37      testicle        Judas   culled  W
 
6340
80      018033  37      Parsifal        vacuuming       medical FAS
 
6341
81      018034  37      leavings        dentally        bloodbath       FAS
 
6342
82      018035  37      postulation     humanness       subschema       W
 
6343
83      018036  37      squeaking       inch    animals W
 
6344
84      018037  37      contrasted      Weissmuller     Micronesia      
 
6345
85      018038  37      leftover        irresponsibly   repetitions     
 
6346
86      018039  37      whiteners       luckily Antares 
 
6347
87      018040  37      erases  culled  ventilate       W
 
6348
88      018041  37      Punjab  medical pityingly       
 
6349
89      018042  37      Merritt bloodbath       interdependent  
 
6350
90      018043  37      Quixotism       subschema       Graves  FAS
 
6351
91      018044  37      sweetish        animals neonatal        
 
6352
92      018045  37      dogging Micronesia      scribbled       FAS
 
6353
93      018046  37      scornfully      repetitions     chafe   W
 
6354
94      018048  37      bellow  Antares honoring        
 
6355
95      018049  37      bills   ventilate       realtor 
 
6356
96      018050  37      cupboard        pityingly       elite   
 
6357
97      018051  37      sureties        interdependent  funereal        
 
6358
98      018052  37      puddings        Graves  abrogating      
 
6359
99      018053  50      tapestry        neonatal        sorters 
 
6360
100     018054  37      fetters scribbled       Conley  
 
6361
101     018055  37      bivalves        chafe   lectured        
 
6362
102     018056  37      incurring       honoring        Abraham 
 
6363
103     018057  37      Adolph  realtor Hawaii  W
 
6364
104     018058  37      pithed  elite   cage    
 
6365
105     018059  36      emergency       funereal        hushes  
 
6366
106     018060  37      Miles   abrogating      Simla   
 
6367
107     018061  37      trimmings       sorters reporters       
 
6368
108     018101  37      tragedies       Conley  Dutchman        FAS
 
6369
109     018102  37      skulking        lectured        descendants     FAS
 
6370
110     018103  37      flint   Abraham groupings       FAS
 
6371
111     018104  37      flopping        Hawaii  dissociate      
 
6372
112     018201  37      relaxing        cage    coexist W
 
6373
113     018202  37      offload hushes  Beebe   
 
6374
114     018402  37      suites  Simla   Taoism  
 
6375
115     018403  37      lists   reporters       Connally        
 
6376
116     018404  37      animized        Dutchman        fetched FAS
 
6377
117     018405  37      multilayer      descendants     checkpoints     FAS
 
6378
118     018406  37      standardizes    groupings       rusting 
 
6379
119     018409  37      Judas   dissociate      galling 
 
6380
120     018601  37      vacuuming       coexist obliterates     
 
6381
121     018602  37      dentally        Beebe   traitor 
 
6382
122     018603  37      humanness       Taoism  resumes FAS
 
6383
123     018801  37      inch    Connally        analyzable      FAS
 
6384
124     018802  37      Weissmuller     fetched terminator      FAS
 
6385
125     018803  37      irresponsibly   checkpoints     gritty  FAS
 
6386
126     018804  37      luckily rusting firearm W
 
6387
127     018805  37      culled  galling minima  
 
6388
128     018806  37      medical obliterates     Selfridge       
 
6389
129     018807  37      bloodbath       traitor disable 
 
6390
130     018808  37      subschema       resumes witchcraft      W
 
6391
131     018809  37      animals analyzable      betroth W
 
6392
132     018810  37      Micronesia      terminator      Manhattanize    
 
6393
133     018811  37      repetitions     gritty  imprint 
 
6394
134     018812  37      Antares firearm peeked  
 
6395
135     019101  37      ventilate       minima  swelling        
 
6396
136     019102  37      pityingly       Selfridge       interrelationships      W
 
6397
137     019103  37      interdependent  disable riser   
 
6398
138     019201  37      Graves  witchcraft      Gandhian        W
 
6399
139     030501  37      neonatal        betroth peacock A
 
6400
140     030502  50      scribbled       Manhattanize    bee     A
 
6401
141     030503  37      chafe   imprint kanji   
 
6402
142     030504  37      honoring        peeked  dental  
 
6403
143     031901  37      realtor swelling        scarf   FAS
 
6404
144     036001  37      elite   interrelationships      chasm   A
 
6405
145     036002  37      funereal        riser   insolence       A
 
6406
146     036004  37      abrogating      Gandhian        syndicate       
 
6407
147     036005  37      sorters peacock alike   
 
6408
148     038001  37      Conley  bee     imperial        A
 
6409
149     038002  37      lectured        kanji   convulsion      A
 
6410
150     038003  37      Abraham dental  railway A
 
6411
151     038004  37      Hawaii  scarf   validate        A
 
6412
152     038005  37      cage    chasm   normalizes      A
 
6413
153     038006  37      hushes  insolence       comprehensive   
 
6414
154     038007  37      Simla   syndicate       chewing 
 
6415
155     038008  37      reporters       alike   denizen 
 
6416
156     038009  37      Dutchman        imperial        schemer 
 
6417
157     038010  37      descendants     convulsion      chronicle       
 
6418
158     038011  37      groupings       railway Kline   
 
6419
159     038012  37      dissociate      validate        Anatole 
 
6420
160     038013  37      coexist normalizes      partridges      
 
6421
161     038014  37      Beebe   comprehensive   brunch  
 
6422
162     038015  37      Taoism  chewing recruited       
 
6423
163     038016  37      Connally        denizen dimensions      W
 
6424
164     038017  37      fetched schemer Chicana W
 
6425
165     038018  37      checkpoints     chronicle       announced       
 
6426
166     038101  37      rusting Kline   praised FAS
 
6427
167     038102  37      galling Anatole employing       
 
6428
168     038103  37      obliterates     partridges      linear  
 
6429
169     038104  37      traitor brunch  quagmire        
 
6430
170     038201  37      resumes recruited       western A
 
6431
171     038202  37      analyzable      dimensions      relishing       
 
6432
172     038203  37      terminator      Chicana serving A
 
6433
173     038204  37      gritty  announced       scheduling      
 
6434
174     038205  37      firearm praised lore    
 
6435
175     038206  37      minima  employing       eventful        
 
6436
176     038208  37      Selfridge       linear  arteriole       A
 
6437
177     042801  37      disable quagmire        disentangle     
 
6438
178     042802  37      witchcraft      western cured   A
 
6439
179     046101  37      betroth relishing       Fenton  W
 
6440
180     048001  37      Manhattanize    serving avoidable       A
 
6441
181     048002  37      imprint scheduling      drains  A
 
6442
182     048003  37      peeked  lore    detectably      FAS
 
6443
183     048004  37      swelling        eventful        husky   
 
6444
184     048005  37      interrelationships      arteriole       impelling       
 
6445
185     048006  37      riser   disentangle     undoes  
 
6446
186     048007  37      Gandhian        cured   evened  
 
6447
187     048008  37      peacock Fenton  squeezes        
 
6448
188     048101  37      bee     avoidable       destroyer       FAS
 
6449
189     048102  37      kanji   drains  rudeness        
 
6450
190     048201  37      dental  detectably      beaner  FAS
 
6451
191     048202  37      scarf   husky   boorish 
 
6452
192     048203  37      chasm   impelling       Everhart        
 
6453
193     048204  37      insolence       undoes  encompass       A
 
6454
194     048205  37      syndicate       evened  mushrooms       
 
6455
195     048301  37      alike   squeezes        Alison  A
 
6456
196     048302  37      imperial        destroyer       externally      FAS
 
6457
197     048303  37      convulsion      rudeness        pellagra        
 
6458
198     048304  37      railway beaner  cult    
 
6459
199     048305  37      validate        boorish creek   A
 
6460
200     048401  37      normalizes      Everhart        Huffman 
 
6461
201     048402  37      comprehensive   encompass       Majorca FAS
 
6462
202     048403  37      chewing mushrooms       governing       A
 
6463
203     048404  37      denizen Alison  gadfly  FAS
 
6464
204     048405  37      schemer externally      reassigned      FAS
 
6465
205     048406  37      chronicle       pellagra        intentness      W
 
6466
206     048407  37      Kline   cult    craziness       
 
6467
207     048408  37      Anatole creek   psychic 
 
6468
208     048409  37      partridges      Huffman squabbled       
 
6469
209     048410  37      brunch  Majorca burlesque       
 
6470
210     048411  37      recruited       governing       capped  
 
6471
211     048412  37      dimensions      gadfly  extracted       A
 
6472
212     048413  37      Chicana reassigned      DiMaggio        
 
6473
213     048601  37      announced       intentness      exclamation     FAS
 
6474
214     048602  37      praised craziness       subdirectory    
 
6475
215     048603  37      employing       psychic fangs   
 
6476
216     048604  37      linear  squabbled       buyer   A
 
6477
217     048801  37      quagmire        burlesque       pithing A
 
6478
218     050901  37      western capped  transistorizing A
 
6479
219     051201  37      relishing       extracted       nonbiodegradable        
 
6480
220     056002  37      serving DiMaggio        dislocate       
 
6481
221     056003  37      scheduling      exclamation     monochromatic   FAS
 
6482
222     056004  37      lore    subdirectory    batting 
 
6483
223     056102  37      eventful        fangs   postcondition   A
 
6484
224     056203  37      arteriole       buyer   catalog FAS
 
6485
225     056204  37      disentangle     pithing Remus   
 
6486
226     058003  37      cured   transistorizing devices A
 
6487
227     058004  37      Fenton  nonbiodegradable        bike    A
 
6488
228     058005  37      avoidable       dislocate       qualify 
 
6489
229     058006  37      drains  monochromatic   detained        
 
6490
230     058007  37      detectably      batting commended       
 
6491
231     058101  37      husky   postcondition   civilize        
 
6492
232     058102  37      impelling       catalog Elmhurst        
 
6493
233     058103  37      undoes  Remus   anesthetizing   
 
6494
234     058105  37      evened  devices deaf    
 
6495
235     058111  37      squeezes        bike    Brigham 
 
6496
236     058112  37      destroyer       qualify title   
 
6497
237     058113  37      rudeness        detained        coarse  
 
6498
238     058114  37      beaner  commended       combinations    
 
6499
239     058115  37      boorish civilize        grayness        
 
6500
240     058116  37      Everhart        Elmhurst        innumerable     FAS
 
6501
241     058117  37      encompass       anesthetizing   Caroline        A
 
6502
242     058118  37      mushrooms       deaf    fatty   FAS
 
6503
243     058119  37      Alison  Brigham eastbound       
 
6504
244     058120  37      externally      title   inexperienced   
 
6505
245     058121  37      pellagra        coarse  hoarder A
 
6506
246     058122  37      cult    combinations    scotch  W
 
6507
247     058123  37      creek   grayness        passport        A
 
6508
248     058124  37      Huffman innumerable     strategic       FAS
 
6509
249     058125  37      Majorca Caroline        gated   
 
6510
250     058126  37      governing       fatty   flog    
 
6511
251     058127  37      gadfly  eastbound       Pipestone       
 
6512
252     058128  37      reassigned      inexperienced   Dar     
 
6513
253     058201  37      intentness      hoarder Corcoran        
 
6514
254     058202  37      craziness       scotch  flyers  A
 
6515
255     058303  37      psychic passport        competitions    W
 
6516
256     058304  37      squabbled       strategic       suppliers       FAS
 
6517
257     058602  37      burlesque       gated   skips   
 
6518
258     058603  37      capped  flog    institutes      
 
6519
259     058604  37      extracted       Pipestone       troop   A
 
6520
260     058605  37      DiMaggio        Dar     connective      W
 
6521
261     058606  37      exclamation     Corcoran        denies  
 
6522
262     058607  37      subdirectory    flyers  polka   
 
6523
263     060401  36      fangs   competitions    observations    FAS
 
6524
264     061701  36      buyer   suppliers       askers  
 
6525
265     066201  36      pithing skips   homeless        FAS
 
6526
266     066501  36      transistorizing institutes      Anna    
 
6527
267     068001  36      nonbiodegradable        troop   subdirectories  W
 
6528
268     068002  36      dislocate       connective      decaying        FAS
 
6529
269     068005  36      monochromatic   denies  outwitting      W
 
6530
270     068006  36      batting polka   Harpy   W
 
6531
271     068007  36      postcondition   observations    crazed  
 
6532
272     068008  36      catalog askers  suffocate       
 
6533
273     068009  36      Remus   homeless        provers FAS
 
6534
274     068010  36      devices Anna    technically     
 
6535
275     068011  36      bike    subdirectories  Franklinizations        
 
6536
276     068202  36      qualify decaying        considered      
 
6537
277     068302  36      detained        outwitting      tinnily 
 
6538
278     068303  36      commended       Harpy   uninterruptedly 
 
6539
279     068401  36      civilize        crazed  whistled        A
 
6540
280     068501  36      Elmhurst        suffocate       automate        
 
6541
281     068502  36      anesthetizing   provers gutting W
 
6542
282     068503  36      deaf    technically     surreptitious   
 
6543
283     068602  36      Brigham Franklinizations        Choctaw 
 
6544
284     068603  36      title   considered      cooks   
 
6545
285     068701  36      coarse  tinnily millivolt       FAS
 
6546
286     068702  36      combinations    uninterruptedly counterpoise    
 
6547
287     068703  36      grayness        whistled        Gothicism       
 
6548
288     076001  36      innumerable     automate        feminine        
 
6549
289     076002  36      Caroline        gutting metaphysically  W
 
6550
290     076101  36      fatty   surreptitious   sanding A
 
6551
291     076102  36      eastbound       Choctaw contributorily  
 
6552
292     076103  36      inexperienced   cooks   receivers       FAS
 
6553
293     076302  36      hoarder millivolt       adjourn 
 
6554
294     076303  36      scotch  counterpoise    straggled       A
 
6555
295     076304  36      passport        Gothicism       druggists       
 
6556
296     076305  36      strategic       feminine        thanking        FAS
 
6557
297     076306  36      gated   metaphysically  ostrich 
 
6558
298     076307  36      flog    sanding hopelessness    FAS
 
6559
299     076402  36      Pipestone       contributorily  Eurydice        
 
6560
300     076501  36      Dar     receivers       excitation      W
 
6561
301     076502  36      Corcoran        adjourn presumes        FAS
 
6562
302     076701  36      flyers  straggled       imaginable      FAS
 
6563
303     078001  36      competitions    druggists       concoct W
 
6564
304     078002  36      suppliers       thanking        peering W
 
6565
305     078003  36      skips   ostrich Phelps  FAS
 
6566
306     078004  36      institutes      hopelessness    ferociousness   FAS
 
6567
307     078005  36      troop   Eurydice        sentences       
 
6568
308     078006  36      connective      excitation      unlocks 
 
6569
309     078007  36      denies  presumes        engrossing      W
 
6570
310     078008  36      polka   imaginable      Ruth    
 
6571
311     078101  36      observations    concoct tying   
 
6572
312     078103  36      askers  peering exclaimers      
 
6573
313     078104  36      homeless        Phelps  synergy 
 
6574
314     078105  36      Anna    ferociousness   Huey    W
 
6575
315     082101  36      subdirectories  sentences       merging 
 
6576
316     083401  36      decaying        unlocks judges  A
 
6577
317     084001  36      outwitting      engrossing      Shylock W
 
6578
318     084002  36      Harpy   Ruth    Miltonism       
 
6579
319     086001  36      crazed  tying   hen     W
 
6580
320     086102  36      suffocate       exclaimers      honeybee        FAS
 
6581
321     086201  36      provers synergy towers  
 
6582
322     088001  36      technically     Huey    dilutes W
 
6583
323     088002  36      Franklinizations        merging numerals        FAS
 
6584
324     088003  36      considered      judges  democracy       FAS
 
6585
325     088004  36      tinnily Shylock Ibero-  
 
6586
326     088101  36      uninterruptedly Miltonism       invalids        
 
6587
327     088102  36      whistled        hen     behavior        
 
6588
328     088103  36      automate        honeybee        accruing        
 
6589
329     088104  36      gutting towers  relics  A
 
6590
330     088105  36      surreptitious   dilutes rackets 
 
6591
331     088106  36      Choctaw numerals        Fischbein       W
 
6592
332     088201  36      cooks   democracy       phony   W
 
6593
333     088203  36      millivolt       Ibero-  cross   FAS
 
6594
334     088204  36      counterpoise    invalids        cleanup 
 
6595
335     088302  37      Gothicism       behavior        conspirator     
 
6596
336     088303  37      feminine        accruing        label   FAS
 
6597
337     088305  37      metaphysically  relics  university      
 
6598
338     088402  37      sanding rackets cleansed        FAS
 
6599
339     088501  36      contributorily  Fischbein       ballgown        
 
6600
340     088502  36      receivers       phony   starlet 
 
6601
341     088503  36      adjourn cross   aqueous 
 
6602
342     098001  58      straggled       cleanup portrayal       A
 
6603
343     098002  58      druggists       conspirator     despising       W
 
6604
344     098003  58      thanking        label   distort W
 
6605
345     098004  58      ostrich university      palmed  
 
6606
346     098005  58      hopelessness    cleansed        faced   
 
6607
347     098006  58      Eurydice        ballgown        silverware      
 
6608
348     141903  29      excitation      starlet assessor        
 
6609
349     098008  58      presumes        aqueous spiders 
 
6610
350     098009  58      imaginable      portrayal       artificially    
 
6611
351     098010  58      concoct despising       reminiscence    
 
6612
352     098011  58      peering distort Mexican 
 
6613
353     098012  58      Phelps  palmed  obnoxious       
 
6614
354     098013  58      ferociousness   faced   fragile 
 
6615
355     098014  58      sentences       silverware      apprehensible   
 
6616
356     098015  58      unlocks assessor        births  
 
6617
357     098016  58      engrossing      spiders garages 
 
6618
358     098017  58      Ruth    artificially    panty   
 
6619
359     098018  58      tying   reminiscence    anteater        
 
6620
360     098019  58      exclaimers      Mexican displacement    A
 
6621
361     098020  58      synergy obnoxious       drovers A
 
6622
362     098021  58      Huey    fragile patenting       A
 
6623
363     098022  58      merging apprehensible   far     A
 
6624
364     098023  58      judges  births  shrieks 
 
6625
365     098024  58      Shylock garages aligning        W
 
6626
366     098025  37      Miltonism       panty   pragmatism      
 
6627
367     106001  36      hen     anteater        fevers  W
 
6628
368     108001  36      honeybee        displacement    reexamines      A
 
6629
369     108002  36      towers  drovers occupancies     
 
6630
370     108003  36      dilutes patenting       sweats  FAS
 
6631
371     108004  36      numerals        far     modulators      
 
6632
372     108005  36      democracy       shrieks demand  W
 
6633
373     108007  36      Ibero-  aligning        Madeira 
 
6634
374     108008  36      invalids        pragmatism      Viennese        W
 
6635
375     108009  36      behavior        fevers  chillier        W
 
6636
376     108010  36      accruing        reexamines      wildcats        FAS
 
6637
377     108011  36      relics  occupancies     gentle  
 
6638
378     108012  36      rackets sweats  Angles  W
 
6639
379     108101  36      Fischbein       modulators      accuracies      
 
6640
380     108102  36      phony   demand  toggle  
 
6641
381     108103  36      cross   Madeira Mendelssohn     W
 
6642
382     108111  50      cleanup Viennese        behaviorally    
 
6643
383     108105  36      conspirator     chillier        Rochford        
 
6644
384     108106  36      label   wildcats        mirror  W
 
6645
385     108107  36      university      gentle  Modula  
 
6646
386     108108  50      cleansed        Angles  clobbering      
 
6647
387     108109  36      ballgown        accuracies      chronography    
 
6648
388     108110  36      starlet toggle  Eskimoizeds     
 
6649
389     108201  36      aqueous Mendelssohn     British W
 
6650
390     108202  36      portrayal       behaviorally    pitfalls        
 
6651
391     108203  36      despising       Rochford        verify  W
 
6652
392     108204  36      distort mirror  scatter FAS
 
6653
393     108205  36      palmed  Modula  Aztecan 
 
6654
394     108301  36      faced   clobbering      acuity  W
 
6655
395     108302  36      silverware      chronography    sinking W
 
6656
396     112101  36      assessor        Eskimoizeds     beasts  FAS
 
6657
397     112102  36      spiders British Witt    W
 
6658
398     113701  36      artificially    pitfalls        physicists      FAS
 
6659
399     116001  36      reminiscence    verify  folksong        A
 
6660
400     116201  36      Mexican scatter strokes FAS
 
6661
401     116301  36      obnoxious       Aztecan crowder 
 
6662
402     116302  36      fragile acuity  merry   
 
6663
403     116601  36      apprehensible   sinking cadenced        
 
6664
404     116602  36      births  beasts  alimony A
 
6665
405     116603  36      garages Witt    principled      A
 
6666
406     116701  36      panty   physicists      golfing 
 
6667
407     116702  36      anteater        folksong        undiscovered    
 
6668
408     118001  36      displacement    strokes irritates       
 
6669
409     118002  36      drovers crowder patriots        A
 
6670
410     118003  36      patenting       merry   rooms   FAS
 
6671
411     118004  36      far     cadenced        towering        W
 
6672
412     118005  36      shrieks alimony displease       
 
6673
413     118006  36      aligning        principled      photosensitive  
 
6674
414     118007  36      pragmatism      golfing inking  
 
6675
415     118008  36      fevers  undiscovered    gainers 
 
6676
416     118101  36      reexamines      irritates       leaning A
 
6677
417     118102  36      occupancies     patriots        hydrant A
 
6678
418     118103  36      sweats  rooms   preserve        
 
6679
419     118202  36      modulators      towering        blinded A
 
6680
420     118203  36      demand  displease       interactions    A
 
6681
421     118204  36      Madeira photosensitive  Barry   
 
6682
422     118302  36      Viennese        inking  whiteness       A
 
6683
423     118304  36      chillier        gainers pastimes        W
 
6684
424     118305  36      wildcats        leaning Edenization     
 
6685
425     118306  36      gentle  hydrant Muscat  
 
6686
426     118307  36      Angles  preserve        assassinated    
 
6687
427     123101  36      accuracies      blinded labeled 
 
6688
428     123102  36      toggle  interactions    glacial A
 
6689
429     123301  36      Mendelssohn     Barry   implied W
 
6690
430     126001  36      behaviorally    whiteness       bibliographies  W
 
6691
431     126002  36      Rochford        pastimes        Buchanan        
 
6692
432     126003  36      mirror  Edenization     forgivably      FAS
 
6693
433     126101  36      Modula  Muscat  innuendo        A
 
6694
434     126301  36      clobbering      assassinated    den     FAS
 
6695
435     126302  36      chronography    labeled submarines      W
 
6696
436     126402  36      Eskimoizeds     glacial mouthful        A
 
6697
437     126601  36      British implied expiring        
 
6698
438     126602  36      pitfalls        bibliographies  unfulfilled     FAS
 
6699
439     126702  36      verify  Buchanan        precession      
 
6700
440     128001  36      scatter forgivably      nullified       
 
6701
441     128002  36      Aztecan innuendo        affects 
 
6702
442     128003  36      acuity  den     Cynthia 
 
6703
443     128004  36      sinking submarines      Chablis A
 
6704
444     128005  36      beasts  mouthful        betterments     FAS
 
6705
445     128007  36      Witt    expiring        advertising     
 
6706
446     128008  36      physicists      unfulfilled     rubies  A
 
6707
447     128009  36      folksong        precession      southwest       FAS
 
6708
448     128010  36      strokes nullified       superstitious   A
 
6709
449     128011  36      crowder affects tabernacle      W
 
6710
450     128012  36      merry   Cynthia silk    A
 
6711
451     128013  36      cadenced        Chablis handsomest      A
 
6712
452     128014  36      alimony betterments     Persian A
 
6713
453     128015  36      principled      advertising     analog  W
 
6714
454     128016  36      golfing rubies  complex W
 
6715
455     128017  36      undiscovered    southwest       Taoist  
 
6716
456     128018  36      irritates       superstitious   suspend 
 
6717
457     128019  36      patriots        tabernacle      relegated       
 
6718
458     128020  36      rooms   silk    awesome W
 
6719
459     128021  36      towering        handsomest      Bruxelles       
 
6720
460     128022  36      displease       Persian imprecisely     A
 
6721
461     128023  36      photosensitive  analog  televise        
 
6722
462     128101  36      inking  complex braking 
 
6723
463     128102  36      gainers Taoist  true    FAS
 
6724
464     128103  36      leaning suspend disappointing   FAS
 
6725
465     128104  36      hydrant relegated       navally W
 
6726
466     128106  36      preserve        awesome circus  
 
6727
467     128107  36      blinded Bruxelles       beetles 
 
6728
468     128108  36      interactions    imprecisely     trumps  
 
6729
469     128202  36      Barry   televise        fourscore       W
 
6730
470     128203  36      whiteness       braking Blackfoots      
 
6731
471     128301  36      pastimes        true    Grady   
 
6732
472     128302  36      Edenization     disappointing   quiets  FAS
 
6733
473     128303  36      Muscat  navally floundered      FAS
 
6734
474     128304  36      assassinated    circus  profundity      W
 
6735
475     128305  36      labeled beetles Garrisonian     W
 
6736
476     128307  36      glacial trumps  Strauss 
 
6737
477     128401  36      implied fourscore       cemented        FAS
 
6738
478     128502  36      bibliographies  Blackfoots      contrition      A
 
6739
479     128503  36      Buchanan        Grady   mutations       
 
6740
480     128504  36      forgivably      quiets  exhibits        W
 
6741
481     128505  36      innuendo        floundered      tits    
 
6742
482     128601  36      den     profundity      mate    A
 
6743
483     128603  36      submarines      Garrisonian     arches  
 
6744
484     128604  36      mouthful        Strauss Moll    
 
6745
485     128702  36      expiring        cemented        ropers  
 
6746
486     128703  36      unfulfilled     contrition      bombast 
 
6747
487     128704  36      precession      mutations       difficultly     A
 
6748
488     138001  36      nullified       exhibits        adsorption      
 
6749
489     138002  36      affects tits    definiteness    FAS
 
6750
490     138003  36      Cynthia mate    cultivation     A
 
6751
491     138004  36      Chablis arches  heals   A
 
6752
492     138005  36      betterments     Moll    Heusen  W
 
6753
493     138006  36      advertising     ropers  target  FAS
 
6754
494     138007  36      rubies  bombast cited   A
 
6755
495     138008  36      southwest       difficultly     congresswoman   W
 
6756
496     138009  36      superstitious   adsorption      Katherine       
 
6757
497     138102  36      tabernacle      definiteness    titter  A
 
6758
498     138103  36      silk    cultivation     aspire  A
 
6759
499     138104  36      handsomest      heals   Mardis  
 
6760
500     138105  36      Persian Heusen  Nadia   W
 
6761
501     138201  36      analog  target  estimating      FAS
 
6762
502     138302  36      complex cited   stuck   A
 
6763
503     138303  36      Taoist  congresswoman   fifteenth       A
 
6764
504     138304  36      suspend Katherine       Colombo 
 
6765
505     138401  29      relegated       titter  survey  A
 
6766
506     140102  29      awesome aspire  staffing        
 
6767
507     140103  29      Bruxelles       Mardis  obtain  
 
6768
508     140104  29      imprecisely     Nadia   loaded  
 
6769
509     140105  29      televise        estimating      slaughtered     
 
6770
510     140201  29      braking stuck   lights  A
 
6771
511     140701  29      true    fifteenth       circumference   
 
6772
512     141501  29      disappointing   Colombo dull    A
 
6773
513     141502  29      navally survey  weekly  A
 
6774
514     141901  29      circus  staffing        wetness 
 
6775
515     141902  29      beetles obtain  visualized      
 
6776
516     142101  29      trumps  loaded  Tannenbaum      
 
6777
517     142102  29      fourscore       slaughtered     moribund        
 
6778
518     142103  29      Blackfoots      lights  demultiplex     
 
6779
519     142701  29      Grady   circumference   lockings        
 
6780
520     143001  29      quiets  dull    thugs   FAS
 
6781
521     143501  29      floundered      weekly  unnerves        
 
6782
522     143502  29      profundity      wetness abut    
 
6783
523     148001  29      Garrisonian     visualized      Chippewa        A
 
6784
524     148002  29      Strauss Tannenbaum      stratifications A
 
6785
525     148003  29      cemented        moribund        signaled        
 
6786
526     148004  29      contrition      demultiplex     Italianizes     A
 
6787
527     148005  29      mutations       lockings        algorithmic     A
 
6788
528     148006  29      exhibits        thugs   paranoid        FAS
 
6789
529     148007  29      tits    unnerves        camping A
 
6790
530     148009  29      mate    abut    signifying      A
 
6791
531     148010  29      arches  Chippewa        Patrice W
 
6792
532     148011  29      Moll    stratifications search  A
 
6793
533     148012  29      ropers  signaled        Angeles A
 
6794
534     148013  29      bombast Italianizes     semblance       
 
6795
535     148023  36      difficultly     algorithmic     taxed   
 
6796
536     148015  29      adsorption      paranoid        Beatrice        
 
6797
537     148016  29      definiteness    camping retrace 
 
6798
538     148017  29      cultivation     signifying      lockout 
 
6799
539     148018  29      heals   Patrice grammatic       
 
6800
540     148019  29      Heusen  search  helmsman        
 
6801
541     148020  29      target  Angeles uniform W
 
6802
542     148021  29      cited   semblance       hamming 
 
6803
543     148022  29      congresswoman   taxed   disobedience    
 
6804
544     148101  29      Katherine       Beatrice        captivated      A
 
6805
545     148102  29      titter  retrace transferals     A
 
6806
546     148201  29      aspire  lockout cartographer    A
 
6807
547     148401  29      Mardis  grammatic       aims    FAS
 
6808
548     148402  29      Nadia   helmsman        Pakistani       
 
6809
549     148501  29      estimating      uniform burglarized     FAS
 
6810
550     148502  29      stuck   hamming saucepans       A
 
6811
551     148503  29      fifteenth       disobedience    lacerating      A
 
6812
552     148504  29      Colombo captivated      corny   
 
6813
553     148601  29      survey  transferals     megabytes       FAS
 
6814
554     148602  29      staffing        cartographer    chancellor      
 
6815
555     150701  29      obtain  aims    bulk    A
 
6816
556     152101  29      loaded  Pakistani       commits A
 
6817
557     152102  29      slaughtered     burglarized     meson   W
 
6818
558     155202  36      lights  saucepans       deputies        
 
6819
559     155203  29      circumference   lacerating      northeaster     A
 
6820
560     155204  29      dull    corny   dipole  
 
6821
561     155205  29      weekly  megabytes       machining       0
 
6822
562     156001  29      wetness chancellor      therefore       
 
6823
563     156002  29      visualized      bulk    Telefunken      
 
6824
564     156102  29      Tannenbaum      commits salvaging       
 
6825
565     156301  29      moribund        meson   Corinthianizes  A
 
6826
566     156302  29      demultiplex     deputies        restlessly      A
 
6827
567     156303  29      lockings        northeaster     bromides        
 
6828
568     156304  29      thugs   dipole  generalized     A
 
6829
569     156305  29      unnerves        machining       mishaps 
 
6830
570     156306  29      abut    therefore       quelling        
 
6831
571     156501  29      Chippewa        Telefunken      spiritual       A
 
6832
572     158001  29      stratifications salvaging       beguiles        FAS
 
6833
573     158002  29      signaled        Corinthianizes  Trobriand       FAS
 
6834
574     158101  29      Italianizes     restlessly      fleeing A
 
6835
575     158102  29      algorithmic     bromides        Armour  A
 
6836
576     158103  29      paranoid        generalized     chin    A
 
6837
577     158201  29      camping mishaps provers A
 
6838
578     158202  29      signifying      quelling        aeronautic      A
 
6839
579     158203  29      Patrice spiritual       voltage W
 
6840
580     158204  29      search  beguiles        sash    
 
6841
581     158301  29      Angeles Trobriand       anaerobic       A
 
6842
582     158302  29      semblance       fleeing simultaneous    A
 
6843
583     158303  29      taxed   Armour  accumulating    A
 
6844
584     158304  29      Beatrice        chin    Medusan A
 
6845
585     158305  29      retrace provers shouted A
 
6846
586     158306  29      lockout aeronautic      freakish        
 
6847
587     158501  29      grammatic       voltage index   FAS
 
6848
588     160301  29      helmsman        sash    commercially    
 
6849
589     166101  50      uniform anaerobic       mistiness       A
 
6850
590     166102  50      hamming simultaneous    endpoint        
 
6851
591     168001  29      disobedience    accumulating    straight        A
 
6852
592     168002  29      captivated      Medusan flurried        
 
6853
593     168003  29      transferals     shouted denotative      A
 
6854
594     168101  29      cartographer    freakish        coming  FAS
 
6855
595     168102  29      aims    index   commencements   FAS
 
6856
596     168103  29      Pakistani       commercially    gentleman       
 
6857
597     168104  29      burglarized     mistiness       gifted  
 
6858
598     168202  29      saucepans       endpoint        Shanghais       
 
6859
599     168301  29      lacerating      straight        sportswriting   A
 
6860
600     168502  29      corny   flurried        sloping A
 
6861
601     168503  29      megabytes       denotative      navies  
 
6862
602     168601  29      chancellor      coming  leaflet A
 
6863
603     173001  40      bulk    commencements   shooter 
 
6864
604     173701  40      commits gentleman       Joplin  FAS
 
6865
605     173702  40      meson   gifted  babies  
 
6866
606     176001  40      deputies        Shanghais       subdivision     FAS
 
6867
607     176101  40      northeaster     sportswriting   burstiness      W
 
6868
608     176201  40      dipole  sloping belted  FAS
 
6869
609     176401  40      machining       navies  assails FAS
 
6870
610     176501  40      therefore       leaflet admiring        W
 
6871
611     176601  40      Telefunken      shooter swaying 0
 
6872
612     176602  40      salvaging       Joplin  Goldstine       FAS
 
6873
613     176603  40      Corinthianizes  babies  fitting 
 
6874
614     178001  40      restlessly      subdivision     Norwalk W
 
6875
615     178002  40      bromides        burstiness      weakening       W
 
6876
616     178003  40      generalized     belted  analogy FAS
 
6877
617     178004  40      mishaps assails deludes 
 
6878
618     178005  40      quelling        admiring        cokes   
 
6879
619     178006  40      spiritual       swaying Clayton 
 
6880
620     178007  40      beguiles        Goldstine       exhausts        
 
6881
621     178008  40      Trobriand       fitting causality       
 
6882
622     178101  40      fleeing Norwalk sating  FAS
 
6883
623     178102  40      Armour  weakening       icon    
 
6884
624     178103  40      chin    analogy throttles       
 
6885
625     178201  40      provers deludes communicants    FAS
 
6886
626     178202  40      aeronautic      cokes   dehydrate       FAS
 
6887
627     178301  40      voltage Clayton priceless       FAS
 
6888
628     178302  40      sash    exhausts        publicly        
 
6889
629     178401  40      anaerobic       causality       incidentals     FAS
 
6890
630     178402  40      simultaneous    sating  commonplace     
 
6891
631     178403  40      accumulating    icon    mumbles 
 
6892
632     178404  40      Medusan throttles       furthermore     W
 
6893
633     178501  40      shouted communicants    cautioned       W
 
6894
634     186002  37      freakish        dehydrate       parametrized    A
 
6895
635     186102  37      index   priceless       registration    A
 
6896
636     186201  40      commercially    publicly        sadly   FAS
 
6897
637     186202  40      mistiness       incidentals     positioning     
 
6898
638     186203  40      endpoint        commonplace     babysitting     
 
6899
639     186302  37      straight        mumbles eternal A
 
6900
640     188007  37      flurried        furthermore     hoarder 
 
6901
641     188008  37      denotative      cautioned       congregates     
 
6902
642     188009  37      coming  parametrized    rains   
 
6903
643     188010  37      commencements   registration    workers W
 
6904
644     188011  37      gentleman       sadly   sags    A
 
6905
645     188012  37      gifted  positioning     unplug  W
 
6906
646     188013  37      Shanghais       babysitting     garage  A
 
6907
647     188014  37      sportswriting   eternal boulder A
 
6908
648     188015  37      sloping hoarder hollowly        A
 
6909
649     188016  37      navies  congregates     specifics       
 
6910
650     188017  37      leaflet rains   Teresa  
 
6911
651     188102  37      shooter workers Winsett 
 
6912
652     188103  37      Joplin  sags    convenient      A
 
6913
653     188202  37      babies  unplug  buckboards      FAS
 
6914
654     188301  40      subdivision     garage  amenities       
 
6915
655     188302  40      burstiness      boulder resplendent     FAS
 
6916
656     188303  40      belted  hollowly        priding FAS
 
6917
657     188401  37      assails specifics       configurations  
 
6918
658     188402  37      admiring        Teresa  untidiness      A
 
6919
659     188503  37      swaying Winsett Brice   W
 
6920
660     188504  37      Goldstine       convenient      sews    FAS
 
6921
661     188505  37      fitting buckboards      participated    
 
6922
662     190701  37      Norwalk amenities       Simon   FAS
 
6923
663     190703  50      weakening       resplendent     certificates    
 
6924
664     191701  37      analogy priding Fitzpatrick     
 
6925
665     191702  37      deludes configurations  Evanston        A
 
6926
666     191703  37      cokes   untidiness      misted  
 
6927
667     196001  37      Clayton Brice   textures        A
 
6928
668     196002  37      exhausts        sews    save    
 
6929
669     196003  37      causality       participated    count   
 
6930
670     196101  37      sating  Simon   rightful        A
 
6931
671     196103  37      icon    certificates    chaperone       
 
6932
672     196104  37      throttles       Fitzpatrick     Lizzy   A
 
6933
673     196201  37      communicants    Evanston        clenched        A
 
6934
674     196202  37      dehydrate       misted  effortlessly    
 
6935
675     196203  37      priceless       textures        accessed        
 
6936
676     198001  37      publicly        save    beaters A
 
6937
677     198003  37      incidentals     count   Hornblower      FAS
 
6938
678     198004  37      commonplace     rightful        vests   A
 
6939
679     198005  37      mumbles chaperone       indulgences     FAS
 
6940
680     198006  37      furthermore     Lizzy   infallibly      A
 
6941
681     198007  37      cautioned       clenched        unwilling       FAS
 
6942
682     198008  37      parametrized    effortlessly    excrete FAS
 
6943
683     198009  37      registration    accessed        spools  A
 
6944
684     198010  37      sadly   beaters crunches        FAS
 
6945
685     198011  37      positioning     Hornblower      overestimating  FAS
 
6946
686     198012  37      babysitting     vests   ineffective     
 
6947
687     198013  37      eternal indulgences     humiliation     A
 
6948
688     198014  37      hoarder infallibly      sophomore       
 
6949
689     198015  37      congregates     unwilling       star    
 
6950
690     198017  37      rains   excrete rifles  
 
6951
691     198018  37      workers spools  dialysis        
 
6952
692     198019  37      sags    crunches        arriving        
 
6953
693     198020  37      unplug  overestimating  indulge 
 
6954
694     198021  37      garage  ineffective     clockers        
 
6955
695     198022  37      boulder humiliation     languages       
 
6956
696     198023  50      hollowly        sophomore       Antarctica      A
 
6957
697     198024  37      specifics       star    percentage      
 
6958
698     198101  37      Teresa  rifles  ceiling A
 
6959
699     198103  37      Winsett dialysis        specification   
 
6960
700     198105  37      convenient      arriving        regimented      A
 
6961
701     198106  37      buckboards      indulge ciphers 
 
6962
702     198201  37      amenities       clockers        pictures        A
 
6963
703     198204  37      resplendent     languages       serpents        A
 
6964
704     198301  53      priding Antarctica      allot   A
 
6965
705     198302  53      configurations  percentage      realized        A
 
6966
706     198303  53      untidiness      ceiling mayoral A
 
6967
707     198304  53      Brice   specification   opaquely        A
 
6968
708     198401  37      sews    regimented      hostess FAS
 
6969
709     198402  37      participated    ciphers fiftieth        
 
6970
710     198403  37      Simon   pictures        incorrectly     
 
6971
711     202101  37      certificates    serpents        decomposition   FAS
 
6972
712     202301  37      Fitzpatrick     allot   stranglings     
 
6973
713     202302  37      Evanston        realized        mixture FAS
 
6974
714     202303  37      misted  mayoral electroencephalography  FAS
 
6975
715     202304  37      textures        opaquely        similarities    FAS
 
6976
716     202305  37      save    hostess charges W
 
6977
717     202601  37      count   fiftieth        freest  FAS
 
6978
718     202602  37      rightful        incorrectly     Greenberg       FAS
 
6979
719     202605  37      chaperone       decomposition   tinting 
 
6980
720     202606  37      Lizzy   stranglings     expelled        W
 
6981
721     202607  37      clenched        mixture warm    
 
6982
722     202901  37      effortlessly    electroencephalography  smoothed        
 
6983
723     202902  37      accessed        similarities    deductions      FAS
 
6984
724     202903  37      beaters charges Romano  W
 
6985
725     202904  37      Hornblower      freest  bitterroot      
 
6986
726     202907  37      vests   Greenberg       corset  
 
6987
727     202908  37      indulgences     tinting securing        
 
6988
728     203101  37      infallibly      expelled        environing      FAS
 
6989
729     203103  37      unwilling       warm    cute    
 
6990
730     203104  37      excrete smoothed        Crays   
 
6991
731     203105  37      spools  deductions      heiress FAS
 
6992
732     203401  37      crunches        Romano  inform  FAS
 
6993
733     203402  37      overestimating  bitterroot      avenge  
 
6994
734     203404  37      ineffective     corset  universals      
 
6995
735     203901  37      humiliation     securing        Kinsey  W
 
6996
736     203902  37      sophomore       environing      ravines FAS
 
6997
737     203903  37      star    cute    bestseller      
 
6998
738     203906  37      rifles  Crays   equilibrium     
 
6999
739     203907  37      dialysis        heiress extents 0
 
7000
740     203908  37      arriving        inform  relatively      
 
7001
741     203909  37      indulge avenge  pressure        FAS
 
7002
742     206101  37      clockers        universals      critiques       FAS
 
7003
743     206201  37      languages       Kinsey  befouled        
 
7004
744     206202  37      Antarctica      ravines rightfully      FAS
 
7005
745     206203  37      percentage      bestseller      mechanizing     FAS
 
7006
746     206206  37      ceiling equilibrium     Latinizes       
 
7007
747     206207  37      specification   extents timesharing     
 
7008
748     206208  37      regimented      relatively      Aden    
 
7009
749     208001  37      ciphers pressure        embassies       
 
7010
750     208002  37      pictures        critiques       males   FAS
 
7011
751     208003  37      serpents        befouled        shapelessly     FAS
 
7012
752     208004  37      allot   rightfully      genres  FAS
 
7013
753     208008  37      realized        mechanizing     mastering       
 
7014
754     208009  37      mayoral Latinizes       Newtonian       
 
7015
755     208010  37      opaquely        timesharing     finishers       FAS
 
7016
756     208011  37      hostess Aden    abates  
 
7017
757     208101  37      fiftieth        embassies       teem    
 
7018
758     208102  37      incorrectly     males   kiting  FAS
 
7019
759     208103  37      decomposition   shapelessly     stodgy  FAS
 
7020
760     208104  37      stranglings     genres  scalps  FAS
 
7021
761     208105  37      mixture mastering       feed    FAS
 
7022
762     208110  37      electroencephalography  Newtonian       guitars 
 
7023
763     208111  37      similarities    finishers       airships        
 
7024
764     208112  37      charges abates  store   
 
7025
765     208113  37      freest  teem    denounces       
 
7026
766     208201  37      Greenberg       kiting  Pyle    FAS
 
7027
767     208203  37      tinting stodgy  Saxony  
 
7028
768     208301  37      expelled        scalps  serializations  FAS
 
7029
769     208302  37      warm    feed    Peruvian        FAS
 
7030
770     208305  37      smoothed        guitars taxonomically   FAS
 
7031
771     208401  37      deductions      airships        kingdom A
 
7032
772     208402  37      Romano  store   stint   A
 
7033
773     208403  37      bitterroot      denounces       Sault   A
 
7034
774     208404  37      corset  Pyle    faithful        
 
7035
775     208501  37      securing        Saxony  Ganymede        FAS
 
7036
776     208502  37      environing      serializations  tidiness        FAS
 
7037
777     208503  37      cute    Peruvian        gainful FAS
 
7038
778     208504  37      Crays   taxonomically   contrary        FAS
 
7039
779     208505  37      heiress kingdom Tipperary       FAS
 
7040
780     210101  37      inform  stint   tropics W
 
7041
781     210102  37      avenge  Sault   theorizers      
 
7042
782     210103  37      universals      faithful        renew   0
 
7043
783     210104  37      Kinsey  Ganymede        already 
 
7044
784     210105  37      ravines tidiness        terminal        
 
7045
785     210106  37      bestseller      gainful Hegelian        
 
7046
786     210107  37      equilibrium     contrary        hypothesizer    
 
7047
787     210401  37      extents Tipperary       warningly       FAS
 
7048
788     213201  37      relatively      tropics journalizing    FAS
 
7049
789     213203  37      pressure        theorizers      nested  
 
7050
790     213204  37      critiques       renew   Lars    
 
7051
791     213205  37      befouled        already saplings        
 
7052
792     213206  37      rightfully      terminal        foothill        
 
7053
793     213207  37      mechanizing     Hegelian        labeled 
 
7054
794     216101  37      Latinizes       hypothesizer    imperiously     FAS
 
7055
795     216103  37      timesharing     warningly       reporters       FAS
 
7056
796     218001  37      Aden    journalizing    furnishings     FAS
 
7057
797     218002  37      embassies       nested  precipitable    FAS
 
7058
798     218003  37      males   Lars    discounts       FAS
 
7059
799     218004  37      shapelessly     saplings        excises FAS
 
7060
800     143503  50      genres  foothill        Stalin  
 
7061
801     218006  37      mastering       labeled despot  FAS
 
7062
802     218007  37      Newtonian       imperiously     ripeness        FAS
 
7063
803     218008  37      finishers       reporters       Arabia  
 
7064
804     218009  37      abates  furnishings     unruly  
 
7065
805     218010  37      teem    precipitable    mournfulness    
 
7066
806     218011  37      kiting  discounts       boom    FAS
 
7067
807     218020  37      stodgy  excises slaughter       A
 
7068
808     218021  50      scalps  Stalin  Sabine  
 
7069
809     218022  37      feed    despot  handy   FAS
 
7070
810     218023  37      guitars ripeness        rural   
 
7071
811     218024  37      airships        Arabia  organizer       
 
7072
812     218101  37      store   unruly  shipyard        FAS
 
7073
813     218102  37      denounces       mournfulness    civics  FAS
 
7074
814     218103  37      Pyle    boom    inaccuracy      FAS
 
7075
815     218201  37      Saxony  slaughter       rules   FAS
 
7076
816     218202  37      serializations  Sabine  juveniles       FAS
 
7077
817     218203  37      Peruvian        handy   comprised       W
 
7078
818     218204  37      taxonomically   rural   investigations  
 
7079
819     218205  37      kingdom organizer       stabilizes      A
 
7080
820     218301  37      stint   shipyard        seminaries      FAS
 
7081
821     218302  37      Sault   civics  Hunter  A
 
7082
822     218401  37      faithful        inaccuracy      sporty  FAS
 
7083
823     218402  37      Ganymede        rules   test    FAS
 
7084
824     218403  37      tidiness        juveniles       weasels 
 
7085
825     218404  37      gainful comprised       CERN    
 
7086
826     218407  37      contrary        investigations  tempering       
 
7087
827     218408  37      Tipperary       stabilizes      afore   FAS
 
7088
828     218409  37      tropics seminaries      Galatean        
 
7089
829     218410  37      theorizers      Hunter  techniques      W
 
7090
830     226001  37      renew   sporty  error   
 
7091
831     226002  37      already test    veranda 
 
7092
832     226003  37      terminal        weasels severely        
 
7093
833     226004  37      Hegelian        CERN    Cassites        FAS
 
7094
834     226005  37      hypothesizer    tempering       forthcoming     
 
7095
835     226006  37      warningly       afore   guides  
 
7096
836     226007  37      journalizing    Galatean        vanish  FAS
 
7097
837     226008  37      nested  techniques      lied    A
 
7098
838     226203  37      Lars    error   sawtooth        FAS
 
7099
839     226204  37      saplings        veranda fated   FAS
 
7100
840     226205  37      foothill        severely        gradually       
 
7101
841     226206  37      labeled Cassites        widens  
 
7102
842     226207  37      imperiously     forthcoming     preclude        
 
7103
843     226208  37      reporters       guides  Jobrel  
 
7104
844     226209  37      furnishings     vanish  hooker  
 
7105
845     226210  37      precipitable    lied    rainstorm       
 
7106
846     226211  37      discounts       sawtooth        disconnects     
 
7107
847     228001  37      excises fated   cruelty 
 
7108
848     228004  37      Stalin  gradually       exponentials    A
 
7109
849     228005  37      despot  widens  affective       A
 
7110
850     228006  37      ripeness        preclude        arteries        
 
7111
851     228007  37      Arabia  Jobrel  Crosby  FAS
 
7112
852     228008  37      unruly  hooker  acquaint        
 
7113
853     228009  37      mournfulness    rainstorm       evenhandedly    
 
7114
854     228101  37      boom    disconnects     percentage      
 
7115
855     228108  37      slaughter       cruelty disobedience    
 
7116
856     228109  37      Sabine  exponentials    humility        
 
7117
857     228110  37      handy   affective       gleaning        A
 
7118
858     228111  37      rural   arteries        petted  A
 
7119
859     228112  37      organizer       Crosby  bloater A
 
7120
860     228113  37      shipyard        acquaint        minion  A
 
7121
861     228114  37      civics  evenhandedly    marginal        A
 
7122
862     228115  37      inaccuracy      percentage      apiary  A
 
7123
863     228116  37      rules   disobedience    measures        
 
7124
864     228117  37      juveniles       humility        precaution      
 
7125
865     228118  37      comprised       gleaning        repelled        
 
7126
866     228119  37      investigations  petted  primary FAS
 
7127
867     228120  37      stabilizes      bloater coverings       
 
7128
868     228121  37      seminaries      minion  Artemia A
 
7129
869     228122  37      Hunter  marginal        navigate        
 
7130
870     228201  37      sporty  apiary  spatial 
 
7131
871     228206  37      test    measures        Gurkha  
 
7132
872     228207  37      weasels precaution      meanwhile       A
 
7133
873     228208  37      CERN    repelled        Melinda A
 
7134
874     228209  37      tempering       primary Butterfield     
 
7135
875     228210  37      afore   coverings       Aldrich A
 
7136
876     228211  37      Galatean        Artemia previewing      A
 
7137
877     228212  37      techniques      navigate        glut    A
 
7138
878     228213  37      error   spatial unaffected      
 
7139
879     228214  37      veranda Gurkha  inmate  
 
7140
880     228301  37      severely        meanwhile       mineral 
 
7141
881     228305  37      Cassites        Melinda impending       A
 
7142
882     228306  37      forthcoming     Butterfield     meditation      A
 
7143
883     228307  37      guides  Aldrich ideas   
 
7144
884     228308  37      vanish  previewing      miniaturizes    W
 
7145
885     228309  37      lied    glut    lewdly  
 
7146
886     228310  37      sawtooth        unaffected      title   
 
7147
887     228311  37      fated   inmate  youthfulness    
 
7148
888     228312  37      gradually       mineral creak   FAS
 
7149
889     228313  37      widens  impending       Chippewa        
 
7150
890     228314  37      preclude        meditation      clamored        
 
7151
891     228401  65      Jobrel  ideas   freezes 
 
7152
892     228402  65      hooker  miniaturizes    forgivably      FAS
 
7153
893     228403  65      rainstorm       lewdly  reduce  FAS
 
7154
894     228404  65      disconnects     title   McGovern        W
 
7155
895     228405  65      cruelty youthfulness    Nazis   W
 
7156
896     228406  65      exponentials    creak   epistle W
 
7157
897     228407  65      affective       Chippewa        socializes      W
 
7158
898     228408  65      arteries        clamored        conceptions     
 
7159
899     228409  65      Crosby  freezes Kevin   
 
7160
900     228410  65      acquaint        forgivably      uncovering      
 
7161
901     230301  37      evenhandedly    reduce  chews   FAS
 
7162
902     230302  37      percentage      McGovern        appendixes      FAS
 
7163
903     230303  37      disobedience    Nazis   raining 
 
7164
904     018062  37      humility        epistle infest  
 
7165
905     230501  37      gleaning        socializes      compartment     
 
7166
906     230502  37      petted  conceptions     minting 
 
7167
907     230503  37      bloater Kevin   ducks   
 
7168
908     230504  37      minion  uncovering      roped   A
 
7169
909     230505  37      marginal        chews   waltz   
 
7170
910     230506  37      apiary  appendixes      Lillian 
 
7171
911     230507  37      measures        raining repressions     A
 
7172
912     230508  37      precaution      infest  chillingly      
 
7173
913     230509  37      repelled        compartment     noncritical     
 
7174
914     230901  37      primary minting lithograph      
 
7175
915     230902  37      coverings       ducks   spongers        
 
7176
916     230903  37      Artemia roped   parenthood      
 
7177
917     230904  37      navigate        waltz   posed   
 
7178
918     230905  37      spatial Lillian instruments     
 
7179
919     230906  37      Gurkha  repressions     filial  
 
7180
920     230907  37      meanwhile       chillingly      fixedly 
 
7181
921     230908  37      Melinda noncritical     relives 
 
7182
922     230909  37      Butterfield     lithograph      Pandora 
 
7183
923     230910  37      Aldrich spongers        watering        A
 
7184
924     230911  37      previewing      parenthood      ungrateful      
 
7185
925     230912  37      glut    posed   secures 
 
7186
926     230913  37      unaffected      instruments     chastisers      
 
7187
927     230914  37      inmate  filial  icon    
 
7188
928     231304  37      mineral fixedly reuniting       A
 
7189
929     231305  37      impending       relives imagining       A
 
7190
930     231306  37      meditation      Pandora abiding A
 
7191
931     231307  37      ideas   watering        omnisciently    
 
7192
932     231308  37      miniaturizes    ungrateful      Britannic       
 
7193
933     231309  37      lewdly  secures scholastics     A
 
7194
934     231310  37      title   chastisers      mechanics       A
 
7195
935     231311  37      youthfulness    icon    humidly A
 
7196
936     231312  37      creak   reuniting       masterpiece     
 
7197
937     231313  37      Chippewa        imagining       however 
 
7198
938     231314  37      clamored        abiding Mendelian       
 
7199
939     231315  37      freezes omnisciently    jarred  
 
7200
940     232102  37      forgivably      Britannic       scolds  
 
7201
941     232103  37      reduce  scholastics     infatuate       
 
7202
942     232104  37      McGovern        mechanics       willed  A
 
7203
943     232105  37      Nazis   humidly joyfully        
 
7204
944     232106  37      epistle masterpiece     Microsoft       
 
7205
945     232107  37      socializes      however fibrosities     
 
7206
946     232108  37      conceptions     Mendelian       Baltimorean     
 
7207
947     232601  37      Kevin   jarred  equestrian      
 
7208
948     232602  37      uncovering      scolds  Goodrich        
 
7209
949     232603  37      chews   infatuate       apish   A
 
7210
950     232605  37      appendixes      willed  Adlerian        
 
7211
5950    1232605 37      appendixes      willed  Adlerian        
 
7212
5951    1232606 37      appendixes      willed  Adlerian        
 
7213
5952    1232607 37      appendixes      willed  Adlerian        
 
7214
5953    1232608 37      appendixes      willed  Adlerian        
 
7215
5954    1232609 37      appendixes      willed  Adlerian        
 
7216
951     232606  37      raining joyfully        Tropez  
 
7217
952     232607  37      infest  Microsoft       nouns   
 
7218
953     232608  37      compartment     fibrosities     distracting     
 
7219
954     232609  37      minting Baltimorean     mutton  
 
7220
955     236104  37      ducks   equestrian      bridgeable      A
 
7221
956     236105  37      roped   Goodrich        stickers        A
 
7222
957     236106  37      waltz   apish   transcontinental        A
 
7223
958     236107  37      Lillian Adlerian        amateurish      
 
7224
959     236108  37      repressions     Tropez  Gandhian        
 
7225
960     236109  37      chillingly      nouns   stratified      
 
7226
961     236110  37      noncritical     distracting     chamberlains    
 
7227
962     236111  37      lithograph      mutton  creditably      
 
7228
963     236112  37      spongers        bridgeable      philosophic     
 
7229
964     236113  37      parenthood      stickers        ores    
 
7230
965     238005  37      posed   transcontinental        Carleton        
 
7231
966     238006  37      instruments     amateurish      tape    A
 
7232
967     238007  37      filial  Gandhian        afloat  A
 
7233
968     238008  37      fixedly stratified      goodness        A
 
7234
969     238009  37      relives chamberlains    welcoming       
 
7235
970     238010  37      Pandora creditably      Pinsky  FAS
 
7236
971     238011  37      watering        philosophic     halting 
 
7237
972     238012  37      ungrateful      ores    bibliography    
 
7238
973     238013  37      secures Carleton        decoding        
 
7239
974     240401  41      chastisers      tape    variance        A
 
7240
975     240402  41      icon    afloat  allowed A
 
7241
976     240901  41      reuniting       goodness        dire    A
 
7242
977     240902  41      imagining       welcoming       dub     A
 
7243
978     241801  41      abiding Pinsky  poisoning       
 
7244
979     242101  41      omnisciently    halting Iraqis  A
 
7245
980     242102  41      Britannic       bibliography    heaving 
 
7246
981     242201  41      scholastics     decoding        population      A
 
7247
982     242202  41      mechanics       variance        bomb    A
 
7248
983     242501  41      humidly allowed Majorca A
 
7249
984     242502  41      masterpiece     dire    Gershwins       
 
7250
985     246201  41      however dub     explorers       
 
7251
986     246202  41      Mendelian       poisoning       libretto        A
 
7252
987     246203  41      jarred  Iraqis  occurred        
 
7253
988     246204  41      scolds  heaving Lagos   
 
7254
989     246205  41      infatuate       population      rats    
 
7255
990     246301  41      willed  bomb    bankruptcies    A
 
7256
991     246302  41      joyfully        Majorca crying  
 
7257
992     248001  41      Microsoft       Gershwins       unexpected      
 
7258
993     248002  41      fibrosities     explorers       accessed        A
 
7259
994     248003  41      Baltimorean     libretto        colorful        A
 
7260
995     248004  41      equestrian      occurred        versatility     A
 
7261
996     248005  41      Goodrich        Lagos   cosy    
 
7262
997     248006  41      apish   rats    Darius  A
 
7263
998     248007  41      Adlerian        bankruptcies    mastering       A
 
7264
999     248008  41      Tropez  crying  Asiaticizations A
 
7265
1000    248009  41      nouns   unexpected      offerers        A
 
7266
1001    248010  41      distracting     accessed        uncles  A
 
7267
1002    248011  41      mutton  colorful        sleepwalk       
 
7268
1003    248012  41      bridgeable      versatility     Ernestine       
 
7269
1004    248013  41      stickers        cosy    checksumming    
 
7270
1005    248014  41      transcontinental        Darius  stopped 
 
7271
1006    248015  41      amateurish      mastering       sicker  
 
7272
1007    248016  41      Gandhian        Asiaticizations Italianization  
 
7273
1008    248017  41      stratified      offerers        alphabetic      
 
7274
1009    248018  41      chamberlains    uncles  pharmaceutic    
 
7275
1010    248019  41      creditably      sleepwalk       creator 
 
7276
1011    248020  41      philosophic     Ernestine       chess   
 
7277
1012    248021  41      ores    checksumming    charcoal        
 
7278
1013    248101  41      Carleton        stopped Epiphany        A
 
7279
1014    248102  41      tape    sicker  bulldozes       A
 
7280
1015    248201  41      afloat  Italianization  Pygmalion       A
 
7281
1016    248202  41      goodness        alphabetic      caressing       A
 
7282
1017    248203  41      welcoming       pharmaceutic    Palestine       A
 
7283
1018    248204  41      Pinsky  creator regimented      A
 
7284
1019    248205  41      halting chess   scars   A
 
7285
1020    248206  41      bibliography    charcoal        realest A
 
7286
1021    248207  41      decoding        Epiphany        diffusing       A
 
7287
1022    248208  41      variance        bulldozes       clubroom        A
 
7288
1023    248209  41      allowed Pygmalion       Blythe  A
 
7289
1024    248210  41      dire    caressing       ahead   
 
7290
1025    248211  50      dub     Palestine       reviver 
 
7291
1026    250501  34      poisoning       regimented      retransmitting  A
 
7292
1027    250502  34      Iraqis  scars   landslide       
 
7293
1028    250503  34      heaving realest Eiffel  
 
7294
1029    250504  34      population      diffusing       absentee        
 
7295
1030    250505  34      bomb    clubroom        aye     
 
7296
1031    250601  34      Majorca Blythe  forked  A
 
7297
1032    250602  34      Gershwins       ahead   Peruvianizes    
 
7298
1033    250603  34      explorers       reviver clerked 
 
7299
1034    250604  34      libretto        retransmitting  tutor   
 
7300
1035    250605  34      occurred        landslide       boulevard       
 
7301
1036    251001  34      Lagos   Eiffel  shuttered       
 
7302
1037    251002  34      rats    absentee        quotes  A
 
7303
1038    251003  34      bankruptcies    aye     Caltech 
 
7304
1039    251004  34      crying  forked  Mossberg        
 
7305
1040    251005  34      unexpected      Peruvianizes    kept    
 
7306
1041    251301  34      accessed        clerked roundly 
 
7307
1042    251302  34      colorful        tutor   features        A
 
7308
1043    251303  34      versatility     boulevard       imaginable      A
 
7309
1044    251304  34      cosy    shuttered       controller      
 
7310
1045    251305  34      Darius  quotes  racial  
 
7311
1046    251401  34      mastering       Caltech uprisings       A
 
7312
1047    251402  34      Asiaticizations Mossberg        narrowed        A
 
7313
1048    251403  34      offerers        kept    cannot  A
 
7314
1049    251404  34      uncles  roundly vest    
 
7315
1050    251405  34      sleepwalk       features        famine  
 
7316
1051    251406  34      Ernestine       imaginable      sugars  
 
7317
1052    251801  34      checksumming    controller      exterminated    A
 
7318
1053    251802  34      stopped racial  belays  
 
7319
1054    252101  34      sicker  uprisings       Hodges  A
 
7320
1055    252102  34      Italianization  narrowed        translatable    
 
7321
1056    252301  34      alphabetic      cannot  duality A
 
7322
1057    252302  34      pharmaceutic    vest    recording       A
 
7323
1058    252303  34      creator famine  rouses  A
 
7324
1059    252304  34      chess   sugars  poison  
 
7325
1060    252305  34      charcoal        exterminated    attitude        
 
7326
1061    252306  34      Epiphany        belays  dusted  
 
7327
1062    252307  34      bulldozes       Hodges  encompasses     
 
7328
1063    252308  34      Pygmalion       translatable    presentation    
 
7329
1064    252309  34      caressing       duality Kantian 
 
7330
1065    256001  34      Palestine       recording       imprecision     A
 
7331
1066    256002  34      regimented      rouses  saving  
 
7332
1067    256003  34      scars   poison  maternal        
 
7333
1068    256004  34      realest attitude        hewed   
 
7334
1069    256005  34      diffusing       dusted  kerosene        
 
7335
1070    258001  34      clubroom        encompasses     Cubans  
 
7336
1071    258002  34      Blythe  presentation    photographers   
 
7337
1072    258003  34      ahead   Kantian nymph   A
 
7338
1073    258004  34      reviver imprecision     bedlam  A
 
7339
1074    258005  34      retransmitting  saving  north   A
 
7340
1075    258006  34      landslide       maternal        Schoenberg      A
 
7341
1076    258007  34      Eiffel  hewed   botany  A
 
7342
1077    258008  34      absentee        kerosene        curs    
 
7343
1078    258009  34      aye     Cubans  solidification  
 
7344
1079    258010  34      forked  photographers   inheritresses   
 
7345
1080    258011  34      Peruvianizes    nymph   stiller 
 
7346
1081    258101  68      clerked bedlam  t1      A
 
7347
1082    258102  68      tutor   north   suite   A
 
7348
1083    258103  34      boulevard       Schoenberg      ransomer        
 
7349
1084    258104  68      shuttered       botany  Willy   
 
7350
1085    258105  68      quotes  curs    Rena    A
 
7351
1086    258106  68      Caltech solidification  Seattle A
 
7352
1087    258107  68      Mossberg        inheritresses   relaxes A
 
7353
1088    258108  68      kept    stiller exclaim 
 
7354
1089    258109  68      roundly t1      implicated      A
 
7355
1090    258110  68      features        suite   distinguish     
 
7356
1091    258111  68      imaginable      ransomer        assayed 
 
7357
1092    258112  68      controller      Willy   homeowner       
 
7358
1093    258113  68      racial  Rena    and     
 
7359
1094    258201  34      uprisings       Seattle stealth 
 
7360
1095    258202  34      narrowed        relaxes coinciding      A
 
7361
1096    258203  34      cannot  exclaim founder A
 
7362
1097    258204  34      vest    implicated      environing      
 
7363
1098    258205  34      famine  distinguish     jewelry 
 
7364
1099    258301  34      sugars  assayed lemons  A
 
7365
1100    258401  34      exterminated    homeowner       brokenness      A
 
7366
1101    258402  34      belays  and     bedpost A
 
7367
1102    258403  34      Hodges  stealth assurers        A
 
7368
1103    258404  34      translatable    coinciding      annoyers        
 
7369
1104    258405  34      duality founder affixed 
 
7370
1105    258406  34      recording       environing      warbling        
 
7371
1106    258407  34      rouses  jewelry seriously       
 
7372
1107    228123  37      poison  lemons  boasted 
 
7373
1108    250606  34      attitude        brokenness      Chantilly       
 
7374
1109    208405  37      dusted  bedpost Iranizes        
 
7375
1110    212101  37      encompasses     assurers        violinist       
 
7376
1111    218206  37      presentation    annoyers        extramarital    
 
7377
1112    150401  37      Kantian affixed spates  
 
7378
1113    248212  41      imprecision     warbling        cloakroom       
 
7379
1114    128026  00      saving  seriously       gazer   
 
7380
1115    128024  00      maternal        boasted hand    
 
7381
1116    128027  00      hewed   Chantilly       tucked  
 
7382
1117    128025  00      kerosene        Iranizes        gems    
 
7383
1118    128109  00      Cubans  violinist       clinker 
 
7384
1119    128705  00      photographers   extramarital    refiner 
 
7385
1120    126303  00      nymph   spates  callus  
 
7386
1121    128308  00      bedlam  cloakroom       leopards        
 
7387
1122    128204  00      north   gazer   comfortingly    
 
7388
1123    128205  00      Schoenberg      hand    generically     
 
7389
1124    128206  00      botany  tucked  getters 
 
7390
1125    128207  00      curs    gems    sexually        
 
7391
1126    118205  00      solidification  clinker spear   
 
7392
1127    116801  00      inheritresses   refiner serums  
 
7393
1128    116803  00      stiller callus  Italianization  
 
7394
1129    116804  00      t1      leopards        attendants      
 
7395
1130    116802  00      suite   comfortingly    spies   
 
7396
1131    128605  00      ransomer        generically     Anthony 
 
7397
1132    118308  00      Willy   getters planar  
 
7398
1133    113702  00      Rena    sexually        cupped  
 
7399
1134    113703  00      Seattle spear   cleanser        
 
7400
1135    112103  00      relaxes serums  commuters       
 
7401
1136    118009  00      exclaim Italianization  honeysuckle     
 
7402
5136    1118009 00      exclaim Italianization  honeysuckle     
 
7403
1137    138011  00      implicated      attendants      orphanage       
 
7404
1138    138010  00      distinguish     spies   skies   
 
7405
1139    138012  00      assayed Anthony crushers        
 
7406
1140    068304  00      homeowner       planar  Puritan 
 
7407
1141    078009  00      and     cupped  squeezer        
 
7408
1142    108013  00      stealth cleanser        bruises 
 
7409
1143    084004  00      coinciding      commuters       bonfire 
 
7410
1144    083402  00      founder honeysuckle     Colombo 
 
7411
1145    084003  00      environing      orphanage       nondecreasing   
 
7412
1146    088504  00      jewelry skies   innocents       
 
7413
1147    088005  00      lemons  crushers        masked  
 
7414
1148    088007  00      brokenness      Puritan file    
 
7415
1149    088006  00      bedpost squeezer        brush   
 
7416
1150    148025  00      assurers        bruises mutilate        
 
7417
1151    148024  00      annoyers        bonfire mommy   
 
7418
1152    138305  00      affixed Colombo bulkheads       
 
7419
1153    138306  00      warbling        nondecreasing   undeclared      
 
7420
1154    152701  00      seriously       innocents       displacements   
 
7421
1155    148505  00      boasted masked  nieces  
 
7422
1156    158003  00      Chantilly       file    coeducation     
 
7423
1157    156201  00      Iranizes        brush   brassy  
 
7424
1158    156202  00      violinist       mutilate        authenticator   
 
7425
1159    158307  00      extramarital    mommy   Washoe  
 
7426
1160    158402  00      spates  bulkheads       penny   
 
7427
1161    158401  00      cloakroom       undeclared      Flagler 
 
7428
1162    068013  00      gazer   displacements   stoned  
 
7429
1163    068012  00      hand    nieces  cranes  
 
7430
1164    068203  00      tucked  coeducation     masterful       
 
7431
1165    088205  00      gems    brassy  biracial        
 
7432
1166    068704  00      clinker authenticator   steamships      
 
7433
1167    068604  00      refiner Washoe  windmills       
 
7434
1168    158502  00      callus  penny   exploit 
 
7435
1169    123103  00      leopards        Flagler riverfront      
 
7436
1170    148026  00      comfortingly    stoned  sisterly        
 
7437
1171    123302  00      generically     cranes  sharpshoot      
 
7438
1172    076503  00      getters masterful       mittens 
 
7439
1173    126304  00      sexually        biracial        interdependency 
 
7440
1174    068306  00      spear   steamships      policy  
 
7441
1175    143504  00      serums  windmills       unleashing      
 
7442
1176    160201  00      Italianization  exploit pretenders      
 
7443
1177    148028  00      attendants      riverfront      overstatements  
 
7444
1178    148027  00      spies   sisterly        birthed 
 
7445
1179    143505  00      Anthony sharpshoot      opportunism     
 
7446
1180    108014  00      planar  mittens showroom        
 
7447
1181    076104  00      cupped  interdependency compromisingly  
 
7448
1182    078106  00      cleanser        policy  Medicare        
 
7449
1183    126102  00      commuters       unleashing      corresponds     
 
7450
1184    128029  00      honeysuckle     pretenders      hardware        
 
7451
1185    128028  00      orphanage       overstatements  implant 
 
7452
1186    018410  00      skies   birthed Alicia  
 
7453
1187    128110  00      crushers        opportunism     requesting      
 
7454
1188    148506  00      Puritan showroom        produced        
 
7455
1189    123303  00      squeezer        compromisingly  criticizes      
 
7456
1190    123304  00      bruises Medicare        backer  
 
7457
1191    068504  00      bonfire corresponds     positively      
 
7458
1192    068305  00      Colombo hardware        colicky 
 
7459
1193    000000  00      nondecreasing   implant thrillingly     
 
7460
1       000001  00      Omaha   teethe  neat    
 
7461
2       011401  37      breaking        dreaded Steinberg       W
 
7462
3       011402  37      Romans  scholastics     jarring 
 
7463
4       011403  37      intercepted     audiology       tinily  
 
7464
2       011401  37      breaking        dreaded Steinberg       W
 
7465
3       011402  37      Romans  scholastics     jarring 
 
7466
4       011403  37      intercepted     audiology       tinily  
 
7467
1       000001  00      Omaha   teethe  neat    
 
7468
2       011401  37      breaking        dreaded Steinberg       W
 
7469
3       011402  37      Romans  scholastics     jarring 
 
7470
4       011403  37      intercepted     audiology       tinily  
 
7471
INSERT INTO t2 VALUES (2,011401,37,'breaking','dreaded','Steinberg','W');
 
7472
INSERT INTO t2 VALUES (3,011402,37,'Romans','scholastics','jarring','');
 
7473
INSERT INTO t2 VALUES (4,011403,37,'intercepted','audiology','tinily','');
 
7474
SELECT * FROM t2;
 
7475
auto    fld1    companynr       fld3    fld4    fld5    fld6
 
7476
1       000001  00      Omaha   teethe  neat    
 
7477
2       011401  37      breaking        dreaded Steinberg       W
 
7478
3       011402  37      Romans  scholastics     jarring 
 
7479
4       011403  37      intercepted     audiology       tinily  
 
7480
5       011501  37      bewilderingly   wallet  balled  
 
7481
6       011701  37      astound parters persist W
 
7482
7       011702  37      admonishing     eschew  attainments     
 
7483
8       011703  37      sumac   quitter fanatic 
 
7484
9       012001  37      flanking        neat    measures        FAS
 
7485
10      012003  37      combed  Steinberg       rightfulness    
 
7486
11      012004  37      subjective      jarring capably 
 
7487
12      012005  37      scatterbrain    tinily  impulsive       
 
7488
13      012301  37      Eulerian        balled  starlet 
 
7489
14      012302  36      dubbed  persist terminators     
 
7490
15      012303  37      Kane    attainments     untying 
 
7491
16      012304  37      overlay fanatic announces       FAS
 
7492
17      012305  37      perturb measures        featherweight   FAS
 
7493
18      012306  37      goblins rightfulness    pessimist       FAS
 
7494
19      012501  37      annihilates     capably daughter        
 
7495
20      012602  37      Wotan   impulsive       decliner        FAS
 
7496
21      012603  37      snatching       starlet lawgiver        
 
7497
22      012604  37      concludes       terminators     stated  
 
7498
23      012605  37      laterally       untying readable        
 
7499
24      012606  37      yelped  announces       attrition       
 
7500
25      012701  37      grazing featherweight   cascade FAS
 
7501
26      012702  37      Baird   pessimist       motors  FAS
 
7502
27      012703  37      celery  daughter        interrogate     
 
7503
28      012704  37      misunderstander decliner        pests   W
 
7504
29      013601  37      handgun lawgiver        stairway        
 
7505
30      013602  37      foldout stated  dopers  FAS
 
7506
31      013603  37      mystic  readable        testicle        W
 
7507
32      013604  37      succumbed       attrition       Parsifal        W
 
7508
33      013605  37      Nabisco cascade leavings        
 
7509
34      013606  37      fingerings      motors  postulation     W
 
7510
35      013607  37      aging   interrogate     squeaking       
 
7511
36      013608  37      afield  pests   contrasted      
 
7512
37      013609  37      ammonium        stairway        leftover        
 
7513
38      013610  37      boat    dopers  whiteners       
 
7514
39      013801  37      intelligibility testicle        erases  W
 
7515
40      013802  37      Augustine       Parsifal        Punjab  W
 
7516
41      013803  37      teethe  leavings        Merritt 
 
7517
42      013804  37      dreaded postulation     Quixotism       
 
7518
43      013901  37      scholastics     squeaking       sweetish        FAS
 
7519
44      016001  37      audiology       contrasted      dogging FAS
 
7520
45      016201  37      wallet  leftover        scornfully      FAS
 
7521
46      016202  37      parters whiteners       bellow  
 
7522
47      016301  37      eschew  erases  bills   
 
7523
48      016302  37      quitter Punjab  cupboard        FAS
 
7524
49      016303  37      neat    Merritt sureties        FAS
 
7525
50      016304  37      Steinberg       Quixotism       puddings        
 
7526
51      018001  37      jarring sweetish        tapestry        
 
7527
52      018002  37      tinily  dogging fetters 
 
7528
53      018003  37      balled  scornfully      bivalves        
 
7529
54      018004  37      persist bellow  incurring       
 
7530
55      018005  37      attainments     bills   Adolph  
 
7531
56      018007  37      fanatic cupboard        pithed  
 
7532
57      018008  37      measures        sureties        emergency       
 
7533
58      018009  37      rightfulness    puddings        Miles   
 
7534
59      018010  37      capably tapestry        trimmings       
 
7535
60      018012  37      impulsive       fetters tragedies       W
 
7536
61      018013  37      starlet bivalves        skulking        W
 
7537
62      018014  37      terminators     incurring       flint   
 
7538
63      018015  37      untying Adolph  flopping        W
 
7539
64      018016  37      announces       pithed  relaxing        FAS
 
7540
65      018017  37      featherweight   emergency       offload FAS
 
7541
66      018018  37      pessimist       Miles   suites  W
 
7542
67      018019  37      daughter        trimmings       lists   FAS
 
7543
68      018020  37      decliner        tragedies       animized        FAS
 
7544
69      018021  37      lawgiver        skulking        multilayer      W
 
7545
70      018022  37      stated  flint   standardizes    FAS
 
7546
71      018023  37      readable        flopping        Judas   
 
7547
72      018024  37      attrition       relaxing        vacuuming       W
 
7548
73      018025  37      cascade offload dentally        W
 
7549
74      018026  37      motors  suites  humanness       W
 
7550
75      018027  37      interrogate     lists   inch    W
 
7551
76      018028  37      pests   animized        Weissmuller     W
 
7552
77      018029  37      stairway        multilayer      irresponsibly   W
 
7553
78      018030  37      dopers  standardizes    luckily FAS
 
7554
79      018032  37      testicle        Judas   culled  W
 
7555
80      018033  37      Parsifal        vacuuming       medical FAS
 
7556
81      018034  37      leavings        dentally        bloodbath       FAS
 
7557
82      018035  37      postulation     humanness       subschema       W
 
7558
83      018036  37      squeaking       inch    animals W
 
7559
84      018037  37      contrasted      Weissmuller     Micronesia      
 
7560
85      018038  37      leftover        irresponsibly   repetitions     
 
7561
86      018039  37      whiteners       luckily Antares 
 
7562
87      018040  37      erases  culled  ventilate       W
 
7563
88      018041  37      Punjab  medical pityingly       
 
7564
89      018042  37      Merritt bloodbath       interdependent  
 
7565
90      018043  37      Quixotism       subschema       Graves  FAS
 
7566
91      018044  37      sweetish        animals neonatal        
 
7567
92      018045  37      dogging Micronesia      scribbled       FAS
 
7568
93      018046  37      scornfully      repetitions     chafe   W
 
7569
94      018048  37      bellow  Antares honoring        
 
7570
95      018049  37      bills   ventilate       realtor 
 
7571
96      018050  37      cupboard        pityingly       elite   
 
7572
97      018051  37      sureties        interdependent  funereal        
 
7573
98      018052  37      puddings        Graves  abrogating      
 
7574
99      018053  50      tapestry        neonatal        sorters 
 
7575
100     018054  37      fetters scribbled       Conley  
 
7576
101     018055  37      bivalves        chafe   lectured        
 
7577
102     018056  37      incurring       honoring        Abraham 
 
7578
103     018057  37      Adolph  realtor Hawaii  W
 
7579
104     018058  37      pithed  elite   cage    
 
7580
105     018059  36      emergency       funereal        hushes  
 
7581
106     018060  37      Miles   abrogating      Simla   
 
7582
107     018061  37      trimmings       sorters reporters       
 
7583
108     018101  37      tragedies       Conley  Dutchman        FAS
 
7584
109     018102  37      skulking        lectured        descendants     FAS
 
7585
110     018103  37      flint   Abraham groupings       FAS
 
7586
111     018104  37      flopping        Hawaii  dissociate      
 
7587
112     018201  37      relaxing        cage    coexist W
 
7588
113     018202  37      offload hushes  Beebe   
 
7589
114     018402  37      suites  Simla   Taoism  
 
7590
115     018403  37      lists   reporters       Connally        
 
7591
116     018404  37      animized        Dutchman        fetched FAS
 
7592
117     018405  37      multilayer      descendants     checkpoints     FAS
 
7593
118     018406  37      standardizes    groupings       rusting 
 
7594
119     018409  37      Judas   dissociate      galling 
 
7595
120     018601  37      vacuuming       coexist obliterates     
 
7596
121     018602  37      dentally        Beebe   traitor 
 
7597
122     018603  37      humanness       Taoism  resumes FAS
 
7598
123     018801  37      inch    Connally        analyzable      FAS
 
7599
124     018802  37      Weissmuller     fetched terminator      FAS
 
7600
125     018803  37      irresponsibly   checkpoints     gritty  FAS
 
7601
126     018804  37      luckily rusting firearm W
 
7602
127     018805  37      culled  galling minima  
 
7603
128     018806  37      medical obliterates     Selfridge       
 
7604
129     018807  37      bloodbath       traitor disable 
 
7605
130     018808  37      subschema       resumes witchcraft      W
 
7606
131     018809  37      animals analyzable      betroth W
 
7607
132     018810  37      Micronesia      terminator      Manhattanize    
 
7608
133     018811  37      repetitions     gritty  imprint 
 
7609
134     018812  37      Antares firearm peeked  
 
7610
135     019101  37      ventilate       minima  swelling        
 
7611
136     019102  37      pityingly       Selfridge       interrelationships      W
 
7612
137     019103  37      interdependent  disable riser   
 
7613
138     019201  37      Graves  witchcraft      Gandhian        W
 
7614
139     030501  37      neonatal        betroth peacock A
 
7615
140     030502  50      scribbled       Manhattanize    bee     A
 
7616
141     030503  37      chafe   imprint kanji   
 
7617
142     030504  37      honoring        peeked  dental  
 
7618
143     031901  37      realtor swelling        scarf   FAS
 
7619
144     036001  37      elite   interrelationships      chasm   A
 
7620
145     036002  37      funereal        riser   insolence       A
 
7621
146     036004  37      abrogating      Gandhian        syndicate       
 
7622
147     036005  37      sorters peacock alike   
 
7623
148     038001  37      Conley  bee     imperial        A
 
7624
149     038002  37      lectured        kanji   convulsion      A
 
7625
150     038003  37      Abraham dental  railway A
 
7626
151     038004  37      Hawaii  scarf   validate        A
 
7627
152     038005  37      cage    chasm   normalizes      A
 
7628
153     038006  37      hushes  insolence       comprehensive   
 
7629
154     038007  37      Simla   syndicate       chewing 
 
7630
155     038008  37      reporters       alike   denizen 
 
7631
156     038009  37      Dutchman        imperial        schemer 
 
7632
157     038010  37      descendants     convulsion      chronicle       
 
7633
158     038011  37      groupings       railway Kline   
 
7634
159     038012  37      dissociate      validate        Anatole 
 
7635
160     038013  37      coexist normalizes      partridges      
 
7636
161     038014  37      Beebe   comprehensive   brunch  
 
7637
162     038015  37      Taoism  chewing recruited       
 
7638
163     038016  37      Connally        denizen dimensions      W
 
7639
164     038017  37      fetched schemer Chicana W
 
7640
165     038018  37      checkpoints     chronicle       announced       
 
7641
166     038101  37      rusting Kline   praised FAS
 
7642
167     038102  37      galling Anatole employing       
 
7643
168     038103  37      obliterates     partridges      linear  
 
7644
169     038104  37      traitor brunch  quagmire        
 
7645
170     038201  37      resumes recruited       western A
 
7646
171     038202  37      analyzable      dimensions      relishing       
 
7647
172     038203  37      terminator      Chicana serving A
 
7648
173     038204  37      gritty  announced       scheduling      
 
7649
174     038205  37      firearm praised lore    
 
7650
175     038206  37      minima  employing       eventful        
 
7651
176     038208  37      Selfridge       linear  arteriole       A
 
7652
177     042801  37      disable quagmire        disentangle     
 
7653
178     042802  37      witchcraft      western cured   A
 
7654
179     046101  37      betroth relishing       Fenton  W
 
7655
180     048001  37      Manhattanize    serving avoidable       A
 
7656
181     048002  37      imprint scheduling      drains  A
 
7657
182     048003  37      peeked  lore    detectably      FAS
 
7658
183     048004  37      swelling        eventful        husky   
 
7659
184     048005  37      interrelationships      arteriole       impelling       
 
7660
185     048006  37      riser   disentangle     undoes  
 
7661
186     048007  37      Gandhian        cured   evened  
 
7662
187     048008  37      peacock Fenton  squeezes        
 
7663
188     048101  37      bee     avoidable       destroyer       FAS
 
7664
189     048102  37      kanji   drains  rudeness        
 
7665
190     048201  37      dental  detectably      beaner  FAS
 
7666
191     048202  37      scarf   husky   boorish 
 
7667
192     048203  37      chasm   impelling       Everhart        
 
7668
193     048204  37      insolence       undoes  encompass       A
 
7669
194     048205  37      syndicate       evened  mushrooms       
 
7670
195     048301  37      alike   squeezes        Alison  A
 
7671
196     048302  37      imperial        destroyer       externally      FAS
 
7672
197     048303  37      convulsion      rudeness        pellagra        
 
7673
198     048304  37      railway beaner  cult    
 
7674
199     048305  37      validate        boorish creek   A
 
7675
200     048401  37      normalizes      Everhart        Huffman 
 
7676
201     048402  37      comprehensive   encompass       Majorca FAS
 
7677
202     048403  37      chewing mushrooms       governing       A
 
7678
203     048404  37      denizen Alison  gadfly  FAS
 
7679
204     048405  37      schemer externally      reassigned      FAS
 
7680
205     048406  37      chronicle       pellagra        intentness      W
 
7681
206     048407  37      Kline   cult    craziness       
 
7682
207     048408  37      Anatole creek   psychic 
 
7683
208     048409  37      partridges      Huffman squabbled       
 
7684
209     048410  37      brunch  Majorca burlesque       
 
7685
210     048411  37      recruited       governing       capped  
 
7686
211     048412  37      dimensions      gadfly  extracted       A
 
7687
212     048413  37      Chicana reassigned      DiMaggio        
 
7688
213     048601  37      announced       intentness      exclamation     FAS
 
7689
214     048602  37      praised craziness       subdirectory    
 
7690
215     048603  37      employing       psychic fangs   
 
7691
216     048604  37      linear  squabbled       buyer   A
 
7692
217     048801  37      quagmire        burlesque       pithing A
 
7693
218     050901  37      western capped  transistorizing A
 
7694
219     051201  37      relishing       extracted       nonbiodegradable        
 
7695
220     056002  37      serving DiMaggio        dislocate       
 
7696
221     056003  37      scheduling      exclamation     monochromatic   FAS
 
7697
222     056004  37      lore    subdirectory    batting 
 
7698
223     056102  37      eventful        fangs   postcondition   A
 
7699
224     056203  37      arteriole       buyer   catalog FAS
 
7700
225     056204  37      disentangle     pithing Remus   
 
7701
226     058003  37      cured   transistorizing devices A
 
7702
227     058004  37      Fenton  nonbiodegradable        bike    A
 
7703
228     058005  37      avoidable       dislocate       qualify 
 
7704
229     058006  37      drains  monochromatic   detained        
 
7705
230     058007  37      detectably      batting commended       
 
7706
231     058101  37      husky   postcondition   civilize        
 
7707
232     058102  37      impelling       catalog Elmhurst        
 
7708
233     058103  37      undoes  Remus   anesthetizing   
 
7709
234     058105  37      evened  devices deaf    
 
7710
235     058111  37      squeezes        bike    Brigham 
 
7711
236     058112  37      destroyer       qualify title   
 
7712
237     058113  37      rudeness        detained        coarse  
 
7713
238     058114  37      beaner  commended       combinations    
 
7714
239     058115  37      boorish civilize        grayness        
 
7715
240     058116  37      Everhart        Elmhurst        innumerable     FAS
 
7716
241     058117  37      encompass       anesthetizing   Caroline        A
 
7717
242     058118  37      mushrooms       deaf    fatty   FAS
 
7718
243     058119  37      Alison  Brigham eastbound       
 
7719
244     058120  37      externally      title   inexperienced   
 
7720
245     058121  37      pellagra        coarse  hoarder A
 
7721
246     058122  37      cult    combinations    scotch  W
 
7722
247     058123  37      creek   grayness        passport        A
 
7723
248     058124  37      Huffman innumerable     strategic       FAS
 
7724
249     058125  37      Majorca Caroline        gated   
 
7725
250     058126  37      governing       fatty   flog    
 
7726
251     058127  37      gadfly  eastbound       Pipestone       
 
7727
252     058128  37      reassigned      inexperienced   Dar     
 
7728
253     058201  37      intentness      hoarder Corcoran        
 
7729
254     058202  37      craziness       scotch  flyers  A
 
7730
255     058303  37      psychic passport        competitions    W
 
7731
256     058304  37      squabbled       strategic       suppliers       FAS
 
7732
257     058602  37      burlesque       gated   skips   
 
7733
258     058603  37      capped  flog    institutes      
 
7734
259     058604  37      extracted       Pipestone       troop   A
 
7735
260     058605  37      DiMaggio        Dar     connective      W
 
7736
261     058606  37      exclamation     Corcoran        denies  
 
7737
262     058607  37      subdirectory    flyers  polka   
 
7738
263     060401  36      fangs   competitions    observations    FAS
 
7739
264     061701  36      buyer   suppliers       askers  
 
7740
265     066201  36      pithing skips   homeless        FAS
 
7741
266     066501  36      transistorizing institutes      Anna    
 
7742
267     068001  36      nonbiodegradable        troop   subdirectories  W
 
7743
268     068002  36      dislocate       connective      decaying        FAS
 
7744
269     068005  36      monochromatic   denies  outwitting      W
 
7745
270     068006  36      batting polka   Harpy   W
 
7746
271     068007  36      postcondition   observations    crazed  
 
7747
272     068008  36      catalog askers  suffocate       
 
7748
273     068009  36      Remus   homeless        provers FAS
 
7749
274     068010  36      devices Anna    technically     
 
7750
275     068011  36      bike    subdirectories  Franklinizations        
 
7751
276     068202  36      qualify decaying        considered      
 
7752
277     068302  36      detained        outwitting      tinnily 
 
7753
278     068303  36      commended       Harpy   uninterruptedly 
 
7754
279     068401  36      civilize        crazed  whistled        A
 
7755
280     068501  36      Elmhurst        suffocate       automate        
 
7756
281     068502  36      anesthetizing   provers gutting W
 
7757
282     068503  36      deaf    technically     surreptitious   
 
7758
283     068602  36      Brigham Franklinizations        Choctaw 
 
7759
284     068603  36      title   considered      cooks   
 
7760
285     068701  36      coarse  tinnily millivolt       FAS
 
7761
286     068702  36      combinations    uninterruptedly counterpoise    
 
7762
287     068703  36      grayness        whistled        Gothicism       
 
7763
288     076001  36      innumerable     automate        feminine        
 
7764
289     076002  36      Caroline        gutting metaphysically  W
 
7765
290     076101  36      fatty   surreptitious   sanding A
 
7766
291     076102  36      eastbound       Choctaw contributorily  
 
7767
292     076103  36      inexperienced   cooks   receivers       FAS
 
7768
293     076302  36      hoarder millivolt       adjourn 
 
7769
294     076303  36      scotch  counterpoise    straggled       A
 
7770
295     076304  36      passport        Gothicism       druggists       
 
7771
296     076305  36      strategic       feminine        thanking        FAS
 
7772
297     076306  36      gated   metaphysically  ostrich 
 
7773
298     076307  36      flog    sanding hopelessness    FAS
 
7774
299     076402  36      Pipestone       contributorily  Eurydice        
 
7775
300     076501  36      Dar     receivers       excitation      W
 
7776
301     076502  36      Corcoran        adjourn presumes        FAS
 
7777
302     076701  36      flyers  straggled       imaginable      FAS
 
7778
303     078001  36      competitions    druggists       concoct W
 
7779
304     078002  36      suppliers       thanking        peering W
 
7780
305     078003  36      skips   ostrich Phelps  FAS
 
7781
306     078004  36      institutes      hopelessness    ferociousness   FAS
 
7782
307     078005  36      troop   Eurydice        sentences       
 
7783
308     078006  36      connective      excitation      unlocks 
 
7784
309     078007  36      denies  presumes        engrossing      W
 
7785
310     078008  36      polka   imaginable      Ruth    
 
7786
311     078101  36      observations    concoct tying   
 
7787
312     078103  36      askers  peering exclaimers      
 
7788
313     078104  36      homeless        Phelps  synergy 
 
7789
314     078105  36      Anna    ferociousness   Huey    W
 
7790
315     082101  36      subdirectories  sentences       merging 
 
7791
316     083401  36      decaying        unlocks judges  A
 
7792
317     084001  36      outwitting      engrossing      Shylock W
 
7793
318     084002  36      Harpy   Ruth    Miltonism       
 
7794
319     086001  36      crazed  tying   hen     W
 
7795
320     086102  36      suffocate       exclaimers      honeybee        FAS
 
7796
321     086201  36      provers synergy towers  
 
7797
322     088001  36      technically     Huey    dilutes W
 
7798
323     088002  36      Franklinizations        merging numerals        FAS
 
7799
324     088003  36      considered      judges  democracy       FAS
 
7800
325     088004  36      tinnily Shylock Ibero-  
 
7801
326     088101  36      uninterruptedly Miltonism       invalids        
 
7802
327     088102  36      whistled        hen     behavior        
 
7803
328     088103  36      automate        honeybee        accruing        
 
7804
329     088104  36      gutting towers  relics  A
 
7805
330     088105  36      surreptitious   dilutes rackets 
 
7806
331     088106  36      Choctaw numerals        Fischbein       W
 
7807
332     088201  36      cooks   democracy       phony   W
 
7808
333     088203  36      millivolt       Ibero-  cross   FAS
 
7809
334     088204  36      counterpoise    invalids        cleanup 
 
7810
335     088302  37      Gothicism       behavior        conspirator     
 
7811
336     088303  37      feminine        accruing        label   FAS
 
7812
337     088305  37      metaphysically  relics  university      
 
7813
338     088402  37      sanding rackets cleansed        FAS
 
7814
339     088501  36      contributorily  Fischbein       ballgown        
 
7815
340     088502  36      receivers       phony   starlet 
 
7816
341     088503  36      adjourn cross   aqueous 
 
7817
342     098001  58      straggled       cleanup portrayal       A
 
7818
343     098002  58      druggists       conspirator     despising       W
 
7819
344     098003  58      thanking        label   distort W
 
7820
345     098004  58      ostrich university      palmed  
 
7821
346     098005  58      hopelessness    cleansed        faced   
 
7822
347     098006  58      Eurydice        ballgown        silverware      
 
7823
348     141903  29      excitation      starlet assessor        
 
7824
349     098008  58      presumes        aqueous spiders 
 
7825
350     098009  58      imaginable      portrayal       artificially    
 
7826
351     098010  58      concoct despising       reminiscence    
 
7827
352     098011  58      peering distort Mexican 
 
7828
353     098012  58      Phelps  palmed  obnoxious       
 
7829
354     098013  58      ferociousness   faced   fragile 
 
7830
355     098014  58      sentences       silverware      apprehensible   
 
7831
356     098015  58      unlocks assessor        births  
 
7832
357     098016  58      engrossing      spiders garages 
 
7833
358     098017  58      Ruth    artificially    panty   
 
7834
359     098018  58      tying   reminiscence    anteater        
 
7835
360     098019  58      exclaimers      Mexican displacement    A
 
7836
361     098020  58      synergy obnoxious       drovers A
 
7837
362     098021  58      Huey    fragile patenting       A
 
7838
363     098022  58      merging apprehensible   far     A
 
7839
364     098023  58      judges  births  shrieks 
 
7840
365     098024  58      Shylock garages aligning        W
 
7841
366     098025  37      Miltonism       panty   pragmatism      
 
7842
367     106001  36      hen     anteater        fevers  W
 
7843
368     108001  36      honeybee        displacement    reexamines      A
 
7844
369     108002  36      towers  drovers occupancies     
 
7845
370     108003  36      dilutes patenting       sweats  FAS
 
7846
371     108004  36      numerals        far     modulators      
 
7847
372     108005  36      democracy       shrieks demand  W
 
7848
373     108007  36      Ibero-  aligning        Madeira 
 
7849
374     108008  36      invalids        pragmatism      Viennese        W
 
7850
375     108009  36      behavior        fevers  chillier        W
 
7851
376     108010  36      accruing        reexamines      wildcats        FAS
 
7852
377     108011  36      relics  occupancies     gentle  
 
7853
378     108012  36      rackets sweats  Angles  W
 
7854
379     108101  36      Fischbein       modulators      accuracies      
 
7855
380     108102  36      phony   demand  toggle  
 
7856
381     108103  36      cross   Madeira Mendelssohn     W
 
7857
382     108111  50      cleanup Viennese        behaviorally    
 
7858
383     108105  36      conspirator     chillier        Rochford        
 
7859
384     108106  36      label   wildcats        mirror  W
 
7860
385     108107  36      university      gentle  Modula  
 
7861
386     108108  50      cleansed        Angles  clobbering      
 
7862
387     108109  36      ballgown        accuracies      chronography    
 
7863
388     108110  36      starlet toggle  Eskimoizeds     
 
7864
389     108201  36      aqueous Mendelssohn     British W
 
7865
390     108202  36      portrayal       behaviorally    pitfalls        
 
7866
391     108203  36      despising       Rochford        verify  W
 
7867
392     108204  36      distort mirror  scatter FAS
 
7868
393     108205  36      palmed  Modula  Aztecan 
 
7869
394     108301  36      faced   clobbering      acuity  W
 
7870
395     108302  36      silverware      chronography    sinking W
 
7871
396     112101  36      assessor        Eskimoizeds     beasts  FAS
 
7872
397     112102  36      spiders British Witt    W
 
7873
398     113701  36      artificially    pitfalls        physicists      FAS
 
7874
399     116001  36      reminiscence    verify  folksong        A
 
7875
400     116201  36      Mexican scatter strokes FAS
 
7876
401     116301  36      obnoxious       Aztecan crowder 
 
7877
402     116302  36      fragile acuity  merry   
 
7878
403     116601  36      apprehensible   sinking cadenced        
 
7879
404     116602  36      births  beasts  alimony A
 
7880
405     116603  36      garages Witt    principled      A
 
7881
406     116701  36      panty   physicists      golfing 
 
7882
407     116702  36      anteater        folksong        undiscovered    
 
7883
408     118001  36      displacement    strokes irritates       
 
7884
409     118002  36      drovers crowder patriots        A
 
7885
410     118003  36      patenting       merry   rooms   FAS
 
7886
411     118004  36      far     cadenced        towering        W
 
7887
412     118005  36      shrieks alimony displease       
 
7888
413     118006  36      aligning        principled      photosensitive  
 
7889
414     118007  36      pragmatism      golfing inking  
 
7890
415     118008  36      fevers  undiscovered    gainers 
 
7891
416     118101  36      reexamines      irritates       leaning A
 
7892
417     118102  36      occupancies     patriots        hydrant A
 
7893
418     118103  36      sweats  rooms   preserve        
 
7894
419     118202  36      modulators      towering        blinded A
 
7895
420     118203  36      demand  displease       interactions    A
 
7896
421     118204  36      Madeira photosensitive  Barry   
 
7897
422     118302  36      Viennese        inking  whiteness       A
 
7898
423     118304  36      chillier        gainers pastimes        W
 
7899
424     118305  36      wildcats        leaning Edenization     
 
7900
425     118306  36      gentle  hydrant Muscat  
 
7901
426     118307  36      Angles  preserve        assassinated    
 
7902
427     123101  36      accuracies      blinded labeled 
 
7903
428     123102  36      toggle  interactions    glacial A
 
7904
429     123301  36      Mendelssohn     Barry   implied W
 
7905
430     126001  36      behaviorally    whiteness       bibliographies  W
 
7906
431     126002  36      Rochford        pastimes        Buchanan        
 
7907
432     126003  36      mirror  Edenization     forgivably      FAS
 
7908
433     126101  36      Modula  Muscat  innuendo        A
 
7909
434     126301  36      clobbering      assassinated    den     FAS
 
7910
435     126302  36      chronography    labeled submarines      W
 
7911
436     126402  36      Eskimoizeds     glacial mouthful        A
 
7912
437     126601  36      British implied expiring        
 
7913
438     126602  36      pitfalls        bibliographies  unfulfilled     FAS
 
7914
439     126702  36      verify  Buchanan        precession      
 
7915
440     128001  36      scatter forgivably      nullified       
 
7916
441     128002  36      Aztecan innuendo        affects 
 
7917
442     128003  36      acuity  den     Cynthia 
 
7918
443     128004  36      sinking submarines      Chablis A
 
7919
444     128005  36      beasts  mouthful        betterments     FAS
 
7920
445     128007  36      Witt    expiring        advertising     
 
7921
446     128008  36      physicists      unfulfilled     rubies  A
 
7922
447     128009  36      folksong        precession      southwest       FAS
 
7923
448     128010  36      strokes nullified       superstitious   A
 
7924
449     128011  36      crowder affects tabernacle      W
 
7925
450     128012  36      merry   Cynthia silk    A
 
7926
451     128013  36      cadenced        Chablis handsomest      A
 
7927
452     128014  36      alimony betterments     Persian A
 
7928
453     128015  36      principled      advertising     analog  W
 
7929
454     128016  36      golfing rubies  complex W
 
7930
455     128017  36      undiscovered    southwest       Taoist  
 
7931
456     128018  36      irritates       superstitious   suspend 
 
7932
457     128019  36      patriots        tabernacle      relegated       
 
7933
458     128020  36      rooms   silk    awesome W
 
7934
459     128021  36      towering        handsomest      Bruxelles       
 
7935
460     128022  36      displease       Persian imprecisely     A
 
7936
461     128023  36      photosensitive  analog  televise        
 
7937
462     128101  36      inking  complex braking 
 
7938
463     128102  36      gainers Taoist  true    FAS
 
7939
464     128103  36      leaning suspend disappointing   FAS
 
7940
465     128104  36      hydrant relegated       navally W
 
7941
466     128106  36      preserve        awesome circus  
 
7942
467     128107  36      blinded Bruxelles       beetles 
 
7943
468     128108  36      interactions    imprecisely     trumps  
 
7944
469     128202  36      Barry   televise        fourscore       W
 
7945
470     128203  36      whiteness       braking Blackfoots      
 
7946
471     128301  36      pastimes        true    Grady   
 
7947
472     128302  36      Edenization     disappointing   quiets  FAS
 
7948
473     128303  36      Muscat  navally floundered      FAS
 
7949
474     128304  36      assassinated    circus  profundity      W
 
7950
475     128305  36      labeled beetles Garrisonian     W
 
7951
476     128307  36      glacial trumps  Strauss 
 
7952
477     128401  36      implied fourscore       cemented        FAS
 
7953
478     128502  36      bibliographies  Blackfoots      contrition      A
 
7954
479     128503  36      Buchanan        Grady   mutations       
 
7955
480     128504  36      forgivably      quiets  exhibits        W
 
7956
481     128505  36      innuendo        floundered      tits    
 
7957
482     128601  36      den     profundity      mate    A
 
7958
483     128603  36      submarines      Garrisonian     arches  
 
7959
484     128604  36      mouthful        Strauss Moll    
 
7960
485     128702  36      expiring        cemented        ropers  
 
7961
486     128703  36      unfulfilled     contrition      bombast 
 
7962
487     128704  36      precession      mutations       difficultly     A
 
7963
488     138001  36      nullified       exhibits        adsorption      
 
7964
489     138002  36      affects tits    definiteness    FAS
 
7965
490     138003  36      Cynthia mate    cultivation     A
 
7966
491     138004  36      Chablis arches  heals   A
 
7967
492     138005  36      betterments     Moll    Heusen  W
 
7968
493     138006  36      advertising     ropers  target  FAS
 
7969
494     138007  36      rubies  bombast cited   A
 
7970
495     138008  36      southwest       difficultly     congresswoman   W
 
7971
496     138009  36      superstitious   adsorption      Katherine       
 
7972
497     138102  36      tabernacle      definiteness    titter  A
 
7973
498     138103  36      silk    cultivation     aspire  A
 
7974
499     138104  36      handsomest      heals   Mardis  
 
7975
500     138105  36      Persian Heusen  Nadia   W
 
7976
501     138201  36      analog  target  estimating      FAS
 
7977
502     138302  36      complex cited   stuck   A
 
7978
503     138303  36      Taoist  congresswoman   fifteenth       A
 
7979
504     138304  36      suspend Katherine       Colombo 
 
7980
505     138401  29      relegated       titter  survey  A
 
7981
506     140102  29      awesome aspire  staffing        
 
7982
507     140103  29      Bruxelles       Mardis  obtain  
 
7983
508     140104  29      imprecisely     Nadia   loaded  
 
7984
509     140105  29      televise        estimating      slaughtered     
 
7985
510     140201  29      braking stuck   lights  A
 
7986
511     140701  29      true    fifteenth       circumference   
 
7987
512     141501  29      disappointing   Colombo dull    A
 
7988
513     141502  29      navally survey  weekly  A
 
7989
514     141901  29      circus  staffing        wetness 
 
7990
515     141902  29      beetles obtain  visualized      
 
7991
516     142101  29      trumps  loaded  Tannenbaum      
 
7992
517     142102  29      fourscore       slaughtered     moribund        
 
7993
518     142103  29      Blackfoots      lights  demultiplex     
 
7994
519     142701  29      Grady   circumference   lockings        
 
7995
520     143001  29      quiets  dull    thugs   FAS
 
7996
521     143501  29      floundered      weekly  unnerves        
 
7997
522     143502  29      profundity      wetness abut    
 
7998
523     148001  29      Garrisonian     visualized      Chippewa        A
 
7999
524     148002  29      Strauss Tannenbaum      stratifications A
 
8000
525     148003  29      cemented        moribund        signaled        
 
8001
526     148004  29      contrition      demultiplex     Italianizes     A
 
8002
527     148005  29      mutations       lockings        algorithmic     A
 
8003
528     148006  29      exhibits        thugs   paranoid        FAS
 
8004
529     148007  29      tits    unnerves        camping A
 
8005
530     148009  29      mate    abut    signifying      A
 
8006
531     148010  29      arches  Chippewa        Patrice W
 
8007
532     148011  29      Moll    stratifications search  A
 
8008
533     148012  29      ropers  signaled        Angeles A
 
8009
534     148013  29      bombast Italianizes     semblance       
 
8010
535     148023  36      difficultly     algorithmic     taxed   
 
8011
536     148015  29      adsorption      paranoid        Beatrice        
 
8012
537     148016  29      definiteness    camping retrace 
 
8013
538     148017  29      cultivation     signifying      lockout 
 
8014
539     148018  29      heals   Patrice grammatic       
 
8015
540     148019  29      Heusen  search  helmsman        
 
8016
541     148020  29      target  Angeles uniform W
 
8017
542     148021  29      cited   semblance       hamming 
 
8018
543     148022  29      congresswoman   taxed   disobedience    
 
8019
544     148101  29      Katherine       Beatrice        captivated      A
 
8020
545     148102  29      titter  retrace transferals     A
 
8021
546     148201  29      aspire  lockout cartographer    A
 
8022
547     148401  29      Mardis  grammatic       aims    FAS
 
8023
548     148402  29      Nadia   helmsman        Pakistani       
 
8024
549     148501  29      estimating      uniform burglarized     FAS
 
8025
550     148502  29      stuck   hamming saucepans       A
 
8026
551     148503  29      fifteenth       disobedience    lacerating      A
 
8027
552     148504  29      Colombo captivated      corny   
 
8028
553     148601  29      survey  transferals     megabytes       FAS
 
8029
554     148602  29      staffing        cartographer    chancellor      
 
8030
555     150701  29      obtain  aims    bulk    A
 
8031
556     152101  29      loaded  Pakistani       commits A
 
8032
557     152102  29      slaughtered     burglarized     meson   W
 
8033
558     155202  36      lights  saucepans       deputies        
 
8034
559     155203  29      circumference   lacerating      northeaster     A
 
8035
560     155204  29      dull    corny   dipole  
 
8036
561     155205  29      weekly  megabytes       machining       0
 
8037
562     156001  29      wetness chancellor      therefore       
 
8038
563     156002  29      visualized      bulk    Telefunken      
 
8039
564     156102  29      Tannenbaum      commits salvaging       
 
8040
565     156301  29      moribund        meson   Corinthianizes  A
 
8041
566     156302  29      demultiplex     deputies        restlessly      A
 
8042
567     156303  29      lockings        northeaster     bromides        
 
8043
568     156304  29      thugs   dipole  generalized     A
 
8044
569     156305  29      unnerves        machining       mishaps 
 
8045
570     156306  29      abut    therefore       quelling        
 
8046
571     156501  29      Chippewa        Telefunken      spiritual       A
 
8047
572     158001  29      stratifications salvaging       beguiles        FAS
 
8048
573     158002  29      signaled        Corinthianizes  Trobriand       FAS
 
8049
574     158101  29      Italianizes     restlessly      fleeing A
 
8050
575     158102  29      algorithmic     bromides        Armour  A
 
8051
576     158103  29      paranoid        generalized     chin    A
 
8052
577     158201  29      camping mishaps provers A
 
8053
578     158202  29      signifying      quelling        aeronautic      A
 
8054
579     158203  29      Patrice spiritual       voltage W
 
8055
580     158204  29      search  beguiles        sash    
 
8056
581     158301  29      Angeles Trobriand       anaerobic       A
 
8057
582     158302  29      semblance       fleeing simultaneous    A
 
8058
583     158303  29      taxed   Armour  accumulating    A
 
8059
584     158304  29      Beatrice        chin    Medusan A
 
8060
585     158305  29      retrace provers shouted A
 
8061
586     158306  29      lockout aeronautic      freakish        
 
8062
587     158501  29      grammatic       voltage index   FAS
 
8063
588     160301  29      helmsman        sash    commercially    
 
8064
589     166101  50      uniform anaerobic       mistiness       A
 
8065
590     166102  50      hamming simultaneous    endpoint        
 
8066
591     168001  29      disobedience    accumulating    straight        A
 
8067
592     168002  29      captivated      Medusan flurried        
 
8068
593     168003  29      transferals     shouted denotative      A
 
8069
594     168101  29      cartographer    freakish        coming  FAS
 
8070
595     168102  29      aims    index   commencements   FAS
 
8071
596     168103  29      Pakistani       commercially    gentleman       
 
8072
597     168104  29      burglarized     mistiness       gifted  
 
8073
598     168202  29      saucepans       endpoint        Shanghais       
 
8074
599     168301  29      lacerating      straight        sportswriting   A
 
8075
600     168502  29      corny   flurried        sloping A
 
8076
601     168503  29      megabytes       denotative      navies  
 
8077
602     168601  29      chancellor      coming  leaflet A
 
8078
603     173001  40      bulk    commencements   shooter 
 
8079
604     173701  40      commits gentleman       Joplin  FAS
 
8080
605     173702  40      meson   gifted  babies  
 
8081
606     176001  40      deputies        Shanghais       subdivision     FAS
 
8082
607     176101  40      northeaster     sportswriting   burstiness      W
 
8083
608     176201  40      dipole  sloping belted  FAS
 
8084
609     176401  40      machining       navies  assails FAS
 
8085
610     176501  40      therefore       leaflet admiring        W
 
8086
611     176601  40      Telefunken      shooter swaying 0
 
8087
612     176602  40      salvaging       Joplin  Goldstine       FAS
 
8088
613     176603  40      Corinthianizes  babies  fitting 
 
8089
614     178001  40      restlessly      subdivision     Norwalk W
 
8090
615     178002  40      bromides        burstiness      weakening       W
 
8091
616     178003  40      generalized     belted  analogy FAS
 
8092
617     178004  40      mishaps assails deludes 
 
8093
618     178005  40      quelling        admiring        cokes   
 
8094
619     178006  40      spiritual       swaying Clayton 
 
8095
620     178007  40      beguiles        Goldstine       exhausts        
 
8096
621     178008  40      Trobriand       fitting causality       
 
8097
622     178101  40      fleeing Norwalk sating  FAS
 
8098
623     178102  40      Armour  weakening       icon    
 
8099
624     178103  40      chin    analogy throttles       
 
8100
625     178201  40      provers deludes communicants    FAS
 
8101
626     178202  40      aeronautic      cokes   dehydrate       FAS
 
8102
627     178301  40      voltage Clayton priceless       FAS
 
8103
628     178302  40      sash    exhausts        publicly        
 
8104
629     178401  40      anaerobic       causality       incidentals     FAS
 
8105
630     178402  40      simultaneous    sating  commonplace     
 
8106
631     178403  40      accumulating    icon    mumbles 
 
8107
632     178404  40      Medusan throttles       furthermore     W
 
8108
633     178501  40      shouted communicants    cautioned       W
 
8109
634     186002  37      freakish        dehydrate       parametrized    A
 
8110
635     186102  37      index   priceless       registration    A
 
8111
636     186201  40      commercially    publicly        sadly   FAS
 
8112
637     186202  40      mistiness       incidentals     positioning     
 
8113
638     186203  40      endpoint        commonplace     babysitting     
 
8114
639     186302  37      straight        mumbles eternal A
 
8115
640     188007  37      flurried        furthermore     hoarder 
 
8116
641     188008  37      denotative      cautioned       congregates     
 
8117
642     188009  37      coming  parametrized    rains   
 
8118
643     188010  37      commencements   registration    workers W
 
8119
644     188011  37      gentleman       sadly   sags    A
 
8120
645     188012  37      gifted  positioning     unplug  W
 
8121
646     188013  37      Shanghais       babysitting     garage  A
 
8122
647     188014  37      sportswriting   eternal boulder A
 
8123
648     188015  37      sloping hoarder hollowly        A
 
8124
649     188016  37      navies  congregates     specifics       
 
8125
650     188017  37      leaflet rains   Teresa  
 
8126
651     188102  37      shooter workers Winsett 
 
8127
652     188103  37      Joplin  sags    convenient      A
 
8128
653     188202  37      babies  unplug  buckboards      FAS
 
8129
654     188301  40      subdivision     garage  amenities       
 
8130
655     188302  40      burstiness      boulder resplendent     FAS
 
8131
656     188303  40      belted  hollowly        priding FAS
 
8132
657     188401  37      assails specifics       configurations  
 
8133
658     188402  37      admiring        Teresa  untidiness      A
 
8134
659     188503  37      swaying Winsett Brice   W
 
8135
660     188504  37      Goldstine       convenient      sews    FAS
 
8136
661     188505  37      fitting buckboards      participated    
 
8137
662     190701  37      Norwalk amenities       Simon   FAS
 
8138
663     190703  50      weakening       resplendent     certificates    
 
8139
664     191701  37      analogy priding Fitzpatrick     
 
8140
665     191702  37      deludes configurations  Evanston        A
 
8141
666     191703  37      cokes   untidiness      misted  
 
8142
667     196001  37      Clayton Brice   textures        A
 
8143
668     196002  37      exhausts        sews    save    
 
8144
669     196003  37      causality       participated    count   
 
8145
670     196101  37      sating  Simon   rightful        A
 
8146
671     196103  37      icon    certificates    chaperone       
 
8147
672     196104  37      throttles       Fitzpatrick     Lizzy   A
 
8148
673     196201  37      communicants    Evanston        clenched        A
 
8149
674     196202  37      dehydrate       misted  effortlessly    
 
8150
675     196203  37      priceless       textures        accessed        
 
8151
676     198001  37      publicly        save    beaters A
 
8152
677     198003  37      incidentals     count   Hornblower      FAS
 
8153
678     198004  37      commonplace     rightful        vests   A
 
8154
679     198005  37      mumbles chaperone       indulgences     FAS
 
8155
680     198006  37      furthermore     Lizzy   infallibly      A
 
8156
681     198007  37      cautioned       clenched        unwilling       FAS
 
8157
682     198008  37      parametrized    effortlessly    excrete FAS
 
8158
683     198009  37      registration    accessed        spools  A
 
8159
684     198010  37      sadly   beaters crunches        FAS
 
8160
685     198011  37      positioning     Hornblower      overestimating  FAS
 
8161
686     198012  37      babysitting     vests   ineffective     
 
8162
687     198013  37      eternal indulgences     humiliation     A
 
8163
688     198014  37      hoarder infallibly      sophomore       
 
8164
689     198015  37      congregates     unwilling       star    
 
8165
690     198017  37      rains   excrete rifles  
 
8166
691     198018  37      workers spools  dialysis        
 
8167
692     198019  37      sags    crunches        arriving        
 
8168
693     198020  37      unplug  overestimating  indulge 
 
8169
694     198021  37      garage  ineffective     clockers        
 
8170
695     198022  37      boulder humiliation     languages       
 
8171
696     198023  50      hollowly        sophomore       Antarctica      A
 
8172
697     198024  37      specifics       star    percentage      
 
8173
698     198101  37      Teresa  rifles  ceiling A
 
8174
699     198103  37      Winsett dialysis        specification   
 
8175
700     198105  37      convenient      arriving        regimented      A
 
8176
701     198106  37      buckboards      indulge ciphers 
 
8177
702     198201  37      amenities       clockers        pictures        A
 
8178
703     198204  37      resplendent     languages       serpents        A
 
8179
704     198301  53      priding Antarctica      allot   A
 
8180
705     198302  53      configurations  percentage      realized        A
 
8181
706     198303  53      untidiness      ceiling mayoral A
 
8182
707     198304  53      Brice   specification   opaquely        A
 
8183
708     198401  37      sews    regimented      hostess FAS
 
8184
709     198402  37      participated    ciphers fiftieth        
 
8185
710     198403  37      Simon   pictures        incorrectly     
 
8186
711     202101  37      certificates    serpents        decomposition   FAS
 
8187
712     202301  37      Fitzpatrick     allot   stranglings     
 
8188
713     202302  37      Evanston        realized        mixture FAS
 
8189
714     202303  37      misted  mayoral electroencephalography  FAS
 
8190
715     202304  37      textures        opaquely        similarities    FAS
 
8191
716     202305  37      save    hostess charges W
 
8192
717     202601  37      count   fiftieth        freest  FAS
 
8193
718     202602  37      rightful        incorrectly     Greenberg       FAS
 
8194
719     202605  37      chaperone       decomposition   tinting 
 
8195
720     202606  37      Lizzy   stranglings     expelled        W
 
8196
721     202607  37      clenched        mixture warm    
 
8197
722     202901  37      effortlessly    electroencephalography  smoothed        
 
8198
723     202902  37      accessed        similarities    deductions      FAS
 
8199
724     202903  37      beaters charges Romano  W
 
8200
725     202904  37      Hornblower      freest  bitterroot      
 
8201
726     202907  37      vests   Greenberg       corset  
 
8202
727     202908  37      indulgences     tinting securing        
 
8203
728     203101  37      infallibly      expelled        environing      FAS
 
8204
729     203103  37      unwilling       warm    cute    
 
8205
730     203104  37      excrete smoothed        Crays   
 
8206
731     203105  37      spools  deductions      heiress FAS
 
8207
732     203401  37      crunches        Romano  inform  FAS
 
8208
733     203402  37      overestimating  bitterroot      avenge  
 
8209
734     203404  37      ineffective     corset  universals      
 
8210
735     203901  37      humiliation     securing        Kinsey  W
 
8211
736     203902  37      sophomore       environing      ravines FAS
 
8212
737     203903  37      star    cute    bestseller      
 
8213
738     203906  37      rifles  Crays   equilibrium     
 
8214
739     203907  37      dialysis        heiress extents 0
 
8215
740     203908  37      arriving        inform  relatively      
 
8216
741     203909  37      indulge avenge  pressure        FAS
 
8217
742     206101  37      clockers        universals      critiques       FAS
 
8218
743     206201  37      languages       Kinsey  befouled        
 
8219
744     206202  37      Antarctica      ravines rightfully      FAS
 
8220
745     206203  37      percentage      bestseller      mechanizing     FAS
 
8221
746     206206  37      ceiling equilibrium     Latinizes       
 
8222
747     206207  37      specification   extents timesharing     
 
8223
748     206208  37      regimented      relatively      Aden    
 
8224
749     208001  37      ciphers pressure        embassies       
 
8225
750     208002  37      pictures        critiques       males   FAS
 
8226
751     208003  37      serpents        befouled        shapelessly     FAS
 
8227
752     208004  37      allot   rightfully      genres  FAS
 
8228
753     208008  37      realized        mechanizing     mastering       
 
8229
754     208009  37      mayoral Latinizes       Newtonian       
 
8230
755     208010  37      opaquely        timesharing     finishers       FAS
 
8231
756     208011  37      hostess Aden    abates  
 
8232
757     208101  37      fiftieth        embassies       teem    
 
8233
758     208102  37      incorrectly     males   kiting  FAS
 
8234
759     208103  37      decomposition   shapelessly     stodgy  FAS
 
8235
760     208104  37      stranglings     genres  scalps  FAS
 
8236
761     208105  37      mixture mastering       feed    FAS
 
8237
762     208110  37      electroencephalography  Newtonian       guitars 
 
8238
763     208111  37      similarities    finishers       airships        
 
8239
764     208112  37      charges abates  store   
 
8240
765     208113  37      freest  teem    denounces       
 
8241
766     208201  37      Greenberg       kiting  Pyle    FAS
 
8242
767     208203  37      tinting stodgy  Saxony  
 
8243
768     208301  37      expelled        scalps  serializations  FAS
 
8244
769     208302  37      warm    feed    Peruvian        FAS
 
8245
770     208305  37      smoothed        guitars taxonomically   FAS
 
8246
771     208401  37      deductions      airships        kingdom A
 
8247
772     208402  37      Romano  store   stint   A
 
8248
773     208403  37      bitterroot      denounces       Sault   A
 
8249
774     208404  37      corset  Pyle    faithful        
 
8250
775     208501  37      securing        Saxony  Ganymede        FAS
 
8251
776     208502  37      environing      serializations  tidiness        FAS
 
8252
777     208503  37      cute    Peruvian        gainful FAS
 
8253
778     208504  37      Crays   taxonomically   contrary        FAS
 
8254
779     208505  37      heiress kingdom Tipperary       FAS
 
8255
780     210101  37      inform  stint   tropics W
 
8256
781     210102  37      avenge  Sault   theorizers      
 
8257
782     210103  37      universals      faithful        renew   0
 
8258
783     210104  37      Kinsey  Ganymede        already 
 
8259
784     210105  37      ravines tidiness        terminal        
 
8260
785     210106  37      bestseller      gainful Hegelian        
 
8261
786     210107  37      equilibrium     contrary        hypothesizer    
 
8262
787     210401  37      extents Tipperary       warningly       FAS
 
8263
788     213201  37      relatively      tropics journalizing    FAS
 
8264
789     213203  37      pressure        theorizers      nested  
 
8265
790     213204  37      critiques       renew   Lars    
 
8266
791     213205  37      befouled        already saplings        
 
8267
792     213206  37      rightfully      terminal        foothill        
 
8268
793     213207  37      mechanizing     Hegelian        labeled 
 
8269
794     216101  37      Latinizes       hypothesizer    imperiously     FAS
 
8270
795     216103  37      timesharing     warningly       reporters       FAS
 
8271
796     218001  37      Aden    journalizing    furnishings     FAS
 
8272
797     218002  37      embassies       nested  precipitable    FAS
 
8273
798     218003  37      males   Lars    discounts       FAS
 
8274
799     218004  37      shapelessly     saplings        excises FAS
 
8275
800     143503  50      genres  foothill        Stalin  
 
8276
801     218006  37      mastering       labeled despot  FAS
 
8277
802     218007  37      Newtonian       imperiously     ripeness        FAS
 
8278
803     218008  37      finishers       reporters       Arabia  
 
8279
804     218009  37      abates  furnishings     unruly  
 
8280
805     218010  37      teem    precipitable    mournfulness    
 
8281
806     218011  37      kiting  discounts       boom    FAS
 
8282
807     218020  37      stodgy  excises slaughter       A
 
8283
808     218021  50      scalps  Stalin  Sabine  
 
8284
809     218022  37      feed    despot  handy   FAS
 
8285
810     218023  37      guitars ripeness        rural   
 
8286
811     218024  37      airships        Arabia  organizer       
 
8287
812     218101  37      store   unruly  shipyard        FAS
 
8288
813     218102  37      denounces       mournfulness    civics  FAS
 
8289
814     218103  37      Pyle    boom    inaccuracy      FAS
 
8290
815     218201  37      Saxony  slaughter       rules   FAS
 
8291
816     218202  37      serializations  Sabine  juveniles       FAS
 
8292
817     218203  37      Peruvian        handy   comprised       W
 
8293
818     218204  37      taxonomically   rural   investigations  
 
8294
819     218205  37      kingdom organizer       stabilizes      A
 
8295
820     218301  37      stint   shipyard        seminaries      FAS
 
8296
821     218302  37      Sault   civics  Hunter  A
 
8297
822     218401  37      faithful        inaccuracy      sporty  FAS
 
8298
823     218402  37      Ganymede        rules   test    FAS
 
8299
824     218403  37      tidiness        juveniles       weasels 
 
8300
825     218404  37      gainful comprised       CERN    
 
8301
826     218407  37      contrary        investigations  tempering       
 
8302
827     218408  37      Tipperary       stabilizes      afore   FAS
 
8303
828     218409  37      tropics seminaries      Galatean        
 
8304
829     218410  37      theorizers      Hunter  techniques      W
 
8305
830     226001  37      renew   sporty  error   
 
8306
831     226002  37      already test    veranda 
 
8307
832     226003  37      terminal        weasels severely        
 
8308
833     226004  37      Hegelian        CERN    Cassites        FAS
 
8309
834     226005  37      hypothesizer    tempering       forthcoming     
 
8310
835     226006  37      warningly       afore   guides  
 
8311
836     226007  37      journalizing    Galatean        vanish  FAS
 
8312
837     226008  37      nested  techniques      lied    A
 
8313
838     226203  37      Lars    error   sawtooth        FAS
 
8314
839     226204  37      saplings        veranda fated   FAS
 
8315
840     226205  37      foothill        severely        gradually       
 
8316
841     226206  37      labeled Cassites        widens  
 
8317
842     226207  37      imperiously     forthcoming     preclude        
 
8318
843     226208  37      reporters       guides  Jobrel  
 
8319
844     226209  37      furnishings     vanish  hooker  
 
8320
845     226210  37      precipitable    lied    rainstorm       
 
8321
846     226211  37      discounts       sawtooth        disconnects     
 
8322
847     228001  37      excises fated   cruelty 
 
8323
848     228004  37      Stalin  gradually       exponentials    A
 
8324
849     228005  37      despot  widens  affective       A
 
8325
850     228006  37      ripeness        preclude        arteries        
 
8326
851     228007  37      Arabia  Jobrel  Crosby  FAS
 
8327
852     228008  37      unruly  hooker  acquaint        
 
8328
853     228009  37      mournfulness    rainstorm       evenhandedly    
 
8329
854     228101  37      boom    disconnects     percentage      
 
8330
855     228108  37      slaughter       cruelty disobedience    
 
8331
856     228109  37      Sabine  exponentials    humility        
 
8332
857     228110  37      handy   affective       gleaning        A
 
8333
858     228111  37      rural   arteries        petted  A
 
8334
859     228112  37      organizer       Crosby  bloater A
 
8335
860     228113  37      shipyard        acquaint        minion  A
 
8336
861     228114  37      civics  evenhandedly    marginal        A
 
8337
862     228115  37      inaccuracy      percentage      apiary  A
 
8338
863     228116  37      rules   disobedience    measures        
 
8339
864     228117  37      juveniles       humility        precaution      
 
8340
865     228118  37      comprised       gleaning        repelled        
 
8341
866     228119  37      investigations  petted  primary FAS
 
8342
867     228120  37      stabilizes      bloater coverings       
 
8343
868     228121  37      seminaries      minion  Artemia A
 
8344
869     228122  37      Hunter  marginal        navigate        
 
8345
870     228201  37      sporty  apiary  spatial 
 
8346
871     228206  37      test    measures        Gurkha  
 
8347
872     228207  37      weasels precaution      meanwhile       A
 
8348
873     228208  37      CERN    repelled        Melinda A
 
8349
874     228209  37      tempering       primary Butterfield     
 
8350
875     228210  37      afore   coverings       Aldrich A
 
8351
876     228211  37      Galatean        Artemia previewing      A
 
8352
877     228212  37      techniques      navigate        glut    A
 
8353
878     228213  37      error   spatial unaffected      
 
8354
879     228214  37      veranda Gurkha  inmate  
 
8355
880     228301  37      severely        meanwhile       mineral 
 
8356
881     228305  37      Cassites        Melinda impending       A
 
8357
882     228306  37      forthcoming     Butterfield     meditation      A
 
8358
883     228307  37      guides  Aldrich ideas   
 
8359
884     228308  37      vanish  previewing      miniaturizes    W
 
8360
885     228309  37      lied    glut    lewdly  
 
8361
886     228310  37      sawtooth        unaffected      title   
 
8362
887     228311  37      fated   inmate  youthfulness    
 
8363
888     228312  37      gradually       mineral creak   FAS
 
8364
889     228313  37      widens  impending       Chippewa        
 
8365
890     228314  37      preclude        meditation      clamored        
 
8366
891     228401  65      Jobrel  ideas   freezes 
 
8367
892     228402  65      hooker  miniaturizes    forgivably      FAS
 
8368
893     228403  65      rainstorm       lewdly  reduce  FAS
 
8369
894     228404  65      disconnects     title   McGovern        W
 
8370
895     228405  65      cruelty youthfulness    Nazis   W
 
8371
896     228406  65      exponentials    creak   epistle W
 
8372
897     228407  65      affective       Chippewa        socializes      W
 
8373
898     228408  65      arteries        clamored        conceptions     
 
8374
899     228409  65      Crosby  freezes Kevin   
 
8375
900     228410  65      acquaint        forgivably      uncovering      
 
8376
901     230301  37      evenhandedly    reduce  chews   FAS
 
8377
902     230302  37      percentage      McGovern        appendixes      FAS
 
8378
903     230303  37      disobedience    Nazis   raining 
 
8379
904     018062  37      humility        epistle infest  
 
8380
905     230501  37      gleaning        socializes      compartment     
 
8381
906     230502  37      petted  conceptions     minting 
 
8382
907     230503  37      bloater Kevin   ducks   
 
8383
908     230504  37      minion  uncovering      roped   A
 
8384
909     230505  37      marginal        chews   waltz   
 
8385
910     230506  37      apiary  appendixes      Lillian 
 
8386
911     230507  37      measures        raining repressions     A
 
8387
912     230508  37      precaution      infest  chillingly      
 
8388
913     230509  37      repelled        compartment     noncritical     
 
8389
914     230901  37      primary minting lithograph      
 
8390
915     230902  37      coverings       ducks   spongers        
 
8391
916     230903  37      Artemia roped   parenthood      
 
8392
917     230904  37      navigate        waltz   posed   
 
8393
918     230905  37      spatial Lillian instruments     
 
8394
919     230906  37      Gurkha  repressions     filial  
 
8395
920     230907  37      meanwhile       chillingly      fixedly 
 
8396
921     230908  37      Melinda noncritical     relives 
 
8397
922     230909  37      Butterfield     lithograph      Pandora 
 
8398
923     230910  37      Aldrich spongers        watering        A
 
8399
924     230911  37      previewing      parenthood      ungrateful      
 
8400
925     230912  37      glut    posed   secures 
 
8401
926     230913  37      unaffected      instruments     chastisers      
 
8402
927     230914  37      inmate  filial  icon    
 
8403
928     231304  37      mineral fixedly reuniting       A
 
8404
929     231305  37      impending       relives imagining       A
 
8405
930     231306  37      meditation      Pandora abiding A
 
8406
931     231307  37      ideas   watering        omnisciently    
 
8407
932     231308  37      miniaturizes    ungrateful      Britannic       
 
8408
933     231309  37      lewdly  secures scholastics     A
 
8409
934     231310  37      title   chastisers      mechanics       A
 
8410
935     231311  37      youthfulness    icon    humidly A
 
8411
936     231312  37      creak   reuniting       masterpiece     
 
8412
937     231313  37      Chippewa        imagining       however 
 
8413
938     231314  37      clamored        abiding Mendelian       
 
8414
939     231315  37      freezes omnisciently    jarred  
 
8415
940     232102  37      forgivably      Britannic       scolds  
 
8416
941     232103  37      reduce  scholastics     infatuate       
 
8417
942     232104  37      McGovern        mechanics       willed  A
 
8418
943     232105  37      Nazis   humidly joyfully        
 
8419
944     232106  37      epistle masterpiece     Microsoft       
 
8420
945     232107  37      socializes      however fibrosities     
 
8421
946     232108  37      conceptions     Mendelian       Baltimorean     
 
8422
947     232601  37      Kevin   jarred  equestrian      
 
8423
948     232602  37      uncovering      scolds  Goodrich        
 
8424
949     232603  37      chews   infatuate       apish   A
 
8425
950     232605  37      appendixes      willed  Adlerian        
 
8426
5950    1232605 37      appendixes      willed  Adlerian        
 
8427
5951    1232606 37      appendixes      willed  Adlerian        
 
8428
5952    1232607 37      appendixes      willed  Adlerian        
 
8429
5953    1232608 37      appendixes      willed  Adlerian        
 
8430
5954    1232609 37      appendixes      willed  Adlerian        
 
8431
951     232606  37      raining joyfully        Tropez  
 
8432
952     232607  37      infest  Microsoft       nouns   
 
8433
953     232608  37      compartment     fibrosities     distracting     
 
8434
954     232609  37      minting Baltimorean     mutton  
 
8435
955     236104  37      ducks   equestrian      bridgeable      A
 
8436
956     236105  37      roped   Goodrich        stickers        A
 
8437
957     236106  37      waltz   apish   transcontinental        A
 
8438
958     236107  37      Lillian Adlerian        amateurish      
 
8439
959     236108  37      repressions     Tropez  Gandhian        
 
8440
960     236109  37      chillingly      nouns   stratified      
 
8441
961     236110  37      noncritical     distracting     chamberlains    
 
8442
962     236111  37      lithograph      mutton  creditably      
 
8443
963     236112  37      spongers        bridgeable      philosophic     
 
8444
964     236113  37      parenthood      stickers        ores    
 
8445
965     238005  37      posed   transcontinental        Carleton        
 
8446
966     238006  37      instruments     amateurish      tape    A
 
8447
967     238007  37      filial  Gandhian        afloat  A
 
8448
968     238008  37      fixedly stratified      goodness        A
 
8449
969     238009  37      relives chamberlains    welcoming       
 
8450
970     238010  37      Pandora creditably      Pinsky  FAS
 
8451
971     238011  37      watering        philosophic     halting 
 
8452
972     238012  37      ungrateful      ores    bibliography    
 
8453
973     238013  37      secures Carleton        decoding        
 
8454
974     240401  41      chastisers      tape    variance        A
 
8455
975     240402  41      icon    afloat  allowed A
 
8456
976     240901  41      reuniting       goodness        dire    A
 
8457
977     240902  41      imagining       welcoming       dub     A
 
8458
978     241801  41      abiding Pinsky  poisoning       
 
8459
979     242101  41      omnisciently    halting Iraqis  A
 
8460
980     242102  41      Britannic       bibliography    heaving 
 
8461
981     242201  41      scholastics     decoding        population      A
 
8462
982     242202  41      mechanics       variance        bomb    A
 
8463
983     242501  41      humidly allowed Majorca A
 
8464
984     242502  41      masterpiece     dire    Gershwins       
 
8465
985     246201  41      however dub     explorers       
 
8466
986     246202  41      Mendelian       poisoning       libretto        A
 
8467
987     246203  41      jarred  Iraqis  occurred        
 
8468
988     246204  41      scolds  heaving Lagos   
 
8469
989     246205  41      infatuate       population      rats    
 
8470
990     246301  41      willed  bomb    bankruptcies    A
 
8471
991     246302  41      joyfully        Majorca crying  
 
8472
992     248001  41      Microsoft       Gershwins       unexpected      
 
8473
993     248002  41      fibrosities     explorers       accessed        A
 
8474
994     248003  41      Baltimorean     libretto        colorful        A
 
8475
995     248004  41      equestrian      occurred        versatility     A
 
8476
996     248005  41      Goodrich        Lagos   cosy    
 
8477
997     248006  41      apish   rats    Darius  A
 
8478
998     248007  41      Adlerian        bankruptcies    mastering       A
 
8479
999     248008  41      Tropez  crying  Asiaticizations A
 
8480
1000    248009  41      nouns   unexpected      offerers        A
 
8481
1001    248010  41      distracting     accessed        uncles  A
 
8482
1002    248011  41      mutton  colorful        sleepwalk       
 
8483
1003    248012  41      bridgeable      versatility     Ernestine       
 
8484
1004    248013  41      stickers        cosy    checksumming    
 
8485
1005    248014  41      transcontinental        Darius  stopped 
 
8486
1006    248015  41      amateurish      mastering       sicker  
 
8487
1007    248016  41      Gandhian        Asiaticizations Italianization  
 
8488
1008    248017  41      stratified      offerers        alphabetic      
 
8489
1009    248018  41      chamberlains    uncles  pharmaceutic    
 
8490
1010    248019  41      creditably      sleepwalk       creator 
 
8491
1011    248020  41      philosophic     Ernestine       chess   
 
8492
1012    248021  41      ores    checksumming    charcoal        
 
8493
1013    248101  41      Carleton        stopped Epiphany        A
 
8494
1014    248102  41      tape    sicker  bulldozes       A
 
8495
1015    248201  41      afloat  Italianization  Pygmalion       A
 
8496
1016    248202  41      goodness        alphabetic      caressing       A
 
8497
1017    248203  41      welcoming       pharmaceutic    Palestine       A
 
8498
1018    248204  41      Pinsky  creator regimented      A
 
8499
1019    248205  41      halting chess   scars   A
 
8500
1020    248206  41      bibliography    charcoal        realest A
 
8501
1021    248207  41      decoding        Epiphany        diffusing       A
 
8502
1022    248208  41      variance        bulldozes       clubroom        A
 
8503
1023    248209  41      allowed Pygmalion       Blythe  A
 
8504
1024    248210  41      dire    caressing       ahead   
 
8505
1025    248211  50      dub     Palestine       reviver 
 
8506
1026    250501  34      poisoning       regimented      retransmitting  A
 
8507
1027    250502  34      Iraqis  scars   landslide       
 
8508
1028    250503  34      heaving realest Eiffel  
 
8509
1029    250504  34      population      diffusing       absentee        
 
8510
1030    250505  34      bomb    clubroom        aye     
 
8511
1031    250601  34      Majorca Blythe  forked  A
 
8512
1032    250602  34      Gershwins       ahead   Peruvianizes    
 
8513
1033    250603  34      explorers       reviver clerked 
 
8514
1034    250604  34      libretto        retransmitting  tutor   
 
8515
1035    250605  34      occurred        landslide       boulevard       
 
8516
1036    251001  34      Lagos   Eiffel  shuttered       
 
8517
1037    251002  34      rats    absentee        quotes  A
 
8518
1038    251003  34      bankruptcies    aye     Caltech 
 
8519
1039    251004  34      crying  forked  Mossberg        
 
8520
1040    251005  34      unexpected      Peruvianizes    kept    
 
8521
1041    251301  34      accessed        clerked roundly 
 
8522
1042    251302  34      colorful        tutor   features        A
 
8523
1043    251303  34      versatility     boulevard       imaginable      A
 
8524
1044    251304  34      cosy    shuttered       controller      
 
8525
1045    251305  34      Darius  quotes  racial  
 
8526
1046    251401  34      mastering       Caltech uprisings       A
 
8527
1047    251402  34      Asiaticizations Mossberg        narrowed        A
 
8528
1048    251403  34      offerers        kept    cannot  A
 
8529
1049    251404  34      uncles  roundly vest    
 
8530
1050    251405  34      sleepwalk       features        famine  
 
8531
1051    251406  34      Ernestine       imaginable      sugars  
 
8532
1052    251801  34      checksumming    controller      exterminated    A
 
8533
1053    251802  34      stopped racial  belays  
 
8534
1054    252101  34      sicker  uprisings       Hodges  A
 
8535
1055    252102  34      Italianization  narrowed        translatable    
 
8536
1056    252301  34      alphabetic      cannot  duality A
 
8537
1057    252302  34      pharmaceutic    vest    recording       A
 
8538
1058    252303  34      creator famine  rouses  A
 
8539
1059    252304  34      chess   sugars  poison  
 
8540
1060    252305  34      charcoal        exterminated    attitude        
 
8541
1061    252306  34      Epiphany        belays  dusted  
 
8542
1062    252307  34      bulldozes       Hodges  encompasses     
 
8543
1063    252308  34      Pygmalion       translatable    presentation    
 
8544
1064    252309  34      caressing       duality Kantian 
 
8545
1065    256001  34      Palestine       recording       imprecision     A
 
8546
1066    256002  34      regimented      rouses  saving  
 
8547
1067    256003  34      scars   poison  maternal        
 
8548
1068    256004  34      realest attitude        hewed   
 
8549
1069    256005  34      diffusing       dusted  kerosene        
 
8550
1070    258001  34      clubroom        encompasses     Cubans  
 
8551
1071    258002  34      Blythe  presentation    photographers   
 
8552
1072    258003  34      ahead   Kantian nymph   A
 
8553
1073    258004  34      reviver imprecision     bedlam  A
 
8554
1074    258005  34      retransmitting  saving  north   A
 
8555
1075    258006  34      landslide       maternal        Schoenberg      A
 
8556
1076    258007  34      Eiffel  hewed   botany  A
 
8557
1077    258008  34      absentee        kerosene        curs    
 
8558
1078    258009  34      aye     Cubans  solidification  
 
8559
1079    258010  34      forked  photographers   inheritresses   
 
8560
1080    258011  34      Peruvianizes    nymph   stiller 
 
8561
1081    258101  68      clerked bedlam  t1      A
 
8562
1082    258102  68      tutor   north   suite   A
 
8563
1083    258103  34      boulevard       Schoenberg      ransomer        
 
8564
1084    258104  68      shuttered       botany  Willy   
 
8565
1085    258105  68      quotes  curs    Rena    A
 
8566
1086    258106  68      Caltech solidification  Seattle A
 
8567
1087    258107  68      Mossberg        inheritresses   relaxes A
 
8568
1088    258108  68      kept    stiller exclaim 
 
8569
1089    258109  68      roundly t1      implicated      A
 
8570
1090    258110  68      features        suite   distinguish     
 
8571
1091    258111  68      imaginable      ransomer        assayed 
 
8572
1092    258112  68      controller      Willy   homeowner       
 
8573
1093    258113  68      racial  Rena    and     
 
8574
1094    258201  34      uprisings       Seattle stealth 
 
8575
1095    258202  34      narrowed        relaxes coinciding      A
 
8576
1096    258203  34      cannot  exclaim founder A
 
8577
1097    258204  34      vest    implicated      environing      
 
8578
1098    258205  34      famine  distinguish     jewelry 
 
8579
1099    258301  34      sugars  assayed lemons  A
 
8580
1100    258401  34      exterminated    homeowner       brokenness      A
 
8581
1101    258402  34      belays  and     bedpost A
 
8582
1102    258403  34      Hodges  stealth assurers        A
 
8583
1103    258404  34      translatable    coinciding      annoyers        
 
8584
1104    258405  34      duality founder affixed 
 
8585
1105    258406  34      recording       environing      warbling        
 
8586
1106    258407  34      rouses  jewelry seriously       
 
8587
1107    228123  37      poison  lemons  boasted 
 
8588
1108    250606  34      attitude        brokenness      Chantilly       
 
8589
1109    208405  37      dusted  bedpost Iranizes        
 
8590
1110    212101  37      encompasses     assurers        violinist       
 
8591
1111    218206  37      presentation    annoyers        extramarital    
 
8592
1112    150401  37      Kantian affixed spates  
 
8593
1113    248212  41      imprecision     warbling        cloakroom       
 
8594
1114    128026  00      saving  seriously       gazer   
 
8595
1115    128024  00      maternal        boasted hand    
 
8596
1116    128027  00      hewed   Chantilly       tucked  
 
8597
1117    128025  00      kerosene        Iranizes        gems    
 
8598
1118    128109  00      Cubans  violinist       clinker 
 
8599
1119    128705  00      photographers   extramarital    refiner 
 
8600
1120    126303  00      nymph   spates  callus  
 
8601
1121    128308  00      bedlam  cloakroom       leopards        
 
8602
1122    128204  00      north   gazer   comfortingly    
 
8603
1123    128205  00      Schoenberg      hand    generically     
 
8604
1124    128206  00      botany  tucked  getters 
 
8605
1125    128207  00      curs    gems    sexually        
 
8606
1126    118205  00      solidification  clinker spear   
 
8607
1127    116801  00      inheritresses   refiner serums  
 
8608
1128    116803  00      stiller callus  Italianization  
 
8609
1129    116804  00      t1      leopards        attendants      
 
8610
1130    116802  00      suite   comfortingly    spies   
 
8611
1131    128605  00      ransomer        generically     Anthony 
 
8612
1132    118308  00      Willy   getters planar  
 
8613
1133    113702  00      Rena    sexually        cupped  
 
8614
1134    113703  00      Seattle spear   cleanser        
 
8615
1135    112103  00      relaxes serums  commuters       
 
8616
1136    118009  00      exclaim Italianization  honeysuckle     
 
8617
5136    1118009 00      exclaim Italianization  honeysuckle     
 
8618
1137    138011  00      implicated      attendants      orphanage       
 
8619
1138    138010  00      distinguish     spies   skies   
 
8620
1139    138012  00      assayed Anthony crushers        
 
8621
1140    068304  00      homeowner       planar  Puritan 
 
8622
1141    078009  00      and     cupped  squeezer        
 
8623
1142    108013  00      stealth cleanser        bruises 
 
8624
1143    084004  00      coinciding      commuters       bonfire 
 
8625
1144    083402  00      founder honeysuckle     Colombo 
 
8626
1145    084003  00      environing      orphanage       nondecreasing   
 
8627
1146    088504  00      jewelry skies   innocents       
 
8628
1147    088005  00      lemons  crushers        masked  
 
8629
1148    088007  00      brokenness      Puritan file    
 
8630
1149    088006  00      bedpost squeezer        brush   
 
8631
1150    148025  00      assurers        bruises mutilate        
 
8632
1151    148024  00      annoyers        bonfire mommy   
 
8633
1152    138305  00      affixed Colombo bulkheads       
 
8634
1153    138306  00      warbling        nondecreasing   undeclared      
 
8635
1154    152701  00      seriously       innocents       displacements   
 
8636
1155    148505  00      boasted masked  nieces  
 
8637
1156    158003  00      Chantilly       file    coeducation     
 
8638
1157    156201  00      Iranizes        brush   brassy  
 
8639
1158    156202  00      violinist       mutilate        authenticator   
 
8640
1159    158307  00      extramarital    mommy   Washoe  
 
8641
1160    158402  00      spates  bulkheads       penny   
 
8642
1161    158401  00      cloakroom       undeclared      Flagler 
 
8643
1162    068013  00      gazer   displacements   stoned  
 
8644
1163    068012  00      hand    nieces  cranes  
 
8645
1164    068203  00      tucked  coeducation     masterful       
 
8646
1165    088205  00      gems    brassy  biracial        
 
8647
1166    068704  00      clinker authenticator   steamships      
 
8648
1167    068604  00      refiner Washoe  windmills       
 
8649
1168    158502  00      callus  penny   exploit 
 
8650
1169    123103  00      leopards        Flagler riverfront      
 
8651
1170    148026  00      comfortingly    stoned  sisterly        
 
8652
1171    123302  00      generically     cranes  sharpshoot      
 
8653
1172    076503  00      getters masterful       mittens 
 
8654
1173    126304  00      sexually        biracial        interdependency 
 
8655
1174    068306  00      spear   steamships      policy  
 
8656
1175    143504  00      serums  windmills       unleashing      
 
8657
1176    160201  00      Italianization  exploit pretenders      
 
8658
1177    148028  00      attendants      riverfront      overstatements  
 
8659
1178    148027  00      spies   sisterly        birthed 
 
8660
1179    143505  00      Anthony sharpshoot      opportunism     
 
8661
1180    108014  00      planar  mittens showroom        
 
8662
1181    076104  00      cupped  interdependency compromisingly  
 
8663
1182    078106  00      cleanser        policy  Medicare        
 
8664
1183    126102  00      commuters       unleashing      corresponds     
 
8665
1184    128029  00      honeysuckle     pretenders      hardware        
 
8666
1185    128028  00      orphanage       overstatements  implant 
 
8667
1186    018410  00      skies   birthed Alicia  
 
8668
1187    128110  00      crushers        opportunism     requesting      
 
8669
1188    148506  00      Puritan showroom        produced        
 
8670
1189    123303  00      squeezer        compromisingly  criticizes      
 
8671
1190    123304  00      bruises Medicare        backer  
 
8672
1191    068504  00      bonfire corresponds     positively      
 
8673
1192    068305  00      Colombo hardware        colicky 
 
8674
1193    000000  00      nondecreasing   implant thrillingly     
 
8675
1       000001  00      Omaha   teethe  neat    
 
8676
2       011401  37      breaking        dreaded Steinberg       W
 
8677
3       011402  37      Romans  scholastics     jarring 
 
8678
4       011403  37      intercepted     audiology       tinily  
 
8679
2       011401  37      breaking        dreaded Steinberg       W
 
8680
3       011402  37      Romans  scholastics     jarring 
 
8681
4       011403  37      intercepted     audiology       tinily  
 
8682
1       000001  00      Omaha   teethe  neat    
 
8683
2       011401  37      breaking        dreaded Steinberg       W
 
8684
3       011402  37      Romans  scholastics     jarring 
 
8685
4       011403  37      intercepted     audiology       tinily  
 
8686
2       011401  37      breaking        dreaded Steinberg       W
 
8687
3       011402  37      Romans  scholastics     jarring 
 
8688
4       011403  37      intercepted     audiology       tinily  
 
8689
TRUNCATE TABLE t2;
 
8690
ERROR HY000: Table storage engine for 't2' doesn't have this option
 
8691
SELECT * FROM t2;
 
8692
auto    fld1    companynr       fld3    fld4    fld5    fld6
 
8693
1       000001  00      Omaha   teethe  neat    
 
8694
2       011401  37      breaking        dreaded Steinberg       W
 
8695
3       011402  37      Romans  scholastics     jarring 
 
8696
4       011403  37      intercepted     audiology       tinily  
 
8697
5       011501  37      bewilderingly   wallet  balled  
 
8698
6       011701  37      astound parters persist W
 
8699
7       011702  37      admonishing     eschew  attainments     
 
8700
8       011703  37      sumac   quitter fanatic 
 
8701
9       012001  37      flanking        neat    measures        FAS
 
8702
10      012003  37      combed  Steinberg       rightfulness    
 
8703
11      012004  37      subjective      jarring capably 
 
8704
12      012005  37      scatterbrain    tinily  impulsive       
 
8705
13      012301  37      Eulerian        balled  starlet 
 
8706
14      012302  36      dubbed  persist terminators     
 
8707
15      012303  37      Kane    attainments     untying 
 
8708
16      012304  37      overlay fanatic announces       FAS
 
8709
17      012305  37      perturb measures        featherweight   FAS
 
8710
18      012306  37      goblins rightfulness    pessimist       FAS
 
8711
19      012501  37      annihilates     capably daughter        
 
8712
20      012602  37      Wotan   impulsive       decliner        FAS
 
8713
21      012603  37      snatching       starlet lawgiver        
 
8714
22      012604  37      concludes       terminators     stated  
 
8715
23      012605  37      laterally       untying readable        
 
8716
24      012606  37      yelped  announces       attrition       
 
8717
25      012701  37      grazing featherweight   cascade FAS
 
8718
26      012702  37      Baird   pessimist       motors  FAS
 
8719
27      012703  37      celery  daughter        interrogate     
 
8720
28      012704  37      misunderstander decliner        pests   W
 
8721
29      013601  37      handgun lawgiver        stairway        
 
8722
30      013602  37      foldout stated  dopers  FAS
 
8723
31      013603  37      mystic  readable        testicle        W
 
8724
32      013604  37      succumbed       attrition       Parsifal        W
 
8725
33      013605  37      Nabisco cascade leavings        
 
8726
34      013606  37      fingerings      motors  postulation     W
 
8727
35      013607  37      aging   interrogate     squeaking       
 
8728
36      013608  37      afield  pests   contrasted      
 
8729
37      013609  37      ammonium        stairway        leftover        
 
8730
38      013610  37      boat    dopers  whiteners       
 
8731
39      013801  37      intelligibility testicle        erases  W
 
8732
40      013802  37      Augustine       Parsifal        Punjab  W
 
8733
41      013803  37      teethe  leavings        Merritt 
 
8734
42      013804  37      dreaded postulation     Quixotism       
 
8735
43      013901  37      scholastics     squeaking       sweetish        FAS
 
8736
44      016001  37      audiology       contrasted      dogging FAS
 
8737
45      016201  37      wallet  leftover        scornfully      FAS
 
8738
46      016202  37      parters whiteners       bellow  
 
8739
47      016301  37      eschew  erases  bills   
 
8740
48      016302  37      quitter Punjab  cupboard        FAS
 
8741
49      016303  37      neat    Merritt sureties        FAS
 
8742
50      016304  37      Steinberg       Quixotism       puddings        
 
8743
51      018001  37      jarring sweetish        tapestry        
 
8744
52      018002  37      tinily  dogging fetters 
 
8745
53      018003  37      balled  scornfully      bivalves        
 
8746
54      018004  37      persist bellow  incurring       
 
8747
55      018005  37      attainments     bills   Adolph  
 
8748
56      018007  37      fanatic cupboard        pithed  
 
8749
57      018008  37      measures        sureties        emergency       
 
8750
58      018009  37      rightfulness    puddings        Miles   
 
8751
59      018010  37      capably tapestry        trimmings       
 
8752
60      018012  37      impulsive       fetters tragedies       W
 
8753
61      018013  37      starlet bivalves        skulking        W
 
8754
62      018014  37      terminators     incurring       flint   
 
8755
63      018015  37      untying Adolph  flopping        W
 
8756
64      018016  37      announces       pithed  relaxing        FAS
 
8757
65      018017  37      featherweight   emergency       offload FAS
 
8758
66      018018  37      pessimist       Miles   suites  W
 
8759
67      018019  37      daughter        trimmings       lists   FAS
 
8760
68      018020  37      decliner        tragedies       animized        FAS
 
8761
69      018021  37      lawgiver        skulking        multilayer      W
 
8762
70      018022  37      stated  flint   standardizes    FAS
 
8763
71      018023  37      readable        flopping        Judas   
 
8764
72      018024  37      attrition       relaxing        vacuuming       W
 
8765
73      018025  37      cascade offload dentally        W
 
8766
74      018026  37      motors  suites  humanness       W
 
8767
75      018027  37      interrogate     lists   inch    W
 
8768
76      018028  37      pests   animized        Weissmuller     W
 
8769
77      018029  37      stairway        multilayer      irresponsibly   W
 
8770
78      018030  37      dopers  standardizes    luckily FAS
 
8771
79      018032  37      testicle        Judas   culled  W
 
8772
80      018033  37      Parsifal        vacuuming       medical FAS
 
8773
81      018034  37      leavings        dentally        bloodbath       FAS
 
8774
82      018035  37      postulation     humanness       subschema       W
 
8775
83      018036  37      squeaking       inch    animals W
 
8776
84      018037  37      contrasted      Weissmuller     Micronesia      
 
8777
85      018038  37      leftover        irresponsibly   repetitions     
 
8778
86      018039  37      whiteners       luckily Antares 
 
8779
87      018040  37      erases  culled  ventilate       W
 
8780
88      018041  37      Punjab  medical pityingly       
 
8781
89      018042  37      Merritt bloodbath       interdependent  
 
8782
90      018043  37      Quixotism       subschema       Graves  FAS
 
8783
91      018044  37      sweetish        animals neonatal        
 
8784
92      018045  37      dogging Micronesia      scribbled       FAS
 
8785
93      018046  37      scornfully      repetitions     chafe   W
 
8786
94      018048  37      bellow  Antares honoring        
 
8787
95      018049  37      bills   ventilate       realtor 
 
8788
96      018050  37      cupboard        pityingly       elite   
 
8789
97      018051  37      sureties        interdependent  funereal        
 
8790
98      018052  37      puddings        Graves  abrogating      
 
8791
99      018053  50      tapestry        neonatal        sorters 
 
8792
100     018054  37      fetters scribbled       Conley  
 
8793
101     018055  37      bivalves        chafe   lectured        
 
8794
102     018056  37      incurring       honoring        Abraham 
 
8795
103     018057  37      Adolph  realtor Hawaii  W
 
8796
104     018058  37      pithed  elite   cage    
 
8797
105     018059  36      emergency       funereal        hushes  
 
8798
106     018060  37      Miles   abrogating      Simla   
 
8799
107     018061  37      trimmings       sorters reporters       
 
8800
108     018101  37      tragedies       Conley  Dutchman        FAS
 
8801
109     018102  37      skulking        lectured        descendants     FAS
 
8802
110     018103  37      flint   Abraham groupings       FAS
 
8803
111     018104  37      flopping        Hawaii  dissociate      
 
8804
112     018201  37      relaxing        cage    coexist W
 
8805
113     018202  37      offload hushes  Beebe   
 
8806
114     018402  37      suites  Simla   Taoism  
 
8807
115     018403  37      lists   reporters       Connally        
 
8808
116     018404  37      animized        Dutchman        fetched FAS
 
8809
117     018405  37      multilayer      descendants     checkpoints     FAS
 
8810
118     018406  37      standardizes    groupings       rusting 
 
8811
119     018409  37      Judas   dissociate      galling 
 
8812
120     018601  37      vacuuming       coexist obliterates     
 
8813
121     018602  37      dentally        Beebe   traitor 
 
8814
122     018603  37      humanness       Taoism  resumes FAS
 
8815
123     018801  37      inch    Connally        analyzable      FAS
 
8816
124     018802  37      Weissmuller     fetched terminator      FAS
 
8817
125     018803  37      irresponsibly   checkpoints     gritty  FAS
 
8818
126     018804  37      luckily rusting firearm W
 
8819
127     018805  37      culled  galling minima  
 
8820
128     018806  37      medical obliterates     Selfridge       
 
8821
129     018807  37      bloodbath       traitor disable 
 
8822
130     018808  37      subschema       resumes witchcraft      W
 
8823
131     018809  37      animals analyzable      betroth W
 
8824
132     018810  37      Micronesia      terminator      Manhattanize    
 
8825
133     018811  37      repetitions     gritty  imprint 
 
8826
134     018812  37      Antares firearm peeked  
 
8827
135     019101  37      ventilate       minima  swelling        
 
8828
136     019102  37      pityingly       Selfridge       interrelationships      W
 
8829
137     019103  37      interdependent  disable riser   
 
8830
138     019201  37      Graves  witchcraft      Gandhian        W
 
8831
139     030501  37      neonatal        betroth peacock A
 
8832
140     030502  50      scribbled       Manhattanize    bee     A
 
8833
141     030503  37      chafe   imprint kanji   
 
8834
142     030504  37      honoring        peeked  dental  
 
8835
143     031901  37      realtor swelling        scarf   FAS
 
8836
144     036001  37      elite   interrelationships      chasm   A
 
8837
145     036002  37      funereal        riser   insolence       A
 
8838
146     036004  37      abrogating      Gandhian        syndicate       
 
8839
147     036005  37      sorters peacock alike   
 
8840
148     038001  37      Conley  bee     imperial        A
 
8841
149     038002  37      lectured        kanji   convulsion      A
 
8842
150     038003  37      Abraham dental  railway A
 
8843
151     038004  37      Hawaii  scarf   validate        A
 
8844
152     038005  37      cage    chasm   normalizes      A
 
8845
153     038006  37      hushes  insolence       comprehensive   
 
8846
154     038007  37      Simla   syndicate       chewing 
 
8847
155     038008  37      reporters       alike   denizen 
 
8848
156     038009  37      Dutchman        imperial        schemer 
 
8849
157     038010  37      descendants     convulsion      chronicle       
 
8850
158     038011  37      groupings       railway Kline   
 
8851
159     038012  37      dissociate      validate        Anatole 
 
8852
160     038013  37      coexist normalizes      partridges      
 
8853
161     038014  37      Beebe   comprehensive   brunch  
 
8854
162     038015  37      Taoism  chewing recruited       
 
8855
163     038016  37      Connally        denizen dimensions      W
 
8856
164     038017  37      fetched schemer Chicana W
 
8857
165     038018  37      checkpoints     chronicle       announced       
 
8858
166     038101  37      rusting Kline   praised FAS
 
8859
167     038102  37      galling Anatole employing       
 
8860
168     038103  37      obliterates     partridges      linear  
 
8861
169     038104  37      traitor brunch  quagmire        
 
8862
170     038201  37      resumes recruited       western A
 
8863
171     038202  37      analyzable      dimensions      relishing       
 
8864
172     038203  37      terminator      Chicana serving A
 
8865
173     038204  37      gritty  announced       scheduling      
 
8866
174     038205  37      firearm praised lore    
 
8867
175     038206  37      minima  employing       eventful        
 
8868
176     038208  37      Selfridge       linear  arteriole       A
 
8869
177     042801  37      disable quagmire        disentangle     
 
8870
178     042802  37      witchcraft      western cured   A
 
8871
179     046101  37      betroth relishing       Fenton  W
 
8872
180     048001  37      Manhattanize    serving avoidable       A
 
8873
181     048002  37      imprint scheduling      drains  A
 
8874
182     048003  37      peeked  lore    detectably      FAS
 
8875
183     048004  37      swelling        eventful        husky   
 
8876
184     048005  37      interrelationships      arteriole       impelling       
 
8877
185     048006  37      riser   disentangle     undoes  
 
8878
186     048007  37      Gandhian        cured   evened  
 
8879
187     048008  37      peacock Fenton  squeezes        
 
8880
188     048101  37      bee     avoidable       destroyer       FAS
 
8881
189     048102  37      kanji   drains  rudeness        
 
8882
190     048201  37      dental  detectably      beaner  FAS
 
8883
191     048202  37      scarf   husky   boorish 
 
8884
192     048203  37      chasm   impelling       Everhart        
 
8885
193     048204  37      insolence       undoes  encompass       A
 
8886
194     048205  37      syndicate       evened  mushrooms       
 
8887
195     048301  37      alike   squeezes        Alison  A
 
8888
196     048302  37      imperial        destroyer       externally      FAS
 
8889
197     048303  37      convulsion      rudeness        pellagra        
 
8890
198     048304  37      railway beaner  cult    
 
8891
199     048305  37      validate        boorish creek   A
 
8892
200     048401  37      normalizes      Everhart        Huffman 
 
8893
201     048402  37      comprehensive   encompass       Majorca FAS
 
8894
202     048403  37      chewing mushrooms       governing       A
 
8895
203     048404  37      denizen Alison  gadfly  FAS
 
8896
204     048405  37      schemer externally      reassigned      FAS
 
8897
205     048406  37      chronicle       pellagra        intentness      W
 
8898
206     048407  37      Kline   cult    craziness       
 
8899
207     048408  37      Anatole creek   psychic 
 
8900
208     048409  37      partridges      Huffman squabbled       
 
8901
209     048410  37      brunch  Majorca burlesque       
 
8902
210     048411  37      recruited       governing       capped  
 
8903
211     048412  37      dimensions      gadfly  extracted       A
 
8904
212     048413  37      Chicana reassigned      DiMaggio        
 
8905
213     048601  37      announced       intentness      exclamation     FAS
 
8906
214     048602  37      praised craziness       subdirectory    
 
8907
215     048603  37      employing       psychic fangs   
 
8908
216     048604  37      linear  squabbled       buyer   A
 
8909
217     048801  37      quagmire        burlesque       pithing A
 
8910
218     050901  37      western capped  transistorizing A
 
8911
219     051201  37      relishing       extracted       nonbiodegradable        
 
8912
220     056002  37      serving DiMaggio        dislocate       
 
8913
221     056003  37      scheduling      exclamation     monochromatic   FAS
 
8914
222     056004  37      lore    subdirectory    batting 
 
8915
223     056102  37      eventful        fangs   postcondition   A
 
8916
224     056203  37      arteriole       buyer   catalog FAS
 
8917
225     056204  37      disentangle     pithing Remus   
 
8918
226     058003  37      cured   transistorizing devices A
 
8919
227     058004  37      Fenton  nonbiodegradable        bike    A
 
8920
228     058005  37      avoidable       dislocate       qualify 
 
8921
229     058006  37      drains  monochromatic   detained        
 
8922
230     058007  37      detectably      batting commended       
 
8923
231     058101  37      husky   postcondition   civilize        
 
8924
232     058102  37      impelling       catalog Elmhurst        
 
8925
233     058103  37      undoes  Remus   anesthetizing   
 
8926
234     058105  37      evened  devices deaf    
 
8927
235     058111  37      squeezes        bike    Brigham 
 
8928
236     058112  37      destroyer       qualify title   
 
8929
237     058113  37      rudeness        detained        coarse  
 
8930
238     058114  37      beaner  commended       combinations    
 
8931
239     058115  37      boorish civilize        grayness        
 
8932
240     058116  37      Everhart        Elmhurst        innumerable     FAS
 
8933
241     058117  37      encompass       anesthetizing   Caroline        A
 
8934
242     058118  37      mushrooms       deaf    fatty   FAS
 
8935
243     058119  37      Alison  Brigham eastbound       
 
8936
244     058120  37      externally      title   inexperienced   
 
8937
245     058121  37      pellagra        coarse  hoarder A
 
8938
246     058122  37      cult    combinations    scotch  W
 
8939
247     058123  37      creek   grayness        passport        A
 
8940
248     058124  37      Huffman innumerable     strategic       FAS
 
8941
249     058125  37      Majorca Caroline        gated   
 
8942
250     058126  37      governing       fatty   flog    
 
8943
251     058127  37      gadfly  eastbound       Pipestone       
 
8944
252     058128  37      reassigned      inexperienced   Dar     
 
8945
253     058201  37      intentness      hoarder Corcoran        
 
8946
254     058202  37      craziness       scotch  flyers  A
 
8947
255     058303  37      psychic passport        competitions    W
 
8948
256     058304  37      squabbled       strategic       suppliers       FAS
 
8949
257     058602  37      burlesque       gated   skips   
 
8950
258     058603  37      capped  flog    institutes      
 
8951
259     058604  37      extracted       Pipestone       troop   A
 
8952
260     058605  37      DiMaggio        Dar     connective      W
 
8953
261     058606  37      exclamation     Corcoran        denies  
 
8954
262     058607  37      subdirectory    flyers  polka   
 
8955
263     060401  36      fangs   competitions    observations    FAS
 
8956
264     061701  36      buyer   suppliers       askers  
 
8957
265     066201  36      pithing skips   homeless        FAS
 
8958
266     066501  36      transistorizing institutes      Anna    
 
8959
267     068001  36      nonbiodegradable        troop   subdirectories  W
 
8960
268     068002  36      dislocate       connective      decaying        FAS
 
8961
269     068005  36      monochromatic   denies  outwitting      W
 
8962
270     068006  36      batting polka   Harpy   W
 
8963
271     068007  36      postcondition   observations    crazed  
 
8964
272     068008  36      catalog askers  suffocate       
 
8965
273     068009  36      Remus   homeless        provers FAS
 
8966
274     068010  36      devices Anna    technically     
 
8967
275     068011  36      bike    subdirectories  Franklinizations        
 
8968
276     068202  36      qualify decaying        considered      
 
8969
277     068302  36      detained        outwitting      tinnily 
 
8970
278     068303  36      commended       Harpy   uninterruptedly 
 
8971
279     068401  36      civilize        crazed  whistled        A
 
8972
280     068501  36      Elmhurst        suffocate       automate        
 
8973
281     068502  36      anesthetizing   provers gutting W
 
8974
282     068503  36      deaf    technically     surreptitious   
 
8975
283     068602  36      Brigham Franklinizations        Choctaw 
 
8976
284     068603  36      title   considered      cooks   
 
8977
285     068701  36      coarse  tinnily millivolt       FAS
 
8978
286     068702  36      combinations    uninterruptedly counterpoise    
 
8979
287     068703  36      grayness        whistled        Gothicism       
 
8980
288     076001  36      innumerable     automate        feminine        
 
8981
289     076002  36      Caroline        gutting metaphysically  W
 
8982
290     076101  36      fatty   surreptitious   sanding A
 
8983
291     076102  36      eastbound       Choctaw contributorily  
 
8984
292     076103  36      inexperienced   cooks   receivers       FAS
 
8985
293     076302  36      hoarder millivolt       adjourn 
 
8986
294     076303  36      scotch  counterpoise    straggled       A
 
8987
295     076304  36      passport        Gothicism       druggists       
 
8988
296     076305  36      strategic       feminine        thanking        FAS
 
8989
297     076306  36      gated   metaphysically  ostrich 
 
8990
298     076307  36      flog    sanding hopelessness    FAS
 
8991
299     076402  36      Pipestone       contributorily  Eurydice        
 
8992
300     076501  36      Dar     receivers       excitation      W
 
8993
301     076502  36      Corcoran        adjourn presumes        FAS
 
8994
302     076701  36      flyers  straggled       imaginable      FAS
 
8995
303     078001  36      competitions    druggists       concoct W
 
8996
304     078002  36      suppliers       thanking        peering W
 
8997
305     078003  36      skips   ostrich Phelps  FAS
 
8998
306     078004  36      institutes      hopelessness    ferociousness   FAS
 
8999
307     078005  36      troop   Eurydice        sentences       
 
9000
308     078006  36      connective      excitation      unlocks 
 
9001
309     078007  36      denies  presumes        engrossing      W
 
9002
310     078008  36      polka   imaginable      Ruth    
 
9003
311     078101  36      observations    concoct tying   
 
9004
312     078103  36      askers  peering exclaimers      
 
9005
313     078104  36      homeless        Phelps  synergy 
 
9006
314     078105  36      Anna    ferociousness   Huey    W
 
9007
315     082101  36      subdirectories  sentences       merging 
 
9008
316     083401  36      decaying        unlocks judges  A
 
9009
317     084001  36      outwitting      engrossing      Shylock W
 
9010
318     084002  36      Harpy   Ruth    Miltonism       
 
9011
319     086001  36      crazed  tying   hen     W
 
9012
320     086102  36      suffocate       exclaimers      honeybee        FAS
 
9013
321     086201  36      provers synergy towers  
 
9014
322     088001  36      technically     Huey    dilutes W
 
9015
323     088002  36      Franklinizations        merging numerals        FAS
 
9016
324     088003  36      considered      judges  democracy       FAS
 
9017
325     088004  36      tinnily Shylock Ibero-  
 
9018
326     088101  36      uninterruptedly Miltonism       invalids        
 
9019
327     088102  36      whistled        hen     behavior        
 
9020
328     088103  36      automate        honeybee        accruing        
 
9021
329     088104  36      gutting towers  relics  A
 
9022
330     088105  36      surreptitious   dilutes rackets 
 
9023
331     088106  36      Choctaw numerals        Fischbein       W
 
9024
332     088201  36      cooks   democracy       phony   W
 
9025
333     088203  36      millivolt       Ibero-  cross   FAS
 
9026
334     088204  36      counterpoise    invalids        cleanup 
 
9027
335     088302  37      Gothicism       behavior        conspirator     
 
9028
336     088303  37      feminine        accruing        label   FAS
 
9029
337     088305  37      metaphysically  relics  university      
 
9030
338     088402  37      sanding rackets cleansed        FAS
 
9031
339     088501  36      contributorily  Fischbein       ballgown        
 
9032
340     088502  36      receivers       phony   starlet 
 
9033
341     088503  36      adjourn cross   aqueous 
 
9034
342     098001  58      straggled       cleanup portrayal       A
 
9035
343     098002  58      druggists       conspirator     despising       W
 
9036
344     098003  58      thanking        label   distort W
 
9037
345     098004  58      ostrich university      palmed  
 
9038
346     098005  58      hopelessness    cleansed        faced   
 
9039
347     098006  58      Eurydice        ballgown        silverware      
 
9040
348     141903  29      excitation      starlet assessor        
 
9041
349     098008  58      presumes        aqueous spiders 
 
9042
350     098009  58      imaginable      portrayal       artificially    
 
9043
351     098010  58      concoct despising       reminiscence    
 
9044
352     098011  58      peering distort Mexican 
 
9045
353     098012  58      Phelps  palmed  obnoxious       
 
9046
354     098013  58      ferociousness   faced   fragile 
 
9047
355     098014  58      sentences       silverware      apprehensible   
 
9048
356     098015  58      unlocks assessor        births  
 
9049
357     098016  58      engrossing      spiders garages 
 
9050
358     098017  58      Ruth    artificially    panty   
 
9051
359     098018  58      tying   reminiscence    anteater        
 
9052
360     098019  58      exclaimers      Mexican displacement    A
 
9053
361     098020  58      synergy obnoxious       drovers A
 
9054
362     098021  58      Huey    fragile patenting       A
 
9055
363     098022  58      merging apprehensible   far     A
 
9056
364     098023  58      judges  births  shrieks 
 
9057
365     098024  58      Shylock garages aligning        W
 
9058
366     098025  37      Miltonism       panty   pragmatism      
 
9059
367     106001  36      hen     anteater        fevers  W
 
9060
368     108001  36      honeybee        displacement    reexamines      A
 
9061
369     108002  36      towers  drovers occupancies     
 
9062
370     108003  36      dilutes patenting       sweats  FAS
 
9063
371     108004  36      numerals        far     modulators      
 
9064
372     108005  36      democracy       shrieks demand  W
 
9065
373     108007  36      Ibero-  aligning        Madeira 
 
9066
374     108008  36      invalids        pragmatism      Viennese        W
 
9067
375     108009  36      behavior        fevers  chillier        W
 
9068
376     108010  36      accruing        reexamines      wildcats        FAS
 
9069
377     108011  36      relics  occupancies     gentle  
 
9070
378     108012  36      rackets sweats  Angles  W
 
9071
379     108101  36      Fischbein       modulators      accuracies      
 
9072
380     108102  36      phony   demand  toggle  
 
9073
381     108103  36      cross   Madeira Mendelssohn     W
 
9074
382     108111  50      cleanup Viennese        behaviorally    
 
9075
383     108105  36      conspirator     chillier        Rochford        
 
9076
384     108106  36      label   wildcats        mirror  W
 
9077
385     108107  36      university      gentle  Modula  
 
9078
386     108108  50      cleansed        Angles  clobbering      
 
9079
387     108109  36      ballgown        accuracies      chronography    
 
9080
388     108110  36      starlet toggle  Eskimoizeds     
 
9081
389     108201  36      aqueous Mendelssohn     British W
 
9082
390     108202  36      portrayal       behaviorally    pitfalls        
 
9083
391     108203  36      despising       Rochford        verify  W
 
9084
392     108204  36      distort mirror  scatter FAS
 
9085
393     108205  36      palmed  Modula  Aztecan 
 
9086
394     108301  36      faced   clobbering      acuity  W
 
9087
395     108302  36      silverware      chronography    sinking W
 
9088
396     112101  36      assessor        Eskimoizeds     beasts  FAS
 
9089
397     112102  36      spiders British Witt    W
 
9090
398     113701  36      artificially    pitfalls        physicists      FAS
 
9091
399     116001  36      reminiscence    verify  folksong        A
 
9092
400     116201  36      Mexican scatter strokes FAS
 
9093
401     116301  36      obnoxious       Aztecan crowder 
 
9094
402     116302  36      fragile acuity  merry   
 
9095
403     116601  36      apprehensible   sinking cadenced        
 
9096
404     116602  36      births  beasts  alimony A
 
9097
405     116603  36      garages Witt    principled      A
 
9098
406     116701  36      panty   physicists      golfing 
 
9099
407     116702  36      anteater        folksong        undiscovered    
 
9100
408     118001  36      displacement    strokes irritates       
 
9101
409     118002  36      drovers crowder patriots        A
 
9102
410     118003  36      patenting       merry   rooms   FAS
 
9103
411     118004  36      far     cadenced        towering        W
 
9104
412     118005  36      shrieks alimony displease       
 
9105
413     118006  36      aligning        principled      photosensitive  
 
9106
414     118007  36      pragmatism      golfing inking  
 
9107
415     118008  36      fevers  undiscovered    gainers 
 
9108
416     118101  36      reexamines      irritates       leaning A
 
9109
417     118102  36      occupancies     patriots        hydrant A
 
9110
418     118103  36      sweats  rooms   preserve        
 
9111
419     118202  36      modulators      towering        blinded A
 
9112
420     118203  36      demand  displease       interactions    A
 
9113
421     118204  36      Madeira photosensitive  Barry   
 
9114
422     118302  36      Viennese        inking  whiteness       A
 
9115
423     118304  36      chillier        gainers pastimes        W
 
9116
424     118305  36      wildcats        leaning Edenization     
 
9117
425     118306  36      gentle  hydrant Muscat  
 
9118
426     118307  36      Angles  preserve        assassinated    
 
9119
427     123101  36      accuracies      blinded labeled 
 
9120
428     123102  36      toggle  interactions    glacial A
 
9121
429     123301  36      Mendelssohn     Barry   implied W
 
9122
430     126001  36      behaviorally    whiteness       bibliographies  W
 
9123
431     126002  36      Rochford        pastimes        Buchanan        
 
9124
432     126003  36      mirror  Edenization     forgivably      FAS
 
9125
433     126101  36      Modula  Muscat  innuendo        A
 
9126
434     126301  36      clobbering      assassinated    den     FAS
 
9127
435     126302  36      chronography    labeled submarines      W
 
9128
436     126402  36      Eskimoizeds     glacial mouthful        A
 
9129
437     126601  36      British implied expiring        
 
9130
438     126602  36      pitfalls        bibliographies  unfulfilled     FAS
 
9131
439     126702  36      verify  Buchanan        precession      
 
9132
440     128001  36      scatter forgivably      nullified       
 
9133
441     128002  36      Aztecan innuendo        affects 
 
9134
442     128003  36      acuity  den     Cynthia 
 
9135
443     128004  36      sinking submarines      Chablis A
 
9136
444     128005  36      beasts  mouthful        betterments     FAS
 
9137
445     128007  36      Witt    expiring        advertising     
 
9138
446     128008  36      physicists      unfulfilled     rubies  A
 
9139
447     128009  36      folksong        precession      southwest       FAS
 
9140
448     128010  36      strokes nullified       superstitious   A
 
9141
449     128011  36      crowder affects tabernacle      W
 
9142
450     128012  36      merry   Cynthia silk    A
 
9143
451     128013  36      cadenced        Chablis handsomest      A
 
9144
452     128014  36      alimony betterments     Persian A
 
9145
453     128015  36      principled      advertising     analog  W
 
9146
454     128016  36      golfing rubies  complex W
 
9147
455     128017  36      undiscovered    southwest       Taoist  
 
9148
456     128018  36      irritates       superstitious   suspend 
 
9149
457     128019  36      patriots        tabernacle      relegated       
 
9150
458     128020  36      rooms   silk    awesome W
 
9151
459     128021  36      towering        handsomest      Bruxelles       
 
9152
460     128022  36      displease       Persian imprecisely     A
 
9153
461     128023  36      photosensitive  analog  televise        
 
9154
462     128101  36      inking  complex braking 
 
9155
463     128102  36      gainers Taoist  true    FAS
 
9156
464     128103  36      leaning suspend disappointing   FAS
 
9157
465     128104  36      hydrant relegated       navally W
 
9158
466     128106  36      preserve        awesome circus  
 
9159
467     128107  36      blinded Bruxelles       beetles 
 
9160
468     128108  36      interactions    imprecisely     trumps  
 
9161
469     128202  36      Barry   televise        fourscore       W
 
9162
470     128203  36      whiteness       braking Blackfoots      
 
9163
471     128301  36      pastimes        true    Grady   
 
9164
472     128302  36      Edenization     disappointing   quiets  FAS
 
9165
473     128303  36      Muscat  navally floundered      FAS
 
9166
474     128304  36      assassinated    circus  profundity      W
 
9167
475     128305  36      labeled beetles Garrisonian     W
 
9168
476     128307  36      glacial trumps  Strauss 
 
9169
477     128401  36      implied fourscore       cemented        FAS
 
9170
478     128502  36      bibliographies  Blackfoots      contrition      A
 
9171
479     128503  36      Buchanan        Grady   mutations       
 
9172
480     128504  36      forgivably      quiets  exhibits        W
 
9173
481     128505  36      innuendo        floundered      tits    
 
9174
482     128601  36      den     profundity      mate    A
 
9175
483     128603  36      submarines      Garrisonian     arches  
 
9176
484     128604  36      mouthful        Strauss Moll    
 
9177
485     128702  36      expiring        cemented        ropers  
 
9178
486     128703  36      unfulfilled     contrition      bombast 
 
9179
487     128704  36      precession      mutations       difficultly     A
 
9180
488     138001  36      nullified       exhibits        adsorption      
 
9181
489     138002  36      affects tits    definiteness    FAS
 
9182
490     138003  36      Cynthia mate    cultivation     A
 
9183
491     138004  36      Chablis arches  heals   A
 
9184
492     138005  36      betterments     Moll    Heusen  W
 
9185
493     138006  36      advertising     ropers  target  FAS
 
9186
494     138007  36      rubies  bombast cited   A
 
9187
495     138008  36      southwest       difficultly     congresswoman   W
 
9188
496     138009  36      superstitious   adsorption      Katherine       
 
9189
497     138102  36      tabernacle      definiteness    titter  A
 
9190
498     138103  36      silk    cultivation     aspire  A
 
9191
499     138104  36      handsomest      heals   Mardis  
 
9192
500     138105  36      Persian Heusen  Nadia   W
 
9193
501     138201  36      analog  target  estimating      FAS
 
9194
502     138302  36      complex cited   stuck   A
 
9195
503     138303  36      Taoist  congresswoman   fifteenth       A
 
9196
504     138304  36      suspend Katherine       Colombo 
 
9197
505     138401  29      relegated       titter  survey  A
 
9198
506     140102  29      awesome aspire  staffing        
 
9199
507     140103  29      Bruxelles       Mardis  obtain  
 
9200
508     140104  29      imprecisely     Nadia   loaded  
 
9201
509     140105  29      televise        estimating      slaughtered     
 
9202
510     140201  29      braking stuck   lights  A
 
9203
511     140701  29      true    fifteenth       circumference   
 
9204
512     141501  29      disappointing   Colombo dull    A
 
9205
513     141502  29      navally survey  weekly  A
 
9206
514     141901  29      circus  staffing        wetness 
 
9207
515     141902  29      beetles obtain  visualized      
 
9208
516     142101  29      trumps  loaded  Tannenbaum      
 
9209
517     142102  29      fourscore       slaughtered     moribund        
 
9210
518     142103  29      Blackfoots      lights  demultiplex     
 
9211
519     142701  29      Grady   circumference   lockings        
 
9212
520     143001  29      quiets  dull    thugs   FAS
 
9213
521     143501  29      floundered      weekly  unnerves        
 
9214
522     143502  29      profundity      wetness abut    
 
9215
523     148001  29      Garrisonian     visualized      Chippewa        A
 
9216
524     148002  29      Strauss Tannenbaum      stratifications A
 
9217
525     148003  29      cemented        moribund        signaled        
 
9218
526     148004  29      contrition      demultiplex     Italianizes     A
 
9219
527     148005  29      mutations       lockings        algorithmic     A
 
9220
528     148006  29      exhibits        thugs   paranoid        FAS
 
9221
529     148007  29      tits    unnerves        camping A
 
9222
530     148009  29      mate    abut    signifying      A
 
9223
531     148010  29      arches  Chippewa        Patrice W
 
9224
532     148011  29      Moll    stratifications search  A
 
9225
533     148012  29      ropers  signaled        Angeles A
 
9226
534     148013  29      bombast Italianizes     semblance       
 
9227
535     148023  36      difficultly     algorithmic     taxed   
 
9228
536     148015  29      adsorption      paranoid        Beatrice        
 
9229
537     148016  29      definiteness    camping retrace 
 
9230
538     148017  29      cultivation     signifying      lockout 
 
9231
539     148018  29      heals   Patrice grammatic       
 
9232
540     148019  29      Heusen  search  helmsman        
 
9233
541     148020  29      target  Angeles uniform W
 
9234
542     148021  29      cited   semblance       hamming 
 
9235
543     148022  29      congresswoman   taxed   disobedience    
 
9236
544     148101  29      Katherine       Beatrice        captivated      A
 
9237
545     148102  29      titter  retrace transferals     A
 
9238
546     148201  29      aspire  lockout cartographer    A
 
9239
547     148401  29      Mardis  grammatic       aims    FAS
 
9240
548     148402  29      Nadia   helmsman        Pakistani       
 
9241
549     148501  29      estimating      uniform burglarized     FAS
 
9242
550     148502  29      stuck   hamming saucepans       A
 
9243
551     148503  29      fifteenth       disobedience    lacerating      A
 
9244
552     148504  29      Colombo captivated      corny   
 
9245
553     148601  29      survey  transferals     megabytes       FAS
 
9246
554     148602  29      staffing        cartographer    chancellor      
 
9247
555     150701  29      obtain  aims    bulk    A
 
9248
556     152101  29      loaded  Pakistani       commits A
 
9249
557     152102  29      slaughtered     burglarized     meson   W
 
9250
558     155202  36      lights  saucepans       deputies        
 
9251
559     155203  29      circumference   lacerating      northeaster     A
 
9252
560     155204  29      dull    corny   dipole  
 
9253
561     155205  29      weekly  megabytes       machining       0
 
9254
562     156001  29      wetness chancellor      therefore       
 
9255
563     156002  29      visualized      bulk    Telefunken      
 
9256
564     156102  29      Tannenbaum      commits salvaging       
 
9257
565     156301  29      moribund        meson   Corinthianizes  A
 
9258
566     156302  29      demultiplex     deputies        restlessly      A
 
9259
567     156303  29      lockings        northeaster     bromides        
 
9260
568     156304  29      thugs   dipole  generalized     A
 
9261
569     156305  29      unnerves        machining       mishaps 
 
9262
570     156306  29      abut    therefore       quelling        
 
9263
571     156501  29      Chippewa        Telefunken      spiritual       A
 
9264
572     158001  29      stratifications salvaging       beguiles        FAS
 
9265
573     158002  29      signaled        Corinthianizes  Trobriand       FAS
 
9266
574     158101  29      Italianizes     restlessly      fleeing A
 
9267
575     158102  29      algorithmic     bromides        Armour  A
 
9268
576     158103  29      paranoid        generalized     chin    A
 
9269
577     158201  29      camping mishaps provers A
 
9270
578     158202  29      signifying      quelling        aeronautic      A
 
9271
579     158203  29      Patrice spiritual       voltage W
 
9272
580     158204  29      search  beguiles        sash    
 
9273
581     158301  29      Angeles Trobriand       anaerobic       A
 
9274
582     158302  29      semblance       fleeing simultaneous    A
 
9275
583     158303  29      taxed   Armour  accumulating    A
 
9276
584     158304  29      Beatrice        chin    Medusan A
 
9277
585     158305  29      retrace provers shouted A
 
9278
586     158306  29      lockout aeronautic      freakish        
 
9279
587     158501  29      grammatic       voltage index   FAS
 
9280
588     160301  29      helmsman        sash    commercially    
 
9281
589     166101  50      uniform anaerobic       mistiness       A
 
9282
590     166102  50      hamming simultaneous    endpoint        
 
9283
591     168001  29      disobedience    accumulating    straight        A
 
9284
592     168002  29      captivated      Medusan flurried        
 
9285
593     168003  29      transferals     shouted denotative      A
 
9286
594     168101  29      cartographer    freakish        coming  FAS
 
9287
595     168102  29      aims    index   commencements   FAS
 
9288
596     168103  29      Pakistani       commercially    gentleman       
 
9289
597     168104  29      burglarized     mistiness       gifted  
 
9290
598     168202  29      saucepans       endpoint        Shanghais       
 
9291
599     168301  29      lacerating      straight        sportswriting   A
 
9292
600     168502  29      corny   flurried        sloping A
 
9293
601     168503  29      megabytes       denotative      navies  
 
9294
602     168601  29      chancellor      coming  leaflet A
 
9295
603     173001  40      bulk    commencements   shooter 
 
9296
604     173701  40      commits gentleman       Joplin  FAS
 
9297
605     173702  40      meson   gifted  babies  
 
9298
606     176001  40      deputies        Shanghais       subdivision     FAS
 
9299
607     176101  40      northeaster     sportswriting   burstiness      W
 
9300
608     176201  40      dipole  sloping belted  FAS
 
9301
609     176401  40      machining       navies  assails FAS
 
9302
610     176501  40      therefore       leaflet admiring        W
 
9303
611     176601  40      Telefunken      shooter swaying 0
 
9304
612     176602  40      salvaging       Joplin  Goldstine       FAS
 
9305
613     176603  40      Corinthianizes  babies  fitting 
 
9306
614     178001  40      restlessly      subdivision     Norwalk W
 
9307
615     178002  40      bromides        burstiness      weakening       W
 
9308
616     178003  40      generalized     belted  analogy FAS
 
9309
617     178004  40      mishaps assails deludes 
 
9310
618     178005  40      quelling        admiring        cokes   
 
9311
619     178006  40      spiritual       swaying Clayton 
 
9312
620     178007  40      beguiles        Goldstine       exhausts        
 
9313
621     178008  40      Trobriand       fitting causality       
 
9314
622     178101  40      fleeing Norwalk sating  FAS
 
9315
623     178102  40      Armour  weakening       icon    
 
9316
624     178103  40      chin    analogy throttles       
 
9317
625     178201  40      provers deludes communicants    FAS
 
9318
626     178202  40      aeronautic      cokes   dehydrate       FAS
 
9319
627     178301  40      voltage Clayton priceless       FAS
 
9320
628     178302  40      sash    exhausts        publicly        
 
9321
629     178401  40      anaerobic       causality       incidentals     FAS
 
9322
630     178402  40      simultaneous    sating  commonplace     
 
9323
631     178403  40      accumulating    icon    mumbles 
 
9324
632     178404  40      Medusan throttles       furthermore     W
 
9325
633     178501  40      shouted communicants    cautioned       W
 
9326
634     186002  37      freakish        dehydrate       parametrized    A
 
9327
635     186102  37      index   priceless       registration    A
 
9328
636     186201  40      commercially    publicly        sadly   FAS
 
9329
637     186202  40      mistiness       incidentals     positioning     
 
9330
638     186203  40      endpoint        commonplace     babysitting     
 
9331
639     186302  37      straight        mumbles eternal A
 
9332
640     188007  37      flurried        furthermore     hoarder 
 
9333
641     188008  37      denotative      cautioned       congregates     
 
9334
642     188009  37      coming  parametrized    rains   
 
9335
643     188010  37      commencements   registration    workers W
 
9336
644     188011  37      gentleman       sadly   sags    A
 
9337
645     188012  37      gifted  positioning     unplug  W
 
9338
646     188013  37      Shanghais       babysitting     garage  A
 
9339
647     188014  37      sportswriting   eternal boulder A
 
9340
648     188015  37      sloping hoarder hollowly        A
 
9341
649     188016  37      navies  congregates     specifics       
 
9342
650     188017  37      leaflet rains   Teresa  
 
9343
651     188102  37      shooter workers Winsett 
 
9344
652     188103  37      Joplin  sags    convenient      A
 
9345
653     188202  37      babies  unplug  buckboards      FAS
 
9346
654     188301  40      subdivision     garage  amenities       
 
9347
655     188302  40      burstiness      boulder resplendent     FAS
 
9348
656     188303  40      belted  hollowly        priding FAS
 
9349
657     188401  37      assails specifics       configurations  
 
9350
658     188402  37      admiring        Teresa  untidiness      A
 
9351
659     188503  37      swaying Winsett Brice   W
 
9352
660     188504  37      Goldstine       convenient      sews    FAS
 
9353
661     188505  37      fitting buckboards      participated    
 
9354
662     190701  37      Norwalk amenities       Simon   FAS
 
9355
663     190703  50      weakening       resplendent     certificates    
 
9356
664     191701  37      analogy priding Fitzpatrick     
 
9357
665     191702  37      deludes configurations  Evanston        A
 
9358
666     191703  37      cokes   untidiness      misted  
 
9359
667     196001  37      Clayton Brice   textures        A
 
9360
668     196002  37      exhausts        sews    save    
 
9361
669     196003  37      causality       participated    count   
 
9362
670     196101  37      sating  Simon   rightful        A
 
9363
671     196103  37      icon    certificates    chaperone       
 
9364
672     196104  37      throttles       Fitzpatrick     Lizzy   A
 
9365
673     196201  37      communicants    Evanston        clenched        A
 
9366
674     196202  37      dehydrate       misted  effortlessly    
 
9367
675     196203  37      priceless       textures        accessed        
 
9368
676     198001  37      publicly        save    beaters A
 
9369
677     198003  37      incidentals     count   Hornblower      FAS
 
9370
678     198004  37      commonplace     rightful        vests   A
 
9371
679     198005  37      mumbles chaperone       indulgences     FAS
 
9372
680     198006  37      furthermore     Lizzy   infallibly      A
 
9373
681     198007  37      cautioned       clenched        unwilling       FAS
 
9374
682     198008  37      parametrized    effortlessly    excrete FAS
 
9375
683     198009  37      registration    accessed        spools  A
 
9376
684     198010  37      sadly   beaters crunches        FAS
 
9377
685     198011  37      positioning     Hornblower      overestimating  FAS
 
9378
686     198012  37      babysitting     vests   ineffective     
 
9379
687     198013  37      eternal indulgences     humiliation     A
 
9380
688     198014  37      hoarder infallibly      sophomore       
 
9381
689     198015  37      congregates     unwilling       star    
 
9382
690     198017  37      rains   excrete rifles  
 
9383
691     198018  37      workers spools  dialysis        
 
9384
692     198019  37      sags    crunches        arriving        
 
9385
693     198020  37      unplug  overestimating  indulge 
 
9386
694     198021  37      garage  ineffective     clockers        
 
9387
695     198022  37      boulder humiliation     languages       
 
9388
696     198023  50      hollowly        sophomore       Antarctica      A
 
9389
697     198024  37      specifics       star    percentage      
 
9390
698     198101  37      Teresa  rifles  ceiling A
 
9391
699     198103  37      Winsett dialysis        specification   
 
9392
700     198105  37      convenient      arriving        regimented      A
 
9393
701     198106  37      buckboards      indulge ciphers 
 
9394
702     198201  37      amenities       clockers        pictures        A
 
9395
703     198204  37      resplendent     languages       serpents        A
 
9396
704     198301  53      priding Antarctica      allot   A
 
9397
705     198302  53      configurations  percentage      realized        A
 
9398
706     198303  53      untidiness      ceiling mayoral A
 
9399
707     198304  53      Brice   specification   opaquely        A
 
9400
708     198401  37      sews    regimented      hostess FAS
 
9401
709     198402  37      participated    ciphers fiftieth        
 
9402
710     198403  37      Simon   pictures        incorrectly     
 
9403
711     202101  37      certificates    serpents        decomposition   FAS
 
9404
712     202301  37      Fitzpatrick     allot   stranglings     
 
9405
713     202302  37      Evanston        realized        mixture FAS
 
9406
714     202303  37      misted  mayoral electroencephalography  FAS
 
9407
715     202304  37      textures        opaquely        similarities    FAS
 
9408
716     202305  37      save    hostess charges W
 
9409
717     202601  37      count   fiftieth        freest  FAS
 
9410
718     202602  37      rightful        incorrectly     Greenberg       FAS
 
9411
719     202605  37      chaperone       decomposition   tinting 
 
9412
720     202606  37      Lizzy   stranglings     expelled        W
 
9413
721     202607  37      clenched        mixture warm    
 
9414
722     202901  37      effortlessly    electroencephalography  smoothed        
 
9415
723     202902  37      accessed        similarities    deductions      FAS
 
9416
724     202903  37      beaters charges Romano  W
 
9417
725     202904  37      Hornblower      freest  bitterroot      
 
9418
726     202907  37      vests   Greenberg       corset  
 
9419
727     202908  37      indulgences     tinting securing        
 
9420
728     203101  37      infallibly      expelled        environing      FAS
 
9421
729     203103  37      unwilling       warm    cute    
 
9422
730     203104  37      excrete smoothed        Crays   
 
9423
731     203105  37      spools  deductions      heiress FAS
 
9424
732     203401  37      crunches        Romano  inform  FAS
 
9425
733     203402  37      overestimating  bitterroot      avenge  
 
9426
734     203404  37      ineffective     corset  universals      
 
9427
735     203901  37      humiliation     securing        Kinsey  W
 
9428
736     203902  37      sophomore       environing      ravines FAS
 
9429
737     203903  37      star    cute    bestseller      
 
9430
738     203906  37      rifles  Crays   equilibrium     
 
9431
739     203907  37      dialysis        heiress extents 0
 
9432
740     203908  37      arriving        inform  relatively      
 
9433
741     203909  37      indulge avenge  pressure        FAS
 
9434
742     206101  37      clockers        universals      critiques       FAS
 
9435
743     206201  37      languages       Kinsey  befouled        
 
9436
744     206202  37      Antarctica      ravines rightfully      FAS
 
9437
745     206203  37      percentage      bestseller      mechanizing     FAS
 
9438
746     206206  37      ceiling equilibrium     Latinizes       
 
9439
747     206207  37      specification   extents timesharing     
 
9440
748     206208  37      regimented      relatively      Aden    
 
9441
749     208001  37      ciphers pressure        embassies       
 
9442
750     208002  37      pictures        critiques       males   FAS
 
9443
751     208003  37      serpents        befouled        shapelessly     FAS
 
9444
752     208004  37      allot   rightfully      genres  FAS
 
9445
753     208008  37      realized        mechanizing     mastering       
 
9446
754     208009  37      mayoral Latinizes       Newtonian       
 
9447
755     208010  37      opaquely        timesharing     finishers       FAS
 
9448
756     208011  37      hostess Aden    abates  
 
9449
757     208101  37      fiftieth        embassies       teem    
 
9450
758     208102  37      incorrectly     males   kiting  FAS
 
9451
759     208103  37      decomposition   shapelessly     stodgy  FAS
 
9452
760     208104  37      stranglings     genres  scalps  FAS
 
9453
761     208105  37      mixture mastering       feed    FAS
 
9454
762     208110  37      electroencephalography  Newtonian       guitars 
 
9455
763     208111  37      similarities    finishers       airships        
 
9456
764     208112  37      charges abates  store   
 
9457
765     208113  37      freest  teem    denounces       
 
9458
766     208201  37      Greenberg       kiting  Pyle    FAS
 
9459
767     208203  37      tinting stodgy  Saxony  
 
9460
768     208301  37      expelled        scalps  serializations  FAS
 
9461
769     208302  37      warm    feed    Peruvian        FAS
 
9462
770     208305  37      smoothed        guitars taxonomically   FAS
 
9463
771     208401  37      deductions      airships        kingdom A
 
9464
772     208402  37      Romano  store   stint   A
 
9465
773     208403  37      bitterroot      denounces       Sault   A
 
9466
774     208404  37      corset  Pyle    faithful        
 
9467
775     208501  37      securing        Saxony  Ganymede        FAS
 
9468
776     208502  37      environing      serializations  tidiness        FAS
 
9469
777     208503  37      cute    Peruvian        gainful FAS
 
9470
778     208504  37      Crays   taxonomically   contrary        FAS
 
9471
779     208505  37      heiress kingdom Tipperary       FAS
 
9472
780     210101  37      inform  stint   tropics W
 
9473
781     210102  37      avenge  Sault   theorizers      
 
9474
782     210103  37      universals      faithful        renew   0
 
9475
783     210104  37      Kinsey  Ganymede        already 
 
9476
784     210105  37      ravines tidiness        terminal        
 
9477
785     210106  37      bestseller      gainful Hegelian        
 
9478
786     210107  37      equilibrium     contrary        hypothesizer    
 
9479
787     210401  37      extents Tipperary       warningly       FAS
 
9480
788     213201  37      relatively      tropics journalizing    FAS
 
9481
789     213203  37      pressure        theorizers      nested  
 
9482
790     213204  37      critiques       renew   Lars    
 
9483
791     213205  37      befouled        already saplings        
 
9484
792     213206  37      rightfully      terminal        foothill        
 
9485
793     213207  37      mechanizing     Hegelian        labeled 
 
9486
794     216101  37      Latinizes       hypothesizer    imperiously     FAS
 
9487
795     216103  37      timesharing     warningly       reporters       FAS
 
9488
796     218001  37      Aden    journalizing    furnishings     FAS
 
9489
797     218002  37      embassies       nested  precipitable    FAS
 
9490
798     218003  37      males   Lars    discounts       FAS
 
9491
799     218004  37      shapelessly     saplings        excises FAS
 
9492
800     143503  50      genres  foothill        Stalin  
 
9493
801     218006  37      mastering       labeled despot  FAS
 
9494
802     218007  37      Newtonian       imperiously     ripeness        FAS
 
9495
803     218008  37      finishers       reporters       Arabia  
 
9496
804     218009  37      abates  furnishings     unruly  
 
9497
805     218010  37      teem    precipitable    mournfulness    
 
9498
806     218011  37      kiting  discounts       boom    FAS
 
9499
807     218020  37      stodgy  excises slaughter       A
 
9500
808     218021  50      scalps  Stalin  Sabine  
 
9501
809     218022  37      feed    despot  handy   FAS
 
9502
810     218023  37      guitars ripeness        rural   
 
9503
811     218024  37      airships        Arabia  organizer       
 
9504
812     218101  37      store   unruly  shipyard        FAS
 
9505
813     218102  37      denounces       mournfulness    civics  FAS
 
9506
814     218103  37      Pyle    boom    inaccuracy      FAS
 
9507
815     218201  37      Saxony  slaughter       rules   FAS
 
9508
816     218202  37      serializations  Sabine  juveniles       FAS
 
9509
817     218203  37      Peruvian        handy   comprised       W
 
9510
818     218204  37      taxonomically   rural   investigations  
 
9511
819     218205  37      kingdom organizer       stabilizes      A
 
9512
820     218301  37      stint   shipyard        seminaries      FAS
 
9513
821     218302  37      Sault   civics  Hunter  A
 
9514
822     218401  37      faithful        inaccuracy      sporty  FAS
 
9515
823     218402  37      Ganymede        rules   test    FAS
 
9516
824     218403  37      tidiness        juveniles       weasels 
 
9517
825     218404  37      gainful comprised       CERN    
 
9518
826     218407  37      contrary        investigations  tempering       
 
9519
827     218408  37      Tipperary       stabilizes      afore   FAS
 
9520
828     218409  37      tropics seminaries      Galatean        
 
9521
829     218410  37      theorizers      Hunter  techniques      W
 
9522
830     226001  37      renew   sporty  error   
 
9523
831     226002  37      already test    veranda 
 
9524
832     226003  37      terminal        weasels severely        
 
9525
833     226004  37      Hegelian        CERN    Cassites        FAS
 
9526
834     226005  37      hypothesizer    tempering       forthcoming     
 
9527
835     226006  37      warningly       afore   guides  
 
9528
836     226007  37      journalizing    Galatean        vanish  FAS
 
9529
837     226008  37      nested  techniques      lied    A
 
9530
838     226203  37      Lars    error   sawtooth        FAS
 
9531
839     226204  37      saplings        veranda fated   FAS
 
9532
840     226205  37      foothill        severely        gradually       
 
9533
841     226206  37      labeled Cassites        widens  
 
9534
842     226207  37      imperiously     forthcoming     preclude        
 
9535
843     226208  37      reporters       guides  Jobrel  
 
9536
844     226209  37      furnishings     vanish  hooker  
 
9537
845     226210  37      precipitable    lied    rainstorm       
 
9538
846     226211  37      discounts       sawtooth        disconnects     
 
9539
847     228001  37      excises fated   cruelty 
 
9540
848     228004  37      Stalin  gradually       exponentials    A
 
9541
849     228005  37      despot  widens  affective       A
 
9542
850     228006  37      ripeness        preclude        arteries        
 
9543
851     228007  37      Arabia  Jobrel  Crosby  FAS
 
9544
852     228008  37      unruly  hooker  acquaint        
 
9545
853     228009  37      mournfulness    rainstorm       evenhandedly    
 
9546
854     228101  37      boom    disconnects     percentage      
 
9547
855     228108  37      slaughter       cruelty disobedience    
 
9548
856     228109  37      Sabine  exponentials    humility        
 
9549
857     228110  37      handy   affective       gleaning        A
 
9550
858     228111  37      rural   arteries        petted  A
 
9551
859     228112  37      organizer       Crosby  bloater A
 
9552
860     228113  37      shipyard        acquaint        minion  A
 
9553
861     228114  37      civics  evenhandedly    marginal        A
 
9554
862     228115  37      inaccuracy      percentage      apiary  A
 
9555
863     228116  37      rules   disobedience    measures        
 
9556
864     228117  37      juveniles       humility        precaution      
 
9557
865     228118  37      comprised       gleaning        repelled        
 
9558
866     228119  37      investigations  petted  primary FAS
 
9559
867     228120  37      stabilizes      bloater coverings       
 
9560
868     228121  37      seminaries      minion  Artemia A
 
9561
869     228122  37      Hunter  marginal        navigate        
 
9562
870     228201  37      sporty  apiary  spatial 
 
9563
871     228206  37      test    measures        Gurkha  
 
9564
872     228207  37      weasels precaution      meanwhile       A
 
9565
873     228208  37      CERN    repelled        Melinda A
 
9566
874     228209  37      tempering       primary Butterfield     
 
9567
875     228210  37      afore   coverings       Aldrich A
 
9568
876     228211  37      Galatean        Artemia previewing      A
 
9569
877     228212  37      techniques      navigate        glut    A
 
9570
878     228213  37      error   spatial unaffected      
 
9571
879     228214  37      veranda Gurkha  inmate  
 
9572
880     228301  37      severely        meanwhile       mineral 
 
9573
881     228305  37      Cassites        Melinda impending       A
 
9574
882     228306  37      forthcoming     Butterfield     meditation      A
 
9575
883     228307  37      guides  Aldrich ideas   
 
9576
884     228308  37      vanish  previewing      miniaturizes    W
 
9577
885     228309  37      lied    glut    lewdly  
 
9578
886     228310  37      sawtooth        unaffected      title   
 
9579
887     228311  37      fated   inmate  youthfulness    
 
9580
888     228312  37      gradually       mineral creak   FAS
 
9581
889     228313  37      widens  impending       Chippewa        
 
9582
890     228314  37      preclude        meditation      clamored        
 
9583
891     228401  65      Jobrel  ideas   freezes 
 
9584
892     228402  65      hooker  miniaturizes    forgivably      FAS
 
9585
893     228403  65      rainstorm       lewdly  reduce  FAS
 
9586
894     228404  65      disconnects     title   McGovern        W
 
9587
895     228405  65      cruelty youthfulness    Nazis   W
 
9588
896     228406  65      exponentials    creak   epistle W
 
9589
897     228407  65      affective       Chippewa        socializes      W
 
9590
898     228408  65      arteries        clamored        conceptions     
 
9591
899     228409  65      Crosby  freezes Kevin   
 
9592
900     228410  65      acquaint        forgivably      uncovering      
 
9593
901     230301  37      evenhandedly    reduce  chews   FAS
 
9594
902     230302  37      percentage      McGovern        appendixes      FAS
 
9595
903     230303  37      disobedience    Nazis   raining 
 
9596
904     018062  37      humility        epistle infest  
 
9597
905     230501  37      gleaning        socializes      compartment     
 
9598
906     230502  37      petted  conceptions     minting 
 
9599
907     230503  37      bloater Kevin   ducks   
 
9600
908     230504  37      minion  uncovering      roped   A
 
9601
909     230505  37      marginal        chews   waltz   
 
9602
910     230506  37      apiary  appendixes      Lillian 
 
9603
911     230507  37      measures        raining repressions     A
 
9604
912     230508  37      precaution      infest  chillingly      
 
9605
913     230509  37      repelled        compartment     noncritical     
 
9606
914     230901  37      primary minting lithograph      
 
9607
915     230902  37      coverings       ducks   spongers        
 
9608
916     230903  37      Artemia roped   parenthood      
 
9609
917     230904  37      navigate        waltz   posed   
 
9610
918     230905  37      spatial Lillian instruments     
 
9611
919     230906  37      Gurkha  repressions     filial  
 
9612
920     230907  37      meanwhile       chillingly      fixedly 
 
9613
921     230908  37      Melinda noncritical     relives 
 
9614
922     230909  37      Butterfield     lithograph      Pandora 
 
9615
923     230910  37      Aldrich spongers        watering        A
 
9616
924     230911  37      previewing      parenthood      ungrateful      
 
9617
925     230912  37      glut    posed   secures 
 
9618
926     230913  37      unaffected      instruments     chastisers      
 
9619
927     230914  37      inmate  filial  icon    
 
9620
928     231304  37      mineral fixedly reuniting       A
 
9621
929     231305  37      impending       relives imagining       A
 
9622
930     231306  37      meditation      Pandora abiding A
 
9623
931     231307  37      ideas   watering        omnisciently    
 
9624
932     231308  37      miniaturizes    ungrateful      Britannic       
 
9625
933     231309  37      lewdly  secures scholastics     A
 
9626
934     231310  37      title   chastisers      mechanics       A
 
9627
935     231311  37      youthfulness    icon    humidly A
 
9628
936     231312  37      creak   reuniting       masterpiece     
 
9629
937     231313  37      Chippewa        imagining       however 
 
9630
938     231314  37      clamored        abiding Mendelian       
 
9631
939     231315  37      freezes omnisciently    jarred  
 
9632
940     232102  37      forgivably      Britannic       scolds  
 
9633
941     232103  37      reduce  scholastics     infatuate       
 
9634
942     232104  37      McGovern        mechanics       willed  A
 
9635
943     232105  37      Nazis   humidly joyfully        
 
9636
944     232106  37      epistle masterpiece     Microsoft       
 
9637
945     232107  37      socializes      however fibrosities     
 
9638
946     232108  37      conceptions     Mendelian       Baltimorean     
 
9639
947     232601  37      Kevin   jarred  equestrian      
 
9640
948     232602  37      uncovering      scolds  Goodrich        
 
9641
949     232603  37      chews   infatuate       apish   A
 
9642
950     232605  37      appendixes      willed  Adlerian        
 
9643
5950    1232605 37      appendixes      willed  Adlerian        
 
9644
5951    1232606 37      appendixes      willed  Adlerian        
 
9645
5952    1232607 37      appendixes      willed  Adlerian        
 
9646
5953    1232608 37      appendixes      willed  Adlerian        
 
9647
5954    1232609 37      appendixes      willed  Adlerian        
 
9648
951     232606  37      raining joyfully        Tropez  
 
9649
952     232607  37      infest  Microsoft       nouns   
 
9650
953     232608  37      compartment     fibrosities     distracting     
 
9651
954     232609  37      minting Baltimorean     mutton  
 
9652
955     236104  37      ducks   equestrian      bridgeable      A
 
9653
956     236105  37      roped   Goodrich        stickers        A
 
9654
957     236106  37      waltz   apish   transcontinental        A
 
9655
958     236107  37      Lillian Adlerian        amateurish      
 
9656
959     236108  37      repressions     Tropez  Gandhian        
 
9657
960     236109  37      chillingly      nouns   stratified      
 
9658
961     236110  37      noncritical     distracting     chamberlains    
 
9659
962     236111  37      lithograph      mutton  creditably      
 
9660
963     236112  37      spongers        bridgeable      philosophic     
 
9661
964     236113  37      parenthood      stickers        ores    
 
9662
965     238005  37      posed   transcontinental        Carleton        
 
9663
966     238006  37      instruments     amateurish      tape    A
 
9664
967     238007  37      filial  Gandhian        afloat  A
 
9665
968     238008  37      fixedly stratified      goodness        A
 
9666
969     238009  37      relives chamberlains    welcoming       
 
9667
970     238010  37      Pandora creditably      Pinsky  FAS
 
9668
971     238011  37      watering        philosophic     halting 
 
9669
972     238012  37      ungrateful      ores    bibliography    
 
9670
973     238013  37      secures Carleton        decoding        
 
9671
974     240401  41      chastisers      tape    variance        A
 
9672
975     240402  41      icon    afloat  allowed A
 
9673
976     240901  41      reuniting       goodness        dire    A
 
9674
977     240902  41      imagining       welcoming       dub     A
 
9675
978     241801  41      abiding Pinsky  poisoning       
 
9676
979     242101  41      omnisciently    halting Iraqis  A
 
9677
980     242102  41      Britannic       bibliography    heaving 
 
9678
981     242201  41      scholastics     decoding        population      A
 
9679
982     242202  41      mechanics       variance        bomb    A
 
9680
983     242501  41      humidly allowed Majorca A
 
9681
984     242502  41      masterpiece     dire    Gershwins       
 
9682
985     246201  41      however dub     explorers       
 
9683
986     246202  41      Mendelian       poisoning       libretto        A
 
9684
987     246203  41      jarred  Iraqis  occurred        
 
9685
988     246204  41      scolds  heaving Lagos   
 
9686
989     246205  41      infatuate       population      rats    
 
9687
990     246301  41      willed  bomb    bankruptcies    A
 
9688
991     246302  41      joyfully        Majorca crying  
 
9689
992     248001  41      Microsoft       Gershwins       unexpected      
 
9690
993     248002  41      fibrosities     explorers       accessed        A
 
9691
994     248003  41      Baltimorean     libretto        colorful        A
 
9692
995     248004  41      equestrian      occurred        versatility     A
 
9693
996     248005  41      Goodrich        Lagos   cosy    
 
9694
997     248006  41      apish   rats    Darius  A
 
9695
998     248007  41      Adlerian        bankruptcies    mastering       A
 
9696
999     248008  41      Tropez  crying  Asiaticizations A
 
9697
1000    248009  41      nouns   unexpected      offerers        A
 
9698
1001    248010  41      distracting     accessed        uncles  A
 
9699
1002    248011  41      mutton  colorful        sleepwalk       
 
9700
1003    248012  41      bridgeable      versatility     Ernestine       
 
9701
1004    248013  41      stickers        cosy    checksumming    
 
9702
1005    248014  41      transcontinental        Darius  stopped 
 
9703
1006    248015  41      amateurish      mastering       sicker  
 
9704
1007    248016  41      Gandhian        Asiaticizations Italianization  
 
9705
1008    248017  41      stratified      offerers        alphabetic      
 
9706
1009    248018  41      chamberlains    uncles  pharmaceutic    
 
9707
1010    248019  41      creditably      sleepwalk       creator 
 
9708
1011    248020  41      philosophic     Ernestine       chess   
 
9709
1012    248021  41      ores    checksumming    charcoal        
 
9710
1013    248101  41      Carleton        stopped Epiphany        A
 
9711
1014    248102  41      tape    sicker  bulldozes       A
 
9712
1015    248201  41      afloat  Italianization  Pygmalion       A
 
9713
1016    248202  41      goodness        alphabetic      caressing       A
 
9714
1017    248203  41      welcoming       pharmaceutic    Palestine       A
 
9715
1018    248204  41      Pinsky  creator regimented      A
 
9716
1019    248205  41      halting chess   scars   A
 
9717
1020    248206  41      bibliography    charcoal        realest A
 
9718
1021    248207  41      decoding        Epiphany        diffusing       A
 
9719
1022    248208  41      variance        bulldozes       clubroom        A
 
9720
1023    248209  41      allowed Pygmalion       Blythe  A
 
9721
1024    248210  41      dire    caressing       ahead   
 
9722
1025    248211  50      dub     Palestine       reviver 
 
9723
1026    250501  34      poisoning       regimented      retransmitting  A
 
9724
1027    250502  34      Iraqis  scars   landslide       
 
9725
1028    250503  34      heaving realest Eiffel  
 
9726
1029    250504  34      population      diffusing       absentee        
 
9727
1030    250505  34      bomb    clubroom        aye     
 
9728
1031    250601  34      Majorca Blythe  forked  A
 
9729
1032    250602  34      Gershwins       ahead   Peruvianizes    
 
9730
1033    250603  34      explorers       reviver clerked 
 
9731
1034    250604  34      libretto        retransmitting  tutor   
 
9732
1035    250605  34      occurred        landslide       boulevard       
 
9733
1036    251001  34      Lagos   Eiffel  shuttered       
 
9734
1037    251002  34      rats    absentee        quotes  A
 
9735
1038    251003  34      bankruptcies    aye     Caltech 
 
9736
1039    251004  34      crying  forked  Mossberg        
 
9737
1040    251005  34      unexpected      Peruvianizes    kept    
 
9738
1041    251301  34      accessed        clerked roundly 
 
9739
1042    251302  34      colorful        tutor   features        A
 
9740
1043    251303  34      versatility     boulevard       imaginable      A
 
9741
1044    251304  34      cosy    shuttered       controller      
 
9742
1045    251305  34      Darius  quotes  racial  
 
9743
1046    251401  34      mastering       Caltech uprisings       A
 
9744
1047    251402  34      Asiaticizations Mossberg        narrowed        A
 
9745
1048    251403  34      offerers        kept    cannot  A
 
9746
1049    251404  34      uncles  roundly vest    
 
9747
1050    251405  34      sleepwalk       features        famine  
 
9748
1051    251406  34      Ernestine       imaginable      sugars  
 
9749
1052    251801  34      checksumming    controller      exterminated    A
 
9750
1053    251802  34      stopped racial  belays  
 
9751
1054    252101  34      sicker  uprisings       Hodges  A
 
9752
1055    252102  34      Italianization  narrowed        translatable    
 
9753
1056    252301  34      alphabetic      cannot  duality A
 
9754
1057    252302  34      pharmaceutic    vest    recording       A
 
9755
1058    252303  34      creator famine  rouses  A
 
9756
1059    252304  34      chess   sugars  poison  
 
9757
1060    252305  34      charcoal        exterminated    attitude        
 
9758
1061    252306  34      Epiphany        belays  dusted  
 
9759
1062    252307  34      bulldozes       Hodges  encompasses     
 
9760
1063    252308  34      Pygmalion       translatable    presentation    
 
9761
1064    252309  34      caressing       duality Kantian 
 
9762
1065    256001  34      Palestine       recording       imprecision     A
 
9763
1066    256002  34      regimented      rouses  saving  
 
9764
1067    256003  34      scars   poison  maternal        
 
9765
1068    256004  34      realest attitude        hewed   
 
9766
1069    256005  34      diffusing       dusted  kerosene        
 
9767
1070    258001  34      clubroom        encompasses     Cubans  
 
9768
1071    258002  34      Blythe  presentation    photographers   
 
9769
1072    258003  34      ahead   Kantian nymph   A
 
9770
1073    258004  34      reviver imprecision     bedlam  A
 
9771
1074    258005  34      retransmitting  saving  north   A
 
9772
1075    258006  34      landslide       maternal        Schoenberg      A
 
9773
1076    258007  34      Eiffel  hewed   botany  A
 
9774
1077    258008  34      absentee        kerosene        curs    
 
9775
1078    258009  34      aye     Cubans  solidification  
 
9776
1079    258010  34      forked  photographers   inheritresses   
 
9777
1080    258011  34      Peruvianizes    nymph   stiller 
 
9778
1081    258101  68      clerked bedlam  t1      A
 
9779
1082    258102  68      tutor   north   suite   A
 
9780
1083    258103  34      boulevard       Schoenberg      ransomer        
 
9781
1084    258104  68      shuttered       botany  Willy   
 
9782
1085    258105  68      quotes  curs    Rena    A
 
9783
1086    258106  68      Caltech solidification  Seattle A
 
9784
1087    258107  68      Mossberg        inheritresses   relaxes A
 
9785
1088    258108  68      kept    stiller exclaim 
 
9786
1089    258109  68      roundly t1      implicated      A
 
9787
1090    258110  68      features        suite   distinguish     
 
9788
1091    258111  68      imaginable      ransomer        assayed 
 
9789
1092    258112  68      controller      Willy   homeowner       
 
9790
1093    258113  68      racial  Rena    and     
 
9791
1094    258201  34      uprisings       Seattle stealth 
 
9792
1095    258202  34      narrowed        relaxes coinciding      A
 
9793
1096    258203  34      cannot  exclaim founder A
 
9794
1097    258204  34      vest    implicated      environing      
 
9795
1098    258205  34      famine  distinguish     jewelry 
 
9796
1099    258301  34      sugars  assayed lemons  A
 
9797
1100    258401  34      exterminated    homeowner       brokenness      A
 
9798
1101    258402  34      belays  and     bedpost A
 
9799
1102    258403  34      Hodges  stealth assurers        A
 
9800
1103    258404  34      translatable    coinciding      annoyers        
 
9801
1104    258405  34      duality founder affixed 
 
9802
1105    258406  34      recording       environing      warbling        
 
9803
1106    258407  34      rouses  jewelry seriously       
 
9804
1107    228123  37      poison  lemons  boasted 
 
9805
1108    250606  34      attitude        brokenness      Chantilly       
 
9806
1109    208405  37      dusted  bedpost Iranizes        
 
9807
1110    212101  37      encompasses     assurers        violinist       
 
9808
1111    218206  37      presentation    annoyers        extramarital    
 
9809
1112    150401  37      Kantian affixed spates  
 
9810
1113    248212  41      imprecision     warbling        cloakroom       
 
9811
1114    128026  00      saving  seriously       gazer   
 
9812
1115    128024  00      maternal        boasted hand    
 
9813
1116    128027  00      hewed   Chantilly       tucked  
 
9814
1117    128025  00      kerosene        Iranizes        gems    
 
9815
1118    128109  00      Cubans  violinist       clinker 
 
9816
1119    128705  00      photographers   extramarital    refiner 
 
9817
1120    126303  00      nymph   spates  callus  
 
9818
1121    128308  00      bedlam  cloakroom       leopards        
 
9819
1122    128204  00      north   gazer   comfortingly    
 
9820
1123    128205  00      Schoenberg      hand    generically     
 
9821
1124    128206  00      botany  tucked  getters 
 
9822
1125    128207  00      curs    gems    sexually        
 
9823
1126    118205  00      solidification  clinker spear   
 
9824
1127    116801  00      inheritresses   refiner serums  
 
9825
1128    116803  00      stiller callus  Italianization  
 
9826
1129    116804  00      t1      leopards        attendants      
 
9827
1130    116802  00      suite   comfortingly    spies   
 
9828
1131    128605  00      ransomer        generically     Anthony 
 
9829
1132    118308  00      Willy   getters planar  
 
9830
1133    113702  00      Rena    sexually        cupped  
 
9831
1134    113703  00      Seattle spear   cleanser        
 
9832
1135    112103  00      relaxes serums  commuters       
 
9833
1136    118009  00      exclaim Italianization  honeysuckle     
 
9834
5136    1118009 00      exclaim Italianization  honeysuckle     
 
9835
1137    138011  00      implicated      attendants      orphanage       
 
9836
1138    138010  00      distinguish     spies   skies   
 
9837
1139    138012  00      assayed Anthony crushers        
 
9838
1140    068304  00      homeowner       planar  Puritan 
 
9839
1141    078009  00      and     cupped  squeezer        
 
9840
1142    108013  00      stealth cleanser        bruises 
 
9841
1143    084004  00      coinciding      commuters       bonfire 
 
9842
1144    083402  00      founder honeysuckle     Colombo 
 
9843
1145    084003  00      environing      orphanage       nondecreasing   
 
9844
1146    088504  00      jewelry skies   innocents       
 
9845
1147    088005  00      lemons  crushers        masked  
 
9846
1148    088007  00      brokenness      Puritan file    
 
9847
1149    088006  00      bedpost squeezer        brush   
 
9848
1150    148025  00      assurers        bruises mutilate        
 
9849
1151    148024  00      annoyers        bonfire mommy   
 
9850
1152    138305  00      affixed Colombo bulkheads       
 
9851
1153    138306  00      warbling        nondecreasing   undeclared      
 
9852
1154    152701  00      seriously       innocents       displacements   
 
9853
1155    148505  00      boasted masked  nieces  
 
9854
1156    158003  00      Chantilly       file    coeducation     
 
9855
1157    156201  00      Iranizes        brush   brassy  
 
9856
1158    156202  00      violinist       mutilate        authenticator   
 
9857
1159    158307  00      extramarital    mommy   Washoe  
 
9858
1160    158402  00      spates  bulkheads       penny   
 
9859
1161    158401  00      cloakroom       undeclared      Flagler 
 
9860
1162    068013  00      gazer   displacements   stoned  
 
9861
1163    068012  00      hand    nieces  cranes  
 
9862
1164    068203  00      tucked  coeducation     masterful       
 
9863
1165    088205  00      gems    brassy  biracial        
 
9864
1166    068704  00      clinker authenticator   steamships      
 
9865
1167    068604  00      refiner Washoe  windmills       
 
9866
1168    158502  00      callus  penny   exploit 
 
9867
1169    123103  00      leopards        Flagler riverfront      
 
9868
1170    148026  00      comfortingly    stoned  sisterly        
 
9869
1171    123302  00      generically     cranes  sharpshoot      
 
9870
1172    076503  00      getters masterful       mittens 
 
9871
1173    126304  00      sexually        biracial        interdependency 
 
9872
1174    068306  00      spear   steamships      policy  
 
9873
1175    143504  00      serums  windmills       unleashing      
 
9874
1176    160201  00      Italianization  exploit pretenders      
 
9875
1177    148028  00      attendants      riverfront      overstatements  
 
9876
1178    148027  00      spies   sisterly        birthed 
 
9877
1179    143505  00      Anthony sharpshoot      opportunism     
 
9878
1180    108014  00      planar  mittens showroom        
 
9879
1181    076104  00      cupped  interdependency compromisingly  
 
9880
1182    078106  00      cleanser        policy  Medicare        
 
9881
1183    126102  00      commuters       unleashing      corresponds     
 
9882
1184    128029  00      honeysuckle     pretenders      hardware        
 
9883
1185    128028  00      orphanage       overstatements  implant 
 
9884
1186    018410  00      skies   birthed Alicia  
 
9885
1187    128110  00      crushers        opportunism     requesting      
 
9886
1188    148506  00      Puritan showroom        produced        
 
9887
1189    123303  00      squeezer        compromisingly  criticizes      
 
9888
1190    123304  00      bruises Medicare        backer  
 
9889
1191    068504  00      bonfire corresponds     positively      
 
9890
1192    068305  00      Colombo hardware        colicky 
 
9891
1193    000000  00      nondecreasing   implant thrillingly     
 
9892
1       000001  00      Omaha   teethe  neat    
 
9893
2       011401  37      breaking        dreaded Steinberg       W
 
9894
3       011402  37      Romans  scholastics     jarring 
 
9895
4       011403  37      intercepted     audiology       tinily  
 
9896
2       011401  37      breaking        dreaded Steinberg       W
 
9897
3       011402  37      Romans  scholastics     jarring 
 
9898
4       011403  37      intercepted     audiology       tinily  
 
9899
1       000001  00      Omaha   teethe  neat    
 
9900
2       011401  37      breaking        dreaded Steinberg       W
 
9901
3       011402  37      Romans  scholastics     jarring 
 
9902
4       011403  37      intercepted     audiology       tinily  
 
9903
2       011401  37      breaking        dreaded Steinberg       W
 
9904
3       011402  37      Romans  scholastics     jarring 
 
9905
4       011403  37      intercepted     audiology       tinily  
 
9906
CHECK TABLE t2;
 
9907
Table   Op      Msg_type        Msg_text
 
9908
test.t2 check   status  OK
 
9909
SELECT * FROM t2;
 
9910
auto    fld1    companynr       fld3    fld4    fld5    fld6
 
9911
1       000001  00      Omaha   teethe  neat    
 
9912
2       011401  37      breaking        dreaded Steinberg       W
 
9913
3       011402  37      Romans  scholastics     jarring 
 
9914
4       011403  37      intercepted     audiology       tinily  
 
9915
5       011501  37      bewilderingly   wallet  balled  
 
9916
6       011701  37      astound parters persist W
 
9917
7       011702  37      admonishing     eschew  attainments     
 
9918
8       011703  37      sumac   quitter fanatic 
 
9919
9       012001  37      flanking        neat    measures        FAS
 
9920
10      012003  37      combed  Steinberg       rightfulness    
 
9921
11      012004  37      subjective      jarring capably 
 
9922
12      012005  37      scatterbrain    tinily  impulsive       
 
9923
13      012301  37      Eulerian        balled  starlet 
 
9924
14      012302  36      dubbed  persist terminators     
 
9925
15      012303  37      Kane    attainments     untying 
 
9926
16      012304  37      overlay fanatic announces       FAS
 
9927
17      012305  37      perturb measures        featherweight   FAS
 
9928
18      012306  37      goblins rightfulness    pessimist       FAS
 
9929
19      012501  37      annihilates     capably daughter        
 
9930
20      012602  37      Wotan   impulsive       decliner        FAS
 
9931
21      012603  37      snatching       starlet lawgiver        
 
9932
22      012604  37      concludes       terminators     stated  
 
9933
23      012605  37      laterally       untying readable        
 
9934
24      012606  37      yelped  announces       attrition       
 
9935
25      012701  37      grazing featherweight   cascade FAS
 
9936
26      012702  37      Baird   pessimist       motors  FAS
 
9937
27      012703  37      celery  daughter        interrogate     
 
9938
28      012704  37      misunderstander decliner        pests   W
 
9939
29      013601  37      handgun lawgiver        stairway        
 
9940
30      013602  37      foldout stated  dopers  FAS
 
9941
31      013603  37      mystic  readable        testicle        W
 
9942
32      013604  37      succumbed       attrition       Parsifal        W
 
9943
33      013605  37      Nabisco cascade leavings        
 
9944
34      013606  37      fingerings      motors  postulation     W
 
9945
35      013607  37      aging   interrogate     squeaking       
 
9946
36      013608  37      afield  pests   contrasted      
 
9947
37      013609  37      ammonium        stairway        leftover        
 
9948
38      013610  37      boat    dopers  whiteners       
 
9949
39      013801  37      intelligibility testicle        erases  W
 
9950
40      013802  37      Augustine       Parsifal        Punjab  W
 
9951
41      013803  37      teethe  leavings        Merritt 
 
9952
42      013804  37      dreaded postulation     Quixotism       
 
9953
43      013901  37      scholastics     squeaking       sweetish        FAS
 
9954
44      016001  37      audiology       contrasted      dogging FAS
 
9955
45      016201  37      wallet  leftover        scornfully      FAS
 
9956
46      016202  37      parters whiteners       bellow  
 
9957
47      016301  37      eschew  erases  bills   
 
9958
48      016302  37      quitter Punjab  cupboard        FAS
 
9959
49      016303  37      neat    Merritt sureties        FAS
 
9960
50      016304  37      Steinberg       Quixotism       puddings        
 
9961
51      018001  37      jarring sweetish        tapestry        
 
9962
52      018002  37      tinily  dogging fetters 
 
9963
53      018003  37      balled  scornfully      bivalves        
 
9964
54      018004  37      persist bellow  incurring       
 
9965
55      018005  37      attainments     bills   Adolph  
 
9966
56      018007  37      fanatic cupboard        pithed  
 
9967
57      018008  37      measures        sureties        emergency       
 
9968
58      018009  37      rightfulness    puddings        Miles   
 
9969
59      018010  37      capably tapestry        trimmings       
 
9970
60      018012  37      impulsive       fetters tragedies       W
 
9971
61      018013  37      starlet bivalves        skulking        W
 
9972
62      018014  37      terminators     incurring       flint   
 
9973
63      018015  37      untying Adolph  flopping        W
 
9974
64      018016  37      announces       pithed  relaxing        FAS
 
9975
65      018017  37      featherweight   emergency       offload FAS
 
9976
66      018018  37      pessimist       Miles   suites  W
 
9977
67      018019  37      daughter        trimmings       lists   FAS
 
9978
68      018020  37      decliner        tragedies       animized        FAS
 
9979
69      018021  37      lawgiver        skulking        multilayer      W
 
9980
70      018022  37      stated  flint   standardizes    FAS
 
9981
71      018023  37      readable        flopping        Judas   
 
9982
72      018024  37      attrition       relaxing        vacuuming       W
 
9983
73      018025  37      cascade offload dentally        W
 
9984
74      018026  37      motors  suites  humanness       W
 
9985
75      018027  37      interrogate     lists   inch    W
 
9986
76      018028  37      pests   animized        Weissmuller     W
 
9987
77      018029  37      stairway        multilayer      irresponsibly   W
 
9988
78      018030  37      dopers  standardizes    luckily FAS
 
9989
79      018032  37      testicle        Judas   culled  W
 
9990
80      018033  37      Parsifal        vacuuming       medical FAS
 
9991
81      018034  37      leavings        dentally        bloodbath       FAS
 
9992
82      018035  37      postulation     humanness       subschema       W
 
9993
83      018036  37      squeaking       inch    animals W
 
9994
84      018037  37      contrasted      Weissmuller     Micronesia      
 
9995
85      018038  37      leftover        irresponsibly   repetitions     
 
9996
86      018039  37      whiteners       luckily Antares 
 
9997
87      018040  37      erases  culled  ventilate       W
 
9998
88      018041  37      Punjab  medical pityingly       
 
9999
89      018042  37      Merritt bloodbath       interdependent  
 
10000
90      018043  37      Quixotism       subschema       Graves  FAS
 
10001
91      018044  37      sweetish        animals neonatal        
 
10002
92      018045  37      dogging Micronesia      scribbled       FAS
 
10003
93      018046  37      scornfully      repetitions     chafe   W
 
10004
94      018048  37      bellow  Antares honoring        
 
10005
95      018049  37      bills   ventilate       realtor 
 
10006
96      018050  37      cupboard        pityingly       elite   
 
10007
97      018051  37      sureties        interdependent  funereal        
 
10008
98      018052  37      puddings        Graves  abrogating      
 
10009
99      018053  50      tapestry        neonatal        sorters 
 
10010
100     018054  37      fetters scribbled       Conley  
 
10011
101     018055  37      bivalves        chafe   lectured        
 
10012
102     018056  37      incurring       honoring        Abraham 
 
10013
103     018057  37      Adolph  realtor Hawaii  W
 
10014
104     018058  37      pithed  elite   cage    
 
10015
105     018059  36      emergency       funereal        hushes  
 
10016
106     018060  37      Miles   abrogating      Simla   
 
10017
107     018061  37      trimmings       sorters reporters       
 
10018
108     018101  37      tragedies       Conley  Dutchman        FAS
 
10019
109     018102  37      skulking        lectured        descendants     FAS
 
10020
110     018103  37      flint   Abraham groupings       FAS
 
10021
111     018104  37      flopping        Hawaii  dissociate      
 
10022
112     018201  37      relaxing        cage    coexist W
 
10023
113     018202  37      offload hushes  Beebe   
 
10024
114     018402  37      suites  Simla   Taoism  
 
10025
115     018403  37      lists   reporters       Connally        
 
10026
116     018404  37      animized        Dutchman        fetched FAS
 
10027
117     018405  37      multilayer      descendants     checkpoints     FAS
 
10028
118     018406  37      standardizes    groupings       rusting 
 
10029
119     018409  37      Judas   dissociate      galling 
 
10030
120     018601  37      vacuuming       coexist obliterates     
 
10031
121     018602  37      dentally        Beebe   traitor 
 
10032
122     018603  37      humanness       Taoism  resumes FAS
 
10033
123     018801  37      inch    Connally        analyzable      FAS
 
10034
124     018802  37      Weissmuller     fetched terminator      FAS
 
10035
125     018803  37      irresponsibly   checkpoints     gritty  FAS
 
10036
126     018804  37      luckily rusting firearm W
 
10037
127     018805  37      culled  galling minima  
 
10038
128     018806  37      medical obliterates     Selfridge       
 
10039
129     018807  37      bloodbath       traitor disable 
 
10040
130     018808  37      subschema       resumes witchcraft      W
 
10041
131     018809  37      animals analyzable      betroth W
 
10042
132     018810  37      Micronesia      terminator      Manhattanize    
 
10043
133     018811  37      repetitions     gritty  imprint 
 
10044
134     018812  37      Antares firearm peeked  
 
10045
135     019101  37      ventilate       minima  swelling        
 
10046
136     019102  37      pityingly       Selfridge       interrelationships      W
 
10047
137     019103  37      interdependent  disable riser   
 
10048
138     019201  37      Graves  witchcraft      Gandhian        W
 
10049
139     030501  37      neonatal        betroth peacock A
 
10050
140     030502  50      scribbled       Manhattanize    bee     A
 
10051
141     030503  37      chafe   imprint kanji   
 
10052
142     030504  37      honoring        peeked  dental  
 
10053
143     031901  37      realtor swelling        scarf   FAS
 
10054
144     036001  37      elite   interrelationships      chasm   A
 
10055
145     036002  37      funereal        riser   insolence       A
 
10056
146     036004  37      abrogating      Gandhian        syndicate       
 
10057
147     036005  37      sorters peacock alike   
 
10058
148     038001  37      Conley  bee     imperial        A
 
10059
149     038002  37      lectured        kanji   convulsion      A
 
10060
150     038003  37      Abraham dental  railway A
 
10061
151     038004  37      Hawaii  scarf   validate        A
 
10062
152     038005  37      cage    chasm   normalizes      A
 
10063
153     038006  37      hushes  insolence       comprehensive   
 
10064
154     038007  37      Simla   syndicate       chewing 
 
10065
155     038008  37      reporters       alike   denizen 
 
10066
156     038009  37      Dutchman        imperial        schemer 
 
10067
157     038010  37      descendants     convulsion      chronicle       
 
10068
158     038011  37      groupings       railway Kline   
 
10069
159     038012  37      dissociate      validate        Anatole 
 
10070
160     038013  37      coexist normalizes      partridges      
 
10071
161     038014  37      Beebe   comprehensive   brunch  
 
10072
162     038015  37      Taoism  chewing recruited       
 
10073
163     038016  37      Connally        denizen dimensions      W
 
10074
164     038017  37      fetched schemer Chicana W
 
10075
165     038018  37      checkpoints     chronicle       announced       
 
10076
166     038101  37      rusting Kline   praised FAS
 
10077
167     038102  37      galling Anatole employing       
 
10078
168     038103  37      obliterates     partridges      linear  
 
10079
169     038104  37      traitor brunch  quagmire        
 
10080
170     038201  37      resumes recruited       western A
 
10081
171     038202  37      analyzable      dimensions      relishing       
 
10082
172     038203  37      terminator      Chicana serving A
 
10083
173     038204  37      gritty  announced       scheduling      
 
10084
174     038205  37      firearm praised lore    
 
10085
175     038206  37      minima  employing       eventful        
 
10086
176     038208  37      Selfridge       linear  arteriole       A
 
10087
177     042801  37      disable quagmire        disentangle     
 
10088
178     042802  37      witchcraft      western cured   A
 
10089
179     046101  37      betroth relishing       Fenton  W
 
10090
180     048001  37      Manhattanize    serving avoidable       A
 
10091
181     048002  37      imprint scheduling      drains  A
 
10092
182     048003  37      peeked  lore    detectably      FAS
 
10093
183     048004  37      swelling        eventful        husky   
 
10094
184     048005  37      interrelationships      arteriole       impelling       
 
10095
185     048006  37      riser   disentangle     undoes  
 
10096
186     048007  37      Gandhian        cured   evened  
 
10097
187     048008  37      peacock Fenton  squeezes        
 
10098
188     048101  37      bee     avoidable       destroyer       FAS
 
10099
189     048102  37      kanji   drains  rudeness        
 
10100
190     048201  37      dental  detectably      beaner  FAS
 
10101
191     048202  37      scarf   husky   boorish 
 
10102
192     048203  37      chasm   impelling       Everhart        
 
10103
193     048204  37      insolence       undoes  encompass       A
 
10104
194     048205  37      syndicate       evened  mushrooms       
 
10105
195     048301  37      alike   squeezes        Alison  A
 
10106
196     048302  37      imperial        destroyer       externally      FAS
 
10107
197     048303  37      convulsion      rudeness        pellagra        
 
10108
198     048304  37      railway beaner  cult    
 
10109
199     048305  37      validate        boorish creek   A
 
10110
200     048401  37      normalizes      Everhart        Huffman 
 
10111
201     048402  37      comprehensive   encompass       Majorca FAS
 
10112
202     048403  37      chewing mushrooms       governing       A
 
10113
203     048404  37      denizen Alison  gadfly  FAS
 
10114
204     048405  37      schemer externally      reassigned      FAS
 
10115
205     048406  37      chronicle       pellagra        intentness      W
 
10116
206     048407  37      Kline   cult    craziness       
 
10117
207     048408  37      Anatole creek   psychic 
 
10118
208     048409  37      partridges      Huffman squabbled       
 
10119
209     048410  37      brunch  Majorca burlesque       
 
10120
210     048411  37      recruited       governing       capped  
 
10121
211     048412  37      dimensions      gadfly  extracted       A
 
10122
212     048413  37      Chicana reassigned      DiMaggio        
 
10123
213     048601  37      announced       intentness      exclamation     FAS
 
10124
214     048602  37      praised craziness       subdirectory    
 
10125
215     048603  37      employing       psychic fangs   
 
10126
216     048604  37      linear  squabbled       buyer   A
 
10127
217     048801  37      quagmire        burlesque       pithing A
 
10128
218     050901  37      western capped  transistorizing A
 
10129
219     051201  37      relishing       extracted       nonbiodegradable        
 
10130
220     056002  37      serving DiMaggio        dislocate       
 
10131
221     056003  37      scheduling      exclamation     monochromatic   FAS
 
10132
222     056004  37      lore    subdirectory    batting 
 
10133
223     056102  37      eventful        fangs   postcondition   A
 
10134
224     056203  37      arteriole       buyer   catalog FAS
 
10135
225     056204  37      disentangle     pithing Remus   
 
10136
226     058003  37      cured   transistorizing devices A
 
10137
227     058004  37      Fenton  nonbiodegradable        bike    A
 
10138
228     058005  37      avoidable       dislocate       qualify 
 
10139
229     058006  37      drains  monochromatic   detained        
 
10140
230     058007  37      detectably      batting commended       
 
10141
231     058101  37      husky   postcondition   civilize        
 
10142
232     058102  37      impelling       catalog Elmhurst        
 
10143
233     058103  37      undoes  Remus   anesthetizing   
 
10144
234     058105  37      evened  devices deaf    
 
10145
235     058111  37      squeezes        bike    Brigham 
 
10146
236     058112  37      destroyer       qualify title   
 
10147
237     058113  37      rudeness        detained        coarse  
 
10148
238     058114  37      beaner  commended       combinations    
 
10149
239     058115  37      boorish civilize        grayness        
 
10150
240     058116  37      Everhart        Elmhurst        innumerable     FAS
 
10151
241     058117  37      encompass       anesthetizing   Caroline        A
 
10152
242     058118  37      mushrooms       deaf    fatty   FAS
 
10153
243     058119  37      Alison  Brigham eastbound       
 
10154
244     058120  37      externally      title   inexperienced   
 
10155
245     058121  37      pellagra        coarse  hoarder A
 
10156
246     058122  37      cult    combinations    scotch  W
 
10157
247     058123  37      creek   grayness        passport        A
 
10158
248     058124  37      Huffman innumerable     strategic       FAS
 
10159
249     058125  37      Majorca Caroline        gated   
 
10160
250     058126  37      governing       fatty   flog    
 
10161
251     058127  37      gadfly  eastbound       Pipestone       
 
10162
252     058128  37      reassigned      inexperienced   Dar     
 
10163
253     058201  37      intentness      hoarder Corcoran        
 
10164
254     058202  37      craziness       scotch  flyers  A
 
10165
255     058303  37      psychic passport        competitions    W
 
10166
256     058304  37      squabbled       strategic       suppliers       FAS
 
10167
257     058602  37      burlesque       gated   skips   
 
10168
258     058603  37      capped  flog    institutes      
 
10169
259     058604  37      extracted       Pipestone       troop   A
 
10170
260     058605  37      DiMaggio        Dar     connective      W
 
10171
261     058606  37      exclamation     Corcoran        denies  
 
10172
262     058607  37      subdirectory    flyers  polka   
 
10173
263     060401  36      fangs   competitions    observations    FAS
 
10174
264     061701  36      buyer   suppliers       askers  
 
10175
265     066201  36      pithing skips   homeless        FAS
 
10176
266     066501  36      transistorizing institutes      Anna    
 
10177
267     068001  36      nonbiodegradable        troop   subdirectories  W
 
10178
268     068002  36      dislocate       connective      decaying        FAS
 
10179
269     068005  36      monochromatic   denies  outwitting      W
 
10180
270     068006  36      batting polka   Harpy   W
 
10181
271     068007  36      postcondition   observations    crazed  
 
10182
272     068008  36      catalog askers  suffocate       
 
10183
273     068009  36      Remus   homeless        provers FAS
 
10184
274     068010  36      devices Anna    technically     
 
10185
275     068011  36      bike    subdirectories  Franklinizations        
 
10186
276     068202  36      qualify decaying        considered      
 
10187
277     068302  36      detained        outwitting      tinnily 
 
10188
278     068303  36      commended       Harpy   uninterruptedly 
 
10189
279     068401  36      civilize        crazed  whistled        A
 
10190
280     068501  36      Elmhurst        suffocate       automate        
 
10191
281     068502  36      anesthetizing   provers gutting W
 
10192
282     068503  36      deaf    technically     surreptitious   
 
10193
283     068602  36      Brigham Franklinizations        Choctaw 
 
10194
284     068603  36      title   considered      cooks   
 
10195
285     068701  36      coarse  tinnily millivolt       FAS
 
10196
286     068702  36      combinations    uninterruptedly counterpoise    
 
10197
287     068703  36      grayness        whistled        Gothicism       
 
10198
288     076001  36      innumerable     automate        feminine        
 
10199
289     076002  36      Caroline        gutting metaphysically  W
 
10200
290     076101  36      fatty   surreptitious   sanding A
 
10201
291     076102  36      eastbound       Choctaw contributorily  
 
10202
292     076103  36      inexperienced   cooks   receivers       FAS
 
10203
293     076302  36      hoarder millivolt       adjourn 
 
10204
294     076303  36      scotch  counterpoise    straggled       A
 
10205
295     076304  36      passport        Gothicism       druggists       
 
10206
296     076305  36      strategic       feminine        thanking        FAS
 
10207
297     076306  36      gated   metaphysically  ostrich 
 
10208
298     076307  36      flog    sanding hopelessness    FAS
 
10209
299     076402  36      Pipestone       contributorily  Eurydice        
 
10210
300     076501  36      Dar     receivers       excitation      W
 
10211
301     076502  36      Corcoran        adjourn presumes        FAS
 
10212
302     076701  36      flyers  straggled       imaginable      FAS
 
10213
303     078001  36      competitions    druggists       concoct W
 
10214
304     078002  36      suppliers       thanking        peering W
 
10215
305     078003  36      skips   ostrich Phelps  FAS
 
10216
306     078004  36      institutes      hopelessness    ferociousness   FAS
 
10217
307     078005  36      troop   Eurydice        sentences       
 
10218
308     078006  36      connective      excitation      unlocks 
 
10219
309     078007  36      denies  presumes        engrossing      W
 
10220
310     078008  36      polka   imaginable      Ruth    
 
10221
311     078101  36      observations    concoct tying   
 
10222
312     078103  36      askers  peering exclaimers      
 
10223
313     078104  36      homeless        Phelps  synergy 
 
10224
314     078105  36      Anna    ferociousness   Huey    W
 
10225
315     082101  36      subdirectories  sentences       merging 
 
10226
316     083401  36      decaying        unlocks judges  A
 
10227
317     084001  36      outwitting      engrossing      Shylock W
 
10228
318     084002  36      Harpy   Ruth    Miltonism       
 
10229
319     086001  36      crazed  tying   hen     W
 
10230
320     086102  36      suffocate       exclaimers      honeybee        FAS
 
10231
321     086201  36      provers synergy towers  
 
10232
322     088001  36      technically     Huey    dilutes W
 
10233
323     088002  36      Franklinizations        merging numerals        FAS
 
10234
324     088003  36      considered      judges  democracy       FAS
 
10235
325     088004  36      tinnily Shylock Ibero-  
 
10236
326     088101  36      uninterruptedly Miltonism       invalids        
 
10237
327     088102  36      whistled        hen     behavior        
 
10238
328     088103  36      automate        honeybee        accruing        
 
10239
329     088104  36      gutting towers  relics  A
 
10240
330     088105  36      surreptitious   dilutes rackets 
 
10241
331     088106  36      Choctaw numerals        Fischbein       W
 
10242
332     088201  36      cooks   democracy       phony   W
 
10243
333     088203  36      millivolt       Ibero-  cross   FAS
 
10244
334     088204  36      counterpoise    invalids        cleanup 
 
10245
335     088302  37      Gothicism       behavior        conspirator     
 
10246
336     088303  37      feminine        accruing        label   FAS
 
10247
337     088305  37      metaphysically  relics  university      
 
10248
338     088402  37      sanding rackets cleansed        FAS
 
10249
339     088501  36      contributorily  Fischbein       ballgown        
 
10250
340     088502  36      receivers       phony   starlet 
 
10251
341     088503  36      adjourn cross   aqueous 
 
10252
342     098001  58      straggled       cleanup portrayal       A
 
10253
343     098002  58      druggists       conspirator     despising       W
 
10254
344     098003  58      thanking        label   distort W
 
10255
345     098004  58      ostrich university      palmed  
 
10256
346     098005  58      hopelessness    cleansed        faced   
 
10257
347     098006  58      Eurydice        ballgown        silverware      
 
10258
348     141903  29      excitation      starlet assessor        
 
10259
349     098008  58      presumes        aqueous spiders 
 
10260
350     098009  58      imaginable      portrayal       artificially    
 
10261
351     098010  58      concoct despising       reminiscence    
 
10262
352     098011  58      peering distort Mexican 
 
10263
353     098012  58      Phelps  palmed  obnoxious       
 
10264
354     098013  58      ferociousness   faced   fragile 
 
10265
355     098014  58      sentences       silverware      apprehensible   
 
10266
356     098015  58      unlocks assessor        births  
 
10267
357     098016  58      engrossing      spiders garages 
 
10268
358     098017  58      Ruth    artificially    panty   
 
10269
359     098018  58      tying   reminiscence    anteater        
 
10270
360     098019  58      exclaimers      Mexican displacement    A
 
10271
361     098020  58      synergy obnoxious       drovers A
 
10272
362     098021  58      Huey    fragile patenting       A
 
10273
363     098022  58      merging apprehensible   far     A
 
10274
364     098023  58      judges  births  shrieks 
 
10275
365     098024  58      Shylock garages aligning        W
 
10276
366     098025  37      Miltonism       panty   pragmatism      
 
10277
367     106001  36      hen     anteater        fevers  W
 
10278
368     108001  36      honeybee        displacement    reexamines      A
 
10279
369     108002  36      towers  drovers occupancies     
 
10280
370     108003  36      dilutes patenting       sweats  FAS
 
10281
371     108004  36      numerals        far     modulators      
 
10282
372     108005  36      democracy       shrieks demand  W
 
10283
373     108007  36      Ibero-  aligning        Madeira 
 
10284
374     108008  36      invalids        pragmatism      Viennese        W
 
10285
375     108009  36      behavior        fevers  chillier        W
 
10286
376     108010  36      accruing        reexamines      wildcats        FAS
 
10287
377     108011  36      relics  occupancies     gentle  
 
10288
378     108012  36      rackets sweats  Angles  W
 
10289
379     108101  36      Fischbein       modulators      accuracies      
 
10290
380     108102  36      phony   demand  toggle  
 
10291
381     108103  36      cross   Madeira Mendelssohn     W
 
10292
382     108111  50      cleanup Viennese        behaviorally    
 
10293
383     108105  36      conspirator     chillier        Rochford        
 
10294
384     108106  36      label   wildcats        mirror  W
 
10295
385     108107  36      university      gentle  Modula  
 
10296
386     108108  50      cleansed        Angles  clobbering      
 
10297
387     108109  36      ballgown        accuracies      chronography    
 
10298
388     108110  36      starlet toggle  Eskimoizeds     
 
10299
389     108201  36      aqueous Mendelssohn     British W
 
10300
390     108202  36      portrayal       behaviorally    pitfalls        
 
10301
391     108203  36      despising       Rochford        verify  W
 
10302
392     108204  36      distort mirror  scatter FAS
 
10303
393     108205  36      palmed  Modula  Aztecan 
 
10304
394     108301  36      faced   clobbering      acuity  W
 
10305
395     108302  36      silverware      chronography    sinking W
 
10306
396     112101  36      assessor        Eskimoizeds     beasts  FAS
 
10307
397     112102  36      spiders British Witt    W
 
10308
398     113701  36      artificially    pitfalls        physicists      FAS
 
10309
399     116001  36      reminiscence    verify  folksong        A
 
10310
400     116201  36      Mexican scatter strokes FAS
 
10311
401     116301  36      obnoxious       Aztecan crowder 
 
10312
402     116302  36      fragile acuity  merry   
 
10313
403     116601  36      apprehensible   sinking cadenced        
 
10314
404     116602  36      births  beasts  alimony A
 
10315
405     116603  36      garages Witt    principled      A
 
10316
406     116701  36      panty   physicists      golfing 
 
10317
407     116702  36      anteater        folksong        undiscovered    
 
10318
408     118001  36      displacement    strokes irritates       
 
10319
409     118002  36      drovers crowder patriots        A
 
10320
410     118003  36      patenting       merry   rooms   FAS
 
10321
411     118004  36      far     cadenced        towering        W
 
10322
412     118005  36      shrieks alimony displease       
 
10323
413     118006  36      aligning        principled      photosensitive  
 
10324
414     118007  36      pragmatism      golfing inking  
 
10325
415     118008  36      fevers  undiscovered    gainers 
 
10326
416     118101  36      reexamines      irritates       leaning A
 
10327
417     118102  36      occupancies     patriots        hydrant A
 
10328
418     118103  36      sweats  rooms   preserve        
 
10329
419     118202  36      modulators      towering        blinded A
 
10330
420     118203  36      demand  displease       interactions    A
 
10331
421     118204  36      Madeira photosensitive  Barry   
 
10332
422     118302  36      Viennese        inking  whiteness       A
 
10333
423     118304  36      chillier        gainers pastimes        W
 
10334
424     118305  36      wildcats        leaning Edenization     
 
10335
425     118306  36      gentle  hydrant Muscat  
 
10336
426     118307  36      Angles  preserve        assassinated    
 
10337
427     123101  36      accuracies      blinded labeled 
 
10338
428     123102  36      toggle  interactions    glacial A
 
10339
429     123301  36      Mendelssohn     Barry   implied W
 
10340
430     126001  36      behaviorally    whiteness       bibliographies  W
 
10341
431     126002  36      Rochford        pastimes        Buchanan        
 
10342
432     126003  36      mirror  Edenization     forgivably      FAS
 
10343
433     126101  36      Modula  Muscat  innuendo        A
 
10344
434     126301  36      clobbering      assassinated    den     FAS
 
10345
435     126302  36      chronography    labeled submarines      W
 
10346
436     126402  36      Eskimoizeds     glacial mouthful        A
 
10347
437     126601  36      British implied expiring        
 
10348
438     126602  36      pitfalls        bibliographies  unfulfilled     FAS
 
10349
439     126702  36      verify  Buchanan        precession      
 
10350
440     128001  36      scatter forgivably      nullified       
 
10351
441     128002  36      Aztecan innuendo        affects 
 
10352
442     128003  36      acuity  den     Cynthia 
 
10353
443     128004  36      sinking submarines      Chablis A
 
10354
444     128005  36      beasts  mouthful        betterments     FAS
 
10355
445     128007  36      Witt    expiring        advertising     
 
10356
446     128008  36      physicists      unfulfilled     rubies  A
 
10357
447     128009  36      folksong        precession      southwest       FAS
 
10358
448     128010  36      strokes nullified       superstitious   A
 
10359
449     128011  36      crowder affects tabernacle      W
 
10360
450     128012  36      merry   Cynthia silk    A
 
10361
451     128013  36      cadenced        Chablis handsomest      A
 
10362
452     128014  36      alimony betterments     Persian A
 
10363
453     128015  36      principled      advertising     analog  W
 
10364
454     128016  36      golfing rubies  complex W
 
10365
455     128017  36      undiscovered    southwest       Taoist  
 
10366
456     128018  36      irritates       superstitious   suspend 
 
10367
457     128019  36      patriots        tabernacle      relegated       
 
10368
458     128020  36      rooms   silk    awesome W
 
10369
459     128021  36      towering        handsomest      Bruxelles       
 
10370
460     128022  36      displease       Persian imprecisely     A
 
10371
461     128023  36      photosensitive  analog  televise        
 
10372
462     128101  36      inking  complex braking 
 
10373
463     128102  36      gainers Taoist  true    FAS
 
10374
464     128103  36      leaning suspend disappointing   FAS
 
10375
465     128104  36      hydrant relegated       navally W
 
10376
466     128106  36      preserve        awesome circus  
 
10377
467     128107  36      blinded Bruxelles       beetles 
 
10378
468     128108  36      interactions    imprecisely     trumps  
 
10379
469     128202  36      Barry   televise        fourscore       W
 
10380
470     128203  36      whiteness       braking Blackfoots      
 
10381
471     128301  36      pastimes        true    Grady   
 
10382
472     128302  36      Edenization     disappointing   quiets  FAS
 
10383
473     128303  36      Muscat  navally floundered      FAS
 
10384
474     128304  36      assassinated    circus  profundity      W
 
10385
475     128305  36      labeled beetles Garrisonian     W
 
10386
476     128307  36      glacial trumps  Strauss 
 
10387
477     128401  36      implied fourscore       cemented        FAS
 
10388
478     128502  36      bibliographies  Blackfoots      contrition      A
 
10389
479     128503  36      Buchanan        Grady   mutations       
 
10390
480     128504  36      forgivably      quiets  exhibits        W
 
10391
481     128505  36      innuendo        floundered      tits    
 
10392
482     128601  36      den     profundity      mate    A
 
10393
483     128603  36      submarines      Garrisonian     arches  
 
10394
484     128604  36      mouthful        Strauss Moll    
 
10395
485     128702  36      expiring        cemented        ropers  
 
10396
486     128703  36      unfulfilled     contrition      bombast 
 
10397
487     128704  36      precession      mutations       difficultly     A
 
10398
488     138001  36      nullified       exhibits        adsorption      
 
10399
489     138002  36      affects tits    definiteness    FAS
 
10400
490     138003  36      Cynthia mate    cultivation     A
 
10401
491     138004  36      Chablis arches  heals   A
 
10402
492     138005  36      betterments     Moll    Heusen  W
 
10403
493     138006  36      advertising     ropers  target  FAS
 
10404
494     138007  36      rubies  bombast cited   A
 
10405
495     138008  36      southwest       difficultly     congresswoman   W
 
10406
496     138009  36      superstitious   adsorption      Katherine       
 
10407
497     138102  36      tabernacle      definiteness    titter  A
 
10408
498     138103  36      silk    cultivation     aspire  A
 
10409
499     138104  36      handsomest      heals   Mardis  
 
10410
500     138105  36      Persian Heusen  Nadia   W
 
10411
501     138201  36      analog  target  estimating      FAS
 
10412
502     138302  36      complex cited   stuck   A
 
10413
503     138303  36      Taoist  congresswoman   fifteenth       A
 
10414
504     138304  36      suspend Katherine       Colombo 
 
10415
505     138401  29      relegated       titter  survey  A
 
10416
506     140102  29      awesome aspire  staffing        
 
10417
507     140103  29      Bruxelles       Mardis  obtain  
 
10418
508     140104  29      imprecisely     Nadia   loaded  
 
10419
509     140105  29      televise        estimating      slaughtered     
 
10420
510     140201  29      braking stuck   lights  A
 
10421
511     140701  29      true    fifteenth       circumference   
 
10422
512     141501  29      disappointing   Colombo dull    A
 
10423
513     141502  29      navally survey  weekly  A
 
10424
514     141901  29      circus  staffing        wetness 
 
10425
515     141902  29      beetles obtain  visualized      
 
10426
516     142101  29      trumps  loaded  Tannenbaum      
 
10427
517     142102  29      fourscore       slaughtered     moribund        
 
10428
518     142103  29      Blackfoots      lights  demultiplex     
 
10429
519     142701  29      Grady   circumference   lockings        
 
10430
520     143001  29      quiets  dull    thugs   FAS
 
10431
521     143501  29      floundered      weekly  unnerves        
 
10432
522     143502  29      profundity      wetness abut    
 
10433
523     148001  29      Garrisonian     visualized      Chippewa        A
 
10434
524     148002  29      Strauss Tannenbaum      stratifications A
 
10435
525     148003  29      cemented        moribund        signaled        
 
10436
526     148004  29      contrition      demultiplex     Italianizes     A
 
10437
527     148005  29      mutations       lockings        algorithmic     A
 
10438
528     148006  29      exhibits        thugs   paranoid        FAS
 
10439
529     148007  29      tits    unnerves        camping A
 
10440
530     148009  29      mate    abut    signifying      A
 
10441
531     148010  29      arches  Chippewa        Patrice W
 
10442
532     148011  29      Moll    stratifications search  A
 
10443
533     148012  29      ropers  signaled        Angeles A
 
10444
534     148013  29      bombast Italianizes     semblance       
 
10445
535     148023  36      difficultly     algorithmic     taxed   
 
10446
536     148015  29      adsorption      paranoid        Beatrice        
 
10447
537     148016  29      definiteness    camping retrace 
 
10448
538     148017  29      cultivation     signifying      lockout 
 
10449
539     148018  29      heals   Patrice grammatic       
 
10450
540     148019  29      Heusen  search  helmsman        
 
10451
541     148020  29      target  Angeles uniform W
 
10452
542     148021  29      cited   semblance       hamming 
 
10453
543     148022  29      congresswoman   taxed   disobedience    
 
10454
544     148101  29      Katherine       Beatrice        captivated      A
 
10455
545     148102  29      titter  retrace transferals     A
 
10456
546     148201  29      aspire  lockout cartographer    A
 
10457
547     148401  29      Mardis  grammatic       aims    FAS
 
10458
548     148402  29      Nadia   helmsman        Pakistani       
 
10459
549     148501  29      estimating      uniform burglarized     FAS
 
10460
550     148502  29      stuck   hamming saucepans       A
 
10461
551     148503  29      fifteenth       disobedience    lacerating      A
 
10462
552     148504  29      Colombo captivated      corny   
 
10463
553     148601  29      survey  transferals     megabytes       FAS
 
10464
554     148602  29      staffing        cartographer    chancellor      
 
10465
555     150701  29      obtain  aims    bulk    A
 
10466
556     152101  29      loaded  Pakistani       commits A
 
10467
557     152102  29      slaughtered     burglarized     meson   W
 
10468
558     155202  36      lights  saucepans       deputies        
 
10469
559     155203  29      circumference   lacerating      northeaster     A
 
10470
560     155204  29      dull    corny   dipole  
 
10471
561     155205  29      weekly  megabytes       machining       0
 
10472
562     156001  29      wetness chancellor      therefore       
 
10473
563     156002  29      visualized      bulk    Telefunken      
 
10474
564     156102  29      Tannenbaum      commits salvaging       
 
10475
565     156301  29      moribund        meson   Corinthianizes  A
 
10476
566     156302  29      demultiplex     deputies        restlessly      A
 
10477
567     156303  29      lockings        northeaster     bromides        
 
10478
568     156304  29      thugs   dipole  generalized     A
 
10479
569     156305  29      unnerves        machining       mishaps 
 
10480
570     156306  29      abut    therefore       quelling        
 
10481
571     156501  29      Chippewa        Telefunken      spiritual       A
 
10482
572     158001  29      stratifications salvaging       beguiles        FAS
 
10483
573     158002  29      signaled        Corinthianizes  Trobriand       FAS
 
10484
574     158101  29      Italianizes     restlessly      fleeing A
 
10485
575     158102  29      algorithmic     bromides        Armour  A
 
10486
576     158103  29      paranoid        generalized     chin    A
 
10487
577     158201  29      camping mishaps provers A
 
10488
578     158202  29      signifying      quelling        aeronautic      A
 
10489
579     158203  29      Patrice spiritual       voltage W
 
10490
580     158204  29      search  beguiles        sash    
 
10491
581     158301  29      Angeles Trobriand       anaerobic       A
 
10492
582     158302  29      semblance       fleeing simultaneous    A
 
10493
583     158303  29      taxed   Armour  accumulating    A
 
10494
584     158304  29      Beatrice        chin    Medusan A
 
10495
585     158305  29      retrace provers shouted A
 
10496
586     158306  29      lockout aeronautic      freakish        
 
10497
587     158501  29      grammatic       voltage index   FAS
 
10498
588     160301  29      helmsman        sash    commercially    
 
10499
589     166101  50      uniform anaerobic       mistiness       A
 
10500
590     166102  50      hamming simultaneous    endpoint        
 
10501
591     168001  29      disobedience    accumulating    straight        A
 
10502
592     168002  29      captivated      Medusan flurried        
 
10503
593     168003  29      transferals     shouted denotative      A
 
10504
594     168101  29      cartographer    freakish        coming  FAS
 
10505
595     168102  29      aims    index   commencements   FAS
 
10506
596     168103  29      Pakistani       commercially    gentleman       
 
10507
597     168104  29      burglarized     mistiness       gifted  
 
10508
598     168202  29      saucepans       endpoint        Shanghais       
 
10509
599     168301  29      lacerating      straight        sportswriting   A
 
10510
600     168502  29      corny   flurried        sloping A
 
10511
601     168503  29      megabytes       denotative      navies  
 
10512
602     168601  29      chancellor      coming  leaflet A
 
10513
603     173001  40      bulk    commencements   shooter 
 
10514
604     173701  40      commits gentleman       Joplin  FAS
 
10515
605     173702  40      meson   gifted  babies  
 
10516
606     176001  40      deputies        Shanghais       subdivision     FAS
 
10517
607     176101  40      northeaster     sportswriting   burstiness      W
 
10518
608     176201  40      dipole  sloping belted  FAS
 
10519
609     176401  40      machining       navies  assails FAS
 
10520
610     176501  40      therefore       leaflet admiring        W
 
10521
611     176601  40      Telefunken      shooter swaying 0
 
10522
612     176602  40      salvaging       Joplin  Goldstine       FAS
 
10523
613     176603  40      Corinthianizes  babies  fitting 
 
10524
614     178001  40      restlessly      subdivision     Norwalk W
 
10525
615     178002  40      bromides        burstiness      weakening       W
 
10526
616     178003  40      generalized     belted  analogy FAS
 
10527
617     178004  40      mishaps assails deludes 
 
10528
618     178005  40      quelling        admiring        cokes   
 
10529
619     178006  40      spiritual       swaying Clayton 
 
10530
620     178007  40      beguiles        Goldstine       exhausts        
 
10531
621     178008  40      Trobriand       fitting causality       
 
10532
622     178101  40      fleeing Norwalk sating  FAS
 
10533
623     178102  40      Armour  weakening       icon    
 
10534
624     178103  40      chin    analogy throttles       
 
10535
625     178201  40      provers deludes communicants    FAS
 
10536
626     178202  40      aeronautic      cokes   dehydrate       FAS
 
10537
627     178301  40      voltage Clayton priceless       FAS
 
10538
628     178302  40      sash    exhausts        publicly        
 
10539
629     178401  40      anaerobic       causality       incidentals     FAS
 
10540
630     178402  40      simultaneous    sating  commonplace     
 
10541
631     178403  40      accumulating    icon    mumbles 
 
10542
632     178404  40      Medusan throttles       furthermore     W
 
10543
633     178501  40      shouted communicants    cautioned       W
 
10544
634     186002  37      freakish        dehydrate       parametrized    A
 
10545
635     186102  37      index   priceless       registration    A
 
10546
636     186201  40      commercially    publicly        sadly   FAS
 
10547
637     186202  40      mistiness       incidentals     positioning     
 
10548
638     186203  40      endpoint        commonplace     babysitting     
 
10549
639     186302  37      straight        mumbles eternal A
 
10550
640     188007  37      flurried        furthermore     hoarder 
 
10551
641     188008  37      denotative      cautioned       congregates     
 
10552
642     188009  37      coming  parametrized    rains   
 
10553
643     188010  37      commencements   registration    workers W
 
10554
644     188011  37      gentleman       sadly   sags    A
 
10555
645     188012  37      gifted  positioning     unplug  W
 
10556
646     188013  37      Shanghais       babysitting     garage  A
 
10557
647     188014  37      sportswriting   eternal boulder A
 
10558
648     188015  37      sloping hoarder hollowly        A
 
10559
649     188016  37      navies  congregates     specifics       
 
10560
650     188017  37      leaflet rains   Teresa  
 
10561
651     188102  37      shooter workers Winsett 
 
10562
652     188103  37      Joplin  sags    convenient      A
 
10563
653     188202  37      babies  unplug  buckboards      FAS
 
10564
654     188301  40      subdivision     garage  amenities       
 
10565
655     188302  40      burstiness      boulder resplendent     FAS
 
10566
656     188303  40      belted  hollowly        priding FAS
 
10567
657     188401  37      assails specifics       configurations  
 
10568
658     188402  37      admiring        Teresa  untidiness      A
 
10569
659     188503  37      swaying Winsett Brice   W
 
10570
660     188504  37      Goldstine       convenient      sews    FAS
 
10571
661     188505  37      fitting buckboards      participated    
 
10572
662     190701  37      Norwalk amenities       Simon   FAS
 
10573
663     190703  50      weakening       resplendent     certificates    
 
10574
664     191701  37      analogy priding Fitzpatrick     
 
10575
665     191702  37      deludes configurations  Evanston        A
 
10576
666     191703  37      cokes   untidiness      misted  
 
10577
667     196001  37      Clayton Brice   textures        A
 
10578
668     196002  37      exhausts        sews    save    
 
10579
669     196003  37      causality       participated    count   
 
10580
670     196101  37      sating  Simon   rightful        A
 
10581
671     196103  37      icon    certificates    chaperone       
 
10582
672     196104  37      throttles       Fitzpatrick     Lizzy   A
 
10583
673     196201  37      communicants    Evanston        clenched        A
 
10584
674     196202  37      dehydrate       misted  effortlessly    
 
10585
675     196203  37      priceless       textures        accessed        
 
10586
676     198001  37      publicly        save    beaters A
 
10587
677     198003  37      incidentals     count   Hornblower      FAS
 
10588
678     198004  37      commonplace     rightful        vests   A
 
10589
679     198005  37      mumbles chaperone       indulgences     FAS
 
10590
680     198006  37      furthermore     Lizzy   infallibly      A
 
10591
681     198007  37      cautioned       clenched        unwilling       FAS
 
10592
682     198008  37      parametrized    effortlessly    excrete FAS
 
10593
683     198009  37      registration    accessed        spools  A
 
10594
684     198010  37      sadly   beaters crunches        FAS
 
10595
685     198011  37      positioning     Hornblower      overestimating  FAS
 
10596
686     198012  37      babysitting     vests   ineffective     
 
10597
687     198013  37      eternal indulgences     humiliation     A
 
10598
688     198014  37      hoarder infallibly      sophomore       
 
10599
689     198015  37      congregates     unwilling       star    
 
10600
690     198017  37      rains   excrete rifles  
 
10601
691     198018  37      workers spools  dialysis        
 
10602
692     198019  37      sags    crunches        arriving        
 
10603
693     198020  37      unplug  overestimating  indulge 
 
10604
694     198021  37      garage  ineffective     clockers        
 
10605
695     198022  37      boulder humiliation     languages       
 
10606
696     198023  50      hollowly        sophomore       Antarctica      A
 
10607
697     198024  37      specifics       star    percentage      
 
10608
698     198101  37      Teresa  rifles  ceiling A
 
10609
699     198103  37      Winsett dialysis        specification   
 
10610
700     198105  37      convenient      arriving        regimented      A
 
10611
701     198106  37      buckboards      indulge ciphers 
 
10612
702     198201  37      amenities       clockers        pictures        A
 
10613
703     198204  37      resplendent     languages       serpents        A
 
10614
704     198301  53      priding Antarctica      allot   A
 
10615
705     198302  53      configurations  percentage      realized        A
 
10616
706     198303  53      untidiness      ceiling mayoral A
 
10617
707     198304  53      Brice   specification   opaquely        A
 
10618
708     198401  37      sews    regimented      hostess FAS
 
10619
709     198402  37      participated    ciphers fiftieth        
 
10620
710     198403  37      Simon   pictures        incorrectly     
 
10621
711     202101  37      certificates    serpents        decomposition   FAS
 
10622
712     202301  37      Fitzpatrick     allot   stranglings     
 
10623
713     202302  37      Evanston        realized        mixture FAS
 
10624
714     202303  37      misted  mayoral electroencephalography  FAS
 
10625
715     202304  37      textures        opaquely        similarities    FAS
 
10626
716     202305  37      save    hostess charges W
 
10627
717     202601  37      count   fiftieth        freest  FAS
 
10628
718     202602  37      rightful        incorrectly     Greenberg       FAS
 
10629
719     202605  37      chaperone       decomposition   tinting 
 
10630
720     202606  37      Lizzy   stranglings     expelled        W
 
10631
721     202607  37      clenched        mixture warm    
 
10632
722     202901  37      effortlessly    electroencephalography  smoothed        
 
10633
723     202902  37      accessed        similarities    deductions      FAS
 
10634
724     202903  37      beaters charges Romano  W
 
10635
725     202904  37      Hornblower      freest  bitterroot      
 
10636
726     202907  37      vests   Greenberg       corset  
 
10637
727     202908  37      indulgences     tinting securing        
 
10638
728     203101  37      infallibly      expelled        environing      FAS
 
10639
729     203103  37      unwilling       warm    cute    
 
10640
730     203104  37      excrete smoothed        Crays   
 
10641
731     203105  37      spools  deductions      heiress FAS
 
10642
732     203401  37      crunches        Romano  inform  FAS
 
10643
733     203402  37      overestimating  bitterroot      avenge  
 
10644
734     203404  37      ineffective     corset  universals      
 
10645
735     203901  37      humiliation     securing        Kinsey  W
 
10646
736     203902  37      sophomore       environing      ravines FAS
 
10647
737     203903  37      star    cute    bestseller      
 
10648
738     203906  37      rifles  Crays   equilibrium     
 
10649
739     203907  37      dialysis        heiress extents 0
 
10650
740     203908  37      arriving        inform  relatively      
 
10651
741     203909  37      indulge avenge  pressure        FAS
 
10652
742     206101  37      clockers        universals      critiques       FAS
 
10653
743     206201  37      languages       Kinsey  befouled        
 
10654
744     206202  37      Antarctica      ravines rightfully      FAS
 
10655
745     206203  37      percentage      bestseller      mechanizing     FAS
 
10656
746     206206  37      ceiling equilibrium     Latinizes       
 
10657
747     206207  37      specification   extents timesharing     
 
10658
748     206208  37      regimented      relatively      Aden    
 
10659
749     208001  37      ciphers pressure        embassies       
 
10660
750     208002  37      pictures        critiques       males   FAS
 
10661
751     208003  37      serpents        befouled        shapelessly     FAS
 
10662
752     208004  37      allot   rightfully      genres  FAS
 
10663
753     208008  37      realized        mechanizing     mastering       
 
10664
754     208009  37      mayoral Latinizes       Newtonian       
 
10665
755     208010  37      opaquely        timesharing     finishers       FAS
 
10666
756     208011  37      hostess Aden    abates  
 
10667
757     208101  37      fiftieth        embassies       teem    
 
10668
758     208102  37      incorrectly     males   kiting  FAS
 
10669
759     208103  37      decomposition   shapelessly     stodgy  FAS
 
10670
760     208104  37      stranglings     genres  scalps  FAS
 
10671
761     208105  37      mixture mastering       feed    FAS
 
10672
762     208110  37      electroencephalography  Newtonian       guitars 
 
10673
763     208111  37      similarities    finishers       airships        
 
10674
764     208112  37      charges abates  store   
 
10675
765     208113  37      freest  teem    denounces       
 
10676
766     208201  37      Greenberg       kiting  Pyle    FAS
 
10677
767     208203  37      tinting stodgy  Saxony  
 
10678
768     208301  37      expelled        scalps  serializations  FAS
 
10679
769     208302  37      warm    feed    Peruvian        FAS
 
10680
770     208305  37      smoothed        guitars taxonomically   FAS
 
10681
771     208401  37      deductions      airships        kingdom A
 
10682
772     208402  37      Romano  store   stint   A
 
10683
773     208403  37      bitterroot      denounces       Sault   A
 
10684
774     208404  37      corset  Pyle    faithful        
 
10685
775     208501  37      securing        Saxony  Ganymede        FAS
 
10686
776     208502  37      environing      serializations  tidiness        FAS
 
10687
777     208503  37      cute    Peruvian        gainful FAS
 
10688
778     208504  37      Crays   taxonomically   contrary        FAS
 
10689
779     208505  37      heiress kingdom Tipperary       FAS
 
10690
780     210101  37      inform  stint   tropics W
 
10691
781     210102  37      avenge  Sault   theorizers      
 
10692
782     210103  37      universals      faithful        renew   0
 
10693
783     210104  37      Kinsey  Ganymede        already 
 
10694
784     210105  37      ravines tidiness        terminal        
 
10695
785     210106  37      bestseller      gainful Hegelian        
 
10696
786     210107  37      equilibrium     contrary        hypothesizer    
 
10697
787     210401  37      extents Tipperary       warningly       FAS
 
10698
788     213201  37      relatively      tropics journalizing    FAS
 
10699
789     213203  37      pressure        theorizers      nested  
 
10700
790     213204  37      critiques       renew   Lars    
 
10701
791     213205  37      befouled        already saplings        
 
10702
792     213206  37      rightfully      terminal        foothill        
 
10703
793     213207  37      mechanizing     Hegelian        labeled 
 
10704
794     216101  37      Latinizes       hypothesizer    imperiously     FAS
 
10705
795     216103  37      timesharing     warningly       reporters       FAS
 
10706
796     218001  37      Aden    journalizing    furnishings     FAS
 
10707
797     218002  37      embassies       nested  precipitable    FAS
 
10708
798     218003  37      males   Lars    discounts       FAS
 
10709
799     218004  37      shapelessly     saplings        excises FAS
 
10710
800     143503  50      genres  foothill        Stalin  
 
10711
801     218006  37      mastering       labeled despot  FAS
 
10712
802     218007  37      Newtonian       imperiously     ripeness        FAS
 
10713
803     218008  37      finishers       reporters       Arabia  
 
10714
804     218009  37      abates  furnishings     unruly  
 
10715
805     218010  37      teem    precipitable    mournfulness    
 
10716
806     218011  37      kiting  discounts       boom    FAS
 
10717
807     218020  37      stodgy  excises slaughter       A
 
10718
808     218021  50      scalps  Stalin  Sabine  
 
10719
809     218022  37      feed    despot  handy   FAS
 
10720
810     218023  37      guitars ripeness        rural   
 
10721
811     218024  37      airships        Arabia  organizer       
 
10722
812     218101  37      store   unruly  shipyard        FAS
 
10723
813     218102  37      denounces       mournfulness    civics  FAS
 
10724
814     218103  37      Pyle    boom    inaccuracy      FAS
 
10725
815     218201  37      Saxony  slaughter       rules   FAS
 
10726
816     218202  37      serializations  Sabine  juveniles       FAS
 
10727
817     218203  37      Peruvian        handy   comprised       W
 
10728
818     218204  37      taxonomically   rural   investigations  
 
10729
819     218205  37      kingdom organizer       stabilizes      A
 
10730
820     218301  37      stint   shipyard        seminaries      FAS
 
10731
821     218302  37      Sault   civics  Hunter  A
 
10732
822     218401  37      faithful        inaccuracy      sporty  FAS
 
10733
823     218402  37      Ganymede        rules   test    FAS
 
10734
824     218403  37      tidiness        juveniles       weasels 
 
10735
825     218404  37      gainful comprised       CERN    
 
10736
826     218407  37      contrary        investigations  tempering       
 
10737
827     218408  37      Tipperary       stabilizes      afore   FAS
 
10738
828     218409  37      tropics seminaries      Galatean        
 
10739
829     218410  37      theorizers      Hunter  techniques      W
 
10740
830     226001  37      renew   sporty  error   
 
10741
831     226002  37      already test    veranda 
 
10742
832     226003  37      terminal        weasels severely        
 
10743
833     226004  37      Hegelian        CERN    Cassites        FAS
 
10744
834     226005  37      hypothesizer    tempering       forthcoming     
 
10745
835     226006  37      warningly       afore   guides  
 
10746
836     226007  37      journalizing    Galatean        vanish  FAS
 
10747
837     226008  37      nested  techniques      lied    A
 
10748
838     226203  37      Lars    error   sawtooth        FAS
 
10749
839     226204  37      saplings        veranda fated   FAS
 
10750
840     226205  37      foothill        severely        gradually       
 
10751
841     226206  37      labeled Cassites        widens  
 
10752
842     226207  37      imperiously     forthcoming     preclude        
 
10753
843     226208  37      reporters       guides  Jobrel  
 
10754
844     226209  37      furnishings     vanish  hooker  
 
10755
845     226210  37      precipitable    lied    rainstorm       
 
10756
846     226211  37      discounts       sawtooth        disconnects     
 
10757
847     228001  37      excises fated   cruelty 
 
10758
848     228004  37      Stalin  gradually       exponentials    A
 
10759
849     228005  37      despot  widens  affective       A
 
10760
850     228006  37      ripeness        preclude        arteries        
 
10761
851     228007  37      Arabia  Jobrel  Crosby  FAS
 
10762
852     228008  37      unruly  hooker  acquaint        
 
10763
853     228009  37      mournfulness    rainstorm       evenhandedly    
 
10764
854     228101  37      boom    disconnects     percentage      
 
10765
855     228108  37      slaughter       cruelty disobedience    
 
10766
856     228109  37      Sabine  exponentials    humility        
 
10767
857     228110  37      handy   affective       gleaning        A
 
10768
858     228111  37      rural   arteries        petted  A
 
10769
859     228112  37      organizer       Crosby  bloater A
 
10770
860     228113  37      shipyard        acquaint        minion  A
 
10771
861     228114  37      civics  evenhandedly    marginal        A
 
10772
862     228115  37      inaccuracy      percentage      apiary  A
 
10773
863     228116  37      rules   disobedience    measures        
 
10774
864     228117  37      juveniles       humility        precaution      
 
10775
865     228118  37      comprised       gleaning        repelled        
 
10776
866     228119  37      investigations  petted  primary FAS
 
10777
867     228120  37      stabilizes      bloater coverings       
 
10778
868     228121  37      seminaries      minion  Artemia A
 
10779
869     228122  37      Hunter  marginal        navigate        
 
10780
870     228201  37      sporty  apiary  spatial 
 
10781
871     228206  37      test    measures        Gurkha  
 
10782
872     228207  37      weasels precaution      meanwhile       A
 
10783
873     228208  37      CERN    repelled        Melinda A
 
10784
874     228209  37      tempering       primary Butterfield     
 
10785
875     228210  37      afore   coverings       Aldrich A
 
10786
876     228211  37      Galatean        Artemia previewing      A
 
10787
877     228212  37      techniques      navigate        glut    A
 
10788
878     228213  37      error   spatial unaffected      
 
10789
879     228214  37      veranda Gurkha  inmate  
 
10790
880     228301  37      severely        meanwhile       mineral 
 
10791
881     228305  37      Cassites        Melinda impending       A
 
10792
882     228306  37      forthcoming     Butterfield     meditation      A
 
10793
883     228307  37      guides  Aldrich ideas   
 
10794
884     228308  37      vanish  previewing      miniaturizes    W
 
10795
885     228309  37      lied    glut    lewdly  
 
10796
886     228310  37      sawtooth        unaffected      title   
 
10797
887     228311  37      fated   inmate  youthfulness    
 
10798
888     228312  37      gradually       mineral creak   FAS
 
10799
889     228313  37      widens  impending       Chippewa        
 
10800
890     228314  37      preclude        meditation      clamored        
 
10801
891     228401  65      Jobrel  ideas   freezes 
 
10802
892     228402  65      hooker  miniaturizes    forgivably      FAS
 
10803
893     228403  65      rainstorm       lewdly  reduce  FAS
 
10804
894     228404  65      disconnects     title   McGovern        W
 
10805
895     228405  65      cruelty youthfulness    Nazis   W
 
10806
896     228406  65      exponentials    creak   epistle W
 
10807
897     228407  65      affective       Chippewa        socializes      W
 
10808
898     228408  65      arteries        clamored        conceptions     
 
10809
899     228409  65      Crosby  freezes Kevin   
 
10810
900     228410  65      acquaint        forgivably      uncovering      
 
10811
901     230301  37      evenhandedly    reduce  chews   FAS
 
10812
902     230302  37      percentage      McGovern        appendixes      FAS
 
10813
903     230303  37      disobedience    Nazis   raining 
 
10814
904     018062  37      humility        epistle infest  
 
10815
905     230501  37      gleaning        socializes      compartment     
 
10816
906     230502  37      petted  conceptions     minting 
 
10817
907     230503  37      bloater Kevin   ducks   
 
10818
908     230504  37      minion  uncovering      roped   A
 
10819
909     230505  37      marginal        chews   waltz   
 
10820
910     230506  37      apiary  appendixes      Lillian 
 
10821
911     230507  37      measures        raining repressions     A
 
10822
912     230508  37      precaution      infest  chillingly      
 
10823
913     230509  37      repelled        compartment     noncritical     
 
10824
914     230901  37      primary minting lithograph      
 
10825
915     230902  37      coverings       ducks   spongers        
 
10826
916     230903  37      Artemia roped   parenthood      
 
10827
917     230904  37      navigate        waltz   posed   
 
10828
918     230905  37      spatial Lillian instruments     
 
10829
919     230906  37      Gurkha  repressions     filial  
 
10830
920     230907  37      meanwhile       chillingly      fixedly 
 
10831
921     230908  37      Melinda noncritical     relives 
 
10832
922     230909  37      Butterfield     lithograph      Pandora 
 
10833
923     230910  37      Aldrich spongers        watering        A
 
10834
924     230911  37      previewing      parenthood      ungrateful      
 
10835
925     230912  37      glut    posed   secures 
 
10836
926     230913  37      unaffected      instruments     chastisers      
 
10837
927     230914  37      inmate  filial  icon    
 
10838
928     231304  37      mineral fixedly reuniting       A
 
10839
929     231305  37      impending       relives imagining       A
 
10840
930     231306  37      meditation      Pandora abiding A
 
10841
931     231307  37      ideas   watering        omnisciently    
 
10842
932     231308  37      miniaturizes    ungrateful      Britannic       
 
10843
933     231309  37      lewdly  secures scholastics     A
 
10844
934     231310  37      title   chastisers      mechanics       A
 
10845
935     231311  37      youthfulness    icon    humidly A
 
10846
936     231312  37      creak   reuniting       masterpiece     
 
10847
937     231313  37      Chippewa        imagining       however 
 
10848
938     231314  37      clamored        abiding Mendelian       
 
10849
939     231315  37      freezes omnisciently    jarred  
 
10850
940     232102  37      forgivably      Britannic       scolds  
 
10851
941     232103  37      reduce  scholastics     infatuate       
 
10852
942     232104  37      McGovern        mechanics       willed  A
 
10853
943     232105  37      Nazis   humidly joyfully        
 
10854
944     232106  37      epistle masterpiece     Microsoft       
 
10855
945     232107  37      socializes      however fibrosities     
 
10856
946     232108  37      conceptions     Mendelian       Baltimorean     
 
10857
947     232601  37      Kevin   jarred  equestrian      
 
10858
948     232602  37      uncovering      scolds  Goodrich        
 
10859
949     232603  37      chews   infatuate       apish   A
 
10860
950     232605  37      appendixes      willed  Adlerian        
 
10861
5950    1232605 37      appendixes      willed  Adlerian        
 
10862
5951    1232606 37      appendixes      willed  Adlerian        
 
10863
5952    1232607 37      appendixes      willed  Adlerian        
 
10864
5953    1232608 37      appendixes      willed  Adlerian        
 
10865
5954    1232609 37      appendixes      willed  Adlerian        
 
10866
951     232606  37      raining joyfully        Tropez  
 
10867
952     232607  37      infest  Microsoft       nouns   
 
10868
953     232608  37      compartment     fibrosities     distracting     
 
10869
954     232609  37      minting Baltimorean     mutton  
 
10870
955     236104  37      ducks   equestrian      bridgeable      A
 
10871
956     236105  37      roped   Goodrich        stickers        A
 
10872
957     236106  37      waltz   apish   transcontinental        A
 
10873
958     236107  37      Lillian Adlerian        amateurish      
 
10874
959     236108  37      repressions     Tropez  Gandhian        
 
10875
960     236109  37      chillingly      nouns   stratified      
 
10876
961     236110  37      noncritical     distracting     chamberlains    
 
10877
962     236111  37      lithograph      mutton  creditably      
 
10878
963     236112  37      spongers        bridgeable      philosophic     
 
10879
964     236113  37      parenthood      stickers        ores    
 
10880
965     238005  37      posed   transcontinental        Carleton        
 
10881
966     238006  37      instruments     amateurish      tape    A
 
10882
967     238007  37      filial  Gandhian        afloat  A
 
10883
968     238008  37      fixedly stratified      goodness        A
 
10884
969     238009  37      relives chamberlains    welcoming       
 
10885
970     238010  37      Pandora creditably      Pinsky  FAS
 
10886
971     238011  37      watering        philosophic     halting 
 
10887
972     238012  37      ungrateful      ores    bibliography    
 
10888
973     238013  37      secures Carleton        decoding        
 
10889
974     240401  41      chastisers      tape    variance        A
 
10890
975     240402  41      icon    afloat  allowed A
 
10891
976     240901  41      reuniting       goodness        dire    A
 
10892
977     240902  41      imagining       welcoming       dub     A
 
10893
978     241801  41      abiding Pinsky  poisoning       
 
10894
979     242101  41      omnisciently    halting Iraqis  A
 
10895
980     242102  41      Britannic       bibliography    heaving 
 
10896
981     242201  41      scholastics     decoding        population      A
 
10897
982     242202  41      mechanics       variance        bomb    A
 
10898
983     242501  41      humidly allowed Majorca A
 
10899
984     242502  41      masterpiece     dire    Gershwins       
 
10900
985     246201  41      however dub     explorers       
 
10901
986     246202  41      Mendelian       poisoning       libretto        A
 
10902
987     246203  41      jarred  Iraqis  occurred        
 
10903
988     246204  41      scolds  heaving Lagos   
 
10904
989     246205  41      infatuate       population      rats    
 
10905
990     246301  41      willed  bomb    bankruptcies    A
 
10906
991     246302  41      joyfully        Majorca crying  
 
10907
992     248001  41      Microsoft       Gershwins       unexpected      
 
10908
993     248002  41      fibrosities     explorers       accessed        A
 
10909
994     248003  41      Baltimorean     libretto        colorful        A
 
10910
995     248004  41      equestrian      occurred        versatility     A
 
10911
996     248005  41      Goodrich        Lagos   cosy    
 
10912
997     248006  41      apish   rats    Darius  A
 
10913
998     248007  41      Adlerian        bankruptcies    mastering       A
 
10914
999     248008  41      Tropez  crying  Asiaticizations A
 
10915
1000    248009  41      nouns   unexpected      offerers        A
 
10916
1001    248010  41      distracting     accessed        uncles  A
 
10917
1002    248011  41      mutton  colorful        sleepwalk       
 
10918
1003    248012  41      bridgeable      versatility     Ernestine       
 
10919
1004    248013  41      stickers        cosy    checksumming    
 
10920
1005    248014  41      transcontinental        Darius  stopped 
 
10921
1006    248015  41      amateurish      mastering       sicker  
 
10922
1007    248016  41      Gandhian        Asiaticizations Italianization  
 
10923
1008    248017  41      stratified      offerers        alphabetic      
 
10924
1009    248018  41      chamberlains    uncles  pharmaceutic    
 
10925
1010    248019  41      creditably      sleepwalk       creator 
 
10926
1011    248020  41      philosophic     Ernestine       chess   
 
10927
1012    248021  41      ores    checksumming    charcoal        
 
10928
1013    248101  41      Carleton        stopped Epiphany        A
 
10929
1014    248102  41      tape    sicker  bulldozes       A
 
10930
1015    248201  41      afloat  Italianization  Pygmalion       A
 
10931
1016    248202  41      goodness        alphabetic      caressing       A
 
10932
1017    248203  41      welcoming       pharmaceutic    Palestine       A
 
10933
1018    248204  41      Pinsky  creator regimented      A
 
10934
1019    248205  41      halting chess   scars   A
 
10935
1020    248206  41      bibliography    charcoal        realest A
 
10936
1021    248207  41      decoding        Epiphany        diffusing       A
 
10937
1022    248208  41      variance        bulldozes       clubroom        A
 
10938
1023    248209  41      allowed Pygmalion       Blythe  A
 
10939
1024    248210  41      dire    caressing       ahead   
 
10940
1025    248211  50      dub     Palestine       reviver 
 
10941
1026    250501  34      poisoning       regimented      retransmitting  A
 
10942
1027    250502  34      Iraqis  scars   landslide       
 
10943
1028    250503  34      heaving realest Eiffel  
 
10944
1029    250504  34      population      diffusing       absentee        
 
10945
1030    250505  34      bomb    clubroom        aye     
 
10946
1031    250601  34      Majorca Blythe  forked  A
 
10947
1032    250602  34      Gershwins       ahead   Peruvianizes    
 
10948
1033    250603  34      explorers       reviver clerked 
 
10949
1034    250604  34      libretto        retransmitting  tutor   
 
10950
1035    250605  34      occurred        landslide       boulevard       
 
10951
1036    251001  34      Lagos   Eiffel  shuttered       
 
10952
1037    251002  34      rats    absentee        quotes  A
 
10953
1038    251003  34      bankruptcies    aye     Caltech 
 
10954
1039    251004  34      crying  forked  Mossberg        
 
10955
1040    251005  34      unexpected      Peruvianizes    kept    
 
10956
1041    251301  34      accessed        clerked roundly 
 
10957
1042    251302  34      colorful        tutor   features        A
 
10958
1043    251303  34      versatility     boulevard       imaginable      A
 
10959
1044    251304  34      cosy    shuttered       controller      
 
10960
1045    251305  34      Darius  quotes  racial  
 
10961
1046    251401  34      mastering       Caltech uprisings       A
 
10962
1047    251402  34      Asiaticizations Mossberg        narrowed        A
 
10963
1048    251403  34      offerers        kept    cannot  A
 
10964
1049    251404  34      uncles  roundly vest    
 
10965
1050    251405  34      sleepwalk       features        famine  
 
10966
1051    251406  34      Ernestine       imaginable      sugars  
 
10967
1052    251801  34      checksumming    controller      exterminated    A
 
10968
1053    251802  34      stopped racial  belays  
 
10969
1054    252101  34      sicker  uprisings       Hodges  A
 
10970
1055    252102  34      Italianization  narrowed        translatable    
 
10971
1056    252301  34      alphabetic      cannot  duality A
 
10972
1057    252302  34      pharmaceutic    vest    recording       A
 
10973
1058    252303  34      creator famine  rouses  A
 
10974
1059    252304  34      chess   sugars  poison  
 
10975
1060    252305  34      charcoal        exterminated    attitude        
 
10976
1061    252306  34      Epiphany        belays  dusted  
 
10977
1062    252307  34      bulldozes       Hodges  encompasses     
 
10978
1063    252308  34      Pygmalion       translatable    presentation    
 
10979
1064    252309  34      caressing       duality Kantian 
 
10980
1065    256001  34      Palestine       recording       imprecision     A
 
10981
1066    256002  34      regimented      rouses  saving  
 
10982
1067    256003  34      scars   poison  maternal        
 
10983
1068    256004  34      realest attitude        hewed   
 
10984
1069    256005  34      diffusing       dusted  kerosene        
 
10985
1070    258001  34      clubroom        encompasses     Cubans  
 
10986
1071    258002  34      Blythe  presentation    photographers   
 
10987
1072    258003  34      ahead   Kantian nymph   A
 
10988
1073    258004  34      reviver imprecision     bedlam  A
 
10989
1074    258005  34      retransmitting  saving  north   A
 
10990
1075    258006  34      landslide       maternal        Schoenberg      A
 
10991
1076    258007  34      Eiffel  hewed   botany  A
 
10992
1077    258008  34      absentee        kerosene        curs    
 
10993
1078    258009  34      aye     Cubans  solidification  
 
10994
1079    258010  34      forked  photographers   inheritresses   
 
10995
1080    258011  34      Peruvianizes    nymph   stiller 
 
10996
1081    258101  68      clerked bedlam  t1      A
 
10997
1082    258102  68      tutor   north   suite   A
 
10998
1083    258103  34      boulevard       Schoenberg      ransomer        
 
10999
1084    258104  68      shuttered       botany  Willy   
 
11000
1085    258105  68      quotes  curs    Rena    A
 
11001
1086    258106  68      Caltech solidification  Seattle A
 
11002
1087    258107  68      Mossberg        inheritresses   relaxes A
 
11003
1088    258108  68      kept    stiller exclaim 
 
11004
1089    258109  68      roundly t1      implicated      A
 
11005
1090    258110  68      features        suite   distinguish     
 
11006
1091    258111  68      imaginable      ransomer        assayed 
 
11007
1092    258112  68      controller      Willy   homeowner       
 
11008
1093    258113  68      racial  Rena    and     
 
11009
1094    258201  34      uprisings       Seattle stealth 
 
11010
1095    258202  34      narrowed        relaxes coinciding      A
 
11011
1096    258203  34      cannot  exclaim founder A
 
11012
1097    258204  34      vest    implicated      environing      
 
11013
1098    258205  34      famine  distinguish     jewelry 
 
11014
1099    258301  34      sugars  assayed lemons  A
 
11015
1100    258401  34      exterminated    homeowner       brokenness      A
 
11016
1101    258402  34      belays  and     bedpost A
 
11017
1102    258403  34      Hodges  stealth assurers        A
 
11018
1103    258404  34      translatable    coinciding      annoyers        
 
11019
1104    258405  34      duality founder affixed 
 
11020
1105    258406  34      recording       environing      warbling        
 
11021
1106    258407  34      rouses  jewelry seriously       
 
11022
1107    228123  37      poison  lemons  boasted 
 
11023
1108    250606  34      attitude        brokenness      Chantilly       
 
11024
1109    208405  37      dusted  bedpost Iranizes        
 
11025
1110    212101  37      encompasses     assurers        violinist       
 
11026
1111    218206  37      presentation    annoyers        extramarital    
 
11027
1112    150401  37      Kantian affixed spates  
 
11028
1113    248212  41      imprecision     warbling        cloakroom       
 
11029
1114    128026  00      saving  seriously       gazer   
 
11030
1115    128024  00      maternal        boasted hand    
 
11031
1116    128027  00      hewed   Chantilly       tucked  
 
11032
1117    128025  00      kerosene        Iranizes        gems    
 
11033
1118    128109  00      Cubans  violinist       clinker 
 
11034
1119    128705  00      photographers   extramarital    refiner 
 
11035
1120    126303  00      nymph   spates  callus  
 
11036
1121    128308  00      bedlam  cloakroom       leopards        
 
11037
1122    128204  00      north   gazer   comfortingly    
 
11038
1123    128205  00      Schoenberg      hand    generically     
 
11039
1124    128206  00      botany  tucked  getters 
 
11040
1125    128207  00      curs    gems    sexually        
 
11041
1126    118205  00      solidification  clinker spear   
 
11042
1127    116801  00      inheritresses   refiner serums  
 
11043
1128    116803  00      stiller callus  Italianization  
 
11044
1129    116804  00      t1      leopards        attendants      
 
11045
1130    116802  00      suite   comfortingly    spies   
 
11046
1131    128605  00      ransomer        generically     Anthony 
 
11047
1132    118308  00      Willy   getters planar  
 
11048
1133    113702  00      Rena    sexually        cupped  
 
11049
1134    113703  00      Seattle spear   cleanser        
 
11050
1135    112103  00      relaxes serums  commuters       
 
11051
1136    118009  00      exclaim Italianization  honeysuckle     
 
11052
5136    1118009 00      exclaim Italianization  honeysuckle     
 
11053
1137    138011  00      implicated      attendants      orphanage       
 
11054
1138    138010  00      distinguish     spies   skies   
 
11055
1139    138012  00      assayed Anthony crushers        
 
11056
1140    068304  00      homeowner       planar  Puritan 
 
11057
1141    078009  00      and     cupped  squeezer        
 
11058
1142    108013  00      stealth cleanser        bruises 
 
11059
1143    084004  00      coinciding      commuters       bonfire 
 
11060
1144    083402  00      founder honeysuckle     Colombo 
 
11061
1145    084003  00      environing      orphanage       nondecreasing   
 
11062
1146    088504  00      jewelry skies   innocents       
 
11063
1147    088005  00      lemons  crushers        masked  
 
11064
1148    088007  00      brokenness      Puritan file    
 
11065
1149    088006  00      bedpost squeezer        brush   
 
11066
1150    148025  00      assurers        bruises mutilate        
 
11067
1151    148024  00      annoyers        bonfire mommy   
 
11068
1152    138305  00      affixed Colombo bulkheads       
 
11069
1153    138306  00      warbling        nondecreasing   undeclared      
 
11070
1154    152701  00      seriously       innocents       displacements   
 
11071
1155    148505  00      boasted masked  nieces  
 
11072
1156    158003  00      Chantilly       file    coeducation     
 
11073
1157    156201  00      Iranizes        brush   brassy  
 
11074
1158    156202  00      violinist       mutilate        authenticator   
 
11075
1159    158307  00      extramarital    mommy   Washoe  
 
11076
1160    158402  00      spates  bulkheads       penny   
 
11077
1161    158401  00      cloakroom       undeclared      Flagler 
 
11078
1162    068013  00      gazer   displacements   stoned  
 
11079
1163    068012  00      hand    nieces  cranes  
 
11080
1164    068203  00      tucked  coeducation     masterful       
 
11081
1165    088205  00      gems    brassy  biracial        
 
11082
1166    068704  00      clinker authenticator   steamships      
 
11083
1167    068604  00      refiner Washoe  windmills       
 
11084
1168    158502  00      callus  penny   exploit 
 
11085
1169    123103  00      leopards        Flagler riverfront      
 
11086
1170    148026  00      comfortingly    stoned  sisterly        
 
11087
1171    123302  00      generically     cranes  sharpshoot      
 
11088
1172    076503  00      getters masterful       mittens 
 
11089
1173    126304  00      sexually        biracial        interdependency 
 
11090
1174    068306  00      spear   steamships      policy  
 
11091
1175    143504  00      serums  windmills       unleashing      
 
11092
1176    160201  00      Italianization  exploit pretenders      
 
11093
1177    148028  00      attendants      riverfront      overstatements  
 
11094
1178    148027  00      spies   sisterly        birthed 
 
11095
1179    143505  00      Anthony sharpshoot      opportunism     
 
11096
1180    108014  00      planar  mittens showroom        
 
11097
1181    076104  00      cupped  interdependency compromisingly  
 
11098
1182    078106  00      cleanser        policy  Medicare        
 
11099
1183    126102  00      commuters       unleashing      corresponds     
 
11100
1184    128029  00      honeysuckle     pretenders      hardware        
 
11101
1185    128028  00      orphanage       overstatements  implant 
 
11102
1186    018410  00      skies   birthed Alicia  
 
11103
1187    128110  00      crushers        opportunism     requesting      
 
11104
1188    148506  00      Puritan showroom        produced        
 
11105
1189    123303  00      squeezer        compromisingly  criticizes      
 
11106
1190    123304  00      bruises Medicare        backer  
 
11107
1191    068504  00      bonfire corresponds     positively      
 
11108
1192    068305  00      Colombo hardware        colicky 
 
11109
1193    000000  00      nondecreasing   implant thrillingly     
 
11110
1       000001  00      Omaha   teethe  neat    
 
11111
2       011401  37      breaking        dreaded Steinberg       W
 
11112
3       011402  37      Romans  scholastics     jarring 
 
11113
4       011403  37      intercepted     audiology       tinily  
 
11114
2       011401  37      breaking        dreaded Steinberg       W
 
11115
3       011402  37      Romans  scholastics     jarring 
 
11116
4       011403  37      intercepted     audiology       tinily  
 
11117
1       000001  00      Omaha   teethe  neat    
 
11118
2       011401  37      breaking        dreaded Steinberg       W
 
11119
3       011402  37      Romans  scholastics     jarring 
 
11120
4       011403  37      intercepted     audiology       tinily  
 
11121
2       011401  37      breaking        dreaded Steinberg       W
 
11122
3       011402  37      Romans  scholastics     jarring 
 
11123
4       011403  37      intercepted     audiology       tinily  
 
11124
SELECT COUNT(auto) FROM t2;
 
11125
COUNT(auto)
 
11126
1213
 
11127
INSERT DELAYED INTO t2 VALUES (99999,011403,37,'the','delayed','insert','');
 
11128
INSERT INTO t2 VALUES (100000,000001,00,'after','delayed','insert','');
 
11129
SELECT COUNT(auto) FROM t2;
 
11130
COUNT(auto)
 
11131
1215
 
11132
ALTER TABLE t2 DROP COLUMN fld6;
 
11133
SHOW CREATE TABLE t2;
 
11134
Table   Create Table
 
11135
t2      CREATE TABLE `t2` (
 
11136
  `auto` int(11) DEFAULT NULL,
 
11137
  `fld1` int(6) unsigned zerofill NOT NULL DEFAULT '000000',
 
11138
  `companynr` tinyint(2) unsigned zerofill NOT NULL DEFAULT '00',
 
11139
  `fld3` char(30) NOT NULL DEFAULT '',
 
11140
  `fld4` char(35) NOT NULL DEFAULT '',
 
11141
  `fld5` char(35) NOT NULL DEFAULT ''
 
11142
) ENGINE=ARCHIVE DEFAULT CHARSET=latin1
 
11143
SELECT * FROM t2 WHERE auto != 100000;
 
11144
auto    fld1    companynr       fld3    fld4    fld5
 
11145
1       000001  00      Omaha   teethe  neat
 
11146
2       011401  37      breaking        dreaded Steinberg
 
11147
3       011402  37      Romans  scholastics     jarring
 
11148
4       011403  37      intercepted     audiology       tinily
 
11149
5       011501  37      bewilderingly   wallet  balled
 
11150
6       011701  37      astound parters persist
 
11151
7       011702  37      admonishing     eschew  attainments
 
11152
8       011703  37      sumac   quitter fanatic
 
11153
9       012001  37      flanking        neat    measures
 
11154
10      012003  37      combed  Steinberg       rightfulness
 
11155
11      012004  37      subjective      jarring capably
 
11156
12      012005  37      scatterbrain    tinily  impulsive
 
11157
13      012301  37      Eulerian        balled  starlet
 
11158
14      012302  36      dubbed  persist terminators
 
11159
15      012303  37      Kane    attainments     untying
 
11160
16      012304  37      overlay fanatic announces
 
11161
17      012305  37      perturb measures        featherweight
 
11162
18      012306  37      goblins rightfulness    pessimist
 
11163
19      012501  37      annihilates     capably daughter
 
11164
20      012602  37      Wotan   impulsive       decliner
 
11165
21      012603  37      snatching       starlet lawgiver
 
11166
22      012604  37      concludes       terminators     stated
 
11167
23      012605  37      laterally       untying readable
 
11168
24      012606  37      yelped  announces       attrition
 
11169
25      012701  37      grazing featherweight   cascade
 
11170
26      012702  37      Baird   pessimist       motors
 
11171
27      012703  37      celery  daughter        interrogate
 
11172
28      012704  37      misunderstander decliner        pests
 
11173
29      013601  37      handgun lawgiver        stairway
 
11174
30      013602  37      foldout stated  dopers
 
11175
31      013603  37      mystic  readable        testicle
 
11176
32      013604  37      succumbed       attrition       Parsifal
 
11177
33      013605  37      Nabisco cascade leavings
 
11178
34      013606  37      fingerings      motors  postulation
 
11179
35      013607  37      aging   interrogate     squeaking
 
11180
36      013608  37      afield  pests   contrasted
 
11181
37      013609  37      ammonium        stairway        leftover
 
11182
38      013610  37      boat    dopers  whiteners
 
11183
39      013801  37      intelligibility testicle        erases
 
11184
40      013802  37      Augustine       Parsifal        Punjab
 
11185
41      013803  37      teethe  leavings        Merritt
 
11186
42      013804  37      dreaded postulation     Quixotism
 
11187
43      013901  37      scholastics     squeaking       sweetish
 
11188
44      016001  37      audiology       contrasted      dogging
 
11189
45      016201  37      wallet  leftover        scornfully
 
11190
46      016202  37      parters whiteners       bellow
 
11191
47      016301  37      eschew  erases  bills
 
11192
48      016302  37      quitter Punjab  cupboard
 
11193
49      016303  37      neat    Merritt sureties
 
11194
50      016304  37      Steinberg       Quixotism       puddings
 
11195
51      018001  37      jarring sweetish        tapestry
 
11196
52      018002  37      tinily  dogging fetters
 
11197
53      018003  37      balled  scornfully      bivalves
 
11198
54      018004  37      persist bellow  incurring
 
11199
55      018005  37      attainments     bills   Adolph
 
11200
56      018007  37      fanatic cupboard        pithed
 
11201
57      018008  37      measures        sureties        emergency
 
11202
58      018009  37      rightfulness    puddings        Miles
 
11203
59      018010  37      capably tapestry        trimmings
 
11204
60      018012  37      impulsive       fetters tragedies
 
11205
61      018013  37      starlet bivalves        skulking
 
11206
62      018014  37      terminators     incurring       flint
 
11207
63      018015  37      untying Adolph  flopping
 
11208
64      018016  37      announces       pithed  relaxing
 
11209
65      018017  37      featherweight   emergency       offload
 
11210
66      018018  37      pessimist       Miles   suites
 
11211
67      018019  37      daughter        trimmings       lists
 
11212
68      018020  37      decliner        tragedies       animized
 
11213
69      018021  37      lawgiver        skulking        multilayer
 
11214
70      018022  37      stated  flint   standardizes
 
11215
71      018023  37      readable        flopping        Judas
 
11216
72      018024  37      attrition       relaxing        vacuuming
 
11217
73      018025  37      cascade offload dentally
 
11218
74      018026  37      motors  suites  humanness
 
11219
75      018027  37      interrogate     lists   inch
 
11220
76      018028  37      pests   animized        Weissmuller
 
11221
77      018029  37      stairway        multilayer      irresponsibly
 
11222
78      018030  37      dopers  standardizes    luckily
 
11223
79      018032  37      testicle        Judas   culled
 
11224
80      018033  37      Parsifal        vacuuming       medical
 
11225
81      018034  37      leavings        dentally        bloodbath
 
11226
82      018035  37      postulation     humanness       subschema
 
11227
83      018036  37      squeaking       inch    animals
 
11228
84      018037  37      contrasted      Weissmuller     Micronesia
 
11229
85      018038  37      leftover        irresponsibly   repetitions
 
11230
86      018039  37      whiteners       luckily Antares
 
11231
87      018040  37      erases  culled  ventilate
 
11232
88      018041  37      Punjab  medical pityingly
 
11233
89      018042  37      Merritt bloodbath       interdependent
 
11234
90      018043  37      Quixotism       subschema       Graves
 
11235
91      018044  37      sweetish        animals neonatal
 
11236
92      018045  37      dogging Micronesia      scribbled
 
11237
93      018046  37      scornfully      repetitions     chafe
 
11238
94      018048  37      bellow  Antares honoring
 
11239
95      018049  37      bills   ventilate       realtor
 
11240
96      018050  37      cupboard        pityingly       elite
 
11241
97      018051  37      sureties        interdependent  funereal
 
11242
98      018052  37      puddings        Graves  abrogating
 
11243
99      018053  50      tapestry        neonatal        sorters
 
11244
100     018054  37      fetters scribbled       Conley
 
11245
101     018055  37      bivalves        chafe   lectured
 
11246
102     018056  37      incurring       honoring        Abraham
 
11247
103     018057  37      Adolph  realtor Hawaii
 
11248
104     018058  37      pithed  elite   cage
 
11249
105     018059  36      emergency       funereal        hushes
 
11250
106     018060  37      Miles   abrogating      Simla
 
11251
107     018061  37      trimmings       sorters reporters
 
11252
108     018101  37      tragedies       Conley  Dutchman
 
11253
109     018102  37      skulking        lectured        descendants
 
11254
110     018103  37      flint   Abraham groupings
 
11255
111     018104  37      flopping        Hawaii  dissociate
 
11256
112     018201  37      relaxing        cage    coexist
 
11257
113     018202  37      offload hushes  Beebe
 
11258
114     018402  37      suites  Simla   Taoism
 
11259
115     018403  37      lists   reporters       Connally
 
11260
116     018404  37      animized        Dutchman        fetched
 
11261
117     018405  37      multilayer      descendants     checkpoints
 
11262
118     018406  37      standardizes    groupings       rusting
 
11263
119     018409  37      Judas   dissociate      galling
 
11264
120     018601  37      vacuuming       coexist obliterates
 
11265
121     018602  37      dentally        Beebe   traitor
 
11266
122     018603  37      humanness       Taoism  resumes
 
11267
123     018801  37      inch    Connally        analyzable
 
11268
124     018802  37      Weissmuller     fetched terminator
 
11269
125     018803  37      irresponsibly   checkpoints     gritty
 
11270
126     018804  37      luckily rusting firearm
 
11271
127     018805  37      culled  galling minima
 
11272
128     018806  37      medical obliterates     Selfridge
 
11273
129     018807  37      bloodbath       traitor disable
 
11274
130     018808  37      subschema       resumes witchcraft
 
11275
131     018809  37      animals analyzable      betroth
 
11276
132     018810  37      Micronesia      terminator      Manhattanize
 
11277
133     018811  37      repetitions     gritty  imprint
 
11278
134     018812  37      Antares firearm peeked
 
11279
135     019101  37      ventilate       minima  swelling
 
11280
136     019102  37      pityingly       Selfridge       interrelationships
 
11281
137     019103  37      interdependent  disable riser
 
11282
138     019201  37      Graves  witchcraft      Gandhian
 
11283
139     030501  37      neonatal        betroth peacock
 
11284
140     030502  50      scribbled       Manhattanize    bee
 
11285
141     030503  37      chafe   imprint kanji
 
11286
142     030504  37      honoring        peeked  dental
 
11287
143     031901  37      realtor swelling        scarf
 
11288
144     036001  37      elite   interrelationships      chasm
 
11289
145     036002  37      funereal        riser   insolence
 
11290
146     036004  37      abrogating      Gandhian        syndicate
 
11291
147     036005  37      sorters peacock alike
 
11292
148     038001  37      Conley  bee     imperial
 
11293
149     038002  37      lectured        kanji   convulsion
 
11294
150     038003  37      Abraham dental  railway
 
11295
151     038004  37      Hawaii  scarf   validate
 
11296
152     038005  37      cage    chasm   normalizes
 
11297
153     038006  37      hushes  insolence       comprehensive
 
11298
154     038007  37      Simla   syndicate       chewing
 
11299
155     038008  37      reporters       alike   denizen
 
11300
156     038009  37      Dutchman        imperial        schemer
 
11301
157     038010  37      descendants     convulsion      chronicle
 
11302
158     038011  37      groupings       railway Kline
 
11303
159     038012  37      dissociate      validate        Anatole
 
11304
160     038013  37      coexist normalizes      partridges
 
11305
161     038014  37      Beebe   comprehensive   brunch
 
11306
162     038015  37      Taoism  chewing recruited
 
11307
163     038016  37      Connally        denizen dimensions
 
11308
164     038017  37      fetched schemer Chicana
 
11309
165     038018  37      checkpoints     chronicle       announced
 
11310
166     038101  37      rusting Kline   praised
 
11311
167     038102  37      galling Anatole employing
 
11312
168     038103  37      obliterates     partridges      linear
 
11313
169     038104  37      traitor brunch  quagmire
 
11314
170     038201  37      resumes recruited       western
 
11315
171     038202  37      analyzable      dimensions      relishing
 
11316
172     038203  37      terminator      Chicana serving
 
11317
173     038204  37      gritty  announced       scheduling
 
11318
174     038205  37      firearm praised lore
 
11319
175     038206  37      minima  employing       eventful
 
11320
176     038208  37      Selfridge       linear  arteriole
 
11321
177     042801  37      disable quagmire        disentangle
 
11322
178     042802  37      witchcraft      western cured
 
11323
179     046101  37      betroth relishing       Fenton
 
11324
180     048001  37      Manhattanize    serving avoidable
 
11325
181     048002  37      imprint scheduling      drains
 
11326
182     048003  37      peeked  lore    detectably
 
11327
183     048004  37      swelling        eventful        husky
 
11328
184     048005  37      interrelationships      arteriole       impelling
 
11329
185     048006  37      riser   disentangle     undoes
 
11330
186     048007  37      Gandhian        cured   evened
 
11331
187     048008  37      peacock Fenton  squeezes
 
11332
188     048101  37      bee     avoidable       destroyer
 
11333
189     048102  37      kanji   drains  rudeness
 
11334
190     048201  37      dental  detectably      beaner
 
11335
191     048202  37      scarf   husky   boorish
 
11336
192     048203  37      chasm   impelling       Everhart
 
11337
193     048204  37      insolence       undoes  encompass
 
11338
194     048205  37      syndicate       evened  mushrooms
 
11339
195     048301  37      alike   squeezes        Alison
 
11340
196     048302  37      imperial        destroyer       externally
 
11341
197     048303  37      convulsion      rudeness        pellagra
 
11342
198     048304  37      railway beaner  cult
 
11343
199     048305  37      validate        boorish creek
 
11344
200     048401  37      normalizes      Everhart        Huffman
 
11345
201     048402  37      comprehensive   encompass       Majorca
 
11346
202     048403  37      chewing mushrooms       governing
 
11347
203     048404  37      denizen Alison  gadfly
 
11348
204     048405  37      schemer externally      reassigned
 
11349
205     048406  37      chronicle       pellagra        intentness
 
11350
206     048407  37      Kline   cult    craziness
 
11351
207     048408  37      Anatole creek   psychic
 
11352
208     048409  37      partridges      Huffman squabbled
 
11353
209     048410  37      brunch  Majorca burlesque
 
11354
210     048411  37      recruited       governing       capped
 
11355
211     048412  37      dimensions      gadfly  extracted
 
11356
212     048413  37      Chicana reassigned      DiMaggio
 
11357
213     048601  37      announced       intentness      exclamation
 
11358
214     048602  37      praised craziness       subdirectory
 
11359
215     048603  37      employing       psychic fangs
 
11360
216     048604  37      linear  squabbled       buyer
 
11361
217     048801  37      quagmire        burlesque       pithing
 
11362
218     050901  37      western capped  transistorizing
 
11363
219     051201  37      relishing       extracted       nonbiodegradable
 
11364
220     056002  37      serving DiMaggio        dislocate
 
11365
221     056003  37      scheduling      exclamation     monochromatic
 
11366
222     056004  37      lore    subdirectory    batting
 
11367
223     056102  37      eventful        fangs   postcondition
 
11368
224     056203  37      arteriole       buyer   catalog
 
11369
225     056204  37      disentangle     pithing Remus
 
11370
226     058003  37      cured   transistorizing devices
 
11371
227     058004  37      Fenton  nonbiodegradable        bike
 
11372
228     058005  37      avoidable       dislocate       qualify
 
11373
229     058006  37      drains  monochromatic   detained
 
11374
230     058007  37      detectably      batting commended
 
11375
231     058101  37      husky   postcondition   civilize
 
11376
232     058102  37      impelling       catalog Elmhurst
 
11377
233     058103  37      undoes  Remus   anesthetizing
 
11378
234     058105  37      evened  devices deaf
 
11379
235     058111  37      squeezes        bike    Brigham
 
11380
236     058112  37      destroyer       qualify title
 
11381
237     058113  37      rudeness        detained        coarse
 
11382
238     058114  37      beaner  commended       combinations
 
11383
239     058115  37      boorish civilize        grayness
 
11384
240     058116  37      Everhart        Elmhurst        innumerable
 
11385
241     058117  37      encompass       anesthetizing   Caroline
 
11386
242     058118  37      mushrooms       deaf    fatty
 
11387
243     058119  37      Alison  Brigham eastbound
 
11388
244     058120  37      externally      title   inexperienced
 
11389
245     058121  37      pellagra        coarse  hoarder
 
11390
246     058122  37      cult    combinations    scotch
 
11391
247     058123  37      creek   grayness        passport
 
11392
248     058124  37      Huffman innumerable     strategic
 
11393
249     058125  37      Majorca Caroline        gated
 
11394
250     058126  37      governing       fatty   flog
 
11395
251     058127  37      gadfly  eastbound       Pipestone
 
11396
252     058128  37      reassigned      inexperienced   Dar
 
11397
253     058201  37      intentness      hoarder Corcoran
 
11398
254     058202  37      craziness       scotch  flyers
 
11399
255     058303  37      psychic passport        competitions
 
11400
256     058304  37      squabbled       strategic       suppliers
 
11401
257     058602  37      burlesque       gated   skips
 
11402
258     058603  37      capped  flog    institutes
 
11403
259     058604  37      extracted       Pipestone       troop
 
11404
260     058605  37      DiMaggio        Dar     connective
 
11405
261     058606  37      exclamation     Corcoran        denies
 
11406
262     058607  37      subdirectory    flyers  polka
 
11407
263     060401  36      fangs   competitions    observations
 
11408
264     061701  36      buyer   suppliers       askers
 
11409
265     066201  36      pithing skips   homeless
 
11410
266     066501  36      transistorizing institutes      Anna
 
11411
267     068001  36      nonbiodegradable        troop   subdirectories
 
11412
268     068002  36      dislocate       connective      decaying
 
11413
269     068005  36      monochromatic   denies  outwitting
 
11414
270     068006  36      batting polka   Harpy
 
11415
271     068007  36      postcondition   observations    crazed
 
11416
272     068008  36      catalog askers  suffocate
 
11417
273     068009  36      Remus   homeless        provers
 
11418
274     068010  36      devices Anna    technically
 
11419
275     068011  36      bike    subdirectories  Franklinizations
 
11420
276     068202  36      qualify decaying        considered
 
11421
277     068302  36      detained        outwitting      tinnily
 
11422
278     068303  36      commended       Harpy   uninterruptedly
 
11423
279     068401  36      civilize        crazed  whistled
 
11424
280     068501  36      Elmhurst        suffocate       automate
 
11425
281     068502  36      anesthetizing   provers gutting
 
11426
282     068503  36      deaf    technically     surreptitious
 
11427
283     068602  36      Brigham Franklinizations        Choctaw
 
11428
284     068603  36      title   considered      cooks
 
11429
285     068701  36      coarse  tinnily millivolt
 
11430
286     068702  36      combinations    uninterruptedly counterpoise
 
11431
287     068703  36      grayness        whistled        Gothicism
 
11432
288     076001  36      innumerable     automate        feminine
 
11433
289     076002  36      Caroline        gutting metaphysically
 
11434
290     076101  36      fatty   surreptitious   sanding
 
11435
291     076102  36      eastbound       Choctaw contributorily
 
11436
292     076103  36      inexperienced   cooks   receivers
 
11437
293     076302  36      hoarder millivolt       adjourn
 
11438
294     076303  36      scotch  counterpoise    straggled
 
11439
295     076304  36      passport        Gothicism       druggists
 
11440
296     076305  36      strategic       feminine        thanking
 
11441
297     076306  36      gated   metaphysically  ostrich
 
11442
298     076307  36      flog    sanding hopelessness
 
11443
299     076402  36      Pipestone       contributorily  Eurydice
 
11444
300     076501  36      Dar     receivers       excitation
 
11445
301     076502  36      Corcoran        adjourn presumes
 
11446
302     076701  36      flyers  straggled       imaginable
 
11447
303     078001  36      competitions    druggists       concoct
 
11448
304     078002  36      suppliers       thanking        peering
 
11449
305     078003  36      skips   ostrich Phelps
 
11450
306     078004  36      institutes      hopelessness    ferociousness
 
11451
307     078005  36      troop   Eurydice        sentences
 
11452
308     078006  36      connective      excitation      unlocks
 
11453
309     078007  36      denies  presumes        engrossing
 
11454
310     078008  36      polka   imaginable      Ruth
 
11455
311     078101  36      observations    concoct tying
 
11456
312     078103  36      askers  peering exclaimers
 
11457
313     078104  36      homeless        Phelps  synergy
 
11458
314     078105  36      Anna    ferociousness   Huey
 
11459
315     082101  36      subdirectories  sentences       merging
 
11460
316     083401  36      decaying        unlocks judges
 
11461
317     084001  36      outwitting      engrossing      Shylock
 
11462
318     084002  36      Harpy   Ruth    Miltonism
 
11463
319     086001  36      crazed  tying   hen
 
11464
320     086102  36      suffocate       exclaimers      honeybee
 
11465
321     086201  36      provers synergy towers
 
11466
322     088001  36      technically     Huey    dilutes
 
11467
323     088002  36      Franklinizations        merging numerals
 
11468
324     088003  36      considered      judges  democracy
 
11469
325     088004  36      tinnily Shylock Ibero-
 
11470
326     088101  36      uninterruptedly Miltonism       invalids
 
11471
327     088102  36      whistled        hen     behavior
 
11472
328     088103  36      automate        honeybee        accruing
 
11473
329     088104  36      gutting towers  relics
 
11474
330     088105  36      surreptitious   dilutes rackets
 
11475
331     088106  36      Choctaw numerals        Fischbein
 
11476
332     088201  36      cooks   democracy       phony
 
11477
333     088203  36      millivolt       Ibero-  cross
 
11478
334     088204  36      counterpoise    invalids        cleanup
 
11479
335     088302  37      Gothicism       behavior        conspirator
 
11480
336     088303  37      feminine        accruing        label
 
11481
337     088305  37      metaphysically  relics  university
 
11482
338     088402  37      sanding rackets cleansed
 
11483
339     088501  36      contributorily  Fischbein       ballgown
 
11484
340     088502  36      receivers       phony   starlet
 
11485
341     088503  36      adjourn cross   aqueous
 
11486
342     098001  58      straggled       cleanup portrayal
 
11487
343     098002  58      druggists       conspirator     despising
 
11488
344     098003  58      thanking        label   distort
 
11489
345     098004  58      ostrich university      palmed
 
11490
346     098005  58      hopelessness    cleansed        faced
 
11491
347     098006  58      Eurydice        ballgown        silverware
 
11492
348     141903  29      excitation      starlet assessor
 
11493
349     098008  58      presumes        aqueous spiders
 
11494
350     098009  58      imaginable      portrayal       artificially
 
11495
351     098010  58      concoct despising       reminiscence
 
11496
352     098011  58      peering distort Mexican
 
11497
353     098012  58      Phelps  palmed  obnoxious
 
11498
354     098013  58      ferociousness   faced   fragile
 
11499
355     098014  58      sentences       silverware      apprehensible
 
11500
356     098015  58      unlocks assessor        births
 
11501
357     098016  58      engrossing      spiders garages
 
11502
358     098017  58      Ruth    artificially    panty
 
11503
359     098018  58      tying   reminiscence    anteater
 
11504
360     098019  58      exclaimers      Mexican displacement
 
11505
361     098020  58      synergy obnoxious       drovers
 
11506
362     098021  58      Huey    fragile patenting
 
11507
363     098022  58      merging apprehensible   far
 
11508
364     098023  58      judges  births  shrieks
 
11509
365     098024  58      Shylock garages aligning
 
11510
366     098025  37      Miltonism       panty   pragmatism
 
11511
367     106001  36      hen     anteater        fevers
 
11512
368     108001  36      honeybee        displacement    reexamines
 
11513
369     108002  36      towers  drovers occupancies
 
11514
370     108003  36      dilutes patenting       sweats
 
11515
371     108004  36      numerals        far     modulators
 
11516
372     108005  36      democracy       shrieks demand
 
11517
373     108007  36      Ibero-  aligning        Madeira
 
11518
374     108008  36      invalids        pragmatism      Viennese
 
11519
375     108009  36      behavior        fevers  chillier
 
11520
376     108010  36      accruing        reexamines      wildcats
 
11521
377     108011  36      relics  occupancies     gentle
 
11522
378     108012  36      rackets sweats  Angles
 
11523
379     108101  36      Fischbein       modulators      accuracies
 
11524
380     108102  36      phony   demand  toggle
 
11525
381     108103  36      cross   Madeira Mendelssohn
 
11526
382     108111  50      cleanup Viennese        behaviorally
 
11527
383     108105  36      conspirator     chillier        Rochford
 
11528
384     108106  36      label   wildcats        mirror
 
11529
385     108107  36      university      gentle  Modula
 
11530
386     108108  50      cleansed        Angles  clobbering
 
11531
387     108109  36      ballgown        accuracies      chronography
 
11532
388     108110  36      starlet toggle  Eskimoizeds
 
11533
389     108201  36      aqueous Mendelssohn     British
 
11534
390     108202  36      portrayal       behaviorally    pitfalls
 
11535
391     108203  36      despising       Rochford        verify
 
11536
392     108204  36      distort mirror  scatter
 
11537
393     108205  36      palmed  Modula  Aztecan
 
11538
394     108301  36      faced   clobbering      acuity
 
11539
395     108302  36      silverware      chronography    sinking
 
11540
396     112101  36      assessor        Eskimoizeds     beasts
 
11541
397     112102  36      spiders British Witt
 
11542
398     113701  36      artificially    pitfalls        physicists
 
11543
399     116001  36      reminiscence    verify  folksong
 
11544
400     116201  36      Mexican scatter strokes
 
11545
401     116301  36      obnoxious       Aztecan crowder
 
11546
402     116302  36      fragile acuity  merry
 
11547
403     116601  36      apprehensible   sinking cadenced
 
11548
404     116602  36      births  beasts  alimony
 
11549
405     116603  36      garages Witt    principled
 
11550
406     116701  36      panty   physicists      golfing
 
11551
407     116702  36      anteater        folksong        undiscovered
 
11552
408     118001  36      displacement    strokes irritates
 
11553
409     118002  36      drovers crowder patriots
 
11554
410     118003  36      patenting       merry   rooms
 
11555
411     118004  36      far     cadenced        towering
 
11556
412     118005  36      shrieks alimony displease
 
11557
413     118006  36      aligning        principled      photosensitive
 
11558
414     118007  36      pragmatism      golfing inking
 
11559
415     118008  36      fevers  undiscovered    gainers
 
11560
416     118101  36      reexamines      irritates       leaning
 
11561
417     118102  36      occupancies     patriots        hydrant
 
11562
418     118103  36      sweats  rooms   preserve
 
11563
419     118202  36      modulators      towering        blinded
 
11564
420     118203  36      demand  displease       interactions
 
11565
421     118204  36      Madeira photosensitive  Barry
 
11566
422     118302  36      Viennese        inking  whiteness
 
11567
423     118304  36      chillier        gainers pastimes
 
11568
424     118305  36      wildcats        leaning Edenization
 
11569
425     118306  36      gentle  hydrant Muscat
 
11570
426     118307  36      Angles  preserve        assassinated
 
11571
427     123101  36      accuracies      blinded labeled
 
11572
428     123102  36      toggle  interactions    glacial
 
11573
429     123301  36      Mendelssohn     Barry   implied
 
11574
430     126001  36      behaviorally    whiteness       bibliographies
 
11575
431     126002  36      Rochford        pastimes        Buchanan
 
11576
432     126003  36      mirror  Edenization     forgivably
 
11577
433     126101  36      Modula  Muscat  innuendo
 
11578
434     126301  36      clobbering      assassinated    den
 
11579
435     126302  36      chronography    labeled submarines
 
11580
436     126402  36      Eskimoizeds     glacial mouthful
 
11581
437     126601  36      British implied expiring
 
11582
438     126602  36      pitfalls        bibliographies  unfulfilled
 
11583
439     126702  36      verify  Buchanan        precession
 
11584
440     128001  36      scatter forgivably      nullified
 
11585
441     128002  36      Aztecan innuendo        affects
 
11586
442     128003  36      acuity  den     Cynthia
 
11587
443     128004  36      sinking submarines      Chablis
 
11588
444     128005  36      beasts  mouthful        betterments
 
11589
445     128007  36      Witt    expiring        advertising
 
11590
446     128008  36      physicists      unfulfilled     rubies
 
11591
447     128009  36      folksong        precession      southwest
 
11592
448     128010  36      strokes nullified       superstitious
 
11593
449     128011  36      crowder affects tabernacle
 
11594
450     128012  36      merry   Cynthia silk
 
11595
451     128013  36      cadenced        Chablis handsomest
 
11596
452     128014  36      alimony betterments     Persian
 
11597
453     128015  36      principled      advertising     analog
 
11598
454     128016  36      golfing rubies  complex
 
11599
455     128017  36      undiscovered    southwest       Taoist
 
11600
456     128018  36      irritates       superstitious   suspend
 
11601
457     128019  36      patriots        tabernacle      relegated
 
11602
458     128020  36      rooms   silk    awesome
 
11603
459     128021  36      towering        handsomest      Bruxelles
 
11604
460     128022  36      displease       Persian imprecisely
 
11605
461     128023  36      photosensitive  analog  televise
 
11606
462     128101  36      inking  complex braking
 
11607
463     128102  36      gainers Taoist  true
 
11608
464     128103  36      leaning suspend disappointing
 
11609
465     128104  36      hydrant relegated       navally
 
11610
466     128106  36      preserve        awesome circus
 
11611
467     128107  36      blinded Bruxelles       beetles
 
11612
468     128108  36      interactions    imprecisely     trumps
 
11613
469     128202  36      Barry   televise        fourscore
 
11614
470     128203  36      whiteness       braking Blackfoots
 
11615
471     128301  36      pastimes        true    Grady
 
11616
472     128302  36      Edenization     disappointing   quiets
 
11617
473     128303  36      Muscat  navally floundered
 
11618
474     128304  36      assassinated    circus  profundity
 
11619
475     128305  36      labeled beetles Garrisonian
 
11620
476     128307  36      glacial trumps  Strauss
 
11621
477     128401  36      implied fourscore       cemented
 
11622
478     128502  36      bibliographies  Blackfoots      contrition
 
11623
479     128503  36      Buchanan        Grady   mutations
 
11624
480     128504  36      forgivably      quiets  exhibits
 
11625
481     128505  36      innuendo        floundered      tits
 
11626
482     128601  36      den     profundity      mate
 
11627
483     128603  36      submarines      Garrisonian     arches
 
11628
484     128604  36      mouthful        Strauss Moll
 
11629
485     128702  36      expiring        cemented        ropers
 
11630
486     128703  36      unfulfilled     contrition      bombast
 
11631
487     128704  36      precession      mutations       difficultly
 
11632
488     138001  36      nullified       exhibits        adsorption
 
11633
489     138002  36      affects tits    definiteness
 
11634
490     138003  36      Cynthia mate    cultivation
 
11635
491     138004  36      Chablis arches  heals
 
11636
492     138005  36      betterments     Moll    Heusen
 
11637
493     138006  36      advertising     ropers  target
 
11638
494     138007  36      rubies  bombast cited
 
11639
495     138008  36      southwest       difficultly     congresswoman
 
11640
496     138009  36      superstitious   adsorption      Katherine
 
11641
497     138102  36      tabernacle      definiteness    titter
 
11642
498     138103  36      silk    cultivation     aspire
 
11643
499     138104  36      handsomest      heals   Mardis
 
11644
500     138105  36      Persian Heusen  Nadia
 
11645
501     138201  36      analog  target  estimating
 
11646
502     138302  36      complex cited   stuck
 
11647
503     138303  36      Taoist  congresswoman   fifteenth
 
11648
504     138304  36      suspend Katherine       Colombo
 
11649
505     138401  29      relegated       titter  survey
 
11650
506     140102  29      awesome aspire  staffing
 
11651
507     140103  29      Bruxelles       Mardis  obtain
 
11652
508     140104  29      imprecisely     Nadia   loaded
 
11653
509     140105  29      televise        estimating      slaughtered
 
11654
510     140201  29      braking stuck   lights
 
11655
511     140701  29      true    fifteenth       circumference
 
11656
512     141501  29      disappointing   Colombo dull
 
11657
513     141502  29      navally survey  weekly
 
11658
514     141901  29      circus  staffing        wetness
 
11659
515     141902  29      beetles obtain  visualized
 
11660
516     142101  29      trumps  loaded  Tannenbaum
 
11661
517     142102  29      fourscore       slaughtered     moribund
 
11662
518     142103  29      Blackfoots      lights  demultiplex
 
11663
519     142701  29      Grady   circumference   lockings
 
11664
520     143001  29      quiets  dull    thugs
 
11665
521     143501  29      floundered      weekly  unnerves
 
11666
522     143502  29      profundity      wetness abut
 
11667
523     148001  29      Garrisonian     visualized      Chippewa
 
11668
524     148002  29      Strauss Tannenbaum      stratifications
 
11669
525     148003  29      cemented        moribund        signaled
 
11670
526     148004  29      contrition      demultiplex     Italianizes
 
11671
527     148005  29      mutations       lockings        algorithmic
 
11672
528     148006  29      exhibits        thugs   paranoid
 
11673
529     148007  29      tits    unnerves        camping
 
11674
530     148009  29      mate    abut    signifying
 
11675
531     148010  29      arches  Chippewa        Patrice
 
11676
532     148011  29      Moll    stratifications search
 
11677
533     148012  29      ropers  signaled        Angeles
 
11678
534     148013  29      bombast Italianizes     semblance
 
11679
535     148023  36      difficultly     algorithmic     taxed
 
11680
536     148015  29      adsorption      paranoid        Beatrice
 
11681
537     148016  29      definiteness    camping retrace
 
11682
538     148017  29      cultivation     signifying      lockout
 
11683
539     148018  29      heals   Patrice grammatic
 
11684
540     148019  29      Heusen  search  helmsman
 
11685
541     148020  29      target  Angeles uniform
 
11686
542     148021  29      cited   semblance       hamming
 
11687
543     148022  29      congresswoman   taxed   disobedience
 
11688
544     148101  29      Katherine       Beatrice        captivated
 
11689
545     148102  29      titter  retrace transferals
 
11690
546     148201  29      aspire  lockout cartographer
 
11691
547     148401  29      Mardis  grammatic       aims
 
11692
548     148402  29      Nadia   helmsman        Pakistani
 
11693
549     148501  29      estimating      uniform burglarized
 
11694
550     148502  29      stuck   hamming saucepans
 
11695
551     148503  29      fifteenth       disobedience    lacerating
 
11696
552     148504  29      Colombo captivated      corny
 
11697
553     148601  29      survey  transferals     megabytes
 
11698
554     148602  29      staffing        cartographer    chancellor
 
11699
555     150701  29      obtain  aims    bulk
 
11700
556     152101  29      loaded  Pakistani       commits
 
11701
557     152102  29      slaughtered     burglarized     meson
 
11702
558     155202  36      lights  saucepans       deputies
 
11703
559     155203  29      circumference   lacerating      northeaster
 
11704
560     155204  29      dull    corny   dipole
 
11705
561     155205  29      weekly  megabytes       machining
 
11706
562     156001  29      wetness chancellor      therefore
 
11707
563     156002  29      visualized      bulk    Telefunken
 
11708
564     156102  29      Tannenbaum      commits salvaging
 
11709
565     156301  29      moribund        meson   Corinthianizes
 
11710
566     156302  29      demultiplex     deputies        restlessly
 
11711
567     156303  29      lockings        northeaster     bromides
 
11712
568     156304  29      thugs   dipole  generalized
 
11713
569     156305  29      unnerves        machining       mishaps
 
11714
570     156306  29      abut    therefore       quelling
 
11715
571     156501  29      Chippewa        Telefunken      spiritual
 
11716
572     158001  29      stratifications salvaging       beguiles
 
11717
573     158002  29      signaled        Corinthianizes  Trobriand
 
11718
574     158101  29      Italianizes     restlessly      fleeing
 
11719
575     158102  29      algorithmic     bromides        Armour
 
11720
576     158103  29      paranoid        generalized     chin
 
11721
577     158201  29      camping mishaps provers
 
11722
578     158202  29      signifying      quelling        aeronautic
 
11723
579     158203  29      Patrice spiritual       voltage
 
11724
580     158204  29      search  beguiles        sash
 
11725
581     158301  29      Angeles Trobriand       anaerobic
 
11726
582     158302  29      semblance       fleeing simultaneous
 
11727
583     158303  29      taxed   Armour  accumulating
 
11728
584     158304  29      Beatrice        chin    Medusan
 
11729
585     158305  29      retrace provers shouted
 
11730
586     158306  29      lockout aeronautic      freakish
 
11731
587     158501  29      grammatic       voltage index
 
11732
588     160301  29      helmsman        sash    commercially
 
11733
589     166101  50      uniform anaerobic       mistiness
 
11734
590     166102  50      hamming simultaneous    endpoint
 
11735
591     168001  29      disobedience    accumulating    straight
 
11736
592     168002  29      captivated      Medusan flurried
 
11737
593     168003  29      transferals     shouted denotative
 
11738
594     168101  29      cartographer    freakish        coming
 
11739
595     168102  29      aims    index   commencements
 
11740
596     168103  29      Pakistani       commercially    gentleman
 
11741
597     168104  29      burglarized     mistiness       gifted
 
11742
598     168202  29      saucepans       endpoint        Shanghais
 
11743
599     168301  29      lacerating      straight        sportswriting
 
11744
600     168502  29      corny   flurried        sloping
 
11745
601     168503  29      megabytes       denotative      navies
 
11746
602     168601  29      chancellor      coming  leaflet
 
11747
603     173001  40      bulk    commencements   shooter
 
11748
604     173701  40      commits gentleman       Joplin
 
11749
605     173702  40      meson   gifted  babies
 
11750
606     176001  40      deputies        Shanghais       subdivision
 
11751
607     176101  40      northeaster     sportswriting   burstiness
 
11752
608     176201  40      dipole  sloping belted
 
11753
609     176401  40      machining       navies  assails
 
11754
610     176501  40      therefore       leaflet admiring
 
11755
611     176601  40      Telefunken      shooter swaying
 
11756
612     176602  40      salvaging       Joplin  Goldstine
 
11757
613     176603  40      Corinthianizes  babies  fitting
 
11758
614     178001  40      restlessly      subdivision     Norwalk
 
11759
615     178002  40      bromides        burstiness      weakening
 
11760
616     178003  40      generalized     belted  analogy
 
11761
617     178004  40      mishaps assails deludes
 
11762
618     178005  40      quelling        admiring        cokes
 
11763
619     178006  40      spiritual       swaying Clayton
 
11764
620     178007  40      beguiles        Goldstine       exhausts
 
11765
621     178008  40      Trobriand       fitting causality
 
11766
622     178101  40      fleeing Norwalk sating
 
11767
623     178102  40      Armour  weakening       icon
 
11768
624     178103  40      chin    analogy throttles
 
11769
625     178201  40      provers deludes communicants
 
11770
626     178202  40      aeronautic      cokes   dehydrate
 
11771
627     178301  40      voltage Clayton priceless
 
11772
628     178302  40      sash    exhausts        publicly
 
11773
629     178401  40      anaerobic       causality       incidentals
 
11774
630     178402  40      simultaneous    sating  commonplace
 
11775
631     178403  40      accumulating    icon    mumbles
 
11776
632     178404  40      Medusan throttles       furthermore
 
11777
633     178501  40      shouted communicants    cautioned
 
11778
634     186002  37      freakish        dehydrate       parametrized
 
11779
635     186102  37      index   priceless       registration
 
11780
636     186201  40      commercially    publicly        sadly
 
11781
637     186202  40      mistiness       incidentals     positioning
 
11782
638     186203  40      endpoint        commonplace     babysitting
 
11783
639     186302  37      straight        mumbles eternal
 
11784
640     188007  37      flurried        furthermore     hoarder
 
11785
641     188008  37      denotative      cautioned       congregates
 
11786
642     188009  37      coming  parametrized    rains
 
11787
643     188010  37      commencements   registration    workers
 
11788
644     188011  37      gentleman       sadly   sags
 
11789
645     188012  37      gifted  positioning     unplug
 
11790
646     188013  37      Shanghais       babysitting     garage
 
11791
647     188014  37      sportswriting   eternal boulder
 
11792
648     188015  37      sloping hoarder hollowly
 
11793
649     188016  37      navies  congregates     specifics
 
11794
650     188017  37      leaflet rains   Teresa
 
11795
651     188102  37      shooter workers Winsett
 
11796
652     188103  37      Joplin  sags    convenient
 
11797
653     188202  37      babies  unplug  buckboards
 
11798
654     188301  40      subdivision     garage  amenities
 
11799
655     188302  40      burstiness      boulder resplendent
 
11800
656     188303  40      belted  hollowly        priding
 
11801
657     188401  37      assails specifics       configurations
 
11802
658     188402  37      admiring        Teresa  untidiness
 
11803
659     188503  37      swaying Winsett Brice
 
11804
660     188504  37      Goldstine       convenient      sews
 
11805
661     188505  37      fitting buckboards      participated
 
11806
662     190701  37      Norwalk amenities       Simon
 
11807
663     190703  50      weakening       resplendent     certificates
 
11808
664     191701  37      analogy priding Fitzpatrick
 
11809
665     191702  37      deludes configurations  Evanston
 
11810
666     191703  37      cokes   untidiness      misted
 
11811
667     196001  37      Clayton Brice   textures
 
11812
668     196002  37      exhausts        sews    save
 
11813
669     196003  37      causality       participated    count
 
11814
670     196101  37      sating  Simon   rightful
 
11815
671     196103  37      icon    certificates    chaperone
 
11816
672     196104  37      throttles       Fitzpatrick     Lizzy
 
11817
673     196201  37      communicants    Evanston        clenched
 
11818
674     196202  37      dehydrate       misted  effortlessly
 
11819
675     196203  37      priceless       textures        accessed
 
11820
676     198001  37      publicly        save    beaters
 
11821
677     198003  37      incidentals     count   Hornblower
 
11822
678     198004  37      commonplace     rightful        vests
 
11823
679     198005  37      mumbles chaperone       indulgences
 
11824
680     198006  37      furthermore     Lizzy   infallibly
 
11825
681     198007  37      cautioned       clenched        unwilling
 
11826
682     198008  37      parametrized    effortlessly    excrete
 
11827
683     198009  37      registration    accessed        spools
 
11828
684     198010  37      sadly   beaters crunches
 
11829
685     198011  37      positioning     Hornblower      overestimating
 
11830
686     198012  37      babysitting     vests   ineffective
 
11831
687     198013  37      eternal indulgences     humiliation
 
11832
688     198014  37      hoarder infallibly      sophomore
 
11833
689     198015  37      congregates     unwilling       star
 
11834
690     198017  37      rains   excrete rifles
 
11835
691     198018  37      workers spools  dialysis
 
11836
692     198019  37      sags    crunches        arriving
 
11837
693     198020  37      unplug  overestimating  indulge
 
11838
694     198021  37      garage  ineffective     clockers
 
11839
695     198022  37      boulder humiliation     languages
 
11840
696     198023  50      hollowly        sophomore       Antarctica
 
11841
697     198024  37      specifics       star    percentage
 
11842
698     198101  37      Teresa  rifles  ceiling
 
11843
699     198103  37      Winsett dialysis        specification
 
11844
700     198105  37      convenient      arriving        regimented
 
11845
701     198106  37      buckboards      indulge ciphers
 
11846
702     198201  37      amenities       clockers        pictures
 
11847
703     198204  37      resplendent     languages       serpents
 
11848
704     198301  53      priding Antarctica      allot
 
11849
705     198302  53      configurations  percentage      realized
 
11850
706     198303  53      untidiness      ceiling mayoral
 
11851
707     198304  53      Brice   specification   opaquely
 
11852
708     198401  37      sews    regimented      hostess
 
11853
709     198402  37      participated    ciphers fiftieth
 
11854
710     198403  37      Simon   pictures        incorrectly
 
11855
711     202101  37      certificates    serpents        decomposition
 
11856
712     202301  37      Fitzpatrick     allot   stranglings
 
11857
713     202302  37      Evanston        realized        mixture
 
11858
714     202303  37      misted  mayoral electroencephalography
 
11859
715     202304  37      textures        opaquely        similarities
 
11860
716     202305  37      save    hostess charges
 
11861
717     202601  37      count   fiftieth        freest
 
11862
718     202602  37      rightful        incorrectly     Greenberg
 
11863
719     202605  37      chaperone       decomposition   tinting
 
11864
720     202606  37      Lizzy   stranglings     expelled
 
11865
721     202607  37      clenched        mixture warm
 
11866
722     202901  37      effortlessly    electroencephalography  smoothed
 
11867
723     202902  37      accessed        similarities    deductions
 
11868
724     202903  37      beaters charges Romano
 
11869
725     202904  37      Hornblower      freest  bitterroot
 
11870
726     202907  37      vests   Greenberg       corset
 
11871
727     202908  37      indulgences     tinting securing
 
11872
728     203101  37      infallibly      expelled        environing
 
11873
729     203103  37      unwilling       warm    cute
 
11874
730     203104  37      excrete smoothed        Crays
 
11875
731     203105  37      spools  deductions      heiress
 
11876
732     203401  37      crunches        Romano  inform
 
11877
733     203402  37      overestimating  bitterroot      avenge
 
11878
734     203404  37      ineffective     corset  universals
 
11879
735     203901  37      humiliation     securing        Kinsey
 
11880
736     203902  37      sophomore       environing      ravines
 
11881
737     203903  37      star    cute    bestseller
 
11882
738     203906  37      rifles  Crays   equilibrium
 
11883
739     203907  37      dialysis        heiress extents
 
11884
740     203908  37      arriving        inform  relatively
 
11885
741     203909  37      indulge avenge  pressure
 
11886
742     206101  37      clockers        universals      critiques
 
11887
743     206201  37      languages       Kinsey  befouled
 
11888
744     206202  37      Antarctica      ravines rightfully
 
11889
745     206203  37      percentage      bestseller      mechanizing
 
11890
746     206206  37      ceiling equilibrium     Latinizes
 
11891
747     206207  37      specification   extents timesharing
 
11892
748     206208  37      regimented      relatively      Aden
 
11893
749     208001  37      ciphers pressure        embassies
 
11894
750     208002  37      pictures        critiques       males
 
11895
751     208003  37      serpents        befouled        shapelessly
 
11896
752     208004  37      allot   rightfully      genres
 
11897
753     208008  37      realized        mechanizing     mastering
 
11898
754     208009  37      mayoral Latinizes       Newtonian
 
11899
755     208010  37      opaquely        timesharing     finishers
 
11900
756     208011  37      hostess Aden    abates
 
11901
757     208101  37      fiftieth        embassies       teem
 
11902
758     208102  37      incorrectly     males   kiting
 
11903
759     208103  37      decomposition   shapelessly     stodgy
 
11904
760     208104  37      stranglings     genres  scalps
 
11905
761     208105  37      mixture mastering       feed
 
11906
762     208110  37      electroencephalography  Newtonian       guitars
 
11907
763     208111  37      similarities    finishers       airships
 
11908
764     208112  37      charges abates  store
 
11909
765     208113  37      freest  teem    denounces
 
11910
766     208201  37      Greenberg       kiting  Pyle
 
11911
767     208203  37      tinting stodgy  Saxony
 
11912
768     208301  37      expelled        scalps  serializations
 
11913
769     208302  37      warm    feed    Peruvian
 
11914
770     208305  37      smoothed        guitars taxonomically
 
11915
771     208401  37      deductions      airships        kingdom
 
11916
772     208402  37      Romano  store   stint
 
11917
773     208403  37      bitterroot      denounces       Sault
 
11918
774     208404  37      corset  Pyle    faithful
 
11919
775     208501  37      securing        Saxony  Ganymede
 
11920
776     208502  37      environing      serializations  tidiness
 
11921
777     208503  37      cute    Peruvian        gainful
 
11922
778     208504  37      Crays   taxonomically   contrary
 
11923
779     208505  37      heiress kingdom Tipperary
 
11924
780     210101  37      inform  stint   tropics
 
11925
781     210102  37      avenge  Sault   theorizers
 
11926
782     210103  37      universals      faithful        renew
 
11927
783     210104  37      Kinsey  Ganymede        already
 
11928
784     210105  37      ravines tidiness        terminal
 
11929
785     210106  37      bestseller      gainful Hegelian
 
11930
786     210107  37      equilibrium     contrary        hypothesizer
 
11931
787     210401  37      extents Tipperary       warningly
 
11932
788     213201  37      relatively      tropics journalizing
 
11933
789     213203  37      pressure        theorizers      nested
 
11934
790     213204  37      critiques       renew   Lars
 
11935
791     213205  37      befouled        already saplings
 
11936
792     213206  37      rightfully      terminal        foothill
 
11937
793     213207  37      mechanizing     Hegelian        labeled
 
11938
794     216101  37      Latinizes       hypothesizer    imperiously
 
11939
795     216103  37      timesharing     warningly       reporters
 
11940
796     218001  37      Aden    journalizing    furnishings
 
11941
797     218002  37      embassies       nested  precipitable
 
11942
798     218003  37      males   Lars    discounts
 
11943
799     218004  37      shapelessly     saplings        excises
 
11944
800     143503  50      genres  foothill        Stalin
 
11945
801     218006  37      mastering       labeled despot
 
11946
802     218007  37      Newtonian       imperiously     ripeness
 
11947
803     218008  37      finishers       reporters       Arabia
 
11948
804     218009  37      abates  furnishings     unruly
 
11949
805     218010  37      teem    precipitable    mournfulness
 
11950
806     218011  37      kiting  discounts       boom
 
11951
807     218020  37      stodgy  excises slaughter
 
11952
808     218021  50      scalps  Stalin  Sabine
 
11953
809     218022  37      feed    despot  handy
 
11954
810     218023  37      guitars ripeness        rural
 
11955
811     218024  37      airships        Arabia  organizer
 
11956
812     218101  37      store   unruly  shipyard
 
11957
813     218102  37      denounces       mournfulness    civics
 
11958
814     218103  37      Pyle    boom    inaccuracy
 
11959
815     218201  37      Saxony  slaughter       rules
 
11960
816     218202  37      serializations  Sabine  juveniles
 
11961
817     218203  37      Peruvian        handy   comprised
 
11962
818     218204  37      taxonomically   rural   investigations
 
11963
819     218205  37      kingdom organizer       stabilizes
 
11964
820     218301  37      stint   shipyard        seminaries
 
11965
821     218302  37      Sault   civics  Hunter
 
11966
822     218401  37      faithful        inaccuracy      sporty
 
11967
823     218402  37      Ganymede        rules   test
 
11968
824     218403  37      tidiness        juveniles       weasels
 
11969
825     218404  37      gainful comprised       CERN
 
11970
826     218407  37      contrary        investigations  tempering
 
11971
827     218408  37      Tipperary       stabilizes      afore
 
11972
828     218409  37      tropics seminaries      Galatean
 
11973
829     218410  37      theorizers      Hunter  techniques
 
11974
830     226001  37      renew   sporty  error
 
11975
831     226002  37      already test    veranda
 
11976
832     226003  37      terminal        weasels severely
 
11977
833     226004  37      Hegelian        CERN    Cassites
 
11978
834     226005  37      hypothesizer    tempering       forthcoming
 
11979
835     226006  37      warningly       afore   guides
 
11980
836     226007  37      journalizing    Galatean        vanish
 
11981
837     226008  37      nested  techniques      lied
 
11982
838     226203  37      Lars    error   sawtooth
 
11983
839     226204  37      saplings        veranda fated
 
11984
840     226205  37      foothill        severely        gradually
 
11985
841     226206  37      labeled Cassites        widens
 
11986
842     226207  37      imperiously     forthcoming     preclude
 
11987
843     226208  37      reporters       guides  Jobrel
 
11988
844     226209  37      furnishings     vanish  hooker
 
11989
845     226210  37      precipitable    lied    rainstorm
 
11990
846     226211  37      discounts       sawtooth        disconnects
 
11991
847     228001  37      excises fated   cruelty
 
11992
848     228004  37      Stalin  gradually       exponentials
 
11993
849     228005  37      despot  widens  affective
 
11994
850     228006  37      ripeness        preclude        arteries
 
11995
851     228007  37      Arabia  Jobrel  Crosby
 
11996
852     228008  37      unruly  hooker  acquaint
 
11997
853     228009  37      mournfulness    rainstorm       evenhandedly
 
11998
854     228101  37      boom    disconnects     percentage
 
11999
855     228108  37      slaughter       cruelty disobedience
 
12000
856     228109  37      Sabine  exponentials    humility
 
12001
857     228110  37      handy   affective       gleaning
 
12002
858     228111  37      rural   arteries        petted
 
12003
859     228112  37      organizer       Crosby  bloater
 
12004
860     228113  37      shipyard        acquaint        minion
 
12005
861     228114  37      civics  evenhandedly    marginal
 
12006
862     228115  37      inaccuracy      percentage      apiary
 
12007
863     228116  37      rules   disobedience    measures
 
12008
864     228117  37      juveniles       humility        precaution
 
12009
865     228118  37      comprised       gleaning        repelled
 
12010
866     228119  37      investigations  petted  primary
 
12011
867     228120  37      stabilizes      bloater coverings
 
12012
868     228121  37      seminaries      minion  Artemia
 
12013
869     228122  37      Hunter  marginal        navigate
 
12014
870     228201  37      sporty  apiary  spatial
 
12015
871     228206  37      test    measures        Gurkha
 
12016
872     228207  37      weasels precaution      meanwhile
 
12017
873     228208  37      CERN    repelled        Melinda
 
12018
874     228209  37      tempering       primary Butterfield
 
12019
875     228210  37      afore   coverings       Aldrich
 
12020
876     228211  37      Galatean        Artemia previewing
 
12021
877     228212  37      techniques      navigate        glut
 
12022
878     228213  37      error   spatial unaffected
 
12023
879     228214  37      veranda Gurkha  inmate
 
12024
880     228301  37      severely        meanwhile       mineral
 
12025
881     228305  37      Cassites        Melinda impending
 
12026
882     228306  37      forthcoming     Butterfield     meditation
 
12027
883     228307  37      guides  Aldrich ideas
 
12028
884     228308  37      vanish  previewing      miniaturizes
 
12029
885     228309  37      lied    glut    lewdly
 
12030
886     228310  37      sawtooth        unaffected      title
 
12031
887     228311  37      fated   inmate  youthfulness
 
12032
888     228312  37      gradually       mineral creak
 
12033
889     228313  37      widens  impending       Chippewa
 
12034
890     228314  37      preclude        meditation      clamored
 
12035
891     228401  65      Jobrel  ideas   freezes
 
12036
892     228402  65      hooker  miniaturizes    forgivably
 
12037
893     228403  65      rainstorm       lewdly  reduce
 
12038
894     228404  65      disconnects     title   McGovern
 
12039
895     228405  65      cruelty youthfulness    Nazis
 
12040
896     228406  65      exponentials    creak   epistle
 
12041
897     228407  65      affective       Chippewa        socializes
 
12042
898     228408  65      arteries        clamored        conceptions
 
12043
899     228409  65      Crosby  freezes Kevin
 
12044
900     228410  65      acquaint        forgivably      uncovering
 
12045
901     230301  37      evenhandedly    reduce  chews
 
12046
902     230302  37      percentage      McGovern        appendixes
 
12047
903     230303  37      disobedience    Nazis   raining
 
12048
904     018062  37      humility        epistle infest
 
12049
905     230501  37      gleaning        socializes      compartment
 
12050
906     230502  37      petted  conceptions     minting
 
12051
907     230503  37      bloater Kevin   ducks
 
12052
908     230504  37      minion  uncovering      roped
 
12053
909     230505  37      marginal        chews   waltz
 
12054
910     230506  37      apiary  appendixes      Lillian
 
12055
911     230507  37      measures        raining repressions
 
12056
912     230508  37      precaution      infest  chillingly
 
12057
913     230509  37      repelled        compartment     noncritical
 
12058
914     230901  37      primary minting lithograph
 
12059
915     230902  37      coverings       ducks   spongers
 
12060
916     230903  37      Artemia roped   parenthood
 
12061
917     230904  37      navigate        waltz   posed
 
12062
918     230905  37      spatial Lillian instruments
 
12063
919     230906  37      Gurkha  repressions     filial
 
12064
920     230907  37      meanwhile       chillingly      fixedly
 
12065
921     230908  37      Melinda noncritical     relives
 
12066
922     230909  37      Butterfield     lithograph      Pandora
 
12067
923     230910  37      Aldrich spongers        watering
 
12068
924     230911  37      previewing      parenthood      ungrateful
 
12069
925     230912  37      glut    posed   secures
 
12070
926     230913  37      unaffected      instruments     chastisers
 
12071
927     230914  37      inmate  filial  icon
 
12072
928     231304  37      mineral fixedly reuniting
 
12073
929     231305  37      impending       relives imagining
 
12074
930     231306  37      meditation      Pandora abiding
 
12075
931     231307  37      ideas   watering        omnisciently
 
12076
932     231308  37      miniaturizes    ungrateful      Britannic
 
12077
933     231309  37      lewdly  secures scholastics
 
12078
934     231310  37      title   chastisers      mechanics
 
12079
935     231311  37      youthfulness    icon    humidly
 
12080
936     231312  37      creak   reuniting       masterpiece
 
12081
937     231313  37      Chippewa        imagining       however
 
12082
938     231314  37      clamored        abiding Mendelian
 
12083
939     231315  37      freezes omnisciently    jarred
 
12084
940     232102  37      forgivably      Britannic       scolds
 
12085
941     232103  37      reduce  scholastics     infatuate
 
12086
942     232104  37      McGovern        mechanics       willed
 
12087
943     232105  37      Nazis   humidly joyfully
 
12088
944     232106  37      epistle masterpiece     Microsoft
 
12089
945     232107  37      socializes      however fibrosities
 
12090
946     232108  37      conceptions     Mendelian       Baltimorean
 
12091
947     232601  37      Kevin   jarred  equestrian
 
12092
948     232602  37      uncovering      scolds  Goodrich
 
12093
949     232603  37      chews   infatuate       apish
 
12094
950     232605  37      appendixes      willed  Adlerian
 
12095
5950    1232605 37      appendixes      willed  Adlerian
 
12096
5951    1232606 37      appendixes      willed  Adlerian
 
12097
5952    1232607 37      appendixes      willed  Adlerian
 
12098
5953    1232608 37      appendixes      willed  Adlerian
 
12099
5954    1232609 37      appendixes      willed  Adlerian
 
12100
951     232606  37      raining joyfully        Tropez
 
12101
952     232607  37      infest  Microsoft       nouns
 
12102
953     232608  37      compartment     fibrosities     distracting
 
12103
954     232609  37      minting Baltimorean     mutton
 
12104
955     236104  37      ducks   equestrian      bridgeable
 
12105
956     236105  37      roped   Goodrich        stickers
 
12106
957     236106  37      waltz   apish   transcontinental
 
12107
958     236107  37      Lillian Adlerian        amateurish
 
12108
959     236108  37      repressions     Tropez  Gandhian
 
12109
960     236109  37      chillingly      nouns   stratified
 
12110
961     236110  37      noncritical     distracting     chamberlains
 
12111
962     236111  37      lithograph      mutton  creditably
 
12112
963     236112  37      spongers        bridgeable      philosophic
 
12113
964     236113  37      parenthood      stickers        ores
 
12114
965     238005  37      posed   transcontinental        Carleton
 
12115
966     238006  37      instruments     amateurish      tape
 
12116
967     238007  37      filial  Gandhian        afloat
 
12117
968     238008  37      fixedly stratified      goodness
 
12118
969     238009  37      relives chamberlains    welcoming
 
12119
970     238010  37      Pandora creditably      Pinsky
 
12120
971     238011  37      watering        philosophic     halting
 
12121
972     238012  37      ungrateful      ores    bibliography
 
12122
973     238013  37      secures Carleton        decoding
 
12123
974     240401  41      chastisers      tape    variance
 
12124
975     240402  41      icon    afloat  allowed
 
12125
976     240901  41      reuniting       goodness        dire
 
12126
977     240902  41      imagining       welcoming       dub
 
12127
978     241801  41      abiding Pinsky  poisoning
 
12128
979     242101  41      omnisciently    halting Iraqis
 
12129
980     242102  41      Britannic       bibliography    heaving
 
12130
981     242201  41      scholastics     decoding        population
 
12131
982     242202  41      mechanics       variance        bomb
 
12132
983     242501  41      humidly allowed Majorca
 
12133
984     242502  41      masterpiece     dire    Gershwins
 
12134
985     246201  41      however dub     explorers
 
12135
986     246202  41      Mendelian       poisoning       libretto
 
12136
987     246203  41      jarred  Iraqis  occurred
 
12137
988     246204  41      scolds  heaving Lagos
 
12138
989     246205  41      infatuate       population      rats
 
12139
990     246301  41      willed  bomb    bankruptcies
 
12140
991     246302  41      joyfully        Majorca crying
 
12141
992     248001  41      Microsoft       Gershwins       unexpected
 
12142
993     248002  41      fibrosities     explorers       accessed
 
12143
994     248003  41      Baltimorean     libretto        colorful
 
12144
995     248004  41      equestrian      occurred        versatility
 
12145
996     248005  41      Goodrich        Lagos   cosy
 
12146
997     248006  41      apish   rats    Darius
 
12147
998     248007  41      Adlerian        bankruptcies    mastering
 
12148
999     248008  41      Tropez  crying  Asiaticizations
 
12149
1000    248009  41      nouns   unexpected      offerers
 
12150
1001    248010  41      distracting     accessed        uncles
 
12151
1002    248011  41      mutton  colorful        sleepwalk
 
12152
1003    248012  41      bridgeable      versatility     Ernestine
 
12153
1004    248013  41      stickers        cosy    checksumming
 
12154
1005    248014  41      transcontinental        Darius  stopped
 
12155
1006    248015  41      amateurish      mastering       sicker
 
12156
1007    248016  41      Gandhian        Asiaticizations Italianization
 
12157
1008    248017  41      stratified      offerers        alphabetic
 
12158
1009    248018  41      chamberlains    uncles  pharmaceutic
 
12159
1010    248019  41      creditably      sleepwalk       creator
 
12160
1011    248020  41      philosophic     Ernestine       chess
 
12161
1012    248021  41      ores    checksumming    charcoal
 
12162
1013    248101  41      Carleton        stopped Epiphany
 
12163
1014    248102  41      tape    sicker  bulldozes
 
12164
1015    248201  41      afloat  Italianization  Pygmalion
 
12165
1016    248202  41      goodness        alphabetic      caressing
 
12166
1017    248203  41      welcoming       pharmaceutic    Palestine
 
12167
1018    248204  41      Pinsky  creator regimented
 
12168
1019    248205  41      halting chess   scars
 
12169
1020    248206  41      bibliography    charcoal        realest
 
12170
1021    248207  41      decoding        Epiphany        diffusing
 
12171
1022    248208  41      variance        bulldozes       clubroom
 
12172
1023    248209  41      allowed Pygmalion       Blythe
 
12173
1024    248210  41      dire    caressing       ahead
 
12174
1025    248211  50      dub     Palestine       reviver
 
12175
1026    250501  34      poisoning       regimented      retransmitting
 
12176
1027    250502  34      Iraqis  scars   landslide
 
12177
1028    250503  34      heaving realest Eiffel
 
12178
1029    250504  34      population      diffusing       absentee
 
12179
1030    250505  34      bomb    clubroom        aye
 
12180
1031    250601  34      Majorca Blythe  forked
 
12181
1032    250602  34      Gershwins       ahead   Peruvianizes
 
12182
1033    250603  34      explorers       reviver clerked
 
12183
1034    250604  34      libretto        retransmitting  tutor
 
12184
1035    250605  34      occurred        landslide       boulevard
 
12185
1036    251001  34      Lagos   Eiffel  shuttered
 
12186
1037    251002  34      rats    absentee        quotes
 
12187
1038    251003  34      bankruptcies    aye     Caltech
 
12188
1039    251004  34      crying  forked  Mossberg
 
12189
1040    251005  34      unexpected      Peruvianizes    kept
 
12190
1041    251301  34      accessed        clerked roundly
 
12191
1042    251302  34      colorful        tutor   features
 
12192
1043    251303  34      versatility     boulevard       imaginable
 
12193
1044    251304  34      cosy    shuttered       controller
 
12194
1045    251305  34      Darius  quotes  racial
 
12195
1046    251401  34      mastering       Caltech uprisings
 
12196
1047    251402  34      Asiaticizations Mossberg        narrowed
 
12197
1048    251403  34      offerers        kept    cannot
 
12198
1049    251404  34      uncles  roundly vest
 
12199
1050    251405  34      sleepwalk       features        famine
 
12200
1051    251406  34      Ernestine       imaginable      sugars
 
12201
1052    251801  34      checksumming    controller      exterminated
 
12202
1053    251802  34      stopped racial  belays
 
12203
1054    252101  34      sicker  uprisings       Hodges
 
12204
1055    252102  34      Italianization  narrowed        translatable
 
12205
1056    252301  34      alphabetic      cannot  duality
 
12206
1057    252302  34      pharmaceutic    vest    recording
 
12207
1058    252303  34      creator famine  rouses
 
12208
1059    252304  34      chess   sugars  poison
 
12209
1060    252305  34      charcoal        exterminated    attitude
 
12210
1061    252306  34      Epiphany        belays  dusted
 
12211
1062    252307  34      bulldozes       Hodges  encompasses
 
12212
1063    252308  34      Pygmalion       translatable    presentation
 
12213
1064    252309  34      caressing       duality Kantian
 
12214
1065    256001  34      Palestine       recording       imprecision
 
12215
1066    256002  34      regimented      rouses  saving
 
12216
1067    256003  34      scars   poison  maternal
 
12217
1068    256004  34      realest attitude        hewed
 
12218
1069    256005  34      diffusing       dusted  kerosene
 
12219
1070    258001  34      clubroom        encompasses     Cubans
 
12220
1071    258002  34      Blythe  presentation    photographers
 
12221
1072    258003  34      ahead   Kantian nymph
 
12222
1073    258004  34      reviver imprecision     bedlam
 
12223
1074    258005  34      retransmitting  saving  north
 
12224
1075    258006  34      landslide       maternal        Schoenberg
 
12225
1076    258007  34      Eiffel  hewed   botany
 
12226
1077    258008  34      absentee        kerosene        curs
 
12227
1078    258009  34      aye     Cubans  solidification
 
12228
1079    258010  34      forked  photographers   inheritresses
 
12229
1080    258011  34      Peruvianizes    nymph   stiller
 
12230
1081    258101  68      clerked bedlam  t1
 
12231
1082    258102  68      tutor   north   suite
 
12232
1083    258103  34      boulevard       Schoenberg      ransomer
 
12233
1084    258104  68      shuttered       botany  Willy
 
12234
1085    258105  68      quotes  curs    Rena
 
12235
1086    258106  68      Caltech solidification  Seattle
 
12236
1087    258107  68      Mossberg        inheritresses   relaxes
 
12237
1088    258108  68      kept    stiller exclaim
 
12238
1089    258109  68      roundly t1      implicated
 
12239
1090    258110  68      features        suite   distinguish
 
12240
1091    258111  68      imaginable      ransomer        assayed
 
12241
1092    258112  68      controller      Willy   homeowner
 
12242
1093    258113  68      racial  Rena    and
 
12243
1094    258201  34      uprisings       Seattle stealth
 
12244
1095    258202  34      narrowed        relaxes coinciding
 
12245
1096    258203  34      cannot  exclaim founder
 
12246
1097    258204  34      vest    implicated      environing
 
12247
1098    258205  34      famine  distinguish     jewelry
 
12248
1099    258301  34      sugars  assayed lemons
 
12249
1100    258401  34      exterminated    homeowner       brokenness
 
12250
1101    258402  34      belays  and     bedpost
 
12251
1102    258403  34      Hodges  stealth assurers
 
12252
1103    258404  34      translatable    coinciding      annoyers
 
12253
1104    258405  34      duality founder affixed
 
12254
1105    258406  34      recording       environing      warbling
 
12255
1106    258407  34      rouses  jewelry seriously
 
12256
1107    228123  37      poison  lemons  boasted
 
12257
1108    250606  34      attitude        brokenness      Chantilly
 
12258
1109    208405  37      dusted  bedpost Iranizes
 
12259
1110    212101  37      encompasses     assurers        violinist
 
12260
1111    218206  37      presentation    annoyers        extramarital
 
12261
1112    150401  37      Kantian affixed spates
 
12262
1113    248212  41      imprecision     warbling        cloakroom
 
12263
1114    128026  00      saving  seriously       gazer
 
12264
1115    128024  00      maternal        boasted hand
 
12265
1116    128027  00      hewed   Chantilly       tucked
 
12266
1117    128025  00      kerosene        Iranizes        gems
 
12267
1118    128109  00      Cubans  violinist       clinker
 
12268
1119    128705  00      photographers   extramarital    refiner
 
12269
1120    126303  00      nymph   spates  callus
 
12270
1121    128308  00      bedlam  cloakroom       leopards
 
12271
1122    128204  00      north   gazer   comfortingly
 
12272
1123    128205  00      Schoenberg      hand    generically
 
12273
1124    128206  00      botany  tucked  getters
 
12274
1125    128207  00      curs    gems    sexually
 
12275
1126    118205  00      solidification  clinker spear
 
12276
1127    116801  00      inheritresses   refiner serums
 
12277
1128    116803  00      stiller callus  Italianization
 
12278
1129    116804  00      t1      leopards        attendants
 
12279
1130    116802  00      suite   comfortingly    spies
 
12280
1131    128605  00      ransomer        generically     Anthony
 
12281
1132    118308  00      Willy   getters planar
 
12282
1133    113702  00      Rena    sexually        cupped
 
12283
1134    113703  00      Seattle spear   cleanser
 
12284
1135    112103  00      relaxes serums  commuters
 
12285
1136    118009  00      exclaim Italianization  honeysuckle
 
12286
5136    1118009 00      exclaim Italianization  honeysuckle
 
12287
1137    138011  00      implicated      attendants      orphanage
 
12288
1138    138010  00      distinguish     spies   skies
 
12289
1139    138012  00      assayed Anthony crushers
 
12290
1140    068304  00      homeowner       planar  Puritan
 
12291
1141    078009  00      and     cupped  squeezer
 
12292
1142    108013  00      stealth cleanser        bruises
 
12293
1143    084004  00      coinciding      commuters       bonfire
 
12294
1144    083402  00      founder honeysuckle     Colombo
 
12295
1145    084003  00      environing      orphanage       nondecreasing
 
12296
1146    088504  00      jewelry skies   innocents
 
12297
1147    088005  00      lemons  crushers        masked
 
12298
1148    088007  00      brokenness      Puritan file
 
12299
1149    088006  00      bedpost squeezer        brush
 
12300
1150    148025  00      assurers        bruises mutilate
 
12301
1151    148024  00      annoyers        bonfire mommy
 
12302
1152    138305  00      affixed Colombo bulkheads
 
12303
1153    138306  00      warbling        nondecreasing   undeclared
 
12304
1154    152701  00      seriously       innocents       displacements
 
12305
1155    148505  00      boasted masked  nieces
 
12306
1156    158003  00      Chantilly       file    coeducation
 
12307
1157    156201  00      Iranizes        brush   brassy
 
12308
1158    156202  00      violinist       mutilate        authenticator
 
12309
1159    158307  00      extramarital    mommy   Washoe
 
12310
1160    158402  00      spates  bulkheads       penny
 
12311
1161    158401  00      cloakroom       undeclared      Flagler
 
12312
1162    068013  00      gazer   displacements   stoned
 
12313
1163    068012  00      hand    nieces  cranes
 
12314
1164    068203  00      tucked  coeducation     masterful
 
12315
1165    088205  00      gems    brassy  biracial
 
12316
1166    068704  00      clinker authenticator   steamships
 
12317
1167    068604  00      refiner Washoe  windmills
 
12318
1168    158502  00      callus  penny   exploit
 
12319
1169    123103  00      leopards        Flagler riverfront
 
12320
1170    148026  00      comfortingly    stoned  sisterly
 
12321
1171    123302  00      generically     cranes  sharpshoot
 
12322
1172    076503  00      getters masterful       mittens
 
12323
1173    126304  00      sexually        biracial        interdependency
 
12324
1174    068306  00      spear   steamships      policy
 
12325
1175    143504  00      serums  windmills       unleashing
 
12326
1176    160201  00      Italianization  exploit pretenders
 
12327
1177    148028  00      attendants      riverfront      overstatements
 
12328
1178    148027  00      spies   sisterly        birthed
 
12329
1179    143505  00      Anthony sharpshoot      opportunism
 
12330
1180    108014  00      planar  mittens showroom
 
12331
1181    076104  00      cupped  interdependency compromisingly
 
12332
1182    078106  00      cleanser        policy  Medicare
 
12333
1183    126102  00      commuters       unleashing      corresponds
 
12334
1184    128029  00      honeysuckle     pretenders      hardware
 
12335
1185    128028  00      orphanage       overstatements  implant
 
12336
1186    018410  00      skies   birthed Alicia
 
12337
1187    128110  00      crushers        opportunism     requesting
 
12338
1188    148506  00      Puritan showroom        produced
 
12339
1189    123303  00      squeezer        compromisingly  criticizes
 
12340
1190    123304  00      bruises Medicare        backer
 
12341
1191    068504  00      bonfire corresponds     positively
 
12342
1192    068305  00      Colombo hardware        colicky
 
12343
1193    000000  00      nondecreasing   implant thrillingly
 
12344
1       000001  00      Omaha   teethe  neat
 
12345
2       011401  37      breaking        dreaded Steinberg
 
12346
3       011402  37      Romans  scholastics     jarring
 
12347
4       011403  37      intercepted     audiology       tinily
 
12348
2       011401  37      breaking        dreaded Steinberg
 
12349
3       011402  37      Romans  scholastics     jarring
 
12350
4       011403  37      intercepted     audiology       tinily
 
12351
1       000001  00      Omaha   teethe  neat
 
12352
2       011401  37      breaking        dreaded Steinberg
 
12353
3       011402  37      Romans  scholastics     jarring
 
12354
4       011403  37      intercepted     audiology       tinily
 
12355
2       011401  37      breaking        dreaded Steinberg
 
12356
3       011402  37      Romans  scholastics     jarring
 
12357
4       011403  37      intercepted     audiology       tinily
 
12358
99999   011403  37      the     delayed insert
 
12359
CREATE TABLE `t5` (
 
12360
`a` int(11) NOT NULL auto_increment,
 
12361
b char(12),
 
12362
PRIMARY KEY  (`a`)
 
12363
)  DEFAULT CHARSET=latin1;
 
12364
INSERT INTO t5 VALUES (NULL, "foo");
 
12365
INSERT INTO t5 VALUES (NULL, "foo");
 
12366
INSERT INTO t5 VALUES (NULL, "foo");
 
12367
INSERT INTO t5 VALUES (NULL, "foo");
 
12368
INSERT INTO t5 VALUES (NULL, "foo");
 
12369
INSERT INTO t5 VALUES (32, "foo");
 
12370
INSERT INTO t5 VALUES (23, "foo");
 
12371
ERROR 23000: Can't write; duplicate key in table 't5'
 
12372
INSERT INTO t5 VALUES (NULL, "foo");
 
12373
INSERT INTO t5 VALUES (NULL, "foo");
 
12374
INSERT INTO t5 VALUES (3, "foo");
 
12375
ERROR 23000: Can't write; duplicate key in table 't5'
 
12376
INSERT INTO t5 VALUES (NULL, "foo");
 
12377
SELECT * FROM t5;
 
12378
a       b
 
12379
1       foo
 
12380
2       foo
 
12381
3       foo
 
12382
4       foo
 
12383
5       foo
 
12384
32      foo
 
12385
33      foo
 
12386
34      foo
 
12387
35      foo
 
12388
SELECT * FROM t5 WHERE a=3;
 
12389
a       b
 
12390
3       foo
 
12391
DROP TABLE t5;
 
12392
CREATE TABLE `t5` (
 
12393
`a` int(11) NOT NULL auto_increment,
 
12394
b char(12),
 
12395
KEY  (`a`)
 
12396
)  DEFAULT CHARSET=latin1 AUTO_INCREMENT=5;
 
12397
INSERT INTO t5 VALUES (NULL, "foo");
 
12398
INSERT INTO t5 VALUES (NULL, "foo");
 
12399
INSERT INTO t5 VALUES (NULL, "foo");
 
12400
INSERT INTO t5 VALUES (NULL, "foo");
 
12401
INSERT INTO t5 VALUES (NULL, "foo");
 
12402
INSERT INTO t5 VALUES (32, "foo");
 
12403
INSERT INTO t5 VALUES (23, "foo");
 
12404
INSERT INTO t5 VALUES (NULL, "foo");
 
12405
INSERT INTO t5 VALUES (NULL, "foo");
 
12406
INSERT INTO t5 VALUES (3, "foo");
 
12407
INSERT INTO t5 VALUES (NULL, "foo");
 
12408
SELECT * FROM t5;
 
12409
a       b
 
12410
5       foo
 
12411
6       foo
 
12412
7       foo
 
12413
8       foo
 
12414
9       foo
 
12415
32      foo
 
12416
23      foo
 
12417
33      foo
 
12418
34      foo
 
12419
3       foo
 
12420
35      foo
 
12421
OPTIMIZE TABLE t5;
 
12422
Table   Op      Msg_type        Msg_text
 
12423
test.t5 optimize        status  OK
 
12424
SELECT * FROM t5;
 
12425
a       b
 
12426
5       foo
 
12427
6       foo
 
12428
7       foo
 
12429
8       foo
 
12430
9       foo
 
12431
32      foo
 
12432
23      foo
 
12433
33      foo
 
12434
34      foo
 
12435
3       foo
 
12436
35      foo
 
12437
SELECT * FROM t5 WHERE a=32;
 
12438
a       b
 
12439
32      foo
 
12440
SELECT * FROM t5 WHERE a=3;
 
12441
a       b
 
12442
3       foo
 
12443
DROP TABLE t5;
 
12444
CREATE TABLE `t5` (
 
12445
`a` int(11) NOT NULL auto_increment,
 
12446
b blob(12),
 
12447
KEY  (`a`)
 
12448
)  DEFAULT CHARSET=latin1;
 
12449
INSERT INTO t5 VALUES (NULL, "foo");
 
12450
INSERT INTO t5 VALUES (NULL, "We the people");
 
12451
INSERT INTO t5 VALUES (NULL, "in order to form a more pefect union");
 
12452
INSERT INTO t5 VALUES (NULL, "establish justice");
 
12453
INSERT INTO t5 VALUES (NULL, "foo grok ");
 
12454
INSERT INTO t5 VALUES (32, "ensure domestic tranquility");
 
12455
INSERT INTO t5 VALUES (23, "provide for the common defense");
 
12456
INSERT INTO t5 VALUES (NULL, "fo fooo");
 
12457
INSERT INTO t5 VALUES (NULL, "foo just naother bit of text");
 
12458
INSERT INTO t5 VALUES (3, "foo this is mine to think about");
 
12459
INSERT INTO t5 VALUES (NULL, "promote the general welfare");
 
12460
SELECT * FROM t5;
 
12461
a       b
 
12462
1       foo
 
12463
2       We the people
 
12464
3       in order to form a more pefect union
 
12465
4       establish justice
 
12466
5       foo grok 
 
12467
32      ensure domestic tranquility
 
12468
23      provide for the common defense
 
12469
33      fo fooo
 
12470
34      foo just naother bit of text
 
12471
3       foo this is mine to think about
 
12472
35      promote the general welfare
 
12473
SELECT b FROM t5;
 
12474
b
 
12475
foo
 
12476
We the people
 
12477
in order to form a more pefect union
 
12478
establish justice
 
12479
foo grok 
 
12480
ensure domestic tranquility
 
12481
provide for the common defense
 
12482
fo fooo
 
12483
foo just naother bit of text
 
12484
foo this is mine to think about
 
12485
promote the general welfare
 
12486
SELECT b FROM t5 WHERE a =3;
 
12487
b
 
12488
in order to form a more pefect union
 
12489
foo this is mine to think about
 
12490
SELECT b FROM t5 WHERE a IN (32, 23, 5);
 
12491
b
 
12492
foo grok 
 
12493
ensure domestic tranquility
 
12494
provide for the common defense
 
12495
DROP TABLE t5;
 
12496
CREATE TABLE `t5` (
 
12497
`a` int(11) NOT NULL auto_increment,
 
12498
b blob(12),
 
12499
c blob(12),
 
12500
KEY  (`a`)
 
12501
)  DEFAULT CHARSET=latin1;
 
12502
INSERT INTO t5 VALUES (NULL, "foo", "grok this!");
 
12503
INSERT INTO t5 VALUES (NULL, "We the people", NULL);
 
12504
INSERT INTO t5 VALUES (NULL, "in order to form a more peefect union", "secure the blessing of liberty");
 
12505
INSERT INTO t5 VALUES (NULL, "establish justice", "to ourselves and");
 
12506
INSERT INTO t5 VALUES (32, "ensure domestic tranquility", NULL);
 
12507
INSERT INTO t5 VALUES (23, "provide for the common defense", "posterity");
 
12508
INSERT INTO t5 VALUES (NULL, "promote the general welfare", "do ordain");
 
12509
SELECT * FROM t5;
 
12510
a       b       c
 
12511
1       foo     grok this!
 
12512
2       We the people   NULL
 
12513
3       in order to form a more peefect union   secure the blessing of liberty
 
12514
4       establish justice       to ourselves and
 
12515
32      ensure domestic tranquility     NULL
 
12516
23      provide for the common defense  posterity
 
12517
33      promote the general welfare     do ordain
 
12518
SELECT b FROM t5;
 
12519
b
 
12520
foo
 
12521
We the people
 
12522
in order to form a more peefect union
 
12523
establish justice
 
12524
ensure domestic tranquility
 
12525
provide for the common defense
 
12526
promote the general welfare
 
12527
SELECT b FROM t5 WHERE a =3;
 
12528
b
 
12529
in order to form a more peefect union
 
12530
SELECT b FROM t5 WHERE a IN (32, 23, 5);
 
12531
b
 
12532
ensure domestic tranquility
 
12533
provide for the common defense
 
12534
SELECT c FROM t5;
 
12535
c
 
12536
grok this!
 
12537
NULL
 
12538
secure the blessing of liberty
 
12539
to ourselves and
 
12540
NULL
 
12541
posterity
 
12542
do ordain
 
12543
SELECT c FROM t5 WHERE a =3;
 
12544
c
 
12545
secure the blessing of liberty
 
12546
SELECT c FROM t5 WHERE a IN (32, 23, 5);
 
12547
c
 
12548
NULL
 
12549
posterity
 
12550
DROP TABLE t1;
 
12551
CREATE TABLE t1 (v varchar(32)) ;
 
12552
insert into t1 values ('def'),('abc'),('hij'),('3r4f');
 
12553
select * from t1;
 
12554
v
 
12555
def
 
12556
abc
 
12557
hij
 
12558
3r4f
 
12559
ALTER TABLE t1 change v v2 varchar(32);
 
12560
select * from t1;
 
12561
v2
 
12562
def
 
12563
abc
 
12564
hij
 
12565
3r4f
 
12566
ALTER TABLE t1 change v2 v varchar(64);
 
12567
select * from t1;
 
12568
v
 
12569
def
 
12570
abc
 
12571
hij
 
12572
3r4f
 
12573
ALTER TABLE t1 add i int auto_increment not null primary key first;
 
12574
select * from t1;
 
12575
i       v
 
12576
1       def
 
12577
2       abc
 
12578
3       hij
 
12579
4       3r4f
 
12580
DROP TABLE t5;
 
12581
CREATE TABLE `t5` (
 
12582
`a` int(11) NOT NULL auto_increment,
 
12583
b varchar(250),
 
12584
c varchar(800),
 
12585
KEY  (`a`)
 
12586
)  DEFAULT CHARSET=latin1;
 
12587
INSERT INTO t5 VALUES (NULL, "foo", "grok this!");
 
12588
INSERT INTO t5 VALUES (NULL, "We the people", NULL);
 
12589
INSERT INTO t5 VALUES (NULL, "in order to form a more peefect union", "secure the blessing of liberty");
 
12590
INSERT INTO t5 VALUES (NULL, "establish justice", "to ourselves and");
 
12591
INSERT INTO t5 VALUES (32, "ensure domestic tranquility", NULL);
 
12592
INSERT INTO t5 VALUES (23, "provide for the common defense", "posterity");
 
12593
INSERT INTO t5 VALUES (NULL, "promote the general welfare", "do ordain");
 
12594
INSERT INTO t5 VALUES (NULL, "abcdeghijklmnopqrstuvwxyzabcdeghijklmnopqrstuvwxyzabcdeghijklmnopqrstuvwxyzabcdeghijklmnopqrstuvwxyzabcdeghijklmnopqrstuvwxyzabcdeghijklmnopqrstuvwxyzabcdeghijklmnopqrstuvwxyzabcdeghijklmnopqrstuvwxyzabcdeghijklmnopqrstuvwxyzabcdeghijklmnopqrstuvwxyzabc", "do ordain");
 
12595
Warnings:
 
12596
Warning 1265    Data truncated for column 'b' at row 1
 
12597
SELECT * FROM t5;
 
12598
a       b       c
 
12599
1       foo     grok this!
 
12600
2       We the people   NULL
 
12601
3       in order to form a more peefect union   secure the blessing of liberty
 
12602
4       establish justice       to ourselves and
 
12603
32      ensure domestic tranquility     NULL
 
12604
23      provide for the common defense  posterity
 
12605
33      promote the general welfare     do ordain
 
12606
34      abcdeghijklmnopqrstuvwxyzabcdeghijklmnopqrstuvwxyzabcdeghijklmnopqrstuvwxyzabcdeghijklmnopqrstuvwxyzabcdeghijklmnopqrstuvwxyzabcdeghijklmnopqrstuvwxyzabcdeghijklmnopqrstuvwxyzabcdeghijklmnopqrstuvwxyzabcdeghijklmnopqrstuvwxyzabcdeghijklmnopqrstuvwxyz      do ordain
 
12607
CREATE TABLE `t6` (
 
12608
`a` int(11) NOT NULL auto_increment,
 
12609
b blob(12),
 
12610
c int,
 
12611
KEY  (`a`)
 
12612
)  DEFAULT CHARSET=latin1;
 
12613
SELECT * FROM t6;
 
12614
a       b       c
 
12615
INSERT INTO t6 VALUES (NULL, "foo", NULL);
 
12616
INSERT INTO t6 VALUES (NULL, "We the people", 5);
 
12617
INSERT INTO t6 VALUES (NULL, "in order to form a more pefect union", 9);
 
12618
INSERT INTO t6 VALUES (NULL, "establish justice", NULL);
 
12619
INSERT INTO t6 VALUES (NULL, NULL, NULL);
 
12620
INSERT INTO t6 VALUES (32, "ensure domestic tranquility", NULL);
 
12621
INSERT INTO t6 VALUES (23, "provide for the common defense", 30);
 
12622
INSERT INTO t6 VALUES (NULL, "fo fooo", 70);
 
12623
INSERT INTO t6 VALUES (NULL, NULL, 98);
 
12624
INSERT INTO t6 VALUES (NULL, "promote the general welfare", 50);
 
12625
SELECT * FROM t6;
 
12626
a       b       c
 
12627
1       foo     NULL
 
12628
2       We the people   5
 
12629
3       in order to form a more pefect union    9
 
12630
4       establish justice       NULL
 
12631
5       NULL    NULL
 
12632
32      ensure domestic tranquility     NULL
 
12633
23      provide for the common defense  30
 
12634
33      fo fooo 70
 
12635
34      NULL    98
 
12636
35      promote the general welfare     50
 
12637
SELECT * FROM t6 ORDER BY a;
 
12638
a       b       c
 
12639
1       foo     NULL
 
12640
2       We the people   5
 
12641
3       in order to form a more pefect union    9
 
12642
4       establish justice       NULL
 
12643
5       NULL    NULL
 
12644
23      provide for the common defense  30
 
12645
32      ensure domestic tranquility     NULL
 
12646
33      fo fooo 70
 
12647
34      NULL    98
 
12648
35      promote the general welfare     50
 
12649
SELECT * FROM t6 ORDER BY a DESC;
 
12650
a       b       c
 
12651
35      promote the general welfare     50
 
12652
34      NULL    98
 
12653
33      fo fooo 70
 
12654
32      ensure domestic tranquility     NULL
 
12655
23      provide for the common defense  30
 
12656
5       NULL    NULL
 
12657
4       establish justice       NULL
 
12658
3       in order to form a more pefect union    9
 
12659
2       We the people   5
 
12660
1       foo     NULL
 
12661
SHOW CREATE TABLE t6;
 
12662
Table   Create Table
 
12663
t6      CREATE TABLE `t6` (
 
12664
  `a` int(11) NOT NULL AUTO_INCREMENT,
 
12665
  `b` tinyblob,
 
12666
  `c` int(11) DEFAULT NULL,
 
12667
  KEY `a` (`a`)
 
12668
) ENGINE=ARCHIVE AUTO_INCREMENT=36 DEFAULT CHARSET=latin1
 
12669
DROP TABLE t1, t2, t4, t5, t6;
 
12670
create table t1 (i int) engine=archive;
 
12671
insert into t1 values (1);
 
12672
repair table t1 use_frm;
 
12673
Table   Op      Msg_type        Msg_text
 
12674
test.t1 repair  status  OK
 
12675
select * from t1;
 
12676
i
 
12677
1
 
12678
drop table t1;
 
12679
create table t1(a longblob) engine=archive;
 
12680
insert into t1 set a='';
 
12681
insert into t1 set a='a';
 
12682
check table t1 extended;
 
12683
Table   Op      Msg_type        Msg_text
 
12684
test.t1 check   status  OK
 
12685
drop table t1;
 
12686
CREATE TABLE t1(a VARCHAR(510)) ENGINE = ARCHIVE;
 
12687
INSERT INTO t1(a) VALUES ('');
 
12688
SELECT * FROM t1 ORDER BY a;
 
12689
DROP TABLE t1;
 
12690
CREATE TABLE t1(a INT NOT NULL AUTO_INCREMENT, b BLOB, KEY(a)) ENGINE=archive;
 
12691
INSERT INTO t1 VALUES (NULL, NULL),(NULL, NULL);
 
12692
FLUSH TABLE t1;
 
12693
SELECT * FROM t1 ORDER BY a;
 
12694
a       b
 
12695
1       NULL
 
12696
2       NULL
 
12697
DROP TABLE t1;
 
12698
CREATE TABLE t1(a INT, b BLOB) ENGINE=archive;
 
12699
SELECT DATA_LENGTH, AVG_ROW_LENGTH FROM
 
12700
INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME='t1' AND TABLE_SCHEMA='test';
 
12701
DATA_LENGTH     AVG_ROW_LENGTH
 
12702
8666    15
 
12703
INSERT INTO t1 VALUES(1, 'sampleblob1'),(2, 'sampleblob2');
 
12704
SELECT DATA_LENGTH, AVG_ROW_LENGTH FROM
 
12705
INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME='t1' AND TABLE_SCHEMA='test';
 
12706
DATA_LENGTH     AVG_ROW_LENGTH
 
12707
8700    4350
 
12708
DROP TABLE t1;
 
12709
SET @save_join_buffer_size= @@join_buffer_size;
 
12710
SET @@join_buffer_size= 8228;
 
12711
CREATE TABLE t1(a CHAR(255)) ENGINE=archive;
 
12712
INSERT INTO t1 VALUES('aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa'),
 
12713
('aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa'),
 
12714
('aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa');
 
12715
SELECT COUNT(t1.a) FROM t1, t1 a, t1 b, t1 c, t1 d, t1 e;
 
12716
COUNT(t1.a)
 
12717
729
 
12718
DROP TABLE t1;
 
12719
SET @@join_buffer_size= @save_join_buffer_size;
 
12720
SHOW CREATE TABLE t1;
 
12721
ERROR HY000: Table upgrade required. Please do "REPAIR TABLE `t1`" or dump/reload to fix it!
 
12722
SELECT * FROM t1;
 
12723
ERROR HY000: Table upgrade required. Please do "REPAIR TABLE `t1`" or dump/reload to fix it!
 
12724
INSERT INTO t1 (col1, col2) VALUES (1, "value");
 
12725
ERROR HY000: Table upgrade required. Please do "REPAIR TABLE `t1`" or dump/reload to fix it!
 
12726
REPAIR TABLE t1;
 
12727
Table   Op      Msg_type        Msg_text
 
12728
test.t1 repair  Error   Table upgrade required. Please do "REPAIR TABLE `t1`" or dump/reload to fix it!
 
12729
test.t1 repair  error   Corrupt
 
12730
DROP TABLE t1;
 
12731
#
 
12732
# BUG#48757 - missing .ARZ file causes server crash
 
12733
#
 
12734
CREATE TABLE t1(a INT) ENGINE=ARCHIVE;
 
12735
FLUSH TABLE t1;
 
12736
SELECT * FROM t1;
 
12737
ERROR HY000: Can't find file: 't1' (errno: 2)
 
12738
DROP TABLE t1;
 
12739
ERROR 42S02: Unknown table 't1'