├── .gitattributes
├── .gitignore
├── .idea
├── Dependency_parsing-pytorch.iml
├── misc.xml
├── modules.xml
└── workspace.xml
├── Features.png
├── LICENSE
├── README.md
├── Structure.png
├── constituency.png
├── data
├── dev.txt
├── train.txt
└── vocab.txt
├── dependency.png
├── dependency_parsing.py
├── model
└── parser.pkl
└── result.txt
/.gitattributes:
--------------------------------------------------------------------------------
1 | # Auto detect text files and perform LF normalization
2 | * text=auto
3 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Byte-compiled / optimized / DLL files
2 | __pycache__/
3 | *.py[cod]
4 | *$py.class
5 |
6 | # C extensions
7 | *.so
8 |
9 | # Distribution / packaging
10 | .Python
11 | build/
12 | develop-eggs/
13 | dist/
14 | downloads/
15 | eggs/
16 | .eggs/
17 | lib/
18 | lib64/
19 | parts/
20 | sdist/
21 | var/
22 | wheels/
23 | *.egg-info/
24 | .installed.cfg
25 | *.egg
26 | MANIFEST
27 |
28 | # PyInstaller
29 | # Usually these files are written by a python script from a template
30 | # before PyInstaller builds the exe, so as to inject date/other infos into it.
31 | *.manifest
32 | *.spec
33 |
34 | # Installer logs
35 | pip-log.txt
36 | pip-delete-this-directory.txt
37 |
38 | # Unit test / coverage reports
39 | htmlcov/
40 | .tox/
41 | .coverage
42 | .coverage.*
43 | .cache
44 | nosetests.xml
45 | coverage.xml
46 | *.cover
47 | .hypothesis/
48 | .pytest_cache/
49 |
50 | # Translations
51 | *.mo
52 | *.pot
53 |
54 | # Django stuff:
55 | *.log
56 | local_settings.py
57 | db.sqlite3
58 |
59 | # Flask stuff:
60 | instance/
61 | .webassets-cache
62 |
63 | # Scrapy stuff:
64 | .scrapy
65 |
66 | # Sphinx documentation
67 | docs/_build/
68 |
69 | # PyBuilder
70 | target/
71 |
72 | # Jupyter Notebook
73 | .ipynb_checkpoints
74 |
75 | # pyenv
76 | .python-version
77 |
78 | # celery beat schedule file
79 | celerybeat-schedule
80 |
81 | # SageMath parsed files
82 | *.sage.py
83 |
84 | # Environments
85 | .env
86 | .venv
87 | env/
88 | venv/
89 | ENV/
90 | env.bak/
91 | venv.bak/
92 |
93 | # Spyder project settings
94 | .spyderproject
95 | .spyproject
96 |
97 | # Rope project settings
98 | .ropeproject
99 |
100 | # mkdocs documentation
101 | /site
102 |
103 | # mypy
104 | .mypy_cache/
105 |
--------------------------------------------------------------------------------
/.idea/Dependency_parsing-pytorch.iml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/.idea/workspace.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
34 |
35 |
36 |
37 | tensor
38 | pre
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 | 1534122149407
126 |
127 |
128 | 1534122149407
129 |
130 |
131 |
132 |
133 |
134 |
135 |
136 |
137 |
138 |
139 |
140 |
141 |
142 |
143 |
144 |
145 |
146 |
147 |
148 |
149 |
150 |
151 |
152 |
153 |
154 |
155 |
156 |
157 |
158 |
159 |
160 |
161 |
162 |
163 |
164 |
165 |
166 |
167 |
168 |
169 |
170 |
171 |
172 |
173 |
174 |
175 |
176 |
177 |
178 |
179 |
180 |
181 |
182 |
183 |
184 |
185 |
186 |
187 |
188 |
--------------------------------------------------------------------------------
/Features.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yc930401/Transition_based_dependency_parsing-pytorch/50ea5893ef0fb77770c0621bfe4dc71ad9ae43c9/Features.png
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2018 Yang Cheng
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Dependency Parsing with Pytorch
2 |
3 | A trainsition-based dependency parser
4 |
5 | ## Introduction
6 |
7 | A constituency parse tree breaks a text into sub-phrases. Non-terminals in the tree are types of phrases, the terminals are the words in the
8 | sentence, and the edges are unlabeled. For a simple sentence "John sees Bill", a constituency parse would be:
9 | 
10 | A dependency parse connects words according to their relationships. Each vertex in the tree represents a word, child nodes are words that are
11 | dependent on the parent, and edges are labeled by the relationship. A dependency parse of "John sees Bill", would be:
12 | 
13 |
14 | You should use the parser type that gets you closest to your goal. If you are interested in sub-phrases within the sentence, you probably want
15 | the constituency parse. If you are interested in the dependency relationships between words, then you probably want the dependency parse.
16 |
17 | Here I built a dependency parser following Stanford CS224n and Danqi Chen's paper. The structure of the neural network parser is as follow:
18 | 
19 | The features I used are:
20 | 
21 |
22 | ## Methodology
23 |
24 | 1. Read data from file and get some useful information(eg.vocab size, token to id)
25 | 2. Build a neural network model for dependency parsing
26 | 3. Prepare the training data (eg. words in the buffer and on the stack, pos tags)
27 | 4. Train the model with approporiate learning rate
28 | 5. Evluate the model with development data
29 |
30 |
31 | ## Result
32 | Because the dataset is labeled with transitions, so here I use accurarcy to evaluate the model instead of UAS and LAS.
33 | The model is overfitted on evaluation dataset because I do not try to tune the parameters to maximize the performance on it. It is just a demo. After
34 | 35 iterations, the result on trainning dataset is:
35 | Predicted: [['SHIFT', 'SHIFT', 'SHIFT', 'SHIFT', 'REDUCE_L', 'REDUCE_L', 'REDUCE_L', 'SHIFT', 'SHIFT', 'REDUCE_L', 'SHIFT', 'SHIFT', 'SHIFT', 'SHIFT', 'REDUCE_L', 'REDUCE_L', 'REDUCE_L', 'SHIFT', 'REDUCE_R', 'REDUCE_R', 'REDUCE_R', 'SHIFT', 'REDUCE_R', 'SHIFT', 'REDUCE_R']]
36 | Ground Truth: [['SHIFT', 'SHIFT', 'SHIFT', 'SHIFT', 'REDUCE_L', 'REDUCE_L', 'REDUCE_L', 'SHIFT', 'SHIFT', 'REDUCE_L', 'SHIFT', 'SHIFT', 'SHIFT', 'SHIFT', 'REDUCE_L', 'REDUCE_L', 'REDUCE_L', 'SHIFT', 'REDUCE_R', 'REDUCE_R', 'REDUCE_R', 'SHIFT', 'REDUCE_R', 'SHIFT', 'REDUCE_R']]
37 | Total loss: 0.28010822834707083, Accuracy: 0.8947368421052632
38 |
39 |
40 | ## References:
41 | https://github.com/rguthrie3/DeepDependencyParsingProblemSet
42 | https://cs.stanford.edu/~danqi/papers/emnlp2014.pdf
43 | https://www.aclweb.org/anthology/W04-0308
44 | https://web.stanford.edu/class/cs224n/archive/WWW_1617/lecture_notes/cs224n-2017-notes4.pdf
45 |
--------------------------------------------------------------------------------
/Structure.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yc930401/Transition_based_dependency_parsing-pytorch/50ea5893ef0fb77770c0621bfe4dc71ad9ae43c9/Structure.png
--------------------------------------------------------------------------------
/constituency.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yc930401/Transition_based_dependency_parsing-pytorch/50ea5893ef0fb77770c0621bfe4dc71ad9ae43c9/constituency.png
--------------------------------------------------------------------------------
/data/vocab.txt:
--------------------------------------------------------------------------------
1 | 1
2 | . 9731
3 | , 9303
4 | the 8173
5 | to 4525
6 | of 4521
7 | a 3881
8 | and 3041
9 | in 3016
10 | 's 1905
11 | The 1732
12 | is 1620
13 | for 1617
14 | that 1541
15 | $ 1500
16 | `` 1443
17 | '' 1396
18 | ## 1375
19 | said 1229
20 | on 1073
21 | % 1014
22 | it 1010
23 | Mr. 1002
24 | by 947
25 | from 933
26 | as 930
27 | million 918
28 | at 906
29 | was 878
30 | are 877
31 | be 827
32 | with 808
33 | its 759
34 | will 755
35 | n't 735
36 | has 698
37 | have 689
38 | an 652
39 | he 601
40 | #### 575
41 | ### 540
42 | # 512
43 | company 507
44 | But 437
45 | #.# 429
46 | year 429
47 | were 427
48 | or 423
49 | #.## 422
50 | would 418
51 | says 418
52 | they 412
53 | this 404
54 | which 402
55 | about 396
56 | more 393
57 | In 389
58 | market 384
59 | had 373
60 | billion 364
61 | up 351
62 | also 347
63 | his 346
64 | their 327
65 | been 323
66 | than 320
67 | : 318
68 | not 306
69 | new 305
70 | but 296
71 | U.S. 295
72 | It 294
73 | -- 293
74 | one 282
75 | share 273
76 | shares 272
77 | ##.# 268
78 | I 266
79 | other 261
80 | who 257
81 | years 251
82 | New 246
83 | some 245
84 | stock 244
85 | Corp. 230
86 | trading 228
87 | could 227
88 | last 226
89 | out 220
90 | all 217
91 | He 211
92 | do 209
93 | can 208
94 | sales 204
95 | only 200
96 | two 199
97 | #/# 198
98 | A 198
99 | business 197
100 | Inc. 191
101 | into 187
102 | York 187
103 | prices 186
104 | because 186
105 | after 183
106 | may 183
107 | & 182
108 | such 180
109 | Co. 177
110 | rose 176
111 | companies 175
112 | first 174
113 | down 174
114 | many 173
115 | -RRB- 171
116 | -LRB- 169
117 | quarter 168
118 | when 165
119 | we 164
120 | ; 164
121 | say 159
122 | now 157
123 | if 156
124 | cents 155
125 | government 155
126 | no 154
127 | them 150
128 | people 150
129 | president 148
130 | bonds 148
131 | over 146
132 | week 145
133 | most 145
134 | ###.# 144
135 | ' 143
136 | there 141
137 | yesterday 138
138 | investors 137
139 | so 137
140 | We 135
141 | group 135
142 | time 135
143 | did 134
144 | any 134
145 | next 133
146 | And 133
147 | much 131
148 | That 131
149 | off 130
150 | through 129
151 | you 127
152 | interest 126
153 | earnings 125
154 | major 124
155 | expected 124
156 | American 124
157 | like 123
158 | They 122
159 | plan 122
160 | even 122
161 | ##.## 121
162 | just 119
163 | stocks 119
164 | price 119
165 | ###,### 118
166 | This 118
167 | make 117
168 | #,### 116
169 | issue 116
170 | before 115
171 | three 114
172 | days 114
173 | what 113
174 | those 113
175 | money 111
176 | back 111
177 | industry 108
178 | financial 107
179 | does 106
180 | higher 106
181 | officials 106
182 | program 105
183 | made 105
184 | funds 105
185 | months 104
186 | rate 104
187 | net 104
188 | income 104
189 | For 104
190 | unit 104
191 | reported 103
192 | Exchange 103
193 | chief 102
194 | ? 101
195 | sell 101
196 | earlier 100
197 | executive 100
198 | under 100
199 | still 100
200 | products 99
201 | she 98
202 | ##,### 98
203 | state 98
204 | recent 98
205 | Japanese 98
206 | get 97
207 | Some 97
208 | big 97
209 | closed 97
210 | month 96
211 | federal 96
212 | ago 96
213 | between 94
214 | yen 93
215 | current 93
216 | debt 93
217 | rates 93
218 | average 93
219 | while 93
220 | profit 91
221 | added 91
222 | against 91
223 | analysts 90
224 | spokesman 90
225 | very 90
226 | securities 90
227 | ###.## 89
228 | Friday 89
229 | fell 89
230 | yield 88
231 | There 88
232 | own 88
233 | part 88
234 | least 87
235 | plans 87
236 | both 87
237 | bank 86
238 | work 86
239 | sold 86
240 | operations 86
241 | since 86
242 | well 85
243 | bid 85
244 | Stock 85
245 | If 84
246 | think 84
247 | growth 83
248 | September 83
249 | buy 83
250 | markets 83
251 | offer 83
252 | should 82
253 | lower 82
254 | being 82
255 | Japan 82
256 | five 82
257 | chairman 81
258 | At 81
259 | issues 81
260 | these 81
261 | sale 80
262 | case 80
263 | common 79
264 | him 79
265 | investment 79
266 | Treasury 79
267 | during 79
268 | August 79
269 | As 78
270 | firm 78
271 | another 78
272 | take 77
273 | past 77
274 | day 77
275 | computer 76
276 | use 76
277 | foreign 75
278 | revenue 75
279 | few 75
280 | used 75
281 | way 74
282 | end 74
283 | far 73
284 | tax 73
285 | might 73
286 | number 73
287 | House 72
288 | already 72
289 | loss 72
290 | 're 72
291 | contract 72
292 | where 72
293 | One 72
294 | too 71
295 | close 71
296 | including 70
297 | early 70
298 | offering 70
299 | costs 70
300 | pay 70
301 | good 70
302 | point 69
303 | system 68
304 | each 68
305 | fund 68
306 | problems 68
307 | Bank 68
308 | high 68
309 | increase 68
310 | among 68
311 | banks 68
312 | law 68
313 | economic 68
314 | continue 68
315 | International 68
316 | less 68
317 | cash 67
318 | report 67
319 | Bush 67
320 | third 67
321 | Federal 67
322 | insurance 67
323 | traders 67
324 | results 66
325 | then 66
326 | due 66
327 | Oct. 66
328 | agreement 66
329 | going 66
330 | trade 65
331 | how 65
332 | board 65
333 | exchange 65
334 | around 64
335 | real 64
336 | concern 64
337 | oil 64
338 | total 64
339 | long 64
340 | her 64
341 | power 64
342 | recently 64
343 | points 63
344 | dollar 63
345 | agreed 63
346 | support 63
347 | according 63
348 | Monday 63
349 | little 63
350 | buying 62
351 | value 62
352 | notes 62
353 | National 62
354 | based 61
355 | production 61
356 | help 61
357 | vice 61
358 | estimated 61
359 | economy 60
360 | stake 60
361 | late 60
362 | comment 60
363 | move 60
364 | called 60
365 | several 59
366 | West 59
367 | San 59
368 | Inc 58
369 | selling 58
370 | want 58
371 | bond 58
372 | same 58
373 | today 58
374 | four 58
375 | declined 58
376 | problem 58
377 | court 58
378 | director 58
379 | priced 57
380 | index 57
381 | small 57
382 | however 57
383 | public 57
384 | Nov. 57
385 | include 57
386 | expect 57
387 | composite 57
388 | On 57
389 | agency 57
390 | wo 57
391 | set 56
392 | analyst 56
393 | political 56
394 | better 56
395 | British 56
396 | whether 56
397 | go 56
398 | our 56
399 | until 56
400 | come 55
401 | maker 55
402 | management 55
403 | cost 55
404 | world 55
405 | office 55
406 | right 55
407 | ended 55
408 | loans 55
409 | businesses 55
410 | Securities 55
411 | country 55
412 | officer 55
413 | capital 54
414 | changes 54
415 | former 54
416 | California 54
417 | change 54
418 | period 54
419 | increased 54
420 | When 54
421 | see 53
422 | held 53
423 | Congress 53
424 | large 52
425 | further 52
426 | Now 52
427 | Department 52
428 | Wall 52
429 | nation 52
430 | nearly 51
431 | operating 51
432 | third-quarter 51
433 | bill 51
434 | Street 51
435 | second 51
436 | President 51
437 | know 51
438 | my 51
439 | example 51
440 | latest 51
441 | Soviet 51
442 | decline 51
443 | purchase 50
444 | corporate 50
445 | likely 50
446 | largest 50
447 | news 50
448 | London 50
449 | annual 50
450 | futures 50
451 | Ford 49
452 | lot 49
453 | credit 49
454 | John 49
455 | July 49
456 | cut 49
457 | official 49
458 | general 49
459 | here 48
460 | began 48
461 | six 48
462 | assets 48
463 | earthquake 48
464 | level 48
465 | become 48
466 | building 48
467 | line 48
468 | record 47
469 | home 47
470 | Senate 47
471 | offered 47
472 | East 47
473 | gain 47
474 | show 47
475 | Ms. 47
476 | fiscal 47
477 | certain 47
478 | bought 47
479 | addition 47
480 | once 47
481 | Capital 46
482 | amount 46
483 | losses 46
484 | possible 46
485 | Revenue 46
486 | times 46
487 | currently 46
488 | Sales 46
489 | South 46
490 | give 46
491 | control 46
492 | service 45
493 | half 45
494 | effort 45
495 | national 45
496 | expects 45
497 | dropped 45
498 | your 45
499 | units 45
500 | Texas 45
501 | deal 45
502 | announced 45
503 | result 44
504 | though 44
505 | demand 44
506 | city 44
507 | strong 44
508 | China 44
509 | policy 44
510 | need 44
511 | Jaguar 44
512 | makes 44
513 | So 44
514 | restructuring 44
515 | administration 44
516 | led 43
517 | IBM 43
518 | never 43
519 | put 43
520 | almost 43
521 | risk 43
522 | drop 43
523 | rise 43
524 | #.#### 43
525 | paid 42
526 | yet 42
527 | face 42
528 | old 42
529 | must 42
530 | plant 42
531 | drug 41
532 | additional 41
533 | gains 41
534 | came 41
535 | keep 41
536 | UAL 41
537 | often 41
538 | again 41
539 | Corp 41
540 | #.### 41
541 | Air 41
542 | orders 41
543 | suit 41
544 | Francisco 41
545 | charge 41
546 | volume 41
547 | takeover 41
548 | Fed 40
549 | With 40
550 | -RCB- 40
551 | firms 40
552 | senior 40
553 | spending 40
554 | claims 40
555 | received 40
556 | every 40
557 | Board 40
558 | approval 40
559 | product 40
560 | Tokyo 40
561 | While 40
562 | ca 40
563 | America 40
564 | Eastern 40
565 | After 40
566 | compared 40
567 | paper 40
568 | Germany 40
569 | filed 40
570 | What 39
571 | took 39
572 | These 39
573 | programs 39
574 | outstanding 39
575 | junk 39
576 | continued 39
577 | Many 39
578 | Last 39
579 | executives 39
580 | lost 39
581 | biggest 38
582 | commercial 38
583 | proposed 38
584 | -LCB- 38
585 | shareholders 38
586 | position 38
587 | top 38
588 | First 38
589 | best 38
590 | making 38
591 | union 38
592 | You 38
593 | customers 38
594 | ##-year 38
595 | without 38
596 | Washington 38
597 | James 38
598 | above 37
599 | away 37
600 | able 37
601 | figures 37
602 | available 37
603 | Pacific 37
604 | General 37
605 | European 37
606 | Co 37
607 | soon 37
608 | Lynch 37
609 | got 37
610 | private 37
611 | services 36
612 | dollars 36
613 | Big 36
614 | transaction 36
615 | Merrill 36
616 | computers 36
617 | ... 36
618 | estate 36
619 | Britain 36
620 | investor 36
621 | us 36
622 | October 36
623 | Robert 36
624 | future 36
625 | weeks 36
626 | Most 36
627 | Group 36
628 | marketing 36
629 | research 36
630 | wants 35
631 | workers 35
632 | getting 35
633 | goods 35
634 | contracts 35
635 | ##.### 35
636 | proposal 35
637 | bills 35
638 | potential 35
639 | via 35
640 | life 35
641 | Tuesday 35
642 | Warner 35
643 | provide 35
644 | return 35
645 | especially 35
646 | named 35
647 | raise 35
648 | TV 35
649 | effect 34
650 | percentage 34
651 | decision 34
652 | employees 34
653 | 'll 34
654 | reached 34
655 | later 34
656 | United 34
657 | Europe 34
658 | previous 34
659 | car 34
660 | others 34
661 | 've 34
662 | adds 34
663 | health 34
664 | important 34
665 | low 34
666 | enough 34
667 | following 34
668 | order 34
669 | Chicago 34
670 | meeting 34
671 | returns 33
672 | slightly 33
673 | information 33
674 | All 33
675 | legal 33
676 | probably 33
677 | special 33
678 | cars 33
679 | By 33
680 | statement 33
681 | rather 33
682 | great 33
683 | trying 33
684 | His 33
685 | looking 33
686 | construction 33
687 | local 33
688 | To 33
689 | action 33
690 | estimates 32
691 | role 32
692 | systems 32
693 | charges 32
694 | buy-out 32
695 | seems 32
696 | themselves 32
697 | White 32
698 | account 32
699 | try 32
700 | makers 32
701 | However 32
702 | Canadian 32
703 | Jones 32
704 | efforts 32
705 | auto 32
706 | family 32
707 | Series 32
708 | using 32
709 | team 32
710 | limited 32
711 | development 32
712 | gas 32
713 | domestic 32
714 | fact 32
715 | started 32
716 | defense 32
717 | taken 31
718 | fall 31
719 | raised 31
720 | told 31
721 | subsidiary 31
722 | boost 31
723 | known 31
724 | software 31
725 | hold 31
726 | dividend 31
727 | believe 31
728 | remain 31
729 | within 31
730 | either 31
731 | find 31
732 | increases 31
733 | project 31
734 | damage 31
735 | airline 31
736 | deficit 31
737 | June 31
738 | terms 30
739 | job 30
740 | members 30
741 | calls 30
742 | children 30
743 | owns 30
744 | consumer 30
745 | scheduled 30
746 | joint 30
747 | countries 30
748 | area 30
749 | financing 30
750 | basis 30
751 | activity 30
752 | head 30
753 | went 30
754 | Both 30
755 | portfolio 30
756 | Sept. 30
757 | levels 30
758 | managers 30
759 | Ltd. 30
760 | An 30
761 | similar 30
762 | begin 29
763 | inflation 29
764 | Industries 29
765 | asked 29
766 | Dow 29
767 | difficult 29
768 | industrial 29
769 | strategy 29
770 | technology 29
771 | lawyers 29
772 | Court 29
773 | personal 29
774 | currency 29
775 | manager 29
776 | Even 29
777 | question 29
778 | rights 29
779 | Commission 29
780 | issued 29
781 | means 29
782 | start 29
783 | food 29
784 | remains 29
785 | international 29
786 | University 29
787 | place 29
788 | committee 29
789 | loan 29
790 | options 29
791 | long-term 29
792 | hard 29
793 | hit 29
794 | March 29
795 | left 29
796 | division 28
797 | recession 28
798 | sector 28
799 | Association 28
800 | Union 28
801 | Kong 28
802 | 'm 28
803 | Although 28
804 | Hong 28
805 | lines 28
806 | cases 28
807 | nine 28
808 | equipment 28
809 | whose 28
810 | Michael 28
811 | acquisition 28
812 | really 28
813 | parts 28
814 | seem 28
815 | showed 28
816 | approved 28
817 | included 28
818 | working 28
819 | given 28
820 | Analysts 28
821 | Moody 28
822 | directors 28
823 | Other 28
824 | force 28
825 | competition 28
826 | run 28
827 | profits 28
828 | clear 28
829 | bad 28
830 | venture 28
831 | over-the-counter 27
832 | despite 27
833 | near 27
834 | holding 27
835 | itself 27
836 | Bay 27
837 | judge 27
838 | turned 27
839 | David 27
840 | along 27
841 | creditors 27
842 | brokerage 27
843 | estimate 27
844 | done 27
845 | acquired 27
846 | budget 27
847 | subject 27
848 | banking 27
849 | house 27
850 | City 27
851 | me 27
852 | reduce 27
853 | found 27
854 | Then 27
855 | things 27
856 | Kidder 27
857 | jumped 27
858 | Canada 27
859 | Wednesday 27
860 | holders 27
861 | State 26
862 | Under 26
863 | No 26
864 | key 26
865 | Systems 26
866 | sure 26
867 | helped 26
868 | data 26
869 | won 26
870 | daily 26
871 | traded 26
872 | fourth 26
873 | legislation 26
874 | imports 26
875 | course 26
876 | Business 26
877 | hurt 26
878 | pressure 26
879 | seek 26
880 | brought 26
881 | always 26
882 | center 26
883 | heavy 26
884 | having 26
885 | doing 26
886 | talks 26
887 | People 26
888 | leader 26
889 | year-earlier 26
890 | steel 26
891 | Los 26
892 | failed 26
893 | Chairman 26
894 | magazine 26
895 | smaller 26
896 | Reserve 26
897 | mortgage 26
898 | involved 26
899 | plants 26
900 | leaders 25
901 | producers 25
902 | Calif. 25
903 | Airlines 25
904 | seeking 25
905 | saying 25
906 | She 25
907 | sent 25
908 | buyers 25
909 | leading 25
910 | machine 25
911 | improved 25
912 | ad 25
913 | Mrs. 25
914 | George 25
915 | German 25
916 | age 25
917 | spread 25
918 | beginning 25
919 | Still 25
920 | shows 25
921 | short 25
922 | look 25
923 | network 25
924 | reason 25
925 | Angeles 25
926 | toward 25
927 | thing 25
928 | performance 25
929 | planning 25
930 | black 25
931 | anything 25
932 | includes 25
933 | Digital 25
934 | pound 25
935 | call 25
936 | groups 25
937 | turn 25
938 | Thursday 25
939 | name 24
940 | noted 24
941 | elected 24
942 | disclosed 24
943 | particularly 24
944 | unchanged 24
945 | Since 24
946 | growing 24
947 | below 24
948 | base 24
949 | concerns 24
950 | pilots 24
951 | majority 24
952 | Moreover 24
953 | ever 24
954 | image 24
955 | bring 24
956 | rule 24
957 | Committee 24
958 | seven 24
959 | moves 24
960 | finance 24
961 | interested 24
962 | Morgan 24
963 | thought 24
964 | full 24
965 | retail 24
966 | ####s 24
967 | article 24
968 | spokeswoman 24
969 | taking 24
970 | North 24
971 | independent 24
972 | earned 24
973 | Net 24
974 | final 24
975 | term 24
976 | Western 24
977 | clients 23
978 | GM 23
979 | marks 23
980 | May 23
981 | avoid 23
982 | coming 23
983 | required 23
984 | Also 23
985 | payments 23
986 | S&P 23
987 | institutions 23
988 | Among 23
989 | something 23
990 | summer 23
991 | 'd 23
992 | quickly 23
993 | Fund 23
994 | rising 23
995 | lead 23
996 | ruling 23
997 | states 23
998 | advertising 23
999 | hand 23
1000 | rules 23
1001 | Drexel 23
1002 | Meanwhile 23
1003 | Its 23
1004 | announcement 23
1005 | yields 23
1006 | produced 22
1007 | jobs 22
1008 | history 22
1009 | French 22
1010 | convertible 22
1011 | huge 22
1012 | situation 22
1013 | April 22
1014 | ahead 22
1015 | side 22
1016 | simply 22
1017 | significant 22
1018 | reports 22
1019 | Markets 22
1020 | Shearson 22
1021 | Qintex 22
1022 | tons 22
1023 | taxes 22
1024 | hours 22
1025 | seen 22
1026 | totaled 22
1027 | note 22
1028 | World 22
1029 | longer 22
1030 | de 22
1031 | Noriega 22
1032 | sense 22
1033 | machines 22
1034 | initial 22
1035 | individual 22
1036 | post 22
1037 | active 22
1038 | quake 22
1039 | houses 22
1040 | free 22
1041 | Service 22
1042 | projects 22
1043 | impact 22
1044 | posted 22
1045 | appear 22
1046 | stores 22
1047 | supply 22
1048 | trust 22
1049 | Motor 22
1050 | stop 22
1051 | dealers 22
1052 | settlement 22
1053 | investments 22
1054 | William 21
1055 | although 21
1056 | built 21
1057 | cause 21
1058 | media 21
1059 | form 21
1060 | U.K. 21
1061 | department 21
1062 | let 21
1063 | ! 21
1064 | gold 21
1065 | contributed 21
1066 | television 21
1067 | merger 21
1068 | Gorbachev 21
1069 | measure 21
1070 | gained 21
1071 | hopes 21
1072 | natural 21
1073 | different 21
1074 | backed 21
1075 | francs 21
1076 | moved 21
1077 | congressional 21
1078 | questions 21
1079 | plunge 21
1080 | session 21
1081 | created 21
1082 | needed 21
1083 | build 21
1084 | Despite 21
1085 | hope 21
1086 | protection 21
1087 | related 21
1088 | equity 21
1089 | open 21
1090 | exports 21
1091 | across 21
1092 | leave 21
1093 | generally 21
1094 | designed 21
1095 | effective 21
1096 | process 21
1097 | completed 21
1098 | staff 21
1099 | meet 21
1100 | Journal 21
1101 | man 21
1102 | Boston 21
1103 | sharply 21
1104 | models 20
1105 | military 20
1106 | Another 20
1107 | Institute 20
1108 | caused 20
1109 | aid 20
1110 | consultant 20
1111 | benefits 20
1112 | ones 20
1113 | Baker 20
1114 | approach 20
1115 | previously 20
1116 | feel 20
1117 | parent 20
1118 | Nasdaq 20
1119 | #,###,### 20
1120 | trial 20
1121 | allowed 20
1122 | Services 20
1123 | range 20
1124 | series 20
1125 | pension 20
1126 | quoted 20
1127 | rally 20
1128 | Security 20
1129 | headed 20
1130 | trouble 20
1131 | partly 20
1132 | brokers 20
1133 | owned 20
1134 | reduced 20
1135 | Nissan 20
1136 | cuts 20
1137 | direct 20
1138 | owners 20
1139 | figure 20
1140 | largely 20
1141 | Investors 20
1142 | produce 20
1143 | Sony 20
1144 | vote 20
1145 | abortion 20
1146 | crash 20
1147 | why 20
1148 | battle 20
1149 | healthy 20
1150 | fight 20
1151 | opened 20
1152 | faces 19
1153 | behind 19
1154 | homes 19
1155 | changed 19
1156 | cited 19
1157 | chemical 19
1158 | fully 19
1159 | Financial 19
1160 | Manville 19
1161 | flat 19
1162 | Valley 19
1163 | comes 19
1164 | payment 19
1165 | offers 19
1166 | spent 19
1167 | security 19
1168 | heavily 19
1169 | areas 19
1170 | ##-year-old 19
1171 | goes 19
1172 | hands 19
1173 | Supreme 19
1174 | water 19
1175 | manufacturing 19
1176 | kind 19
1177 | Sears 19
1178 | Dr. 19
1179 | December 19
1180 | feet 19
1181 | conference 19
1182 | offset 19
1183 | war 19
1184 | outside 19
1185 | SEC 19
1186 | Americans 19
1187 | moving 19
1188 | eight 19
1189 | margins 19
1190 | Krenz 19
1191 | overseas 19
1192 | discount 19
1193 | telephone 19
1194 | human 19
1195 | actual 19
1196 | minimum 19
1197 | game 19
1198 | News 19
1199 | Chemical 19
1200 | instead 19
1201 | considered 19
1202 | auction 19
1203 | willing 19
1204 | quarterly 19
1205 | slow 19
1206 | sometimes 19
1207 | attempt 19
1208 | Brothers 19
1209 | rest 19
1210 | played 19
1211 | parties 18
1212 | Time 18
1213 | instance 18
1214 | Office 18
1215 | preferred 18
1216 | school 18
1217 | January 18
1218 | apparently 18
1219 | person 18
1220 | stay 18
1221 | Peters 18
1222 | closing 18
1223 | Commerce 18
1224 | capacity 18
1225 | provision 18
1226 | trader 18
1227 | Stanley 18
1228 | mean 18
1229 | space 18
1230 | IRS 18
1231 | Guber 18
1232 | Australia 18
1233 | Paris 18
1234 | global 18
1235 | closely 18
1236 | quality 18
1237 | consumers 18
1238 | negotiations 18
1239 | grew 18
1240 | nothing 18
1241 | launched 18
1242 | usually 18
1243 | Insurance 18
1244 | target 18
1245 | actually 18
1246 | Rep. 18
1247 | Democratic 18
1248 | amounts 18
1249 | view 18
1250 | Justice 18
1251 | properties 18
1252 | response 18
1253 | stations 18
1254 | focus 18
1255 | debentures 18
1256 | together 18
1257 | needs 18
1258 | decided 18
1259 | tried 18
1260 | deals 18
1261 | ##/## 18
1262 | subordinated 18
1263 | risks 18
1264 | win 18
1265 | drive 18
1266 | filing 18
1267 | delivery 18
1268 | highly 18
1269 | fees 17
1270 | women 17
1271 | Because 17
1272 | cancer 17
1273 | idea 17
1274 | speed 17
1275 | main 17
1276 | per 17
1277 | Sen. 17
1278 | Smith 17
1279 | reserves 17
1280 | increasing 17
1281 | Here 17
1282 | leveraged 17
1283 | weak 17
1284 | improve 17
1285 | prepared 17
1286 | offices 17
1287 | electronic 17
1288 | soared 17
1289 | carry 17
1290 | bankruptcy 17
1291 | purchased 17
1292 | reorganization 17
1293 | alone 17
1294 | typically 17
1295 | passed 17
1296 | morning 17
1297 | beyond 17
1298 | Those 17
1299 | believes 17
1300 | industries 17
1301 | lose 17
1302 | design 17
1303 | Paribas 17
1304 | Hollywood 17
1305 | partner 17
1306 | experts 17
1307 | Navigation 17
1308 | provided 17
1309 | ability 17
1310 | During 17
1311 | civil 17
1312 | request 17
1313 | acquire 17
1314 | ` 17
1315 | export 17
1316 | magazines 17
1317 | play 17
1318 | Communications 17
1319 | talk 17
1320 | red 17
1321 | individuals 17
1322 | Reagan 17
1323 | night 17
1324 | forces 17
1325 | strike 17
1326 | Management 17
1327 | internal 17
1328 | declining 17
1329 | Ministry 17
1330 | press 17
1331 | version 17
1332 | provides 17
1333 | modest 17
1334 | Continental 17
1335 | break 17
1336 | crisis 17
1337 | regulators 17
1338 | Computer 17
1339 | starting 17
1340 | holdings 17
1341 | community 17
1342 | Lawson 17
1343 | attributed 17
1344 | Bond 17
1345 | A. 17
1346 | consider 17
1347 | Campeau 17
1348 | Mixte 17
1349 | tomorrow 17
1350 | Santa 16
1351 | expand 16
1352 | source 16
1353 | care 16
1354 | labor 16
1355 | shift 16
1356 | whole 16
1357 | agreements 16
1358 | quite 16
1359 | OTC 16
1360 | planned 16
1361 | conditions 16
1362 | operation 16
1363 | meanwhile 16
1364 | various 16
1365 | - 16
1366 | opening 16
1367 | success 16
1368 | C$ 16
1369 | India 16
1370 | everyone 16
1371 | institutional 16
1372 | Not 16
1373 | ##th 16
1374 | brand 16
1375 | signed 16
1376 | matter 16
1377 | reflecting 16
1378 | economists 16
1379 | runs 16
1380 | Next 16
1381 | men 16
1382 | room 16
1383 | France 16
1384 | add 16
1385 | accounts 16
1386 | Party 16
1387 | followed 16
1388 | values 16
1389 | single 16
1390 | Express 16
1391 | anyone 16
1392 | purchases 16
1393 | underwriters 16
1394 | municipal 16
1395 | Poland 16
1396 | LIN 16
1397 | Of 16
1398 | worse 16
1399 | separate 16
1400 | party 16
1401 | PLC 16
1402 | complete 16
1403 | allow 16
1404 | list 16
1405 | names 16
1406 | stand 16
1407 | Data 16
1408 | maintain 16
1409 | appears 16
1410 | genes 16
1411 | size 16
1412 | Sun 16
1413 | resigned 16
1414 | century 16
1415 | customer 16
1416 | gene 16
1417 | Our 16
1418 | Sir 16
1419 | ####.## 16
1420 | became 16
1421 | wanted 16
1422 | Dec. 16
1423 | responsible 16
1424 | existing 16
1425 | ads 16
1426 | developed 16
1427 | sources 16
1428 | seemed 16
1429 | letter 16
1430 | par 16
1431 | easily 16
1432 | expansion 16
1433 | PaineWebber 16
1434 | attorney 15
1435 | abroad 15
1436 | Salomon 15
1437 | lending 15
1438 | tough 15
1439 | advance 15
1440 | year-ago 15
1441 | Lehman 15
1442 | jury 15
1443 | families 15
1444 | Hugo 15
1445 | crude 15
1446 | receive 15
1447 | residents 15
1448 | deposits 15
1449 | Hill 15
1450 | strategies 15
1451 | corporations 15
1452 | fears 15
1453 | worth 15
1454 | date 15
1455 | takes 15
1456 | guilty 15
1457 | guarantees 15
1458 | reach 15
1459 | Jr. 15
1460 | continues 15
1461 | climbed 15
1462 | certainly 15
1463 | finished 15
1464 | Secretary 15
1465 | light 15
1466 | am 15
1467 | benefit 15
1468 | Such 15
1469 | HUD 15
1470 | Peter 15
1471 | About 15
1472 | Johnson 15
1473 | emergency 15
1474 | advanced 15
1475 | create 15
1476 | Democrats 15
1477 | signs 15
1478 | Three 15
1479 | attract 15
1480 | promise 15
1481 | surged 15
1482 | CBS 15
1483 | output 15
1484 | Thomas 15
1485 | continuing 15
1486 | virtually 15
1487 | collapse 15
1488 | immediately 15
1489 | technical 15
1490 | supplies 15
1491 | Home 15
1492 | Judge 15
1493 | holds 15
1494 | truck 15
1495 | ratio 15
1496 | mutual 15
1497 | member 15
1498 | interview 15
1499 | Index 15
1500 | split 15
1501 | C. 15
1502 | Investment 15
1503 | Indeed 15
1504 | directly 15
1505 | Moscow 15
1506 | property 15
1507 | Beijing 15
1508 | sharp 15
1509 | familiar 15
1510 | negative 15
1511 | cover 14
1512 | particular 14
1513 | review 14
1514 | #/## 14
1515 | easy 14
1516 | interests 14
1517 | segment 14
1518 | himself 14
1519 | economist 14
1520 | affected 14
1521 | CD 14
1522 | pence 14
1523 | specific 14
1524 | positions 14
1525 | direction 14
1526 | drives 14
1527 | realize 14
1528 | junk-bond 14
1529 | slowdown 14
1530 | stands 14
1531 | secretary 14
1532 | proceeds 14
1533 | S. 14
1534 | primarily 14
1535 | spring 14
1536 | arbitrage 14
1537 | numbers 14
1538 | Chapter 14
1539 | paying 14
1540 | heart 14
1541 | released 14
1542 | settled 14
1543 | Yet 14
1544 | combined 14
1545 | highest 14
1546 | centers 14
1547 | Manhattan 14
1548 | steps 14
1549 | worried 14
1550 | waiting 14
1551 | calling 14
1552 | require 14
1553 | act 14
1554 | forced 14
1555 | concerned 14
1556 | Technology 14
1557 | competitive 14
1558 | high-yield 14
1559 | worked 14
1560 | traffic 14
1561 | positive 14
1562 | test 14
1563 | movie 14
1564 | considering 14
1565 | Machines 14
1566 | Sachs 14
1567 | pilot 14
1568 | balance 14
1569 | traditional 14
1570 | thrift 14
1571 | ways 14
1572 | lawmakers 14
1573 | save 14
1574 | wrong 14
1575 | decade 14
1576 | predicted 14
1577 | volatile 14
1578 | housing 14
1579 | sports 14
1580 | expensive 14
1581 | else 14
1582 | metric 14
1583 | widely 14
1584 | entire 14
1585 | litigation 14
1586 | comparable 14
1587 | pending 14
1588 | experience 14
1589 | swings 14
1590 | confirmed 14
1591 | editor 14
1592 | restrictions 14
1593 | Dinkins 14
1594 | Richard 14
1595 | Republicans 14
1596 | serious 14
1597 | circumstances 14
1598 | mind 14
1599 | indicated 14
1600 | scandal 14
1601 | mail 14
1602 | medical 14
1603 | joined 14
1604 | OPEC 14
1605 | miles 14
1606 | Steel 14
1607 | running 14
1608 | Ltd 14
1609 | valued 14
1610 | kept 14
1611 | bidding 14
1612 | Goldman 14
1613 | favor 14
1614 | controlled 14
1615 | study 14
1616 | retirement 14
1617 | standard 14
1618 | pretax 14
1619 | elections 14
1620 | treatment 14
1621 | managed 14
1622 | served 14
1623 | young 14
1624 | disaster 14
1625 | Soviets 14
1626 | gone 14
1627 | introduced 14
1628 | newspaper 14
1629 | substantially 14
1630 | trend 14
1631 | chemicals 14
1632 | developing 14
1633 | Electric 14
1634 | attention 14
1635 | negotiating 13
1636 | retailers 13
1637 | Italy 13
1638 | plus 13
1639 | association 13
1640 | Texaco 13
1641 | environment 13
1642 | grow 13
1643 | NBC 13
1644 | Exxon 13
1645 | bit 13
1646 | strength 13
1647 | remaining 13
1648 | relatively 13
1649 | finding 13
1650 | adjusted 13
1651 | Hewlett-Packard 13
1652 | ratings 13
1653 | declines 13
1654 | Israel 13
1655 | Transportation 13
1656 | step 13
1657 | controls 13
1658 | coal 13
1659 | reasons 13
1660 | maturity 13
1661 | electronics 13
1662 | D. 13
1663 | Charles 13
1664 | land 13
1665 | bids 13
1666 | season 13
1667 | Jersey 13
1668 | track 13
1669 | Why 13
1670 | whom 13
1671 | acquisitions 13
1672 | wide 13
1673 | leaving 13
1674 | story 13
1675 | victims 13
1676 | region 13
1677 | word 13
1678 | events 13
1679 | liability 13
1680 | perhaps 13
1681 | campaign 13
1682 | chance 13
1683 | advantage 13
1684 | coupon 13
1685 | Hutton 13
1686 | activities 13
1687 | develop 13
1688 | Breeden 13
1689 | true 13
1690 | ground 13
1691 | Southern 13
1692 | threat 13
1693 | raising 13
1694 | model 13
1695 | laws 13
1696 | Separately 13
1697 | effects 13
1698 | Mexico 13
1699 | accept 13
1700 | evidence 13
1701 | twice 13
1702 | Today 13
1703 | sort 13
1704 | mixed 13
1705 | More 13
1706 | shown 13
1707 | fewer 13
1708 | expenses 13
1709 | premium 13
1710 | survey 13
1711 | simple 13
1712 | Saturday 13
1713 | researchers 13
1714 | so-called 13
1715 | after-tax 13
1716 | gross 13
1717 | Lloyd 13
1718 | influence 13
1719 | volatility 13
1720 | live 13
1721 | putting 13
1722 | nor 13
1723 | engineering 13
1724 | Industry 13
1725 | wage 13
1726 | According 13
1727 | successful 13
1728 | Defense 13
1729 | copper 13
1730 | death 13
1731 | panel 13
1732 | everything 13
1733 | short-term 13
1734 | import 13
1735 | Phillips 13
1736 | puts 13
1737 | Columbia 13
1738 | reduction 13
1739 | pretty 13
1740 | W. 13
1741 | flow 13
1742 | substantial 13
1743 | Power 13
1744 | finally 13
1745 | claim 13
1746 | Georgia-Pacific 13
1747 | access 13
1748 | exchanges 13
1749 | invest 13
1750 | listed 13
1751 | scientists 13
1752 | white 13
1753 | brands 13
1754 | details 12
1755 | Though 12
1756 | contrast 12
1757 | real-estate 12
1758 | Corporate 12
1759 | store 12
1760 | police 12
1761 | bottom 12
1762 | affect 12
1763 | worst 12
1764 | Boeing 12
1765 | limit 12
1766 | Credit 12
1767 | Wang 12
1768 | factor 12
1769 | opportunity 12
1770 | protect 12
1771 | afternoon 12
1772 | colleagues 12
1773 | Perhaps 12
1774 | Lincoln 12
1775 | uses 12
1776 | overall 12
1777 | awarded 12
1778 | buildings 12
1779 | sought 12
1780 | pace 12
1781 | Trust 12
1782 | Nikkei 12
1783 | publisher 12
1784 | B.A.T 12
1785 | wrote 12
1786 | provisions 12
1787 | reflects 12
1788 | conventional 12
1789 | release 12
1790 | Burnham 12
1791 | USAir 12
1792 | players 12
1793 | J. 12
1794 | ownership 12
1795 | adding 12
1796 | film 12
1797 | measures 12
1798 | actions 12
1799 | overhaul 12
1800 | replace 12
1801 | adviser 12
1802 | woman 12
1803 | automotive 12
1804 | knows 12
1805 | discuss 12
1806 | Thus 12
1807 | slide 12
1808 | shareholder 12
1809 | equal 12
1810 | costly 12
1811 | accord 12
1812 | recovery 12
1813 | six-month 12
1814 | requirements 12
1815 | phone 12
1816 | remained 12
1817 | giant 12
1818 | established 12
1819 | supported 12
1820 | Lawrence 12
1821 | floor 12
1822 | tied 12
1823 | environmental 12
1824 | Navy 12
1825 | November 12
1826 | worry 12
1827 | damages 12
1828 | Earlier 12
1829 | preliminary 12
1830 | shopping 12
1831 | thousands 12
1832 | receipts 12
1833 | decisions 12
1834 | hotel 12
1835 | partners 12
1836 | showing 12
1837 | F. 12
1838 | agencies 12
1839 | publicly 12
1840 | benchmark 12
1841 | guidelines 12
1842 | warrants 12
1843 | instruments 12
1844 | pipeline 12
1845 | lawyer 12
1846 | books 12
1847 | profitable 12
1848 | apply 12
1849 | faster 12
1850 | unless 12
1851 | materials 12
1852 | Only 12
1853 | Until 12
1854 | Their 12
1855 | Banco 12
1856 | book 12
1857 | follow 12
1858 | rejected 12
1859 | guarantee 12
1860 | vehicles 12
1861 | Two 12
1862 | unusual 12
1863 | air 12
1864 | mostly 12
1865 | reform 12
1866 | movement 12
1867 | mortgages 12
1868 | push 12
1869 | investigation 12
1870 | nuclear 12
1871 | St. 12
1872 | crop 12
1873 | central 12
1874 | suggest 12
1875 | fraud 12
1876 | transactions 12
1877 | Medical 12
1878 | items 12
1879 | field 12
1880 | AT&T 12
1881 | leadership 12
1882 | THE 12
1883 | educational 11
1884 | Health 11
1885 | Nekoosa 11
1886 | ###-day 11
1887 | Swiss 11
1888 | Savings 11
1889 | GE 11
1890 | newly 11
1891 | Evans 11
1892 | King 11
1893 | chip 11
1894 | rating 11
1895 | significantly 11
1896 | manufacturers 11
1897 | deputy 11
1898 | Peabody 11
1899 | Mortgage 11
1900 | succeeds 11
1901 | met 11
1902 | Motors 11
1903 | respond 11
1904 | energy 11
1905 | stock-index 11
1906 | ounce 11
1907 | baseball 11
1908 | agree 11
1909 | Broadcasting 11
1910 | ventures 11
1911 | Lambert 11
1912 | commodity 11
1913 | Average 11
1914 | package 11
1915 | regional 11
1916 | establish 11
1917 | aimed 11
1918 | double 11
1919 | college 11
1920 | sign 11
1921 | Saatchi 11
1922 | forecasts 11
1923 | Christmas 11
1924 | Trade 11
1925 | Mac 11
1926 | Environmental 11
1927 | hearing 11
1928 | associated 11
1929 | event 11
1930 | System 11
1931 | Red 11
1932 | appeals 11
1933 | delay 11
1934 | eventually 11
1935 | lack 11
1936 | troubles 11
1937 | drugs 11
1938 | rated 11
1939 | weekly 11
1940 | Mitsubishi 11
1941 | structure 11
1942 | Aug. 11
1943 | CDs 11
1944 | Company 11
1945 | lawsuits 11
1946 | Administration 11
1947 | Mae 11
1948 | whites 11
1949 | consultants 11
1950 | certificates 11
1951 | operates 11
1952 | plunged 11
1953 | practices 11
1954 | factors 11
1955 | aware 11
1956 | throughout 11
1957 | regulations 11
1958 | manufacturer 11
1959 | present 11
1960 | incentives 11
1961 | felt 11
1962 | retailing 11
1963 | recommended 11
1964 | disclose 11
1965 | relationship 11
1966 | downward 11
1967 | criticism 11
1968 | Thomson 11
1969 | outlook 11
1970 | records 11
1971 | fear 11
1972 | bringing 11
1973 | extra 11
1974 | deliver 11
1975 | managing 11
1976 | US$ 11
1977 | Council 11
1978 | regulatory 11
1979 | Food 11
1980 | extremely 11
1981 | voted 11
1982 | USX 11
1983 | nobody 11
1984 | Morris 11
1985 | street 11
1986 | Market 11
1987 | creative 11
1988 | spend 11
1989 | proposals 11
1990 | Alan 11
1991 | poor 11
1992 | Toronto 11
1993 | trucks 11
1994 | seeks 11
1995 | ease 11
1996 | Frank 11
1997 | town 11
1998 | accounting 11
1999 | Research 11
2000 | Traders 11
2001 | Steinhardt 11
2002 | count 11
2003 | Green 11
2004 | CIA 11
2005 | Spain 11
2006 | Bill 11
2007 | barrels 11
2008 | Cray 11
2009 | dead 11
2010 | cutting 11
2011 | succeed 11
2012 | world-wide 11
2013 | patients 11
2014 | Communist 11
2015 | answer 11
2016 | mine 11
2017 | partnerships 11
2018 | capital-gains 11
2019 | exposure 11
2020 | lives 11
2021 | Freddie 11
2022 | principal 11
2023 | choice 11
2024 | Park 11
2025 | Brown 11
2026 | clearly 11
2027 | Africa 11
2028 | Dealers 11
2029 | Hurricane 11
2030 | standards 11
2031 | moment 11
2032 | core 10
2033 | per-share 10
2034 | SCI 10
2035 | Philip 10
2036 | No. 10
2037 | exercise 10
2038 | failure 10
2039 | critical 10
2040 | competitors 10
2041 | broken 10
2042 | billions 10
2043 | sentiment 10
2044 | Banking 10
2045 | hour 10
2046 | flight 10
2047 | coffee 10
2048 | overnight 10
2049 | difference 10
2050 | Sterling 10
2051 | charged 10
2052 | Yesterday 10
2053 | audience 10
2054 | Holdings 10
2055 | requires 10
2056 | accounted 10
2057 | Before 10
2058 | temporary 10
2059 | debate 10
2060 | conservative 10
2061 | adopted 10
2062 | February 10
2063 | couple 10
2064 | asset 10
2065 | Brooks 10
2066 | zero-coupon 10
2067 | dozen 10
2068 | Chrysler 10
2069 | entertainment 10
2070 | Fannie 10
2071 | sells 10
2072 | Westinghouse 10
2073 | tests 10
2074 | Petroleum 10
2075 | filled 10
2076 | thinking 10
2077 | gets 10
2078 | produces 10
2079 | device 10
2080 | politics 10
2081 | enormous 10
2082 | Price 10
2083 | L. 10
2084 | transportation 10
2085 | principle 10
2086 | Florida 10
2087 | controversial 10
2088 | improvements 10
2089 | hostile 10
2090 | Chinese 10
2091 | profitability 10
2092 | broad 10
2093 | bankers 10
2094 | falling 10
2095 | minutes 10
2096 | patent 10
2097 | Frankfurt 10
2098 | Poor 10
2099 | brief 10
2100 | payable 10
2101 | soft 10
2102 | option 10
2103 | relief 10
2104 | rumors 10
2105 | authorities 10
2106 | Officials 10
2107 | Bell 10
2108 | candidates 10
2109 | monetary 10
2110 | culture 10
2111 | collapsed 10
2112 | documents 10
2113 | fast 10
2114 | Northern 10
2115 | genetic 10
2116 | match 10
2117 | material 10
2118 | follows 10
2119 | facilities 10
2120 | player 10
2121 | block 10
2122 | operate 10
2123 | Fe 10
2124 | challenge 10
2125 | wave 10
2126 | dispute 10
2127 | P&G 10
2128 | Engelken 10
2129 | Hall 10
2130 | Energy 10
2131 | generate 10
2132 | aggressive 10
2133 | Mobil 10
2134 | Entertainment 10
2135 | neither 10
2136 | happen 10
2137 | Times 10
2138 | Control 10
2139 | Agency 10
2140 | sides 10
2141 | represents 10
2142 | politicians 10
2143 | optimistic 10
2144 | talking 10
2145 | policies 10
2146 | Arizona 10
2147 | gives 10
2148 | ##,###,### 10
2149 | sees 10
2150 | intelligence 10
2151 | original 10
2152 | carrier 10
2153 | boosted 10
2154 | States 10
2155 | fashion 10
2156 | prosecutors 10
2157 | doubt 10
2158 | Standard 10
2159 | language 10
2160 | stress 10
2161 | Republican 10
2162 | planes 10
2163 | Lang 10
2164 | Third-quarter 10
2165 | thrifts 10
2166 | Milan 10
2167 | Oakland 10
2168 | Whitbread 10
2169 | LTV 10
2170 | charities 10
2171 | serve 10
2172 | ship 10
2173 | warning 10
2174 | unsecured 10
2175 | tend 10
2176 | farmer 10
2177 | cooperation 10
2178 | larger 10
2179 | begun 10
2180 | chain 10
2181 | looks 10
2182 | modern 10
2183 | commitments 10
2184 | shipments 10
2185 | happened 10
2186 | safety 10
2187 | troubled 10
2188 | ultimately 10
2189 | Capitol 10
2190 | broker 10
2191 | weekend 10
2192 | From 10
2193 | Housing 10
2194 | convicted 10
2195 | expressed 10
2196 | responsibility 10
2197 | Korea 10
2198 | fallen 10
2199 | intended 10
2200 | personnel 10
2201 | FEDERAL 10
2202 | crime 10
2203 | health-care 10
2204 | Corry 10
2205 | R. 10
2206 | producer 10
2207 | Houston 10
2208 | improvement 10
2209 | surprising 10
2210 | spot 10
2211 | travel 10
2212 | Foreign 10
2213 | pricing 10
2214 | Bear 10
2215 | denied 10
2216 | saw 10
2217 | peace 10
2218 | fire 10
2219 | style 9
2220 | Hunt 9
2221 | Lee 9
2222 | tobacco 9
2223 | caught 9
2224 | Intel 9
2225 | understand 9
2226 | rooms 9
2227 | devices 9
2228 | defendants 9
2229 | games 9
2230 | ending 9
2231 | Sciences 9
2232 | bigger 9
2233 | distributed 9
2234 | Joseph 9
2235 | Coast 9
2236 | Gonzalez 9
2237 | resources 9
2238 | views 9
2239 | Development 9
2240 | gap 9
2241 | approached 9
2242 | prove 9
2243 | acquiring 9
2244 | hundreds 9
2245 | upon 9
2246 | someone 9
2247 | creating 9
2248 | interest-rate 9
2249 | asset-backed 9
2250 | Coors 9
2251 | everybody 9
2252 | specialty 9
2253 | claimed 9
2254 | Apple 9
2255 | acres 9
2256 | Partnership 9
2257 | Warsaw 9
2258 | ran 9
2259 | aircraft 9
2260 | converted 9
2261 | Ross 9
2262 | identified 9
2263 | surplus 9
2264 | Phoenix 9
2265 | ask 9
2266 | trends 9
2267 | chips 9
2268 | station 9
2269 | giving 9
2270 | tools 9
2271 | insurers 9
2272 | suspended 9
2273 | obvious 9
2274 | sudden 9
2275 | criminal 9
2276 | poison 9
2277 | triggered 9
2278 | roughly 9
2279 | Telerate 9
2280 | Associates 9
2281 | exploration 9
2282 | anticipated 9
2283 | heat 9
2284 | formerly 9
2285 | Georgia 9
2286 | turnover 9
2287 | category 9
2288 | consulting 9
2289 | fairly 9
2290 | settle 9
2291 | suffered 9
2292 | Stephen 9
2293 | vs. 9
2294 | extended 9
2295 | begins 9
2296 | commissions 9
2297 | Volume 9
2298 | reaction 9
2299 | Partners 9
2300 | looked 9
2301 | surprised 9
2302 | My 9
2303 | remarks 9
2304 | damaged 9
2305 | restaurant 9
2306 | linked 9
2307 | Source 9
2308 | condition 9
2309 | GNP 9
2310 | participants 9
2311 | forest 9
2312 | sell-off 9
2313 | achieved 9
2314 | opposition 9
2315 | quiet 9
2316 | Labor 9
2317 | resume 9
2318 | York-based 9
2319 | processing 9
2320 | Report 9
2321 | bikes 9
2322 | AB 9
2323 | described 9
2324 | Jack 9
2325 | Limited 9
2326 | representatives 9
2327 | conspiracy 9
2328 | How 9
2329 | society 9
2330 | Just 9
2331 | RATE 9
2332 | Once 9
2333 | pill 9
2334 | dividends 9
2335 | one-time 9
2336 | revenues 9
2337 | insured 9
2338 | treasurer 9
2339 | setting 9
2340 | ANC 9
2341 | carriers 9
2342 | Coke 9
2343 | Milton 9
2344 | badly 9
2345 | cable 9
2346 | assume 9
2347 | M. 9
2348 | turning 9
2349 | wonder 9
2350 | sensitive 9
2351 | Force 9
2352 | trip 9
2353 | Rated 9
2354 | Others 9
2355 | Daiwa 9
2356 | African 9
2357 | ABC 9
2358 | blacks 9
2359 | calculated 9
2360 | reflected 9
2361 | cap 9
2362 | shipping 9
2363 | trillion 9
2364 | friendly 9
2365 | thin 9
2366 | compensation 9
2367 | education 9
2368 | discussions 9
2369 | check 9
2370 | launch 9
2371 | status 9
2372 | Icahn 9
2373 | amid 9
2374 | suits 9
2375 | speculation 9
2376 | outlets 9
2377 | taxpayers 9
2378 | Sacramento 9
2379 | class 9
2380 | walls 9
2381 | p.m. 9
2382 | accepted 9
2383 | financially 9
2384 | aspects 9
2385 | Indian 9
2386 | Honecker 9
2387 | founder 9
2388 | suspension 9
2389 | weakness 9
2390 | #:## 9
2391 | manage 9
2392 | becomes 9
2393 | ordered 9
2394 | placed 9
2395 | Philadelphia 9
2396 | message 9
2397 | Jan. 9
2398 | decide 9
2399 | Massachusetts 9
2400 | closer 9
2401 | veteran 9
2402 | Or 9
2403 | Little 9
2404 | keeping 9
2405 | except 9
2406 | spirits 9
2407 | declared 9
2408 | file 9
2409 | Each 9
2410 | election 9
2411 | priority 9
2412 | Instead 9
2413 | millions 9
2414 | greater 9
2415 | rival 9
2416 | Akzo 9
2417 | monthly 9
2418 | expire 9
2419 | partnership 9
2420 | registered 9
2421 | urged 9
2422 | Finance 9
2423 | suggested 9
2424 | Gulf 9
2425 | retain 9
2426 | Cos. 9
2427 | indicate 9
2428 | Minister 9
2429 | strategic 9
2430 | N.J. 9
2431 | restored 9
2432 | investing 9
2433 | England 9
2434 | Several 9
2435 | Futures 9
2436 | Panama 9
2437 | pulled 9
2438 | KKR 9
2439 | studies 9
2440 | tape 9
2441 | meetings 9
2442 | applications 8
2443 | coup 8
2444 | playing 8
2445 | progress 8
2446 | retailer 8
2447 | prevent 8
2448 | bureau 8
2449 | join 8
2450 | powerful 8
2451 | branches 8
2452 | employee 8
2453 | buy-back 8
2454 | seeing 8
2455 | complex 8
2456 | producing 8
2457 | determined 8
2458 | hear 8
2459 | site 8
2460 | wake 8
2461 | breaking 8
2462 | developers 8
2463 | garden 8
2464 | adjustments 8
2465 | loan-loss 8
2466 | alleged 8
2467 | freight 8
2468 | Daniel 8
2469 | expectations 8
2470 | minister 8
2471 | helps 8
2472 | mainly 8
2473 | facing 8
2474 | rivals 8
2475 | viewed 8
2476 | narrow 8
2477 | aide 8
2478 | picked 8
2479 | money-market 8
2480 | suffer 8
2481 | sound 8
2482 | ceiling 8
2483 | ####-## 8
2484 | address 8
2485 | commission 8
2486 | gave 8
2487 | Nelson 8
2488 | Fujitsu 8
2489 | MCA 8
2490 | shop 8
2491 | compete 8
2492 | Dean 8
2493 | EC 8
2494 | cosmetics 8
2495 | Loan 8
2496 | forecast 8
2497 | fast-food 8
2498 | Maybe 8
2499 | ministry 8
2500 | pushing 8
2501 | strongly 8
2502 | Like 8
2503 | stretch 8
2504 | letters 8
2505 | triple-A 8
2506 | organization 8
2507 | developer 8
2508 | Solidarity 8
2509 | happens 8
2510 | attracted 8
2511 | portfolios 8
2512 | technique 8
2513 | Drug 8
2514 | Authority 8
2515 | failures 8
2516 | McCaw 8
2517 | voters 8
2518 | Colgate 8
2519 | piece 8
2520 | defensive 8
2521 | experiment 8
2522 | biotechnology 8
2523 | harder 8
2524 | silver 8
2525 | social 8
2526 | farmers 8
2527 | window 8
2528 | Germans 8
2529 | heard 8
2530 | Edward 8
2531 | scenario 8
2532 | Christopher 8
2533 | affiliate 8
2534 | renewed 8
2535 | Thatcher 8
2536 | acts 8
2537 | introduce 8
2538 | Brady 8
2539 | appeal 8
2540 | highway 8
2541 | thinks 8
2542 | Previously 8
2543 | Workers 8
2544 | resolved 8
2545 | anybody 8
2546 | wife 8
2547 | counts 8
2548 | Says 8
2549 | Webster 8
2550 | Operating 8
2551 | threatened 8
2552 | Marcos 8
2553 | plenty 8
2554 | promised 8
2555 | refused 8
2556 | acknowledged 8
2557 | ready 8
2558 | employment 8
2559 | versions 8
2560 | portion 8
2561 | consecutive 8
2562 | E. 8
2563 | sets 8
2564 | plastics 8
2565 | sheet 8
2566 | friend 8
2567 | Du 8
2568 | coverage 8
2569 | increasingly 8
2570 | cheap 8
2571 | constitutional 8
2572 | causes 8
2573 | allies 8
2574 | Stearns 8
2575 | PRIME 8
2576 | safe 8
2577 | illegal 8
2578 | Morishita 8
2579 | theater 8
2580 | exactly 8
2581 | commitment 8
2582 | reject 8
2583 | sluggish 8
2584 | learn 8
2585 | door 8
2586 | involving 8
2587 | owner 8
2588 | Brands 8
2589 | outcome 8
2590 | fit 8
2591 | Ingersoll 8
2592 | Costa 8
2593 | promotional 8
2594 | facility 8
2595 | Ronald 8
2596 | penalties 8
2597 | cycle 8
2598 | famous 8
2599 | Over 8
2600 | reluctant 8
2601 | a.m 8
2602 | squeeze 8
2603 | fine 8
2604 | successor 8
2605 | surge 8
2606 | Terms 8
2607 | Pont 8
2608 | resignation 8
2609 | reasonable 8
2610 | cautious 8
2611 | Conn. 8
2612 | aggressively 8
2613 | guaranteed 8
2614 | predict 8
2615 | draw 8
2616 | tell 8
2617 | downturn 8
2618 | Berkeley 8
2619 | Mayor 8
2620 | alliance 8
2621 | Switzerland 8
2622 | Stone 8
2623 | lawsuit 8
2624 | written 8
2625 | Star 8
2626 | eggs 8
2627 | link 8
2628 | Well 8
2629 | blue-chip 8
2630 | scale 8
2631 | Nicaragua 8
2632 | dominated 8
2633 | Who 8
2634 | mentioned 8
2635 | packaging 8
2636 | Besides 8
2637 | AG 8
2638 | recorded 8
2639 | Ohio 8
2640 | promotion 8
2641 | normal 8
2642 | Beach 8
2643 | turns 8
2644 | reflect 8
2645 | five-year 8
2646 | loyalty 8
2647 | Interstate 8
2648 | corn 8
2649 | ##-week 8
2650 | slipped 8
2651 | grown 8
2652 | couples 8
2653 | client 8
2654 | providing 8
2655 | surprise 8
2656 | primary 8
2657 | matters 8
2658 | quarters 8
2659 | false 8
2660 | Your 8
2661 | bailout 8
2662 | accused 8
2663 | minor 8
2664 | Companies 8
2665 | read 8
2666 | RJR 8
2667 | posting 8
2668 | organizations 8
2669 | intense 8
2670 | possibility 8
2671 | S.A. 8
2672 | Industrial 8
2673 | B. 8
2674 | consumption 8
2675 | consensus 8
2676 | unlike 8
2677 | Life 8
2678 | seed 8
2679 | purposes 8
2680 | temporarily 8
2681 | agent 8
2682 | science 8
2683 | County 8
2684 | unlikely 8
2685 | usual 8
2686 | Greenspan 8
2687 | delayed 8
2688 | Newport 8
2689 | angry 8
2690 | extend 8
2691 | anticipation 8
2692 | believed 8
2693 | Elsewhere 7
2694 | Chancellor 7
2695 | trades 7
2696 | seasonally 7
2697 | Connaught 7
2698 | credibility 7
2699 | vehicle 7
2700 | counted 7
2701 | Art 7
2702 | kill 7
2703 | wait 7
2704 | Gen. 7
2705 | offerings 7
2706 | practice 7
2707 | authorized 7
2708 | pushed 7
2709 | standing 7
2710 | Remic 7
2711 | elsewhere 7
2712 | N.Y. 7
2713 | counsel 7
2714 | weakening 7
2715 | annually 7
2716 | maintenance 7
2717 | restructure 7
2718 | requested 7
2719 | barely 7
2720 | Consider 7
2721 | GTE 7
2722 | foreign-exchange 7
2723 | vulnerable 7
2724 | Great 7
2725 | statistics 7
2726 | mergers 7
2727 | lackluster 7
2728 | analysis 7
2729 | sending 7
2730 | one-year 7
2731 | franchise 7
2732 | Fees 7
2733 | Stockholm 7
2734 | ultimate 7
2735 | afford 7
2736 | two-year 7
2737 | Miller 7
2738 | purchasing 7
2739 | signing 7
2740 | ton 7
2741 | FHA 7
2742 | Second 7
2743 | proceedings 7
2744 | meant 7
2745 | inventories 7
2746 | household 7
2747 | covered 7
2748 | Katz 7
2749 | goal 7
2750 | limits 7
2751 | admits 7
2752 | Courter 7
2753 | Vice 7
2754 | deaths 7
2755 | Bankers 7
2756 | editorial 7
2757 | relative 7
2758 | three-month 7
2759 | counter 7
2760 | popular 7
2761 | Parliament 7
2762 | Revco 7
2763 | cattle 7
2764 | tells 7
2765 | symptoms 7
2766 | Black 7
2767 | regular 7
2768 | impossible 7
2769 | character 7
2770 | assembly 7
2771 | notice 7
2772 | raises 7
2773 | Mitchell 7
2774 | professional 7
2775 | Prime 7
2776 | assistant 7
2777 | depositary 7
2778 | Witter 7
2779 | controlling 7
2780 | presence 7
2781 | winter 7
2782 | divisions 7
2783 | interesting 7
2784 | veto 7
2785 | Pilson 7
2786 | newspapers 7
2787 | football 7
2788 | opinion 7
2789 | streets 7
2790 | schools 7
2791 | abandoned 7
2792 | Oil 7
2793 | quick 7
2794 | authority 7
2795 | fares 7
2796 | high-tech 7
2797 | Act 7
2798 | promote 7
2799 | appeared 7
2800 | sank 7
2801 | Tokyu 7
2802 | district 7
2803 | works 7
2804 | jointly 7
2805 | license 7
2806 | contends 7
2807 | Polish 7
2808 | poverty 7
2809 | unveiled 7
2810 | invested 7
2811 | indications 7
2812 | Ortega 7
2813 | immediate 7
2814 | reductions 7
2815 | Carl 7
2816 | Messrs. 7
2817 | controversy 7
2818 | fixed 7
2819 | Dallas 7
2820 | MCI 7
2821 | represented 7
2822 | contributions 7
2823 | AIDS 7
2824 | appointed 7
2825 | Venice 7
2826 | seats 7
2827 | networks 7
2828 | Societe 7
2829 | stemming 7
2830 | Asia 7
2831 | slash 7
2832 | rarely 7
2833 | legislative 7
2834 | plastic 7
2835 | advisers 7
2836 | partial 7
2837 | places 7
2838 | supporters 7
2839 | committees 7
2840 | Singapore 7
2841 | fundamental 7
2842 | chains 7
2843 | retains 7
2844 | vary 7
2845 | prime 7
2846 | section 7
2847 | cyclical 7
2848 | pressures 7
2849 | appreciation 7
2850 | Norton 7
2851 | hardly 7
2852 | ##-day 7
2853 | argues 7
2854 | procedures 7
2855 | eager 7
2856 | projections 7
2857 | Feb. 7
2858 | unclear 7
2859 | Asian 7
2860 | peak 7
2861 | dropping 7
2862 | Stocks 7
2863 | warrant 7
2864 | savings 7
2865 | Carolina 7
2866 | participating 7
2867 | pleaded 7
2868 | words 7
2869 | cast 7
2870 | amendment 7
2871 | appropriations 7
2872 | repurchase 7
2873 | cities 7
2874 | doubled 7
2875 | argue 7
2876 | Trelleborg 7
2877 | blood 7
2878 | Israeli 7
2879 | imported 7
2880 | monitoring 7
2881 | ban 7
2882 | T. 7
2883 | communications 7
2884 | delivered 7
2885 | franchisees 7
2886 | reinsurance 7
2887 | obligation 7
2888 | parents 7
2889 | luxury 7
2890 | sorts 7
2891 | brisk 7
2892 | necessary 7
2893 | fair 7
2894 | fans 7
2895 | publishing 7
2896 | Avery 7
2897 | effectively 7
2898 | deny 7
2899 | launching 7
2900 | sustained 7
2901 | loyal 7
2902 | rallied 7
2903 | confident 7
2904 | FDA 7
2905 | returned 7
2906 | ####.# 7
2907 | Roy 7
2908 | theme 7
2909 | merchandise 7
2910 | attacks 7
2911 | allowing 7
2912 | McDonald 7
2913 | students 7
2914 | sophisticated 7
2915 | specialists 7
2916 | caution 7
2917 | easier 7
2918 | senators 7
2919 | extraordinary 7
2920 | career 7
2921 | Center 7
2922 | developments 7
2923 | crowd 7
2924 | predicts 7
2925 | districts 7
2926 | speech 7
2927 | severe 7
2928 | users 7
2929 | Director 7
2930 | coast 7
2931 | stuff 7
2932 | Dollar 7
2933 | Merkur 7
2934 | approve 7
2935 | Equipment 7
2936 | living 7
2937 | revive 7
2938 | detailed 7
2939 | entered 7
2940 | holder 7
2941 | carried 7
2942 | discovered 7
2943 | compares 7
2944 | minority 7
2945 | sugar 7
2946 | hearings 7
2947 | sued 7
2948 | revised 7
2949 | Detroit 7
2950 | Latin 7
2951 | reducing 7
2952 | Taylor 7
2953 | Volokh 7
2954 | supposed 7
2955 | Martin 7
2956 | seriously 7
2957 | excess 7
2958 | beer 7
2959 | metals 7
2960 | student 7
2961 | dealer 7
2962 | solutions 7
2963 | argued 7
2964 | killing 7
2965 | compiled 7
2966 | deposit 7
2967 | stage 7
2968 | Connecticut 7
2969 | indeed 7
2970 | modestly 7
2971 | Orange 7
2972 | lots 7
2973 | announce 7
2974 | charging 7
2975 | panic 7
2976 | edition 7
2977 | selected 7
2978 | #####.## 7
2979 | Pentagon 7
2980 | state-owned 7
2981 | lire 7
2982 | repeated 7
2983 | slowing 7
2984 | Ogilvy 7
2985 | Franklin 7
2986 | deep 7
2987 | Chase 7
2988 | inventory 7
2989 | petroleum 7
2990 | voting 7
2991 | relations 7
2992 | HealthVest 7
2993 | contest 7
2994 | administrative 7
2995 | title 7
2996 | climate 7
2997 | nervous 7
2998 | handling 7
2999 | mining 7
3000 | Bankruptcy 7
3001 | goals 7
3002 | merged 7
3003 | pollution 7
3004 | starts 7
3005 | Paul 7
3006 | Short 7
3007 | screen 7
3008 | underwriter 7
3009 | Social 7
3010 | fuel 7
3011 | pursue 7
3012 | independence 7
3013 | ###,###,### 7
3014 | cold 7
3015 | Paramount 7
3016 | beat 6
3017 | II 6
3018 | encouraged 6
3019 | Line 6
3020 | variety 6
3021 | exclusive 6
3022 | Bureau 6
3023 | depending 6
3024 | operator 6
3025 | disclosure 6
3026 | Airways 6
3027 | engines 6
3028 | Amex 6
3029 | violated 6
3030 | driving 6
3031 | pulp 6
3032 | longtime 6
3033 | margin 6
3034 | Oppenheimer 6
3035 | truth 6
3036 | transfer 6
3037 | mountain 6
3038 | flying 6
3039 | survive 6
3040 | dated 6
3041 | Bob 6
3042 | Maynard 6
3043 | permanent 6
3044 | stock-market 6
3045 | Bofors 6
3046 | Reserves 6
3047 | Hampshire 6
3048 | Merksamer 6
3049 | changing 6
3050 | Col. 6
3051 | onto 6
3052 | Gardens 6
3053 | catch 6
3054 | employed 6
3055 | climbing 6
3056 | Chicago-based 6
3057 | operators 6
3058 | stopped 6
3059 | Nomura 6
3060 | Gillett 6
3061 | inside 6
3062 | Profit 6
3063 | slid 6
3064 | ministers 6
3065 | storm 6
3066 | misleading 6
3067 | US 6
3068 | theory 6
3069 | revisions 6
3070 | financier 6
3071 | concessions 6
3072 | H. 6
3073 | enable 6
3074 | Kodak 6
3075 | charter 6
3076 | Rica 6
3077 | Toyota 6
3078 | seat 6
3079 | older 6
3080 | strategist 6
3081 | Consolidated 6
3082 | expecting 6
3083 | Healthcare 6
3084 | plays 6
3085 | resolution 6
3086 | stemmed 6
3087 | pieces 6
3088 | investigators 6
3089 | admitted 6
3090 | Lorenzo 6
3091 | collateral 6
3092 | discontinued 6
3093 | ideas 6
3094 | road 6
3095 | borrowing 6
3096 | becoming 6
3097 | scientific 6
3098 | Barney 6
3099 | Sea 6
3100 | Golden 6
3101 | discipline 6
3102 | Telephone 6
3103 | ensure 6
3104 | liquidity 6
3105 | consideration 6
3106 | mature 6
3107 | Chief 6
3108 | mark 6
3109 | nationwide 6
3110 | pharmaceutical 6
3111 | Lorin 6
3112 | causing 6
3113 | university 6
3114 | Hispanic 6
3115 | appointment 6
3116 | attended 6
3117 | knew 6
3118 | wild 6
3119 | founded 6
3120 | shape 6
3121 | shortages 6
3122 | Mass. 6
3123 | uncertain 6
3124 | Issues 6
3125 | Turkey 6
3126 | disappointed 6
3127 | branch 6
3128 | carrying 6
3129 | budgets 6
3130 | bearish 6
3131 | hire 6
3132 | corporation 6
3133 | investigating 6
3134 | casino 6
3135 | reputation 6
3136 | Estate 6
3137 | Mason 6
3138 | blow 6
3139 | Cowboys 6
3140 | concluded 6
3141 | identify 6
3142 | interbank 6
3143 | Mips 6
3144 | animals 6
3145 | connection 6
3146 | Eagle 6
3147 | audit 6
3148 | Gandhi 6
3149 | Warren 6
3150 | judgment 6
3151 | preserve 6
3152 | Per-share 6
3153 | Harry 6
3154 | seconds 6
3155 | sellers 6
3156 | hits 6
3157 | Rey 6
3158 | timing 6
3159 | struggle 6
3160 | circulation 6
3161 | jewelry 6
3162 | Guinness 6
3163 | spoke 6
3164 | copy 6
3165 | scene 6
3166 | Recently 6
3167 | covering 6
3168 | Seagram 6
3169 | Gas 6
3170 | ruled 6
3171 | classes 6
3172 | subsidiaries 6
3173 | uncertainty 6
3174 | indicates 6
3175 | colony 6
3176 | concrete 6
3177 | Technologies 6
3178 | Lufkin 6
3179 | Community 6
3180 | shipyard 6
3181 | Hitachi 6
3182 | engineered 6
3183 | art 6
3184 | Treasurys 6
3185 | losing 6
3186 | contractor 6
3187 | WPP 6
3188 | stated 6
3189 | reaches 6
3190 | Avenue 6
3191 | desk 6
3192 | Giants 6
3193 | contend 6
3194 | projected 6
3195 | buy-outs 6
3196 | GOP 6
3197 | metal 6
3198 | bench 6
3199 | Grand 6
3200 | announcing 6
3201 | professionals 6
3202 | Northeast 6
3203 | downtown 6
3204 | alternative 6
3205 | exist 6
3206 | Laff 6
3207 | bridges 6
3208 | unions 6
3209 | rebound 6
3210 | Hudson 6
3211 | topic 6
3212 | prospects 6
3213 | Is 6
3214 | ###.### 6
3215 | handful 6
3216 | coalition 6
3217 | intent 6
3218 | secondary 6
3219 | borrow 6
3220 | weaker 6
3221 | represent 6
3222 | inclined 6
3223 | Already 6
3224 | fighting 6
3225 | slump 6
3226 | denies 6
3227 | curb 6
3228 | restaurants 6
3229 | roll 6
3230 | sixth 6
3231 | subsidies 6
3232 | allegations 6
3233 | guide 6
3234 | Whittle 6
3235 | lowered 6
3236 | responded 6
3237 | fields 6
3238 | shops 6
3239 | parking 6
3240 | Lebanon 6
3241 | prior 6
3242 | borrowed 6
3243 | difficulty 6
3244 | furs 6
3245 | start-up 6
3246 | Brazil 6
3247 | inquiry 6
3248 | tougher 6
3249 | happening 6
3250 | Florio 6
3251 | Foods 6
3252 | front 6
3253 | predicting 6
3254 | performed 6
3255 | attached 6
3256 | milk 6
3257 | granted 6
3258 | Her 6
3259 | airport 6
3260 | confidence 6
3261 | reforms 6
3262 | psyllium 6
3263 | widespread 6
3264 | bridge 6
3265 | Much 6
3266 | technologies 6
3267 | Hungary 6
3268 | Michigan 6
3269 | OF 6
3270 | Roman 6
3271 | motor 6
3272 | training 6
3273 | averaged 6
3274 | worker 6
3275 | Nigel 6
3276 | succeeding 6
3277 | Atlanta 6
3278 | comparison 6
3279 | formed 6
3280 | fled 6
3281 | fourth-quarter 6
3282 | Lake 6
3283 | resistance 6
3284 | English 6
3285 | pawn 6
3286 | Ralph 6
3287 | Litigation 6
3288 | Bloomingdale 6
3289 | attack 6
3290 | golden 6
3291 | Lilly 6
3292 | cells 6
3293 | ought 6
3294 | Kemp 6
3295 | Hooker 6
3296 | flexibility 6
3297 | ambitious 6
3298 | hot 6
3299 | write 6
3300 | enter 6
3301 | teachers 6
3302 | Neither 6
3303 | victory 6
3304 | Citicorp 6
3305 | focused 6
3306 | jump 6
3307 | Donaldson 6
3308 | tender 6
3309 | NEC 6
3310 | Fifth 6
3311 | hotels 6
3312 | River 6
3313 | distribution 6
3314 | syndicate 6
3315 | behalf 6
3316 | quotations 6
3317 | sterling 6
3318 | lately 6
3319 | Nor 6
3320 | statements 6
3321 | obtain 6
3322 | Hastings 6
3323 | Sweden 6
3324 | raw 6
3325 | initially 6
3326 | Merieux 6
3327 | Walter 6
3328 | Mark 6
3329 | lies 6
3330 | Australian 6
3331 | citing 6
3332 | spots 6
3333 | disease 6
3334 | mistake 6
3335 | Executive 6
3336 | Boren 6
3337 | year-end 6
3338 | headquarters 6
3339 | intervention 6
3340 | judges 6
3341 | banker 6
3342 | machinery 6
3343 | experiments 6
3344 | vast 6
3345 | sweeping 6
3346 | traditionally 6
3347 | negotiated 6
3348 | currencies 6
3349 | ##-## 6
3350 | Robertson 6
3351 | killed 6
3352 | candidate 6
3353 | recalls 6
3354 | squeezed 6
3355 | Wells 6
3356 | Virginia 6
3357 | III 6
3358 | Scott 6
3359 | opportunities 6
3360 | Azoff 6
3361 | high-risk 6
3362 | Unisys 6
3363 | Any 6
3364 | secret 6
3365 | missed 6
3366 | club 6
3367 | brain 6
3368 | alternatives 6
3369 | pages 6
3370 | employers 6
3371 | noncallable 6
3372 | Berlin 6
3373 | expense 6
3374 | color 6
3375 | takeovers 6
3376 | apple 6
3377 | Iran-Contra 6
3378 | liquor 6
3379 | Following 6
3380 | EST 6
3381 | membership 6
3382 | Army 6
3383 | father 6
3384 | Enterprises 6
3385 | telling 6
3386 | filings 6
3387 | nature 6
3388 | Roberts 6
3389 | participate 6
3390 | Stores 6
3391 | possibly 6
3392 | offensive 6
3393 | demands 6
3394 | explain 6
3395 | preparing 6
3396 | Attorney 6
3397 | storage 6
3398 | reverse 6
3399 | arrangement 6
3400 | burden 6
3401 | satisfaction 6
3402 | Wolf 6
3403 | regulation 6
3404 | Memories 6
3405 | Olivetti 6
3406 | demonstrations 6
3407 | square 6
3408 | Amoco 6
3409 | ticket 6
3410 | favorite 6
3411 | Cathay 6
3412 | DPC 6
3413 | efficient 6
3414 | L.J. 6
3415 | prospect 6
3416 | assumption 6
3417 | contained 6
3418 | bold 6
3419 | Gov. 6
3420 | steep 6
3421 | Shevardnadze 6
3422 | saving 6
3423 | Let 6
3424 | discounts 6
3425 | stakes 6
3426 | conducted 6
3427 | structural 6
3428 | assistance 6
3429 | cool 6
3430 | halt 5
3431 | Lotus 5
3432 | serves 5
3433 | academic 5
3434 | instructions 5
3435 | 'S 5
3436 | D.T. 5
3437 | Reynolds 5
3438 | ITT 5
3439 | covers 5
3440 | repeatedly 5
3441 | broader 5
3442 | salespeople 5
3443 | movies 5
3444 | judicial 5
3445 | ongoing 5
3446 | shook 5
3447 | Peladeau 5
3448 | routes 5
3449 | tale 5
3450 | answers 5
3451 | Chugai 5
3452 | subcommittee 5
3453 | Salinas 5
3454 | thus 5
3455 | Xerox 5
3456 | existence 5
3457 | harvest 5
3458 | renamed 5
3459 | husband 5
3460 | anticipates 5
3461 | tremor 5
3462 | Samuel 5
3463 | disk 5
3464 | sessions 5
3465 | Mich. 5
3466 | plummeted 5
3467 | Fidelity 5
3468 | flood 5
3469 | settlements 5
3470 | urban 5
3471 | prompt 5
3472 | population 5
3473 | Section 5
3474 | freedom 5
3475 | favorable 5
3476 | commodities 5
3477 | glass 5
3478 | indicating 5
3479 | PAPER 5
3480 | rapidly 5
3481 | waterworks 5
3482 | tentative 5
3483 | wholesale 5
3484 | occurred 5
3485 | locations 5
3486 | LDP 5
3487 | Deutsche 5
3488 | robust 5
3489 | polled 5
3490 | treasury 5
3491 | plate 5
3492 | Bradstreet 5
3493 | officially 5
3494 | leverage 5
3495 | loved 5
3496 | secure 5
3497 | injuries 5
3498 | chamber 5
3499 | agents 5
3500 | Press 5
3501 | risky 5
3502 | barrel 5
3503 | constantly 5
3504 | Hiroshima 5
3505 | Portfolio 5
3506 | hand-held 5
3507 | Sullivan 5
3508 | subscribers 5
3509 | golf 5
3510 | perceived 5
3511 | Plan 5
3512 | multiples 5
3513 | Zurich 5
3514 | tool 5
3515 | Provigo 5
3516 | argument 5
3517 | Bridge 5
3518 | essential 5
3519 | CFCs 5
3520 | bolstered 5
3521 | sit 5
3522 | bulk 5
3523 | conclusion 5
3524 | Rock 5
3525 | papers 5
3526 | Thompson 5
3527 | leads 5
3528 | Microsystems 5
3529 | stages 5
3530 | egg 5
3531 | difficulties 5
3532 | Money 5
3533 | advised 5
3534 | leaves 5
3535 | mess 5
3536 | planners 5
3537 | tower 5
3538 | newsletter 5
3539 | Kravis 5
3540 | Products 5
3541 | acted 5
3542 | supporting 5
3543 | naturally 5
3544 | resulted 5
3545 | emerging 5
3546 | Bork 5
3547 | cotton 5
3548 | freeway 5
3549 | Delmed 5
3550 | reserve 5
3551 | video 5
3552 | Hills 5
3553 | male 5
3554 | park 5
3555 | forget 5
3556 | heads 5
3557 | UNESCO 5
3558 | Otherwise 5
3559 | lists 5
3560 | Budget 5
3561 | insist 5
3562 | DAX 5
3563 | Major 5
3564 | buyer 5
3565 | critics 5
3566 | Dataproducts 5
3567 | rice 5
3568 | massive 5
3569 | broadly 5
3570 | Real 5
3571 | reviews 5
3572 | depressed 5
3573 | dump 5
3574 | bankruptcy-law 5
3575 | visited 5
3576 | crack 5
3577 | weapon 5
3578 | glasnost 5
3579 | confusion 5
3580 | carries 5
3581 | activists 5
3582 | Similarly 5
3583 | receives 5
3584 | Packwood 5
3585 | Legal 5
3586 | Tenn. 5
3587 | giants 5
3588 | league 5
3589 | measurements 5
3590 | Organization 5
3591 | friends 5
3592 | deductible 5
3593 | Metromedia 5
3594 | obtained 5
3595 | presented 5
3596 | proposing 5
3597 | exciting 5
3598 | representing 5
3599 | vowed 5
3600 | airlines 5
3601 | stories 5
3602 | affiliates 5
3603 | comments 5
3604 | strengthen 5
3605 | pesticide 5
3606 | steam 5
3607 | visitors 5
3608 | WCRS 5
3609 | complain 5
3610 | witness 5
3611 | Proceeds 5
3612 | Manufacturers 5
3613 | helping 5
3614 | stronger 5
3615 | reporter 5
3616 | agricultural 5
3617 | competing 5
3618 | doctor 5
3619 | NATO 5
3620 | deserve 5
3621 | pact 5
3622 | border 5
3623 | Sansui 5
3624 | Kenneth 5
3625 | experienced 5
3626 | surely 5
3627 | Pittsburgh 5
3628 | Kellogg 5
3629 | Taiwan 5
3630 | ranging 5
3631 | High-grade 5
3632 | fleet 5
3633 | arm 5
3634 | unemployment 5
3635 | posts 5
3636 | votes 5
3637 | concede 5
3638 | publications 5
3639 | Stoll 5
3640 | Rather 5
3641 | consequences 5
3642 | Grumman 5
3643 | marketer 5
3644 | reacted 5
3645 | legislature 5
3646 | packages 5
3647 | round 5
3648 | Bartlett 5
3649 | D.C. 5
3650 | aside 5
3651 | credits 5
3652 | mention 5
3653 | Cable 5
3654 | pessimistic 5
3655 | Seita 5
3656 | anyway 5
3657 | officers 5
3658 | permitted 5
3659 | nations 5
3660 | Economics 5
3661 | Jose 5
3662 | solely 5
3663 | Resources 5
3664 | physician 5
3665 | era 5
3666 | Coca-Cola 5
3667 | Democrat 5
3668 | publish 5
3669 | petrochemical 5
3670 | Executives 5
3671 | faced 5
3672 | extension 5
3673 | Phelan 5
3674 | Pemex 5
3675 | flights 5
3676 | Saks 5
3677 | Dan 5
3678 | Equity 5
3679 | aim 5
3680 | Norman 5
3681 | tanks 5
3682 | single-A-# 5
3683 | Federated 5
3684 | mount 5
3685 | grand 5
3686 | lifted 5
3687 | noticed 5
3688 | enhance 5
3689 | tackle 5
3690 | divided 5
3691 | Harris 5
3692 | Bonds 5
3693 | hinted 5
3694 | seize 5
3695 | nights 5
3696 | attorneys 5
3697 | Douglas 5
3698 | Macy 5
3699 | rely 5
3700 | exceed 5
3701 | deregulation 5
3702 | raider 5
3703 | handle 5
3704 | questioning 5
3705 | NASA 5
3706 | operational 5
3707 | considerable 5
3708 | shelf 5
3709 | Quebecor 5
3710 | tremendous 5
3711 | circulating 5
3712 | Dozen 5
3713 | Finally 5
3714 | turmoil 5
3715 | overhead 5
3716 | Lesko 5
3717 | eye 5
3718 | Class 5
3719 | forever 5
3720 | surgery 5
3721 | Bristol-Myers 5
3722 | unexpected 5
3723 | ##%-owned 5
3724 | promises 5
3725 | cards 5
3726 | Deukmejian 5
3727 | wisdom 5
3728 | durable 5
3729 | solution 5
3730 | stem 5
3731 | explaining 5
3732 | schedule 5
3733 | southern 5
3734 | financed 5
3735 | dangerous 5
3736 | taxable 5
3737 | COMMERCIAL 5
3738 | depends 5
3739 | Antar 5
3740 | categories 5
3741 | Henry 5
3742 | slowed 5
3743 | possibilities 5
3744 | learned 5
3745 | unable 5
3746 | TVA 5
3747 | Commonwealth 5
3748 | FBI 5
3749 | expert 5
3750 | bleak 5
3751 | weapons 5
3752 | disappointing 5
3753 | Dun 5
3754 | ###-point 5
3755 | bugs 5
3756 | wear 5
3757 | Contras 5
3758 | Goodson 5
3759 | happy 5
3760 | warned 5
3761 | waters 5
3762 | opponents 5
3763 | matching 5
3764 | market-makers 5
3765 | Sanford 5
3766 | Seidman 5
3767 | discounting 5
3768 | indicators 5
3769 | #-for-# 5
3770 | quotes 5
3771 | steady 5
3772 | alleges 5
3773 | Long 5
3774 | monitor 5
3775 | Bally 5
3776 | slight 5
3777 | determine 5
3778 | Louis 5
3779 | Harvard 5
3780 | readers 5
3781 | abortion-rights 5
3782 | retained 5
3783 | Rally 5
3784 | taste 5
3785 | buys 5
3786 | soaring 5
3787 | presidential 5
3788 | moderate 5
3789 | addressed 5
3790 | urge 5
3791 | son 5
3792 | cigarettes 5
3793 | daughters 5
3794 | approaches 5
3795 | encourage 5
3796 | succeeded 5
3797 | expanding 5
3798 | lunch 5
3799 | boards 5
3800 | motion 5
3801 | Sometimes 5
3802 | robot 5
3803 | promotions 5
3804 | apart 5
3805 | Southwest 5
3806 | Italian 5
3807 | stepped 5
3808 | shut 5
3809 | Abrams 5
3810 | neighborhoods 5
3811 | investigate 5
3812 | Pittston 5
3813 | Back 5
3814 | Never 5
3815 | apiece 5
3816 | attitude 5
3817 | antitrust 5
3818 | Semel 5
3819 | kinds 5
3820 | rolled 5
3821 | Total 5
3822 | interviewed 5
3823 | warm 5
3824 | Chivas 5
3825 | Straszheim 5
3826 | recover 5
3827 | ignore 5
3828 | fill 5
3829 | located 5
3830 | recovered 5
3831 | bases 5
3832 | Cleveland 5
3833 | viable 5
3834 | factory 5
3835 | recapitalization 5
3836 | danger 5
3837 | picking 5
3838 | learning 5
3839 | Negotiable 5
3840 | advertisers 5
3841 | deadline 5
3842 | prosecution 5
3843 | pattern 5
3844 | talked 5
3845 | cycles 5
3846 | Marshall 5
3847 | rare 5
3848 | smoke 5
3849 | concept 5
3850 | commissioner 5
3851 | None 5
3852 | blame 5
3853 | handled 5
3854 | Mideast 5
3855 | studying 5
3856 | Do 5
3857 | decades 5
3858 | Parker 5
3859 | Tele-Communications 5
3860 | Trinova 5
3861 | Overall 5
3862 | persuade 5
3863 | sanctions 5
3864 | location 5
3865 | exclude 5
3866 | free-market 5
3867 | emerged 5
3868 | bacteria 5
3869 | Year 5
3870 | spill 5
3871 | reporting 5
3872 | Code 5
3873 | Block 5
3874 | dealing 5
3875 | Telegraph 5
3876 | sweetened 5
3877 | specifically 5
3878 | type 5
3879 | Daily 5
3880 | illustrates 5
3881 | slower 5
3882 | Holding 5
3883 | HBO 5
3884 | discussion 5
3885 | speaker 5
3886 | delays 5
3887 | Part 5
3888 | near-term 5
3889 | cargo 5
3890 | Petrie 5
3891 | feeling 5
3892 | electric 5
3893 | conduct 5
3894 | postponed 5
3895 | recommendation 5
3896 | impeachment 5
3897 | definitive 5
3898 | BellSouth 5
3899 | semiconductor 5
3900 | hoped 5
3901 | pick 5
3902 | utilities 5
3903 | indictment 5
3904 | diluted 5
3905 | Tandy 5
3906 | solve 5
3907 | Amsterdam 5
3908 | DISCOUNT 5
3909 | percent 5
3910 | mill 5
3911 | maintaining 5
3912 | otherwise 5
3913 | participation 5
3914 | oppose 5
3915 | Interest 5
3916 | Templeton 5
3917 | poll 5
3918 | proved 5
3919 | attempting 5
3920 | marketers 5
3921 | declares 5
3922 | load 5
3923 | humans 5
3924 | Kennedy 5
3925 | Greenwich 5
3926 | Cohen 5
3927 | Gordon 5
3928 | facts 5
3929 | draws 5
3930 | publication 5
3931 | Republic 5
3932 | stars 5
3933 | licenses 5
3934 | imposed 5
3935 | wins 5
3936 | Zealand 5
3937 | Exchequer 5
3938 | driven 5
3939 | extensive 5
3940 | Quantum 5
3941 | wearing 5
3942 | Seoul 5
3943 | Farm 5
3944 | FCC 5
3945 | optical 5
3946 | resulting 5
3947 | Superfund 5
3948 | published 5
3949 | Craig 5
3950 | Maxwell 5
3951 | ###-a-share 5
3952 | replacing 5
3953 | slip 5
3954 | equities 5
3955 | Lockheed 5
3956 | jolt 5
3957 | struggling 5
3958 | forms 5
3959 | lag 5
3960 | defeat 5
3961 | telecommunications 5
3962 | imagine 5
3963 | charity 5
3964 | insists 5
3965 | guilders 5
3966 | FTC 5
3967 | upward 5
3968 | anywhere 5
3969 | Statistics 5
3970 | Motorola 5
3971 | painful 5
3972 | compromise 5
3973 | businessmen 5
3974 | lend 5
3975 | grants 5
3976 | rebels 5
3977 | Kasparov 5
3978 | adopt 5
3979 | surrounding 5
3980 | F-## 5
3981 | donations 5
3982 | complained 5
3983 | cope 5
3984 | cleanup 5
3985 | Saudi 5
3986 | Arthur 5
3987 | Government 5
3988 | prompted 5
3989 | completely 5
3990 | Skase 5
3991 | would-be 5
3992 | northern 5
3993 | focusing 5
3994 | hundred 5
3995 | resort 5
3996 | greatest 5
3997 | nationally 5
3998 | informed 5
3999 | Christian 5
4000 | eliminated 5
4001 | bet 5
4002 | adjustment 5
4003 | confrontation 5
4004 | radiation 5
4005 | spirit 5
4006 | Lawmakers 5
4007 | violin 5
4008 | government-owned 5
4009 | programming 5
4010 | opposed 5
4011 | maturities 5
4012 | Chiron 5
4013 | components 5
4014 | stuck 5
4015 | genuine 5
4016 | sounds 5
4017 | council 5
4018 | Henderson 5
4019 | affluent 5
4020 | Bobby 5
4021 | diversified 5
4022 | assuming 5
4023 | differences 5
4024 | privately 5
4025 | Swedish 5
4026 | relationships 5
4027 | observers 5
4028 | capped 5
4029 | forcing 5
4030 | conceded 5
4031 | appetite 5
4032 | bloc 5
4033 | diabetics 5
4034 | Without 5
4035 | shore 5
4036 | Mills 5
4037 | generation 5
4038 | bank-backed 5
4039 | edge 5
4040 | attracting 5
4041 | Advertising 5
4042 | associates 5
4043 | studio 5
4044 | factories 5
4045 | Jackson 4
4046 | impressive 4
4047 | Panamanian 4
4048 | Peasants 4
4049 | dubbed 4
4050 | behave 4
4051 | row 4
4052 | Leader 4
4053 | wind 4
4054 | encouraging 4
4055 | roads 4
4056 | criticized 4
4057 | architecture 4
4058 | herself 4
4059 | contracted 4
4060 | indexing 4
4061 | Klein 4
4062 | default 4
4063 | slowly 4
4064 | alike 4
4065 | Results 4
4066 | advisory 4
4067 | readily 4
4068 | powers 4
4069 | apples 4
4070 | island 4
4071 | popularity 4
4072 | insurer 4
4073 | Wade 4
4074 | deter 4
4075 | benefited 4
4076 | surfaced 4
4077 | Colorado 4
4078 | efficiency 4
4079 | busy 4
4080 | latter 4
4081 | revision 4
4082 | Sources 4
4083 | object 4
4084 | Adobe 4
4085 | fines 4
4086 | investment-grade 4
4087 | bitter 4
4088 | favored 4
4089 | Analytical 4
4090 | welcome 4
4091 | redemption 4
4092 | quietly 4
4093 | Church 4
4094 | A$ 4
4095 | bidders 4
4096 | La 4
4097 | bank-holding 4
4098 | Decker 4
4099 | grain 4
4100 | Meredith 4
4101 | campaigns 4
4102 | dream 4
4103 | Showtime 4
4104 | dates 4
4105 | conferees 4
4106 | Deloitte 4
4107 | lenders 4
4108 | comprehensive 4
4109 | taught 4
4110 | Dentsu 4
4111 | interstate 4
4112 | redeem 4
4113 | pickup 4
4114 | Nevertheless 4
4115 | Criminal 4
4116 | sum 4
4117 | Marina 4
4118 | non-U.S. 4
4119 | Third 4
4120 | reversed 4
4121 | indication 4
4122 | suspect 4
4123 | nominal 4
4124 | SmithKline 4
4125 | Asked 4
4126 | rural 4
4127 | equaling 4
4128 | Seats 4
4129 | attempted 4
4130 | fits 4
4131 | arrest 4
4132 | reckless 4
4133 | Given 4
4134 | Noxell 4
4135 | replaced 4
4136 | Dutch 4
4137 | green 4
4138 | bourbon 4
4139 | Unilever 4
4140 | cable-TV 4
4141 | consists 4
4142 | provider 4
4143 | breeding 4
4144 | write-down 4
4145 | Orleans 4
4146 | enterprises 4
4147 | Jim 4
4148 | Arabs 4
4149 | tariffs 4
4150 | Schwarz 4
4151 | lowest 4
4152 | grave 4
4153 | shrinking 4
4154 | routinely 4
4155 | Puerto 4
4156 | recycling 4
4157 | Apogee 4
4158 | MGM/UA 4
4159 | maybe 4
4160 | Procter 4
4161 | Nothing 4
4162 | Income 4
4163 | MORTGAGE 4
4164 | shortly 4
4165 | procedural 4
4166 | declaring 4
4167 | Cellular 4
4168 | aliens 4
4169 | actively 4
4170 | army 4
4171 | trails 4
4172 | Tower 4
4173 | Young 4
4174 | graphics 4
4175 | ethnic 4
4176 | journal 4
4177 | weight 4
4178 | Tennessee 4
4179 | courts 4
4180 | Gillette 4
4181 | Channel 4
4182 | ####-#### 4
4183 | brother 4
4184 | Does 4
4185 | Facilities 4
4186 | chromosome 4
4187 | detectors 4
4188 | installations 4
4189 | page 4
4190 | productivity 4
4191 | engineers 4
4192 | pro-choice 4
4193 | gasoline 4
4194 | operated 4
4195 | owes 4
4196 | printing 4
4197 | intends 4
4198 | drivers 4
4199 | boom 4
4200 | long-distance 4
4201 | Denver 4
4202 | yeast 4
4203 | highs 4
4204 | one-half 4
4205 | child-care 4
4206 | calculations 4
4207 | regarded 4
4208 | Hammack 4
4209 | Microsoft 4
4210 | cubic 4
4211 | * 4
4212 | Academy 4
4213 | magnetic 4
4214 | Manufacturing 4
4215 | tragedy 4
4216 | calendar 4
4217 | FUNDS 4
4218 | Agriculture 4
4219 | cultural 4
4220 | Gelbart 4
4221 | myself 4
4222 | annualized 4
4223 | nose 4
4224 | Inco 4
4225 | removing 4
4226 | tiny 4
4227 | Rowe 4
4228 | restrict 4
4229 | scope 4
4230 | circle 4
4231 | NSC 4
4232 | Allianz 4
4233 | proposes 4
4234 | practically 4
4235 | realized 4
4236 | paralyzed 4
4237 | desire 4
4238 | replacement 4
4239 | forward 4
4240 | Texans 4
4241 | Squibb 4
4242 | aerospace 4
4243 | FOREIGN 4
4244 | Soo 4
4245 | Trading 4
4246 | user 4
4247 | mainframe 4
4248 | reporters 4
4249 | depository 4
4250 | pass 4
4251 | connected 4
4252 | surface 4
4253 | Malcolm 4
4254 | ally 4
4255 | Giuliani 4
4256 | bureaucratic 4
4257 | McDuffie 4
4258 | proceed 4
4259 | Square 4
4260 | marked 4
4261 | Skinner 4
4262 | Chevrolet 4
4263 | Foundation 4
4264 | Grace 4
4265 | guess 4
4266 | House-Senate 4
4267 | Refcorp 4
4268 | Value 4
4269 | contribute 4
4270 | wealth 4
4271 | survivors 4
4272 | tables 4
4273 | Kansas 4
4274 | choose 4
4275 | expanded 4
4276 | Paper 4
4277 | Femina 4
4278 | establishment 4
4279 | radical 4
4280 | visible 4
4281 | Agnos 4
4282 | stick 4
4283 | Maine 4
4284 | concentrate 4
4285 | Imports 4
4286 | Commercial 4
4287 | lay 4
4288 | underwriting 4
4289 | Egg 4
4290 | channels 4
4291 | laid 4
4292 | consisting 4
4293 | apartment 4
4294 | respondents 4
4295 | organizing 4
4296 | stockholders 4
4297 | underlying 4
4298 | competitor 4
4299 | fellow 4
4300 | explanation 4
4301 | table 4
4302 | falls 4
4303 | winning 4
4304 | PLO 4
4305 | measured 4
4306 | Patel 4
4307 | employer 4
4308 | departures 4
4309 | race 4
4310 | wider 4
4311 | Perspective 4
4312 | destruction 4
4313 | Simon 4
4314 | Nicholas 4
4315 | Arabia 4
4316 | Socialist 4
4317 | finish 4
4318 | formally 4
4319 | Pharmaceutical 4
4320 | broke 4
4321 | Contra 4
4322 | spoken 4
4323 | premiums 4
4324 | necessarily 4
4325 | nearby 4
4326 | collection 4
4327 | displays 4
4328 | hidden 4
4329 | Aetna 4
4330 | Independent 4
4331 | switch 4
4332 | ideal 4
4333 | likes 4
4334 | Popular 4
4335 | defend 4
4336 | unprecedented 4
4337 | holidays 4
4338 | somewhere 4
4339 | voice 4
4340 | columns 4
4341 | Californians 4
4342 | winner 4
4343 | segments 4
4344 | electrical 4
4345 | Carol 4
4346 | combat 4
4347 | copies 4
4348 | Minneapolis 4
4349 | extent 4
4350 | formula 4
4351 | Funds 4
4352 | fastest-growing 4
4353 | Metal 4
4354 | Kid 4
4355 | underground 4
4356 | disruption 4
4357 | lie 4
4358 | non-violent 4
4359 | Dodge 4
4360 | colon 4
4361 | Compaq 4
4362 | Dreyfus 4
4363 | FASB 4
4364 | capitalist 4
4365 | afraid 4
4366 | Sunday 4
4367 | Kyle 4
4368 | Turner 4
4369 | Laurel 4
4370 | demonstrated 4
4371 | captured 4
4372 | temblor 4
4373 | PCs 4
4374 | remarkable 4
4375 | Imperial 4
4376 | tremors 4
4377 | two-thirds 4
4378 | Better 4
4379 | commuters 4
4380 | visit 4
4381 | sentenced 4
4382 | League 4
4383 | Travel 4
4384 | Commodity 4
4385 | tube 4
4386 | integrated 4
4387 | apartments 4
4388 | convert 4
4389 | towns 4
4390 | Norwood 4
4391 | S.C 4
4392 | chose 4
4393 | aftermath 4
4394 | terrorism 4
4395 | institution 4
4396 | saved 4
4397 | married 4
4398 | approximately 4
4399 | RATES 4
4400 | Allen 4
4401 | unsettled 4
4402 | profile 4
4403 | Richmond 4
4404 | budgetary 4
4405 | Mather 4
4406 | economies 4
4407 | publishers 4
4408 | distributor 4
4409 | Koch 4
4410 | Timothy 4
4411 | neighboring 4
4412 | Banks 4
4413 | recognize 4
4414 | Acquisition 4
4415 | Information 4
4416 | teams 4
4417 | Associated 4
4418 | naczelnik 4
4419 | trigger 4
4420 | periods 4
4421 | Fluor 4
4422 | BANKERS 4
4423 | transport 4
4424 | absorb 4
4425 | Later 4
4426 | Lone 4
4427 | Diego 4
4428 | televised 4
4429 | regime 4
4430 | Urban 4
4431 | stood 4
4432 | Anheuser 4
4433 | Andreas 4
4434 | engineer 4
4435 | disrupted 4
4436 | convincing 4
4437 | restructured 4
4438 | Working 4
4439 | trim 4
4440 | pleased 4
4441 | Nixon 4
4442 | verge 4
4443 | reactions 4
4444 | Hoffman 4
4445 | picture 4
4446 | streamlining 4
4447 | equivalent 4
4448 | cross 4
4449 | maturing 4
4450 | G. 4
4451 | aspect 4
4452 | Alaska 4
4453 | Fargo 4
4454 | advising 4
4455 | crops 4
4456 | screens 4
4457 | mortgage-backed 4
4458 | Yamaichi 4
4459 | waste 4
4460 | fifth 4
4461 | structures 4
4462 | Calif 4
4463 | waited 4
4464 | airports 4
4465 | Spiegel 4
4466 | democratic 4
4467 | actor 4
4468 | rape 4
4469 | Trinity 4
4470 | Out 4
4471 | observed 4
4472 | Goldsmith 4
4473 | reunification 4
4474 | proxy 4
4475 | seeds 4
4476 | Spanish 4
4477 | Integrated 4
4478 | thriving 4
4479 | pays 4
4480 | concedes 4
4481 | Brussels 4
4482 | listing 4
4483 | hybrid 4
4484 | constituents 4
4485 | insiders 4
4486 | Finland 4
4487 | undertaking 4
4488 | fails 4
4489 | democracy 4
4490 | liquid 4
4491 | Esselte 4
4492 | Vietnamese 4
4493 | Pennzoil 4
4494 | appropriate 4
4495 | consolidation 4
4496 | wars 4
4497 | Building 4
4498 | breakfast 4
4499 | alive 4
4500 | averages 4
4501 | considerably 4
4502 | corner 4
4503 | interpreted 4
4504 | burst 4
4505 | Pioneer 4
4506 | Rockwell 4
4507 | entities 4
4508 | True 4
4509 | Delicious 4
4510 | contrary 4
4511 | Ciba-Geigy 4
4512 | Midwest 4
4513 | payroll 4
4514 | weaknesses 4
4515 | proteins 4
4516 | worries 4
4517 | desirable 4
4518 | Senator 4
4519 | images 4
4520 | Large 4
4521 | HOME 4
4522 | Estimated 4
4523 | Prudential 4
4524 | Russian 4
4525 | secured 4
4526 | Tire 4
4527 | Waertsilae 4
4528 | sequester 4
4529 | hitting 4
4530 | Trump 4
4531 | Netherlands 4
4532 | computerized 4
4533 | speak 4
4534 | Middle 4
4535 | dismissed 4
4536 | punitive 4
4537 | tighten 4
4538 | Gen-Probe 4
4539 | consolidating 4
4540 | proper 4
4541 | tax-free 4
4542 | Conasupo 4
4543 | banned 4
4544 | reset 4
4545 | hosts 4
4546 | residential 4
4547 | assassination 4
4548 | speculators 4
4549 | substitute 4
4550 | mid-October 4
4551 | deciding 4
4552 | refugees 4
4553 | holiday 4
4554 | unusually 4
4555 | Strip 4
4556 | advice 4
4557 | AMR 4
4558 | proving 4
4559 | #-## 4
4560 | Investments 4
4561 | artists 4
4562 | author 4
4563 | empire 4
4564 | tenants 4
4565 | Field 4
4566 | champion 4
4567 | exchanged 4
4568 | walk 4
4569 | Appropriations 4
4570 | Farmers 4
4571 | warnings 4
4572 | signals 4
4573 | retired 4
4574 | Sam 4
4575 | body 4
4576 | disagree 4
4577 | fresh 4
4578 | mandatory 4
4579 | vital 4
4580 | overly 4
4581 | Reports 4
4582 | indefinitely 4
4583 | entirely 4
4584 | seven-day 4
4585 | blue 4
4586 | Va 4
4587 | moderately 4
4588 | elaborate 4
4589 | features 4
4590 | Central 4
4591 | weather 4
4592 | Ariz. 4
4593 | trials 4
4594 | undertaken 4
4595 | swap 4
4596 | funding 4
4597 | three-year 4
4598 | challenging 4
4599 | intact 4
4600 | choices 4
4601 | memory 4
4602 | Network 4
4603 | injunction 4
4604 | rescue 4
4605 | kids 4
4606 | apartheid 4
4607 | absence 4
4608 | cleared 4
4609 | Roderick 4
4610 | communities 4
4611 | church 4
4612 | normally 4
4613 | hiring 4
4614 | Iverson 4
4615 | proportion 4
4616 | Guaranteed 4
4617 | cheaper 4
4618 | exceeds 4
4619 | outsiders 4
4620 | specify 4
4621 | Illuminating 4
4622 | ousted 4
4623 | tall 4
4624 | evaluation 4
4625 | numerous 4
4626 | card 4
4627 | removal 4
4628 | appellate 4
4629 | Rights 4
4630 | speculate 4
4631 | opens 4
4632 | potatoes 4
4633 | Area 4
4634 | refusal 4
4635 | pointed 4
4636 | Alliance 4
4637 | well-known 4
4638 | congressman 4
4639 | Municipals 4
4640 | Marathon 4
4641 | O'Kicki 4
4642 | narrower 4
4643 | shock 4
4644 | HDTV 4
4645 | fly 4
4646 | Production 4
4647 | supplier 4
4648 | Sohmer 4
4649 | propose 4
4650 | courtroom 4
4651 | salary 4
4652 | degree 4
4653 | massacre 4
4654 | Bass 4
4655 | discussed 4
4656 | planner 4
4657 | implications 4
4658 | Berry 4
4659 | Four 4
4660 | Louisiana 4
4661 | Tiger 4
4662 | Nippon 4
4663 | LOAN 4
4664 | pressured 4
4665 | Toshiba 4
4666 | liabilities 4
4667 | Nicaraguan 4
4668 | anti-drug 4
4669 | specified 4
4670 | brings 4
4671 | sectors 4
4672 | allows 4
4673 | unspecified 4
4674 | song 4
4675 | EDT 4
4676 | BART 4
4677 | maximum 4
4678 | remove 4
4679 | feed 4
4680 | institute 4
4681 | resorts 4
4682 | confirm 4
4683 | targeted 4
4684 | subsequent 4
4685 | array 4
4686 | trees 4
4687 | releases 4
4688 | dark 4
4689 | survived 4
4690 | Critics 4
4691 | Intermediate 4
4692 | somewhat 4
4693 | write-downs 4
4694 | Viacom 4
4695 | Rothschilds 4
4696 | Filipino 4
4697 | combine 4
4698 | Yields 4
4699 | Goodyear 4
4700 | performing 4
4701 | suddenly 4
4702 | Steven 4
4703 | sand 4
4704 | writer 4
4705 | flows 4
4706 | Greece 4
4707 | engaged 4
4708 | Enfield 4
4709 | fixed-rate 4
4710 | contended 4
4711 | passive 4
4712 | backs 4
4713 | applicants 4
4714 | conversion 4
4715 | Europeans 4
4716 | attractive 4
4717 | Composite 4
4718 | challenges 4
4719 | native 4
4720 | isolated 4
4721 | merely 4
4722 | movements 4
4723 | billings 4
4724 | stance 4
4725 | Mexican 4
4726 | recognition 4
4727 | Comair 4
4728 | Wathen 4
4729 | prison 4
4730 | lucky 4
4731 | deeply 4
4732 | flag 4
4733 | resolve 4
4734 | NEW 4
4735 | trustee 4
4736 | Resolution 4
4737 | youth 4
4738 | Gamble 4
4739 | libel 4
4740 | Mikhail 4
4741 | penalty 4
4742 | Donald 4
4743 | unanimously 4
4744 | mines 4
4745 | Electronics 4
4746 | GASB 4
4747 | letting 4
4748 | enforcement 4
4749 | notion 4
4750 | columnist 4
4751 | pegged 4
4752 | treat 4
4753 | Small 4
4754 | fledgling 4
4755 | S&L 4
4756 | pitch 4
4757 | treaty 4
4758 | fail 4
4759 | moral 4
4760 | confusing 4
4761 | Serial 4
4762 | prevail 4
4763 | Scorpio 4
4764 | Law 4
4765 | Illinois 4
4766 | chosen 4
4767 | Sloan 4
4768 | reportedly 4
4769 | credit-card 4
4770 | responsibilities 4
4771 | snapped 4
4772 | Sidhpur 4
4773 | impose 4
4774 | ##-member 4
4775 | Shamir 4
4776 | landing 4
4777 | whenever 4
4778 | ACCEPTANCES 4
4779 | tendered 4
4780 | pencils 4
4781 | passengers 4
4782 | Westmoreland 4
4783 | battered 4
4784 | Prices 4
4785 | P. 4
4786 | tea 4
4787 | Achenbaum 4
4788 | Genentech 4
4789 | #,###.## 4
4790 | Friday-the-##th 4
4791 | insisted 4
4792 | periodic 4
4793 | comparisons 4
4794 | relying 4
4795 | oversold 4
4796 | Venezuela 4
4797 | Protection 4
4798 | farm 4
4799 | stones 4
4800 | Dresdner 4
4801 | tactics 4
4802 | Pa. 4
4803 | shortage 4
4804 | defective 4
4805 | Right 4
4806 | files 4
4807 | spur 4
4808 | lift 4
4809 | ride 4
4810 | edged 4
4811 | favors 4
4812 | lease 4
4813 | wealthy 4
4814 | blocking 4
4815 | submit 4
4816 | fundamentals 4
4817 | bullish 4
4818 | Geneva 4
4819 | maintains 4
4820 | legislators 4
4821 | bonus 4
4822 | expenditures 4
4823 | Nobel 4
4824 | hurricane 4
4825 | Notes 4
4826 | potentially 4
4827 | none 4
4828 | Royal 4
4829 | Lipper 4
4830 | inspector 4
4831 | entrepreneur 4
4832 | High 4
4833 | promoting 4
4834 | shippers 4
4835 | Poughkeepsie 4
4836 | Prince 4
4837 | pricings 4
4838 | valuable 4
4839 | march 4
4840 | featured 4
4841 | reality 4
4842 | missing 4
4843 | lobbying 4
4844 | struck 4
4845 | four-year 4
4846 | exact 4
4847 | desks 4
4848 | designing 4
4849 | Della 4
4850 | understanding 4
4851 | Korean 4
4852 | suggests 4
4853 | collect 4
4854 | rebounded 4
4855 | protected 4
4856 | suspicious 4
4857 | Benson 4
4858 | easing 4
4859 | patient 4
4860 | perception 4
4861 | Members 4
4862 | gotten 4
4863 | Heavy 4
4864 | greenmail 4
4865 | crimes 4
4866 | objectives 4
4867 | undermined 4
4868 | responding 4
4869 | Corr 4
4870 | specializes 4
4871 | handed 4
4872 | feelings 4
4873 | Conner 4
4874 | midnight 4
4875 | drew 4
4876 | symbol 4
4877 | Roe 4
4878 | recognized 4
4879 | Cineplex 4
4880 | conform 4
4881 | explains 4
4882 | Asset 4
4883 | findings 4
4884 | purpose 4
4885 | functions 4
4886 | Gold 4
4887 | tasks 4
4888 | sentences 4
4889 | hard-disk 4
4890 | Cuba 4
4891 | adverse 4
4892 | strengthening 4
4893 | explained 4
4894 | correct 4
4895 | conflict 4
4896 | stolen 4
4897 | expires 4
4898 | bushel 4
4899 | emotional 4
4900 | tissue 4
4901 | spare 4
4902 | Graphics 4
4903 | thousand 4
4904 | retire 4
4905 | Honda 4
4906 | incurred 4
4907 | doubts 4
4908 | disobedience 4
4909 | respectively 4
4910 | persistent 4
4911 | prolonged 4
4912 | frequently 4
4913 | resisted 4
4914 | ##-share 4
4915 | Obviously 3
4916 | expertise 3
4917 | Minerals 3
4918 | Few 3
4919 | insure 3
4920 | forge 3
4921 | summary 3
4922 | new-issue 3
4923 | grip 3
4924 | Kohl 3
4925 | watchers 3
4926 | BT 3
4927 | bondholders 3
4928 | Staff 3
4929 | altogether 3
4930 | opinions 3
4931 | implies 3
4932 | restore 3
4933 | Casablanca 3
4934 | dawning 3
4935 | Barre 3
4936 | counterterrorism 3
4937 | rent 3
4938 | winners 3
4939 | Alvin 3
4940 | amended 3
4941 | striking 3
4942 | dunes 3
4943 | watching 3
4944 | award 3
4945 | Patterson 3
4946 | IBC/Donoghue 3
4947 | bidder 3
4948 | psychological 3
4949 | Traxler 3
4950 | alliances 3
4951 | personally 3
4952 | talent 3
4953 | Aside 3
4954 | affecting 3
4955 | Quayle 3
4956 | Peck 3
4957 | representation 3
4958 | enacted 3
4959 | Hilton 3
4960 | dispatched 3
4961 | Internal 3
4962 | shy 3
4963 | von 3
4964 | exchange-rate 3
4965 | furor 3
4966 | classic 3
4967 | spurred 3
4968 | compound 3
4969 | twists 3
4970 | semiconductors 3
4971 | na 3
4972 | ties 3
4973 | fast-growing 3
4974 | bargains 3
4975 | RICO 3
4976 | initiative 3
4977 | describes 3
4978 | proud 3
4979 | Nynex 3
4980 | hide 3
4981 | Wireless 3
4982 | predecessor 3
4983 | Uniroyal 3
4984 | ratios 3
4985 | baby 3
4986 | precious 3
4987 | I. 3
4988 | radar 3
4989 | medium-sized 3
4990 | toxin 3
4991 | stress-related 3
4992 | Pinkerton 3
4993 | farther 3
4994 | Fiat 3
4995 | pregnant 3
4996 | Las 3
4997 | Commodities 3
4998 | high-quality 3
4999 | worsen 3
5000 | airing 3
5001 | eligible 3
5002 | Merck 3
5003 | territory 3
5004 | Winter 3
5005 | Arnold 3
5006 | Cranston 3
5007 | worsening 3
5008 | supply-side 3
5009 | line-item 3
5010 | Within 3
5011 | supports 3
5012 | urging 3
5013 | Foley 3
5014 | desktop 3
5015 | monopoly 3
5016 | Beghin-Say 3
5017 | freely 3
5018 | McKinnon 3
5019 | wherever 3
5020 | strongest 3
5021 | NKF 3
5022 | slipping 3
5023 | loose 3
5024 | GRE 3
5025 | parliamentary 3
5026 | Traviata 3
5027 | Cuban 3
5028 | Bulgaria 3
5029 | minicomputers 3
5030 | finances 3
5031 | program-trading 3
5032 | Agents 3
5033 | hurdle 3
5034 | sponsored 3
5035 | nonetheless 3
5036 | state-controlled 3
5037 | workstations 3
5038 | dizzying 3
5039 | Abramson 3
5040 | Federation 3
5041 | prefer 3
5042 | Glazer 3
5043 | drafting 3
5044 | Steelworkers 3
5045 | industrials 3
5046 | Anthony 3
5047 | READY 3
5048 | wildly 3
5049 | Ad 3
5050 | Priam 3
5051 | census 3
5052 | expenditure 3
5053 | birds 3
5054 | dinner 3
5055 | TRUST 3
5056 | professor 3
5057 | stalled 3
5058 | worthy 3
5059 | passage 3
5060 | Late 3
5061 | Gutfreund 3
5062 | predictions 3
5063 | Howard 3
5064 | setback 3
5065 | greenhouse 3
5066 | sea 3
5067 | Fresenius 3
5068 | horse 3
5069 | Vermont 3
5070 | doors 3
5071 | Specialized 3
5072 | gridlock 3
5073 | punishment 3
5074 | chunk 3
5075 | CERTIFICATES 3
5076 | dress 3
5077 | MONEY 3
5078 | sworn 3
5079 | illusion 3
5080 | span 3
5081 | puttable 3
5082 | Upham 3
5083 | somehow 3
5084 | Jon 3
5085 | Rico 3
5086 | knowledge 3
5087 | Brazilian 3
5088 | gloomy 3
5089 | mix 3
5090 | strips 3
5091 | Salinger 3
5092 | Kennametal 3
5093 | rigid 3
5094 | remedies 3
5095 | lounge 3
5096 | skepticism 3
5097 | eagerness 3
5098 | Depending 3
5099 | OEX 3
5100 | Colo. 3
5101 | limiting 3
5102 | comfortable 3
5103 | Fox 3
5104 | Stockholders 3
5105 | insulin 3
5106 | alarm 3
5107 | Saab 3
5108 | enthusiasm 3
5109 | Moon 3
5110 | Fame 3
5111 | exempt 3
5112 | sitting 3
5113 | Danny 3
5114 | mortality 3
5115 | U 3
5116 | restraints 3
5117 | regarding 3
5118 | commentary 3
5119 | Takeover 3
5120 | Crescott 3
5121 | agreeing 3
5122 | replied 3
5123 | Occidental 3
5124 | racing 3
5125 | restated 3
5126 | autumn 3
5127 | minimal 3
5128 | apparent 3
5129 | awaited 3
5130 | spacecraft 3
5131 | adjusting 3
5132 | amazing 3
5133 | occasions 3
5134 | Eurocom 3
5135 | viewers 3
5136 | shelter 3
5137 | broadcast 3
5138 | Hunter 3
5139 | superior 3
5140 | discussing 3
5141 | funded 3
5142 | Personal 3
5143 | organized 3
5144 | characters 3
5145 | cameras 3
5146 | INC. 3
5147 | context 3
5148 | issuing 3
5149 | cartridge 3
5150 | weighed 3
5151 | windows 3
5152 | Prof. 3
5153 | Peterson 3
5154 | Sonata 3
5155 | Mercantile 3
5156 | Winnebago 3
5157 | tracked 3
5158 | defined 3
5159 | unfair 3
5160 | rig 3
5161 | Fair 3
5162 | upscale 3
5163 | ##### 3
5164 | Yield 3
5165 | federally 3
5166 | arguing 3
5167 | Earnings 3
5168 | bear 3
5169 | Larsen 3
5170 | Yale 3
5171 | channel 3
5172 | application 3
5173 | parks 3
5174 | eases 3
5175 | complicated 3
5176 | Edsel 3
5177 | interim 3
5178 | retreat 3
5179 | painted 3
5180 | entrepreneurs 3
5181 | donated 3
5182 | Every 3
5183 | bothered 3
5184 | tends 3
5185 | Wildlife 3
5186 | Garratt 3
5187 | fare 3
5188 | ball 3
5189 | Yankee 3
5190 | moments 3
5191 | catastrophe 3
5192 | savings-and-loan 3
5193 | Murphy 3
5194 | violations 3
5195 | task 3
5196 | stabilize 3
5197 | schedules 3
5198 | drain 3
5199 | canceled 3
5200 | maintained 3
5201 | drought 3
5202 | ordinary 3
5203 | Earth 3
5204 | Program 3
5205 | looms 3
5206 | brewing 3
5207 | allegedly 3
5208 | V. 3
5209 | Developers 3
5210 | considers 3
5211 | Postal 3
5212 | sat 3
5213 | Commodore 3
5214 | DEPOSIT 3
5215 | Palm 3
5216 | MiniScribe 3
5217 | Minnesota 3
5218 | Mountain 3
5219 | Relations 3
5220 | constructed 3
5221 | Robinson 3
5222 | quit 3
5223 | Consumers 3
5224 | crush 3
5225 | Containers 3
5226 | contribution 3
5227 | newer 3
5228 | inflation-adjusted 3
5229 | initiated 3
5230 | revived 3
5231 | engage 3
5232 | Abbie 3
5233 | obligations 3
5234 | clearing 3
5235 | repair 3
5236 | pouring 3
5237 | Economic 3
5238 | Far 3
5239 | ink 3
5240 | Shultz 3
5241 | franchisers 3
5242 | Van 3
5243 | sporadic 3
5244 | ###-### 3
5245 | Valdez 3
5246 | bolster 3
5247 | single-family 3
5248 | length 3
5249 | computing 3
5250 | Runkel 3
5251 | Beverly 3
5252 | NFL 3
5253 | backing 3
5254 | Money-fund 3
5255 | agrees 3
5256 | awful 3
5257 | Rosen 3
5258 | Interferon 3
5259 | Bakes 3
5260 | gracefully 3
5261 | appearance 3
5262 | swell 3
5263 | generous 3
5264 | legally 3
5265 | soybeans 3
5266 | Cup 3
5267 | accrued 3
5268 | owed 3
5269 | pork 3
5270 | Marine 3
5271 | narrowing 3
5272 | Container 3
5273 | watches 3
5274 | Realty 3
5275 | lived 3
5276 | beating 3
5277 | truly 3
5278 | Consequently 3
5279 | El 3
5280 | computerizing 3
5281 | soldiers 3
5282 | consortium 3
5283 | importance 3
5284 | Get 3
5285 | Quotron 3
5286 | requests 3
5287 | Efforts 3
5288 | freight-transport 3
5289 | Ken 3
5290 | writing 3
5291 | swing 3
5292 | Colombia 3
5293 | cracks 3
5294 | Kaiser 3
5295 | horizon 3
5296 | Ashurst 3
5297 | two-day 3
5298 | Ever 3
5299 | Petco 3
5300 | transferred 3
5301 | featuring 3
5302 | anthrax 3
5303 | District 3
5304 | inspectors 3
5305 | swiftly 3
5306 | signal 3
5307 | advertised 3
5308 | rises 3
5309 | remember 3
5310 | Car 3
5311 | industrywide 3
5312 | white-collar 3
5313 | conviction 3
5314 | assault 3
5315 | celebration 3
5316 | Cabrera 3
5317 | Anne 3
5318 | evade 3
5319 | thereafter 3
5320 | Levine 3
5321 | permission 3
5322 | Alexander 3
5323 | north 3
5324 | Vietnam 3
5325 | War 3
5326 | manages 3
5327 | objections 3
5328 | exception 3
5329 | shuttle 3
5330 | conspiring 3
5331 | regained 3
5332 | manufactured 3
5333 | asking 3
5334 | Philips 3
5335 | advertisements 3
5336 | disputes 3
5337 | narrowed 3
5338 | turnaround 3
5339 | refining 3
5340 | royalty 3
5341 | Richter 3
5342 | RMI 3
5343 | tank 3
5344 | fake 3
5345 | anxiety 3
5346 | variations 3
5347 | cholesterol 3
5348 | Blumenfeld 3
5349 | implemented 3
5350 | Deposit 3
5351 | earliest 3
5352 | Lesk 3
5353 | fancy 3
5354 | method 3
5355 | Halloween 3
5356 | harmful 3
5357 | incest 3
5358 | Giant 3
5359 | Christies 3
5360 | rubles 3
5361 | Titanium 3
5362 | automobile 3
5363 | Atlantic 3
5364 | passenger 3
5365 | Wright 3
5366 | theft 3
5367 | airplanes 3
5368 | ranks 3
5369 | plaintiffs 3
5370 | anymore 3
5371 | Public 3
5372 | eliminate 3
5373 | LYNCH 3
5374 | Commerciale 3
5375 | Old 3
5376 | shot 3
5377 | apparel 3
5378 | banning 3
5379 | loath 3
5380 | Coda 3
5381 | steadily 3
5382 | fragile 3
5383 | computer-guided 3
5384 | Policy 3
5385 | stayed 3
5386 | reaching 3
5387 | splitting 3
5388 | repression 3
5389 | Roger 3
5390 | mother 3
5391 | Pfizer 3
5392 | Shioya 3
5393 | mentality 3
5394 | darling 3
5395 | crucial 3
5396 | labels 3
5397 | ** 3
5398 | destroyed 3
5399 | grim 3
5400 | herbicide 3
5401 | suitable 3
5402 | distance 3
5403 | rank 3
5404 | one-third 3
5405 | foreigners 3
5406 | excellent 3
5407 | burned 3
5408 | Scenario 3
5409 | Bogart 3
5410 | slashed 3
5411 | Prudential-Bache 3
5412 | drinks 3
5413 | AND 3
5414 | depress 3
5415 | somebody 3
5416 | rows 3
5417 | stabilized 3
5418 | steering 3
5419 | Par 3
5420 | prevailed 3
5421 | adoption 3
5422 | understood 3
5423 | identifying 3
5424 | pursuit 3
5425 | bureaucrats 3
5426 | deck 3
5427 | missiles 3
5428 | Reform 3
5429 | deduction 3
5430 | Krasnoyarsk 3
5431 | reforming 3
5432 | hole 3
5433 | Creative 3
5434 | YOU 3
5435 | valid 3
5436 | longer-term 3
5437 | Along 3
5438 | perchlorate 3
5439 | disposable 3
5440 | contempt 3
5441 | appearances 3
5442 | locally 3
5443 | trough 3
5444 | diversification 3
5445 | IMA 3
5446 | overreacting 3
5447 | assess 3
5448 | enthusiastic 3
5449 | hedge 3
5450 | mainframes 3
5451 | disappear 3
5452 | Either 3
5453 | silly 3
5454 | CACI 3
5455 | comeback 3
5456 | hats 3
5457 | Sons 3
5458 | recalled 3
5459 | evening 3
5460 | unrelated 3
5461 | bags 3
5462 | themes 3
5463 | fascinating 3
5464 | ignoring 3
5465 | reads 3
5466 | echo 3
5467 | cumulative 3
5468 | concentrating 3
5469 | asbestos 3
5470 | answering 3
5471 | pursued 3
5472 | fusion 3
5473 | arbitrator 3
5474 | genetically 3
5475 | indicted 3
5476 | aims 3
5477 | rumor 3
5478 | utility 3
5479 | milestones 3
5480 | confirmation 3
5481 | Werner 3
5482 | mayor 3
5483 | beneficial 3
5484 | Marxist 3
5485 | Luzon 3
5486 | Sihanouk 3
5487 | Turnpike 3
5488 | basically 3
5489 | Contel 3
5490 | comptroller 3
5491 | Lionel 3
5492 | reopen 3
5493 | Barr 3
5494 | stems 3
5495 | Whittaker 3
5496 | successes 3
5497 | realizes 3
5498 | skin 3
5499 | hampered 3
5500 | Fujisawa 3
5501 | arrangements 3
5502 | contemplating 3
5503 | Realist 3
5504 | Vanguard 3
5505 | conversations 3
5506 | Corolla 3
5507 | Call 3
5508 | lows 3
5509 | tickets 3
5510 | announcements 3
5511 | thick 3
5512 | replies 3
5513 | Acadia 3
5514 | N.V. 3
5515 | meaning 3
5516 | Burger 3
5517 | Bunker 3
5518 | timetable 3
5519 | Toubro 3
5520 | Tucson 3
5521 | N. 3
5522 | Beecham 3
5523 | disappointment 3
5524 | digs 3
5525 | Forest 3
5526 | item 3
5527 | B 3
5528 | therapy 3
5529 | hyperinflation 3
5530 | refuse 3
5531 | necessity 3
5532 | plain 3
5533 | semiannual 3
5534 | Capel 3
5535 | Leslie 3
5536 | Arafat 3
5537 | establishing 3
5538 | refinancing 3
5539 | coins 3
5540 | ASSETS 3
5541 | beef 3
5542 | laptop 3
5543 | f 3
5544 | Sharon 3
5545 | Automatic 3
5546 | dismantled 3
5547 | originally 3
5548 | adversary 3
5549 | Jerry 3
5550 | Construction 3
5551 | legacy 3
5552 | End 3
5553 | attach 3
5554 | settling 3
5555 | liable 3
5556 | batteries 3
5557 | intentions 3
5558 | ideological 3
5559 | decrease 3
5560 | directory 3
5561 | Warburg 3
5562 | pressing 3
5563 | Jacobson 3
5564 | die 3
5565 | stopping 3
5566 | Underwriters 3
5567 | four-game 3
5568 | Kentucky 3
5569 | Instruments 3
5570 | serving 3
5571 | Bang 3
5572 | cuckoo 3
5573 | dozens 3
5574 | advancing 3
5575 | exporters 3
5576 | Infiniti 3
5577 | lined 3
5578 | Edison 3
5579 | wondering 3
5580 | Eastman 3
5581 | counterpart 3
5582 | p## 3
5583 | wages 3
5584 | initiatives 3
5585 | younger 3
5586 | administrator 3
5587 | turbulence 3
5588 | Clearly 3
5589 | senator 3
5590 | Wolfgang 3
5591 | discretion 3
5592 | Guzman 3
5593 | implied 3
5594 | acknowledges 3
5595 | coaches 3
5596 | Oak 3
5597 | ordering 3
5598 | Keating 3
5599 | Senators 3
5600 | counties 3
5601 | high-definition 3
5602 | tax-exempt 3
5603 | testimony 3
5604 | petrochemicals 3
5605 | centennial 3
5606 | ends 3
5607 | Shareholders 3
5608 | Rican 3
5609 | permit 3
5610 | AZT 3
5611 | Montedison 3
5612 | accomplished 3
5613 | marine 3
5614 | petition 3
5615 | Montgomery 3
5616 | shoppers 3
5617 | hired 3
5618 | Garth 3
5619 | route 3
5620 | Davis 3
5621 | Milwaukee 3
5622 | anti-abortion 3
5623 | devise 3
5624 | unfortunate 3
5625 | circles 3
5626 | strikes 3
5627 | drink 3
5628 | processes 3
5629 | ducks 3
5630 | therefore 3
5631 | employs 3
5632 | Armstrong 3
5633 | Science 3
5634 | tentatively 3
5635 | marginal 3
5636 | Skeptics 3
5637 | restarted 3
5638 | Va. 3
5639 | jacket 3
5640 | Paxus 3
5641 | double-decker 3
5642 | breaks 3
5643 | refund 3
5644 | inches 3
5645 | disasters 3
5646 | manufacture 3
5647 | capable 3
5648 | child 3
5649 | disappeared 3
5650 | wish 3
5651 | Sunnyvale 3
5652 | nests 3
5653 | Arab 3
5654 | Nobody 3
5655 | Cypress 3
5656 | Bates 3
5657 | refinance 3
5658 | Intelligence 3
5659 | roadways 3
5660 | censored 3
5661 | voiced 3
5662 | aides 3
5663 | designs 3
5664 | Kangyo 3
5665 | bellwether 3
5666 | illustrate 3
5667 | ESPN 3
5668 | wire 3
5669 | attempts 3
5670 | seven-year 3
5671 | stymied 3
5672 | grant 3
5673 | obligated 3
5674 | Kerr-McGee 3
5675 | NIH 3
5676 | Whitten 3
5677 | investigator 3
5678 | pervasive 3
5679 | feared 3
5680 | mid-#### 3
5681 | Venture 3
5682 | collaboration 3
5683 | discretionary 3
5684 | rash 3
5685 | nursing 3
5686 | sagging 3
5687 | Rohm 3
5688 | Smurfit 3
5689 | pictures 3
5690 | publicity 3
5691 | liquidated 3
5692 | prominent 3
5693 | crew 3
5694 | assertions 3
5695 | Courtaulds 3
5696 | float 3
5697 | prosecutions 3
5698 | reviewing 3
5699 | downgraded 3
5700 | Alex 3
5701 | Short-term 3
5702 | script 3
5703 | installed 3
5704 | Andersson 3
5705 | rocked 3
5706 | hypoglycemia 3
5707 | immune 3
5708 | fueled 3
5709 | violation 3
5710 | small-business 3
5711 | Dalton 3
5712 | riding 3
5713 | examination 3
5714 | host 3
5715 | withdraw 3
5716 | View 3
5717 | clips 3
5718 | Hahn 3
5719 | Mutual 3
5720 | upset 3
5721 | gaining 3
5722 | questionable 3
5723 | Politics 3
5724 | clothing 3
5725 | second-largest 3
5726 | mains 3
5727 | bonuses 3
5728 | reading 3
5729 | swaps 3
5730 | requirement 3
5731 | Sinyard 3
5732 | village 3
5733 | sufficient 3
5734 | powerhouse 3
5735 | lucrative 3
5736 | compare 3
5737 | entry 3
5738 | Demand 3
5739 | Fault 3
5740 | refunding 3
5741 | Rose 3
5742 | climb 3
5743 | Natural 3
5744 | boosting 3
5745 | Spielvogel 3
5746 | Island 3
5747 | Wisconsin 3
5748 | odd 3
5749 | posters 3
5750 | relieve 3
5751 | miss 3
5752 | connecting 3
5753 | Operations 3
5754 | resigning 3
5755 | singer 3
5756 | diversifying 3
5757 | Schwartz 3
5758 | mushroomed 3
5759 | #-# 3
5760 | K. 3
5761 | packaged 3
5762 | fend 3
5763 | laying 3
5764 | MERRILL 3
5765 | forbidding 3
5766 | Plastics 3
5767 | flavor 3
5768 | equity-purchase 3
5769 | Read 3
5770 | scandals 3
5771 | revolution 3
5772 | quantities 3
5773 | guy 3
5774 | omnibus 3
5775 | exceeded 3
5776 | pack 3
5777 | Bergsma 3
5778 | owning 3
5779 | targets 3
5780 | targeting 3
5781 | H&R 3
5782 | Z. 3
5783 | suburban 3
5784 | speculated 3
5785 | pump 3
5786 | Vinson 3
5787 | failing 3
5788 | fixed-income 3
5789 | Ridley 3
5790 | Zipper 3
5791 | projection 3
5792 | rand 3
5793 | column 3
5794 | Scientists 3
5795 | humanitarian 3
5796 | Gainen 3
5797 | Allied 3
5798 | ###-## 3
5799 | deeper 3
5800 | adjustable 3
5801 | Palestinian 3
5802 | visits 3
5803 | streak 3
5804 | EPA 3
5805 | legendary 3
5806 | female 3
5807 | Tharp 3
5808 | wrapped 3
5809 | yellow 3
5810 | leased 3
5811 | Teddy 3
5812 | Kleinwort 3
5813 | severance 3
5814 | beleaguered 3
5815 | applies 3
5816 | Southwestern 3
5817 | erupt 3
5818 | Signal 3
5819 | Fuji 3
5820 | Deltec 3
5821 | Posted 3
5822 | polyethylene 3
5823 | arguments 3
5824 | formal 3
5825 | Mary 3
5826 | mild 3
5827 | recipients 3
5828 | Bennett 3
5829 | patience 3
5830 | Toronto-based 3
5831 | low-cost 3
5832 | tension 3
5833 | protest 3
5834 | winding 3
5835 | Radio 3
5836 | middle 3
5837 | terminated 3
5838 | basket 3
5839 | tight 3
5840 | forming 3
5841 | hurting 3
5842 | aligned 3
5843 | Immunex 3
5844 | Atlas 3
5845 | publicized 3
5846 | platform 3
5847 | Common 3
5848 | Crowntuft 3
5849 | Exterior 3
5850 | ###-year-old 3
5851 | Indians 3
5852 | USA 3
5853 | racketeering 3
5854 | Benjamin 3
5855 | affairs 3
5856 | Blackstone 3
5857 | percentages 3
5858 | Greenberg 3
5859 | railroad 3
5860 | #/#-year 3
5861 | energetic 3
5862 | warns 3
5863 | depreciation 3
5864 | Kraft 3
5865 | universities 3
5866 | K 3
5867 | types 3
5868 | Majority 3
5869 | diverted 3
5870 | salmonella 3
5871 | photo 3
5872 | relating 3
5873 | bar 3
5874 | Whatever 3
5875 | Machine 3
5876 | Eddie 3
5877 | attendants 3
5878 | Schulte 3
5879 | amounted 3
5880 | chances 3
5881 | drops 3
5882 | bounced 3
5883 | buoyed 3
5884 | federation 3
5885 | prestige 3
5886 | discounted 3
5887 | interior 3
5888 | Book 3
5889 | opted 3
5890 | excluding 3
5891 | bike 3
5892 | Rome 3
5893 | recordings 3
5894 | infected 3
5895 | deterioration 3
5896 | S.C. 3
5897 | generated 3
5898 | gripes 3
5899 | committed 3
5900 | sustain 3
5901 | overwhelming 3
5902 | hospital 3
5903 | corrupt 3
5904 | helpful 3
5905 | shed 3
5906 | Libor 3
5907 | clouds 3
5908 | Pennsylvania 3
5909 | Worldwide 3
5910 | ill 3
5911 | spiral 3
5912 | flexible 3
5913 | Barbara 3
5914 | switched 3
5915 | Finnish 3
5916 | Rockefeller 3
5917 | cancel 3
5918 | Mass 3
5919 | Constitution 3
5920 | dismissal 3
5921 | cease-fire 3
5922 | grounds 3
5923 | bankruptcy-court 3
5924 | governments 3
5925 | reduces 3
5926 | enabling 3
5927 | opposing 3
5928 | Armonk 3
5929 | Cathcart 3
5930 | eased 3
5931 | sweet 3
5932 | correction 3
5933 | privatization 3
5934 | coats 3
5935 | boxes 3
5936 | Global 3
5937 | unrealistic 3
5938 | basketball 3
5939 | totally 3
5940 | ounces 3
5941 | precise 3
5942 | indirect 3
5943 | construct 3
5944 | mystery 3
5945 | profit-taking 3
5946 | concealing 3
5947 | Managers 3
5948 | ozone 3
5949 | Manila 3
5950 | accepting 3
5951 | Briggs 3
5952 | adjusters 3
5953 | floating 3
5954 | redesigned 3
5955 | Travelers 3
5956 | animal 3
5957 | shots 3
5958 | undoubtedly 3
5959 | municipals 3
5960 | Palo 3
5961 | shocked 3
5962 | defects 3
5963 | express 3
5964 | postpone 3
5965 | suspend 3
5966 | useful 3
5967 | closed-end 3
5968 | parallel 3
5969 | injured 3
5970 | specialist 3
5971 | Insurers 3
5972 | Long-term 3
5973 | engine 3
5974 | mountain-bike 3
5975 | Sotheby 3
5976 | Carter 3
5977 | Nearly 3
5978 | VAX 3
5979 | Fournier 3
5980 | Nikko 3
5981 | path 3
5982 | whiskey 3
5983 | surviving 3
5984 | referring 3
5985 | Turks 3
5986 | mart 3
5987 | doctors 3
5988 | Roebuck 3
5989 | impression 3
5990 | Poles 3
5991 | niche 3
5992 | resignations 3
5993 | Exports 3
5994 | world-class 3
5995 | hoping 3
5996 | buried 3
5997 | School 3
5998 | ACCOUNT 3
5999 | Transport 3
6000 | clerk 3
6001 | drilling 3
6002 | intervene 3
6003 | ABM 3
6004 | Through 3
6005 | PC 3
6006 | Crane 3
6007 | Renault 3
6008 | typical 3
6009 | cure 3
6010 | Dillon 3
6011 | uncommon 3
6012 | Jerell 3
6013 | journalists 3
6014 | sweep 3
6015 | advises 3
6016 | Scottish 3
6017 | extending 3
6018 | dealings 3
6019 | rich 3
6020 | Are 3
6021 | double-A 3
6022 | Tim 3
6023 | bankruptcies 3
6024 | Dayton 3
6025 | Affairs 3
6026 | bureaucracy 3
6027 | friendship 3
6028 | des 3
6029 | devastation 3
6030 | Sherwin-Williams 3
6031 | Portugal 3
6032 | builds 3
6033 | qualify 3
6034 | inch 3
6035 | lagging 3
6036 | protesters 3
6037 | urges 3
6038 | rocks 3
6039 | rental 3
6040 | Coopers 3
6041 | rapid 3
6042 | instrument 3
6043 | economics 3
6044 | granting 3
6045 | successfully 3
6046 | stomach 3
6047 | Pfeiffer 3
6048 | debacle 3
6049 | disorder 3
6050 | recall 3
6051 | Early 3
6052 | Almost 3
6053 | Simmons 3
6054 | processors 3
6055 | Lawyers 3
6056 | la 3
6057 | companion 3
6058 | Haas 3
6059 | mimic 3
6060 | hefty 3
6061 | finishing 3
6062 | Jenrette 3
6063 | merchandising 3
6064 | dramatic 3
6065 | pharmaceuticals 3
6066 | Dynamics 3
6067 | explore 3
6068 | Student 3
6069 | borrowers 3
6070 | troubling 3
6071 | weighted 3
6072 | superpower 3
6073 | mandate 3
6074 | Advisers 3
6075 | expired 3
6076 | Polly 3
6077 | skeptical 3
6078 | slumped 3
6079 | principles 3
6080 | Bloc 3
6081 | drove 3
6082 | offshore 3
6083 | prospective 3
6084 | treating 3
6085 | regions 3
6086 | scaring 3
6087 | Hanover 3
6088 | contributing 3
6089 | radio 3
6090 | Medicine 3
6091 | BNL 3
6092 | mall 3
6093 | fasteners 3
6094 | displayed 3
6095 | Hoechst 3
6096 | reformer 3
6097 | Nationwide 3
6098 | risen 3
6099 | watch 3
6100 | occasionally 3
6101 | Helmut 3
6102 | Anglia 3
6103 | tractor 3
6104 | Martinez 3
6105 | display 3
6106 | a.m. 3
6107 | DEA 3
6108 | Pact 3
6109 | retreated 3
6110 | Nuovo 3
6111 | convince 3
6112 | Everything 3
6113 | Brokers 3
6114 | challenged 3
6115 | liquidation 3
6116 | London-based 3
6117 | unloading 3
6118 | leaped 3
6119 | stretching 3
6120 | Batibot 3
6121 | salesmen 3
6122 | guns 3
6123 | hospitals 3
6124 | separately 3
6125 | suggestions 3
6126 | delivering 3
6127 | smart 3
6128 | Kurzweil 3
6129 | steer 3
6130 | complaint 3
6131 | workstation 3
6132 | stimulate 3
6133 | processed 3
6134 | jumping 3
6135 | Ship 3
6136 | Ashland 3
6137 | drag 3
6138 | music 3
6139 | denominations 3
6140 | Emhart 3
6141 | earthquakes 3
6142 | Success 3
6143 | Welch 3
6144 | ourselves 3
6145 | incumbent 3
6146 | Interpublic 3
6147 | Moran 3
6148 | Lyonnais 3
6149 | Records 3
6150 | nerves 3
6151 | medicine 3
6152 | downgrade 3
6153 | earning 3
6154 | yes 3
6155 | middle-class 3
6156 | Eidsmo 3
6157 | Nguyen 3
6158 | distributors 3
6159 | consent 3
6160 | Nugget 3
6161 | jazz 3
6162 | widen 3
6163 | rushed 3
6164 | conceal 3
6165 | perfume 3
6166 | Grenfell 3
6167 | sport 3
6168 | secrets 3
6169 | Ogden 3
6170 | beauty 3
6171 | Sverdlovsk 3
6172 | plead 3
6173 | stream 3
6174 | fabled 3
6175 | Mancuso 3
6176 | sweat 3
6177 | Laband 3
6178 | blocked 3
6179 | tracking 3
6180 | Assistant 3
6181 | surprisingly 3
6182 | solicitation 3
6183 | forgotten 3
6184 | ethics 3
6185 | outcry 3
6186 | turbines 3
6187 | sole 3
6188 | outnumbered 3
6189 | mega-issues 3
6190 | Dell 3
6191 | soft-drink 3
6192 | preference 3
6193 | Pension 3
6194 | Roth 3
6195 | Unless 3
6196 | Give 3
6197 | films 3
6198 | jeopardize 3
6199 | sleek 3
6200 | explosions 3
6201 | QVC 3
6202 | appealed 3
6203 | Census 3
6204 | presumed 3
6205 | pointing 3
6206 | rye 3
6207 | resistant 3
6208 | Northrop 3
6209 | debut 3
6210 | associate 3
6211 | Met 3
6212 | haunts 3
6213 | CORP 3
6214 | Silicon 3
6215 | Dennis 3
6216 | constitution 3
6217 | Pencil 3
6218 | Machinists 3
6219 | Alto 3
6220 | Finnair 3
6221 | unprofitable 3
6222 | devoted 3
6223 | CORP. 3
6224 | trimmed 3
6225 | Magazine 3
6226 | spinoff 3
6227 | excessive 3
6228 | booming 3
6229 | seller 3
6230 | conservation 3
6231 | Leaseway 3
6232 | ice 3
6233 | phased 3
6234 | intentionally 3
6235 | Garcia 3
6236 | yielding 3
6237 | monopolies 3
6238 | Edwards 3
6239 | Gramm-Rudman 3
6240 | Fatah 3
6241 | openly 3
6242 | automated 3
6243 | sex 3
6244 | arms 3
6245 | perspective 3
6246 | Pharmaceuticals 3
6247 | upgraded 3
6248 | Deaver 3
6249 | Delta 3
6250 | year-before 3
6251 | regulate 3
6252 | suggestion 3
6253 | bias 3
6254 | Where 3
6255 | skidded 3
6256 | subjected 3
6257 | spree 3
6258 | aggregates 3
6259 | reformers 3
6260 | disruptions 3
6261 | Chandler 3
6262 | withdrawal 3
6263 | Mich 3
6264 | Terry 3
6265 | slate 3
6266 | Lexington 3
6267 | disgruntled 3
6268 | novel 3
6269 | permits 3
6270 | smallest 3
6271 | S 3
6272 | surveys 3
6273 | newsprint 3
6274 | financial-services 3
6275 | poorer 3
6276 | wary 3
6277 | passing 3
6278 | catalog 3
6279 | tightly 3
6280 | guard 3
6281 | Pan 3
6282 | ships 3
6283 | encouragement 3
6284 | repairs 3
6285 | murdered 3
6286 | Conn 3
6287 | eat 3
6288 | extreme 3
6289 | Arias 3
6290 | capitalize 3
6291 | Candlestick 3
6292 | involves 3
6293 | boomers 3
6294 | Pa 3
6295 | Hart 3
6296 | Mame 3
6297 | CALL 3
6298 | tags 3
6299 | aftershocks 3
6300 | declaration 3
6301 | earn 3
6302 | strain 3
6303 | gon 3
6304 | death-penalty 3
6305 | Unlike 3
6306 | Vegas 3
6307 | catastrophes 3
6308 | rebates 3
6309 | Revson 3
6310 | PepsiCo 3
6311 | escape 3
6312 | spectators 3
6313 | Baltimore 3
6314 | skill 3
6315 | recommends 3
6316 | mystique 3
6317 | hemorrhaging 3
6318 | routine 3
6319 | marketed 3
6320 | coatings 3
6321 | HyperCard 3
6322 | Cash 2
6323 | snags 2
6324 | wed 2
6325 | advancers 2
6326 | fruit 2
6327 | Rymer 2
6328 | pulling 2
6329 | Refuge 2
6330 | ushered 2
6331 | initiate 2
6332 | listings 2
6333 | precedent 2
6334 | knight 2
6335 | Equally 2
6336 | Cadillac 2
6337 | tone 2
6338 | freedoms 2
6339 | index-linked 2
6340 | mismanagement 2
6341 | Combustion 2
6342 | dumping 2
6343 | everyday 2
6344 | UV-B 2
6345 | breakers 2
6346 | De 2
6347 | Resorts 2
6348 | execute 2
6349 | dictate 2
6350 | Prebon 2
6351 | Marlin 2
6352 | cellular 2
6353 | Assessment 2
6354 | Needs 2
6355 | faked 2
6356 | praising 2
6357 | ##-hour 2
6358 | separated 2
6359 | maximizing 2
6360 | adjust 2
6361 | nonfinancial 2
6362 | Kamm 2
6363 | commercials 2
6364 | shake 2
6365 | assumes 2
6366 | Ho 2
6367 | Education 2
6368 | Dali 2
6369 | notify 2
6370 | indicator 2
6371 | minerals 2
6372 | regard 2
6373 | reveal 2
6374 | wastewater 2
6375 | prevails 2
6376 | registration 2
6377 | Sierra 2
6378 | unprepared 2
6379 | receiving 2
6380 | Helmsley 2
6381 | delegation 2
6382 | Redford 2
6383 | erosion 2
6384 | Penn 2
6385 | Colombian 2
6386 | C.D.s 2
6387 | inquiries 2
6388 | Lewis 2
6389 | trusted 2
6390 | authorization 2
6391 | Chiefs 2
6392 | vegetables 2
6393 | pie 2
6394 | Delaware 2
6395 | Trees 2
6396 | Murdoch 2
6397 | counting 2
6398 | divert 2
6399 | top-performing 2
6400 | girding 2
6401 | shoulder 2
6402 | eroding 2
6403 | Taxation 2
6404 | famed 2
6405 | restricted 2
6406 | blast 2
6407 | lungs 2
6408 | struggles 2
6409 | hobbled 2
6410 | astronauts 2
6411 | whispering 2
6412 | countersuit 2
6413 | Midland 2
6414 | love 2
6415 | faltered 2
6416 | lesson 2
6417 | jokes 2
6418 | diplomatic 2
6419 | tricky 2
6420 | man-made 2
6421 | staying 2
6422 | listen 2
6423 | scam 2
6424 | Mateo 2
6425 | Glass 2
6426 | leapfrog 2
6427 | daughter 2
6428 | Weisfield 2
6429 | Nashua 2
6430 | Am 2
6431 | plunging 2
6432 | Scandinavian 2
6433 | Educational 2
6434 | scrap 2
6435 | softer 2
6436 | periodically 2
6437 | fashionable 2
6438 | covert 2
6439 | Fernando 2
6440 | harbor 2
6441 | grows 2
6442 | Lonrho 2
6443 | suspects 2
6444 | five-hour 2
6445 | courting 2
6446 | Robin 2
6447 | intensive 2
6448 | Perella 2
6449 | Speaker 2
6450 | Burr 2
6451 | mop 2
6452 | Deb 2
6453 | pistol 2
6454 | Chevy 2
6455 | high-priced 2
6456 | gifts 2
6457 | mass 2
6458 | prediction 2
6459 | bursts 2
6460 | metropolitan 2
6461 | deemed 2
6462 | gallery 2
6463 | Bike 2
6464 | Aslanian 2
6465 | bond-price 2
6466 | Dole 2
6467 | cooperative 2
6468 | ideology 2
6469 | Medicaid 2
6470 | Macintosh 2
6471 | Nev. 2
6472 | Supply 2
6473 | emphasizing 2
6474 | crunch 2
6475 | opposite 2
6476 | Projects 2
6477 | shifted 2
6478 | rhythm 2
6479 | Goodman 2
6480 | exhibitions 2
6481 | relies 2
6482 | vomiting 2
6483 | management-led 2
6484 | proceeding 2
6485 | Asset-Backed 2
6486 | shorter-term 2
6487 | Crossland 2
6488 | cream 2
6489 | Orders 2
6490 | opponent 2
6491 | soil 2
6492 | bouncing 2
6493 | testing 2
6494 | pop 2
6495 | cocoa 2
6496 | send 2
6497 | collateralized 2
6498 | Alaskan 2
6499 | kingside 2
6500 | enact 2
6501 | propulsion 2
6502 | comic 2
6503 | river 2
6504 | dogged 2
6505 | yelled 2
6506 | unheard 2
6507 | Poodle 2
6508 | Eugene 2
6509 | blocks 2
6510 | Freight 2
6511 | Westminister 2
6512 | cherry 2
6513 | Schlumberger 2
6514 | accustomed 2
6515 | Madison 2
6516 | gathering 2
6517 | propelled 2
6518 | double-decking 2
6519 | physical 2
6520 | jarring 2
6521 | etc 2
6522 | Declining 2
6523 | manner 2
6524 | compensate 2
6525 | manipulate 2
6526 | combining 2
6527 | vicious 2
6528 | Ball 2
6529 | breed 2
6530 | Generally 2
6531 | backfire 2
6532 | Sen 2
6533 | Rouge 2
6534 | Fear 2
6535 | rattled 2
6536 | Ben 2
6537 | Dempsey 2
6538 | scientist 2
6539 | feels 2
6540 | proliferation 2
6541 | Sharp 2
6542 | random 2
6543 | test-marketing 2
6544 | electricity 2
6545 | Eavesdropping 2
6546 | sentence 2
6547 | fabric 2
6548 | self-employed 2
6549 | Trans 2
6550 | Clean 2
6551 | ample 2
6552 | starving 2
6553 | So-called 2
6554 | procedure 2
6555 | writes 2
6556 | minorities 2
6557 | Shops 2
6558 | Shack 2
6559 | Taiwanese 2
6560 | sinking 2
6561 | deficits 2
6562 | distinctive 2
6563 | Hewlett 2
6564 | anti-monopoly 2
6565 | telemarketing 2
6566 | Calgary 2
6567 | continually 2
6568 | Furukawa 2
6569 | narrowly 2
6570 | groceries 2
6571 | Freightways 2
6572 | gift 2
6573 | terminals 2
6574 | volumes 2
6575 | Chevron 2
6576 | cedar 2
6577 | supercomputer 2
6578 | destroying 2
6579 | reconsider 2
6580 | amendments 2
6581 | avoided 2
6582 | arena 2
6583 | artist 2
6584 | D 2
6585 | collected 2
6586 | ranked 2
6587 | dimension 2
6588 | tissues 2
6589 | Dover 2
6590 | departments 2
6591 | Sluggish 2
6592 | Kimberly-Clark 2
6593 | touch 2
6594 | styles 2
6595 | lightly 2
6596 | Atlantis 2
6597 | reinforced 2
6598 | repaired 2
6599 | Representatives 2
6600 | Myrtle 2
6601 | Gorky 2
6602 | articles 2
6603 | studied 2
6604 | Wellcome 2
6605 | witnesses 2
6606 | Kevin 2
6607 | halted 2
6608 | sheets 2
6609 | scream 2
6610 | citizens 2
6611 | sandwiches 2
6612 | search 2
6613 | Communication 2
6614 | metaphor 2
6615 | insurgents 2
6616 | colleges 2
6617 | Warshaw 2
6618 | Motel 2
6619 | flooding 2
6620 | disarm 2
6621 | mafia 2
6622 | Institutions 2
6623 | Walt 2
6624 | ocean 2
6625 | library 2
6626 | upside 2
6627 | Taxpayers 2
6628 | Unruh 2
6629 | demise 2
6630 | leap 2
6631 | NO 2
6632 | drawn 2
6633 | sidewalks 2
6634 | placement 2
6635 | firing 2
6636 | jetliners 2
6637 | lifelong 2
6638 | Chamber 2
6639 | Voronezh 2
6640 | motive 2
6641 | Lazard 2
6642 | magnified 2
6643 | Quist 2
6644 | switches 2
6645 | abuse 2
6646 | develops 2
6647 | generations 2
6648 | Ontario 2
6649 | girl 2
6650 | jet 2
6651 | minus 2
6652 | sacrifices 2
6653 | agriculture 2
6654 | Toussie 2
6655 | threatening 2
6656 | document 2
6657 | ##th-century 2
6658 | curbing 2
6659 | Morgenzon 2
6660 | Nestle 2
6661 | property/casualty 2
6662 | underscore 2
6663 | Please 2
6664 | inefficient 2
6665 | Order 2
6666 | visually 2
6667 | Pettee 2
6668 | advocate 2
6669 | Family 2
6670 | foresee 2
6671 | non-executive 2
6672 | publishes 2
6673 | Albert 2
6674 | Montana 2
6675 | Zeta 2
6676 | F.W. 2
6677 | ammonium 2
6678 | Stein 2
6679 | Work 2
6680 | excerpts 2
6681 | Men 2
6682 | mounted 2
6683 | Developments 2
6684 | tested 2
6685 | Oracle 2
6686 | Cincinnati 2
6687 | confiscated 2
6688 | greatly 2
6689 | gambling 2
6690 | layoffs 2
6691 | rallies 2
6692 | Mortgage-Backed 2
6693 | Grobstein 2
6694 | enjoyable 2
6695 | paper-products 2
6696 | presidency 2
6697 | remembered 2
6698 | balked 2
6699 | Nicastro 2
6700 | antibody 2
6701 | Sit 2
6702 | praise 2
6703 | revolutionary 2
6704 | evenly 2
6705 | Excluding 2
6706 | prose 2
6707 | repeal 2
6708 | Segundo 2
6709 | Kelly 2
6710 | suggesting 2
6711 | Mastergate 2
6712 | Cairo 2
6713 | cemetery 2
6714 | temperatures 2
6715 | mom 2
6716 | iron 2
6717 | ##-second 2
6718 | abortions 2
6719 | preceding 2
6720 | Burlington 2
6721 | prescription 2
6722 | pot 2
6723 | Nazer 2
6724 | garner 2
6725 | humble 2
6726 | watering 2
6727 | Gilmore 2
6728 | Aerospace 2
6729 | hate 2
6730 | barring 2
6731 | repairing 2
6732 | tolerance 2
6733 | cycling 2
6734 | injuring 2
6735 | malaise 2
6736 | company-owned 2
6737 | dramatically 2
6738 | bore 2
6739 | dwarf 2
6740 | Greenville 2
6741 | Details 2
6742 | exploded 2
6743 | fairness 2
6744 | Task 2
6745 | Eight 2
6746 | tailspin 2
6747 | Beretta 2
6748 | EEOC 2
6749 | proven 2
6750 | dissident 2
6751 | acknowledge 2
6752 | Gumbel 2
6753 | suspending 2
6754 | peoples 2
6755 | venture-capital 2
6756 | twin-deficit 2
6757 | contact 2
6758 | disappears 2
6759 | theirs 2
6760 | Thing 2
6761 | weakened 2
6762 | accelerated 2
6763 | Les 2
6764 | approving 2
6765 | Borden 2
6766 | clearance 2
6767 | gainers 2
6768 | Lyphomed 2
6769 | = 2
6770 | cheek 2
6771 | executed 2
6772 | proclaimed 2
6773 | Silvers 2
6774 | sends 2
6775 | hacker 2
6776 | moderates 2
6777 | needing 2
6778 | Juilliard 2
6779 | two-tier 2
6780 | methane 2
6781 | issuer 2
6782 | loser 2
6783 | Shattuck 2
6784 | RULES 2
6785 | fires 2
6786 | Lai 2
6787 | businessman 2
6788 | inventiveness 2
6789 | automation 2
6790 | reclaim 2
6791 | male-sterile 2
6792 | Plaza 2
6793 | CFTC 2
6794 | cosmetic 2
6795 | mirror 2
6796 | showroom 2
6797 | Note 2
6798 | chefs 2
6799 | Rates 2
6800 | Riordan 2
6801 | reinstated 2
6802 | boasted 2
6803 | tended 2
6804 | page-one 2
6805 | polished 2
6806 | plea 2
6807 | scary 2
6808 | Ballard 2
6809 | lighting 2
6810 | fibers 2
6811 | whitewash 2
6812 | unsold 2
6813 | insufficient 2
6814 | Bakker 2
6815 | shouted 2
6816 | diversion 2
6817 | concludes 2
6818 | broker-dealer 2
6819 | midsized 2
6820 | Mattausch 2
6821 | refocused 2
6822 | broadcasting 2
6823 | eroded 2
6824 | importer 2
6825 | idle 2
6826 | Durable 2
6827 | personality 2
6828 | neighbors 2
6829 | hinder 2
6830 | bloated 2
6831 | bond-trading 2
6832 | Davison 2
6833 | in-house 2
6834 | DC-## 2
6835 | Digest 2
6836 | trespassing 2
6837 | joint-venture 2
6838 | Hees 2
6839 | Audi 2
6840 | newest 2
6841 | tore 2
6842 | exodus 2
6843 | optimists 2
6844 | predictable 2
6845 | travels 2
6846 | touring 2
6847 | acknowledging 2
6848 | emphasized 2
6849 | Burroughs 2
6850 | Bahamas 2
6851 | Exploration 2
6852 | Barber 2
6853 | pooled 2
6854 | fired 2
6855 | Leverage 2
6856 | provisional 2
6857 | Ambassador 2
6858 | hero 2
6859 | bribe 2
6860 | foreseeable 2
6861 | Amendment 2
6862 | providers 2
6863 | nondeductible 2
6864 | Tana 2
6865 | jitters 2
6866 | outright 2
6867 | damp 2
6868 | unload 2
6869 | supplemental 2
6870 | intermittent 2
6871 | entrepreneurial 2
6872 | rubble 2
6873 | Share 2
6874 | misstated 2
6875 | innovative 2
6876 | Leading 2
6877 | atop 2
6878 | audio 2
6879 | sizable 2
6880 | pockets 2
6881 | Reserved 2
6882 | Pittsburgh-based 2
6883 | born 2
6884 | environmentalists 2
6885 | retiring 2
6886 | keeps 2
6887 | Coats 2
6888 | drinker 2
6889 | Don 2
6890 | realities 2
6891 | masonry 2
6892 | DJIA 2
6893 | threw 2
6894 | SECTION 2
6895 | ghostbusting 2
6896 | DLJ 2
6897 | diplomat 2
6898 | R.H. 2
6899 | feminist 2
6900 | Peruvian 2
6901 | RISC 2
6902 | eliminating 2
6903 | Reebok 2
6904 | triple 2
6905 | equilibrium 2
6906 | vans 2
6907 | emerge 2
6908 | Hughes 2
6909 | understands 2
6910 | epicenter 2
6911 | Randall 2
6912 | Bernstein 2
6913 | master 2
6914 | discouraged 2
6915 | symposiums 2
6916 | unveiling 2
6917 | pro 2
6918 | Norfolk 2
6919 | roots 2
6920 | spotty 2
6921 | Schwab 2
6922 | Oakar 2
6923 | township 2
6924 | creeping 2
6925 | haven 2
6926 | Thermo 2
6927 | staffs 2
6928 | administrators 2
6929 | Tilly 2
6930 | gubernatorial 2
6931 | secretive 2
6932 | Assurances 2
6933 | Muniak 2
6934 | IMS 2
6935 | Jr 2
6936 | exclusivity 2
6937 | unauthorized 2
6938 | high-interest 2
6939 | ###-share 2
6940 | expose 2
6941 | tip 2
6942 | Boyd 2
6943 | Toledo 2
6944 | swallowing 2
6945 | Noting 2
6946 | omitted 2
6947 | sheer 2
6948 | skins 2
6949 | Messiah 2
6950 | maverick 2
6951 | scant 2
6952 | discouraging 2
6953 | autographed 2
6954 | conspired 2
6955 | lobbyists 2
6956 | fault 2
6957 | experimental 2
6958 | Marriott 2
6959 | dolce 2
6960 | SAS 2
6961 | GDP 2
6962 | Aegis 2
6963 | crude-oil 2
6964 | Iwai 2
6965 | re-elected 2
6966 | whopping 2
6967 | intention 2
6968 | Mazda 2
6969 | labor-management 2
6970 | treated 2
6971 | ##-class 2
6972 | interpretation 2
6973 | Lion 2
6974 | prop 2
6975 | lineup 2
6976 | Owen 2
6977 | Monica 2
6978 | athletes 2
6979 | attitudes 2
6980 | quantity 2
6981 | Soweto 2
6982 | relax 2
6983 | tree 2
6984 | prizes 2
6985 | Wasserstein 2
6986 | Includes 2
6987 | anti-union 2
6988 | biennial 2
6989 | Kurt 2
6990 | Clinton 2
6991 | pigs 2
6992 | prepares 2
6993 | heels 2
6994 | Older 2
6995 | Gintel 2
6996 | Ultimately 2
6997 | Wash. 2
6998 | gentlemen 2
6999 | BanPonce 2
7000 | Harken 2
7001 | pertussis 2
7002 | sits 2
7003 | espionage 2
7004 | kidney 2
7005 | incorporated 2
7006 | ##-month 2
7007 | irreparable 2
7008 | HOT 2
7009 | toxic 2
7010 | Penney 2
7011 | dual 2
7012 | haunting 2
7013 | Ill 2
7014 | artwork 2
7015 | Mochida 2
7016 | ##-story 2
7017 | superconductors 2
7018 | big-time 2
7019 | Agreement 2
7020 | defeated 2
7021 | excuse 2
7022 | Hicks 2
7023 | galvanized 2
7024 | CORPORATE 2
7025 | seldom 2
7026 | meantime 2
7027 | Percival 2
7028 | Current 2
7029 | Brian 2
7030 | wings 2
7031 | cheat 2
7032 | escaped 2
7033 | reputable 2
7034 | Society 2
7035 | Stroh 2
7036 | Being 2
7037 | universally 2
7038 | Kabel 2
7039 | endure 2
7040 | Aircraft 2
7041 | Queen 2
7042 | Gaskin 2
7043 | Junkins 2
7044 | SKF 2
7045 | Individual 2
7046 | Cancer 2
7047 | exhibition 2
7048 | Md. 2
7049 | feedlots 2
7050 | CNW 2
7051 | mainline 2
7052 | realistic 2
7053 | egg-breaking 2
7054 | UFO 2
7055 | income-tax 2
7056 | filling 2
7057 | Whether 2
7058 | Ikegai-Goss 2
7059 | E.W. 2
7060 | Brokerage 2
7061 | Roh 2
7062 | medication 2
7063 | exists 2
7064 | Nielsen 2
7065 | Thurber 2
7066 | remainder 2
7067 | diamond 2
7068 | Investigation 2
7069 | examiner 2
7070 | suffering 2
7071 | stamps 2
7072 | funny 2
7073 | ecological 2
7074 | forfeiture 2
7075 | desperately 2
7076 | transition 2
7077 | condone 2
7078 | Half 2
7079 | low-sulfur 2
7080 | N.C. 2
7081 | pumping 2
7082 | chart 2
7083 | framed 2
7084 | unpopular 2
7085 | Color 2
7086 | Professional 2
7087 | leg 2
7088 | essay 2
7089 | Goya 2
7090 | bracket 2
7091 | convention 2
7092 | Benton 2
7093 | defense-related 2
7094 | Doman 2
7095 | Taipei 2
7096 | disorders 2
7097 | Magazines 2
7098 | junk-holders 2
7099 | Sisulu 2
7100 | immense 2
7101 | builder 2
7102 | Ironically 2
7103 | MTM 2
7104 | uncertainties 2
7105 | Corsica 2
7106 | Hubert 2
7107 | downside 2
7108 | rat 2
7109 | heightened 2
7110 | costing 2
7111 | state-appointed 2
7112 | hurry 2
7113 | Nutritional 2
7114 | year-on-year 2
7115 | beautiful 2
7116 | Minh 2
7117 | #.##-to-# 2
7118 | ##:## 2
7119 | incorrect 2
7120 | Southeast 2
7121 | Local 2
7122 | tries 2
7123 | skirt 2
7124 | Maurice 2
7125 | backbone 2
7126 | audition 2
7127 | overdue 2
7128 | trendy 2
7129 | Ratners 2
7130 | Minpeco 2
7131 | Herbert 2
7132 | label 2
7133 | legalizing 2
7134 | Wheat 2
7135 | mere 2
7136 | gates 2
7137 | boundaries 2
7138 | Pipeline 2
7139 | CLAUSE 2
7140 | Haven 2
7141 | premier 2
7142 | dedicated 2
7143 | keen 2
7144 | surveillance 2
7145 | conversation 2
7146 | tumbling 2
7147 | absolutism 2
7148 | tapes 2
7149 | inherited 2
7150 | noon 2
7151 | brewer 2
7152 | Waggoner 2
7153 | upheaval 2
7154 | Y&R 2
7155 | slackened 2
7156 | detectable 2
7157 | malignancy 2
7158 | distortions 2
7159 | warehouses 2
7160 | courtesy 2
7161 | twisted 2
7162 | showrooms 2
7163 | maneuvers 2
7164 | Balcor 2
7165 | Nadir 2
7166 | corruption 2
7167 | understandable 2
7168 | lovable 2
7169 | entrust 2
7170 | Broadway 2
7171 | governor 2
7172 | invariably 2
7173 | Rothschild 2
7174 | shredded 2
7175 | theoretical 2
7176 | DEC 2
7177 | Classic 2
7178 | consumer-products 2
7179 | sentencing 2
7180 | brakes 2
7181 | privilege 2
7182 | natural-gas 2
7183 | unveil 2
7184 | reluctance 2
7185 | Shakespeare 2
7186 | Laughlin 2
7187 | spreading 2
7188 | watched 2
7189 | dairy 2
7190 | figured 2
7191 | echoed 2
7192 | Fitzwater 2
7193 | chunks 2
7194 | S&Ls 2
7195 | Hispanics 2
7196 | rejection 2
7197 | scrambled 2
7198 | Will 2
7199 | defaults 2
7200 | curbs 2
7201 | republics 2
7202 | Wheeler 2
7203 | mile 2
7204 | Scowcroft 2
7205 | Adams 2
7206 | BioSciences 2
7207 | obtaining 2
7208 | Foret 2
7209 | Quick 2
7210 | Eaton 2
7211 | phenomenon 2
7212 | souped-up 2
7213 | posture 2
7214 | pachinko 2
7215 | Arab-sponsored 2
7216 | shipbuilder 2
7217 | insider 2
7218 | Grain 2
7219 | Elizabeth 2
7220 | parity 2
7221 | warming 2
7222 | Division 2
7223 | printer 2
7224 | condemnation 2
7225 | rushing 2
7226 | Barrett 2
7227 | Faced 2
7228 | sky 2
7229 | anxious 2
7230 | in-state 2
7231 | careers 2
7232 | uncover 2
7233 | Take 2
7234 | injury 2
7235 | four-part 2
7236 | Dunn 2
7237 | advocacy 2
7238 | counters 2
7239 | evaporated 2
7240 | voluntarily 2
7241 | capital-punishment 2
7242 | exploring 2
7243 | Vatican 2
7244 | prosecuted 2
7245 | asserts 2
7246 | evacuation 2
7247 | #-#-# 2
7248 | Woodward 2
7249 | selection 2
7250 | stunt 2
7251 | prohibition 2
7252 | weakest 2
7253 | Stewart 2
7254 | Devices 2
7255 | solo 2
7256 | unforeseen 2
7257 | Cemetery 2
7258 | halting 2
7259 | Spendthrift 2
7260 | troops 2
7261 | fraction 2
7262 | laughter 2
7263 | Freedom 2
7264 | Estimates 2
7265 | heroes 2
7266 | reward 2
7267 | solved 2
7268 | Oliver 2
7269 | Serious 2
7270 | woo 2
7271 | Ireland 2
7272 | cheating 2
7273 | Jarvis 2
7274 | Television 2
7275 | noting 2
7276 | diminish 2
7277 | experimenting 2
7278 | Vickers 2
7279 | fun 2
7280 | PRI 2
7281 | solid 2
7282 | wiry 2
7283 | inadequate 2
7284 | Carat 2
7285 | medium-size 2
7286 | Judiciary 2
7287 | resist 2
7288 | alert 2
7289 | Ovalle 2
7290 | Immune 2
7291 | horrible 2
7292 | compelled 2
7293 | BankAmerica 2
7294 | racked 2
7295 | jurors 2
7296 | regularly 2
7297 | dominant 2
7298 | Cilcorp 2
7299 | borrowings 2
7300 | Prizm 2
7301 | allocated 2
7302 | accessories 2
7303 | Sherman 2
7304 | Maryland 2
7305 | bright 2
7306 | Mehl 2
7307 | Avondale 2
7308 | lean 2
7309 | frozen 2
7310 | Morton 2
7311 | auctions 2
7312 | Ohbayashi 2
7313 | benches 2
7314 | upheld 2
7315 | legitimacy 2
7316 | Combined 2
7317 | limbo 2
7318 | landscape 2
7319 | arranging 2
7320 | honesty 2
7321 | threshold 2
7322 | verify 2
7323 | Initial 2
7324 | species 2
7325 | Between 2
7326 | non-food 2
7327 | Thornburgh 2
7328 | Cela 2
7329 | recommending 2
7330 | refiners 2
7331 | cost-cutting 2
7332 | fragility 2
7333 | deliberations 2
7334 | Sobel 2
7335 | toll 2
7336 | liberal 2
7337 | repeat 2
7338 | Mirage 2
7339 | joining 2
7340 | catalyst 2
7341 | recorders 2
7342 | retainer 2
7343 | sophistication 2
7344 | Week 2
7345 | cooking 2
7346 | morale 2
7347 | BRIEFS 2
7348 | updating 2
7349 | burdens 2
7350 | Dublin 2
7351 | justified 2
7352 | undertake 2
7353 | proves 2
7354 | sideways 2
7355 | inheritance 2
7356 | Pool 2
7357 | WHO 2
7358 | firmer 2
7359 | Everyone 2
7360 | strictly 2
7361 | Wash 2
7362 | Engineers 2
7363 | Seib 2
7364 | ponder 2
7365 | collecting 2
7366 | Hess 2
7367 | Ruder 2
7368 | excludes 2
7369 | Drabinsky 2
7370 | Strong 2
7371 | investigations 2
7372 | bay 2
7373 | Gerry 2
7374 | Score 2
7375 | boy 2
7376 | campus 2
7377 | Andrews 2
7378 | TWA 2
7379 | notebook 2
7380 | Going 2
7381 | residence 2
7382 | fishermen 2
7383 | expression 2
7384 | Finding 2
7385 | Tenders 2
7386 | hesitate 2
7387 | outsider 2
7388 | service-industry 2
7389 | jail 2
7390 | newcomers 2
7391 | Ultimate 2
7392 | Roper 2
7393 | FADA 2
7394 | defenses 2
7395 | adopting 2
7396 | select 2
7397 | Rifenburgh 2
7398 | Enforcement 2
7399 | felony 2
7400 | attribute 2
7401 | empty 2
7402 | topics 2
7403 | vetoed 2
7404 | roommate 2
7405 | ballooning 2
7406 | nuances 2
7407 | writers 2
7408 | instant 2
7409 | disposing 2
7410 | unleashed 2
7411 | Bernard 2
7412 | subsidized 2
7413 | Hannifin 2
7414 | erode 2
7415 | deterring 2
7416 | injection 2
7417 | drillers 2
7418 | non-profit 2
7419 | firmed 2
7420 | Ing 2
7421 | careful 2
7422 | sanctioned 2
7423 | momentary 2
7424 | Marks 2
7425 | visa 2
7426 | Advertisers 2
7427 | jackets 2
7428 | liquefy 2
7429 | practiced 2
7430 | clubs 2
7431 | punishable 2
7432 | Supervision 2
7433 | Alarmed 2
7434 | lawn 2
7435 | oils 2
7436 | Suisse 2
7437 | abolish 2
7438 | PBS 2
7439 | Cars 2
7440 | Bruno 2
7441 | Antonio 2
7442 | swayed 2
7443 | emigration 2
7444 | beside 2
7445 | confined 2
7446 | carbon 2
7447 | Pierre 2
7448 | tad 2
7449 | Intergroup 2
7450 | carpeting 2
7451 | contamination 2
7452 | Accepted 2
7453 | multiple 2
7454 | Harold 2
7455 | Whittington 2
7456 | stiff 2
7457 | Murata 2
7458 | Kawasaki 2
7459 | hung 2
7460 | tricks 2
7461 | compromises 2
7462 | sprays 2
7463 | plane 2
7464 | touting 2
7465 | Seagate 2
7466 | nomination 2
7467 | ###-member 2
7468 | minute 2
7469 | eyes 2
7470 | briefing 2
7471 | coupe 2
7472 | economically 2
7473 | exhibit 2
7474 | prohibited 2
7475 | Soviet-style 2
7476 | straight 2
7477 | overhauling 2
7478 | complaints 2
7479 | stressed 2
7480 | alien 2
7481 | describe 2
7482 | casting 2
7483 | Gibson 2
7484 | strategists 2
7485 | Di 2
7486 | ebullient 2
7487 | Gilbert 2
7488 | disintegration 2
7489 | subsequently 2
7490 | Addison 2
7491 | Manitoba 2
7492 | exceeding 2
7493 | apologists 2
7494 | treacherous 2
7495 | higher-cost 2
7496 | susceptible 2
7497 | capitalization 2
7498 | phase 2
7499 | Barclay 2
7500 | neutron 2
7501 | megabyte 2
7502 | inefficiency 2
7503 | Callable 2
7504 | punish 2
7505 | Patent 2
7506 | Emerging 2
7507 | Battle 2
7508 | Victor 2
7509 | Equitec 2
7510 | binding 2
7511 | hardware 2
7512 | so-so 2
7513 | albeit 2
7514 | postmarks 2
7515 | Distance 2
7516 | theories 2
7517 | Lance 2
7518 | Sports 2
7519 | surrounded 2
7520 | bleeding 2
7521 | Carlos 2
7522 | Brewery 2
7523 | Guadalajara 2
7524 | Pulp 2
7525 | unsettling 2
7526 | Belli 2
7527 | Tait 2
7528 | Liza 2
7529 | Down 2
7530 | breakup 2
7531 | supermarket 2
7532 | vague 2
7533 | joke 2
7534 | MX 2
7535 | fraudulent 2
7536 | bikers 2
7537 | work-rule 2
7538 | tacked 2
7539 | relinquish 2
7540 | retarded 2
7541 | Falconbridge 2
7542 | Rural 2
7543 | province 2
7544 | Marketing 2
7545 | Hartford 2
7546 | separation 2
7547 | Best 2
7548 | Looking 2
7549 | Revenues 2
7550 | Masson 2
7551 | topaz 2
7552 | Supporting 2
7553 | Boies 2
7554 | Games 2
7555 | mission 2
7556 | ARTICLE 2
7557 | Milpitas 2
7558 | jailed 2
7559 | hepatitis 2
7560 | boosts 2
7561 | consolidated 2
7562 | MTV 2
7563 | Joan 2
7564 | Carroll 2
7565 | contain 2
7566 | Petrolane 2
7567 | literature 2
7568 | S.A 2
7569 | socialist 2
7570 | aborted 2
7571 | sailed 2
7572 | aided 2
7573 | enters 2
7574 | Oklahoma 2
7575 | urgency 2
7576 | Sculley 2
7577 | guests 2
7578 | rhetoric 2
7579 | Wedding 2
7580 | reversal 2
7581 | transmitted 2
7582 | brochures 2
7583 | adhesive 2
7584 | preventing 2
7585 | abrupt 2
7586 | Pearl 2
7587 | wore 2
7588 | Lexus 2
7589 | sporty 2
7590 | Moliere 2
7591 | Generale 2
7592 | soften 2
7593 | knocking 2
7594 | insisting 2
7595 | proprietors 2
7596 | purchasers 2
7597 | improving 2
7598 | furniture 2
7599 | Bolinas 2
7600 | justify 2
7601 | Look 2
7602 | salvaged 2
7603 | architects 2
7604 | bottles 2
7605 | engaging 2
7606 | reinforce 2
7607 | Publishing 2
7608 | NYSE 2
7609 | credited 2
7610 | arbs 2
7611 | depression 2
7612 | malpractice 2
7613 | install 2
7614 | Ill. 2
7615 | Huber 2
7616 | U.S.-backed 2
7617 | Andrew 2
7618 | jealous 2
7619 | deceptive 2
7620 | Assembly 2
7621 | essentially 2
7622 | Yorker 2
7623 | cartoons 2
7624 | Weekes 2
7625 | sick 2
7626 | tap 2
7627 | Hungarian 2
7628 | gear 2
7629 | Sprint 2
7630 | dumped 2
7631 | Deputy 2
7632 | Sharfman 2
7633 | Clark 2
7634 | vivid 2
7635 | affair 2
7636 | numerical 2
7637 | occur 2
7638 | agenda 2
7639 | full-fledged 2
7640 | precisely 2
7641 | claiming 2
7642 | CVN 2
7643 | criminals 2
7644 | unseen 2
7645 | recognizes 2
7646 | regret 2
7647 | Hotel 2
7648 | Steve 2
7649 | Bryant 2
7650 | apparatus 2
7651 | patch 2
7652 | Leavitt 2
7653 | imminent 2
7654 | suburb 2
7655 | Ely 2
7656 | representative 2
7657 | landslide 2
7658 | Egyptian 2
7659 | Quickview 2
7660 | underpin 2
7661 | Hambrecht 2
7662 | exemption 2
7663 | Universal 2
7664 | Compared 2
7665 | mink 2
7666 | Athletics 2
7667 | register 2
7668 | IFAR 2
7669 | gem 2
7670 | database 2
7671 | Bulgarian 2
7672 | Feng-hsiung 2
7673 | tracks 2
7674 | notified 2
7675 | Hayes 2
7676 | Einhorn 2
7677 | integration 2
7678 | convened 2
7679 | Rudolph 2
7680 | casualties 2
7681 | ##-foot 2
7682 | tarnished 2
7683 | librarian 2
7684 | payouts 2
7685 | ceramic 2
7686 | subjects 2
7687 | component 2
7688 | shifting 2
7689 | Soybean 2
7690 | heights 2
7691 | judging 2
7692 | Bare-Faced 2
7693 | bell 2
7694 | Sandra 2
7695 | Nissho 2
7696 | museum 2
7697 | Orkem 2
7698 | lacked 2
7699 | Arkla 2
7700 | A.P. 2
7701 | packaged-goods 2
7702 | guerrillas 2
7703 | domain 2
7704 | leftist 2
7705 | Ethiopian 2
7706 | Learning 2
7707 | actors 2
7708 | fray 2
7709 | altitude 2
7710 | leaping 2
7711 | yielded 2
7712 | artillery 2
7713 | guys 2
7714 | circuits 2
7715 | cent 2
7716 | Funding 2
7717 | reminder 2
7718 | persists 2
7719 | disappearance 2
7720 | personalized 2
7721 | Advancing 2
7722 | incidents 2
7723 | conglomerate 2
7724 | #th 2
7725 | afloat 2
7726 | Economists 2
7727 | emissions 2
7728 | enactment 2
7729 | attacked 2
7730 | Counting 2
7731 | thinner 2
7732 | Klerk 2
7733 | introducing 2
7734 | listened 2
7735 | highways 2
7736 | Tribune 2
7737 | HomeFed 2
7738 | savings-type 2
7739 | camps 2
7740 | vacation 2
7741 | gray-market 2
7742 | emphasis 2
7743 | tapped 2
7744 | Conn.-based 2
7745 | roadbed 2
7746 | AEW 2
7747 | tax-loss 2
7748 | Eddington 2
7749 | shadow 2
7750 | FirstSouth 2
7751 | EDS 2
7752 | Gilchrist 2
7753 | Jackie 2
7754 | tariff 2
7755 | traffickers 2
7756 | lying 2
7757 | survival 2
7758 | minds 2
7759 | Emergency 2
7760 | sidelines 2
7761 | incomes 2
7762 | acquit 2
7763 | Regulatory 2
7764 | Bowes 2
7765 | Missouri 2
7766 | know-how 2
7767 | eagerly 2
7768 | breach 2
7769 | Remember 2
7770 | fainting 2
7771 | photographs 2
7772 | Cities 2
7773 | depend 2
7774 | Burmah 2
7775 | contrasts 2
7776 | affidavits 2
7777 | versus 2
7778 | bales 2
7779 | Estimate 2
7780 | Satellite 2
7781 | stricken 2
7782 | tankers 2
7783 | youthful 2
7784 | Ehrlich 2
7785 | historically 2
7786 | Foothills 2
7787 | inflationary 2
7788 | Educators 2
7789 | mobile 2
7790 | cheered 2
7791 | yanked 2
7792 | Tass 2
7793 | totals 2
7794 | rejoin 2
7795 | demonstration 2
7796 | punch 2
7797 | Crown 2
7798 | money-fund 2
7799 | spans 2
7800 | negotiable 2
7801 | Unfortunately 2
7802 | culprit 2
7803 | addressing 2
7804 | Tandem 2
7805 | arranged 2
7806 | subsidence 2
7807 | go-ahead 2
7808 | machinists 2
7809 | dignity 2
7810 | spewing 2
7811 | fitness 2
7812 | taped 2
7813 | carefully 2
7814 | mid-November 2
7815 | wonders 2
7816 | indebted 2
7817 | Nationale 2
7818 | painfully 2
7819 | directed 2
7820 | Mahfouz 2
7821 | non-communist 2
7822 | Hollander 2
7823 | denounced 2
7824 | Liberation 2
7825 | poorly 2
7826 | Upper 2
7827 | Galileo 2
7828 | containerboard 2
7829 | suitor 2
7830 | trespass 2
7831 | Dave 2
7832 | Bowker 2
7833 | Beyond 2
7834 | Jobs 2
7835 | Competition 2
7836 | Comsat 2
7837 | ketchup 2
7838 | soap 2
7839 | gradually 2
7840 | spouses 2
7841 | Savaiko 2
7842 | ruptured 2
7843 | Sindona 2
7844 | Bethlehem 2
7845 | predominantly 2
7846 | hot-dipped 2
7847 | technicians 2
7848 | bout 2
7849 | pumped 2
7850 | communist 2
7851 | furriers 2
7852 | dependent 2
7853 | specifics 2
7854 | crushed 2
7855 | embryo 2
7856 | inept 2
7857 | pre-registered 2
7858 | Cambodia 2
7859 | attacking 2
7860 | strike-force 2
7861 | picket 2
7862 | surrogate 2
7863 | socialism 2
7864 | Cambridge 2
7865 | walks 2
7866 | penny 2
7867 | Banxquote 2
7868 | mate 2
7869 | Hulings 2
7870 | donors 2
7871 | historic 2
7872 | one-inch 2
7873 | Further 2
7874 | Thrift 2
7875 | Said 2
7876 | hotel-casino 2
7877 | helicopter 2
7878 | metro 2
7879 | prerogatives 2
7880 | laboratory 2
7881 | Rupert 2
7882 | capitalists 2
7883 | coincidence 2
7884 | Kessler 2
7885 | rioting 2
7886 | designate 2
7887 | soliciting 2
7888 | Automotive 2
7889 | loses 2
7890 | Tigrean 2
7891 | limitations 2
7892 | convinced 2
7893 | ballot 2
7894 | delegates 2
7895 | besieged 2
7896 | retreating 2
7897 | historical 2
7898 | reoffered 2
7899 | whichever 2
7900 | Song 2
7901 | parliament 2
7902 | reservations 2
7903 | futures-investment 2
7904 | Hallwood 2
7905 | oldest 2
7906 | regulator 2
7907 | introduction 2
7908 | fortunes 2
7909 | N.H. 2
7910 | leather 2
7911 | Shaw-Walker 2
7912 | dip 2
7913 | victim 2
7914 | Silver 2
7915 | stadium 2
7916 | Cipher 2
7917 | shakes 2
7918 | vengeance 2
7919 | exporter 2
7920 | SIBV-MS 2
7921 | dance 2
7922 | Jefferson 2
7923 | single-B 2
7924 | conflict-of-interest 2
7925 | Westridge 2
7926 | Fulton 2
7927 | refineries 2
7928 | protectionism 2
7929 | mentally 2
7930 | arms-control 2
7931 | stubborn 2
7932 | Miami 2
7933 | growers 2
7934 | slashing 2
7935 | possess 2
7936 | sooner 2
7937 | Inflation 2
7938 | pronounced 2
7939 | gesture 2
7940 | defaulted 2
7941 | Embarcadero 2
7942 | Ethyl 2
7943 | Beebes 2
7944 | households 2
7945 | excesses 2
7946 | execution 2
7947 | clears 2
7948 | assumed 2
7949 | Buying 2
7950 | inevitable 2
7951 | first-time 2
7952 | Lortie 2
7953 | challengers 2
7954 | cost-of-living 2
7955 | farms 2
7956 | peaceful 2
7957 | cereals 2
7958 | ECI 2
7959 | wondered 2
7960 | consist 2
7961 | Eventually 2
7962 | ###,###-square-foot 2
7963 | Lyondell 2
7964 | ironic 2
7965 | awaiting 2
7966 | mound 2
7967 | Smaller 2
7968 | bloody 2
7969 | flurry 2
7970 | finds 2
7971 | binoculars 2
7972 | blanket 2
7973 | discover 2
7974 | tactical 2
7975 | Centers 2
7976 | Weichern 2
7977 | full-blown 2
7978 | sorghum 2
7979 | partially 2
7980 | Sheraton 2
7981 | reins 2
7982 | crumbling 2
7983 | Cole 2
7984 | DaPuzzo 2
7985 | demonstrates 2
7986 | pains 2
7987 | SPCA 2
7988 | Nuclear 2
7989 | less-profitable 2
7990 | marches 2
7991 | transfers 2
7992 | majors 2
7993 | slightest 2
7994 | Coastal 2
7995 | OK 2
7996 | Goldberg 2
7997 | mistakes 2
7998 | lung 2
7999 | Ramirez 2
8000 | petitions 2
8001 | momentum 2
8002 | Eminase 2
8003 | Napa 2
8004 | topped 2
8005 | Ridge 2
8006 | supplement 2
8007 | zero 2
8008 | seized 2
8009 | ai 2
8010 | Lecheria 2
8011 | violence 2
8012 | Rorer 2
8013 | leasing 2
8014 | dry 2
8015 | corridor 2
8016 | usage 2
8017 | machinist 2
8018 | tabloid 2
8019 | Guide 2
8020 | Eli 2
8021 | ghost 2
8022 | refunds 2
8023 | Saskatchewan 2
8024 | Counsel 2
8025 | band 2
8026 | Nathan 2
8027 | installment 2
8028 | Florence 2
8029 | Wayne 2
8030 | alienating 2
8031 | Russell 2
8032 | sacrifice 2
8033 | Shares 2
8034 | Alley 2
8035 | strapped 2
8036 | Hsu 2
8037 | Negative 2
8038 | Roberti 2
8039 | raid 2
8040 | scrapped 2
8041 | selecting 2
8042 | Whitford 2
8043 | Baseball 2
8044 | rolls 2
8045 | Step 2
8046 | measuring 2
8047 | softening 2
8048 | fauna 2
8049 | functioning 2
8050 | one-yen 2
8051 | creatures 2
8052 | spire 2
8053 | integrate 2
8054 | Purnick 2
8055 | Convertible 2
8056 | Louise 2
8057 | exceptions 2
8058 | accelerating 2
8059 | all-time 2
8060 | seventh 2
8061 | Charlotte 2
8062 | Pitney 2
8063 | ###-megawatt 2
8064 | beneficiaries 2
8065 | spooks 2
8066 | anger 2
8067 | missile 2
8068 | yard 2
8069 | Cortese 2
8070 | analyze 2
8071 | Jude 2
8072 | Revolution 2
8073 | reviewed 2
8074 | abolished 2
8075 | AFL-CIO 2
8076 | Marlowe 2
8077 | Montagu 2
8078 | identifies 2
8079 | Five 2
8080 | Wars 2
8081 | contains 2
8082 | Agricultural 2
8083 | lid 2
8084 | service-sector 2
8085 | Indianapolis 2
8086 | Anton 2
8087 | onetime 2
8088 | clumps 2
8089 | Growth 2
8090 | scripts 2
8091 | structured 2
8092 | NatWest 2
8093 | Abortion 2
8094 | cleaning 2
8095 | Carbide 2
8096 | dissent 2
8097 | subpoena 2
8098 | Jerusalem 2
8099 | Vail 2
8100 | wounded 2
8101 | Talk 2
8102 | earthworms 2
8103 | apologies 2
8104 | abruptly 2
8105 | chaos 2
8106 | dictators 2
8107 | Burgess 2
8108 | accompanied 2
8109 | networking 2
8110 | lung-cancer 2
8111 | audiences 2
8112 | lagged 2
8113 | carry-forward 2
8114 | Citizens 2
8115 | exported 2
8116 | computer-driven 2
8117 | fights 2
8118 | drill 2
8119 | statistical 2
8120 | fad 2
8121 | Blair 2
8122 | marching 2
8123 | sight 2
8124 | Hochiminh 2
8125 | toys 2
8126 | Football 2
8127 | Ashton-Tate 2
8128 | Chan 2
8129 | old-line 2
8130 | Options 2
8131 | backfired 2
8132 | memo 2
8133 | brick 2
8134 | Nadeau 2
8135 | garbage 2
8136 | lock 2
8137 | candor 2
8138 | Bert 2
8139 | Jewelers 2
8140 | diligence 2
8141 | symbolic 2
8142 | Filipinos 2
8143 | Sundance 2
8144 | afterward 2
8145 | atmospheric 2
8146 | perestroika 2
8147 | Allied-Signal 2
8148 | co-founder 2
8149 | Al 2
8150 | fantastic 2
8151 | H.H. 2
8152 | Fernandez 2
8153 | resumed 2
8154 | Ellis 2
8155 | sleeping 2
8156 | Plant 2
8157 | succession 2
8158 | abated 2
8159 | shouting 2
8160 | diesel 2
8161 | seniors 2
8162 | marketplace 2
8163 | differ 2
8164 | informal 2
8165 | Experts 2
8166 | nightmare 2
8167 | Pimlott 2
8168 | provincial 2
8169 | Wrap 2
8170 | Automobile 2
8171 | day-to-day 2
8172 | Miss 2
8173 | Somalia 2
8174 | frenzy 2
8175 | endorsed 2
8176 | promptly 2
8177 | throws 2
8178 | Restaurants 2
8179 | Bonn 2
8180 | short-lived 2
8181 | extracting 2
8182 | worrying 2
8183 | Phil 2
8184 | zones 2
8185 | Liz 2
8186 | Assets 2
8187 | Telesis 2
8188 | Darwinian 2
8189 | tumbled 2
8190 | accomplishments 2
8191 | awake 2
8192 | sparked 2
8193 | mainstream 2
8194 | diversify 2
8195 | yourself 2
8196 | U.S.A 2
8197 | prevented 2
8198 | Care 2
8199 | Ideologues 2
8200 | element 2
8201 | honey 2
8202 | Joe 2
8203 | doubling 2
8204 | creditor 2
8205 | Comex 2
8206 | clerks 2
8207 | Trivelpiece 2
8208 | speeding 2
8209 | assessment 2
8210 | Nation 2
8211 | Cutler 2
8212 | laundering 2
8213 | rain 2
8214 | Mesa 2
8215 | Cross 2
8216 | justice 2
8217 | Gerald 2
8218 | ##-acre 2
8219 | incoming 2
8220 | full-year 2
8221 | cartel 2
8222 | Review 2
8223 | Ann 2
8224 | GMAC 2
8225 | Linh 2
8226 | thoroughbred 2
8227 | advocating 2
8228 | negotiators 2
8229 | checks 2
8230 | dubious 2
8231 | homer 2
8232 | MIG-# 2
8233 | Gary 2
8234 | erratically 2
8235 | Jarrett 2
8236 | non-communists 2
8237 | tears 2
8238 | plot 2
8239 | D&B 2
8240 | Ries 2
8241 | circuit 2
8242 | diamonds 2
8243 | restructurings 2
8244 | accruing 2
8245 | Coal 2
8246 | textile 2
8247 | oak 2
8248 | Components 2
8249 | whatever 2
8250 | FCB/Leber 2
8251 | Rubicam 2
8252 | ##-# 2
8253 | isolate 2
8254 | importing 2
8255 | authors 2
8256 | plummeting 2
8257 | PS 2
8258 | mandating 2
8259 | Stadium 2
8260 | Investment-grade 2
8261 | McDonough 2
8262 | Children 2
8263 | ski 2
8264 | acceptable 2
8265 | instrumental 2
8266 | goodwill 2
8267 | Ron 2
8268 | brow 2
8269 | Nabisco 2
8270 | translate 2
8271 | Ground 2
8272 | pits 2
8273 | pizzazz 2
8274 | Advanced 2
8275 | Sells 2
8276 | pin 2
8277 | lover 2
8278 | Bailey 2
8279 | debasement 2
8280 | secretary-general 2
8281 | Pakistan 2
8282 | coupon-equivalent 2
8283 | Broker 2
8284 | summit 2
8285 | tighter 2
8286 | promoters 2
8287 | layer 2
8288 | burdensome 2
8289 | fined 2
8290 | softened 2
8291 | Freudenberger 2
8292 | Eduard 2
8293 | Dooling 2
8294 | innovation 2
8295 | comply 2
8296 | Bern 2
8297 | perjury 2
8298 | athlete 2
8299 | s 2
8300 | English-language 2
8301 | Fukuyama 2
8302 | Shopping 2
8303 | Institutional 2
8304 | government-sponsored 2
8305 | judiciary 2
8306 | mineral 2
8307 | smooth 2
8308 | titans 2
8309 | adults 2
8310 | Humana 2
8311 | C 2
8312 | Arkansas 2
8313 | Did 2
8314 | tidal 2
8315 | last-minute 2
8316 | foundation 2
8317 | rangers 2
8318 | AC&R 2
8319 | switching 2
8320 | tenant 2
8321 | U.N. 2
8322 | examining 2
8323 | salesman 2
8324 | peanuts 2
8325 | rein 2
8326 | binge 2
8327 | attributes 2
8328 | verdict 2
8329 | positioned 2
8330 | inevitably 2
8331 | generating 2
8332 | arose 2
8333 | contributor 2
8334 | Caribbean 2
8335 | exercised 2
8336 | discrimination 2
8337 | alarms 2
8338 | skills 2
8339 | drinking 2
8340 | lifetime 2
8341 | faltering 2
8342 | E-mail 2
8343 | organizer 2
8344 | sufficiently 2
8345 | Forces 2
8346 | clarification 2
8347 | scramble 2
8348 | fitting 2
8349 | Freeway 2
8350 | Darman 2
8351 | audits 2
8352 | slabs 2
8353 | intellectuals 2
8354 | kidnapping 2
8355 | unfortunately 2
8356 | hall 2
8357 | footing 2
8358 | stock-price 2
8359 | TCMP 2
8360 | Ambrosiano 2
8361 | syndrome 2
8362 | Junk 2
8363 | Electronic 2
8364 | totaling 2
8365 | attracts 2
8366 | Chi 2
8367 | flown 2
8368 | Shippers 2
8369 | prepare 2
8370 | divorced 2
8371 | announcer 2
8372 | COCOA 2
8373 | Worcester 2
8374 | Kate 2
8375 | Postel 2
8376 | harvested 2
8377 | smells 2
8378 | Holmes 2
8379 | Expect 2
8380 | Whitney 2
8381 | exposed 2
8382 | emeritus 2
8383 | enemy 2
8384 | culmination 2
8385 | runaway 2
8386 | Renaissance 2
8387 | chores 2
8388 | decade-long 2
8389 | JMB 2
8390 | gauge 2
8391 | Meador 2
8392 | soar 2
8393 | granite 2
8394 | reshaping 2
8395 | peace-keeping 2
8396 | sexes 2
8397 | camera 2
8398 | Agricole 2
8399 | shoot 2
8400 | woes 2
8401 | pollen-inhibiting 2
8402 | touches 2
8403 | Iran 2
8404 | Mattel 2
8405 | ranges 2
8406 | Schuster 2
8407 | Jordan 2
8408 | vacated 2
8409 | Revolutionary 2
8410 | sensational 2
8411 | Supporters 2
8412 | arrange 2
8413 | low-income 2
8414 | shoestring 2
8415 | competence 2
8416 | Town 2
8417 | infection 2
8418 | effectiveness 2
8419 | blames 2
8420 | Harsco 2
8421 | phones 2
8422 | AEP 2
8423 | western 2
8424 | ##-a-share 2
8425 | Kemper 2
8426 | welfare 2
8427 | forest-products 2
8428 | sun 2
8429 | troughed 2
8430 | distributes 2
8431 | availability 2
8432 | Nick 2
8433 | racism 2
8434 | priorities 2
8435 | honed 2
8436 | budding 2
8437 | trailed 2
8438 | sales-tax 2
8439 | polypropylene 2
8440 | Closed 2
8441 | Boulder 2
8442 | industrialized 2
8443 | Haagen 2
8444 | referred 2
8445 | analyzing 2
8446 | compliance 2
8447 | buildup 2
8448 | earmarked 2
8449 | accountants 2
8450 | law-enforcement 2
8451 | formality 2
8452 | bond-equivalent 2
8453 | first-class 2
8454 | Employees 2
8455 | four-day 2
8456 | fed 2
8457 | Sonet 2
8458 | toy 2
8459 | Belgium 2
8460 | Sharpshooter 2
8461 | Turnover 2
8462 | Monetary 2
8463 | Things 2
8464 | lure 2
8465 | foster 2
8466 | explicit 2
8467 | coordinator 2
8468 | communists 2
8469 | U.S.-made 2
8470 | Conlon 2
8471 | defenders 2
8472 | indifferent 2
8473 | Responses 2
8474 | fur 2
8475 | beach 2
8476 | pencil 2
8477 | Barnard 2
8478 | seniority 2
8479 | concentrated 2
8480 | Dominion 2
8481 | Amdura 2
8482 | gyrations 2
8483 | magnate 2
8484 | Daly 2
8485 | recommend 2
8486 | Louis-Dreyfus 2
8487 | tourists 2
8488 | Drew 2
8489 | nosedive 2
8490 | Barry 2
8491 | tensions 2
8492 | insulting 2
8493 | Bince 2
8494 | cocktail 2
8495 | Huge 2
8496 | Aichi 2
8497 | x 2
8498 | islands 2
8499 | intimate 2
8500 | rigs 2
8501 | unscathed 2
8502 | severity 2
8503 | enhancements 2
8504 | student-athlete 2
8505 | Claiborne 2
8506 | travelers 2
8507 | departure 2
8508 | Glaxo 2
8509 | Palmero 2
8510 | Stick 2
8511 | depositors 2
8512 | Kellwood 2
8513 | Francisco-based 2
8514 | perfectly 2
8515 | visual 2
8516 | Consultants 2
8517 | Maxicare 2
8518 | code 2
8519 | vulnerability 2
8520 | personal-injury 2
8521 | Durkin 2
8522 | Levy 2
8523 | tumble 2
8524 | salmon 2
8525 | ploys 2
8526 | Acting 2
8527 | IRAs 2
8528 | considerations 2
8529 | private-sector 2
8530 | cautiously 2
8531 | disorderly 2
8532 | Ba# 2
8533 | prudent 2
8534 | Springs 2
8535 | fluent 2
8536 | confirming 2
8537 | refer 2
8538 | reflection 2
8539 | satisfactory 2
8540 | ##-pound 2
8541 | scorecard 2
8542 | elegant 2
8543 | extracted 2
8544 | CP### 2
8545 | Regal 2
8546 | destroy 2
8547 | differentials 2
8548 | J.C. 2
8549 | centered 2
8550 | devaluation 2
8551 | barometer 2
8552 | exotic 2
8553 | gin 2
8554 | constant 2
8555 | RTC 2
8556 | Kinder-Care 2
8557 | Proleukin 2
8558 | Egan 2
8559 | Settle 2
8560 | Campbell-Mithun-Esty 2
8561 | Anderson 2
8562 | remodeling 2
8563 | Cheney 2
8564 | cones 2
8565 | peninsula 2
8566 | Traub 2
8567 | Response 2
8568 | Rickey 2
8569 | Year-earlier 2
8570 | shipment 2
8571 | unravel 2
8572 | detected 2
8573 | cell 2
8574 | restrained 2
8575 | bed 2
8576 | pose 2
8577 | standstill 2
8578 | earns 2
8579 | sow 2
8580 | reassured 2
8581 | homeowners 2
8582 | seating 2
8583 | Nine-month 2
8584 | Retirement 2
8585 | thanks 2
8586 | surveyed 2
8587 | Allan 2
8588 | concerning 2
8589 | disposal 2
8590 | subcompact 2
8591 | outlawed 2
8592 | spills 2
8593 | GAF 2
8594 | peasant 2
8595 | home-equity 2
8596 | maneuver 2
8597 | tired 2
8598 | invitation 2
8599 | six-foot 2
8600 | drifted 2
8601 | Show 2
8602 | pills 2
8603 | racist 2
8604 | translations 2
8605 | generators 2
8606 | Gates 2
8607 | intend 2
8608 | Human 2
8609 | briefly 2
8610 | Anything 2
8611 | enjoys 2
8612 | outperform 2
8613 | consistently 2
8614 | voluntary 2
8615 | chocolate 2
8616 | gray 2
8617 | automatic 2
8618 | Shelby 2
8619 | Haussmann 2
8620 | sections 2
8621 | stretched 2
8622 | monolithic 2
8623 | fiercely 2
8624 | NEWS 2
8625 | softness 2
8626 | Mulford 2
8627 | at-market 2
8628 | fat 2
8629 | Vogelstein 2
8630 | drastically 2
8631 | Stuttgart-based 2
8632 | BANK 2
8633 | shared 2
8634 | exempted 2
8635 | prefers 2
8636 | stupid 2
8637 | subsidize 2
8638 | lowering 2
8639 | indexes 2
8640 | harm 2
8641 | snow 2
8642 | confesses 2
8643 | alter 2
8644 | outperformed 2
8645 | Marvin 2
8646 | hunt 2
8647 | single-A-plus 2
8648 | defunct 2
8649 | Suddenly 2
8650 | Denise 2
8651 | locked 2
8652 | sometime 2
8653 | unregulated 2
8654 | donate 2
8655 | shell 2
8656 | duty 2
8657 | lengthy 2
8658 | towers 2
8659 | clothes 2
8660 | stable 2
8661 | Branca 2
8662 | numbered 2
8663 | top-tier 2
8664 | venerable 2
8665 | leisurely 2
8666 | Dai-Ichi 2
8667 | tastes 2
8668 | flavors 2
8669 | presents 2
8670 | vacationers 2
8671 | Toto 2
8672 | regulating 2
8673 | Packwood-Roth 2
8674 | skiing 2
8675 | U.S.-Soviet 2
8676 | Germeten 2
8677 | MGM 2
8678 | bicycles 2
8679 | Mellon 2
8680 | less-developed 2
8681 | mentions 2
8682 | Tesoro 2
8683 | abused 2
8684 | Tempe 2
8685 | Fireman 2
8686 | pesticides 2
8687 | Taft 2
8688 | unity 2
8689 | rush 2
8690 | EMS 2
8691 | life-insurance 2
8692 | Blockbuster 2
8693 | Release 2
8694 | Wilson 2
8695 | circulated 2
8696 | deductibility 2
8697 | withdrawals 2
8698 | conducting 2
8699 | emcee 2
8700 | brilliant 2
8701 | fee 2
8702 | complains 2
8703 | flair 2
8704 | completion 2
8705 | balloon 2
8706 | Books 2
8707 | tuition 2
8708 | error 2
8709 | Budapest 2
8710 | Willman 2
8711 | Bradford 2
8712 | grapple 2
8713 | ordinarily 2
8714 | Bronfman 2
8715 | Reasoner 2
8716 | Circuit 2
8717 | stabilizing 2
8718 | Beta 2
8719 | arbitration 2
8720 | promising 2
8721 | honest 2
8722 | artistic 2
8723 | exhaustion 2
8724 | Burns 2
8725 | Falcon 2
8726 | complication 2
8727 | Coleman 2
8728 | Having 2
8729 | monitored 2
8730 | instructed 2
8731 | singled 2
8732 | herd 2
8733 | paint 2
8734 | Mondale 2
8735 | Tax 2
8736 | weaken 2
8737 | Commissioner 2
8738 | Should 2
8739 | Lampoon 2
8740 | Personnel 2
8741 | frequent 2
8742 | score 2
8743 | Indiana 2
8744 | scams 2
8745 | reeling 2
8746 | doldrums 2
8747 | Lidgerwood 2
8748 | evaluate 2
8749 | terrorist 2
8750 | evasion 2
8751 | ferry 2
8752 | Kimbrough 2
8753 | blue-collar 2
8754 | rolling 2
8755 | Comptroller 2
8756 | undisclosed 2
8757 | testified 2
8758 | thrown 2
8759 | oil-producing 2
8760 | Macon 2
8761 | merge 2
8762 | Transgenic 2
8763 | stave 2
8764 | bureaucrat 2
8765 | ivory 2
8766 | titles 2
8767 | pleasure 2
8768 | bottle 2
8769 | bacterium 2
8770 | supermarkets 2
8771 | Mosbacher 2
8772 | non-duck 2
8773 | weighing 2
8774 | lubricants 2
8775 | sour 2
8776 | sins 2
8777 | McCall 2
8778 | incinerator 2
8779 | clean-air 2
8780 | arteries 2
8781 | spreads 2
8782 | Gould 2
8783 | B.V. 2
8784 | sorry 2
8785 | Kohlberg 2
8786 | Larry 2
8787 | bookings 2
8788 | smoking 2
8789 | Wellman 2
8790 | eloquently 2
8791 | specializing 2
8792 | Princeton/Newport 2
8793 | inserted 2
8794 | basic 2
8795 | fared 2
8796 | journalistic 2
8797 | Maier 2
8798 | debts 2
8799 | issuance 2
8800 | sedans 2
8801 | revisit 2
8802 | acquires 2
8803 | gossip 2
8804 | Unix 2
8805 | mailing 2
8806 | traumas 2
8807 | concentration 2
8808 | premises 2
8809 | dog 2
8810 | Metropolitan 2
8811 | neighborhood 2
8812 | Congressional 2
8813 | Commons 2
8814 | monetarist 2
8815 | unexpectedly 2
8816 | medium-term 2
8817 | endorsing 2
8818 | printed 2
8819 | Lord 2
8820 | Bancorp 2
8821 | detailing 2
8822 | implicit 2
8823 | unavailable 2
8824 | foreclosures 2
8825 | bound 2
8826 | instituted 2
8827 | Crude 2
8828 | Carboni 2
8829 | yearly 2
8830 | filler 2
8831 | loaded 2
8832 | discriminating 2
8833 | gender 2
8834 | p.m 2
8835 | unwelcome 2
8836 | seal 2
8837 | intrinsic 2
8838 | fallback 2
8839 | techniques 2
8840 | unpublished 2
8841 | permissible 2
8842 | prime-time 2
8843 | postwar 2
8844 | self-proclaimed 2
8845 | Frederick 2
8846 | promotes 2
8847 | midst 2
8848 | Financing 2
8849 | temptation 2
8850 | Stevenson 2
8851 | recourse 2
8852 | syndicator 2
8853 | cooled 2
8854 | artificially 2
8855 | Auto 2
8856 | market-monitoring 2
8857 | Normally 2
8858 | resurrect 2
8859 | wears 2
8860 | receiver 2
8861 | landmark 2
8862 | resurfaced 2
8863 | baseline 2
8864 | philosophy 2
8865 | literary 2
8866 | Train 2
8867 | emotion 2
8868 | testers 2
8869 | lengths 2
8870 | lags 2
8871 | A.C. 2
8872 | capture 2
8873 | stability 2
8874 | whoever 2
8875 | Running 2
8876 | lacks 2
8877 | propane 2
8878 | contractors 2
8879 | disclosing 2
8880 | Byrd 2
8881 | Carmon 2
8882 | McElroy 2
8883 | magic 2
8884 | meat 2
8885 | importantly 2
8886 | hedging 2
8887 | Sassy 2
8888 | laughs 2
8889 | dreams 2
8890 | Specter 2
8891 | Bechtel 2
8892 | mafias 2
8893 | redeemed 2
8894 | Riegle 2
8895 | reorganize 2
8896 | Pilevsky 2
8897 | preserved 2
8898 | abundant 2
8899 | manpower 2
8900 | turbine 2
8901 | Toseland 2
8902 | Keenan 2
8903 | dragging 2
8904 | Enron 2
8905 | Mass.-based 2
8906 | sparks 2
8907 | govern 2
8908 | Parents 2
8909 | Aztar 2
8910 | constructive 2
8911 | Daihatsu 2
8912 | unknown 2
8913 | restrain 2
8914 | Galle 2
8915 | hum 2
8916 | warn 2
8917 | trick 2
8918 | Sanger 2
8919 | large-scale 2
8920 | seizure 2
8921 | fronts 2
8922 | Monetta 2
8923 | pledged 2
8924 | asserted 2
8925 | vendor 2
8926 | ordinance 2
8927 | denouncing 2
8928 | Stanford 2
8929 | subordinate 2
8930 | ###-based 2
8931 | judged 2
8932 | masters 2
8933 | jam 2
8934 | timid 2
8935 | Imo 2
8936 | Night 2
8937 | Ty 2
8938 | computer-aided 2
8939 | withdrew 2
8940 | brains 2
8941 | Secaucus 2
8942 | Ted 2
8943 | quota 2
8944 | shakeup 2
8945 | hosting 2
8946 | high-powered 2
8947 | invade 2
8948 | Put 2
8949 | TransCanada 2
8950 | Easy 2
8951 | permanently 2
8952 | amass 2
8953 | strengthened 2
8954 | constitute 2
8955 | lion 2
8956 | lobby 2
8957 | impending 2
8958 | con 2
8959 | betting 2
8960 | Izvestia 2
8961 | Salt 2
8962 | Father 2
8963 | TO 2
8964 | Cubans 2
8965 | swept 2
8966 | refrigerators 2
8967 | accurate 2
8968 | drift 2
8969 | substance 2
8970 | diaries 2
8971 | Laurence 2
8972 | rid 2
8973 | intensifying 2
8974 | ##-minute 2
8975 | advocates 2
8976 | grueling 2
8977 | indirectly 2
8978 | decliners 2
8979 | vault 2
8980 | Willamette 2
8981 | phony 2
8982 | aroused 2
8983 | repay 2
8984 | Dearborn 2
8985 | DeGol 2
8986 | respectable 2
8987 | SALES 2
8988 | extrusion 2
8989 | dragged 2
8990 | human-rights 2
8991 | bans 2
8992 | FEMA 2
8993 | imbalance 2
8994 | bull 2
8995 | differently 2
8996 | hardest 2
8997 | decree 2
8998 | Safety 2
8999 | Washburn 2
9000 | lady 2
9001 | Rayburn 2
9002 | concentrations 2
9003 | Hutchinson 2
9004 | feature 2
9005 | questioned 2
9006 | grievances 2
9007 | deportation 2
9008 | joins 2
9009 | Golenbock 2
9010 | Beers 2
9011 | scored 2
9012 | builders 2
9013 | staffers 2
9014 | longstanding 2
9015 | Saab-Scania 2
9016 | enduring 2
9017 | Brewing 2
9018 | forecasting 2
9019 | prepaid 2
9020 | Staley 2
9021 | thumb 2
9022 | cash-strapped 2
9023 | Browns 2
9024 | policeman 2
9025 | Cowan 2
9026 | detail 2
9027 | lesser 2
9028 | Manic 2
9029 | waive 2
9030 | harmed 2
9031 | Braniff 2
9032 | Bus 2
9033 | jets 2
9034 | manufactures 2
9035 | fish 2
9036 | futures-related 2
9037 | Pinnacle 2
9038 | Triangle 2
9039 | Singer 2
9040 | Raptopoulos 2
9041 | underwrite 2
9042 | searches 2
9043 | Investor 2
9044 | Carpenter 2
9045 | bribery 2
9046 | Doyle 2
9047 | dilute 2
9048 | refugee 2
9049 | desperate 2
9050 | Disney 2
9051 | tenure 2
9052 | inched 2
9053 | Overseas 2
9054 | price-earnings 2
9055 | satellite 2
9056 | scarcely 2
9057 | lured 2
9058 | stabbed 2
9059 | Mississippi 2
9060 | dynamic 2
9061 | accommodated 2
9062 | awaits 2
9063 | Game 2
9064 | ghosts 2
9065 | zip 2
9066 | objective 2
9067 | Property 2
9068 | siphoned 2
9069 | plaster 2
9070 | casual 2
9071 | glutted 2
9072 | knot 2
9073 | depth 2
9074 | sink 2
9075 | stunned 2
9076 | hawk 2
9077 | terrorists 2
9078 | Everybody 2
9079 | masks 2
9080 | subsidy 2
9081 | when-issued 2
9082 | intimidating 2
9083 | beings 2
9084 | mishandled 2
9085 | Sperry 2
9086 | neutrons 2
9087 | Landry 2
9088 | Altogether 2
9089 | fueling 2
9090 | polysilicon 2
9091 | naked 2
9092 | unidentified 2
9093 | Land 2
9094 | championship 2
9095 | contacts 2
9096 | clean 2
9097 | combing 2
9098 | counterclaim 2
9099 | inner 2
9100 | practitioners 2
9101 | wall 2
9102 | gamble 2
9103 | inappropriate 2
9104 | Austin 2
9105 | threaten 2
9106 | immigrants 2
9107 | ponds 2
9108 | demanding 2
9109 | owe 2
9110 | Jewish 2
9111 | Odeon 2
9112 | Canton 2
9113 | influenced 2
9114 | deficit-reduction 2
9115 | attendance 2
9116 | scuttle 2
9117 | flesh 2
9118 | vessels 2
9119 | charitable 2
9120 | Atlanta-based 2
9121 | Gannett 2
9122 | newsletters 2
9123 | refinery 2
9124 | RADIO 2
9125 | overhang 2
9126 | alluded 2
9127 | Ajinomoto 2
9128 | Raymond 2
9129 | pain 2
9130 | House-passed 2
9131 | Pending 2
9132 | Upon 2
9133 | archrival 2
9134 | juice 2
9135 | Unification 2
9136 | plausible 2
9137 | Shaw 2
9138 | prospectus 2
9139 | premature 2
9140 | characterize 2
9141 | Utah 2
9142 | Boys 2
9143 | clause 2
9144 | inability 2
9145 | Water 2
9146 | tax-deferred 2
9147 | amazement 2
9148 | gut 2
9149 | interest-bearing 2
9150 | ###-stock 2
9151 | Harrison 2
9152 |
--------------------------------------------------------------------------------
/dependency.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yc930401/Transition_based_dependency_parsing-pytorch/50ea5893ef0fb77770c0621bfe4dc71ad9ae43c9/dependency.png
--------------------------------------------------------------------------------
/dependency_parsing.py:
--------------------------------------------------------------------------------
1 | import os
2 | import nltk
3 | import numpy as np
4 | from sklearn.metrics import accuracy_score
5 |
6 | import torch
7 | import torch.nn as nn
8 | from torch import optim
9 | import torch.nn.functional as F
10 | from torch.utils.data import Dataset, DataLoader
11 | import warnings
12 | warnings.filterwarnings("ignore")
13 |
14 | device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
15 | print(device)
16 |
17 |
18 | n_vocab = 0
19 | max_input_len = 0
20 | max_output_len = 0
21 | word_to_id = {}
22 | id_to_word = {}
23 | transition_to_id = {'SHIFT': 0, 'REDUCE_L': 1, 'REDUCE_R': 2}
24 | id_to_transition = {value: key for key, value in transition_to_id.items()}
25 | tag_to_id = {}
26 | id_to_tag = {}
27 |
28 |
29 | def get_statistics():
30 | tag_idx = 0
31 | global n_vocab
32 | global max_input_len
33 | global max_output_len
34 | vocab_file = open('data/vocab.txt')
35 | vocab_data = vocab_file.read()
36 | for i, line in enumerate(vocab_data.split('\n')):
37 | try:
38 | word, freq = line.split()
39 | except:
40 | break
41 | word_to_id[word] = i
42 | id_to_word[i] = word
43 | n_vocab = i + 1
44 |
45 | file = open('data/train.txt')
46 | whole_data = file.read()
47 | for line in whole_data.split('\n'):
48 | try:
49 | text, transition = line.split('|||')
50 | except:
51 | break
52 | tag = [tuple[1] for tuple in nltk.pos_tag(text.split())]
53 | if len(tag) > max_input_len:
54 | max_input_len = len(tag)
55 | if len(transition) > max_output_len:
56 | max_output_len = len(transition)
57 | for pos in tag:
58 | if pos not in tag_to_id.keys():
59 | tag_to_id[pos] = tag_idx
60 | id_to_tag[tag_idx] = pos
61 | tag_idx += 1
62 | print('Vocabulory Size: ', n_vocab)
63 | print('Word to ID: ', word_to_id)
64 | print('Tag to ID: ', tag_to_id)
65 | print('Transition to ID: ', transition_to_id)
66 |
67 |
68 | get_statistics()
69 |
70 |
71 | class ParserDataset(Dataset):
72 |
73 | def __init__(self, filename, n_samples=1000):
74 | file = open('data/{}.txt'.format(filename))
75 | whole_data = file.read()
76 | self.texts = []
77 | self.transitions = []
78 | self.tags = []
79 | lines = whole_data.split('\n')
80 | if len(lines) > n_samples:
81 | lines = lines[:n_samples]
82 | for line in lines:
83 | try:
84 | text, transition = line.split('|||')
85 | except:
86 | break
87 | tag = [tag_to_id[tuple[1]] for tuple in nltk.pos_tag(text.split())]
88 | text = [word_to_id[word] if word in word_to_id.keys() else 0 for word in text.split()]
89 | transition = [transition_to_id[trans] for trans in transition.split()]
90 | self.texts.append(text)
91 | self.tags.append(tag)
92 | self.transitions.append(transition)
93 |
94 | def __len__(self):
95 | return len(self.texts)
96 |
97 | def __getitem__(self, idx):
98 | text = self.texts[idx]
99 | tag = self.tags[idx]
100 | transition = self.transitions[idx]
101 | data = [(text[i], tag[i]) for i in range(len(text))]
102 | return {'data': data, 'transition': transition}
103 |
104 |
105 |
106 | class ParsingNet(nn.Module):
107 | def __init__(self, n_vocab, embedding_size=100, hidden_size=500):
108 | super(ParsingNet, self).__init__()
109 | self.embedding_size = embedding_size
110 | self.hidden_size = hidden_size
111 | self.n_vocab = n_vocab
112 | self.word_embed = nn.Embedding(self.n_vocab, self.embedding_size)
113 | self.tag_embed = nn.Embedding(len(tag_to_id), self.embedding_size)
114 | self.linear = nn.Linear(self.embedding_size * 18 * 2, self.hidden_size)
115 | self.output = nn.Linear(self.hidden_size, len(transition_to_id))
116 |
117 |
118 | def forward(self, words, tags):
119 | word_embeds =[]
120 | tag_embeds = []
121 | for i in range(len(words)):
122 | word = words[i]
123 | tag = tags[i]
124 | if word != -1:
125 | word_embed = self.word_embed(word).unsqueeze(0).view(1, -1)
126 | tag_embed = self.tag_embed(tag).unsqueeze(0).view(1, -1)
127 | else:
128 | word_embed = torch.tensor([0]*self.embedding_size, dtype=torch.float, device=device).view(1, -1)
129 | tag_embed = torch.tensor([0] * self.embedding_size, dtype=torch.float, device=device).view(1, -1)
130 | word_embeds.append(word_embed.squeeze(0))
131 | tag_embeds.append(tag_embed.squeeze(0))
132 |
133 | word_embeds = torch.cat(word_embeds)
134 | tag_embeds = torch.cat(tag_embeds)
135 | input = torch.cat((word_embeds, tag_embeds), -1).unsqueeze(0)
136 | output = F.relu(self.linear(input))
137 | #output = self.linear(input).pow(3)
138 | output = F.log_softmax(self.output(output), dim=1)
139 | return output
140 |
141 |
142 | def input_and_output(model, sample_batched, criterion):
143 | stack = ['ROOT']
144 | arcs = {'left-arc': {}, 'right-arc': {}}
145 | data, transitions = sample_batched.values()
146 | transitions = torch.tensor(transitions, dtype=torch.long, device=device).view(-1, 1)
147 | buffer = [tuple(item) for item in data]
148 | loss = 0
149 | operations = []
150 | for idx in range(len(transitions)):
151 | if len(buffer) != 0 or (len(stack) != 1 and stack[0] == 'ROOT'):
152 | words = [-1] * 18
153 | tags = [-1] * 18
154 | for i in range(3):
155 | if len(buffer) > i:
156 | words[i] = buffer[i][0]
157 | tags[i] = buffer[i][1]
158 | for i in range(3):
159 | if len(stack) > i + 1:
160 | words[i + 3] = stack[i + 1][0]
161 | tags[i + 3] = stack[i + 1][1]
162 | for i in range(2):
163 | if len(stack) > i + 1:
164 | for j in range(2):
165 | if stack[i + 1][0] in arcs['left-arc'].keys() and len(arcs['left-arc'][stack[i + 1][0]]) >= j:
166 | words[i + j + 6] = arcs['left-arc'][stack[i + 1][0]][j][0]
167 | tags[i + j + 6] = arcs['left-arc'][stack[i + 1][0]][j][1]
168 | if stack[i + 1][0] in arcs['right-arc'].keys() and len(arcs['right-arc'][stack[i + 1][0]]) >= j:
169 | words[i + j + 10] = arcs['right-arc'][stack[i + 1][0]][j][0]
170 | tags[i + j + 10] = arcs['right-arc'][stack[i + 1][0]][j][1]
171 | if stack[i + 1][0] in arcs['left-arc'].keys() and len(arcs['left-arc'][stack[i + 1][0]]) > 0 and \
172 | len(arcs['left-arc'][arcs['left-arc'][stack[i + 1][0]][0]]) > 0:
173 | words[i + 14] = arcs['left-arc'][arcs['left-arc'][stack[i + 1][0]][0]][0][0]
174 | tags[i + 14] = arcs['left-arc'][arcs['left-arc'][stack[i + 1][0]][0]][0][1]
175 | if stack[i + 1][0] in arcs['right-arc'].keys() and len(arcs['right-arc'][stack[i + 1][0]]) > 0 and \
176 | len(arcs['right-arc'][arcs['right-arc'][stack[i + 1][0]][0]]) > 0:
177 | words[i + 16] = arcs['right-arc'][arcs['right-arc'][stack[i + 1][0]][0]][0][0]
178 | tags[i + 16] = arcs['right-arc'][arcs['right-arc'][stack[i + 1][0]][0]][0][1]
179 |
180 | words = torch.tensor(words, dtype=torch.long, device=device)
181 | tags = torch.tensor(tags, dtype=torch.long, device=device)
182 | output = model(words, tags)
183 | loss += criterion(output, transitions[idx])
184 | topv, topi = output.topk(1)
185 | operations.append(id_to_transition[topi.item()])
186 |
187 | if topi.item() == transition_to_id['SHIFT'] and len(buffer) > 0:
188 | stack.append(buffer[0])
189 | buffer = buffer[1:]
190 | elif topi.item() == transition_to_id['REDUCE_L'] and len(stack) >= 3:
191 | if stack[-1] in arcs['left-arc']:
192 | left_arcs = arcs['left-arc'][stack[-1]]
193 | else:
194 | left_arcs = {}
195 | left_arcs[len(left_arcs)] = stack[-2]
196 | arcs['left-arc'][stack[-1]] = left_arcs
197 | stack.remove(stack[-2])
198 | elif topi.item() == transition_to_id['REDUCE_R'] and len(stack) >= 3:
199 |
200 | if stack[-2] in arcs['right-arc'].keys():
201 | right_arcs = arcs['right-arc'][stack[-2]]
202 | else:
203 | right_arcs = {}
204 | right_arcs[len(right_arcs)] = stack[-1]
205 | arcs['right-arc'][stack[-2]] = right_arcs
206 | stack.remove(stack[-1])
207 |
208 | return transitions, operations, loss
209 |
210 |
211 | def train(dataset, model, criterion, optimizer):
212 | dataloader = DataLoader(dataset, batch_size=1, shuffle=False)
213 | losses = []
214 | all_truths = []
215 | all_operations = []
216 | for i_batch, sample_batched in enumerate(dataloader):
217 | optimizer.zero_grad()
218 | transitions, operations, loss = input_and_output(model, sample_batched, criterion)
219 | losses.append(loss.item() / len(operations))
220 | loss.backward()
221 | optimizer.step()
222 | all_truths.append([id_to_transition[i[0].item()] for i in transitions])
223 | all_operations.append(operations)
224 | accuracy = accuracy_score(np.array(all_truths).reshape(-1), np.array(all_operations).reshape(-1))
225 | return losses, accuracy
226 |
227 |
228 | def evaluate(model):
229 | dataset_eva = ParserDataset(filename='dev', n_samples=100)
230 | criterion = nn.NLLLoss()
231 | dataloader_eva = DataLoader(dataset_eva, batch_size=1, shuffle=False)
232 | losses = []
233 | all_truths = []
234 | all_operations = []
235 | for i_batch, sample_batched in enumerate(dataloader_eva):
236 | transitions, operations, loss = input_and_output(model, sample_batched, criterion)
237 | losses.append(loss.item() / len(operations))
238 | all_truths.append([id_to_transition[i[0].item()] for i in transitions])
239 | all_operations.append(operations)
240 | accuracy = accuracy_score(np.array(all_truths).reshape(-1), np.array(all_operations).reshape(-1))
241 | print('Loss: {}, Accurarcy: {}'.format(np.mean(losses), accuracy))
242 | print('Predicted: ', all_operations)
243 | print('Ground Truth: ', all_truths)
244 |
245 |
246 | def trainIters(model, learning_rate=0.0005, weight_decay=1e-10, n_epochs=10, filename='train'):
247 | dataset = ParserDataset(filename, n_samples=800)
248 | criterion = nn.NLLLoss()
249 | optimizer = optim.Adam(model.parameters(), lr=learning_rate, weight_decay=weight_decay)
250 | for i in range(n_epochs):
251 | total_loss, accuracy = train(dataset, model, criterion, optimizer)
252 | torch.save(model, 'model/parser.pkl')
253 | print('Iter: {}, Total loss: {}, Accuracy: {}'.format(i, np.mean(total_loss), accuracy))
254 |
255 |
256 | if __name__ == '__main__':
257 | if os.path.exists('model/parser.pkl'):
258 | model = torch.load('model/parser.pkl').to(device)
259 | print('Model loaded')
260 | else:
261 | model = ParsingNet(n_vocab).to(device)
262 | # train a model
263 | trainIters(model, learning_rate=0.0003, weight_decay=1e-10, n_epochs=1)
264 | # evaluate
265 | evaluate(model)
266 |
--------------------------------------------------------------------------------
/model/parser.pkl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/yc930401/Transition_based_dependency_parsing-pytorch/50ea5893ef0fb77770c0621bfe4dc71ad9ae43c9/model/parser.pkl
--------------------------------------------------------------------------------
/result.txt:
--------------------------------------------------------------------------------
1 | Predicted: [['SHIFT', 'SHIFT', 'SHIFT', 'SHIFT', 'REDUCE_L', 'REDUCE_L', 'REDUCE_L', 'SHIFT', 'SHIFT', 'REDUCE_L', 'SHIFT', 'SHIFT', 'SHIFT', 'SHIFT', 'REDUCE_L', 'REDUCE_L', 'REDUCE_L', 'SHIFT', 'REDUCE_R', 'REDUCE_R', 'REDUCE_R', 'SHIFT', 'REDUCE_R', 'SHIFT', 'REDUCE_R']]
2 | Ground Truth: [['SHIFT', 'SHIFT', 'SHIFT', 'SHIFT', 'REDUCE_L', 'REDUCE_L', 'REDUCE_L', 'SHIFT', 'SHIFT', 'REDUCE_L', 'SHIFT', 'SHIFT', 'SHIFT', 'SHIFT', 'REDUCE_L', 'REDUCE_L', 'REDUCE_L', 'SHIFT', 'REDUCE_R', 'REDUCE_R', 'REDUCE_R', 'SHIFT', 'REDUCE_R', 'SHIFT', 'REDUCE_R']]
3 | Iter: 29, Total loss: 0.30769474209356623
--------------------------------------------------------------------------------